From 441c2da8033776e559b07a57173e69c9b5b459e1 Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Thu, 27 Jun 2024 17:25:33 +0800 Subject: [PATCH 01/34] draft --- .../Impl/Parquet/SelectiveColumnReader.cpp | 14 +++++++ .../Impl/Parquet/SelectiveColumnReader.h | 38 +++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp create mode 100644 src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp new file mode 100644 index 00000000000..4de23a4c7fd --- /dev/null +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -0,0 +1,14 @@ +#include "SelectiveColumnReader.h" + +namespace DB +{ +Chunk RowGroupChunkReader::readChunk(int rows) +{ + // compute row_set; + RowSet row_set; + std::ranges::for_each(filter_columns, [&](auto & column) { reader_columns_mapping[column]->computeRowSet(row_set, rows); }); + + Columns columns; + std::ranges::for_each(column_readers, [&] ); +} +} diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h new file mode 100644 index 00000000000..1552b9a6714 --- /dev/null +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h @@ -0,0 +1,38 @@ +#pragma once +#include +#include + +namespace DB +{ +class RowSet +{}; + +class SelectiveColumnReader; + +using SelectiveColumnReaderPtr = std::shared_ptr; + +class SelectiveColumnReader +{ +public: + virtual ~SelectiveColumnReader(); + virtual void computeRowSet(RowSet row_set, int num_rows); + virtual ColumnPtr read(RowSet row_set, int num_rows) = 0; + + virtual void getValues(); +}; + +class RowGroupChunkReader +{ +public: + Chunk readChunk(int rows); + +private: + std::vector filter_columns; + std::unordered_map reader_columns_mapping; + std::vector column_readers; +}; +} + + + + From 679e991f031d0d74a679c556f54ca102a70f4b03 Mon Sep 17 00:00:00 2001 From: liuneng <1398775315@qq.com> Date: Thu, 27 Jun 2024 18:36:10 +0800 Subject: [PATCH 02/34] draft --- .../Formats/Impl/Parquet/ColumnFilter.cpp | 1 + .../Formats/Impl/Parquet/ColumnFilter.h | 34 +++++++++++++++++++ .../Impl/Parquet/SelectiveColumnReader.cpp | 5 ++- .../Impl/Parquet/SelectiveColumnReader.h | 34 +++++++++++++++---- 4 files changed, 66 insertions(+), 8 deletions(-) create mode 100644 src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp create mode 100644 src/Processors/Formats/Impl/Parquet/ColumnFilter.h diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp new file mode 100644 index 00000000000..b9965dd3705 --- /dev/null +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp @@ -0,0 +1 @@ +#include "ColumnFilter.h" diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h new file mode 100644 index 00000000000..4938301f6c2 --- /dev/null +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h @@ -0,0 +1,34 @@ +#pragma once +#include + +namespace DB +{ +class ColumnFilter; +using ColumnFilterPtr = std::shared_ptr; + +enum ColumnFilterKind +{ + AlwaysTrue, + AlwaysFalse, + IsNull, + IsNotNull, + Int64Range, + Int64MultiRange, + Int64In, +}; + +class ColumnFilter +{ + bool testNull(); + bool testNotNull(); + bool testInt64(Int64 value); + bool testFloat32(Float32 value); + bool testFloat64(Float64 value); + bool testBool(bool value); + bool testInt64Range(Int64 min, Int64 max); + bool testFloat32Range(Float32 min, Float32 max); + bool testFloat64Range(Float64 min, Float64 max); +}; + +} + diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index 4de23a4c7fd..4ae34f28144 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -8,7 +8,10 @@ Chunk RowGroupChunkReader::readChunk(int rows) RowSet row_set; std::ranges::for_each(filter_columns, [&](auto & column) { reader_columns_mapping[column]->computeRowSet(row_set, rows); }); + // read column Columns columns; - std::ranges::for_each(column_readers, [&] ); + std::ranges::for_each(column_readers, [&](auto & reader) {columns.push_back(reader->read(row_set, rows));}); + + return Chunk(columns, columns[0]->size()); } } diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h index 1552b9a6714..7af281caee2 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h @@ -1,24 +1,48 @@ #pragma once +#include "ColumnFilter.h" + #include #include +#include +#include +#include namespace DB { class RowSet -{}; +{ +}; class SelectiveColumnReader; using SelectiveColumnReaderPtr = std::shared_ptr; +struct ScanSpec +{ + String column_name; + DataTypePtr expected_type; + ColumnFilterPtr filter; +}; + class SelectiveColumnReader { public: virtual ~SelectiveColumnReader(); - virtual void computeRowSet(RowSet row_set, int num_rows); + virtual void computeRowSet(RowSet row_set, int num_rows) = 0; virtual ColumnPtr read(RowSet row_set, int num_rows) = 0; + virtual void getValues() {}; +}; - virtual void getValues(); +template +class NumericColumnDirectReader : public SelectiveColumnReader +{ +public: + ~NumericColumnDirectReader() override{}; + void computeRowSet(RowSet row_set, int num_rows) override; + ColumnPtr read(RowSet row_set, int num_rows) override; + +private: + std::unique_ptr parquet_page_reader; }; class RowGroupChunkReader @@ -32,7 +56,3 @@ private: std::vector column_readers; }; } - - - - From 3d55ff2577deea818dfb28e24c3c7866dce9c0c9 Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Thu, 27 Jun 2024 22:04:55 +0800 Subject: [PATCH 03/34] draft --- .../Formats/Impl/Parquet/ColumnFilter.h | 1 + .../Impl/Parquet/SelectiveColumnReader.cpp | 15 ++++++ .../Impl/Parquet/SelectiveColumnReader.h | 48 +++++++++++++++---- 3 files changed, 54 insertions(+), 10 deletions(-) diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h index 4938301f6c2..fdb7883a14d 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h @@ -19,6 +19,7 @@ enum ColumnFilterKind class ColumnFilter { +public: bool testNull(); bool testNotNull(); bool testInt64(Int64 value); diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index 4ae34f28144..2f6f4640ec4 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -14,4 +14,19 @@ Chunk RowGroupChunkReader::readChunk(int rows) return Chunk(columns, columns[0]->size()); } + +void Int64ColumnDirectReader::computeRowSet(RowSet row_set, size_t& rows_to_read) +{ + if (!state.page || state.offset >= state.page->size()) + state.page = page_reader->NextPage(); + size_t remain_rows = (state.page->size() - state.offset) / sizeof(Int64); + rows_to_read = std::min(remain_rows, rows_to_read); + size_t row_set_offset = row_set.offset(); + const Int64 * start = reinterpret_cast(state.page->data() + state.offset); + for (size_t i = 0; i < rows_to_read; i++) + { + row_set.set(i, scan_spec.filter->testInt64(start[i])); + } + +} } diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h index 7af281caee2..a36540801ac 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h @@ -2,15 +2,24 @@ #include "ColumnFilter.h" #include -#include #include +#include #include #include +namespace parquet +{ +class ColumnDescriptor; +} + namespace DB { class RowSet { +public: + inline void set(size_t i, bool value) { } + size_t offset() { return 0; } + size_t totalRows() { return 0; } }; class SelectiveColumnReader; @@ -21,28 +30,47 @@ struct ScanSpec { String column_name; DataTypePtr expected_type; + const parquet::ColumnDescriptor * column_desc; ColumnFilterPtr filter; }; +class ScanState +{ +public: + std::shared_ptr page; + Int32 offset = 0; + size_t rows_read = 0; +}; + class SelectiveColumnReader { public: virtual ~SelectiveColumnReader(); - virtual void computeRowSet(RowSet row_set, int num_rows) = 0; - virtual ColumnPtr read(RowSet row_set, int num_rows) = 0; - virtual void getValues() {}; + virtual void computeRowSet(RowSet row_set, size_t & rows_to_read) = 0; + virtual ColumnPtr read(RowSet row_set, size_t & rows_to_read) = 0; + virtual void getValues() { } + +protected: + void readPage(); + void readPageV1(const parquet::DataPageV1 & page); + + std::unique_ptr page_reader; + ScanState state; + ScanSpec scan_spec; + }; -template -class NumericColumnDirectReader : public SelectiveColumnReader + + +class Int64ColumnDirectReader : public SelectiveColumnReader { public: - ~NumericColumnDirectReader() override{}; - void computeRowSet(RowSet row_set, int num_rows) override; - ColumnPtr read(RowSet row_set, int num_rows) override; + ~Int64ColumnDirectReader() override = default; + void computeRowSet(RowSet row_set, size_t & rows_to_read) override; + ColumnPtr read(RowSet row_set, size_t & rows_to_read) override; private: - std::unique_ptr parquet_page_reader; + }; class RowGroupChunkReader From c45d5f138a3ce56cfeeb4c264b73b709b7f461e5 Mon Sep 17 00:00:00 2001 From: liuneng <1398775315@qq.com> Date: Fri, 28 Jun 2024 18:32:04 +0800 Subject: [PATCH 04/34] draft --- .../Impl/Parquet/SelectiveColumnReader.cpp | 99 +++++++++++++++++-- .../Impl/Parquet/SelectiveColumnReader.h | 40 +++++--- 2 files changed, 119 insertions(+), 20 deletions(-) diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index 2f6f4640ec4..1f1a1ce4e32 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -1,7 +1,17 @@ #include "SelectiveColumnReader.h" +#include +#include +#include + namespace DB { + +namespace ErrorCodes +{ +extern const int UNSUPPORTED_METHOD; +} + Chunk RowGroupChunkReader::readChunk(int rows) { // compute row_set; @@ -10,23 +20,94 @@ Chunk RowGroupChunkReader::readChunk(int rows) // read column Columns columns; - std::ranges::for_each(column_readers, [&](auto & reader) {columns.push_back(reader->read(row_set, rows));}); + std::ranges::for_each(column_readers, [&](auto & reader) { columns.push_back(reader->read(row_set, rows)); }); return Chunk(columns, columns[0]->size()); } - -void Int64ColumnDirectReader::computeRowSet(RowSet row_set, size_t& rows_to_read) +void OptionalColumnReader::computeRowSet(RowSet row_set, size_t & rows_to_read) { - if (!state.page || state.offset >= state.page->size()) - state.page = page_reader->NextPage(); - size_t remain_rows = (state.page->size() - state.offset) / sizeof(Int64); - rows_to_read = std::min(remain_rows, rows_to_read); +} + +void SelectiveColumnReader::readPageIfNeeded() +{ + if (!state.page || !state.remain_rows) + readPage(); + // may read dict page first; + if (!state.remain_rows) + readPage(); +} + +void SelectiveColumnReader::readPage() +{ + auto page = page_reader->NextPage(); + state.page = page; + if (page->type() == parquet::PageType::DATA_PAGE) + { + readDataPageV1(assert_cast(*page)); + } + else if (page->type() == parquet::PageType::DICTIONARY_PAGE) + { + readDictPage(assert_cast(*page)); + } + else + { + throw Exception(ErrorCodes::UNSUPPORTED_METHOD, "Unsupported page type {}", magic_enum::enum_name(page->type())); + } +} +void SelectiveColumnReader::readDataPageV1(const parquet::DataPageV1 & page) +{ + parquet::LevelDecoder decoder; + state.buffer = page.data(); + auto max_size = page.size(); + state.remain_rows = page.num_values(); + auto max_rep_level = scan_spec.column_desc->max_repetition_level(); + auto max_def_level = scan_spec.column_desc->max_definition_level(); + if (scan_spec.column_desc->max_repetition_level() > 0) + { + auto rep_bytes = decoder.SetData(page.repetition_level_encoding(), max_rep_level, state.remain_rows, state.buffer, max_size); + max_size -= rep_bytes; + state.buffer += rep_bytes; + state.rep_levels.resize_fill(state.remain_rows); + decoder.Decode(state.remain_rows, state.rep_levels.data()); + } + if (scan_spec.column_desc->max_definition_level() > 0) + { + auto def_bytes = decoder.SetData(page.definition_level_encoding(), max_def_level, state.remain_rows, state.buffer, max_size); + max_size -= def_bytes; + state.buffer += def_bytes; + state.def_levels.resize_fill(state.remain_rows); + decoder.Decode(state.remain_rows, state.def_levels.data()); + } +} + +void Int64ColumnDirectReader::computeRowSet(RowSet row_set, size_t & rows_to_read) +{ + readPageIfNeeded(); + rows_to_read = std::min(state.remain_rows, rows_to_read); size_t row_set_offset = row_set.offset(); - const Int64 * start = reinterpret_cast(state.page->data() + state.offset); + const Int64 * start = reinterpret_cast(state.buffer); for (size_t i = 0; i < rows_to_read; i++) { row_set.set(i, scan_spec.filter->testInt64(start[i])); } +} + +void Int64ColumnDirectReader::read(MutableColumnPtr & column, RowSet row_set, size_t & rows_to_read) +{ + ColumnInt64 * data = assert_cast(column.get()); + rows_to_read = std::min(state.remain_rows, rows_to_read); + size_t rows_readed = 0; + const Int64 * start = reinterpret_cast(state.buffer); + while (rows_readed < rows_to_read) + { + if (row_set.get(row_set.offset() + rows_readed)) + { + data->getData().push_back(start[rows_readed]); + } + rows_readed ++; + } + state.buffer += rows_to_read * sizeof(Int64); + state.remain_rows -= rows_to_read; +} } -} diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h index a36540801ac..ac1f1839b9d 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h @@ -6,6 +6,7 @@ #include #include #include +#include namespace parquet { @@ -17,8 +18,10 @@ namespace DB class RowSet { public: - inline void set(size_t i, bool value) { } + void set(size_t i, bool value) { } + bool get(size_t i) { return true; } size_t offset() { return 0; } + size_t addOffset(size_t i); size_t totalRows() { return 0; } }; @@ -30,7 +33,7 @@ struct ScanSpec { String column_name; DataTypePtr expected_type; - const parquet::ColumnDescriptor * column_desc; + const parquet::ColumnDescriptor * column_desc = nullptr; ColumnFilterPtr filter; }; @@ -38,8 +41,11 @@ class ScanState { public: std::shared_ptr page; - Int32 offset = 0; + PaddedPODArray def_levels; + PaddedPODArray rep_levels; + const uint8_t * buffer = nullptr; size_t rows_read = 0; + size_t remain_rows = 0; }; class SelectiveColumnReader @@ -47,30 +53,32 @@ class SelectiveColumnReader public: virtual ~SelectiveColumnReader(); virtual void computeRowSet(RowSet row_set, size_t & rows_to_read) = 0; - virtual ColumnPtr read(RowSet row_set, size_t & rows_to_read) = 0; + virtual void read(MutableColumnPtr & column, RowSet row_set, size_t & rows_to_read) = 0; virtual void getValues() { } + const PaddedPODArray & getDefenitionLevels() + { + readPageIfNeeded(); + return state.def_levels; + } protected: + void readPageIfNeeded(); void readPage(); - void readPageV1(const parquet::DataPageV1 & page); + void readDataPageV1(const parquet::DataPageV1 & page); + void readDictPage(const parquet::DictionaryPage & page); std::unique_ptr page_reader; ScanState state; ScanSpec scan_spec; - }; - class Int64ColumnDirectReader : public SelectiveColumnReader { public: ~Int64ColumnDirectReader() override = default; void computeRowSet(RowSet row_set, size_t & rows_to_read) override; - ColumnPtr read(RowSet row_set, size_t & rows_to_read) override; - -private: - + void read(MutableColumnPtr & column, RowSet row_set, size_t & rows_to_read) override; }; class RowGroupChunkReader @@ -83,4 +91,14 @@ private: std::unordered_map reader_columns_mapping; std::vector column_readers; }; + +class OptionalColumnReader : public SelectiveColumnReader +{ +public: + void computeRowSet(RowSet row_set, size_t & rows_to_read) override; + void read(MutableColumnPtr & column, RowSet row_set, size_t & rows_to_read) override; + +private: + SelectiveColumnReaderPtr child; +}; } From a7d9ec3e90ec353e15edb501bc9cd5589fe854ae Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Sat, 6 Jul 2024 19:29:52 +0800 Subject: [PATCH 05/34] draft --- .../Impl/Parquet/SelectiveColumnReader.cpp | 221 ++++++++++++++++-- .../Impl/Parquet/SelectiveColumnReader.h | 100 ++++++-- 2 files changed, 278 insertions(+), 43 deletions(-) diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index 1f1a1ce4e32..9f1cbbc74f1 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -1,6 +1,7 @@ #include "SelectiveColumnReader.h" #include +#include #include #include @@ -12,22 +13,50 @@ namespace ErrorCodes extern const int UNSUPPORTED_METHOD; } -Chunk RowGroupChunkReader::readChunk(int rows) +Chunk RowGroupChunkReader::readChunk(size_t rows) { - // compute row_set; - RowSet row_set; - std::ranges::for_each(filter_columns, [&](auto & column) { reader_columns_mapping[column]->computeRowSet(row_set, rows); }); - - // read column Columns columns; - std::ranges::for_each(column_readers, [&](auto & reader) { columns.push_back(reader->read(row_set, rows)); }); - return Chunk(columns, columns[0]->size()); -} -void OptionalColumnReader::computeRowSet(RowSet row_set, size_t & rows_to_read) -{ + for (auto & reader : column_readers) + { + columns.push_back(reader->createColumn()); + columns.back()->reserve(rows); + } + + size_t rows_read = 0; + while (rows_read < rows) + { + size_t rows_to_read = rows - rows_read; + for (auto & reader : column_readers) + { + if (!reader->currentRemainRows()) + { + reader->readPageIfNeeded(); + } + rows_to_read = std::min(reader->currentRemainRows(), rows_to_read); + } + if (!rows_to_read) + break; + + RowSet row_set(rows_to_read); + for (auto & column : filter_columns) + { + reader_columns_mapping[column]->computeRowSet(row_set, rows); + } + bool skip_all = row_set.none(); + for (size_t i = 0; i < column_readers.size(); i++) + { + if (skip_all) + column_readers[i]->skip(rows_to_read); + else + column_readers[i]->read(columns[i], row_set, rows_to_read); + } + rows_read += columns[0]->size(); + } + return Chunk(columns, rows_read); } + void SelectiveColumnReader::readPageIfNeeded() { if (!state.page || !state.remain_rows) @@ -57,11 +86,13 @@ void SelectiveColumnReader::readPage() void SelectiveColumnReader::readDataPageV1(const parquet::DataPageV1 & page) { parquet::LevelDecoder decoder; - state.buffer = page.data(); auto max_size = page.size(); state.remain_rows = page.num_values(); + state.buffer = page.data(); auto max_rep_level = scan_spec.column_desc->max_repetition_level(); auto max_def_level = scan_spec.column_desc->max_definition_level(); + state.def_levels.resize(0); + state.rep_levels.resize(0); if (scan_spec.column_desc->max_repetition_level() > 0) { auto rep_bytes = decoder.SetData(page.repetition_level_encoding(), max_rep_level, state.remain_rows, state.buffer, max_size); @@ -73,41 +104,181 @@ void SelectiveColumnReader::readDataPageV1(const parquet::DataPageV1 & page) if (scan_spec.column_desc->max_definition_level() > 0) { auto def_bytes = decoder.SetData(page.definition_level_encoding(), max_def_level, state.remain_rows, state.buffer, max_size); - max_size -= def_bytes; state.buffer += def_bytes; state.def_levels.resize_fill(state.remain_rows); decoder.Decode(state.remain_rows, state.def_levels.data()); } } -void Int64ColumnDirectReader::computeRowSet(RowSet row_set, size_t & rows_to_read) +void Int64ColumnDirectReader::computeRowSet(RowSet& row_set, size_t offset, size_t value_offset, size_t rows_to_read) { readPageIfNeeded(); - rows_to_read = std::min(state.remain_rows, rows_to_read); - size_t row_set_offset = row_set.offset(); - const Int64 * start = reinterpret_cast(state.buffer); - for (size_t i = 0; i < rows_to_read; i++) + chassert(rows_to_read <= state.remain_rows); + const Int64 * start = reinterpret_cast(state.buffer) + value_offset; + if (scan_spec.filter) { - row_set.set(i, scan_spec.filter->testInt64(start[i])); + for (size_t i = 0; i < rows_to_read; i++) + { + row_set.set(offset + i, scan_spec.filter->testInt64(start[i])); + } } + } -void Int64ColumnDirectReader::read(MutableColumnPtr & column, RowSet row_set, size_t & rows_to_read) +void Int64ColumnDirectReader::read(MutableColumnPtr & column, RowSet & row_set, size_t rows_to_read) { ColumnInt64 * data = assert_cast(column.get()); - rows_to_read = std::min(state.remain_rows, rows_to_read); - size_t rows_readed = 0; + size_t rows_read = 0; const Int64 * start = reinterpret_cast(state.buffer); - while (rows_readed < rows_to_read) + while (rows_read < rows_to_read) { - if (row_set.get(row_set.offset() + rows_readed)) + if (row_set.get(rows_read)) { - data->getData().push_back(start[rows_readed]); + data->getData().push_back(start[rows_read]); } rows_readed ++; } state.buffer += rows_to_read * sizeof(Int64); state.remain_rows -= rows_to_read; } +void Int64ColumnDirectReader::skip(size_t rows) +{ + state.remain_rows -= rows; + state.buffer += rows * sizeof(Int64); +} +void Int64ColumnDirectReader::readSpace(MutableColumnPtr & column, RowSet & row_set, PaddedPODArray& null_map, size_t rows_to_read) +{ + auto * column = assert_cast(column.get()); + auto & data = column->getData(); + size_t rows_read = 0; + const Int64 * start = reinterpret_cast(state.buffer); + size_t count = 0; + while (rows_read < rows_to_read) + { + if (row_set.get(rows_read)) + { + if (null_map[rows_read]) + { + column->insertDefault(); + } + else + { + data.push_back(start[count]); + count++ + } + } + rows_read ++; + } + state.buffer += count * sizeof(Int64); + state.remain_rows -= rows_to_read; +} +void Int64ColumnDirectReader::computeRowSetSpace(RowSet & row_set, PaddedPODArray & null_map, size_t rows_to_read) +{ + readPageIfNeeded(); + const Int64 * start = reinterpret_cast(state.buffer); + if (!scan_spec.filter) return; + int count = 0; + for (size_t i = 0; i < rows_to_read; i++) + { + if (null_map[i]) + { + row_set.set(i, scan_spec.filter->testNull()); + } + else + { + row_set.set(i, scan_spec.filter->testInt64(start[count])); + count++; + } + } +} +MutableColumnPtr Int64ColumnDirectReader::createColumn() +{ + return ColumnInt64::create(); +} + +size_t OptionalColumnReader::currentRemainRows() const +{ + return child->currentRemainRows(); +} + +void OptionalColumnReader::nextBatchNullMap(size_t rows_to_read) +{ + cur_null_map.resize_fill(rows_to_read, 0); + cur_null_count = 0; + const auto & def_levels = child->getDefinitionLevels(); + size_t start = def_levels.size() - currentRemainRows(); + int16_t max_def_level = max_definition_level(); + for (size_t i = 0; i < rows_to_read; i++) + { + if (def_levels[start + i] < max_def_level) + { + cur_null_map[i] = 1; + cur_null_count ++; + } + } +} + +void OptionalColumnReader::computeRowSet(RowSet& row_set, size_t rows_to_read) +{ + nextBatchNullMap(rows_to_read); + if (scan_spec.filter) + { + for (size_t i = 0; i < rows_to_read; i++) + { + if (null_map[i]) + { + row_set.set(i, scan_spec.filter->testNull()); + } + else + { + row_set.set(i, scan_spec.filter->testNotNull()); + } + } + } + if (cur_null_count) + child->computeRowSetSpace(row_set, cur_null_map, rows_to_read); + else + child->computeRowSet(row_set, rows_to_read); +} + +void OptionalColumnReader::read(MutableColumnPtr & column, RowSet& row_set, size_t , size_t rows_to_read) +{ + rows_to_read = std::min(child->currentRemainRows(), rows_to_read); + auto* nullable_column = static_cast(column.get()); + auto & nested_column = nullable_column->getNestedColumn(); + auto & null_data = nullable_column->getNullMapData(); + + for (size_t i = 0; i < rows_to_read; i++) + { + if (row_set.get(i)) + { + null_data.push_back(cur_null_map[i]); + } + } + if (cur_null_count) + { + child->readSpace(nested_column, row_set, cur_null_map, rows_to_read); + } + else + { + child->read(nested_column, row_set, rows_to_read); + } +} + +void OptionalColumnReader::skip(size_t rows) +{ + if (cur_null_map.empty()) + nextBatchNullMap(rows); + else + chassert(rows == cur_null_map.size()); + child->skipNulls(cur_null_count); + child->skip(rows - cur_null_count); +} + +MutableColumnPtr OptionalColumnReader::createColumn() +{ + return ColumnNullable::create(child->createColumn(), ColumnUInt8::create()); +} + } diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h index ac1f1839b9d..8a9ffcd846c 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h @@ -18,11 +18,32 @@ namespace DB class RowSet { public: - void set(size_t i, bool value) { } - bool get(size_t i) { return true; } - size_t offset() { return 0; } - size_t addOffset(size_t i); - size_t totalRows() { return 0; } + explicit RowSet(size_t maxRows) : max_rows_(maxRows) + { + bitset.flip(); + } + + void set(size_t i, bool value) { bitset.set(i, value);} + bool get(size_t i) { return bitset.test(i); } + size_t totalRows() const { return max_rows_; } + bool none() const + { + size_t count =0; + for (size_t i = 0; i < max_rows_; i++) + { + if (bitset.test(i)) + { + count++; + } + } + if (!count) + return true; + false; + } + +private: + size_t max_rows_ = 0; + std::bitset<8192> bitset; }; class SelectiveColumnReader; @@ -43,29 +64,53 @@ public: std::shared_ptr page; PaddedPODArray def_levels; PaddedPODArray rep_levels; - const uint8_t * buffer = nullptr; - size_t rows_read = 0; + const uint8_t * buffer; size_t remain_rows = 0; }; class SelectiveColumnReader { public: - virtual ~SelectiveColumnReader(); - virtual void computeRowSet(RowSet row_set, size_t & rows_to_read) = 0; - virtual void read(MutableColumnPtr & column, RowSet row_set, size_t & rows_to_read) = 0; + virtual ~SelectiveColumnReader() = 0; + virtual void computeRowSet(RowSet& row_set, size_t rows_to_read) = 0; + virtual void computeRowSetSpace(RowSet& row_set, PaddedPODArray& null_map, size_t rows_to_read) {}; + virtual void read(MutableColumnPtr & column, RowSet& row_set, size_t rows_to_read) = 0; + virtual void readSpace(MutableColumnPtr & column, RowSet& row_set, PaddedPODArray& null_map, size_t rows_to_read) {}; virtual void getValues() { } - const PaddedPODArray & getDefenitionLevels() + void readPageIfNeeded(); + + virtual MutableColumnPtr createColumn() = 0; + const PaddedPODArray & getDefinitionLevels() { readPageIfNeeded(); return state.def_levels; } + virtual size_t currentRemainRows() const + { + return state.remain_rows; + } + + void skipNulls(size_t rows_to_skip) + { + state.remain_rows -= rows_to_skip; + } + + virtual void skip(size_t rows) = 0; + protected: - void readPageIfNeeded(); void readPage(); void readDataPageV1(const parquet::DataPageV1 & page); - void readDictPage(const parquet::DictionaryPage & page); + void readDictPage(const parquet::DictionaryPage & page) {} + int16_t max_definition_level() const + { + return scan_spec.column_desc->max_definition_level(); + } + + int16_t max_repetition_level() const + { + return scan_spec.column_desc->max_repetition_level(); + } std::unique_ptr page_reader; ScanState state; @@ -77,14 +122,18 @@ class Int64ColumnDirectReader : public SelectiveColumnReader { public: ~Int64ColumnDirectReader() override = default; - void computeRowSet(RowSet row_set, size_t & rows_to_read) override; - void read(MutableColumnPtr & column, RowSet row_set, size_t & rows_to_read) override; + MutableColumnPtr createColumn() override; + void computeRowSet(RowSet& row_set, size_t offset, size_t value_offset, size_t rows_to_read) override; + void computeRowSetSpace(RowSet & row_set, PaddedPODArray & null_map, size_t rows_to_read) override; + void read(MutableColumnPtr & column, RowSet& row_set, size_t rows_to_read) override; + void readSpace(MutableColumnPtr & column, RowSet & row_set, PaddedPODArray& null_map, size_t rows_to_read) override; + void skip(size_t rows) override; }; class RowGroupChunkReader { public: - Chunk readChunk(int rows); + Chunk readChunk(size_t rows); private: std::vector filter_columns; @@ -95,10 +144,25 @@ private: class OptionalColumnReader : public SelectiveColumnReader { public: - void computeRowSet(RowSet row_set, size_t & rows_to_read) override; - void read(MutableColumnPtr & column, RowSet row_set, size_t & rows_to_read) override; + ~OptionalColumnReader() override {} + MutableColumnPtr createColumn() override; + size_t currentRemainRows() const override; + void computeRowSet(RowSet& row_set, size_t rows_to_read) override; + void read(MutableColumnPtr & column, RowSet& row_set, size_t offset, size_t rows_to_read) override; + void skip(size_t rows) override; private: + void nextBatchNullMap(size_t rows_to_read); + void cleanNullMap() + { + cur_null_count = 0; + cur_null_map.resize(0); + } + SelectiveColumnReaderPtr child; + PaddedPODArray cur_null_map; + size_t cur_null_count = 0; + int def_level = 0; + int rep_level = 0; }; } From 8434ad930e0fbd3ea8ed4df5f1c66af12770fbea Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Sun, 7 Jul 2024 18:30:08 +0800 Subject: [PATCH 06/34] plain int64 with range filter --- .../Formats/Impl/Parquet/ColumnFilter.cpp | 1 + .../Formats/Impl/Parquet/ColumnFilter.h | 59 +++++-- .../Formats/Impl/Parquet/ParquetReader.cpp | 70 ++++++++ .../Formats/Impl/Parquet/ParquetReader.h | 49 ++++++ .../Impl/Parquet/SelectiveColumnReader.cpp | 153 ++++++++++++++---- .../Impl/Parquet/SelectiveColumnReader.h | 61 +++++-- .../tests/gtest_native_parquet_reader.cpp | 85 ++++++++++ 7 files changed, 425 insertions(+), 53 deletions(-) create mode 100644 src/Processors/Formats/Impl/Parquet/ParquetReader.cpp create mode 100644 src/Processors/Formats/Impl/Parquet/ParquetReader.h create mode 100644 src/Processors/tests/gtest_native_parquet_reader.cpp diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp index b9965dd3705..b9d841cbbe8 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp @@ -1 +1,2 @@ #include "ColumnFilter.h" + diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h index fdb7883a14d..0d685e4c5af 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h @@ -8,6 +8,7 @@ using ColumnFilterPtr = std::shared_ptr; enum ColumnFilterKind { + Unknown, AlwaysTrue, AlwaysFalse, IsNull, @@ -17,19 +18,57 @@ enum ColumnFilterKind Int64In, }; + class ColumnFilter { public: - bool testNull(); - bool testNotNull(); - bool testInt64(Int64 value); - bool testFloat32(Float32 value); - bool testFloat64(Float64 value); - bool testBool(bool value); - bool testInt64Range(Int64 min, Int64 max); - bool testFloat32Range(Float32 min, Float32 max); - bool testFloat64Range(Float64 min, Float64 max); + virtual ~ColumnFilter() { } + virtual ColumnFilterKind kind() { return Unknown; } + virtual bool testNull() { return true; } + virtual bool testNotNull() { return true; } + virtual bool testInt64(Int64) { return true; } + virtual bool testFloat32(Float32) { return true; } + virtual bool testFloat64(Float64) { return true; } + virtual bool testBool(bool) { return true; } + virtual bool testInt64Range(Int64, Int64) { return true; } + virtual bool testFloat32Range(Float32, Float32) { return true; } + virtual bool testFloat64Range(Float64, Float64) { return true; } +}; + +class AlwaysTrueFilter : public ColumnFilter +{ +public: + ColumnFilterKind kind() override { return AlwaysTrue; } + bool testNull() override { return true; } + bool testNotNull() override { return true; } + bool testInt64(Int64) override { return true; } + bool testFloat32(Float32) override { return true; } + bool testFloat64(Float64) override { return true; } + bool testBool(bool) override { return true; } + bool testInt64Range(Int64, Int64) override { return true; } + bool testFloat32Range(Float32, Float32) override { return true; } + bool testFloat64Range(Float64, Float64) override { return true; } +}; + +class Int64RangeFilter : public ColumnFilter +{ +public: + explicit Int64RangeFilter(Int64 min_, Int64 max_) : max(max_), min(min_) { } + ~Int64RangeFilter() override = default; + ColumnFilterKind kind() override { return Int64Range; } + bool testNull() override { return false; } + bool testNotNull() override { return true; } + bool testInt64(Int64 int64) override { return int64 >= min && int64 <= max; } + bool testFloat32(Float32 float32) override { return ColumnFilter::testFloat32(float32); } + bool testFloat64(Float64 float64) override { return ColumnFilter::testFloat64(float64); } + bool testBool(bool b) override { return ColumnFilter::testBool(b); } + bool testInt64Range(Int64 int64, Int64 int641) override { return ColumnFilter::testInt64Range(int64, int641); } + bool testFloat32Range(Float32 float32, Float32 float321) override { return ColumnFilter::testFloat32Range(float32, float321); } + bool testFloat64Range(Float64 float64, Float64 float641) override { return ColumnFilter::testFloat64Range(float64, float641); } + +private: + Int64 max = INT64_MAX; + Int64 min = INT64_MIN; }; } - diff --git a/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp b/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp new file mode 100644 index 00000000000..e0895859920 --- /dev/null +++ b/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp @@ -0,0 +1,70 @@ +#include "ParquetReader.h" + +namespace DB +{ +namespace ErrorCodes +{ +extern const int NOT_IMPLEMENTED; +extern const int PARQUET_EXCEPTION; +} + +#define THROW_PARQUET_EXCEPTION(s) \ + do \ + { \ + try { (s); } \ + catch (const ::parquet::ParquetException & e) \ + { \ + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Parquet exception: {}", e.what()); \ + } \ + } while (false) + + +std::unique_ptr createFileReader( + std::shared_ptr<::arrow::io::RandomAccessFile> arrow_file, + parquet::ReaderProperties reader_properties, + std::shared_ptr metadata = nullptr) +{ + std::unique_ptr res; + THROW_PARQUET_EXCEPTION(res = parquet::ParquetFileReader::Open(std::move(arrow_file), reader_properties, metadata)); + return res; +} + +ParquetReader::ParquetReader( + Block header_, + parquet::ArrowReaderProperties arrow_properties_, + parquet::ReaderProperties reader_properties_, + std::shared_ptr<::arrow::io::RandomAccessFile> arrow_file_, + const FormatSettings & format_settings, + std::vector row_groups_indices_, + std::shared_ptr metadata) + : file_reader(createFileReader(arrow_file_, reader_properties_, metadata)) + , arrow_properties(arrow_properties_) + , header(std::move(header_)) + , max_block_size(format_settings.parquet.max_block_size) + , row_groups_indices(std::move(row_groups_indices_)) + , meta_data(file_reader->metadata()) +{ +} + +void ParquetReader::loadRowGroupChunkReaderIfNeeded() +{ + if ((!row_group_chunk_reader || !row_group_chunk_reader->hasMoreRows()) && next_row_group_idx < row_groups_indices.size()) + { + row_group_chunk_reader = std::make_unique( + this, + file_reader->RowGroup(row_groups_indices[next_row_group_idx]), + filters); + next_row_group_idx ++; + } +} +Block ParquetReader::read() +{ + loadRowGroupChunkReaderIfNeeded(); + auto chunk = row_group_chunk_reader->readChunk(max_block_size); + return header.cloneWithColumns(chunk.detachColumns()); +} +void ParquetReader::addFilter(const String & column_name, const ColumnFilterPtr filter) +{ + filters[column_name] = filter; +} +} diff --git a/src/Processors/Formats/Impl/Parquet/ParquetReader.h b/src/Processors/Formats/Impl/Parquet/ParquetReader.h new file mode 100644 index 00000000000..6c0cbe74a32 --- /dev/null +++ b/src/Processors/Formats/Impl/Parquet/ParquetReader.h @@ -0,0 +1,49 @@ +#pragma once +#include +#include +#include +#include + + +#include +#include +#include + +namespace DB +{ +class ParquetReader +{ +public: + friend class RowGroupChunkReader; + ParquetReader( + Block header_, + parquet::ArrowReaderProperties arrow_properties_, + parquet::ReaderProperties reader_properties_, + std::shared_ptr<::arrow::io::RandomAccessFile> arrow_file, + const FormatSettings & format_settings, + std::vector row_groups_indices_, + std::shared_ptr metadata = nullptr); + + Block read(); + void addFilter(const String & column_name, const ColumnFilterPtr filter); +private: + void loadRowGroupChunkReaderIfNeeded(); + + std::unique_ptr file_reader; + parquet::ArrowReaderProperties arrow_properties; + + Block header; + + std::unique_ptr row_group_chunk_reader; + + UInt64 max_block_size; + + std::unordered_map filters; + std::vector parquet_col_indice; + std::vector row_groups_indices; + size_t next_row_group_idx = 0; + std::shared_ptr meta_data; +}; +} + + diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index 9f1cbbc74f1..1f8f8fe2a12 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -2,7 +2,8 @@ #include #include -#include +#include +#include #include namespace DB @@ -11,11 +12,13 @@ namespace DB namespace ErrorCodes { extern const int UNSUPPORTED_METHOD; +extern const int PARQUET_EXCEPTION; } Chunk RowGroupChunkReader::readChunk(size_t rows) { - Columns columns; + rows = std::min(rows, remain_rows); + MutableColumns columns; for (auto & reader : column_readers) { @@ -26,7 +29,9 @@ Chunk RowGroupChunkReader::readChunk(size_t rows) size_t rows_read = 0; while (rows_read < rows) { - size_t rows_to_read = rows - rows_read; + size_t rows_to_read = std::min(rows - rows_read, remain_rows); + if (!rows_to_read) + break; for (auto & reader : column_readers) { if (!reader->currentRemainRows()) @@ -41,7 +46,7 @@ Chunk RowGroupChunkReader::readChunk(size_t rows) RowSet row_set(rows_to_read); for (auto & column : filter_columns) { - reader_columns_mapping[column]->computeRowSet(row_set, rows); + reader_columns_mapping[column]->computeRowSet(row_set, rows_to_read); } bool skip_all = row_set.none(); for (size_t i = 0; i < column_readers.size(); i++) @@ -51,9 +56,51 @@ Chunk RowGroupChunkReader::readChunk(size_t rows) else column_readers[i]->read(columns[i], row_set, rows_to_read); } - rows_read += columns[0]->size(); + remain_rows -= rows_to_read; + rows_read = columns[0]->size(); } - return Chunk(columns, rows_read); + return Chunk(std::move(columns), rows_read); +} +RowGroupChunkReader::RowGroupChunkReader(ParquetReader * parquetReader, + std::shared_ptr rowGroupReader, + std::unordered_map filters) + : parquet_reader(parquetReader), row_group_reader(rowGroupReader) +{ + std::unordered_map parquet_columns; + const auto * root = parquet_reader->meta_data->schema()->group_node(); + for (int i = 0; i < root->field_count(); ++i) + { + const auto & node = root->field(i); + parquet_columns.emplace(node->name(), node); + } + + column_readers.reserve(parquet_reader->header.columns()); + for (const auto & col_with_name : parquet_reader->header) + { + if (!parquet_columns.contains(col_with_name.name)) + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "no column with '{}' in parquet file", col_with_name.name); + + const auto & node = parquet_columns.at(col_with_name.name); + if (!node->is_primitive()) + throw Exception(ErrorCodes::NOT_IMPLEMENTED, "arrays and maps are not implemented in native parquet reader"); + + auto idx = parquet_reader->meta_data->schema()->ColumnIndex(*node); + auto filter = filters.contains(col_with_name.name) ? filters.at(col_with_name.name) : nullptr; + auto column_reader = SelectiveColumnReaderFactory::createLeafColumnReader( + *row_group_reader->metadata()->ColumnChunk(idx), + parquet_reader->meta_data->schema()->Column(idx), + row_group_reader->GetColumnPageReader(idx), + filter); + if (node->is_optional()) + { + column_reader = SelectiveColumnReaderFactory::createOptionalColumnReader(column_reader, filter); + } + column_readers.push_back(column_reader); + reader_columns_mapping[col_with_name.name] = column_reader; + chassert(idx >= 0); + if (filter) filter_columns.push_back(col_with_name.name); + } + remain_rows = row_group_reader->metadata()->num_rows(); } @@ -72,7 +119,7 @@ void SelectiveColumnReader::readPage() state.page = page; if (page->type() == parquet::PageType::DATA_PAGE) { - readDataPageV1(assert_cast(*page)); + readDataPageV1(static_cast(*page)); } else if (page->type() == parquet::PageType::DICTIONARY_PAGE) { @@ -95,61 +142,69 @@ void SelectiveColumnReader::readDataPageV1(const parquet::DataPageV1 & page) state.rep_levels.resize(0); if (scan_spec.column_desc->max_repetition_level() > 0) { - auto rep_bytes = decoder.SetData(page.repetition_level_encoding(), max_rep_level, state.remain_rows, state.buffer, max_size); + auto rep_bytes = decoder.SetData(page.repetition_level_encoding(), max_rep_level, static_cast(state.remain_rows), state.buffer, max_size); max_size -= rep_bytes; state.buffer += rep_bytes; state.rep_levels.resize_fill(state.remain_rows); - decoder.Decode(state.remain_rows, state.rep_levels.data()); + decoder.Decode(static_cast(state.remain_rows), state.rep_levels.data()); } if (scan_spec.column_desc->max_definition_level() > 0) { - auto def_bytes = decoder.SetData(page.definition_level_encoding(), max_def_level, state.remain_rows, state.buffer, max_size); + auto def_bytes = decoder.SetData(page.definition_level_encoding(), max_def_level, static_cast(state.remain_rows), state.buffer, max_size); state.buffer += def_bytes; state.def_levels.resize_fill(state.remain_rows); - decoder.Decode(state.remain_rows, state.def_levels.data()); + decoder.Decode(static_cast(state.remain_rows), state.def_levels.data()); } } -void Int64ColumnDirectReader::computeRowSet(RowSet& row_set, size_t offset, size_t value_offset, size_t rows_to_read) +template +void Int64ColumnDirectReader::computeRowSet(RowSet& row_set, size_t rows_to_read) { readPageIfNeeded(); chassert(rows_to_read <= state.remain_rows); - const Int64 * start = reinterpret_cast(state.buffer) + value_offset; + const Int64 * start = reinterpret_cast(state.buffer); if (scan_spec.filter) { for (size_t i = 0; i < rows_to_read; i++) { - row_set.set(offset + i, scan_spec.filter->testInt64(start[i])); + bool pass = scan_spec.filter->testInt64(start[i]); + row_set.set(i, pass); } } } -void Int64ColumnDirectReader::read(MutableColumnPtr & column, RowSet & row_set, size_t rows_to_read) +template +void Int64ColumnDirectReader::read(MutableColumnPtr & column, RowSet & row_set, size_t rows_to_read) { - ColumnInt64 * data = assert_cast(column.get()); + auto * int_column = static_cast(column.get()); + auto & data = int_column->getData(); size_t rows_read = 0; const Int64 * start = reinterpret_cast(state.buffer); while (rows_read < rows_to_read) { if (row_set.get(rows_read)) { - data->getData().push_back(start[rows_read]); + data.push_back(start[rows_read]); } - rows_readed ++; + rows_read ++; } state.buffer += rows_to_read * sizeof(Int64); state.remain_rows -= rows_to_read; } -void Int64ColumnDirectReader::skip(size_t rows) + +template +void Int64ColumnDirectReader::skip(size_t rows) { state.remain_rows -= rows; state.buffer += rows * sizeof(Int64); } -void Int64ColumnDirectReader::readSpace(MutableColumnPtr & column, RowSet & row_set, PaddedPODArray& null_map, size_t rows_to_read) + +template +void Int64ColumnDirectReader::readSpace(MutableColumnPtr & column, RowSet & row_set, PaddedPODArray& null_map, size_t rows_to_read) { - auto * column = assert_cast(column.get()); - auto & data = column->getData(); + auto * int_column = static_cast(column.get()); + auto & data = int_column->getData(); size_t rows_read = 0; const Int64 * start = reinterpret_cast(state.buffer); size_t count = 0; @@ -164,7 +219,7 @@ void Int64ColumnDirectReader::readSpace(MutableColumnPtr & column, RowSet & row_ else { data.push_back(start[count]); - count++ + count++; } } rows_read ++; @@ -172,7 +227,9 @@ void Int64ColumnDirectReader::readSpace(MutableColumnPtr & column, RowSet & row_ state.buffer += count * sizeof(Int64); state.remain_rows -= rows_to_read; } -void Int64ColumnDirectReader::computeRowSetSpace(RowSet & row_set, PaddedPODArray & null_map, size_t rows_to_read) + +template +void Int64ColumnDirectReader::computeRowSetSpace(RowSet & row_set, PaddedPODArray & null_map, size_t rows_to_read) { readPageIfNeeded(); const Int64 * start = reinterpret_cast(state.buffer); @@ -191,9 +248,17 @@ void Int64ColumnDirectReader::computeRowSetSpace(RowSet & row_set, PaddedPODArra } } } -MutableColumnPtr Int64ColumnDirectReader::createColumn() + +template +MutableColumnPtr Int64ColumnDirectReader::createColumn() +{ + return DataType::ColumnType::create(); +} + +template +Int64ColumnDirectReader::Int64ColumnDirectReader(std::unique_ptr page_reader_, ScanSpec scan_spec_) + : SelectiveColumnReader(std::move(page_reader_), scan_spec_) { - return ColumnInt64::create(); } size_t OptionalColumnReader::currentRemainRows() const @@ -225,7 +290,7 @@ void OptionalColumnReader::computeRowSet(RowSet& row_set, size_t rows_to_read) { for (size_t i = 0; i < rows_to_read; i++) { - if (null_map[i]) + if (cur_null_map[i]) { row_set.set(i, scan_spec.filter->testNull()); } @@ -241,11 +306,11 @@ void OptionalColumnReader::computeRowSet(RowSet& row_set, size_t rows_to_read) child->computeRowSet(row_set, rows_to_read); } -void OptionalColumnReader::read(MutableColumnPtr & column, RowSet& row_set, size_t , size_t rows_to_read) +void OptionalColumnReader::read(MutableColumnPtr & column, RowSet& row_set, size_t rows_to_read) { rows_to_read = std::min(child->currentRemainRows(), rows_to_read); auto* nullable_column = static_cast(column.get()); - auto & nested_column = nullable_column->getNestedColumn(); + auto nested_column = nullable_column->getNestedColumnPtr()->assumeMutable(); auto & null_data = nullable_column->getNullMapData(); for (size_t i = 0; i < rows_to_read; i++) @@ -263,6 +328,7 @@ void OptionalColumnReader::read(MutableColumnPtr & column, RowSet& row_set, size { child->read(nested_column, row_set, rows_to_read); } + cleanNullMap(); } void OptionalColumnReader::skip(size_t rows) @@ -273,6 +339,7 @@ void OptionalColumnReader::skip(size_t rows) chassert(rows == cur_null_map.size()); child->skipNulls(cur_null_count); child->skip(rows - cur_null_count); + cleanNullMap(); } MutableColumnPtr OptionalColumnReader::createColumn() @@ -281,4 +348,32 @@ MutableColumnPtr OptionalColumnReader::createColumn() } +SelectiveColumnReaderPtr SelectiveColumnReaderFactory::createLeafColumnReader( + const parquet::ColumnChunkMetaData& column_metadata, const parquet::ColumnDescriptor * column_desc, std::unique_ptr page_reader, ColumnFilterPtr filter) +{ + ScanSpec scan_spec{.column_name=column_desc->name(), .column_desc=column_desc, .filter=filter}; + if (column_desc->physical_type() == parquet::Type::INT64 && + (column_desc->logical_type()->type() == parquet::LogicalType::Type::INT + || column_desc->logical_type()->type() == parquet::LogicalType::Type::NONE)) + { + bool plain_encoding = column_metadata.encodings().size() == 1 && column_metadata.encodings()[0] == parquet::Encoding::PLAIN; + if (plain_encoding) + return std::make_shared>(std::move(page_reader), scan_spec); + else + throw Exception(ErrorCodes::UNSUPPORTED_METHOD, "Unsupported encoding for int64 column"); + } + else + { + throw Exception(ErrorCodes::UNSUPPORTED_METHOD, "Unsupported column type"); + } +} +SelectiveColumnReaderPtr SelectiveColumnReaderFactory::createOptionalColumnReader(SelectiveColumnReaderPtr child, ColumnFilterPtr filter) +{ + ScanSpec scan_spec; + scan_spec.filter = filter; + return std::make_shared(scan_spec, std::move(child)); +} + + +template class Int64ColumnDirectReader; } diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h index 8a9ffcd846c..3fda6a8b02d 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h @@ -6,6 +6,7 @@ #include #include #include +#include #include namespace parquet @@ -38,7 +39,7 @@ public: } if (!count) return true; - false; + return false; } private: @@ -53,7 +54,6 @@ using SelectiveColumnReaderPtr = std::shared_ptr; struct ScanSpec { String column_name; - DataTypePtr expected_type; const parquet::ColumnDescriptor * column_desc = nullptr; ColumnFilterPtr filter; }; @@ -71,11 +71,15 @@ public: class SelectiveColumnReader { public: - virtual ~SelectiveColumnReader() = 0; + SelectiveColumnReader(std::unique_ptr page_reader_, const ScanSpec scan_spec_) + : page_reader(std::move(page_reader_)), scan_spec(scan_spec_) + { + } + virtual ~SelectiveColumnReader() = default; virtual void computeRowSet(RowSet& row_set, size_t rows_to_read) = 0; - virtual void computeRowSetSpace(RowSet& row_set, PaddedPODArray& null_map, size_t rows_to_read) {}; + virtual void computeRowSetSpace(RowSet& , PaddedPODArray& , size_t ) {} virtual void read(MutableColumnPtr & column, RowSet& row_set, size_t rows_to_read) = 0; - virtual void readSpace(MutableColumnPtr & column, RowSet& row_set, PaddedPODArray& null_map, size_t rows_to_read) {}; + virtual void readSpace(MutableColumnPtr & , RowSet& , PaddedPODArray& , size_t ) {} virtual void getValues() { } void readPageIfNeeded(); @@ -98,10 +102,6 @@ public: virtual void skip(size_t rows) = 0; -protected: - void readPage(); - void readDataPageV1(const parquet::DataPageV1 & page); - void readDictPage(const parquet::DictionaryPage & page) {} int16_t max_definition_level() const { return scan_spec.column_desc->max_definition_level(); @@ -112,43 +112,69 @@ protected: return scan_spec.column_desc->max_repetition_level(); } +protected: + void readPage(); + void readDataPageV1(const parquet::DataPageV1 & page); + void readDictPage(const parquet::DictionaryPage & ) {} + + std::unique_ptr page_reader; ScanState state; ScanSpec scan_spec; }; - +template class Int64ColumnDirectReader : public SelectiveColumnReader { public: - ~Int64ColumnDirectReader() override = default; + Int64ColumnDirectReader(std::unique_ptr page_reader_, ScanSpec scan_spec_); + ~Int64ColumnDirectReader() override { } MutableColumnPtr createColumn() override; - void computeRowSet(RowSet& row_set, size_t offset, size_t value_offset, size_t rows_to_read) override; + void computeRowSet(RowSet& row_set, size_t rows_to_read) override; void computeRowSetSpace(RowSet & row_set, PaddedPODArray & null_map, size_t rows_to_read) override; void read(MutableColumnPtr & column, RowSet& row_set, size_t rows_to_read) override; void readSpace(MutableColumnPtr & column, RowSet & row_set, PaddedPODArray& null_map, size_t rows_to_read) override; void skip(size_t rows) override; }; +class ParquetReader; + class RowGroupChunkReader { public: + RowGroupChunkReader(ParquetReader * parquetReader, + std::shared_ptr rowGroupReader, + std::unordered_map filters); Chunk readChunk(size_t rows); + bool hasMoreRows() const + { + return remain_rows > 0; + } private: + ParquetReader * parquet_reader; + std::shared_ptr row_group_reader; std::vector filter_columns; std::unordered_map reader_columns_mapping; std::vector column_readers; + size_t remain_rows = 0; }; class OptionalColumnReader : public SelectiveColumnReader { public: - ~OptionalColumnReader() override {} + OptionalColumnReader(const ScanSpec & scanSpec, const SelectiveColumnReaderPtr child_) + : SelectiveColumnReader(nullptr, scanSpec), child(child_) + { + def_level = child->max_definition_level(); + rep_level = child->max_repetition_level(); + } + + ~OptionalColumnReader() override = default; MutableColumnPtr createColumn() override; size_t currentRemainRows() const override; void computeRowSet(RowSet& row_set, size_t rows_to_read) override; - void read(MutableColumnPtr & column, RowSet& row_set, size_t offset, size_t rows_to_read) override; + void read(MutableColumnPtr & column, RowSet& row_set, size_t rows_to_read) override; void skip(size_t rows) override; private: @@ -165,4 +191,11 @@ private: int def_level = 0; int rep_level = 0; }; + +class SelectiveColumnReaderFactory +{ +public: + static SelectiveColumnReaderPtr createLeafColumnReader(const parquet::ColumnChunkMetaData& column_metadata, const parquet::ColumnDescriptor * column_desc, std::unique_ptr page_reader, ColumnFilterPtr filter); + static SelectiveColumnReaderPtr createOptionalColumnReader(SelectiveColumnReaderPtr child, ColumnFilterPtr filter); +}; } diff --git a/src/Processors/tests/gtest_native_parquet_reader.cpp b/src/Processors/tests/gtest_native_parquet_reader.cpp new file mode 100644 index 00000000000..930504c3348 --- /dev/null +++ b/src/Processors/tests/gtest_native_parquet_reader.cpp @@ -0,0 +1,85 @@ +#include + +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include + +#include +#include + +using namespace DB; + +TEST(Processors, TestReadInt64) +{ + auto col1 = ColumnInt64::create(); + auto col2 = ColumnInt64::create(); + auto col3 = ColumnInt64::create(); + int rows = 500000; + for (int i = 0; i < rows; ++i) + { + col1->insertValue(i); + col2->insertValue(std::rand()); + col3->insertValue(std::rand()); + } + Columns columns; + columns.emplace_back(std::move(col1)); + columns.emplace_back(std::move(col2)); + columns.emplace_back(std::move(col3)); + Chunk chunk(std::move(columns), rows); + + Block header = {ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "x"), + ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "y"), + ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "z")}; + + auto source = std::make_shared(header, std::move(chunk)); + WriteBufferFromFile out("/tmp/test.parquet"); + FormatSettings formatSettings; + auto parquet_output = std::make_shared(out, header, formatSettings); + + QueryPipelineBuilder builder; + builder.init(Pipe(source)); + auto pipeline = QueryPipelineBuilder::getPipeline(std::move(builder)); + pipeline.complete(std::move(parquet_output)); + CompletedPipelineExecutor executor(pipeline); + executor.execute(); + + parquet::ArrowReaderProperties arrow_properties; + parquet::ReaderProperties reader_properties(ArrowMemoryPool::instance()); + arrow_properties.set_use_threads(false); + arrow_properties.set_batch_size(8192); + + arrow_properties.set_pre_buffer(true); + auto cache_options = arrow::io::CacheOptions::LazyDefaults(); + cache_options.hole_size_limit = 10000000; + cache_options.range_size_limit = 1l << 40; // reading the whole row group at once is fine + arrow_properties.set_cache_options(cache_options); + out.close(); + ReadBufferFromFile in("/tmp/test.parquet"); + std::cerr << in.getFileSize() << std::endl; + std::atomic is_cancelled{0}; + FormatSettings settings; + settings.parquet.max_block_size = 8192; + auto arrow_file = asArrowFile(in, settings, is_cancelled, "Parquet", PARQUET_MAGIC_BYTES, /* avoid_buffering */ true); + + + ParquetReader reader(header.cloneEmpty(), arrow_properties, reader_properties, arrow_file, settings, {0}); + + reader.addFilter("x", std::make_shared( 1000, 2000)); + int count = 0; + while (auto block = reader.read()) + { + if (block.rows() == 0) + break; + count += block.rows(); + } + ASSERT_EQ(count, 1001); + +} From b2ba32fba0d05d5405e0310622787de98846ce86 Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Sun, 21 Jul 2024 21:46:31 +0800 Subject: [PATCH 07/34] support read int32, int64, float32, float64 --- .../Formats/Impl/Parquet/ColumnFilter.cpp | 10 + .../Formats/Impl/Parquet/ColumnFilter.h | 23 + .../Formats/Impl/Parquet/PageReader.cpp | 162 + .../Formats/Impl/Parquet/PageReader.h | 44 + .../Formats/Impl/Parquet/ParquetReader.cpp | 51 +- .../Formats/Impl/Parquet/ParquetReader.h | 12 +- .../Impl/Parquet/SelectiveColumnReader.cpp | 505 +- .../Impl/Parquet/SelectiveColumnReader.h | 376 +- .../Impl/Parquet/generated/parquet_types.cpp | 7732 +++++++++++++++++ .../Impl/Parquet/generated/parquet_types.h | 3834 ++++++++ .../tests/gtest_native_parquet_reader.cpp | 312 +- 11 files changed, 12813 insertions(+), 248 deletions(-) create mode 100644 src/Processors/Formats/Impl/Parquet/PageReader.cpp create mode 100644 src/Processors/Formats/Impl/Parquet/PageReader.h create mode 100644 src/Processors/Formats/Impl/Parquet/generated/parquet_types.cpp create mode 100644 src/Processors/Formats/Impl/Parquet/generated/parquet_types.h diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp index b9d841cbbe8..d1c7d594385 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp @@ -1,2 +1,12 @@ #include "ColumnFilter.h" +namespace DB +{ +void Int64RangeFilter::testInt64Values(DB::RowSet & row_set, size_t offset, size_t len, const Int64 * data) +{ + for (size_t t = 0; t < len; ++t) + { + row_set.set(offset + t, data[t] >= min && data[t] <= max); + } +} +} diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h index 0d685e4c5af..2abcc78f0ba 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h @@ -1,8 +1,27 @@ #pragma once #include +#include namespace DB { + +class RowSet +{ +public: + explicit RowSet(size_t max_rows_) : max_rows(max_rows_) { bitset.resize(max_rows, true); } + + void set(size_t i, bool value) { bitset.set(i, value); } + bool get(size_t i) { return bitset.test(i); } + size_t totalRows() const { return max_rows; } + bool none() const { return bitset.none(); } + bool all() const { return bitset.all(); } + bool any() const { return bitset.any(); } + +private: + size_t max_rows = 0; + boost::dynamic_bitset<> bitset; +}; + class ColumnFilter; using ColumnFilterPtr = std::shared_ptr; @@ -33,6 +52,7 @@ public: virtual bool testInt64Range(Int64, Int64) { return true; } virtual bool testFloat32Range(Float32, Float32) { return true; } virtual bool testFloat64Range(Float64, Float64) { return true; } + virtual void testInt64Values(RowSet& /*row_set*/, size_t /*offset*/, size_t /*len*/, const Int64 * /*data*/) { } }; class AlwaysTrueFilter : public ColumnFilter @@ -65,6 +85,9 @@ public: bool testInt64Range(Int64 int64, Int64 int641) override { return ColumnFilter::testInt64Range(int64, int641); } bool testFloat32Range(Float32 float32, Float32 float321) override { return ColumnFilter::testFloat32Range(float32, float321); } bool testFloat64Range(Float64 float64, Float64 float641) override { return ColumnFilter::testFloat64Range(float64, float641); } + void testInt64Values(RowSet& row_set, size_t offset, size_t len, const Int64 * data) override; + + private: Int64 max = INT64_MAX; diff --git a/src/Processors/Formats/Impl/Parquet/PageReader.cpp b/src/Processors/Formats/Impl/Parquet/PageReader.cpp new file mode 100644 index 00000000000..861e60d4332 --- /dev/null +++ b/src/Processors/Formats/Impl/Parquet/PageReader.cpp @@ -0,0 +1,162 @@ +#include "PageReader.h" + +#include +#include + +namespace DB +{ +namespace ErrorCodes +{ +extern const int NOT_IMPLEMENTED; +extern const int PARQUET_EXCEPTION; +} + +bool LazyPageReader::hasNext() +{ + parquet::ThriftDeserializer deserializer(properties); + if (seen_num_values >= total_num_values) + return false; + uint32_t header_size = 0; + uint32_t allowed_header_size = DEFAULT_PAGE_HEADER_SIZE; + while (true) + { + if (stream->available() == 0) + { + return false; + } + + // This gets used, then set by DeserializeThriftMsg + header_size = allowed_header_size; + try + { + // Reset current page header to avoid unclearing the __isset flag. + current_page_header = parquet::format::PageHeader(); + deserializer.DeserializeMessage( + reinterpret_cast(stream->position()), &header_size, ¤t_page_header, nullptr); + break; + } + catch (std::exception & e) + { + // Failed to deserialize. Double the allowed page header size and try again + allowed_header_size *= 2; + std::cerr << allowed_header_size << std::endl; + if (allowed_header_size > max_page_header_size) + { + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Deserializing page header failed: {}", e.what()); + } + } + } + stream->seek(header_size, SEEK_CUR); + return true; +} + +template +parquet::EncodedStatistics ExtractStatsFromHeader(const H & header) +{ + parquet::EncodedStatistics page_statistics; + if (!header.__isset.statistics) + { + return page_statistics; + } + const parquet::format::Statistics & stats = header.statistics; + // Use the new V2 min-max statistics over the former one if it is filled + if (stats.__isset.max_value || stats.__isset.min_value) + { + // TODO: check if the column_order is TYPE_DEFINED_ORDER. + if (stats.__isset.max_value) + { + page_statistics.set_max(stats.max_value); + } + if (stats.__isset.min_value) + { + page_statistics.set_min(stats.min_value); + } + } + else if (stats.__isset.max || stats.__isset.min) + { + // TODO: check created_by to see if it is corrupted for some types. + // TODO: check if the sort_order is SIGNED. + if (stats.__isset.max) + { + page_statistics.set_max(stats.max); + } + if (stats.__isset.min) + { + page_statistics.set_min(stats.min); + } + } + if (stats.__isset.null_count) + { + page_statistics.set_null_count(stats.null_count); + } + if (stats.__isset.distinct_count) + { + page_statistics.set_distinct_count(stats.distinct_count); + } + return page_statistics; +} + +std::shared_ptr LazyPageReader::nextPage() +{ + size_t compressed_len = current_page_header.compressed_page_size; + size_t uncompressed_len = current_page_header.uncompressed_page_size; + if (compressed_len > stream->available()) + { + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Page was smaller {} than expected {}", stream->available(), compressed_len); + } + const parquet::PageType::type page_type = parquet::LoadEnumSafe(¤t_page_header.type); + + + if (page_type == parquet::PageType::DICTIONARY_PAGE) + { + std::shared_ptr page_buffer + = decompressIfNeeded(reinterpret_cast(stream->position()), compressed_len, uncompressed_len); + stream->seek(compressed_len, SEEK_CUR); + const parquet::format::DictionaryPageHeader & dict_header = current_page_header.dictionary_page_header; + bool is_sorted = dict_header.__isset.is_sorted ? dict_header.is_sorted : false; + return std::make_shared( + page_buffer, dict_header.num_values, parquet::LoadEnumSafe(&dict_header.encoding), is_sorted); + } + else if (page_type == parquet::PageType::DATA_PAGE) + { + const parquet::format::DataPageHeader & header = current_page_header.data_page_header; + parquet::EncodedStatistics data_page_statistics = ExtractStatsFromHeader(header); + auto page_buffer = decompressIfNeeded(reinterpret_cast(stream->position()), compressed_len, uncompressed_len); + stream->seek(compressed_len, SEEK_CUR); + return std::make_shared( + page_buffer, + header.num_values, + parquet::LoadEnumSafe(&header.encoding), + parquet::LoadEnumSafe(&header.definition_level_encoding), + parquet::LoadEnumSafe(&header.repetition_level_encoding), + uncompressed_len, + data_page_statistics); + } + else + { + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Unsupported page type {}", magic_enum::enum_name(page_type)); + } +} +std::shared_ptr LazyPageReader::decompressIfNeeded(const uint8_t * data, size_t compressed_size, size_t uncompressed_size) +{ + if (!decompressor) + return std::make_shared(data, compressed_size); + + decompression_buffer.resize_fill(uncompressed_size, 0); + + PARQUET_THROW_NOT_OK( + decompressor->Decompress(compressed_size, data, uncompressed_size, reinterpret_cast(decompression_buffer.data()))); + + return std::make_shared( + reinterpret_cast(decompression_buffer.data()), static_cast(uncompressed_size)); +} +void LazyPageReader::skipNextPage() +{ + size_t compressed_len = current_page_header.compressed_page_size; + stream->seek(compressed_len, SEEK_CUR); +} +const parquet::format::PageHeader & LazyPageReader::peekNextPageHeader() +{ + return current_page_header; +} +} diff --git a/src/Processors/Formats/Impl/Parquet/PageReader.h b/src/Processors/Formats/Impl/Parquet/PageReader.h new file mode 100644 index 00000000000..6811a144d3c --- /dev/null +++ b/src/Processors/Formats/Impl/Parquet/PageReader.h @@ -0,0 +1,44 @@ +#include +#include +#include +#include +#include + + +namespace DB +{ + + +class LazyPageReader +{ +public: + LazyPageReader( + const std::shared_ptr & stream_, const parquet::ReaderProperties & properties_, size_t total_num_values_, parquet::Compression::type codec) + : stream(stream_), properties(properties_), total_num_values(total_num_values_) + { + decompressor = parquet::GetCodec(codec); + } + bool hasNext(); + const parquet::format::PageHeader& peekNextPageHeader(); + std::shared_ptr nextPage(); + void skipNextPage(); + +private: + std::shared_ptr decompressIfNeeded(const uint8_t * data, size_t compressed_size, size_t uncompressed_size); + + std::shared_ptr stream; + parquet::format::PageHeader current_page_header; + std::shared_ptr current_page; + const parquet::ReaderProperties properties; + + std::shared_ptr decompressor; + PaddedPODArray decompression_buffer; + + static const size_t max_page_header_size = 16 * 1024 * 1024; + static const size_t DEFAULT_PAGE_HEADER_SIZE = 16 * 1024; + + size_t seen_num_values = 0; + size_t total_num_values = 0; +}; +} + diff --git a/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp b/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp index e0895859920..b59bc1e9543 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp @@ -8,14 +8,17 @@ extern const int NOT_IMPLEMENTED; extern const int PARQUET_EXCEPTION; } -#define THROW_PARQUET_EXCEPTION(s) \ - do \ - { \ - try { (s); } \ - catch (const ::parquet::ParquetException & e) \ - { \ - throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Parquet exception: {}", e.what()); \ - } \ +#define THROW_PARQUET_EXCEPTION(s) \ + do \ + { \ + try \ + { \ + (s); \ + } \ + catch (const ::parquet::ParquetException & e) \ + { \ + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Parquet exception: {}", e.what()); \ + } \ } while (false) @@ -31,6 +34,7 @@ std::unique_ptr createFileReader( ParquetReader::ParquetReader( Block header_, + std::shared_ptr file_, parquet::ArrowReaderProperties arrow_properties_, parquet::ReaderProperties reader_properties_, std::shared_ptr<::arrow::io::RandomAccessFile> arrow_file_, @@ -38,33 +42,48 @@ ParquetReader::ParquetReader( std::vector row_groups_indices_, std::shared_ptr metadata) : file_reader(createFileReader(arrow_file_, reader_properties_, metadata)) + , file(file_) , arrow_properties(arrow_properties_) , header(std::move(header_)) , max_block_size(format_settings.parquet.max_block_size) + , properties(reader_properties_) , row_groups_indices(std::move(row_groups_indices_)) , meta_data(file_reader->metadata()) { + if (row_groups_indices.empty()) + for (int i = 0; i < meta_data->num_row_groups(); i++) + row_groups_indices.push_back(i); } -void ParquetReader::loadRowGroupChunkReaderIfNeeded() +bool ParquetReader::loadRowGroupChunkReaderIfNeeded() { + if (row_group_chunk_reader && !row_group_chunk_reader->hasMoreRows() && next_row_group_idx >= row_groups_indices.size()) + return false; if ((!row_group_chunk_reader || !row_group_chunk_reader->hasMoreRows()) && next_row_group_idx < row_groups_indices.size()) { - row_group_chunk_reader = std::make_unique( - this, - file_reader->RowGroup(row_groups_indices[next_row_group_idx]), - filters); - next_row_group_idx ++; + row_group_chunk_reader + = std::make_unique(this, meta_data->RowGroup(row_groups_indices[next_row_group_idx]), filters); + next_row_group_idx++; } + return true; } Block ParquetReader::read() { - loadRowGroupChunkReaderIfNeeded(); - auto chunk = row_group_chunk_reader->readChunk(max_block_size); + Chunk chunk; + while (chunk.getNumRows() == 0) + { + if (!loadRowGroupChunkReaderIfNeeded()) break; + chunk = row_group_chunk_reader->readChunk(max_block_size); + } + if (!chunk) return header.cloneEmpty(); return header.cloneWithColumns(chunk.detachColumns()); } void ParquetReader::addFilter(const String & column_name, const ColumnFilterPtr filter) { filters[column_name] = filter; } + + + + } diff --git a/src/Processors/Formats/Impl/Parquet/ParquetReader.h b/src/Processors/Formats/Impl/Parquet/ParquetReader.h index 6c0cbe74a32..fd373cf4e62 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetReader.h +++ b/src/Processors/Formats/Impl/Parquet/ParquetReader.h @@ -2,6 +2,7 @@ #include #include #include +#include #include @@ -17,19 +18,21 @@ public: friend class RowGroupChunkReader; ParquetReader( Block header_, + std::shared_ptr file, parquet::ArrowReaderProperties arrow_properties_, parquet::ReaderProperties reader_properties_, std::shared_ptr<::arrow::io::RandomAccessFile> arrow_file, const FormatSettings & format_settings, - std::vector row_groups_indices_, + std::vector row_groups_indices_ = {}, std::shared_ptr metadata = nullptr); Block read(); - void addFilter(const String & column_name, const ColumnFilterPtr filter); + void addFilter(const String & column_name, ColumnFilterPtr filter); private: - void loadRowGroupChunkReaderIfNeeded(); + bool loadRowGroupChunkReaderIfNeeded(); std::unique_ptr file_reader; + std::shared_ptr file; parquet::ArrowReaderProperties arrow_properties; Block header; @@ -37,13 +40,14 @@ private: std::unique_ptr row_group_chunk_reader; UInt64 max_block_size; - + parquet::ReaderProperties properties; std::unordered_map filters; std::vector parquet_col_indice; std::vector row_groups_indices; size_t next_row_group_idx = 0; std::shared_ptr meta_data; }; + } diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index 1f8f8fe2a12..edd6d3482ac 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -1,7 +1,7 @@ #include "SelectiveColumnReader.h" -#include #include +#include #include #include #include @@ -47,6 +47,8 @@ Chunk RowGroupChunkReader::readChunk(size_t rows) for (auto & column : filter_columns) { reader_columns_mapping[column]->computeRowSet(row_set, rows_to_read); + if (row_set.none()) + break; } bool skip_all = row_set.none(); for (size_t i = 0; i < column_readers.size(); i++) @@ -61,10 +63,24 @@ Chunk RowGroupChunkReader::readChunk(size_t rows) } return Chunk(std::move(columns), rows_read); } -RowGroupChunkReader::RowGroupChunkReader(ParquetReader * parquetReader, - std::shared_ptr rowGroupReader, - std::unordered_map filters) - : parquet_reader(parquetReader), row_group_reader(rowGroupReader) + +std::pair getColumnRange(const parquet::ColumnChunkMetaData & column_metadata) +{ + size_t col_start = column_metadata.data_page_offset(); + if (column_metadata.has_dictionary_page() && column_metadata.dictionary_page_offset() > 0 + && col_start > static_cast(column_metadata.dictionary_page_offset())) + { + col_start = column_metadata.dictionary_page_offset(); + } + size_t len = column_metadata.total_compressed_size(); + return {col_start, len}; +} + +RowGroupChunkReader::RowGroupChunkReader( + ParquetReader * parquetReader, + std::shared_ptr row_group_meta_, + std::unordered_map filters) + : parquet_reader(parquetReader), row_group_meta(row_group_meta_) { std::unordered_map parquet_columns; const auto * root = parquet_reader->meta_data->schema()->group_node(); @@ -75,6 +91,8 @@ RowGroupChunkReader::RowGroupChunkReader(ParquetReader * parquetReader, } column_readers.reserve(parquet_reader->header.columns()); + column_buffers.resize(parquet_reader->header.columns()); + int reader_idx = 0; for (const auto & col_with_name : parquet_reader->header) { if (!parquet_columns.contains(col_with_name.name)) @@ -86,50 +104,70 @@ RowGroupChunkReader::RowGroupChunkReader(ParquetReader * parquetReader, auto idx = parquet_reader->meta_data->schema()->ColumnIndex(*node); auto filter = filters.contains(col_with_name.name) ? filters.at(col_with_name.name) : nullptr; + auto range = getColumnRange(*row_group_meta->ColumnChunk(idx)); + size_t compress_size = range.second; + size_t offset = range.first; + column_buffers[reader_idx].resize_fill(compress_size, 0); + remain_rows = row_group_meta->ColumnChunk(idx)->num_values(); + parquet_reader->file->seek(offset, SEEK_SET); + size_t count = parquet_reader->file->readBig(reinterpret_cast(column_buffers[reader_idx].data()), compress_size); + if (count != compress_size) + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Failed to read column data"); + auto page_reader = std::make_unique( + std::make_shared(reinterpret_cast(column_buffers[reader_idx].data()), compress_size), + parquet_reader->properties, + remain_rows, + row_group_meta->ColumnChunk(idx)->compression()); auto column_reader = SelectiveColumnReaderFactory::createLeafColumnReader( - *row_group_reader->metadata()->ColumnChunk(idx), - parquet_reader->meta_data->schema()->Column(idx), - row_group_reader->GetColumnPageReader(idx), - filter); + *row_group_meta->ColumnChunk(idx), parquet_reader->meta_data->schema()->Column(idx), std::move(page_reader), filter); if (node->is_optional()) { - column_reader = SelectiveColumnReaderFactory::createOptionalColumnReader(column_reader, filter); + column_reader = SelectiveColumnReaderFactory::createOptionalColumnReader(column_reader, nullptr); } column_readers.push_back(column_reader); reader_columns_mapping[col_with_name.name] = column_reader; chassert(idx >= 0); - if (filter) filter_columns.push_back(col_with_name.name); + if (filter) + filter_columns.push_back(col_with_name.name); + reader_idx++; } - remain_rows = row_group_reader->metadata()->num_rows(); } void SelectiveColumnReader::readPageIfNeeded() { - if (!state.page || !state.remain_rows) - readPage(); - // may read dict page first; - if (!state.remain_rows) - readPage(); + skipPageIfNeed(); + while (!state.remain_rows) + { + if (!readPage()) + break; + } } -void SelectiveColumnReader::readPage() +bool SelectiveColumnReader::readPage() { - auto page = page_reader->NextPage(); - state.page = page; - if (page->type() == parquet::PageType::DATA_PAGE) + if (!page_reader->hasNext()) + return false; + auto page_header = page_reader->peekNextPageHeader(); + auto page_type = page_header.type; + if (page_type == parquet::format::PageType::DICTIONARY_PAGE) { - readDataPageV1(static_cast(*page)); + auto dict_page = page_reader->nextPage(); + readDictPage(static_cast(*dict_page)); } - else if (page->type() == parquet::PageType::DICTIONARY_PAGE) + else if (page_type == parquet::format::PageType::DATA_PAGE) { - readDictPage(assert_cast(*page)); + state.remain_rows = page_header.data_page_header.num_values; + state.page.reset(); + skipPageIfNeed(); } else { - throw Exception(ErrorCodes::UNSUPPORTED_METHOD, "Unsupported page type {}", magic_enum::enum_name(page->type())); + throw Exception(ErrorCodes::UNSUPPORTED_METHOD, "Unsupported page type {}", magic_enum::enum_name(page_type)); } + return true; } + void SelectiveColumnReader::readDataPageV1(const parquet::DataPageV1 & page) { parquet::LevelDecoder decoder; @@ -142,7 +180,8 @@ void SelectiveColumnReader::readDataPageV1(const parquet::DataPageV1 & page) state.rep_levels.resize(0); if (scan_spec.column_desc->max_repetition_level() > 0) { - auto rep_bytes = decoder.SetData(page.repetition_level_encoding(), max_rep_level, static_cast(state.remain_rows), state.buffer, max_size); + auto rep_bytes + = decoder.SetData(page.repetition_level_encoding(), max_rep_level, static_cast(state.remain_rows), state.buffer, max_size); max_size -= rep_bytes; state.buffer += rep_bytes; state.rep_levels.resize_fill(state.remain_rows); @@ -150,124 +189,317 @@ void SelectiveColumnReader::readDataPageV1(const parquet::DataPageV1 & page) } if (scan_spec.column_desc->max_definition_level() > 0) { - auto def_bytes = decoder.SetData(page.definition_level_encoding(), max_def_level, static_cast(state.remain_rows), state.buffer, max_size); + auto def_bytes + = decoder.SetData(page.definition_level_encoding(), max_def_level, static_cast(state.remain_rows), state.buffer, max_size); + max_size -= def_bytes; state.buffer += def_bytes; state.def_levels.resize_fill(state.remain_rows); decoder.Decode(static_cast(state.remain_rows), state.def_levels.data()); } + state.buffer_size = max_size; + if (page.encoding() == parquet::Encoding::PLAIN_DICTIONARY) + { + initIndexDecoderIfNeeded(); + createDictDecoder(); + plain = false; + } + else + { + if (!plain) + { + downgradeToPlain(); + plain = true; + } + plain_decoder = std::make_unique(state.buffer, state.remain_rows); + } + state.lazy_skip_rows = skipValuesInCurrentPage(state.lazy_skip_rows); + chassert(state.lazy_skip_rows == 0); +} +void SelectiveColumnReader::decodePage() +{ + if (state.page) + return; + state.page = page_reader->nextPage(); + readDataPageV1(static_cast(*state.page)); +} +void SelectiveColumnReader::skipPageIfNeed() +{ + if (!state.page && state.remain_rows && state.remain_rows <= state.lazy_skip_rows) + { + // skip page + state.lazy_skip_rows -= state.remain_rows; + page_reader->skipNextPage(); + // std::cerr << "skip page :" << state.remain_rows << std::endl; + state.remain_rows = 0; + } +} + +template +void computeRowSetPlain(const T * start, RowSet & row_set, const ColumnFilterPtr & filter, size_t rows_to_read) +{ + if (filter && row_set.any()) + { + if constexpr (std::is_same_v) + filter->testInt64Values(row_set, 0, rows_to_read, start); + } } template -void Int64ColumnDirectReader::computeRowSet(RowSet& row_set, size_t rows_to_read) +void NumberColumnDirectReader::computeRowSet(RowSet & row_set, size_t rows_to_read) { - readPageIfNeeded(); + readAndDecodePage(); chassert(rows_to_read <= state.remain_rows); const Int64 * start = reinterpret_cast(state.buffer); - if (scan_spec.filter) - { - for (size_t i = 0; i < rows_to_read; i++) - { - bool pass = scan_spec.filter->testInt64(start[i]); - row_set.set(i, pass); - } - } - + computeRowSetPlain(start, row_set, scan_spec.filter, rows_to_read); } template -void Int64ColumnDirectReader::read(MutableColumnPtr & column, RowSet & row_set, size_t rows_to_read) +void NumberColumnDirectReader::read(MutableColumnPtr & column, RowSet & row_set, size_t rows_to_read) { + readAndDecodePage(); auto * int_column = static_cast(column.get()); auto & data = int_column->getData(); - size_t rows_read = 0; - const Int64 * start = reinterpret_cast(state.buffer); - while (rows_read < rows_to_read) - { - if (row_set.get(rows_read)) - { - data.push_back(start[rows_read]); - } - rows_read ++; - } - state.buffer += rows_to_read * sizeof(Int64); - state.remain_rows -= rows_to_read; + plain_decoder->decodeFixedValue(data, row_set, rows_to_read); } template -void Int64ColumnDirectReader::skip(size_t rows) +size_t NumberColumnDirectReader::skipValuesInCurrentPage(size_t rows_to_skip) { - state.remain_rows -= rows; - state.buffer += rows * sizeof(Int64); + if (!state.page || !rows_to_skip) + return rows_to_skip; + size_t skipped = std::min(state.remain_rows, rows_to_skip); + state.remain_rows -= skipped; + state.buffer += skipped * sizeof(Int64); + return rows_to_skip - skipped; } template -void Int64ColumnDirectReader::readSpace(MutableColumnPtr & column, RowSet & row_set, PaddedPODArray& null_map, size_t rows_to_read) +void NumberColumnDirectReader::readSpace( + MutableColumnPtr & column, RowSet & row_set, PaddedPODArray & null_map, size_t, size_t rows_to_read) { + readAndDecodePage(); auto * int_column = static_cast(column.get()); auto & data = int_column->getData(); - size_t rows_read = 0; - const Int64 * start = reinterpret_cast(state.buffer); - size_t count = 0; - while (rows_read < rows_to_read) - { - if (row_set.get(rows_read)) - { - if (null_map[rows_read]) - { - column->insertDefault(); - } - else - { - data.push_back(start[count]); - count++; - } - } - rows_read ++; - } - state.buffer += count * sizeof(Int64); - state.remain_rows -= rows_to_read; + plain_decoder->decodeFixedValueSpace(data, row_set, null_map, rows_to_read); } -template -void Int64ColumnDirectReader::computeRowSetSpace(RowSet & row_set, PaddedPODArray & null_map, size_t rows_to_read) +template +void computeRowSetPlainSpace( + const T * start, RowSet & row_set, const ColumnFilterPtr & filter, PaddedPODArray & null_map, size_t rows_to_read) { - readPageIfNeeded(); - const Int64 * start = reinterpret_cast(state.buffer); - if (!scan_spec.filter) return; + if (!filter || row_set.none()) + return; int count = 0; for (size_t i = 0; i < rows_to_read; i++) { if (null_map[i]) { - row_set.set(i, scan_spec.filter->testNull()); + row_set.set(i, filter->testNull()); } else { - row_set.set(i, scan_spec.filter->testInt64(start[count])); + row_set.set(i, filter->testInt64(start[count])); count++; } } } template -MutableColumnPtr Int64ColumnDirectReader::createColumn() +void NumberColumnDirectReader::computeRowSetSpace(RowSet & row_set, PaddedPODArray & null_map, size_t, size_t rows_to_read) +{ + readAndDecodePage(); + const Int64 * start = reinterpret_cast(state.buffer); + computeRowSetPlainSpace(start, row_set, scan_spec.filter, null_map, rows_to_read); +} + +template +MutableColumnPtr NumberColumnDirectReader::createColumn() { return DataType::ColumnType::create(); } template -Int64ColumnDirectReader::Int64ColumnDirectReader(std::unique_ptr page_reader_, ScanSpec scan_spec_) +NumberColumnDirectReader::NumberColumnDirectReader(std::unique_ptr page_reader_, ScanSpec scan_spec_) : SelectiveColumnReader(std::move(page_reader_), scan_spec_) { } +template +NumberDictionaryReader::NumberDictionaryReader(std::unique_ptr page_reader_, ScanSpec scan_spec_) + : SelectiveColumnReader(std::move(page_reader_), scan_spec_) +{ +} + +template +void NumberDictionaryReader::nextIdxBatchIfEmpty(size_t rows_to_read) +{ + if (!state.idx_buffer.empty() || plain) + return; + state.idx_buffer.resize(rows_to_read); + idx_decoder.GetBatch(state.idx_buffer.data(), static_cast(rows_to_read)); +} + + +template +void NumberDictionaryReader::computeRowSet(RowSet & row_set, size_t rows_to_read) +{ + readAndDecodePage(); + chassert(rows_to_read <= state.remain_rows); + if (plain) + { + const Int64 * start = reinterpret_cast(state.buffer); + computeRowSetPlain(start, row_set, scan_spec.filter, rows_to_read); + return; + } + nextIdxBatchIfEmpty(rows_to_read); + if (scan_spec.filter || row_set.any()) + { + auto & cache = *state.filter_cache; + for (size_t i = 0; i < rows_to_read; ++i) + { + int idx = state.idx_buffer[0]; + if (!cache.has(idx)) + { + if constexpr (std::is_same_v) + cache.set(idx, scan_spec.filter->testInt64(dict[idx])); + } + row_set.set(i, cache.get(idx)); + } + } +} + +template +void NumberDictionaryReader::computeRowSetSpace( + RowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) +{ + readAndDecodePage(); + chassert(rows_to_read <= state.remain_rows); + if (plain) + { + const Int64 * start = reinterpret_cast(state.buffer); + computeRowSetPlainSpace(start, row_set, scan_spec.filter, null_map, rows_to_read); + return; + } + auto nonnull_count = rows_to_read - null_count; + nextIdxBatchIfEmpty(nonnull_count); + if (scan_spec.filter || row_set.any()) + { + auto & cache = *state.filter_cache; + int count = 0; + for (size_t i = 0; i < rows_to_read; ++i) + { + if (null_map[i]) + { + if (!cache.hasNull()) + { + cache.setNull(scan_spec.filter->testNull()); + } + row_set.set(i, cache.getNull()); + } + else + { + int idx = state.idx_buffer[count++]; + if (!cache.has(idx)) + { + if constexpr (std::is_same_v) + cache.set(idx, scan_spec.filter->testInt64(dict[idx])); + } + row_set.set(i, cache.get(idx)); + } + } + } +} + +template +void NumberDictionaryReader::read(MutableColumnPtr & column, RowSet & row_set, size_t rows_to_read) +{ + readAndDecodePage(); + auto * int_column = static_cast(column.get()); + auto & data = int_column->getData(); + nextIdxBatchIfEmpty(rows_to_read); + if (plain) + plain_decoder->decodeFixedValue(data, row_set, rows_to_read); + else + { + dict_decoder->decodeFixedValue(data, row_set, rows_to_read); + } +} + +template +void NumberDictionaryReader::readSpace( + MutableColumnPtr & column, RowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) +{ + readAndDecodePage(); + auto * int_column = static_cast(column.get()); + auto & data = int_column->getData(); + nextIdxBatchIfEmpty(rows_to_read - null_count); + if (plain) + plain_decoder->decodeFixedValueSpace(data, row_set, null_map, rows_to_read); + else + dict_decoder->decodeFixedValueSpace(data, row_set, null_map, rows_to_read); +} + +template +void NumberDictionaryReader::readDictPage(const parquet::DictionaryPage & page) +{ + const auto * dict_data = page.data(); + auto dict_size = page.num_values(); + dict.resize(dict_size); + state.filter_cache = std::make_unique(dict_size); + memcpy(dict.data(), dict_data, dict_size * sizeof(Int64)); +} + +template +size_t NumberDictionaryReader::skipValuesInCurrentPage(size_t rows_to_skip) +{ + if (!state.page || !rows_to_skip) + return rows_to_skip; + size_t skipped = std::min(state.remain_rows, rows_to_skip); + state.remain_rows -= skipped; + if (plain) + { + state.buffer += skipped * sizeof(Int64); + } + else + { + if (!state.idx_buffer.empty()) + { + // only support skip all + chassert(state.idx_buffer.size() == skipped); + state.idx_buffer.resize(0); + } + else + { + state.idx_buffer.resize(skipped); + idx_decoder.GetBatch(state.idx_buffer.data(), static_cast(skipped)); + state.idx_buffer.resize(0); + } + } + return rows_to_skip - skipped; +} + +template +void NumberDictionaryReader::createDictDecoder() +{ + dict_decoder = std::make_unique>(dict, state.idx_buffer, state.remain_rows); +} + +template +void NumberDictionaryReader::downgradeToPlain() +{ + dict.resize(0); + dict_decoder.reset(); +} + size_t OptionalColumnReader::currentRemainRows() const { return child->currentRemainRows(); } -void OptionalColumnReader::nextBatchNullMap(size_t rows_to_read) +void OptionalColumnReader::nextBatchNullMapIfNeeded(size_t rows_to_read) { + if (!cur_null_map.empty()) + return; cur_null_map.resize_fill(rows_to_read, 0); cur_null_count = 0; const auto & def_levels = child->getDefinitionLevels(); @@ -278,14 +510,15 @@ void OptionalColumnReader::nextBatchNullMap(size_t rows_to_read) if (def_levels[start + i] < max_def_level) { cur_null_map[i] = 1; - cur_null_count ++; + cur_null_count++; } } } -void OptionalColumnReader::computeRowSet(RowSet& row_set, size_t rows_to_read) +void OptionalColumnReader::computeRowSet(RowSet & row_set, size_t rows_to_read) { - nextBatchNullMap(rows_to_read); + applyLazySkip(); + nextBatchNullMapIfNeeded(rows_to_read); if (scan_spec.filter) { for (size_t i = 0; i < rows_to_read; i++) @@ -301,15 +534,17 @@ void OptionalColumnReader::computeRowSet(RowSet& row_set, size_t rows_to_read) } } if (cur_null_count) - child->computeRowSetSpace(row_set, cur_null_map, rows_to_read); + child->computeRowSetSpace(row_set, cur_null_map, cur_null_count, rows_to_read); else child->computeRowSet(row_set, rows_to_read); } -void OptionalColumnReader::read(MutableColumnPtr & column, RowSet& row_set, size_t rows_to_read) +void OptionalColumnReader::read(MutableColumnPtr & column, RowSet & row_set, size_t rows_to_read) { + applyLazySkip(); + nextBatchNullMapIfNeeded(rows_to_read); rows_to_read = std::min(child->currentRemainRows(), rows_to_read); - auto* nullable_column = static_cast(column.get()); + auto * nullable_column = static_cast(column.get()); auto nested_column = nullable_column->getNestedColumnPtr()->assumeMutable(); auto & null_data = nullable_column->getNullMapData(); @@ -322,7 +557,7 @@ void OptionalColumnReader::read(MutableColumnPtr & column, RowSet& row_set, size } if (cur_null_count) { - child->readSpace(nested_column, row_set, cur_null_map, rows_to_read); + child->readSpace(nested_column, row_set, cur_null_map, cur_null_count, rows_to_read); } else { @@ -331,36 +566,82 @@ void OptionalColumnReader::read(MutableColumnPtr & column, RowSet& row_set, size cleanNullMap(); } -void OptionalColumnReader::skip(size_t rows) +size_t OptionalColumnReader::skipValuesInCurrentPage(size_t rows) { + if (!rows) + return 0; + if (!child->currentRemainRows() || !child->state.page) + return rows; + auto skipped = std::min(rows, child->currentRemainRows()); if (cur_null_map.empty()) - nextBatchNullMap(rows); + nextBatchNullMapIfNeeded(skipped); else chassert(rows == cur_null_map.size()); child->skipNulls(cur_null_count); - child->skip(rows - cur_null_count); + child->skip(skipped - cur_null_count); cleanNullMap(); + return rows - skipped; } MutableColumnPtr OptionalColumnReader::createColumn() { return ColumnNullable::create(child->createColumn(), ColumnUInt8::create()); } +void OptionalColumnReader::applyLazySkip() +{ + skipPageIfNeed(); + child->readAndDecodePage(); + state.lazy_skip_rows = skipValuesInCurrentPage(state.lazy_skip_rows); + chassert(!state.lazy_skip_rows); +} +void OptionalColumnReader::skipPageIfNeed() +{ + child->state.lazy_skip_rows = state.lazy_skip_rows; + child->skipPageIfNeed(); + state.lazy_skip_rows = child->state.lazy_skip_rows; + child->state.lazy_skip_rows = 0; +} + +bool isLogicalTypeIntOrNull(parquet::LogicalType::Type::type type) +{ + return type == parquet::LogicalType::Type::INT || type == parquet::LogicalType::Type::NONE; +} SelectiveColumnReaderPtr SelectiveColumnReaderFactory::createLeafColumnReader( - const parquet::ColumnChunkMetaData& column_metadata, const parquet::ColumnDescriptor * column_desc, std::unique_ptr page_reader, ColumnFilterPtr filter) + const parquet::ColumnChunkMetaData & column_metadata, + const parquet::ColumnDescriptor * column_desc, + std::unique_ptr page_reader, + ColumnFilterPtr filter) { - ScanSpec scan_spec{.column_name=column_desc->name(), .column_desc=column_desc, .filter=filter}; - if (column_desc->physical_type() == parquet::Type::INT64 && - (column_desc->logical_type()->type() == parquet::LogicalType::Type::INT - || column_desc->logical_type()->type() == parquet::LogicalType::Type::NONE)) + ScanSpec scan_spec{.column_name = column_desc->name(), .column_desc = column_desc, .filter = filter}; + if (column_desc->physical_type() == parquet::Type::INT64 && isLogicalTypeIntOrNull(column_desc->logical_type()->type())) { - bool plain_encoding = column_metadata.encodings().size() == 1 && column_metadata.encodings()[0] == parquet::Encoding::PLAIN; - if (plain_encoding) - return std::make_shared>(std::move(page_reader), scan_spec); + if (!column_metadata.has_dictionary_page()) + return std::make_shared>(std::move(page_reader), scan_spec); else - throw Exception(ErrorCodes::UNSUPPORTED_METHOD, "Unsupported encoding for int64 column"); + return std::make_shared>(std::move(page_reader), scan_spec); + } + if (column_desc->physical_type() == parquet::Type::INT32 && isLogicalTypeIntOrNull(column_desc->logical_type()->type())) + { + if (!column_metadata.has_dictionary_page()) + return std::make_shared>(std::move(page_reader), scan_spec); + else + return std::make_shared>(std::move(page_reader), scan_spec); + } + else if (column_desc->physical_type() == parquet::Type::FLOAT) + { + if (!column_metadata.has_dictionary_page()) + return std::make_shared>(std::move(page_reader), scan_spec); + else + return std::make_shared>(std::move(page_reader), scan_spec); + } + else if (column_desc->physical_type() == parquet::Type::DOUBLE) + { + if (!column_metadata.has_dictionary_page()) + return std::make_shared>(std::move(page_reader), scan_spec); + else + return std::make_shared>(std::move(page_reader), scan_spec); } else { @@ -374,6 +655,18 @@ SelectiveColumnReaderPtr SelectiveColumnReaderFactory::createOptionalColumnReade return std::make_shared(scan_spec, std::move(child)); } +template class NumberColumnDirectReader; +template class NumberColumnDirectReader; +template class NumberColumnDirectReader; +template class NumberColumnDirectReader; -template class Int64ColumnDirectReader; +template class NumberDictionaryReader; +template class NumberDictionaryReader; +template class NumberDictionaryReader; +template class NumberDictionaryReader; + +template class DictDecoder; +template class DictDecoder; +template class DictDecoder; +template class DictDecoder; } diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h index 3fda6a8b02d..2046592d5ff 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h @@ -1,14 +1,16 @@ #pragma once #include "ColumnFilter.h" +#include #include #include #include +#include +#include #include #include #include #include - namespace parquet { class ColumnDescriptor; @@ -16,36 +18,6 @@ class ColumnDescriptor; namespace DB { -class RowSet -{ -public: - explicit RowSet(size_t maxRows) : max_rows_(maxRows) - { - bitset.flip(); - } - - void set(size_t i, bool value) { bitset.set(i, value);} - bool get(size_t i) { return bitset.test(i); } - size_t totalRows() const { return max_rows_; } - bool none() const - { - size_t count =0; - for (size_t i = 0; i < max_rows_; i++) - { - if (bitset.test(i)) - { - count++; - } - } - if (!count) - return true; - return false; - } - -private: - size_t max_rows_ = 0; - std::bitset<8192> bitset; -}; class SelectiveColumnReader; @@ -58,30 +30,216 @@ struct ScanSpec ColumnFilterPtr filter; }; -class ScanState +class FilterCache { public: + explicit FilterCache(size_t size) + { + cache_set.resize(size); + filter_cache.resize(size); + } + + bool has(size_t size) { return cache_set.test(size); } + + bool hasNull() const { return exist_null; } + + bool getNull() const { return value_null; } + + void setNull(bool value) + { + exist_null = true; + value_null = value; + } + + bool get(size_t size) { return filter_cache.test(size); } + + void set(size_t size, bool value) + { + cache_set.set(size, true); + filter_cache.set(size, value); + } + +private: + boost::dynamic_bitset<> cache_set; + boost::dynamic_bitset<> filter_cache; + bool exist_null = false; + bool value_null = false; +}; + + +struct ScanState +{ std::shared_ptr page; PaddedPODArray def_levels; PaddedPODArray rep_levels; - const uint8_t * buffer; + const uint8_t * buffer = nullptr; + size_t buffer_size = 0; + size_t lazy_skip_rows = 0; + + // for dictionary encoding + PaddedPODArray idx_buffer; + std::unique_ptr filter_cache; + size_t remain_rows = 0; }; -class SelectiveColumnReader +class PlainDecoder { public: - SelectiveColumnReader(std::unique_ptr page_reader_, const ScanSpec scan_spec_) - : page_reader(std::move(page_reader_)), scan_spec(scan_spec_) + PlainDecoder(const uint8_t *& buffer_, size_t & remain_rows_) : buffer(buffer_), remain_rows(remain_rows_) { } + + template + void decodeFixedValue(PaddedPODArray & data, RowSet & row_set, size_t rows_to_read) + { + const T * start = reinterpret_cast(buffer); + if (row_set.all()) + { + data.insert_assume_reserved(start, start + rows_to_read); + } + else + { + size_t rows_read = 0; + while (rows_read < rows_to_read) + { + if (row_set.get(rows_read)) + { + data.push_back(start[rows_read]); + } + rows_read++; + } + } + + buffer += rows_to_read * sizeof(T); + remain_rows -= rows_to_read; + } + + template + void decodeFixedValueSpace(PaddedPODArray & data, RowSet & row_set, PaddedPODArray & null_map, size_t rows_to_read) + { + size_t rows_read = 0; + const T * start = reinterpret_cast(buffer); + size_t count = 0; + if (row_set.all()) + { + for (size_t i = 0; i < rows_to_read; i++) + { + if (null_map[i]) + { + data.push_back(0); + } + else + { + data.push_back(start[count]); + count++; + } + } + } + else + { + while (rows_read < rows_to_read) + { + if (row_set.get(rows_read)) + { + if (null_map[rows_read]) + { + data.push_back(0); + } + else + { + data.push_back(start[count]); + count++; + } + } + rows_read++; + } + } + buffer += count * sizeof(Int64); + remain_rows -= rows_to_read; + } + +private: + const uint8_t *& buffer; + size_t & remain_rows; +}; + +template +class DictDecoder +{ +public: + DictDecoder(PaddedPODArray & dict_, PaddedPODArray & idx_buffer_, size_t & remain_rows_) + : dict(dict_), idx_buffer(idx_buffer_), remain_rows(remain_rows_) + { + } + + void decodeFixedValue(PaddedPODArray & data, RowSet & row_set, size_t rows_to_read) + { + size_t rows_read = 0; + while (rows_read < rows_to_read) + { + if (row_set.get(rows_read)) + { + data.push_back(dict[idx_buffer[rows_read]]); + } + rows_read++; + } + idx_buffer.resize(0); + remain_rows -= rows_to_read; + } + + void + decodeFixedValueSpace(PaddedPODArray & data, RowSet & row_set, PaddedPODArray & null_map, size_t rows_to_read) + { + size_t rows_read = 0; + size_t count = 0; + while (rows_read < rows_to_read) + { + if (row_set.get(rows_read)) + { + if (null_map[rows_read]) + { + data.push_back(0); + } + else + { + data.push_back(dict[idx_buffer[count++]]); + } + } + else if (!null_map[rows_read]) + count++; + rows_read++; + } + chassert(count == idx_buffer.size()); + remain_rows -= rows_to_read; + idx_buffer.resize(0); + } + +private: + PaddedPODArray & dict; + PaddedPODArray & idx_buffer; + size_t & remain_rows; +}; + + +class SelectiveColumnReader +{ + friend class OptionalColumnReader; + +public: + SelectiveColumnReader(std::unique_ptr page_reader_, const ScanSpec scan_spec_) + : page_reader(std::move(page_reader_)), scan_spec(scan_spec_) { } virtual ~SelectiveColumnReader() = default; - virtual void computeRowSet(RowSet& row_set, size_t rows_to_read) = 0; - virtual void computeRowSetSpace(RowSet& , PaddedPODArray& , size_t ) {} - virtual void read(MutableColumnPtr & column, RowSet& row_set, size_t rows_to_read) = 0; - virtual void readSpace(MutableColumnPtr & , RowSet& , PaddedPODArray& , size_t ) {} - virtual void getValues() { } - void readPageIfNeeded(); + virtual void computeRowSet(RowSet & row_set, size_t rows_to_read) = 0; + virtual void computeRowSetSpace(RowSet &, PaddedPODArray &, size_t, size_t) { } + virtual void read(MutableColumnPtr & column, RowSet & row_set, size_t rows_to_read) = 0; + virtual void readSpace(MutableColumnPtr &, RowSet &, PaddedPODArray &, size_t, size_t) { } + virtual void readPageIfNeeded(); + void readAndDecodePage() + { + readPageIfNeeded(); + decodePage(); + } virtual MutableColumnPtr createColumn() = 0; const PaddedPODArray & getDefinitionLevels() @@ -90,51 +248,96 @@ public: return state.def_levels; } - virtual size_t currentRemainRows() const - { - return state.remain_rows; - } + virtual size_t currentRemainRows() const { return state.remain_rows; } void skipNulls(size_t rows_to_skip) { - state.remain_rows -= rows_to_skip; + auto skipped = std::min(rows_to_skip, state.remain_rows); + state.remain_rows -= skipped; + state.lazy_skip_rows += (rows_to_skip - skipped); } - virtual void skip(size_t rows) = 0; - - int16_t max_definition_level() const + void skip(size_t rows) { - return scan_spec.column_desc->max_definition_level(); + state.lazy_skip_rows += rows; + state.lazy_skip_rows = skipValuesInCurrentPage(state.lazy_skip_rows); + // std::cerr << "lazy skip " << state.lazy_skip_rows << " rows" << std::endl; + skipPageIfNeed(); } - int16_t max_repetition_level() const - { - return scan_spec.column_desc->max_repetition_level(); - } + // skip values in current page, return the number of rows need to lazy skip + virtual size_t skipValuesInCurrentPage(size_t rows_to_skip) = 0; + + virtual int16_t max_definition_level() const { return scan_spec.column_desc->max_definition_level(); } + + virtual int16_t max_repetition_level() const { return scan_spec.column_desc->max_repetition_level(); } protected: - void readPage(); + void decodePage(); + virtual void skipPageIfNeed(); + bool readPage(); void readDataPageV1(const parquet::DataPageV1 & page); - void readDictPage(const parquet::DictionaryPage & ) {} + virtual void readDictPage(const parquet::DictionaryPage &) { } + virtual void initIndexDecoderIfNeeded() { } + virtual void createDictDecoder() { } + virtual void downgradeToPlain() { } - - std::unique_ptr page_reader; + std::unique_ptr page_reader; ScanState state; ScanSpec scan_spec; + std::unique_ptr plain_decoder; + bool plain = true; }; template -class Int64ColumnDirectReader : public SelectiveColumnReader +class NumberColumnDirectReader : public SelectiveColumnReader { public: - Int64ColumnDirectReader(std::unique_ptr page_reader_, ScanSpec scan_spec_); - ~Int64ColumnDirectReader() override { } + NumberColumnDirectReader(std::unique_ptr page_reader_, ScanSpec scan_spec_); + ~NumberColumnDirectReader() override = default; MutableColumnPtr createColumn() override; - void computeRowSet(RowSet& row_set, size_t rows_to_read) override; - void computeRowSetSpace(RowSet & row_set, PaddedPODArray & null_map, size_t rows_to_read) override; - void read(MutableColumnPtr & column, RowSet& row_set, size_t rows_to_read) override; - void readSpace(MutableColumnPtr & column, RowSet & row_set, PaddedPODArray& null_map, size_t rows_to_read) override; - void skip(size_t rows) override; + void computeRowSet(RowSet & row_set, size_t rows_to_read) override; + void computeRowSetSpace(RowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override; + void read(MutableColumnPtr & column, RowSet & row_set, size_t rows_to_read) override; + void readSpace( + MutableColumnPtr & column, RowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override; + size_t skipValuesInCurrentPage(size_t rows_to_skip) override; +}; + +template +class NumberDictionaryReader : public SelectiveColumnReader +{ +public: + NumberDictionaryReader(std::unique_ptr page_reader_, ScanSpec scan_spec_); + ~NumberDictionaryReader() override = default; + void computeRowSet(RowSet & row_set, size_t rows_to_read) override; + void computeRowSetSpace(RowSet & set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override; + void read(MutableColumnPtr & column, RowSet & row_set, size_t rows_to_read) override; + void readSpace(MutableColumnPtr & ptr, RowSet & set, PaddedPODArray & null_map, size_t null_count, size_t size) override; + MutableColumnPtr createColumn() override { return DataType::ColumnType::create(); } + size_t skipValuesInCurrentPage(size_t rows_to_skip) override; + +protected: + void readDictPage(const parquet::DictionaryPage & page) override; + void initIndexDecoderIfNeeded() override + { + if (dict.empty()) + return; + uint8_t bit_width = *state.buffer; + idx_decoder = arrow::util::RleDecoder(++state.buffer, static_cast(--state.buffer_size), bit_width); + } + void nextIdxBatchIfEmpty(size_t rows_to_read); + + void cleanIdxBatch() { return state.idx_buffer.resize(0); } + + void createDictDecoder() override; + + void downgradeToPlain() override; + +private: + arrow::util::RleDecoder idx_decoder; + std::unique_ptr> dict_decoder; + PaddedPODArray dict; }; class ParquetReader; @@ -142,21 +345,20 @@ class ParquetReader; class RowGroupChunkReader { public: - RowGroupChunkReader(ParquetReader * parquetReader, - std::shared_ptr rowGroupReader, - std::unordered_map filters); + RowGroupChunkReader( + ParquetReader * parquetReader, + std::shared_ptr rowGroupReader, + std::unordered_map filters); Chunk readChunk(size_t rows); - bool hasMoreRows() const - { - return remain_rows > 0; - } + bool hasMoreRows() const { return remain_rows > 0; } private: ParquetReader * parquet_reader; - std::shared_ptr row_group_reader; + std::shared_ptr row_group_meta; std::vector filter_columns; std::unordered_map reader_columns_mapping; std::vector column_readers; + std::vector> column_buffers; size_t remain_rows = 0; }; @@ -171,14 +373,24 @@ public: } ~OptionalColumnReader() override = default; + + void readPageIfNeeded() override { child->readPageIfNeeded(); } MutableColumnPtr createColumn() override; size_t currentRemainRows() const override; - void computeRowSet(RowSet& row_set, size_t rows_to_read) override; - void read(MutableColumnPtr & column, RowSet& row_set, size_t rows_to_read) override; - void skip(size_t rows) override; + void computeRowSet(RowSet & row_set, size_t rows_to_read) override; + void read(MutableColumnPtr & column, RowSet & row_set, size_t rows_to_read) override; + size_t skipValuesInCurrentPage(size_t rows_to_skip) override; + int16_t max_definition_level() const override { return child->max_definition_level(); } + int16_t max_repetition_level() const override { return child->max_repetition_level(); } private: - void nextBatchNullMap(size_t rows_to_read); + void applyLazySkip(); + +protected: + void skipPageIfNeed() override; + +private: + void nextBatchNullMapIfNeeded(size_t rows_to_read); void cleanNullMap() { cur_null_count = 0; @@ -195,7 +407,11 @@ private: class SelectiveColumnReaderFactory { public: - static SelectiveColumnReaderPtr createLeafColumnReader(const parquet::ColumnChunkMetaData& column_metadata, const parquet::ColumnDescriptor * column_desc, std::unique_ptr page_reader, ColumnFilterPtr filter); + static SelectiveColumnReaderPtr createLeafColumnReader( + const parquet::ColumnChunkMetaData & column_metadata, + const parquet::ColumnDescriptor * column_desc, + std::unique_ptr page_reader, + ColumnFilterPtr filter); static SelectiveColumnReaderPtr createOptionalColumnReader(SelectiveColumnReaderPtr child, ColumnFilterPtr filter); }; } diff --git a/src/Processors/Formats/Impl/Parquet/generated/parquet_types.cpp b/src/Processors/Formats/Impl/Parquet/generated/parquet_types.cpp new file mode 100644 index 00000000000..bfd2b75d0e3 --- /dev/null +++ b/src/Processors/Formats/Impl/Parquet/generated/parquet_types.cpp @@ -0,0 +1,7732 @@ +/** + * Autogenerated by Thrift Compiler (0.17.0) + * + * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING + * @generated + */ +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Winconsistent-missing-destructor-override" +#pragma clang diagnostic ignored "-Wsuggest-destructor-override" +#pragma clang diagnostic ignored "-Wreserved-identifier" +#pragma clang diagnostic ignored "-Wunused-variable" +#pragma clang diagnostic ignored "-Wshorten-64-to-32" +#include "parquet_types.h" + +#include +#include + +#include + +namespace parquet { namespace format { + +int _kTypeValues[] = { + Type::BOOLEAN, + Type::INT32, + Type::INT64, + Type::INT96, + Type::FLOAT, + Type::DOUBLE, + Type::BYTE_ARRAY, + Type::FIXED_LEN_BYTE_ARRAY +}; +const char* _kTypeNames[] = { + "BOOLEAN", + "INT32", + "INT64", + "INT96", + "FLOAT", + "DOUBLE", + "BYTE_ARRAY", + "FIXED_LEN_BYTE_ARRAY" +}; +const std::map _Type_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(8, _kTypeValues, _kTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); + +std::ostream& operator<<(std::ostream& out, const Type::type& val) { + std::map::const_iterator it = _Type_VALUES_TO_NAMES.find(val); + if (it != _Type_VALUES_TO_NAMES.end()) { + out << it->second; + } else { + out << static_cast(val); + } + return out; +} + +std::string to_string(const Type::type& val) { + std::map::const_iterator it = _Type_VALUES_TO_NAMES.find(val); + if (it != _Type_VALUES_TO_NAMES.end()) { + return std::string(it->second); + } else { + return std::to_string(static_cast(val)); + } +} + +int _kConvertedTypeValues[] = { + /** + * a BYTE_ARRAY actually contains UTF8 encoded chars + */ + ConvertedType::UTF8, + /** + * a map is converted as an optional field containing a repeated key/value pair + */ + ConvertedType::MAP, + /** + * a key/value pair is converted into a group of two fields + */ + ConvertedType::MAP_KEY_VALUE, + /** + * a list is converted into an optional field containing a repeated field for its + * values + */ + ConvertedType::LIST, + /** + * an enum is converted into a binary field + */ + ConvertedType::ENUM, + /** + * A decimal value. + * + * This may be used to annotate binary or fixed primitive types. The + * underlying byte array stores the unscaled value encoded as two's + * complement using big-endian byte order (the most significant byte is the + * zeroth element). The value of the decimal is the value * 10^{-scale}. + * + * This must be accompanied by a (maximum) precision and a scale in the + * SchemaElement. The precision specifies the number of digits in the decimal + * and the scale stores the location of the decimal point. For example 1.23 + * would have precision 3 (3 total digits) and scale 2 (the decimal point is + * 2 digits over). + */ + ConvertedType::DECIMAL, + /** + * A Date + * + * Stored as days since Unix epoch, encoded as the INT32 physical type. + * + */ + ConvertedType::DATE, + /** + * A time + * + * The total number of milliseconds since midnight. The value is stored + * as an INT32 physical type. + */ + ConvertedType::TIME_MILLIS, + /** + * A time. + * + * The total number of microseconds since midnight. The value is stored as + * an INT64 physical type. + */ + ConvertedType::TIME_MICROS, + /** + * A date/time combination + * + * Date and time recorded as milliseconds since the Unix epoch. Recorded as + * a physical type of INT64. + */ + ConvertedType::TIMESTAMP_MILLIS, + /** + * A date/time combination + * + * Date and time recorded as microseconds since the Unix epoch. The value is + * stored as an INT64 physical type. + */ + ConvertedType::TIMESTAMP_MICROS, + /** + * An unsigned integer value. + * + * The number describes the maximum number of meaningful data bits in + * the stored value. 8, 16 and 32 bit values are stored using the + * INT32 physical type. 64 bit values are stored using the INT64 + * physical type. + * + */ + ConvertedType::UINT_8, + ConvertedType::UINT_16, + ConvertedType::UINT_32, + ConvertedType::UINT_64, + /** + * A signed integer value. + * + * The number describes the maximum number of meaningful data bits in + * the stored value. 8, 16 and 32 bit values are stored using the + * INT32 physical type. 64 bit values are stored using the INT64 + * physical type. + * + */ + ConvertedType::INT_8, + ConvertedType::INT_16, + ConvertedType::INT_32, + ConvertedType::INT_64, + /** + * An embedded JSON document + * + * A JSON document embedded within a single UTF8 column. + */ + ConvertedType::JSON, + /** + * An embedded BSON document + * + * A BSON document embedded within a single BINARY column. + */ + ConvertedType::BSON, + /** + * An interval of time + * + * This type annotates data stored as a FIXED_LEN_BYTE_ARRAY of length 12 + * This data is composed of three separate little endian unsigned + * integers. Each stores a component of a duration of time. The first + * integer identifies the number of months associated with the duration, + * the second identifies the number of days associated with the duration + * and the third identifies the number of milliseconds associated with + * the provided duration. This duration of time is independent of any + * particular timezone or date. + */ + ConvertedType::INTERVAL +}; +const char* _kConvertedTypeNames[] = { + /** + * a BYTE_ARRAY actually contains UTF8 encoded chars + */ + "UTF8", + /** + * a map is converted as an optional field containing a repeated key/value pair + */ + "MAP", + /** + * a key/value pair is converted into a group of two fields + */ + "MAP_KEY_VALUE", + /** + * a list is converted into an optional field containing a repeated field for its + * values + */ + "LIST", + /** + * an enum is converted into a binary field + */ + "ENUM", + /** + * A decimal value. + * + * This may be used to annotate binary or fixed primitive types. The + * underlying byte array stores the unscaled value encoded as two's + * complement using big-endian byte order (the most significant byte is the + * zeroth element). The value of the decimal is the value * 10^{-scale}. + * + * This must be accompanied by a (maximum) precision and a scale in the + * SchemaElement. The precision specifies the number of digits in the decimal + * and the scale stores the location of the decimal point. For example 1.23 + * would have precision 3 (3 total digits) and scale 2 (the decimal point is + * 2 digits over). + */ + "DECIMAL", + /** + * A Date + * + * Stored as days since Unix epoch, encoded as the INT32 physical type. + * + */ + "DATE", + /** + * A time + * + * The total number of milliseconds since midnight. The value is stored + * as an INT32 physical type. + */ + "TIME_MILLIS", + /** + * A time. + * + * The total number of microseconds since midnight. The value is stored as + * an INT64 physical type. + */ + "TIME_MICROS", + /** + * A date/time combination + * + * Date and time recorded as milliseconds since the Unix epoch. Recorded as + * a physical type of INT64. + */ + "TIMESTAMP_MILLIS", + /** + * A date/time combination + * + * Date and time recorded as microseconds since the Unix epoch. The value is + * stored as an INT64 physical type. + */ + "TIMESTAMP_MICROS", + /** + * An unsigned integer value. + * + * The number describes the maximum number of meaningful data bits in + * the stored value. 8, 16 and 32 bit values are stored using the + * INT32 physical type. 64 bit values are stored using the INT64 + * physical type. + * + */ + "UINT_8", + "UINT_16", + "UINT_32", + "UINT_64", + /** + * A signed integer value. + * + * The number describes the maximum number of meaningful data bits in + * the stored value. 8, 16 and 32 bit values are stored using the + * INT32 physical type. 64 bit values are stored using the INT64 + * physical type. + * + */ + "INT_8", + "INT_16", + "INT_32", + "INT_64", + /** + * An embedded JSON document + * + * A JSON document embedded within a single UTF8 column. + */ + "JSON", + /** + * An embedded BSON document + * + * A BSON document embedded within a single BINARY column. + */ + "BSON", + /** + * An interval of time + * + * This type annotates data stored as a FIXED_LEN_BYTE_ARRAY of length 12 + * This data is composed of three separate little endian unsigned + * integers. Each stores a component of a duration of time. The first + * integer identifies the number of months associated with the duration, + * the second identifies the number of days associated with the duration + * and the third identifies the number of milliseconds associated with + * the provided duration. This duration of time is independent of any + * particular timezone or date. + */ + "INTERVAL" +}; +const std::map _ConvertedType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(22, _kConvertedTypeValues, _kConvertedTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); + +std::ostream& operator<<(std::ostream& out, const ConvertedType::type& val) { + std::map::const_iterator it = _ConvertedType_VALUES_TO_NAMES.find(val); + if (it != _ConvertedType_VALUES_TO_NAMES.end()) { + out << it->second; + } else { + out << static_cast(val); + } + return out; +} + +std::string to_string(const ConvertedType::type& val) { + std::map::const_iterator it = _ConvertedType_VALUES_TO_NAMES.find(val); + if (it != _ConvertedType_VALUES_TO_NAMES.end()) { + return std::string(it->second); + } else { + return std::to_string(static_cast(val)); + } +} + +int _kFieldRepetitionTypeValues[] = { + /** + * This field is required (can not be null) and each record has exactly 1 value. + */ + FieldRepetitionType::REQUIRED, + /** + * The field is optional (can be null) and each record has 0 or 1 values. + */ + FieldRepetitionType::OPTIONAL, + /** + * The field is repeated and can contain 0 or more values + */ + FieldRepetitionType::REPEATED +}; +const char* _kFieldRepetitionTypeNames[] = { + /** + * This field is required (can not be null) and each record has exactly 1 value. + */ + "REQUIRED", + /** + * The field is optional (can be null) and each record has 0 or 1 values. + */ + "OPTIONAL", + /** + * The field is repeated and can contain 0 or more values + */ + "REPEATED" +}; +const std::map _FieldRepetitionType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(3, _kFieldRepetitionTypeValues, _kFieldRepetitionTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); + +std::ostream& operator<<(std::ostream& out, const FieldRepetitionType::type& val) { + std::map::const_iterator it = _FieldRepetitionType_VALUES_TO_NAMES.find(val); + if (it != _FieldRepetitionType_VALUES_TO_NAMES.end()) { + out << it->second; + } else { + out << static_cast(val); + } + return out; +} + +std::string to_string(const FieldRepetitionType::type& val) { + std::map::const_iterator it = _FieldRepetitionType_VALUES_TO_NAMES.find(val); + if (it != _FieldRepetitionType_VALUES_TO_NAMES.end()) { + return std::string(it->second); + } else { + return std::to_string(static_cast(val)); + } +} + +int _kEncodingValues[] = { + /** + * Default encoding. + * BOOLEAN - 1 bit per value. 0 is false; 1 is true. + * INT32 - 4 bytes per value. Stored as little-endian. + * INT64 - 8 bytes per value. Stored as little-endian. + * FLOAT - 4 bytes per value. IEEE. Stored as little-endian. + * DOUBLE - 8 bytes per value. IEEE. Stored as little-endian. + * BYTE_ARRAY - 4 byte length stored as little endian, followed by bytes. + * FIXED_LEN_BYTE_ARRAY - Just the bytes. + */ + Encoding::PLAIN, + /** + * Deprecated: Dictionary encoding. The values in the dictionary are encoded in the + * plain type. + * in a data page use RLE_DICTIONARY instead. + * in a Dictionary page use PLAIN instead + */ + Encoding::PLAIN_DICTIONARY, + /** + * Group packed run length encoding. Usable for definition/repetition levels + * encoding and Booleans (on one bit: 0 is false; 1 is true.) + */ + Encoding::RLE, + /** + * Bit packed encoding. This can only be used if the data has a known max + * width. Usable for definition/repetition levels encoding. + */ + Encoding::BIT_PACKED, + /** + * Delta encoding for integers. This can be used for int columns and works best + * on sorted data + */ + Encoding::DELTA_BINARY_PACKED, + /** + * Encoding for byte arrays to separate the length values and the data. The lengths + * are encoded using DELTA_BINARY_PACKED + */ + Encoding::DELTA_LENGTH_BYTE_ARRAY, + /** + * Incremental-encoded byte array. Prefix lengths are encoded using DELTA_BINARY_PACKED. + * Suffixes are stored as delta length byte arrays. + */ + Encoding::DELTA_BYTE_ARRAY, + /** + * Dictionary encoding: the ids are encoded using the RLE encoding + */ + Encoding::RLE_DICTIONARY, + /** + * Encoding for floating-point data. + * K byte-streams are created where K is the size in bytes of the data type. + * The individual bytes of an FP value are scattered to the corresponding stream and + * the streams are concatenated. + * This itself does not reduce the size of the data but can lead to better compression + * afterwards. + */ + Encoding::BYTE_STREAM_SPLIT +}; +const char* _kEncodingNames[] = { + /** + * Default encoding. + * BOOLEAN - 1 bit per value. 0 is false; 1 is true. + * INT32 - 4 bytes per value. Stored as little-endian. + * INT64 - 8 bytes per value. Stored as little-endian. + * FLOAT - 4 bytes per value. IEEE. Stored as little-endian. + * DOUBLE - 8 bytes per value. IEEE. Stored as little-endian. + * BYTE_ARRAY - 4 byte length stored as little endian, followed by bytes. + * FIXED_LEN_BYTE_ARRAY - Just the bytes. + */ + "PLAIN", + /** + * Deprecated: Dictionary encoding. The values in the dictionary are encoded in the + * plain type. + * in a data page use RLE_DICTIONARY instead. + * in a Dictionary page use PLAIN instead + */ + "PLAIN_DICTIONARY", + /** + * Group packed run length encoding. Usable for definition/repetition levels + * encoding and Booleans (on one bit: 0 is false; 1 is true.) + */ + "RLE", + /** + * Bit packed encoding. This can only be used if the data has a known max + * width. Usable for definition/repetition levels encoding. + */ + "BIT_PACKED", + /** + * Delta encoding for integers. This can be used for int columns and works best + * on sorted data + */ + "DELTA_BINARY_PACKED", + /** + * Encoding for byte arrays to separate the length values and the data. The lengths + * are encoded using DELTA_BINARY_PACKED + */ + "DELTA_LENGTH_BYTE_ARRAY", + /** + * Incremental-encoded byte array. Prefix lengths are encoded using DELTA_BINARY_PACKED. + * Suffixes are stored as delta length byte arrays. + */ + "DELTA_BYTE_ARRAY", + /** + * Dictionary encoding: the ids are encoded using the RLE encoding + */ + "RLE_DICTIONARY", + /** + * Encoding for floating-point data. + * K byte-streams are created where K is the size in bytes of the data type. + * The individual bytes of an FP value are scattered to the corresponding stream and + * the streams are concatenated. + * This itself does not reduce the size of the data but can lead to better compression + * afterwards. + */ + "BYTE_STREAM_SPLIT" +}; +const std::map _Encoding_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(9, _kEncodingValues, _kEncodingNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); + +std::ostream& operator<<(std::ostream& out, const Encoding::type& val) { + std::map::const_iterator it = _Encoding_VALUES_TO_NAMES.find(val); + if (it != _Encoding_VALUES_TO_NAMES.end()) { + out << it->second; + } else { + out << static_cast(val); + } + return out; +} + +std::string to_string(const Encoding::type& val) { + std::map::const_iterator it = _Encoding_VALUES_TO_NAMES.find(val); + if (it != _Encoding_VALUES_TO_NAMES.end()) { + return std::string(it->second); + } else { + return std::to_string(static_cast(val)); + } +} + +int _kCompressionCodecValues[] = { + CompressionCodec::UNCOMPRESSED, + CompressionCodec::SNAPPY, + CompressionCodec::GZIP, + CompressionCodec::LZO, + CompressionCodec::BROTLI, + CompressionCodec::LZ4, + CompressionCodec::ZSTD, + CompressionCodec::LZ4_RAW +}; +const char* _kCompressionCodecNames[] = { + "UNCOMPRESSED", + "SNAPPY", + "GZIP", + "LZO", + "BROTLI", + "LZ4", + "ZSTD", + "LZ4_RAW" +}; +const std::map _CompressionCodec_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(8, _kCompressionCodecValues, _kCompressionCodecNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); + +std::ostream& operator<<(std::ostream& out, const CompressionCodec::type& val) { + std::map::const_iterator it = _CompressionCodec_VALUES_TO_NAMES.find(val); + if (it != _CompressionCodec_VALUES_TO_NAMES.end()) { + out << it->second; + } else { + out << static_cast(val); + } + return out; +} + +std::string to_string(const CompressionCodec::type& val) { + std::map::const_iterator it = _CompressionCodec_VALUES_TO_NAMES.find(val); + if (it != _CompressionCodec_VALUES_TO_NAMES.end()) { + return std::string(it->second); + } else { + return std::to_string(static_cast(val)); + } +} + +int _kPageTypeValues[] = { + PageType::DATA_PAGE, + PageType::INDEX_PAGE, + PageType::DICTIONARY_PAGE, + PageType::DATA_PAGE_V2 +}; +const char* _kPageTypeNames[] = { + "DATA_PAGE", + "INDEX_PAGE", + "DICTIONARY_PAGE", + "DATA_PAGE_V2" +}; +const std::map _PageType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(4, _kPageTypeValues, _kPageTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); + +std::ostream& operator<<(std::ostream& out, const PageType::type& val) { + std::map::const_iterator it = _PageType_VALUES_TO_NAMES.find(val); + if (it != _PageType_VALUES_TO_NAMES.end()) { + out << it->second; + } else { + out << static_cast(val); + } + return out; +} + +std::string to_string(const PageType::type& val) { + std::map::const_iterator it = _PageType_VALUES_TO_NAMES.find(val); + if (it != _PageType_VALUES_TO_NAMES.end()) { + return std::string(it->second); + } else { + return std::to_string(static_cast(val)); + } +} + +int _kBoundaryOrderValues[] = { + BoundaryOrder::UNORDERED, + BoundaryOrder::ASCENDING, + BoundaryOrder::DESCENDING +}; +const char* _kBoundaryOrderNames[] = { + "UNORDERED", + "ASCENDING", + "DESCENDING" +}; +const std::map _BoundaryOrder_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(3, _kBoundaryOrderValues, _kBoundaryOrderNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); + +std::ostream& operator<<(std::ostream& out, const BoundaryOrder::type& val) { + std::map::const_iterator it = _BoundaryOrder_VALUES_TO_NAMES.find(val); + if (it != _BoundaryOrder_VALUES_TO_NAMES.end()) { + out << it->second; + } else { + out << static_cast(val); + } + return out; +} + +std::string to_string(const BoundaryOrder::type& val) { + std::map::const_iterator it = _BoundaryOrder_VALUES_TO_NAMES.find(val); + if (it != _BoundaryOrder_VALUES_TO_NAMES.end()) { + return std::string(it->second); + } else { + return std::to_string(static_cast(val)); + } +} + + +Statistics::~Statistics() noexcept { +} + + +void Statistics::__set_max(const std::string& val) { + this->max = val; +__isset.max = true; +} + +void Statistics::__set_min(const std::string& val) { + this->min = val; +__isset.min = true; +} + +void Statistics::__set_null_count(const int64_t val) { + this->null_count = val; +__isset.null_count = true; +} + +void Statistics::__set_distinct_count(const int64_t val) { + this->distinct_count = val; +__isset.distinct_count = true; +} + +void Statistics::__set_max_value(const std::string& val) { + this->max_value = val; +__isset.max_value = true; +} + +void Statistics::__set_min_value(const std::string& val) { + this->min_value = val; +__isset.min_value = true; +} +std::ostream& operator<<(std::ostream& out, const Statistics& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t Statistics::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_STRING) { + xfer += iprot->readBinary(this->max); + this->__isset.max = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_STRING) { + xfer += iprot->readBinary(this->min); + this->__isset.min = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 3: + if (ftype == ::apache::thrift::protocol::T_I64) { + xfer += iprot->readI64(this->null_count); + this->__isset.null_count = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 4: + if (ftype == ::apache::thrift::protocol::T_I64) { + xfer += iprot->readI64(this->distinct_count); + this->__isset.distinct_count = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 5: + if (ftype == ::apache::thrift::protocol::T_STRING) { + xfer += iprot->readBinary(this->max_value); + this->__isset.max_value = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 6: + if (ftype == ::apache::thrift::protocol::T_STRING) { + xfer += iprot->readBinary(this->min_value); + this->__isset.min_value = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t Statistics::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("Statistics"); + + if (this->__isset.max) { + xfer += oprot->writeFieldBegin("max", ::apache::thrift::protocol::T_STRING, 1); + xfer += oprot->writeBinary(this->max); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.min) { + xfer += oprot->writeFieldBegin("min", ::apache::thrift::protocol::T_STRING, 2); + xfer += oprot->writeBinary(this->min); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.null_count) { + xfer += oprot->writeFieldBegin("null_count", ::apache::thrift::protocol::T_I64, 3); + xfer += oprot->writeI64(this->null_count); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.distinct_count) { + xfer += oprot->writeFieldBegin("distinct_count", ::apache::thrift::protocol::T_I64, 4); + xfer += oprot->writeI64(this->distinct_count); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.max_value) { + xfer += oprot->writeFieldBegin("max_value", ::apache::thrift::protocol::T_STRING, 5); + xfer += oprot->writeBinary(this->max_value); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.min_value) { + xfer += oprot->writeFieldBegin("min_value", ::apache::thrift::protocol::T_STRING, 6); + xfer += oprot->writeBinary(this->min_value); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(Statistics &a, Statistics &b) { + using ::std::swap; + swap(a.max, b.max); + swap(a.min, b.min); + swap(a.null_count, b.null_count); + swap(a.distinct_count, b.distinct_count); + swap(a.max_value, b.max_value); + swap(a.min_value, b.min_value); + swap(a.__isset, b.__isset); +} + +Statistics::Statistics(const Statistics& other0) { + max = other0.max; + min = other0.min; + null_count = other0.null_count; + distinct_count = other0.distinct_count; + max_value = other0.max_value; + min_value = other0.min_value; + __isset = other0.__isset; +} +Statistics& Statistics::operator=(const Statistics& other1) { + max = other1.max; + min = other1.min; + null_count = other1.null_count; + distinct_count = other1.distinct_count; + max_value = other1.max_value; + min_value = other1.min_value; + __isset = other1.__isset; + return *this; +} +void Statistics::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "Statistics("; + out << "max="; (__isset.max ? (out << to_string(max)) : (out << "")); + out << ", " << "min="; (__isset.min ? (out << to_string(min)) : (out << "")); + out << ", " << "null_count="; (__isset.null_count ? (out << to_string(null_count)) : (out << "")); + out << ", " << "distinct_count="; (__isset.distinct_count ? (out << to_string(distinct_count)) : (out << "")); + out << ", " << "max_value="; (__isset.max_value ? (out << to_string(max_value)) : (out << "")); + out << ", " << "min_value="; (__isset.min_value ? (out << to_string(min_value)) : (out << "")); + out << ")"; +} + + +StringType::~StringType() noexcept { +} + +std::ostream& operator<<(std::ostream& out, const StringType& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t StringType::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + xfer += iprot->skip(ftype); + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t StringType::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("StringType"); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(StringType &a, StringType &b) { + using ::std::swap; + (void) a; + (void) b; +} + +StringType::StringType(const StringType& other2) noexcept { + (void) other2; +} +StringType& StringType::operator=(const StringType& other3) noexcept { + (void) other3; + return *this; +} +void StringType::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "StringType("; + out << ")"; +} + + +UUIDType::~UUIDType() noexcept { +} + +std::ostream& operator<<(std::ostream& out, const UUIDType& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t UUIDType::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + xfer += iprot->skip(ftype); + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t UUIDType::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("UUIDType"); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(UUIDType &a, UUIDType &b) { + using ::std::swap; + (void) a; + (void) b; +} + +UUIDType::UUIDType(const UUIDType& other4) noexcept { + (void) other4; +} +UUIDType& UUIDType::operator=(const UUIDType& other5) noexcept { + (void) other5; + return *this; +} +void UUIDType::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "UUIDType("; + out << ")"; +} + + +MapType::~MapType() noexcept { +} + +std::ostream& operator<<(std::ostream& out, const MapType& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t MapType::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + xfer += iprot->skip(ftype); + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t MapType::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("MapType"); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(MapType &a, MapType &b) { + using ::std::swap; + (void) a; + (void) b; +} + +MapType::MapType(const MapType& other6) noexcept { + (void) other6; +} +MapType& MapType::operator=(const MapType& other7) noexcept { + (void) other7; + return *this; +} +void MapType::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "MapType("; + out << ")"; +} + + +ListType::~ListType() noexcept { +} + +std::ostream& operator<<(std::ostream& out, const ListType& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t ListType::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + xfer += iprot->skip(ftype); + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t ListType::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("ListType"); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(ListType &a, ListType &b) { + using ::std::swap; + (void) a; + (void) b; +} + +ListType::ListType(const ListType& other8) noexcept { + (void) other8; +} +ListType& ListType::operator=(const ListType& other9) noexcept { + (void) other9; + return *this; +} +void ListType::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "ListType("; + out << ")"; +} + + +EnumType::~EnumType() noexcept { +} + +std::ostream& operator<<(std::ostream& out, const EnumType& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t EnumType::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + xfer += iprot->skip(ftype); + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t EnumType::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("EnumType"); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(EnumType &a, EnumType &b) { + using ::std::swap; + (void) a; + (void) b; +} + +EnumType::EnumType(const EnumType& other10) noexcept { + (void) other10; +} +EnumType& EnumType::operator=(const EnumType& other11) noexcept { + (void) other11; + return *this; +} +void EnumType::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "EnumType("; + out << ")"; +} + + +DateType::~DateType() noexcept { +} + +std::ostream& operator<<(std::ostream& out, const DateType& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t DateType::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + xfer += iprot->skip(ftype); + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t DateType::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("DateType"); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(DateType &a, DateType &b) { + using ::std::swap; + (void) a; + (void) b; +} + +DateType::DateType(const DateType& other12) noexcept { + (void) other12; +} +DateType& DateType::operator=(const DateType& other13) noexcept { + (void) other13; + return *this; +} +void DateType::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "DateType("; + out << ")"; +} + + +NullType::~NullType() noexcept { +} + +std::ostream& operator<<(std::ostream& out, const NullType& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t NullType::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + xfer += iprot->skip(ftype); + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t NullType::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("NullType"); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(NullType &a, NullType &b) { + using ::std::swap; + (void) a; + (void) b; +} + +NullType::NullType(const NullType& other14) noexcept { + (void) other14; +} +NullType& NullType::operator=(const NullType& other15) noexcept { + (void) other15; + return *this; +} +void NullType::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "NullType("; + out << ")"; +} + + +DecimalType::~DecimalType() noexcept { +} + + +void DecimalType::__set_scale(const int32_t val) { + this->scale = val; +} + +void DecimalType::__set_precision(const int32_t val) { + this->precision = val; +} +std::ostream& operator<<(std::ostream& out, const DecimalType& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t DecimalType::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + bool isset_scale = false; + bool isset_precision = false; + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_I32) { + xfer += iprot->readI32(this->scale); + isset_scale = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_I32) { + xfer += iprot->readI32(this->precision); + isset_precision = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + if (!isset_scale) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_precision) + throw TProtocolException(TProtocolException::INVALID_DATA); + return xfer; +} + +uint32_t DecimalType::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("DecimalType"); + + xfer += oprot->writeFieldBegin("scale", ::apache::thrift::protocol::T_I32, 1); + xfer += oprot->writeI32(this->scale); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("precision", ::apache::thrift::protocol::T_I32, 2); + xfer += oprot->writeI32(this->precision); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(DecimalType &a, DecimalType &b) { + using ::std::swap; + swap(a.scale, b.scale); + swap(a.precision, b.precision); +} + +DecimalType::DecimalType(const DecimalType& other16) noexcept { + scale = other16.scale; + precision = other16.precision; +} +DecimalType& DecimalType::operator=(const DecimalType& other17) noexcept { + scale = other17.scale; + precision = other17.precision; + return *this; +} +void DecimalType::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "DecimalType("; + out << "scale=" << to_string(scale); + out << ", " << "precision=" << to_string(precision); + out << ")"; +} + + +MilliSeconds::~MilliSeconds() noexcept { +} + +std::ostream& operator<<(std::ostream& out, const MilliSeconds& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t MilliSeconds::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + xfer += iprot->skip(ftype); + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t MilliSeconds::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("MilliSeconds"); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(MilliSeconds &a, MilliSeconds &b) { + using ::std::swap; + (void) a; + (void) b; +} + +MilliSeconds::MilliSeconds(const MilliSeconds& other18) noexcept { + (void) other18; +} +MilliSeconds& MilliSeconds::operator=(const MilliSeconds& other19) noexcept { + (void) other19; + return *this; +} +void MilliSeconds::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "MilliSeconds("; + out << ")"; +} + + +MicroSeconds::~MicroSeconds() noexcept { +} + +std::ostream& operator<<(std::ostream& out, const MicroSeconds& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t MicroSeconds::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + xfer += iprot->skip(ftype); + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t MicroSeconds::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("MicroSeconds"); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(MicroSeconds &a, MicroSeconds &b) { + using ::std::swap; + (void) a; + (void) b; +} + +MicroSeconds::MicroSeconds(const MicroSeconds& other20) noexcept { + (void) other20; +} +MicroSeconds& MicroSeconds::operator=(const MicroSeconds& other21) noexcept { + (void) other21; + return *this; +} +void MicroSeconds::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "MicroSeconds("; + out << ")"; +} + + +NanoSeconds::~NanoSeconds() noexcept { +} + +std::ostream& operator<<(std::ostream& out, const NanoSeconds& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t NanoSeconds::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + xfer += iprot->skip(ftype); + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t NanoSeconds::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("NanoSeconds"); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(NanoSeconds &a, NanoSeconds &b) { + using ::std::swap; + (void) a; + (void) b; +} + +NanoSeconds::NanoSeconds(const NanoSeconds& other22) noexcept { + (void) other22; +} +NanoSeconds& NanoSeconds::operator=(const NanoSeconds& other23) noexcept { + (void) other23; + return *this; +} +void NanoSeconds::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "NanoSeconds("; + out << ")"; +} + + +TimeUnit::~TimeUnit() noexcept { +} + + +void TimeUnit::__set_MILLIS(const MilliSeconds& val) { + this->MILLIS = val; +__isset.MILLIS = true; +} + +void TimeUnit::__set_MICROS(const MicroSeconds& val) { + this->MICROS = val; +__isset.MICROS = true; +} + +void TimeUnit::__set_NANOS(const NanoSeconds& val) { + this->NANOS = val; +__isset.NANOS = true; +} +std::ostream& operator<<(std::ostream& out, const TimeUnit& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t TimeUnit::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->MILLIS.read(iprot); + this->__isset.MILLIS = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->MICROS.read(iprot); + this->__isset.MICROS = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 3: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->NANOS.read(iprot); + this->__isset.NANOS = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t TimeUnit::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("TimeUnit"); + + if (this->__isset.MILLIS) { + xfer += oprot->writeFieldBegin("MILLIS", ::apache::thrift::protocol::T_STRUCT, 1); + xfer += this->MILLIS.write(oprot); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.MICROS) { + xfer += oprot->writeFieldBegin("MICROS", ::apache::thrift::protocol::T_STRUCT, 2); + xfer += this->MICROS.write(oprot); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.NANOS) { + xfer += oprot->writeFieldBegin("NANOS", ::apache::thrift::protocol::T_STRUCT, 3); + xfer += this->NANOS.write(oprot); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(TimeUnit &a, TimeUnit &b) { + using ::std::swap; + swap(a.MILLIS, b.MILLIS); + swap(a.MICROS, b.MICROS); + swap(a.NANOS, b.NANOS); + swap(a.__isset, b.__isset); +} + +TimeUnit::TimeUnit(const TimeUnit& other24) noexcept { + MILLIS = other24.MILLIS; + MICROS = other24.MICROS; + NANOS = other24.NANOS; + __isset = other24.__isset; +} +TimeUnit& TimeUnit::operator=(const TimeUnit& other25) noexcept { + MILLIS = other25.MILLIS; + MICROS = other25.MICROS; + NANOS = other25.NANOS; + __isset = other25.__isset; + return *this; +} +void TimeUnit::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "TimeUnit("; + out << "MILLIS="; (__isset.MILLIS ? (out << to_string(MILLIS)) : (out << "")); + out << ", " << "MICROS="; (__isset.MICROS ? (out << to_string(MICROS)) : (out << "")); + out << ", " << "NANOS="; (__isset.NANOS ? (out << to_string(NANOS)) : (out << "")); + out << ")"; +} + + +TimestampType::~TimestampType() noexcept { +} + + +void TimestampType::__set_isAdjustedToUTC(const bool val) { + this->isAdjustedToUTC = val; +} + +void TimestampType::__set_unit(const TimeUnit& val) { + this->unit = val; +} +std::ostream& operator<<(std::ostream& out, const TimestampType& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t TimestampType::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + bool isset_isAdjustedToUTC = false; + bool isset_unit = false; + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_BOOL) { + xfer += iprot->readBool(this->isAdjustedToUTC); + isset_isAdjustedToUTC = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->unit.read(iprot); + isset_unit = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + if (!isset_isAdjustedToUTC) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_unit) + throw TProtocolException(TProtocolException::INVALID_DATA); + return xfer; +} + +uint32_t TimestampType::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("TimestampType"); + + xfer += oprot->writeFieldBegin("isAdjustedToUTC", ::apache::thrift::protocol::T_BOOL, 1); + xfer += oprot->writeBool(this->isAdjustedToUTC); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("unit", ::apache::thrift::protocol::T_STRUCT, 2); + xfer += this->unit.write(oprot); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(TimestampType &a, TimestampType &b) { + using ::std::swap; + swap(a.isAdjustedToUTC, b.isAdjustedToUTC); + swap(a.unit, b.unit); +} + +TimestampType::TimestampType(const TimestampType& other26) noexcept { + isAdjustedToUTC = other26.isAdjustedToUTC; + unit = other26.unit; +} +TimestampType& TimestampType::operator=(const TimestampType& other27) noexcept { + isAdjustedToUTC = other27.isAdjustedToUTC; + unit = other27.unit; + return *this; +} +void TimestampType::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "TimestampType("; + out << "isAdjustedToUTC=" << to_string(isAdjustedToUTC); + out << ", " << "unit=" << to_string(unit); + out << ")"; +} + + +TimeType::~TimeType() noexcept { +} + + +void TimeType::__set_isAdjustedToUTC(const bool val) { + this->isAdjustedToUTC = val; +} + +void TimeType::__set_unit(const TimeUnit& val) { + this->unit = val; +} +std::ostream& operator<<(std::ostream& out, const TimeType& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t TimeType::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + bool isset_isAdjustedToUTC = false; + bool isset_unit = false; + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_BOOL) { + xfer += iprot->readBool(this->isAdjustedToUTC); + isset_isAdjustedToUTC = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->unit.read(iprot); + isset_unit = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + if (!isset_isAdjustedToUTC) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_unit) + throw TProtocolException(TProtocolException::INVALID_DATA); + return xfer; +} + +uint32_t TimeType::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("TimeType"); + + xfer += oprot->writeFieldBegin("isAdjustedToUTC", ::apache::thrift::protocol::T_BOOL, 1); + xfer += oprot->writeBool(this->isAdjustedToUTC); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("unit", ::apache::thrift::protocol::T_STRUCT, 2); + xfer += this->unit.write(oprot); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(TimeType &a, TimeType &b) { + using ::std::swap; + swap(a.isAdjustedToUTC, b.isAdjustedToUTC); + swap(a.unit, b.unit); +} + +TimeType::TimeType(const TimeType& other28) noexcept { + isAdjustedToUTC = other28.isAdjustedToUTC; + unit = other28.unit; +} +TimeType& TimeType::operator=(const TimeType& other29) noexcept { + isAdjustedToUTC = other29.isAdjustedToUTC; + unit = other29.unit; + return *this; +} +void TimeType::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "TimeType("; + out << "isAdjustedToUTC=" << to_string(isAdjustedToUTC); + out << ", " << "unit=" << to_string(unit); + out << ")"; +} + + +IntType::~IntType() noexcept { +} + + +void IntType::__set_bitWidth(const int8_t val) { + this->bitWidth = val; +} + +void IntType::__set_isSigned(const bool val) { + this->isSigned = val; +} +std::ostream& operator<<(std::ostream& out, const IntType& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t IntType::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + bool isset_bitWidth = false; + bool isset_isSigned = false; + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_BYTE) { + xfer += iprot->readByte(this->bitWidth); + isset_bitWidth = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_BOOL) { + xfer += iprot->readBool(this->isSigned); + isset_isSigned = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + if (!isset_bitWidth) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_isSigned) + throw TProtocolException(TProtocolException::INVALID_DATA); + return xfer; +} + +uint32_t IntType::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("IntType"); + + xfer += oprot->writeFieldBegin("bitWidth", ::apache::thrift::protocol::T_BYTE, 1); + xfer += oprot->writeByte(this->bitWidth); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("isSigned", ::apache::thrift::protocol::T_BOOL, 2); + xfer += oprot->writeBool(this->isSigned); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(IntType &a, IntType &b) { + using ::std::swap; + swap(a.bitWidth, b.bitWidth); + swap(a.isSigned, b.isSigned); +} + +IntType::IntType(const IntType& other30) noexcept { + bitWidth = other30.bitWidth; + isSigned = other30.isSigned; +} +IntType& IntType::operator=(const IntType& other31) noexcept { + bitWidth = other31.bitWidth; + isSigned = other31.isSigned; + return *this; +} +void IntType::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "IntType("; + out << "bitWidth=" << to_string(bitWidth); + out << ", " << "isSigned=" << to_string(isSigned); + out << ")"; +} + + +JsonType::~JsonType() noexcept { +} + +std::ostream& operator<<(std::ostream& out, const JsonType& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t JsonType::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + xfer += iprot->skip(ftype); + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t JsonType::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("JsonType"); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(JsonType &a, JsonType &b) { + using ::std::swap; + (void) a; + (void) b; +} + +JsonType::JsonType(const JsonType& other32) noexcept { + (void) other32; +} +JsonType& JsonType::operator=(const JsonType& other33) noexcept { + (void) other33; + return *this; +} +void JsonType::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "JsonType("; + out << ")"; +} + + +BsonType::~BsonType() noexcept { +} + +std::ostream& operator<<(std::ostream& out, const BsonType& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t BsonType::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + xfer += iprot->skip(ftype); + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t BsonType::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("BsonType"); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(BsonType &a, BsonType &b) { + using ::std::swap; + (void) a; + (void) b; +} + +BsonType::BsonType(const BsonType& other34) noexcept { + (void) other34; +} +BsonType& BsonType::operator=(const BsonType& other35) noexcept { + (void) other35; + return *this; +} +void BsonType::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "BsonType("; + out << ")"; +} + + +LogicalType::~LogicalType() noexcept { +} + + +void LogicalType::__set_STRING(const StringType& val) { + this->STRING = val; +__isset.STRING = true; +} + +void LogicalType::__set_MAP(const MapType& val) { + this->MAP = val; +__isset.MAP = true; +} + +void LogicalType::__set_LIST(const ListType& val) { + this->LIST = val; +__isset.LIST = true; +} + +void LogicalType::__set_ENUM(const EnumType& val) { + this->ENUM = val; +__isset.ENUM = true; +} + +void LogicalType::__set_DECIMAL(const DecimalType& val) { + this->DECIMAL = val; +__isset.DECIMAL = true; +} + +void LogicalType::__set_DATE(const DateType& val) { + this->DATE = val; +__isset.DATE = true; +} + +void LogicalType::__set_TIME(const TimeType& val) { + this->TIME = val; +__isset.TIME = true; +} + +void LogicalType::__set_TIMESTAMP(const TimestampType& val) { + this->TIMESTAMP = val; +__isset.TIMESTAMP = true; +} + +void LogicalType::__set_INTEGER(const IntType& val) { + this->INTEGER = val; +__isset.INTEGER = true; +} + +void LogicalType::__set_UNKNOWN(const NullType& val) { + this->UNKNOWN = val; +__isset.UNKNOWN = true; +} + +void LogicalType::__set_JSON(const JsonType& val) { + this->JSON = val; +__isset.JSON = true; +} + +void LogicalType::__set_BSON(const BsonType& val) { + this->BSON = val; +__isset.BSON = true; +} + +void LogicalType::__set_UUID(const UUIDType& val) { + this->UUID = val; +__isset.UUID = true; +} +std::ostream& operator<<(std::ostream& out, const LogicalType& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t LogicalType::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->STRING.read(iprot); + this->__isset.STRING = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->MAP.read(iprot); + this->__isset.MAP = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 3: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->LIST.read(iprot); + this->__isset.LIST = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 4: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->ENUM.read(iprot); + this->__isset.ENUM = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 5: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->DECIMAL.read(iprot); + this->__isset.DECIMAL = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 6: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->DATE.read(iprot); + this->__isset.DATE = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 7: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->TIME.read(iprot); + this->__isset.TIME = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 8: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->TIMESTAMP.read(iprot); + this->__isset.TIMESTAMP = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 10: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->INTEGER.read(iprot); + this->__isset.INTEGER = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 11: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->UNKNOWN.read(iprot); + this->__isset.UNKNOWN = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 12: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->JSON.read(iprot); + this->__isset.JSON = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 13: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->BSON.read(iprot); + this->__isset.BSON = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 14: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->UUID.read(iprot); + this->__isset.UUID = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t LogicalType::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("LogicalType"); + + if (this->__isset.STRING) { + xfer += oprot->writeFieldBegin("STRING", ::apache::thrift::protocol::T_STRUCT, 1); + xfer += this->STRING.write(oprot); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.MAP) { + xfer += oprot->writeFieldBegin("MAP", ::apache::thrift::protocol::T_STRUCT, 2); + xfer += this->MAP.write(oprot); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.LIST) { + xfer += oprot->writeFieldBegin("LIST", ::apache::thrift::protocol::T_STRUCT, 3); + xfer += this->LIST.write(oprot); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.ENUM) { + xfer += oprot->writeFieldBegin("ENUM", ::apache::thrift::protocol::T_STRUCT, 4); + xfer += this->ENUM.write(oprot); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.DECIMAL) { + xfer += oprot->writeFieldBegin("DECIMAL", ::apache::thrift::protocol::T_STRUCT, 5); + xfer += this->DECIMAL.write(oprot); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.DATE) { + xfer += oprot->writeFieldBegin("DATE", ::apache::thrift::protocol::T_STRUCT, 6); + xfer += this->DATE.write(oprot); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.TIME) { + xfer += oprot->writeFieldBegin("TIME", ::apache::thrift::protocol::T_STRUCT, 7); + xfer += this->TIME.write(oprot); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.TIMESTAMP) { + xfer += oprot->writeFieldBegin("TIMESTAMP", ::apache::thrift::protocol::T_STRUCT, 8); + xfer += this->TIMESTAMP.write(oprot); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.INTEGER) { + xfer += oprot->writeFieldBegin("INTEGER", ::apache::thrift::protocol::T_STRUCT, 10); + xfer += this->INTEGER.write(oprot); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.UNKNOWN) { + xfer += oprot->writeFieldBegin("UNKNOWN", ::apache::thrift::protocol::T_STRUCT, 11); + xfer += this->UNKNOWN.write(oprot); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.JSON) { + xfer += oprot->writeFieldBegin("JSON", ::apache::thrift::protocol::T_STRUCT, 12); + xfer += this->JSON.write(oprot); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.BSON) { + xfer += oprot->writeFieldBegin("BSON", ::apache::thrift::protocol::T_STRUCT, 13); + xfer += this->BSON.write(oprot); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.UUID) { + xfer += oprot->writeFieldBegin("UUID", ::apache::thrift::protocol::T_STRUCT, 14); + xfer += this->UUID.write(oprot); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(LogicalType &a, LogicalType &b) { + using ::std::swap; + swap(a.STRING, b.STRING); + swap(a.MAP, b.MAP); + swap(a.LIST, b.LIST); + swap(a.ENUM, b.ENUM); + swap(a.DECIMAL, b.DECIMAL); + swap(a.DATE, b.DATE); + swap(a.TIME, b.TIME); + swap(a.TIMESTAMP, b.TIMESTAMP); + swap(a.INTEGER, b.INTEGER); + swap(a.UNKNOWN, b.UNKNOWN); + swap(a.JSON, b.JSON); + swap(a.BSON, b.BSON); + swap(a.UUID, b.UUID); + swap(a.__isset, b.__isset); +} + +LogicalType::LogicalType(const LogicalType& other36) noexcept { + STRING = other36.STRING; + MAP = other36.MAP; + LIST = other36.LIST; + ENUM = other36.ENUM; + DECIMAL = other36.DECIMAL; + DATE = other36.DATE; + TIME = other36.TIME; + TIMESTAMP = other36.TIMESTAMP; + INTEGER = other36.INTEGER; + UNKNOWN = other36.UNKNOWN; + JSON = other36.JSON; + BSON = other36.BSON; + UUID = other36.UUID; + __isset = other36.__isset; +} +LogicalType& LogicalType::operator=(const LogicalType& other37) noexcept { + STRING = other37.STRING; + MAP = other37.MAP; + LIST = other37.LIST; + ENUM = other37.ENUM; + DECIMAL = other37.DECIMAL; + DATE = other37.DATE; + TIME = other37.TIME; + TIMESTAMP = other37.TIMESTAMP; + INTEGER = other37.INTEGER; + UNKNOWN = other37.UNKNOWN; + JSON = other37.JSON; + BSON = other37.BSON; + UUID = other37.UUID; + __isset = other37.__isset; + return *this; +} +void LogicalType::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "LogicalType("; + out << "STRING="; (__isset.STRING ? (out << to_string(STRING)) : (out << "")); + out << ", " << "MAP="; (__isset.MAP ? (out << to_string(MAP)) : (out << "")); + out << ", " << "LIST="; (__isset.LIST ? (out << to_string(LIST)) : (out << "")); + out << ", " << "ENUM="; (__isset.ENUM ? (out << to_string(ENUM)) : (out << "")); + out << ", " << "DECIMAL="; (__isset.DECIMAL ? (out << to_string(DECIMAL)) : (out << "")); + out << ", " << "DATE="; (__isset.DATE ? (out << to_string(DATE)) : (out << "")); + out << ", " << "TIME="; (__isset.TIME ? (out << to_string(TIME)) : (out << "")); + out << ", " << "TIMESTAMP="; (__isset.TIMESTAMP ? (out << to_string(TIMESTAMP)) : (out << "")); + out << ", " << "INTEGER="; (__isset.INTEGER ? (out << to_string(INTEGER)) : (out << "")); + out << ", " << "UNKNOWN="; (__isset.UNKNOWN ? (out << to_string(UNKNOWN)) : (out << "")); + out << ", " << "JSON="; (__isset.JSON ? (out << to_string(JSON)) : (out << "")); + out << ", " << "BSON="; (__isset.BSON ? (out << to_string(BSON)) : (out << "")); + out << ", " << "UUID="; (__isset.UUID ? (out << to_string(UUID)) : (out << "")); + out << ")"; +} + + +SchemaElement::~SchemaElement() noexcept { +} + + +void SchemaElement::__set_type(const Type::type val) { + this->type = val; +__isset.type = true; +} + +void SchemaElement::__set_type_length(const int32_t val) { + this->type_length = val; +__isset.type_length = true; +} + +void SchemaElement::__set_repetition_type(const FieldRepetitionType::type val) { + this->repetition_type = val; +__isset.repetition_type = true; +} + +void SchemaElement::__set_name(const std::string& val) { + this->name = val; +} + +void SchemaElement::__set_num_children(const int32_t val) { + this->num_children = val; +__isset.num_children = true; +} + +void SchemaElement::__set_converted_type(const ConvertedType::type val) { + this->converted_type = val; +__isset.converted_type = true; +} + +void SchemaElement::__set_scale(const int32_t val) { + this->scale = val; +__isset.scale = true; +} + +void SchemaElement::__set_precision(const int32_t val) { + this->precision = val; +__isset.precision = true; +} + +void SchemaElement::__set_field_id(const int32_t val) { + this->field_id = val; +__isset.field_id = true; +} + +void SchemaElement::__set_logicalType(const LogicalType& val) { + this->logicalType = val; +__isset.logicalType = true; +} +std::ostream& operator<<(std::ostream& out, const SchemaElement& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t SchemaElement::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + bool isset_name = false; + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_I32) { + int32_t ecast38; + xfer += iprot->readI32(ecast38); + this->type = static_cast(ecast38); + this->__isset.type = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_I32) { + xfer += iprot->readI32(this->type_length); + this->__isset.type_length = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 3: + if (ftype == ::apache::thrift::protocol::T_I32) { + int32_t ecast39; + xfer += iprot->readI32(ecast39); + this->repetition_type = static_cast(ecast39); + this->__isset.repetition_type = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 4: + if (ftype == ::apache::thrift::protocol::T_STRING) { + xfer += iprot->readString(this->name); + isset_name = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 5: + if (ftype == ::apache::thrift::protocol::T_I32) { + xfer += iprot->readI32(this->num_children); + this->__isset.num_children = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 6: + if (ftype == ::apache::thrift::protocol::T_I32) { + int32_t ecast40; + xfer += iprot->readI32(ecast40); + this->converted_type = static_cast(ecast40); + this->__isset.converted_type = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 7: + if (ftype == ::apache::thrift::protocol::T_I32) { + xfer += iprot->readI32(this->scale); + this->__isset.scale = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 8: + if (ftype == ::apache::thrift::protocol::T_I32) { + xfer += iprot->readI32(this->precision); + this->__isset.precision = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 9: + if (ftype == ::apache::thrift::protocol::T_I32) { + xfer += iprot->readI32(this->field_id); + this->__isset.field_id = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 10: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->logicalType.read(iprot); + this->__isset.logicalType = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + if (!isset_name) + throw TProtocolException(TProtocolException::INVALID_DATA); + return xfer; +} + +uint32_t SchemaElement::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("SchemaElement"); + + if (this->__isset.type) { + xfer += oprot->writeFieldBegin("type", ::apache::thrift::protocol::T_I32, 1); + xfer += oprot->writeI32(static_cast(this->type)); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.type_length) { + xfer += oprot->writeFieldBegin("type_length", ::apache::thrift::protocol::T_I32, 2); + xfer += oprot->writeI32(this->type_length); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.repetition_type) { + xfer += oprot->writeFieldBegin("repetition_type", ::apache::thrift::protocol::T_I32, 3); + xfer += oprot->writeI32(static_cast(this->repetition_type)); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldBegin("name", ::apache::thrift::protocol::T_STRING, 4); + xfer += oprot->writeString(this->name); + xfer += oprot->writeFieldEnd(); + + if (this->__isset.num_children) { + xfer += oprot->writeFieldBegin("num_children", ::apache::thrift::protocol::T_I32, 5); + xfer += oprot->writeI32(this->num_children); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.converted_type) { + xfer += oprot->writeFieldBegin("converted_type", ::apache::thrift::protocol::T_I32, 6); + xfer += oprot->writeI32(static_cast(this->converted_type)); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.scale) { + xfer += oprot->writeFieldBegin("scale", ::apache::thrift::protocol::T_I32, 7); + xfer += oprot->writeI32(this->scale); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.precision) { + xfer += oprot->writeFieldBegin("precision", ::apache::thrift::protocol::T_I32, 8); + xfer += oprot->writeI32(this->precision); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.field_id) { + xfer += oprot->writeFieldBegin("field_id", ::apache::thrift::protocol::T_I32, 9); + xfer += oprot->writeI32(this->field_id); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.logicalType) { + xfer += oprot->writeFieldBegin("logicalType", ::apache::thrift::protocol::T_STRUCT, 10); + xfer += this->logicalType.write(oprot); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(SchemaElement &a, SchemaElement &b) { + using ::std::swap; + swap(a.type, b.type); + swap(a.type_length, b.type_length); + swap(a.repetition_type, b.repetition_type); + swap(a.name, b.name); + swap(a.num_children, b.num_children); + swap(a.converted_type, b.converted_type); + swap(a.scale, b.scale); + swap(a.precision, b.precision); + swap(a.field_id, b.field_id); + swap(a.logicalType, b.logicalType); + swap(a.__isset, b.__isset); +} + +SchemaElement::SchemaElement(const SchemaElement& other41) { + type = other41.type; + type_length = other41.type_length; + repetition_type = other41.repetition_type; + name = other41.name; + num_children = other41.num_children; + converted_type = other41.converted_type; + scale = other41.scale; + precision = other41.precision; + field_id = other41.field_id; + logicalType = other41.logicalType; + __isset = other41.__isset; +} +SchemaElement& SchemaElement::operator=(const SchemaElement& other42) { + type = other42.type; + type_length = other42.type_length; + repetition_type = other42.repetition_type; + name = other42.name; + num_children = other42.num_children; + converted_type = other42.converted_type; + scale = other42.scale; + precision = other42.precision; + field_id = other42.field_id; + logicalType = other42.logicalType; + __isset = other42.__isset; + return *this; +} +void SchemaElement::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "SchemaElement("; + out << "type="; (__isset.type ? (out << to_string(type)) : (out << "")); + out << ", " << "type_length="; (__isset.type_length ? (out << to_string(type_length)) : (out << "")); + out << ", " << "repetition_type="; (__isset.repetition_type ? (out << to_string(repetition_type)) : (out << "")); + out << ", " << "name=" << to_string(name); + out << ", " << "num_children="; (__isset.num_children ? (out << to_string(num_children)) : (out << "")); + out << ", " << "converted_type="; (__isset.converted_type ? (out << to_string(converted_type)) : (out << "")); + out << ", " << "scale="; (__isset.scale ? (out << to_string(scale)) : (out << "")); + out << ", " << "precision="; (__isset.precision ? (out << to_string(precision)) : (out << "")); + out << ", " << "field_id="; (__isset.field_id ? (out << to_string(field_id)) : (out << "")); + out << ", " << "logicalType="; (__isset.logicalType ? (out << to_string(logicalType)) : (out << "")); + out << ")"; +} + + +DataPageHeader::~DataPageHeader() noexcept { +} + + +void DataPageHeader::__set_num_values(const int32_t val) { + this->num_values = val; +} + +void DataPageHeader::__set_encoding(const Encoding::type val) { + this->encoding = val; +} + +void DataPageHeader::__set_definition_level_encoding(const Encoding::type val) { + this->definition_level_encoding = val; +} + +void DataPageHeader::__set_repetition_level_encoding(const Encoding::type val) { + this->repetition_level_encoding = val; +} + +void DataPageHeader::__set_statistics(const Statistics& val) { + this->statistics = val; +__isset.statistics = true; +} +std::ostream& operator<<(std::ostream& out, const DataPageHeader& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t DataPageHeader::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + bool isset_num_values = false; + bool isset_encoding = false; + bool isset_definition_level_encoding = false; + bool isset_repetition_level_encoding = false; + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_I32) { + xfer += iprot->readI32(this->num_values); + isset_num_values = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_I32) { + int32_t ecast43; + xfer += iprot->readI32(ecast43); + this->encoding = static_cast(ecast43); + isset_encoding = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 3: + if (ftype == ::apache::thrift::protocol::T_I32) { + int32_t ecast44; + xfer += iprot->readI32(ecast44); + this->definition_level_encoding = static_cast(ecast44); + isset_definition_level_encoding = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 4: + if (ftype == ::apache::thrift::protocol::T_I32) { + int32_t ecast45; + xfer += iprot->readI32(ecast45); + this->repetition_level_encoding = static_cast(ecast45); + isset_repetition_level_encoding = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 5: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->statistics.read(iprot); + this->__isset.statistics = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + if (!isset_num_values) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_encoding) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_definition_level_encoding) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_repetition_level_encoding) + throw TProtocolException(TProtocolException::INVALID_DATA); + return xfer; +} + +uint32_t DataPageHeader::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("DataPageHeader"); + + xfer += oprot->writeFieldBegin("num_values", ::apache::thrift::protocol::T_I32, 1); + xfer += oprot->writeI32(this->num_values); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("encoding", ::apache::thrift::protocol::T_I32, 2); + xfer += oprot->writeI32(static_cast(this->encoding)); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("definition_level_encoding", ::apache::thrift::protocol::T_I32, 3); + xfer += oprot->writeI32(static_cast(this->definition_level_encoding)); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("repetition_level_encoding", ::apache::thrift::protocol::T_I32, 4); + xfer += oprot->writeI32(static_cast(this->repetition_level_encoding)); + xfer += oprot->writeFieldEnd(); + + if (this->__isset.statistics) { + xfer += oprot->writeFieldBegin("statistics", ::apache::thrift::protocol::T_STRUCT, 5); + xfer += this->statistics.write(oprot); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(DataPageHeader &a, DataPageHeader &b) { + using ::std::swap; + swap(a.num_values, b.num_values); + swap(a.encoding, b.encoding); + swap(a.definition_level_encoding, b.definition_level_encoding); + swap(a.repetition_level_encoding, b.repetition_level_encoding); + swap(a.statistics, b.statistics); + swap(a.__isset, b.__isset); +} + +DataPageHeader::DataPageHeader(const DataPageHeader& other46) { + num_values = other46.num_values; + encoding = other46.encoding; + definition_level_encoding = other46.definition_level_encoding; + repetition_level_encoding = other46.repetition_level_encoding; + statistics = other46.statistics; + __isset = other46.__isset; +} +DataPageHeader& DataPageHeader::operator=(const DataPageHeader& other47) { + num_values = other47.num_values; + encoding = other47.encoding; + definition_level_encoding = other47.definition_level_encoding; + repetition_level_encoding = other47.repetition_level_encoding; + statistics = other47.statistics; + __isset = other47.__isset; + return *this; +} +void DataPageHeader::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "DataPageHeader("; + out << "num_values=" << to_string(num_values); + out << ", " << "encoding=" << to_string(encoding); + out << ", " << "definition_level_encoding=" << to_string(definition_level_encoding); + out << ", " << "repetition_level_encoding=" << to_string(repetition_level_encoding); + out << ", " << "statistics="; (__isset.statistics ? (out << to_string(statistics)) : (out << "")); + out << ")"; +} + + +IndexPageHeader::~IndexPageHeader() noexcept { +} + +std::ostream& operator<<(std::ostream& out, const IndexPageHeader& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t IndexPageHeader::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + xfer += iprot->skip(ftype); + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t IndexPageHeader::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("IndexPageHeader"); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(IndexPageHeader &a, IndexPageHeader &b) { + using ::std::swap; + (void) a; + (void) b; +} + +IndexPageHeader::IndexPageHeader(const IndexPageHeader& other48) noexcept { + (void) other48; +} +IndexPageHeader& IndexPageHeader::operator=(const IndexPageHeader& other49) noexcept { + (void) other49; + return *this; +} +void IndexPageHeader::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "IndexPageHeader("; + out << ")"; +} + + +DictionaryPageHeader::~DictionaryPageHeader() noexcept { +} + + +void DictionaryPageHeader::__set_num_values(const int32_t val) { + this->num_values = val; +} + +void DictionaryPageHeader::__set_encoding(const Encoding::type val) { + this->encoding = val; +} + +void DictionaryPageHeader::__set_is_sorted(const bool val) { + this->is_sorted = val; +__isset.is_sorted = true; +} +std::ostream& operator<<(std::ostream& out, const DictionaryPageHeader& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t DictionaryPageHeader::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + bool isset_num_values = false; + bool isset_encoding = false; + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_I32) { + xfer += iprot->readI32(this->num_values); + isset_num_values = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_I32) { + int32_t ecast50; + xfer += iprot->readI32(ecast50); + this->encoding = static_cast(ecast50); + isset_encoding = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 3: + if (ftype == ::apache::thrift::protocol::T_BOOL) { + xfer += iprot->readBool(this->is_sorted); + this->__isset.is_sorted = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + if (!isset_num_values) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_encoding) + throw TProtocolException(TProtocolException::INVALID_DATA); + return xfer; +} + +uint32_t DictionaryPageHeader::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("DictionaryPageHeader"); + + xfer += oprot->writeFieldBegin("num_values", ::apache::thrift::protocol::T_I32, 1); + xfer += oprot->writeI32(this->num_values); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("encoding", ::apache::thrift::protocol::T_I32, 2); + xfer += oprot->writeI32(static_cast(this->encoding)); + xfer += oprot->writeFieldEnd(); + + if (this->__isset.is_sorted) { + xfer += oprot->writeFieldBegin("is_sorted", ::apache::thrift::protocol::T_BOOL, 3); + xfer += oprot->writeBool(this->is_sorted); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(DictionaryPageHeader &a, DictionaryPageHeader &b) { + using ::std::swap; + swap(a.num_values, b.num_values); + swap(a.encoding, b.encoding); + swap(a.is_sorted, b.is_sorted); + swap(a.__isset, b.__isset); +} + +DictionaryPageHeader::DictionaryPageHeader(const DictionaryPageHeader& other51) noexcept { + num_values = other51.num_values; + encoding = other51.encoding; + is_sorted = other51.is_sorted; + __isset = other51.__isset; +} +DictionaryPageHeader& DictionaryPageHeader::operator=(const DictionaryPageHeader& other52) noexcept { + num_values = other52.num_values; + encoding = other52.encoding; + is_sorted = other52.is_sorted; + __isset = other52.__isset; + return *this; +} +void DictionaryPageHeader::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "DictionaryPageHeader("; + out << "num_values=" << to_string(num_values); + out << ", " << "encoding=" << to_string(encoding); + out << ", " << "is_sorted="; (__isset.is_sorted ? (out << to_string(is_sorted)) : (out << "")); + out << ")"; +} + + +DataPageHeaderV2::~DataPageHeaderV2() noexcept { +} + + +void DataPageHeaderV2::__set_num_values(const int32_t val) { + this->num_values = val; +} + +void DataPageHeaderV2::__set_num_nulls(const int32_t val) { + this->num_nulls = val; +} + +void DataPageHeaderV2::__set_num_rows(const int32_t val) { + this->num_rows = val; +} + +void DataPageHeaderV2::__set_encoding(const Encoding::type val) { + this->encoding = val; +} + +void DataPageHeaderV2::__set_definition_levels_byte_length(const int32_t val) { + this->definition_levels_byte_length = val; +} + +void DataPageHeaderV2::__set_repetition_levels_byte_length(const int32_t val) { + this->repetition_levels_byte_length = val; +} + +void DataPageHeaderV2::__set_is_compressed(const bool val) { + this->is_compressed = val; +__isset.is_compressed = true; +} + +void DataPageHeaderV2::__set_statistics(const Statistics& val) { + this->statistics = val; +__isset.statistics = true; +} +std::ostream& operator<<(std::ostream& out, const DataPageHeaderV2& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t DataPageHeaderV2::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + bool isset_num_values = false; + bool isset_num_nulls = false; + bool isset_num_rows = false; + bool isset_encoding = false; + bool isset_definition_levels_byte_length = false; + bool isset_repetition_levels_byte_length = false; + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_I32) { + xfer += iprot->readI32(this->num_values); + isset_num_values = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_I32) { + xfer += iprot->readI32(this->num_nulls); + isset_num_nulls = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 3: + if (ftype == ::apache::thrift::protocol::T_I32) { + xfer += iprot->readI32(this->num_rows); + isset_num_rows = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 4: + if (ftype == ::apache::thrift::protocol::T_I32) { + int32_t ecast53; + xfer += iprot->readI32(ecast53); + this->encoding = static_cast(ecast53); + isset_encoding = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 5: + if (ftype == ::apache::thrift::protocol::T_I32) { + xfer += iprot->readI32(this->definition_levels_byte_length); + isset_definition_levels_byte_length = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 6: + if (ftype == ::apache::thrift::protocol::T_I32) { + xfer += iprot->readI32(this->repetition_levels_byte_length); + isset_repetition_levels_byte_length = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 7: + if (ftype == ::apache::thrift::protocol::T_BOOL) { + xfer += iprot->readBool(this->is_compressed); + this->__isset.is_compressed = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 8: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->statistics.read(iprot); + this->__isset.statistics = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + if (!isset_num_values) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_num_nulls) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_num_rows) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_encoding) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_definition_levels_byte_length) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_repetition_levels_byte_length) + throw TProtocolException(TProtocolException::INVALID_DATA); + return xfer; +} + +uint32_t DataPageHeaderV2::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("DataPageHeaderV2"); + + xfer += oprot->writeFieldBegin("num_values", ::apache::thrift::protocol::T_I32, 1); + xfer += oprot->writeI32(this->num_values); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("num_nulls", ::apache::thrift::protocol::T_I32, 2); + xfer += oprot->writeI32(this->num_nulls); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("num_rows", ::apache::thrift::protocol::T_I32, 3); + xfer += oprot->writeI32(this->num_rows); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("encoding", ::apache::thrift::protocol::T_I32, 4); + xfer += oprot->writeI32(static_cast(this->encoding)); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("definition_levels_byte_length", ::apache::thrift::protocol::T_I32, 5); + xfer += oprot->writeI32(this->definition_levels_byte_length); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("repetition_levels_byte_length", ::apache::thrift::protocol::T_I32, 6); + xfer += oprot->writeI32(this->repetition_levels_byte_length); + xfer += oprot->writeFieldEnd(); + + if (this->__isset.is_compressed) { + xfer += oprot->writeFieldBegin("is_compressed", ::apache::thrift::protocol::T_BOOL, 7); + xfer += oprot->writeBool(this->is_compressed); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.statistics) { + xfer += oprot->writeFieldBegin("statistics", ::apache::thrift::protocol::T_STRUCT, 8); + xfer += this->statistics.write(oprot); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(DataPageHeaderV2 &a, DataPageHeaderV2 &b) { + using ::std::swap; + swap(a.num_values, b.num_values); + swap(a.num_nulls, b.num_nulls); + swap(a.num_rows, b.num_rows); + swap(a.encoding, b.encoding); + swap(a.definition_levels_byte_length, b.definition_levels_byte_length); + swap(a.repetition_levels_byte_length, b.repetition_levels_byte_length); + swap(a.is_compressed, b.is_compressed); + swap(a.statistics, b.statistics); + swap(a.__isset, b.__isset); +} + +DataPageHeaderV2::DataPageHeaderV2(const DataPageHeaderV2& other54) { + num_values = other54.num_values; + num_nulls = other54.num_nulls; + num_rows = other54.num_rows; + encoding = other54.encoding; + definition_levels_byte_length = other54.definition_levels_byte_length; + repetition_levels_byte_length = other54.repetition_levels_byte_length; + is_compressed = other54.is_compressed; + statistics = other54.statistics; + __isset = other54.__isset; +} +DataPageHeaderV2& DataPageHeaderV2::operator=(const DataPageHeaderV2& other55) { + num_values = other55.num_values; + num_nulls = other55.num_nulls; + num_rows = other55.num_rows; + encoding = other55.encoding; + definition_levels_byte_length = other55.definition_levels_byte_length; + repetition_levels_byte_length = other55.repetition_levels_byte_length; + is_compressed = other55.is_compressed; + statistics = other55.statistics; + __isset = other55.__isset; + return *this; +} +void DataPageHeaderV2::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "DataPageHeaderV2("; + out << "num_values=" << to_string(num_values); + out << ", " << "num_nulls=" << to_string(num_nulls); + out << ", " << "num_rows=" << to_string(num_rows); + out << ", " << "encoding=" << to_string(encoding); + out << ", " << "definition_levels_byte_length=" << to_string(definition_levels_byte_length); + out << ", " << "repetition_levels_byte_length=" << to_string(repetition_levels_byte_length); + out << ", " << "is_compressed="; (__isset.is_compressed ? (out << to_string(is_compressed)) : (out << "")); + out << ", " << "statistics="; (__isset.statistics ? (out << to_string(statistics)) : (out << "")); + out << ")"; +} + + +SplitBlockAlgorithm::~SplitBlockAlgorithm() noexcept { +} + +std::ostream& operator<<(std::ostream& out, const SplitBlockAlgorithm& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t SplitBlockAlgorithm::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + xfer += iprot->skip(ftype); + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t SplitBlockAlgorithm::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("SplitBlockAlgorithm"); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(SplitBlockAlgorithm &a, SplitBlockAlgorithm &b) { + using ::std::swap; + (void) a; + (void) b; +} + +SplitBlockAlgorithm::SplitBlockAlgorithm(const SplitBlockAlgorithm& other56) noexcept { + (void) other56; +} +SplitBlockAlgorithm& SplitBlockAlgorithm::operator=(const SplitBlockAlgorithm& other57) noexcept { + (void) other57; + return *this; +} +void SplitBlockAlgorithm::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "SplitBlockAlgorithm("; + out << ")"; +} + + +BloomFilterAlgorithm::~BloomFilterAlgorithm() noexcept { +} + + +void BloomFilterAlgorithm::__set_BLOCK(const SplitBlockAlgorithm& val) { + this->BLOCK = val; +__isset.BLOCK = true; +} +std::ostream& operator<<(std::ostream& out, const BloomFilterAlgorithm& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t BloomFilterAlgorithm::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->BLOCK.read(iprot); + this->__isset.BLOCK = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t BloomFilterAlgorithm::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("BloomFilterAlgorithm"); + + if (this->__isset.BLOCK) { + xfer += oprot->writeFieldBegin("BLOCK", ::apache::thrift::protocol::T_STRUCT, 1); + xfer += this->BLOCK.write(oprot); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(BloomFilterAlgorithm &a, BloomFilterAlgorithm &b) { + using ::std::swap; + swap(a.BLOCK, b.BLOCK); + swap(a.__isset, b.__isset); +} + +BloomFilterAlgorithm::BloomFilterAlgorithm(const BloomFilterAlgorithm& other58) noexcept { + BLOCK = other58.BLOCK; + __isset = other58.__isset; +} +BloomFilterAlgorithm& BloomFilterAlgorithm::operator=(const BloomFilterAlgorithm& other59) noexcept { + BLOCK = other59.BLOCK; + __isset = other59.__isset; + return *this; +} +void BloomFilterAlgorithm::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "BloomFilterAlgorithm("; + out << "BLOCK="; (__isset.BLOCK ? (out << to_string(BLOCK)) : (out << "")); + out << ")"; +} + + +XxHash::~XxHash() noexcept { +} + +std::ostream& operator<<(std::ostream& out, const XxHash& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t XxHash::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + xfer += iprot->skip(ftype); + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t XxHash::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("XxHash"); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(XxHash &a, XxHash &b) { + using ::std::swap; + (void) a; + (void) b; +} + +XxHash::XxHash(const XxHash& other60) noexcept { + (void) other60; +} +XxHash& XxHash::operator=(const XxHash& other61) noexcept { + (void) other61; + return *this; +} +void XxHash::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "XxHash("; + out << ")"; +} + + +BloomFilterHash::~BloomFilterHash() noexcept { +} + + +void BloomFilterHash::__set_XXHASH(const XxHash& val) { + this->XXHASH = val; +__isset.XXHASH = true; +} +std::ostream& operator<<(std::ostream& out, const BloomFilterHash& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t BloomFilterHash::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->XXHASH.read(iprot); + this->__isset.XXHASH = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t BloomFilterHash::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("BloomFilterHash"); + + if (this->__isset.XXHASH) { + xfer += oprot->writeFieldBegin("XXHASH", ::apache::thrift::protocol::T_STRUCT, 1); + xfer += this->XXHASH.write(oprot); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(BloomFilterHash &a, BloomFilterHash &b) { + using ::std::swap; + swap(a.XXHASH, b.XXHASH); + swap(a.__isset, b.__isset); +} + +BloomFilterHash::BloomFilterHash(const BloomFilterHash& other62) noexcept { + XXHASH = other62.XXHASH; + __isset = other62.__isset; +} +BloomFilterHash& BloomFilterHash::operator=(const BloomFilterHash& other63) noexcept { + XXHASH = other63.XXHASH; + __isset = other63.__isset; + return *this; +} +void BloomFilterHash::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "BloomFilterHash("; + out << "XXHASH="; (__isset.XXHASH ? (out << to_string(XXHASH)) : (out << "")); + out << ")"; +} + + +Uncompressed::~Uncompressed() noexcept { +} + +std::ostream& operator<<(std::ostream& out, const Uncompressed& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t Uncompressed::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + xfer += iprot->skip(ftype); + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t Uncompressed::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("Uncompressed"); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(Uncompressed &a, Uncompressed &b) { + using ::std::swap; + (void) a; + (void) b; +} + +Uncompressed::Uncompressed(const Uncompressed& other64) noexcept { + (void) other64; +} +Uncompressed& Uncompressed::operator=(const Uncompressed& other65) noexcept { + (void) other65; + return *this; +} +void Uncompressed::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "Uncompressed("; + out << ")"; +} + + +BloomFilterCompression::~BloomFilterCompression() noexcept { +} + + +void BloomFilterCompression::__set_UNCOMPRESSED(const Uncompressed& val) { + this->UNCOMPRESSED = val; +__isset.UNCOMPRESSED = true; +} +std::ostream& operator<<(std::ostream& out, const BloomFilterCompression& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t BloomFilterCompression::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->UNCOMPRESSED.read(iprot); + this->__isset.UNCOMPRESSED = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t BloomFilterCompression::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("BloomFilterCompression"); + + if (this->__isset.UNCOMPRESSED) { + xfer += oprot->writeFieldBegin("UNCOMPRESSED", ::apache::thrift::protocol::T_STRUCT, 1); + xfer += this->UNCOMPRESSED.write(oprot); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(BloomFilterCompression &a, BloomFilterCompression &b) { + using ::std::swap; + swap(a.UNCOMPRESSED, b.UNCOMPRESSED); + swap(a.__isset, b.__isset); +} + +BloomFilterCompression::BloomFilterCompression(const BloomFilterCompression& other66) noexcept { + UNCOMPRESSED = other66.UNCOMPRESSED; + __isset = other66.__isset; +} +BloomFilterCompression& BloomFilterCompression::operator=(const BloomFilterCompression& other67) noexcept { + UNCOMPRESSED = other67.UNCOMPRESSED; + __isset = other67.__isset; + return *this; +} +void BloomFilterCompression::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "BloomFilterCompression("; + out << "UNCOMPRESSED="; (__isset.UNCOMPRESSED ? (out << to_string(UNCOMPRESSED)) : (out << "")); + out << ")"; +} + + +BloomFilterHeader::~BloomFilterHeader() noexcept { +} + + +void BloomFilterHeader::__set_numBytes(const int32_t val) { + this->numBytes = val; +} + +void BloomFilterHeader::__set_algorithm(const BloomFilterAlgorithm& val) { + this->algorithm = val; +} + +void BloomFilterHeader::__set_hash(const BloomFilterHash& val) { + this->hash = val; +} + +void BloomFilterHeader::__set_compression(const BloomFilterCompression& val) { + this->compression = val; +} +std::ostream& operator<<(std::ostream& out, const BloomFilterHeader& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t BloomFilterHeader::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + bool isset_numBytes = false; + bool isset_algorithm = false; + bool isset_hash = false; + bool isset_compression = false; + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_I32) { + xfer += iprot->readI32(this->numBytes); + isset_numBytes = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->algorithm.read(iprot); + isset_algorithm = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 3: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->hash.read(iprot); + isset_hash = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 4: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->compression.read(iprot); + isset_compression = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + if (!isset_numBytes) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_algorithm) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_hash) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_compression) + throw TProtocolException(TProtocolException::INVALID_DATA); + return xfer; +} + +uint32_t BloomFilterHeader::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("BloomFilterHeader"); + + xfer += oprot->writeFieldBegin("numBytes", ::apache::thrift::protocol::T_I32, 1); + xfer += oprot->writeI32(this->numBytes); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("algorithm", ::apache::thrift::protocol::T_STRUCT, 2); + xfer += this->algorithm.write(oprot); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("hash", ::apache::thrift::protocol::T_STRUCT, 3); + xfer += this->hash.write(oprot); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("compression", ::apache::thrift::protocol::T_STRUCT, 4); + xfer += this->compression.write(oprot); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(BloomFilterHeader &a, BloomFilterHeader &b) { + using ::std::swap; + swap(a.numBytes, b.numBytes); + swap(a.algorithm, b.algorithm); + swap(a.hash, b.hash); + swap(a.compression, b.compression); +} + +BloomFilterHeader::BloomFilterHeader(const BloomFilterHeader& other68) noexcept { + numBytes = other68.numBytes; + algorithm = other68.algorithm; + hash = other68.hash; + compression = other68.compression; +} +BloomFilterHeader& BloomFilterHeader::operator=(const BloomFilterHeader& other69) noexcept { + numBytes = other69.numBytes; + algorithm = other69.algorithm; + hash = other69.hash; + compression = other69.compression; + return *this; +} +void BloomFilterHeader::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "BloomFilterHeader("; + out << "numBytes=" << to_string(numBytes); + out << ", " << "algorithm=" << to_string(algorithm); + out << ", " << "hash=" << to_string(hash); + out << ", " << "compression=" << to_string(compression); + out << ")"; +} + + +PageHeader::~PageHeader() noexcept { +} + + +void PageHeader::__set_type(const PageType::type val) { + this->type = val; +} + +void PageHeader::__set_uncompressed_page_size(const int32_t val) { + this->uncompressed_page_size = val; +} + +void PageHeader::__set_compressed_page_size(const int32_t val) { + this->compressed_page_size = val; +} + +void PageHeader::__set_crc(const int32_t val) { + this->crc = val; +__isset.crc = true; +} + +void PageHeader::__set_data_page_header(const DataPageHeader& val) { + this->data_page_header = val; +__isset.data_page_header = true; +} + +void PageHeader::__set_index_page_header(const IndexPageHeader& val) { + this->index_page_header = val; +__isset.index_page_header = true; +} + +void PageHeader::__set_dictionary_page_header(const DictionaryPageHeader& val) { + this->dictionary_page_header = val; +__isset.dictionary_page_header = true; +} + +void PageHeader::__set_data_page_header_v2(const DataPageHeaderV2& val) { + this->data_page_header_v2 = val; +__isset.data_page_header_v2 = true; +} +std::ostream& operator<<(std::ostream& out, const PageHeader& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t PageHeader::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + bool isset_type = false; + bool isset_uncompressed_page_size = false; + bool isset_compressed_page_size = false; + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_I32) { + int32_t ecast70; + xfer += iprot->readI32(ecast70); + this->type = static_cast(ecast70); + isset_type = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_I32) { + xfer += iprot->readI32(this->uncompressed_page_size); + isset_uncompressed_page_size = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 3: + if (ftype == ::apache::thrift::protocol::T_I32) { + xfer += iprot->readI32(this->compressed_page_size); + isset_compressed_page_size = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 4: + if (ftype == ::apache::thrift::protocol::T_I32) { + xfer += iprot->readI32(this->crc); + this->__isset.crc = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 5: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->data_page_header.read(iprot); + this->__isset.data_page_header = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 6: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->index_page_header.read(iprot); + this->__isset.index_page_header = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 7: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->dictionary_page_header.read(iprot); + this->__isset.dictionary_page_header = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 8: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->data_page_header_v2.read(iprot); + this->__isset.data_page_header_v2 = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + if (!isset_type) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_uncompressed_page_size) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_compressed_page_size) + throw TProtocolException(TProtocolException::INVALID_DATA); + return xfer; +} + +uint32_t PageHeader::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("PageHeader"); + + xfer += oprot->writeFieldBegin("type", ::apache::thrift::protocol::T_I32, 1); + xfer += oprot->writeI32(static_cast(this->type)); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("uncompressed_page_size", ::apache::thrift::protocol::T_I32, 2); + xfer += oprot->writeI32(this->uncompressed_page_size); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("compressed_page_size", ::apache::thrift::protocol::T_I32, 3); + xfer += oprot->writeI32(this->compressed_page_size); + xfer += oprot->writeFieldEnd(); + + if (this->__isset.crc) { + xfer += oprot->writeFieldBegin("crc", ::apache::thrift::protocol::T_I32, 4); + xfer += oprot->writeI32(this->crc); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.data_page_header) { + xfer += oprot->writeFieldBegin("data_page_header", ::apache::thrift::protocol::T_STRUCT, 5); + xfer += this->data_page_header.write(oprot); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.index_page_header) { + xfer += oprot->writeFieldBegin("index_page_header", ::apache::thrift::protocol::T_STRUCT, 6); + xfer += this->index_page_header.write(oprot); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.dictionary_page_header) { + xfer += oprot->writeFieldBegin("dictionary_page_header", ::apache::thrift::protocol::T_STRUCT, 7); + xfer += this->dictionary_page_header.write(oprot); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.data_page_header_v2) { + xfer += oprot->writeFieldBegin("data_page_header_v2", ::apache::thrift::protocol::T_STRUCT, 8); + xfer += this->data_page_header_v2.write(oprot); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(PageHeader &a, PageHeader &b) { + using ::std::swap; + swap(a.type, b.type); + swap(a.uncompressed_page_size, b.uncompressed_page_size); + swap(a.compressed_page_size, b.compressed_page_size); + swap(a.crc, b.crc); + swap(a.data_page_header, b.data_page_header); + swap(a.index_page_header, b.index_page_header); + swap(a.dictionary_page_header, b.dictionary_page_header); + swap(a.data_page_header_v2, b.data_page_header_v2); + swap(a.__isset, b.__isset); +} + +PageHeader::PageHeader(const PageHeader& other71) { + type = other71.type; + uncompressed_page_size = other71.uncompressed_page_size; + compressed_page_size = other71.compressed_page_size; + crc = other71.crc; + data_page_header = other71.data_page_header; + index_page_header = other71.index_page_header; + dictionary_page_header = other71.dictionary_page_header; + data_page_header_v2 = other71.data_page_header_v2; + __isset = other71.__isset; +} +PageHeader& PageHeader::operator=(const PageHeader& other72) { + type = other72.type; + uncompressed_page_size = other72.uncompressed_page_size; + compressed_page_size = other72.compressed_page_size; + crc = other72.crc; + data_page_header = other72.data_page_header; + index_page_header = other72.index_page_header; + dictionary_page_header = other72.dictionary_page_header; + data_page_header_v2 = other72.data_page_header_v2; + __isset = other72.__isset; + return *this; +} +void PageHeader::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "PageHeader("; + out << "type=" << to_string(type); + out << ", " << "uncompressed_page_size=" << to_string(uncompressed_page_size); + out << ", " << "compressed_page_size=" << to_string(compressed_page_size); + out << ", " << "crc="; (__isset.crc ? (out << to_string(crc)) : (out << "")); + out << ", " << "data_page_header="; (__isset.data_page_header ? (out << to_string(data_page_header)) : (out << "")); + out << ", " << "index_page_header="; (__isset.index_page_header ? (out << to_string(index_page_header)) : (out << "")); + out << ", " << "dictionary_page_header="; (__isset.dictionary_page_header ? (out << to_string(dictionary_page_header)) : (out << "")); + out << ", " << "data_page_header_v2="; (__isset.data_page_header_v2 ? (out << to_string(data_page_header_v2)) : (out << "")); + out << ")"; +} + + +KeyValue::~KeyValue() noexcept { +} + + +void KeyValue::__set_key(const std::string& val) { + this->key = val; +} + +void KeyValue::__set_value(const std::string& val) { + this->value = val; +__isset.value = true; +} +std::ostream& operator<<(std::ostream& out, const KeyValue& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t KeyValue::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + bool isset_key = false; + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_STRING) { + xfer += iprot->readString(this->key); + isset_key = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_STRING) { + xfer += iprot->readString(this->value); + this->__isset.value = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + if (!isset_key) + throw TProtocolException(TProtocolException::INVALID_DATA); + return xfer; +} + +uint32_t KeyValue::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("KeyValue"); + + xfer += oprot->writeFieldBegin("key", ::apache::thrift::protocol::T_STRING, 1); + xfer += oprot->writeString(this->key); + xfer += oprot->writeFieldEnd(); + + if (this->__isset.value) { + xfer += oprot->writeFieldBegin("value", ::apache::thrift::protocol::T_STRING, 2); + xfer += oprot->writeString(this->value); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(KeyValue &a, KeyValue &b) { + using ::std::swap; + swap(a.key, b.key); + swap(a.value, b.value); + swap(a.__isset, b.__isset); +} + +KeyValue::KeyValue(const KeyValue& other73) { + key = other73.key; + value = other73.value; + __isset = other73.__isset; +} +KeyValue& KeyValue::operator=(const KeyValue& other74) { + key = other74.key; + value = other74.value; + __isset = other74.__isset; + return *this; +} +void KeyValue::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "KeyValue("; + out << "key=" << to_string(key); + out << ", " << "value="; (__isset.value ? (out << to_string(value)) : (out << "")); + out << ")"; +} + + +SortingColumn::~SortingColumn() noexcept { +} + + +void SortingColumn::__set_column_idx(const int32_t val) { + this->column_idx = val; +} + +void SortingColumn::__set_descending(const bool val) { + this->descending = val; +} + +void SortingColumn::__set_nulls_first(const bool val) { + this->nulls_first = val; +} +std::ostream& operator<<(std::ostream& out, const SortingColumn& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t SortingColumn::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + bool isset_column_idx = false; + bool isset_descending = false; + bool isset_nulls_first = false; + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_I32) { + xfer += iprot->readI32(this->column_idx); + isset_column_idx = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_BOOL) { + xfer += iprot->readBool(this->descending); + isset_descending = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 3: + if (ftype == ::apache::thrift::protocol::T_BOOL) { + xfer += iprot->readBool(this->nulls_first); + isset_nulls_first = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + if (!isset_column_idx) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_descending) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_nulls_first) + throw TProtocolException(TProtocolException::INVALID_DATA); + return xfer; +} + +uint32_t SortingColumn::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("SortingColumn"); + + xfer += oprot->writeFieldBegin("column_idx", ::apache::thrift::protocol::T_I32, 1); + xfer += oprot->writeI32(this->column_idx); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("descending", ::apache::thrift::protocol::T_BOOL, 2); + xfer += oprot->writeBool(this->descending); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("nulls_first", ::apache::thrift::protocol::T_BOOL, 3); + xfer += oprot->writeBool(this->nulls_first); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(SortingColumn &a, SortingColumn &b) { + using ::std::swap; + swap(a.column_idx, b.column_idx); + swap(a.descending, b.descending); + swap(a.nulls_first, b.nulls_first); +} + +SortingColumn::SortingColumn(const SortingColumn& other75) noexcept { + column_idx = other75.column_idx; + descending = other75.descending; + nulls_first = other75.nulls_first; +} +SortingColumn& SortingColumn::operator=(const SortingColumn& other76) noexcept { + column_idx = other76.column_idx; + descending = other76.descending; + nulls_first = other76.nulls_first; + return *this; +} +void SortingColumn::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "SortingColumn("; + out << "column_idx=" << to_string(column_idx); + out << ", " << "descending=" << to_string(descending); + out << ", " << "nulls_first=" << to_string(nulls_first); + out << ")"; +} + + +PageEncodingStats::~PageEncodingStats() noexcept { +} + + +void PageEncodingStats::__set_page_type(const PageType::type val) { + this->page_type = val; +} + +void PageEncodingStats::__set_encoding(const Encoding::type val) { + this->encoding = val; +} + +void PageEncodingStats::__set_count(const int32_t val) { + this->count = val; +} +std::ostream& operator<<(std::ostream& out, const PageEncodingStats& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t PageEncodingStats::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + bool isset_page_type = false; + bool isset_encoding = false; + bool isset_count = false; + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_I32) { + int32_t ecast77; + xfer += iprot->readI32(ecast77); + this->page_type = static_cast(ecast77); + isset_page_type = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_I32) { + int32_t ecast78; + xfer += iprot->readI32(ecast78); + this->encoding = static_cast(ecast78); + isset_encoding = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 3: + if (ftype == ::apache::thrift::protocol::T_I32) { + xfer += iprot->readI32(this->count); + isset_count = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + if (!isset_page_type) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_encoding) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_count) + throw TProtocolException(TProtocolException::INVALID_DATA); + return xfer; +} + +uint32_t PageEncodingStats::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("PageEncodingStats"); + + xfer += oprot->writeFieldBegin("page_type", ::apache::thrift::protocol::T_I32, 1); + xfer += oprot->writeI32(static_cast(this->page_type)); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("encoding", ::apache::thrift::protocol::T_I32, 2); + xfer += oprot->writeI32(static_cast(this->encoding)); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("count", ::apache::thrift::protocol::T_I32, 3); + xfer += oprot->writeI32(this->count); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(PageEncodingStats &a, PageEncodingStats &b) { + using ::std::swap; + swap(a.page_type, b.page_type); + swap(a.encoding, b.encoding); + swap(a.count, b.count); +} + +PageEncodingStats::PageEncodingStats(const PageEncodingStats& other79) noexcept { + page_type = other79.page_type; + encoding = other79.encoding; + count = other79.count; +} +PageEncodingStats& PageEncodingStats::operator=(const PageEncodingStats& other80) noexcept { + page_type = other80.page_type; + encoding = other80.encoding; + count = other80.count; + return *this; +} +void PageEncodingStats::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "PageEncodingStats("; + out << "page_type=" << to_string(page_type); + out << ", " << "encoding=" << to_string(encoding); + out << ", " << "count=" << to_string(count); + out << ")"; +} + + +ColumnMetaData::~ColumnMetaData() noexcept { +} + + +void ColumnMetaData::__set_type(const Type::type val) { + this->type = val; +} + +void ColumnMetaData::__set_encodings(const std::vector & val) { + this->encodings = val; +} + +void ColumnMetaData::__set_path_in_schema(const std::vector & val) { + this->path_in_schema = val; +} + +void ColumnMetaData::__set_codec(const CompressionCodec::type val) { + this->codec = val; +} + +void ColumnMetaData::__set_num_values(const int64_t val) { + this->num_values = val; +} + +void ColumnMetaData::__set_total_uncompressed_size(const int64_t val) { + this->total_uncompressed_size = val; +} + +void ColumnMetaData::__set_total_compressed_size(const int64_t val) { + this->total_compressed_size = val; +} + +void ColumnMetaData::__set_key_value_metadata(const std::vector & val) { + this->key_value_metadata = val; +__isset.key_value_metadata = true; +} + +void ColumnMetaData::__set_data_page_offset(const int64_t val) { + this->data_page_offset = val; +} + +void ColumnMetaData::__set_index_page_offset(const int64_t val) { + this->index_page_offset = val; +__isset.index_page_offset = true; +} + +void ColumnMetaData::__set_dictionary_page_offset(const int64_t val) { + this->dictionary_page_offset = val; +__isset.dictionary_page_offset = true; +} + +void ColumnMetaData::__set_statistics(const Statistics& val) { + this->statistics = val; +__isset.statistics = true; +} + +void ColumnMetaData::__set_encoding_stats(const std::vector & val) { + this->encoding_stats = val; +__isset.encoding_stats = true; +} + +void ColumnMetaData::__set_bloom_filter_offset(const int64_t val) { + this->bloom_filter_offset = val; +__isset.bloom_filter_offset = true; +} +std::ostream& operator<<(std::ostream& out, const ColumnMetaData& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t ColumnMetaData::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + bool isset_type = false; + bool isset_encodings = false; + bool isset_path_in_schema = false; + bool isset_codec = false; + bool isset_num_values = false; + bool isset_total_uncompressed_size = false; + bool isset_total_compressed_size = false; + bool isset_data_page_offset = false; + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_I32) { + int32_t ecast81; + xfer += iprot->readI32(ecast81); + this->type = static_cast(ecast81); + isset_type = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_LIST) { + { + this->encodings.clear(); + uint32_t _size82; + ::apache::thrift::protocol::TType _etype85; + xfer += iprot->readListBegin(_etype85, _size82); + this->encodings.resize(_size82); + uint32_t _i86; + for (_i86 = 0; _i86 < _size82; ++_i86) + { + int32_t ecast87; + xfer += iprot->readI32(ecast87); + this->encodings[_i86] = static_cast(ecast87); + } + xfer += iprot->readListEnd(); + } + isset_encodings = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 3: + if (ftype == ::apache::thrift::protocol::T_LIST) { + { + this->path_in_schema.clear(); + uint32_t _size88; + ::apache::thrift::protocol::TType _etype91; + xfer += iprot->readListBegin(_etype91, _size88); + this->path_in_schema.resize(_size88); + uint32_t _i92; + for (_i92 = 0; _i92 < _size88; ++_i92) + { + xfer += iprot->readString(this->path_in_schema[_i92]); + } + xfer += iprot->readListEnd(); + } + isset_path_in_schema = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 4: + if (ftype == ::apache::thrift::protocol::T_I32) { + int32_t ecast93; + xfer += iprot->readI32(ecast93); + this->codec = static_cast(ecast93); + isset_codec = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 5: + if (ftype == ::apache::thrift::protocol::T_I64) { + xfer += iprot->readI64(this->num_values); + isset_num_values = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 6: + if (ftype == ::apache::thrift::protocol::T_I64) { + xfer += iprot->readI64(this->total_uncompressed_size); + isset_total_uncompressed_size = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 7: + if (ftype == ::apache::thrift::protocol::T_I64) { + xfer += iprot->readI64(this->total_compressed_size); + isset_total_compressed_size = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 8: + if (ftype == ::apache::thrift::protocol::T_LIST) { + { + this->key_value_metadata.clear(); + uint32_t _size94; + ::apache::thrift::protocol::TType _etype97; + xfer += iprot->readListBegin(_etype97, _size94); + this->key_value_metadata.resize(_size94); + uint32_t _i98; + for (_i98 = 0; _i98 < _size94; ++_i98) + { + xfer += this->key_value_metadata[_i98].read(iprot); + } + xfer += iprot->readListEnd(); + } + this->__isset.key_value_metadata = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 9: + if (ftype == ::apache::thrift::protocol::T_I64) { + xfer += iprot->readI64(this->data_page_offset); + isset_data_page_offset = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 10: + if (ftype == ::apache::thrift::protocol::T_I64) { + xfer += iprot->readI64(this->index_page_offset); + this->__isset.index_page_offset = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 11: + if (ftype == ::apache::thrift::protocol::T_I64) { + xfer += iprot->readI64(this->dictionary_page_offset); + this->__isset.dictionary_page_offset = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 12: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->statistics.read(iprot); + this->__isset.statistics = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 13: + if (ftype == ::apache::thrift::protocol::T_LIST) { + { + this->encoding_stats.clear(); + uint32_t _size99; + ::apache::thrift::protocol::TType _etype102; + xfer += iprot->readListBegin(_etype102, _size99); + this->encoding_stats.resize(_size99); + uint32_t _i103; + for (_i103 = 0; _i103 < _size99; ++_i103) + { + xfer += this->encoding_stats[_i103].read(iprot); + } + xfer += iprot->readListEnd(); + } + this->__isset.encoding_stats = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 14: + if (ftype == ::apache::thrift::protocol::T_I64) { + xfer += iprot->readI64(this->bloom_filter_offset); + this->__isset.bloom_filter_offset = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + if (!isset_type) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_encodings) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_path_in_schema) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_codec) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_num_values) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_total_uncompressed_size) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_total_compressed_size) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_data_page_offset) + throw TProtocolException(TProtocolException::INVALID_DATA); + return xfer; +} + +uint32_t ColumnMetaData::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("ColumnMetaData"); + + xfer += oprot->writeFieldBegin("type", ::apache::thrift::protocol::T_I32, 1); + xfer += oprot->writeI32(static_cast(this->type)); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("encodings", ::apache::thrift::protocol::T_LIST, 2); + { + xfer += oprot->writeListBegin(::apache::thrift::protocol::T_I32, static_cast(this->encodings.size())); + std::vector ::const_iterator _iter104; + for (_iter104 = this->encodings.begin(); _iter104 != this->encodings.end(); ++_iter104) + { + xfer += oprot->writeI32(static_cast((*_iter104))); + } + xfer += oprot->writeListEnd(); + } + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("path_in_schema", ::apache::thrift::protocol::T_LIST, 3); + { + xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->path_in_schema.size())); + std::vector ::const_iterator _iter105; + for (_iter105 = this->path_in_schema.begin(); _iter105 != this->path_in_schema.end(); ++_iter105) + { + xfer += oprot->writeString((*_iter105)); + } + xfer += oprot->writeListEnd(); + } + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("codec", ::apache::thrift::protocol::T_I32, 4); + xfer += oprot->writeI32(static_cast(this->codec)); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("num_values", ::apache::thrift::protocol::T_I64, 5); + xfer += oprot->writeI64(this->num_values); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("total_uncompressed_size", ::apache::thrift::protocol::T_I64, 6); + xfer += oprot->writeI64(this->total_uncompressed_size); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("total_compressed_size", ::apache::thrift::protocol::T_I64, 7); + xfer += oprot->writeI64(this->total_compressed_size); + xfer += oprot->writeFieldEnd(); + + if (this->__isset.key_value_metadata) { + xfer += oprot->writeFieldBegin("key_value_metadata", ::apache::thrift::protocol::T_LIST, 8); + { + xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->key_value_metadata.size())); + std::vector ::const_iterator _iter106; + for (_iter106 = this->key_value_metadata.begin(); _iter106 != this->key_value_metadata.end(); ++_iter106) + { + xfer += (*_iter106).write(oprot); + } + xfer += oprot->writeListEnd(); + } + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldBegin("data_page_offset", ::apache::thrift::protocol::T_I64, 9); + xfer += oprot->writeI64(this->data_page_offset); + xfer += oprot->writeFieldEnd(); + + if (this->__isset.index_page_offset) { + xfer += oprot->writeFieldBegin("index_page_offset", ::apache::thrift::protocol::T_I64, 10); + xfer += oprot->writeI64(this->index_page_offset); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.dictionary_page_offset) { + xfer += oprot->writeFieldBegin("dictionary_page_offset", ::apache::thrift::protocol::T_I64, 11); + xfer += oprot->writeI64(this->dictionary_page_offset); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.statistics) { + xfer += oprot->writeFieldBegin("statistics", ::apache::thrift::protocol::T_STRUCT, 12); + xfer += this->statistics.write(oprot); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.encoding_stats) { + xfer += oprot->writeFieldBegin("encoding_stats", ::apache::thrift::protocol::T_LIST, 13); + { + xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->encoding_stats.size())); + std::vector ::const_iterator _iter107; + for (_iter107 = this->encoding_stats.begin(); _iter107 != this->encoding_stats.end(); ++_iter107) + { + xfer += (*_iter107).write(oprot); + } + xfer += oprot->writeListEnd(); + } + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.bloom_filter_offset) { + xfer += oprot->writeFieldBegin("bloom_filter_offset", ::apache::thrift::protocol::T_I64, 14); + xfer += oprot->writeI64(this->bloom_filter_offset); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(ColumnMetaData &a, ColumnMetaData &b) { + using ::std::swap; + swap(a.type, b.type); + swap(a.encodings, b.encodings); + swap(a.path_in_schema, b.path_in_schema); + swap(a.codec, b.codec); + swap(a.num_values, b.num_values); + swap(a.total_uncompressed_size, b.total_uncompressed_size); + swap(a.total_compressed_size, b.total_compressed_size); + swap(a.key_value_metadata, b.key_value_metadata); + swap(a.data_page_offset, b.data_page_offset); + swap(a.index_page_offset, b.index_page_offset); + swap(a.dictionary_page_offset, b.dictionary_page_offset); + swap(a.statistics, b.statistics); + swap(a.encoding_stats, b.encoding_stats); + swap(a.bloom_filter_offset, b.bloom_filter_offset); + swap(a.__isset, b.__isset); +} + +ColumnMetaData::ColumnMetaData(const ColumnMetaData& other108) { + type = other108.type; + encodings = other108.encodings; + path_in_schema = other108.path_in_schema; + codec = other108.codec; + num_values = other108.num_values; + total_uncompressed_size = other108.total_uncompressed_size; + total_compressed_size = other108.total_compressed_size; + key_value_metadata = other108.key_value_metadata; + data_page_offset = other108.data_page_offset; + index_page_offset = other108.index_page_offset; + dictionary_page_offset = other108.dictionary_page_offset; + statistics = other108.statistics; + encoding_stats = other108.encoding_stats; + bloom_filter_offset = other108.bloom_filter_offset; + __isset = other108.__isset; +} +ColumnMetaData& ColumnMetaData::operator=(const ColumnMetaData& other109) { + type = other109.type; + encodings = other109.encodings; + path_in_schema = other109.path_in_schema; + codec = other109.codec; + num_values = other109.num_values; + total_uncompressed_size = other109.total_uncompressed_size; + total_compressed_size = other109.total_compressed_size; + key_value_metadata = other109.key_value_metadata; + data_page_offset = other109.data_page_offset; + index_page_offset = other109.index_page_offset; + dictionary_page_offset = other109.dictionary_page_offset; + statistics = other109.statistics; + encoding_stats = other109.encoding_stats; + bloom_filter_offset = other109.bloom_filter_offset; + __isset = other109.__isset; + return *this; +} +void ColumnMetaData::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "ColumnMetaData("; + out << "type=" << to_string(type); + out << ", " << "encodings=" << to_string(encodings); + out << ", " << "path_in_schema=" << to_string(path_in_schema); + out << ", " << "codec=" << to_string(codec); + out << ", " << "num_values=" << to_string(num_values); + out << ", " << "total_uncompressed_size=" << to_string(total_uncompressed_size); + out << ", " << "total_compressed_size=" << to_string(total_compressed_size); + out << ", " << "key_value_metadata="; (__isset.key_value_metadata ? (out << to_string(key_value_metadata)) : (out << "")); + out << ", " << "data_page_offset=" << to_string(data_page_offset); + out << ", " << "index_page_offset="; (__isset.index_page_offset ? (out << to_string(index_page_offset)) : (out << "")); + out << ", " << "dictionary_page_offset="; (__isset.dictionary_page_offset ? (out << to_string(dictionary_page_offset)) : (out << "")); + out << ", " << "statistics="; (__isset.statistics ? (out << to_string(statistics)) : (out << "")); + out << ", " << "encoding_stats="; (__isset.encoding_stats ? (out << to_string(encoding_stats)) : (out << "")); + out << ", " << "bloom_filter_offset="; (__isset.bloom_filter_offset ? (out << to_string(bloom_filter_offset)) : (out << "")); + out << ")"; +} + + +EncryptionWithFooterKey::~EncryptionWithFooterKey() noexcept { +} + +std::ostream& operator<<(std::ostream& out, const EncryptionWithFooterKey& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t EncryptionWithFooterKey::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + xfer += iprot->skip(ftype); + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t EncryptionWithFooterKey::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("EncryptionWithFooterKey"); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(EncryptionWithFooterKey &a, EncryptionWithFooterKey &b) { + using ::std::swap; + (void) a; + (void) b; +} + +EncryptionWithFooterKey::EncryptionWithFooterKey(const EncryptionWithFooterKey& other110) noexcept { + (void) other110; +} +EncryptionWithFooterKey& EncryptionWithFooterKey::operator=(const EncryptionWithFooterKey& other111) noexcept { + (void) other111; + return *this; +} +void EncryptionWithFooterKey::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "EncryptionWithFooterKey("; + out << ")"; +} + + +EncryptionWithColumnKey::~EncryptionWithColumnKey() noexcept { +} + + +void EncryptionWithColumnKey::__set_path_in_schema(const std::vector & val) { + this->path_in_schema = val; +} + +void EncryptionWithColumnKey::__set_key_metadata(const std::string& val) { + this->key_metadata = val; +__isset.key_metadata = true; +} +std::ostream& operator<<(std::ostream& out, const EncryptionWithColumnKey& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t EncryptionWithColumnKey::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + bool isset_path_in_schema = false; + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_LIST) { + { + this->path_in_schema.clear(); + uint32_t _size112; + ::apache::thrift::protocol::TType _etype115; + xfer += iprot->readListBegin(_etype115, _size112); + this->path_in_schema.resize(_size112); + uint32_t _i116; + for (_i116 = 0; _i116 < _size112; ++_i116) + { + xfer += iprot->readString(this->path_in_schema[_i116]); + } + xfer += iprot->readListEnd(); + } + isset_path_in_schema = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_STRING) { + xfer += iprot->readBinary(this->key_metadata); + this->__isset.key_metadata = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + if (!isset_path_in_schema) + throw TProtocolException(TProtocolException::INVALID_DATA); + return xfer; +} + +uint32_t EncryptionWithColumnKey::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("EncryptionWithColumnKey"); + + xfer += oprot->writeFieldBegin("path_in_schema", ::apache::thrift::protocol::T_LIST, 1); + { + xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->path_in_schema.size())); + std::vector ::const_iterator _iter117; + for (_iter117 = this->path_in_schema.begin(); _iter117 != this->path_in_schema.end(); ++_iter117) + { + xfer += oprot->writeString((*_iter117)); + } + xfer += oprot->writeListEnd(); + } + xfer += oprot->writeFieldEnd(); + + if (this->__isset.key_metadata) { + xfer += oprot->writeFieldBegin("key_metadata", ::apache::thrift::protocol::T_STRING, 2); + xfer += oprot->writeBinary(this->key_metadata); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(EncryptionWithColumnKey &a, EncryptionWithColumnKey &b) { + using ::std::swap; + swap(a.path_in_schema, b.path_in_schema); + swap(a.key_metadata, b.key_metadata); + swap(a.__isset, b.__isset); +} + +EncryptionWithColumnKey::EncryptionWithColumnKey(const EncryptionWithColumnKey& other118) { + path_in_schema = other118.path_in_schema; + key_metadata = other118.key_metadata; + __isset = other118.__isset; +} +EncryptionWithColumnKey& EncryptionWithColumnKey::operator=(const EncryptionWithColumnKey& other119) { + path_in_schema = other119.path_in_schema; + key_metadata = other119.key_metadata; + __isset = other119.__isset; + return *this; +} +void EncryptionWithColumnKey::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "EncryptionWithColumnKey("; + out << "path_in_schema=" << to_string(path_in_schema); + out << ", " << "key_metadata="; (__isset.key_metadata ? (out << to_string(key_metadata)) : (out << "")); + out << ")"; +} + + +ColumnCryptoMetaData::~ColumnCryptoMetaData() noexcept { +} + + +void ColumnCryptoMetaData::__set_ENCRYPTION_WITH_FOOTER_KEY(const EncryptionWithFooterKey& val) { + this->ENCRYPTION_WITH_FOOTER_KEY = val; +__isset.ENCRYPTION_WITH_FOOTER_KEY = true; +} + +void ColumnCryptoMetaData::__set_ENCRYPTION_WITH_COLUMN_KEY(const EncryptionWithColumnKey& val) { + this->ENCRYPTION_WITH_COLUMN_KEY = val; +__isset.ENCRYPTION_WITH_COLUMN_KEY = true; +} +std::ostream& operator<<(std::ostream& out, const ColumnCryptoMetaData& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t ColumnCryptoMetaData::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->ENCRYPTION_WITH_FOOTER_KEY.read(iprot); + this->__isset.ENCRYPTION_WITH_FOOTER_KEY = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->ENCRYPTION_WITH_COLUMN_KEY.read(iprot); + this->__isset.ENCRYPTION_WITH_COLUMN_KEY = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t ColumnCryptoMetaData::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("ColumnCryptoMetaData"); + + if (this->__isset.ENCRYPTION_WITH_FOOTER_KEY) { + xfer += oprot->writeFieldBegin("ENCRYPTION_WITH_FOOTER_KEY", ::apache::thrift::protocol::T_STRUCT, 1); + xfer += this->ENCRYPTION_WITH_FOOTER_KEY.write(oprot); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.ENCRYPTION_WITH_COLUMN_KEY) { + xfer += oprot->writeFieldBegin("ENCRYPTION_WITH_COLUMN_KEY", ::apache::thrift::protocol::T_STRUCT, 2); + xfer += this->ENCRYPTION_WITH_COLUMN_KEY.write(oprot); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(ColumnCryptoMetaData &a, ColumnCryptoMetaData &b) { + using ::std::swap; + swap(a.ENCRYPTION_WITH_FOOTER_KEY, b.ENCRYPTION_WITH_FOOTER_KEY); + swap(a.ENCRYPTION_WITH_COLUMN_KEY, b.ENCRYPTION_WITH_COLUMN_KEY); + swap(a.__isset, b.__isset); +} + +ColumnCryptoMetaData::ColumnCryptoMetaData(const ColumnCryptoMetaData& other120) { + ENCRYPTION_WITH_FOOTER_KEY = other120.ENCRYPTION_WITH_FOOTER_KEY; + ENCRYPTION_WITH_COLUMN_KEY = other120.ENCRYPTION_WITH_COLUMN_KEY; + __isset = other120.__isset; +} +ColumnCryptoMetaData& ColumnCryptoMetaData::operator=(const ColumnCryptoMetaData& other121) { + ENCRYPTION_WITH_FOOTER_KEY = other121.ENCRYPTION_WITH_FOOTER_KEY; + ENCRYPTION_WITH_COLUMN_KEY = other121.ENCRYPTION_WITH_COLUMN_KEY; + __isset = other121.__isset; + return *this; +} +void ColumnCryptoMetaData::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "ColumnCryptoMetaData("; + out << "ENCRYPTION_WITH_FOOTER_KEY="; (__isset.ENCRYPTION_WITH_FOOTER_KEY ? (out << to_string(ENCRYPTION_WITH_FOOTER_KEY)) : (out << "")); + out << ", " << "ENCRYPTION_WITH_COLUMN_KEY="; (__isset.ENCRYPTION_WITH_COLUMN_KEY ? (out << to_string(ENCRYPTION_WITH_COLUMN_KEY)) : (out << "")); + out << ")"; +} + + +ColumnChunk::~ColumnChunk() noexcept { +} + + +void ColumnChunk::__set_file_path(const std::string& val) { + this->file_path = val; +__isset.file_path = true; +} + +void ColumnChunk::__set_file_offset(const int64_t val) { + this->file_offset = val; +} + +void ColumnChunk::__set_meta_data(const ColumnMetaData& val) { + this->meta_data = val; +__isset.meta_data = true; +} + +void ColumnChunk::__set_offset_index_offset(const int64_t val) { + this->offset_index_offset = val; +__isset.offset_index_offset = true; +} + +void ColumnChunk::__set_offset_index_length(const int32_t val) { + this->offset_index_length = val; +__isset.offset_index_length = true; +} + +void ColumnChunk::__set_column_index_offset(const int64_t val) { + this->column_index_offset = val; +__isset.column_index_offset = true; +} + +void ColumnChunk::__set_column_index_length(const int32_t val) { + this->column_index_length = val; +__isset.column_index_length = true; +} + +void ColumnChunk::__set_crypto_metadata(const ColumnCryptoMetaData& val) { + this->crypto_metadata = val; +__isset.crypto_metadata = true; +} + +void ColumnChunk::__set_encrypted_column_metadata(const std::string& val) { + this->encrypted_column_metadata = val; +__isset.encrypted_column_metadata = true; +} +std::ostream& operator<<(std::ostream& out, const ColumnChunk& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t ColumnChunk::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + bool isset_file_offset = false; + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_STRING) { + xfer += iprot->readString(this->file_path); + this->__isset.file_path = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_I64) { + xfer += iprot->readI64(this->file_offset); + isset_file_offset = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 3: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->meta_data.read(iprot); + this->__isset.meta_data = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 4: + if (ftype == ::apache::thrift::protocol::T_I64) { + xfer += iprot->readI64(this->offset_index_offset); + this->__isset.offset_index_offset = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 5: + if (ftype == ::apache::thrift::protocol::T_I32) { + xfer += iprot->readI32(this->offset_index_length); + this->__isset.offset_index_length = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 6: + if (ftype == ::apache::thrift::protocol::T_I64) { + xfer += iprot->readI64(this->column_index_offset); + this->__isset.column_index_offset = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 7: + if (ftype == ::apache::thrift::protocol::T_I32) { + xfer += iprot->readI32(this->column_index_length); + this->__isset.column_index_length = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 8: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->crypto_metadata.read(iprot); + this->__isset.crypto_metadata = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 9: + if (ftype == ::apache::thrift::protocol::T_STRING) { + xfer += iprot->readBinary(this->encrypted_column_metadata); + this->__isset.encrypted_column_metadata = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + if (!isset_file_offset) + throw TProtocolException(TProtocolException::INVALID_DATA); + return xfer; +} + +uint32_t ColumnChunk::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("ColumnChunk"); + + if (this->__isset.file_path) { + xfer += oprot->writeFieldBegin("file_path", ::apache::thrift::protocol::T_STRING, 1); + xfer += oprot->writeString(this->file_path); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldBegin("file_offset", ::apache::thrift::protocol::T_I64, 2); + xfer += oprot->writeI64(this->file_offset); + xfer += oprot->writeFieldEnd(); + + if (this->__isset.meta_data) { + xfer += oprot->writeFieldBegin("meta_data", ::apache::thrift::protocol::T_STRUCT, 3); + xfer += this->meta_data.write(oprot); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.offset_index_offset) { + xfer += oprot->writeFieldBegin("offset_index_offset", ::apache::thrift::protocol::T_I64, 4); + xfer += oprot->writeI64(this->offset_index_offset); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.offset_index_length) { + xfer += oprot->writeFieldBegin("offset_index_length", ::apache::thrift::protocol::T_I32, 5); + xfer += oprot->writeI32(this->offset_index_length); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.column_index_offset) { + xfer += oprot->writeFieldBegin("column_index_offset", ::apache::thrift::protocol::T_I64, 6); + xfer += oprot->writeI64(this->column_index_offset); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.column_index_length) { + xfer += oprot->writeFieldBegin("column_index_length", ::apache::thrift::protocol::T_I32, 7); + xfer += oprot->writeI32(this->column_index_length); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.crypto_metadata) { + xfer += oprot->writeFieldBegin("crypto_metadata", ::apache::thrift::protocol::T_STRUCT, 8); + xfer += this->crypto_metadata.write(oprot); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.encrypted_column_metadata) { + xfer += oprot->writeFieldBegin("encrypted_column_metadata", ::apache::thrift::protocol::T_STRING, 9); + xfer += oprot->writeBinary(this->encrypted_column_metadata); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(ColumnChunk &a, ColumnChunk &b) { + using ::std::swap; + swap(a.file_path, b.file_path); + swap(a.file_offset, b.file_offset); + swap(a.meta_data, b.meta_data); + swap(a.offset_index_offset, b.offset_index_offset); + swap(a.offset_index_length, b.offset_index_length); + swap(a.column_index_offset, b.column_index_offset); + swap(a.column_index_length, b.column_index_length); + swap(a.crypto_metadata, b.crypto_metadata); + swap(a.encrypted_column_metadata, b.encrypted_column_metadata); + swap(a.__isset, b.__isset); +} + +ColumnChunk::ColumnChunk(const ColumnChunk& other122) { + file_path = other122.file_path; + file_offset = other122.file_offset; + meta_data = other122.meta_data; + offset_index_offset = other122.offset_index_offset; + offset_index_length = other122.offset_index_length; + column_index_offset = other122.column_index_offset; + column_index_length = other122.column_index_length; + crypto_metadata = other122.crypto_metadata; + encrypted_column_metadata = other122.encrypted_column_metadata; + __isset = other122.__isset; +} +ColumnChunk& ColumnChunk::operator=(const ColumnChunk& other123) { + file_path = other123.file_path; + file_offset = other123.file_offset; + meta_data = other123.meta_data; + offset_index_offset = other123.offset_index_offset; + offset_index_length = other123.offset_index_length; + column_index_offset = other123.column_index_offset; + column_index_length = other123.column_index_length; + crypto_metadata = other123.crypto_metadata; + encrypted_column_metadata = other123.encrypted_column_metadata; + __isset = other123.__isset; + return *this; +} +void ColumnChunk::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "ColumnChunk("; + out << "file_path="; (__isset.file_path ? (out << to_string(file_path)) : (out << "")); + out << ", " << "file_offset=" << to_string(file_offset); + out << ", " << "meta_data="; (__isset.meta_data ? (out << to_string(meta_data)) : (out << "")); + out << ", " << "offset_index_offset="; (__isset.offset_index_offset ? (out << to_string(offset_index_offset)) : (out << "")); + out << ", " << "offset_index_length="; (__isset.offset_index_length ? (out << to_string(offset_index_length)) : (out << "")); + out << ", " << "column_index_offset="; (__isset.column_index_offset ? (out << to_string(column_index_offset)) : (out << "")); + out << ", " << "column_index_length="; (__isset.column_index_length ? (out << to_string(column_index_length)) : (out << "")); + out << ", " << "crypto_metadata="; (__isset.crypto_metadata ? (out << to_string(crypto_metadata)) : (out << "")); + out << ", " << "encrypted_column_metadata="; (__isset.encrypted_column_metadata ? (out << to_string(encrypted_column_metadata)) : (out << "")); + out << ")"; +} + + +RowGroup::~RowGroup() noexcept { +} + + +void RowGroup::__set_columns(const std::vector & val) { + this->columns = val; +} + +void RowGroup::__set_total_byte_size(const int64_t val) { + this->total_byte_size = val; +} + +void RowGroup::__set_num_rows(const int64_t val) { + this->num_rows = val; +} + +void RowGroup::__set_sorting_columns(const std::vector & val) { + this->sorting_columns = val; +__isset.sorting_columns = true; +} + +void RowGroup::__set_file_offset(const int64_t val) { + this->file_offset = val; +__isset.file_offset = true; +} + +void RowGroup::__set_total_compressed_size(const int64_t val) { + this->total_compressed_size = val; +__isset.total_compressed_size = true; +} + +void RowGroup::__set_ordinal(const int16_t val) { + this->ordinal = val; +__isset.ordinal = true; +} +std::ostream& operator<<(std::ostream& out, const RowGroup& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t RowGroup::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + bool isset_columns = false; + bool isset_total_byte_size = false; + bool isset_num_rows = false; + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_LIST) { + { + this->columns.clear(); + uint32_t _size124; + ::apache::thrift::protocol::TType _etype127; + xfer += iprot->readListBegin(_etype127, _size124); + this->columns.resize(_size124); + uint32_t _i128; + for (_i128 = 0; _i128 < _size124; ++_i128) + { + xfer += this->columns[_i128].read(iprot); + } + xfer += iprot->readListEnd(); + } + isset_columns = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_I64) { + xfer += iprot->readI64(this->total_byte_size); + isset_total_byte_size = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 3: + if (ftype == ::apache::thrift::protocol::T_I64) { + xfer += iprot->readI64(this->num_rows); + isset_num_rows = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 4: + if (ftype == ::apache::thrift::protocol::T_LIST) { + { + this->sorting_columns.clear(); + uint32_t _size129; + ::apache::thrift::protocol::TType _etype132; + xfer += iprot->readListBegin(_etype132, _size129); + this->sorting_columns.resize(_size129); + uint32_t _i133; + for (_i133 = 0; _i133 < _size129; ++_i133) + { + xfer += this->sorting_columns[_i133].read(iprot); + } + xfer += iprot->readListEnd(); + } + this->__isset.sorting_columns = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 5: + if (ftype == ::apache::thrift::protocol::T_I64) { + xfer += iprot->readI64(this->file_offset); + this->__isset.file_offset = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 6: + if (ftype == ::apache::thrift::protocol::T_I64) { + xfer += iprot->readI64(this->total_compressed_size); + this->__isset.total_compressed_size = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 7: + if (ftype == ::apache::thrift::protocol::T_I16) { + xfer += iprot->readI16(this->ordinal); + this->__isset.ordinal = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + if (!isset_columns) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_total_byte_size) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_num_rows) + throw TProtocolException(TProtocolException::INVALID_DATA); + return xfer; +} + +uint32_t RowGroup::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("RowGroup"); + + xfer += oprot->writeFieldBegin("columns", ::apache::thrift::protocol::T_LIST, 1); + { + xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->columns.size())); + std::vector ::const_iterator _iter134; + for (_iter134 = this->columns.begin(); _iter134 != this->columns.end(); ++_iter134) + { + xfer += (*_iter134).write(oprot); + } + xfer += oprot->writeListEnd(); + } + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("total_byte_size", ::apache::thrift::protocol::T_I64, 2); + xfer += oprot->writeI64(this->total_byte_size); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("num_rows", ::apache::thrift::protocol::T_I64, 3); + xfer += oprot->writeI64(this->num_rows); + xfer += oprot->writeFieldEnd(); + + if (this->__isset.sorting_columns) { + xfer += oprot->writeFieldBegin("sorting_columns", ::apache::thrift::protocol::T_LIST, 4); + { + xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->sorting_columns.size())); + std::vector ::const_iterator _iter135; + for (_iter135 = this->sorting_columns.begin(); _iter135 != this->sorting_columns.end(); ++_iter135) + { + xfer += (*_iter135).write(oprot); + } + xfer += oprot->writeListEnd(); + } + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.file_offset) { + xfer += oprot->writeFieldBegin("file_offset", ::apache::thrift::protocol::T_I64, 5); + xfer += oprot->writeI64(this->file_offset); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.total_compressed_size) { + xfer += oprot->writeFieldBegin("total_compressed_size", ::apache::thrift::protocol::T_I64, 6); + xfer += oprot->writeI64(this->total_compressed_size); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.ordinal) { + xfer += oprot->writeFieldBegin("ordinal", ::apache::thrift::protocol::T_I16, 7); + xfer += oprot->writeI16(this->ordinal); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(RowGroup &a, RowGroup &b) { + using ::std::swap; + swap(a.columns, b.columns); + swap(a.total_byte_size, b.total_byte_size); + swap(a.num_rows, b.num_rows); + swap(a.sorting_columns, b.sorting_columns); + swap(a.file_offset, b.file_offset); + swap(a.total_compressed_size, b.total_compressed_size); + swap(a.ordinal, b.ordinal); + swap(a.__isset, b.__isset); +} + +RowGroup::RowGroup(const RowGroup& other136) { + columns = other136.columns; + total_byte_size = other136.total_byte_size; + num_rows = other136.num_rows; + sorting_columns = other136.sorting_columns; + file_offset = other136.file_offset; + total_compressed_size = other136.total_compressed_size; + ordinal = other136.ordinal; + __isset = other136.__isset; +} +RowGroup& RowGroup::operator=(const RowGroup& other137) { + columns = other137.columns; + total_byte_size = other137.total_byte_size; + num_rows = other137.num_rows; + sorting_columns = other137.sorting_columns; + file_offset = other137.file_offset; + total_compressed_size = other137.total_compressed_size; + ordinal = other137.ordinal; + __isset = other137.__isset; + return *this; +} +void RowGroup::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "RowGroup("; + out << "columns=" << to_string(columns); + out << ", " << "total_byte_size=" << to_string(total_byte_size); + out << ", " << "num_rows=" << to_string(num_rows); + out << ", " << "sorting_columns="; (__isset.sorting_columns ? (out << to_string(sorting_columns)) : (out << "")); + out << ", " << "file_offset="; (__isset.file_offset ? (out << to_string(file_offset)) : (out << "")); + out << ", " << "total_compressed_size="; (__isset.total_compressed_size ? (out << to_string(total_compressed_size)) : (out << "")); + out << ", " << "ordinal="; (__isset.ordinal ? (out << to_string(ordinal)) : (out << "")); + out << ")"; +} + + +TypeDefinedOrder::~TypeDefinedOrder() noexcept { +} + +std::ostream& operator<<(std::ostream& out, const TypeDefinedOrder& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t TypeDefinedOrder::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + xfer += iprot->skip(ftype); + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t TypeDefinedOrder::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("TypeDefinedOrder"); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(TypeDefinedOrder &a, TypeDefinedOrder &b) { + using ::std::swap; + (void) a; + (void) b; +} + +TypeDefinedOrder::TypeDefinedOrder(const TypeDefinedOrder& other138) noexcept { + (void) other138; +} +TypeDefinedOrder& TypeDefinedOrder::operator=(const TypeDefinedOrder& other139) noexcept { + (void) other139; + return *this; +} +void TypeDefinedOrder::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "TypeDefinedOrder("; + out << ")"; +} + + +ColumnOrder::~ColumnOrder() noexcept { +} + + +void ColumnOrder::__set_TYPE_ORDER(const TypeDefinedOrder& val) { + this->TYPE_ORDER = val; +__isset.TYPE_ORDER = true; +} +std::ostream& operator<<(std::ostream& out, const ColumnOrder& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t ColumnOrder::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->TYPE_ORDER.read(iprot); + this->__isset.TYPE_ORDER = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t ColumnOrder::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("ColumnOrder"); + + if (this->__isset.TYPE_ORDER) { + xfer += oprot->writeFieldBegin("TYPE_ORDER", ::apache::thrift::protocol::T_STRUCT, 1); + xfer += this->TYPE_ORDER.write(oprot); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(ColumnOrder &a, ColumnOrder &b) { + using ::std::swap; + swap(a.TYPE_ORDER, b.TYPE_ORDER); + swap(a.__isset, b.__isset); +} + +ColumnOrder::ColumnOrder(const ColumnOrder& other140) noexcept { + TYPE_ORDER = other140.TYPE_ORDER; + __isset = other140.__isset; +} +ColumnOrder& ColumnOrder::operator=(const ColumnOrder& other141) noexcept { + TYPE_ORDER = other141.TYPE_ORDER; + __isset = other141.__isset; + return *this; +} +void ColumnOrder::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "ColumnOrder("; + out << "TYPE_ORDER="; (__isset.TYPE_ORDER ? (out << to_string(TYPE_ORDER)) : (out << "")); + out << ")"; +} + + +PageLocation::~PageLocation() noexcept { +} + + +void PageLocation::__set_offset(const int64_t val) { + this->offset = val; +} + +void PageLocation::__set_compressed_page_size(const int32_t val) { + this->compressed_page_size = val; +} + +void PageLocation::__set_first_row_index(const int64_t val) { + this->first_row_index = val; +} +std::ostream& operator<<(std::ostream& out, const PageLocation& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t PageLocation::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + bool isset_offset = false; + bool isset_compressed_page_size = false; + bool isset_first_row_index = false; + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_I64) { + xfer += iprot->readI64(this->offset); + isset_offset = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_I32) { + xfer += iprot->readI32(this->compressed_page_size); + isset_compressed_page_size = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 3: + if (ftype == ::apache::thrift::protocol::T_I64) { + xfer += iprot->readI64(this->first_row_index); + isset_first_row_index = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + if (!isset_offset) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_compressed_page_size) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_first_row_index) + throw TProtocolException(TProtocolException::INVALID_DATA); + return xfer; +} + +uint32_t PageLocation::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("PageLocation"); + + xfer += oprot->writeFieldBegin("offset", ::apache::thrift::protocol::T_I64, 1); + xfer += oprot->writeI64(this->offset); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("compressed_page_size", ::apache::thrift::protocol::T_I32, 2); + xfer += oprot->writeI32(this->compressed_page_size); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("first_row_index", ::apache::thrift::protocol::T_I64, 3); + xfer += oprot->writeI64(this->first_row_index); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(PageLocation &a, PageLocation &b) { + using ::std::swap; + swap(a.offset, b.offset); + swap(a.compressed_page_size, b.compressed_page_size); + swap(a.first_row_index, b.first_row_index); +} + +PageLocation::PageLocation(const PageLocation& other142) noexcept { + offset = other142.offset; + compressed_page_size = other142.compressed_page_size; + first_row_index = other142.first_row_index; +} +PageLocation& PageLocation::operator=(const PageLocation& other143) noexcept { + offset = other143.offset; + compressed_page_size = other143.compressed_page_size; + first_row_index = other143.first_row_index; + return *this; +} +void PageLocation::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "PageLocation("; + out << "offset=" << to_string(offset); + out << ", " << "compressed_page_size=" << to_string(compressed_page_size); + out << ", " << "first_row_index=" << to_string(first_row_index); + out << ")"; +} + + +OffsetIndex::~OffsetIndex() noexcept { +} + + +void OffsetIndex::__set_page_locations(const std::vector & val) { + this->page_locations = val; +} +std::ostream& operator<<(std::ostream& out, const OffsetIndex& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t OffsetIndex::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + bool isset_page_locations = false; + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_LIST) { + { + this->page_locations.clear(); + uint32_t _size144; + ::apache::thrift::protocol::TType _etype147; + xfer += iprot->readListBegin(_etype147, _size144); + this->page_locations.resize(_size144); + uint32_t _i148; + for (_i148 = 0; _i148 < _size144; ++_i148) + { + xfer += this->page_locations[_i148].read(iprot); + } + xfer += iprot->readListEnd(); + } + isset_page_locations = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + if (!isset_page_locations) + throw TProtocolException(TProtocolException::INVALID_DATA); + return xfer; +} + +uint32_t OffsetIndex::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("OffsetIndex"); + + xfer += oprot->writeFieldBegin("page_locations", ::apache::thrift::protocol::T_LIST, 1); + { + xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->page_locations.size())); + std::vector ::const_iterator _iter149; + for (_iter149 = this->page_locations.begin(); _iter149 != this->page_locations.end(); ++_iter149) + { + xfer += (*_iter149).write(oprot); + } + xfer += oprot->writeListEnd(); + } + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(OffsetIndex &a, OffsetIndex &b) { + using ::std::swap; + swap(a.page_locations, b.page_locations); +} + +OffsetIndex::OffsetIndex(const OffsetIndex& other150) { + page_locations = other150.page_locations; +} +OffsetIndex& OffsetIndex::operator=(const OffsetIndex& other151) { + page_locations = other151.page_locations; + return *this; +} +void OffsetIndex::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "OffsetIndex("; + out << "page_locations=" << to_string(page_locations); + out << ")"; +} + + +ColumnIndex::~ColumnIndex() noexcept { +} + + +void ColumnIndex::__set_null_pages(const std::vector & val) { + this->null_pages = val; +} + +void ColumnIndex::__set_min_values(const std::vector & val) { + this->min_values = val; +} + +void ColumnIndex::__set_max_values(const std::vector & val) { + this->max_values = val; +} + +void ColumnIndex::__set_boundary_order(const BoundaryOrder::type val) { + this->boundary_order = val; +} + +void ColumnIndex::__set_null_counts(const std::vector & val) { + this->null_counts = val; +__isset.null_counts = true; +} +std::ostream& operator<<(std::ostream& out, const ColumnIndex& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t ColumnIndex::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + bool isset_null_pages = false; + bool isset_min_values = false; + bool isset_max_values = false; + bool isset_boundary_order = false; + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_LIST) { + { + this->null_pages.clear(); + uint32_t _size152; + ::apache::thrift::protocol::TType _etype155; + xfer += iprot->readListBegin(_etype155, _size152); + this->null_pages.resize(_size152); + uint32_t _i156; + for (_i156 = 0; _i156 < _size152; ++_i156) + { + xfer += iprot->readBool(this->null_pages[_i156]); + } + xfer += iprot->readListEnd(); + } + isset_null_pages = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_LIST) { + { + this->min_values.clear(); + uint32_t _size157; + ::apache::thrift::protocol::TType _etype160; + xfer += iprot->readListBegin(_etype160, _size157); + this->min_values.resize(_size157); + uint32_t _i161; + for (_i161 = 0; _i161 < _size157; ++_i161) + { + xfer += iprot->readBinary(this->min_values[_i161]); + } + xfer += iprot->readListEnd(); + } + isset_min_values = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 3: + if (ftype == ::apache::thrift::protocol::T_LIST) { + { + this->max_values.clear(); + uint32_t _size162; + ::apache::thrift::protocol::TType _etype165; + xfer += iprot->readListBegin(_etype165, _size162); + this->max_values.resize(_size162); + uint32_t _i166; + for (_i166 = 0; _i166 < _size162; ++_i166) + { + xfer += iprot->readBinary(this->max_values[_i166]); + } + xfer += iprot->readListEnd(); + } + isset_max_values = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 4: + if (ftype == ::apache::thrift::protocol::T_I32) { + int32_t ecast167; + xfer += iprot->readI32(ecast167); + this->boundary_order = static_cast(ecast167); + isset_boundary_order = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 5: + if (ftype == ::apache::thrift::protocol::T_LIST) { + { + this->null_counts.clear(); + uint32_t _size168; + ::apache::thrift::protocol::TType _etype171; + xfer += iprot->readListBegin(_etype171, _size168); + this->null_counts.resize(_size168); + uint32_t _i172; + for (_i172 = 0; _i172 < _size168; ++_i172) + { + xfer += iprot->readI64(this->null_counts[_i172]); + } + xfer += iprot->readListEnd(); + } + this->__isset.null_counts = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + if (!isset_null_pages) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_min_values) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_max_values) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_boundary_order) + throw TProtocolException(TProtocolException::INVALID_DATA); + return xfer; +} + +uint32_t ColumnIndex::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("ColumnIndex"); + + xfer += oprot->writeFieldBegin("null_pages", ::apache::thrift::protocol::T_LIST, 1); + { + xfer += oprot->writeListBegin(::apache::thrift::protocol::T_BOOL, static_cast(this->null_pages.size())); + std::vector ::const_iterator _iter173; + for (_iter173 = this->null_pages.begin(); _iter173 != this->null_pages.end(); ++_iter173) + { + xfer += oprot->writeBool((*_iter173)); + } + xfer += oprot->writeListEnd(); + } + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("min_values", ::apache::thrift::protocol::T_LIST, 2); + { + xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->min_values.size())); + std::vector ::const_iterator _iter174; + for (_iter174 = this->min_values.begin(); _iter174 != this->min_values.end(); ++_iter174) + { + xfer += oprot->writeBinary((*_iter174)); + } + xfer += oprot->writeListEnd(); + } + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("max_values", ::apache::thrift::protocol::T_LIST, 3); + { + xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->max_values.size())); + std::vector ::const_iterator _iter175; + for (_iter175 = this->max_values.begin(); _iter175 != this->max_values.end(); ++_iter175) + { + xfer += oprot->writeBinary((*_iter175)); + } + xfer += oprot->writeListEnd(); + } + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("boundary_order", ::apache::thrift::protocol::T_I32, 4); + xfer += oprot->writeI32(static_cast(this->boundary_order)); + xfer += oprot->writeFieldEnd(); + + if (this->__isset.null_counts) { + xfer += oprot->writeFieldBegin("null_counts", ::apache::thrift::protocol::T_LIST, 5); + { + xfer += oprot->writeListBegin(::apache::thrift::protocol::T_I64, static_cast(this->null_counts.size())); + std::vector ::const_iterator _iter176; + for (_iter176 = this->null_counts.begin(); _iter176 != this->null_counts.end(); ++_iter176) + { + xfer += oprot->writeI64((*_iter176)); + } + xfer += oprot->writeListEnd(); + } + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(ColumnIndex &a, ColumnIndex &b) { + using ::std::swap; + swap(a.null_pages, b.null_pages); + swap(a.min_values, b.min_values); + swap(a.max_values, b.max_values); + swap(a.boundary_order, b.boundary_order); + swap(a.null_counts, b.null_counts); + swap(a.__isset, b.__isset); +} + +ColumnIndex::ColumnIndex(const ColumnIndex& other177) { + null_pages = other177.null_pages; + min_values = other177.min_values; + max_values = other177.max_values; + boundary_order = other177.boundary_order; + null_counts = other177.null_counts; + __isset = other177.__isset; +} +ColumnIndex& ColumnIndex::operator=(const ColumnIndex& other178) { + null_pages = other178.null_pages; + min_values = other178.min_values; + max_values = other178.max_values; + boundary_order = other178.boundary_order; + null_counts = other178.null_counts; + __isset = other178.__isset; + return *this; +} +void ColumnIndex::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "ColumnIndex("; + out << "null_pages=" << to_string(null_pages); + out << ", " << "min_values=" << to_string(min_values); + out << ", " << "max_values=" << to_string(max_values); + out << ", " << "boundary_order=" << to_string(boundary_order); + out << ", " << "null_counts="; (__isset.null_counts ? (out << to_string(null_counts)) : (out << "")); + out << ")"; +} + + +AesGcmV1::~AesGcmV1() noexcept { +} + + +void AesGcmV1::__set_aad_prefix(const std::string& val) { + this->aad_prefix = val; +__isset.aad_prefix = true; +} + +void AesGcmV1::__set_aad_file_unique(const std::string& val) { + this->aad_file_unique = val; +__isset.aad_file_unique = true; +} + +void AesGcmV1::__set_supply_aad_prefix(const bool val) { + this->supply_aad_prefix = val; +__isset.supply_aad_prefix = true; +} +std::ostream& operator<<(std::ostream& out, const AesGcmV1& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t AesGcmV1::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_STRING) { + xfer += iprot->readBinary(this->aad_prefix); + this->__isset.aad_prefix = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_STRING) { + xfer += iprot->readBinary(this->aad_file_unique); + this->__isset.aad_file_unique = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 3: + if (ftype == ::apache::thrift::protocol::T_BOOL) { + xfer += iprot->readBool(this->supply_aad_prefix); + this->__isset.supply_aad_prefix = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t AesGcmV1::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("AesGcmV1"); + + if (this->__isset.aad_prefix) { + xfer += oprot->writeFieldBegin("aad_prefix", ::apache::thrift::protocol::T_STRING, 1); + xfer += oprot->writeBinary(this->aad_prefix); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.aad_file_unique) { + xfer += oprot->writeFieldBegin("aad_file_unique", ::apache::thrift::protocol::T_STRING, 2); + xfer += oprot->writeBinary(this->aad_file_unique); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.supply_aad_prefix) { + xfer += oprot->writeFieldBegin("supply_aad_prefix", ::apache::thrift::protocol::T_BOOL, 3); + xfer += oprot->writeBool(this->supply_aad_prefix); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(AesGcmV1 &a, AesGcmV1 &b) { + using ::std::swap; + swap(a.aad_prefix, b.aad_prefix); + swap(a.aad_file_unique, b.aad_file_unique); + swap(a.supply_aad_prefix, b.supply_aad_prefix); + swap(a.__isset, b.__isset); +} + +AesGcmV1::AesGcmV1(const AesGcmV1& other179) { + aad_prefix = other179.aad_prefix; + aad_file_unique = other179.aad_file_unique; + supply_aad_prefix = other179.supply_aad_prefix; + __isset = other179.__isset; +} +AesGcmV1& AesGcmV1::operator=(const AesGcmV1& other180) { + aad_prefix = other180.aad_prefix; + aad_file_unique = other180.aad_file_unique; + supply_aad_prefix = other180.supply_aad_prefix; + __isset = other180.__isset; + return *this; +} +void AesGcmV1::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "AesGcmV1("; + out << "aad_prefix="; (__isset.aad_prefix ? (out << to_string(aad_prefix)) : (out << "")); + out << ", " << "aad_file_unique="; (__isset.aad_file_unique ? (out << to_string(aad_file_unique)) : (out << "")); + out << ", " << "supply_aad_prefix="; (__isset.supply_aad_prefix ? (out << to_string(supply_aad_prefix)) : (out << "")); + out << ")"; +} + + +AesGcmCtrV1::~AesGcmCtrV1() noexcept { +} + + +void AesGcmCtrV1::__set_aad_prefix(const std::string& val) { + this->aad_prefix = val; +__isset.aad_prefix = true; +} + +void AesGcmCtrV1::__set_aad_file_unique(const std::string& val) { + this->aad_file_unique = val; +__isset.aad_file_unique = true; +} + +void AesGcmCtrV1::__set_supply_aad_prefix(const bool val) { + this->supply_aad_prefix = val; +__isset.supply_aad_prefix = true; +} +std::ostream& operator<<(std::ostream& out, const AesGcmCtrV1& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t AesGcmCtrV1::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_STRING) { + xfer += iprot->readBinary(this->aad_prefix); + this->__isset.aad_prefix = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_STRING) { + xfer += iprot->readBinary(this->aad_file_unique); + this->__isset.aad_file_unique = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 3: + if (ftype == ::apache::thrift::protocol::T_BOOL) { + xfer += iprot->readBool(this->supply_aad_prefix); + this->__isset.supply_aad_prefix = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t AesGcmCtrV1::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("AesGcmCtrV1"); + + if (this->__isset.aad_prefix) { + xfer += oprot->writeFieldBegin("aad_prefix", ::apache::thrift::protocol::T_STRING, 1); + xfer += oprot->writeBinary(this->aad_prefix); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.aad_file_unique) { + xfer += oprot->writeFieldBegin("aad_file_unique", ::apache::thrift::protocol::T_STRING, 2); + xfer += oprot->writeBinary(this->aad_file_unique); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.supply_aad_prefix) { + xfer += oprot->writeFieldBegin("supply_aad_prefix", ::apache::thrift::protocol::T_BOOL, 3); + xfer += oprot->writeBool(this->supply_aad_prefix); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(AesGcmCtrV1 &a, AesGcmCtrV1 &b) { + using ::std::swap; + swap(a.aad_prefix, b.aad_prefix); + swap(a.aad_file_unique, b.aad_file_unique); + swap(a.supply_aad_prefix, b.supply_aad_prefix); + swap(a.__isset, b.__isset); +} + +AesGcmCtrV1::AesGcmCtrV1(const AesGcmCtrV1& other181) { + aad_prefix = other181.aad_prefix; + aad_file_unique = other181.aad_file_unique; + supply_aad_prefix = other181.supply_aad_prefix; + __isset = other181.__isset; +} +AesGcmCtrV1& AesGcmCtrV1::operator=(const AesGcmCtrV1& other182) { + aad_prefix = other182.aad_prefix; + aad_file_unique = other182.aad_file_unique; + supply_aad_prefix = other182.supply_aad_prefix; + __isset = other182.__isset; + return *this; +} +void AesGcmCtrV1::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "AesGcmCtrV1("; + out << "aad_prefix="; (__isset.aad_prefix ? (out << to_string(aad_prefix)) : (out << "")); + out << ", " << "aad_file_unique="; (__isset.aad_file_unique ? (out << to_string(aad_file_unique)) : (out << "")); + out << ", " << "supply_aad_prefix="; (__isset.supply_aad_prefix ? (out << to_string(supply_aad_prefix)) : (out << "")); + out << ")"; +} + + +EncryptionAlgorithm::~EncryptionAlgorithm() noexcept { +} + + +void EncryptionAlgorithm::__set_AES_GCM_V1(const AesGcmV1& val) { + this->AES_GCM_V1 = val; +__isset.AES_GCM_V1 = true; +} + +void EncryptionAlgorithm::__set_AES_GCM_CTR_V1(const AesGcmCtrV1& val) { + this->AES_GCM_CTR_V1 = val; +__isset.AES_GCM_CTR_V1 = true; +} +std::ostream& operator<<(std::ostream& out, const EncryptionAlgorithm& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t EncryptionAlgorithm::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->AES_GCM_V1.read(iprot); + this->__isset.AES_GCM_V1 = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->AES_GCM_CTR_V1.read(iprot); + this->__isset.AES_GCM_CTR_V1 = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + return xfer; +} + +uint32_t EncryptionAlgorithm::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("EncryptionAlgorithm"); + + if (this->__isset.AES_GCM_V1) { + xfer += oprot->writeFieldBegin("AES_GCM_V1", ::apache::thrift::protocol::T_STRUCT, 1); + xfer += this->AES_GCM_V1.write(oprot); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.AES_GCM_CTR_V1) { + xfer += oprot->writeFieldBegin("AES_GCM_CTR_V1", ::apache::thrift::protocol::T_STRUCT, 2); + xfer += this->AES_GCM_CTR_V1.write(oprot); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(EncryptionAlgorithm &a, EncryptionAlgorithm &b) { + using ::std::swap; + swap(a.AES_GCM_V1, b.AES_GCM_V1); + swap(a.AES_GCM_CTR_V1, b.AES_GCM_CTR_V1); + swap(a.__isset, b.__isset); +} + +EncryptionAlgorithm::EncryptionAlgorithm(const EncryptionAlgorithm& other183) { + AES_GCM_V1 = other183.AES_GCM_V1; + AES_GCM_CTR_V1 = other183.AES_GCM_CTR_V1; + __isset = other183.__isset; +} +EncryptionAlgorithm& EncryptionAlgorithm::operator=(const EncryptionAlgorithm& other184) { + AES_GCM_V1 = other184.AES_GCM_V1; + AES_GCM_CTR_V1 = other184.AES_GCM_CTR_V1; + __isset = other184.__isset; + return *this; +} +void EncryptionAlgorithm::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "EncryptionAlgorithm("; + out << "AES_GCM_V1="; (__isset.AES_GCM_V1 ? (out << to_string(AES_GCM_V1)) : (out << "")); + out << ", " << "AES_GCM_CTR_V1="; (__isset.AES_GCM_CTR_V1 ? (out << to_string(AES_GCM_CTR_V1)) : (out << "")); + out << ")"; +} + + +FileMetaData::~FileMetaData() noexcept { +} + + +void FileMetaData::__set_version(const int32_t val) { + this->version = val; +} + +void FileMetaData::__set_schema(const std::vector & val) { + this->schema = val; +} + +void FileMetaData::__set_num_rows(const int64_t val) { + this->num_rows = val; +} + +void FileMetaData::__set_row_groups(const std::vector & val) { + this->row_groups = val; +} + +void FileMetaData::__set_key_value_metadata(const std::vector & val) { + this->key_value_metadata = val; +__isset.key_value_metadata = true; +} + +void FileMetaData::__set_created_by(const std::string& val) { + this->created_by = val; +__isset.created_by = true; +} + +void FileMetaData::__set_column_orders(const std::vector & val) { + this->column_orders = val; +__isset.column_orders = true; +} + +void FileMetaData::__set_encryption_algorithm(const EncryptionAlgorithm& val) { + this->encryption_algorithm = val; +__isset.encryption_algorithm = true; +} + +void FileMetaData::__set_footer_signing_key_metadata(const std::string& val) { + this->footer_signing_key_metadata = val; +__isset.footer_signing_key_metadata = true; +} +std::ostream& operator<<(std::ostream& out, const FileMetaData& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t FileMetaData::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + bool isset_version = false; + bool isset_schema = false; + bool isset_num_rows = false; + bool isset_row_groups = false; + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_I32) { + xfer += iprot->readI32(this->version); + isset_version = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_LIST) { + { + this->schema.clear(); + uint32_t _size185; + ::apache::thrift::protocol::TType _etype188; + xfer += iprot->readListBegin(_etype188, _size185); + this->schema.resize(_size185); + uint32_t _i189; + for (_i189 = 0; _i189 < _size185; ++_i189) + { + xfer += this->schema[_i189].read(iprot); + } + xfer += iprot->readListEnd(); + } + isset_schema = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 3: + if (ftype == ::apache::thrift::protocol::T_I64) { + xfer += iprot->readI64(this->num_rows); + isset_num_rows = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 4: + if (ftype == ::apache::thrift::protocol::T_LIST) { + { + this->row_groups.clear(); + uint32_t _size190; + ::apache::thrift::protocol::TType _etype193; + xfer += iprot->readListBegin(_etype193, _size190); + this->row_groups.resize(_size190); + uint32_t _i194; + for (_i194 = 0; _i194 < _size190; ++_i194) + { + xfer += this->row_groups[_i194].read(iprot); + } + xfer += iprot->readListEnd(); + } + isset_row_groups = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 5: + if (ftype == ::apache::thrift::protocol::T_LIST) { + { + this->key_value_metadata.clear(); + uint32_t _size195; + ::apache::thrift::protocol::TType _etype198; + xfer += iprot->readListBegin(_etype198, _size195); + this->key_value_metadata.resize(_size195); + uint32_t _i199; + for (_i199 = 0; _i199 < _size195; ++_i199) + { + xfer += this->key_value_metadata[_i199].read(iprot); + } + xfer += iprot->readListEnd(); + } + this->__isset.key_value_metadata = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 6: + if (ftype == ::apache::thrift::protocol::T_STRING) { + xfer += iprot->readString(this->created_by); + this->__isset.created_by = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 7: + if (ftype == ::apache::thrift::protocol::T_LIST) { + { + this->column_orders.clear(); + uint32_t _size200; + ::apache::thrift::protocol::TType _etype203; + xfer += iprot->readListBegin(_etype203, _size200); + this->column_orders.resize(_size200); + uint32_t _i204; + for (_i204 = 0; _i204 < _size200; ++_i204) + { + xfer += this->column_orders[_i204].read(iprot); + } + xfer += iprot->readListEnd(); + } + this->__isset.column_orders = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 8: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->encryption_algorithm.read(iprot); + this->__isset.encryption_algorithm = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 9: + if (ftype == ::apache::thrift::protocol::T_STRING) { + xfer += iprot->readBinary(this->footer_signing_key_metadata); + this->__isset.footer_signing_key_metadata = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + if (!isset_version) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_schema) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_num_rows) + throw TProtocolException(TProtocolException::INVALID_DATA); + if (!isset_row_groups) + throw TProtocolException(TProtocolException::INVALID_DATA); + return xfer; +} + +uint32_t FileMetaData::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("FileMetaData"); + + xfer += oprot->writeFieldBegin("version", ::apache::thrift::protocol::T_I32, 1); + xfer += oprot->writeI32(this->version); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("schema", ::apache::thrift::protocol::T_LIST, 2); + { + xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->schema.size())); + std::vector ::const_iterator _iter205; + for (_iter205 = this->schema.begin(); _iter205 != this->schema.end(); ++_iter205) + { + xfer += (*_iter205).write(oprot); + } + xfer += oprot->writeListEnd(); + } + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("num_rows", ::apache::thrift::protocol::T_I64, 3); + xfer += oprot->writeI64(this->num_rows); + xfer += oprot->writeFieldEnd(); + + xfer += oprot->writeFieldBegin("row_groups", ::apache::thrift::protocol::T_LIST, 4); + { + xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->row_groups.size())); + std::vector ::const_iterator _iter206; + for (_iter206 = this->row_groups.begin(); _iter206 != this->row_groups.end(); ++_iter206) + { + xfer += (*_iter206).write(oprot); + } + xfer += oprot->writeListEnd(); + } + xfer += oprot->writeFieldEnd(); + + if (this->__isset.key_value_metadata) { + xfer += oprot->writeFieldBegin("key_value_metadata", ::apache::thrift::protocol::T_LIST, 5); + { + xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->key_value_metadata.size())); + std::vector ::const_iterator _iter207; + for (_iter207 = this->key_value_metadata.begin(); _iter207 != this->key_value_metadata.end(); ++_iter207) + { + xfer += (*_iter207).write(oprot); + } + xfer += oprot->writeListEnd(); + } + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.created_by) { + xfer += oprot->writeFieldBegin("created_by", ::apache::thrift::protocol::T_STRING, 6); + xfer += oprot->writeString(this->created_by); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.column_orders) { + xfer += oprot->writeFieldBegin("column_orders", ::apache::thrift::protocol::T_LIST, 7); + { + xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->column_orders.size())); + std::vector ::const_iterator _iter208; + for (_iter208 = this->column_orders.begin(); _iter208 != this->column_orders.end(); ++_iter208) + { + xfer += (*_iter208).write(oprot); + } + xfer += oprot->writeListEnd(); + } + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.encryption_algorithm) { + xfer += oprot->writeFieldBegin("encryption_algorithm", ::apache::thrift::protocol::T_STRUCT, 8); + xfer += this->encryption_algorithm.write(oprot); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.footer_signing_key_metadata) { + xfer += oprot->writeFieldBegin("footer_signing_key_metadata", ::apache::thrift::protocol::T_STRING, 9); + xfer += oprot->writeBinary(this->footer_signing_key_metadata); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(FileMetaData &a, FileMetaData &b) { + using ::std::swap; + swap(a.version, b.version); + swap(a.schema, b.schema); + swap(a.num_rows, b.num_rows); + swap(a.row_groups, b.row_groups); + swap(a.key_value_metadata, b.key_value_metadata); + swap(a.created_by, b.created_by); + swap(a.column_orders, b.column_orders); + swap(a.encryption_algorithm, b.encryption_algorithm); + swap(a.footer_signing_key_metadata, b.footer_signing_key_metadata); + swap(a.__isset, b.__isset); +} + +FileMetaData::FileMetaData(const FileMetaData& other209) { + version = other209.version; + schema = other209.schema; + num_rows = other209.num_rows; + row_groups = other209.row_groups; + key_value_metadata = other209.key_value_metadata; + created_by = other209.created_by; + column_orders = other209.column_orders; + encryption_algorithm = other209.encryption_algorithm; + footer_signing_key_metadata = other209.footer_signing_key_metadata; + __isset = other209.__isset; +} +FileMetaData& FileMetaData::operator=(const FileMetaData& other210) { + version = other210.version; + schema = other210.schema; + num_rows = other210.num_rows; + row_groups = other210.row_groups; + key_value_metadata = other210.key_value_metadata; + created_by = other210.created_by; + column_orders = other210.column_orders; + encryption_algorithm = other210.encryption_algorithm; + footer_signing_key_metadata = other210.footer_signing_key_metadata; + __isset = other210.__isset; + return *this; +} +void FileMetaData::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "FileMetaData("; + out << "version=" << to_string(version); + out << ", " << "schema=" << to_string(schema); + out << ", " << "num_rows=" << to_string(num_rows); + out << ", " << "row_groups=" << to_string(row_groups); + out << ", " << "key_value_metadata="; (__isset.key_value_metadata ? (out << to_string(key_value_metadata)) : (out << "")); + out << ", " << "created_by="; (__isset.created_by ? (out << to_string(created_by)) : (out << "")); + out << ", " << "column_orders="; (__isset.column_orders ? (out << to_string(column_orders)) : (out << "")); + out << ", " << "encryption_algorithm="; (__isset.encryption_algorithm ? (out << to_string(encryption_algorithm)) : (out << "")); + out << ", " << "footer_signing_key_metadata="; (__isset.footer_signing_key_metadata ? (out << to_string(footer_signing_key_metadata)) : (out << "")); + out << ")"; +} + + +FileCryptoMetaData::~FileCryptoMetaData() noexcept { +} + + +void FileCryptoMetaData::__set_encryption_algorithm(const EncryptionAlgorithm& val) { + this->encryption_algorithm = val; +} + +void FileCryptoMetaData::__set_key_metadata(const std::string& val) { + this->key_metadata = val; +__isset.key_metadata = true; +} +std::ostream& operator<<(std::ostream& out, const FileCryptoMetaData& obj) +{ + obj.printTo(out); + return out; +} + + +uint32_t FileCryptoMetaData::read(::apache::thrift::protocol::TProtocol* iprot) { + + ::apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); + uint32_t xfer = 0; + std::string fname; + ::apache::thrift::protocol::TType ftype; + int16_t fid; + + xfer += iprot->readStructBegin(fname); + + using ::apache::thrift::protocol::TProtocolException; + + bool isset_encryption_algorithm = false; + + while (true) + { + xfer += iprot->readFieldBegin(fname, ftype, fid); + if (ftype == ::apache::thrift::protocol::T_STOP) { + break; + } + switch (fid) + { + case 1: + if (ftype == ::apache::thrift::protocol::T_STRUCT) { + xfer += this->encryption_algorithm.read(iprot); + isset_encryption_algorithm = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_STRING) { + xfer += iprot->readBinary(this->key_metadata); + this->__isset.key_metadata = true; + } else { + xfer += iprot->skip(ftype); + } + break; + default: + xfer += iprot->skip(ftype); + break; + } + xfer += iprot->readFieldEnd(); + } + + xfer += iprot->readStructEnd(); + + if (!isset_encryption_algorithm) + throw TProtocolException(TProtocolException::INVALID_DATA); + return xfer; +} + +uint32_t FileCryptoMetaData::write(::apache::thrift::protocol::TProtocol* oprot) const { + uint32_t xfer = 0; + ::apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); + xfer += oprot->writeStructBegin("FileCryptoMetaData"); + + xfer += oprot->writeFieldBegin("encryption_algorithm", ::apache::thrift::protocol::T_STRUCT, 1); + xfer += this->encryption_algorithm.write(oprot); + xfer += oprot->writeFieldEnd(); + + if (this->__isset.key_metadata) { + xfer += oprot->writeFieldBegin("key_metadata", ::apache::thrift::protocol::T_STRING, 2); + xfer += oprot->writeBinary(this->key_metadata); + xfer += oprot->writeFieldEnd(); + } + xfer += oprot->writeFieldStop(); + xfer += oprot->writeStructEnd(); + return xfer; +} + +void swap(FileCryptoMetaData &a, FileCryptoMetaData &b) { + using ::std::swap; + swap(a.encryption_algorithm, b.encryption_algorithm); + swap(a.key_metadata, b.key_metadata); + swap(a.__isset, b.__isset); +} + +FileCryptoMetaData::FileCryptoMetaData(const FileCryptoMetaData& other211) { + encryption_algorithm = other211.encryption_algorithm; + key_metadata = other211.key_metadata; + __isset = other211.__isset; +} +FileCryptoMetaData& FileCryptoMetaData::operator=(const FileCryptoMetaData& other212) { + encryption_algorithm = other212.encryption_algorithm; + key_metadata = other212.key_metadata; + __isset = other212.__isset; + return *this; +} +void FileCryptoMetaData::printTo(std::ostream& out) const { + using ::apache::thrift::to_string; + out << "FileCryptoMetaData("; + out << "encryption_algorithm=" << to_string(encryption_algorithm); + out << ", " << "key_metadata="; (__isset.key_metadata ? (out << to_string(key_metadata)) : (out << "")); + out << ")"; +} + +}} // namespace +#pragma clang diagnostic pop diff --git a/src/Processors/Formats/Impl/Parquet/generated/parquet_types.h b/src/Processors/Formats/Impl/Parquet/generated/parquet_types.h new file mode 100644 index 00000000000..e50f2c3591f --- /dev/null +++ b/src/Processors/Formats/Impl/Parquet/generated/parquet_types.h @@ -0,0 +1,3834 @@ +/** + * Autogenerated by Thrift Compiler (0.17.0) + * + * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING + * @generated + */ +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Winconsistent-missing-destructor-override" +#pragma clang diagnostic ignored "-Wsuggest-destructor-override" +#pragma clang diagnostic ignored "-Wreserved-identifier" +#pragma clang diagnostic ignored "-Wunused-variable" +#pragma clang diagnostic ignored "-Wshorten-64-to-32" +#ifndef parquet_TYPES_H +#define parquet_TYPES_H +#include + +#include +#include +#include +#include +#include + +#include +#include + +#include "parquet/windows_compatibility.h" + +namespace parquet { namespace format { + +/** + * Types supported by Parquet. These types are intended to be used in combination + * with the encodings to control the on disk storage format. + * For example INT16 is not included as a type since a good encoding of INT32 + * would handle this. + */ +struct Type { + enum type { + BOOLEAN = 0, + INT32 = 1, + INT64 = 2, + INT96 = 3, + FLOAT = 4, + DOUBLE = 5, + BYTE_ARRAY = 6, + FIXED_LEN_BYTE_ARRAY = 7 + }; +}; + +extern const std::map _Type_VALUES_TO_NAMES; + +std::ostream& operator<<(std::ostream& out, const Type::type& val); + +std::string to_string(const Type::type& val); + +/** + * DEPRECATED: Common types used by frameworks(e.g. hive, pig) using parquet. + * ConvertedType is superseded by LogicalType. This enum should not be extended. + * + * See LogicalTypes.md for conversion between ConvertedType and LogicalType. + */ +struct ConvertedType { + enum type { + /** + * a BYTE_ARRAY actually contains UTF8 encoded chars + */ + UTF8 = 0, + /** + * a map is converted as an optional field containing a repeated key/value pair + */ + MAP = 1, + /** + * a key/value pair is converted into a group of two fields + */ + MAP_KEY_VALUE = 2, + /** + * a list is converted into an optional field containing a repeated field for its + * values + */ + LIST = 3, + /** + * an enum is converted into a binary field + */ + ENUM = 4, + /** + * A decimal value. + * + * This may be used to annotate binary or fixed primitive types. The + * underlying byte array stores the unscaled value encoded as two's + * complement using big-endian byte order (the most significant byte is the + * zeroth element). The value of the decimal is the value * 10^{-scale}. + * + * This must be accompanied by a (maximum) precision and a scale in the + * SchemaElement. The precision specifies the number of digits in the decimal + * and the scale stores the location of the decimal point. For example 1.23 + * would have precision 3 (3 total digits) and scale 2 (the decimal point is + * 2 digits over). + */ + DECIMAL = 5, + /** + * A Date + * + * Stored as days since Unix epoch, encoded as the INT32 physical type. + * + */ + DATE = 6, + /** + * A time + * + * The total number of milliseconds since midnight. The value is stored + * as an INT32 physical type. + */ + TIME_MILLIS = 7, + /** + * A time. + * + * The total number of microseconds since midnight. The value is stored as + * an INT64 physical type. + */ + TIME_MICROS = 8, + /** + * A date/time combination + * + * Date and time recorded as milliseconds since the Unix epoch. Recorded as + * a physical type of INT64. + */ + TIMESTAMP_MILLIS = 9, + /** + * A date/time combination + * + * Date and time recorded as microseconds since the Unix epoch. The value is + * stored as an INT64 physical type. + */ + TIMESTAMP_MICROS = 10, + /** + * An unsigned integer value. + * + * The number describes the maximum number of meaningful data bits in + * the stored value. 8, 16 and 32 bit values are stored using the + * INT32 physical type. 64 bit values are stored using the INT64 + * physical type. + * + */ + UINT_8 = 11, + UINT_16 = 12, + UINT_32 = 13, + UINT_64 = 14, + /** + * A signed integer value. + * + * The number describes the maximum number of meaningful data bits in + * the stored value. 8, 16 and 32 bit values are stored using the + * INT32 physical type. 64 bit values are stored using the INT64 + * physical type. + * + */ + INT_8 = 15, + INT_16 = 16, + INT_32 = 17, + INT_64 = 18, + /** + * An embedded JSON document + * + * A JSON document embedded within a single UTF8 column. + */ + JSON = 19, + /** + * An embedded BSON document + * + * A BSON document embedded within a single BINARY column. + */ + BSON = 20, + /** + * An interval of time + * + * This type annotates data stored as a FIXED_LEN_BYTE_ARRAY of length 12 + * This data is composed of three separate little endian unsigned + * integers. Each stores a component of a duration of time. The first + * integer identifies the number of months associated with the duration, + * the second identifies the number of days associated with the duration + * and the third identifies the number of milliseconds associated with + * the provided duration. This duration of time is independent of any + * particular timezone or date. + */ + INTERVAL = 21 + }; +}; + +extern const std::map _ConvertedType_VALUES_TO_NAMES; + +std::ostream& operator<<(std::ostream& out, const ConvertedType::type& val); + +std::string to_string(const ConvertedType::type& val); + +/** + * Representation of Schemas + */ +struct FieldRepetitionType { + enum type { + /** + * This field is required (can not be null) and each record has exactly 1 value. + */ + REQUIRED = 0, + /** + * The field is optional (can be null) and each record has 0 or 1 values. + */ + OPTIONAL = 1, + /** + * The field is repeated and can contain 0 or more values + */ + REPEATED = 2 + }; +}; + +extern const std::map _FieldRepetitionType_VALUES_TO_NAMES; + +std::ostream& operator<<(std::ostream& out, const FieldRepetitionType::type& val); + +std::string to_string(const FieldRepetitionType::type& val); + +/** + * Encodings supported by Parquet. Not all encodings are valid for all types. These + * enums are also used to specify the encoding of definition and repetition levels. + * See the accompanying doc for the details of the more complicated encodings. + */ +struct Encoding { + enum type { + /** + * Default encoding. + * BOOLEAN - 1 bit per value. 0 is false; 1 is true. + * INT32 - 4 bytes per value. Stored as little-endian. + * INT64 - 8 bytes per value. Stored as little-endian. + * FLOAT - 4 bytes per value. IEEE. Stored as little-endian. + * DOUBLE - 8 bytes per value. IEEE. Stored as little-endian. + * BYTE_ARRAY - 4 byte length stored as little endian, followed by bytes. + * FIXED_LEN_BYTE_ARRAY - Just the bytes. + */ + PLAIN = 0, + /** + * Deprecated: Dictionary encoding. The values in the dictionary are encoded in the + * plain type. + * in a data page use RLE_DICTIONARY instead. + * in a Dictionary page use PLAIN instead + */ + PLAIN_DICTIONARY = 2, + /** + * Group packed run length encoding. Usable for definition/repetition levels + * encoding and Booleans (on one bit: 0 is false; 1 is true.) + */ + RLE = 3, + /** + * Bit packed encoding. This can only be used if the data has a known max + * width. Usable for definition/repetition levels encoding. + */ + BIT_PACKED = 4, + /** + * Delta encoding for integers. This can be used for int columns and works best + * on sorted data + */ + DELTA_BINARY_PACKED = 5, + /** + * Encoding for byte arrays to separate the length values and the data. The lengths + * are encoded using DELTA_BINARY_PACKED + */ + DELTA_LENGTH_BYTE_ARRAY = 6, + /** + * Incremental-encoded byte array. Prefix lengths are encoded using DELTA_BINARY_PACKED. + * Suffixes are stored as delta length byte arrays. + */ + DELTA_BYTE_ARRAY = 7, + /** + * Dictionary encoding: the ids are encoded using the RLE encoding + */ + RLE_DICTIONARY = 8, + /** + * Encoding for floating-point data. + * K byte-streams are created where K is the size in bytes of the data type. + * The individual bytes of an FP value are scattered to the corresponding stream and + * the streams are concatenated. + * This itself does not reduce the size of the data but can lead to better compression + * afterwards. + */ + BYTE_STREAM_SPLIT = 9 + }; +}; + +extern const std::map _Encoding_VALUES_TO_NAMES; + +std::ostream& operator<<(std::ostream& out, const Encoding::type& val); + +std::string to_string(const Encoding::type& val); + +/** + * Supported compression algorithms. + * + * Codecs added in format version X.Y can be read by readers based on X.Y and later. + * Codec support may vary between readers based on the format version and + * libraries available at runtime. + * + * See Compression.md for a detailed specification of these algorithms. + */ +struct CompressionCodec { + enum type { + UNCOMPRESSED = 0, + SNAPPY = 1, + GZIP = 2, + LZO = 3, + BROTLI = 4, + LZ4 = 5, + ZSTD = 6, + LZ4_RAW = 7 + }; +}; + +extern const std::map _CompressionCodec_VALUES_TO_NAMES; + +std::ostream& operator<<(std::ostream& out, const CompressionCodec::type& val); + +std::string to_string(const CompressionCodec::type& val); + +struct PageType { + enum type { + DATA_PAGE = 0, + INDEX_PAGE = 1, + DICTIONARY_PAGE = 2, + DATA_PAGE_V2 = 3 + }; +}; + +extern const std::map _PageType_VALUES_TO_NAMES; + +std::ostream& operator<<(std::ostream& out, const PageType::type& val); + +std::string to_string(const PageType::type& val); + +/** + * Enum to annotate whether lists of min/max elements inside ColumnIndex + * are ordered and if so, in which direction. + */ +struct BoundaryOrder { + enum type { + UNORDERED = 0, + ASCENDING = 1, + DESCENDING = 2 + }; +}; + +extern const std::map _BoundaryOrder_VALUES_TO_NAMES; + +std::ostream& operator<<(std::ostream& out, const BoundaryOrder::type& val); + +std::string to_string(const BoundaryOrder::type& val); + +class Statistics; + +class StringType; + +class UUIDType; + +class MapType; + +class ListType; + +class EnumType; + +class DateType; + +class NullType; + +class DecimalType; + +class MilliSeconds; + +class MicroSeconds; + +class NanoSeconds; + +class TimeUnit; + +class TimestampType; + +class TimeType; + +class IntType; + +class JsonType; + +class BsonType; + +class LogicalType; + +class SchemaElement; + +class DataPageHeader; + +class IndexPageHeader; + +class DictionaryPageHeader; + +class DataPageHeaderV2; + +class SplitBlockAlgorithm; + +class BloomFilterAlgorithm; + +class XxHash; + +class BloomFilterHash; + +class Uncompressed; + +class BloomFilterCompression; + +class BloomFilterHeader; + +class PageHeader; + +class KeyValue; + +class SortingColumn; + +class PageEncodingStats; + +class ColumnMetaData; + +class EncryptionWithFooterKey; + +class EncryptionWithColumnKey; + +class ColumnCryptoMetaData; + +class ColumnChunk; + +class RowGroup; + +class TypeDefinedOrder; + +class ColumnOrder; + +class PageLocation; + +class OffsetIndex; + +class ColumnIndex; + +class AesGcmV1; + +class AesGcmCtrV1; + +class EncryptionAlgorithm; + +class FileMetaData; + +class FileCryptoMetaData; + +typedef struct _Statistics__isset { + _Statistics__isset() : max(false), min(false), null_count(false), distinct_count(false), max_value(false), min_value(false) {} + bool max :1; + bool min :1; + bool null_count :1; + bool distinct_count :1; + bool max_value :1; + bool min_value :1; +} _Statistics__isset; + +/** + * Statistics per row group and per page + * All fields are optional. + */ +class Statistics : public virtual ::apache::thrift::TBase { + public: + + Statistics(const Statistics&); + Statistics& operator=(const Statistics&); + Statistics() noexcept + : max(), + min(), + null_count(0), + distinct_count(0), + max_value(), + min_value() { + } + + virtual ~Statistics() noexcept; + /** + * DEPRECATED: min and max value of the column. Use min_value and max_value. + * + * Values are encoded using PLAIN encoding, except that variable-length byte + * arrays do not include a length prefix. + * + * These fields encode min and max values determined by signed comparison + * only. New files should use the correct order for a column's logical type + * and store the values in the min_value and max_value fields. + * + * To support older readers, these may be set when the column order is + * signed. + */ + std::string max; + std::string min; + /** + * count of null value in the column + */ + int64_t null_count; + /** + * count of distinct values occurring + */ + int64_t distinct_count; + /** + * Min and max values for the column, determined by its ColumnOrder. + * + * Values are encoded using PLAIN encoding, except that variable-length byte + * arrays do not include a length prefix. + */ + std::string max_value; + std::string min_value; + + _Statistics__isset __isset; + + void __set_max(const std::string& val); + + void __set_min(const std::string& val); + + void __set_null_count(const int64_t val); + + void __set_distinct_count(const int64_t val); + + void __set_max_value(const std::string& val); + + void __set_min_value(const std::string& val); + + bool operator == (const Statistics & rhs) const + { + if (__isset.max != rhs.__isset.max) + return false; + else if (__isset.max && !(max == rhs.max)) + return false; + if (__isset.min != rhs.__isset.min) + return false; + else if (__isset.min && !(min == rhs.min)) + return false; + if (__isset.null_count != rhs.__isset.null_count) + return false; + else if (__isset.null_count && !(null_count == rhs.null_count)) + return false; + if (__isset.distinct_count != rhs.__isset.distinct_count) + return false; + else if (__isset.distinct_count && !(distinct_count == rhs.distinct_count)) + return false; + if (__isset.max_value != rhs.__isset.max_value) + return false; + else if (__isset.max_value && !(max_value == rhs.max_value)) + return false; + if (__isset.min_value != rhs.__isset.min_value) + return false; + else if (__isset.min_value && !(min_value == rhs.min_value)) + return false; + return true; + } + bool operator != (const Statistics &rhs) const { + return !(*this == rhs); + } + + bool operator < (const Statistics & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(Statistics &a, Statistics &b); + +std::ostream& operator<<(std::ostream& out, const Statistics& obj); + + +/** + * Empty structs to use as logical type annotations + */ +class StringType : public virtual ::apache::thrift::TBase { + public: + + StringType(const StringType&) noexcept; + StringType& operator=(const StringType&) noexcept; + StringType() noexcept { + } + + virtual ~StringType() noexcept; + + bool operator == (const StringType & /* rhs */) const + { + return true; + } + bool operator != (const StringType &rhs) const { + return !(*this == rhs); + } + + bool operator < (const StringType & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(StringType &a, StringType &b); + +std::ostream& operator<<(std::ostream& out, const StringType& obj); + + +class UUIDType : public virtual ::apache::thrift::TBase { + public: + + UUIDType(const UUIDType&) noexcept; + UUIDType& operator=(const UUIDType&) noexcept; + UUIDType() noexcept { + } + + virtual ~UUIDType() noexcept; + + bool operator == (const UUIDType & /* rhs */) const + { + return true; + } + bool operator != (const UUIDType &rhs) const { + return !(*this == rhs); + } + + bool operator < (const UUIDType & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(UUIDType &a, UUIDType &b); + +std::ostream& operator<<(std::ostream& out, const UUIDType& obj); + + +class MapType : public virtual ::apache::thrift::TBase { + public: + + MapType(const MapType&) noexcept; + MapType& operator=(const MapType&) noexcept; + MapType() noexcept { + } + + virtual ~MapType() noexcept; + + bool operator == (const MapType & /* rhs */) const + { + return true; + } + bool operator != (const MapType &rhs) const { + return !(*this == rhs); + } + + bool operator < (const MapType & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(MapType &a, MapType &b); + +std::ostream& operator<<(std::ostream& out, const MapType& obj); + + +class ListType : public virtual ::apache::thrift::TBase { + public: + + ListType(const ListType&) noexcept; + ListType& operator=(const ListType&) noexcept; + ListType() noexcept { + } + + virtual ~ListType() noexcept; + + bool operator == (const ListType & /* rhs */) const + { + return true; + } + bool operator != (const ListType &rhs) const { + return !(*this == rhs); + } + + bool operator < (const ListType & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(ListType &a, ListType &b); + +std::ostream& operator<<(std::ostream& out, const ListType& obj); + + +class EnumType : public virtual ::apache::thrift::TBase { + public: + + EnumType(const EnumType&) noexcept; + EnumType& operator=(const EnumType&) noexcept; + EnumType() noexcept { + } + + virtual ~EnumType() noexcept; + + bool operator == (const EnumType & /* rhs */) const + { + return true; + } + bool operator != (const EnumType &rhs) const { + return !(*this == rhs); + } + + bool operator < (const EnumType & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(EnumType &a, EnumType &b); + +std::ostream& operator<<(std::ostream& out, const EnumType& obj); + + +class DateType : public virtual ::apache::thrift::TBase { + public: + + DateType(const DateType&) noexcept; + DateType& operator=(const DateType&) noexcept; + DateType() noexcept { + } + + virtual ~DateType() noexcept; + + bool operator == (const DateType & /* rhs */) const + { + return true; + } + bool operator != (const DateType &rhs) const { + return !(*this == rhs); + } + + bool operator < (const DateType & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(DateType &a, DateType &b); + +std::ostream& operator<<(std::ostream& out, const DateType& obj); + + +/** + * Logical type to annotate a column that is always null. + * + * Sometimes when discovering the schema of existing data, values are always + * null and the physical type can't be determined. This annotation signals + * the case where the physical type was guessed from all null values. + */ +class NullType : public virtual ::apache::thrift::TBase { + public: + + NullType(const NullType&) noexcept; + NullType& operator=(const NullType&) noexcept; + NullType() noexcept { + } + + virtual ~NullType() noexcept; + + bool operator == (const NullType & /* rhs */) const + { + return true; + } + bool operator != (const NullType &rhs) const { + return !(*this == rhs); + } + + bool operator < (const NullType & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(NullType &a, NullType &b); + +std::ostream& operator<<(std::ostream& out, const NullType& obj); + + +/** + * Decimal logical type annotation + * + * To maintain forward-compatibility in v1, implementations using this logical + * type must also set scale and precision on the annotated SchemaElement. + * + * Allowed for physical types: INT32, INT64, FIXED, and BINARY + */ +class DecimalType : public virtual ::apache::thrift::TBase { + public: + + DecimalType(const DecimalType&) noexcept; + DecimalType& operator=(const DecimalType&) noexcept; + DecimalType() noexcept + : scale(0), + precision(0) { + } + + virtual ~DecimalType() noexcept; + int32_t scale; + int32_t precision; + + void __set_scale(const int32_t val); + + void __set_precision(const int32_t val); + + bool operator == (const DecimalType & rhs) const + { + if (!(scale == rhs.scale)) + return false; + if (!(precision == rhs.precision)) + return false; + return true; + } + bool operator != (const DecimalType &rhs) const { + return !(*this == rhs); + } + + bool operator < (const DecimalType & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(DecimalType &a, DecimalType &b); + +std::ostream& operator<<(std::ostream& out, const DecimalType& obj); + + +/** + * Time units for logical types + */ +class MilliSeconds : public virtual ::apache::thrift::TBase { + public: + + MilliSeconds(const MilliSeconds&) noexcept; + MilliSeconds& operator=(const MilliSeconds&) noexcept; + MilliSeconds() noexcept { + } + + virtual ~MilliSeconds() noexcept; + + bool operator == (const MilliSeconds & /* rhs */) const + { + return true; + } + bool operator != (const MilliSeconds &rhs) const { + return !(*this == rhs); + } + + bool operator < (const MilliSeconds & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(MilliSeconds &a, MilliSeconds &b); + +std::ostream& operator<<(std::ostream& out, const MilliSeconds& obj); + + +class MicroSeconds : public virtual ::apache::thrift::TBase { + public: + + MicroSeconds(const MicroSeconds&) noexcept; + MicroSeconds& operator=(const MicroSeconds&) noexcept; + MicroSeconds() noexcept { + } + + virtual ~MicroSeconds() noexcept; + + bool operator == (const MicroSeconds & /* rhs */) const + { + return true; + } + bool operator != (const MicroSeconds &rhs) const { + return !(*this == rhs); + } + + bool operator < (const MicroSeconds & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(MicroSeconds &a, MicroSeconds &b); + +std::ostream& operator<<(std::ostream& out, const MicroSeconds& obj); + + +class NanoSeconds : public virtual ::apache::thrift::TBase { + public: + + NanoSeconds(const NanoSeconds&) noexcept; + NanoSeconds& operator=(const NanoSeconds&) noexcept; + NanoSeconds() noexcept { + } + + virtual ~NanoSeconds() noexcept; + + bool operator == (const NanoSeconds & /* rhs */) const + { + return true; + } + bool operator != (const NanoSeconds &rhs) const { + return !(*this == rhs); + } + + bool operator < (const NanoSeconds & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(NanoSeconds &a, NanoSeconds &b); + +std::ostream& operator<<(std::ostream& out, const NanoSeconds& obj); + +typedef struct _TimeUnit__isset { + _TimeUnit__isset() : MILLIS(false), MICROS(false), NANOS(false) {} + bool MILLIS :1; + bool MICROS :1; + bool NANOS :1; +} _TimeUnit__isset; + +class TimeUnit : public virtual ::apache::thrift::TBase { + public: + + TimeUnit(const TimeUnit&) noexcept; + TimeUnit& operator=(const TimeUnit&) noexcept; + TimeUnit() noexcept { + } + + virtual ~TimeUnit() noexcept; + MilliSeconds MILLIS; + MicroSeconds MICROS; + NanoSeconds NANOS; + + _TimeUnit__isset __isset; + + void __set_MILLIS(const MilliSeconds& val); + + void __set_MICROS(const MicroSeconds& val); + + void __set_NANOS(const NanoSeconds& val); + + bool operator == (const TimeUnit & rhs) const + { + if (__isset.MILLIS != rhs.__isset.MILLIS) + return false; + else if (__isset.MILLIS && !(MILLIS == rhs.MILLIS)) + return false; + if (__isset.MICROS != rhs.__isset.MICROS) + return false; + else if (__isset.MICROS && !(MICROS == rhs.MICROS)) + return false; + if (__isset.NANOS != rhs.__isset.NANOS) + return false; + else if (__isset.NANOS && !(NANOS == rhs.NANOS)) + return false; + return true; + } + bool operator != (const TimeUnit &rhs) const { + return !(*this == rhs); + } + + bool operator < (const TimeUnit & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(TimeUnit &a, TimeUnit &b); + +std::ostream& operator<<(std::ostream& out, const TimeUnit& obj); + + +/** + * Timestamp logical type annotation + * + * Allowed for physical types: INT64 + */ +class TimestampType : public virtual ::apache::thrift::TBase { + public: + + TimestampType(const TimestampType&) noexcept; + TimestampType& operator=(const TimestampType&) noexcept; + TimestampType() noexcept + : isAdjustedToUTC(0) { + } + + virtual ~TimestampType() noexcept; + bool isAdjustedToUTC; + TimeUnit unit; + + void __set_isAdjustedToUTC(const bool val); + + void __set_unit(const TimeUnit& val); + + bool operator == (const TimestampType & rhs) const + { + if (!(isAdjustedToUTC == rhs.isAdjustedToUTC)) + return false; + if (!(unit == rhs.unit)) + return false; + return true; + } + bool operator != (const TimestampType &rhs) const { + return !(*this == rhs); + } + + bool operator < (const TimestampType & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(TimestampType &a, TimestampType &b); + +std::ostream& operator<<(std::ostream& out, const TimestampType& obj); + + +/** + * Time logical type annotation + * + * Allowed for physical types: INT32 (millis), INT64 (micros, nanos) + */ +class TimeType : public virtual ::apache::thrift::TBase { + public: + + TimeType(const TimeType&) noexcept; + TimeType& operator=(const TimeType&) noexcept; + TimeType() noexcept + : isAdjustedToUTC(0) { + } + + virtual ~TimeType() noexcept; + bool isAdjustedToUTC; + TimeUnit unit; + + void __set_isAdjustedToUTC(const bool val); + + void __set_unit(const TimeUnit& val); + + bool operator == (const TimeType & rhs) const + { + if (!(isAdjustedToUTC == rhs.isAdjustedToUTC)) + return false; + if (!(unit == rhs.unit)) + return false; + return true; + } + bool operator != (const TimeType &rhs) const { + return !(*this == rhs); + } + + bool operator < (const TimeType & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(TimeType &a, TimeType &b); + +std::ostream& operator<<(std::ostream& out, const TimeType& obj); + + +/** + * Integer logical type annotation + * + * bitWidth must be 8, 16, 32, or 64. + * + * Allowed for physical types: INT32, INT64 + */ +class IntType : public virtual ::apache::thrift::TBase { + public: + + IntType(const IntType&) noexcept; + IntType& operator=(const IntType&) noexcept; + IntType() noexcept + : bitWidth(0), + isSigned(0) { + } + + virtual ~IntType() noexcept; + int8_t bitWidth; + bool isSigned; + + void __set_bitWidth(const int8_t val); + + void __set_isSigned(const bool val); + + bool operator == (const IntType & rhs) const + { + if (!(bitWidth == rhs.bitWidth)) + return false; + if (!(isSigned == rhs.isSigned)) + return false; + return true; + } + bool operator != (const IntType &rhs) const { + return !(*this == rhs); + } + + bool operator < (const IntType & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(IntType &a, IntType &b); + +std::ostream& operator<<(std::ostream& out, const IntType& obj); + + +/** + * Embedded JSON logical type annotation + * + * Allowed for physical types: BINARY + */ +class JsonType : public virtual ::apache::thrift::TBase { + public: + + JsonType(const JsonType&) noexcept; + JsonType& operator=(const JsonType&) noexcept; + JsonType() noexcept { + } + + virtual ~JsonType() noexcept; + + bool operator == (const JsonType & /* rhs */) const + { + return true; + } + bool operator != (const JsonType &rhs) const { + return !(*this == rhs); + } + + bool operator < (const JsonType & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(JsonType &a, JsonType &b); + +std::ostream& operator<<(std::ostream& out, const JsonType& obj); + + +/** + * Embedded BSON logical type annotation + * + * Allowed for physical types: BINARY + */ +class BsonType : public virtual ::apache::thrift::TBase { + public: + + BsonType(const BsonType&) noexcept; + BsonType& operator=(const BsonType&) noexcept; + BsonType() noexcept { + } + + virtual ~BsonType() noexcept; + + bool operator == (const BsonType & /* rhs */) const + { + return true; + } + bool operator != (const BsonType &rhs) const { + return !(*this == rhs); + } + + bool operator < (const BsonType & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(BsonType &a, BsonType &b); + +std::ostream& operator<<(std::ostream& out, const BsonType& obj); + +typedef struct _LogicalType__isset { + _LogicalType__isset() : STRING(false), MAP(false), LIST(false), ENUM(false), DECIMAL(false), DATE(false), TIME(false), TIMESTAMP(false), INTEGER(false), UNKNOWN(false), JSON(false), BSON(false), UUID(false) {} + bool STRING :1; + bool MAP :1; + bool LIST :1; + bool ENUM :1; + bool DECIMAL :1; + bool DATE :1; + bool TIME :1; + bool TIMESTAMP :1; + bool INTEGER :1; + bool UNKNOWN :1; + bool JSON :1; + bool BSON :1; + bool UUID :1; +} _LogicalType__isset; + +/** + * LogicalType annotations to replace ConvertedType. + * + * To maintain compatibility, implementations using LogicalType for a + * SchemaElement must also set the corresponding ConvertedType (if any) + * from the following table. + */ +class LogicalType : public virtual ::apache::thrift::TBase { + public: + + LogicalType(const LogicalType&) noexcept; + LogicalType& operator=(const LogicalType&) noexcept; + LogicalType() noexcept { + } + + virtual ~LogicalType() noexcept; + StringType STRING; + MapType MAP; + ListType LIST; + EnumType ENUM; + DecimalType DECIMAL; + DateType DATE; + TimeType TIME; + TimestampType TIMESTAMP; + IntType INTEGER; + NullType UNKNOWN; + JsonType JSON; + BsonType BSON; + UUIDType UUID; + + _LogicalType__isset __isset; + + void __set_STRING(const StringType& val); + + void __set_MAP(const MapType& val); + + void __set_LIST(const ListType& val); + + void __set_ENUM(const EnumType& val); + + void __set_DECIMAL(const DecimalType& val); + + void __set_DATE(const DateType& val); + + void __set_TIME(const TimeType& val); + + void __set_TIMESTAMP(const TimestampType& val); + + void __set_INTEGER(const IntType& val); + + void __set_UNKNOWN(const NullType& val); + + void __set_JSON(const JsonType& val); + + void __set_BSON(const BsonType& val); + + void __set_UUID(const UUIDType& val); + + bool operator == (const LogicalType & rhs) const + { + if (__isset.STRING != rhs.__isset.STRING) + return false; + else if (__isset.STRING && !(STRING == rhs.STRING)) + return false; + if (__isset.MAP != rhs.__isset.MAP) + return false; + else if (__isset.MAP && !(MAP == rhs.MAP)) + return false; + if (__isset.LIST != rhs.__isset.LIST) + return false; + else if (__isset.LIST && !(LIST == rhs.LIST)) + return false; + if (__isset.ENUM != rhs.__isset.ENUM) + return false; + else if (__isset.ENUM && !(ENUM == rhs.ENUM)) + return false; + if (__isset.DECIMAL != rhs.__isset.DECIMAL) + return false; + else if (__isset.DECIMAL && !(DECIMAL == rhs.DECIMAL)) + return false; + if (__isset.DATE != rhs.__isset.DATE) + return false; + else if (__isset.DATE && !(DATE == rhs.DATE)) + return false; + if (__isset.TIME != rhs.__isset.TIME) + return false; + else if (__isset.TIME && !(TIME == rhs.TIME)) + return false; + if (__isset.TIMESTAMP != rhs.__isset.TIMESTAMP) + return false; + else if (__isset.TIMESTAMP && !(TIMESTAMP == rhs.TIMESTAMP)) + return false; + if (__isset.INTEGER != rhs.__isset.INTEGER) + return false; + else if (__isset.INTEGER && !(INTEGER == rhs.INTEGER)) + return false; + if (__isset.UNKNOWN != rhs.__isset.UNKNOWN) + return false; + else if (__isset.UNKNOWN && !(UNKNOWN == rhs.UNKNOWN)) + return false; + if (__isset.JSON != rhs.__isset.JSON) + return false; + else if (__isset.JSON && !(JSON == rhs.JSON)) + return false; + if (__isset.BSON != rhs.__isset.BSON) + return false; + else if (__isset.BSON && !(BSON == rhs.BSON)) + return false; + if (__isset.UUID != rhs.__isset.UUID) + return false; + else if (__isset.UUID && !(UUID == rhs.UUID)) + return false; + return true; + } + bool operator != (const LogicalType &rhs) const { + return !(*this == rhs); + } + + bool operator < (const LogicalType & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(LogicalType &a, LogicalType &b); + +std::ostream& operator<<(std::ostream& out, const LogicalType& obj); + +typedef struct _SchemaElement__isset { + _SchemaElement__isset() : type(false), type_length(false), repetition_type(false), num_children(false), converted_type(false), scale(false), precision(false), field_id(false), logicalType(false) {} + bool type :1; + bool type_length :1; + bool repetition_type :1; + bool num_children :1; + bool converted_type :1; + bool scale :1; + bool precision :1; + bool field_id :1; + bool logicalType :1; +} _SchemaElement__isset; + +/** + * Represents a element inside a schema definition. + * - if it is a group (inner node) then type is undefined and num_children is defined + * - if it is a primitive type (leaf) then type is defined and num_children is undefined + * the nodes are listed in depth first traversal order. + */ +class SchemaElement : public virtual ::apache::thrift::TBase { + public: + + SchemaElement(const SchemaElement&); + SchemaElement& operator=(const SchemaElement&); + SchemaElement() noexcept + : type(static_cast(0)), + type_length(0), + repetition_type(static_cast(0)), + name(), + num_children(0), + converted_type(static_cast(0)), + scale(0), + precision(0), + field_id(0) { + } + + virtual ~SchemaElement() noexcept; + /** + * Data type for this field. Not set if the current element is a non-leaf node + * + * @see Type + */ + Type::type type; + /** + * If type is FIXED_LEN_BYTE_ARRAY, this is the byte length of the values. + * Otherwise, if specified, this is the maximum bit length to store any of the values. + * (e.g. a low cardinality INT col could have this set to 3). Note that this is + * in the schema, and therefore fixed for the entire file. + */ + int32_t type_length; + /** + * repetition of the field. The root of the schema does not have a repetition_type. + * All other nodes must have one + * + * @see FieldRepetitionType + */ + FieldRepetitionType::type repetition_type; + /** + * Name of the field in the schema + */ + std::string name; + /** + * Nested fields. Since thrift does not support nested fields, + * the nesting is flattened to a single list by a depth-first traversal. + * The children count is used to construct the nested relationship. + * This field is not set when the element is a primitive type + */ + int32_t num_children; + /** + * DEPRECATED: When the schema is the result of a conversion from another model. + * Used to record the original type to help with cross conversion. + * + * This is superseded by logicalType. + * + * @see ConvertedType + */ + ConvertedType::type converted_type; + /** + * DEPRECATED: Used when this column contains decimal data. + * See the DECIMAL converted type for more details. + * + * This is superseded by using the DecimalType annotation in logicalType. + */ + int32_t scale; + int32_t precision; + /** + * When the original schema supports field ids, this will save the + * original field id in the parquet schema + */ + int32_t field_id; + /** + * The logical type of this SchemaElement + * + * LogicalType replaces ConvertedType, but ConvertedType is still required + * for some logical types to ensure forward-compatibility in format v1. + */ + LogicalType logicalType; + + _SchemaElement__isset __isset; + + void __set_type(const Type::type val); + + void __set_type_length(const int32_t val); + + void __set_repetition_type(const FieldRepetitionType::type val); + + void __set_name(const std::string& val); + + void __set_num_children(const int32_t val); + + void __set_converted_type(const ConvertedType::type val); + + void __set_scale(const int32_t val); + + void __set_precision(const int32_t val); + + void __set_field_id(const int32_t val); + + void __set_logicalType(const LogicalType& val); + + bool operator == (const SchemaElement & rhs) const + { + if (__isset.type != rhs.__isset.type) + return false; + else if (__isset.type && !(type == rhs.type)) + return false; + if (__isset.type_length != rhs.__isset.type_length) + return false; + else if (__isset.type_length && !(type_length == rhs.type_length)) + return false; + if (__isset.repetition_type != rhs.__isset.repetition_type) + return false; + else if (__isset.repetition_type && !(repetition_type == rhs.repetition_type)) + return false; + if (!(name == rhs.name)) + return false; + if (__isset.num_children != rhs.__isset.num_children) + return false; + else if (__isset.num_children && !(num_children == rhs.num_children)) + return false; + if (__isset.converted_type != rhs.__isset.converted_type) + return false; + else if (__isset.converted_type && !(converted_type == rhs.converted_type)) + return false; + if (__isset.scale != rhs.__isset.scale) + return false; + else if (__isset.scale && !(scale == rhs.scale)) + return false; + if (__isset.precision != rhs.__isset.precision) + return false; + else if (__isset.precision && !(precision == rhs.precision)) + return false; + if (__isset.field_id != rhs.__isset.field_id) + return false; + else if (__isset.field_id && !(field_id == rhs.field_id)) + return false; + if (__isset.logicalType != rhs.__isset.logicalType) + return false; + else if (__isset.logicalType && !(logicalType == rhs.logicalType)) + return false; + return true; + } + bool operator != (const SchemaElement &rhs) const { + return !(*this == rhs); + } + + bool operator < (const SchemaElement & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(SchemaElement &a, SchemaElement &b); + +std::ostream& operator<<(std::ostream& out, const SchemaElement& obj); + +typedef struct _DataPageHeader__isset { + _DataPageHeader__isset() : statistics(false) {} + bool statistics :1; +} _DataPageHeader__isset; + +/** + * Data page header + */ +class DataPageHeader : public virtual ::apache::thrift::TBase { + public: + + DataPageHeader(const DataPageHeader&); + DataPageHeader& operator=(const DataPageHeader&); + DataPageHeader() noexcept + : num_values(0), + encoding(static_cast(0)), + definition_level_encoding(static_cast(0)), + repetition_level_encoding(static_cast(0)) { + } + + virtual ~DataPageHeader() noexcept; + /** + * Number of values, including NULLs, in this data page. * + */ + int32_t num_values; + /** + * Encoding used for this data page * + * + * @see Encoding + */ + Encoding::type encoding; + /** + * Encoding used for definition levels * + * + * @see Encoding + */ + Encoding::type definition_level_encoding; + /** + * Encoding used for repetition levels * + * + * @see Encoding + */ + Encoding::type repetition_level_encoding; + /** + * Optional statistics for the data in this page* + */ + Statistics statistics; + + _DataPageHeader__isset __isset; + + void __set_num_values(const int32_t val); + + void __set_encoding(const Encoding::type val); + + void __set_definition_level_encoding(const Encoding::type val); + + void __set_repetition_level_encoding(const Encoding::type val); + + void __set_statistics(const Statistics& val); + + bool operator == (const DataPageHeader & rhs) const + { + if (!(num_values == rhs.num_values)) + return false; + if (!(encoding == rhs.encoding)) + return false; + if (!(definition_level_encoding == rhs.definition_level_encoding)) + return false; + if (!(repetition_level_encoding == rhs.repetition_level_encoding)) + return false; + if (__isset.statistics != rhs.__isset.statistics) + return false; + else if (__isset.statistics && !(statistics == rhs.statistics)) + return false; + return true; + } + bool operator != (const DataPageHeader &rhs) const { + return !(*this == rhs); + } + + bool operator < (const DataPageHeader & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(DataPageHeader &a, DataPageHeader &b); + +std::ostream& operator<<(std::ostream& out, const DataPageHeader& obj); + + +class IndexPageHeader : public virtual ::apache::thrift::TBase { + public: + + IndexPageHeader(const IndexPageHeader&) noexcept; + IndexPageHeader& operator=(const IndexPageHeader&) noexcept; + IndexPageHeader() noexcept { + } + + virtual ~IndexPageHeader() noexcept; + + bool operator == (const IndexPageHeader & /* rhs */) const + { + return true; + } + bool operator != (const IndexPageHeader &rhs) const { + return !(*this == rhs); + } + + bool operator < (const IndexPageHeader & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(IndexPageHeader &a, IndexPageHeader &b); + +std::ostream& operator<<(std::ostream& out, const IndexPageHeader& obj); + +typedef struct _DictionaryPageHeader__isset { + _DictionaryPageHeader__isset() : is_sorted(false) {} + bool is_sorted :1; +} _DictionaryPageHeader__isset; + +/** + * The dictionary page must be placed at the first position of the column chunk + * if it is partly or completely dictionary encoded. At most one dictionary page + * can be placed in a column chunk. + * + */ +class DictionaryPageHeader : public virtual ::apache::thrift::TBase { + public: + + DictionaryPageHeader(const DictionaryPageHeader&) noexcept; + DictionaryPageHeader& operator=(const DictionaryPageHeader&) noexcept; + DictionaryPageHeader() noexcept + : num_values(0), + encoding(static_cast(0)), + is_sorted(0) { + } + + virtual ~DictionaryPageHeader() noexcept; + /** + * Number of values in the dictionary * + */ + int32_t num_values; + /** + * Encoding using this dictionary page * + * + * @see Encoding + */ + Encoding::type encoding; + /** + * If true, the entries in the dictionary are sorted in ascending order * + */ + bool is_sorted; + + _DictionaryPageHeader__isset __isset; + + void __set_num_values(const int32_t val); + + void __set_encoding(const Encoding::type val); + + void __set_is_sorted(const bool val); + + bool operator == (const DictionaryPageHeader & rhs) const + { + if (!(num_values == rhs.num_values)) + return false; + if (!(encoding == rhs.encoding)) + return false; + if (__isset.is_sorted != rhs.__isset.is_sorted) + return false; + else if (__isset.is_sorted && !(is_sorted == rhs.is_sorted)) + return false; + return true; + } + bool operator != (const DictionaryPageHeader &rhs) const { + return !(*this == rhs); + } + + bool operator < (const DictionaryPageHeader & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(DictionaryPageHeader &a, DictionaryPageHeader &b); + +std::ostream& operator<<(std::ostream& out, const DictionaryPageHeader& obj); + +typedef struct _DataPageHeaderV2__isset { + _DataPageHeaderV2__isset() : is_compressed(true), statistics(false) {} + bool is_compressed :1; + bool statistics :1; +} _DataPageHeaderV2__isset; + +/** + * New page format allowing reading levels without decompressing the data + * Repetition and definition levels are uncompressed + * The remaining section containing the data is compressed if is_compressed is true + * + */ +class DataPageHeaderV2 : public virtual ::apache::thrift::TBase { + public: + + DataPageHeaderV2(const DataPageHeaderV2&); + DataPageHeaderV2& operator=(const DataPageHeaderV2&); + DataPageHeaderV2() noexcept + : num_values(0), + num_nulls(0), + num_rows(0), + encoding(static_cast(0)), + definition_levels_byte_length(0), + repetition_levels_byte_length(0), + is_compressed(true) { + } + + virtual ~DataPageHeaderV2() noexcept; + /** + * Number of values, including NULLs, in this data page. * + */ + int32_t num_values; + /** + * Number of NULL values, in this data page. + * Number of non-null = num_values - num_nulls which is also the number of values in the data section * + */ + int32_t num_nulls; + /** + * Number of rows in this data page. which means pages change on record boundaries (r = 0) * + */ + int32_t num_rows; + /** + * Encoding used for data in this page * + * + * @see Encoding + */ + Encoding::type encoding; + /** + * length of the definition levels + */ + int32_t definition_levels_byte_length; + /** + * length of the repetition levels + */ + int32_t repetition_levels_byte_length; + /** + * whether the values are compressed. + * Which means the section of the page between + * definition_levels_byte_length + repetition_levels_byte_length + 1 and compressed_page_size (included) + * is compressed with the compression_codec. + * If missing it is considered compressed + */ + bool is_compressed; + /** + * optional statistics for the data in this page * + */ + Statistics statistics; + + _DataPageHeaderV2__isset __isset; + + void __set_num_values(const int32_t val); + + void __set_num_nulls(const int32_t val); + + void __set_num_rows(const int32_t val); + + void __set_encoding(const Encoding::type val); + + void __set_definition_levels_byte_length(const int32_t val); + + void __set_repetition_levels_byte_length(const int32_t val); + + void __set_is_compressed(const bool val); + + void __set_statistics(const Statistics& val); + + bool operator == (const DataPageHeaderV2 & rhs) const + { + if (!(num_values == rhs.num_values)) + return false; + if (!(num_nulls == rhs.num_nulls)) + return false; + if (!(num_rows == rhs.num_rows)) + return false; + if (!(encoding == rhs.encoding)) + return false; + if (!(definition_levels_byte_length == rhs.definition_levels_byte_length)) + return false; + if (!(repetition_levels_byte_length == rhs.repetition_levels_byte_length)) + return false; + if (__isset.is_compressed != rhs.__isset.is_compressed) + return false; + else if (__isset.is_compressed && !(is_compressed == rhs.is_compressed)) + return false; + if (__isset.statistics != rhs.__isset.statistics) + return false; + else if (__isset.statistics && !(statistics == rhs.statistics)) + return false; + return true; + } + bool operator != (const DataPageHeaderV2 &rhs) const { + return !(*this == rhs); + } + + bool operator < (const DataPageHeaderV2 & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(DataPageHeaderV2 &a, DataPageHeaderV2 &b); + +std::ostream& operator<<(std::ostream& out, const DataPageHeaderV2& obj); + + +/** + * Block-based algorithm type annotation. * + */ +class SplitBlockAlgorithm : public virtual ::apache::thrift::TBase { + public: + + SplitBlockAlgorithm(const SplitBlockAlgorithm&) noexcept; + SplitBlockAlgorithm& operator=(const SplitBlockAlgorithm&) noexcept; + SplitBlockAlgorithm() noexcept { + } + + virtual ~SplitBlockAlgorithm() noexcept; + + bool operator == (const SplitBlockAlgorithm & /* rhs */) const + { + return true; + } + bool operator != (const SplitBlockAlgorithm &rhs) const { + return !(*this == rhs); + } + + bool operator < (const SplitBlockAlgorithm & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(SplitBlockAlgorithm &a, SplitBlockAlgorithm &b); + +std::ostream& operator<<(std::ostream& out, const SplitBlockAlgorithm& obj); + +typedef struct _BloomFilterAlgorithm__isset { + _BloomFilterAlgorithm__isset() : BLOCK(false) {} + bool BLOCK :1; +} _BloomFilterAlgorithm__isset; + +/** + * The algorithm used in Bloom filter. * + */ +class BloomFilterAlgorithm : public virtual ::apache::thrift::TBase { + public: + + BloomFilterAlgorithm(const BloomFilterAlgorithm&) noexcept; + BloomFilterAlgorithm& operator=(const BloomFilterAlgorithm&) noexcept; + BloomFilterAlgorithm() noexcept { + } + + virtual ~BloomFilterAlgorithm() noexcept; + /** + * Block-based Bloom filter. * + */ + SplitBlockAlgorithm BLOCK; + + _BloomFilterAlgorithm__isset __isset; + + void __set_BLOCK(const SplitBlockAlgorithm& val); + + bool operator == (const BloomFilterAlgorithm & rhs) const + { + if (__isset.BLOCK != rhs.__isset.BLOCK) + return false; + else if (__isset.BLOCK && !(BLOCK == rhs.BLOCK)) + return false; + return true; + } + bool operator != (const BloomFilterAlgorithm &rhs) const { + return !(*this == rhs); + } + + bool operator < (const BloomFilterAlgorithm & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(BloomFilterAlgorithm &a, BloomFilterAlgorithm &b); + +std::ostream& operator<<(std::ostream& out, const BloomFilterAlgorithm& obj); + + +/** + * Hash strategy type annotation. xxHash is an extremely fast non-cryptographic hash + * algorithm. It uses 64 bits version of xxHash. + * + */ +class XxHash : public virtual ::apache::thrift::TBase { + public: + + XxHash(const XxHash&) noexcept; + XxHash& operator=(const XxHash&) noexcept; + XxHash() noexcept { + } + + virtual ~XxHash() noexcept; + + bool operator == (const XxHash & /* rhs */) const + { + return true; + } + bool operator != (const XxHash &rhs) const { + return !(*this == rhs); + } + + bool operator < (const XxHash & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(XxHash &a, XxHash &b); + +std::ostream& operator<<(std::ostream& out, const XxHash& obj); + +typedef struct _BloomFilterHash__isset { + _BloomFilterHash__isset() : XXHASH(false) {} + bool XXHASH :1; +} _BloomFilterHash__isset; + +/** + * The hash function used in Bloom filter. This function takes the hash of a column value + * using plain encoding. + * + */ +class BloomFilterHash : public virtual ::apache::thrift::TBase { + public: + + BloomFilterHash(const BloomFilterHash&) noexcept; + BloomFilterHash& operator=(const BloomFilterHash&) noexcept; + BloomFilterHash() noexcept { + } + + virtual ~BloomFilterHash() noexcept; + /** + * xxHash Strategy. * + */ + XxHash XXHASH; + + _BloomFilterHash__isset __isset; + + void __set_XXHASH(const XxHash& val); + + bool operator == (const BloomFilterHash & rhs) const + { + if (__isset.XXHASH != rhs.__isset.XXHASH) + return false; + else if (__isset.XXHASH && !(XXHASH == rhs.XXHASH)) + return false; + return true; + } + bool operator != (const BloomFilterHash &rhs) const { + return !(*this == rhs); + } + + bool operator < (const BloomFilterHash & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(BloomFilterHash &a, BloomFilterHash &b); + +std::ostream& operator<<(std::ostream& out, const BloomFilterHash& obj); + + +/** + * The compression used in the Bloom filter. + * + */ +class Uncompressed : public virtual ::apache::thrift::TBase { + public: + + Uncompressed(const Uncompressed&) noexcept; + Uncompressed& operator=(const Uncompressed&) noexcept; + Uncompressed() noexcept { + } + + virtual ~Uncompressed() noexcept; + + bool operator == (const Uncompressed & /* rhs */) const + { + return true; + } + bool operator != (const Uncompressed &rhs) const { + return !(*this == rhs); + } + + bool operator < (const Uncompressed & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(Uncompressed &a, Uncompressed &b); + +std::ostream& operator<<(std::ostream& out, const Uncompressed& obj); + +typedef struct _BloomFilterCompression__isset { + _BloomFilterCompression__isset() : UNCOMPRESSED(false) {} + bool UNCOMPRESSED :1; +} _BloomFilterCompression__isset; + +class BloomFilterCompression : public virtual ::apache::thrift::TBase { + public: + + BloomFilterCompression(const BloomFilterCompression&) noexcept; + BloomFilterCompression& operator=(const BloomFilterCompression&) noexcept; + BloomFilterCompression() noexcept { + } + + virtual ~BloomFilterCompression() noexcept; + Uncompressed UNCOMPRESSED; + + _BloomFilterCompression__isset __isset; + + void __set_UNCOMPRESSED(const Uncompressed& val); + + bool operator == (const BloomFilterCompression & rhs) const + { + if (__isset.UNCOMPRESSED != rhs.__isset.UNCOMPRESSED) + return false; + else if (__isset.UNCOMPRESSED && !(UNCOMPRESSED == rhs.UNCOMPRESSED)) + return false; + return true; + } + bool operator != (const BloomFilterCompression &rhs) const { + return !(*this == rhs); + } + + bool operator < (const BloomFilterCompression & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(BloomFilterCompression &a, BloomFilterCompression &b); + +std::ostream& operator<<(std::ostream& out, const BloomFilterCompression& obj); + + +/** + * Bloom filter header is stored at beginning of Bloom filter data of each column + * and followed by its bitset. + * + */ +class BloomFilterHeader : public virtual ::apache::thrift::TBase { + public: + + BloomFilterHeader(const BloomFilterHeader&) noexcept; + BloomFilterHeader& operator=(const BloomFilterHeader&) noexcept; + BloomFilterHeader() noexcept + : numBytes(0) { + } + + virtual ~BloomFilterHeader() noexcept; + /** + * The size of bitset in bytes * + */ + int32_t numBytes; + /** + * The algorithm for setting bits. * + */ + BloomFilterAlgorithm algorithm; + /** + * The hash function used for Bloom filter. * + */ + BloomFilterHash hash; + /** + * The compression used in the Bloom filter * + */ + BloomFilterCompression compression; + + void __set_numBytes(const int32_t val); + + void __set_algorithm(const BloomFilterAlgorithm& val); + + void __set_hash(const BloomFilterHash& val); + + void __set_compression(const BloomFilterCompression& val); + + bool operator == (const BloomFilterHeader & rhs) const + { + if (!(numBytes == rhs.numBytes)) + return false; + if (!(algorithm == rhs.algorithm)) + return false; + if (!(hash == rhs.hash)) + return false; + if (!(compression == rhs.compression)) + return false; + return true; + } + bool operator != (const BloomFilterHeader &rhs) const { + return !(*this == rhs); + } + + bool operator < (const BloomFilterHeader & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(BloomFilterHeader &a, BloomFilterHeader &b); + +std::ostream& operator<<(std::ostream& out, const BloomFilterHeader& obj); + +typedef struct _PageHeader__isset { + _PageHeader__isset() : crc(false), data_page_header(false), index_page_header(false), dictionary_page_header(false), data_page_header_v2(false) {} + bool crc :1; + bool data_page_header :1; + bool index_page_header :1; + bool dictionary_page_header :1; + bool data_page_header_v2 :1; +} _PageHeader__isset; + +class PageHeader : public virtual ::apache::thrift::TBase { + public: + + PageHeader(const PageHeader&); + PageHeader& operator=(const PageHeader&); + PageHeader() noexcept + : type(static_cast(0)), + uncompressed_page_size(0), + compressed_page_size(0), + crc(0) { + } + + virtual ~PageHeader() noexcept; + /** + * the type of the page: indicates which of the *_header fields is set * + * + * @see PageType + */ + PageType::type type; + /** + * Uncompressed page size in bytes (not including this header) * + */ + int32_t uncompressed_page_size; + /** + * Compressed (and potentially encrypted) page size in bytes, not including this header * + */ + int32_t compressed_page_size; + /** + * The 32-bit CRC checksum for the page, to be be calculated as follows: + * + * - The standard CRC32 algorithm is used (with polynomial 0x04C11DB7, + * the same as in e.g. GZip). + * - All page types can have a CRC (v1 and v2 data pages, dictionary pages, + * etc.). + * - The CRC is computed on the serialization binary representation of the page + * (as written to disk), excluding the page header. For example, for v1 + * data pages, the CRC is computed on the concatenation of repetition levels, + * definition levels and column values (optionally compressed, optionally + * encrypted). + * - The CRC computation therefore takes place after any compression + * and encryption steps, if any. + * + * If enabled, this allows for disabling checksumming in HDFS if only a few + * pages need to be read. + */ + int32_t crc; + DataPageHeader data_page_header; + IndexPageHeader index_page_header; + DictionaryPageHeader dictionary_page_header; + DataPageHeaderV2 data_page_header_v2; + + _PageHeader__isset __isset; + + void __set_type(const PageType::type val); + + void __set_uncompressed_page_size(const int32_t val); + + void __set_compressed_page_size(const int32_t val); + + void __set_crc(const int32_t val); + + void __set_data_page_header(const DataPageHeader& val); + + void __set_index_page_header(const IndexPageHeader& val); + + void __set_dictionary_page_header(const DictionaryPageHeader& val); + + void __set_data_page_header_v2(const DataPageHeaderV2& val); + + bool operator == (const PageHeader & rhs) const + { + if (!(type == rhs.type)) + return false; + if (!(uncompressed_page_size == rhs.uncompressed_page_size)) + return false; + if (!(compressed_page_size == rhs.compressed_page_size)) + return false; + if (__isset.crc != rhs.__isset.crc) + return false; + else if (__isset.crc && !(crc == rhs.crc)) + return false; + if (__isset.data_page_header != rhs.__isset.data_page_header) + return false; + else if (__isset.data_page_header && !(data_page_header == rhs.data_page_header)) + return false; + if (__isset.index_page_header != rhs.__isset.index_page_header) + return false; + else if (__isset.index_page_header && !(index_page_header == rhs.index_page_header)) + return false; + if (__isset.dictionary_page_header != rhs.__isset.dictionary_page_header) + return false; + else if (__isset.dictionary_page_header && !(dictionary_page_header == rhs.dictionary_page_header)) + return false; + if (__isset.data_page_header_v2 != rhs.__isset.data_page_header_v2) + return false; + else if (__isset.data_page_header_v2 && !(data_page_header_v2 == rhs.data_page_header_v2)) + return false; + return true; + } + bool operator != (const PageHeader &rhs) const { + return !(*this == rhs); + } + + bool operator < (const PageHeader & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(PageHeader &a, PageHeader &b); + +std::ostream& operator<<(std::ostream& out, const PageHeader& obj); + +typedef struct _KeyValue__isset { + _KeyValue__isset() : value(false) {} + bool value :1; +} _KeyValue__isset; + +/** + * Wrapper struct to store key values + */ +class KeyValue : public virtual ::apache::thrift::TBase { + public: + + KeyValue(const KeyValue&); + KeyValue& operator=(const KeyValue&); + KeyValue() noexcept + : key(), + value() { + } + + virtual ~KeyValue() noexcept; + std::string key; + std::string value; + + _KeyValue__isset __isset; + + void __set_key(const std::string& val); + + void __set_value(const std::string& val); + + bool operator == (const KeyValue & rhs) const + { + if (!(key == rhs.key)) + return false; + if (__isset.value != rhs.__isset.value) + return false; + else if (__isset.value && !(value == rhs.value)) + return false; + return true; + } + bool operator != (const KeyValue &rhs) const { + return !(*this == rhs); + } + + bool operator < (const KeyValue & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(KeyValue &a, KeyValue &b); + +std::ostream& operator<<(std::ostream& out, const KeyValue& obj); + + +/** + * Wrapper struct to specify sort order + */ +class SortingColumn : public virtual ::apache::thrift::TBase { + public: + + SortingColumn(const SortingColumn&) noexcept; + SortingColumn& operator=(const SortingColumn&) noexcept; + SortingColumn() noexcept + : column_idx(0), + descending(0), + nulls_first(0) { + } + + virtual ~SortingColumn() noexcept; + /** + * The column index (in this row group) * + */ + int32_t column_idx; + /** + * If true, indicates this column is sorted in descending order. * + */ + bool descending; + /** + * If true, nulls will come before non-null values, otherwise, + * nulls go at the end. + */ + bool nulls_first; + + void __set_column_idx(const int32_t val); + + void __set_descending(const bool val); + + void __set_nulls_first(const bool val); + + bool operator == (const SortingColumn & rhs) const + { + if (!(column_idx == rhs.column_idx)) + return false; + if (!(descending == rhs.descending)) + return false; + if (!(nulls_first == rhs.nulls_first)) + return false; + return true; + } + bool operator != (const SortingColumn &rhs) const { + return !(*this == rhs); + } + + bool operator < (const SortingColumn & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(SortingColumn &a, SortingColumn &b); + +std::ostream& operator<<(std::ostream& out, const SortingColumn& obj); + + +/** + * statistics of a given page type and encoding + */ +class PageEncodingStats : public virtual ::apache::thrift::TBase { + public: + + PageEncodingStats(const PageEncodingStats&) noexcept; + PageEncodingStats& operator=(const PageEncodingStats&) noexcept; + PageEncodingStats() noexcept + : page_type(static_cast(0)), + encoding(static_cast(0)), + count(0) { + } + + virtual ~PageEncodingStats() noexcept; + /** + * the page type (data/dic/...) * + * + * @see PageType + */ + PageType::type page_type; + /** + * encoding of the page * + * + * @see Encoding + */ + Encoding::type encoding; + /** + * number of pages of this type with this encoding * + */ + int32_t count; + + void __set_page_type(const PageType::type val); + + void __set_encoding(const Encoding::type val); + + void __set_count(const int32_t val); + + bool operator == (const PageEncodingStats & rhs) const + { + if (!(page_type == rhs.page_type)) + return false; + if (!(encoding == rhs.encoding)) + return false; + if (!(count == rhs.count)) + return false; + return true; + } + bool operator != (const PageEncodingStats &rhs) const { + return !(*this == rhs); + } + + bool operator < (const PageEncodingStats & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(PageEncodingStats &a, PageEncodingStats &b); + +std::ostream& operator<<(std::ostream& out, const PageEncodingStats& obj); + +typedef struct _ColumnMetaData__isset { + _ColumnMetaData__isset() : key_value_metadata(false), index_page_offset(false), dictionary_page_offset(false), statistics(false), encoding_stats(false), bloom_filter_offset(false) {} + bool key_value_metadata :1; + bool index_page_offset :1; + bool dictionary_page_offset :1; + bool statistics :1; + bool encoding_stats :1; + bool bloom_filter_offset :1; +} _ColumnMetaData__isset; + +/** + * Description for column metadata + */ +class ColumnMetaData : public virtual ::apache::thrift::TBase { + public: + + ColumnMetaData(const ColumnMetaData&); + ColumnMetaData& operator=(const ColumnMetaData&); + ColumnMetaData() noexcept + : type(static_cast(0)), + codec(static_cast(0)), + num_values(0), + total_uncompressed_size(0), + total_compressed_size(0), + data_page_offset(0), + index_page_offset(0), + dictionary_page_offset(0), + bloom_filter_offset(0) { + } + + virtual ~ColumnMetaData() noexcept; + /** + * Type of this column * + * + * @see Type + */ + Type::type type; + /** + * Set of all encodings used for this column. The purpose is to validate + * whether we can decode those pages. * + */ + std::vector encodings; + /** + * Path in schema * + */ + std::vector path_in_schema; + /** + * Compression codec * + * + * @see CompressionCodec + */ + CompressionCodec::type codec; + /** + * Number of values in this column * + */ + int64_t num_values; + /** + * total byte size of all uncompressed pages in this column chunk (including the headers) * + */ + int64_t total_uncompressed_size; + /** + * total byte size of all compressed, and potentially encrypted, pages + * in this column chunk (including the headers) * + */ + int64_t total_compressed_size; + /** + * Optional key/value metadata * + */ + std::vector key_value_metadata; + /** + * Byte offset from beginning of file to first data page * + */ + int64_t data_page_offset; + /** + * Byte offset from beginning of file to root index page * + */ + int64_t index_page_offset; + /** + * Byte offset from the beginning of file to first (only) dictionary page * + */ + int64_t dictionary_page_offset; + /** + * optional statistics for this column chunk + */ + Statistics statistics; + /** + * Set of all encodings used for pages in this column chunk. + * This information can be used to determine if all data pages are + * dictionary encoded for example * + */ + std::vector encoding_stats; + /** + * Byte offset from beginning of file to Bloom filter data. * + */ + int64_t bloom_filter_offset; + + _ColumnMetaData__isset __isset; + + void __set_type(const Type::type val); + + void __set_encodings(const std::vector & val); + + void __set_path_in_schema(const std::vector & val); + + void __set_codec(const CompressionCodec::type val); + + void __set_num_values(const int64_t val); + + void __set_total_uncompressed_size(const int64_t val); + + void __set_total_compressed_size(const int64_t val); + + void __set_key_value_metadata(const std::vector & val); + + void __set_data_page_offset(const int64_t val); + + void __set_index_page_offset(const int64_t val); + + void __set_dictionary_page_offset(const int64_t val); + + void __set_statistics(const Statistics& val); + + void __set_encoding_stats(const std::vector & val); + + void __set_bloom_filter_offset(const int64_t val); + + bool operator == (const ColumnMetaData & rhs) const + { + if (!(type == rhs.type)) + return false; + if (!(encodings == rhs.encodings)) + return false; + if (!(path_in_schema == rhs.path_in_schema)) + return false; + if (!(codec == rhs.codec)) + return false; + if (!(num_values == rhs.num_values)) + return false; + if (!(total_uncompressed_size == rhs.total_uncompressed_size)) + return false; + if (!(total_compressed_size == rhs.total_compressed_size)) + return false; + if (__isset.key_value_metadata != rhs.__isset.key_value_metadata) + return false; + else if (__isset.key_value_metadata && !(key_value_metadata == rhs.key_value_metadata)) + return false; + if (!(data_page_offset == rhs.data_page_offset)) + return false; + if (__isset.index_page_offset != rhs.__isset.index_page_offset) + return false; + else if (__isset.index_page_offset && !(index_page_offset == rhs.index_page_offset)) + return false; + if (__isset.dictionary_page_offset != rhs.__isset.dictionary_page_offset) + return false; + else if (__isset.dictionary_page_offset && !(dictionary_page_offset == rhs.dictionary_page_offset)) + return false; + if (__isset.statistics != rhs.__isset.statistics) + return false; + else if (__isset.statistics && !(statistics == rhs.statistics)) + return false; + if (__isset.encoding_stats != rhs.__isset.encoding_stats) + return false; + else if (__isset.encoding_stats && !(encoding_stats == rhs.encoding_stats)) + return false; + if (__isset.bloom_filter_offset != rhs.__isset.bloom_filter_offset) + return false; + else if (__isset.bloom_filter_offset && !(bloom_filter_offset == rhs.bloom_filter_offset)) + return false; + return true; + } + bool operator != (const ColumnMetaData &rhs) const { + return !(*this == rhs); + } + + bool operator < (const ColumnMetaData & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(ColumnMetaData &a, ColumnMetaData &b); + +std::ostream& operator<<(std::ostream& out, const ColumnMetaData& obj); + + +class EncryptionWithFooterKey : public virtual ::apache::thrift::TBase { + public: + + EncryptionWithFooterKey(const EncryptionWithFooterKey&) noexcept; + EncryptionWithFooterKey& operator=(const EncryptionWithFooterKey&) noexcept; + EncryptionWithFooterKey() noexcept { + } + + virtual ~EncryptionWithFooterKey() noexcept; + + bool operator == (const EncryptionWithFooterKey & /* rhs */) const + { + return true; + } + bool operator != (const EncryptionWithFooterKey &rhs) const { + return !(*this == rhs); + } + + bool operator < (const EncryptionWithFooterKey & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(EncryptionWithFooterKey &a, EncryptionWithFooterKey &b); + +std::ostream& operator<<(std::ostream& out, const EncryptionWithFooterKey& obj); + +typedef struct _EncryptionWithColumnKey__isset { + _EncryptionWithColumnKey__isset() : key_metadata(false) {} + bool key_metadata :1; +} _EncryptionWithColumnKey__isset; + +class EncryptionWithColumnKey : public virtual ::apache::thrift::TBase { + public: + + EncryptionWithColumnKey(const EncryptionWithColumnKey&); + EncryptionWithColumnKey& operator=(const EncryptionWithColumnKey&); + EncryptionWithColumnKey() noexcept + : key_metadata() { + } + + virtual ~EncryptionWithColumnKey() noexcept; + /** + * Column path in schema * + */ + std::vector path_in_schema; + /** + * Retrieval metadata of column encryption key * + */ + std::string key_metadata; + + _EncryptionWithColumnKey__isset __isset; + + void __set_path_in_schema(const std::vector & val); + + void __set_key_metadata(const std::string& val); + + bool operator == (const EncryptionWithColumnKey & rhs) const + { + if (!(path_in_schema == rhs.path_in_schema)) + return false; + if (__isset.key_metadata != rhs.__isset.key_metadata) + return false; + else if (__isset.key_metadata && !(key_metadata == rhs.key_metadata)) + return false; + return true; + } + bool operator != (const EncryptionWithColumnKey &rhs) const { + return !(*this == rhs); + } + + bool operator < (const EncryptionWithColumnKey & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(EncryptionWithColumnKey &a, EncryptionWithColumnKey &b); + +std::ostream& operator<<(std::ostream& out, const EncryptionWithColumnKey& obj); + +typedef struct _ColumnCryptoMetaData__isset { + _ColumnCryptoMetaData__isset() : ENCRYPTION_WITH_FOOTER_KEY(false), ENCRYPTION_WITH_COLUMN_KEY(false) {} + bool ENCRYPTION_WITH_FOOTER_KEY :1; + bool ENCRYPTION_WITH_COLUMN_KEY :1; +} _ColumnCryptoMetaData__isset; + +class ColumnCryptoMetaData : public virtual ::apache::thrift::TBase { + public: + + ColumnCryptoMetaData(const ColumnCryptoMetaData&); + ColumnCryptoMetaData& operator=(const ColumnCryptoMetaData&); + ColumnCryptoMetaData() noexcept { + } + + virtual ~ColumnCryptoMetaData() noexcept; + EncryptionWithFooterKey ENCRYPTION_WITH_FOOTER_KEY; + EncryptionWithColumnKey ENCRYPTION_WITH_COLUMN_KEY; + + _ColumnCryptoMetaData__isset __isset; + + void __set_ENCRYPTION_WITH_FOOTER_KEY(const EncryptionWithFooterKey& val); + + void __set_ENCRYPTION_WITH_COLUMN_KEY(const EncryptionWithColumnKey& val); + + bool operator == (const ColumnCryptoMetaData & rhs) const + { + if (__isset.ENCRYPTION_WITH_FOOTER_KEY != rhs.__isset.ENCRYPTION_WITH_FOOTER_KEY) + return false; + else if (__isset.ENCRYPTION_WITH_FOOTER_KEY && !(ENCRYPTION_WITH_FOOTER_KEY == rhs.ENCRYPTION_WITH_FOOTER_KEY)) + return false; + if (__isset.ENCRYPTION_WITH_COLUMN_KEY != rhs.__isset.ENCRYPTION_WITH_COLUMN_KEY) + return false; + else if (__isset.ENCRYPTION_WITH_COLUMN_KEY && !(ENCRYPTION_WITH_COLUMN_KEY == rhs.ENCRYPTION_WITH_COLUMN_KEY)) + return false; + return true; + } + bool operator != (const ColumnCryptoMetaData &rhs) const { + return !(*this == rhs); + } + + bool operator < (const ColumnCryptoMetaData & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(ColumnCryptoMetaData &a, ColumnCryptoMetaData &b); + +std::ostream& operator<<(std::ostream& out, const ColumnCryptoMetaData& obj); + +typedef struct _ColumnChunk__isset { + _ColumnChunk__isset() : file_path(false), meta_data(false), offset_index_offset(false), offset_index_length(false), column_index_offset(false), column_index_length(false), crypto_metadata(false), encrypted_column_metadata(false) {} + bool file_path :1; + bool meta_data :1; + bool offset_index_offset :1; + bool offset_index_length :1; + bool column_index_offset :1; + bool column_index_length :1; + bool crypto_metadata :1; + bool encrypted_column_metadata :1; +} _ColumnChunk__isset; + +class ColumnChunk : public virtual ::apache::thrift::TBase { + public: + + ColumnChunk(const ColumnChunk&); + ColumnChunk& operator=(const ColumnChunk&); + ColumnChunk() noexcept + : file_path(), + file_offset(0), + offset_index_offset(0), + offset_index_length(0), + column_index_offset(0), + column_index_length(0), + encrypted_column_metadata() { + } + + virtual ~ColumnChunk() noexcept; + /** + * File where column data is stored. If not set, assumed to be same file as + * metadata. This path is relative to the current file. + * + */ + std::string file_path; + /** + * Byte offset in file_path to the ColumnMetaData * + */ + int64_t file_offset; + /** + * Column metadata for this chunk. This is the same content as what is at + * file_path/file_offset. Having it here has it replicated in the file + * metadata. + * + */ + ColumnMetaData meta_data; + /** + * File offset of ColumnChunk's OffsetIndex * + */ + int64_t offset_index_offset; + /** + * Size of ColumnChunk's OffsetIndex, in bytes * + */ + int32_t offset_index_length; + /** + * File offset of ColumnChunk's ColumnIndex * + */ + int64_t column_index_offset; + /** + * Size of ColumnChunk's ColumnIndex, in bytes * + */ + int32_t column_index_length; + /** + * Crypto metadata of encrypted columns * + */ + ColumnCryptoMetaData crypto_metadata; + /** + * Encrypted column metadata for this chunk * + */ + std::string encrypted_column_metadata; + + _ColumnChunk__isset __isset; + + void __set_file_path(const std::string& val); + + void __set_file_offset(const int64_t val); + + void __set_meta_data(const ColumnMetaData& val); + + void __set_offset_index_offset(const int64_t val); + + void __set_offset_index_length(const int32_t val); + + void __set_column_index_offset(const int64_t val); + + void __set_column_index_length(const int32_t val); + + void __set_crypto_metadata(const ColumnCryptoMetaData& val); + + void __set_encrypted_column_metadata(const std::string& val); + + bool operator == (const ColumnChunk & rhs) const + { + if (__isset.file_path != rhs.__isset.file_path) + return false; + else if (__isset.file_path && !(file_path == rhs.file_path)) + return false; + if (!(file_offset == rhs.file_offset)) + return false; + if (__isset.meta_data != rhs.__isset.meta_data) + return false; + else if (__isset.meta_data && !(meta_data == rhs.meta_data)) + return false; + if (__isset.offset_index_offset != rhs.__isset.offset_index_offset) + return false; + else if (__isset.offset_index_offset && !(offset_index_offset == rhs.offset_index_offset)) + return false; + if (__isset.offset_index_length != rhs.__isset.offset_index_length) + return false; + else if (__isset.offset_index_length && !(offset_index_length == rhs.offset_index_length)) + return false; + if (__isset.column_index_offset != rhs.__isset.column_index_offset) + return false; + else if (__isset.column_index_offset && !(column_index_offset == rhs.column_index_offset)) + return false; + if (__isset.column_index_length != rhs.__isset.column_index_length) + return false; + else if (__isset.column_index_length && !(column_index_length == rhs.column_index_length)) + return false; + if (__isset.crypto_metadata != rhs.__isset.crypto_metadata) + return false; + else if (__isset.crypto_metadata && !(crypto_metadata == rhs.crypto_metadata)) + return false; + if (__isset.encrypted_column_metadata != rhs.__isset.encrypted_column_metadata) + return false; + else if (__isset.encrypted_column_metadata && !(encrypted_column_metadata == rhs.encrypted_column_metadata)) + return false; + return true; + } + bool operator != (const ColumnChunk &rhs) const { + return !(*this == rhs); + } + + bool operator < (const ColumnChunk & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(ColumnChunk &a, ColumnChunk &b); + +std::ostream& operator<<(std::ostream& out, const ColumnChunk& obj); + +typedef struct _RowGroup__isset { + _RowGroup__isset() : sorting_columns(false), file_offset(false), total_compressed_size(false), ordinal(false) {} + bool sorting_columns :1; + bool file_offset :1; + bool total_compressed_size :1; + bool ordinal :1; +} _RowGroup__isset; + +class RowGroup : public virtual ::apache::thrift::TBase { + public: + + RowGroup(const RowGroup&); + RowGroup& operator=(const RowGroup&); + RowGroup() noexcept + : total_byte_size(0), + num_rows(0), + file_offset(0), + total_compressed_size(0), + ordinal(0) { + } + + virtual ~RowGroup() noexcept; + /** + * Metadata for each column chunk in this row group. + * This list must have the same order as the SchemaElement list in FileMetaData. + * + */ + std::vector columns; + /** + * Total byte size of all the uncompressed column data in this row group * + */ + int64_t total_byte_size; + /** + * Number of rows in this row group * + */ + int64_t num_rows; + /** + * If set, specifies a sort ordering of the rows in this RowGroup. + * The sorting columns can be a subset of all the columns. + */ + std::vector sorting_columns; + /** + * Byte offset from beginning of file to first page (data or dictionary) + * in this row group * + */ + int64_t file_offset; + /** + * Total byte size of all compressed (and potentially encrypted) column data + * in this row group * + */ + int64_t total_compressed_size; + /** + * Row group ordinal in the file * + */ + int16_t ordinal; + + _RowGroup__isset __isset; + + void __set_columns(const std::vector & val); + + void __set_total_byte_size(const int64_t val); + + void __set_num_rows(const int64_t val); + + void __set_sorting_columns(const std::vector & val); + + void __set_file_offset(const int64_t val); + + void __set_total_compressed_size(const int64_t val); + + void __set_ordinal(const int16_t val); + + bool operator == (const RowGroup & rhs) const + { + if (!(columns == rhs.columns)) + return false; + if (!(total_byte_size == rhs.total_byte_size)) + return false; + if (!(num_rows == rhs.num_rows)) + return false; + if (__isset.sorting_columns != rhs.__isset.sorting_columns) + return false; + else if (__isset.sorting_columns && !(sorting_columns == rhs.sorting_columns)) + return false; + if (__isset.file_offset != rhs.__isset.file_offset) + return false; + else if (__isset.file_offset && !(file_offset == rhs.file_offset)) + return false; + if (__isset.total_compressed_size != rhs.__isset.total_compressed_size) + return false; + else if (__isset.total_compressed_size && !(total_compressed_size == rhs.total_compressed_size)) + return false; + if (__isset.ordinal != rhs.__isset.ordinal) + return false; + else if (__isset.ordinal && !(ordinal == rhs.ordinal)) + return false; + return true; + } + bool operator != (const RowGroup &rhs) const { + return !(*this == rhs); + } + + bool operator < (const RowGroup & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(RowGroup &a, RowGroup &b); + +std::ostream& operator<<(std::ostream& out, const RowGroup& obj); + + +/** + * Empty struct to signal the order defined by the physical or logical type + */ +class TypeDefinedOrder : public virtual ::apache::thrift::TBase { + public: + + TypeDefinedOrder(const TypeDefinedOrder&) noexcept; + TypeDefinedOrder& operator=(const TypeDefinedOrder&) noexcept; + TypeDefinedOrder() noexcept { + } + + virtual ~TypeDefinedOrder() noexcept; + + bool operator == (const TypeDefinedOrder & /* rhs */) const + { + return true; + } + bool operator != (const TypeDefinedOrder &rhs) const { + return !(*this == rhs); + } + + bool operator < (const TypeDefinedOrder & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(TypeDefinedOrder &a, TypeDefinedOrder &b); + +std::ostream& operator<<(std::ostream& out, const TypeDefinedOrder& obj); + +typedef struct _ColumnOrder__isset { + _ColumnOrder__isset() : TYPE_ORDER(false) {} + bool TYPE_ORDER :1; +} _ColumnOrder__isset; + +/** + * Union to specify the order used for the min_value and max_value fields for a + * column. This union takes the role of an enhanced enum that allows rich + * elements (which will be needed for a collation-based ordering in the future). + * + * Possible values are: + * * TypeDefinedOrder - the column uses the order defined by its logical or + * physical type (if there is no logical type). + * + * If the reader does not support the value of this union, min and max stats + * for this column should be ignored. + */ +class ColumnOrder : public virtual ::apache::thrift::TBase { + public: + + ColumnOrder(const ColumnOrder&) noexcept; + ColumnOrder& operator=(const ColumnOrder&) noexcept; + ColumnOrder() noexcept { + } + + virtual ~ColumnOrder() noexcept; + /** + * The sort orders for logical types are: + * UTF8 - unsigned byte-wise comparison + * INT8 - signed comparison + * INT16 - signed comparison + * INT32 - signed comparison + * INT64 - signed comparison + * UINT8 - unsigned comparison + * UINT16 - unsigned comparison + * UINT32 - unsigned comparison + * UINT64 - unsigned comparison + * DECIMAL - signed comparison of the represented value + * DATE - signed comparison + * TIME_MILLIS - signed comparison + * TIME_MICROS - signed comparison + * TIMESTAMP_MILLIS - signed comparison + * TIMESTAMP_MICROS - signed comparison + * INTERVAL - unsigned comparison + * JSON - unsigned byte-wise comparison + * BSON - unsigned byte-wise comparison + * ENUM - unsigned byte-wise comparison + * LIST - undefined + * MAP - undefined + * + * In the absence of logical types, the sort order is determined by the physical type: + * BOOLEAN - false, true + * INT32 - signed comparison + * INT64 - signed comparison + * INT96 (only used for legacy timestamps) - undefined + * FLOAT - signed comparison of the represented value (*) + * DOUBLE - signed comparison of the represented value (*) + * BYTE_ARRAY - unsigned byte-wise comparison + * FIXED_LEN_BYTE_ARRAY - unsigned byte-wise comparison + * + * (*) Because the sorting order is not specified properly for floating + * point values (relations vs. total ordering) the following + * compatibility rules should be applied when reading statistics: + * - If the min is a NaN, it should be ignored. + * - If the max is a NaN, it should be ignored. + * - If the min is +0, the row group may contain -0 values as well. + * - If the max is -0, the row group may contain +0 values as well. + * - When looking for NaN values, min and max should be ignored. + * + * When writing statistics the following rules should be followed: + * - NaNs should not be written to min or max statistics fields. + * - If the computed max value is zero (whether negative or positive), + * `+0.0` should be written into the max statistics field. + * - If the computed min value is zero (whether negative or positive), + * `-0.0` should be written into the min statistics field. + */ + TypeDefinedOrder TYPE_ORDER; + + _ColumnOrder__isset __isset; + + void __set_TYPE_ORDER(const TypeDefinedOrder& val); + + bool operator == (const ColumnOrder & rhs) const + { + if (__isset.TYPE_ORDER != rhs.__isset.TYPE_ORDER) + return false; + else if (__isset.TYPE_ORDER && !(TYPE_ORDER == rhs.TYPE_ORDER)) + return false; + return true; + } + bool operator != (const ColumnOrder &rhs) const { + return !(*this == rhs); + } + + bool operator < (const ColumnOrder & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(ColumnOrder &a, ColumnOrder &b); + +std::ostream& operator<<(std::ostream& out, const ColumnOrder& obj); + + +class PageLocation : public virtual ::apache::thrift::TBase { + public: + + PageLocation(const PageLocation&) noexcept; + PageLocation& operator=(const PageLocation&) noexcept; + PageLocation() noexcept + : offset(0), + compressed_page_size(0), + first_row_index(0) { + } + + virtual ~PageLocation() noexcept; + /** + * Offset of the page in the file * + */ + int64_t offset; + /** + * Size of the page, including header. Sum of compressed_page_size and header + * length + */ + int32_t compressed_page_size; + /** + * Index within the RowGroup of the first row of the page; this means pages + * change on record boundaries (r = 0). + */ + int64_t first_row_index; + + void __set_offset(const int64_t val); + + void __set_compressed_page_size(const int32_t val); + + void __set_first_row_index(const int64_t val); + + bool operator == (const PageLocation & rhs) const + { + if (!(offset == rhs.offset)) + return false; + if (!(compressed_page_size == rhs.compressed_page_size)) + return false; + if (!(first_row_index == rhs.first_row_index)) + return false; + return true; + } + bool operator != (const PageLocation &rhs) const { + return !(*this == rhs); + } + + bool operator < (const PageLocation & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(PageLocation &a, PageLocation &b); + +std::ostream& operator<<(std::ostream& out, const PageLocation& obj); + + +class OffsetIndex : public virtual ::apache::thrift::TBase { + public: + + OffsetIndex(const OffsetIndex&); + OffsetIndex& operator=(const OffsetIndex&); + OffsetIndex() noexcept { + } + + virtual ~OffsetIndex() noexcept; + /** + * PageLocations, ordered by increasing PageLocation.offset. It is required + * that page_locations[i].first_row_index < page_locations[i+1].first_row_index. + */ + std::vector page_locations; + + void __set_page_locations(const std::vector & val); + + bool operator == (const OffsetIndex & rhs) const + { + if (!(page_locations == rhs.page_locations)) + return false; + return true; + } + bool operator != (const OffsetIndex &rhs) const { + return !(*this == rhs); + } + + bool operator < (const OffsetIndex & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(OffsetIndex &a, OffsetIndex &b); + +std::ostream& operator<<(std::ostream& out, const OffsetIndex& obj); + +typedef struct _ColumnIndex__isset { + _ColumnIndex__isset() : null_counts(false) {} + bool null_counts :1; +} _ColumnIndex__isset; + +/** + * Description for ColumnIndex. + * Each [i] refers to the page at OffsetIndex.page_locations[i] + */ +class ColumnIndex : public virtual ::apache::thrift::TBase { + public: + + ColumnIndex(const ColumnIndex&); + ColumnIndex& operator=(const ColumnIndex&); + ColumnIndex() noexcept + : boundary_order(static_cast(0)) { + } + + virtual ~ColumnIndex() noexcept; + /** + * A list of Boolean values to determine the validity of the corresponding + * min and max values. If true, a page contains only null values, and writers + * have to set the corresponding entries in min_values and max_values to + * byte[0], so that all lists have the same length. If false, the + * corresponding entries in min_values and max_values must be valid. + */ + std::vector null_pages; + /** + * Two lists containing lower and upper bounds for the values of each page + * determined by the ColumnOrder of the column. These may be the actual + * minimum and maximum values found on a page, but can also be (more compact) + * values that do not exist on a page. For example, instead of storing ""Blart + * Versenwald III", a writer may set min_values[i]="B", max_values[i]="C". + * Such more compact values must still be valid values within the column's + * logical type. Readers must make sure that list entries are populated before + * using them by inspecting null_pages. + */ + std::vector min_values; + std::vector max_values; + /** + * Stores whether both min_values and max_values are ordered and if so, in + * which direction. This allows readers to perform binary searches in both + * lists. Readers cannot assume that max_values[i] <= min_values[i+1], even + * if the lists are ordered. + * + * @see BoundaryOrder + */ + BoundaryOrder::type boundary_order; + /** + * A list containing the number of null values for each page * + */ + std::vector null_counts; + + _ColumnIndex__isset __isset; + + void __set_null_pages(const std::vector & val); + + void __set_min_values(const std::vector & val); + + void __set_max_values(const std::vector & val); + + void __set_boundary_order(const BoundaryOrder::type val); + + void __set_null_counts(const std::vector & val); + + bool operator == (const ColumnIndex & rhs) const + { + if (!(null_pages == rhs.null_pages)) + return false; + if (!(min_values == rhs.min_values)) + return false; + if (!(max_values == rhs.max_values)) + return false; + if (!(boundary_order == rhs.boundary_order)) + return false; + if (__isset.null_counts != rhs.__isset.null_counts) + return false; + else if (__isset.null_counts && !(null_counts == rhs.null_counts)) + return false; + return true; + } + bool operator != (const ColumnIndex &rhs) const { + return !(*this == rhs); + } + + bool operator < (const ColumnIndex & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(ColumnIndex &a, ColumnIndex &b); + +std::ostream& operator<<(std::ostream& out, const ColumnIndex& obj); + +typedef struct _AesGcmV1__isset { + _AesGcmV1__isset() : aad_prefix(false), aad_file_unique(false), supply_aad_prefix(false) {} + bool aad_prefix :1; + bool aad_file_unique :1; + bool supply_aad_prefix :1; +} _AesGcmV1__isset; + +class AesGcmV1 : public virtual ::apache::thrift::TBase { + public: + + AesGcmV1(const AesGcmV1&); + AesGcmV1& operator=(const AesGcmV1&); + AesGcmV1() noexcept + : aad_prefix(), + aad_file_unique(), + supply_aad_prefix(0) { + } + + virtual ~AesGcmV1() noexcept; + /** + * AAD prefix * + */ + std::string aad_prefix; + /** + * Unique file identifier part of AAD suffix * + */ + std::string aad_file_unique; + /** + * In files encrypted with AAD prefix without storing it, + * readers must supply the prefix * + */ + bool supply_aad_prefix; + + _AesGcmV1__isset __isset; + + void __set_aad_prefix(const std::string& val); + + void __set_aad_file_unique(const std::string& val); + + void __set_supply_aad_prefix(const bool val); + + bool operator == (const AesGcmV1 & rhs) const + { + if (__isset.aad_prefix != rhs.__isset.aad_prefix) + return false; + else if (__isset.aad_prefix && !(aad_prefix == rhs.aad_prefix)) + return false; + if (__isset.aad_file_unique != rhs.__isset.aad_file_unique) + return false; + else if (__isset.aad_file_unique && !(aad_file_unique == rhs.aad_file_unique)) + return false; + if (__isset.supply_aad_prefix != rhs.__isset.supply_aad_prefix) + return false; + else if (__isset.supply_aad_prefix && !(supply_aad_prefix == rhs.supply_aad_prefix)) + return false; + return true; + } + bool operator != (const AesGcmV1 &rhs) const { + return !(*this == rhs); + } + + bool operator < (const AesGcmV1 & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(AesGcmV1 &a, AesGcmV1 &b); + +std::ostream& operator<<(std::ostream& out, const AesGcmV1& obj); + +typedef struct _AesGcmCtrV1__isset { + _AesGcmCtrV1__isset() : aad_prefix(false), aad_file_unique(false), supply_aad_prefix(false) {} + bool aad_prefix :1; + bool aad_file_unique :1; + bool supply_aad_prefix :1; +} _AesGcmCtrV1__isset; + +class AesGcmCtrV1 : public virtual ::apache::thrift::TBase { + public: + + AesGcmCtrV1(const AesGcmCtrV1&); + AesGcmCtrV1& operator=(const AesGcmCtrV1&); + AesGcmCtrV1() noexcept + : aad_prefix(), + aad_file_unique(), + supply_aad_prefix(0) { + } + + virtual ~AesGcmCtrV1() noexcept; + /** + * AAD prefix * + */ + std::string aad_prefix; + /** + * Unique file identifier part of AAD suffix * + */ + std::string aad_file_unique; + /** + * In files encrypted with AAD prefix without storing it, + * readers must supply the prefix * + */ + bool supply_aad_prefix; + + _AesGcmCtrV1__isset __isset; + + void __set_aad_prefix(const std::string& val); + + void __set_aad_file_unique(const std::string& val); + + void __set_supply_aad_prefix(const bool val); + + bool operator == (const AesGcmCtrV1 & rhs) const + { + if (__isset.aad_prefix != rhs.__isset.aad_prefix) + return false; + else if (__isset.aad_prefix && !(aad_prefix == rhs.aad_prefix)) + return false; + if (__isset.aad_file_unique != rhs.__isset.aad_file_unique) + return false; + else if (__isset.aad_file_unique && !(aad_file_unique == rhs.aad_file_unique)) + return false; + if (__isset.supply_aad_prefix != rhs.__isset.supply_aad_prefix) + return false; + else if (__isset.supply_aad_prefix && !(supply_aad_prefix == rhs.supply_aad_prefix)) + return false; + return true; + } + bool operator != (const AesGcmCtrV1 &rhs) const { + return !(*this == rhs); + } + + bool operator < (const AesGcmCtrV1 & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(AesGcmCtrV1 &a, AesGcmCtrV1 &b); + +std::ostream& operator<<(std::ostream& out, const AesGcmCtrV1& obj); + +typedef struct _EncryptionAlgorithm__isset { + _EncryptionAlgorithm__isset() : AES_GCM_V1(false), AES_GCM_CTR_V1(false) {} + bool AES_GCM_V1 :1; + bool AES_GCM_CTR_V1 :1; +} _EncryptionAlgorithm__isset; + +class EncryptionAlgorithm : public virtual ::apache::thrift::TBase { + public: + + EncryptionAlgorithm(const EncryptionAlgorithm&); + EncryptionAlgorithm& operator=(const EncryptionAlgorithm&); + EncryptionAlgorithm() noexcept { + } + + virtual ~EncryptionAlgorithm() noexcept; + AesGcmV1 AES_GCM_V1; + AesGcmCtrV1 AES_GCM_CTR_V1; + + _EncryptionAlgorithm__isset __isset; + + void __set_AES_GCM_V1(const AesGcmV1& val); + + void __set_AES_GCM_CTR_V1(const AesGcmCtrV1& val); + + bool operator == (const EncryptionAlgorithm & rhs) const + { + if (__isset.AES_GCM_V1 != rhs.__isset.AES_GCM_V1) + return false; + else if (__isset.AES_GCM_V1 && !(AES_GCM_V1 == rhs.AES_GCM_V1)) + return false; + if (__isset.AES_GCM_CTR_V1 != rhs.__isset.AES_GCM_CTR_V1) + return false; + else if (__isset.AES_GCM_CTR_V1 && !(AES_GCM_CTR_V1 == rhs.AES_GCM_CTR_V1)) + return false; + return true; + } + bool operator != (const EncryptionAlgorithm &rhs) const { + return !(*this == rhs); + } + + bool operator < (const EncryptionAlgorithm & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(EncryptionAlgorithm &a, EncryptionAlgorithm &b); + +std::ostream& operator<<(std::ostream& out, const EncryptionAlgorithm& obj); + +typedef struct _FileMetaData__isset { + _FileMetaData__isset() : key_value_metadata(false), created_by(false), column_orders(false), encryption_algorithm(false), footer_signing_key_metadata(false) {} + bool key_value_metadata :1; + bool created_by :1; + bool column_orders :1; + bool encryption_algorithm :1; + bool footer_signing_key_metadata :1; +} _FileMetaData__isset; + +/** + * Description for file metadata + */ +class FileMetaData : public virtual ::apache::thrift::TBase { + public: + + FileMetaData(const FileMetaData&); + FileMetaData& operator=(const FileMetaData&); + FileMetaData() noexcept + : version(0), + num_rows(0), + created_by(), + footer_signing_key_metadata() { + } + + virtual ~FileMetaData() noexcept; + /** + * Version of this file * + */ + int32_t version; + /** + * Parquet schema for this file. This schema contains metadata for all the columns. + * The schema is represented as a tree with a single root. The nodes of the tree + * are flattened to a list by doing a depth-first traversal. + * The column metadata contains the path in the schema for that column which can be + * used to map columns to nodes in the schema. + * The first element is the root * + */ + std::vector schema; + /** + * Number of rows in this file * + */ + int64_t num_rows; + /** + * Row groups in this file * + */ + std::vector row_groups; + /** + * Optional key/value metadata * + */ + std::vector key_value_metadata; + /** + * String for application that wrote this file. This should be in the format + * version (build ). + * e.g. impala version 1.0 (build 6cf94d29b2b7115df4de2c06e2ab4326d721eb55) + * + */ + std::string created_by; + /** + * Sort order used for the min_value and max_value fields in the Statistics + * objects and the min_values and max_values fields in the ColumnIndex + * objects of each column in this file. Sort orders are listed in the order + * matching the columns in the schema. The indexes are not necessary the same + * though, because only leaf nodes of the schema are represented in the list + * of sort orders. + * + * Without column_orders, the meaning of the min_value and max_value fields + * in the Statistics object and the ColumnIndex object is undefined. To ensure + * well-defined behaviour, if these fields are written to a Parquet file, + * column_orders must be written as well. + * + * The obsolete min and max fields in the Statistics object are always sorted + * by signed comparison regardless of column_orders. + */ + std::vector column_orders; + /** + * Encryption algorithm. This field is set only in encrypted files + * with plaintext footer. Files with encrypted footer store algorithm id + * in FileCryptoMetaData structure. + */ + EncryptionAlgorithm encryption_algorithm; + /** + * Retrieval metadata of key used for signing the footer. + * Used only in encrypted files with plaintext footer. + */ + std::string footer_signing_key_metadata; + + _FileMetaData__isset __isset; + + void __set_version(const int32_t val); + + void __set_schema(const std::vector & val); + + void __set_num_rows(const int64_t val); + + void __set_row_groups(const std::vector & val); + + void __set_key_value_metadata(const std::vector & val); + + void __set_created_by(const std::string& val); + + void __set_column_orders(const std::vector & val); + + void __set_encryption_algorithm(const EncryptionAlgorithm& val); + + void __set_footer_signing_key_metadata(const std::string& val); + + bool operator == (const FileMetaData & rhs) const + { + if (!(version == rhs.version)) + return false; + if (!(schema == rhs.schema)) + return false; + if (!(num_rows == rhs.num_rows)) + return false; + if (!(row_groups == rhs.row_groups)) + return false; + if (__isset.key_value_metadata != rhs.__isset.key_value_metadata) + return false; + else if (__isset.key_value_metadata && !(key_value_metadata == rhs.key_value_metadata)) + return false; + if (__isset.created_by != rhs.__isset.created_by) + return false; + else if (__isset.created_by && !(created_by == rhs.created_by)) + return false; + if (__isset.column_orders != rhs.__isset.column_orders) + return false; + else if (__isset.column_orders && !(column_orders == rhs.column_orders)) + return false; + if (__isset.encryption_algorithm != rhs.__isset.encryption_algorithm) + return false; + else if (__isset.encryption_algorithm && !(encryption_algorithm == rhs.encryption_algorithm)) + return false; + if (__isset.footer_signing_key_metadata != rhs.__isset.footer_signing_key_metadata) + return false; + else if (__isset.footer_signing_key_metadata && !(footer_signing_key_metadata == rhs.footer_signing_key_metadata)) + return false; + return true; + } + bool operator != (const FileMetaData &rhs) const { + return !(*this == rhs); + } + + bool operator < (const FileMetaData & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(FileMetaData &a, FileMetaData &b); + +std::ostream& operator<<(std::ostream& out, const FileMetaData& obj); + +typedef struct _FileCryptoMetaData__isset { + _FileCryptoMetaData__isset() : key_metadata(false) {} + bool key_metadata :1; +} _FileCryptoMetaData__isset; + +/** + * Crypto metadata for files with encrypted footer * + */ +class FileCryptoMetaData : public virtual ::apache::thrift::TBase { + public: + + FileCryptoMetaData(const FileCryptoMetaData&); + FileCryptoMetaData& operator=(const FileCryptoMetaData&); + FileCryptoMetaData() noexcept + : key_metadata() { + } + + virtual ~FileCryptoMetaData() noexcept; + /** + * Encryption algorithm. This field is only used for files + * with encrypted footer. Files with plaintext footer store algorithm id + * inside footer (FileMetaData structure). + */ + EncryptionAlgorithm encryption_algorithm; + /** + * Retrieval metadata of key used for encryption of footer, + * and (possibly) columns * + */ + std::string key_metadata; + + _FileCryptoMetaData__isset __isset; + + void __set_encryption_algorithm(const EncryptionAlgorithm& val); + + void __set_key_metadata(const std::string& val); + + bool operator == (const FileCryptoMetaData & rhs) const + { + if (!(encryption_algorithm == rhs.encryption_algorithm)) + return false; + if (__isset.key_metadata != rhs.__isset.key_metadata) + return false; + else if (__isset.key_metadata && !(key_metadata == rhs.key_metadata)) + return false; + return true; + } + bool operator != (const FileCryptoMetaData &rhs) const { + return !(*this == rhs); + } + + bool operator < (const FileCryptoMetaData & ) const; + + uint32_t read(::apache::thrift::protocol::TProtocol* iprot) override; + uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const override; + + virtual void printTo(std::ostream& out) const; +}; + +void swap(FileCryptoMetaData &a, FileCryptoMetaData &b); + +std::ostream& operator<<(std::ostream& out, const FileCryptoMetaData& obj); + +}} // namespace +#endif +#pragma clang diagnostic pop + diff --git a/src/Processors/tests/gtest_native_parquet_reader.cpp b/src/Processors/tests/gtest_native_parquet_reader.cpp index 930504c3348..51c16032569 100644 --- a/src/Processors/tests/gtest_native_parquet_reader.cpp +++ b/src/Processors/tests/gtest_native_parquet_reader.cpp @@ -3,11 +3,14 @@ #include #include #include +#include #include #include #include #include +#include #include +#include #include #include @@ -17,17 +20,199 @@ using namespace DB; + +void headBlock(const DB::Block & block, size_t count) +{ + std::cout << "============Block============" << std::endl; + std::cout << block.dumpStructure() << std::endl; + // print header + for (const auto & name : block.getNames()) + std::cout << name << "\t"; + std::cout << std::endl; + + // print rows + for (size_t row = 0; row < std::min(count, block.rows()); ++row) + { + for (size_t column = 0; column < block.columns(); ++column) + { + const auto type = block.getByPosition(column).type; + auto col = block.getByPosition(column).column; + + if (column > 0) + std::cout << "\t"; + DB::WhichDataType which(type); + if (which.isAggregateFunction()) + std::cout << "Nan"; + else if (col->isNullAt(row)) + std::cout << "null"; + else + std::cout << toString((*col)[row]); + } + std::cout << std::endl; + } +} + + +void writeParquet(Chunk&& chunk, const Block& header, const String & path) +{ + WriteBufferFromFile out(path); + FormatSettings formatSettings; + formatSettings.parquet.use_native_reader = false; + formatSettings.parquet.use_custom_encoder = false; + auto parquet_output = std::make_shared(out, header, formatSettings); + + QueryPipelineBuilder builder; + builder.init(Pipe(std::make_shared(header, std::move(chunk)))); + auto pipeline = QueryPipelineBuilder::getPipeline(std::move(builder)); + pipeline.complete(std::move(parquet_output)); + CompletedPipelineExecutor executor(pipeline); + executor.execute(); +} + +std::unique_ptr openParquet(const Block& header, ReadBufferFromFile& in, std::shared_ptr file) +{ + parquet::ArrowReaderProperties arrow_properties; + parquet::ReaderProperties reader_properties(ArrowMemoryPool::instance()); + arrow_properties.set_use_threads(false); + arrow_properties.set_batch_size(DEFAULT_BLOCK_SIZE); + + arrow_properties.set_pre_buffer(true); + auto cache_options = arrow::io::CacheOptions::LazyDefaults(); + cache_options.hole_size_limit = 10000000; + cache_options.range_size_limit = 1l << 40; // reading the whole row group at once is fine + arrow_properties.set_cache_options(cache_options); + std::atomic is_cancelled{0}; + FormatSettings settings; + settings.parquet.max_block_size = DEFAULT_BLOCK_SIZE; + auto arrow_file = asArrowFile(in, settings, is_cancelled, "Parquet", PARQUET_MAGIC_BYTES, /* avoid_buffering */ true); + return std::unique_ptr(new ParquetReader(header.cloneEmpty(), file, arrow_properties, reader_properties, arrow_file, settings)); +} + +void testOldParquet(const Block& header, ReadBufferFromFile& in) +{ + QueryPipelineBuilder builder; + FormatSettings settings; + + auto format = std::make_shared(in, header, settings, 1, 1024*1024); + builder.init(Pipe(format)); + auto pipeline = QueryPipelineBuilder::getPipeline(std::move(builder)); + PullingPipelineExecutor executor(pipeline); + int count [[maybe_unused]] = 0; + while (true) + { + Block block; + executor.pull(block); + count +=block.rows(); + if (block.rows() == 0) + break; + } +// std::cerr << "total count: " << count << std::endl; + +} + +void benchmark(String name, int count, std::function testcase) +{ + std::vector times; + for (int i = 0; i < count; ++i) + { + Stopwatch time; + testcase(); + times.push_back(time.elapsedMicroseconds()); +// std::cerr << "iteration: " << i << " time : " << time.elapsedMilliseconds() << std::endl; + } + std::sort(times.begin(), times.end()); + std::cerr<< name << " Time: " << times[times.size() / 2] << std::endl; +} + TEST(Processors, TestReadInt64) { auto col1 = ColumnInt64::create(); auto col2 = ColumnInt64::create(); auto col3 = ColumnInt64::create(); + auto col4 = ColumnInt64::create(); + auto col5 = ColumnInt64::create(); + auto col6 = ColumnInt64::create(); + auto col7 = ColumnInt64::create(); + + int rows = 10000000; + for (int i = 0; i < rows; ++i) + { + col1->insertValue(std::rand() %100); + col2->insertValue(std::rand()); +// col3->insertValue(std::rand()); +// col4->insertValue(std::rand()); +// col5->insertValue(std::rand()); +// col6->insertValue(std::rand()); + col7->insertValue(std::rand()); + } + Columns columns; + RAND_MAX; + columns.emplace_back(std::move(col1)); + columns.emplace_back(std::move(col2)); +// columns.emplace_back(std::move(col3)); +// columns.emplace_back(std::move(col4)); +// columns.emplace_back(std::move(col5)); +// columns.emplace_back(std::move(col6)); + columns.emplace_back(std::move(col7)); + + Chunk chunk(std::move(columns), rows); + + Block header = {ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "x"), + ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "y1"), +// ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "y2"), +// ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "y3"), +// ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "y4"), +// ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "y5"), + ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "z")}; + const auto *path = "/tmp/test.parquet"; + writeParquet(std::move(chunk), header, path); + + auto old_test [[maybe_unused]] = [&]() + { + ReadBufferFromFile in(path); + testOldParquet(header, in); + }; + + auto new_test = [&]() + { + ReadBufferFromFile in(path); + auto reader = openParquet(header, in, std::make_shared(path)); + reader->addFilter("x", std::make_shared( 0, 10)); + int count [[maybe_unused]] = 0; + while (auto block = reader->read()) + { + count += block.rows(); + if (block.rows() == 0) + break; + } +// std::cerr << "total count: " << count << std::endl; + }; + std::cerr << "start benchmark \n"; + benchmark("arrow", 21, old_test); + benchmark("native", 21, new_test); +} + + +TEST(Processors, TestReadNullableInt64) +{ + auto type = makeNullable(std::make_shared()); + auto col1 = type->createColumn(); + auto col2 = type->createColumn(); + auto col3 = type->createColumn(); int rows = 500000; for (int i = 0; i < rows; ++i) { - col1->insertValue(i); - col2->insertValue(std::rand()); - col3->insertValue(std::rand()); + if (i % 9 != 0) + { + col1->insert(i); + col2->insert(std::rand()); + } + else + { + col1->insertDefault(); + col2->insertDefault(); + } + col3->insert(std::rand()); } Columns columns; columns.emplace_back(std::move(col1)); @@ -35,51 +220,94 @@ TEST(Processors, TestReadInt64) columns.emplace_back(std::move(col3)); Chunk chunk(std::move(columns), rows); - Block header = {ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "x"), - ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "y"), - ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "z")}; - auto source = std::make_shared(header, std::move(chunk)); - WriteBufferFromFile out("/tmp/test.parquet"); - FormatSettings formatSettings; - auto parquet_output = std::make_shared(out, header, formatSettings); + Block header = {ColumnWithTypeAndName(type->createColumn(), type, "x"), + ColumnWithTypeAndName(type->createColumn(), type, "y"), + ColumnWithTypeAndName(type->createColumn(), type, "z")}; + auto path = "/tmp/test.parquet"; + writeParquet(std::move(chunk), header, path); - QueryPipelineBuilder builder; - builder.init(Pipe(source)); - auto pipeline = QueryPipelineBuilder::getPipeline(std::move(builder)); - pipeline.complete(std::move(parquet_output)); - CompletedPipelineExecutor executor(pipeline); - executor.execute(); - - parquet::ArrowReaderProperties arrow_properties; - parquet::ReaderProperties reader_properties(ArrowMemoryPool::instance()); - arrow_properties.set_use_threads(false); - arrow_properties.set_batch_size(8192); - - arrow_properties.set_pre_buffer(true); - auto cache_options = arrow::io::CacheOptions::LazyDefaults(); - cache_options.hole_size_limit = 10000000; - cache_options.range_size_limit = 1l << 40; // reading the whole row group at once is fine - arrow_properties.set_cache_options(cache_options); - out.close(); - ReadBufferFromFile in("/tmp/test.parquet"); - std::cerr << in.getFileSize() << std::endl; - std::atomic is_cancelled{0}; - FormatSettings settings; - settings.parquet.max_block_size = 8192; - auto arrow_file = asArrowFile(in, settings, is_cancelled, "Parquet", PARQUET_MAGIC_BYTES, /* avoid_buffering */ true); - - - ParquetReader reader(header.cloneEmpty(), arrow_properties, reader_properties, arrow_file, settings, {0}); - - reader.addFilter("x", std::make_shared( 1000, 2000)); + ReadBufferFromFile in(path); + auto reader = openParquet(header, in, std::make_shared(path)); + reader->addFilter("x", std::make_shared( 1000, 2000)); int count = 0; - while (auto block = reader.read()) + int null_count2 = 0; + while (auto block = reader->read()) { if (block.rows() == 0) break; + auto column2 = block.getByPosition(1).column; + for (size_t i = 0; i < column2->size(); ++i) + { + if (column2->isNullAt(i)) + null_count2++; + } count += block.rows(); } - ASSERT_EQ(count, 1001); - + ASSERT_EQ(count, 890); + ASSERT_EQ(0, null_count2); +} + +TEST(Processors, TestReadNullableFloat) +{ + auto float_type = makeNullable(std::make_shared()); + auto double_type = makeNullable(std::make_shared()); + + auto col1 = float_type->createColumn(); + auto col2 = double_type->createColumn(); + auto col3 = double_type->createColumn(); + int rows = 500000; + for (int i = 0; i < rows; ++i) + { + if (i % 9 != 0) + { + col1->insert(i * 0.1); + col2->insert(std::rand() * 0.1); + } + else + { + col1->insertDefault(); + col2->insertDefault(); + } + col3->insert(std::rand() * 0.1); + } + Columns columns; + columns.emplace_back(std::move(col1)); + columns.emplace_back(std::move(col2)); + columns.emplace_back(std::move(col3)); + Chunk chunk(std::move(columns), rows); + + + Block header = {ColumnWithTypeAndName(float_type->createColumn(), float_type, "x"), + ColumnWithTypeAndName(double_type->createColumn(), double_type, "y"), + ColumnWithTypeAndName(double_type->createColumn(), double_type, "z")}; + headBlock(header.cloneWithColumns(chunk.getColumns()), 20); + auto path = "/tmp/test.parquet"; + writeParquet(std::move(chunk), header, path); + + ReadBufferFromFile in(path); + auto reader = openParquet(header, in, std::make_shared(path)); +// reader->addFilter("x", std::make_shared( 1000, 2000)); + int count = 0; + int null_count2 = 0; + bool first = true; + while (auto block = reader->read()) + { + if (block.rows() == 0) + break; + if (first) + { + headBlock(block, 20); + first = false; + } + auto column2 = block.getByPosition(1).column; + for (size_t i = 0; i < column2->size(); ++i) + { + if (column2->isNullAt(i)) + null_count2++; + } + count += block.rows(); + } + ASSERT_EQ(count, 500000); + ASSERT_EQ(55556, null_count2); } From 6afde4250091d229c6ce76f7802f2621f7059caa Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Sat, 27 Jul 2024 22:19:57 +0800 Subject: [PATCH 08/34] support read string --- .../Formats/Impl/Parquet/ColumnFilter.h | 183 ++++++-- .../Impl/Parquet/SelectiveColumnReader.cpp | 74 ++- .../Impl/Parquet/SelectiveColumnReader.h | 439 +++++++++++++++++- .../tests/gtest_native_parquet_reader.cpp | 133 +++++- 4 files changed, 761 insertions(+), 68 deletions(-) diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h index 2abcc78f0ba..d4ec5c6d4f3 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h @@ -1,21 +1,30 @@ #pragma once #include #include +#include +#include +#include namespace DB { - +namespace ErrorCodes +{ +extern const int NOT_IMPLEMENTED; +extern const int PARQUET_EXCEPTION; +} class RowSet { public: explicit RowSet(size_t max_rows_) : max_rows(max_rows_) { bitset.resize(max_rows, true); } void set(size_t i, bool value) { bitset.set(i, value); } - bool get(size_t i) { return bitset.test(i); } + bool get(size_t i) const { return bitset.test(i); } size_t totalRows() const { return max_rows; } bool none() const { return bitset.none(); } bool all() const { return bitset.all(); } bool any() const { return bitset.any(); } + void setAllTrue() { bitset.resize(max_rows, true); } + void setAllFalse() { bitset.resize(max_rows, false); } private: size_t max_rows = 0; @@ -35,24 +44,42 @@ enum ColumnFilterKind Int64Range, Int64MultiRange, Int64In, + FloatRange, + DoubleRange, + ByteValues }; class ColumnFilter { public: - virtual ~ColumnFilter() { } - virtual ColumnFilterKind kind() { return Unknown; } - virtual bool testNull() { return true; } - virtual bool testNotNull() { return true; } - virtual bool testInt64(Int64) { return true; } - virtual bool testFloat32(Float32) { return true; } - virtual bool testFloat64(Float64) { return true; } - virtual bool testBool(bool) { return true; } - virtual bool testInt64Range(Int64, Int64) { return true; } - virtual bool testFloat32Range(Float32, Float32) { return true; } - virtual bool testFloat64Range(Float64, Float64) { return true; } - virtual void testInt64Values(RowSet& /*row_set*/, size_t /*offset*/, size_t /*len*/, const Int64 * /*data*/) { } + ColumnFilter(ColumnFilterKind kind, bool null_allowed_) : kind_(kind), null_allowed(null_allowed_) { } + virtual ~ColumnFilter() = default; + virtual ColumnFilterKind kind() { return kind_; } + virtual bool testNull() { return null_allowed; } + virtual bool testNotNull() { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testNotNull not implemented"); } + virtual bool testInt64(Int64) { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testInt64 not implemented"); } + virtual bool testFloat32(Float32) { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testFloat32 not implemented"); } + virtual bool testFloat64(Float64) { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testFloat64 not implemented"); } + virtual bool testBool(bool) { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testBool not implemented"); } + virtual bool testString(const String & /*value*/) { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testString not implemented"); } + virtual bool testInt64Range(Int64, Int64) { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testInt64Range not implemented"); } + virtual bool testFloat32Range(Float32, Float32) + { + throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testFloat32Range not implemented"); + } + virtual bool testFloat64Range(Float64, Float64) + { + throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testFloat64Range not implemented"); + } + virtual void testInt64Values(RowSet & /*row_set*/, size_t /*offset*/, size_t /*len*/, const Int64 * /*data*/) + { + throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testInt64Values not implemented"); + } + +protected: + ColumnFilterKind kind_; + bool null_allowed; }; class AlwaysTrueFilter : public ColumnFilter @@ -68,30 +95,128 @@ public: bool testInt64Range(Int64, Int64) override { return true; } bool testFloat32Range(Float32, Float32) override { return true; } bool testFloat64Range(Float64, Float64) override { return true; } + void testInt64Values(RowSet & set, size_t, size_t, const Int64 *) override { set.setAllTrue(); } }; class Int64RangeFilter : public ColumnFilter { public: - explicit Int64RangeFilter(Int64 min_, Int64 max_) : max(max_), min(min_) { } + explicit Int64RangeFilter(const Int64 min_, const Int64 max_, bool null_allowed_) + : ColumnFilter(Int64Range, null_allowed_), max(max_), min(min_), is_single_value(max == min) + { + } ~Int64RangeFilter() override = default; - ColumnFilterKind kind() override { return Int64Range; } - bool testNull() override { return false; } - bool testNotNull() override { return true; } bool testInt64(Int64 int64) override { return int64 >= min && int64 <= max; } - bool testFloat32(Float32 float32) override { return ColumnFilter::testFloat32(float32); } - bool testFloat64(Float64 float64) override { return ColumnFilter::testFloat64(float64); } - bool testBool(bool b) override { return ColumnFilter::testBool(b); } - bool testInt64Range(Int64 int64, Int64 int641) override { return ColumnFilter::testInt64Range(int64, int641); } - bool testFloat32Range(Float32 float32, Float32 float321) override { return ColumnFilter::testFloat32Range(float32, float321); } - bool testFloat64Range(Float64 float64, Float64 float641) override { return ColumnFilter::testFloat64Range(float64, float641); } - void testInt64Values(RowSet& row_set, size_t offset, size_t len, const Int64 * data) override; - - + bool testInt64Range(Int64 lower, Int64 upper) override { return min >= lower && max <= upper; } + void testInt64Values(RowSet & row_set, size_t offset, size_t len, const Int64 * data) override; private: - Int64 max = INT64_MAX; - Int64 min = INT64_MIN; + const Int64 max; + const Int64 min; + bool is_single_value [[maybe_unused]]; +}; +class ByteValuesFilter : public ColumnFilter +{ +public: + ByteValuesFilter(const std::vector & values_, bool null_allowed_) + : ColumnFilter(ByteValues, null_allowed_), values(values_.begin(), values_.end()) + { + std::ranges::for_each(values_, [&](const String & value) { lengths.insert(value.size()); }); + } + + bool testString(const String & value) override + { + return lengths.contains(value.size()) && values.contains(value); + } + +private: + std::unordered_set lengths; + std::unordered_set values; +}; + + +class AbstractRange : public ColumnFilter +{ +public: + bool lowerUnbounded() const { return lower_unbounded; } + + bool lowerExclusive() const { return lower_exclusive; } + + bool upperUnbounded() const { return upper_unbounded; } + + bool upperExclusive() const { return upper_exclusive; } + +protected: + AbstractRange( + bool lower_unbounded_, + bool lower_exclusive_, + bool upper_unbounded_, + bool upper_exclusive_, + bool null_allowed_, + ColumnFilterKind kind) + : ColumnFilter(kind, null_allowed_) + , lower_unbounded(lower_unbounded_) + , lower_exclusive(lower_exclusive_) + , upper_unbounded(upper_unbounded_) + , upper_exclusive(upper_exclusive_) + { + if (!lower_unbounded && !upper_unbounded) + { + throw DB::Exception(ErrorCodes::PARQUET_EXCEPTION, "A range filter must have a lower or upper bound"); + } + } + + const bool lower_unbounded; + const bool lower_exclusive; + const bool upper_unbounded; + const bool upper_exclusive; +}; + +template +class FloatRangeFilter : public AbstractRange +{ +public: + FloatRangeFilter( + const T min_, bool lowerUnbounded, bool lowerExclusive, const T max_, bool upperUnbounded, bool upperExclusive, bool nullAllowed) + : AbstractRange( + lowerUnbounded, + lowerExclusive, + upperUnbounded, + upperExclusive, + nullAllowed, + (std::is_same_v) ? ColumnFilterKind::DoubleRange : ColumnFilterKind::FloatRange) + , min(min_) + , max(max_) + { + } + + bool testFloat32(Float32 value) override { return testFloatingPoint(value); } + bool testFloat64(Float64 value) override { return testFloatingPoint(value); } + +private: + bool testFloatingPoint(T value) const + { + if (std::isnan(value)) + return false; + if (!lower_unbounded) + { + if (value < min) + return false; + if (lower_exclusive && min == value) + return false; + } + if (!upper_unbounded) + { + if (value > max) + return false; + if (upper_exclusive && value == max) + return false; + } + return true; + } + + const T min; + const T max; }; } diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index edd6d3482ac..c4d542d3b96 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -339,7 +339,6 @@ void NumberDictionaryReader::nextIdxBatchIfEmpty(size_t rows_to_read) idx_decoder.GetBatch(state.idx_buffer.data(), static_cast(rows_to_read)); } - template void NumberDictionaryReader::computeRowSet(RowSet & row_set, size_t rows_to_read) { @@ -421,7 +420,7 @@ void NumberDictionaryReader::read(MutableColumnPtr & column, RowSet & plain_decoder->decodeFixedValue(data, row_set, rows_to_read); else { - dict_decoder->decodeFixedValue(data, row_set, rows_to_read); + dict_decoder->decodeFixedValue(dict, data, row_set, rows_to_read); } } @@ -436,7 +435,7 @@ void NumberDictionaryReader::readSpace( if (plain) plain_decoder->decodeFixedValueSpace(data, row_set, null_map, rows_to_read); else - dict_decoder->decodeFixedValueSpace(data, row_set, null_map, rows_to_read); + dict_decoder->decodeFixedValueSpace(dict, data, row_set, null_map, rows_to_read); } template @@ -481,7 +480,7 @@ size_t NumberDictionaryReader::skipValuesInCurrentPage(size_t rows_to_ template void NumberDictionaryReader::createDictDecoder() { - dict_decoder = std::make_unique>(dict, state.idx_buffer, state.remain_rows); + dict_decoder = std::make_unique(state.idx_buffer, state.remain_rows); } template @@ -491,6 +490,7 @@ void NumberDictionaryReader::downgradeToPlain() dict_decoder.reset(); } + size_t OptionalColumnReader::currentRemainRows() const { return child->currentRemainRows(); @@ -519,20 +519,6 @@ void OptionalColumnReader::computeRowSet(RowSet & row_set, size_t rows_to_read) { applyLazySkip(); nextBatchNullMapIfNeeded(rows_to_read); - if (scan_spec.filter) - { - for (size_t i = 0; i < rows_to_read; i++) - { - if (cur_null_map[i]) - { - row_set.set(i, scan_spec.filter->testNull()); - } - else - { - row_set.set(i, scan_spec.filter->testNotNull()); - } - } - } if (cur_null_count) child->computeRowSetSpace(row_set, cur_null_map, cur_null_count, rows_to_read); else @@ -643,6 +629,13 @@ SelectiveColumnReaderPtr SelectiveColumnReaderFactory::createLeafColumnReader( else return std::make_shared>(std::move(page_reader), scan_spec); } + else if (column_desc->physical_type() == parquet::Type::BYTE_ARRAY) + { + if (!column_metadata.has_dictionary_page()) + return std::make_shared(std::move(page_reader), scan_spec); + else + return std::make_shared(std::move(page_reader), scan_spec); + } else { throw Exception(ErrorCodes::UNSUPPORTED_METHOD, "Unsupported column type"); @@ -665,8 +658,45 @@ template class NumberDictionaryReader; template class NumberDictionaryReader; template class NumberDictionaryReader; -template class DictDecoder; -template class DictDecoder; -template class DictDecoder; -template class DictDecoder; +Int32 loadLength(const uint8_t * data) +{ + auto value_len = arrow::util::SafeLoadAs(data); + if (unlikely(value_len < 0 || value_len > INT32_MAX - 4)) + { + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Invalid or corrupted value_len '{}'", value_len); + } + return value_len; +} +void computeRowSetPlainString(const uint8_t * start, RowSet & row_set, ColumnFilterPtr filter, size_t rows_to_read) +{ + if (!filter) + return; + size_t offset = 0; + for (size_t i = 0; i < rows_to_read; i++) + { + auto len = loadLength(start + offset); + offset += 4; + row_set.set(i, filter->testString(String(reinterpret_cast(start + offset), len))); + offset += len; + } +} +void computeRowSetPlainStringSpace( + const uint8_t * start, RowSet & row_set, ColumnFilterPtr filter, size_t rows_to_read, PaddedPODArray & null_map) +{ + if (!filter) + return; + size_t offset = 0; + for (size_t i = 0; i < rows_to_read; i++) + { + if (null_map[i]) + { + row_set.set(i, filter->testNull()); + continue; + } + auto len = loadLength(start + offset); + offset += 4; + row_set.set(i, filter->testString(String(reinterpret_cast(start + offset), len))); + offset += len; + } +} } diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h index 2046592d5ff..1de3fa0e5c2 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h @@ -3,6 +3,7 @@ #include #include +#include #include #include #include @@ -83,6 +84,9 @@ struct ScanState size_t remain_rows = 0; }; +Int32 loadLength(const uint8_t * data); + + class PlainDecoder { public: @@ -113,6 +117,29 @@ public: remain_rows -= rows_to_read; } + void decodeString(ColumnString::Chars & chars, ColumnString::Offsets & offsets, const RowSet & row_set, size_t rows_to_read) + { + size_t offset = 0; + for (size_t i = 0; i < rows_to_read; i++) + { + auto len = loadLength(buffer + offset); + offset += 4; + if (row_set.get(i)) + { + chars.insert_assume_reserved(buffer + offset, buffer + offset + len); + chars.push_back(0); + offsets.push_back(chars.size()); + offset += len; + } + else + { + offset += len; + } + } + buffer += offset; + remain_rows -= rows_to_read; + } + template void decodeFixedValueSpace(PaddedPODArray & data, RowSet & row_set, PaddedPODArray & null_map, size_t rows_to_read) { @@ -157,21 +184,93 @@ public: remain_rows -= rows_to_read; } + void decodeStringSpace( + ColumnString::Chars & chars, + ColumnString::Offsets & offsets, + const RowSet & row_set, + PaddedPODArray & null_map, + size_t rows_to_read) + { + size_t offset = 0; + for (size_t i = 0; i < rows_to_read; i++) + { + if (null_map[i]) + { + if (row_set.get(i)) + { + // null string + chars.push_back(0); + offsets.push_back(chars.size()); + } + continue; + } + auto len = loadLength(buffer + offset); + offset += 4; + if (row_set.get(i)) + { + chars.insert_assume_reserved(buffer + offset, buffer + offset + len); + chars.push_back(0); + offsets.push_back(chars.size()); + offset += len; + } + else + { + offset += len; + } + } + buffer += offset; + remain_rows -= rows_to_read; + } + + size_t calculateStringTotalSize(const uint8_t * data, const RowSet & row_set, const size_t rows_to_read) + { + size_t offset = 0; + size_t total_size = 0; + for (size_t i = 0; i < rows_to_read; i++) + { + addOneString(false, data, offset, row_set, i, total_size); + } + return total_size; + } + + size_t + calculateStringTotalSizeSpace(const uint8_t * data, const RowSet & row_set, PaddedPODArray & null_map, const size_t rows_to_read) + { + size_t offset = 0; + size_t total_size = 0; + for (size_t i = 0; i < rows_to_read; i++) + { + addOneString(null_map[i], data, offset, row_set, i, total_size); + } + return total_size; + } + private: + void addOneString(bool null, const uint8_t * data, size_t & offset, const RowSet & row_set, size_t row, size_t & total_size) + { + if (null) + { + if (row_set.get(row)) total_size++; + return; + } + auto len = loadLength(data + offset); + chassert(len <= 16); + offset += 4 + len; + if (row_set.get(row)) + total_size += len + 1; + } + const uint8_t *& buffer; size_t & remain_rows; }; -template class DictDecoder { public: - DictDecoder(PaddedPODArray & dict_, PaddedPODArray & idx_buffer_, size_t & remain_rows_) - : dict(dict_), idx_buffer(idx_buffer_), remain_rows(remain_rows_) - { - } + DictDecoder(PaddedPODArray & idx_buffer_, size_t & remain_rows_) : idx_buffer(idx_buffer_), remain_rows(remain_rows_) { } - void decodeFixedValue(PaddedPODArray & data, RowSet & row_set, size_t rows_to_read) + template + void decodeFixedValue(PaddedPODArray & dict, PaddedPODArray & data, RowSet & row_set, size_t rows_to_read) { size_t rows_read = 0; while (rows_read < rows_to_read) @@ -186,8 +285,36 @@ public: remain_rows -= rows_to_read; } - void - decodeFixedValueSpace(PaddedPODArray & data, RowSet & row_set, PaddedPODArray & null_map, size_t rows_to_read) + void decodeString( + std::vector & dict, + ColumnString::Chars & chars, + ColumnString::Offsets & offsets, + const RowSet & row_set, + size_t rows_to_read) + { + for (size_t i = 0; i < rows_to_read; i++) + { + if (row_set.get(i)) + { + String& value = dict[idx_buffer[i]]; + auto chars_cursor = chars.size(); + chars.resize(chars_cursor + value.size() + 1); + memcpySmallAllowReadWriteOverflow15(&chars[chars_cursor], value.data(), value.size()); + chars.back() = 0; + offsets.push_back(chars.size()); + } + } + idx_buffer.resize(0); + remain_rows -= rows_to_read; + } + + template + void decodeFixedValueSpace( + PaddedPODArray & dict, + PaddedPODArray & data, + RowSet & row_set, + PaddedPODArray & null_map, + size_t rows_to_read) { size_t rows_read = 0; size_t count = 0; @@ -213,8 +340,44 @@ public: idx_buffer.resize(0); } + void decodeStringSpace( + std::vector & dict, + ColumnString::Chars & chars, + ColumnString::Offsets & offsets, + const RowSet & row_set, + PaddedPODArray & null_map, + size_t rows_to_read) + { + size_t rows_read = 0; + size_t count = 0; + while (rows_read < rows_to_read) + { + if (row_set.get(rows_read)) + { + if (null_map[rows_read]) + { + chars.push_back(0); + offsets.push_back(chars.size()); + } + else + { + String value = dict[idx_buffer[count]]; + chars.insert(value.data(), value.data() + value.size()); + chars.push_back(0); + offsets.push_back(chars.size()); + count++; + } + } + else if (!null_map[rows_read]) + count++; + rows_read++; + } + chassert(count == idx_buffer.size()); + remain_rows -= rows_to_read; + idx_buffer.resize(0); + } + private: - PaddedPODArray & dict; PaddedPODArray & idx_buffer; size_t & remain_rows; }; @@ -225,7 +388,7 @@ class SelectiveColumnReader friend class OptionalColumnReader; public: - SelectiveColumnReader(std::unique_ptr page_reader_, const ScanSpec scan_spec_) + SelectiveColumnReader(std::unique_ptr page_reader_, const ScanSpec & scan_spec_) : page_reader(std::move(page_reader_)), scan_spec(scan_spec_) { } @@ -328,18 +491,268 @@ protected: } void nextIdxBatchIfEmpty(size_t rows_to_read); - void cleanIdxBatch() { return state.idx_buffer.resize(0); } - void createDictDecoder() override; void downgradeToPlain() override; private: arrow::util::RleDecoder idx_decoder; - std::unique_ptr> dict_decoder; + std::unique_ptr dict_decoder; PaddedPODArray dict; }; +void computeRowSetPlainString(const uint8_t * start, RowSet & row_set, ColumnFilterPtr filter, size_t rows_to_read); + + +void computeRowSetPlainStringSpace( + const uint8_t * start, RowSet & row_set, ColumnFilterPtr filter, size_t rows_to_read, PaddedPODArray & null_map); + + +class StringDirectReader : public SelectiveColumnReader +{ +public: + StringDirectReader(std::unique_ptr page_reader_, const ScanSpec & scan_spec_) + : SelectiveColumnReader(std::move(page_reader_), scan_spec_) + { + } + + void computeRowSet(RowSet & row_set, size_t rows_to_read) override + { + readAndDecodePage(); + computeRowSetPlainString(state.buffer, row_set, scan_spec.filter, rows_to_read); + } + void computeRowSetSpace(RowSet & row_set, PaddedPODArray & null_map, size_t /*null_count*/, size_t rows_to_read) override + { + readAndDecodePage(); + computeRowSetPlainStringSpace(state.buffer, row_set, scan_spec.filter, rows_to_read, null_map); + } + void read(MutableColumnPtr & column, RowSet & row_set, size_t rows_to_read) override + { + ColumnString * string_column = reinterpret_cast(column.get()); + size_t total_size = plain_decoder->calculateStringTotalSize(state.buffer, row_set, rows_to_read); + string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_to_read); + string_column->getChars().reserve(string_column->getChars().size() + total_size); + plain_decoder->decodeString(string_column->getChars(), string_column->getOffsets(), row_set, rows_to_read); + } + void readSpace( + MutableColumnPtr & column, RowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override + { + ColumnString * string_column = reinterpret_cast(column.get()); + size_t total_size = plain_decoder->calculateStringTotalSizeSpace(state.buffer, row_set, null_map, rows_to_read - null_count); + string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_to_read); + string_column->getChars().reserve(string_column->getChars().size() + total_size); + plain_decoder->decodeStringSpace(string_column->getChars(), string_column->getOffsets(), row_set, null_map, rows_to_read); + } + size_t skipValuesInCurrentPage(size_t rows_to_skip) override + { + if (!state.page || !rows_to_skip) + return rows_to_skip; + size_t skipped = std::min(state.remain_rows, rows_to_skip); + state.remain_rows -= skipped; + size_t offset = 0; + for (size_t i = 0; i < skipped; i++) + { + auto len = loadLength(state.buffer + offset); + offset += 4 + len; + } + state.buffer += offset; + return rows_to_skip - skipped; + } + + MutableColumnPtr createColumn() override { return ColumnString::create(); } +}; + +class StringDictionaryReader : public SelectiveColumnReader +{ +public: + StringDictionaryReader(std::unique_ptr page_reader_, const ScanSpec & scan_spec_) + : SelectiveColumnReader(std::move(page_reader_), scan_spec_) + { + } + + MutableColumnPtr createColumn() override { return ColumnString::create(); } + + void computeRowSet(RowSet & row_set, size_t rows_to_read) override + { + readAndDecodePage(); + chassert(rows_to_read <= state.remain_rows); + if (plain) + { + computeRowSetPlainString(state.buffer, row_set, scan_spec.filter, rows_to_read); + return; + } + nextIdxBatchIfEmpty(rows_to_read); + if (scan_spec.filter || row_set.any()) + { + auto & cache = *state.filter_cache; + for (size_t i = 0; i < rows_to_read; ++i) + { + int idx = state.idx_buffer[0]; + if (!cache.has(idx)) + { + cache.set(idx, scan_spec.filter->testString(dict[idx])); + } + row_set.set(i, cache.get(idx)); + } + } + } + void computeRowSetSpace(RowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override + { + readAndDecodePage(); + chassert(rows_to_read <= state.remain_rows); + if (plain) + { + computeRowSetPlainStringSpace(state.buffer, row_set, scan_spec.filter, rows_to_read, null_map); + return; + } + auto nonnull_count = rows_to_read - null_count; + nextIdxBatchIfEmpty(nonnull_count); + if (scan_spec.filter || row_set.any()) + { + auto & cache = *state.filter_cache; + int count = 0; + for (size_t i = 0; i < rows_to_read; ++i) + { + if (null_map[i]) + { + if (!cache.hasNull()) + { + cache.setNull(scan_spec.filter->testNull()); + } + row_set.set(i, cache.getNull()); + } + else + { + int idx = state.idx_buffer[count++]; + if (!cache.has(idx)) + { + cache.set(idx, scan_spec.filter->testString(dict[idx])); + } + row_set.set(i, cache.get(idx)); + } + } + } + } + void read(MutableColumnPtr & column, RowSet & row_set, size_t rows_to_read) override + { + readAndDecodePage(); + ColumnString * string_column = reinterpret_cast(column.get()); + nextIdxBatchIfEmpty(rows_to_read); + if (plain) + { + size_t total_size = plain_decoder->calculateStringTotalSize(state.buffer, row_set, rows_to_read); + string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_to_read); + string_column->getChars().reserve(string_column->getChars().size() + total_size); + plain_decoder->decodeString(string_column->getChars(), string_column->getOffsets(), row_set, rows_to_read); + } + else + { + dict_decoder->decodeString(dict, string_column->getChars(), string_column->getOffsets(), row_set, rows_to_read); + } + } + void readSpace( + MutableColumnPtr & column, RowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override + { + readAndDecodePage(); + ColumnString * string_column = reinterpret_cast(column.get()); + auto nonnull_count = rows_to_read - null_count; + nextIdxBatchIfEmpty(nonnull_count); + if (plain) + { + size_t total_size = plain_decoder->calculateStringTotalSizeSpace(state.buffer, row_set, null_map, rows_to_read); + string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_to_read); + string_column->getChars().reserve(string_column->getChars().size() + total_size); + plain_decoder->decodeStringSpace(string_column->getChars(), string_column->getOffsets(), row_set, null_map, rows_to_read); + } + else + { + dict_decoder->decodeStringSpace(dict, string_column->getChars(), string_column->getOffsets(), row_set, null_map, rows_to_read); + } + } + + size_t skipValuesInCurrentPage(size_t rows_to_skip) override + { + if (!state.page || !rows_to_skip) + return rows_to_skip; + size_t skipped = std::min(state.remain_rows, rows_to_skip); + state.remain_rows -= skipped; + if (plain) + { + size_t offset = 0; + for (size_t i = 0; i < skipped; i++) + { + auto len = loadLength(state.buffer + offset); + offset += 4 + len; + } + state.buffer += offset; + } + else + { + if (!state.idx_buffer.empty()) + { + // only support skip all + chassert(state.idx_buffer.size() == skipped); + state.idx_buffer.resize(0); + } + else + { + state.idx_buffer.resize(skipped); + idx_decoder.GetBatch(state.idx_buffer.data(), static_cast(skipped)); + state.idx_buffer.resize(0); + } + } + return rows_to_skip - skipped; + } + +protected: + void readDictPage(const parquet::DictionaryPage & page) override + { + const auto * dict_data = page.data(); + size_t dict_size = page.num_values(); + dict.reserve(dict_size); + state.filter_cache = std::make_unique(dict_size); + for (size_t i = 0; i < dict_size; i++) + { + auto len = loadLength(dict_data); + dict_data += 4; + String value; + value.resize(len); + memcpy(value.data(), dict_data, len); + dict.emplace_back(value); + dict_data += len; + } + } + void initIndexDecoderIfNeeded() override + { + if (dict.empty()) + return; + uint8_t bit_width = *state.buffer; + idx_decoder = arrow::util::RleDecoder(++state.buffer, static_cast(--state.buffer_size), bit_width); + } + + /// TODO move to DictDecoder + void nextIdxBatchIfEmpty(size_t rows_to_read) + { + if (!state.idx_buffer.empty() || plain) + return; + state.idx_buffer.resize(rows_to_read); + idx_decoder.GetBatch(state.idx_buffer.data(), static_cast(rows_to_read)); + } + + void createDictDecoder() override { dict_decoder = std::make_unique(state.idx_buffer, state.remain_rows); } + + void downgradeToPlain() override + { + dict_decoder = nullptr; + dict.clear(); + } + +private: + std::vector dict; + std::unique_ptr dict_decoder; + arrow::util::RleDecoder idx_decoder; +}; + class ParquetReader; class RowGroupChunkReader diff --git a/src/Processors/tests/gtest_native_parquet_reader.cpp b/src/Processors/tests/gtest_native_parquet_reader.cpp index 51c16032569..95ab44d38f4 100644 --- a/src/Processors/tests/gtest_native_parquet_reader.cpp +++ b/src/Processors/tests/gtest_native_parquet_reader.cpp @@ -11,6 +11,7 @@ #include #include #include +#include #include #include @@ -120,8 +121,7 @@ void benchmark(String name, int count, std::function testcase) times.push_back(time.elapsedMicroseconds()); // std::cerr << "iteration: " << i << " time : " << time.elapsedMilliseconds() << std::endl; } - std::sort(times.begin(), times.end()); - std::cerr<< name << " Time: " << times[times.size() / 2] << std::endl; + std::cerr<< name << " Time: " << *std::min_element(times.begin(), times.end()) << std::endl; } TEST(Processors, TestReadInt64) @@ -177,7 +177,7 @@ TEST(Processors, TestReadInt64) { ReadBufferFromFile in(path); auto reader = openParquet(header, in, std::make_shared(path)); - reader->addFilter("x", std::make_shared( 0, 10)); +// reader->addFilter("x", std::make_shared( 0, 10)); int count [[maybe_unused]] = 0; while (auto block = reader->read()) { @@ -229,7 +229,7 @@ TEST(Processors, TestReadNullableInt64) ReadBufferFromFile in(path); auto reader = openParquet(header, in, std::make_shared(path)); - reader->addFilter("x", std::make_shared( 1000, 2000)); +// reader->addFilter("x", std::make_shared( 1000, 2000)); int count = 0; int null_count2 = 0; while (auto block = reader->read()) @@ -311,3 +311,128 @@ TEST(Processors, TestReadNullableFloat) ASSERT_EQ(count, 500000); ASSERT_EQ(55556, null_count2); } + +TEST(Processors, TestReadNullableString) +{ + auto string_type = makeNullable(std::make_shared()); + + auto col1 = string_type->createColumn(); + auto col2 = string_type->createColumn(); + auto col3 = string_type->createColumn(); + int rows = 500000; + for (int i = 0; i < rows; ++i) + { + if (i % 9 != 0) + { + col1->insert(std::to_string(i % 100)); + col2->insert(std::to_string(std::rand())); + } + else + { + col1->insertDefault(); + col2->insertDefault(); + } + col3->insert(std::to_string(std::rand() * 0.1)); + } + Columns columns; + columns.emplace_back(std::move(col1)); + columns.emplace_back(std::move(col2)); + columns.emplace_back(std::move(col3)); + Chunk chunk(std::move(columns), rows); + + + Block header = {ColumnWithTypeAndName(string_type->createColumn(), string_type, "x"), + ColumnWithTypeAndName(string_type->createColumn(), string_type, "y"), + ColumnWithTypeAndName(string_type->createColumn(), string_type, "z")}; + headBlock(header.cloneWithColumns(chunk.getColumns()), 20); + auto path = "/tmp/test.parquet"; + writeParquet(std::move(chunk), header, path); + + ReadBufferFromFile in(path); + auto reader = openParquet(header, in, std::make_shared(path)); + reader->addFilter("x", std::make_shared(std::vector{"0","1", "2", "3"}, false)); + int count = 0; + int null_count2 = 0; + bool first = true; + while (auto block = reader->read()) + { + if (block.rows() == 0) + break; + if (first) + { + headBlock(block, 20); + first = false; + } + auto column2 = block.getByPosition(1).column; + for (size_t i = 0; i < column2->size(); ++i) + { + if (column2->isNullAt(i)) + null_count2++; + } + count += block.rows(); + } + ASSERT_EQ(count, 17779); + ASSERT_EQ(0, null_count2); +} + + + +TEST(Processors, BenchmarkReadNullableString) +{ + auto string_type = makeNullable(std::make_shared()); + + auto col1 = string_type->createColumn(); + auto col2 = string_type->createColumn(); + auto col3 = string_type->createColumn(); + int rows = 500000; + for (int i = 0; i < rows; ++i) + { + if (i % 9 != 0) + { + col1->insert(std::to_string(i % 1000)); + col2->insert(std::to_string(std::rand())); + } + else + { + col1->insertDefault(); + col2->insertDefault(); + } + col3->insert(std::to_string(std::rand() * 0.1)); + } + Columns columns; + columns.emplace_back(std::move(col1)); + columns.emplace_back(std::move(col2)); + columns.emplace_back(std::move(col3)); + Chunk chunk(std::move(columns), rows); + + + Block header = {ColumnWithTypeAndName(string_type->createColumn(), string_type, "x"), + ColumnWithTypeAndName(string_type->createColumn(), string_type, "y"), + ColumnWithTypeAndName(string_type->createColumn(), string_type, "z")}; + auto path = "/tmp/test.parquet"; + writeParquet(std::move(chunk), header, path); + + auto old_test [[maybe_unused]] = [&]() + { + ReadBufferFromFile in(path); + testOldParquet(header, in); + }; + + auto new_test = [&]() + { + ReadBufferFromFile in(path); + auto reader = openParquet(header, in, std::make_shared(path)); + reader->addFilter("x", std::make_shared(std::vector{"0","1", "2", "3"}, false)); + int count [[maybe_unused]] = 0; + while (auto block = reader->read()) + { + count += block.rows(); + if (block.rows() == 0) + break; + } + // std::cerr << "total count: " << count << std::endl; + }; + std::cerr << "start benchmark \n"; + benchmark("arrow", 21, old_test); + benchmark("native", 21, new_test); +} From 7716153d49aa3ecf57ba0a951636a07bef80a6eb Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Tue, 30 Jul 2024 14:49:47 +0800 Subject: [PATCH 09/34] draft --- .../Impl/Parquet/ColumnFilterHelper.cpp | 7 +++ .../Formats/Impl/Parquet/ColumnFilterHelper.h | 43 +++++++++++++++++++ .../tests/gtest_native_parquet_reader.cpp | 4 +- 3 files changed, 52 insertions(+), 2 deletions(-) create mode 100644 src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.cpp create mode 100644 src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.h diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.cpp new file mode 100644 index 00000000000..d4c1f866922 --- /dev/null +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.cpp @@ -0,0 +1,7 @@ +#include "ColumnFilterHelper.h" + +namespace DB +{ + +ColumnFilterCreators ColumnFilterHelper::creators; +} diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.h b/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.h new file mode 100644 index 00000000000..2d187b8bf9f --- /dev/null +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.h @@ -0,0 +1,43 @@ +#pragma once +#include +#include + +namespace DB +{ +using ColumnFilterCreator = std::function; +using ColumnFilterCreators = std::vector; + +class ColumnFilterHelper +{ +public: + + + + static std::pair, ActionsDAGPtr> splitFilterForPushDown(ActionsDAGPtr filter_expression, String filter_name) + { + const auto * filter_node = &filter_expression->findInOutputs(filter_name); + auto conditions = ActionsDAG::extractConjunctionAtoms(filter_node); + std::vector filters; + ActionsDAG::NodeRawConstPtrs unsupported_conditions; + for (const auto * condition : conditions) + { + if (std::none_of(creators.begin(), creators.end(), [&](const auto & validator) { + ColumnFilterPtr filter = validator(*condition); + filters.push_back(filter); + return filter != nullptr; + })) + unsupported_conditions.push_back(condition); + } + + auto remain_filter = ActionsDAG::buildFilterActionsDAG(unsupported_conditions); + return {filters, remain_filter}; + } + +private: + static ColumnFilterCreators creators; +}; +} + + + + diff --git a/src/Processors/tests/gtest_native_parquet_reader.cpp b/src/Processors/tests/gtest_native_parquet_reader.cpp index 95ab44d38f4..62eb0e9e68c 100644 --- a/src/Processors/tests/gtest_native_parquet_reader.cpp +++ b/src/Processors/tests/gtest_native_parquet_reader.cpp @@ -384,12 +384,12 @@ TEST(Processors, BenchmarkReadNullableString) auto col1 = string_type->createColumn(); auto col2 = string_type->createColumn(); auto col3 = string_type->createColumn(); - int rows = 500000; + int rows = 5000000; for (int i = 0; i < rows; ++i) { if (i % 9 != 0) { - col1->insert(std::to_string(i % 1000)); + col1->insert(std::to_string(i % 100)); col2->insert(std::to_string(std::rand())); } else From dc40a79685cc0b0a8e1beba0cd15e9dea441c843 Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Tue, 30 Jul 2024 22:48:45 +0800 Subject: [PATCH 10/34] add merge implementation --- .../Formats/Impl/Parquet/ColumnFilter.cpp | 226 +++++++++++++++++- .../Formats/Impl/Parquet/ColumnFilter.h | 134 ++++++++--- .../Formats/Impl/Parquet/ColumnFilterHelper.h | 8 +- 3 files changed, 329 insertions(+), 39 deletions(-) diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp index d1c7d594385..b3b219b568b 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp @@ -1,12 +1,236 @@ #include "ColumnFilter.h" +#include + namespace DB { +namespace ErrorCodes +{ +extern const int NOT_IMPLEMENTED; +extern const int PARQUET_EXCEPTION; +extern const int LOGICAL_ERROR; +} -void Int64RangeFilter::testInt64Values(DB::RowSet & row_set, size_t offset, size_t len, const Int64 * data) +void Int64RangeFilter::testInt64Values(DB::RowSet & row_set, size_t offset, size_t len, const Int64 * data) const { for (size_t t = 0; t < len; ++t) { row_set.set(offset + t, data[t] >= min && data[t] <= max); } } + +bool isFunctionNode(const ActionsDAG::Node & node) +{ + return node.function_base != nullptr; +} + +bool isInputNode(const ActionsDAG::Node & node) +{ + return node.type == ActionsDAG::ActionType::INPUT; +} + +bool isConstantNode(const ActionsDAG::Node & node) +{ + return node.type == ActionsDAG::ActionType::COLUMN; +} + +bool isCompareColumnWithConst(const ActionsDAG::Node & node) +{ + if (!isFunctionNode(node)) + return false; + // TODO: support or function + if (node.function_base->getName() == "or") + return false; + size_t input_count = 0; + size_t constant_count = 0; + for (const auto & child : node.children) + { + if (isInputNode(*child)) + ++input_count; + if (isConstantNode(*child)) + ++constant_count; + } + return input_count == 1 && constant_count >= 1; +} + +const ActionsDAG::Node * getInputNode(const ActionsDAG::Node & node) +{ + for (const auto & child : node.children) + { + if (isInputNode(*child)) + return child; + } + throw DB::Exception(ErrorCodes::PARQUET_EXCEPTION, "No input node found"); +} + +ActionsDAG::NodeRawConstPtrs getConstantNode(const ActionsDAG::Node & node) +{ + ActionsDAG::NodeRawConstPtrs result; + for (const auto & child : node.children) + { + if (isConstantNode(*child)) + result.push_back(child); + } + return result; +} + +ColumnFilterPtr Int64RangeFilter::create(const ActionsDAG::Node & node) +{ + if (!isCompareColumnWithConst(node)) + return nullptr; + const auto * input_node = getInputNode(node); + if (!isInt64(input_node->result_type)) + return nullptr; + auto constant_nodes = getConstantNode(node); + auto func_name = node.function_base->getName(); + if (func_name == "equals") + { + Int64 value = constant_nodes.front()->column->getInt(0); + return std::make_shared(value, value, false); + } + else if (func_name == "less") + { + Int64 value = constant_nodes.front()->column->getInt(0); + return std::make_shared(std::numeric_limits::min(), value - 1, false); + } + else if (func_name == "greater") + { + Int64 value = constant_nodes.front()->column->getInt(0); + return std::make_shared(value + 1, std::numeric_limits::max(), false); + } + else if (func_name == "lessOrEquals") + { + Int64 value = constant_nodes.front()->column->getInt(0); + return std::make_shared(std::numeric_limits::min(), value, true); + } + else if (func_name == "greaterOrEquals") + { + Int64 value = constant_nodes.front()->column->getInt(0); + return std::make_shared(value, std::numeric_limits::max(), true); + } + return nullptr; +} + + +ColumnFilterPtr nullOrFalse(bool null_allowed) { + if (null_allowed) { + return std::make_shared(); + } + return std::make_unique(); +} + +ColumnFilterPtr Int64RangeFilter::merge(const ColumnFilter * other) const +{ + switch (other->kind()) + { + case AlwaysTrue: + case AlwaysFalse: + case IsNull: + return other->merge(this); + case IsNotNull: + return std::make_shared(min, max, false); + case Int64Range: { + bool both_null_allowed = null_allowed && other->testNull(); + const auto * other_range = dynamic_cast(other); + if (other_range->min > max || other_range->max < min) + { + return nullOrFalse(both_null_allowed); + } + return std::make_shared( + std::min(min, other_range->min), std::max(max, other_range->max), both_null_allowed); + } + default: + throw DB::Exception(ErrorCodes::LOGICAL_ERROR, "Can't merge filter of kind {}", magic_enum::enum_name(other->kind())); + } +} +ColumnFilterPtr ByteValuesFilter::merge(const ColumnFilter * other) const +{ + switch (other->kind()) + { + case AlwaysTrue: + case AlwaysFalse: + case IsNull: + return other->merge(this); + case IsNotNull: + return std::make_shared(values, false); + case ByteValues: { + bool both_null_allowed = null_allowed && other->testNull(); + const auto & other_values = dynamic_cast(other); + // TODO: add string lower bound and upper bound to test always false fastly + const ByteValuesFilter * small_filter = this; + const ByteValuesFilter * large_filter = other_values; + if (small_filter->values.size() > large_filter->values.size()) + { + std::swap(small_filter, large_filter); + } + std::vector new_values; + new_values.reserve(small_filter->values.size()); + for (const auto & value : large_filter->values) + { + if (small_filter->values.contains(value)) + new_values.push_back(value); + } + if (new_values.empty()) + { + return nullOrFalse(both_null_allowed); + } + return std::make_shared(new_values, both_null_allowed); + } + default: + throw DB::Exception(ErrorCodes::LOGICAL_ERROR, "Can't merge filter of kind {}", magic_enum::enum_name(other->kind())); + } +} + +template +ColumnFilterPtr FloatRangeFilter::merge(const ColumnFilter * other) const +{ + switch (other->kind()) + { + case AlwaysTrue: + case AlwaysFalse: + case IsNull: + return other->merge(this); + case IsNotNull: + return std::make_shared>( + min, lower_unbounded, lower_exclusive, max, upper_unbounded, upper_exclusive, false); + case FloatRange: + case DoubleRange: + { + bool both_null_allowed = null_allowed && other->testNull(); + + auto otherRange = static_cast*>(other); + + auto lower = std::max(min, otherRange->min); + auto upper = std::min(max, otherRange->max); + + auto both_lower_unbounded = + lower_unbounded && otherRange->lowerUnbounded_; + auto both_upper_unbounded = + upper_unbounded && otherRange->upperUnbounded_; + + auto lower_exclusive_ = !both_lower_unbounded && + (!testDouble(lower) || !other->testFloat64(lower)); + auto upper_exclusive_ = !both_upper_unbounded && + (!testDouble(upper) || !other->testFloat64(upper)); + + if (lower > upper || (lower == upper && lower_exclusive)) { + nullOrFalse(both_null_allowed); + } + return std::make_unique>( + lower, + both_lower_unbounded, + lower_exclusive_, + upper, + both_upper_unbounded, + upper_exclusive_, + both_null_allowed); + } + default: + throw DB::Exception(ErrorCodes::LOGICAL_ERROR, "Can't merge filter of kind {}", magic_enum::enum_name(other->kind())); + } +} + +template <> +class FloatRangeFilter; +template <> +class FloatRangeFilter; } diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h index d4ec5c6d4f3..fe49e18b038 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h @@ -1,9 +1,11 @@ #pragma once +#include +#include #include #include #include -#include -#include + +#include namespace DB { @@ -55,26 +57,34 @@ class ColumnFilter public: ColumnFilter(ColumnFilterKind kind, bool null_allowed_) : kind_(kind), null_allowed(null_allowed_) { } virtual ~ColumnFilter() = default; - virtual ColumnFilterKind kind() { return kind_; } - virtual bool testNull() { return null_allowed; } - virtual bool testNotNull() { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testNotNull not implemented"); } - virtual bool testInt64(Int64) { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testInt64 not implemented"); } - virtual bool testFloat32(Float32) { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testFloat32 not implemented"); } - virtual bool testFloat64(Float64) { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testFloat64 not implemented"); } - virtual bool testBool(bool) { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testBool not implemented"); } - virtual bool testString(const String & /*value*/) { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testString not implemented"); } - virtual bool testInt64Range(Int64, Int64) { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testInt64Range not implemented"); } - virtual bool testFloat32Range(Float32, Float32) + virtual ColumnFilterKind kind() const { return kind_; } + virtual bool testNull() const { return null_allowed; } + virtual bool testNotNull() const { return true; } + virtual bool testInt64(Int64) const { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testInt64 not implemented"); } + virtual bool testFloat32(Float32) const { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testFloat32 not implemented"); } + virtual bool testFloat64(Float64) const { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testFloat64 not implemented"); } + virtual bool testBool(bool) const { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testBool not implemented"); } + virtual bool testString(const String & /*value*/) const { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testString not implemented"); } + virtual bool testInt64Range(Int64, Int64) const { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testInt64Range not implemented"); } + virtual bool testFloat32Range(Float32, Float32) const { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testFloat32Range not implemented"); } - virtual bool testFloat64Range(Float64, Float64) + virtual bool testFloat64Range(Float64, Float64) const { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testFloat64Range not implemented"); } - virtual void testInt64Values(RowSet & /*row_set*/, size_t /*offset*/, size_t /*len*/, const Int64 * /*data*/) + virtual void testInt64Values(RowSet & row_set, size_t offset, size_t len, const Int64 * data) const { - throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testInt64Values not implemented"); + for (size_t i = offset; i < offset+len; ++i) + { + row_set.set(i, testInt64(data[i])); + } + } + + virtual ColumnFilterPtr merge(const ColumnFilter * /*filter*/) const + { + throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "merge not implemented"); } protected: @@ -82,33 +92,68 @@ protected: bool null_allowed; }; +class IsNullFilter : public ColumnFilter +{ +public: + IsNullFilter() : ColumnFilter(IsNull, true) { } + bool testNotNull() const override { return false; } +}; + +class IsNotNullFilter : public ColumnFilter +{ +public: + IsNotNullFilter() : ColumnFilter(IsNotNull, false) { } +}; + class AlwaysTrueFilter : public ColumnFilter { public: - ColumnFilterKind kind() override { return AlwaysTrue; } - bool testNull() override { return true; } - bool testNotNull() override { return true; } - bool testInt64(Int64) override { return true; } - bool testFloat32(Float32) override { return true; } - bool testFloat64(Float64) override { return true; } - bool testBool(bool) override { return true; } - bool testInt64Range(Int64, Int64) override { return true; } - bool testFloat32Range(Float32, Float32) override { return true; } - bool testFloat64Range(Float64, Float64) override { return true; } - void testInt64Values(RowSet & set, size_t, size_t, const Int64 *) override { set.setAllTrue(); } + AlwaysTrueFilter() : ColumnFilter(AlwaysTrue, true) { } + bool testNull() const override { return true; } + bool testNotNull() const override { return true; } + bool testInt64(Int64) const override { return true; } + bool testFloat32(Float32) const override { return true; } + bool testFloat64(Float64) const override { return true; } + bool testBool(bool) const override { return true; } + bool testInt64Range(Int64, Int64) const override { return true; } + bool testFloat32Range(Float32, Float32) const override { return true; } + bool testFloat64Range(Float64, Float64) const override { return true; } + void testInt64Values(RowSet & set, size_t, size_t, const Int64 *) const override { set.setAllTrue(); } + bool testString(const String & /*value*/) const override { return true; } + ColumnFilterPtr merge(const ColumnFilter * /*filter*/) const override { return std::make_shared(); } +}; + +class AlwaysFalseFilter : public ColumnFilter +{ +public: + AlwaysFalseFilter() : ColumnFilter(AlwaysFalse, false) { } + bool testNull() const override { return false; } + bool testNotNull() const override { return false; } + bool testInt64(Int64) const override { return false; } + bool testFloat32(Float32) const override { return false; } + bool testFloat64(Float64) const override { return false; } + bool testBool(bool) const override { return true; } + bool testInt64Range(Int64, Int64) const override { return false; } + bool testFloat32Range(Float32, Float32) const override { return false; } + bool testFloat64Range(Float64, Float64) const override { return false; } + void testInt64Values(RowSet & set, size_t, size_t, const Int64 *) const override { set.setAllFalse(); } + bool testString(const String & /*value*/) const override { return false; } + ColumnFilterPtr merge(const ColumnFilter * /*filter*/) const override { return std::make_shared(); } }; class Int64RangeFilter : public ColumnFilter { public: + static ColumnFilterPtr create(const ActionsDAG::Node & node); explicit Int64RangeFilter(const Int64 min_, const Int64 max_, bool null_allowed_) : ColumnFilter(Int64Range, null_allowed_), max(max_), min(min_), is_single_value(max == min) { } ~Int64RangeFilter() override = default; - bool testInt64(Int64 int64) override { return int64 >= min && int64 <= max; } - bool testInt64Range(Int64 lower, Int64 upper) override { return min >= lower && max <= upper; } - void testInt64Values(RowSet & row_set, size_t offset, size_t len, const Int64 * data) override; + bool testInt64(Int64 int64) const override { return int64 >= min && int64 <= max; } + bool testInt64Range(Int64 lower, Int64 upper) const override { return min >= lower && max <= upper; } + void testInt64Values(RowSet & row_set, size_t offset, size_t len, const Int64 * data) const override; + ColumnFilterPtr merge(const ColumnFilter * filter) const override; private: const Int64 max; @@ -124,16 +169,33 @@ public: std::ranges::for_each(values_, [&](const String & value) { lengths.insert(value.size()); }); } - bool testString(const String & value) override + ByteValuesFilter(const std::unordered_set & values_, bool null_allowed_) + : ColumnFilter(ByteValues, null_allowed_), values(values_) { - return lengths.contains(value.size()) && values.contains(value); + std::ranges::for_each(values_, [&](const String & value) { lengths.insert(value.size()); }); } + bool testString(const String & value) const override { return lengths.contains(value.size()) && values.contains(value); } + ColumnFilterPtr merge(const ColumnFilter * filter) const override; + private: std::unordered_set lengths; std::unordered_set values; }; +class Int64MultiRangeFilter : public ColumnFilter +{ +public: + Int64MultiRangeFilter(const std::vector & ranges_, bool null_allowed_) + : ColumnFilter(Int64MultiRange, null_allowed_), ranges(ranges_) + { + } + +private: + std::vector ranges; + std::vector lower_bounds; +}; + class AbstractRange : public ColumnFilter { @@ -173,6 +235,9 @@ protected: }; template +concept is_floating_point = std::is_same_v || std::is_same_v; + +template class FloatRangeFilter : public AbstractRange { public: @@ -190,8 +255,9 @@ public: { } - bool testFloat32(Float32 value) override { return testFloatingPoint(value); } - bool testFloat64(Float64 value) override { return testFloatingPoint(value); } + bool testFloat32(Float32 value) const override { return testFloatingPoint(value); } + bool testFloat64(Float64 value) const override { return testFloatingPoint(value); } + ColumnFilterPtr merge(const ColumnFilter * filter) const override; private: bool testFloatingPoint(T value) const @@ -219,4 +285,6 @@ private: const T max; }; + + } diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.h b/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.h index 2d187b8bf9f..6420352d7d3 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.h +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.h @@ -11,11 +11,9 @@ class ColumnFilterHelper { public: - - - static std::pair, ActionsDAGPtr> splitFilterForPushDown(ActionsDAGPtr filter_expression, String filter_name) + static std::pair, std::optional> splitFilterForPushDown(ActionsDAG filter_expression, String filter_name) { - const auto * filter_node = &filter_expression->findInOutputs(filter_name); + const auto * filter_node = &filter_expression.findInOutputs(filter_name); auto conditions = ActionsDAG::extractConjunctionAtoms(filter_node); std::vector filters; ActionsDAG::NodeRawConstPtrs unsupported_conditions; @@ -30,7 +28,7 @@ public: } auto remain_filter = ActionsDAG::buildFilterActionsDAG(unsupported_conditions); - return {filters, remain_filter}; + return {filters, std::move(remain_filter)}; } private: From 0fb0274510db1ead03e114e2c06916737f23eca1 Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Thu, 8 Aug 2024 22:06:50 +0800 Subject: [PATCH 11/34] integrate with clickhouse --- .../Formats/Impl/Parquet/ColumnFilter.cpp | 115 +++- .../Formats/Impl/Parquet/ColumnFilter.h | 154 ++++- .../Impl/Parquet/ColumnFilterHelper.cpp | 19 +- .../Formats/Impl/Parquet/ColumnFilterHelper.h | 34 +- .../Formats/Impl/Parquet/ParquetReader.cpp | 28 +- .../Formats/Impl/Parquet/ParquetReader.h | 11 +- .../Impl/Parquet/SelectiveColumnReader.cpp | 547 ++++++++++++++++-- .../Impl/Parquet/SelectiveColumnReader.h | 528 +++++------------ .../Formats/Impl/ParquetBlockInputFormat.cpp | 53 +- .../Formats/Impl/ParquetBlockInputFormat.h | 8 + .../tests/gtest_native_parquet_reader.cpp | 162 +++--- src/Storages/MergeTree/KeyCondition.cpp | 2 +- src/Storages/MergeTree/KeyCondition.h | 6 + 13 files changed, 1101 insertions(+), 566 deletions(-) diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp index b3b219b568b..5fe58402305 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp @@ -1,5 +1,6 @@ #include "ColumnFilter.h" -#include +#include +#include namespace DB { @@ -73,41 +74,43 @@ ActionsDAG::NodeRawConstPtrs getConstantNode(const ActionsDAG::Node & node) return result; } -ColumnFilterPtr Int64RangeFilter::create(const ActionsDAG::Node & node) +OptionalFilter Int64RangeFilter::create(const ActionsDAG::Node & node) { if (!isCompareColumnWithConst(node)) - return nullptr; + return std::nullopt; const auto * input_node = getInputNode(node); + auto name = input_node->result_name; if (!isInt64(input_node->result_type)) - return nullptr; + return std::nullopt; auto constant_nodes = getConstantNode(node); auto func_name = node.function_base->getName(); + Int64 value = constant_nodes.front()->column->getInt(0); + ColumnFilterPtr filter = nullptr; if (func_name == "equals") { - Int64 value = constant_nodes.front()->column->getInt(0); - return std::make_shared(value, value, false); + filter = std::make_shared(value, value, false); } else if (func_name == "less") { - Int64 value = constant_nodes.front()->column->getInt(0); - return std::make_shared(std::numeric_limits::min(), value - 1, false); + filter = std::make_shared(std::numeric_limits::min(), value - 1, false); } else if (func_name == "greater") { - Int64 value = constant_nodes.front()->column->getInt(0); - return std::make_shared(value + 1, std::numeric_limits::max(), false); + filter = std::make_shared(value + 1, std::numeric_limits::max(), false); } else if (func_name == "lessOrEquals") { - Int64 value = constant_nodes.front()->column->getInt(0); - return std::make_shared(std::numeric_limits::min(), value, true); + filter = std::make_shared(std::numeric_limits::min(), value, true); } else if (func_name == "greaterOrEquals") { - Int64 value = constant_nodes.front()->column->getInt(0); - return std::make_shared(value, std::numeric_limits::max(), true); + filter = std::make_shared(value, std::numeric_limits::max(), true); } - return nullptr; + if (filter) + { + return std::make_optional(std::make_pair(name, filter)); + } + return std::nullopt; } @@ -136,7 +139,7 @@ ColumnFilterPtr Int64RangeFilter::merge(const ColumnFilter * other) const return nullOrFalse(both_null_allowed); } return std::make_shared( - std::min(min, other_range->min), std::max(max, other_range->max), both_null_allowed); + std::max(min, other_range->min), std::min(max, other_range->max), both_null_allowed); } default: throw DB::Exception(ErrorCodes::LOGICAL_ERROR, "Can't merge filter of kind {}", magic_enum::enum_name(other->kind())); @@ -151,7 +154,7 @@ ColumnFilterPtr ByteValuesFilter::merge(const ColumnFilter * other) const case IsNull: return other->merge(this); case IsNotNull: - return std::make_shared(values, false); + return clone(false); case ByteValues: { bool both_null_allowed = null_allowed && other->testNull(); const auto & other_values = dynamic_cast(other); @@ -179,6 +182,51 @@ ColumnFilterPtr ByteValuesFilter::merge(const ColumnFilter * other) const throw DB::Exception(ErrorCodes::LOGICAL_ERROR, "Can't merge filter of kind {}", magic_enum::enum_name(other->kind())); } } +OptionalFilter ByteValuesFilter::create(const ActionsDAG::Node & node) +{ + if (!isCompareColumnWithConst(node)) + return std::nullopt; + const auto * input_node = getInputNode(node); + auto name = input_node->result_name; + if (!isString(input_node->result_type)) + return std::nullopt; + auto constant_nodes = getConstantNode(node); + auto func_name = node.function_base->getName(); + ColumnFilterPtr filter = nullptr; + if (func_name == "equals") + { + auto value = constant_nodes.front()->column->getDataAt(0); + String str; + str.resize(value.size); + memcpy(str.data(), value.data, value.size); + std::vector values = {str}; + filter = std::make_shared(values, false); + } + else if (func_name == "in") + { + const auto *arg = checkAndGetColumn(constant_nodes.front()->column.get()); + const auto * column_set = checkAndGetColumn(&arg->getDataColumn()); + if (!column_set) + throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "Only ColumnSet is supported in IN clause, but got {}", arg->getDataColumn().getName()); + auto set = column_set->getData()->get(); + auto elements = set->getSetElements().front(); + std::vector values; + for (size_t i = 0; i < elements->size(); ++i) + { + auto value = elements->getDataAt(i); + String str; + str.resize(value.size); + memcpy(str.data(), value.data, value.size); + values.emplace_back(str); + } + filter = std::make_shared(values, false); + } + if (filter) + { + return std::make_optional(std::make_pair(name, filter)); + } + return std::nullopt; +} template ColumnFilterPtr FloatRangeFilter::merge(const ColumnFilter * other) const @@ -203,14 +251,14 @@ ColumnFilterPtr FloatRangeFilter::merge(const ColumnFilter * other) const auto upper = std::min(max, otherRange->max); auto both_lower_unbounded = - lower_unbounded && otherRange->lowerUnbounded_; + lower_unbounded && otherRange->lower_unbounded; auto both_upper_unbounded = - upper_unbounded && otherRange->upperUnbounded_; + upper_unbounded && otherRange->upper_unbounded; auto lower_exclusive_ = !both_lower_unbounded && - (!testDouble(lower) || !other->testFloat64(lower)); + (!testFloat64(lower) || !other->testFloat64(lower)); auto upper_exclusive_ = !both_upper_unbounded && - (!testDouble(upper) || !other->testFloat64(upper)); + (!testFloat64(upper) || !other->testFloat64(upper)); if (lower > upper || (lower == upper && lower_exclusive)) { nullOrFalse(both_null_allowed); @@ -229,8 +277,25 @@ ColumnFilterPtr FloatRangeFilter::merge(const ColumnFilter * other) const } } -template <> -class FloatRangeFilter; -template <> -class FloatRangeFilter; +template <> class FloatRangeFilter; +template <> class FloatRangeFilter; + +OptionalFilter createFloatRangeFilter(const ActionsDAG::Node & node) +{ + if (!isCompareColumnWithConst(node)) + return std::nullopt; + const auto * input_node = getInputNode(node); + if (!isFloat(input_node->result_type)) + return std::nullopt; + + bool is_float32 = WhichDataType(input_node->result_type).isFloat32(); + if (is_float32) + { + return Float32RangeFilter::create(node); + } + else + { + return Float64RangeFilter::create(node); + } +} } diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h index fe49e18b038..b75007f0c8c 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h @@ -1,12 +1,12 @@ #pragma once #include #include +#include +#include #include #include #include -#include - namespace DB { namespace ErrorCodes @@ -32,7 +32,12 @@ private: size_t max_rows = 0; boost::dynamic_bitset<> bitset; }; +using OptionalRowSet = std::optional; +bool isConstantNode(const ActionsDAG::Node & node); +bool isCompareColumnWithConst(const ActionsDAG::Node & node); +const ActionsDAG::Node * getInputNode(const ActionsDAG::Node & node); +ActionsDAG::NodeRawConstPtrs getConstantNode(const ActionsDAG::Node & node); class ColumnFilter; using ColumnFilterPtr = std::shared_ptr; @@ -54,8 +59,10 @@ enum ColumnFilterKind class ColumnFilter { -public: +protected: ColumnFilter(ColumnFilterKind kind, bool null_allowed_) : kind_(kind), null_allowed(null_allowed_) { } + +public: virtual ~ColumnFilter() = default; virtual ColumnFilterKind kind() const { return kind_; } virtual bool testNull() const { return null_allowed; } @@ -64,7 +71,10 @@ public: virtual bool testFloat32(Float32) const { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testFloat32 not implemented"); } virtual bool testFloat64(Float64) const { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testFloat64 not implemented"); } virtual bool testBool(bool) const { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testBool not implemented"); } - virtual bool testString(const String & /*value*/) const { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testString not implemented"); } + virtual bool testString(const String & /*value*/) const + { + throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testString not implemented"); + } virtual bool testInt64Range(Int64, Int64) const { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testInt64Range not implemented"); } virtual bool testFloat32Range(Float32, Float32) const { @@ -76,7 +86,7 @@ public: } virtual void testInt64Values(RowSet & row_set, size_t offset, size_t len, const Int64 * data) const { - for (size_t i = offset; i < offset+len; ++i) + for (size_t i = offset; i < offset + len; ++i) { row_set.set(i, testInt64(data[i])); } @@ -87,6 +97,15 @@ public: throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "merge not implemented"); } + virtual ColumnFilterPtr clone(std::optional nullAllowed = std::nullopt) const = 0; + + virtual String toString() const + { + return fmt::format( + "Filter({}, {})", + magic_enum::enum_name(kind()), + null_allowed ? "null allowed" : "null not allowed"); + } protected: ColumnFilterKind kind_; bool null_allowed; @@ -97,12 +116,14 @@ class IsNullFilter : public ColumnFilter public: IsNullFilter() : ColumnFilter(IsNull, true) { } bool testNotNull() const override { return false; } + ColumnFilterPtr clone(std::optional) const override { return std::make_shared(); } }; class IsNotNullFilter : public ColumnFilter { public: IsNotNullFilter() : ColumnFilter(IsNotNull, false) { } + ColumnFilterPtr clone(std::optional) const override { return std::make_shared(); } }; class AlwaysTrueFilter : public ColumnFilter @@ -121,6 +142,7 @@ public: void testInt64Values(RowSet & set, size_t, size_t, const Int64 *) const override { set.setAllTrue(); } bool testString(const String & /*value*/) const override { return true; } ColumnFilterPtr merge(const ColumnFilter * /*filter*/) const override { return std::make_shared(); } + ColumnFilterPtr clone(std::optional) const override { return std::make_shared(); } }; class AlwaysFalseFilter : public ColumnFilter @@ -139,12 +161,13 @@ public: void testInt64Values(RowSet & set, size_t, size_t, const Int64 *) const override { set.setAllFalse(); } bool testString(const String & /*value*/) const override { return false; } ColumnFilterPtr merge(const ColumnFilter * /*filter*/) const override { return std::make_shared(); } + ColumnFilterPtr clone(std::optional) const override { return std::make_shared(); } }; - +using OptionalFilter = std::optional>; class Int64RangeFilter : public ColumnFilter { public: - static ColumnFilterPtr create(const ActionsDAG::Node & node); + static OptionalFilter create(const ActionsDAG::Node & node); explicit Int64RangeFilter(const Int64 min_, const Int64 max_, bool null_allowed_) : ColumnFilter(Int64Range, null_allowed_), max(max_), min(min_), is_single_value(max == min) { @@ -154,6 +177,14 @@ public: bool testInt64Range(Int64 lower, Int64 upper) const override { return min >= lower && max <= upper; } void testInt64Values(RowSet & row_set, size_t offset, size_t len, const Int64 * data) const override; ColumnFilterPtr merge(const ColumnFilter * filter) const override; + ColumnFilterPtr clone(std::optional null_allowed_) const override + { + return std::make_shared(min, max, null_allowed_.value_or(null_allowed)); + } + String toString() const override + { + return fmt::format("Int64RangeFilter: [{}, {}] {}", min, max, null_allowed ? "with nulls" : "no nulls"); + } private: const Int64 max; @@ -163,40 +194,43 @@ private: class ByteValuesFilter : public ColumnFilter { public: + static OptionalFilter create(const ActionsDAG::Node & node); ByteValuesFilter(const std::vector & values_, bool null_allowed_) : ColumnFilter(ByteValues, null_allowed_), values(values_.begin(), values_.end()) { std::ranges::for_each(values_, [&](const String & value) { lengths.insert(value.size()); }); + lower = *std::min_element(values_.begin(), values_.end()); + upper = *std::max_element(values_.begin(), values_.end()); } - ByteValuesFilter(const std::unordered_set & values_, bool null_allowed_) - : ColumnFilter(ByteValues, null_allowed_), values(values_) + ByteValuesFilter(const ByteValuesFilter & other, bool nullAllowed) + : ColumnFilter(ColumnFilterKind::ByteValues, nullAllowed) + , lower(other.lower) + , upper(other.upper) + , values(other.values) + , lengths(other.lengths) { - std::ranges::for_each(values_, [&](const String & value) { lengths.insert(value.size()); }); } bool testString(const String & value) const override { return lengths.contains(value.size()) && values.contains(value); } ColumnFilterPtr merge(const ColumnFilter * filter) const override; - -private: - std::unordered_set lengths; - std::unordered_set values; -}; - -class Int64MultiRangeFilter : public ColumnFilter -{ -public: - Int64MultiRangeFilter(const std::vector & ranges_, bool null_allowed_) - : ColumnFilter(Int64MultiRange, null_allowed_), ranges(ranges_) + ColumnFilterPtr clone(std::optional null_allowed_) const override { + return std::make_shared(*this, null_allowed_.value_or(null_allowed)); + } + + String toString() const override + { + return "ByteValuesFilter(" + lower + ", " + upper + ")"; } private: - std::vector ranges; - std::vector lower_bounds; + String lower; + String upper; + std::unordered_set values; + std::unordered_set lengths; }; - class AbstractRange : public ColumnFilter { public: @@ -241,6 +275,43 @@ template class FloatRangeFilter : public AbstractRange { public: + static OptionalFilter create(const ActionsDAG::Node & node) + { + if (!isCompareColumnWithConst(node)) + return std::nullopt; + const auto * input_node = getInputNode(node); + auto name = input_node->result_name; + if (!isFloat(input_node->result_type)) + return std::nullopt; + auto constant_nodes = getConstantNode(node); + auto func_name = node.function_base->getName(); + T value; + if constexpr (std::is_same_v) + value = constant_nodes.front()->column->getFloat32(0); + else + value = constant_nodes.front()->column->getFloat64(0); + ColumnFilterPtr filter = nullptr; + if (func_name == "less") + { + filter = std::make_shared>(0, true, false, value, false, false, false); + } + else if (func_name == "greater") + { + filter = std::make_shared>(value, false, false, 0, true, false, false); + } + else if (func_name == "lessOrEquals") + { + filter = std::make_shared>(0, true, true, value, false, false, false); + } + else if (func_name == "greaterOrEquals") + { + filter = std::make_shared>(value, false, false, 0, true, true, false); + } + if (filter) + return std::make_optional(std::make_pair(name, filter)); + else + return std::nullopt; + } FloatRangeFilter( const T min_, bool lowerUnbounded, bool lowerExclusive, const T max_, bool upperUnbounded, bool upperExclusive, bool nullAllowed) : AbstractRange( @@ -255,9 +326,38 @@ public: { } + FloatRangeFilter(const FloatRangeFilter & other, bool null_allowed_) + : AbstractRange( + other.lower_unbounded, + other.lower_exclusive, + other.upper_unbounded, + other.upper_exclusive, + null_allowed_, + (std::is_same_v) ? ColumnFilterKind::DoubleRange : ColumnFilterKind::FloatRange) + , min(other.min) + , max(other.max) + { + chassert(lower_unbounded || !std::isnan(min)); + chassert(upper_unbounded || !std::isnan(max)); + } + bool testFloat32(Float32 value) const override { return testFloatingPoint(value); } - bool testFloat64(Float64 value) const override { return testFloatingPoint(value); } + bool testFloat64(Float64 value) const override { return testFloatingPoint(static_cast(value)); } ColumnFilterPtr merge(const ColumnFilter * filter) const override; + ColumnFilterPtr clone(std::optional null_allowed_) const override + { + return std::make_shared(*this, null_allowed_.value_or(null_allowed)); + } + String toString() const override + { + return fmt::format( + "FloatRangeFilter: {}{}, {}{} {}", + (lower_exclusive || lower_unbounded) ? "(" : "[", + lower_unbounded ? "-inf" : std::to_string(min), + upper_unbounded ? "nan" : std::to_string(max), + (upper_exclusive && !upper_unbounded) ? ")" : "]", + null_allowed ? "with nulls" : "no nulls"); + } private: bool testFloatingPoint(T value) const @@ -285,6 +385,8 @@ private: const T max; }; +using Float32RangeFilter = FloatRangeFilter; +using Float64RangeFilter = FloatRangeFilter; - +OptionalFilter createFloatRangeFilter(const ActionsDAG::Node & node); } diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.cpp index d4c1f866922..67c0c8be424 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.cpp +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.cpp @@ -3,5 +3,22 @@ namespace DB { -ColumnFilterCreators ColumnFilterHelper::creators; +ColumnFilterCreators ColumnFilterHelper::creators = { + Int64RangeFilter::create, + createFloatRangeFilter, + ByteValuesFilter::create +}; +void pushFilterToParquetReader(const ActionsDAG& filter_expression, ParquetReader & reader) +{ + auto split_result = ColumnFilterHelper::splitFilterForPushDown(std::move(filter_expression)); + for (const auto & item : split_result.filters) + { + for (const auto& filter: item.second) + { + reader.addFilter(item.first, filter); + } + } + if (split_result.remain_filter.has_value()) + reader.setRemainFilter(split_result.remain_filter); +} } diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.h b/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.h index 6420352d7d3..02d2edf2f32 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.h +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.h @@ -1,39 +1,53 @@ #pragma once #include #include +#include namespace DB { -using ColumnFilterCreator = std::function; +using ColumnFilterCreator = std::function; using ColumnFilterCreators = std::vector; +struct FilterSplitResult +{ + std::unordered_map> filters; + std::optional remain_filter; +}; + class ColumnFilterHelper { public: - static std::pair, std::optional> splitFilterForPushDown(ActionsDAG filter_expression, String filter_name) + static FilterSplitResult splitFilterForPushDown(const ActionsDAG& filter_expression) { - const auto * filter_node = &filter_expression.findInOutputs(filter_name); + const auto * filter_node = filter_expression.getOutputs().front(); auto conditions = ActionsDAG::extractConjunctionAtoms(filter_node); std::vector filters; ActionsDAG::NodeRawConstPtrs unsupported_conditions; + FilterSplitResult split_result; for (const auto * condition : conditions) { - if (std::none_of(creators.begin(), creators.end(), [&](const auto & validator) { - ColumnFilterPtr filter = validator(*condition); - filters.push_back(filter); - return filter != nullptr; + if (std::none_of(creators.begin(), creators.end(), [&](ColumnFilterCreator & creator) { + auto result = creator(*condition); + if (result.has_value()) + split_result.filters[result.value().first].emplace_back(result.value().second); + return result.has_value(); })) unsupported_conditions.push_back(condition); } - - auto remain_filter = ActionsDAG::buildFilterActionsDAG(unsupported_conditions); - return {filters, std::move(remain_filter)}; + if (!unsupported_conditions.empty()) + { + auto remain_filter = ActionsDAG::buildFilterActionsDAG(unsupported_conditions); + split_result.remain_filter = std::move(remain_filter); + } + return split_result; } private: static ColumnFilterCreators creators; }; + +void pushFilterToParquetReader(const ActionsDAG& filter_expression, ParquetReader & reader); } diff --git a/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp b/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp index b59bc1e9543..5ed9796a767 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp @@ -34,21 +34,21 @@ std::unique_ptr createFileReader( ParquetReader::ParquetReader( Block header_, - std::shared_ptr file_, + SeekableReadBuffer& file_, parquet::ArrowReaderProperties arrow_properties_, parquet::ReaderProperties reader_properties_, std::shared_ptr<::arrow::io::RandomAccessFile> arrow_file_, const FormatSettings & format_settings, std::vector row_groups_indices_, std::shared_ptr metadata) - : file_reader(createFileReader(arrow_file_, reader_properties_, metadata)) + : file_reader(metadata ? nullptr : createFileReader(arrow_file_, reader_properties_, metadata)) , file(file_) , arrow_properties(arrow_properties_) , header(std::move(header_)) , max_block_size(format_settings.parquet.max_block_size) , properties(reader_properties_) , row_groups_indices(std::move(row_groups_indices_)) - , meta_data(file_reader->metadata()) + , meta_data(metadata ? metadata : file_reader->metadata()) { if (row_groups_indices.empty()) for (int i = 0; i < meta_data->num_row_groups(); i++) @@ -80,10 +80,26 @@ Block ParquetReader::read() } void ParquetReader::addFilter(const String & column_name, const ColumnFilterPtr filter) { - filters[column_name] = filter; + std::cerr << "add filter to column " << column_name << ": " << filter->toString() << std::endl; + if (!filters.contains(column_name)) + filters[column_name] = filter; + else + filters[column_name] = filters[column_name]->merge(filter.get()); + std::cerr << "filter on column " << column_name << ": " << filters[column_name]->toString() << std::endl; +} +void ParquetReader::setRemainFilter(std::optional & expr) +{ + if (expr.has_value()) + { + ExpressionActionsSettings settings; + ExpressionActions actions = ExpressionActions(std::move(expr.value()), settings); + remain_filter = std::optional(std::move(actions)); + } +} +std::unique_ptr ParquetReader::getRowGroupChunkReader(size_t row_group_idx) +{ + return std::make_unique(this, meta_data->RowGroup(static_cast(row_group_idx)), filters); } - - } diff --git a/src/Processors/Formats/Impl/Parquet/ParquetReader.h b/src/Processors/Formats/Impl/Parquet/ParquetReader.h index fd373cf4e62..af3b4271545 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetReader.h +++ b/src/Processors/Formats/Impl/Parquet/ParquetReader.h @@ -4,7 +4,7 @@ #include #include #include - +#include #include #include @@ -18,7 +18,7 @@ public: friend class RowGroupChunkReader; ParquetReader( Block header_, - std::shared_ptr file, + SeekableReadBuffer& file, parquet::ArrowReaderProperties arrow_properties_, parquet::ReaderProperties reader_properties_, std::shared_ptr<::arrow::io::RandomAccessFile> arrow_file, @@ -28,11 +28,13 @@ public: Block read(); void addFilter(const String & column_name, ColumnFilterPtr filter); + void setRemainFilter(std::optional & expr); + std::unique_ptr getRowGroupChunkReader(size_t row_group_idx); private: bool loadRowGroupChunkReaderIfNeeded(); std::unique_ptr file_reader; - std::shared_ptr file; + SeekableReadBuffer& file; parquet::ArrowReaderProperties arrow_properties; Block header; @@ -42,7 +44,8 @@ private: UInt64 max_block_size; parquet::ReaderProperties properties; std::unordered_map filters; - std::vector parquet_col_indice; + std::optional remain_filter = std::nullopt; + std::vector parquet_col_indices; std::vector row_groups_indices; size_t next_row_group_idx = 0; std::shared_ptr meta_data; diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index c4d542d3b96..041d953fb06 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -17,9 +17,9 @@ extern const int PARQUET_EXCEPTION; Chunk RowGroupChunkReader::readChunk(size_t rows) { + if (!remain_rows) return {}; rows = std::min(rows, remain_rows); MutableColumns columns; - for (auto & reader : column_readers) { columns.push_back(reader->createColumn()); @@ -43,14 +43,26 @@ Chunk RowGroupChunkReader::readChunk(size_t rows) if (!rows_to_read) break; - RowSet row_set(rows_to_read); + OptionalRowSet row_set = std::nullopt; + if (!filter_columns.empty()) + row_set = std::optional(RowSet(rows_to_read)); for (auto & column : filter_columns) { reader_columns_mapping[column]->computeRowSet(row_set, rows_to_read); - if (row_set.none()) + if (row_set.value().none()) break; } - bool skip_all = row_set.none(); + bool skip_all = false; + if (row_set.has_value()) skip_all = row_set.value().none(); + if (skip_all) + { + metrics.skipped_rows += rows_to_read; + } + + bool all = false; + if (row_set.has_value()) all = row_set.value().all(); + if (all) row_set = std::nullopt; + for (size_t i = 0; i < column_readers.size(); i++) { if (skip_all) @@ -59,8 +71,25 @@ Chunk RowGroupChunkReader::readChunk(size_t rows) column_readers[i]->read(columns[i], row_set, rows_to_read); } remain_rows -= rows_to_read; + metrics.filtered_rows += (rows_to_read - (columns[0]->size() - rows_read)); rows_read = columns[0]->size(); } + + if (parquet_reader->remain_filter.has_value()) + { + auto input = parquet_reader->header.cloneWithColumns(std::move(columns)); + auto output = input.getColumns(); + parquet_reader->remain_filter.value().execute(input); + const auto& filter = checkAndGetColumn(*input.getByPosition(0).column).getData(); + size_t resize_hint = 0; + for (size_t i = 0; i < columns.size(); i++) + { + output[i] = output[i]->assumeMutable()->filter(filter, resize_hint); + resize_hint = output[i]->size(); + } + return Chunk(std::move(output), resize_hint); + } + metrics.output_rows += rows_read; return Chunk(std::move(columns), rows_read); } @@ -109,8 +138,8 @@ RowGroupChunkReader::RowGroupChunkReader( size_t offset = range.first; column_buffers[reader_idx].resize_fill(compress_size, 0); remain_rows = row_group_meta->ColumnChunk(idx)->num_values(); - parquet_reader->file->seek(offset, SEEK_SET); - size_t count = parquet_reader->file->readBig(reinterpret_cast(column_buffers[reader_idx].data()), compress_size); + parquet_reader->file.seek(offset, SEEK_SET); + size_t count = parquet_reader->file.readBig(reinterpret_cast(column_buffers[reader_idx].data()), compress_size); if (count != compress_size) throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Failed to read column data"); auto page_reader = std::make_unique( @@ -197,13 +226,13 @@ void SelectiveColumnReader::readDataPageV1(const parquet::DataPageV1 & page) decoder.Decode(static_cast(state.remain_rows), state.def_levels.data()); } state.buffer_size = max_size; - if (page.encoding() == parquet::Encoding::PLAIN_DICTIONARY) + if (page.encoding() == parquet::Encoding::RLE_DICTIONARY || page.encoding() == parquet::Encoding::PLAIN_DICTIONARY) { initIndexDecoderIfNeeded(); createDictDecoder(); plain = false; } - else + else if (page.encoding() == parquet::Encoding::PLAIN) { if (!plain) { @@ -212,6 +241,10 @@ void SelectiveColumnReader::readDataPageV1(const parquet::DataPageV1 & page) } plain_decoder = std::make_unique(state.buffer, state.remain_rows); } + else + { + throw DB::Exception(ErrorCodes::PARQUET_EXCEPTION, "Unsupported encoding type {}", magic_enum::enum_name(page.encoding())); + } state.lazy_skip_rows = skipValuesInCurrentPage(state.lazy_skip_rows); chassert(state.lazy_skip_rows == 0); } @@ -233,19 +266,36 @@ void SelectiveColumnReader::skipPageIfNeed() state.remain_rows = 0; } } +void SelectiveColumnReader::skip(size_t rows) +{ + state.lazy_skip_rows += rows; + state.lazy_skip_rows = skipValuesInCurrentPage(state.lazy_skip_rows); + skipPageIfNeed(); +} +void SelectiveColumnReader::skipNulls(size_t rows_to_skip) +{ + auto skipped = std::min(rows_to_skip, state.remain_rows); + state.remain_rows -= skipped; + state.lazy_skip_rows += (rows_to_skip - skipped); +} template -void computeRowSetPlain(const T * start, RowSet & row_set, const ColumnFilterPtr & filter, size_t rows_to_read) +void computeRowSetPlain(const T * start, OptionalRowSet & row_set, const ColumnFilterPtr & filter, size_t rows_to_read) { - if (filter && row_set.any()) + if (filter) { if constexpr (std::is_same_v) - filter->testInt64Values(row_set, 0, rows_to_read, start); + { + if (row_set.has_value()) + filter->testInt64Values(row_set.value(), 0, rows_to_read, start); + } + else + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unsupported type"); } } template -void NumberColumnDirectReader::computeRowSet(RowSet & row_set, size_t rows_to_read) +void NumberColumnDirectReader::computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) { readAndDecodePage(); chassert(rows_to_read <= state.remain_rows); @@ -254,7 +304,7 @@ void NumberColumnDirectReader::computeRowSet(RowSet & row_set, size_t } template -void NumberColumnDirectReader::read(MutableColumnPtr & column, RowSet & row_set, size_t rows_to_read) +void NumberColumnDirectReader::read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) { readAndDecodePage(); auto * int_column = static_cast(column.get()); @@ -275,7 +325,7 @@ size_t NumberColumnDirectReader::skipValuesInCurrentPage(size_t rows_t template void NumberColumnDirectReader::readSpace( - MutableColumnPtr & column, RowSet & row_set, PaddedPODArray & null_map, size_t, size_t rows_to_read) + MutableColumnPtr & column, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t, size_t rows_to_read) { readAndDecodePage(); auto * int_column = static_cast(column.get()); @@ -285,27 +335,28 @@ void NumberColumnDirectReader::readSpace( template void computeRowSetPlainSpace( - const T * start, RowSet & row_set, const ColumnFilterPtr & filter, PaddedPODArray & null_map, size_t rows_to_read) + const T * start, OptionalRowSet & row_set, const ColumnFilterPtr & filter, PaddedPODArray & null_map, size_t rows_to_read) { - if (!filter || row_set.none()) + if (!filter || !row_set.has_value()) return; int count = 0; + auto & sets = row_set.value(); for (size_t i = 0; i < rows_to_read; i++) { if (null_map[i]) { - row_set.set(i, filter->testNull()); + sets.set(i, filter->testNull()); } else { - row_set.set(i, filter->testInt64(start[count])); + sets.set(i, filter->testInt64(start[count])); count++; } } } template -void NumberColumnDirectReader::computeRowSetSpace(RowSet & row_set, PaddedPODArray & null_map, size_t, size_t rows_to_read) +void NumberColumnDirectReader::computeRowSetSpace(OptionalRowSet & row_set, PaddedPODArray & null_map, size_t, size_t rows_to_read) { readAndDecodePage(); const Int64 * start = reinterpret_cast(state.buffer); @@ -340,7 +391,7 @@ void NumberDictionaryReader::nextIdxBatchIfEmpty(size_t rows_to_read) } template -void NumberDictionaryReader::computeRowSet(RowSet & row_set, size_t rows_to_read) +void NumberDictionaryReader::computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) { readAndDecodePage(); chassert(rows_to_read <= state.remain_rows); @@ -351,25 +402,28 @@ void NumberDictionaryReader::computeRowSet(RowSet & row_set, size_t ro return; } nextIdxBatchIfEmpty(rows_to_read); - if (scan_spec.filter || row_set.any()) + if (scan_spec.filter || row_set.has_value()) { auto & cache = *state.filter_cache; + auto & sets = row_set.value(); for (size_t i = 0; i < rows_to_read; ++i) { - int idx = state.idx_buffer[0]; + int idx = state.idx_buffer[i]; if (!cache.has(idx)) { if constexpr (std::is_same_v) cache.set(idx, scan_spec.filter->testInt64(dict[idx])); + else + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unsupported type"); } - row_set.set(i, cache.get(idx)); + sets.set(i, cache.get(idx)); } } } template void NumberDictionaryReader::computeRowSetSpace( - RowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) + OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) { readAndDecodePage(); chassert(rows_to_read <= state.remain_rows); @@ -381,10 +435,11 @@ void NumberDictionaryReader::computeRowSetSpace( } auto nonnull_count = rows_to_read - null_count; nextIdxBatchIfEmpty(nonnull_count); - if (scan_spec.filter || row_set.any()) + if (scan_spec.filter || row_set.has_value()) { auto & cache = *state.filter_cache; int count = 0; + auto & sets = row_set.value(); for (size_t i = 0; i < rows_to_read; ++i) { if (null_map[i]) @@ -393,7 +448,7 @@ void NumberDictionaryReader::computeRowSetSpace( { cache.setNull(scan_spec.filter->testNull()); } - row_set.set(i, cache.getNull()); + sets.set(i, cache.getNull()); } else { @@ -402,15 +457,17 @@ void NumberDictionaryReader::computeRowSetSpace( { if constexpr (std::is_same_v) cache.set(idx, scan_spec.filter->testInt64(dict[idx])); + else + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unsupported type"); } - row_set.set(i, cache.get(idx)); + sets.set(i, cache.get(idx)); } } } } template -void NumberDictionaryReader::read(MutableColumnPtr & column, RowSet & row_set, size_t rows_to_read) +void NumberDictionaryReader::read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) { readAndDecodePage(); auto * int_column = static_cast(column.get()); @@ -426,7 +483,7 @@ void NumberDictionaryReader::read(MutableColumnPtr & column, RowSet & template void NumberDictionaryReader::readSpace( - MutableColumnPtr & column, RowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) + MutableColumnPtr & column, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) { readAndDecodePage(); auto * int_column = static_cast(column.get()); @@ -445,7 +502,7 @@ void NumberDictionaryReader::readDictPage(const parquet::DictionaryPag auto dict_size = page.num_values(); dict.resize(dict_size); state.filter_cache = std::make_unique(dict_size); - memcpy(dict.data(), dict_data, dict_size * sizeof(Int64)); + memcpy(dict.data(), dict_data, dict_size * sizeof(typename DataType::FieldType)); } template @@ -515,7 +572,7 @@ void OptionalColumnReader::nextBatchNullMapIfNeeded(size_t rows_to_read) } } -void OptionalColumnReader::computeRowSet(RowSet & row_set, size_t rows_to_read) +void OptionalColumnReader::computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) { applyLazySkip(); nextBatchNullMapIfNeeded(rows_to_read); @@ -525,7 +582,7 @@ void OptionalColumnReader::computeRowSet(RowSet & row_set, size_t rows_to_read) child->computeRowSet(row_set, rows_to_read); } -void OptionalColumnReader::read(MutableColumnPtr & column, RowSet & row_set, size_t rows_to_read) +void OptionalColumnReader::read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) { applyLazySkip(); nextBatchNullMapIfNeeded(rows_to_read); @@ -533,14 +590,19 @@ void OptionalColumnReader::read(MutableColumnPtr & column, RowSet & row_set, siz auto * nullable_column = static_cast(column.get()); auto nested_column = nullable_column->getNestedColumnPtr()->assumeMutable(); auto & null_data = nullable_column->getNullMapData(); - - for (size_t i = 0; i < rows_to_read; i++) + if (row_set.has_value()) { - if (row_set.get(i)) + const auto & sets = row_set.value(); + for (size_t i = 0; i < rows_to_read; i++) { - null_data.push_back(cur_null_map[i]); + if (sets.get(i)) + { + null_data.push_back(cur_null_map[i]); + } } } + else + null_data.insert(cur_null_map.begin(), cur_null_map.end()); if (cur_null_count) { child->readSpace(nested_column, row_set, cur_null_map, cur_null_count, rows_to_read); @@ -667,36 +729,435 @@ Int32 loadLength(const uint8_t * data) } return value_len; } -void computeRowSetPlainString(const uint8_t * start, RowSet & row_set, ColumnFilterPtr filter, size_t rows_to_read) +void computeRowSetPlainString(const uint8_t * start, OptionalRowSet & row_set, ColumnFilterPtr filter, size_t rows_to_read) { - if (!filter) + if (!filter || !row_set.has_value()) return; size_t offset = 0; + auto & sets = row_set.value(); for (size_t i = 0; i < rows_to_read; i++) { auto len = loadLength(start + offset); offset += 4; - row_set.set(i, filter->testString(String(reinterpret_cast(start + offset), len))); + sets.set(i, filter->testString(String(reinterpret_cast(start + offset), len))); offset += len; } } void computeRowSetPlainStringSpace( - const uint8_t * start, RowSet & row_set, ColumnFilterPtr filter, size_t rows_to_read, PaddedPODArray & null_map) + const uint8_t * start, OptionalRowSet & row_set, ColumnFilterPtr filter, size_t rows_to_read, PaddedPODArray & null_map) { - if (!filter) + if (!filter || !row_set.has_value()) return; size_t offset = 0; + auto & sets = row_set.value(); for (size_t i = 0; i < rows_to_read; i++) { if (null_map[i]) { - row_set.set(i, filter->testNull()); + sets.set(i, filter->testNull()); continue; } auto len = loadLength(start + offset); offset += 4; - row_set.set(i, filter->testString(String(reinterpret_cast(start + offset), len))); + sets.set(i, filter->testString(String(reinterpret_cast(start + offset), len))); offset += len; } } + +void StringDictionaryReader::nextIdxBatchIfEmpty(size_t rows_to_read) +{ + if (!state.idx_buffer.empty() || plain) + return; + state.idx_buffer.resize(rows_to_read); + idx_decoder.GetBatch(state.idx_buffer.data(), static_cast(rows_to_read)); +} + +void StringDictionaryReader::initIndexDecoderIfNeeded() +{ + if (dict.empty()) + return; + uint8_t bit_width = *state.buffer; + idx_decoder = arrow::util::RleDecoder(++state.buffer, static_cast(--state.buffer_size), bit_width); +} + +void StringDictionaryReader::readDictPage(const parquet::DictionaryPage & page) +{ + const auto * dict_data = page.data(); + size_t dict_size = page.num_values(); + dict.reserve(dict_size); + state.filter_cache = std::make_unique(dict_size); + for (size_t i = 0; i < dict_size; i++) + { + auto len = loadLength(dict_data); + dict_data += 4; + String value; + value.resize(len); + memcpy(value.data(), dict_data, len); + dict.emplace_back(value); + dict_data += len; + } +} + +size_t StringDictionaryReader::skipValuesInCurrentPage(size_t rows_to_skip) +{ + if (!state.page || !rows_to_skip) + return rows_to_skip; + size_t skipped = std::min(state.remain_rows, rows_to_skip); + state.remain_rows -= skipped; + if (plain) + { + size_t offset = 0; + for (size_t i = 0; i < skipped; i++) + { + auto len = loadLength(state.buffer + offset); + offset += 4 + len; + } + state.buffer += offset; + } + else + { + if (!state.idx_buffer.empty()) + { + // only support skip all + chassert(state.idx_buffer.size() == skipped); + state.idx_buffer.resize(0); + } + else + { + state.idx_buffer.resize(skipped); + idx_decoder.GetBatch(state.idx_buffer.data(), static_cast(skipped)); + state.idx_buffer.resize(0); + } + } + return rows_to_skip - skipped; +} + +void StringDictionaryReader::readSpace( + MutableColumnPtr & column, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) +{ + readAndDecodePage(); + ColumnString * string_column = reinterpret_cast(column.get()); + if (plain) + { + size_t total_size = plain_decoder->calculateStringTotalSizeSpace(state.buffer, row_set, null_map, rows_to_read); + string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_to_read); + string_column->getChars().reserve(string_column->getChars().size() + total_size); + plain_decoder->decodeStringSpace(string_column->getChars(), string_column->getOffsets(), row_set, null_map, rows_to_read); + } + else + { + auto nonnull_count = rows_to_read - null_count; + nextIdxBatchIfEmpty(nonnull_count); + dict_decoder->decodeStringSpace(dict, string_column->getChars(), string_column->getOffsets(), row_set, null_map, rows_to_read); + } +} + +void StringDictionaryReader::read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) +{ + readAndDecodePage(); + ColumnString * string_column = reinterpret_cast(column.get()); + if (plain) + { + size_t total_size = plain_decoder->calculateStringTotalSize(state.buffer, row_set, rows_to_read); + string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_to_read); + string_column->getChars().reserve(string_column->getChars().size() + total_size); + plain_decoder->decodeString(string_column->getChars(), string_column->getOffsets(), row_set, rows_to_read); + } + else + { + nextIdxBatchIfEmpty(rows_to_read); + dict_decoder->decodeString(dict, string_column->getChars(), string_column->getOffsets(), row_set, rows_to_read); + } +} + +void StringDictionaryReader::computeRowSetSpace( + OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) +{ + readAndDecodePage(); + chassert(rows_to_read <= state.remain_rows); + if (plain) + { + computeRowSetPlainStringSpace(state.buffer, row_set, scan_spec.filter, rows_to_read, null_map); + return; + } + auto nonnull_count = rows_to_read - null_count; + nextIdxBatchIfEmpty(nonnull_count); + if (scan_spec.filter || row_set.has_value()) + { + auto & cache = *state.filter_cache; + auto & sets = row_set.value(); + int count = 0; + for (size_t i = 0; i < rows_to_read; ++i) + { + if (null_map[i]) + { + if (!cache.hasNull()) + { + cache.setNull(scan_spec.filter->testNull()); + } + sets.set(i, cache.getNull()); + } + else + { + int idx = state.idx_buffer[count++]; + if (!cache.has(idx)) + { + cache.set(idx, scan_spec.filter->testString(dict[idx])); + } + sets.set(i, cache.get(idx)); + } + } + } +} + +void StringDictionaryReader::computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) +{ + readAndDecodePage(); + chassert(rows_to_read <= state.remain_rows); + if (plain) + { + computeRowSetPlainString(state.buffer, row_set, scan_spec.filter, rows_to_read); + return; + } + nextIdxBatchIfEmpty(rows_to_read); + if (scan_spec.filter || row_set.has_value()) + { + auto & cache = *state.filter_cache; + for (size_t i = 0; i < rows_to_read; ++i) + { + auto & sets = row_set.value(); + int idx = state.idx_buffer[i]; + if (!cache.has(idx)) + { + cache.set(idx, scan_spec.filter->testString(dict[idx])); + } + sets.set(i, cache.get(idx)); + } + } +} + +void StringDictionaryReader::downgradeToPlain() +{ + dict_decoder = nullptr; + dict.clear(); +} + +size_t StringDirectReader::skipValuesInCurrentPage(size_t rows_to_skip) +{ + if (!state.page || !rows_to_skip) + return rows_to_skip; + size_t skipped = std::min(state.remain_rows, rows_to_skip); + state.remain_rows -= skipped; + size_t offset = 0; + for (size_t i = 0; i < skipped; i++) + { + auto len = loadLength(state.buffer + offset); + offset += 4 + len; + } + state.buffer += offset; + return rows_to_skip - skipped; +} + +void StringDirectReader::readSpace( + MutableColumnPtr & column, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) +{ + ColumnString * string_column = reinterpret_cast(column.get()); + size_t total_size = plain_decoder->calculateStringTotalSizeSpace(state.buffer, row_set, null_map, rows_to_read - null_count); + string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_to_read); + string_column->getChars().reserve(string_column->getChars().size() + total_size); + plain_decoder->decodeStringSpace(string_column->getChars(), string_column->getOffsets(), row_set, null_map, rows_to_read); +} + +void StringDirectReader::read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) +{ + ColumnString * string_column = reinterpret_cast(column.get()); + size_t total_size = plain_decoder->calculateStringTotalSize(state.buffer, row_set, rows_to_read); + string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_to_read); + string_column->getChars().reserve(string_column->getChars().size() + total_size); + plain_decoder->decodeString(string_column->getChars(), string_column->getOffsets(), row_set, rows_to_read); +} + +void StringDirectReader::computeRowSetSpace(OptionalRowSet & row_set, PaddedPODArray & null_map, size_t, size_t rows_to_read) +{ + readAndDecodePage(); + computeRowSetPlainStringSpace(state.buffer, row_set, scan_spec.filter, rows_to_read, null_map); +} + +void StringDirectReader::computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) +{ + readAndDecodePage(); + computeRowSetPlainString(state.buffer, row_set, scan_spec.filter, rows_to_read); +} + +void DictDecoder::decodeStringSpace( + std::vector & dict, + ColumnString::Chars & chars, + IColumn::Offsets & offsets, + const OptionalRowSet & row_set, + PaddedPODArray & null_map, + size_t rows_to_read) +{ + size_t rows_read = 0; + size_t count = 0; + if (row_set.has_value()) + { + const auto & sets = row_set.value(); + while (rows_read < rows_to_read) + { + if (sets.get(rows_read)) + { + if (null_map[rows_read]) + { + chars.push_back(0); + offsets.push_back(chars.size()); + } + else + { + String value = dict[idx_buffer[count]]; + chars.insert(value.data(), value.data() + value.size()); + chars.push_back(0); + offsets.push_back(chars.size()); + count++; + } + } + else if (!null_map[rows_read]) + count++; + rows_read++; + } + } + else + { + while (rows_read < rows_to_read) + { + if (null_map[rows_read]) + { + chars.push_back(0); + offsets.push_back(chars.size()); + } + else + { + String value = dict[idx_buffer[count]]; + chars.insert(value.data(), value.data() + value.size()); + chars.push_back(0); + offsets.push_back(chars.size()); + count++; + } + rows_read++; + } + } + chassert(count == idx_buffer.size()); + remain_rows -= rows_to_read; + idx_buffer.resize(0); +} +void DictDecoder::decodeString( + std::vector & dict, + ColumnString::Chars & chars, + IColumn::Offsets & offsets, + const OptionalRowSet & row_set, + size_t rows_to_read) +{ + if (row_set.has_value()) + { + const auto & sets = row_set.value(); + for (size_t i = 0; i < rows_to_read; i++) + { + if (sets.get(i)) + { + String & value = dict[idx_buffer[i]]; + auto chars_cursor = chars.size(); + chars.resize(chars_cursor + value.size() + 1); + memcpySmallAllowReadWriteOverflow15(&chars[chars_cursor], value.data(), value.size()); + chars.back() = 0; + offsets.push_back(chars.size()); + } + } + } + else + { + for (size_t i = 0; i < rows_to_read; i++) + { + String & value = dict[idx_buffer[i]]; + auto chars_cursor = chars.size(); + chars.resize(chars_cursor + value.size() + 1); + memcpySmallAllowReadWriteOverflow15(&chars[chars_cursor], value.data(), value.size()); + chars.back() = 0; + offsets.push_back(chars.size()); + } + } + idx_buffer.resize(0); + remain_rows -= rows_to_read; +} +template +void DictDecoder::decodeFixedValue( + PaddedPODArray & dict, + PaddedPODArray & data, + const OptionalRowSet & row_set, + size_t rows_to_read) +{ + size_t rows_read = 0; + if (row_set.has_value()) + { + const auto & sets = row_set.value(); + while (rows_read < rows_to_read) + { + if (sets.get(rows_read)) + { + data.push_back(dict[idx_buffer[rows_read]]); + } + rows_read++; + } + } + else + { + while (rows_read < rows_to_read) + { + data.push_back(dict[idx_buffer[rows_read]]); + rows_read++; + } + } + idx_buffer.resize(0); + remain_rows -= rows_to_read; +} +template +void DictDecoder::decodeFixedValueSpace( + PaddedPODArray & dict, + PaddedPODArray & data, + const OptionalRowSet & row_set, + PaddedPODArray & null_map, + size_t rows_to_read) +{ + size_t rows_read = 0; + size_t count = 0; + if (row_set.has_value()) + { + const auto & sets = row_set.value(); + while (rows_read < rows_to_read) + { + if (sets.get(rows_read)) + { + if (null_map[rows_read]) + data.push_back(0); + else + data.push_back(dict[idx_buffer[count++]]); + } + else if (!null_map[rows_read]) + count++; + rows_read++; + } + } + else + { + while (rows_read < rows_to_read) + { + if (null_map[rows_read]) + data.push_back(0); + else + data.push_back(dict[idx_buffer[count++]]); + rows_read++; + } + } + chassert(count == idx_buffer.size()); + remain_rows -= rows_to_read; + idx_buffer.resize(0); +} } diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h index 1de3fa0e5c2..6783b8034aa 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h @@ -40,21 +40,21 @@ public: filter_cache.resize(size); } - bool has(size_t size) { return cache_set.test(size); } + inline bool has(size_t size) { return cache_set.test(size); } - bool hasNull() const { return exist_null; } + inline bool hasNull() const { return exist_null; } - bool getNull() const { return value_null; } + inline bool getNull() const { return value_null; } - void setNull(bool value) + inline void setNull(bool value) { exist_null = true; value_null = value; } - bool get(size_t size) { return filter_cache.test(size); } + inline bool get(size_t size) { return filter_cache.test(size); } - void set(size_t size, bool value) + inline void set(size_t size, bool value) { cache_set.set(size, true); filter_cache.set(size, value); @@ -93,19 +93,20 @@ public: PlainDecoder(const uint8_t *& buffer_, size_t & remain_rows_) : buffer(buffer_), remain_rows(remain_rows_) { } template - void decodeFixedValue(PaddedPODArray & data, RowSet & row_set, size_t rows_to_read) + void decodeFixedValue(PaddedPODArray & data, const OptionalRowSet & row_set, size_t rows_to_read) { const T * start = reinterpret_cast(buffer); - if (row_set.all()) + if (!row_set.has_value()) { data.insert_assume_reserved(start, start + rows_to_read); } else { size_t rows_read = 0; + const auto & sets = row_set.value(); while (rows_read < rows_to_read) { - if (row_set.get(rows_read)) + if (sets.get(rows_read)) { data.push_back(start[rows_read]); } @@ -117,36 +118,52 @@ public: remain_rows -= rows_to_read; } - void decodeString(ColumnString::Chars & chars, ColumnString::Offsets & offsets, const RowSet & row_set, size_t rows_to_read) + void decodeString(ColumnString::Chars & chars, ColumnString::Offsets & offsets, const OptionalRowSet & row_set, size_t rows_to_read) { size_t offset = 0; - for (size_t i = 0; i < rows_to_read; i++) + if (row_set.has_value()) { - auto len = loadLength(buffer + offset); - offset += 4; - if (row_set.get(i)) + const auto & sets = row_set.value(); + for (size_t i = 0; i < rows_to_read; i++) { + auto len = loadLength(buffer + offset); + offset += 4; + if (sets.get(i)) + { + chars.insert_assume_reserved(buffer + offset, buffer + offset + len); + chars.push_back(0); + offsets.push_back(chars.size()); + offset += len; + } + else + { + offset += len; + } + } + } + else + { + for (size_t i = 0; i < rows_to_read; i++) + { + auto len = loadLength(buffer + offset); + offset += 4; chars.insert_assume_reserved(buffer + offset, buffer + offset + len); chars.push_back(0); offsets.push_back(chars.size()); offset += len; } - else - { - offset += len; - } } buffer += offset; remain_rows -= rows_to_read; } template - void decodeFixedValueSpace(PaddedPODArray & data, RowSet & row_set, PaddedPODArray & null_map, size_t rows_to_read) + void decodeFixedValueSpace(PaddedPODArray & data, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t rows_to_read) { size_t rows_read = 0; const T * start = reinterpret_cast(buffer); size_t count = 0; - if (row_set.all()) + if (!row_set.has_value()) { for (size_t i = 0; i < rows_to_read; i++) { @@ -163,9 +180,10 @@ public: } else { + const auto & sets = row_set.value(); while (rows_read < rows_to_read) { - if (row_set.get(rows_read)) + if (sets.get(rows_read)) { if (null_map[rows_read]) { @@ -187,42 +205,64 @@ public: void decodeStringSpace( ColumnString::Chars & chars, ColumnString::Offsets & offsets, - const RowSet & row_set, + const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t rows_to_read) { size_t offset = 0; - for (size_t i = 0; i < rows_to_read; i++) + if (row_set.has_value()) { - if (null_map[i]) + const auto & sets = row_set.value(); + for (size_t i = 0; i < rows_to_read; i++) { - if (row_set.get(i)) + if (null_map[i]) { - // null string + if (sets.get(i)) + { + // null string + chars.push_back(0); + offsets.push_back(chars.size()); + } + continue; + } + auto len = loadLength(buffer + offset); + offset += 4; + if (sets.get(i)) + { + chars.insert_assume_reserved(buffer + offset, buffer + offset + len); chars.push_back(0); offsets.push_back(chars.size()); + offset += len; + } + else + { + offset += len; } - continue; } - auto len = loadLength(buffer + offset); - offset += 4; - if (row_set.get(i)) + } + else + { + for (size_t i = 0; i < rows_to_read; i++) { + if (null_map[i]) + { + chars.push_back(0); + offsets.push_back(chars.size()); + continue; + } + auto len = loadLength(buffer + offset); + offset += 4; chars.insert_assume_reserved(buffer + offset, buffer + offset + len); chars.push_back(0); offsets.push_back(chars.size()); offset += len; } - else - { - offset += len; - } } buffer += offset; remain_rows -= rows_to_read; } - size_t calculateStringTotalSize(const uint8_t * data, const RowSet & row_set, const size_t rows_to_read) + size_t calculateStringTotalSize(const uint8_t * data, const OptionalRowSet & row_set, const size_t rows_to_read) { size_t offset = 0; size_t total_size = 0; @@ -234,7 +274,7 @@ public: } size_t - calculateStringTotalSizeSpace(const uint8_t * data, const RowSet & row_set, PaddedPODArray & null_map, const size_t rows_to_read) + calculateStringTotalSizeSpace(const uint8_t * data, const OptionalRowSet & row_set, PaddedPODArray & null_map, const size_t rows_to_read) { size_t offset = 0; size_t total_size = 0; @@ -246,18 +286,33 @@ public: } private: - void addOneString(bool null, const uint8_t * data, size_t & offset, const RowSet & row_set, size_t row, size_t & total_size) + void addOneString(bool null, const uint8_t * data, size_t & offset, const OptionalRowSet & row_set, size_t row, size_t & total_size) { - if (null) + if (row_set.has_value()) { - if (row_set.get(row)) total_size++; - return; + const auto & sets = row_set.value(); + if (null) + { + if (sets.get(row)) + total_size++; + return; + } + auto len = loadLength(data + offset); + offset += 4 + len; + if (sets.get(row)) + total_size += len + 1; } - auto len = loadLength(data + offset); - chassert(len <= 16); - offset += 4 + len; - if (row_set.get(row)) + else + { + if (null) + { + total_size++; + return; + } + auto len = loadLength(data + offset); + offset += 4 + len; total_size += len + 1; + } } const uint8_t *& buffer; @@ -270,112 +325,30 @@ public: DictDecoder(PaddedPODArray & idx_buffer_, size_t & remain_rows_) : idx_buffer(idx_buffer_), remain_rows(remain_rows_) { } template - void decodeFixedValue(PaddedPODArray & dict, PaddedPODArray & data, RowSet & row_set, size_t rows_to_read) - { - size_t rows_read = 0; - while (rows_read < rows_to_read) - { - if (row_set.get(rows_read)) - { - data.push_back(dict[idx_buffer[rows_read]]); - } - rows_read++; - } - idx_buffer.resize(0); - remain_rows -= rows_to_read; - } + void decodeFixedValue(PaddedPODArray & dict, PaddedPODArray & data, const OptionalRowSet & row_set, size_t rows_to_read); void decodeString( std::vector & dict, ColumnString::Chars & chars, ColumnString::Offsets & offsets, - const RowSet & row_set, - size_t rows_to_read) - { - for (size_t i = 0; i < rows_to_read; i++) - { - if (row_set.get(i)) - { - String& value = dict[idx_buffer[i]]; - auto chars_cursor = chars.size(); - chars.resize(chars_cursor + value.size() + 1); - memcpySmallAllowReadWriteOverflow15(&chars[chars_cursor], value.data(), value.size()); - chars.back() = 0; - offsets.push_back(chars.size()); - } - } - idx_buffer.resize(0); - remain_rows -= rows_to_read; - } + const OptionalRowSet & row_set, + size_t rows_to_read); template void decodeFixedValueSpace( PaddedPODArray & dict, PaddedPODArray & data, - RowSet & row_set, + const OptionalRowSet & row_set, PaddedPODArray & null_map, - size_t rows_to_read) - { - size_t rows_read = 0; - size_t count = 0; - while (rows_read < rows_to_read) - { - if (row_set.get(rows_read)) - { - if (null_map[rows_read]) - { - data.push_back(0); - } - else - { - data.push_back(dict[idx_buffer[count++]]); - } - } - else if (!null_map[rows_read]) - count++; - rows_read++; - } - chassert(count == idx_buffer.size()); - remain_rows -= rows_to_read; - idx_buffer.resize(0); - } + size_t rows_to_read); void decodeStringSpace( std::vector & dict, ColumnString::Chars & chars, ColumnString::Offsets & offsets, - const RowSet & row_set, + const OptionalRowSet & row_set, PaddedPODArray & null_map, - size_t rows_to_read) - { - size_t rows_read = 0; - size_t count = 0; - while (rows_read < rows_to_read) - { - if (row_set.get(rows_read)) - { - if (null_map[rows_read]) - { - chars.push_back(0); - offsets.push_back(chars.size()); - } - else - { - String value = dict[idx_buffer[count]]; - chars.insert(value.data(), value.data() + value.size()); - chars.push_back(0); - offsets.push_back(chars.size()); - count++; - } - } - else if (!null_map[rows_read]) - count++; - rows_read++; - } - chassert(count == idx_buffer.size()); - remain_rows -= rows_to_read; - idx_buffer.resize(0); - } + size_t rows_to_read); private: PaddedPODArray & idx_buffer; @@ -393,10 +366,10 @@ public: { } virtual ~SelectiveColumnReader() = default; - virtual void computeRowSet(RowSet & row_set, size_t rows_to_read) = 0; - virtual void computeRowSetSpace(RowSet &, PaddedPODArray &, size_t, size_t) { } - virtual void read(MutableColumnPtr & column, RowSet & row_set, size_t rows_to_read) = 0; - virtual void readSpace(MutableColumnPtr &, RowSet &, PaddedPODArray &, size_t, size_t) { } + virtual void computeRowSet(std::optional & row_set, size_t rows_to_read) = 0; + virtual void computeRowSetSpace(OptionalRowSet &, PaddedPODArray &, size_t, size_t) { } + virtual void read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) = 0; + virtual void readSpace(MutableColumnPtr &, const OptionalRowSet &, PaddedPODArray &, size_t, size_t) { } virtual void readPageIfNeeded(); void readAndDecodePage() { @@ -413,20 +386,9 @@ public: virtual size_t currentRemainRows() const { return state.remain_rows; } - void skipNulls(size_t rows_to_skip) - { - auto skipped = std::min(rows_to_skip, state.remain_rows); - state.remain_rows -= skipped; - state.lazy_skip_rows += (rows_to_skip - skipped); - } + void skipNulls(size_t rows_to_skip); - void skip(size_t rows) - { - state.lazy_skip_rows += rows; - state.lazy_skip_rows = skipValuesInCurrentPage(state.lazy_skip_rows); - // std::cerr << "lazy skip " << state.lazy_skip_rows << " rows" << std::endl; - skipPageIfNeed(); - } + void skip(size_t rows); // skip values in current page, return the number of rows need to lazy skip virtual size_t skipValuesInCurrentPage(size_t rows_to_skip) = 0; @@ -459,11 +421,11 @@ public: NumberColumnDirectReader(std::unique_ptr page_reader_, ScanSpec scan_spec_); ~NumberColumnDirectReader() override = default; MutableColumnPtr createColumn() override; - void computeRowSet(RowSet & row_set, size_t rows_to_read) override; - void computeRowSetSpace(RowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override; - void read(MutableColumnPtr & column, RowSet & row_set, size_t rows_to_read) override; + void computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) override; + void computeRowSetSpace(OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override; + void read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) override; void readSpace( - MutableColumnPtr & column, RowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override; + MutableColumnPtr & column, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override; size_t skipValuesInCurrentPage(size_t rows_to_skip) override; }; @@ -473,10 +435,10 @@ class NumberDictionaryReader : public SelectiveColumnReader public: NumberDictionaryReader(std::unique_ptr page_reader_, ScanSpec scan_spec_); ~NumberDictionaryReader() override = default; - void computeRowSet(RowSet & row_set, size_t rows_to_read) override; - void computeRowSetSpace(RowSet & set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override; - void read(MutableColumnPtr & column, RowSet & row_set, size_t rows_to_read) override; - void readSpace(MutableColumnPtr & ptr, RowSet & set, PaddedPODArray & null_map, size_t null_count, size_t size) override; + void computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) override; + void computeRowSetSpace(OptionalRowSet & set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override; + void read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) override; + void readSpace(MutableColumnPtr & ptr, const OptionalRowSet & set, PaddedPODArray & null_map, size_t null_count, size_t size) override; MutableColumnPtr createColumn() override { return DataType::ColumnType::create(); } size_t skipValuesInCurrentPage(size_t rows_to_skip) override; @@ -501,11 +463,11 @@ private: PaddedPODArray dict; }; -void computeRowSetPlainString(const uint8_t * start, RowSet & row_set, ColumnFilterPtr filter, size_t rows_to_read); +void computeRowSetPlainString(const uint8_t * start, OptionalRowSet & row_set, ColumnFilterPtr filter, size_t rows_to_read); void computeRowSetPlainStringSpace( - const uint8_t * start, RowSet & row_set, ColumnFilterPtr filter, size_t rows_to_read, PaddedPODArray & null_map); + const uint8_t * start, OptionalRowSet & row_set, ColumnFilterPtr filter, size_t rows_to_read, PaddedPODArray & null_map); class StringDirectReader : public SelectiveColumnReader @@ -516,48 +478,14 @@ public: { } - void computeRowSet(RowSet & row_set, size_t rows_to_read) override - { - readAndDecodePage(); - computeRowSetPlainString(state.buffer, row_set, scan_spec.filter, rows_to_read); - } - void computeRowSetSpace(RowSet & row_set, PaddedPODArray & null_map, size_t /*null_count*/, size_t rows_to_read) override - { - readAndDecodePage(); - computeRowSetPlainStringSpace(state.buffer, row_set, scan_spec.filter, rows_to_read, null_map); - } - void read(MutableColumnPtr & column, RowSet & row_set, size_t rows_to_read) override - { - ColumnString * string_column = reinterpret_cast(column.get()); - size_t total_size = plain_decoder->calculateStringTotalSize(state.buffer, row_set, rows_to_read); - string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_to_read); - string_column->getChars().reserve(string_column->getChars().size() + total_size); - plain_decoder->decodeString(string_column->getChars(), string_column->getOffsets(), row_set, rows_to_read); - } + void computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) override; + void computeRowSetSpace(OptionalRowSet & row_set, PaddedPODArray & null_map, size_t /*null_count*/, size_t rows_to_read) override; + void read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) override; + void readSpace( - MutableColumnPtr & column, RowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override - { - ColumnString * string_column = reinterpret_cast(column.get()); - size_t total_size = plain_decoder->calculateStringTotalSizeSpace(state.buffer, row_set, null_map, rows_to_read - null_count); - string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_to_read); - string_column->getChars().reserve(string_column->getChars().size() + total_size); - plain_decoder->decodeStringSpace(string_column->getChars(), string_column->getOffsets(), row_set, null_map, rows_to_read); - } - size_t skipValuesInCurrentPage(size_t rows_to_skip) override - { - if (!state.page || !rows_to_skip) - return rows_to_skip; - size_t skipped = std::min(state.remain_rows, rows_to_skip); - state.remain_rows -= skipped; - size_t offset = 0; - for (size_t i = 0; i < skipped; i++) - { - auto len = loadLength(state.buffer + offset); - offset += 4 + len; - } - state.buffer += offset; - return rows_to_skip - skipped; - } + MutableColumnPtr & column, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override; + + size_t skipValuesInCurrentPage(size_t rows_to_skip) override; MutableColumnPtr createColumn() override { return ColumnString::create(); } }; @@ -572,180 +500,27 @@ public: MutableColumnPtr createColumn() override { return ColumnString::create(); } - void computeRowSet(RowSet & row_set, size_t rows_to_read) override - { - readAndDecodePage(); - chassert(rows_to_read <= state.remain_rows); - if (plain) - { - computeRowSetPlainString(state.buffer, row_set, scan_spec.filter, rows_to_read); - return; - } - nextIdxBatchIfEmpty(rows_to_read); - if (scan_spec.filter || row_set.any()) - { - auto & cache = *state.filter_cache; - for (size_t i = 0; i < rows_to_read; ++i) - { - int idx = state.idx_buffer[0]; - if (!cache.has(idx)) - { - cache.set(idx, scan_spec.filter->testString(dict[idx])); - } - row_set.set(i, cache.get(idx)); - } - } - } - void computeRowSetSpace(RowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override - { - readAndDecodePage(); - chassert(rows_to_read <= state.remain_rows); - if (plain) - { - computeRowSetPlainStringSpace(state.buffer, row_set, scan_spec.filter, rows_to_read, null_map); - return; - } - auto nonnull_count = rows_to_read - null_count; - nextIdxBatchIfEmpty(nonnull_count); - if (scan_spec.filter || row_set.any()) - { - auto & cache = *state.filter_cache; - int count = 0; - for (size_t i = 0; i < rows_to_read; ++i) - { - if (null_map[i]) - { - if (!cache.hasNull()) - { - cache.setNull(scan_spec.filter->testNull()); - } - row_set.set(i, cache.getNull()); - } - else - { - int idx = state.idx_buffer[count++]; - if (!cache.has(idx)) - { - cache.set(idx, scan_spec.filter->testString(dict[idx])); - } - row_set.set(i, cache.get(idx)); - } - } - } - } - void read(MutableColumnPtr & column, RowSet & row_set, size_t rows_to_read) override - { - readAndDecodePage(); - ColumnString * string_column = reinterpret_cast(column.get()); - nextIdxBatchIfEmpty(rows_to_read); - if (plain) - { - size_t total_size = plain_decoder->calculateStringTotalSize(state.buffer, row_set, rows_to_read); - string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_to_read); - string_column->getChars().reserve(string_column->getChars().size() + total_size); - plain_decoder->decodeString(string_column->getChars(), string_column->getOffsets(), row_set, rows_to_read); - } - else - { - dict_decoder->decodeString(dict, string_column->getChars(), string_column->getOffsets(), row_set, rows_to_read); - } - } - void readSpace( - MutableColumnPtr & column, RowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override - { - readAndDecodePage(); - ColumnString * string_column = reinterpret_cast(column.get()); - auto nonnull_count = rows_to_read - null_count; - nextIdxBatchIfEmpty(nonnull_count); - if (plain) - { - size_t total_size = plain_decoder->calculateStringTotalSizeSpace(state.buffer, row_set, null_map, rows_to_read); - string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_to_read); - string_column->getChars().reserve(string_column->getChars().size() + total_size); - plain_decoder->decodeStringSpace(string_column->getChars(), string_column->getOffsets(), row_set, null_map, rows_to_read); - } - else - { - dict_decoder->decodeStringSpace(dict, string_column->getChars(), string_column->getOffsets(), row_set, null_map, rows_to_read); - } - } + void computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) override; - size_t skipValuesInCurrentPage(size_t rows_to_skip) override - { - if (!state.page || !rows_to_skip) - return rows_to_skip; - size_t skipped = std::min(state.remain_rows, rows_to_skip); - state.remain_rows -= skipped; - if (plain) - { - size_t offset = 0; - for (size_t i = 0; i < skipped; i++) - { - auto len = loadLength(state.buffer + offset); - offset += 4 + len; - } - state.buffer += offset; - } - else - { - if (!state.idx_buffer.empty()) - { - // only support skip all - chassert(state.idx_buffer.size() == skipped); - state.idx_buffer.resize(0); - } - else - { - state.idx_buffer.resize(skipped); - idx_decoder.GetBatch(state.idx_buffer.data(), static_cast(skipped)); - state.idx_buffer.resize(0); - } - } - return rows_to_skip - skipped; - } + void computeRowSetSpace(OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override; + + void read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) override; + + void readSpace(MutableColumnPtr & column, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override; + + size_t skipValuesInCurrentPage(size_t rows_to_skip) override; protected: - void readDictPage(const parquet::DictionaryPage & page) override - { - const auto * dict_data = page.data(); - size_t dict_size = page.num_values(); - dict.reserve(dict_size); - state.filter_cache = std::make_unique(dict_size); - for (size_t i = 0; i < dict_size; i++) - { - auto len = loadLength(dict_data); - dict_data += 4; - String value; - value.resize(len); - memcpy(value.data(), dict_data, len); - dict.emplace_back(value); - dict_data += len; - } - } - void initIndexDecoderIfNeeded() override - { - if (dict.empty()) - return; - uint8_t bit_width = *state.buffer; - idx_decoder = arrow::util::RleDecoder(++state.buffer, static_cast(--state.buffer_size), bit_width); - } + void readDictPage(const parquet::DictionaryPage & page) override; + + void initIndexDecoderIfNeeded() override; /// TODO move to DictDecoder - void nextIdxBatchIfEmpty(size_t rows_to_read) - { - if (!state.idx_buffer.empty() || plain) - return; - state.idx_buffer.resize(rows_to_read); - idx_decoder.GetBatch(state.idx_buffer.data(), static_cast(rows_to_read)); - } + void nextIdxBatchIfEmpty(size_t rows_to_read); void createDictDecoder() override { dict_decoder = std::make_unique(state.idx_buffer, state.remain_rows); } - void downgradeToPlain() override - { - dict_decoder = nullptr; - dict.clear(); - } + void downgradeToPlain() override; private: std::vector dict; @@ -755,16 +530,28 @@ private: class ParquetReader; + class RowGroupChunkReader { public: + struct ReadMetrics + { + size_t output_rows = 0; + size_t filtered_rows = 0; + size_t skipped_rows = 0; + }; RowGroupChunkReader( ParquetReader * parquetReader, std::shared_ptr rowGroupReader, std::unordered_map filters); Chunk readChunk(size_t rows); bool hasMoreRows() const { return remain_rows > 0; } - + void printMetrics(std::ostream & out) const + { + out << "metrics.output_rows: " << metrics.output_rows << "\n"; + out << "metrics.filtered_rows: " << metrics.filtered_rows << "\n"; + out << "metrics.skipped_rows: " << metrics.skipped_rows << "\n"; + } private: ParquetReader * parquet_reader; std::shared_ptr row_group_meta; @@ -773,6 +560,7 @@ private: std::vector column_readers; std::vector> column_buffers; size_t remain_rows = 0; + ReadMetrics metrics; }; class OptionalColumnReader : public SelectiveColumnReader @@ -790,8 +578,8 @@ public: void readPageIfNeeded() override { child->readPageIfNeeded(); } MutableColumnPtr createColumn() override; size_t currentRemainRows() const override; - void computeRowSet(RowSet & row_set, size_t rows_to_read) override; - void read(MutableColumnPtr & column, RowSet & row_set, size_t rows_to_read) override; + void computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) override; + void read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) override; size_t skipValuesInCurrentPage(size_t rows_to_skip) override; int16_t max_definition_level() const override { return child->max_definition_level(); } int16_t max_repetition_level() const override { return child->max_repetition_level(); } diff --git a/src/Processors/Formats/Impl/ParquetBlockInputFormat.cpp b/src/Processors/Formats/Impl/ParquetBlockInputFormat.cpp index 7384ce6cc1b..9143aa8f8eb 100644 --- a/src/Processors/Formats/Impl/ParquetBlockInputFormat.cpp +++ b/src/Processors/Formats/Impl/ParquetBlockInputFormat.cpp @@ -26,6 +26,8 @@ #include #include #include +#include +#include namespace CurrentMetrics { @@ -519,6 +521,21 @@ void ParquetBlockInputFormat::initializeIfNeeded() auto rows = adaptive_chunk_size(row_group); row_group_batches.back().adaptive_chunk_size = rows ? rows : format_settings.parquet.max_block_size; } + if (format_settings.parquet.use_native_reader) + { + auto * seekable_in = dynamic_cast(in); + if (!seekable_in) + throw DB::Exception(ErrorCodes::PARQUET_EXCEPTION, "native ParquetReader only supports SeekableReadBuffer"); + new_native_reader = std::make_shared( + getPort().getHeader(), + *seekable_in, + parquet::ArrowReaderProperties{}, + parquet::ReaderProperties(ArrowMemoryPool::instance()), + arrow_file, + format_settings); + if (filter.has_value()) + pushFilterToParquetReader(filter.value(), *new_native_reader); + } } void ParquetBlockInputFormat::initializeRowGroupBatchReader(size_t row_group_batch_idx) @@ -564,7 +581,6 @@ void ParquetBlockInputFormat::initializeRowGroupBatchReader(size_t row_group_bat // That version is >10 years old, so this is not very important. if (metadata->writer_version().VersionLt(parquet::ApplicationVersion::PARQUET_816_FIXED_VERSION())) arrow_properties.set_pre_buffer(false); - if (format_settings.parquet.use_native_reader) { #pragma clang diagnostic push @@ -574,14 +590,14 @@ void ParquetBlockInputFormat::initializeRowGroupBatchReader(size_t row_group_bat ErrorCodes::BAD_ARGUMENTS, "parquet native reader only supports little endian system currently"); #pragma clang diagnostic pop - - row_group_batch.native_record_reader = std::make_shared( - getPort().getHeader(), - arrow_properties, - reader_properties, - arrow_file, - format_settings, - row_group_batch.row_groups_idxs); + row_group_batch.row_group_chunk_reader = new_native_reader->getRowGroupChunkReader(row_group_batch_idx); +// row_group_batch.native_record_reader = std::make_shared( +// getPort().getHeader(), +// arrow_properties, +// reader_properties, +// arrow_file, +// format_settings, +// row_group_batch.row_groups_idxs); } else { @@ -667,6 +683,9 @@ void ParquetBlockInputFormat::decodeOneChunk(size_t row_group_batch_idx, std::un lock.unlock(); auto end_of_row_group = [&] { + if (row_group_batch.row_group_chunk_reader) + row_group_batch.row_group_chunk_reader->printMetrics(std::cerr); + row_group_batch.row_group_chunk_reader.reset(); row_group_batch.native_record_reader.reset(); row_group_batch.arrow_column_to_ch_column.reset(); row_group_batch.record_batch_reader.reset(); @@ -686,7 +705,7 @@ void ParquetBlockInputFormat::decodeOneChunk(size_t row_group_batch_idx, std::un return static_cast(std::ceil(static_cast(row_group_batch.total_bytes_compressed) / row_group_batch.total_rows * num_rows)); }; - if (!row_group_batch.record_batch_reader && !row_group_batch.native_record_reader) + if (!row_group_batch.record_batch_reader && !row_group_batch.row_group_chunk_reader) initializeRowGroupBatchReader(row_group_batch_idx); PendingChunk res(getPort().getHeader().columns()); @@ -695,7 +714,7 @@ void ParquetBlockInputFormat::decodeOneChunk(size_t row_group_batch_idx, std::un if (format_settings.parquet.use_native_reader) { - auto chunk = row_group_batch.native_record_reader->readChunk(); + auto chunk = row_group_batch.row_group_chunk_reader->readChunk(row_group_batch.adaptive_chunk_size); if (!chunk) { end_of_row_group(); @@ -841,6 +860,18 @@ const BlockMissingValues * ParquetBlockInputFormat::getMissingValues() const { return &previous_block_missing_values; } +void ParquetBlockInputFormat::setKeyCondition(const std::optional & expr, ContextPtr context) +{ + if (expr.has_value()) + filter = std::optional(expr.value().clone()); + SourceWithKeyCondition::setKeyCondition(expr, context); +} + +void ParquetBlockInputFormat::setKeyCondition(const std::shared_ptr & key_condition_) +{ + filter = std::optional(key_condition_->getFilterDagCopy()); + SourceWithKeyCondition::setKeyCondition(key_condition_); +} ParquetSchemaReader::ParquetSchemaReader(ReadBuffer & in_, const FormatSettings & format_settings_) : ISchemaReader(in_), format_settings(format_settings_) diff --git a/src/Processors/Formats/Impl/ParquetBlockInputFormat.h b/src/Processors/Formats/Impl/ParquetBlockInputFormat.h index 67439129047..becab68cf3f 100644 --- a/src/Processors/Formats/Impl/ParquetBlockInputFormat.h +++ b/src/Processors/Formats/Impl/ParquetBlockInputFormat.h @@ -19,6 +19,8 @@ namespace DB class ArrowColumnToCHColumn; class ParquetRecordReader; +class ParquetReader; +class RowGroupChunkReader; // Parquet files contain a metadata block with the following information: // * list of columns, @@ -67,6 +69,9 @@ public: size_t getApproxBytesReadForChunk() const override { return previous_approx_bytes_read_for_chunk; } + void setKeyCondition(const std::optional & expr, ContextPtr context) override; + + void setKeyCondition(const std::shared_ptr & key_condition_) override; private: Chunk read() override; @@ -220,6 +225,7 @@ private: std::shared_ptr native_record_reader; std::unique_ptr file_reader; std::shared_ptr record_batch_reader; + std::unique_ptr row_group_chunk_reader; std::unique_ptr arrow_column_to_ch_column; }; @@ -292,6 +298,8 @@ private: std::exception_ptr background_exception = nullptr; std::atomic is_stopped{0}; bool is_initialized = false; + std::shared_ptr new_native_reader = nullptr; + std::optional filter = std::nullopt; }; class ParquetSchemaReader : public ISchemaReader diff --git a/src/Processors/tests/gtest_native_parquet_reader.cpp b/src/Processors/tests/gtest_native_parquet_reader.cpp index 62eb0e9e68c..1224b9a127b 100644 --- a/src/Processors/tests/gtest_native_parquet_reader.cpp +++ b/src/Processors/tests/gtest_native_parquet_reader.cpp @@ -1,24 +1,27 @@ #include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include #include #include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include -#include #include +#include #include #include +#include + using namespace DB; @@ -54,7 +57,7 @@ void headBlock(const DB::Block & block, size_t count) } -void writeParquet(Chunk&& chunk, const Block& header, const String & path) +void writeParquet(Chunk && chunk, const Block & header, const String & path) { WriteBufferFromFile out(path); FormatSettings formatSettings; @@ -70,7 +73,7 @@ void writeParquet(Chunk&& chunk, const Block& header, const String & path) executor.execute(); } -std::unique_ptr openParquet(const Block& header, ReadBufferFromFile& in, std::shared_ptr file) +std::unique_ptr openParquet(const Block & header, ReadBufferFromFile & in) { parquet::ArrowReaderProperties arrow_properties; parquet::ReaderProperties reader_properties(ArrowMemoryPool::instance()); @@ -84,17 +87,18 @@ std::unique_ptr openParquet(const Block& header, ReadBufferFromFi arrow_properties.set_cache_options(cache_options); std::atomic is_cancelled{0}; FormatSettings settings; - settings.parquet.max_block_size = DEFAULT_BLOCK_SIZE; + settings.parquet.max_block_size = 8192; auto arrow_file = asArrowFile(in, settings, is_cancelled, "Parquet", PARQUET_MAGIC_BYTES, /* avoid_buffering */ true); - return std::unique_ptr(new ParquetReader(header.cloneEmpty(), file, arrow_properties, reader_properties, arrow_file, settings)); + return std::make_unique( + header.cloneEmpty(), in, arrow_properties, reader_properties, arrow_file, settings); } -void testOldParquet(const Block& header, ReadBufferFromFile& in) +void testOldParquet(const Block & header, ReadBufferFromFile & in) { QueryPipelineBuilder builder; FormatSettings settings; - auto format = std::make_shared(in, header, settings, 1, 1024*1024); + auto format = std::make_shared(in, header, settings, 1, 1024 * 1024); builder.init(Pipe(format)); auto pipeline = QueryPipelineBuilder::getPipeline(std::move(builder)); PullingPipelineExecutor executor(pipeline); @@ -103,12 +107,11 @@ void testOldParquet(const Block& header, ReadBufferFromFile& in) { Block block; executor.pull(block); - count +=block.rows(); + count += block.rows(); if (block.rows() == 0) break; } -// std::cerr << "total count: " << count << std::endl; - + // std::cerr << "total count: " << count << std::endl; } void benchmark(String name, int count, std::function testcase) @@ -119,12 +122,12 @@ void benchmark(String name, int count, std::function testcase) Stopwatch time; testcase(); times.push_back(time.elapsedMicroseconds()); -// std::cerr << "iteration: " << i << " time : " << time.elapsedMilliseconds() << std::endl; + // std::cerr << "iteration: " << i << " time : " << time.elapsedMilliseconds() << std::endl; } - std::cerr<< name << " Time: " << *std::min_element(times.begin(), times.end()) << std::endl; + std::cerr << name << " Time: " << *std::min_element(times.begin(), times.end()) << std::endl; } -TEST(Processors, TestReadInt64) +TEST(Processors, BenchmarkReadInt64) { auto col1 = ColumnInt64::create(); auto col2 = ColumnInt64::create(); @@ -137,34 +140,34 @@ TEST(Processors, TestReadInt64) int rows = 10000000; for (int i = 0; i < rows; ++i) { - col1->insertValue(std::rand() %100); - col2->insertValue(std::rand()); -// col3->insertValue(std::rand()); -// col4->insertValue(std::rand()); -// col5->insertValue(std::rand()); -// col6->insertValue(std::rand()); - col7->insertValue(std::rand()); + col1->insertValue(std::rand() % 100); + col2->insertValue(i); + col3->insertValue(i+1); + col4->insertValue(i+2); + col5->insertValue(i+3); + col6->insertValue(i+4); + col7->insertValue(i+5); } Columns columns; - RAND_MAX; columns.emplace_back(std::move(col1)); columns.emplace_back(std::move(col2)); -// columns.emplace_back(std::move(col3)); -// columns.emplace_back(std::move(col4)); -// columns.emplace_back(std::move(col5)); -// columns.emplace_back(std::move(col6)); + columns.emplace_back(std::move(col3)); + columns.emplace_back(std::move(col4)); + columns.emplace_back(std::move(col5)); + columns.emplace_back(std::move(col6)); columns.emplace_back(std::move(col7)); Chunk chunk(std::move(columns), rows); - Block header = {ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "x"), - ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "y1"), -// ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "y2"), -// ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "y3"), -// ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "y4"), -// ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "y5"), - ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "z")}; - const auto *path = "/tmp/test.parquet"; + Block header + = {ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "x"), + ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "y1"), + ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "y2"), + ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "y3"), + ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "y4"), + ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "y5"), + ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "z")}; + const auto * path = "/tmp/test.parquet"; writeParquet(std::move(chunk), header, path); auto old_test [[maybe_unused]] = [&]() @@ -176,8 +179,8 @@ TEST(Processors, TestReadInt64) auto new_test = [&]() { ReadBufferFromFile in(path); - auto reader = openParquet(header, in, std::make_shared(path)); -// reader->addFilter("x", std::make_shared( 0, 10)); + auto reader = openParquet(header, in); +// reader->addFilter("x", std::make_shared(0, 9, false)); int count [[maybe_unused]] = 0; while (auto block = reader->read()) { @@ -185,7 +188,7 @@ TEST(Processors, TestReadInt64) if (block.rows() == 0) break; } -// std::cerr << "total count: " << count << std::endl; + // std::cerr << "total count: " << count << std::endl; }; std::cerr << "start benchmark \n"; benchmark("arrow", 21, old_test); @@ -221,15 +224,16 @@ TEST(Processors, TestReadNullableInt64) Chunk chunk(std::move(columns), rows); - Block header = {ColumnWithTypeAndName(type->createColumn(), type, "x"), - ColumnWithTypeAndName(type->createColumn(), type, "y"), - ColumnWithTypeAndName(type->createColumn(), type, "z")}; + Block header + = {ColumnWithTypeAndName(type->createColumn(), type, "x"), + ColumnWithTypeAndName(type->createColumn(), type, "y"), + ColumnWithTypeAndName(type->createColumn(), type, "z")}; auto path = "/tmp/test.parquet"; writeParquet(std::move(chunk), header, path); ReadBufferFromFile in(path); - auto reader = openParquet(header, in, std::make_shared(path)); -// reader->addFilter("x", std::make_shared( 1000, 2000)); + auto reader = openParquet(header, in); + // reader->addFilter("x", std::make_shared( 1000, 2000)); int count = 0; int null_count2 = 0; while (auto block = reader->read()) @@ -278,16 +282,17 @@ TEST(Processors, TestReadNullableFloat) Chunk chunk(std::move(columns), rows); - Block header = {ColumnWithTypeAndName(float_type->createColumn(), float_type, "x"), - ColumnWithTypeAndName(double_type->createColumn(), double_type, "y"), - ColumnWithTypeAndName(double_type->createColumn(), double_type, "z")}; + Block header + = {ColumnWithTypeAndName(float_type->createColumn(), float_type, "x"), + ColumnWithTypeAndName(double_type->createColumn(), double_type, "y"), + ColumnWithTypeAndName(double_type->createColumn(), double_type, "z")}; headBlock(header.cloneWithColumns(chunk.getColumns()), 20); auto path = "/tmp/test.parquet"; writeParquet(std::move(chunk), header, path); ReadBufferFromFile in(path); - auto reader = openParquet(header, in, std::make_shared(path)); -// reader->addFilter("x", std::make_shared( 1000, 2000)); + auto reader = openParquet(header, in); + // reader->addFilter("x", std::make_shared( 1000, 2000)); int count = 0; int null_count2 = 0; bool first = true; @@ -341,16 +346,17 @@ TEST(Processors, TestReadNullableString) Chunk chunk(std::move(columns), rows); - Block header = {ColumnWithTypeAndName(string_type->createColumn(), string_type, "x"), - ColumnWithTypeAndName(string_type->createColumn(), string_type, "y"), - ColumnWithTypeAndName(string_type->createColumn(), string_type, "z")}; + Block header + = {ColumnWithTypeAndName(string_type->createColumn(), string_type, "x"), + ColumnWithTypeAndName(string_type->createColumn(), string_type, "y"), + ColumnWithTypeAndName(string_type->createColumn(), string_type, "z")}; headBlock(header.cloneWithColumns(chunk.getColumns()), 20); auto path = "/tmp/test.parquet"; writeParquet(std::move(chunk), header, path); ReadBufferFromFile in(path); - auto reader = openParquet(header, in, std::make_shared(path)); - reader->addFilter("x", std::make_shared(std::vector{"0","1", "2", "3"}, false)); + auto reader = openParquet(header, in); + reader->addFilter("x", std::make_shared(std::vector{"0", "1", "2", "3"}, false)); int count = 0; int null_count2 = 0; bool first = true; @@ -376,7 +382,6 @@ TEST(Processors, TestReadNullableString) } - TEST(Processors, BenchmarkReadNullableString) { auto string_type = makeNullable(std::make_shared()); @@ -384,6 +389,10 @@ TEST(Processors, BenchmarkReadNullableString) auto col1 = string_type->createColumn(); auto col2 = string_type->createColumn(); auto col3 = string_type->createColumn(); + auto col4 = string_type->createColumn(); + auto col5 = string_type->createColumn(); + auto col6 = string_type->createColumn(); + auto col7 = string_type->createColumn(); int rows = 5000000; for (int i = 0; i < rows; ++i) { @@ -398,17 +407,31 @@ TEST(Processors, BenchmarkReadNullableString) col2->insertDefault(); } col3->insert(std::to_string(std::rand() * 0.1)); + col4->insert(std::to_string(std::rand() * 0.1)); + col5->insert(std::to_string(std::rand() * 0.1)); + col6->insert(std::to_string(std::rand() * 0.1)); + col7->insert(std::to_string(std::rand() * 0.1)); } Columns columns; columns.emplace_back(std::move(col1)); columns.emplace_back(std::move(col2)); columns.emplace_back(std::move(col3)); + columns.emplace_back(std::move(col4)); + columns.emplace_back(std::move(col5)); + columns.emplace_back(std::move(col6)); + columns.emplace_back(std::move(col7)); Chunk chunk(std::move(columns), rows); - Block header = {ColumnWithTypeAndName(string_type->createColumn(), string_type, "x"), - ColumnWithTypeAndName(string_type->createColumn(), string_type, "y"), - ColumnWithTypeAndName(string_type->createColumn(), string_type, "z")}; + Block header = { + ColumnWithTypeAndName(string_type->createColumn(), string_type, "x"), + ColumnWithTypeAndName(string_type->createColumn(), string_type, "y"), + ColumnWithTypeAndName(string_type->createColumn(), string_type, "z"), + ColumnWithTypeAndName(string_type->createColumn(), string_type, "a"), + ColumnWithTypeAndName(string_type->createColumn(), string_type, "b"), + ColumnWithTypeAndName(string_type->createColumn(), string_type, "c"), + ColumnWithTypeAndName(string_type->createColumn(), string_type, "d"), + }; auto path = "/tmp/test.parquet"; writeParquet(std::move(chunk), header, path); @@ -421,8 +444,9 @@ TEST(Processors, BenchmarkReadNullableString) auto new_test = [&]() { ReadBufferFromFile in(path); - auto reader = openParquet(header, in, std::make_shared(path)); - reader->addFilter("x", std::make_shared(std::vector{"0","1", "2", "3"}, false)); + auto reader = openParquet(header, in); + reader->addFilter( + "x", std::make_shared(std::vector{"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"}, false)); int count [[maybe_unused]] = 0; while (auto block = reader->read()) { @@ -433,6 +457,6 @@ TEST(Processors, BenchmarkReadNullableString) // std::cerr << "total count: " << count << std::endl; }; std::cerr << "start benchmark \n"; - benchmark("arrow", 21, old_test); - benchmark("native", 21, new_test); + benchmark("arrow", 9, old_test); + benchmark("native", 9, new_test); } diff --git a/src/Storages/MergeTree/KeyCondition.cpp b/src/Storages/MergeTree/KeyCondition.cpp index 2a3a283bc7d..06efc82c004 100644 --- a/src/Storages/MergeTree/KeyCondition.cpp +++ b/src/Storages/MergeTree/KeyCondition.cpp @@ -847,7 +847,7 @@ KeyCondition::KeyCondition( } has_filter = true; - + filter_expr = filter_dag->clone(); /** When non-strictly monotonic functions are employed in functional index (e.g. ORDER BY toStartOfHour(dateTime)), * the use of NOT operator in predicate will result in the indexing algorithm leave out some data. * This is caused by rewriting in KeyCondition::tryParseAtomFromAST of relational operators to less strict diff --git a/src/Storages/MergeTree/KeyCondition.h b/src/Storages/MergeTree/KeyCondition.h index 8c946bd3bbd..d3123208fe6 100644 --- a/src/Storages/MergeTree/KeyCondition.h +++ b/src/Storages/MergeTree/KeyCondition.h @@ -134,6 +134,11 @@ public: DataTypePtr current_type, bool single_point = false); + ActionsDAG getFilterDagCopy() const + { + return filter_expr.clone(); + } + static ActionsDAG cloneASTWithInversionPushDown(ActionsDAG::NodeRawConstPtrs nodes, const ContextPtr & context); bool matchesExactContinuousRange() const; @@ -349,6 +354,7 @@ private: /// This flag identify whether there are filters. bool has_filter; + ActionsDAG filter_expr; ColumnIndices key_columns; std::vector key_indices; From 7e2a700f19a68060cb9fe772a73c17146f1b08a4 Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Sun, 18 Aug 2024 21:49:14 +0800 Subject: [PATCH 12/34] optimize with simd --- .gitmodules | 3 + contrib/xsimd-cmake/CMakeLists.txt | 9 + src/CMakeLists.txt | 6 +- .../Formats/Impl/Parquet/ColumnFilter.cpp | 211 +++++++++++++++++- .../Formats/Impl/Parquet/ColumnFilter.h | 36 ++- .../Impl/Parquet/SelectiveColumnReader.cpp | 33 +-- .../Impl/Parquet/SelectiveColumnReader.h | 31 +-- .../Formats/Impl/Parquet/xsimd_wrapper.h | 15 ++ 8 files changed, 288 insertions(+), 56 deletions(-) create mode 100644 contrib/xsimd-cmake/CMakeLists.txt create mode 100644 src/Processors/Formats/Impl/Parquet/xsimd_wrapper.h diff --git a/.gitmodules b/.gitmodules index bd61c52a5e0..62516bcddbd 100644 --- a/.gitmodules +++ b/.gitmodules @@ -375,3 +375,6 @@ [submodule "contrib/postgres"] path = contrib/postgres url = https://github.com/ClickHouse/postgres.git +[submodule "contrib/xsimd"] + path = contrib/xsimd + url = https://github.com/xtensor-stack/xsimd.git diff --git a/contrib/xsimd-cmake/CMakeLists.txt b/contrib/xsimd-cmake/CMakeLists.txt new file mode 100644 index 00000000000..4b026ebb480 --- /dev/null +++ b/contrib/xsimd-cmake/CMakeLists.txt @@ -0,0 +1,9 @@ +set (LIBRARY_DIR "${ClickHouse_SOURCE_DIR}/contrib/xsimd") +set(XSIMD_INCLUDE_DIR "${LIBRARY_DIR}/include") + +add_library(xsimd INTERFACE) + +target_include_directories(xsimd INTERFACE + ${XSIMD_INCLUDE_DIR}) +target_compile_features(xsimd INTERFACE cxx_std_11) +add_library(ch_contrib::xsimd ALIAS xsimd) \ No newline at end of file diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index b24e154f204..55bbfb2786b 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -285,6 +285,7 @@ target_link_libraries (dbms PRIVATE ch_contrib::libdivide) if (TARGET ch_contrib::jemalloc) target_link_libraries (dbms PRIVATE ch_contrib::jemalloc) endif() +target_compile_options(dbms PRIVATE -mavx2) set (all_modules dbms) macro (dbms_target_include_directories) @@ -458,7 +459,9 @@ endif() dbms_target_link_libraries ( PUBLIC boost::circular_buffer - boost::heap) + boost::heap + ch_contrib::xsimd +) target_link_libraries(clickhouse_common_io PUBLIC ch_contrib::miniselect @@ -691,5 +694,6 @@ if (ENABLE_TESTS) if (TARGET ch_contrib::parquet) target_link_libraries(unit_tests_dbms PRIVATE ch_contrib::parquet) + target_link_libraries(unit_tests_dbms PRIVATE ch_contrib::xsimd) endif() endif () diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp index 5fe58402305..007bdefb266 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp @@ -1,6 +1,7 @@ #include "ColumnFilter.h" #include #include +#include namespace DB { @@ -11,11 +12,161 @@ extern const int PARQUET_EXCEPTION; extern const int LOGICAL_ERROR; } +template +struct PhysicTypeTraits +{ + using simd_type = xsimd::batch; + using simd_bool_type = xsimd::batch_bool; + using simd_idx_type = xsimd::batch; + using idx_type = T; +}; +template struct PhysicTypeTraits; +template struct PhysicTypeTraits; +template<> struct PhysicTypeTraits +{ + using simd_type = xsimd::batch; + using simd_bool_type = xsimd::batch_bool; + using simd_idx_type = xsimd::batch; + using idx_type = Int32; +}; +template<> struct PhysicTypeTraits +{ + using simd_type = xsimd::batch; + using simd_bool_type = xsimd::batch_bool; + using simd_idx_type = xsimd::batch; + using idx_type = Int64; +}; + +template +void FilterHelper::filterPlainFixedData(const T* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read) +{ + using batch_type = PhysicTypeTraits::simd_type; + using bool_type = PhysicTypeTraits::simd_bool_type; + auto increment = batch_type::size; + auto num_batched = rows_to_read / increment; + for (size_t i = 0; i < num_batched; ++i) + { + auto rows = i * increment; + bool_type mask = bool_type::load_aligned(row_set.maskReference().data() + rows); + if (xsimd::none(mask)) + continue; + else if (xsimd::all(mask)) + { + dst.resize(dst.size() + increment); + batch_type data = batch_type::load_unaligned(src + rows); + data.store_unaligned(dst.data() + rows); + } + else + { + for (size_t j = 0; j < increment; ++j) + if (row_set.get(rows + j)) + dst.push_back(src[rows + j]); + } + } + for (size_t i = num_batched * increment; i < rows_to_read; ++i) + { + if (row_set.get(i)) + dst.push_back(src[i]); + } +} + +template void FilterHelper::filterPlainFixedData(Int32 const*, DB::PaddedPODArray&, DB::RowSet const&, size_t); +template void FilterHelper::filterPlainFixedData(const Int64* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); +template void FilterHelper::filterPlainFixedData(const Float32* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); +template void FilterHelper::filterPlainFixedData(const Float64* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); + +template +void FilterHelper::gatherDictFixedValue( + const PaddedPODArray & dict, PaddedPODArray & dst, const PaddedPODArray & idx, size_t rows_to_read) +{ + using batch_type = PhysicTypeTraits::simd_type; + using idx_batch_type = PhysicTypeTraits::simd_idx_type; + auto increment = batch_type::size; + auto num_batched = rows_to_read / increment; + dst.resize(dst.size() + (num_batched * increment)); + for (size_t i = 0; i < num_batched; ++i) + { + auto rows = i * increment; + idx_batch_type idx_batch = idx_batch_type::load_unaligned(idx.data() + rows); + batch_type::gather(dict.data(), idx_batch).store_aligned(dst.data() + rows); + } + for (size_t i = num_batched * increment; i < rows_to_read; ++i) + { + dst.push_back(dict[idx[i]]); + } +} + +template void FilterHelper::gatherDictFixedValue( + const PaddedPODArray & dict, PaddedPODArray & data, const PaddedPODArray & idx, size_t rows_to_read); +template void FilterHelper::gatherDictFixedValue( + const PaddedPODArray & dict, PaddedPODArray & data, const PaddedPODArray & idx, size_t rows_to_read); +template void FilterHelper::gatherDictFixedValue( + const PaddedPODArray & dict, PaddedPODArray & data, const PaddedPODArray & idx, size_t rows_to_read); +template void FilterHelper::gatherDictFixedValue( + const PaddedPODArray & dict, PaddedPODArray & data, const PaddedPODArray & idx, size_t rows_to_read); + +template +void FilterHelper::filterDictFixedData(const PaddedPODArray & dict, PaddedPODArray & dst, const PaddedPODArray & idx, const RowSet & row_set, size_t rows_to_read) +{ + using batch_type = PhysicTypeTraits::simd_type; + using bool_type = PhysicTypeTraits::simd_bool_type; + using idx_batch_type = PhysicTypeTraits::simd_idx_type; + auto increment = batch_type::size; + auto num_batched = rows_to_read / increment; + for (size_t i = 0; i < num_batched; ++i) + { + auto rows = i * increment; + bool_type mask = bool_type::load_aligned(row_set.maskReference().data() + rows); + if (xsimd::none(mask)) + continue; + else if (xsimd::all(mask)) + { + dst.resize(dst.size() + increment); + idx_batch_type idx_batch = idx_batch_type::load_unaligned(idx.data() + rows); + batch_type::gather(dict.data(), idx_batch).store_unaligned(dst.data() + rows); + } + else + { + for (size_t j = 0; j < increment; ++j) + if (row_set.get(rows + j)) + dst.push_back(dict[idx[rows + j]]); + } + } + for (size_t i = num_batched * increment; i < rows_to_read; ++i) + { + if (row_set.get(i)) + dst.push_back(dict[idx[i]]); + } +} + +template void FilterHelper::filterDictFixedData(const PaddedPODArray & dict, PaddedPODArray & dst, const PaddedPODArray & idx, const RowSet & row_set, size_t rows_to_read); +template void FilterHelper::filterDictFixedData(const PaddedPODArray & dict, PaddedPODArray & dst, const PaddedPODArray & idx, const RowSet & row_set, size_t rows_to_read); +template void FilterHelper::filterDictFixedData(const PaddedPODArray & dict, PaddedPODArray & dst, const PaddedPODArray & idx, const RowSet & row_set, size_t rows_to_read); +template void FilterHelper::filterDictFixedData(const PaddedPODArray & dict, PaddedPODArray & dst, const PaddedPODArray & idx, const RowSet & row_set, size_t rows_to_read); + void Int64RangeFilter::testInt64Values(DB::RowSet & row_set, size_t offset, size_t len, const Int64 * data) const { - for (size_t t = 0; t < len; ++t) + using batch_type = xsimd::batch; + auto increment = batch_type::size; + auto num_batched = len / increment; + batch_type min_batch = batch_type::broadcast(min); + batch_type max_batch = batch_type::broadcast(max); + bool aligned = offset % increment == 0; + for (size_t i = 0; i < num_batched; ++i) { - row_set.set(offset + t, data[t] >= min && data[t] <= max); + batch_type value; + const auto rows = offset + (i * increment); + if (aligned) + value = batch_type::load_aligned(data + rows); + else + value = batch_type::load_unaligned(data + rows); + auto mask = (value >= min_batch) && (value <= max_batch); + if (aligned) + mask.store_aligned(row_set.maskReference().data() + rows); + } + for (size_t i = offset + (num_batched * increment); i < offset + len ; ++i) + { + row_set.maskReference()[i] = data[i] >= min & data[i] <= max; } } @@ -298,4 +449,60 @@ OptionalFilter createFloatRangeFilter(const ActionsDAG::Node & node) return Float64RangeFilter::create(node); } } + +bool RowSet::none() const +{ + bool res = true; + auto increment = xsimd::batch_bool::size; + auto num_batched = max_rows / increment; + for (size_t i = 0; i < num_batched; i += increment) + { + auto batch = xsimd::batch_bool::load_aligned(mask.data() + (i * increment)); + res &= xsimd::none(batch); + if (!res) + return false; + } + for (size_t i = num_batched * increment; i < max_rows; ++i) + { + res &= !mask[i]; + } + return res; +} +bool RowSet::all() const +{ + bool res = true; + auto increment = xsimd::batch_bool::size; + auto num_batched = max_rows / increment; + for (size_t i = 0; i < num_batched; i += increment) + { + auto batch = xsimd::batch_bool::load_aligned(mask.data() + (i * increment)); + res &= xsimd::all(batch); + if (!res) + return res; + } + for (size_t i = num_batched * increment; i < max_rows; ++i) + { + res &= mask[i]; + } + return res; +} + +bool RowSet::any() const +{ + bool res = true; + auto increment = xsimd::batch_bool::size; + auto num_batched = max_rows / increment; + for (size_t i = 0; i < num_batched; i += increment) + { + auto batch = xsimd::batch_bool::load_aligned(mask.data() + (i * increment)); + res &= xsimd::any(batch); + if (res) + return true; + } + for (size_t i = num_batched * increment; i < max_rows; ++i) + { + res &= mask[i]; + } + return res; +} } diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h index b75007f0c8c..ea760aa638c 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h @@ -6,6 +6,8 @@ #include #include #include +#include + namespace DB { @@ -17,20 +19,21 @@ extern const int PARQUET_EXCEPTION; class RowSet { public: - explicit RowSet(size_t max_rows_) : max_rows(max_rows_) { bitset.resize(max_rows, true); } - - void set(size_t i, bool value) { bitset.set(i, value); } - bool get(size_t i) const { return bitset.test(i); } - size_t totalRows() const { return max_rows; } - bool none() const { return bitset.none(); } - bool all() const { return bitset.all(); } - bool any() const { return bitset.any(); } - void setAllTrue() { bitset.resize(max_rows, true); } - void setAllFalse() { bitset.resize(max_rows, false); } + explicit RowSet(size_t max_rows_) : max_rows(max_rows_) { mask.resize_fill(max_rows, 1); } + inline void set(size_t i, bool value) { mask[i] = value; } + inline bool get(size_t i) const { return mask[i]; } + inline size_t totalRows() const { return max_rows; } + bool none() const; + bool all() const; + bool any() const; + void setAllTrue() { mask.resize(max_rows, true); } + void setAllFalse() { mask.resize(max_rows, false); } + PaddedPODArray& maskReference() { return mask; } + const PaddedPODArray& maskReference() const { return mask; } private: size_t max_rows = 0; - boost::dynamic_bitset<> bitset; + PaddedPODArray mask; }; using OptionalRowSet = std::optional; @@ -56,6 +59,17 @@ enum ColumnFilterKind ByteValues }; +class FilterHelper +{ +public: + template + static void filterPlainFixedData(const T* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); + template + static void gatherDictFixedValue( + const PaddedPODArray & dict, PaddedPODArray & dst, const PaddedPODArray & idx, size_t rows_to_read); + template + static void filterDictFixedData(const PaddedPODArray & dict, PaddedPODArray & dst, const PaddedPODArray & idx, const RowSet & row_set, size_t rows_to_read); +}; class ColumnFilter { diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index 041d953fb06..841503db56f 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -136,7 +136,7 @@ RowGroupChunkReader::RowGroupChunkReader( auto range = getColumnRange(*row_group_meta->ColumnChunk(idx)); size_t compress_size = range.second; size_t offset = range.first; - column_buffers[reader_idx].resize_fill(compress_size, 0); + column_buffers[reader_idx].resize(compress_size, 0); remain_rows = row_group_meta->ColumnChunk(idx)->num_values(); parquet_reader->file.seek(offset, SEEK_SET); size_t count = parquet_reader->file.readBig(reinterpret_cast(column_buffers[reader_idx].data()), compress_size); @@ -163,6 +163,21 @@ RowGroupChunkReader::RowGroupChunkReader( } +template +void PlainDecoder::decodeFixedValue(PaddedPODArray & data, const OptionalRowSet & row_set, size_t rows_to_read) +{ + const T * start = reinterpret_cast(buffer); + if (!row_set.has_value()) + data.insert_assume_reserved(start, start + rows_to_read); + else + { + const auto & sets = row_set.value(); + FilterHelper::filterPlainFixedData(start, data, sets, rows_to_read); + } + buffer += rows_to_read * sizeof(T); + remain_rows -= rows_to_read; +} + void SelectiveColumnReader::readPageIfNeeded() { skipPageIfNeed(); @@ -1094,26 +1109,14 @@ void DictDecoder::decodeFixedValue( const OptionalRowSet & row_set, size_t rows_to_read) { - size_t rows_read = 0; if (row_set.has_value()) { const auto & sets = row_set.value(); - while (rows_read < rows_to_read) - { - if (sets.get(rows_read)) - { - data.push_back(dict[idx_buffer[rows_read]]); - } - rows_read++; - } + FilterHelper::filterDictFixedData(dict, data, idx_buffer, sets, rows_to_read); } else { - while (rows_read < rows_to_read) - { - data.push_back(dict[idx_buffer[rows_read]]); - rows_read++; - } + FilterHelper::gatherDictFixedValue(dict, data, idx_buffer, rows_to_read); } idx_buffer.resize(0); remain_rows -= rows_to_read; diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h index 6783b8034aa..81d7d87f06a 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h @@ -78,7 +78,7 @@ struct ScanState size_t lazy_skip_rows = 0; // for dictionary encoding - PaddedPODArray idx_buffer; + PaddedPODArray idx_buffer; std::unique_ptr filter_cache; size_t remain_rows = 0; @@ -93,30 +93,7 @@ public: PlainDecoder(const uint8_t *& buffer_, size_t & remain_rows_) : buffer(buffer_), remain_rows(remain_rows_) { } template - void decodeFixedValue(PaddedPODArray & data, const OptionalRowSet & row_set, size_t rows_to_read) - { - const T * start = reinterpret_cast(buffer); - if (!row_set.has_value()) - { - data.insert_assume_reserved(start, start + rows_to_read); - } - else - { - size_t rows_read = 0; - const auto & sets = row_set.value(); - while (rows_read < rows_to_read) - { - if (sets.get(rows_read)) - { - data.push_back(start[rows_read]); - } - rows_read++; - } - } - - buffer += rows_to_read * sizeof(T); - remain_rows -= rows_to_read; - } + void decodeFixedValue(PaddedPODArray & data, const OptionalRowSet & row_set, size_t rows_to_read); void decodeString(ColumnString::Chars & chars, ColumnString::Offsets & offsets, const OptionalRowSet & row_set, size_t rows_to_read) { @@ -322,7 +299,7 @@ private: class DictDecoder { public: - DictDecoder(PaddedPODArray & idx_buffer_, size_t & remain_rows_) : idx_buffer(idx_buffer_), remain_rows(remain_rows_) { } + DictDecoder(PaddedPODArray & idx_buffer_, size_t & remain_rows_) : idx_buffer(idx_buffer_), remain_rows(remain_rows_) { } template void decodeFixedValue(PaddedPODArray & dict, PaddedPODArray & data, const OptionalRowSet & row_set, size_t rows_to_read); @@ -351,7 +328,7 @@ public: size_t rows_to_read); private: - PaddedPODArray & idx_buffer; + PaddedPODArray & idx_buffer; size_t & remain_rows; }; diff --git a/src/Processors/Formats/Impl/Parquet/xsimd_wrapper.h b/src/Processors/Formats/Impl/Parquet/xsimd_wrapper.h new file mode 100644 index 00000000000..bff8cd64063 --- /dev/null +++ b/src/Processors/Formats/Impl/Parquet/xsimd_wrapper.h @@ -0,0 +1,15 @@ +#pragma once + +_Pragma("clang diagnostic push") +_Pragma("clang diagnostic ignored \"-Wold-style-cast\"") +_Pragma("clang diagnostic ignored \"-Wreserved-identifier\"") +_Pragma("clang diagnostic ignored \"-Wdeprecated-redundant-constexpr-static-def\"") +_Pragma("clang diagnostic ignored \"-Wdocumentation\"") +_Pragma("clang diagnostic ignored \"-Wzero-as-null-pointer-constant\"") +_Pragma("clang diagnostic ignored \"-Wcast-align\"") +_Pragma("clang diagnostic ignored \"-Wshorten-64-to-32\"") +_Pragma("clang diagnostic ignored \"-Wfloat-conversion\"") +_Pragma("clang diagnostic ignored \"-Wunused-but-set-variable\"") +_Pragma("clang diagnostic ignored \"-Wundef\"") +#include +_Pragma("clang diagnostic pop") From 399f49db818b5fa0288314ab1885372016b68797 Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Mon, 19 Aug 2024 16:34:24 +0800 Subject: [PATCH 13/34] add some test --- .../Formats/Impl/Parquet/ColumnFilter.cpp | 13 +++++--- .../Formats/Impl/Parquet/ColumnFilter.h | 10 +++--- .../Impl/Parquet/SelectiveColumnReader.cpp | 4 +++ .../0_stateless/03214_native_parquet.sql | 32 +++++++++++++++++++ 4 files changed, 50 insertions(+), 9 deletions(-) create mode 100644 tests/queries/0_stateless/03214_native_parquet.sql diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp index 007bdefb266..a1302e19b30 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp @@ -52,9 +52,11 @@ void FilterHelper::filterPlainFixedData(const T* src, PaddedPODArray & dst, c continue; else if (xsimd::all(mask)) { - dst.resize(dst.size() + increment); + auto old_size = dst.size(); + auto * start = dst.data() + old_size; + dst.resize( old_size + increment); batch_type data = batch_type::load_unaligned(src + rows); - data.store_unaligned(dst.data() + rows); + data.store_unaligned(start); } else { @@ -121,9 +123,12 @@ void FilterHelper::filterDictFixedData(const PaddedPODArray & dict, PaddedPOD continue; else if (xsimd::all(mask)) { - dst.resize(dst.size() + increment); + auto old_size = dst.size(); + auto * start = dst.data() + old_size; + dst.resize( old_size + increment); idx_batch_type idx_batch = idx_batch_type::load_unaligned(idx.data() + rows); - batch_type::gather(dict.data(), idx_batch).store_unaligned(dst.data() + rows); + auto batch = batch_type::gather(dict.data(), idx_batch); + batch.store_unaligned(start); } else { diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h index ea760aa638c..9fc2e2d6b29 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h @@ -270,7 +270,7 @@ protected: , upper_unbounded(upper_unbounded_) , upper_exclusive(upper_exclusive_) { - if (!lower_unbounded && !upper_unbounded) + if (lower_unbounded && upper_unbounded) { throw DB::Exception(ErrorCodes::PARQUET_EXCEPTION, "A range filter must have a lower or upper bound"); } @@ -307,19 +307,19 @@ public: ColumnFilterPtr filter = nullptr; if (func_name == "less") { - filter = std::make_shared>(0, true, false, value, false, false, false); + filter = std::make_shared>(-std::numeric_limits::infinity(), true, false, value, false, false, false); } else if (func_name == "greater") { - filter = std::make_shared>(value, false, false, 0, true, false, false); + filter = std::make_shared>(value, false, false, std::numeric_limits::infinity(), true, false, false); } else if (func_name == "lessOrEquals") { - filter = std::make_shared>(0, true, true, value, false, false, false); + filter = std::make_shared>(-std::numeric_limits::infinity(), true, true, value, false, false, false); } else if (func_name == "greaterOrEquals") { - filter = std::make_shared>(value, false, false, 0, true, true, false); + filter = std::make_shared>(value, false, false, std::numeric_limits::infinity(), true, true, false); } if (filter) return std::make_optional(std::make_pair(name, filter)); diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index 841503db56f..c39692ea9d2 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -428,6 +428,10 @@ void NumberDictionaryReader::computeRowSet(OptionalRowSet & row_set, s { if constexpr (std::is_same_v) cache.set(idx, scan_spec.filter->testInt64(dict[idx])); + else if constexpr (std::is_same_v) + cache.set(idx, scan_spec.filter->testFloat32(dict[idx])); + else if constexpr (std::is_same_v) + cache.set(idx, scan_spec.filter->testFloat64(dict[idx])); else throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unsupported type"); } diff --git a/tests/queries/0_stateless/03214_native_parquet.sql b/tests/queries/0_stateless/03214_native_parquet.sql new file mode 100644 index 00000000000..69362e656f2 --- /dev/null +++ b/tests/queries/0_stateless/03214_native_parquet.sql @@ -0,0 +1,32 @@ +drop table if exists test_native_parquet; +create table test_native_parquet (a Int32, b Int64, c Float32, d Float64, s String) engine=File(Parquet) settings input_format_parquet_use_native_reader=true; +insert into test_native_parquet select number, number+1, 0.1*number, 0.2*number, toString(number) from numbers(10000); + +select * from test_native_parquet where a < 10; +select * from test_native_parquet where a <= 10; +select * from test_native_parquet where a between 10 and 20; +select * from test_native_parquet where a > 9990; +select * from test_native_parquet where a >= 9990; + +select * from test_native_parquet where b < 10; +select * from test_native_parquet where b <= 10; +select * from test_native_parquet where b between 10 and 20; +select * from test_native_parquet where b > 9990; +select * from test_native_parquet where b >= 9990; + +select * from test_native_parquet where c < 1; +select * from test_native_parquet where c <= 1; +select * from test_native_parquet where c between 1 and 2; +select * from test_native_parquet where c > 999; +select * from test_native_parquet where c >= 999; + +select * from test_native_parquet where b < 2; +select * from test_native_parquet where b <= 2; +select * from test_native_parquet where b between 2 and 4; +select * from test_native_parquet where b > 9990 *0.2; +select * from test_native_parquet where b >= 9990 *0.2; + +select * from test_native_parquet where s = '1'; +select * from test_native_parquet where s in ('1','2','3'); + +drop table if exists test_native_parquet; From 7e6814962a9f2fc9fcca3848682f89512497d26b Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Tue, 20 Aug 2024 13:44:06 +0800 Subject: [PATCH 14/34] support date32 and datetime64 --- .../Formats/Impl/Parquet/ColumnFilter.cpp | 97 +++++++++++++++---- .../Formats/Impl/Parquet/ColumnFilter.h | 72 ++++++++++---- .../Impl/Parquet/SelectiveColumnReader.cpp | 95 ++++++++++++++---- .../Impl/Parquet/SelectiveColumnReader.h | 10 +- .../0_stateless/03214_native_parquet.sql | 4 +- 5 files changed, 220 insertions(+), 58 deletions(-) diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp index a1302e19b30..29e4e4ab154 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp @@ -1,4 +1,5 @@ #include "ColumnFilter.h" +#include #include #include #include @@ -15,26 +16,33 @@ extern const int LOGICAL_ERROR; template struct PhysicTypeTraits { - using simd_type = xsimd::batch; - using simd_bool_type = xsimd::batch_bool; - using simd_idx_type = xsimd::batch; - using idx_type = T; + using simd_internal_type = T; + using simd_type = xsimd::batch; + using simd_bool_type = xsimd::batch_bool; + using simd_idx_type = xsimd::batch; }; template struct PhysicTypeTraits; template struct PhysicTypeTraits; template<> struct PhysicTypeTraits { - using simd_type = xsimd::batch; - using simd_bool_type = xsimd::batch_bool; + using simd_internal_type = Float32; + using simd_type = xsimd::batch; + using simd_bool_type = xsimd::batch_bool; using simd_idx_type = xsimd::batch; - using idx_type = Int32; }; template<> struct PhysicTypeTraits { - using simd_type = xsimd::batch; - using simd_bool_type = xsimd::batch_bool; + using simd_internal_type = Float64; + using simd_type = xsimd::batch; + using simd_bool_type = xsimd::batch_bool; using simd_idx_type = xsimd::batch; - using idx_type = Int64; +}; +template<> struct PhysicTypeTraits +{ + using simd_internal_type = Int64; + using simd_type = xsimd::batch; + using simd_bool_type = xsimd::batch_bool; + using simd_idx_type = xsimd::batch; }; template @@ -76,6 +84,7 @@ template void FilterHelper::filterPlainFixedData(Int32 const*, DB::Padded template void FilterHelper::filterPlainFixedData(const Int64* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); template void FilterHelper::filterPlainFixedData(const Float32* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); template void FilterHelper::filterPlainFixedData(const Float64* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); +template void FilterHelper::filterPlainFixedData(const DateTime64* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); template void FilterHelper::gatherDictFixedValue( @@ -83,6 +92,7 @@ void FilterHelper::gatherDictFixedValue( { using batch_type = PhysicTypeTraits::simd_type; using idx_batch_type = PhysicTypeTraits::simd_idx_type; + using simd_internal_type = PhysicTypeTraits::simd_internal_type; auto increment = batch_type::size; auto num_batched = rows_to_read / increment; dst.resize(dst.size() + (num_batched * increment)); @@ -90,7 +100,7 @@ void FilterHelper::gatherDictFixedValue( { auto rows = i * increment; idx_batch_type idx_batch = idx_batch_type::load_unaligned(idx.data() + rows); - batch_type::gather(dict.data(), idx_batch).store_aligned(dst.data() + rows); + batch_type::gather(reinterpret_cast(dict.data()), idx_batch).store_aligned(reinterpret_cast(dst.data() + rows)); } for (size_t i = num_batched * increment; i < rows_to_read; ++i) { @@ -106,6 +116,8 @@ template void FilterHelper::gatherDictFixedValue( const PaddedPODArray & dict, PaddedPODArray & data, const PaddedPODArray & idx, size_t rows_to_read); template void FilterHelper::gatherDictFixedValue( const PaddedPODArray & dict, PaddedPODArray & data, const PaddedPODArray & idx, size_t rows_to_read); +template void FilterHelper::gatherDictFixedValue( + const PaddedPODArray & dict, PaddedPODArray & data, const PaddedPODArray & idx, size_t rows_to_read); template void FilterHelper::filterDictFixedData(const PaddedPODArray & dict, PaddedPODArray & dst, const PaddedPODArray & idx, const RowSet & row_set, size_t rows_to_read) @@ -113,6 +125,7 @@ void FilterHelper::filterDictFixedData(const PaddedPODArray & dict, PaddedPOD using batch_type = PhysicTypeTraits::simd_type; using bool_type = PhysicTypeTraits::simd_bool_type; using idx_batch_type = PhysicTypeTraits::simd_idx_type; + using simd_internal_type = PhysicTypeTraits::simd_internal_type; auto increment = batch_type::size; auto num_batched = rows_to_read / increment; for (size_t i = 0; i < num_batched; ++i) @@ -127,8 +140,8 @@ void FilterHelper::filterDictFixedData(const PaddedPODArray & dict, PaddedPOD auto * start = dst.data() + old_size; dst.resize( old_size + increment); idx_batch_type idx_batch = idx_batch_type::load_unaligned(idx.data() + rows); - auto batch = batch_type::gather(dict.data(), idx_batch); - batch.store_unaligned(start); + auto batch = batch_type::gather(reinterpret_cast(dict.data()), idx_batch); + batch.store_unaligned(reinterpret_cast(start)); } else { @@ -148,14 +161,19 @@ template void FilterHelper::filterDictFixedData(const PaddedPODArray & di template void FilterHelper::filterDictFixedData(const PaddedPODArray & dict, PaddedPODArray & dst, const PaddedPODArray & idx, const RowSet & row_set, size_t rows_to_read); template void FilterHelper::filterDictFixedData(const PaddedPODArray & dict, PaddedPODArray & dst, const PaddedPODArray & idx, const RowSet & row_set, size_t rows_to_read); template void FilterHelper::filterDictFixedData(const PaddedPODArray & dict, PaddedPODArray & dst, const PaddedPODArray & idx, const RowSet & row_set, size_t rows_to_read); +template void FilterHelper::filterDictFixedData(const PaddedPODArray & dict, PaddedPODArray & dst, const PaddedPODArray & idx, const RowSet & row_set, size_t rows_to_read); -void Int64RangeFilter::testInt64Values(DB::RowSet & row_set, size_t offset, size_t len, const Int64 * data) const +template +void Int64RangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t len, const T * data) const { - using batch_type = xsimd::batch; + using batch_type = xsimd::batch; + using bool_type = xsimd::batch_bool; auto increment = batch_type::size; auto num_batched = len / increment; batch_type min_batch = batch_type::broadcast(min); - batch_type max_batch = batch_type::broadcast(max); + batch_type max_batch; + if (!is_single_value) + max_batch = batch_type::broadcast(max); bool aligned = offset % increment == 0; for (size_t i = 0; i < num_batched; ++i) { @@ -165,9 +183,34 @@ void Int64RangeFilter::testInt64Values(DB::RowSet & row_set, size_t offset, size value = batch_type::load_aligned(data + rows); else value = batch_type::load_unaligned(data + rows); - auto mask = (value >= min_batch) && (value <= max_batch); + bool_type mask; + if (is_single_value) + { + if constexpr (std::is_same_v) + { + if unlikely(lower32 != min) + mask = bool_type(false); + else + mask = value == min_batch; + } + else if constexpr (std::is_same_v) + { + if unlikely(lower16 != min) + mask = bool_type(false); + else + mask = value == min_batch; + } + else + { + mask = value == min_batch; + } + } + else + mask = (value >= min_batch) && (value <= max_batch); if (aligned) mask.store_aligned(row_set.maskReference().data() + rows); + else + mask.store_unaligned(row_set.maskReference().data() + rows); } for (size_t i = offset + (num_batched * increment); i < offset + len ; ++i) { @@ -175,6 +218,24 @@ void Int64RangeFilter::testInt64Values(DB::RowSet & row_set, size_t offset, size } } +template void Int64RangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t len, const Int64 * data) const; +template void Int64RangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t len, const Int32 * data) const; +template void Int64RangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t len, const Int16 * data) const; + +void Int64RangeFilter::testInt64Values(DB::RowSet & row_set, size_t offset, size_t len, const Int64 * data) const +{ + testIntValues(row_set, offset, len, data); +} + +void Int64RangeFilter::testInt32Values(RowSet & row_set, size_t offset, size_t len, const Int32 * data) const +{ + testIntValues(row_set, offset, len, data); +} +void Int64RangeFilter::testInt16Values(RowSet & row_set, size_t offset, size_t len, const Int16 * data) const +{ + testIntValues(row_set, offset, len, data); +} + bool isFunctionNode(const ActionsDAG::Node & node) { return node.function_base != nullptr; @@ -236,7 +297,7 @@ OptionalFilter Int64RangeFilter::create(const ActionsDAG::Node & node) return std::nullopt; const auto * input_node = getInputNode(node); auto name = input_node->result_name; - if (!isInt64(input_node->result_type)) + if (!isInt64(input_node->result_type) && !isInt32(input_node->result_type) && !isInt16(input_node->result_type)) return std::nullopt; auto constant_nodes = getConstantNode(node); auto func_name = node.function_base->getName(); diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h index 9fc2e2d6b29..ce6077bec75 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h @@ -1,12 +1,12 @@ #pragma once #include #include +#include #include #include #include #include #include -#include namespace DB @@ -29,8 +29,9 @@ public: bool any() const; void setAllTrue() { mask.resize(max_rows, true); } void setAllFalse() { mask.resize(max_rows, false); } - PaddedPODArray& maskReference() { return mask; } - const PaddedPODArray& maskReference() const { return mask; } + PaddedPODArray & maskReference() { return mask; } + const PaddedPODArray & maskReference() const { return mask; } + private: size_t max_rows = 0; PaddedPODArray mask; @@ -63,12 +64,17 @@ class FilterHelper { public: template - static void filterPlainFixedData(const T* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); + static void filterPlainFixedData(const T * src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); template - static void gatherDictFixedValue( - const PaddedPODArray & dict, PaddedPODArray & dst, const PaddedPODArray & idx, size_t rows_to_read); + static void + gatherDictFixedValue(const PaddedPODArray & dict, PaddedPODArray & dst, const PaddedPODArray & idx, size_t rows_to_read); template - static void filterDictFixedData(const PaddedPODArray & dict, PaddedPODArray & dst, const PaddedPODArray & idx, const RowSet & row_set, size_t rows_to_read); + static void filterDictFixedData( + const PaddedPODArray & dict, + PaddedPODArray & dst, + const PaddedPODArray & idx, + const RowSet & row_set, + size_t rows_to_read); }; class ColumnFilter @@ -82,6 +88,8 @@ public: virtual bool testNull() const { return null_allowed; } virtual bool testNotNull() const { return true; } virtual bool testInt64(Int64) const { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testInt64 not implemented"); } + virtual bool testInt32(Int32) const { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testInt32 not implemented"); } + virtual bool testInt16(Int16) const { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testInt16 not implemented"); } virtual bool testFloat32(Float32) const { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testFloat32 not implemented"); } virtual bool testFloat64(Float64) const { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testFloat64 not implemented"); } virtual bool testBool(bool) const { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testBool not implemented"); } @@ -106,20 +114,35 @@ public: } } + virtual void testInt32Values(RowSet & row_set, size_t offset, size_t len, const Int32 * data) const + { + for (size_t i = offset; i < offset + len; ++i) + { + row_set.set(i, testInt32(data[i])); + } + } + + virtual void testInt16Values(RowSet & row_set, size_t offset, size_t len, const Int16 * data) const + { + for (size_t i = offset; i < offset + len; ++i) + { + row_set.set(i, testInt16(data[i])); + } + } + + virtual ColumnFilterPtr merge(const ColumnFilter * /*filter*/) const { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "merge not implemented"); } - virtual ColumnFilterPtr clone(std::optional nullAllowed = std::nullopt) const = 0; + virtual ColumnFilterPtr clone(std::optional nullAllowed) const = 0; virtual String toString() const { - return fmt::format( - "Filter({}, {})", - magic_enum::enum_name(kind()), - null_allowed ? "null allowed" : "null not allowed"); + return fmt::format("Filter({}, {})", magic_enum::enum_name(kind()), null_allowed ? "null allowed" : "null not allowed"); } + protected: ColumnFilterKind kind_; bool null_allowed; @@ -183,13 +206,24 @@ class Int64RangeFilter : public ColumnFilter public: static OptionalFilter create(const ActionsDAG::Node & node); explicit Int64RangeFilter(const Int64 min_, const Int64 max_, bool null_allowed_) - : ColumnFilter(Int64Range, null_allowed_), max(max_), min(min_), is_single_value(max == min) + : ColumnFilter(Int64Range, null_allowed_) + , max(max_) + , min(min_) + , lower32(static_cast(std::max(min, std::numeric_limits::min()))) + , upper32(static_cast(std::min(max, std::numeric_limits::max()))) + , lower16(static_cast(std::max(min, std::numeric_limits::min()))) + , upper16(static_cast(std::min(max, std::numeric_limits::max()))) + , is_single_value(max == min) { } ~Int64RangeFilter() override = default; bool testInt64(Int64 int64) const override { return int64 >= min && int64 <= max; } + bool testInt32(Int32 int32) const override { return int32 >= min && int32 <= max; } + bool testInt16(Int16 int16) const override { return int16 >= min && int16 <= max; } bool testInt64Range(Int64 lower, Int64 upper) const override { return min >= lower && max <= upper; } void testInt64Values(RowSet & row_set, size_t offset, size_t len, const Int64 * data) const override; + void testInt32Values(RowSet & row_set, size_t offset, size_t len, const Int32 * data) const override; + void testInt16Values(RowSet & row_set, size_t offset, size_t len, const Int16 * data) const override; ColumnFilterPtr merge(const ColumnFilter * filter) const override; ColumnFilterPtr clone(std::optional null_allowed_) const override { @@ -201,8 +235,15 @@ public: } private: + template + void testIntValues(RowSet & row_set, size_t offset, size_t len, const T * data) const; + const Int64 max; const Int64 min; + const int32_t lower32; + const int32_t upper32; + const int16_t lower16; + const int16_t upper16; bool is_single_value [[maybe_unused]]; }; class ByteValuesFilter : public ColumnFilter @@ -233,10 +274,7 @@ public: return std::make_shared(*this, null_allowed_.value_or(null_allowed)); } - String toString() const override - { - return "ByteValuesFilter(" + lower + ", " + upper + ")"; - } + String toString() const override { return "ByteValuesFilter(" + lower + ", " + upper + ")"; } private: String lower; diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index c39692ea9d2..4995503dc1c 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -3,6 +3,8 @@ #include #include #include +#include +#include #include #include @@ -299,13 +301,17 @@ void computeRowSetPlain(const T * start, OptionalRowSet & row_set, const ColumnF { if (filter) { - if constexpr (std::is_same_v) + if (row_set.has_value()) { - if (row_set.has_value()) + if constexpr (std::is_same_v) filter->testInt64Values(row_set.value(), 0, rows_to_read, start); + else if constexpr (std::is_same_v) + filter->testInt32Values(row_set.value(), 0, rows_to_read, start); + else if constexpr (std::is_same_v) + filter->testInt16Values(row_set.value(), 0, rows_to_read, start); + else + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unsupported type"); } - else - throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unsupported type"); } } @@ -381,18 +387,18 @@ void NumberColumnDirectReader::computeRowSetSpace(OptionalRowSet & row template MutableColumnPtr NumberColumnDirectReader::createColumn() { - return DataType::ColumnType::create(); + return datatype->createColumn(); } template -NumberColumnDirectReader::NumberColumnDirectReader(std::unique_ptr page_reader_, ScanSpec scan_spec_) - : SelectiveColumnReader(std::move(page_reader_), scan_spec_) +NumberColumnDirectReader::NumberColumnDirectReader(std::unique_ptr page_reader_, ScanSpec scan_spec_, DataTypePtr datatype_) + : SelectiveColumnReader(std::move(page_reader_), scan_spec_), datatype(datatype_) { } template -NumberDictionaryReader::NumberDictionaryReader(std::unique_ptr page_reader_, ScanSpec scan_spec_) - : SelectiveColumnReader(std::move(page_reader_), scan_spec_) +NumberDictionaryReader::NumberDictionaryReader(std::unique_ptr page_reader_, ScanSpec scan_spec_, DataTypePtr datatype_) + : SelectiveColumnReader(std::move(page_reader_), scan_spec_), datatype(datatype_) { } @@ -428,6 +434,10 @@ void NumberDictionaryReader::computeRowSet(OptionalRowSet & row_set, s { if constexpr (std::is_same_v) cache.set(idx, scan_spec.filter->testInt64(dict[idx])); + else if constexpr (std::is_same_v) + cache.set(idx, scan_spec.filter->testInt32(dict[idx])); + else if constexpr (std::is_same_v) + cache.set(idx, scan_spec.filter->testInt16(dict[idx])); else if constexpr (std::is_same_v) cache.set(idx, scan_spec.filter->testFloat32(dict[idx])); else if constexpr (std::is_same_v) @@ -669,11 +679,35 @@ void OptionalColumnReader::skipPageIfNeed() child->state.lazy_skip_rows = 0; } -bool isLogicalTypeIntOrNull(parquet::LogicalType::Type::type type) +static bool isLogicalTypeIntOrNull(parquet::LogicalType::Type::type type) { return type == parquet::LogicalType::Type::INT || type == parquet::LogicalType::Type::NONE; } +static bool isLogicalTypeDate(parquet::LogicalType::Type::type type) +{ + return type == parquet::LogicalType::Type::DATE; +} + +static bool isLogicalTypeDateTime(parquet::LogicalType::Type::type type) +{ + return type == parquet::LogicalType::Type::TIMESTAMP; +} + +static UInt32 getScaleFromLogicalTimestamp(parquet::LogicalType::TimeUnit::unit tm_unit) +{ + switch (tm_unit) + { + case parquet::LogicalType::TimeUnit::MILLIS: + return 3; + case parquet::LogicalType::TimeUnit::MICROS: + return 6; + case parquet::LogicalType::TimeUnit::NANOS: + return 9; + default: + throw DB::Exception(ErrorCodes::PARQUET_EXCEPTION, ", invalid timestamp unit: {}", tm_unit); + } +} SelectiveColumnReaderPtr SelectiveColumnReaderFactory::createLeafColumnReader( const parquet::ColumnChunkMetaData & column_metadata, @@ -684,31 +718,52 @@ SelectiveColumnReaderPtr SelectiveColumnReaderFactory::createLeafColumnReader( ScanSpec scan_spec{.column_name = column_desc->name(), .column_desc = column_desc, .filter = filter}; if (column_desc->physical_type() == parquet::Type::INT64 && isLogicalTypeIntOrNull(column_desc->logical_type()->type())) { + auto type_int64 = std::make_shared(); if (!column_metadata.has_dictionary_page()) - return std::make_shared>(std::move(page_reader), scan_spec); + return std::make_shared>(std::move(page_reader), scan_spec, type_int64); else - return std::make_shared>(std::move(page_reader), scan_spec); + return std::make_shared>(std::move(page_reader), scan_spec, type_int64); } if (column_desc->physical_type() == parquet::Type::INT32 && isLogicalTypeIntOrNull(column_desc->logical_type()->type())) { + auto type_int32 = std::make_shared(); if (!column_metadata.has_dictionary_page()) - return std::make_shared>(std::move(page_reader), scan_spec); + return std::make_shared>(std::move(page_reader), scan_spec, type_int32); else - return std::make_shared>(std::move(page_reader), scan_spec); + return std::make_shared>(std::move(page_reader), scan_spec, type_int32); + } + if (column_desc->physical_type() == parquet::Type::INT32 && isLogicalTypeDate(column_desc->logical_type()->type())) + { + auto type_date32 = std::make_shared(); + if (!column_metadata.has_dictionary_page()) + return std::make_shared>(std::move(page_reader), scan_spec, type_date32); + else + return std::make_shared>(std::move(page_reader), scan_spec, type_date32); + } + if (column_desc->physical_type() == parquet::Type::INT64 && isLogicalTypeDateTime(column_desc->logical_type()->type())) + { + const auto & tm_type = dynamic_cast(*column_desc->logical_type()); + auto type_datetime64 = std::make_shared(getScaleFromLogicalTimestamp(tm_type.time_unit())); + if (!column_metadata.has_dictionary_page()) + return std::make_shared>(std::move(page_reader), scan_spec, type_datetime64); + else + return std::make_shared>(std::move(page_reader), scan_spec, type_datetime64); } else if (column_desc->physical_type() == parquet::Type::FLOAT) { + auto type_float32 = std::make_shared(); if (!column_metadata.has_dictionary_page()) - return std::make_shared>(std::move(page_reader), scan_spec); + return std::make_shared>(std::move(page_reader), scan_spec, type_float32); else - return std::make_shared>(std::move(page_reader), scan_spec); + return std::make_shared>(std::move(page_reader), scan_spec, type_float32); } else if (column_desc->physical_type() == parquet::Type::DOUBLE) { + auto type_float64 = std::make_shared(); if (!column_metadata.has_dictionary_page()) - return std::make_shared>(std::move(page_reader), scan_spec); + return std::make_shared>(std::move(page_reader), scan_spec, type_float64); else - return std::make_shared>(std::move(page_reader), scan_spec); + return std::make_shared>(std::move(page_reader), scan_spec, type_float64); } else if (column_desc->physical_type() == parquet::Type::BYTE_ARRAY) { @@ -733,11 +788,15 @@ template class NumberColumnDirectReader; template class NumberColumnDirectReader; template class NumberColumnDirectReader; template class NumberColumnDirectReader; +template class NumberColumnDirectReader; +template class NumberColumnDirectReader; template class NumberDictionaryReader; template class NumberDictionaryReader; template class NumberDictionaryReader; template class NumberDictionaryReader; +template class NumberDictionaryReader; +template class NumberDictionaryReader; Int32 loadLength(const uint8_t * data) { diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h index 81d7d87f06a..d1cc9f99f8b 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h @@ -395,7 +395,7 @@ template class NumberColumnDirectReader : public SelectiveColumnReader { public: - NumberColumnDirectReader(std::unique_ptr page_reader_, ScanSpec scan_spec_); + NumberColumnDirectReader(std::unique_ptr page_reader_, ScanSpec scan_spec_, DataTypePtr datatype_); ~NumberColumnDirectReader() override = default; MutableColumnPtr createColumn() override; void computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) override; @@ -404,19 +404,22 @@ public: void readSpace( MutableColumnPtr & column, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override; size_t skipValuesInCurrentPage(size_t rows_to_skip) override; + +private: + DataTypePtr datatype; }; template class NumberDictionaryReader : public SelectiveColumnReader { public: - NumberDictionaryReader(std::unique_ptr page_reader_, ScanSpec scan_spec_); + NumberDictionaryReader(std::unique_ptr page_reader_, ScanSpec scan_spec_, DataTypePtr datatype_); ~NumberDictionaryReader() override = default; void computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) override; void computeRowSetSpace(OptionalRowSet & set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override; void read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) override; void readSpace(MutableColumnPtr & ptr, const OptionalRowSet & set, PaddedPODArray & null_map, size_t null_count, size_t size) override; - MutableColumnPtr createColumn() override { return DataType::ColumnType::create(); } + MutableColumnPtr createColumn() override { return datatype->createColumn(); } size_t skipValuesInCurrentPage(size_t rows_to_skip) override; protected: @@ -435,6 +438,7 @@ protected: void downgradeToPlain() override; private: + DataTypePtr datatype; arrow::util::RleDecoder idx_decoder; std::unique_ptr dict_decoder; PaddedPODArray dict; diff --git a/tests/queries/0_stateless/03214_native_parquet.sql b/tests/queries/0_stateless/03214_native_parquet.sql index 69362e656f2..34495dd307d 100644 --- a/tests/queries/0_stateless/03214_native_parquet.sql +++ b/tests/queries/0_stateless/03214_native_parquet.sql @@ -1,6 +1,6 @@ drop table if exists test_native_parquet; -create table test_native_parquet (a Int32, b Int64, c Float32, d Float64, s String) engine=File(Parquet) settings input_format_parquet_use_native_reader=true; -insert into test_native_parquet select number, number+1, 0.1*number, 0.2*number, toString(number) from numbers(10000); +create table test_native_parquet (a Int32, b Int64, c Float32, d Float64, s String, dat Date32, time DateTime64) engine=File(Parquet) settings input_format_parquet_use_native_reader=true; +insert into test_native_parquet select number, number+1, 0.1*number, 0.2*number, toString(number), number, now64() + number from numbers(10000); select * from test_native_parquet where a < 10; select * from test_native_parquet where a <= 10; From b651d002165e9cc001173370391d60d653371467 Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Fri, 23 Aug 2024 22:41:04 +0800 Subject: [PATCH 15/34] fix decode empty string error --- .../Formats/Impl/Parquet/ColumnFilter.cpp | 39 +- .../Formats/Impl/Parquet/ColumnFilter.h | 7 +- .../Impl/Parquet/ColumnFilterHelper.cpp | 1 + .../Formats/Impl/Parquet/ColumnFilterHelper.h | 4 +- .../Formats/Impl/Parquet/PageReader.cpp | 1 - .../Formats/Impl/Parquet/ParquetReader.cpp | 1 + .../Formats/Impl/Parquet/ParquetReader.h | 1 + .../Impl/Parquet/SelectiveColumnReader.cpp | 367 ++++++++++-------- .../Impl/Parquet/SelectiveColumnReader.h | 33 +- .../0_stateless/03214_native_parquet.sql | 60 +-- .../03214_native_parquet_benchmark.sql | 59 +++ 11 files changed, 359 insertions(+), 214 deletions(-) create mode 100644 tests/queries/0_stateless/03214_native_parquet_benchmark.sql diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp index 29e4e4ab154..94af6fb43fa 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp @@ -45,11 +45,11 @@ template<> struct PhysicTypeTraits using simd_idx_type = xsimd::batch; }; -template -void FilterHelper::filterPlainFixedData(const T* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read) +template +void FilterHelper::filterPlainFixedData(const S* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read) { - using batch_type = PhysicTypeTraits::simd_type; - using bool_type = PhysicTypeTraits::simd_bool_type; + using batch_type = PhysicTypeTraits::simd_type; + using bool_type = PhysicTypeTraits::simd_bool_type; auto increment = batch_type::size; auto num_batched = rows_to_read / increment; for (size_t i = 0; i < num_batched; ++i) @@ -61,30 +61,39 @@ void FilterHelper::filterPlainFixedData(const T* src, PaddedPODArray & dst, c else if (xsimd::all(mask)) { auto old_size = dst.size(); - auto * start = dst.data() + old_size; dst.resize( old_size + increment); + auto * start = dst.data() + old_size; batch_type data = batch_type::load_unaligned(src + rows); - data.store_unaligned(start); + if constexpr (std::is_same_v) + data.store_unaligned(start); + else + { + alignas(xsimd::default_arch::alignment()) S buffer[increment]; + data.store_aligned(buffer); + for (size_t j = 0; j < increment; ++j) + dst.push_back(static_cast(buffer[j])); + } } else { for (size_t j = 0; j < increment; ++j) if (row_set.get(rows + j)) - dst.push_back(src[rows + j]); + dst.push_back(static_cast(src[rows + j])); } } for (size_t i = num_batched * increment; i < rows_to_read; ++i) { if (row_set.get(i)) - dst.push_back(src[i]); + dst.push_back(static_cast(src[i])); } } -template void FilterHelper::filterPlainFixedData(Int32 const*, DB::PaddedPODArray&, DB::RowSet const&, size_t); -template void FilterHelper::filterPlainFixedData(const Int64* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); -template void FilterHelper::filterPlainFixedData(const Float32* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); -template void FilterHelper::filterPlainFixedData(const Float64* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); -template void FilterHelper::filterPlainFixedData(const DateTime64* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); +template void FilterHelper::filterPlainFixedData(Int32 const*, DB::PaddedPODArray&, DB::RowSet const&, size_t); +template void FilterHelper::filterPlainFixedData(Int32 const*, DB::PaddedPODArray&, DB::RowSet const&, size_t); +template void FilterHelper::filterPlainFixedData(const Int64* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); +template void FilterHelper::filterPlainFixedData(const Float32* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); +template void FilterHelper::filterPlainFixedData(const Float64* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); +template void FilterHelper::filterPlainFixedData(const Int64* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); template void FilterHelper::gatherDictFixedValue( @@ -118,6 +127,8 @@ template void FilterHelper::gatherDictFixedValue( const PaddedPODArray & dict, PaddedPODArray & data, const PaddedPODArray & idx, size_t rows_to_read); template void FilterHelper::gatherDictFixedValue( const PaddedPODArray & dict, PaddedPODArray & data, const PaddedPODArray & idx, size_t rows_to_read); +template void FilterHelper::gatherDictFixedValue( + const PaddedPODArray & dict, PaddedPODArray & data, const PaddedPODArray & idx, size_t rows_to_read); template void FilterHelper::filterDictFixedData(const PaddedPODArray & dict, PaddedPODArray & dst, const PaddedPODArray & idx, const RowSet & row_set, size_t rows_to_read) @@ -162,6 +173,8 @@ template void FilterHelper::filterDictFixedData(const PaddedPODArray & di template void FilterHelper::filterDictFixedData(const PaddedPODArray & dict, PaddedPODArray & dst, const PaddedPODArray & idx, const RowSet & row_set, size_t rows_to_read); template void FilterHelper::filterDictFixedData(const PaddedPODArray & dict, PaddedPODArray & dst, const PaddedPODArray & idx, const RowSet & row_set, size_t rows_to_read); template void FilterHelper::filterDictFixedData(const PaddedPODArray & dict, PaddedPODArray & dst, const PaddedPODArray & idx, const RowSet & row_set, size_t rows_to_read); +template void FilterHelper::filterDictFixedData(const PaddedPODArray & dict, PaddedPODArray & dst, const PaddedPODArray & idx, const RowSet & row_set, size_t rows_to_read); + template void Int64RangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t len, const T * data) const diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h index ce6077bec75..270cd9bf9d1 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h @@ -19,7 +19,7 @@ extern const int PARQUET_EXCEPTION; class RowSet { public: - explicit RowSet(size_t max_rows_) : max_rows(max_rows_) { mask.resize_fill(max_rows, 1); } + explicit RowSet(size_t max_rows_) : max_rows(max_rows_) { mask.resize_fill(max_rows, true); } inline void set(size_t i, bool value) { mask[i] = value; } inline bool get(size_t i) const { return mask[i]; } @@ -29,6 +29,7 @@ public: bool any() const; void setAllTrue() { mask.resize(max_rows, true); } void setAllFalse() { mask.resize(max_rows, false); } + size_t count() const { return std::reduce(mask.begin(), mask.end(), 0, [](bool a, bool b) { return a+b;}); } PaddedPODArray & maskReference() { return mask; } const PaddedPODArray & maskReference() const { return mask; } @@ -63,8 +64,8 @@ enum ColumnFilterKind class FilterHelper { public: - template - static void filterPlainFixedData(const T * src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); + template + static void filterPlainFixedData(const S * src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); template static void gatherDictFixedValue(const PaddedPODArray & dict, PaddedPODArray & dst, const PaddedPODArray & idx, size_t rows_to_read); diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.cpp index 67c0c8be424..6fd201709f0 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.cpp +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.cpp @@ -10,6 +10,7 @@ ColumnFilterCreators ColumnFilterHelper::creators = { }; void pushFilterToParquetReader(const ActionsDAG& filter_expression, ParquetReader & reader) { + if (filter_expression.getOutputs().empty()) return ; auto split_result = ColumnFilterHelper::splitFilterForPushDown(std::move(filter_expression)); for (const auto & item : split_result.filters) { diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.h b/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.h index 02d2edf2f32..30f96a410ad 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.h +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.h @@ -11,7 +11,7 @@ using ColumnFilterCreators = std::vector; struct FilterSplitResult { std::unordered_map> filters; - std::optional remain_filter; + std::optional remain_filter = std::nullopt; }; class ColumnFilterHelper @@ -20,6 +20,8 @@ public: static FilterSplitResult splitFilterForPushDown(const ActionsDAG& filter_expression) { + if (filter_expression.getOutputs().empty()) + return {}; const auto * filter_node = filter_expression.getOutputs().front(); auto conditions = ActionsDAG::extractConjunctionAtoms(filter_node); std::vector filters; diff --git a/src/Processors/Formats/Impl/Parquet/PageReader.cpp b/src/Processors/Formats/Impl/Parquet/PageReader.cpp index 861e60d4332..2b2ca144558 100644 --- a/src/Processors/Formats/Impl/Parquet/PageReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/PageReader.cpp @@ -39,7 +39,6 @@ bool LazyPageReader::hasNext() { // Failed to deserialize. Double the allowed page header size and try again allowed_header_size *= 2; - std::cerr << allowed_header_size << std::endl; if (allowed_header_size > max_page_header_size) { throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Deserializing page header failed: {}", e.what()); diff --git a/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp b/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp index 5ed9796a767..8bf1b86fe99 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp @@ -98,6 +98,7 @@ void ParquetReader::setRemainFilter(std::optional & expr) } std::unique_ptr ParquetReader::getRowGroupChunkReader(size_t row_group_idx) { + std::lock_guard lock(file_mutex); return std::make_unique(this, meta_data->RowGroup(static_cast(row_group_idx)), filters); } diff --git a/src/Processors/Formats/Impl/Parquet/ParquetReader.h b/src/Processors/Formats/Impl/Parquet/ParquetReader.h index af3b4271545..b6b5f4b0250 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetReader.h +++ b/src/Processors/Formats/Impl/Parquet/ParquetReader.h @@ -34,6 +34,7 @@ private: bool loadRowGroupChunkReaderIfNeeded(); std::unique_ptr file_reader; + std::mutex file_mutex; SeekableReadBuffer& file; parquet::ArrowReaderProperties arrow_properties; diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index 4995503dc1c..48ce84e45be 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -36,11 +36,11 @@ Chunk RowGroupChunkReader::readChunk(size_t rows) break; for (auto & reader : column_readers) { - if (!reader->currentRemainRows()) + if (!reader->availableRows()) { reader->readPageIfNeeded(); } - rows_to_read = std::min(reader->currentRemainRows(), rows_to_read); + rows_to_read = std::min(reader->availableRows(), rows_to_read); } if (!rows_to_read) break; @@ -48,12 +48,13 @@ Chunk RowGroupChunkReader::readChunk(size_t rows) OptionalRowSet row_set = std::nullopt; if (!filter_columns.empty()) row_set = std::optional(RowSet(rows_to_read)); - for (auto & column : filter_columns) - { - reader_columns_mapping[column]->computeRowSet(row_set, rows_to_read); - if (row_set.value().none()) - break; - } + if (row_set.has_value()) + for (auto & column : filter_columns) + { + reader_columns_mapping[column]->computeRowSet(row_set, rows_to_read); + if (row_set.value().none()) + break; + } bool skip_all = false; if (row_set.has_value()) skip_all = row_set.value().none(); if (skip_all) @@ -61,7 +62,7 @@ Chunk RowGroupChunkReader::readChunk(size_t rows) metrics.skipped_rows += rows_to_read; } - bool all = false; + bool all = true; if (row_set.has_value()) all = row_set.value().all(); if (all) row_set = std::nullopt; @@ -77,20 +78,21 @@ Chunk RowGroupChunkReader::readChunk(size_t rows) rows_read = columns[0]->size(); } - if (parquet_reader->remain_filter.has_value()) - { - auto input = parquet_reader->header.cloneWithColumns(std::move(columns)); - auto output = input.getColumns(); - parquet_reader->remain_filter.value().execute(input); - const auto& filter = checkAndGetColumn(*input.getByPosition(0).column).getData(); - size_t resize_hint = 0; - for (size_t i = 0; i < columns.size(); i++) - { - output[i] = output[i]->assumeMutable()->filter(filter, resize_hint); - resize_hint = output[i]->size(); - } - return Chunk(std::move(output), resize_hint); - } +// if (parquet_reader->remain_filter.has_value()) +// { +// std::cerr<<"has filter\n"<header.cloneWithColumns(std::move(columns)); +// auto output = input.getColumns(); +// parquet_reader->remain_filter.value().execute(input); +// const auto& filter = checkAndGetColumn(*input.getByPosition(0).column).getData(); +// size_t resize_hint = 0; +// for (size_t i = 0; i < columns.size(); i++) +// { +// output[i] = output[i]->assumeMutable()->filter(filter, resize_hint); +// resize_hint = output[i]->size(); +// } +// return Chunk(std::move(output), resize_hint); +// } metrics.output_rows += rows_read; return Chunk(std::move(columns), rows_read); } @@ -165,18 +167,27 @@ RowGroupChunkReader::RowGroupChunkReader( } -template +template void PlainDecoder::decodeFixedValue(PaddedPODArray & data, const OptionalRowSet & row_set, size_t rows_to_read) { - const T * start = reinterpret_cast(buffer); + const S * start = reinterpret_cast(buffer); if (!row_set.has_value()) - data.insert_assume_reserved(start, start + rows_to_read); + { + if constexpr (std::is_same_v) + data.insert_assume_reserved(start, start + rows_to_read); + else + { + data.resize(rows_to_read); + for (size_t i = 0; i < rows_to_read; i++) + data[i] = static_cast(start[i]); + } + } else { const auto & sets = row_set.value(); FilterHelper::filterPlainFixedData(start, data, sets, rows_to_read); } - buffer += rows_to_read * sizeof(T); + buffer += rows_to_read * sizeof(S); remain_rows -= rows_to_read; } @@ -279,7 +290,6 @@ void SelectiveColumnReader::skipPageIfNeed() // skip page state.lazy_skip_rows -= state.remain_rows; page_reader->skipNextPage(); - // std::cerr << "skip page :" << state.remain_rows << std::endl; state.remain_rows = 0; } } @@ -297,7 +307,7 @@ void SelectiveColumnReader::skipNulls(size_t rows_to_skip) } template -void computeRowSetPlain(const T * start, OptionalRowSet & row_set, const ColumnFilterPtr & filter, size_t rows_to_read) +static void computeRowSetPlain(const T * start, OptionalRowSet & row_set, const ColumnFilterPtr & filter, size_t rows_to_read) { if (filter) { @@ -315,47 +325,47 @@ void computeRowSetPlain(const T * start, OptionalRowSet & row_set, const ColumnF } } -template -void NumberColumnDirectReader::computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) +template +void NumberColumnDirectReader::computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) { readAndDecodePage(); chassert(rows_to_read <= state.remain_rows); - const Int64 * start = reinterpret_cast(state.buffer); + const SerializedType * start = reinterpret_cast(state.buffer); computeRowSetPlain(start, row_set, scan_spec.filter, rows_to_read); } -template -void NumberColumnDirectReader::read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) +template +void NumberColumnDirectReader::read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) { readAndDecodePage(); - auto * int_column = static_cast(column.get()); - auto & data = int_column->getData(); - plain_decoder->decodeFixedValue(data, row_set, rows_to_read); + auto * number_column = static_cast(column.get()); + auto & data = number_column->getData(); + plain_decoder->decodeFixedValue(data, row_set, rows_to_read); } -template -size_t NumberColumnDirectReader::skipValuesInCurrentPage(size_t rows_to_skip) +template +size_t NumberColumnDirectReader::skipValuesInCurrentPage(size_t rows_to_skip) { if (!state.page || !rows_to_skip) return rows_to_skip; size_t skipped = std::min(state.remain_rows, rows_to_skip); state.remain_rows -= skipped; - state.buffer += skipped * sizeof(Int64); + state.buffer += skipped * sizeof(SerializedType); return rows_to_skip - skipped; } -template -void NumberColumnDirectReader::readSpace( +template +void NumberColumnDirectReader::readSpace( MutableColumnPtr & column, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t, size_t rows_to_read) { readAndDecodePage(); - auto * int_column = static_cast(column.get()); - auto & data = int_column->getData(); - plain_decoder->decodeFixedValueSpace(data, row_set, null_map, rows_to_read); + auto * number_column = static_cast(column.get()); + auto & data = number_column->getData(); + plain_decoder->decodeFixedValueSpace(data, row_set, null_map, rows_to_read); } template -void computeRowSetPlainSpace( +static void computeRowSetPlainSpace( const T * start, OptionalRowSet & row_set, const ColumnFilterPtr & filter, PaddedPODArray & null_map, size_t rows_to_read) { if (!filter || !row_set.has_value()) @@ -370,40 +380,49 @@ void computeRowSetPlainSpace( } else { - sets.set(i, filter->testInt64(start[count])); + if constexpr (std::is_same_v) + sets.set(i, filter->testInt64(start[count])); + else if constexpr (std::is_same_v) + sets.set(i, filter->testInt32(start[count])); + else if constexpr (std::is_same_v) + sets.set(i, filter->testFloat32(start[count])); + else if constexpr (std::is_same_v) + sets.set(i, filter->testFloat64(start[count])); + else + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unsupported type"); count++; } } } -template -void NumberColumnDirectReader::computeRowSetSpace(OptionalRowSet & row_set, PaddedPODArray & null_map, size_t, size_t rows_to_read) +template +void NumberColumnDirectReader::computeRowSetSpace(OptionalRowSet & row_set, PaddedPODArray & null_map, size_t, size_t rows_to_read) { readAndDecodePage(); - const Int64 * start = reinterpret_cast(state.buffer); + const SerializedType * start = reinterpret_cast(state.buffer); computeRowSetPlainSpace(start, row_set, scan_spec.filter, null_map, rows_to_read); } -template -MutableColumnPtr NumberColumnDirectReader::createColumn() +template +MutableColumnPtr NumberColumnDirectReader::createColumn() { return datatype->createColumn(); } -template -NumberColumnDirectReader::NumberColumnDirectReader(std::unique_ptr page_reader_, ScanSpec scan_spec_, DataTypePtr datatype_) +template +NumberColumnDirectReader::NumberColumnDirectReader(std::unique_ptr page_reader_, ScanSpec scan_spec_, DataTypePtr datatype_) : SelectiveColumnReader(std::move(page_reader_), scan_spec_), datatype(datatype_) { } -template -NumberDictionaryReader::NumberDictionaryReader(std::unique_ptr page_reader_, ScanSpec scan_spec_, DataTypePtr datatype_) +template +NumberDictionaryReader::NumberDictionaryReader(std::unique_ptr page_reader_, ScanSpec scan_spec_, DataTypePtr datatype_) : SelectiveColumnReader(std::move(page_reader_), scan_spec_), datatype(datatype_) { } -template -void NumberDictionaryReader::nextIdxBatchIfEmpty(size_t rows_to_read) +template +void NumberDictionaryReader::nextIdxBatchIfEmpty(size_t rows_to_read) { if (!state.idx_buffer.empty() || plain) return; @@ -411,14 +430,14 @@ void NumberDictionaryReader::nextIdxBatchIfEmpty(size_t rows_to_read) idx_decoder.GetBatch(state.idx_buffer.data(), static_cast(rows_to_read)); } -template -void NumberDictionaryReader::computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) +template +void NumberDictionaryReader::computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) { readAndDecodePage(); chassert(rows_to_read <= state.remain_rows); if (plain) { - const Int64 * start = reinterpret_cast(state.buffer); + const SerializedType * start = reinterpret_cast(state.buffer); computeRowSetPlain(start, row_set, scan_spec.filter, rows_to_read); return; } @@ -432,15 +451,13 @@ void NumberDictionaryReader::computeRowSet(OptionalRowSet & row_set, s int idx = state.idx_buffer[i]; if (!cache.has(idx)) { - if constexpr (std::is_same_v) + if constexpr (std::is_same_v) cache.set(idx, scan_spec.filter->testInt64(dict[idx])); - else if constexpr (std::is_same_v) + else if constexpr (std::is_same_v) cache.set(idx, scan_spec.filter->testInt32(dict[idx])); - else if constexpr (std::is_same_v) - cache.set(idx, scan_spec.filter->testInt16(dict[idx])); - else if constexpr (std::is_same_v) + else if constexpr (std::is_same_v) cache.set(idx, scan_spec.filter->testFloat32(dict[idx])); - else if constexpr (std::is_same_v) + else if constexpr (std::is_same_v) cache.set(idx, scan_spec.filter->testFloat64(dict[idx])); else throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unsupported type"); @@ -450,15 +467,15 @@ void NumberDictionaryReader::computeRowSet(OptionalRowSet & row_set, s } } -template -void NumberDictionaryReader::computeRowSetSpace( +template +void NumberDictionaryReader::computeRowSetSpace( OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) { readAndDecodePage(); chassert(rows_to_read <= state.remain_rows); if (plain) { - const Int64 * start = reinterpret_cast(state.buffer); + const SerializedType * start = reinterpret_cast(state.buffer); computeRowSetPlainSpace(start, row_set, scan_spec.filter, null_map, rows_to_read); return; } @@ -484,8 +501,14 @@ void NumberDictionaryReader::computeRowSetSpace( int idx = state.idx_buffer[count++]; if (!cache.has(idx)) { - if constexpr (std::is_same_v) + if constexpr (std::is_same_v) cache.set(idx, scan_spec.filter->testInt64(dict[idx])); + else if constexpr (std::is_same_v) + cache.set(idx, scan_spec.filter->testInt32(dict[idx])); + else if constexpr (std::is_same_v) + cache.set(idx, scan_spec.filter->testFloat32(dict[idx])); + else if constexpr (std::is_same_v) + cache.set(idx, scan_spec.filter->testFloat64(dict[idx])); else throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unsupported type"); } @@ -495,23 +518,23 @@ void NumberDictionaryReader::computeRowSetSpace( } } -template -void NumberDictionaryReader::read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) +template +void NumberDictionaryReader::read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) { readAndDecodePage(); - auto * int_column = static_cast(column.get()); - auto & data = int_column->getData(); + auto * number_column = static_cast(column.get()); + auto & data = number_column->getData(); nextIdxBatchIfEmpty(rows_to_read); if (plain) - plain_decoder->decodeFixedValue(data, row_set, rows_to_read); + plain_decoder->decodeFixedValue(data, row_set, rows_to_read); else { dict_decoder->decodeFixedValue(dict, data, row_set, rows_to_read); } } -template -void NumberDictionaryReader::readSpace( +template +void NumberDictionaryReader::readSpace( MutableColumnPtr & column, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) { readAndDecodePage(); @@ -519,23 +542,27 @@ void NumberDictionaryReader::readSpace( auto & data = int_column->getData(); nextIdxBatchIfEmpty(rows_to_read - null_count); if (plain) - plain_decoder->decodeFixedValueSpace(data, row_set, null_map, rows_to_read); + plain_decoder->decodeFixedValueSpace(data, row_set, null_map, rows_to_read); else dict_decoder->decodeFixedValueSpace(dict, data, row_set, null_map, rows_to_read); } -template -void NumberDictionaryReader::readDictPage(const parquet::DictionaryPage & page) +template +void NumberDictionaryReader::readDictPage(const parquet::DictionaryPage & page) { - const auto * dict_data = page.data(); - auto dict_size = page.num_values(); + const SerializedType * dict_data = reinterpret_cast(page.data()); + size_t dict_size = page.num_values(); dict.resize(dict_size); state.filter_cache = std::make_unique(dict_size); - memcpy(dict.data(), dict_data, dict_size * sizeof(typename DataType::FieldType)); + if constexpr (std::is_same_v) + memcpy(dict.data(), dict_data, dict_size * sizeof(typename DataType::FieldType)); + else + for (size_t i = 0; i < dict_size; i++) + dict[i] = static_cast(dict_data[i]); } -template -size_t NumberDictionaryReader::skipValuesInCurrentPage(size_t rows_to_skip) +template +size_t NumberDictionaryReader::skipValuesInCurrentPage(size_t rows_to_skip) { if (!state.page || !rows_to_skip) return rows_to_skip; @@ -543,7 +570,7 @@ size_t NumberDictionaryReader::skipValuesInCurrentPage(size_t rows_to_ state.remain_rows -= skipped; if (plain) { - state.buffer += skipped * sizeof(Int64); + state.buffer += skipped * sizeof(SerializedType); } else { @@ -563,16 +590,16 @@ size_t NumberDictionaryReader::skipValuesInCurrentPage(size_t rows_to_ return rows_to_skip - skipped; } -template -void NumberDictionaryReader::createDictDecoder() +template +void NumberDictionaryReader::createDictDecoder() { dict_decoder = std::make_unique(state.idx_buffer, state.remain_rows); } -template -void NumberDictionaryReader::downgradeToPlain() +template +void NumberDictionaryReader::downgradeToPlain() { - dict.resize(0); + dict.resize_exact(0); dict_decoder.reset(); } @@ -720,50 +747,58 @@ SelectiveColumnReaderPtr SelectiveColumnReaderFactory::createLeafColumnReader( { auto type_int64 = std::make_shared(); if (!column_metadata.has_dictionary_page()) - return std::make_shared>(std::move(page_reader), scan_spec, type_int64); + return std::make_shared>(std::move(page_reader), scan_spec, type_int64); else - return std::make_shared>(std::move(page_reader), scan_spec, type_int64); + return std::make_shared>(std::move(page_reader), scan_spec, type_int64); } - if (column_desc->physical_type() == parquet::Type::INT32 && isLogicalTypeIntOrNull(column_desc->logical_type()->type())) + else if (column_desc->physical_type() == parquet::Type::INT32 && column_desc->logical_type()->type() == parquet::LogicalType::Type::INT && column_desc->converted_type() == parquet::ConvertedType::INT_16) + { + auto type_int16 = std::make_shared(); + if (!column_metadata.has_dictionary_page()) + return std::make_shared>(std::move(page_reader), scan_spec, type_int16); + else + return std::make_shared>(std::move(page_reader), scan_spec, type_int16); + } + else if (column_desc->physical_type() == parquet::Type::INT32 && isLogicalTypeIntOrNull(column_desc->logical_type()->type())) { auto type_int32 = std::make_shared(); if (!column_metadata.has_dictionary_page()) - return std::make_shared>(std::move(page_reader), scan_spec, type_int32); + return std::make_shared>(std::move(page_reader), scan_spec, type_int32); else - return std::make_shared>(std::move(page_reader), scan_spec, type_int32); + return std::make_shared>(std::move(page_reader), scan_spec, type_int32); } - if (column_desc->physical_type() == parquet::Type::INT32 && isLogicalTypeDate(column_desc->logical_type()->type())) + else if (column_desc->physical_type() == parquet::Type::INT32 && isLogicalTypeDate(column_desc->logical_type()->type())) { auto type_date32 = std::make_shared(); if (!column_metadata.has_dictionary_page()) - return std::make_shared>(std::move(page_reader), scan_spec, type_date32); + return std::make_shared>(std::move(page_reader), scan_spec, type_date32); else - return std::make_shared>(std::move(page_reader), scan_spec, type_date32); + return std::make_shared>(std::move(page_reader), scan_spec, type_date32); } - if (column_desc->physical_type() == parquet::Type::INT64 && isLogicalTypeDateTime(column_desc->logical_type()->type())) + else if (column_desc->physical_type() == parquet::Type::INT64 && isLogicalTypeDateTime(column_desc->logical_type()->type())) { const auto & tm_type = dynamic_cast(*column_desc->logical_type()); auto type_datetime64 = std::make_shared(getScaleFromLogicalTimestamp(tm_type.time_unit())); if (!column_metadata.has_dictionary_page()) - return std::make_shared>(std::move(page_reader), scan_spec, type_datetime64); + return std::make_shared>(std::move(page_reader), scan_spec, type_datetime64); else - return std::make_shared>(std::move(page_reader), scan_spec, type_datetime64); + return std::make_shared>(std::move(page_reader), scan_spec, type_datetime64); } else if (column_desc->physical_type() == parquet::Type::FLOAT) { auto type_float32 = std::make_shared(); if (!column_metadata.has_dictionary_page()) - return std::make_shared>(std::move(page_reader), scan_spec, type_float32); + return std::make_shared>(std::move(page_reader), scan_spec, type_float32); else - return std::make_shared>(std::move(page_reader), scan_spec, type_float32); + return std::make_shared>(std::move(page_reader), scan_spec, type_float32); } else if (column_desc->physical_type() == parquet::Type::DOUBLE) { auto type_float64 = std::make_shared(); if (!column_metadata.has_dictionary_page()) - return std::make_shared>(std::move(page_reader), scan_spec, type_float64); + return std::make_shared>(std::move(page_reader), scan_spec, type_float64); else - return std::make_shared>(std::move(page_reader), scan_spec, type_float64); + return std::make_shared>(std::move(page_reader), scan_spec, type_float64); } else if (column_desc->physical_type() == parquet::Type::BYTE_ARRAY) { @@ -784,19 +819,21 @@ SelectiveColumnReaderPtr SelectiveColumnReaderFactory::createOptionalColumnReade return std::make_shared(scan_spec, std::move(child)); } -template class NumberColumnDirectReader; -template class NumberColumnDirectReader; -template class NumberColumnDirectReader; -template class NumberColumnDirectReader; -template class NumberColumnDirectReader; -template class NumberColumnDirectReader; +template class NumberColumnDirectReader; +template class NumberColumnDirectReader; +template class NumberColumnDirectReader; +template class NumberColumnDirectReader; +template class NumberColumnDirectReader; +template class NumberColumnDirectReader; +template class NumberColumnDirectReader; -template class NumberDictionaryReader; -template class NumberDictionaryReader; -template class NumberDictionaryReader; -template class NumberDictionaryReader; -template class NumberDictionaryReader; -template class NumberDictionaryReader; +template class NumberDictionaryReader; +template class NumberDictionaryReader; +template class NumberDictionaryReader; +template class NumberDictionaryReader; +template class NumberDictionaryReader; +template class NumberDictionaryReader; +template class NumberDictionaryReader; Int32 loadLength(const uint8_t * data) { @@ -817,12 +854,15 @@ void computeRowSetPlainString(const uint8_t * start, OptionalRowSet & row_set, C { auto len = loadLength(start + offset); offset += 4; - sets.set(i, filter->testString(String(reinterpret_cast(start + offset), len))); + if (len == 0) + sets.set(i, filter->testString("")); + else + sets.set(i, filter->testString(String(reinterpret_cast(start + offset), len))); offset += len; } } void computeRowSetPlainStringSpace( - const uint8_t * start, OptionalRowSet & row_set, ColumnFilterPtr filter, size_t rows_to_read, PaddedPODArray & null_map) + const uint8_t * start, OptionalRowSet & row_set, ColumnFilterPtr filter, size_t rows_to_read, PaddedPODArray & null_map) { if (!filter || !row_set.has_value()) return; @@ -837,7 +877,10 @@ void computeRowSetPlainStringSpace( } auto len = loadLength(start + offset); offset += 4; - sets.set(i, filter->testString(String(reinterpret_cast(start + offset), len))); + if (len == 0) + sets.set(i, filter->testString("")); + else + sets.set(i, filter->testString(String(reinterpret_cast(start + offset), len))); offset += len; } } @@ -868,10 +911,15 @@ void StringDictionaryReader::readDictPage(const parquet::DictionaryPage & page) { auto len = loadLength(dict_data); dict_data += 4; - String value; - value.resize(len); - memcpy(value.data(), dict_data, len); - dict.emplace_back(value); + if (len) + { + String value; + value.resize(len); + memcpy(value.data(), dict_data, len); + dict.emplace_back(value); + } + else + dict.emplace_back(""); dict_data += len; } } @@ -990,6 +1038,8 @@ void StringDictionaryReader::computeRowSetSpace( void StringDictionaryReader::computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) { + if (!scan_spec.filter || !row_set.has_value()) + return; readAndDecodePage(); chassert(rows_to_read <= state.remain_rows); if (plain) @@ -998,19 +1048,16 @@ void StringDictionaryReader::computeRowSet(OptionalRowSet & row_set, size_t rows return; } nextIdxBatchIfEmpty(rows_to_read); - if (scan_spec.filter || row_set.has_value()) + auto & cache = *state.filter_cache; + for (size_t i = 0; i < rows_to_read; ++i) { - auto & cache = *state.filter_cache; - for (size_t i = 0; i < rows_to_read; ++i) + auto & sets = row_set.value(); + int idx = state.idx_buffer[i]; + if (!cache.has(idx)) { - auto & sets = row_set.value(); - int idx = state.idx_buffer[i]; - if (!cache.has(idx)) - { - cache.set(idx, scan_spec.filter->testString(dict[idx])); - } - sets.set(i, cache.get(idx)); + cache.set(idx, scan_spec.filter->testString(dict[idx])); } + sets.set(i, cache.get(idx)); } } @@ -1039,6 +1086,7 @@ size_t StringDirectReader::skipValuesInCurrentPage(size_t rows_to_skip) void StringDirectReader::readSpace( MutableColumnPtr & column, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) { + readAndDecodePage(); ColumnString * string_column = reinterpret_cast(column.get()); size_t total_size = plain_decoder->calculateStringTotalSizeSpace(state.buffer, row_set, null_map, rows_to_read - null_count); string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_to_read); @@ -1048,6 +1096,7 @@ void StringDirectReader::readSpace( void StringDirectReader::read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) { + readAndDecodePage(); ColumnString * string_column = reinterpret_cast(column.get()); size_t total_size = plain_decoder->calculateStringTotalSize(state.buffer, row_set, rows_to_read); string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_to_read); @@ -1067,6 +1116,22 @@ void StringDirectReader::computeRowSet(OptionalRowSet & row_set, size_t rows_to_ computeRowSetPlainString(state.buffer, row_set, scan_spec.filter, rows_to_read); } +static void appendString(ColumnString::Chars & chars, + IColumn::Offsets & offsets, + const String& value) +{ + if (!value.empty()) + { + auto chars_cursor = chars.size(); + chars.resize(chars_cursor + value.size() + 1); + memcpySmallAllowReadWriteOverflow15(&chars[chars_cursor], value.data(), value.size()); + chars.back() = 0; + } + else + chars.push_back(0); + offsets.push_back(chars.size()); +} + void DictDecoder::decodeStringSpace( std::vector & dict, ColumnString::Chars & chars, @@ -1091,11 +1156,8 @@ void DictDecoder::decodeStringSpace( } else { - String value = dict[idx_buffer[count]]; - chars.insert(value.data(), value.data() + value.size()); - chars.push_back(0); - offsets.push_back(chars.size()); - count++; + const String& value = dict[idx_buffer[count]]; + appendString(chars, offsets, value); } } else if (!null_map[rows_read]) @@ -1114,10 +1176,8 @@ void DictDecoder::decodeStringSpace( } else { - String value = dict[idx_buffer[count]]; - chars.insert(value.data(), value.data() + value.size()); - chars.push_back(0); - offsets.push_back(chars.size()); + const String& value = dict[idx_buffer[count]]; + appendString(chars, offsets, value); count++; } rows_read++; @@ -1127,6 +1187,7 @@ void DictDecoder::decodeStringSpace( remain_rows -= rows_to_read; idx_buffer.resize(0); } + void DictDecoder::decodeString( std::vector & dict, ColumnString::Chars & chars, @@ -1141,12 +1202,8 @@ void DictDecoder::decodeString( { if (sets.get(i)) { - String & value = dict[idx_buffer[i]]; - auto chars_cursor = chars.size(); - chars.resize(chars_cursor + value.size() + 1); - memcpySmallAllowReadWriteOverflow15(&chars[chars_cursor], value.data(), value.size()); - chars.back() = 0; - offsets.push_back(chars.size()); + const String & value = dict[idx_buffer[i]]; + appendString(chars, offsets, value); } } } @@ -1154,12 +1211,8 @@ void DictDecoder::decodeString( { for (size_t i = 0; i < rows_to_read; i++) { - String & value = dict[idx_buffer[i]]; - auto chars_cursor = chars.size(); - chars.resize(chars_cursor + value.size() + 1); - memcpySmallAllowReadWriteOverflow15(&chars[chars_cursor], value.data(), value.size()); - chars.back() = 0; - offsets.push_back(chars.size()); + const String & value = dict[idx_buffer[i]]; + appendString(chars, offsets, value); } } idx_buffer.resize(0); diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h index d1cc9f99f8b..f13111a8cbf 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h @@ -92,7 +92,7 @@ class PlainDecoder public: PlainDecoder(const uint8_t *& buffer_, size_t & remain_rows_) : buffer(buffer_), remain_rows(remain_rows_) { } - template + template void decodeFixedValue(PaddedPODArray & data, const OptionalRowSet & row_set, size_t rows_to_read); void decodeString(ColumnString::Chars & chars, ColumnString::Offsets & offsets, const OptionalRowSet & row_set, size_t rows_to_read) @@ -107,7 +107,8 @@ public: offset += 4; if (sets.get(i)) { - chars.insert_assume_reserved(buffer + offset, buffer + offset + len); + if (len) + chars.insert_assume_reserved(buffer + offset, buffer + offset + len); chars.push_back(0); offsets.push_back(chars.size()); offset += len; @@ -124,7 +125,8 @@ public: { auto len = loadLength(buffer + offset); offset += 4; - chars.insert_assume_reserved(buffer + offset, buffer + offset + len); + if (len) + chars.insert_assume_reserved(buffer + offset, buffer + offset + len); chars.push_back(0); offsets.push_back(chars.size()); offset += len; @@ -134,11 +136,11 @@ public: remain_rows -= rows_to_read; } - template + template void decodeFixedValueSpace(PaddedPODArray & data, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t rows_to_read) { size_t rows_read = 0; - const T * start = reinterpret_cast(buffer); + const S * start = reinterpret_cast(buffer); size_t count = 0; if (!row_set.has_value()) { @@ -150,7 +152,7 @@ public: } else { - data.push_back(start[count]); + data.push_back(static_cast(start[count])); count++; } } @@ -168,14 +170,14 @@ public: } else { - data.push_back(start[count]); + data.push_back(static_cast(start[count])); count++; } } rows_read++; } } - buffer += count * sizeof(Int64); + buffer += count * sizeof(S); remain_rows -= rows_to_read; } @@ -206,7 +208,8 @@ public: offset += 4; if (sets.get(i)) { - chars.insert_assume_reserved(buffer + offset, buffer + offset + len); + if (len) + chars.insert_assume_reserved(buffer + offset, buffer + offset + len); chars.push_back(0); offsets.push_back(chars.size()); offset += len; @@ -229,7 +232,8 @@ public: } auto len = loadLength(buffer + offset); offset += 4; - chars.insert_assume_reserved(buffer + offset, buffer + offset + len); + if (len) + chars.insert_assume_reserved(buffer + offset, buffer + offset + len); chars.push_back(0); offsets.push_back(chars.size()); offset += len; @@ -362,6 +366,7 @@ public: } virtual size_t currentRemainRows() const { return state.remain_rows; } + size_t availableRows() const { return std::max(state.remain_rows - state.lazy_skip_rows, 0UL); } void skipNulls(size_t rows_to_skip); @@ -391,7 +396,7 @@ protected: bool plain = true; }; -template +template class NumberColumnDirectReader : public SelectiveColumnReader { public: @@ -409,7 +414,7 @@ private: DataTypePtr datatype; }; -template +template class NumberDictionaryReader : public SelectiveColumnReader { public: @@ -529,9 +534,7 @@ public: bool hasMoreRows() const { return remain_rows > 0; } void printMetrics(std::ostream & out) const { - out << "metrics.output_rows: " << metrics.output_rows << "\n"; - out << "metrics.filtered_rows: " << metrics.filtered_rows << "\n"; - out << "metrics.skipped_rows: " << metrics.skipped_rows << "\n"; + out << fmt::format("metrics.output_rows: {} \n metrics.filtered_rows: {} \n metrics.skipped_rows: {} \n", metrics.output_rows, metrics.filtered_rows, metrics.skipped_rows); } private: ParquetReader * parquet_reader; diff --git a/tests/queries/0_stateless/03214_native_parquet.sql b/tests/queries/0_stateless/03214_native_parquet.sql index 34495dd307d..e798906544a 100644 --- a/tests/queries/0_stateless/03214_native_parquet.sql +++ b/tests/queries/0_stateless/03214_native_parquet.sql @@ -1,32 +1,44 @@ drop table if exists test_native_parquet; -create table test_native_parquet (a Int32, b Int64, c Float32, d Float64, s String, dat Date32, time DateTime64) engine=File(Parquet) settings input_format_parquet_use_native_reader=true; -insert into test_native_parquet select number, number+1, 0.1*number, 0.2*number, toString(number), number, now64() + number from numbers(10000); +create table test_native_parquet (i16 Int16, i32 Int32, i64 Int64, float Float32, double Float64, string String, date Date32, time DateTime64) engine=File(Parquet) settings input_format_parquet_use_native_reader=true; +insert into test_native_parquet select number, number, number+1, 0.1*number, 0.2*number, toString(number), number, now64() + number from numbers(10000); -select * from test_native_parquet where a < 10; -select * from test_native_parquet where a <= 10; -select * from test_native_parquet where a between 10 and 20; -select * from test_native_parquet where a > 9990; -select * from test_native_parquet where a >= 9990; +select * from test_native_parquet where i16 < 10; +select * from test_native_parquet where i16 <= 10; +select * from test_native_parquet where i16 between 10 and 20; +select * from test_native_parquet where i16 > 9990; +select * from test_native_parquet where i16 >= 9990; -select * from test_native_parquet where b < 10; -select * from test_native_parquet where b <= 10; -select * from test_native_parquet where b between 10 and 20; -select * from test_native_parquet where b > 9990; -select * from test_native_parquet where b >= 9990; +select * from test_native_parquet where i32 < 10; +select * from test_native_parquet where i32 <= 10; +select * from test_native_parquet where i32 between 10 and 20; +select * from test_native_parquet where i32 > 9990; +select * from test_native_parquet where i32 >= 9990; -select * from test_native_parquet where c < 1; -select * from test_native_parquet where c <= 1; -select * from test_native_parquet where c between 1 and 2; -select * from test_native_parquet where c > 999; -select * from test_native_parquet where c >= 999; +select * from test_native_parquet where i64 < 10; +select * from test_native_parquet where i64 <= 10; +select * from test_native_parquet where i64 between 10 and 20; +select * from test_native_parquet where i64 > 9990; +select * from test_native_parquet where i64 >= 9990; -select * from test_native_parquet where b < 2; -select * from test_native_parquet where b <= 2; -select * from test_native_parquet where b between 2 and 4; -select * from test_native_parquet where b > 9990 *0.2; -select * from test_native_parquet where b >= 9990 *0.2; +select * from test_native_parquet where float < 1; +select * from test_native_parquet where float <= 1; +select * from test_native_parquet where float between 1 and 2; +select * from test_native_parquet where float > 999; +select * from test_native_parquet where float >= 999; -select * from test_native_parquet where s = '1'; -select * from test_native_parquet where s in ('1','2','3'); +select * from test_native_parquet where double < 2; +select * from test_native_parquet where double <= 2; +select * from test_native_parquet where double between 2 and 4; +select * from test_native_parquet where double > 9990 *0.2; +select * from test_native_parquet where double >= 9990 *0.2; + +select * from test_native_parquet where date < '1970-01-10'; +select * from test_native_parquet where date <= '1970-01-10'; +select * from test_native_parquet where date between '1970-01-10' and '1970-01-20'; +select * from test_native_parquet where date > '1970-01-10'; +select * from test_native_parquet where date >= '1970-01-10'; + +select * from test_native_parquet where string = '1'; +select * from test_native_parquet where string in ('1','2','3'); drop table if exists test_native_parquet; diff --git a/tests/queries/0_stateless/03214_native_parquet_benchmark.sql b/tests/queries/0_stateless/03214_native_parquet_benchmark.sql new file mode 100644 index 00000000000..99ee1025e0e --- /dev/null +++ b/tests/queries/0_stateless/03214_native_parquet_benchmark.sql @@ -0,0 +1,59 @@ +drop table if exists int_native_parquet; +drop table if exists int_arrow_parquet; +drop table if exists int_mergetree; + +create table int_native_parquet (i1 Int64, i2 Int64, i3 Int64, i4 Int64, i5 Int64, i6 Int64, i7 Int64) engine=File(Parquet) settings input_format_parquet_use_native_reader=true; +create table int_arrow_parquet (i1 Int64, i2 Int64, i3 Int64, i4 Int64, i5 Int64, i6 Int64, i7 Int64) engine=File(Parquet) settings input_format_parquet_use_native_reader=false; +create table int_mergetree (i1 Int64, i2 Int64, i3 Int64, i4 Int64, i5 Int64, i6 Int64, i7 Int64) engine=MergeTree() order by tuple(); + + +insert into int_native_parquet select (number%100000)/10, rand()%100, rand()%1000, rand(), rand(), rand(), rand() from numbers(100000000); +insert into int_arrow_parquet select (number%100000)/10, rand()%100, rand()%1000, rand(), rand(), rand(), rand() from numbers(100000000); +insert into int_mergetree select (number%100000)/10, rand()%100, rand()%1000, rand(), rand(), rand(), rand() from numbers(100000000); +optimize table int_mergetree; + +select * from int_native_parquet where i1 < 10 Format Null; # 0.399s +select * from int_arrow_parquet where i1 < 10 Format Null; # 1.207s +select * from int_mergetree where i1 < 10 Format Null; # 0.095s + +select * from int_native_parquet where i2 < 10 Format Null; # 0.717s +select * from int_arrow_parquet where i2 < 10 Format Null; # 1.358s +select * from int_mergetree where i2 < 10 Format Null; # 0.658s + +select * from int_native_parquet where i3 < 10 Format Null; # 0.670s +select * from int_arrow_parquet where i3 < 10 Format Null; # 1.245s +select * from int_mergetree where i3 < 10 Format Null; # 0.663s + +drop table if exists int_native_parquet; +drop table if exists int_arrow_parquet; +drop table if exists int_mergetree; + + +drop table if exists string_native_parquet; +drop table if exists string_arrow_parquet; +drop table if exists string_mergetree; + +create table string_native_parquet (s1 String, s2 String, s3 String, s4 String, s5 String, s6 String, s7 String) engine=File(Parquet) settings input_format_parquet_use_native_reader=true; +create table string_arrow_parquet (s1 String, s2 String, s3 String, s4 String, s5 String, s6 String, s7 String) engine=File(Parquet) settings input_format_parquet_use_native_reader=false; +create table string_mergetree (s1 String, s2 String, s3 String, s4 String, s5 String, s6 String, s7 String) engine=MergeTree() order by tuple(); + +insert into string_native_parquet select toString((number%100000)/10), toString(rand()%100), toString(rand()%1000), toString(rand()), toString(rand()), toString(rand()), toString(rand()) from numbers(100000000); +insert into string_arrow_parquet select toString((number%100000)/10), toString(rand()%100), toString(rand()%1000), toString(rand()), toString(rand()), toString(rand()), toString(rand()) from numbers(100000000); +insert into string_mergetree select toString((number%100000)/10), toString(rand()%100), toString(rand()%1000), toString(rand()), toString(rand()), toString(rand()), toString(rand()) from numbers(100000000); +optimize table string_mergetree final; + +select * from string_native_parquet where s1 in ('1', '2', '3', '4', '5', '6', '7', '8', '9', '10') Format Null; # 0.598s +select * from string_arrow_parquet where s1 in ('1', '2', '3', '4', '5', '6', '7', '8', '9', '10') Format Null; # 2.694s +select * from string_mergetree where s1 in ('1', '2', '3', '4', '5', '6', '7', '8', '9', '10') Format Null; # 0.187s + +select * from string_native_parquet where s2 in ('1', '2', '3', '4', '5', '6', '7', '8', '9', '10') Format Null; # 1.228s +select * from string_arrow_parquet where s2 in ('1', '2', '3', '4', '5', '6', '7', '8', '9', '10') Format Null; # 3.006s +select * from string_mergetree where s2 in ('1', '2', '3', '4', '5', '6', '7', '8', '9', '10') Format Null; # 1.502s + +select * from string_native_parquet where s3 in ('1', '2', '3', '4', '5', '6', '7', '8', '9', '10') Format Null; # 1.140s +select * from string_arrow_parquet where s3 in ('1', '2', '3', '4', '5', '6', '7', '8', '9', '10') Format Null; # 2.707s +select * from string_mergetree where s3 in ('1', '2', '3', '4', '5', '6', '7', '8', '9', '10') Format Null; # 1.310s + +drop table if exists string_native_parquet; +drop table if exists string_native_parquet; +drop table if exists string_mergetree; From d1de42469ec36a233a6e2a30eeb61258be6eda78 Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Sat, 24 Aug 2024 14:06:03 +0800 Subject: [PATCH 16/34] fix row set --- .../Formats/Impl/Parquet/ColumnFilter.cpp | 14 +- .../Formats/Impl/Parquet/ColumnFilter.h | 30 +++- .../Impl/Parquet/SelectiveColumnReader.cpp | 148 +++++++++--------- .../tests/gtest_native_parquet_reader.cpp | 52 +++++- 4 files changed, 151 insertions(+), 93 deletions(-) diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp index 94af6fb43fa..0c28dd0bef1 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp @@ -534,7 +534,7 @@ bool RowSet::none() const bool res = true; auto increment = xsimd::batch_bool::size; auto num_batched = max_rows / increment; - for (size_t i = 0; i < num_batched; i += increment) + for (size_t i = 0; i < num_batched; ++i) { auto batch = xsimd::batch_bool::load_aligned(mask.data() + (i * increment)); res &= xsimd::none(batch); @@ -552,7 +552,7 @@ bool RowSet::all() const bool res = true; auto increment = xsimd::batch_bool::size; auto num_batched = max_rows / increment; - for (size_t i = 0; i < num_batched; i += increment) + for (size_t i = 0; i < num_batched; ++i) { auto batch = xsimd::batch_bool::load_aligned(mask.data() + (i * increment)); res &= xsimd::all(batch); @@ -568,19 +568,17 @@ bool RowSet::all() const bool RowSet::any() const { - bool res = true; + bool res = false; auto increment = xsimd::batch_bool::size; auto num_batched = max_rows / increment; - for (size_t i = 0; i < num_batched; i += increment) + for (size_t i = 0; i < num_batched; ++i) { auto batch = xsimd::batch_bool::load_aligned(mask.data() + (i * increment)); - res &= xsimd::any(batch); - if (res) - return true; + res |= xsimd::any(batch); } for (size_t i = num_batched * increment; i < max_rows; ++i) { - res &= mask[i]; + res |= mask[i]; } return res; } diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h index 270cd9bf9d1..fae0b73f00a 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h @@ -19,17 +19,35 @@ extern const int PARQUET_EXCEPTION; class RowSet { public: - explicit RowSet(size_t max_rows_) : max_rows(max_rows_) { mask.resize_fill(max_rows, true); } + explicit RowSet(size_t max_rows_) : max_rows(max_rows_) + { + mask.resize(max_rows, true); + std::fill(mask.begin(), mask.end(), true); + } inline void set(size_t i, bool value) { mask[i] = value; } - inline bool get(size_t i) const { return mask[i]; } + inline bool get(size_t i) const + { + if (i >= max_rows) + throw DB::Exception(DB::ErrorCodes::LOGICAL_ERROR, "RowSet index out of bound: {} >= {}", i, max_rows); + return mask[i]; + } inline size_t totalRows() const { return max_rows; } bool none() const; bool all() const; bool any() const; - void setAllTrue() { mask.resize(max_rows, true); } - void setAllFalse() { mask.resize(max_rows, false); } - size_t count() const { return std::reduce(mask.begin(), mask.end(), 0, [](bool a, bool b) { return a+b;}); } + void setAllTrue() { std::fill(mask.begin(), mask.end(), true); } + void setAllFalse() { std::fill(mask.begin(), mask.end(), false); } + size_t count() const + { + size_t count = 0; + for (size_t i = 0; i < max_rows; ++i) + { + if (mask[i]) + ++count; + } + return count; + } PaddedPODArray & maskReference() { return mask; } const PaddedPODArray & maskReference() const { return mask; } @@ -236,7 +254,7 @@ public: } private: - template + template void testIntValues(RowSet & row_set, size_t offset, size_t len, const T * data) const; const Int64 max; diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index 48ce84e45be..159620b847a 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -210,6 +210,14 @@ bool SelectiveColumnReader::readPage() if (page_type == parquet::format::PageType::DICTIONARY_PAGE) { auto dict_page = page_reader->nextPage(); + const parquet::DictionaryPage & dict_page1 = *std::static_pointer_cast(dict_page); + if (unlikely( + dict_page1.encoding() != parquet::Encoding::PLAIN_DICTIONARY + && dict_page1.encoding() != parquet::Encoding::PLAIN)) + { + throw Exception( + ErrorCodes::NOT_IMPLEMENTED, "Unsupported dictionary page encoding {}", dict_page1.encoding()); + } readDictPage(static_cast(*dict_page)); } else if (page_type == parquet::format::PageType::DATA_PAGE) @@ -309,19 +317,16 @@ void SelectiveColumnReader::skipNulls(size_t rows_to_skip) template static void computeRowSetPlain(const T * start, OptionalRowSet & row_set, const ColumnFilterPtr & filter, size_t rows_to_read) { - if (filter) + if (filter && row_set.has_value()) { - if (row_set.has_value()) - { - if constexpr (std::is_same_v) - filter->testInt64Values(row_set.value(), 0, rows_to_read, start); - else if constexpr (std::is_same_v) - filter->testInt32Values(row_set.value(), 0, rows_to_read, start); - else if constexpr (std::is_same_v) - filter->testInt16Values(row_set.value(), 0, rows_to_read, start); - else - throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unsupported type"); - } + if constexpr (std::is_same_v) + filter->testInt64Values(row_set.value(), 0, rows_to_read, start); + else if constexpr (std::is_same_v) + filter->testInt32Values(row_set.value(), 0, rows_to_read, start); + else if constexpr (std::is_same_v) + filter->testInt16Values(row_set.value(), 0, rows_to_read, start); + else + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unsupported type"); } } @@ -427,12 +432,15 @@ void NumberDictionaryReader::nextIdxBatchIfEmpty(size_ if (!state.idx_buffer.empty() || plain) return; state.idx_buffer.resize(rows_to_read); - idx_decoder.GetBatch(state.idx_buffer.data(), static_cast(rows_to_read)); + size_t count = idx_decoder.GetBatch(state.idx_buffer.data(), static_cast(rows_to_read)); + if (count != rows_to_read) + throw DB::Exception(ErrorCodes::LOGICAL_ERROR, "read full idx batch failed. read {} rows, expect {}", count, rows_to_read); } template void NumberDictionaryReader::computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) { + if (!scan_spec.filter || !row_set.has_value()) return; readAndDecodePage(); chassert(rows_to_read <= state.remain_rows); if (plain) @@ -442,13 +450,61 @@ void NumberDictionaryReader::computeRowSet(OptionalRow return; } nextIdxBatchIfEmpty(rows_to_read); - if (scan_spec.filter || row_set.has_value()) + auto & cache = *state.filter_cache; + auto & sets = row_set.value(); + for (size_t i = 0; i < rows_to_read; ++i) { - auto & cache = *state.filter_cache; - auto & sets = row_set.value(); - for (size_t i = 0; i < rows_to_read; ++i) + int idx = state.idx_buffer[i]; + if (!cache.has(idx)) { - int idx = state.idx_buffer[i]; + if constexpr (std::is_same_v) + cache.set(idx, scan_spec.filter->testInt64(dict[idx])); + else if constexpr (std::is_same_v) + cache.set(idx, scan_spec.filter->testInt32(dict[idx])); + else if constexpr (std::is_same_v) + cache.set(idx, scan_spec.filter->testFloat32(dict[idx])); + else if constexpr (std::is_same_v) + cache.set(idx, scan_spec.filter->testFloat64(dict[idx])); + else + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unsupported type"); + } + sets.set(i, cache.get(idx)); + + } +} + +template +void NumberDictionaryReader::computeRowSetSpace( + OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) +{ + if (!scan_spec.filter || !row_set.has_value()) return; + readAndDecodePage(); + chassert(rows_to_read <= state.remain_rows); + if (plain) + { + const SerializedType * start = reinterpret_cast(state.buffer); + computeRowSetPlainSpace(start, row_set, scan_spec.filter, null_map, rows_to_read); + return; + } + auto nonnull_count = rows_to_read - null_count; + nextIdxBatchIfEmpty(nonnull_count); + + auto & cache = *state.filter_cache; + int count = 0; + auto & sets = row_set.value(); + for (size_t i = 0; i < rows_to_read; ++i) + { + if (null_map[i]) + { + if (!cache.hasNull()) + { + cache.setNull(scan_spec.filter->testNull()); + } + sets.set(i, cache.getNull()); + } + else + { + int idx = state.idx_buffer[count++]; if (!cache.has(idx)) { if constexpr (std::is_same_v) @@ -467,57 +523,6 @@ void NumberDictionaryReader::computeRowSet(OptionalRow } } -template -void NumberDictionaryReader::computeRowSetSpace( - OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) -{ - readAndDecodePage(); - chassert(rows_to_read <= state.remain_rows); - if (plain) - { - const SerializedType * start = reinterpret_cast(state.buffer); - computeRowSetPlainSpace(start, row_set, scan_spec.filter, null_map, rows_to_read); - return; - } - auto nonnull_count = rows_to_read - null_count; - nextIdxBatchIfEmpty(nonnull_count); - if (scan_spec.filter || row_set.has_value()) - { - auto & cache = *state.filter_cache; - int count = 0; - auto & sets = row_set.value(); - for (size_t i = 0; i < rows_to_read; ++i) - { - if (null_map[i]) - { - if (!cache.hasNull()) - { - cache.setNull(scan_spec.filter->testNull()); - } - sets.set(i, cache.getNull()); - } - else - { - int idx = state.idx_buffer[count++]; - if (!cache.has(idx)) - { - if constexpr (std::is_same_v) - cache.set(idx, scan_spec.filter->testInt64(dict[idx])); - else if constexpr (std::is_same_v) - cache.set(idx, scan_spec.filter->testInt32(dict[idx])); - else if constexpr (std::is_same_v) - cache.set(idx, scan_spec.filter->testFloat32(dict[idx])); - else if constexpr (std::is_same_v) - cache.set(idx, scan_spec.filter->testFloat64(dict[idx])); - else - throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unsupported type"); - } - sets.set(i, cache.get(idx)); - } - } - } -} - template void NumberDictionaryReader::read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) { @@ -528,9 +533,7 @@ void NumberDictionaryReader::read(MutableColumnPtr & c if (plain) plain_decoder->decodeFixedValue(data, row_set, rows_to_read); else - { dict_decoder->decodeFixedValue(dict, data, row_set, rows_to_read); - } } template @@ -613,7 +616,8 @@ void OptionalColumnReader::nextBatchNullMapIfNeeded(size_t rows_to_read) { if (!cur_null_map.empty()) return; - cur_null_map.resize_fill(rows_to_read, 0); + cur_null_map.resize(rows_to_read); + std::fill(cur_null_map.begin(), cur_null_map.end(), 0); cur_null_count = 0; const auto & def_levels = child->getDefinitionLevels(); size_t start = def_levels.size() - currentRemainRows(); diff --git a/src/Processors/tests/gtest_native_parquet_reader.cpp b/src/Processors/tests/gtest_native_parquet_reader.cpp index 1224b9a127b..73cc459ea74 100644 --- a/src/Processors/tests/gtest_native_parquet_reader.cpp +++ b/src/Processors/tests/gtest_native_parquet_reader.cpp @@ -180,7 +180,7 @@ TEST(Processors, BenchmarkReadInt64) { ReadBufferFromFile in(path); auto reader = openParquet(header, in); -// reader->addFilter("x", std::make_shared(0, 9, false)); + reader->addFilter("x", std::make_shared(-1, -1, false)); int count [[maybe_unused]] = 0; while (auto block = reader->read()) { @@ -188,11 +188,11 @@ TEST(Processors, BenchmarkReadInt64) if (block.rows() == 0) break; } - // std::cerr << "total count: " << count << std::endl; + std::cerr << "total count: " << count << std::endl; }; std::cerr << "start benchmark \n"; - benchmark("arrow", 21, old_test); - benchmark("native", 21, new_test); +// benchmark("arrow", 50, old_test); + benchmark("native", 1, new_test); } @@ -454,9 +454,47 @@ TEST(Processors, BenchmarkReadNullableString) if (block.rows() == 0) break; } - // std::cerr << "total count: " << count << std::endl; + std::cerr << "total count: " << count << std::endl; }; std::cerr << "start benchmark \n"; - benchmark("arrow", 9, old_test); - benchmark("native", 9, new_test); + benchmark("arrow", 21, old_test); + benchmark("native", 21, new_test); +} + +template +static void testGatherDictInt() +{ + PaddedPODArray data = {0, 0, 0, 3, 3, 3, 4, 7, 0, 4, 7, 0, 9, 1, 5, 6, 7, 8, 9, 3, 4, 6, 7}; + PaddedPODArray dict = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; + PaddedPODArray dist; + PaddedPODArray idx = {0, 0, 0, 3, 3, 3, 4, 7, 0, 4, 7, 0, 9, 1, 5, 6, 7, 8, 9, 3, 4, 6, 7}; + dist.reserve(data.size()); + FilterHelper::gatherDictFixedValue(dict, dist, idx, data.size()); + ASSERT_EQ(data.size(), dist.size()); + for (size_t i = 0; i < data.size(); ++i) + { + ASSERT_EQ(data[i], dist[i]); + } +} + +TEST(TestColumnFilterHepler, TestGatherDictNumberData) +{ + testGatherDictInt(); + testGatherDictInt(); + testGatherDictInt(); + testGatherDictInt(); + testGatherDictInt(); + testGatherDictInt(); +} + +TEST(TestRowSet, TestRowSet) +{ + RowSet rowSet(10000); + rowSet.setAllFalse(); + rowSet.set(100, true); + rowSet.set(1234, true); + ASSERT_EQ(2, rowSet.count()); + ASSERT_FALSE(rowSet.none()); + ASSERT_TRUE(rowSet.any()); + ASSERT_FALSE(rowSet.all()); } From 909eee6ec6b7580c696808d7324a6a6e8549abb4 Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Sat, 24 Aug 2024 16:21:04 +0800 Subject: [PATCH 17/34] fix lost row group --- .../Formats/Impl/Parquet/ParquetReader.cpp | 51 ++++++++++++------- .../Formats/Impl/Parquet/ParquetReader.h | 22 ++++++-- .../Formats/Impl/ParquetBlockInputFormat.cpp | 6 +-- .../Formats/Impl/ParquetBlockInputFormat.h | 4 +- .../tests/gtest_native_parquet_reader.cpp | 19 +++++-- 5 files changed, 72 insertions(+), 30 deletions(-) diff --git a/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp b/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp index 8bf1b86fe99..c83c53cee3b 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp @@ -53,28 +53,13 @@ ParquetReader::ParquetReader( if (row_groups_indices.empty()) for (int i = 0; i < meta_data->num_row_groups(); i++) row_groups_indices.push_back(i); + + chunk_reader = std::make_unique(row_groups_indices, [&](const size_t idx) { return getRowGroupChunkReader(idx); }); } -bool ParquetReader::loadRowGroupChunkReaderIfNeeded() -{ - if (row_group_chunk_reader && !row_group_chunk_reader->hasMoreRows() && next_row_group_idx >= row_groups_indices.size()) - return false; - if ((!row_group_chunk_reader || !row_group_chunk_reader->hasMoreRows()) && next_row_group_idx < row_groups_indices.size()) - { - row_group_chunk_reader - = std::make_unique(this, meta_data->RowGroup(row_groups_indices[next_row_group_idx]), filters); - next_row_group_idx++; - } - return true; -} Block ParquetReader::read() { - Chunk chunk; - while (chunk.getNumRows() == 0) - { - if (!loadRowGroupChunkReaderIfNeeded()) break; - chunk = row_group_chunk_reader->readChunk(max_block_size); - } + Chunk chunk = chunk_reader->read(max_block_size); if (!chunk) return header.cloneEmpty(); return header.cloneWithColumns(chunk.detachColumns()); } @@ -101,6 +86,36 @@ std::unique_ptr ParquetReader::getRowGroupChunkReader(size_ std::lock_guard lock(file_mutex); return std::make_unique(this, meta_data->RowGroup(static_cast(row_group_idx)), filters); } +std::unique_ptr ParquetReader::getSubRowGroupRangeReader(std::vector row_group_indices_) +{ + return std::make_unique(row_group_indices_, [&](const size_t idx) { return getRowGroupChunkReader(idx); }); +} +SubRowGroupRangeReader::SubRowGroupRangeReader(const std::vector & rowGroupIndices, RowGroupReaderCreator && creator) + : row_group_indices(rowGroupIndices), row_group_reader_creator(creator) +{ +} +DB::Chunk SubRowGroupRangeReader::read(size_t rows) +{ + Chunk chunk; + while (chunk.getNumRows() == 0) + { + if (!loadRowGroupChunkReaderIfNeeded()) break; + chunk = row_group_chunk_reader->readChunk(rows); + } + return chunk; +} +bool SubRowGroupRangeReader::loadRowGroupChunkReaderIfNeeded() +{ + if (row_group_chunk_reader && !row_group_chunk_reader->hasMoreRows() && next_row_group_idx >= row_group_indices.size()) + return false; + if ((!row_group_chunk_reader || !row_group_chunk_reader->hasMoreRows()) && next_row_group_idx < row_group_indices.size()) + { + row_group_chunk_reader = row_group_reader_creator(row_group_indices[next_row_group_idx]); + next_row_group_idx++; + } + return true; +} + } diff --git a/src/Processors/Formats/Impl/Parquet/ParquetReader.h b/src/Processors/Formats/Impl/Parquet/ParquetReader.h index b6b5f4b0250..97b44d79961 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetReader.h +++ b/src/Processors/Formats/Impl/Parquet/ParquetReader.h @@ -12,6 +12,23 @@ namespace DB { + +class SubRowGroupRangeReader +{ +public: + using RowGroupReaderCreator = std::function(size_t)>; + explicit SubRowGroupRangeReader(const std::vector & rowGroupIndices, RowGroupReaderCreator&& creator); + DB::Chunk read(size_t rows); + +private: + bool loadRowGroupChunkReaderIfNeeded(); + + std::vector row_group_indices; + std::unique_ptr row_group_chunk_reader; + size_t next_row_group_idx = 0; + RowGroupReaderCreator row_group_reader_creator; +}; + class ParquetReader { public: @@ -30,9 +47,8 @@ public: void addFilter(const String & column_name, ColumnFilterPtr filter); void setRemainFilter(std::optional & expr); std::unique_ptr getRowGroupChunkReader(size_t row_group_idx); + std::unique_ptr getSubRowGroupRangeReader(std::vector row_group_indices); private: - bool loadRowGroupChunkReaderIfNeeded(); - std::unique_ptr file_reader; std::mutex file_mutex; SeekableReadBuffer& file; @@ -40,7 +56,7 @@ private: Block header; - std::unique_ptr row_group_chunk_reader; + std::unique_ptr chunk_reader; UInt64 max_block_size; parquet::ReaderProperties properties; diff --git a/src/Processors/Formats/Impl/ParquetBlockInputFormat.cpp b/src/Processors/Formats/Impl/ParquetBlockInputFormat.cpp index 9143aa8f8eb..7fb23b28516 100644 --- a/src/Processors/Formats/Impl/ParquetBlockInputFormat.cpp +++ b/src/Processors/Formats/Impl/ParquetBlockInputFormat.cpp @@ -590,7 +590,7 @@ void ParquetBlockInputFormat::initializeRowGroupBatchReader(size_t row_group_bat ErrorCodes::BAD_ARGUMENTS, "parquet native reader only supports little endian system currently"); #pragma clang diagnostic pop - row_group_batch.row_group_chunk_reader = new_native_reader->getRowGroupChunkReader(row_group_batch_idx); + row_group_batch.row_group_chunk_reader = new_native_reader->getSubRowGroupRangeReader(row_group_batch.row_groups_idxs); // row_group_batch.native_record_reader = std::make_shared( // getPort().getHeader(), // arrow_properties, @@ -683,8 +683,6 @@ void ParquetBlockInputFormat::decodeOneChunk(size_t row_group_batch_idx, std::un lock.unlock(); auto end_of_row_group = [&] { - if (row_group_batch.row_group_chunk_reader) - row_group_batch.row_group_chunk_reader->printMetrics(std::cerr); row_group_batch.row_group_chunk_reader.reset(); row_group_batch.native_record_reader.reset(); row_group_batch.arrow_column_to_ch_column.reset(); @@ -714,7 +712,7 @@ void ParquetBlockInputFormat::decodeOneChunk(size_t row_group_batch_idx, std::un if (format_settings.parquet.use_native_reader) { - auto chunk = row_group_batch.row_group_chunk_reader->readChunk(row_group_batch.adaptive_chunk_size); + auto chunk = row_group_batch.row_group_chunk_reader->read(row_group_batch.adaptive_chunk_size); if (!chunk) { end_of_row_group(); diff --git a/src/Processors/Formats/Impl/ParquetBlockInputFormat.h b/src/Processors/Formats/Impl/ParquetBlockInputFormat.h index becab68cf3f..c130e512903 100644 --- a/src/Processors/Formats/Impl/ParquetBlockInputFormat.h +++ b/src/Processors/Formats/Impl/ParquetBlockInputFormat.h @@ -20,7 +20,7 @@ namespace DB class ArrowColumnToCHColumn; class ParquetRecordReader; class ParquetReader; -class RowGroupChunkReader; +class SubRowGroupRangeReader; // Parquet files contain a metadata block with the following information: // * list of columns, @@ -225,7 +225,7 @@ private: std::shared_ptr native_record_reader; std::unique_ptr file_reader; std::shared_ptr record_batch_reader; - std::unique_ptr row_group_chunk_reader; + std::unique_ptr row_group_chunk_reader; std::unique_ptr arrow_column_to_ch_column; }; diff --git a/src/Processors/tests/gtest_native_parquet_reader.cpp b/src/Processors/tests/gtest_native_parquet_reader.cpp index 73cc459ea74..c31913e2a7b 100644 --- a/src/Processors/tests/gtest_native_parquet_reader.cpp +++ b/src/Processors/tests/gtest_native_parquet_reader.cpp @@ -464,10 +464,23 @@ TEST(Processors, BenchmarkReadNullableString) template static void testGatherDictInt() { - PaddedPODArray data = {0, 0, 0, 3, 3, 3, 4, 7, 0, 4, 7, 0, 9, 1, 5, 6, 7, 8, 9, 3, 4, 6, 7}; - PaddedPODArray dict = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; + int size = 10000; + PaddedPODArray data; + PaddedPODArray dict; + std::unordered_map map; PaddedPODArray dist; - PaddedPODArray idx = {0, 0, 0, 3, 3, 3, 4, 7, 0, 4, 7, 0, 9, 1, 5, 6, 7, 8, 9, 3, 4, 6, 7}; + PaddedPODArray idx; + for (size_t i = 0; i < size; ++i) + { + auto value = std::rand() % 10000; + data.push_back(value); + if (map.find(value) == map.end()) + { + map[value] = static_cast(dict.size()); + dict.push_back(value); + } + idx.push_back(map[value]); + } dist.reserve(data.size()); FilterHelper::gatherDictFixedValue(dict, dist, idx, data.size()); ASSERT_EQ(data.size(), dist.size()); From 423ccde8f69b0b73a537d0916a135bdfae1e702f Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Wed, 28 Aug 2024 18:11:31 +0800 Subject: [PATCH 18/34] support clickbench --- .../Formats/Impl/Parquet/ColumnFilter.cpp | 241 +++++++++++++++--- .../Formats/Impl/Parquet/ColumnFilter.h | 100 ++++++-- .../Impl/Parquet/ColumnFilterHelper.cpp | 6 +- .../Formats/Impl/Parquet/ParquetReader.cpp | 1 - .../Impl/Parquet/SelectiveColumnReader.cpp | 76 +++--- .../Impl/Parquet/SelectiveColumnReader.h | 5 + .../Impl/Parquet/generated/parquet_types.h | 28 +- .../tests/gtest_native_parquet_reader.cpp | 63 ++++- 8 files changed, 407 insertions(+), 113 deletions(-) diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp index 0c28dd0bef1..a5b4b80dce2 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp @@ -20,6 +20,7 @@ struct PhysicTypeTraits using simd_type = xsimd::batch; using simd_bool_type = xsimd::batch_bool; using simd_idx_type = xsimd::batch; + using idx_type = simd_internal_type; }; template struct PhysicTypeTraits; template struct PhysicTypeTraits; @@ -29,6 +30,7 @@ template<> struct PhysicTypeTraits using simd_type = xsimd::batch; using simd_bool_type = xsimd::batch_bool; using simd_idx_type = xsimd::batch; + using idx_type = Int32; }; template<> struct PhysicTypeTraits { @@ -36,6 +38,7 @@ template<> struct PhysicTypeTraits using simd_type = xsimd::batch; using simd_bool_type = xsimd::batch_bool; using simd_idx_type = xsimd::batch; + using idx_type = Int64; }; template<> struct PhysicTypeTraits { @@ -43,6 +46,7 @@ template<> struct PhysicTypeTraits using simd_type = xsimd::batch; using simd_bool_type = xsimd::batch_bool; using simd_idx_type = xsimd::batch; + using idx_type = simd_internal_type; }; template @@ -89,31 +93,22 @@ void FilterHelper::filterPlainFixedData(const S* src, PaddedPODArray & dst, c } template void FilterHelper::filterPlainFixedData(Int32 const*, DB::PaddedPODArray&, DB::RowSet const&, size_t); +template void FilterHelper::filterPlainFixedData(Int16 const*, DB::PaddedPODArray&, DB::RowSet const&, size_t); template void FilterHelper::filterPlainFixedData(Int32 const*, DB::PaddedPODArray&, DB::RowSet const&, size_t); template void FilterHelper::filterPlainFixedData(const Int64* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); template void FilterHelper::filterPlainFixedData(const Float32* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); template void FilterHelper::filterPlainFixedData(const Float64* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); template void FilterHelper::filterPlainFixedData(const Int64* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); +template void FilterHelper::filterPlainFixedData(const DateTime64* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); template void FilterHelper::gatherDictFixedValue( const PaddedPODArray & dict, PaddedPODArray & dst, const PaddedPODArray & idx, size_t rows_to_read) { - using batch_type = PhysicTypeTraits::simd_type; - using idx_batch_type = PhysicTypeTraits::simd_idx_type; - using simd_internal_type = PhysicTypeTraits::simd_internal_type; - auto increment = batch_type::size; - auto num_batched = rows_to_read / increment; - dst.resize(dst.size() + (num_batched * increment)); - for (size_t i = 0; i < num_batched; ++i) + dst.resize(rows_to_read); + for (size_t i = 0; i < rows_to_read; ++i) { - auto rows = i * increment; - idx_batch_type idx_batch = idx_batch_type::load_unaligned(idx.data() + rows); - batch_type::gather(reinterpret_cast(dict.data()), idx_batch).store_aligned(reinterpret_cast(dst.data() + rows)); - } - for (size_t i = num_batched * increment; i < rows_to_read; ++i) - { - dst.push_back(dict[idx[i]]); + dst[i] = dict[idx[i]]; } } @@ -176,8 +171,8 @@ template void FilterHelper::filterDictFixedData(const PaddedPODArray template void FilterHelper::filterDictFixedData(const PaddedPODArray & dict, PaddedPODArray & dst, const PaddedPODArray & idx, const RowSet & row_set, size_t rows_to_read); -template -void Int64RangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t len, const T * data) const +template +void BigIntRangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t len, const T * data) const { using batch_type = xsimd::batch; using bool_type = xsimd::batch_bool; @@ -186,7 +181,7 @@ void Int64RangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t len batch_type min_batch = batch_type::broadcast(min); batch_type max_batch; if (!is_single_value) - max_batch = batch_type::broadcast(max); + max_batch = batch_type::broadcast(upper); bool aligned = offset % increment == 0; for (size_t i = 0; i < num_batched; ++i) { @@ -220,6 +215,8 @@ void Int64RangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t len } else mask = (value >= min_batch) && (value <= max_batch); + if constexpr (negated) + mask = ~mask; if (aligned) mask.store_aligned(row_set.maskReference().data() + rows); else @@ -227,24 +224,24 @@ void Int64RangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t len } for (size_t i = offset + (num_batched * increment); i < offset + len ; ++i) { - row_set.maskReference()[i] = data[i] >= min & data[i] <= max; + row_set.maskReference()[i] = data[i] >= min & data[i] <= upper; } } -template void Int64RangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t len, const Int64 * data) const; -template void Int64RangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t len, const Int32 * data) const; -template void Int64RangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t len, const Int16 * data) const; +template void BigIntRangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t len, const Int64 * data) const; +template void BigIntRangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t len, const Int32 * data) const; +template void BigIntRangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t len, const Int16 * data) const; -void Int64RangeFilter::testInt64Values(DB::RowSet & row_set, size_t offset, size_t len, const Int64 * data) const +void BigIntRangeFilter::testInt64Values(DB::RowSet & row_set, size_t offset, size_t len, const Int64 * data) const { testIntValues(row_set, offset, len, data); } -void Int64RangeFilter::testInt32Values(RowSet & row_set, size_t offset, size_t len, const Int32 * data) const +void BigIntRangeFilter::testInt32Values(RowSet & row_set, size_t offset, size_t len, const Int32 * data) const { testIntValues(row_set, offset, len, data); } -void Int64RangeFilter::testInt16Values(RowSet & row_set, size_t offset, size_t len, const Int16 * data) const +void BigIntRangeFilter::testInt16Values(RowSet & row_set, size_t offset, size_t len, const Int16 * data) const { testIntValues(row_set, offset, len, data); } @@ -304,7 +301,7 @@ ActionsDAG::NodeRawConstPtrs getConstantNode(const ActionsDAG::Node & node) return result; } -OptionalFilter Int64RangeFilter::create(const ActionsDAG::Node & node) +OptionalFilter BigIntRangeFilter::create(const ActionsDAG::Node & node) { if (!isCompareColumnWithConst(node)) return std::nullopt; @@ -318,23 +315,23 @@ OptionalFilter Int64RangeFilter::create(const ActionsDAG::Node & node) ColumnFilterPtr filter = nullptr; if (func_name == "equals") { - filter = std::make_shared(value, value, false); + filter = std::make_shared(value, value, false); } else if (func_name == "less") { - filter = std::make_shared(std::numeric_limits::min(), value - 1, false); + filter = std::make_shared(std::numeric_limits::min(), value - 1, false); } else if (func_name == "greater") { - filter = std::make_shared(value + 1, std::numeric_limits::max(), false); + filter = std::make_shared(value + 1, std::numeric_limits::max(), false); } else if (func_name == "lessOrEquals") { - filter = std::make_shared(std::numeric_limits::min(), value, true); + filter = std::make_shared(std::numeric_limits::min(), value, true); } else if (func_name == "greaterOrEquals") { - filter = std::make_shared(value, std::numeric_limits::max(), true); + filter = std::make_shared(value, std::numeric_limits::max(), true); } if (filter) { @@ -351,7 +348,7 @@ ColumnFilterPtr nullOrFalse(bool null_allowed) { return std::make_unique(); } -ColumnFilterPtr Int64RangeFilter::merge(const ColumnFilter * other) const +ColumnFilterPtr BigIntRangeFilter::merge(const ColumnFilter * other) const { switch (other->kind()) { @@ -360,16 +357,16 @@ ColumnFilterPtr Int64RangeFilter::merge(const ColumnFilter * other) const case IsNull: return other->merge(this); case IsNotNull: - return std::make_shared(min, max, false); - case Int64Range: { + return std::make_shared(min, upper, false); + case BigIntRange: { bool both_null_allowed = null_allowed && other->testNull(); - const auto * other_range = dynamic_cast(other); - if (other_range->min > max || other_range->max < min) + const auto * other_range = dynamic_cast(other); + if (other_range->min > upper || other_range->upper < min) { return nullOrFalse(both_null_allowed); } - return std::make_shared( - std::max(min, other_range->min), std::min(max, other_range->max), both_null_allowed); + return std::make_shared( + std::max(min, other_range->min), std::min(upper, other_range->upper), both_null_allowed); } default: throw DB::Exception(ErrorCodes::LOGICAL_ERROR, "Can't merge filter of kind {}", magic_enum::enum_name(other->kind())); @@ -510,6 +507,176 @@ ColumnFilterPtr FloatRangeFilter::merge(const ColumnFilter * other) const template <> class FloatRangeFilter; template <> class FloatRangeFilter; +ColumnFilterPtr NegatedByteValuesFilter::merge(const ColumnFilter * other) const +{ + switch (other->kind()) + { + case ColumnFilterKind::AlwaysTrue: + case ColumnFilterKind::AlwaysFalse: + case ColumnFilterKind::IsNull: + return other->merge(this); + case ColumnFilterKind::IsNotNull: + return this->clone(false); + case ColumnFilterKind::ByteValues: + return other->merge(this); + default: + throw DB::Exception(ErrorCodes::LOGICAL_ERROR, "Can't merge filter of kind {}", magic_enum::enum_name(other->kind())); + } +} + + +ColumnFilterPtr NegatedBigIntRangeFilter::clone(std::optional null_allowed_) const +{ + return std::make_shared(non_negated->min, non_negated->upper, null_allowed_.value_or(null_allowed)); +} +OptionalFilter NegatedBigIntRangeFilter::create(const ActionsDAG::Node & node) +{ + if (!isCompareColumnWithConst(node)) + return std::nullopt; + const auto * input_node = getInputNode(node); + auto name = input_node->result_name; + if (!isInt64(input_node->result_type) && !isInt32(input_node->result_type) && !isInt16(input_node->result_type)) + return std::nullopt; + auto constant_nodes = getConstantNode(node); + auto func_name = node.function_base->getName(); + Int64 value = constant_nodes.front()->column->getInt(0); + ColumnFilterPtr filter = nullptr; + if (func_name == "notEquals") + { + filter = std::make_shared(value, value, false); + } + if (filter) + { + return std::make_optional(std::make_pair(name, filter)); + } + return std::nullopt; +} +ColumnFilterPtr NegatedBigIntRangeFilter::merge(const ColumnFilter * ) const +{ +// switch (other->kind()) { +// case ColumnFilterKind::AlwaysTrue: +// case ColumnFilterKind::AlwaysFalse: +// case ColumnFilterKind::IsNull: +// return other->merge(this); +// case ColumnFilterKind::IsNotNull: +// return this->clone(false); +// case ColumnFilterKind::BigIntRange: { +// bool bothNullAllowed = null_allowed && other->testNull(); +// auto otherRange = static_cast(other); +// std::vector> rangeList; +// rangeList.emplace_back(std::make_unique( +// otherRange->getMin(), otherRange->getUpper(), false)); +// return combineNegatedRangeOnIntRanges( +// this->lower(), this->get(), rangeList, bothNullAllowed); +// } +// case FilterKind::kNegatedBigintRange: { +// bool bothNullAllowed = nullAllowed_ && other->testNull(); +// auto otherNegatedRange = static_cast(other); +// if (this->lower() > otherNegatedRange->lower()) { +// return other->mergeWith(this); +// } +// assert(this->lower() <= otherNegatedRange->lower()); +// if (this->upper() + 1 < otherNegatedRange->lower()) { +// std::vector> outRanges; +// int64_t smallLower = this->lower(); +// int64_t smallUpper = this->upper(); +// int64_t bigLower = otherNegatedRange->lower(); +// int64_t bigUpper = otherNegatedRange->upper(); +// if (smallLower > std::numeric_limits::min()) { +// outRanges.emplace_back(std::make_unique( +// std::numeric_limits::min(), smallLower - 1, false)); +// } +// if (smallUpper < std::numeric_limits::max() && +// bigLower > std::numeric_limits::min()) { +// outRanges.emplace_back(std::make_unique( +// smallUpper + 1, bigLower - 1, false)); +// } +// if (bigUpper < std::numeric_limits::max()) { +// outRanges.emplace_back(std::make_unique( +// bigUpper + 1, std::numeric_limits::max(), false)); +// } +// return combineBigintRanges(std::move(outRanges), bothNullAllowed); +// } +// return std::make_unique( +// this->lower(), +// std::max(this->upper(), otherNegatedRange->upper()), +// bothNullAllowed); +// } +// case FilterKind::kBigintMultiRange: { +// bool bothNullAllowed = nullAllowed_ && other->testNull(); +// auto otherMultiRanges = static_cast(other); +// return combineNegatedRangeOnIntRanges( +// this->lower(), +// this->upper(), +// otherMultiRanges->ranges(), +// bothNullAllowed); +// } +// case FilterKind::kBigintValuesUsingHashTable: +// case FilterKind::kBigintValuesUsingBitmask: +// return other->mergeWith(this); +// case FilterKind::kNegatedBigintValuesUsingHashTable: +// case FilterKind::kNegatedBigintValuesUsingBitmask: { +// bool bothNullAllowed = nullAllowed_ && other->testNull(); +// std::vector rejectedValues; +// if (other->kind() == FilterKind::kNegatedBigintValuesUsingHashTable) { +// auto otherHashTable = +// static_cast(other); +// rejectedValues = otherHashTable->values(); +// } else { +// auto otherBitmask = +// static_cast(other); +// rejectedValues = otherBitmask->values(); +// } +// if (nonNegated_->isSingleValue()) { +// if (other->testInt64(this->lower())) { +// rejectedValues.push_back(this->lower()); +// } +// return createNegatedBigintValues(rejectedValues, bothNullAllowed); +// } +// return combineNegatedRangeOnIntRanges( +// this->lower(), +// this->upper(), +// negatedValuesToRanges(rejectedValues), +// bothNullAllowed); +// } +// default: +// VELOX_UNREACHABLE(); + + throw DB::Exception(ErrorCodes::PARQUET_EXCEPTION, "Unsupported merge operation"); +// } +} + +DB::OptionalFilter DB::NegatedByteValuesFilter::create(const ActionsDAG::Node & node) +{ + if (!isCompareColumnWithConst(node)) + return std::nullopt; + const auto * input_node = getInputNode(node); + auto name = input_node->result_name; + if (!isString(input_node->result_type)) + return std::nullopt; + auto constant_nodes = getConstantNode(node); + auto func_name = node.function_base->getName(); + ColumnFilterPtr filter = nullptr; + if (func_name == "notEquals") + { + auto value = constant_nodes.front()->column->getDataAt(0); + String str; + str.resize(value.size); + memcpy(str.data(), value.data, value.size); + std::vector values = {str}; + filter = std::make_shared(values, false); + } + if (filter) + { + return std::make_optional(std::make_pair(name, filter)); + } + return std::nullopt; +} +ColumnFilterPtr NegatedByteValuesFilter::clone(std::optional ) const +{ + return nullptr; +} + OptionalFilter createFloatRangeFilter(const ActionsDAG::Node & node) { if (!isCompareColumnWithConst(node)) diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h index fae0b73f00a..08f6144055d 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h @@ -71,12 +71,13 @@ enum ColumnFilterKind AlwaysFalse, IsNull, IsNotNull, - Int64Range, - Int64MultiRange, + BigIntRange, + NegatedBigintRange, Int64In, FloatRange, DoubleRange, - ByteValues + ByteValues, + NegatedByteValues }; class FilterHelper @@ -220,44 +221,49 @@ public: ColumnFilterPtr clone(std::optional) const override { return std::make_shared(); } }; using OptionalFilter = std::optional>; -class Int64RangeFilter : public ColumnFilter +class BigIntRangeFilter : public ColumnFilter { + friend class NegatedBigIntRangeFilter; public: static OptionalFilter create(const ActionsDAG::Node & node); - explicit Int64RangeFilter(const Int64 min_, const Int64 max_, bool null_allowed_) - : ColumnFilter(Int64Range, null_allowed_) - , max(max_) + explicit BigIntRangeFilter(const Int64 min_, const Int64 max_, bool null_allowed_) + : ColumnFilter(BigIntRange, null_allowed_) + , upper(max_) , min(min_) , lower32(static_cast(std::max(min, std::numeric_limits::min()))) - , upper32(static_cast(std::min(max, std::numeric_limits::max()))) + , upper32(static_cast(std::min(upper, std::numeric_limits::max()))) , lower16(static_cast(std::max(min, std::numeric_limits::min()))) - , upper16(static_cast(std::min(max, std::numeric_limits::max()))) - , is_single_value(max == min) + , upper16(static_cast(std::min(upper, std::numeric_limits::max()))) + , is_single_value(upper == min) { } - ~Int64RangeFilter() override = default; - bool testInt64(Int64 int64) const override { return int64 >= min && int64 <= max; } - bool testInt32(Int32 int32) const override { return int32 >= min && int32 <= max; } - bool testInt16(Int16 int16) const override { return int16 >= min && int16 <= max; } - bool testInt64Range(Int64 lower, Int64 upper) const override { return min >= lower && max <= upper; } + ~BigIntRangeFilter() override = default; + bool testInt64(Int64 int64) const override { return int64 >= min && int64 <= upper; } + bool testInt32(Int32 int32) const override { return int32 >= min && int32 <= upper; } + bool testInt16(Int16 int16) const override { return int16 >= min && int16 <= upper; } + bool testInt64Range(Int64 lower, Int64 upper_) const override { return min >= lower && upper_ <= upper; } void testInt64Values(RowSet & row_set, size_t offset, size_t len, const Int64 * data) const override; void testInt32Values(RowSet & row_set, size_t offset, size_t len, const Int32 * data) const override; void testInt16Values(RowSet & row_set, size_t offset, size_t len, const Int16 * data) const override; ColumnFilterPtr merge(const ColumnFilter * filter) const override; ColumnFilterPtr clone(std::optional null_allowed_) const override { - return std::make_shared(min, max, null_allowed_.value_or(null_allowed)); + return std::make_shared(min, upper, null_allowed_.value_or(null_allowed)); } + String toString() const override { - return fmt::format("Int64RangeFilter: [{}, {}] {}", min, max, null_allowed ? "with nulls" : "no nulls"); + return fmt::format("BigIntRangeFilter: [{}, {}] {}", min, upper, null_allowed ? "with nulls" : "no nulls"); } + Int64 getUpper() const { return upper; } + Int64 getMin() const { return min; } + private: - template + template void testIntValues(RowSet & row_set, size_t offset, size_t len, const T * data) const; - const Int64 max; + const Int64 upper; const Int64 min; const int32_t lower32; const int32_t upper32; @@ -265,8 +271,43 @@ private: const int16_t upper16; bool is_single_value [[maybe_unused]]; }; + +class NegatedBigIntRangeFilter : public ColumnFilter +{ +public: + static OptionalFilter create(const ActionsDAG::Node & node); + NegatedBigIntRangeFilter(int64_t lower, int64_t upper, bool null_allowed_) + : ColumnFilter(ColumnFilterKind::NegatedBigintRange, null_allowed_), + non_negated(std::make_unique(lower, upper, !null_allowed_)) { + } + + bool testInt64(Int64 int64) const override { return !non_negated->testInt64(int64); } + bool testInt32(Int32 int32) const override { return !non_negated->testInt32(int32); } + bool testInt16(Int16 int16) const override { return !non_negated->testInt16(int16); } + void testInt64Values(RowSet & row_set, size_t offset, size_t len, const Int64 * data) const override + { + non_negated->testIntValues(row_set, offset, len, data); + } + void testInt32Values(RowSet & row_set, size_t offset, size_t len, const Int32 * data) const override + { + non_negated->testIntValues(row_set, offset, len, data); + } + void testInt16Values(RowSet & row_set, size_t offset, size_t len, const Int16 * data) const override + { + non_negated->testIntValues(row_set, offset, len, data); + } + + ColumnFilterPtr merge(const ColumnFilter * filter) const override; + ColumnFilterPtr clone(std::optional null_allowed_) const override; + +private: + std::unique_ptr non_negated; +}; + + class ByteValuesFilter : public ColumnFilter { + friend class NegatedByteValuesFilter; public: static OptionalFilter create(const ActionsDAG::Node & node); ByteValuesFilter(const std::vector & values_, bool null_allowed_) @@ -302,6 +343,27 @@ private: std::unordered_set lengths; }; +class NegatedByteValuesFilter : public ColumnFilter +{ +public: + static OptionalFilter create(const ActionsDAG::Node & node); + NegatedByteValuesFilter(const std::vector & values_, bool null_allowed_) + : ColumnFilter(NegatedByteValues, null_allowed_), non_negated(std::make_unique(values_, !null_allowed_)) + { + } + NegatedByteValuesFilter(const NegatedByteValuesFilter & other, bool nullAllowed) + : ColumnFilter(ColumnFilterKind::NegatedByteValues, nullAllowed) + , non_negated(std::make_unique(*other.non_negated, other.non_negated->null_allowed)) + { + } + bool testString(const String & string) const override { return !non_negated->testString(string); } + ColumnFilterPtr merge (const ColumnFilter * filter) const override; + ColumnFilterPtr clone(std::optional null_allowed_) const override; + +private: + std::unique_ptr non_negated; +}; + class AbstractRange : public ColumnFilter { public: diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.cpp index 6fd201709f0..867189bd39f 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.cpp +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.cpp @@ -3,11 +3,7 @@ namespace DB { -ColumnFilterCreators ColumnFilterHelper::creators = { - Int64RangeFilter::create, - createFloatRangeFilter, - ByteValuesFilter::create -}; +ColumnFilterCreators ColumnFilterHelper::creators = {BigIntRangeFilter::create, createFloatRangeFilter, ByteValuesFilter::create, NegatedBigIntRangeFilter::create}; void pushFilterToParquetReader(const ActionsDAG& filter_expression, ParquetReader & reader) { if (filter_expression.getOutputs().empty()) return ; diff --git a/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp b/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp index c83c53cee3b..267bb71c7cb 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp @@ -83,7 +83,6 @@ void ParquetReader::setRemainFilter(std::optional & expr) } std::unique_ptr ParquetReader::getRowGroupChunkReader(size_t row_group_idx) { - std::lock_guard lock(file_mutex); return std::make_unique(this, meta_data->RowGroup(static_cast(row_group_idx)), filters); } std::unique_ptr ParquetReader::getSubRowGroupRangeReader(std::vector row_group_indices_) diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index 159620b847a..84a4714869a 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -142,10 +142,21 @@ RowGroupChunkReader::RowGroupChunkReader( size_t offset = range.first; column_buffers[reader_idx].resize(compress_size, 0); remain_rows = row_group_meta->ColumnChunk(idx)->num_values(); - parquet_reader->file.seek(offset, SEEK_SET); - size_t count = parquet_reader->file.readBig(reinterpret_cast(column_buffers[reader_idx].data()), compress_size); - if (count != compress_size) - throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Failed to read column data"); + if (!parquet_reader->file.supportsReadAt()) + { + std::lock_guard lock(parquet_reader->file_mutex); + parquet_reader->file.seek(offset, SEEK_SET); + size_t count = parquet_reader->file.readBig(reinterpret_cast(column_buffers[reader_idx].data()), compress_size); + if (count != compress_size) + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Failed to read column data"); + } + else + { + auto pb = [](size_t ) {return true;}; + size_t count = parquet_reader->file.readBigAt(reinterpret_cast(column_buffers[reader_idx].data()), compress_size, offset, pb); + if (count != compress_size) + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Failed to read column data"); + } auto page_reader = std::make_unique( std::make_shared(reinterpret_cast(column_buffers[reader_idx].data()), compress_size), parquet_reader->properties, @@ -165,12 +176,9 @@ RowGroupChunkReader::RowGroupChunkReader( reader_idx++; } } - - template -void PlainDecoder::decodeFixedValue(PaddedPODArray & data, const OptionalRowSet & row_set, size_t rows_to_read) +static void decodeFixedValueInternal(PaddedPODArray & data, const S* start, const OptionalRowSet & row_set, size_t rows_to_read) { - const S * start = reinterpret_cast(buffer); if (!row_set.has_value()) { if constexpr (std::is_same_v) @@ -187,6 +195,13 @@ void PlainDecoder::decodeFixedValue(PaddedPODArray & data, const OptionalRowS const auto & sets = row_set.value(); FilterHelper::filterPlainFixedData(start, data, sets, rows_to_read); } +} + +template +void PlainDecoder::decodeFixedValue(PaddedPODArray & data, const OptionalRowSet & row_set, size_t rows_to_read) +{ + const S * start = reinterpret_cast(buffer); + decodeFixedValueInternal(data, start, row_set, rows_to_read); buffer += rows_to_read * sizeof(S); remain_rows -= rows_to_read; } @@ -429,10 +444,10 @@ NumberDictionaryReader::NumberDictionaryReader(std::un template void NumberDictionaryReader::nextIdxBatchIfEmpty(size_t rows_to_read) { - if (!state.idx_buffer.empty() || plain) + if (!batch_buffer.empty() || plain) return; - state.idx_buffer.resize(rows_to_read); - size_t count = idx_decoder.GetBatch(state.idx_buffer.data(), static_cast(rows_to_read)); + batch_buffer.resize(rows_to_read); + size_t count = idx_decoder.GetBatchWithDict(dict.data(), static_cast(dict.size()), batch_buffer.data(), static_cast(rows_to_read)); if (count != rows_to_read) throw DB::Exception(ErrorCodes::LOGICAL_ERROR, "read full idx batch failed. read {} rows, expect {}", count, rows_to_read); } @@ -450,27 +465,7 @@ void NumberDictionaryReader::computeRowSet(OptionalRow return; } nextIdxBatchIfEmpty(rows_to_read); - auto & cache = *state.filter_cache; - auto & sets = row_set.value(); - for (size_t i = 0; i < rows_to_read; ++i) - { - int idx = state.idx_buffer[i]; - if (!cache.has(idx)) - { - if constexpr (std::is_same_v) - cache.set(idx, scan_spec.filter->testInt64(dict[idx])); - else if constexpr (std::is_same_v) - cache.set(idx, scan_spec.filter->testInt32(dict[idx])); - else if constexpr (std::is_same_v) - cache.set(idx, scan_spec.filter->testFloat32(dict[idx])); - else if constexpr (std::is_same_v) - cache.set(idx, scan_spec.filter->testFloat64(dict[idx])); - else - throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unsupported type"); - } - sets.set(i, cache.get(idx)); - - } + computeRowSetPlain(batch_buffer.data(), row_set, scan_spec.filter, rows_to_read); } template @@ -529,11 +524,24 @@ void NumberDictionaryReader::read(MutableColumnPtr & c readAndDecodePage(); auto * number_column = static_cast(column.get()); auto & data = number_column->getData(); - nextIdxBatchIfEmpty(rows_to_read); if (plain) plain_decoder->decodeFixedValue(data, row_set, rows_to_read); else - dict_decoder->decodeFixedValue(dict, data, row_set, rows_to_read); + { + if (row_set.has_value() || !batch_buffer.empty()) + { + nextIdxBatchIfEmpty(rows_to_read); + decodeFixedValueInternal(data, batch_buffer.data(), row_set, rows_to_read); + } + else + { + auto old_size = data.size(); + data.resize(old_size + rows_to_read); + idx_decoder.GetBatchWithDict(dict.data() , static_cast(dict.size()), data.data() + old_size, static_cast(rows_to_read)); + } + batch_buffer.resize(0); + state.remain_rows -= rows_to_read; + } } template diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h index f13111a8cbf..55fcda75e0f 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h @@ -447,6 +447,7 @@ private: arrow::util::RleDecoder idx_decoder; std::unique_ptr dict_decoder; PaddedPODArray dict; + PaddedPODArray batch_buffer; }; void computeRowSetPlainString(const uint8_t * start, OptionalRowSet & row_set, ColumnFilterPtr filter, size_t rows_to_read); @@ -530,6 +531,10 @@ public: ParquetReader * parquetReader, std::shared_ptr rowGroupReader, std::unordered_map filters); + ~RowGroupChunkReader() + { + printMetrics(std::cerr); + } Chunk readChunk(size_t rows); bool hasMoreRows() const { return remain_rows > 0; } void printMetrics(std::ostream & out) const diff --git a/src/Processors/Formats/Impl/Parquet/generated/parquet_types.h b/src/Processors/Formats/Impl/Parquet/generated/parquet_types.h index e50f2c3591f..f59a4a9e834 100644 --- a/src/Processors/Formats/Impl/Parquet/generated/parquet_types.h +++ b/src/Processors/Formats/Impl/Parquet/generated/parquet_types.h @@ -248,7 +248,7 @@ struct Encoding { */ RLE = 3, /** - * Bit packed encoding. This can only be used if the data has a known max + * Bit packed encoding. This can only be used if the data has a known upper * width. Usable for definition/repetition levels encoding. */ BIT_PACKED = 4, @@ -333,7 +333,7 @@ std::ostream& operator<<(std::ostream& out, const PageType::type& val); std::string to_string(const PageType::type& val); /** - * Enum to annotate whether lists of min/max elements inside ColumnIndex + * Enum to annotate whether lists of min/upper elements inside ColumnIndex * are ordered and if so, in which direction. */ struct BoundaryOrder { @@ -482,12 +482,12 @@ class Statistics : public virtual ::apache::thrift::TBase { virtual ~Statistics() noexcept; /** - * DEPRECATED: min and max value of the column. Use min_value and max_value. + * DEPRECATED: min and upper value of the column. Use min_value and max_value. * * Values are encoded using PLAIN encoding, except that variable-length byte * arrays do not include a length prefix. * - * These fields encode min and max values determined by signed comparison + * These fields encode min and upper values determined by signed comparison * only. New files should use the correct order for a column's logical type * and store the values in the min_value and max_value fields. * @@ -505,7 +505,7 @@ class Statistics : public virtual ::apache::thrift::TBase { */ int64_t distinct_count; /** - * Min and max values for the column, determined by its ColumnOrder. + * Min and upper values for the column, determined by its ColumnOrder. * * Values are encoded using PLAIN encoding, except that variable-length byte * arrays do not include a length prefix. @@ -3125,7 +3125,7 @@ typedef struct _ColumnOrder__isset { * * TypeDefinedOrder - the column uses the order defined by its logical or * physical type (if there is no logical type). * - * If the reader does not support the value of this union, min and max stats + * If the reader does not support the value of this union, min and upper stats * for this column should be ignored. */ class ColumnOrder : public virtual ::apache::thrift::TBase { @@ -3175,15 +3175,15 @@ class ColumnOrder : public virtual ::apache::thrift::TBase { * point values (relations vs. total ordering) the following * compatibility rules should be applied when reading statistics: * - If the min is a NaN, it should be ignored. - * - If the max is a NaN, it should be ignored. + * - If the upper is a NaN, it should be ignored. * - If the min is +0, the row group may contain -0 values as well. - * - If the max is -0, the row group may contain +0 values as well. - * - When looking for NaN values, min and max should be ignored. + * - If the upper is -0, the row group may contain +0 values as well. + * - When looking for NaN values, min and upper should be ignored. * * When writing statistics the following rules should be followed: - * - NaNs should not be written to min or max statistics fields. - * - If the computed max value is zero (whether negative or positive), - * `+0.0` should be written into the max statistics field. + * - NaNs should not be written to min or upper statistics fields. + * - If the computed upper value is zero (whether negative or positive), + * `+0.0` should be written into the upper statistics field. * - If the computed min value is zero (whether negative or positive), * `-0.0` should be written into the min statistics field. */ @@ -3338,7 +3338,7 @@ class ColumnIndex : public virtual ::apache::thrift::TBase { virtual ~ColumnIndex() noexcept; /** * A list of Boolean values to determine the validity of the corresponding - * min and max values. If true, a page contains only null values, and writers + * min and upper values. If true, a page contains only null values, and writers * have to set the corresponding entries in min_values and max_values to * byte[0], so that all lists have the same length. If false, the * corresponding entries in min_values and max_values must be valid. @@ -3682,7 +3682,7 @@ class FileMetaData : public virtual ::apache::thrift::TBase { * well-defined behaviour, if these fields are written to a Parquet file, * column_orders must be written as well. * - * The obsolete min and max fields in the Statistics object are always sorted + * The obsolete min and upper fields in the Statistics object are always sorted * by signed comparison regardless of column_orders. */ std::vector column_orders; diff --git a/src/Processors/tests/gtest_native_parquet_reader.cpp b/src/Processors/tests/gtest_native_parquet_reader.cpp index c31913e2a7b..40e3c0a32ea 100644 --- a/src/Processors/tests/gtest_native_parquet_reader.cpp +++ b/src/Processors/tests/gtest_native_parquet_reader.cpp @@ -180,7 +180,7 @@ TEST(Processors, BenchmarkReadInt64) { ReadBufferFromFile in(path); auto reader = openParquet(header, in); - reader->addFilter("x", std::make_shared(-1, -1, false)); + reader->addFilter("x", std::make_shared(-1, -1, false)); int count [[maybe_unused]] = 0; while (auto block = reader->read()) { @@ -233,7 +233,7 @@ TEST(Processors, TestReadNullableInt64) ReadBufferFromFile in(path); auto reader = openParquet(header, in); - // reader->addFilter("x", std::make_shared( 1000, 2000)); + // reader->addFilter("x", std::make_shared( 1000, 2000)); int count = 0; int null_count2 = 0; while (auto block = reader->read()) @@ -292,7 +292,7 @@ TEST(Processors, TestReadNullableFloat) ReadBufferFromFile in(path); auto reader = openParquet(header, in); - // reader->addFilter("x", std::make_shared( 1000, 2000)); + // reader->addFilter("x", std::make_shared( 1000, 2000)); int count = 0; int null_count2 = 0; bool first = true; @@ -511,3 +511,60 @@ TEST(TestRowSet, TestRowSet) ASSERT_TRUE(rowSet.any()); ASSERT_FALSE(rowSet.all()); } + +TEST(TestColumnFilter, TestColumnIntFilter) +{ + BigIntRangeFilter filter(100, 200, false); + BigIntRangeFilter filter2(200, 200, false); + + ASSERT_TRUE(!filter.testInt16(99)); + ASSERT_TRUE(filter.testInt16(100)); + ASSERT_TRUE(filter.testInt16(150)); + ASSERT_TRUE(filter.testInt16(200)); + ASSERT_TRUE(filter2.testInt16(200)); + ASSERT_TRUE(!filter.testInt16(210)); + ASSERT_TRUE(!filter2.testInt16(210)); + + ASSERT_TRUE(!filter.testInt32(99)); + ASSERT_TRUE(filter.testInt32(100)); + ASSERT_TRUE(filter.testInt32(150)); + ASSERT_TRUE(filter.testInt32(200)); + ASSERT_TRUE(filter2.testInt32(200)); + ASSERT_TRUE(!filter.testInt32(210)); + ASSERT_TRUE(!filter2.testInt32(210)); + + ASSERT_TRUE(!filter.testInt64(99)); + ASSERT_TRUE(filter.testInt64(100)); + ASSERT_TRUE(filter.testInt64(150)); + ASSERT_TRUE(filter.testInt64(200)); + ASSERT_TRUE(filter2.testInt64(200)); + ASSERT_TRUE(!filter.testInt64(210)); + ASSERT_TRUE(!filter2.testInt64(210)); + + PaddedPODArray int16_values = {99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 150, 200, 210, 211, 231, 24, 25, 26, 27, 28, + 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 150, 200, 210, 211, 231, 24, 25, 26, 27, 28}; + RowSet set1(int16_values.size()); + filter.testInt16Values(set1, 0, int16_values.size(), int16_values.data()); + ASSERT_EQ(set1.count(), 22); + set1.setAllTrue(); + filter2.testInt16Values(set1, 0, int16_values.size(), int16_values.data()); + ASSERT_EQ(set1.count(), 2); + + PaddedPODArray int32_values = {99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 150, 200, 210, 211, 231, 24, 25, 26, 27, 28, + 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 150, 200, 210, 211, 231, 24, 25, 26, 27, 28}; + RowSet set2(int32_values.size()); + filter.testInt32Values(set2, 0, int32_values.size(), int32_values.data()); + ASSERT_EQ(set2.count(), 22); + set2.setAllTrue(); + filter2.testInt32Values(set2, 0, int32_values.size(), int32_values.data()); + ASSERT_EQ(set2.count(), 2); + + PaddedPODArray int64_values = {99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 150, 200, 210, 211, 231, 24, 25, 26, 27, 28, + 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 150, 200, 210, 211, 231, 24, 25, 26, 27, 28}; + RowSet set3(int64_values.size()); + filter.testInt64Values(set3, 0, int64_values.size(), int64_values.data()); + ASSERT_EQ(set3.count(), 22); + set3.setAllTrue(); + filter2.testInt64Values(set3, 0, int64_values.size(), int64_values.data()); + ASSERT_EQ(set3.count(), 2); +} From 3659abe56e165c06d348a74d161802e8fefad513 Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Sun, 1 Sep 2024 18:15:23 +0800 Subject: [PATCH 19/34] add some test case and fix bug --- .../Formats/Impl/Parquet/ColumnFilter.cpp | 42 +++++---- .../Formats/Impl/Parquet/ColumnFilter.h | 47 +++++++--- .../Impl/Parquet/SelectiveColumnReader.cpp | 94 ++++++++----------- .../tests/gtest_native_parquet_reader.cpp | 71 ++++++++++++++ 4 files changed, 169 insertions(+), 85 deletions(-) diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp index a5b4b80dce2..5a342625897 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp @@ -3,6 +3,7 @@ #include #include #include +#include namespace DB { @@ -60,29 +61,33 @@ void FilterHelper::filterPlainFixedData(const S* src, PaddedPODArray & dst, c { auto rows = i * increment; bool_type mask = bool_type::load_aligned(row_set.maskReference().data() + rows); + auto old_size = dst.size(); if (xsimd::none(mask)) continue; else if (xsimd::all(mask)) { - auto old_size = dst.size(); dst.resize( old_size + increment); - auto * start = dst.data() + old_size; - batch_type data = batch_type::load_unaligned(src + rows); if constexpr (std::is_same_v) - data.store_unaligned(start); + { + auto * start = dst.data() + old_size; + memcpySmallAllowReadWriteOverflow15(start, src + rows, increment * sizeof(S)); + } else { - alignas(xsimd::default_arch::alignment()) S buffer[increment]; - data.store_aligned(buffer); for (size_t j = 0; j < increment; ++j) - dst.push_back(static_cast(buffer[j])); + { + dst[old_size + j] = static_cast(src[rows + j]); + } } } else { for (size_t j = 0; j < increment; ++j) - if (row_set.get(rows + j)) - dst.push_back(static_cast(src[rows + j])); + { + size_t idx = rows + j; + if (row_set.get(idx)) + dst.push_back(static_cast(src[idx])); + } } } for (size_t i = num_batched * increment; i < rows_to_read; ++i) @@ -178,7 +183,7 @@ void BigIntRangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t le using bool_type = xsimd::batch_bool; auto increment = batch_type::size; auto num_batched = len / increment; - batch_type min_batch = batch_type::broadcast(min); + batch_type min_batch = batch_type::broadcast(lower); batch_type max_batch; if (!is_single_value) max_batch = batch_type::broadcast(upper); @@ -196,14 +201,14 @@ void BigIntRangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t le { if constexpr (std::is_same_v) { - if unlikely(lower32 != min) + if unlikely(lower32 != lower) mask = bool_type(false); else mask = value == min_batch; } else if constexpr (std::is_same_v) { - if unlikely(lower16 != min) + if unlikely(lower16 != lower) mask = bool_type(false); else mask = value == min_batch; @@ -224,7 +229,10 @@ void BigIntRangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t le } for (size_t i = offset + (num_batched * increment); i < offset + len ; ++i) { - row_set.maskReference()[i] = data[i] >= min & data[i] <= upper; + bool value = data[i] >= lower & data[i] <= upper; + if (negated) + value = !value; + row_set.maskReference()[i] = value; } } @@ -357,16 +365,16 @@ ColumnFilterPtr BigIntRangeFilter::merge(const ColumnFilter * other) const case IsNull: return other->merge(this); case IsNotNull: - return std::make_shared(min, upper, false); + return std::make_shared(lower, upper, false); case BigIntRange: { bool both_null_allowed = null_allowed && other->testNull(); const auto * other_range = dynamic_cast(other); - if (other_range->min > upper || other_range->upper < min) + if (other_range->lower > upper || other_range->upper < lower) { return nullOrFalse(both_null_allowed); } return std::make_shared( - std::max(min, other_range->min), std::min(upper, other_range->upper), both_null_allowed); + std::max(lower, other_range->lower), std::min(upper, other_range->upper), both_null_allowed); } default: throw DB::Exception(ErrorCodes::LOGICAL_ERROR, "Can't merge filter of kind {}", magic_enum::enum_name(other->kind())); @@ -527,7 +535,7 @@ ColumnFilterPtr NegatedByteValuesFilter::merge(const ColumnFilter * other) const ColumnFilterPtr NegatedBigIntRangeFilter::clone(std::optional null_allowed_) const { - return std::make_shared(non_negated->min, non_negated->upper, null_allowed_.value_or(null_allowed)); + return std::make_shared(non_negated->lower, non_negated->upper, null_allowed_.value_or(null_allowed)); } OptionalFilter NegatedBigIntRangeFilter::create(const ActionsDAG::Node & node) { diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h index 08f6144055d..d086e70e1ea 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h @@ -150,6 +150,22 @@ public: } } + virtual void testFloat32Values(RowSet & row_set, size_t offset, size_t len, const Float32 * data) const + { + for (size_t i = offset; i < offset + len; ++i) + { + row_set.set(i, testFloat32(data[i])); + } + } + + virtual void testFloat64Values(RowSet & row_set, size_t offset, size_t len, const Float64 * data) const + { + for (size_t i = offset; i < offset + len; ++i) + { + row_set.set(i, testFloat64(data[i])); + } + } + virtual ColumnFilterPtr merge(const ColumnFilter * /*filter*/) const { @@ -226,45 +242,45 @@ class BigIntRangeFilter : public ColumnFilter friend class NegatedBigIntRangeFilter; public: static OptionalFilter create(const ActionsDAG::Node & node); - explicit BigIntRangeFilter(const Int64 min_, const Int64 max_, bool null_allowed_) + explicit BigIntRangeFilter(const Int64 lower_, const Int64 max_, bool null_allowed_) : ColumnFilter(BigIntRange, null_allowed_) , upper(max_) - , min(min_) - , lower32(static_cast(std::max(min, std::numeric_limits::min()))) + , lower(lower_) + , lower32(static_cast(std::max(lower, std::numeric_limits::min()))) , upper32(static_cast(std::min(upper, std::numeric_limits::max()))) - , lower16(static_cast(std::max(min, std::numeric_limits::min()))) + , lower16(static_cast(std::max(lower, std::numeric_limits::min()))) , upper16(static_cast(std::min(upper, std::numeric_limits::max()))) - , is_single_value(upper == min) + , is_single_value(upper == lower) { } ~BigIntRangeFilter() override = default; - bool testInt64(Int64 int64) const override { return int64 >= min && int64 <= upper; } - bool testInt32(Int32 int32) const override { return int32 >= min && int32 <= upper; } - bool testInt16(Int16 int16) const override { return int16 >= min && int16 <= upper; } - bool testInt64Range(Int64 lower, Int64 upper_) const override { return min >= lower && upper_ <= upper; } + bool testInt64(Int64 int64) const override { return int64 >= lower && int64 <= upper; } + bool testInt32(Int32 int32) const override { return int32 >= lower && int32 <= upper; } + bool testInt16(Int16 int16) const override { return int16 >= lower && int16 <= upper; } + bool testInt64Range(Int64 lower_, Int64 upper_) const override { return lower >= lower_ && upper_ <= upper; } void testInt64Values(RowSet & row_set, size_t offset, size_t len, const Int64 * data) const override; void testInt32Values(RowSet & row_set, size_t offset, size_t len, const Int32 * data) const override; void testInt16Values(RowSet & row_set, size_t offset, size_t len, const Int16 * data) const override; ColumnFilterPtr merge(const ColumnFilter * filter) const override; ColumnFilterPtr clone(std::optional null_allowed_) const override { - return std::make_shared(min, upper, null_allowed_.value_or(null_allowed)); + return std::make_shared(lower, upper, null_allowed_.value_or(null_allowed)); } String toString() const override { - return fmt::format("BigIntRangeFilter: [{}, {}] {}", min, upper, null_allowed ? "with nulls" : "no nulls"); + return fmt::format("BigIntRangeFilter: [{}, {}] {}", lower, upper, null_allowed ? "with nulls" : "no nulls"); } Int64 getUpper() const { return upper; } - Int64 getMin() const { return min; } + Int64 getLower() const { return lower; } private: template void testIntValues(RowSet & row_set, size_t offset, size_t len, const T * data) const; const Int64 upper; - const Int64 min; + const Int64 lower; const int32_t lower32; const int32_t upper32; const int16_t lower16; @@ -299,7 +315,10 @@ public: ColumnFilterPtr merge(const ColumnFilter * filter) const override; ColumnFilterPtr clone(std::optional null_allowed_) const override; - + String toString() const override + { + return fmt::format("NegatedBigIntRangeFilter: [{}, {}] {}", non_negated->lower, non_negated->upper, null_allowed ? "with nulls" : "no nulls"); + } private: std::unique_ptr non_negated; }; diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index 84a4714869a..675ab63a6ae 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -21,63 +21,42 @@ Chunk RowGroupChunkReader::readChunk(size_t rows) { if (!remain_rows) return {}; rows = std::min(rows, remain_rows); + + OptionalRowSet row_set = std::nullopt; + if (!filter_columns.empty()) + row_set = RowSet(rows); + if (row_set.has_value()) + for (auto & column : filter_columns) + { + reader_columns_mapping[column]->computeRowSet(row_set, rows); + if (row_set.value().none()) + break; + } + bool skip_all = false; + if (row_set.has_value()) skip_all = row_set.value().none(); + if (skip_all) + { + metrics.skipped_rows += rows; + } + + if (row_set.has_value() && row_set.value().all()) row_set = std::nullopt; + size_t rows_read = 0; + if (!skip_all) rows_read = row_set.has_value() ? row_set.value().count() : rows; MutableColumns columns; for (auto & reader : column_readers) { columns.push_back(reader->createColumn()); - columns.back()->reserve(rows); + columns.back()->reserve(rows_read); } - - size_t rows_read = 0; - while (rows_read < rows) + for (size_t i = 0; i < column_readers.size(); i++) { - size_t rows_to_read = std::min(rows - rows_read, remain_rows); - if (!rows_to_read) - break; - for (auto & reader : column_readers) - { - if (!reader->availableRows()) - { - reader->readPageIfNeeded(); - } - rows_to_read = std::min(reader->availableRows(), rows_to_read); - } - if (!rows_to_read) - break; - - OptionalRowSet row_set = std::nullopt; - if (!filter_columns.empty()) - row_set = std::optional(RowSet(rows_to_read)); - if (row_set.has_value()) - for (auto & column : filter_columns) - { - reader_columns_mapping[column]->computeRowSet(row_set, rows_to_read); - if (row_set.value().none()) - break; - } - bool skip_all = false; - if (row_set.has_value()) skip_all = row_set.value().none(); if (skip_all) - { - metrics.skipped_rows += rows_to_read; - } - - bool all = true; - if (row_set.has_value()) all = row_set.value().all(); - if (all) row_set = std::nullopt; - - for (size_t i = 0; i < column_readers.size(); i++) - { - if (skip_all) - column_readers[i]->skip(rows_to_read); - else - column_readers[i]->read(columns[i], row_set, rows_to_read); - } - remain_rows -= rows_to_read; - metrics.filtered_rows += (rows_to_read - (columns[0]->size() - rows_read)); - rows_read = columns[0]->size(); + column_readers[i]->skip(rows); + else + column_readers[i]->read(columns[i], row_set, rows); } - + remain_rows -= rows; + metrics.filtered_rows += (rows - columns[0]->size() ); // if (parquet_reader->remain_filter.has_value()) // { // std::cerr<<"has filter\n"<::read(MutableColumnPtr & c { auto old_size = data.size(); data.resize(old_size + rows_to_read); - idx_decoder.GetBatchWithDict(dict.data() , static_cast(dict.size()), data.data() + old_size, static_cast(rows_to_read)); + size_t count = idx_decoder.GetBatchWithDict(dict.data() , static_cast(dict.size()), data.data() + old_size, static_cast(rows_to_read)); + if (count != rows_to_read) + throw DB::Exception(ErrorCodes::LOGICAL_ERROR, "read full idx batch failed. read {} rows, expect {}", count, rows_to_read); } batch_buffer.resize(0); state.remain_rows -= rows_to_read; } + for (size_t i = 0; i < data.size(); i++) + if (data[i] < 0) + std::cerr << fmt::format("data value {}\n", data[i]); } template @@ -585,16 +569,18 @@ size_t NumberDictionaryReader::skipValuesInCurrentPage } else { - if (!state.idx_buffer.empty()) + if (!batch_buffer.empty()) { // only support skip all - chassert(state.idx_buffer.size() == skipped); - state.idx_buffer.resize(0); + chassert(batch_buffer.size() == skipped); + batch_buffer.resize(0); } else { state.idx_buffer.resize(skipped); - idx_decoder.GetBatch(state.idx_buffer.data(), static_cast(skipped)); + size_t count = idx_decoder.GetBatch(state.idx_buffer.data(), static_cast(skipped)); + if (count != skipped) + throw DB::Exception(ErrorCodes::LOGICAL_ERROR, "skip rows failed. read {} rows, expect {}", count, skipped); state.idx_buffer.resize(0); } } diff --git a/src/Processors/tests/gtest_native_parquet_reader.cpp b/src/Processors/tests/gtest_native_parquet_reader.cpp index 40e3c0a32ea..7b731d7e2d6 100644 --- a/src/Processors/tests/gtest_native_parquet_reader.cpp +++ b/src/Processors/tests/gtest_native_parquet_reader.cpp @@ -461,6 +461,62 @@ TEST(Processors, BenchmarkReadNullableString) benchmark("native", 21, new_test); } +template +static void testFilterPlainFixedData(int size, double positive_rate) +{ + PaddedPODArray data; + PaddedPODArray src; + PaddedPODArray expected; + RowSet set(size); + data.reserve(size); + for (size_t i = 0; i < size; ++i) + { + auto value = std::rand() % 100000; + src.push_back(value); + (std::rand() % 100 + 1) < positive_rate * 100 ? set.set(i, true) : set.set(i, false); + if (set.get(i)) + { + expected.push_back(value); + } + } + FilterHelper::filterPlainFixedData(src.data(), data, set, src.size()); + ASSERT_EQ(expected.size(), data.size()); + for (size_t i = 0; i < expected.size(); ++i) + { + ASSERT_EQ(expected[i], data[i]); + } +} + +TEST(TestColumnFilterHepler, TestFilterPlainFixedData) +{ + testFilterPlainFixedData(100000, 1.0); + testFilterPlainFixedData(100000, 1.0); + testFilterPlainFixedData(100000, 1.0); + testFilterPlainFixedData(100000, 1.0); + testFilterPlainFixedData(100000, 1.0); + testFilterPlainFixedData(100000, 1.0); + testFilterPlainFixedData(100000, 1.0); + testFilterPlainFixedData(100000, 1.0); + + testFilterPlainFixedData(100000, 0); + testFilterPlainFixedData(100000, 0); + testFilterPlainFixedData(100000, 0); + testFilterPlainFixedData(100000, 0); + testFilterPlainFixedData(100000, 0); + testFilterPlainFixedData(100000, 0); + testFilterPlainFixedData(100000, 0); + testFilterPlainFixedData(100000, 0); + + testFilterPlainFixedData(100000, 0.9); + testFilterPlainFixedData(100000, 0.9); + testFilterPlainFixedData(100000, 0.9); + testFilterPlainFixedData(100000, 0.9); + testFilterPlainFixedData(100000, 0.9); + testFilterPlainFixedData(100000, 0.9); + testFilterPlainFixedData(100000, 0.9); + testFilterPlainFixedData(100000, 0.9); +} + template static void testGatherDictInt() { @@ -567,4 +623,19 @@ TEST(TestColumnFilter, TestColumnIntFilter) set3.setAllTrue(); filter2.testInt64Values(set3, 0, int64_values.size(), int64_values.data()); ASSERT_EQ(set3.count(), 2); + + + NegatedBigIntRangeFilter negated_filter(200, 200, false); + ASSERT_FALSE(negated_filter.testInt16(200)); + ASSERT_FALSE(negated_filter.testInt32(200)); + ASSERT_FALSE(negated_filter.testInt64(200)); + RowSet row_set4 = RowSet(int16_values.size()); + negated_filter.testInt16Values(row_set4, 0, int16_values.size(), int16_values.data()); + ASSERT_EQ(38, row_set4.count()); + RowSet row_set5 = RowSet(int32_values.size()); + negated_filter.testInt32Values(row_set5, 0, int32_values.size(), int32_values.data()); + ASSERT_EQ(38, row_set5.count()); + RowSet row_set6 = RowSet(int64_values.size()); + negated_filter.testInt64Values(row_set6, 0, int64_values.size(), int64_values.data()); + ASSERT_EQ(38, row_set6.count()); } From a8fded3a0140c90a27a59f513cd51f641bbe0055 Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Thu, 5 Sep 2024 17:48:14 +0800 Subject: [PATCH 20/34] add new reader factory --- .../Formats/Impl/Parquet/ColumnFilter.cpp | 2 + .../Parquet/ParquetColumnReaderFactory.cpp | 361 ++++++++++++++++++ .../Impl/Parquet/ParquetColumnReaderFactory.h | 44 +++ .../Formats/Impl/Parquet/ParquetReader.cpp | 80 +++- .../Formats/Impl/Parquet/ParquetReader.h | 28 +- .../Impl/Parquet/SelectiveColumnReader.cpp | 190 ++++----- .../Impl/Parquet/SelectiveColumnReader.h | 5 +- .../0_stateless/03214_hits_parquet.reference | 349 +++++++++++++++++ .../0_stateless/03214_hits_parquet.sql | 156 ++++++++ 9 files changed, 1123 insertions(+), 92 deletions(-) create mode 100644 src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp create mode 100644 src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.h create mode 100644 tests/queries/0_stateless/03214_hits_parquet.reference create mode 100644 tests/queries/0_stateless/03214_hits_parquet.sql diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp index 5a342625897..11c6cce7266 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp @@ -100,6 +100,8 @@ void FilterHelper::filterPlainFixedData(const S* src, PaddedPODArray & dst, c template void FilterHelper::filterPlainFixedData(Int32 const*, DB::PaddedPODArray&, DB::RowSet const&, size_t); template void FilterHelper::filterPlainFixedData(Int16 const*, DB::PaddedPODArray&, DB::RowSet const&, size_t); template void FilterHelper::filterPlainFixedData(Int32 const*, DB::PaddedPODArray&, DB::RowSet const&, size_t); +template void FilterHelper::filterPlainFixedData(UInt32 const*, DB::PaddedPODArray&, DB::RowSet const&, size_t); +template void FilterHelper::filterPlainFixedData(Int64 const*, DB::PaddedPODArray&, DB::RowSet const&, size_t); template void FilterHelper::filterPlainFixedData(const Int64* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); template void FilterHelper::filterPlainFixedData(const Float32* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); template void FilterHelper::filterPlainFixedData(const Float64* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); diff --git a/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp b/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp new file mode 100644 index 00000000000..c6372c7e6a1 --- /dev/null +++ b/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp @@ -0,0 +1,361 @@ +#include "ParquetColumnReaderFactory.h" +#include +#include +#include +#include +#include +#include +#include + + +namespace DB +{ +template +SelectiveColumnReaderPtr createColumnReader( + std::unique_ptr /*page_reader*/, const ScanSpec & /*scan_spec*/, const parquet::LogicalType & /*logical_type*/) +{ + throw DB::Exception( + ErrorCodes::NOT_IMPLEMENTED, + "ParquetColumnReaderFactory::createColumnReader: not implemented for physical type {} and target type {}", + magic_enum::enum_name(physical_type), + magic_enum::enum_name(target_type)); +} + +template <> +SelectiveColumnReaderPtr createColumnReader( + std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType & /*logical_type*/) +{ + return std::make_shared>( + std::move(page_reader), scan_spec, std::make_shared()); +} + +template <> +SelectiveColumnReaderPtr createColumnReader( + std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType & /*logical_type*/) +{ + return std::make_shared>( + std::move(page_reader), scan_spec, std::make_shared()); +} + +static UInt32 getScaleFromLogicalTimestamp(parquet::LogicalType::TimeUnit::unit tm_unit) +{ + switch (tm_unit) + { + case parquet::LogicalType::TimeUnit::MILLIS: + return 3; + case parquet::LogicalType::TimeUnit::MICROS: + return 6; + case parquet::LogicalType::TimeUnit::NANOS: + return 9; + default: + throw DB::Exception(ErrorCodes::PARQUET_EXCEPTION, ", invalid timestamp unit: {}", tm_unit); + } +} + +template <> +SelectiveColumnReaderPtr createColumnReader( + std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType & logical_type) +{ + DataTypePtr type_datetime64; + if (logical_type.is_timestamp()) + { + const auto & tm_type = dynamic_cast(logical_type); + type_datetime64 = std::make_shared(getScaleFromLogicalTimestamp(tm_type.time_unit())); + } + else + type_datetime64 = std::make_shared(0); + return std::make_shared>( + std::move(page_reader), scan_spec, type_datetime64); +} + +template <> +SelectiveColumnReaderPtr createColumnReader( + std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType & logical_type) +{ + DataTypePtr type_datetime64; + if (logical_type.is_timestamp()) + { + const auto & tm_type = dynamic_cast(logical_type); + type_datetime64 = std::make_shared(getScaleFromLogicalTimestamp(tm_type.time_unit())); + } + else + type_datetime64 = std::make_shared(0); + return std::make_shared>( + std::move(page_reader), scan_spec, type_datetime64); +} + +template <> +SelectiveColumnReaderPtr createColumnReader( + std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) +{ + return std::make_shared>( + std::move(page_reader), scan_spec, std::make_shared()); +} + +template <> +SelectiveColumnReaderPtr createColumnReader( + std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) +{ + return std::make_shared>( + std::move(page_reader), scan_spec, std::make_shared()); +} + +template <> +SelectiveColumnReaderPtr createColumnReader( + std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) +{ + return std::make_shared>( + std::move(page_reader), scan_spec, std::make_shared()); +} + +template <> +SelectiveColumnReaderPtr createColumnReader( + std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) +{ + return std::make_shared>( + std::move(page_reader), scan_spec, std::make_shared()); +} + +template <> +SelectiveColumnReaderPtr createColumnReader( + std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) +{ + return std::make_shared>( + std::move(page_reader), scan_spec, std::make_shared()); +} + +template <> +SelectiveColumnReaderPtr createColumnReader( + std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) +{ + return std::make_shared>( + std::move(page_reader), scan_spec, std::make_shared()); +} + +template <> +SelectiveColumnReaderPtr createColumnReader( + std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) +{ + return std::make_shared>( + std::move(page_reader), scan_spec, std::make_shared()); +} + +template <> +SelectiveColumnReaderPtr createColumnReader( + std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) +{ + return std::make_shared>( + std::move(page_reader), scan_spec, std::make_shared()); +} + +template <> +SelectiveColumnReaderPtr createColumnReader( + std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) +{ + return std::make_shared>( + std::move(page_reader), scan_spec, std::make_shared()); +} + +template <> +SelectiveColumnReaderPtr createColumnReader( + std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) +{ + return std::make_shared>( + std::move(page_reader), scan_spec, std::make_shared()); +} + +template <> +SelectiveColumnReaderPtr createColumnReader( + std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) +{ + return std::make_shared>( + std::move(page_reader), scan_spec, std::make_shared()); +} + +template <> +SelectiveColumnReaderPtr createColumnReader( + std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) +{ + return std::make_shared>( + std::move(page_reader), scan_spec, std::make_shared()); +} + +template <> +SelectiveColumnReaderPtr createColumnReader( + std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) +{ + return std::make_shared>( + std::move(page_reader), scan_spec, std::make_shared()); +} + +template <> +SelectiveColumnReaderPtr createColumnReader( + std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) +{ + return std::make_shared>( + std::move(page_reader), scan_spec, std::make_shared()); +} + +template <> +SelectiveColumnReaderPtr createColumnReader( + std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) +{ + return std::make_shared( + std::move(page_reader), scan_spec); +} + +template <> +SelectiveColumnReaderPtr createColumnReader( + std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) +{ + return std::make_shared( + std::move(page_reader), scan_spec); +} + +ParquetColumnReaderFactory::Builder & ParquetColumnReaderFactory::Builder::columnDescriptor(const parquet::ColumnDescriptor * columnDescr) +{ + column_descriptor_ = columnDescr; + return *this; +} + +ParquetColumnReaderFactory::Builder & ParquetColumnReaderFactory::Builder::dictionary(bool dictionary) +{ + dictionary_ = dictionary; + return *this; +} +ParquetColumnReaderFactory::Builder & ParquetColumnReaderFactory::Builder::nullable(bool nullable) +{ + nullable_ = nullable; + return *this; +} + +ParquetColumnReaderFactory::Builder & ParquetColumnReaderFactory::Builder::filter(const ColumnFilterPtr & filter) +{ + filter_ = filter; + return *this; +} + +ParquetColumnReaderFactory::Builder & ParquetColumnReaderFactory::Builder::targetType(const DataTypePtr & target_type) +{ + target_type_ = target_type; + return *this; +} + +ParquetColumnReaderFactory::Builder & ParquetColumnReaderFactory::Builder::pageReader(std::unique_ptr page_reader) +{ + page_reader_ = std::move(page_reader); + return *this; +} + +SelectiveColumnReaderPtr ParquetColumnReaderFactory::Builder::build() +{ + if (!column_descriptor_ || !page_reader_ || !target_type_) + throw DB::Exception(ErrorCodes::LOGICAL_ERROR, "ParquetColumnReaderFactory::Builder: column descriptor, page reader and target type must be set"); + ScanSpec scan_spec{.column_name = column_descriptor_->name(), .column_desc = column_descriptor_, .filter = filter_}; + parquet::Type::type physical_type = column_descriptor_->physical_type(); + TypeIndex target_type = target_type_->getTypeId(); + const auto& logical_type = *column_descriptor_->logical_type(); + SelectiveColumnReaderPtr leaf_reader = nullptr; + if (physical_type == parquet::Type::INT64) + { + if (isInt64(target_type)) + { + if (dictionary_) + leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + else + leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + } + else if (isDateTime64(target_type)) + { + if (dictionary_) + leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + else + leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + } + else if (isDateTime(target_type)) + { + if (dictionary_) + leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + else + leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + } + } + else if (physical_type == parquet::Type::INT32) + { + if (isInt16(target_type)) + { + if (dictionary_) + leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + else + leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + } + else if (isInt32(target_type)) + { + if (dictionary_) + leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + else + leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + } + else if (isDate32(target_type)) + { + if (dictionary_) + leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + else + leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + } + else if (isDate(target_type)) + { + if (dictionary_) + leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + else + leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + } + } + else if (physical_type == parquet::Type::FLOAT) + { + if (isFloat(target_type)) + { + if (dictionary_) + leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + else + leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + } + } + else if (physical_type == parquet::Type::DOUBLE) + { + if (isFloat(target_type)) + { + if (dictionary_) + leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + else + leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + } + } + else if (physical_type == parquet::Type::BYTE_ARRAY) + { + if (isString(target_type)) + { + if (dictionary_) + leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + else + leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + } + } + if (!leaf_reader) + { + throw DB::Exception( + ErrorCodes::NOT_IMPLEMENTED, + "ParquetColumnReaderFactory::createColumnReader: not implemented for physical type {} and target type {}", + magic_enum::enum_name(physical_type), + magic_enum::enum_name(target_type)); + } + if (nullable_) + return std::make_shared(scan_spec, leaf_reader); + else + return leaf_reader; +} +ParquetColumnReaderFactory::Builder ParquetColumnReaderFactory::builder() +{ + return ParquetColumnReaderFactory::Builder(); +} +} diff --git a/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.h b/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.h new file mode 100644 index 00000000000..91126c82897 --- /dev/null +++ b/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.h @@ -0,0 +1,44 @@ +#pragma once +#include +#include +#include + +namespace parquet +{ + class ColumnDescriptor; +} + +namespace DB +{ +class SelectiveColumnReader; +using SelectiveColumnReaderPtr = std::shared_ptr; +class LazyPageReader; + +class ParquetColumnReaderFactory +{ +public: + class Builder + { + public: + Builder& dictionary(bool dictionary); + Builder& nullable(bool nullable); + Builder& columnDescriptor(const parquet::ColumnDescriptor * columnDescr); + Builder& filter(const ColumnFilterPtr & filter); + Builder& targetType(const DataTypePtr & target_type); + Builder& pageReader(std::unique_ptr page_reader); + SelectiveColumnReaderPtr build(); + private: + bool dictionary_ = false; + bool nullable_ = false; + const parquet::ColumnDescriptor * column_descriptor_ = nullptr; + DataTypePtr target_type_ = nullptr; + std::unique_ptr page_reader_ = nullptr; + ColumnFilterPtr filter_ = nullptr; + }; + + static Builder builder(); +}; + + + +} diff --git a/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp b/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp index 267bb71c7cb..8daf8dd5ff1 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp @@ -1,4 +1,7 @@ #include "ParquetReader.h" +#include +#include +#include namespace DB { @@ -22,7 +25,7 @@ extern const int PARQUET_EXCEPTION; } while (false) -std::unique_ptr createFileReader( +static std::unique_ptr createFileReader( std::shared_ptr<::arrow::io::RandomAccessFile> arrow_file, parquet::ReaderProperties reader_properties, std::shared_ptr metadata = nullptr) @@ -53,8 +56,14 @@ ParquetReader::ParquetReader( if (row_groups_indices.empty()) for (int i = 0; i < meta_data->num_row_groups(); i++) row_groups_indices.push_back(i); - chunk_reader = std::make_unique(row_groups_indices, [&](const size_t idx) { return getRowGroupChunkReader(idx); }); + async_downloader = std::make_unique(file, file_mutex); + const auto * root = meta_data->schema()->group_node(); + for (int i = 0; i < root->field_count(); ++i) + { + const auto & node = root->field(i); + parquet_columns.emplace(node->name(), node); + } } Block ParquetReader::read() @@ -83,10 +92,27 @@ void ParquetReader::setRemainFilter(std::optional & expr) } std::unique_ptr ParquetReader::getRowGroupChunkReader(size_t row_group_idx) { - return std::make_unique(this, meta_data->RowGroup(static_cast(row_group_idx)), filters); + return std::make_unique(this, row_group_idx, filters); } + +extern std::pair getColumnRange(const parquet::ColumnChunkMetaData & column_metadata); + + std::unique_ptr ParquetReader::getSubRowGroupRangeReader(std::vector row_group_indices_) { + + for (auto row_group_idx : row_group_indices_) + { + auto row_group_meta = meta_data->RowGroup(row_group_idx); + for (const auto & name : header.getNames()) + { + if (!parquet_columns.contains(name)) + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "no column with '{}' in parquet file", name); + auto idx = meta_data->schema()->ColumnIndex(*parquet_columns[name]); + auto range = getColumnRange(*row_group_meta->ColumnChunk(idx)); + async_downloader->downloadColumnChunkData(row_group_idx, name, range.first, range.second); + } + } return std::make_unique(row_group_indices_, [&](const size_t idx) { return getRowGroupChunkReader(idx); }); } @@ -117,4 +143,52 @@ bool SubRowGroupRangeReader::loadRowGroupChunkReaderIfNeeded() return true; } +FileAsyncDownloader::FileAsyncDownloader(SeekableReadBuffer & file_, std::mutex & mutex) : file(file_), file_mutex(mutex) +{ + callback_runner = threadPoolCallbackRunnerUnsafe(getIOThreadPool().get(), "ParquetRead"); +} + + +void FileAsyncDownloader::downloadColumnChunkData(int row_group_idx, const String & column_name, size_t offset, size_t len) +{ + auto task = [this, offset, len]() -> ColumnChunkDataPtr { + ColumnChunkDataPtr data = std::make_unique(); + data->data.resize(len); + size_t count = 0; + if (file.supportsReadAt()) + { + auto pb = [](size_t) { return true; }; + count = file.readBigAt(reinterpret_cast(data->data.data()), len, offset, pb); + } + else + { + std::lock_guard lock(file_mutex); + file.seek(offset, SEEK_SET); + count = file.readBig(reinterpret_cast(data->data.data()), len); + + } + if (count != len) + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Failed to read column data"); + return data; + }; + + // Assuming Priority is an enum or a type that is defined elsewhere + Priority priority = {0}; // Set the appropriate priority value + auto future = callback_runner(std::move(task), priority); + std::lock_guard lock(chunks_mutex); + column_chunks[row_group_idx][column_name] = std::move(future); +} +std::shared_ptr +FileAsyncDownloader::readColumnChunkData(int row_group_idx, const String & column_name) +{ + std::lock_guard lock(chunks_mutex); + if (column_chunks.contains(row_group_idx) && column_chunks[row_group_idx].contains(column_name)) + { + auto data = std::move(column_chunks[row_group_idx][column_name]); + return data.get(); + } + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Column chunk data not found {}, {}", row_group_idx, column_name); +} + + } diff --git a/src/Processors/Formats/Impl/Parquet/ParquetReader.h b/src/Processors/Formats/Impl/Parquet/ParquetReader.h index 97b44d79961..49915b077b0 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetReader.h +++ b/src/Processors/Formats/Impl/Parquet/ParquetReader.h @@ -1,3 +1,4 @@ + #pragma once #include #include @@ -9,15 +10,38 @@ #include #include #include +#include + namespace DB { +struct ColumnChunkData +{ + PaddedPODArray data; +}; + +using ColumnChunkDataPtr = std::shared_ptr; + +class FileAsyncDownloader +{ +public: + FileAsyncDownloader(SeekableReadBuffer & file_, std::mutex & mutex); + void downloadColumnChunkData(int row_group_idx, const String & column_name, size_t offset, size_t size); + std::shared_ptr readColumnChunkData(int row_group_idx, const String & column_name); +private: + ThreadPoolCallbackRunnerUnsafe callback_runner; + SeekableReadBuffer& file; + std::mutex& file_mutex; + std::unordered_map>>> column_chunks; + std::mutex chunks_mutex; +}; + class SubRowGroupRangeReader { public: using RowGroupReaderCreator = std::function(size_t)>; - explicit SubRowGroupRangeReader(const std::vector & rowGroupIndices, RowGroupReaderCreator&& creator); + SubRowGroupRangeReader(const std::vector & rowGroupIndices, RowGroupReaderCreator&& creator); DB::Chunk read(size_t rows); private: @@ -66,6 +90,8 @@ private: std::vector row_groups_indices; size_t next_row_group_idx = 0; std::shared_ptr meta_data; + std::unordered_map parquet_columns; + std::unique_ptr async_downloader; }; } diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index 675ab63a6ae..b0cbbc97803 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -6,6 +6,7 @@ #include #include #include +#include #include namespace DB @@ -21,57 +22,78 @@ Chunk RowGroupChunkReader::readChunk(size_t rows) { if (!remain_rows) return {}; rows = std::min(rows, remain_rows); - - OptionalRowSet row_set = std::nullopt; - if (!filter_columns.empty()) - row_set = RowSet(rows); - if (row_set.has_value()) - for (auto & column : filter_columns) - { - reader_columns_mapping[column]->computeRowSet(row_set, rows); - if (row_set.value().none()) - break; - } - bool skip_all = false; - if (row_set.has_value()) skip_all = row_set.value().none(); - if (skip_all) - { - metrics.skipped_rows += rows; - } - - if (row_set.has_value() && row_set.value().all()) row_set = std::nullopt; - size_t rows_read = 0; - if (!skip_all) rows_read = row_set.has_value() ? row_set.value().count() : rows; MutableColumns columns; for (auto & reader : column_readers) { columns.push_back(reader->createColumn()); - columns.back()->reserve(rows_read); + columns.back()->reserve(rows); } - for (size_t i = 0; i < column_readers.size(); i++) + + size_t rows_read = 0; + while (rows_read < rows) { + size_t rows_to_read = std::min(rows - rows_read, remain_rows); + if (!rows_to_read) + break; + for (auto & reader : column_readers) + { + if (!reader->availableRows()) + { + reader->readPageIfNeeded(); + } + rows_to_read = std::min(reader->availableRows(), rows_to_read); + } + if (!rows_to_read) + break; + + OptionalRowSet row_set = std::nullopt; + if (!filter_columns.empty()) + row_set = std::optional(RowSet(rows_to_read)); + if (row_set.has_value()) + for (auto & column : filter_columns) + { + reader_columns_mapping[column]->computeRowSet(row_set, rows_to_read); + if (row_set.value().none()) + break; + } + bool skip_all = false; + if (row_set.has_value()) skip_all = row_set.value().none(); if (skip_all) - column_readers[i]->skip(rows); - else - column_readers[i]->read(columns[i], row_set, rows); + { + metrics.skipped_rows += rows_to_read; + } + + bool all = true; + if (row_set.has_value()) all = row_set.value().all(); + if (all) row_set = std::nullopt; + + for (size_t i = 0; i < column_readers.size(); i++) + { + if (skip_all) + column_readers[i]->skip(rows_to_read); + else + column_readers[i]->read(columns[i], row_set, rows_to_read); + } + remain_rows -= rows_to_read; + metrics.filtered_rows += (rows_to_read - (columns[0]->size() - rows_read)); + rows_read = columns[0]->size(); } - remain_rows -= rows; - metrics.filtered_rows += (rows - columns[0]->size() ); -// if (parquet_reader->remain_filter.has_value()) -// { -// std::cerr<<"has filter\n"<header.cloneWithColumns(std::move(columns)); -// auto output = input.getColumns(); -// parquet_reader->remain_filter.value().execute(input); -// const auto& filter = checkAndGetColumn(*input.getByPosition(0).column).getData(); -// size_t resize_hint = 0; -// for (size_t i = 0; i < columns.size(); i++) -// { -// output[i] = output[i]->assumeMutable()->filter(filter, resize_hint); -// resize_hint = output[i]->size(); -// } -// return Chunk(std::move(output), resize_hint); -// } + + // if (parquet_reader->remain_filter.has_value()) + // { + // std::cerr<<"has filter\n"<header.cloneWithColumns(std::move(columns)); + // auto output = input.getColumns(); + // parquet_reader->remain_filter.value().execute(input); + // const auto& filter = checkAndGetColumn(*input.getByPosition(0).column).getData(); + // size_t resize_hint = 0; + // for (size_t i = 0; i < columns.size(); i++) + // { + // output[i] = output[i]->assumeMutable()->filter(filter, resize_hint); + // resize_hint = output[i]->size(); + // } + // return Chunk(std::move(output), resize_hint); + // } metrics.output_rows += rows_read; return Chunk(std::move(columns), rows_read); } @@ -90,63 +112,62 @@ std::pair getColumnRange(const parquet::ColumnChunkMetaData & co RowGroupChunkReader::RowGroupChunkReader( ParquetReader * parquetReader, - std::shared_ptr row_group_meta_, + size_t row_group_idx, std::unordered_map filters) - : parquet_reader(parquetReader), row_group_meta(row_group_meta_) + : parquet_reader(parquetReader), row_group_meta(parquetReader->meta_data->RowGroup(static_cast(row_group_idx))) { - std::unordered_map parquet_columns; - const auto * root = parquet_reader->meta_data->schema()->group_node(); - for (int i = 0; i < root->field_count(); ++i) - { - const auto & node = root->field(i); - parquet_columns.emplace(node->name(), node); - } - column_readers.reserve(parquet_reader->header.columns()); column_buffers.resize(parquet_reader->header.columns()); int reader_idx = 0; for (const auto & col_with_name : parquet_reader->header) { - if (!parquet_columns.contains(col_with_name.name)) + if (!parquetReader->parquet_columns.contains(col_with_name.name)) throw Exception(ErrorCodes::PARQUET_EXCEPTION, "no column with '{}' in parquet file", col_with_name.name); - const auto & node = parquet_columns.at(col_with_name.name); + const auto & node = parquetReader->parquet_columns.at(col_with_name.name); if (!node->is_primitive()) throw Exception(ErrorCodes::NOT_IMPLEMENTED, "arrays and maps are not implemented in native parquet reader"); auto idx = parquet_reader->meta_data->schema()->ColumnIndex(*node); auto filter = filters.contains(col_with_name.name) ? filters.at(col_with_name.name) : nullptr; - auto range = getColumnRange(*row_group_meta->ColumnChunk(idx)); - size_t compress_size = range.second; - size_t offset = range.first; - column_buffers[reader_idx].resize(compress_size, 0); +// auto range = getColumnRange(*row_group_meta->ColumnChunk(idx)); +// size_t compress_size = range.second; +// size_t offset = range.first; +// column_buffers[reader_idx].resize(compress_size, 0); remain_rows = row_group_meta->ColumnChunk(idx)->num_values(); - if (!parquet_reader->file.supportsReadAt()) - { - std::lock_guard lock(parquet_reader->file_mutex); - parquet_reader->file.seek(offset, SEEK_SET); - size_t count = parquet_reader->file.readBig(reinterpret_cast(column_buffers[reader_idx].data()), compress_size); - if (count != compress_size) - throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Failed to read column data"); - } - else - { - auto pb = [](size_t ) {return true;}; - size_t count = parquet_reader->file.readBigAt(reinterpret_cast(column_buffers[reader_idx].data()), compress_size, offset, pb); - if (count != compress_size) - throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Failed to read column data"); - } +// if (!parquet_reader->file.supportsReadAt()) +// { +// std::lock_guard lock(parquet_reader->file_mutex); +// parquet_reader->file.seek(offset, SEEK_SET); +// size_t count = parquet_reader->file.readBig(reinterpret_cast(column_buffers[reader_idx].data()), compress_size); +// if (count != compress_size) +// throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Failed to read column data"); +// } +// else +// { +// auto pb = [](size_t ) {return true;}; +// size_t count = parquet_reader->file.readBigAt(reinterpret_cast(column_buffers[reader_idx].data()), compress_size, offset, pb); +// if (count != compress_size) +// throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Failed to read column data"); +// } + + auto data = parquetReader->async_downloader->readColumnChunkData(static_cast(row_group_idx), col_with_name.name); + column_buffers[reader_idx] = std::move(data->data); auto page_reader = std::make_unique( - std::make_shared(reinterpret_cast(column_buffers[reader_idx].data()), compress_size), + std::make_shared(reinterpret_cast(column_buffers[reader_idx].data()), column_buffers[reader_idx].size()), parquet_reader->properties, remain_rows, row_group_meta->ColumnChunk(idx)->compression()); - auto column_reader = SelectiveColumnReaderFactory::createLeafColumnReader( - *row_group_meta->ColumnChunk(idx), parquet_reader->meta_data->schema()->Column(idx), std::move(page_reader), filter); - if (node->is_optional()) - { - column_reader = SelectiveColumnReaderFactory::createOptionalColumnReader(column_reader, nullptr); - } + const auto* column_desc = parquet_reader->meta_data->schema()->Column(idx); + auto column_reader = ParquetColumnReaderFactory::builder().nullable(node->is_optional()) + .dictionary(row_group_meta->ColumnChunk(idx)->has_dictionary_page()) + .columnDescriptor(column_desc) + .pageReader(std::move(page_reader)) + .targetType(col_with_name.type) + .filter(filter) + .build(); +// auto column_reader = SelectiveColumnReaderFactory::createLeafColumnReader( +// *row_group_meta->ColumnChunk(idx), parquet_reader->meta_data->schema()->Column(idx), std::move(page_reader), filter); column_readers.push_back(column_reader); reader_columns_mapping[col_with_name.name] = column_reader; chassert(idx >= 0); @@ -523,9 +544,6 @@ void NumberDictionaryReader::read(MutableColumnPtr & c batch_buffer.resize(0); state.remain_rows -= rows_to_read; } - for (size_t i = 0; i < data.size(); i++) - if (data[i] < 0) - std::cerr << fmt::format("data value {}\n", data[i]); } template @@ -716,7 +734,7 @@ static bool isLogicalTypeDate(parquet::LogicalType::Type::type type) static bool isLogicalTypeDateTime(parquet::LogicalType::Type::type type) { - return type == parquet::LogicalType::Type::TIMESTAMP; + return type == parquet::LogicalType::Type::TIMESTAMP || type == parquet::LogicalType::Type::TIME; } static UInt32 getScaleFromLogicalTimestamp(parquet::LogicalType::TimeUnit::unit tm_unit) @@ -824,6 +842,7 @@ template class NumberColumnDirectReader; template class NumberColumnDirectReader; template class NumberColumnDirectReader; template class NumberColumnDirectReader; +template class NumberColumnDirectReader; template class NumberDictionaryReader; template class NumberDictionaryReader; @@ -832,6 +851,7 @@ template class NumberDictionaryReader; template class NumberDictionaryReader; template class NumberDictionaryReader; template class NumberDictionaryReader; +template class NumberDictionaryReader; Int32 loadLength(const uint8_t * data) { diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h index 55fcda75e0f..7f365f01f92 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h @@ -517,7 +517,6 @@ private: class ParquetReader; - class RowGroupChunkReader { public: @@ -529,11 +528,11 @@ public: }; RowGroupChunkReader( ParquetReader * parquetReader, - std::shared_ptr rowGroupReader, + size_t row_group_idx, std::unordered_map filters); ~RowGroupChunkReader() { - printMetrics(std::cerr); +// printMetrics(std::cerr); } Chunk readChunk(size_t rows); bool hasMoreRows() const { return remain_rows > 0; } diff --git a/tests/queries/0_stateless/03214_hits_parquet.reference b/tests/queries/0_stateless/03214_hits_parquet.reference new file mode 100644 index 00000000000..02ac3aeedd9 --- /dev/null +++ b/tests/queries/0_stateless/03214_hits_parquet.reference @@ -0,0 +1,349 @@ +-- { echoOn } +SELECT COUNT(*) FROM hits; +99997497 +SELECT COUNT(*) FROM hits WHERE AdvEngineID <> 0; +630500 +SELECT SUM(AdvEngineID), COUNT(*), AVG(ResolutionWidth) FROM hits; +7280088 99997497 1513.4879349030107 +SELECT AVG(UserID) FROM hits; +-55945124888.916016 +SELECT COUNT(DISTINCT UserID) FROM hits; +17630976 +SELECT COUNT(DISTINCT SearchPhrase) FROM hits; +6019103 +SELECT MIN(EventDate), MAX(EventDate) FROM hits; +2013-07-02 2013-07-31 +SELECT AdvEngineID, COUNT(*) FROM hits WHERE AdvEngineID <> 0 GROUP BY AdvEngineID ORDER BY COUNT(*) DESC; +2 404602 +27 113167 +13 45631 +45 38960 +44 9730 +3 6896 +62 5266 +52 3554 +50 938 +28 836 +53 350 +25 343 +61 158 +21 38 +42 20 +16 7 +7 3 +22 1 +SELECT RegionID, COUNT(DISTINCT UserID) AS u FROM hits GROUP BY RegionID ORDER BY u DESC LIMIT 10; +229 2845673 +2 1081016 +208 831676 +169 604583 +184 322661 +158 307152 +34 299479 +55 286525 +107 272448 +42 243181 +SELECT RegionID, SUM(AdvEngineID), COUNT(*) AS c, AVG(ResolutionWidth), COUNT(DISTINCT UserID) FROM hits GROUP BY RegionID ORDER BY c DESC LIMIT 10; +229 2077656 18295832 1506.085243130785 2845673 +2 441662 6687587 1479.8386542111527 1081016 +208 285925 4261812 1285.2593246722286 831676 +169 100887 3320229 1465.9073732564832 604583 +32 81498 1843518 1538.0376568061718 216010 +34 161779 1792369 1548.360152401654 299479 +184 55526 1755192 1506.8082967561384 322661 +42 108820 1542717 1587.1085208758313 243181 +107 120470 1516690 1548.6028970982863 272448 +51 98212 1435578 1579.8860354505293 211505 +SELECT MobilePhoneModel, COUNT(DISTINCT UserID) AS u FROM hits WHERE MobilePhoneModel <> '' GROUP BY MobilePhoneModel ORDER BY u DESC LIMIT 10; +iPad 1090347 +iPhone 45758 +A500 16046 +N8-00 5565 +iPho 3300 +ONE TOUCH 6030A 2759 +GT-P7300B 1907 +3110000 1871 +GT-I9500 1598 +eagle75 1492 +SELECT MobilePhone, MobilePhoneModel, COUNT(DISTINCT UserID) AS u FROM hits WHERE MobilePhoneModel <> '' GROUP BY MobilePhone, MobilePhoneModel ORDER BY u DESC LIMIT 10; +1 iPad 931038 +5 iPad 48385 +6 iPad 29710 +7 iPad 28391 +118 A500 16005 +6 iPhone 14516 +26 iPhone 13566 +10 iPad 11433 +32 iPad 9503 +13 iPad 9417 +SELECT SearchPhrase, COUNT(*) AS c FROM hits WHERE SearchPhrase <> '' GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10; +карелки 70263 +албатрутдин 34675 +смотреть онлайн 24580 +смотреть онлайн бесплатно 21647 +смотреть 19707 +мангу в зарабей грама 19195 +дружке помещение 17284 +galaxy table 16746 +экзоидные 16620 +сколько мытищи 12317 +SELECT SearchPhrase, COUNT(DISTINCT UserID) AS u FROM hits WHERE SearchPhrase <> '' GROUP BY SearchPhrase ORDER BY u DESC LIMIT 10; +карелки 23673 +смотреть онлайн 19747 +албатрутдин 18394 +смотреть онлайн бесплатно 17553 +смотреть 14603 +экзоидные 14529 +мангу в зарабей грама 14198 +сколько мытищи 9007 +дружке помещение 8792 +комбинирование смотреть 7572 +SELECT SearchEngineID, SearchPhrase, COUNT(*) AS c FROM hits WHERE SearchPhrase <> '' GROUP BY SearchEngineID, SearchPhrase ORDER BY c DESC LIMIT 10; +2 карелки 46258 +2 мангу в зарабей грама 18871 +2 смотреть онлайн 16905 +3 албатрутдин 16748 +2 смотреть онлайн бесплатно 14909 +2 албатрутдин 13716 +2 экзоидные 13414 +2 смотреть 13108 +3 карелки 12815 +2 дружке помещение 11946 +SELECT UserID, COUNT(*) FROM hits GROUP BY UserID ORDER BY COUNT(*) DESC LIMIT 10; +1313338681122956954 29097 +1907779576417363396 25333 +2305303682471783379 10597 +7982623143712728547 7584 +6018350421959114808 6678 +7280399273658728997 6411 +1090981537032625727 6197 +5730251990344211405 6019 +835157184735512989 5211 +770542365400669095 4906 +SELECT UserID, SearchPhrase, COUNT(*) FROM hits GROUP BY UserID, SearchPhrase ORDER BY COUNT(*) DESC LIMIT 10; +1313338681122956954 29097 +1907779576417363396 25333 +2305303682471783379 10597 +7982623143712728547 6669 +7280399273658728997 6408 +1090981537032625727 6196 +5730251990344211405 6019 +6018350421959114808 5990 +835157184735512989 5209 +770542365400669095 4906 +SELECT UserID, SearchPhrase, COUNT(*) FROM hits GROUP BY UserID, SearchPhrase LIMIT 10; +4763181406542677 эластный олего город 3 кемеро чечневый полись книги 1 +3762749079714784842 кино-технологде есть 1 +5742717625414611048 8 +1232250446672773 10 +2934221607904195718 2 +9022295124610564659 шарарают в пол 1 +4321431981934412610 2 +567025996552890219 3 +1584008930337394931 1 +2162266567166640451 1 +SELECT UserID, extract(minute FROM EventTime) AS m, SearchPhrase, COUNT(*) FROM hits GROUP BY UserID, m, SearchPhrase ORDER BY COUNT(*) DESC LIMIT 10; +1313338681122956954 31 589 +1313338681122956954 28 578 +1313338681122956954 29 572 +1313338681122956954 33 567 +1313338681122956954 27 557 +1313338681122956954 32 554 +1313338681122956954 30 552 +1313338681122956954 34 546 +1313338681122956954 26 540 +1313338681122956954 10 539 +SELECT UserID FROM hits WHERE UserID = 435090932899640449; +435090932899640449 +435090932899640449 +435090932899640449 +435090932899640449 +SELECT COUNT(*) FROM hits WHERE URL LIKE '%google%'; +15911 +SELECT SearchPhrase, MIN(URL), COUNT(*) AS c FROM hits WHERE URL LIKE '%google%' AND SearchPhrase <> '' GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10; +прокур горбуши http://smeshariki.ru/googleTBR%26ad 60 +римском качественны for cry http:%2F%2Fwwww.googlead&aktional 24 +стоит похуден http://smeshariki.ru/index.ua/doc/22229/googlead%26aktion=2&input_bdsmpeople.ru/real-estate=0&state=2013070519381 23 +испанч боб новости дейская http://smeshariki.ru/recipes/show/6840872&trafkey=6d0fc12c54059/loukhaAUXI&where=all&filter/Mitsubishi/google 21 +прокур готовки видеоэндоменя http://smeshariki.ru/googleTBR%26ad 14 +прокур гипоаллеры http://smeshariki.ru/googleTBR%26ad 11 +камедицинск автомобильних условодки на в крем http://video.yandex.php?com=google.ru/arts/searchAutoSearch 9 +универ 11.6/1366x768/4096mb ddressary of thing http://smeshariki.ru/index.ua/syllanet.ru/business/hotels.turizm.ru/igooglead%26ar_sliceid%3D1216629/0/&&puid2=15&lo=http 8 +вспомню о названы монстэр http://tienskaia-moda-zhienskaia-obl.irr.ru/ch/google-c-38208 7 +купить трудовані резюме мертный дина кабинский лежит заднее устан http://video.yandex.php?com=google.ru/arts/searchAutoSearch 7 +SELECT SearchPhrase, MIN(URL), MIN(Title), COUNT(*) AS c, COUNT(DISTINCT UserID) FROM hits WHERE Title LIKE '%Google%' AND URL NOT LIKE '%.google.%' AND SearchPhrase <> '' GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10; +винки медведь смотреть фильмы 2013 смотреть http://smeshariki.ru/a-folder-4/#page-3.2.1; WOW64; Edition=1&input_action=2011/page_type=profiles/88436/currency видеорегионалу Google 801 600 +секретарь оверка все серии порт http://kinopoisk.ru/a-albums_scroll_to_auto_id=227&option/vacancies/liver.ru/cgi-bin/click.cgi%3Fsid%3D158197%26ad @дневники Google Player 1.2.5 л, 214 182 +винки медведь смотреть фильмы чеческия http://smeshariki.ru/a-folder-4/#page-3.2.1; WOW64; Edition=1&input_action=2013-topy%2Fproduct_price_ot=&price видеорегионалу Gooddock hotmail Google на толстовая комфорталенны Berlingo по давлений 138 121 +игры для дер блич http://kinopoisk.ru/a-albums_scroll_to_auto_id=363064472354&lb_id=1559843 Легко на купить автозаврам телась Google Anaissage_599-61 «Оверлок колепный рецепт: Твери 114 106 +винки медведь смотреть объятный ветерин http://smeshariki.ru/a-folder-4/#page-3.2.1; WOW64; Edition=1&input_age17/#page/Jeep,Lexus/rodimomu_vsegoddelki.ru/carbuznyj-90472-0-014031818%26height%3D901634571 видеорегионалу Google - Доставщиков и актрическая 102 85 +кино 2009) смотреть онлайн бессмерти мк в россипед http://domchelove.ru/#!/search/page Далее о коллекции в GIMI LANCIA 0K3Y318104 продать Google, go-go в регистрии — Мой Крым 90 70 +винки медведь смотреть http://smeshariki.ru/a-folder-4/#page-3.2.1; WOW64; Edition=1&input_active/?do=showCampState/renatzija-na-brietielkakh%2F&ti=С видеорегионалу Google - модного языке - Пульс 87 56 +тайны избавитель в владимира для университет масляться http://smeshariki.ru/a-folder=cars/article=199980150195,0.107736/detail.aspx#location=search?text=asc&maxyear=2001216629%26sob%3D3159&input_who1=1&cid=577&oki=1&op_product_id=25&pvno=2&evlg=VC,2;VL Амитин обувь - Яндекс.Видео+текст песен Google.com 64 56 +коптимиквиды юриста с роуз рая https://produkty%2Fpulove.ru/booklyattion-war-sinij-9182/women Легко на участные участников., Цены - Стильная парнем. Саганрог догадения : Турции, купить у 10 дне кольные машинки не представки - Новая с избиение спродажа: котята 2014 г.в. Цена: 47500-10ECO060 – -------- купить квартиру Оренбург (России Galantrax Flamiliada Google, Nо 18 фотоконверк Супер Кардиган 45 12 +винки медведь смотрейлера начальник http://smeshariki.ru/a-folder-4/#page-3.2.1; WOW64; Edition=1&input_active/ видеорегионалу Google - модных Челябинск 40 35 +SELECT * FROM hits WHERE URL LIKE '%google%' ORDER BY EventTime LIMIT 10; +7675678523794456216 1 Glavnaya gorand. Цветные объявлений районе, вером 1 2013-07-02 04:01:09 2013-07-02 64469 1840073959 2 3714843517822510735 0 44 5 http://e96.ru/search/page.googleTBR%26ad%3D0%26rnd%3D158197%26anbietersburg http://bdsmpeople.ru/obrazom_position/?page 0 13593 158 13606 216 1638 1658 22 15 7 700 0 0 22 nA 1 1 0 0 4005373 -1 0 0 0 1052 775 135 2013-07-02 18:20:22 0 0 0 0 windows 1601 0 0 0 0 213893614 0 0 0 0 0 6 2013-07-02 19:58:11 0 0 0 0 0 1412515749 63522 -1 12 S0 �\f 0 0 0 0 445 1234 0 0 0 NH 0 0 5972490271588207794 1369713899219085694 0 +6147260061318473746 1 Glavnaya gorand. Цветные объявлений районе, вером 1 2013-07-02 04:01:29 2013-07-02 64469 1840073959 2 3714843517822510735 0 44 5 http://e96.ru/search/page.googleTBR%26ad%3D0%26rnd%3D158197%26anbietersburg http://bdsmpeople.ru/obrazom_position/?page 0 13593 158 13606 216 1638 1658 22 15 7 700 0 0 22 D� 1 1 0 0 4005373 -1 0 0 0 1052 775 135 2013-07-02 18:20:42 0 0 0 0 windows 1601 0 0 0 0 810892658 0 0 0 0 0 6 2013-07-02 19:58:25 0 0 0 0 0 1412515749 63522 -1 13 S0 �\f 0 0 0 0 0 16 0 0 0 NH 0 0 5972490271588207794 1369713899219085694 0 +5972689683963797854 1 Glavnaya gorand. Цветные объявлений районе, вером 1 2013-07-02 04:02:11 2013-07-02 64469 1840073959 2 3714843517822510735 0 44 5 http://e96.ru/search/page.googleTBR%26ad%3D0%26rnd%3D158197%26anbietersburg http://bdsmpeople.ru/obrazom_position/?page 0 13593 158 13606 216 1638 1658 22 15 7 700 0 0 22 D� 1 1 0 0 4005373 -1 0 0 0 1052 775 135 2013-07-02 18:21:16 0 0 0 0 windows 1601 0 0 0 0 47015096 0 0 0 0 0 6 2013-07-02 19:58:50 0 0 0 0 0 1412515749 63522 -1 13 S0 h1 0 0 0 0 0 0 0 0 0 NH 0 0 5972490271588207794 1369713899219085694 0 +8008688361303225116 1 Скачать онлайн играй! - Туризма - Крымский тренчкоты в интернет магазин Wildberries.ru (Работа - IRR.ru - модных словариумных 1 2013-07-02 04:12:01 2013-07-02 63217 1975817788 229 804133623150786791 1 44 7 http://bjdswaps.google-photo http://loveche.html?ctid 0 12409 20 10093 22 1749 867 23 15 3 700.224 0 0 15 D� 1 1 0 0 3056753 -1 0 0 0 1608 662 135 2013-07-02 14:19:55 4 1 16561 0 windows 1 0 0 0 5347008031302181363 766531830 0 0 0 0 0 5 2013-07-02 20:00:25 31 1 3 11237 31 1870660671 -1 -1 -1 E3 _i 0 0 0 0 0 0 0 0 0 NH 0 0 -2736470446903004689 7116991598850737408 0 +7436461208655480623 1 Компании Вино в хорошие 1 2013-07-02 04:32:24 2013-07-02 35534 1741555497 39 7082047337377160280 0 44 5 http://rsdn.ru/catalog/cifrovye-advertisement=little&category=22&input_bdsmpeople.ru/index,google.ru/news/39826 http://kalina?block/?inst_the_book.php?cPath=40_57470493958402/ 0 10634 20 0 0 1996 1781 37 15 7 700 0 0 22 D� 1 1 0 0 808950 5 0 0 0 1261 1017 433 2013-07-03 03:03:12 4 1 16561 0 windows-1251;charset 1601 1 0 0 6804199628189316872 626511463 0 0 0 1 0 5 2013-07-02 10:35:42 31 2 3 694 57 1448806868 -1 -1 -1 E3 _i 0 0 0 3 345 147 239 0 0 NH 0 0 8931346360692564721 1971436513446935197 0 +5564518777317455184 0 «set» в пробег аппах и обслуживатизиров 1 2013-07-02 04:44:29 2013-07-02 5822 1920787234 32 3712346975274085073 1 2 3 http://auto_gruppy/christikha/hotel=-1&trafkey=605&from=&power_name=Платья&produkty%2Furl.google.ru/index http://rmnt.ru/cars/passenger/hellardous/42/~37/?suggest&id=3869551753&custom=0&undefined/undefined/under=28036,5;362;108;16762643539 0 8563 21482 9822 18528 1638 1658 23 15 7 700 0 0 16 D� 1 1 0 0 207348 -1 0 0 0 1509 733 135 2013-07-02 15:33:12 4 1 15738 0 windows-1251;charset 1 0 0 0 8007561756096276896 1034507462 0 0 0 0 0 5 2013-07-02 18:03:56 0 0 0 0 0 2016848722 -1 -1 -1 S0 h1 0 0 0 0 0 0 0 0 0 NH 0 0 7820066807630413322 -3258566084785303139 0 +7381524648140977766 1 Ploshchad\' stolitsi zwy 110911923, Г официальная Прессы и Огонек 1 2013-07-02 05:01:46 2013-07-02 63217 1638850281 59 1564939829982760596 1 44 5 http://bjdleaksbrand=bpc bonprix%2F12.02&he=1024&location=pm;f=inbox;pmsg_1733/page.google http://loveplanet.ru/url?sa=t&rct 0 12409 20 10093 22 1996 1666 37 15 7 700 0 0 22 D� 1 1 0 0 2059788 -1 0 0 0 1261 1206 433 2013-07-02 18:04:38 0 0 0 0 windows 1 0 0 0 0 827020970 0 0 0 0 0 5 2013-07-03 02:53:56 0 0 0 0 0 2001459352 -1 -1 -1 S0 �\f 0 0 0 0 0 0 0 0 0 NH 0 0 1384301141639030267 9047048983006699504 0 +8614832219462424183 1 Модель для сумки - регеш (Россия) 1 2013-07-02 05:19:23 2013-07-02 3035 2022088895 38 2590751384199385434 1 2 88 http://smeshariki.ru/googleTBR%26ar_ntype=citykurortmag http://holodilnik.ru/GameMain.aspx?color=0&choos&source=web&cd 0 10271 158 13384 216 1917 879 37 15 7 700 0 0 1 D� 1 1 0 0 3991944 -1 0 0 0 746 464 322 2013-07-02 16:44:30 0 0 0 0 windows-1251;charset 1 0 0 0 7607749204513951316 427646581 0 0 0 0 0 5 2013-07-02 07:19:17 50 2 3 0 30 1146019198 -1 -1 -1 S0 �\f 0 0 0 0 0 0 0 0 0 NH 0 0 1157471009075867478 1000799766482180932 0 +7168314068394418899 1 по полиция +опытовой рецензии, 1 2013-07-02 05:22:40 2013-07-02 35534 -1420082055 11579 4822773326251181180 0 2 7 http:%2F%2Fsapozhki-advertime-2/#page.google/dodge http://saint-peters-total=меньше 100007&text=b.akhua_deckaya-look/time-2/#page=3&oprnd=6817922197946&ei=JtHTUYWRCqXA&bvm=bv.49784469,d.ZWU&cad=rjt&fu=0&type_id=172&msid=1&marka=88&text=krasnaia-moda 0 14550 952 8565 375 1304 978 37 15 4 700.224 2 7 13 D� 1 1 0 0 2675432 3 3 dave kino 2013 года в ростопримеча 0 0 1972 778 135 2013-07-02 05:05:07 4 1 16561 0 windows 1601 0 0 0 6494516778257365839 393719418 0 0 0 0 0 5 2013-07-03 00:28:10 31 2 2 14851 1 -1016483843 61823 -1 1 S0 �\f 0 0 0 0 0 0 0 0 0 NH 0 0 -4470345086215748575 -5322637665780806659 0 +8235569889353442646 1 1 2013-07-02 05:22:53 2013-07-02 35534 -1420082055 11579 4822773326251181180 0 2 7 http:%2F%2Fsapozhki-advertime-2/#page.google/dodge 0 0 0 8565 375 1304 978 37 15 4 700.224 2 7 13 D� 1 1 0 0 2675432 0 0 0 1 1972 778 135 2013-07-02 05:05:22 4 1 16561 0 windows 1601 0 0 1 6494516778257365839 393719418 0 0 0 1 0 5 2013-07-03 00:28:24 31 2 2 14851 1 -1016483843 61823 -1 2 S0 �\f 0 318 0 0 0 0 0 0 0 NH 0 0 -296158784638538920 -5322637665780806659 0 +SELECT SearchPhrase FROM hits WHERE SearchPhrase <> '' ORDER BY EventTime LIMIT 10; +симптомы регистратов +ночно китая женщины +galaxy s4 zoom фильм +фильм небольшой бизнеса североятно +авом констеть ребенка краево +расписание мультиварка для +скачать читалию в духовке +слон.руб., д. а.л. конфигурды по оргатства мультет +отдыха чем прокат +анапа оперевянные волшебную +SELECT SearchPhrase FROM hits WHERE SearchPhrase <> '' ORDER BY SearchPhrase LIMIT 10; + береж + за русский стил видео какой + завод тандалищные прода + заочное по земли в обрезни и метро + заочное сад цены нарощения музыка визу + зве + земные огурцы раб + золотой сайт samsung + прав + светы женске 2 сезон +SELECT SearchPhrase FROM hits WHERE SearchPhrase <> '' ORDER BY EventTime, SearchPhrase LIMIT 10; +galaxy s4 zoom фильм +ночно китая женщины +симптомы регистратов +фильм небольшой бизнеса североятно +авом констеть ребенка краево +анапа оперевянные волшебную +брита ганам котлы на шерлок +компьютерапии серия нарий +отдыха чем прокат +расписание мультиварка для +SELECT CounterID, AVG(length(URL)) AS l, COUNT(*) AS c FROM hits WHERE URL <> '' GROUP BY CounterID HAVING COUNT(*) > 100000 ORDER BY l DESC LIMIT 25; +233773 469.14923754578723 2938865 +245438 271.7841243964889 2510103 +122612 238.63801917567594 3574007 +234004 204.27746585100144 238660 +1634 197.83080416670535 323229 +786 186.7507135271472 120528 +114157 142.91444863406159 216408 +515 126.22595247333346 146907 +256004 125.36714011543154 858171 +95427 120.2657237661165 374306 +199550 109.81266990405194 7115413 +220992 105.85395075756044 494614 +196239 98.34849844624749 163797 +62 93.15621079726343 738150 +96948 92.74209592191733 396093 +188878 91.98110564811313 311998 +249603 91.87807188863495 120325 +3922 87.83657514674738 8527069 +191697 86.95676378104345 124664 +97467 84.2939822226288 131178 +186300 83.97100407321064 802561 +146891 77.77413321966806 605286 +38 76.43665636016307 507770 +230962 76.30301436565952 169223 +77639 75.38479530321585 253961 +SELECT REGEXP_REPLACE(Referer, '^https?://(?:www\.)?([^/]+)/.*$', '\1') AS k, AVG(length(Referer)) AS l, COUNT(*) AS c, MIN(Referer) FROM hits WHERE Referer <> '' GROUP BY k HAVING COUNT(*) > 100000 ORDER BY l DESC LIMIT 25; +svpressa.ru 307.8648835914462 242465 http://svpressa.ru/ +msuzie-showforumdisplay 263.31170358753184 183636 http://msuzie-showforumdisplay/63/~2/?name=&cost_neu%3D400%26retpath=default777TWCWkI9lalUwTXpJMU1q +saint-peters-total=меньше 80 242.51707971531314 200501 http://saint-peters-total=меньше 80/cash/station=search&input_age1=&int[2274/trashbox.ru/details&cad=rjt&fu=0&input_who1=2&input_who1=2&input_city-4400047.html?1=1&price_ot=&price_ot=&price=мень&clid=143431512&s_yers=0&model&desc=&name=1&markett.ru%2Frenazheltyj-95692465&text=поздравстраницу&clid=4405404/menu_29.html&ei=UIX1UZTFNJTI0ci8guSn3tW.pl?cmd=showthreadreplies=978-4121-469171&history47/11/?from=&district +domics 212.896025515211 326080 http://domics/825179.11931861234499792 +e96.ru 210.09327398091065 1018998 http://e96.ru/%3Ffrom]=&input_act[count_num=0&dff=arian-carrina1201517&cad=rjt&fu=0&input_state/apartments-sale/list.htm?size=30&input_with_photo-takovo-zuevo-shpilki.ru/real.nn.ru/yandex.ua/searchAuto=on&input_who1=2&input_online.ru/clck/51cbd&ll=&top=http://loveplane=42621/page9 +gadgets.irr.ru 131.9496418102524 349675 https://gadgets.irr.ru/2jmj7l5rSw0yVb +google.ru 109.23626239722454 2158346 http://google.ru/ +go.mail 108.63609607446642 8227493 http://go.mail/04/detskaia-moda-zhiensmed +msouz.ru 106.10166520305536 301765 http://msouz.ru/?ffshop +state=19945206 105.64370844384077 512409 http://state=19945206/foto-4/login%20NoTs3M&where=all&filmId=u8aGGqtWs3M&where=all&server=sc.cheloveplanet.ru/forum.little&categoriya/muzhskaya_istory.com/demii-malchik_148_4055074241537][to]=&input_activalry: A Love&where=all&text=купить florer&aktion/loansert перевозобности&site_id=197&text=добавь лазерногорский тайская полупая автомобильника&v=1414-resp_desyachnyeprague +loveplanet.ru 104.59863944103016 461134 http://loveplanet.ru/%3Faw_opel/page=2013 +bonprix.ru 104.41397458084346 1125057 http://bonprix.ru/ +novjob.ru 96.75331644732393 133049 http://novjob.ru/ +cn.ru 95.62988273417072 124674 http://cn.ru/GameMain.aspx#catalog/100523&tails.xml?market_pc.html?pid=9403&lr=47&msgid=36305f39386 +geomethiettai.ru 94.78441150587545 115906 https://geomethiettai.ru/GameMain.aspx?group=houses/list=266559j7077&num=7&prune_day=lastdiscussd59394303&price_ot=&priceup&page3/sankt-petushhiblock +kino 90.27209389436884 120135 http://kino/6/21/2/women.asp?whichpage4/#oversion=unreadm&uid +yaroslavens.ru 90.17111441069063 124595 http://yaroslavens.ru/main.aspx#catalog%2F1004-1100000147-otvet/actions/dislocal +mysw.info 89.68397108921269 984546 http://mysw.info/ +m.myloveplanet.ru 88.7305930950747 151544 http://m.myloveplanet.ru/ +povarenok.ru 83.96832422951294 144811 http://povarenok.ru/ +gorod 80.33040423379813 110728 http://gorod/%3Fauto.ria.ua%2Fjob +yandsearch 80.20030577309359 245934 http://www.yandsearch/rooms=1/page2 +myloveplanet.ru 80.08091732831745 110582 http://myloveplanet.ru/#associety/auto +tambov.irr.ru 77.86451772496336 315318 http://tambov.irr.ru/0/c1/tgFtaeLDK0yb01A7xvQF08sjCFqQxn51 +kurortmag.ru 75.74717737001089 155263 http://kurortmag.ru/ +SELECT SUM(ResolutionWidth), SUM(ResolutionWidth + 1), SUM(ResolutionWidth + 2), SUM(ResolutionWidth + 3), SUM(ResolutionWidth + 4), SUM(ResolutionWidth + 5), SUM(ResolutionWidth + 6), SUM(ResolutionWidth + 7), SUM(ResolutionWidth + 8), SUM(ResolutionWidth + 9), SUM(ResolutionWidth + 10), SUM(ResolutionWidth + 11), SUM(ResolutionWidth + 12), SUM(ResolutionWidth + 13), SUM(ResolutionWidth + 14), SUM(ResolutionWidth + 15), SUM(ResolutionWidth + 16), SUM(ResolutionWidth + 17), SUM(ResolutionWidth + 18), SUM(ResolutionWidth + 19), SUM(ResolutionWidth + 20), SUM(ResolutionWidth + 21), SUM(ResolutionWidth + 22), SUM(ResolutionWidth + 23), SUM(ResolutionWidth + 24), SUM(ResolutionWidth + 25), SUM(ResolutionWidth + 26), SUM(ResolutionWidth + 27), SUM(ResolutionWidth + 28), SUM(ResolutionWidth + 29), SUM(ResolutionWidth + 30), SUM(ResolutionWidth + 31), SUM(ResolutionWidth + 32), SUM(ResolutionWidth + 33), SUM(ResolutionWidth + 34), SUM(ResolutionWidth + 35), SUM(ResolutionWidth + 36), SUM(ResolutionWidth + 37), SUM(ResolutionWidth + 38), SUM(ResolutionWidth + 39), SUM(ResolutionWidth + 40), SUM(ResolutionWidth + 41), SUM(ResolutionWidth + 42), SUM(ResolutionWidth + 43), SUM(ResolutionWidth + 44), SUM(ResolutionWidth + 45), SUM(ResolutionWidth + 46), SUM(ResolutionWidth + 47), SUM(ResolutionWidth + 48), SUM(ResolutionWidth + 49), SUM(ResolutionWidth + 50), SUM(ResolutionWidth + 51), SUM(ResolutionWidth + 52), SUM(ResolutionWidth + 53), SUM(ResolutionWidth + 54), SUM(ResolutionWidth + 55), SUM(ResolutionWidth + 56), SUM(ResolutionWidth + 57), SUM(ResolutionWidth + 58), SUM(ResolutionWidth + 59), SUM(ResolutionWidth + 60), SUM(ResolutionWidth + 61), SUM(ResolutionWidth + 62), SUM(ResolutionWidth + 63), SUM(ResolutionWidth + 64), SUM(ResolutionWidth + 65), SUM(ResolutionWidth + 66), SUM(ResolutionWidth + 67), SUM(ResolutionWidth + 68), SUM(ResolutionWidth + 69), SUM(ResolutionWidth + 70), SUM(ResolutionWidth + 71), SUM(ResolutionWidth + 72), SUM(ResolutionWidth + 73), SUM(ResolutionWidth + 74), SUM(ResolutionWidth + 75), SUM(ResolutionWidth + 76), SUM(ResolutionWidth + 77), SUM(ResolutionWidth + 78), SUM(ResolutionWidth + 79), SUM(ResolutionWidth + 80), SUM(ResolutionWidth + 81), SUM(ResolutionWidth + 82), SUM(ResolutionWidth + 83), SUM(ResolutionWidth + 84), SUM(ResolutionWidth + 85), SUM(ResolutionWidth + 86), SUM(ResolutionWidth + 87), SUM(ResolutionWidth + 88), SUM(ResolutionWidth + 89) FROM hits; +151345005230 151445002727 151545000224 151644997721 151744995218 151844992715 151944990212 152044987709 152144985206 152244982703 152344980200 152444977697 152544975194 152644972691 152744970188 152844967685 152944965182 153044962679 153144960176 153244957673 153344955170 153444952667 153544950164 153644947661 153744945158 153844942655 153944940152 154044937649 154144935146 154244932643 154344930140 154444927637 154544925134 154644922631 154744920128 154844917625 154944915122 155044912619 155144910116 155244907613 155344905110 155444902607 155544900104 155644897601 155744895098 155844892595 155944890092 156044887589 156144885086 156244882583 156344880080 156444877577 156544875074 156644872571 156744870068 156844867565 156944865062 157044862559 157144860056 157244857553 157344855050 157444852547 157544850044 157644847541 157744845038 157844842535 157944840032 158044837529 158144835026 158244832523 158344830020 158444827517 158544825014 158644822511 158744820008 158844817505 158944815002 159044812499 159144809996 159244807493 159344804990 159444802487 159544799984 159644797481 159744794978 159844792475 159944789972 160044787469 160144784966 160244782463 +SELECT SearchEngineID, ClientIP, COUNT(*) AS c, SUM(IsRefresh), AVG(ResolutionWidth) FROM hits WHERE SearchPhrase <> '' GROUP BY SearchEngineID, ClientIP ORDER BY c DESC LIMIT 10; +2 1138507705 1633 35 1408.0122473974282 +2 1740861572 1331 28 1577.945905334335 +2 -807147100 1144 35 1553.1984265734266 +2 -497906719 1140 36 1543.4140350877192 +2 -1945757555 1105 30 1557.387330316742 +2 -1870623097 1102 31 1555.6588021778584 +2 -631062503 1083 31 1581.8171745152354 +2 -465813166 1082 30 1541.253234750462 +2 -1743596151 1080 24 1559.8092592592593 +2 -1125673878 1058 22 1587 +SELECT WatchID, ClientIP, COUNT(*) AS c, SUM(IsRefresh), AVG(ResolutionWidth) FROM hits WHERE SearchPhrase <> '' GROUP BY WatchID, ClientIP ORDER BY c DESC LIMIT 10; +6170924179692870413 -643591159 1 0 1996 +5769570387413648826 1676003992 1 0 1368 +6667503745146437762 1281437876 1 0 1368 +4641624936791036586 1545793891 1 0 2038 +8008431149359128615 1493928711 1 0 1368 +5714411852894712355 1599996846 1 0 1638 +5305498592897745178 1964715655 1 0 1087 +5364115572003536419 2116081711 1 1 1750 +7170981634253019948 -1927756496 1 1 508 +5406601857928252255 1991467764 1 0 1750 +SELECT WatchID, ClientIP, COUNT(*) AS c, SUM(IsRefresh), AVG(ResolutionWidth) FROM hits GROUP BY WatchID, ClientIP ORDER BY c DESC LIMIT 10; +8566928176839891583 -1402644643 2 0 1368 +7904046282518428963 1509330109 2 0 1368 +7224410078130478461 -776509581 2 0 1368 +6655575552203051303 1611957945 2 0 1638 +8035555071048609389 806773887 1 0 1750 +5761361738312310429 2040139672 1 0 1368 +4714673509151820320 858247075 1 1 1638 +6022473066210512891 -2017856257 1 0 1589 +8746749439337282130 1100326304 1 0 1996 +7952740642786414667 -1786510413 1 0 1917 +SELECT URL, COUNT(*) AS c FROM hits GROUP BY URL ORDER BY c DESC LIMIT 10; +http://liver.ru/belgorod/page/1006.jки/доп_приборы 3288173 +http://kinopoisk.ru 1625250 +http://bdsm_po_yers=0&with_video 791465 +http://video.yandex 582400 +http://smeshariki.ru/region 514984 +http://auto_fiat_dlya-bluzki%2F8536.30.18&he=900&with 507995 +http://liver.ru/place_rukodel=365115eb7bbb90 359893 +http://kinopoisk.ru/vladimir.irr.ru 354690 +http://video.yandex.ru/search/?jenre=50&s_yers 318979 +http://tienskaia-moda 289355 +SELECT 1, URL, COUNT(*) AS c FROM hits GROUP BY 1, URL ORDER BY c DESC LIMIT 10; +1 http://liver.ru/belgorod/page/1006.jки/доп_приборы 3288173 +1 http://kinopoisk.ru 1625250 +1 http://bdsm_po_yers=0&with_video 791465 +1 http://video.yandex 582400 +1 http://smeshariki.ru/region 514984 +1 http://auto_fiat_dlya-bluzki%2F8536.30.18&he=900&with 507995 +1 http://liver.ru/place_rukodel=365115eb7bbb90 359893 +1 http://kinopoisk.ru/vladimir.irr.ru 354690 +1 http://video.yandex.ru/search/?jenre=50&s_yers 318979 +1 http://tienskaia-moda 289355 +SELECT ClientIP, ClientIP - 1, ClientIP - 2, ClientIP - 3, COUNT(*) AS c FROM hits GROUP BY ClientIP, ClientIP - 1, ClientIP - 2, ClientIP - 3 ORDER BY c DESC LIMIT 10; +-39921974 -39921975 -39921976 -39921977 47008 +-1698104457 -1698104458 -1698104459 -1698104460 29121 +-1175819552 -1175819553 -1175819554 -1175819555 25333 +1696638182 1696638181 1696638180 1696638179 20220 +1138507705 1138507704 1138507703 1138507702 15778 +-927025522 -927025523 -927025524 -927025525 12768 +-1262139876 -1262139877 -1262139878 -1262139879 11348 +1740861572 1740861571 1740861570 1740861569 11314 +-807147100 -807147101 -807147102 -807147103 9880 +-631062503 -631062504 -631062505 -631062506 9718 +SELECT URL, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND DontCounthits = 0 AND IsRefresh = 0 AND URL <> '' GROUP BY URL ORDER BY PageViews DESC LIMIT 10; diff --git a/tests/queries/0_stateless/03214_hits_parquet.sql b/tests/queries/0_stateless/03214_hits_parquet.sql new file mode 100644 index 00000000000..18eb00007a7 --- /dev/null +++ b/tests/queries/0_stateless/03214_hits_parquet.sql @@ -0,0 +1,156 @@ +drop table if exists hits; +CREATE TABLE hits +( + WatchID BIGINT NOT NULL, + JavaEnable SMALLINT NOT NULL, + Title TEXT NOT NULL, + GoodEvent SMALLINT NOT NULL, + EventTime DATETIME64 NOT NULL, + EventDate Date32 NOT NULL, + CounterID INTEGER NOT NULL, + ClientIP INTEGER NOT NULL, + RegionID INTEGER NOT NULL, + UserID BIGINT NOT NULL, + CounterClass SMALLINT NOT NULL, + OS SMALLINT NOT NULL, + UserAgent SMALLINT NOT NULL, + URL TEXT NOT NULL, + Referer TEXT NOT NULL, + IsRefresh SMALLINT NOT NULL, + RefererCategoryID SMALLINT NOT NULL, + RefererRegionID INTEGER NOT NULL, + URLCategoryID SMALLINT NOT NULL, + URLRegionID INTEGER NOT NULL, + ResolutionWidth SMALLINT NOT NULL, + ResolutionHeight SMALLINT NOT NULL, + ResolutionDepth SMALLINT NOT NULL, + FlashMajor SMALLINT NOT NULL, + FlashMinor SMALLINT NOT NULL, + FlashMinor2 TEXT NOT NULL, + NetMajor SMALLINT NOT NULL, + NetMinor SMALLINT NOT NULL, + UserAgentMajor SMALLINT NOT NULL, + UserAgentMinor VARCHAR(255) NOT NULL, + CookieEnable SMALLINT NOT NULL, + JavascriptEnable SMALLINT NOT NULL, + IsMobile SMALLINT NOT NULL, + MobilePhone SMALLINT NOT NULL, + MobilePhoneModel TEXT NOT NULL, + Params TEXT NOT NULL, + IPNetworkID INTEGER NOT NULL, + TraficSourceID SMALLINT NOT NULL, + SearchEngineID SMALLINT NOT NULL, + SearchPhrase TEXT NOT NULL, + AdvEngineID SMALLINT NOT NULL, + IsArtifical SMALLINT NOT NULL, + WindowClientWidth SMALLINT NOT NULL, + WindowClientHeight SMALLINT NOT NULL, + ClientTimeZone SMALLINT NOT NULL, + ClientEventTime DATETIME64 NOT NULL, + SilverlightVersion1 SMALLINT NOT NULL, + SilverlightVersion2 SMALLINT NOT NULL, + SilverlightVersion3 INTEGER NOT NULL, + SilverlightVersion4 SMALLINT NOT NULL, + PageCharset TEXT NOT NULL, + CodeVersion INTEGER NOT NULL, + IsLink SMALLINT NOT NULL, + IsDownload SMALLINT NOT NULL, + IsNotBounce SMALLINT NOT NULL, + FUniqID BIGINT NOT NULL, + OriginalURL TEXT NOT NULL, + HID INTEGER NOT NULL, + IsOldCounter SMALLINT NOT NULL, + IsEvent SMALLINT NOT NULL, + IsParameter SMALLINT NOT NULL, + DontCountHits SMALLINT NOT NULL, + WithHash SMALLINT NOT NULL, + HitColor CHAR NOT NULL, + LocalEventTime DATETIME64 NOT NULL, + Age SMALLINT NOT NULL, + Sex SMALLINT NOT NULL, + Income SMALLINT NOT NULL, + Interests SMALLINT NOT NULL, + Robotness SMALLINT NOT NULL, + RemoteIP INTEGER NOT NULL, + WindowName INTEGER NOT NULL, + OpenerName INTEGER NOT NULL, + HistoryLength SMALLINT NOT NULL, + BrowserLanguage TEXT NOT NULL, + BrowserCountry TEXT NOT NULL, + SocialNetwork TEXT NOT NULL, + SocialAction TEXT NOT NULL, + HTTPError SMALLINT NOT NULL, + SendTiming INTEGER NOT NULL, + DNSTiming INTEGER NOT NULL, + ConnectTiming INTEGER NOT NULL, + ResponseStartTiming INTEGER NOT NULL, + ResponseEndTiming INTEGER NOT NULL, + FetchTiming INTEGER NOT NULL, + SocialSourceNetworkID SMALLINT NOT NULL, + SocialSourcePage TEXT NOT NULL, + ParamPrice BIGINT NOT NULL, + ParamOrderID TEXT NOT NULL, + ParamCurrency TEXT NOT NULL, + ParamCurrencyID SMALLINT NOT NULL, + OpenstatServiceName TEXT NOT NULL, + OpenstatCampaignID TEXT NOT NULL, + OpenstatAdID TEXT NOT NULL, + OpenstatSourceID TEXT NOT NULL, + UTMSource TEXT NOT NULL, + UTMMedium TEXT NOT NULL, + UTMCampaign TEXT NOT NULL, + UTMContent TEXT NOT NULL, + UTMTerm TEXT NOT NULL, + FromTag TEXT NOT NULL, + HasGCLID SMALLINT NOT NULL, + RefererHash BIGINT NOT NULL, + URLHash BIGINT NOT NULL, + CLID INTEGER NOT NULL +) +ENGINE = File('Parquet', 'hits.parquet') +SETTINGS input_format_parquet_use_native_reader = true; + +-- { echoOn } +SELECT COUNT(*) FROM hits; +SELECT COUNT(*) FROM hits WHERE AdvEngineID <> 0; +SELECT SUM(AdvEngineID), COUNT(*), AVG(ResolutionWidth) FROM hits; +SELECT AVG(UserID) FROM hits; +SELECT COUNT(DISTINCT UserID) FROM hits; +SELECT COUNT(DISTINCT SearchPhrase) FROM hits; +SELECT MIN(EventDate), MAX(EventDate) FROM hits; +SELECT AdvEngineID, COUNT(*) FROM hits WHERE AdvEngineID <> 0 GROUP BY AdvEngineID ORDER BY COUNT(*) DESC; +SELECT RegionID, COUNT(DISTINCT UserID) AS u FROM hits GROUP BY RegionID ORDER BY u DESC LIMIT 10; +SELECT RegionID, SUM(AdvEngineID), COUNT(*) AS c, AVG(ResolutionWidth), COUNT(DISTINCT UserID) FROM hits GROUP BY RegionID ORDER BY c DESC LIMIT 10; +SELECT MobilePhoneModel, COUNT(DISTINCT UserID) AS u FROM hits WHERE MobilePhoneModel <> '' GROUP BY MobilePhoneModel ORDER BY u DESC LIMIT 10; +SELECT MobilePhone, MobilePhoneModel, COUNT(DISTINCT UserID) AS u FROM hits WHERE MobilePhoneModel <> '' GROUP BY MobilePhone, MobilePhoneModel ORDER BY u DESC LIMIT 10; +SELECT SearchPhrase, COUNT(*) AS c FROM hits WHERE SearchPhrase <> '' GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10; +SELECT SearchPhrase, COUNT(DISTINCT UserID) AS u FROM hits WHERE SearchPhrase <> '' GROUP BY SearchPhrase ORDER BY u DESC LIMIT 10; +SELECT SearchEngineID, SearchPhrase, COUNT(*) AS c FROM hits WHERE SearchPhrase <> '' GROUP BY SearchEngineID, SearchPhrase ORDER BY c DESC LIMIT 10; +SELECT UserID, COUNT(*) FROM hits GROUP BY UserID ORDER BY COUNT(*) DESC LIMIT 10; +SELECT UserID, SearchPhrase, COUNT(*) FROM hits GROUP BY UserID, SearchPhrase ORDER BY COUNT(*) DESC LIMIT 10; +SELECT UserID, SearchPhrase, COUNT(*) FROM hits GROUP BY UserID, SearchPhrase LIMIT 10; +SELECT UserID, extract(minute FROM EventTime) AS m, SearchPhrase, COUNT(*) FROM hits GROUP BY UserID, m, SearchPhrase ORDER BY COUNT(*) DESC LIMIT 10; +SELECT UserID FROM hits WHERE UserID = 435090932899640449; +SELECT COUNT(*) FROM hits WHERE URL LIKE '%google%'; +SELECT SearchPhrase, MIN(URL), COUNT(*) AS c FROM hits WHERE URL LIKE '%google%' AND SearchPhrase <> '' GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10; +SELECT SearchPhrase, MIN(URL), MIN(Title), COUNT(*) AS c, COUNT(DISTINCT UserID) FROM hits WHERE Title LIKE '%Google%' AND URL NOT LIKE '%.google.%' AND SearchPhrase <> '' GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10; +SELECT * FROM hits WHERE URL LIKE '%google%' ORDER BY EventTime LIMIT 10; +SELECT SearchPhrase FROM hits WHERE SearchPhrase <> '' ORDER BY EventTime LIMIT 10; +SELECT SearchPhrase FROM hits WHERE SearchPhrase <> '' ORDER BY SearchPhrase LIMIT 10; +SELECT SearchPhrase FROM hits WHERE SearchPhrase <> '' ORDER BY EventTime, SearchPhrase LIMIT 10; +SELECT CounterID, AVG(length(URL)) AS l, COUNT(*) AS c FROM hits WHERE URL <> '' GROUP BY CounterID HAVING COUNT(*) > 100000 ORDER BY l DESC LIMIT 25; +SELECT REGEXP_REPLACE(Referer, '^https?://(?:www\.)?([^/]+)/.*$', '\1') AS k, AVG(length(Referer)) AS l, COUNT(*) AS c, MIN(Referer) FROM hits WHERE Referer <> '' GROUP BY k HAVING COUNT(*) > 100000 ORDER BY l DESC LIMIT 25; +SELECT SUM(ResolutionWidth), SUM(ResolutionWidth + 1), SUM(ResolutionWidth + 2), SUM(ResolutionWidth + 3), SUM(ResolutionWidth + 4), SUM(ResolutionWidth + 5), SUM(ResolutionWidth + 6), SUM(ResolutionWidth + 7), SUM(ResolutionWidth + 8), SUM(ResolutionWidth + 9), SUM(ResolutionWidth + 10), SUM(ResolutionWidth + 11), SUM(ResolutionWidth + 12), SUM(ResolutionWidth + 13), SUM(ResolutionWidth + 14), SUM(ResolutionWidth + 15), SUM(ResolutionWidth + 16), SUM(ResolutionWidth + 17), SUM(ResolutionWidth + 18), SUM(ResolutionWidth + 19), SUM(ResolutionWidth + 20), SUM(ResolutionWidth + 21), SUM(ResolutionWidth + 22), SUM(ResolutionWidth + 23), SUM(ResolutionWidth + 24), SUM(ResolutionWidth + 25), SUM(ResolutionWidth + 26), SUM(ResolutionWidth + 27), SUM(ResolutionWidth + 28), SUM(ResolutionWidth + 29), SUM(ResolutionWidth + 30), SUM(ResolutionWidth + 31), SUM(ResolutionWidth + 32), SUM(ResolutionWidth + 33), SUM(ResolutionWidth + 34), SUM(ResolutionWidth + 35), SUM(ResolutionWidth + 36), SUM(ResolutionWidth + 37), SUM(ResolutionWidth + 38), SUM(ResolutionWidth + 39), SUM(ResolutionWidth + 40), SUM(ResolutionWidth + 41), SUM(ResolutionWidth + 42), SUM(ResolutionWidth + 43), SUM(ResolutionWidth + 44), SUM(ResolutionWidth + 45), SUM(ResolutionWidth + 46), SUM(ResolutionWidth + 47), SUM(ResolutionWidth + 48), SUM(ResolutionWidth + 49), SUM(ResolutionWidth + 50), SUM(ResolutionWidth + 51), SUM(ResolutionWidth + 52), SUM(ResolutionWidth + 53), SUM(ResolutionWidth + 54), SUM(ResolutionWidth + 55), SUM(ResolutionWidth + 56), SUM(ResolutionWidth + 57), SUM(ResolutionWidth + 58), SUM(ResolutionWidth + 59), SUM(ResolutionWidth + 60), SUM(ResolutionWidth + 61), SUM(ResolutionWidth + 62), SUM(ResolutionWidth + 63), SUM(ResolutionWidth + 64), SUM(ResolutionWidth + 65), SUM(ResolutionWidth + 66), SUM(ResolutionWidth + 67), SUM(ResolutionWidth + 68), SUM(ResolutionWidth + 69), SUM(ResolutionWidth + 70), SUM(ResolutionWidth + 71), SUM(ResolutionWidth + 72), SUM(ResolutionWidth + 73), SUM(ResolutionWidth + 74), SUM(ResolutionWidth + 75), SUM(ResolutionWidth + 76), SUM(ResolutionWidth + 77), SUM(ResolutionWidth + 78), SUM(ResolutionWidth + 79), SUM(ResolutionWidth + 80), SUM(ResolutionWidth + 81), SUM(ResolutionWidth + 82), SUM(ResolutionWidth + 83), SUM(ResolutionWidth + 84), SUM(ResolutionWidth + 85), SUM(ResolutionWidth + 86), SUM(ResolutionWidth + 87), SUM(ResolutionWidth + 88), SUM(ResolutionWidth + 89) FROM hits; +SELECT SearchEngineID, ClientIP, COUNT(*) AS c, SUM(IsRefresh), AVG(ResolutionWidth) FROM hits WHERE SearchPhrase <> '' GROUP BY SearchEngineID, ClientIP ORDER BY c DESC LIMIT 10; +SELECT WatchID, ClientIP, COUNT(*) AS c, SUM(IsRefresh), AVG(ResolutionWidth) FROM hits WHERE SearchPhrase <> '' GROUP BY WatchID, ClientIP ORDER BY c DESC LIMIT 10; +SELECT WatchID, ClientIP, COUNT(*) AS c, SUM(IsRefresh), AVG(ResolutionWidth) FROM hits GROUP BY WatchID, ClientIP ORDER BY c DESC LIMIT 10; +SELECT URL, COUNT(*) AS c FROM hits GROUP BY URL ORDER BY c DESC LIMIT 10; +SELECT 1, URL, COUNT(*) AS c FROM hits GROUP BY 1, URL ORDER BY c DESC LIMIT 10; +SELECT ClientIP, ClientIP - 1, ClientIP - 2, ClientIP - 3, COUNT(*) AS c FROM hits GROUP BY ClientIP, ClientIP - 1, ClientIP - 2, ClientIP - 3 ORDER BY c DESC LIMIT 10; +SELECT URL, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND DontCounthits = 0 AND IsRefresh = 0 AND URL <> '' GROUP BY URL ORDER BY PageViews DESC LIMIT 10; +SELECT Title, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND DontCounthits = 0 AND IsRefresh = 0 AND Title <> '' GROUP BY Title ORDER BY PageViews DESC LIMIT 10; +SELECT URL, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND IsRefresh = 0 AND IsLink <> 0 AND IsDownload = 0 GROUP BY URL ORDER BY PageViews DESC LIMIT 10 OFFSET 1000; +SELECT TraficSourceID, SearchEngineID, AdvEngineID, CASE WHEN (SearchEngineID = 0 AND AdvEngineID = 0) THEN Referer ELSE '' END AS Src, URL AS Dst, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND IsRefresh = 0 GROUP BY TraficSourceID, SearchEngineID, AdvEngineID, Src, Dst ORDER BY PageViews DESC LIMIT 10 OFFSET 1000; +SELECT URLHash, EventDate, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND IsRefresh = 0 AND TraficSourceID IN (-1, 6) AND RefererHash = 3594120000172545465 GROUP BY URLHash, EventDate ORDER BY PageViews DESC LIMIT 10 OFFSET 100; +SELECT WindowClientWidth, WindowClientHeight, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND IsRefresh = 0 AND DontCounthits = 0 AND URLHash = 2868770270353813622 GROUP BY WindowClientWidth, WindowClientHeight ORDER BY PageViews DESC LIMIT 10 OFFSET 10000; +SELECT DATE_TRUNC('minute', EventTime) AS M, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-14' AND EventDate <= '2013-07-15' AND IsRefresh = 0 AND DontCounthits = 0 GROUP BY DATE_TRUNC('minute', EventTime) ORDER BY DATE_TRUNC('minute', EventTime) LIMIT 10 OFFSET 1000; \ No newline at end of file From 93a1a98f021dbf5971d3e0338d4a3332087e8ffb Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Fri, 6 Sep 2024 23:57:58 +0800 Subject: [PATCH 21/34] fix hits bug --- .../Formats/Impl/Parquet/ColumnFilter.cpp | 8 +- .../Impl/Parquet/ColumnFilterHelper.cpp | 2 +- .../Parquet/ParquetColumnReaderFactory.cpp | 2 +- .../Impl/Parquet/SelectiveColumnReader.cpp | 7 +- .../tests/gtest_native_parquet_reader.cpp | 38 ++++++ .../0_stateless/03214_hits_parquet.reference | 120 ++++++++++++++---- .../0_stateless/03214_hits_parquet.sql | 14 +- 7 files changed, 156 insertions(+), 35 deletions(-) diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp index 11c6cce7266..7b6f9e0b419 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp @@ -321,26 +321,30 @@ OptionalFilter BigIntRangeFilter::create(const ActionsDAG::Node & node) return std::nullopt; auto constant_nodes = getConstantNode(node); auto func_name = node.function_base->getName(); - Int64 value = constant_nodes.front()->column->getInt(0); ColumnFilterPtr filter = nullptr; if (func_name == "equals") { + Int64 value = constant_nodes.front()->column->getInt(0); filter = std::make_shared(value, value, false); } else if (func_name == "less") { + Int64 value = constant_nodes.front()->column->getInt(0); filter = std::make_shared(std::numeric_limits::min(), value - 1, false); } else if (func_name == "greater") { + Int64 value = constant_nodes.front()->column->getInt(0); filter = std::make_shared(value + 1, std::numeric_limits::max(), false); } else if (func_name == "lessOrEquals") { + Int64 value = constant_nodes.front()->column->getInt(0); filter = std::make_shared(std::numeric_limits::min(), value, true); } else if (func_name == "greaterOrEquals") { + Int64 value = constant_nodes.front()->column->getInt(0); filter = std::make_shared(value, std::numeric_limits::max(), true); } if (filter) @@ -549,10 +553,10 @@ OptionalFilter NegatedBigIntRangeFilter::create(const ActionsDAG::Node & node) return std::nullopt; auto constant_nodes = getConstantNode(node); auto func_name = node.function_base->getName(); - Int64 value = constant_nodes.front()->column->getInt(0); ColumnFilterPtr filter = nullptr; if (func_name == "notEquals") { + Int64 value = constant_nodes.front()->column->getInt(0); filter = std::make_shared(value, value, false); } if (filter) diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.cpp index 867189bd39f..08209eb93ac 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.cpp +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.cpp @@ -3,7 +3,7 @@ namespace DB { -ColumnFilterCreators ColumnFilterHelper::creators = {BigIntRangeFilter::create, createFloatRangeFilter, ByteValuesFilter::create, NegatedBigIntRangeFilter::create}; +ColumnFilterCreators ColumnFilterHelper::creators = {BigIntRangeFilter::create, NegatedBigIntRangeFilter::create, createFloatRangeFilter, ByteValuesFilter::create, NegatedByteValuesFilter::create}; void pushFilterToParquetReader(const ActionsDAG& filter_expression, ParquetReader & reader) { if (filter_expression.getOutputs().empty()) return ; diff --git a/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp b/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp index c6372c7e6a1..a090eb9903c 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp +++ b/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp @@ -63,7 +63,7 @@ SelectiveColumnReaderPtr createColumnReader(getScaleFromLogicalTimestamp(tm_type.time_unit())); } else - type_datetime64 = std::make_shared(0); + type_datetime64 = std::make_shared(3); return std::make_shared>( std::move(page_reader), scan_spec, type_datetime64); } diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index b0cbbc97803..7e12d1e4b61 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -185,9 +185,10 @@ static void decodeFixedValueInternal(PaddedPODArray & data, const S* start, c data.insert_assume_reserved(start, start + rows_to_read); else { - data.resize(rows_to_read); + auto old_size = data.size(); + data.resize(old_size + rows_to_read); for (size_t i = 0; i < rows_to_read; i++) - data[i] = static_cast(start[i]); + data[old_size + i] = static_cast(start[i]); } } else @@ -540,7 +541,9 @@ void NumberDictionaryReader::read(MutableColumnPtr & c size_t count = idx_decoder.GetBatchWithDict(dict.data() , static_cast(dict.size()), data.data() + old_size, static_cast(rows_to_read)); if (count != rows_to_read) throw DB::Exception(ErrorCodes::LOGICAL_ERROR, "read full idx batch failed. read {} rows, expect {}", count, rows_to_read); + } + batch_buffer.resize(0); state.remain_rows -= rows_to_read; } diff --git a/src/Processors/tests/gtest_native_parquet_reader.cpp b/src/Processors/tests/gtest_native_parquet_reader.cpp index 7b731d7e2d6..161964a609a 100644 --- a/src/Processors/tests/gtest_native_parquet_reader.cpp +++ b/src/Processors/tests/gtest_native_parquet_reader.cpp @@ -556,6 +556,44 @@ TEST(TestColumnFilterHepler, TestGatherDictNumberData) testGatherDictInt(); } +template +static void testDecodePlainData(size_t numbers, size_t exist_nums) +{ + PaddedPODArray src; + for (size_t i = 0; i < numbers; ++i) + { + src.push_back(std::rand() % 10000); + } + PaddedPODArray dst; + for (size_t i = 0; i < exist_nums; ++i) + { + dst.push_back(std::rand() % 10000); + } + dst.reserve(exist_nums + src.size()); + size_t size = src.size(); + const auto * buffer = reinterpret_cast(src.data()); + PlainDecoder decoder(buffer, size); + OptionalRowSet row_set = std::nullopt; + decoder.decodeFixedValue(dst, row_set, size); + ASSERT_EQ(dst.size(), exist_nums + src.size()); + for (size_t i = 0; i < src.size(); ++i) + { + ASSERT_EQ(src[i], dst[exist_nums+i]); + } +} + +TEST(TestPlainDecoder, testDecodeNoFilter) +{ + testDecodePlainData(1000, 100); + testDecodePlainData(1000, 0); + testDecodePlainData(1000, 100); + testDecodePlainData(1000, 0); + testDecodePlainData(1000, 100); + testDecodePlainData(1000, 0); + testDecodePlainData(1000, 100); + testDecodePlainData(1000, 0); +} + TEST(TestRowSet, TestRowSet) { RowSet rowSet(10000); diff --git a/tests/queries/0_stateless/03214_hits_parquet.reference b/tests/queries/0_stateless/03214_hits_parquet.reference index 02ac3aeedd9..a2631e908ff 100644 --- a/tests/queries/0_stateless/03214_hits_parquet.reference +++ b/tests/queries/0_stateless/03214_hits_parquet.reference @@ -132,16 +132,16 @@ SELECT UserID, SearchPhrase, COUNT(*) FROM hits GROUP BY UserID, SearchPhrase OR 835157184735512989 5209 770542365400669095 4906 SELECT UserID, SearchPhrase, COUNT(*) FROM hits GROUP BY UserID, SearchPhrase LIMIT 10; -4763181406542677 эластный олего город 3 кемеро чечневый полись книги 1 -3762749079714784842 кино-технологде есть 1 -5742717625414611048 8 -1232250446672773 10 -2934221607904195718 2 -9022295124610564659 шарарают в пол 1 -4321431981934412610 2 -567025996552890219 3 -1584008930337394931 1 -2162266567166640451 1 +6523812552377900839 препашкирии графия ввкладос отверить 1 +1729073966700156494 jettale disc.ru/player на как работан амелирный перево+и+батторговые серия ип 1 +1568297073130086138 туарегистратор тень 1 +1573165566505549544 1 +657358816649420519 1 +7990126324958832671 универ кости дар ул 1 +1257246503627027855 2 +1743367979318486215 1 +7798118252278892836 2 +842530953704750764 2 SELECT UserID, extract(minute FROM EventTime) AS m, SearchPhrase, COUNT(*) FROM hits GROUP BY UserID, m, SearchPhrase ORDER BY COUNT(*) DESC LIMIT 10; 1313338681122956954 31 589 1313338681122956954 28 578 @@ -169,8 +169,8 @@ SELECT SearchPhrase, MIN(URL), COUNT(*) AS c FROM hits WHERE URL LIKE '%google%' прокур гипоаллеры http://smeshariki.ru/googleTBR%26ad 11 камедицинск автомобильних условодки на в крем http://video.yandex.php?com=google.ru/arts/searchAutoSearch 9 универ 11.6/1366x768/4096mb ddressary of thing http://smeshariki.ru/index.ua/syllanet.ru/business/hotels.turizm.ru/igooglead%26ar_sliceid%3D1216629/0/&&puid2=15&lo=http 8 -вспомню о названы монстэр http://tienskaia-moda-zhienskaia-obl.irr.ru/ch/google-c-38208 7 купить трудовані резюме мертный дина кабинский лежит заднее устан http://video.yandex.php?com=google.ru/arts/searchAutoSearch 7 +вспомню о названы монстэр http://tienskaia-moda-zhienskaia-obl.irr.ru/ch/google-c-38208 7 SELECT SearchPhrase, MIN(URL), MIN(Title), COUNT(*) AS c, COUNT(DISTINCT UserID) FROM hits WHERE Title LIKE '%Google%' AND URL NOT LIKE '%.google.%' AND SearchPhrase <> '' GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10; винки медведь смотреть фильмы 2013 смотреть http://smeshariki.ru/a-folder-4/#page-3.2.1; WOW64; Edition=1&input_action=2011/page_type=profiles/88436/currency видеорегионалу Google 801 600 секретарь оверка все серии порт http://kinopoisk.ru/a-albums_scroll_to_auto_id=227&option/vacancies/liver.ru/cgi-bin/click.cgi%3Fsid%3D158197%26ad @дневники Google Player 1.2.5 л, 214 182 @@ -195,15 +195,15 @@ SELECT * FROM hits WHERE URL LIKE '%google%' ORDER BY EventTime LIMIT 10; 8235569889353442646 1 1 2013-07-02 05:22:53 2013-07-02 35534 -1420082055 11579 4822773326251181180 0 2 7 http:%2F%2Fsapozhki-advertime-2/#page.google/dodge 0 0 0 8565 375 1304 978 37 15 4 700.224 2 7 13 D� 1 1 0 0 2675432 0 0 0 1 1972 778 135 2013-07-02 05:05:22 4 1 16561 0 windows 1601 0 0 1 6494516778257365839 393719418 0 0 0 1 0 5 2013-07-03 00:28:24 31 2 2 14851 1 -1016483843 61823 -1 2 S0 �\f 0 318 0 0 0 0 0 0 0 NH 0 0 -296158784638538920 -5322637665780806659 0 SELECT SearchPhrase FROM hits WHERE SearchPhrase <> '' ORDER BY EventTime LIMIT 10; симптомы регистратов -ночно китая женщины galaxy s4 zoom фильм +ночно китая женщины фильм небольшой бизнеса североятно -авом констеть ребенка краево -расписание мультиварка для -скачать читалию в духовке -слон.руб., д. а.л. конфигурды по оргатства мультет -отдыха чем прокат +брита ганам котлы на шерлок анапа оперевянные волшебную +слон.руб., д. а.л. конфигурды по оргатства мультет +расписание мультиварка для +отдыха чем прокат +авом констеть ребенка краево SELECT SearchPhrase FROM hits WHERE SearchPhrase <> '' ORDER BY SearchPhrase LIMIT 10; береж за русский стил видео какой @@ -290,7 +290,7 @@ SELECT SearchEngineID, ClientIP, COUNT(*) AS c, SUM(IsRefresh), AVG(ResolutionWi 2 -631062503 1083 31 1581.8171745152354 2 -465813166 1082 30 1541.253234750462 2 -1743596151 1080 24 1559.8092592592593 -2 -1125673878 1058 22 1587 +2 -265917476 1058 32 1556.2003780718337 SELECT WatchID, ClientIP, COUNT(*) AS c, SUM(IsRefresh), AVG(ResolutionWidth) FROM hits WHERE SearchPhrase <> '' GROUP BY WatchID, ClientIP ORDER BY c DESC LIMIT 10; 6170924179692870413 -643591159 1 0 1996 5769570387413648826 1676003992 1 0 1368 @@ -300,12 +300,12 @@ SELECT WatchID, ClientIP, COUNT(*) AS c, SUM(IsRefresh), AVG(ResolutionWidth) FR 5714411852894712355 1599996846 1 0 1638 5305498592897745178 1964715655 1 0 1087 5364115572003536419 2116081711 1 1 1750 -7170981634253019948 -1927756496 1 1 508 +6157965042570459491 1601338712 1 0 1087 5406601857928252255 1991467764 1 0 1750 SELECT WatchID, ClientIP, COUNT(*) AS c, SUM(IsRefresh), AVG(ResolutionWidth) FROM hits GROUP BY WatchID, ClientIP ORDER BY c DESC LIMIT 10; -8566928176839891583 -1402644643 2 0 1368 -7904046282518428963 1509330109 2 0 1368 7224410078130478461 -776509581 2 0 1368 +7904046282518428963 1509330109 2 0 1368 +8566928176839891583 -1402644643 2 0 1368 6655575552203051303 1611957945 2 0 1638 8035555071048609389 806773887 1 0 1750 5761361738312310429 2040139672 1 0 1368 @@ -346,4 +346,80 @@ SELECT ClientIP, ClientIP - 1, ClientIP - 2, ClientIP - 3, COUNT(*) AS c FROM hi 1740861572 1740861571 1740861570 1740861569 11314 -807147100 -807147101 -807147102 -807147103 9880 -631062503 -631062504 -631062505 -631062506 9718 -SELECT URL, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND DontCounthits = 0 AND IsRefresh = 0 AND URL <> '' GROUP BY URL ORDER BY PageViews DESC LIMIT 10; +SELECT URL, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND `DontCountHits` = 0 AND IsRefresh = 0 AND URL <> '' GROUP BY URL ORDER BY PageViews DESC LIMIT 10; +http://irr.ru/index.php?showalbum/login-leniya7777294,938303130 102341 +http://komme%2F27.0.1453.116 51218 +http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0 18315 +http://irr.ru/index.php?showalbum/login-kapustic/product_name 16461 +http://irr.ru/index.php 12577 +http://irr.ru/index.php?showalbum/login 10880 +http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0; 7627 +http://irr.ru/index.php?showalbum/login-kupalnik 4369 +http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params 4058 +http://komme%2F27.0.1453.116 Safari 3021 +SELECT Title, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND `DontCountHits` = 0 AND IsRefresh = 0 AND Title <> '' GROUP BY Title ORDER BY PageViews DESC LIMIT 10; +Тест (Россия) - Яндекс 122407 +Шарарай), Выбрать! - обсуждаются на голд: Шоубиз - Свободная историс 82935 +Приморск - IRR.ru 80958 +Брюки New Era H (Асус) 258 общая выплаток, горшечными 39098 +Теплоску на 23123 +Dave and Hotpoint sport – самые вещие 14329 +AUTO.ria.ua ™ - Аппер 14053 +Приморск (Россия) - Яндекс.Видео 13912 +OWAProfessign), продать 10919 +Труси - Шоубиз 10157 +SELECT URL, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND IsRefresh = 0 AND IsLink <> 0 AND IsDownload = 0 GROUP BY URL ORDER BY PageViews DESC LIMIT 10 OFFSET 1000; +http://omsk/evential/housession%3D0%26rnd%3D1216629/0/&&puid1=m&puid2=23&pvno=2&evlg=VC,7;VL,1052&s_yers[1][from=&power_name=Топы - Обувь и шут в hd&where=all&text=смотреть онлайн 2 +http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,94035/room=1&marka=0&top=0¤cy=1#country_id=137336I6GwLZOY3s&where=all&filmId=LnXXt5vaUXI&where=all 2 +http://omsk/evential/housession%3D%26CompPath%3D728%26height%3D90%26ad%3D1216629/0/index.ru/count=473095172777/page_type=&q=cache/wm/203159 2 +http://partment/1231297588736&numphoto=1&with_video.yandex.ru/1.112.ru 2 +http://guid=6&pw=2&pv=0&price_do=¤cy=RUR 2 +http://direct.yandex.ru%2Fkategory 2 +http://video.yandex.ru/realty/leaser_map=1/hasimay-2.html?1=1&cid=5772,92419948630585&s_yers=0&with_photo=False 2 +http://mysw.info/trashbox.ru/GameMain.aspx 2 +http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,9459301bd969/curre224.jpg&marka=0&type=produkty/travelru.gdbile/soft Internet Explorer&aV=5.0 (Windows 2 +http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26xpid%3D728%26height.html_parator/en-ru/#!/search=0&drive_type=product.html%3Fhtml?1=1&cid=577&oki=1&op_product_id=0&engineVolumeFrom=&power 2 +SELECT TraficSourceID, SearchEngineID, AdvEngineID, CASE WHEN (SearchEngineID = 0 AND AdvEngineID = 0) THEN Referer ELSE '' END AS Src, URL AS Dst, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND IsRefresh = 0 GROUP BY TraficSourceID, SearchEngineID, AdvEngineID, Src, Dst ORDER BY PageViews DESC LIMIT 10 OFFSET 1000; +-1 0 0 http://state=19945206/foto-4/login-11925.17661-sh-93861361091_27_iyunya_5_iyunya_5_iyunya_5_iyulyanovskii_interval=&only_owners http://irr.ru/index.php?showalbum/login=int[2364][from=29&modelove.ru/ru/index.php?vacancies/toolin_MP50807/details 15 +-1 0 0 http://state=19945206/foto-4/login-2006/make=КАМЕРИКА РАСШИРИНА/curre/fancy http://irr.ru/index.php?showalbum/login-676216b8af/4fd00fa61b3185631821/page_type=2&marka=29&model=19009618123313160 15 +1 0 0 http://yandex.ru/search?q=лавпланется монстружка http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=on&input_bdsmpeople.ru/image&sr=http://lk.wildberries 15 +-1 0 0 http://state=19945206/foto-4/login-2491724/?bundlers/search?text http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=9.80 (Windows NT 5.1; WOW64 15 +-1 0 0 http://state=19945206/foto-4/login-2006/makumirostova.ru/a-album/login.2/secondary/search http://irr.ru/index.php?showalbum/login-leniya7777294,938303130 15 +1 0 0 http://launcher-searchads/search http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0; 15 +-1 0 0 http://state=19945206/foto-4/login-2006/makumiruiushching http://irr.ru/index.php?showalbum/login-kapusta-advert2704&prr=http:/ 15 +-1 0 0 http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7656&lr http://irr.ru/index.php?showalbum/login=vladimir/page_type=0&expand_search?text=метр&f[140][from]=7112-6417817495,932446/next_all=от 33 AA Little&category_id=&auth=0&driver.ru/novostova.ru/photo/69363/27824721&referer_detej-otlicheskiipirog 15 +-1 0 0 http://state=19945206/foto-4/login-2491724/?bundlers/search?text http://irr.ru/index.php?showalbum/login-kapusta-advert2730675595,9292fa-d61f-fef3-013fc8491073393339363 15 +0 0 0 http://irr.ru/index.php?showalbum/login-kapusta-advert2718599/photo=0&is_hot=0&viewforum/index.ru 15 +SELECT URLHash, EventDate, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND IsRefresh = 0 AND TraficSourceID IN (-1, 6) AND RefererHash = 3594120000172545465 GROUP BY URLHash, EventDate ORDER BY PageViews DESC LIMIT 10 OFFSET 100; +7199155066341437901 2013-07-15 27 +2054727273000865689 2013-07-15 27 +2512899255762264913 2013-07-15 26 +-8505838588544217213 2013-07-15 26 +-6048157399675510565 2013-07-15 25 +-6025761452198030778 2013-07-15 25 +-3611962581960090019 2013-07-15 25 +6976198041684576969 2013-07-15 24 +2033248414344857063 2013-07-15 24 +9013370825190178404 2013-07-15 24 +SELECT WindowClientWidth, WindowClientHeight, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND IsRefresh = 0 AND DontCountHits = 0 AND URLHash = 2868770270353813622 GROUP BY WindowClientWidth, WindowClientHeight ORDER BY PageViews DESC LIMIT 10 OFFSET 10000; +1637 578 1 +1284 679 1 +1533 821 1 +1423 963 1 +1285 727 1 +1487 913 1 +1921 742 1 +593 847 1 +1996 784 1 +746 264 1 +SELECT DATE_TRUNC('minute', EventTime) AS M, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-14' AND EventDate <= '2013-07-15' AND IsRefresh = 0 AND DontCountHits = 0 GROUP BY DATE_TRUNC('minute', EventTime) ORDER BY DATE_TRUNC('minute', EventTime) LIMIT 10 OFFSET 1000; +2013-07-15 20:40:00 513 +2013-07-15 20:41:00 457 +2013-07-15 20:42:00 470 +2013-07-15 20:43:00 468 +2013-07-15 20:44:00 453 +2013-07-15 20:45:00 462 +2013-07-15 20:46:00 481 +2013-07-15 20:47:00 458 +2013-07-15 20:48:00 466 +2013-07-15 20:49:00 467 diff --git a/tests/queries/0_stateless/03214_hits_parquet.sql b/tests/queries/0_stateless/03214_hits_parquet.sql index 18eb00007a7..cab1e176361 100644 --- a/tests/queries/0_stateless/03214_hits_parquet.sql +++ b/tests/queries/0_stateless/03214_hits_parquet.sql @@ -5,7 +5,7 @@ CREATE TABLE hits JavaEnable SMALLINT NOT NULL, Title TEXT NOT NULL, GoodEvent SMALLINT NOT NULL, - EventTime DATETIME64 NOT NULL, + EventTime DATETIME64(0) NOT NULL, EventDate Date32 NOT NULL, CounterID INTEGER NOT NULL, ClientIP INTEGER NOT NULL, @@ -46,7 +46,7 @@ CREATE TABLE hits WindowClientWidth SMALLINT NOT NULL, WindowClientHeight SMALLINT NOT NULL, ClientTimeZone SMALLINT NOT NULL, - ClientEventTime DATETIME64 NOT NULL, + ClientEventTime DATETIME64(0) NOT NULL, SilverlightVersion1 SMALLINT NOT NULL, SilverlightVersion2 SMALLINT NOT NULL, SilverlightVersion3 INTEGER NOT NULL, @@ -65,7 +65,7 @@ CREATE TABLE hits DontCountHits SMALLINT NOT NULL, WithHash SMALLINT NOT NULL, HitColor CHAR NOT NULL, - LocalEventTime DATETIME64 NOT NULL, + LocalEventTime DATETIME64(0) NOT NULL, Age SMALLINT NOT NULL, Sex SMALLINT NOT NULL, Income SMALLINT NOT NULL, @@ -147,10 +147,10 @@ SELECT WatchID, ClientIP, COUNT(*) AS c, SUM(IsRefresh), AVG(ResolutionWidth) FR SELECT URL, COUNT(*) AS c FROM hits GROUP BY URL ORDER BY c DESC LIMIT 10; SELECT 1, URL, COUNT(*) AS c FROM hits GROUP BY 1, URL ORDER BY c DESC LIMIT 10; SELECT ClientIP, ClientIP - 1, ClientIP - 2, ClientIP - 3, COUNT(*) AS c FROM hits GROUP BY ClientIP, ClientIP - 1, ClientIP - 2, ClientIP - 3 ORDER BY c DESC LIMIT 10; -SELECT URL, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND DontCounthits = 0 AND IsRefresh = 0 AND URL <> '' GROUP BY URL ORDER BY PageViews DESC LIMIT 10; -SELECT Title, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND DontCounthits = 0 AND IsRefresh = 0 AND Title <> '' GROUP BY Title ORDER BY PageViews DESC LIMIT 10; +SELECT URL, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND `DontCountHits` = 0 AND IsRefresh = 0 AND URL <> '' GROUP BY URL ORDER BY PageViews DESC LIMIT 10; +SELECT Title, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND `DontCountHits` = 0 AND IsRefresh = 0 AND Title <> '' GROUP BY Title ORDER BY PageViews DESC LIMIT 10; SELECT URL, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND IsRefresh = 0 AND IsLink <> 0 AND IsDownload = 0 GROUP BY URL ORDER BY PageViews DESC LIMIT 10 OFFSET 1000; SELECT TraficSourceID, SearchEngineID, AdvEngineID, CASE WHEN (SearchEngineID = 0 AND AdvEngineID = 0) THEN Referer ELSE '' END AS Src, URL AS Dst, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND IsRefresh = 0 GROUP BY TraficSourceID, SearchEngineID, AdvEngineID, Src, Dst ORDER BY PageViews DESC LIMIT 10 OFFSET 1000; SELECT URLHash, EventDate, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND IsRefresh = 0 AND TraficSourceID IN (-1, 6) AND RefererHash = 3594120000172545465 GROUP BY URLHash, EventDate ORDER BY PageViews DESC LIMIT 10 OFFSET 100; -SELECT WindowClientWidth, WindowClientHeight, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND IsRefresh = 0 AND DontCounthits = 0 AND URLHash = 2868770270353813622 GROUP BY WindowClientWidth, WindowClientHeight ORDER BY PageViews DESC LIMIT 10 OFFSET 10000; -SELECT DATE_TRUNC('minute', EventTime) AS M, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-14' AND EventDate <= '2013-07-15' AND IsRefresh = 0 AND DontCounthits = 0 GROUP BY DATE_TRUNC('minute', EventTime) ORDER BY DATE_TRUNC('minute', EventTime) LIMIT 10 OFFSET 1000; \ No newline at end of file +SELECT WindowClientWidth, WindowClientHeight, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND IsRefresh = 0 AND DontCountHits = 0 AND URLHash = 2868770270353813622 GROUP BY WindowClientWidth, WindowClientHeight ORDER BY PageViews DESC LIMIT 10 OFFSET 10000; +SELECT DATE_TRUNC('minute', EventTime) AS M, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-14' AND EventDate <= '2013-07-15' AND IsRefresh = 0 AND DontCountHits = 0 GROUP BY DATE_TRUNC('minute', EventTime) ORDER BY DATE_TRUNC('minute', EventTime) LIMIT 10 OFFSET 1000; \ No newline at end of file From 2d55d2e3f9919795b42f66784b8f27897ab5bbf6 Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Mon, 9 Sep 2024 10:45:41 +0800 Subject: [PATCH 22/34] hits benchmark --- src/Interpreters/convertFieldToType.cpp | 5 ++++- .../Formats/Impl/Parquet/ColumnFilter.cpp | 2 ++ .../Impl/Parquet/ParquetColumnReaderFactory.cpp | 4 ++-- .../Impl/Parquet/SelectiveColumnReader.cpp | 16 ++++++++++++---- .../tests/gtest_native_parquet_reader.cpp | 6 ++++++ 5 files changed, 26 insertions(+), 7 deletions(-) diff --git a/src/Interpreters/convertFieldToType.cpp b/src/Interpreters/convertFieldToType.cpp index b4cfa9e8603..c09b8cc6a42 100644 --- a/src/Interpreters/convertFieldToType.cpp +++ b/src/Interpreters/convertFieldToType.cpp @@ -273,7 +273,10 @@ Field convertFieldToTypeImpl(const Field & src, const IDataType & type, const ID /// We don't need any conversion Int64 is under type of Date32 return src; } - + if (which_type.isDateTime() && isInt64OrUInt64FieldType(src.getType())) + { + return static_cast(src.safeGet()); + } if (which_type.isDateTime64() && src.getType() == Field::Types::Decimal64) { const auto & from_type = src.safeGet(); diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp index 7b6f9e0b419..ff4ea95356c 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp @@ -99,6 +99,8 @@ void FilterHelper::filterPlainFixedData(const S* src, PaddedPODArray & dst, c template void FilterHelper::filterPlainFixedData(Int32 const*, DB::PaddedPODArray&, DB::RowSet const&, size_t); template void FilterHelper::filterPlainFixedData(Int16 const*, DB::PaddedPODArray&, DB::RowSet const&, size_t); +template void FilterHelper::filterPlainFixedData(Int32 const*, DB::PaddedPODArray&, DB::RowSet const&, size_t); +template void FilterHelper::filterPlainFixedData(UInt16 const*, DB::PaddedPODArray&, DB::RowSet const&, size_t); template void FilterHelper::filterPlainFixedData(Int32 const*, DB::PaddedPODArray&, DB::RowSet const&, size_t); template void FilterHelper::filterPlainFixedData(UInt32 const*, DB::PaddedPODArray&, DB::RowSet const&, size_t); template void FilterHelper::filterPlainFixedData(Int64 const*, DB::PaddedPODArray&, DB::RowSet const&, size_t); diff --git a/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp b/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp index a090eb9903c..cb8e0f79c2e 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp +++ b/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp @@ -152,7 +152,7 @@ template <> SelectiveColumnReaderPtr createColumnReader( std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) { - return std::make_shared>( + return std::make_shared>( std::move(page_reader), scan_spec, std::make_shared()); } @@ -160,7 +160,7 @@ template <> SelectiveColumnReaderPtr createColumnReader( std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) { - return std::make_shared>( + return std::make_shared>( std::move(page_reader), scan_spec, std::make_shared()); } diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index 7e12d1e4b61..cf5a8214051 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -4,6 +4,7 @@ #include #include #include +#include #include #include #include @@ -26,11 +27,9 @@ Chunk RowGroupChunkReader::readChunk(size_t rows) for (auto & reader : column_readers) { columns.push_back(reader->createColumn()); - columns.back()->reserve(rows); } - size_t rows_read = 0; - while (rows_read < rows) + while (!rows_read) { size_t rows_to_read = std::min(rows - rows_read, remain_rows); if (!rows_to_read) @@ -66,7 +65,14 @@ Chunk RowGroupChunkReader::readChunk(size_t rows) bool all = true; if (row_set.has_value()) all = row_set.value().all(); if (all) row_set = std::nullopt; - + if (!skip_all) + for (auto & column : columns) + { + if (all) + column->reserve(rows); + else + column->reserve(row_set.value().count()); + } for (size_t i = 0; i < column_readers.size(); i++) { if (skip_all) @@ -844,6 +850,7 @@ template class NumberColumnDirectReader; template class NumberColumnDirectReader; template class NumberColumnDirectReader; template class NumberColumnDirectReader; +template class NumberColumnDirectReader; template class NumberColumnDirectReader; template class NumberColumnDirectReader; @@ -853,6 +860,7 @@ template class NumberDictionaryReader; template class NumberDictionaryReader; template class NumberDictionaryReader; template class NumberDictionaryReader; +template class NumberDictionaryReader; template class NumberDictionaryReader; template class NumberDictionaryReader; diff --git a/src/Processors/tests/gtest_native_parquet_reader.cpp b/src/Processors/tests/gtest_native_parquet_reader.cpp index 161964a609a..b9df5aaa1e8 100644 --- a/src/Processors/tests/gtest_native_parquet_reader.cpp +++ b/src/Processors/tests/gtest_native_parquet_reader.cpp @@ -491,6 +491,8 @@ TEST(TestColumnFilterHepler, TestFilterPlainFixedData) { testFilterPlainFixedData(100000, 1.0); testFilterPlainFixedData(100000, 1.0); + testFilterPlainFixedData(100000, 1.0); + testFilterPlainFixedData(100000, 1.0); testFilterPlainFixedData(100000, 1.0); testFilterPlainFixedData(100000, 1.0); testFilterPlainFixedData(100000, 1.0); @@ -500,6 +502,8 @@ TEST(TestColumnFilterHepler, TestFilterPlainFixedData) testFilterPlainFixedData(100000, 0); testFilterPlainFixedData(100000, 0); + testFilterPlainFixedData(100000, 0); + testFilterPlainFixedData(100000, 0); testFilterPlainFixedData(100000, 0); testFilterPlainFixedData(100000, 0); testFilterPlainFixedData(100000, 0); @@ -509,6 +513,8 @@ TEST(TestColumnFilterHepler, TestFilterPlainFixedData) testFilterPlainFixedData(100000, 0.9); testFilterPlainFixedData(100000, 0.9); + testFilterPlainFixedData(100000, 0.9); + testFilterPlainFixedData(100000, 0.9); testFilterPlainFixedData(100000, 0.9); testFilterPlainFixedData(100000, 0.9); testFilterPlainFixedData(100000, 0.9); From aa1df9f5c7e64a14bbabaaa30011a61ef03360ec Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Fri, 13 Sep 2024 18:15:34 +0800 Subject: [PATCH 23/34] support prefetch row group one by one --- .../Formats/Impl/Parquet/ColumnFilter.h | 1 + .../Formats/Impl/Parquet/ParquetReader.cpp | 78 +--- .../Formats/Impl/Parquet/ParquetReader.h | 30 +- .../Impl/Parquet/RowGroupChunkReader.cpp | 355 ++++++++++++++++++ .../Impl/Parquet/RowGroupChunkReader.h | 110 ++++++ .../Impl/Parquet/SelectiveColumnReader.cpp | 163 -------- .../Impl/Parquet/SelectiveColumnReader.h | 36 -- 7 files changed, 490 insertions(+), 283 deletions(-) create mode 100644 src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp create mode 100644 src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.h diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h index d086e70e1ea..abe2887e575 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h @@ -105,6 +105,7 @@ protected: public: virtual ~ColumnFilter() = default; virtual ColumnFilterKind kind() const { return kind_; } + virtual ColumnPtr testByExpression(ColumnPtr) { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testByExpression not implemented"); } virtual bool testNull() const { return null_allowed; } virtual bool testNotNull() const { return true; } virtual bool testInt64(Int64) const { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testInt64 not implemented"); } diff --git a/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp b/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp index 8daf8dd5ff1..0aa934276f2 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp @@ -2,6 +2,7 @@ #include #include #include +#include namespace DB { @@ -9,6 +10,7 @@ namespace ErrorCodes { extern const int NOT_IMPLEMENTED; extern const int PARQUET_EXCEPTION; +extern const int ARGUMENT_OUT_OF_BOUND; } #define THROW_PARQUET_EXCEPTION(s) \ @@ -56,14 +58,13 @@ ParquetReader::ParquetReader( if (row_groups_indices.empty()) for (int i = 0; i < meta_data->num_row_groups(); i++) row_groups_indices.push_back(i); - chunk_reader = std::make_unique(row_groups_indices, [&](const size_t idx) { return getRowGroupChunkReader(idx); }); - async_downloader = std::make_unique(file, file_mutex); const auto * root = meta_data->schema()->group_node(); for (int i = 0; i < root->field_count(); ++i) { const auto & node = root->field(i); parquet_columns.emplace(node->name(), node); } + chunk_reader = getSubRowGroupRangeReader(row_groups_indices); } Block ParquetReader::read() @@ -90,19 +91,20 @@ void ParquetReader::setRemainFilter(std::optional & expr) remain_filter = std::optional(std::move(actions)); } } -std::unique_ptr ParquetReader::getRowGroupChunkReader(size_t row_group_idx) +std::unique_ptr ParquetReader::getRowGroupChunkReader(size_t row_group_idx, RowGroupPrefetchPtr prefetch) { - return std::make_unique(this, row_group_idx, filters); + return std::make_unique(this, row_group_idx, std::move(prefetch), filters); } -extern std::pair getColumnRange(const parquet::ColumnChunkMetaData & column_metadata); +extern arrow::io::ReadRange getColumnRange(const parquet::ColumnChunkMetaData & column_metadata); std::unique_ptr ParquetReader::getSubRowGroupRangeReader(std::vector row_group_indices_) { - + std::vector row_group_prefetches; for (auto row_group_idx : row_group_indices_) { + RowGroupPrefetchPtr prefetch = std::make_unique(file, file_mutex, arrow_properties); auto row_group_meta = meta_data->RowGroup(row_group_idx); for (const auto & name : header.getNames()) { @@ -110,16 +112,19 @@ std::unique_ptr ParquetReader::getSubRowGroupRangeReader throw Exception(ErrorCodes::PARQUET_EXCEPTION, "no column with '{}' in parquet file", name); auto idx = meta_data->schema()->ColumnIndex(*parquet_columns[name]); auto range = getColumnRange(*row_group_meta->ColumnChunk(idx)); - async_downloader->downloadColumnChunkData(row_group_idx, name, range.first, range.second); + prefetch->prefetchRange(range); } + row_group_prefetches.push_back(std::move(prefetch)); } - return std::make_unique(row_group_indices_, [&](const size_t idx) { return getRowGroupChunkReader(idx); }); + return std::make_unique(row_group_indices_, std::move(row_group_prefetches), [&](const size_t idx, RowGroupPrefetchPtr prefetch) { return getRowGroupChunkReader(idx, std::move(prefetch)); }); } -SubRowGroupRangeReader::SubRowGroupRangeReader(const std::vector & rowGroupIndices, RowGroupReaderCreator && creator) - : row_group_indices(rowGroupIndices), row_group_reader_creator(creator) +SubRowGroupRangeReader::SubRowGroupRangeReader(const std::vector & rowGroupIndices, std::vector&& row_group_prefetches_, RowGroupReaderCreator && creator) + : row_group_indices(rowGroupIndices), row_group_prefetches(std::move(row_group_prefetches_)), row_group_reader_creator(creator) { + if (row_group_indices.size() != row_group_prefetches.size()) + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "row group indices and prefetches size mismatch"); } DB::Chunk SubRowGroupRangeReader::read(size_t rows) { @@ -137,58 +142,13 @@ bool SubRowGroupRangeReader::loadRowGroupChunkReaderIfNeeded() return false; if ((!row_group_chunk_reader || !row_group_chunk_reader->hasMoreRows()) && next_row_group_idx < row_group_indices.size()) { - row_group_chunk_reader = row_group_reader_creator(row_group_indices[next_row_group_idx]); + if (next_row_group_idx == 0) row_group_prefetches.front()->startPrefetch(); + row_group_chunk_reader = row_group_reader_creator(row_group_indices[next_row_group_idx], std::move(row_group_prefetches[next_row_group_idx])); next_row_group_idx++; + if (next_row_group_idx < row_group_indices.size()) + row_group_prefetches[next_row_group_idx]->startPrefetch(); } return true; } -FileAsyncDownloader::FileAsyncDownloader(SeekableReadBuffer & file_, std::mutex & mutex) : file(file_), file_mutex(mutex) -{ - callback_runner = threadPoolCallbackRunnerUnsafe(getIOThreadPool().get(), "ParquetRead"); -} - - -void FileAsyncDownloader::downloadColumnChunkData(int row_group_idx, const String & column_name, size_t offset, size_t len) -{ - auto task = [this, offset, len]() -> ColumnChunkDataPtr { - ColumnChunkDataPtr data = std::make_unique(); - data->data.resize(len); - size_t count = 0; - if (file.supportsReadAt()) - { - auto pb = [](size_t) { return true; }; - count = file.readBigAt(reinterpret_cast(data->data.data()), len, offset, pb); - } - else - { - std::lock_guard lock(file_mutex); - file.seek(offset, SEEK_SET); - count = file.readBig(reinterpret_cast(data->data.data()), len); - - } - if (count != len) - throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Failed to read column data"); - return data; - }; - - // Assuming Priority is an enum or a type that is defined elsewhere - Priority priority = {0}; // Set the appropriate priority value - auto future = callback_runner(std::move(task), priority); - std::lock_guard lock(chunks_mutex); - column_chunks[row_group_idx][column_name] = std::move(future); -} -std::shared_ptr -FileAsyncDownloader::readColumnChunkData(int row_group_idx, const String & column_name) -{ - std::lock_guard lock(chunks_mutex); - if (column_chunks.contains(row_group_idx) && column_chunks[row_group_idx].contains(column_name)) - { - auto data = std::move(column_chunks[row_group_idx][column_name]); - return data.get(); - } - throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Column chunk data not found {}, {}", row_group_idx, column_name); -} - - } diff --git a/src/Processors/Formats/Impl/Parquet/ParquetReader.h b/src/Processors/Formats/Impl/Parquet/ParquetReader.h index 49915b077b0..4d6b67d7b34 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetReader.h +++ b/src/Processors/Formats/Impl/Parquet/ParquetReader.h @@ -5,6 +5,7 @@ #include #include #include +#include #include #include @@ -16,38 +17,18 @@ namespace DB { -struct ColumnChunkData -{ - PaddedPODArray data; -}; - -using ColumnChunkDataPtr = std::shared_ptr; - -class FileAsyncDownloader -{ -public: - FileAsyncDownloader(SeekableReadBuffer & file_, std::mutex & mutex); - void downloadColumnChunkData(int row_group_idx, const String & column_name, size_t offset, size_t size); - std::shared_ptr readColumnChunkData(int row_group_idx, const String & column_name); -private: - ThreadPoolCallbackRunnerUnsafe callback_runner; - SeekableReadBuffer& file; - std::mutex& file_mutex; - std::unordered_map>>> column_chunks; - std::mutex chunks_mutex; -}; - class SubRowGroupRangeReader { public: - using RowGroupReaderCreator = std::function(size_t)>; - SubRowGroupRangeReader(const std::vector & rowGroupIndices, RowGroupReaderCreator&& creator); + using RowGroupReaderCreator = std::function(size_t, RowGroupPrefetchPtr)>; + SubRowGroupRangeReader(const std::vector & rowGroupIndices, std::vector && row_group_prefetches, RowGroupReaderCreator&& creator); DB::Chunk read(size_t rows); private: bool loadRowGroupChunkReaderIfNeeded(); std::vector row_group_indices; + std::vector row_group_prefetches; std::unique_ptr row_group_chunk_reader; size_t next_row_group_idx = 0; RowGroupReaderCreator row_group_reader_creator; @@ -70,7 +51,7 @@ public: Block read(); void addFilter(const String & column_name, ColumnFilterPtr filter); void setRemainFilter(std::optional & expr); - std::unique_ptr getRowGroupChunkReader(size_t row_group_idx); + std::unique_ptr getRowGroupChunkReader(size_t row_group_idx, RowGroupPrefetchPtr prefetch); std::unique_ptr getSubRowGroupRangeReader(std::vector row_group_indices); private: std::unique_ptr file_reader; @@ -91,7 +72,6 @@ private: size_t next_row_group_idx = 0; std::shared_ptr meta_data; std::unordered_map parquet_columns; - std::unique_ptr async_downloader; }; } diff --git a/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp new file mode 100644 index 00000000000..99f014a768a --- /dev/null +++ b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp @@ -0,0 +1,355 @@ +#include "RowGroupChunkReader.h" +#include +#include +#include +#include +#include +#include + +namespace DB +{ + +Chunk RowGroupChunkReader::readChunk(size_t rows) +{ + if (!remain_rows) + return {}; + rows = std::min(rows, remain_rows); + MutableColumns columns; + for (auto & reader : column_readers) + { + columns.push_back(reader->createColumn()); + } + size_t rows_read = 0; + while (!rows_read) + { + size_t rows_to_read = std::min(rows - rows_read, remain_rows); + if (!rows_to_read) + break; + for (auto & reader : column_readers) + { + if (!reader->availableRows()) + { + reader->readPageIfNeeded(); + } + rows_to_read = std::min(reader->availableRows(), rows_to_read); + } + if (!rows_to_read) + break; + + OptionalRowSet row_set = std::nullopt; + if (!filter_columns.empty()) + row_set = std::optional(RowSet(rows_to_read)); + if (row_set.has_value()) + for (auto & column : filter_columns) + { + reader_columns_mapping[column]->computeRowSet(row_set, rows_to_read); + if (row_set.value().none()) + break; + } + bool skip_all = false; + if (row_set.has_value()) + skip_all = row_set.value().none(); + if (skip_all) + { + metrics.skipped_rows += rows_to_read; + } + + bool all = true; + if (row_set.has_value()) + all = row_set.value().all(); + if (all) + row_set = std::nullopt; + if (!skip_all) + for (auto & column : columns) + { + if (all) + column->reserve(rows); + else + column->reserve(row_set.value().count()); + } + for (size_t i = 0; i < column_readers.size(); i++) + { + if (skip_all) + column_readers[i]->skip(rows_to_read); + else + column_readers[i]->read(columns[i], row_set, rows_to_read); + } + remain_rows -= rows_to_read; + metrics.filtered_rows += (rows_to_read - (columns[0]->size() - rows_read)); + rows_read = columns[0]->size(); + } + + // if (parquet_reader->remain_filter.has_value()) + // { + // std::cerr<<"has filter\n"<header.cloneWithColumns(std::move(columns)); + // auto output = input.getColumns(); + // parquet_reader->remain_filter.value().execute(input); + // const auto& filter = checkAndGetColumn(*input.getByPosition(0).column).getData(); + // size_t resize_hint = 0; + // for (size_t i = 0; i < columns.size(); i++) + // { + // output[i] = output[i]->assumeMutable()->filter(filter, resize_hint); + // resize_hint = output[i]->size(); + // } + // return Chunk(std::move(output), resize_hint); + // } + metrics.output_rows += rows_read; + return Chunk(std::move(columns), rows_read); +} + +arrow::io::ReadRange getColumnRange(const parquet::ColumnChunkMetaData & column_metadata) +{ + int64_t col_start = column_metadata.data_page_offset(); + if (column_metadata.has_dictionary_page() && column_metadata.dictionary_page_offset() > 0 + && col_start > column_metadata.dictionary_page_offset()) + { + col_start = column_metadata.dictionary_page_offset(); + } + int64_t len = column_metadata.total_compressed_size(); + return {col_start, len}; +} + + +RowGroupPrefetch::RowGroupPrefetch(SeekableReadBuffer & file_, std::mutex & mutex, const parquet::ArrowReaderProperties& arrow_properties_) : file(file_), file_mutex(mutex), arrow_properties(arrow_properties_) +{ + callback_runner = threadPoolCallbackRunnerUnsafe(getIOThreadPool().get(), "ParquetRead"); +} +void RowGroupPrefetch::prefetchRange(const arrow::io::ReadRange& range) +{ + if (fetched) + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "RowGroupPrefetch: prefetchColumnChunk called after startPrefetch"); + ranges.emplace_back(range); +} +void RowGroupPrefetch::startPrefetch() +{ + if (fetched) return; + fetched = true; + ranges = arrow::io::internal::CoalesceReadRanges(ranges, arrow_properties.cache_options().hole_size_limit, arrow_properties.cache_options().range_size_limit); + read_range_buffers.resize(ranges.size()); + for (size_t i=0; i < ranges.size(); i++) + { + auto& range = ranges[i]; + read_range_buffers[i].range = range; + auto task = [this, range, i]() -> ColumnChunkData { + auto& buffer = read_range_buffers[i].buffer; + + buffer.resize(range.length); + int64_t count = 0; + if (file.supportsReadAt()) + { + auto pb = [](size_t) { return true; }; + count = file.readBigAt(reinterpret_cast(buffer.data()), range.length, range.offset, pb); + } + else + { + std::lock_guard lock(file_mutex); + file.seek(range.offset, SEEK_SET); + count = file.readBig(reinterpret_cast(buffer.data()), range.length); + } + if (count != range.length) + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Failed to read column data"); + return {reinterpret_cast(buffer.data()), buffer.size()}; + }; + // Assuming Priority is an enum or a type that is defined elsewhere + Priority priority = {0}; // Set the appropriate priority value + auto future = callback_runner(std::move(task), priority); + tasks.emplace_back(TaskEntry{range, std::move(future)}); + } +} +ColumnChunkData RowGroupPrefetch::readRange(const arrow::io::ReadRange & range) +{ + if (!fetched) + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "RowGroupPrefetch: readRange called before startPrefetch"); + + // wait fetch finished + const auto it = std::lower_bound( + tasks.begin(), tasks.end(), range, + [](const TaskEntry& entry, const arrow::io::ReadRange& range_) { + return entry.range.offset + entry.range.length < range_.offset + range_.length; + }); + if (it != tasks.end() && it->range.Contains(range)) { + it->task.wait(); + } else { + throw Exception(ErrorCodes::ARGUMENT_OUT_OF_BOUND, "Range was not requested for caching: offset={}, length={}", range.offset, range.length); + } + + const auto buffer_it = std::lower_bound( + read_range_buffers.begin(), read_range_buffers.end(), range, + [](const ReadRangeBuffer& buffer, const arrow::io::ReadRange& range_) { + return buffer.range.offset + buffer.range.length < range_.offset + range_.length; + }); + if (buffer_it != read_range_buffers.end() && buffer_it->range.Contains(range)) { + return {reinterpret_cast(buffer_it->buffer.data() + (range.offset - buffer_it->range.offset)), static_cast(range.length)}; + } else { + throw Exception(ErrorCodes::ARGUMENT_OUT_OF_BOUND, "Range was not requested for caching: offset={}, length={}", range.offset, range.length); + } +} + + +RowGroupChunkReader::RowGroupChunkReader( + ParquetReader * parquetReader, size_t row_group_idx, RowGroupPrefetchPtr prefetch_, std::unordered_map filters) + : parquet_reader(parquetReader), row_group_meta(parquetReader->meta_data->RowGroup(static_cast(row_group_idx))), prefetch(std::move(prefetch_)) +{ + column_readers.reserve(parquet_reader->header.columns()); + column_buffers.resize(parquet_reader->header.columns()); + for (const auto & col_with_name : parquet_reader->header) + { + if (!parquetReader->parquet_columns.contains(col_with_name.name)) + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "no column with '{}' in parquet file", col_with_name.name); + + const auto & node = parquetReader->parquet_columns.at(col_with_name.name); + if (!node->is_primitive()) + throw Exception(ErrorCodes::NOT_IMPLEMENTED, "arrays and maps are not implemented in native parquet reader"); + + auto idx = parquet_reader->meta_data->schema()->ColumnIndex(*node); + auto filter = filters.contains(col_with_name.name) ? filters.at(col_with_name.name) : nullptr; + // auto range = getColumnRange(*row_group_meta->ColumnChunk(idx)); + // size_t compress_size = range.second; + // size_t offset = range.first; + // column_buffers[reader_idx].resize(compress_size, 0); + remain_rows = row_group_meta->ColumnChunk(idx)->num_values(); + // if (!parquet_reader->file.supportsReadAt()) + // { + // std::lock_guard lock(parquet_reader->file_mutex); + // parquet_reader->file.seek(offset, SEEK_SET); + // size_t count = parquet_reader->file.readBig(reinterpret_cast(column_buffers[reader_idx].data()), compress_size); + // if (count != compress_size) + // throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Failed to read column data"); + // } + // else + // { + // auto pb = [](size_t ) {return true;}; + // size_t count = parquet_reader->file.readBigAt(reinterpret_cast(column_buffers[reader_idx].data()), compress_size, offset, pb); + // if (count != compress_size) + // throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Failed to read column data"); + // } + auto data = prefetch->readRange(getColumnRange(*row_group_meta->ColumnChunk(idx))); + auto page_reader = std::make_unique( + std::make_shared( + reinterpret_cast(data.data), data.size), + parquet_reader->properties, + remain_rows, + row_group_meta->ColumnChunk(idx)->compression()); + const auto * column_desc = parquet_reader->meta_data->schema()->Column(idx); + auto column_reader = ParquetColumnReaderFactory::builder() + .nullable(node->is_optional()) + .dictionary(row_group_meta->ColumnChunk(idx)->has_dictionary_page()) + .columnDescriptor(column_desc) + .pageReader(std::move(page_reader)) + .targetType(col_with_name.type) + .filter(filter) + .build(); + // auto column_reader = SelectiveColumnReaderFactory::createLeafColumnReader( + // *row_group_meta->ColumnChunk(idx), parquet_reader->meta_data->schema()->Column(idx), std::move(page_reader), filter); + column_readers.push_back(column_reader); + reader_columns_mapping[col_with_name.name] = column_reader; + chassert(idx >= 0); + if (filter) + filter_columns.push_back(col_with_name.name); + } +} + +static std::shared_ptr mergeFilterDescriptions(std::unordered_map>& /*intermediate_filter_descriptions*/) +{ +// if (intermediate_filter_descriptions.empty()) return nullptr; +// if (intermediate_filter_descriptions.size() == 1) +// return intermediate_filter_descriptions.begin()->second; +// auto first_column = intermediate_filter_descriptions.begin()->second->data_holder; +// MutableColumnPtr new_filter_column = first_column->cloneEmpty(); +// auto size = first_column->size(); +// for (auto & [idx, filter_description] : intermediate_filter_descriptions) +// { +// for (size_t i = 0; i < size; ++i) +// { +// +// } +// } + return nullptr; +} + +static void combineRowSetAndFilter(RowSet& set, std::shared_ptr filter_description) +{ + const auto &filter_data = *filter_description->data; + if (filter_data.size() != set.totalRows()) + throw Exception(ErrorCodes::LOGICAL_ERROR, "bug, filter data size is not equal to row set size"); + int count = 0; + for (size_t i = 0; i < set.totalRows(); ++i) + { + if (!set.get(i)) + continue; + if (!filter_data[count]) + set.set(i, false); + count++; + } +} + +SelectResult SelectConditions::selectRows(size_t rows) +{ + + OptionalRowSet total_set; + if (has_filter) + total_set = std::optional(RowSet(rows)); + else + return SelectResult{std::nullopt, {}, nullptr}; + + bool skip_all = false; + + // apply fast filters + for (auto & idx : fast_filter_column_idxs) + { + readers[idx]->computeRowSet(total_set, rows); + if (total_set.value().none()) + { + skip_all = true; + break; + } + } + + size_t count = 0; + if (!skip_all) + count = total_set.has_value() ? total_set.value().count() : rows; + + // apply actions filter + std::unordered_map intermediate_columns; + std::unordered_map intermediate_filter_columns; + std::unordered_map> intermediate_filter_descriptions; + for (auto & [idx, filter] : actions_filters) + { + if (!count) break; + auto reader = readers[idx]; + auto column = reader->createColumn(); + column->reserve(count); + reader->read(column, total_set, rows); + intermediate_columns[idx] = std::move(column); + auto filter_column = filter->testByExpression(intermediate_columns[idx]); + filter_column = filter_column->convertToFullColumnIfSparse(); + intermediate_filter_columns[idx] = filter_column; + intermediate_filter_descriptions[idx] = std::make_shared(*filter_column); + size_t filter_count = intermediate_filter_descriptions[idx]->countBytesInFilter(); + if (!filter_count) + { + skip_all = true; + break; + } + } + + if (skip_all) + return SelectResult{std::nullopt, std::move(intermediate_columns), nullptr, true}; + else + { + auto filter_description = mergeFilterDescriptions(intermediate_filter_descriptions); + if (filter_description) + combineRowSetAndFilter(total_set.value(), filter_description); + return SelectResult{std::move(total_set), std::move(intermediate_columns), filter_description}; + } +} +SelectConditions::SelectConditions( + std::unordered_map & readers_, + std::vector & fastFilterColumnIdxs, + std::unordered_map & actionsFilters) + : readers(readers_), fast_filter_column_idxs(fastFilterColumnIdxs), actions_filters(actionsFilters) +{ + has_filter = fastFilterColumnIdxs.empty() && actionsFilters.empty(); +} +} diff --git a/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.h b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.h new file mode 100644 index 00000000000..e76790ef8ab --- /dev/null +++ b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.h @@ -0,0 +1,110 @@ +#pragma once +#include +#include + +namespace DB +{ +class ParquetReader; +struct FilterDescription; + +struct SelectResult +{ + std::optional set; + std::unordered_map intermediate_columns; + std::shared_ptr intermediate_filter_description; + bool skip_all = false; +}; + +class SelectConditions +{ +public: + SelectConditions( + std::unordered_map & readers, + std::vector & fastFilterColumnIdxs, + std::unordered_map & actionsFilters); + SelectResult selectRows(size_t rows); +private: + bool has_filter = false; + std::unordered_map & readers; + std::vector & fast_filter_column_idxs; + std::unordered_map& actions_filters; +}; + + +struct ColumnChunkData +{ + uint8_t * data; + size_t size; +}; + +struct ReadRangeBuffer +{ + arrow::io::ReadRange range; + PaddedPODArray buffer; +}; + +using ColumnChunkDataPtr = std::shared_ptr; + +class RowGroupPrefetch +{ +public: + RowGroupPrefetch(SeekableReadBuffer & file_, std::mutex & mutex, const parquet::ArrowReaderProperties& arrow_properties_); + void prefetchRange(const arrow::io::ReadRange& range); + void startPrefetch(); + ColumnChunkData readRange(const arrow::io::ReadRange& range); +private: + struct TaskEntry + { + arrow::io::ReadRange range; + std::future task; + }; + + ThreadPoolCallbackRunnerUnsafe callback_runner; + SeekableReadBuffer& file; + std::mutex& file_mutex; + std::vector ranges; + std::vector read_range_buffers; + std::vector tasks; + std::mutex chunks_mutex; + parquet::ArrowReaderProperties arrow_properties; + bool fetched = false; +}; + +using RowGroupPrefetchPtr = std::unique_ptr; + +class RowGroupChunkReader +{ +public: + struct ReadMetrics + { + size_t output_rows = 0; + size_t filtered_rows = 0; + size_t skipped_rows = 0; + }; + RowGroupChunkReader( + ParquetReader * parquetReader, + size_t row_group_idx, + RowGroupPrefetchPtr prefetch, + std::unordered_map filters); + ~RowGroupChunkReader() + { + // printMetrics(std::cerr); + } + Chunk readChunk(size_t rows); + bool hasMoreRows() const { return remain_rows > 0; } + void printMetrics(std::ostream & out) const + { + out << fmt::format("metrics.output_rows: {} \n metrics.filtered_rows: {} \n metrics.skipped_rows: {} \n", metrics.output_rows, metrics.filtered_rows, metrics.skipped_rows); + } +private: + ParquetReader * parquet_reader; + std::shared_ptr row_group_meta; + std::vector filter_columns; + RowGroupPrefetchPtr prefetch; + std::unordered_map reader_columns_mapping; + std::vector column_readers; + std::vector> column_buffers; + size_t remain_rows = 0; + ReadMetrics metrics; +}; +} diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index cf5a8214051..f608468958f 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -19,169 +19,6 @@ extern const int UNSUPPORTED_METHOD; extern const int PARQUET_EXCEPTION; } -Chunk RowGroupChunkReader::readChunk(size_t rows) -{ - if (!remain_rows) return {}; - rows = std::min(rows, remain_rows); - MutableColumns columns; - for (auto & reader : column_readers) - { - columns.push_back(reader->createColumn()); - } - size_t rows_read = 0; - while (!rows_read) - { - size_t rows_to_read = std::min(rows - rows_read, remain_rows); - if (!rows_to_read) - break; - for (auto & reader : column_readers) - { - if (!reader->availableRows()) - { - reader->readPageIfNeeded(); - } - rows_to_read = std::min(reader->availableRows(), rows_to_read); - } - if (!rows_to_read) - break; - - OptionalRowSet row_set = std::nullopt; - if (!filter_columns.empty()) - row_set = std::optional(RowSet(rows_to_read)); - if (row_set.has_value()) - for (auto & column : filter_columns) - { - reader_columns_mapping[column]->computeRowSet(row_set, rows_to_read); - if (row_set.value().none()) - break; - } - bool skip_all = false; - if (row_set.has_value()) skip_all = row_set.value().none(); - if (skip_all) - { - metrics.skipped_rows += rows_to_read; - } - - bool all = true; - if (row_set.has_value()) all = row_set.value().all(); - if (all) row_set = std::nullopt; - if (!skip_all) - for (auto & column : columns) - { - if (all) - column->reserve(rows); - else - column->reserve(row_set.value().count()); - } - for (size_t i = 0; i < column_readers.size(); i++) - { - if (skip_all) - column_readers[i]->skip(rows_to_read); - else - column_readers[i]->read(columns[i], row_set, rows_to_read); - } - remain_rows -= rows_to_read; - metrics.filtered_rows += (rows_to_read - (columns[0]->size() - rows_read)); - rows_read = columns[0]->size(); - } - - // if (parquet_reader->remain_filter.has_value()) - // { - // std::cerr<<"has filter\n"<header.cloneWithColumns(std::move(columns)); - // auto output = input.getColumns(); - // parquet_reader->remain_filter.value().execute(input); - // const auto& filter = checkAndGetColumn(*input.getByPosition(0).column).getData(); - // size_t resize_hint = 0; - // for (size_t i = 0; i < columns.size(); i++) - // { - // output[i] = output[i]->assumeMutable()->filter(filter, resize_hint); - // resize_hint = output[i]->size(); - // } - // return Chunk(std::move(output), resize_hint); - // } - metrics.output_rows += rows_read; - return Chunk(std::move(columns), rows_read); -} - -std::pair getColumnRange(const parquet::ColumnChunkMetaData & column_metadata) -{ - size_t col_start = column_metadata.data_page_offset(); - if (column_metadata.has_dictionary_page() && column_metadata.dictionary_page_offset() > 0 - && col_start > static_cast(column_metadata.dictionary_page_offset())) - { - col_start = column_metadata.dictionary_page_offset(); - } - size_t len = column_metadata.total_compressed_size(); - return {col_start, len}; -} - -RowGroupChunkReader::RowGroupChunkReader( - ParquetReader * parquetReader, - size_t row_group_idx, - std::unordered_map filters) - : parquet_reader(parquetReader), row_group_meta(parquetReader->meta_data->RowGroup(static_cast(row_group_idx))) -{ - column_readers.reserve(parquet_reader->header.columns()); - column_buffers.resize(parquet_reader->header.columns()); - int reader_idx = 0; - for (const auto & col_with_name : parquet_reader->header) - { - if (!parquetReader->parquet_columns.contains(col_with_name.name)) - throw Exception(ErrorCodes::PARQUET_EXCEPTION, "no column with '{}' in parquet file", col_with_name.name); - - const auto & node = parquetReader->parquet_columns.at(col_with_name.name); - if (!node->is_primitive()) - throw Exception(ErrorCodes::NOT_IMPLEMENTED, "arrays and maps are not implemented in native parquet reader"); - - auto idx = parquet_reader->meta_data->schema()->ColumnIndex(*node); - auto filter = filters.contains(col_with_name.name) ? filters.at(col_with_name.name) : nullptr; -// auto range = getColumnRange(*row_group_meta->ColumnChunk(idx)); -// size_t compress_size = range.second; -// size_t offset = range.first; -// column_buffers[reader_idx].resize(compress_size, 0); - remain_rows = row_group_meta->ColumnChunk(idx)->num_values(); -// if (!parquet_reader->file.supportsReadAt()) -// { -// std::lock_guard lock(parquet_reader->file_mutex); -// parquet_reader->file.seek(offset, SEEK_SET); -// size_t count = parquet_reader->file.readBig(reinterpret_cast(column_buffers[reader_idx].data()), compress_size); -// if (count != compress_size) -// throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Failed to read column data"); -// } -// else -// { -// auto pb = [](size_t ) {return true;}; -// size_t count = parquet_reader->file.readBigAt(reinterpret_cast(column_buffers[reader_idx].data()), compress_size, offset, pb); -// if (count != compress_size) -// throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Failed to read column data"); -// } - - auto data = parquetReader->async_downloader->readColumnChunkData(static_cast(row_group_idx), col_with_name.name); - column_buffers[reader_idx] = std::move(data->data); - auto page_reader = std::make_unique( - std::make_shared(reinterpret_cast(column_buffers[reader_idx].data()), column_buffers[reader_idx].size()), - parquet_reader->properties, - remain_rows, - row_group_meta->ColumnChunk(idx)->compression()); - const auto* column_desc = parquet_reader->meta_data->schema()->Column(idx); - auto column_reader = ParquetColumnReaderFactory::builder().nullable(node->is_optional()) - .dictionary(row_group_meta->ColumnChunk(idx)->has_dictionary_page()) - .columnDescriptor(column_desc) - .pageReader(std::move(page_reader)) - .targetType(col_with_name.type) - .filter(filter) - .build(); -// auto column_reader = SelectiveColumnReaderFactory::createLeafColumnReader( -// *row_group_meta->ColumnChunk(idx), parquet_reader->meta_data->schema()->Column(idx), std::move(page_reader), filter); - column_readers.push_back(column_reader); - reader_columns_mapping[col_with_name.name] = column_reader; - chassert(idx >= 0); - if (filter) - filter_columns.push_back(col_with_name.name); - reader_idx++; - } -} template static void decodeFixedValueInternal(PaddedPODArray & data, const S* start, const OptionalRowSet & row_set, size_t rows_to_read) { diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h index 7f365f01f92..cb164786b91 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h @@ -515,42 +515,6 @@ private: arrow::util::RleDecoder idx_decoder; }; -class ParquetReader; - -class RowGroupChunkReader -{ -public: - struct ReadMetrics - { - size_t output_rows = 0; - size_t filtered_rows = 0; - size_t skipped_rows = 0; - }; - RowGroupChunkReader( - ParquetReader * parquetReader, - size_t row_group_idx, - std::unordered_map filters); - ~RowGroupChunkReader() - { -// printMetrics(std::cerr); - } - Chunk readChunk(size_t rows); - bool hasMoreRows() const { return remain_rows > 0; } - void printMetrics(std::ostream & out) const - { - out << fmt::format("metrics.output_rows: {} \n metrics.filtered_rows: {} \n metrics.skipped_rows: {} \n", metrics.output_rows, metrics.filtered_rows, metrics.skipped_rows); - } -private: - ParquetReader * parquet_reader; - std::shared_ptr row_group_meta; - std::vector filter_columns; - std::unordered_map reader_columns_mapping; - std::vector column_readers; - std::vector> column_buffers; - size_t remain_rows = 0; - ReadMetrics metrics; -}; - class OptionalColumnReader : public SelectiveColumnReader { public: From a2814258bcb563e13725d2cbec9fa340b24655e3 Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Fri, 27 Sep 2024 21:29:09 +0800 Subject: [PATCH 24/34] support full filter push down --- .../Formats/Impl/Parquet/ColumnFilter.cpp | 30 ++ .../Formats/Impl/Parquet/ColumnFilter.h | 14 + .../Impl/Parquet/ColumnFilterHelper.cpp | 36 +- .../Formats/Impl/Parquet/ColumnFilterHelper.h | 29 +- .../Formats/Impl/Parquet/ParquetReader.cpp | 4 + .../Formats/Impl/Parquet/ParquetReader.h | 2 + .../Impl/Parquet/RowGroupChunkReader.cpp | 309 +++++++++--------- .../Impl/Parquet/RowGroupChunkReader.h | 20 +- 8 files changed, 253 insertions(+), 191 deletions(-) diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp index ff4ea95356c..05f1c62df80 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp @@ -765,4 +765,34 @@ bool RowSet::any() const } return res; } + +IColumn::Filter ExpressionFilter::execute(const ColumnsWithTypeAndName & columns) +{ + auto block = Block(columns); + actions->execute(block); + auto filter_column = block.getByName(filter_name).column->assumeMutable(); + ColumnUInt8 * uint8_col = static_cast(filter_column.get()); + IColumn::Filter filter; + filter.swap(uint8_col->getData()); + return filter; +} +NameSet ExpressionFilter::getInputs() +{ + NameSet result; + auto inputs = actions->getActionsDAG().getInputs(); + for (const auto & input : inputs) + { + result.insert(input->result_name); + } + return result; +} +ExpressionFilter::ExpressionFilter(ActionsDAG && dag_) +{ + actions = std::make_shared(std::move(dag_)); + filter_name = actions->getActionsDAG().getOutputs().front()->result_name; + if (!isUInt8(actions->getActionsDAG().getOutputs().front()->result_type)) + { + throw Exception(ErrorCodes::LOGICAL_ERROR, "Filter result type must be UInt8"); + } +} } diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h index abe2887e575..2c7dffa6eae 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h @@ -4,6 +4,7 @@ #include #include #include +#include #include #include #include @@ -97,6 +98,19 @@ public: size_t rows_to_read); }; +class ExpressionFilter +{ +public: + explicit ExpressionFilter(ActionsDAG && dag_); + NameSet getInputs(); + + IColumn::Filter execute(const ColumnsWithTypeAndName & columns); + +private: + ExpressionActionsPtr actions; + String filter_name; +}; + class ColumnFilter { protected: diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.cpp index 08209eb93ac..27a627a8008 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.cpp +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.cpp @@ -4,6 +4,36 @@ namespace DB { ColumnFilterCreators ColumnFilterHelper::creators = {BigIntRangeFilter::create, NegatedBigIntRangeFilter::create, createFloatRangeFilter, ByteValuesFilter::create, NegatedByteValuesFilter::create}; +FilterSplitResult ColumnFilterHelper::splitFilterForPushDown(const ActionsDAG & filter_expression) +{ + if (filter_expression.getOutputs().empty()) + return {}; + const auto * filter_node = filter_expression.getOutputs().front(); + auto conditions = ActionsDAG::extractConjunctionAtoms(filter_node); + std::vector filters; + ActionsDAG::NodeRawConstPtrs unsupported_conditions; + FilterSplitResult split_result; + for (const auto * condition : conditions) + { + if (std::none_of(creators.begin(), creators.end(), [&](ColumnFilterCreator & creator) { + auto result = creator(*condition); + if (result.has_value()) + split_result.filters[result.value().first].emplace_back(result.value().second); + return result.has_value(); + })) + unsupported_conditions.push_back(condition); + } + for (auto & condition : unsupported_conditions) + { + auto actions_dag = ActionsDAG::buildFilterActionsDAG({condition}); + if (actions_dag.has_value()) + { + split_result.expression_filters.emplace_back(std::make_shared(std::move(actions_dag.value()))); + } + } + return split_result; +} + void pushFilterToParquetReader(const ActionsDAG& filter_expression, ParquetReader & reader) { if (filter_expression.getOutputs().empty()) return ; @@ -15,7 +45,9 @@ void pushFilterToParquetReader(const ActionsDAG& filter_expression, ParquetReade reader.addFilter(item.first, filter); } } - if (split_result.remain_filter.has_value()) - reader.setRemainFilter(split_result.remain_filter); + for (auto & expression_filter : split_result.expression_filters) + { + reader.addExpressionFilter(expression_filter); + } } } diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.h b/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.h index 30f96a410ad..6e0ed437393 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.h +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilterHelper.h @@ -11,39 +11,14 @@ using ColumnFilterCreators = std::vector; struct FilterSplitResult { std::unordered_map> filters; - std::optional remain_filter = std::nullopt; + std::vector> expression_filters; }; class ColumnFilterHelper { public: - static FilterSplitResult splitFilterForPushDown(const ActionsDAG& filter_expression) - { - if (filter_expression.getOutputs().empty()) - return {}; - const auto * filter_node = filter_expression.getOutputs().front(); - auto conditions = ActionsDAG::extractConjunctionAtoms(filter_node); - std::vector filters; - ActionsDAG::NodeRawConstPtrs unsupported_conditions; - FilterSplitResult split_result; - for (const auto * condition : conditions) - { - if (std::none_of(creators.begin(), creators.end(), [&](ColumnFilterCreator & creator) { - auto result = creator(*condition); - if (result.has_value()) - split_result.filters[result.value().first].emplace_back(result.value().second); - return result.has_value(); - })) - unsupported_conditions.push_back(condition); - } - if (!unsupported_conditions.empty()) - { - auto remain_filter = ActionsDAG::buildFilterActionsDAG(unsupported_conditions); - split_result.remain_filter = std::move(remain_filter); - } - return split_result; - } + static FilterSplitResult splitFilterForPushDown(const ActionsDAG& filter_expression); private: static ColumnFilterCreators creators; diff --git a/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp b/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp index 0aa934276f2..190d34406c6 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp @@ -118,6 +118,10 @@ std::unique_ptr ParquetReader::getSubRowGroupRangeReader } return std::make_unique(row_group_indices_, std::move(row_group_prefetches), [&](const size_t idx, RowGroupPrefetchPtr prefetch) { return getRowGroupChunkReader(idx, std::move(prefetch)); }); } +void ParquetReader::addExpressionFilter(std::shared_ptr filter) +{ + expression_filters.emplace_back(filter); +} SubRowGroupRangeReader::SubRowGroupRangeReader(const std::vector & rowGroupIndices, std::vector&& row_group_prefetches_, RowGroupReaderCreator && creator) diff --git a/src/Processors/Formats/Impl/Parquet/ParquetReader.h b/src/Processors/Formats/Impl/Parquet/ParquetReader.h index 4d6b67d7b34..e84d0ed656b 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetReader.h +++ b/src/Processors/Formats/Impl/Parquet/ParquetReader.h @@ -50,6 +50,7 @@ public: Block read(); void addFilter(const String & column_name, ColumnFilterPtr filter); + void addExpressionFilter(std::shared_ptr filter); void setRemainFilter(std::optional & expr); std::unique_ptr getRowGroupChunkReader(size_t row_group_idx, RowGroupPrefetchPtr prefetch); std::unique_ptr getSubRowGroupRangeReader(std::vector row_group_indices); @@ -72,6 +73,7 @@ private: size_t next_row_group_idx = 0; std::shared_ptr meta_data; std::unordered_map parquet_columns; + std::vector> expression_filters; }; } diff --git a/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp index 99f014a768a..e19520667f5 100644 --- a/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp @@ -1,10 +1,10 @@ #include "RowGroupChunkReader.h" -#include -#include #include #include -#include +#include +#include #include +#include namespace DB { @@ -15,10 +15,6 @@ Chunk RowGroupChunkReader::readChunk(size_t rows) return {}; rows = std::min(rows, remain_rows); MutableColumns columns; - for (auto & reader : column_readers) - { - columns.push_back(reader->createColumn()); - } size_t rows_read = 0; while (!rows_read) { @@ -36,66 +32,61 @@ Chunk RowGroupChunkReader::readChunk(size_t rows) if (!rows_to_read) break; - OptionalRowSet row_set = std::nullopt; - if (!filter_columns.empty()) - row_set = std::optional(RowSet(rows_to_read)); - if (row_set.has_value()) - for (auto & column : filter_columns) - { - reader_columns_mapping[column]->computeRowSet(row_set, rows_to_read); - if (row_set.value().none()) - break; - } - bool skip_all = false; - if (row_set.has_value()) - skip_all = row_set.value().none(); - if (skip_all) + auto select_result = selectConditions->selectRows(rows_to_read); + + if (select_result.skip_all) { metrics.skipped_rows += rows_to_read; } - bool all = true; - if (row_set.has_value()) - all = row_set.value().all(); + bool all = select_result.valid_count == rows_to_read; if (all) - row_set = std::nullopt; - if (!skip_all) - for (auto & column : columns) - { - if (all) - column->reserve(rows); - else - column->reserve(row_set.value().count()); - } - for (size_t i = 0; i < column_readers.size(); i++) + select_result.set = std::nullopt; + auto column_names = parquet_reader->header.getNames(); + if (select_result.skip_all) { - if (skip_all) - column_readers[i]->skip(rows_to_read); - else - column_readers[i]->read(columns[i], row_set, rows_to_read); + metrics.filtered_rows += rows_to_read; + rows_read = 0; + for (const auto & name : column_names) + { + if (!select_result.intermediate_columns.contains(name)) + { + reader_columns_mapping.at(name)->skip(rows_to_read); + } + } + } + else + { + for (const auto & name : column_names) + { + if (select_result.intermediate_columns.contains(name)) + { + if (all) + columns.emplace_back(select_result.intermediate_columns.at(name)->assumeMutable()); + else + columns.emplace_back( + select_result.intermediate_columns.at(name)->filter(select_result.intermediate_filter, select_result.valid_count)->assumeMutable()); + } + else + { + auto & reader = reader_columns_mapping.at(name); + auto column = reader->createColumn(); + column->reserve(select_result.valid_count); + reader->read(column, select_result.set, rows_to_read); + columns.emplace_back(std::move(column)); + } + } + metrics.filtered_rows += (rows_to_read - (columns[0]->size() - rows_read)); + rows_read = columns[0]->size(); } remain_rows -= rows_to_read; - metrics.filtered_rows += (rows_to_read - (columns[0]->size() - rows_read)); - rows_read = columns[0]->size(); } - // if (parquet_reader->remain_filter.has_value()) - // { - // std::cerr<<"has filter\n"<header.cloneWithColumns(std::move(columns)); - // auto output = input.getColumns(); - // parquet_reader->remain_filter.value().execute(input); - // const auto& filter = checkAndGetColumn(*input.getByPosition(0).column).getData(); - // size_t resize_hint = 0; - // for (size_t i = 0; i < columns.size(); i++) - // { - // output[i] = output[i]->assumeMutable()->filter(filter, resize_hint); - // resize_hint = output[i]->size(); - // } - // return Chunk(std::move(output), resize_hint); - // } metrics.output_rows += rows_read; - return Chunk(std::move(columns), rows_read); + if (rows_read) + return Chunk(std::move(columns), rows_read); + else + return {}; } arrow::io::ReadRange getColumnRange(const parquet::ColumnChunkMetaData & column_metadata) @@ -111,11 +102,12 @@ arrow::io::ReadRange getColumnRange(const parquet::ColumnChunkMetaData & column_ } -RowGroupPrefetch::RowGroupPrefetch(SeekableReadBuffer & file_, std::mutex & mutex, const parquet::ArrowReaderProperties& arrow_properties_) : file(file_), file_mutex(mutex), arrow_properties(arrow_properties_) +RowGroupPrefetch::RowGroupPrefetch(SeekableReadBuffer & file_, std::mutex & mutex, const parquet::ArrowReaderProperties & arrow_properties_) + : file(file_), file_mutex(mutex), arrow_properties(arrow_properties_) { callback_runner = threadPoolCallbackRunnerUnsafe(getIOThreadPool().get(), "ParquetRead"); } -void RowGroupPrefetch::prefetchRange(const arrow::io::ReadRange& range) +void RowGroupPrefetch::prefetchRange(const arrow::io::ReadRange & range) { if (fetched) throw Exception(ErrorCodes::PARQUET_EXCEPTION, "RowGroupPrefetch: prefetchColumnChunk called after startPrefetch"); @@ -123,16 +115,19 @@ void RowGroupPrefetch::prefetchRange(const arrow::io::ReadRange& range) } void RowGroupPrefetch::startPrefetch() { - if (fetched) return; + if (fetched) + return; fetched = true; - ranges = arrow::io::internal::CoalesceReadRanges(ranges, arrow_properties.cache_options().hole_size_limit, arrow_properties.cache_options().range_size_limit); + ranges = arrow::io::internal::CoalesceReadRanges( + ranges, arrow_properties.cache_options().hole_size_limit, arrow_properties.cache_options().range_size_limit); read_range_buffers.resize(ranges.size()); - for (size_t i=0; i < ranges.size(); i++) + for (size_t i = 0; i < ranges.size(); i++) { - auto& range = ranges[i]; + auto & range = ranges[i]; read_range_buffers[i].range = range; - auto task = [this, range, i]() -> ColumnChunkData { - auto& buffer = read_range_buffers[i].buffer; + auto task = [this, range, i]() -> ColumnChunkData + { + auto & buffer = read_range_buffers[i].buffer; buffer.resize(range.length); int64_t count = 0; @@ -164,32 +159,46 @@ ColumnChunkData RowGroupPrefetch::readRange(const arrow::io::ReadRange & range) // wait fetch finished const auto it = std::lower_bound( - tasks.begin(), tasks.end(), range, - [](const TaskEntry& entry, const arrow::io::ReadRange& range_) { - return entry.range.offset + entry.range.length < range_.offset + range_.length; - }); - if (it != tasks.end() && it->range.Contains(range)) { + tasks.begin(), + tasks.end(), + range, + [](const TaskEntry & entry, const arrow::io::ReadRange & range_) + { return entry.range.offset + entry.range.length < range_.offset + range_.length; }); + if (it != tasks.end() && it->range.Contains(range)) + { it->task.wait(); - } else { - throw Exception(ErrorCodes::ARGUMENT_OUT_OF_BOUND, "Range was not requested for caching: offset={}, length={}", range.offset, range.length); + } + else + { + throw Exception( + ErrorCodes::ARGUMENT_OUT_OF_BOUND, "Range was not requested for caching: offset={}, length={}", range.offset, range.length); } const auto buffer_it = std::lower_bound( - read_range_buffers.begin(), read_range_buffers.end(), range, - [](const ReadRangeBuffer& buffer, const arrow::io::ReadRange& range_) { - return buffer.range.offset + buffer.range.length < range_.offset + range_.length; - }); - if (buffer_it != read_range_buffers.end() && buffer_it->range.Contains(range)) { - return {reinterpret_cast(buffer_it->buffer.data() + (range.offset - buffer_it->range.offset)), static_cast(range.length)}; - } else { - throw Exception(ErrorCodes::ARGUMENT_OUT_OF_BOUND, "Range was not requested for caching: offset={}, length={}", range.offset, range.length); + read_range_buffers.begin(), + read_range_buffers.end(), + range, + [](const ReadRangeBuffer & buffer, const arrow::io::ReadRange & range_) + { return buffer.range.offset + buffer.range.length < range_.offset + range_.length; }); + if (buffer_it != read_range_buffers.end() && buffer_it->range.Contains(range)) + { + return { + reinterpret_cast(buffer_it->buffer.data() + (range.offset - buffer_it->range.offset)), + static_cast(range.length)}; + } + else + { + throw Exception( + ErrorCodes::ARGUMENT_OUT_OF_BOUND, "Range was not requested for caching: offset={}, length={}", range.offset, range.length); } } RowGroupChunkReader::RowGroupChunkReader( ParquetReader * parquetReader, size_t row_group_idx, RowGroupPrefetchPtr prefetch_, std::unordered_map filters) - : parquet_reader(parquetReader), row_group_meta(parquetReader->meta_data->RowGroup(static_cast(row_group_idx))), prefetch(std::move(prefetch_)) + : parquet_reader(parquetReader) + , row_group_meta(parquetReader->meta_data->RowGroup(static_cast(row_group_idx))) + , prefetch(std::move(prefetch_)) { column_readers.reserve(parquet_reader->header.columns()); column_buffers.resize(parquet_reader->header.columns()); @@ -204,30 +213,10 @@ RowGroupChunkReader::RowGroupChunkReader( auto idx = parquet_reader->meta_data->schema()->ColumnIndex(*node); auto filter = filters.contains(col_with_name.name) ? filters.at(col_with_name.name) : nullptr; - // auto range = getColumnRange(*row_group_meta->ColumnChunk(idx)); - // size_t compress_size = range.second; - // size_t offset = range.first; - // column_buffers[reader_idx].resize(compress_size, 0); remain_rows = row_group_meta->ColumnChunk(idx)->num_values(); - // if (!parquet_reader->file.supportsReadAt()) - // { - // std::lock_guard lock(parquet_reader->file_mutex); - // parquet_reader->file.seek(offset, SEEK_SET); - // size_t count = parquet_reader->file.readBig(reinterpret_cast(column_buffers[reader_idx].data()), compress_size); - // if (count != compress_size) - // throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Failed to read column data"); - // } - // else - // { - // auto pb = [](size_t ) {return true;}; - // size_t count = parquet_reader->file.readBigAt(reinterpret_cast(column_buffers[reader_idx].data()), compress_size, offset, pb); - // if (count != compress_size) - // throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Failed to read column data"); - // } auto data = prefetch->readRange(getColumnRange(*row_group_meta->ColumnChunk(idx))); auto page_reader = std::make_unique( - std::make_shared( - reinterpret_cast(data.data), data.size), + std::make_shared(reinterpret_cast(data.data), data.size), parquet_reader->properties, remain_rows, row_group_meta->ColumnChunk(idx)->compression()); @@ -240,39 +229,39 @@ RowGroupChunkReader::RowGroupChunkReader( .targetType(col_with_name.type) .filter(filter) .build(); - // auto column_reader = SelectiveColumnReaderFactory::createLeafColumnReader( - // *row_group_meta->ColumnChunk(idx), parquet_reader->meta_data->schema()->Column(idx), std::move(page_reader), filter); column_readers.push_back(column_reader); reader_columns_mapping[col_with_name.name] = column_reader; chassert(idx >= 0); if (filter) filter_columns.push_back(col_with_name.name); } + selectConditions = std::make_unique(reader_columns_mapping, filter_columns, parquet_reader->expression_filters, parquet_reader->header); } -static std::shared_ptr mergeFilterDescriptions(std::unordered_map>& /*intermediate_filter_descriptions*/) +static IColumn::Filter mergeFilters(std::vector & filters) { -// if (intermediate_filter_descriptions.empty()) return nullptr; -// if (intermediate_filter_descriptions.size() == 1) -// return intermediate_filter_descriptions.begin()->second; -// auto first_column = intermediate_filter_descriptions.begin()->second->data_holder; -// MutableColumnPtr new_filter_column = first_column->cloneEmpty(); -// auto size = first_column->size(); -// for (auto & [idx, filter_description] : intermediate_filter_descriptions) -// { -// for (size_t i = 0; i < size; ++i) -// { -// -// } -// } - return nullptr; + assert(!filters.empty()); + if (filters.size() == 1) + return std::move(filters[0]); + IColumn::Filter result; + size_t size = filters.front().size(); + result.resize_fill(size, 1); + for (size_t i = 0; i < filters.size(); i++) + { + auto & current = filters[i]; + for (size_t j = 0; j < size; j++) + { + if (!result[i]) + continue; + if (!current[i]) + result[i] = 0; + } + } + return result; } -static void combineRowSetAndFilter(RowSet& set, std::shared_ptr filter_description) +static void combineRowSetAndFilter(RowSet & set, const IColumn::Filter& filter_data) { - const auto &filter_data = *filter_description->data; - if (filter_data.size() != set.totalRows()) - throw Exception(ErrorCodes::LOGICAL_ERROR, "bug, filter data size is not equal to row set size"); int count = 0; for (size_t i = 0; i < set.totalRows(); ++i) { @@ -286,19 +275,18 @@ static void combineRowSetAndFilter(RowSet& set, std::shared_ptrcomputeRowSet(total_set, rows); + readers.at(name)->computeRowSet(total_set, rows); if (total_set.value().none()) { skip_all = true; @@ -307,26 +295,35 @@ SelectResult SelectConditions::selectRows(size_t rows) } size_t count = 0; - if (!skip_all) - count = total_set.has_value() ? total_set.value().count() : rows; // apply actions filter - std::unordered_map intermediate_columns; - std::unordered_map intermediate_filter_columns; - std::unordered_map> intermediate_filter_descriptions; - for (auto & [idx, filter] : actions_filters) + std::unordered_map intermediate_columns; + std::vector intermediate_filters; + for (const auto & expr_filter : expression_filters) { - if (!count) break; - auto reader = readers[idx]; - auto column = reader->createColumn(); - column->reserve(count); - reader->read(column, total_set, rows); - intermediate_columns[idx] = std::move(column); - auto filter_column = filter->testByExpression(intermediate_columns[idx]); - filter_column = filter_column->convertToFullColumnIfSparse(); - intermediate_filter_columns[idx] = filter_column; - intermediate_filter_descriptions[idx] = std::make_shared(*filter_column); - size_t filter_count = intermediate_filter_descriptions[idx]->countBytesInFilter(); + if (skip_all) + break; + count = total_set.has_value() ? total_set.value().count() : rows; + // prepare condition columns + ColumnsWithTypeAndName input; + for (const auto &name : expr_filter->getInputs()) + { + if (!intermediate_columns.contains(name)) + { + auto reader = readers.at(name); + auto column = reader->createColumn(); + if (count == rows) + reader->read(column, std::nullopt, rows); + else + reader->read(column, total_set, rows); + intermediate_columns.emplace(name, std::move(column)); + } + input.emplace_back(intermediate_columns.at(name), header.getByName(name).type, name); + } + + auto filter = expr_filter->execute(input); + size_t filter_count = countBytesInFilter(filter); + intermediate_filters.emplace_back(std::move(filter)); if (!filter_count) { skip_all = true; @@ -335,21 +332,25 @@ SelectResult SelectConditions::selectRows(size_t rows) } if (skip_all) - return SelectResult{std::nullopt, std::move(intermediate_columns), nullptr, true}; + return SelectResult{std::nullopt, std::move(intermediate_columns), {}, 0, true}; else { - auto filter_description = mergeFilterDescriptions(intermediate_filter_descriptions); - if (filter_description) - combineRowSetAndFilter(total_set.value(), filter_description); - return SelectResult{std::move(total_set), std::move(intermediate_columns), filter_description}; + if (!intermediate_filters.empty()) + { + auto filter = mergeFilters(intermediate_filters); + combineRowSetAndFilter(total_set.value(), filter); + return SelectResult{std::move(total_set), std::move(intermediate_columns), std::move(filter), total_set.value().count(), false}; + } + return SelectResult{std::move(total_set), {}, {}, total_set.value().count(), false}; } } SelectConditions::SelectConditions( - std::unordered_map & readers_, - std::vector & fastFilterColumnIdxs, - std::unordered_map & actionsFilters) - : readers(readers_), fast_filter_column_idxs(fastFilterColumnIdxs), actions_filters(actionsFilters) -{ - has_filter = fastFilterColumnIdxs.empty() && actionsFilters.empty(); + std::unordered_map & readers_, + std::vector & fast_filter_columns_, + std::vector> & expression_filters_, + const Block & header_) + : readers(readers_), fast_filter_columns(fast_filter_columns_), expression_filters(expression_filters_), header(header_) +{ has_filter = !fast_filter_columns.empty() || !expression_filters.empty(); } + } diff --git a/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.h b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.h index e76790ef8ab..2e6a8814f1d 100644 --- a/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.h +++ b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.h @@ -10,8 +10,9 @@ struct FilterDescription; struct SelectResult { std::optional set; - std::unordered_map intermediate_columns; - std::shared_ptr intermediate_filter_description; + std::unordered_map intermediate_columns; + IColumn::Filter intermediate_filter; + size_t valid_count = 0; bool skip_all = false; }; @@ -19,15 +20,17 @@ class SelectConditions { public: SelectConditions( - std::unordered_map & readers, - std::vector & fastFilterColumnIdxs, - std::unordered_map & actionsFilters); + std::unordered_map & readers_, + std::vector & fast_filter_columns_, + std::vector>& expression_filters, + const Block & header_); SelectResult selectRows(size_t rows); private: bool has_filter = false; - std::unordered_map & readers; - std::vector & fast_filter_column_idxs; - std::unordered_map& actions_filters; + const std::unordered_map & readers; + const std::vector & fast_filter_columns; + const std::vector>& expression_filters; + const Block & header; }; @@ -106,5 +109,6 @@ private: std::vector> column_buffers; size_t remain_rows = 0; ReadMetrics metrics; + std::unique_ptr selectConditions; }; } From f3277d88e991c77486d7f63d38afcddbd307c78e Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Thu, 10 Oct 2024 18:13:39 +0800 Subject: [PATCH 25/34] add xsimd --- contrib/CMakeLists.txt | 1 + contrib/xsimd | 1 + 2 files changed, 2 insertions(+) create mode 160000 contrib/xsimd diff --git a/contrib/CMakeLists.txt b/contrib/CMakeLists.txt index b102b2919d9..675a548285a 100644 --- a/contrib/CMakeLists.txt +++ b/contrib/CMakeLists.txt @@ -227,6 +227,7 @@ else () endif () add_contrib (xxHash-cmake xxHash) +add_contrib (xsimd-cmake xsimd) add_contrib (expected-cmake expected) diff --git a/contrib/xsimd b/contrib/xsimd new file mode 160000 index 00000000000..caeb777bdd3 --- /dev/null +++ b/contrib/xsimd @@ -0,0 +1 @@ +Subproject commit caeb777bdd38f0c3a00277b4b64c8ec259b0027a From a9b21ce5fc0b5bee8960f6227907890ef1647118 Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Fri, 11 Oct 2024 16:46:47 +0800 Subject: [PATCH 26/34] add test --- .../Formats/Impl/Parquet/ColumnFilter.cpp | 12 +- .../Parquet/ParquetColumnReaderFactory.cpp | 23 + .../Impl/Parquet/RowGroupChunkReader.cpp | 5 +- .../Impl/Parquet/SelectiveColumnReader.cpp | 267 +- .../Impl/Parquet/SelectiveColumnReader.h | 153 +- .../03214_native_parquet.reference | 40353 ++++++++++++++++ .../0_stateless/03214_native_parquet.sql | 41 +- 7 files changed, 40581 insertions(+), 273 deletions(-) create mode 100644 tests/queries/0_stateless/03214_native_parquet.reference diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp index 05f1c62df80..307071ff6b7 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp @@ -103,6 +103,7 @@ template void FilterHelper::filterPlainFixedData(Int32 const*, DB template void FilterHelper::filterPlainFixedData(UInt16 const*, DB::PaddedPODArray&, DB::RowSet const&, size_t); template void FilterHelper::filterPlainFixedData(Int32 const*, DB::PaddedPODArray&, DB::RowSet const&, size_t); template void FilterHelper::filterPlainFixedData(UInt32 const*, DB::PaddedPODArray&, DB::RowSet const&, size_t); +template void FilterHelper::filterPlainFixedData(Int32 const*, DB::PaddedPODArray&, DB::RowSet const&, size_t); template void FilterHelper::filterPlainFixedData(Int64 const*, DB::PaddedPODArray&, DB::RowSet const&, size_t); template void FilterHelper::filterPlainFixedData(const Int64* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); template void FilterHelper::filterPlainFixedData(const Float32* src, PaddedPODArray & dst, const RowSet & row_set, size_t rows_to_read); @@ -190,7 +191,16 @@ void BigIntRangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t le batch_type min_batch = batch_type::broadcast(lower); batch_type max_batch; if (!is_single_value) - max_batch = batch_type::broadcast(upper); + { + if constexpr (std::is_same_v) + max_batch = batch_type::broadcast(upper); + else if constexpr (std::is_same_v) + max_batch = batch_type::broadcast(upper32); + else if constexpr (std::is_same_v) + max_batch = batch_type::broadcast(upper16); + else + UNREACHABLE(); + } bool aligned = offset % increment == 0; for (size_t i = 0; i < num_batched; ++i) { diff --git a/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp b/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp index cb8e0f79c2e..929d86dc6a9 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp +++ b/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp @@ -164,6 +164,22 @@ SelectiveColumnReaderPtr createColumnReader()); } +template <> +SelectiveColumnReaderPtr createColumnReader( + std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) +{ + return std::make_shared>( + std::move(page_reader), scan_spec, std::make_shared()); +} + +template <> +SelectiveColumnReaderPtr createColumnReader( + std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) +{ + return std::make_shared>( + std::move(page_reader), scan_spec, std::make_shared()); +} + template <> SelectiveColumnReaderPtr createColumnReader( std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) @@ -310,6 +326,13 @@ SelectiveColumnReaderPtr ParquetColumnReaderFactory::Builder::build() else leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); } + else if (isDateTime(target_type)) + { + if (dictionary_) + leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + else + leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + } } else if (physical_type == parquet::Type::FLOAT) { diff --git a/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp index e19520667f5..2cb1d711509 100644 --- a/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp @@ -335,13 +335,14 @@ SelectResult SelectConditions::selectRows(size_t rows) return SelectResult{std::nullopt, std::move(intermediate_columns), {}, 0, true}; else { + auto total_count = total_set.value().count(); if (!intermediate_filters.empty()) { auto filter = mergeFilters(intermediate_filters); combineRowSetAndFilter(total_set.value(), filter); - return SelectResult{std::move(total_set), std::move(intermediate_columns), std::move(filter), total_set.value().count(), false}; + return SelectResult{std::move(total_set), std::move(intermediate_columns), std::move(filter), total_count, false}; } - return SelectResult{std::move(total_set), {}, {}, total_set.value().count(), false}; + return SelectResult{std::move(total_set), {}, {}, total_count, false}; } } SelectConditions::SelectConditions( diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index f608468958f..7fac7c947b1 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -184,6 +184,10 @@ static void computeRowSetPlain(const T * start, OptionalRowSet & row_set, const filter->testInt32Values(row_set.value(), 0, rows_to_read, start); else if constexpr (std::is_same_v) filter->testInt16Values(row_set.value(), 0, rows_to_read, start); + else if constexpr (std::is_same_v) + filter->testFloat32Values(row_set.value(), 0, rows_to_read, start); + else if constexpr (std::is_same_v) + filter->testFloat64Values(row_set.value(), 0, rows_to_read, start); else throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unsupported type"); } @@ -568,119 +572,6 @@ void OptionalColumnReader::skipPageIfNeed() child->state.lazy_skip_rows = 0; } -static bool isLogicalTypeIntOrNull(parquet::LogicalType::Type::type type) -{ - return type == parquet::LogicalType::Type::INT || type == parquet::LogicalType::Type::NONE; -} - -static bool isLogicalTypeDate(parquet::LogicalType::Type::type type) -{ - return type == parquet::LogicalType::Type::DATE; -} - -static bool isLogicalTypeDateTime(parquet::LogicalType::Type::type type) -{ - return type == parquet::LogicalType::Type::TIMESTAMP || type == parquet::LogicalType::Type::TIME; -} - -static UInt32 getScaleFromLogicalTimestamp(parquet::LogicalType::TimeUnit::unit tm_unit) -{ - switch (tm_unit) - { - case parquet::LogicalType::TimeUnit::MILLIS: - return 3; - case parquet::LogicalType::TimeUnit::MICROS: - return 6; - case parquet::LogicalType::TimeUnit::NANOS: - return 9; - default: - throw DB::Exception(ErrorCodes::PARQUET_EXCEPTION, ", invalid timestamp unit: {}", tm_unit); - } -} - -SelectiveColumnReaderPtr SelectiveColumnReaderFactory::createLeafColumnReader( - const parquet::ColumnChunkMetaData & column_metadata, - const parquet::ColumnDescriptor * column_desc, - std::unique_ptr page_reader, - ColumnFilterPtr filter) -{ - ScanSpec scan_spec{.column_name = column_desc->name(), .column_desc = column_desc, .filter = filter}; - if (column_desc->physical_type() == parquet::Type::INT64 && isLogicalTypeIntOrNull(column_desc->logical_type()->type())) - { - auto type_int64 = std::make_shared(); - if (!column_metadata.has_dictionary_page()) - return std::make_shared>(std::move(page_reader), scan_spec, type_int64); - else - return std::make_shared>(std::move(page_reader), scan_spec, type_int64); - } - else if (column_desc->physical_type() == parquet::Type::INT32 && column_desc->logical_type()->type() == parquet::LogicalType::Type::INT && column_desc->converted_type() == parquet::ConvertedType::INT_16) - { - auto type_int16 = std::make_shared(); - if (!column_metadata.has_dictionary_page()) - return std::make_shared>(std::move(page_reader), scan_spec, type_int16); - else - return std::make_shared>(std::move(page_reader), scan_spec, type_int16); - } - else if (column_desc->physical_type() == parquet::Type::INT32 && isLogicalTypeIntOrNull(column_desc->logical_type()->type())) - { - auto type_int32 = std::make_shared(); - if (!column_metadata.has_dictionary_page()) - return std::make_shared>(std::move(page_reader), scan_spec, type_int32); - else - return std::make_shared>(std::move(page_reader), scan_spec, type_int32); - } - else if (column_desc->physical_type() == parquet::Type::INT32 && isLogicalTypeDate(column_desc->logical_type()->type())) - { - auto type_date32 = std::make_shared(); - if (!column_metadata.has_dictionary_page()) - return std::make_shared>(std::move(page_reader), scan_spec, type_date32); - else - return std::make_shared>(std::move(page_reader), scan_spec, type_date32); - } - else if (column_desc->physical_type() == parquet::Type::INT64 && isLogicalTypeDateTime(column_desc->logical_type()->type())) - { - const auto & tm_type = dynamic_cast(*column_desc->logical_type()); - auto type_datetime64 = std::make_shared(getScaleFromLogicalTimestamp(tm_type.time_unit())); - if (!column_metadata.has_dictionary_page()) - return std::make_shared>(std::move(page_reader), scan_spec, type_datetime64); - else - return std::make_shared>(std::move(page_reader), scan_spec, type_datetime64); - } - else if (column_desc->physical_type() == parquet::Type::FLOAT) - { - auto type_float32 = std::make_shared(); - if (!column_metadata.has_dictionary_page()) - return std::make_shared>(std::move(page_reader), scan_spec, type_float32); - else - return std::make_shared>(std::move(page_reader), scan_spec, type_float32); - } - else if (column_desc->physical_type() == parquet::Type::DOUBLE) - { - auto type_float64 = std::make_shared(); - if (!column_metadata.has_dictionary_page()) - return std::make_shared>(std::move(page_reader), scan_spec, type_float64); - else - return std::make_shared>(std::move(page_reader), scan_spec, type_float64); - } - else if (column_desc->physical_type() == parquet::Type::BYTE_ARRAY) - { - if (!column_metadata.has_dictionary_page()) - return std::make_shared(std::move(page_reader), scan_spec); - else - return std::make_shared(std::move(page_reader), scan_spec); - } - else - { - throw Exception(ErrorCodes::UNSUPPORTED_METHOD, "Unsupported column type"); - } -} -SelectiveColumnReaderPtr SelectiveColumnReaderFactory::createOptionalColumnReader(SelectiveColumnReaderPtr child, ColumnFilterPtr filter) -{ - ScanSpec scan_spec; - scan_spec.filter = filter; - return std::make_shared(scan_spec, std::move(child)); -} - template class NumberColumnDirectReader; template class NumberColumnDirectReader; template class NumberColumnDirectReader; @@ -688,6 +579,7 @@ template class NumberColumnDirectReader; template class NumberColumnDirectReader; template class NumberColumnDirectReader; template class NumberColumnDirectReader; +template class NumberColumnDirectReader; template class NumberColumnDirectReader; template class NumberColumnDirectReader; @@ -698,6 +590,7 @@ template class NumberDictionaryReader; template class NumberDictionaryReader; template class NumberDictionaryReader; template class NumberDictionaryReader; +template class NumberDictionaryReader; template class NumberDictionaryReader; template class NumberDictionaryReader; @@ -1145,4 +1038,152 @@ void DictDecoder::decodeFixedValueSpace( remain_rows -= rows_to_read; idx_buffer.resize(0); } +void PlainDecoder::decodeString( + ColumnString::Chars & chars, IColumn::Offsets & offsets, const OptionalRowSet & row_set, size_t rows_to_read) +{ + size_t offset = 0; + if (row_set.has_value()) + { + const auto & sets = row_set.value(); + for (size_t i = 0; i < rows_to_read; i++) + { + auto len = loadLength(buffer + offset); + offset += 4; + if (sets.get(i)) + { + if (len) + chars.insert_assume_reserved(buffer + offset, buffer + offset + len); + chars.push_back(0); + offsets.push_back(chars.size()); + offset += len; + } + else + { + offset += len; + } + } + } + else + { + for (size_t i = 0; i < rows_to_read; i++) + { + auto len = loadLength(buffer + offset); + offset += 4; + if (len) + chars.insert_assume_reserved(buffer + offset, buffer + offset + len); + chars.push_back(0); + offsets.push_back(chars.size()); + offset += len; + } + } + buffer += offset; + remain_rows -= rows_to_read; +} + +void PlainDecoder::decodeStringSpace( + ColumnString::Chars & chars, + IColumn::Offsets & offsets, + const OptionalRowSet & row_set, + PaddedPODArray & null_map, + size_t rows_to_read) +{ + size_t offset = 0; + if (row_set.has_value()) + { + const auto & sets = row_set.value(); + for (size_t i = 0; i < rows_to_read; i++) + { + if (null_map[i]) + { + if (sets.get(i)) + { + // null string + chars.push_back(0); + offsets.push_back(chars.size()); + } + continue; + } + auto len = loadLength(buffer + offset); + offset += 4; + if (sets.get(i)) + { + if (len) + chars.insert_assume_reserved(buffer + offset, buffer + offset + len); + chars.push_back(0); + offsets.push_back(chars.size()); + offset += len; + } + else + { + offset += len; + } + } + } + else + { + for (size_t i = 0; i < rows_to_read; i++) + { + if (null_map[i]) + { + chars.push_back(0); + offsets.push_back(chars.size()); + continue; + } + auto len = loadLength(buffer + offset); + offset += 4; + if (len) + chars.insert_assume_reserved(buffer + offset, buffer + offset + len); + chars.push_back(0); + offsets.push_back(chars.size()); + offset += len; + } + } + buffer += offset; + remain_rows -= rows_to_read; +} +template +void PlainDecoder::decodeFixedValueSpace( + PaddedPODArray & data, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t rows_to_read) +{ + size_t rows_read = 0; + const S * start = reinterpret_cast(buffer); + size_t count = 0; + if (!row_set.has_value()) + { + for (size_t i = 0; i < rows_to_read; i++) + { + if (null_map[i]) + { + data.push_back(0); + } + else + { + data.push_back(static_cast(start[count])); + count++; + } + } + } + else + { + const auto & sets = row_set.value(); + while (rows_read < rows_to_read) + { + if (sets.get(rows_read)) + { + if (null_map[rows_read]) + { + data.push_back(0); + } + else + { + data.push_back(static_cast(start[count])); + count++; + } + } + rows_read++; + } + } + buffer += count * sizeof(S); + remain_rows -= rows_to_read; +} } diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h index cb164786b91..abe76d1eec0 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h @@ -95,153 +95,17 @@ public: template void decodeFixedValue(PaddedPODArray & data, const OptionalRowSet & row_set, size_t rows_to_read); - void decodeString(ColumnString::Chars & chars, ColumnString::Offsets & offsets, const OptionalRowSet & row_set, size_t rows_to_read) - { - size_t offset = 0; - if (row_set.has_value()) - { - const auto & sets = row_set.value(); - for (size_t i = 0; i < rows_to_read; i++) - { - auto len = loadLength(buffer + offset); - offset += 4; - if (sets.get(i)) - { - if (len) - chars.insert_assume_reserved(buffer + offset, buffer + offset + len); - chars.push_back(0); - offsets.push_back(chars.size()); - offset += len; - } - else - { - offset += len; - } - } - } - else - { - for (size_t i = 0; i < rows_to_read; i++) - { - auto len = loadLength(buffer + offset); - offset += 4; - if (len) - chars.insert_assume_reserved(buffer + offset, buffer + offset + len); - chars.push_back(0); - offsets.push_back(chars.size()); - offset += len; - } - } - buffer += offset; - remain_rows -= rows_to_read; - } + void decodeString(ColumnString::Chars & chars, ColumnString::Offsets & offsets, const OptionalRowSet & row_set, size_t rows_to_read); template - void decodeFixedValueSpace(PaddedPODArray & data, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t rows_to_read) - { - size_t rows_read = 0; - const S * start = reinterpret_cast(buffer); - size_t count = 0; - if (!row_set.has_value()) - { - for (size_t i = 0; i < rows_to_read; i++) - { - if (null_map[i]) - { - data.push_back(0); - } - else - { - data.push_back(static_cast(start[count])); - count++; - } - } - } - else - { - const auto & sets = row_set.value(); - while (rows_read < rows_to_read) - { - if (sets.get(rows_read)) - { - if (null_map[rows_read]) - { - data.push_back(0); - } - else - { - data.push_back(static_cast(start[count])); - count++; - } - } - rows_read++; - } - } - buffer += count * sizeof(S); - remain_rows -= rows_to_read; - } + void decodeFixedValueSpace(PaddedPODArray & data, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t rows_to_read); void decodeStringSpace( ColumnString::Chars & chars, ColumnString::Offsets & offsets, const OptionalRowSet & row_set, PaddedPODArray & null_map, - size_t rows_to_read) - { - size_t offset = 0; - if (row_set.has_value()) - { - const auto & sets = row_set.value(); - for (size_t i = 0; i < rows_to_read; i++) - { - if (null_map[i]) - { - if (sets.get(i)) - { - // null string - chars.push_back(0); - offsets.push_back(chars.size()); - } - continue; - } - auto len = loadLength(buffer + offset); - offset += 4; - if (sets.get(i)) - { - if (len) - chars.insert_assume_reserved(buffer + offset, buffer + offset + len); - chars.push_back(0); - offsets.push_back(chars.size()); - offset += len; - } - else - { - offset += len; - } - } - } - else - { - for (size_t i = 0; i < rows_to_read; i++) - { - if (null_map[i]) - { - chars.push_back(0); - offsets.push_back(chars.size()); - continue; - } - auto len = loadLength(buffer + offset); - offset += 4; - if (len) - chars.insert_assume_reserved(buffer + offset, buffer + offset + len); - chars.push_back(0); - offsets.push_back(chars.size()); - offset += len; - } - } - buffer += offset; - remain_rows -= rows_to_read; - } + size_t rows_to_read); size_t calculateStringTotalSize(const uint8_t * data, const OptionalRowSet & row_set, const size_t rows_to_read) { @@ -556,15 +420,4 @@ private: int def_level = 0; int rep_level = 0; }; - -class SelectiveColumnReaderFactory -{ -public: - static SelectiveColumnReaderPtr createLeafColumnReader( - const parquet::ColumnChunkMetaData & column_metadata, - const parquet::ColumnDescriptor * column_desc, - std::unique_ptr page_reader, - ColumnFilterPtr filter); - static SelectiveColumnReaderPtr createOptionalColumnReader(SelectiveColumnReaderPtr child, ColumnFilterPtr filter); -}; } diff --git a/tests/queries/0_stateless/03214_native_parquet.reference b/tests/queries/0_stateless/03214_native_parquet.reference new file mode 100644 index 00000000000..60198799886 --- /dev/null +++ b/tests/queries/0_stateless/03214_native_parquet.reference @@ -0,0 +1,40353 @@ +-- { echoOn } +-- support data types: Int16, Int32, Int64, Float32, Float64, String, Date32, DateTime64, Date, DateTime +drop table if exists test_native_parquet; +create table test_native_parquet (i16 Int16, i32 Int32, i64 Int64, float Float32, double Float64, string String, date32 Date32, time64 DateTime64, date Date, time DateTime) engine=File(Parquet) settings input_format_parquet_use_native_reader=true; +insert into test_native_parquet select number, number, number+1, 0.1*number, 0.2*number, toString(number), number, toDateTime('2024-10-11 00:00:00') + number, number, toDateTime('2024-10-11 00:00:00') + number from numbers(10000); +-- test int16 +select sum(i16) from test_native_parquet; +49995000 +select * from test_native_parquet where i16 < 10; +0 0 1 0 0 0 1970-01-01 2024-10-11 00:00:00.000 1970-01-01 2024-10-11 00:00:00 +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +5 5 6 0.5 1 5 1970-01-06 2024-10-11 00:00:05.000 1970-01-06 2024-10-11 00:00:05 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +select * from test_native_parquet where i16 <= 10; +0 0 1 0 0 0 1970-01-01 2024-10-11 00:00:00.000 1970-01-01 2024-10-11 00:00:00 +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +5 5 6 0.5 1 5 1970-01-06 2024-10-11 00:00:05.000 1970-01-06 2024-10-11 00:00:05 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +10 10 11 1 2 10 1970-01-11 2024-10-11 00:00:10.000 1970-01-11 2024-10-11 00:00:10 +select * from test_native_parquet where i16 between 10 and 20; +10 10 11 1 2 10 1970-01-11 2024-10-11 00:00:10.000 1970-01-11 2024-10-11 00:00:10 +11 11 12 1.1 2.2 11 1970-01-12 2024-10-11 00:00:11.000 1970-01-12 2024-10-11 00:00:11 +12 12 13 1.2 2.4000000000000004 12 1970-01-13 2024-10-11 00:00:12.000 1970-01-13 2024-10-11 00:00:12 +13 13 14 1.3 2.6 13 1970-01-14 2024-10-11 00:00:13.000 1970-01-14 2024-10-11 00:00:13 +14 14 15 1.4 2.8000000000000003 14 1970-01-15 2024-10-11 00:00:14.000 1970-01-15 2024-10-11 00:00:14 +15 15 16 1.5 3 15 1970-01-16 2024-10-11 00:00:15.000 1970-01-16 2024-10-11 00:00:15 +16 16 17 1.6 3.2 16 1970-01-17 2024-10-11 00:00:16.000 1970-01-17 2024-10-11 00:00:16 +17 17 18 1.7 3.4000000000000004 17 1970-01-18 2024-10-11 00:00:17.000 1970-01-18 2024-10-11 00:00:17 +18 18 19 1.8 3.6 18 1970-01-19 2024-10-11 00:00:18.000 1970-01-19 2024-10-11 00:00:18 +19 19 20 1.9 3.8000000000000003 19 1970-01-20 2024-10-11 00:00:19.000 1970-01-20 2024-10-11 00:00:19 +20 20 21 2 4 20 1970-01-21 2024-10-11 00:00:20.000 1970-01-21 2024-10-11 00:00:20 +select * from test_native_parquet where i16 > 9990; +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9995 9995 9996 999.5 1999 9995 1997-05-14 2024-10-11 02:46:35.000 1997-05-14 2024-10-11 02:46:35 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +select * from test_native_parquet where i16 >= 9990; +9990 9990 9991 999 1998 9990 1997-05-09 2024-10-11 02:46:30.000 1997-05-09 2024-10-11 02:46:30 +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9995 9995 9996 999.5 1999 9995 1997-05-14 2024-10-11 02:46:35.000 1997-05-14 2024-10-11 02:46:35 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +-- test int32 +select sum(i32) from test_native_parquet; +49995000 +select * from test_native_parquet where i32 < 10; +0 0 1 0 0 0 1970-01-01 2024-10-11 00:00:00.000 1970-01-01 2024-10-11 00:00:00 +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +5 5 6 0.5 1 5 1970-01-06 2024-10-11 00:00:05.000 1970-01-06 2024-10-11 00:00:05 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +select * from test_native_parquet where i32 <= 10; +0 0 1 0 0 0 1970-01-01 2024-10-11 00:00:00.000 1970-01-01 2024-10-11 00:00:00 +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +5 5 6 0.5 1 5 1970-01-06 2024-10-11 00:00:05.000 1970-01-06 2024-10-11 00:00:05 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +10 10 11 1 2 10 1970-01-11 2024-10-11 00:00:10.000 1970-01-11 2024-10-11 00:00:10 +select * from test_native_parquet where i32 between 10 and 20; +10 10 11 1 2 10 1970-01-11 2024-10-11 00:00:10.000 1970-01-11 2024-10-11 00:00:10 +11 11 12 1.1 2.2 11 1970-01-12 2024-10-11 00:00:11.000 1970-01-12 2024-10-11 00:00:11 +12 12 13 1.2 2.4000000000000004 12 1970-01-13 2024-10-11 00:00:12.000 1970-01-13 2024-10-11 00:00:12 +13 13 14 1.3 2.6 13 1970-01-14 2024-10-11 00:00:13.000 1970-01-14 2024-10-11 00:00:13 +14 14 15 1.4 2.8000000000000003 14 1970-01-15 2024-10-11 00:00:14.000 1970-01-15 2024-10-11 00:00:14 +15 15 16 1.5 3 15 1970-01-16 2024-10-11 00:00:15.000 1970-01-16 2024-10-11 00:00:15 +16 16 17 1.6 3.2 16 1970-01-17 2024-10-11 00:00:16.000 1970-01-17 2024-10-11 00:00:16 +17 17 18 1.7 3.4000000000000004 17 1970-01-18 2024-10-11 00:00:17.000 1970-01-18 2024-10-11 00:00:17 +18 18 19 1.8 3.6 18 1970-01-19 2024-10-11 00:00:18.000 1970-01-19 2024-10-11 00:00:18 +19 19 20 1.9 3.8000000000000003 19 1970-01-20 2024-10-11 00:00:19.000 1970-01-20 2024-10-11 00:00:19 +20 20 21 2 4 20 1970-01-21 2024-10-11 00:00:20.000 1970-01-21 2024-10-11 00:00:20 +select * from test_native_parquet where i32 > 9990; +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9995 9995 9996 999.5 1999 9995 1997-05-14 2024-10-11 02:46:35.000 1997-05-14 2024-10-11 02:46:35 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +select * from test_native_parquet where i32 >= 9990; +9990 9990 9991 999 1998 9990 1997-05-09 2024-10-11 02:46:30.000 1997-05-09 2024-10-11 02:46:30 +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9995 9995 9996 999.5 1999 9995 1997-05-14 2024-10-11 02:46:35.000 1997-05-14 2024-10-11 02:46:35 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +-- test int64 +select sum(i64) from test_native_parquet; +50005000 +select * from test_native_parquet where i64 < 10; +0 0 1 0 0 0 1970-01-01 2024-10-11 00:00:00.000 1970-01-01 2024-10-11 00:00:00 +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +5 5 6 0.5 1 5 1970-01-06 2024-10-11 00:00:05.000 1970-01-06 2024-10-11 00:00:05 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +select * from test_native_parquet where i64 <= 10; +0 0 1 0 0 0 1970-01-01 2024-10-11 00:00:00.000 1970-01-01 2024-10-11 00:00:00 +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +5 5 6 0.5 1 5 1970-01-06 2024-10-11 00:00:05.000 1970-01-06 2024-10-11 00:00:05 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +select * from test_native_parquet where i64 between 10 and 20; +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +10 10 11 1 2 10 1970-01-11 2024-10-11 00:00:10.000 1970-01-11 2024-10-11 00:00:10 +11 11 12 1.1 2.2 11 1970-01-12 2024-10-11 00:00:11.000 1970-01-12 2024-10-11 00:00:11 +12 12 13 1.2 2.4000000000000004 12 1970-01-13 2024-10-11 00:00:12.000 1970-01-13 2024-10-11 00:00:12 +13 13 14 1.3 2.6 13 1970-01-14 2024-10-11 00:00:13.000 1970-01-14 2024-10-11 00:00:13 +14 14 15 1.4 2.8000000000000003 14 1970-01-15 2024-10-11 00:00:14.000 1970-01-15 2024-10-11 00:00:14 +15 15 16 1.5 3 15 1970-01-16 2024-10-11 00:00:15.000 1970-01-16 2024-10-11 00:00:15 +16 16 17 1.6 3.2 16 1970-01-17 2024-10-11 00:00:16.000 1970-01-17 2024-10-11 00:00:16 +17 17 18 1.7 3.4000000000000004 17 1970-01-18 2024-10-11 00:00:17.000 1970-01-18 2024-10-11 00:00:17 +18 18 19 1.8 3.6 18 1970-01-19 2024-10-11 00:00:18.000 1970-01-19 2024-10-11 00:00:18 +19 19 20 1.9 3.8000000000000003 19 1970-01-20 2024-10-11 00:00:19.000 1970-01-20 2024-10-11 00:00:19 +select * from test_native_parquet where i64 > 9990; +9990 9990 9991 999 1998 9990 1997-05-09 2024-10-11 02:46:30.000 1997-05-09 2024-10-11 02:46:30 +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9995 9995 9996 999.5 1999 9995 1997-05-14 2024-10-11 02:46:35.000 1997-05-14 2024-10-11 02:46:35 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +select * from test_native_parquet where i64 >= 9990; +9989 9989 9990 998.9 1997.8000000000002 9989 1997-05-08 2024-10-11 02:46:29.000 1997-05-08 2024-10-11 02:46:29 +9990 9990 9991 999 1998 9990 1997-05-09 2024-10-11 02:46:30.000 1997-05-09 2024-10-11 02:46:30 +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9995 9995 9996 999.5 1999 9995 1997-05-14 2024-10-11 02:46:35.000 1997-05-14 2024-10-11 02:46:35 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +-- test float +select sum(float) from test_native_parquet; +4999500.000000022 +select * from test_native_parquet where float < 1; +0 0 1 0 0 0 1970-01-01 2024-10-11 00:00:00.000 1970-01-01 2024-10-11 00:00:00 +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +5 5 6 0.5 1 5 1970-01-06 2024-10-11 00:00:05.000 1970-01-06 2024-10-11 00:00:05 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +select * from test_native_parquet where float <= 1; +0 0 1 0 0 0 1970-01-01 2024-10-11 00:00:00.000 1970-01-01 2024-10-11 00:00:00 +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +5 5 6 0.5 1 5 1970-01-06 2024-10-11 00:00:05.000 1970-01-06 2024-10-11 00:00:05 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +10 10 11 1 2 10 1970-01-11 2024-10-11 00:00:10.000 1970-01-11 2024-10-11 00:00:10 +select * from test_native_parquet where float between 1 and 2; +10 10 11 1 2 10 1970-01-11 2024-10-11 00:00:10.000 1970-01-11 2024-10-11 00:00:10 +11 11 12 1.1 2.2 11 1970-01-12 2024-10-11 00:00:11.000 1970-01-12 2024-10-11 00:00:11 +12 12 13 1.2 2.4000000000000004 12 1970-01-13 2024-10-11 00:00:12.000 1970-01-13 2024-10-11 00:00:12 +13 13 14 1.3 2.6 13 1970-01-14 2024-10-11 00:00:13.000 1970-01-14 2024-10-11 00:00:13 +14 14 15 1.4 2.8000000000000003 14 1970-01-15 2024-10-11 00:00:14.000 1970-01-15 2024-10-11 00:00:14 +15 15 16 1.5 3 15 1970-01-16 2024-10-11 00:00:15.000 1970-01-16 2024-10-11 00:00:15 +16 16 17 1.6 3.2 16 1970-01-17 2024-10-11 00:00:16.000 1970-01-17 2024-10-11 00:00:16 +17 17 18 1.7 3.4000000000000004 17 1970-01-18 2024-10-11 00:00:17.000 1970-01-18 2024-10-11 00:00:17 +18 18 19 1.8 3.6 18 1970-01-19 2024-10-11 00:00:18.000 1970-01-19 2024-10-11 00:00:18 +19 19 20 1.9 3.8000000000000003 19 1970-01-20 2024-10-11 00:00:19.000 1970-01-20 2024-10-11 00:00:19 +20 20 21 2 4 20 1970-01-21 2024-10-11 00:00:20.000 1970-01-21 2024-10-11 00:00:20 +select * from test_native_parquet where float > 999; +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9995 9995 9996 999.5 1999 9995 1997-05-14 2024-10-11 02:46:35.000 1997-05-14 2024-10-11 02:46:35 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +select * from test_native_parquet where float >= 999; +9990 9990 9991 999 1998 9990 1997-05-09 2024-10-11 02:46:30.000 1997-05-09 2024-10-11 02:46:30 +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9995 9995 9996 999.5 1999 9995 1997-05-14 2024-10-11 02:46:35.000 1997-05-14 2024-10-11 02:46:35 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +-- test double +select sum(double) from test_native_parquet; +9999000 +select * from test_native_parquet where double < 2; +0 0 1 0 0 0 1970-01-01 2024-10-11 00:00:00.000 1970-01-01 2024-10-11 00:00:00 +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +5 5 6 0.5 1 5 1970-01-06 2024-10-11 00:00:05.000 1970-01-06 2024-10-11 00:00:05 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +select * from test_native_parquet where double <= 2; +0 0 1 0 0 0 1970-01-01 2024-10-11 00:00:00.000 1970-01-01 2024-10-11 00:00:00 +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +5 5 6 0.5 1 5 1970-01-06 2024-10-11 00:00:05.000 1970-01-06 2024-10-11 00:00:05 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +10 10 11 1 2 10 1970-01-11 2024-10-11 00:00:10.000 1970-01-11 2024-10-11 00:00:10 +select * from test_native_parquet where double between 2 and 4; +10 10 11 1 2 10 1970-01-11 2024-10-11 00:00:10.000 1970-01-11 2024-10-11 00:00:10 +11 11 12 1.1 2.2 11 1970-01-12 2024-10-11 00:00:11.000 1970-01-12 2024-10-11 00:00:11 +12 12 13 1.2 2.4000000000000004 12 1970-01-13 2024-10-11 00:00:12.000 1970-01-13 2024-10-11 00:00:12 +13 13 14 1.3 2.6 13 1970-01-14 2024-10-11 00:00:13.000 1970-01-14 2024-10-11 00:00:13 +14 14 15 1.4 2.8000000000000003 14 1970-01-15 2024-10-11 00:00:14.000 1970-01-15 2024-10-11 00:00:14 +15 15 16 1.5 3 15 1970-01-16 2024-10-11 00:00:15.000 1970-01-16 2024-10-11 00:00:15 +16 16 17 1.6 3.2 16 1970-01-17 2024-10-11 00:00:16.000 1970-01-17 2024-10-11 00:00:16 +17 17 18 1.7 3.4000000000000004 17 1970-01-18 2024-10-11 00:00:17.000 1970-01-18 2024-10-11 00:00:17 +18 18 19 1.8 3.6 18 1970-01-19 2024-10-11 00:00:18.000 1970-01-19 2024-10-11 00:00:18 +19 19 20 1.9 3.8000000000000003 19 1970-01-20 2024-10-11 00:00:19.000 1970-01-20 2024-10-11 00:00:19 +20 20 21 2 4 20 1970-01-21 2024-10-11 00:00:20.000 1970-01-21 2024-10-11 00:00:20 +select * from test_native_parquet where double > 9990 *0.2; +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9995 9995 9996 999.5 1999 9995 1997-05-14 2024-10-11 02:46:35.000 1997-05-14 2024-10-11 02:46:35 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +select * from test_native_parquet where double >= 9990 *0.2; +9990 9990 9991 999 1998 9990 1997-05-09 2024-10-11 02:46:30.000 1997-05-09 2024-10-11 02:46:30 +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9995 9995 9996 999.5 1999 9995 1997-05-14 2024-10-11 02:46:35.000 1997-05-14 2024-10-11 02:46:35 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +-- test date +select max(date32) from test_native_parquet; +1997-05-18 +select * from test_native_parquet where date32 < '1970-01-10'; +0 0 1 0 0 0 1970-01-01 2024-10-11 00:00:00.000 1970-01-01 2024-10-11 00:00:00 +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +5 5 6 0.5 1 5 1970-01-06 2024-10-11 00:00:05.000 1970-01-06 2024-10-11 00:00:05 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +select * from test_native_parquet where date32 <= '1970-01-10'; +0 0 1 0 0 0 1970-01-01 2024-10-11 00:00:00.000 1970-01-01 2024-10-11 00:00:00 +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +5 5 6 0.5 1 5 1970-01-06 2024-10-11 00:00:05.000 1970-01-06 2024-10-11 00:00:05 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +select * from test_native_parquet where date32 between '1970-01-10' and '1970-01-20'; +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +10 10 11 1 2 10 1970-01-11 2024-10-11 00:00:10.000 1970-01-11 2024-10-11 00:00:10 +11 11 12 1.1 2.2 11 1970-01-12 2024-10-11 00:00:11.000 1970-01-12 2024-10-11 00:00:11 +12 12 13 1.2 2.4000000000000004 12 1970-01-13 2024-10-11 00:00:12.000 1970-01-13 2024-10-11 00:00:12 +13 13 14 1.3 2.6 13 1970-01-14 2024-10-11 00:00:13.000 1970-01-14 2024-10-11 00:00:13 +14 14 15 1.4 2.8000000000000003 14 1970-01-15 2024-10-11 00:00:14.000 1970-01-15 2024-10-11 00:00:14 +15 15 16 1.5 3 15 1970-01-16 2024-10-11 00:00:15.000 1970-01-16 2024-10-11 00:00:15 +16 16 17 1.6 3.2 16 1970-01-17 2024-10-11 00:00:16.000 1970-01-17 2024-10-11 00:00:16 +17 17 18 1.7 3.4000000000000004 17 1970-01-18 2024-10-11 00:00:17.000 1970-01-18 2024-10-11 00:00:17 +18 18 19 1.8 3.6 18 1970-01-19 2024-10-11 00:00:18.000 1970-01-19 2024-10-11 00:00:18 +19 19 20 1.9 3.8000000000000003 19 1970-01-20 2024-10-11 00:00:19.000 1970-01-20 2024-10-11 00:00:19 +select * from test_native_parquet where date32 > '1970-01-10'; +10 10 11 1 2 10 1970-01-11 2024-10-11 00:00:10.000 1970-01-11 2024-10-11 00:00:10 +11 11 12 1.1 2.2 11 1970-01-12 2024-10-11 00:00:11.000 1970-01-12 2024-10-11 00:00:11 +12 12 13 1.2 2.4000000000000004 12 1970-01-13 2024-10-11 00:00:12.000 1970-01-13 2024-10-11 00:00:12 +13 13 14 1.3 2.6 13 1970-01-14 2024-10-11 00:00:13.000 1970-01-14 2024-10-11 00:00:13 +14 14 15 1.4 2.8000000000000003 14 1970-01-15 2024-10-11 00:00:14.000 1970-01-15 2024-10-11 00:00:14 +15 15 16 1.5 3 15 1970-01-16 2024-10-11 00:00:15.000 1970-01-16 2024-10-11 00:00:15 +16 16 17 1.6 3.2 16 1970-01-17 2024-10-11 00:00:16.000 1970-01-17 2024-10-11 00:00:16 +17 17 18 1.7 3.4000000000000004 17 1970-01-18 2024-10-11 00:00:17.000 1970-01-18 2024-10-11 00:00:17 +18 18 19 1.8 3.6 18 1970-01-19 2024-10-11 00:00:18.000 1970-01-19 2024-10-11 00:00:18 +19 19 20 1.9 3.8000000000000003 19 1970-01-20 2024-10-11 00:00:19.000 1970-01-20 2024-10-11 00:00:19 +20 20 21 2 4 20 1970-01-21 2024-10-11 00:00:20.000 1970-01-21 2024-10-11 00:00:20 +21 21 22 2.1 4.2 21 1970-01-22 2024-10-11 00:00:21.000 1970-01-22 2024-10-11 00:00:21 +22 22 23 2.2 4.4 22 1970-01-23 2024-10-11 00:00:22.000 1970-01-23 2024-10-11 00:00:22 +23 23 24 2.3 4.6000000000000005 23 1970-01-24 2024-10-11 00:00:23.000 1970-01-24 2024-10-11 00:00:23 +24 24 25 2.4 4.800000000000001 24 1970-01-25 2024-10-11 00:00:24.000 1970-01-25 2024-10-11 00:00:24 +25 25 26 2.5 5 25 1970-01-26 2024-10-11 00:00:25.000 1970-01-26 2024-10-11 00:00:25 +26 26 27 2.6 5.2 26 1970-01-27 2024-10-11 00:00:26.000 1970-01-27 2024-10-11 00:00:26 +27 27 28 2.7 5.4 27 1970-01-28 2024-10-11 00:00:27.000 1970-01-28 2024-10-11 00:00:27 +28 28 29 2.8 5.6000000000000005 28 1970-01-29 2024-10-11 00:00:28.000 1970-01-29 2024-10-11 00:00:28 +29 29 30 2.9 5.800000000000001 29 1970-01-30 2024-10-11 00:00:29.000 1970-01-30 2024-10-11 00:00:29 +30 30 31 3 6 30 1970-01-31 2024-10-11 00:00:30.000 1970-01-31 2024-10-11 00:00:30 +31 31 32 3.1 6.2 31 1970-02-01 2024-10-11 00:00:31.000 1970-02-01 2024-10-11 00:00:31 +32 32 33 3.2 6.4 32 1970-02-02 2024-10-11 00:00:32.000 1970-02-02 2024-10-11 00:00:32 +33 33 34 3.3 6.6000000000000005 33 1970-02-03 2024-10-11 00:00:33.000 1970-02-03 2024-10-11 00:00:33 +34 34 35 3.4 6.800000000000001 34 1970-02-04 2024-10-11 00:00:34.000 1970-02-04 2024-10-11 00:00:34 +35 35 36 3.5 7 35 1970-02-05 2024-10-11 00:00:35.000 1970-02-05 2024-10-11 00:00:35 +36 36 37 3.6 7.2 36 1970-02-06 2024-10-11 00:00:36.000 1970-02-06 2024-10-11 00:00:36 +37 37 38 3.7 7.4 37 1970-02-07 2024-10-11 00:00:37.000 1970-02-07 2024-10-11 00:00:37 +38 38 39 3.8 7.6000000000000005 38 1970-02-08 2024-10-11 00:00:38.000 1970-02-08 2024-10-11 00:00:38 +39 39 40 3.9 7.800000000000001 39 1970-02-09 2024-10-11 00:00:39.000 1970-02-09 2024-10-11 00:00:39 +40 40 41 4 8 40 1970-02-10 2024-10-11 00:00:40.000 1970-02-10 2024-10-11 00:00:40 +41 41 42 4.1 8.200000000000001 41 1970-02-11 2024-10-11 00:00:41.000 1970-02-11 2024-10-11 00:00:41 +42 42 43 4.2 8.4 42 1970-02-12 2024-10-11 00:00:42.000 1970-02-12 2024-10-11 00:00:42 +43 43 44 4.3 8.6 43 1970-02-13 2024-10-11 00:00:43.000 1970-02-13 2024-10-11 00:00:43 +44 44 45 4.4 8.8 44 1970-02-14 2024-10-11 00:00:44.000 1970-02-14 2024-10-11 00:00:44 +45 45 46 4.5 9 45 1970-02-15 2024-10-11 00:00:45.000 1970-02-15 2024-10-11 00:00:45 +46 46 47 4.6 9.200000000000001 46 1970-02-16 2024-10-11 00:00:46.000 1970-02-16 2024-10-11 00:00:46 +47 47 48 4.7 9.4 47 1970-02-17 2024-10-11 00:00:47.000 1970-02-17 2024-10-11 00:00:47 +48 48 49 4.8 9.600000000000001 48 1970-02-18 2024-10-11 00:00:48.000 1970-02-18 2024-10-11 00:00:48 +49 49 50 4.9 9.8 49 1970-02-19 2024-10-11 00:00:49.000 1970-02-19 2024-10-11 00:00:49 +50 50 51 5 10 50 1970-02-20 2024-10-11 00:00:50.000 1970-02-20 2024-10-11 00:00:50 +51 51 52 5.1 10.200000000000001 51 1970-02-21 2024-10-11 00:00:51.000 1970-02-21 2024-10-11 00:00:51 +52 52 53 5.2 10.4 52 1970-02-22 2024-10-11 00:00:52.000 1970-02-22 2024-10-11 00:00:52 +53 53 54 5.3 10.600000000000001 53 1970-02-23 2024-10-11 00:00:53.000 1970-02-23 2024-10-11 00:00:53 +54 54 55 5.4 10.8 54 1970-02-24 2024-10-11 00:00:54.000 1970-02-24 2024-10-11 00:00:54 +55 55 56 5.5 11 55 1970-02-25 2024-10-11 00:00:55.000 1970-02-25 2024-10-11 00:00:55 +56 56 57 5.6 11.200000000000001 56 1970-02-26 2024-10-11 00:00:56.000 1970-02-26 2024-10-11 00:00:56 +57 57 58 5.7 11.4 57 1970-02-27 2024-10-11 00:00:57.000 1970-02-27 2024-10-11 00:00:57 +58 58 59 5.8 11.600000000000001 58 1970-02-28 2024-10-11 00:00:58.000 1970-02-28 2024-10-11 00:00:58 +59 59 60 5.9 11.8 59 1970-03-01 2024-10-11 00:00:59.000 1970-03-01 2024-10-11 00:00:59 +60 60 61 6 12 60 1970-03-02 2024-10-11 00:01:00.000 1970-03-02 2024-10-11 00:01:00 +61 61 62 6.1 12.200000000000001 61 1970-03-03 2024-10-11 00:01:01.000 1970-03-03 2024-10-11 00:01:01 +62 62 63 6.2 12.4 62 1970-03-04 2024-10-11 00:01:02.000 1970-03-04 2024-10-11 00:01:02 +63 63 64 6.3 12.600000000000001 63 1970-03-05 2024-10-11 00:01:03.000 1970-03-05 2024-10-11 00:01:03 +64 64 65 6.4 12.8 64 1970-03-06 2024-10-11 00:01:04.000 1970-03-06 2024-10-11 00:01:04 +65 65 66 6.5 13 65 1970-03-07 2024-10-11 00:01:05.000 1970-03-07 2024-10-11 00:01:05 +66 66 67 6.6 13.200000000000001 66 1970-03-08 2024-10-11 00:01:06.000 1970-03-08 2024-10-11 00:01:06 +67 67 68 6.7 13.4 67 1970-03-09 2024-10-11 00:01:07.000 1970-03-09 2024-10-11 00:01:07 +68 68 69 6.8 13.600000000000001 68 1970-03-10 2024-10-11 00:01:08.000 1970-03-10 2024-10-11 00:01:08 +69 69 70 6.9 13.8 69 1970-03-11 2024-10-11 00:01:09.000 1970-03-11 2024-10-11 00:01:09 +70 70 71 7 14 70 1970-03-12 2024-10-11 00:01:10.000 1970-03-12 2024-10-11 00:01:10 +71 71 72 7.1 14.200000000000001 71 1970-03-13 2024-10-11 00:01:11.000 1970-03-13 2024-10-11 00:01:11 +72 72 73 7.2 14.4 72 1970-03-14 2024-10-11 00:01:12.000 1970-03-14 2024-10-11 00:01:12 +73 73 74 7.3 14.600000000000001 73 1970-03-15 2024-10-11 00:01:13.000 1970-03-15 2024-10-11 00:01:13 +74 74 75 7.4 14.8 74 1970-03-16 2024-10-11 00:01:14.000 1970-03-16 2024-10-11 00:01:14 +75 75 76 7.5 15 75 1970-03-17 2024-10-11 00:01:15.000 1970-03-17 2024-10-11 00:01:15 +76 76 77 7.6 15.200000000000001 76 1970-03-18 2024-10-11 00:01:16.000 1970-03-18 2024-10-11 00:01:16 +77 77 78 7.7 15.4 77 1970-03-19 2024-10-11 00:01:17.000 1970-03-19 2024-10-11 00:01:17 +78 78 79 7.8 15.600000000000001 78 1970-03-20 2024-10-11 00:01:18.000 1970-03-20 2024-10-11 00:01:18 +79 79 80 7.9 15.8 79 1970-03-21 2024-10-11 00:01:19.000 1970-03-21 2024-10-11 00:01:19 +80 80 81 8 16 80 1970-03-22 2024-10-11 00:01:20.000 1970-03-22 2024-10-11 00:01:20 +81 81 82 8.1 16.2 81 1970-03-23 2024-10-11 00:01:21.000 1970-03-23 2024-10-11 00:01:21 +82 82 83 8.2 16.400000000000002 82 1970-03-24 2024-10-11 00:01:22.000 1970-03-24 2024-10-11 00:01:22 +83 83 84 8.3 16.6 83 1970-03-25 2024-10-11 00:01:23.000 1970-03-25 2024-10-11 00:01:23 +84 84 85 8.4 16.8 84 1970-03-26 2024-10-11 00:01:24.000 1970-03-26 2024-10-11 00:01:24 +85 85 86 8.5 17 85 1970-03-27 2024-10-11 00:01:25.000 1970-03-27 2024-10-11 00:01:25 +86 86 87 8.6 17.2 86 1970-03-28 2024-10-11 00:01:26.000 1970-03-28 2024-10-11 00:01:26 +87 87 88 8.7 17.400000000000002 87 1970-03-29 2024-10-11 00:01:27.000 1970-03-29 2024-10-11 00:01:27 +88 88 89 8.8 17.6 88 1970-03-30 2024-10-11 00:01:28.000 1970-03-30 2024-10-11 00:01:28 +89 89 90 8.9 17.8 89 1970-03-31 2024-10-11 00:01:29.000 1970-03-31 2024-10-11 00:01:29 +90 90 91 9 18 90 1970-04-01 2024-10-11 00:01:30.000 1970-04-01 2024-10-11 00:01:30 +91 91 92 9.1 18.2 91 1970-04-02 2024-10-11 00:01:31.000 1970-04-02 2024-10-11 00:01:31 +92 92 93 9.2 18.400000000000002 92 1970-04-03 2024-10-11 00:01:32.000 1970-04-03 2024-10-11 00:01:32 +93 93 94 9.3 18.6 93 1970-04-04 2024-10-11 00:01:33.000 1970-04-04 2024-10-11 00:01:33 +94 94 95 9.4 18.8 94 1970-04-05 2024-10-11 00:01:34.000 1970-04-05 2024-10-11 00:01:34 +95 95 96 9.5 19 95 1970-04-06 2024-10-11 00:01:35.000 1970-04-06 2024-10-11 00:01:35 +96 96 97 9.6 19.200000000000003 96 1970-04-07 2024-10-11 00:01:36.000 1970-04-07 2024-10-11 00:01:36 +97 97 98 9.7 19.400000000000002 97 1970-04-08 2024-10-11 00:01:37.000 1970-04-08 2024-10-11 00:01:37 +98 98 99 9.8 19.6 98 1970-04-09 2024-10-11 00:01:38.000 1970-04-09 2024-10-11 00:01:38 +99 99 100 9.9 19.8 99 1970-04-10 2024-10-11 00:01:39.000 1970-04-10 2024-10-11 00:01:39 +100 100 101 10 20 100 1970-04-11 2024-10-11 00:01:40.000 1970-04-11 2024-10-11 00:01:40 +101 101 102 10.1 20.200000000000003 101 1970-04-12 2024-10-11 00:01:41.000 1970-04-12 2024-10-11 00:01:41 +102 102 103 10.2 20.400000000000002 102 1970-04-13 2024-10-11 00:01:42.000 1970-04-13 2024-10-11 00:01:42 +103 103 104 10.3 20.6 103 1970-04-14 2024-10-11 00:01:43.000 1970-04-14 2024-10-11 00:01:43 +104 104 105 10.4 20.8 104 1970-04-15 2024-10-11 00:01:44.000 1970-04-15 2024-10-11 00:01:44 +105 105 106 10.5 21 105 1970-04-16 2024-10-11 00:01:45.000 1970-04-16 2024-10-11 00:01:45 +106 106 107 10.6 21.200000000000003 106 1970-04-17 2024-10-11 00:01:46.000 1970-04-17 2024-10-11 00:01:46 +107 107 108 10.7 21.400000000000002 107 1970-04-18 2024-10-11 00:01:47.000 1970-04-18 2024-10-11 00:01:47 +108 108 109 10.8 21.6 108 1970-04-19 2024-10-11 00:01:48.000 1970-04-19 2024-10-11 00:01:48 +109 109 110 10.9 21.8 109 1970-04-20 2024-10-11 00:01:49.000 1970-04-20 2024-10-11 00:01:49 +110 110 111 11 22 110 1970-04-21 2024-10-11 00:01:50.000 1970-04-21 2024-10-11 00:01:50 +111 111 112 11.1 22.200000000000003 111 1970-04-22 2024-10-11 00:01:51.000 1970-04-22 2024-10-11 00:01:51 +112 112 113 11.2 22.400000000000002 112 1970-04-23 2024-10-11 00:01:52.000 1970-04-23 2024-10-11 00:01:52 +113 113 114 11.3 22.6 113 1970-04-24 2024-10-11 00:01:53.000 1970-04-24 2024-10-11 00:01:53 +114 114 115 11.4 22.8 114 1970-04-25 2024-10-11 00:01:54.000 1970-04-25 2024-10-11 00:01:54 +115 115 116 11.5 23 115 1970-04-26 2024-10-11 00:01:55.000 1970-04-26 2024-10-11 00:01:55 +116 116 117 11.6 23.200000000000003 116 1970-04-27 2024-10-11 00:01:56.000 1970-04-27 2024-10-11 00:01:56 +117 117 118 11.7 23.400000000000002 117 1970-04-28 2024-10-11 00:01:57.000 1970-04-28 2024-10-11 00:01:57 +118 118 119 11.8 23.6 118 1970-04-29 2024-10-11 00:01:58.000 1970-04-29 2024-10-11 00:01:58 +119 119 120 11.9 23.8 119 1970-04-30 2024-10-11 00:01:59.000 1970-04-30 2024-10-11 00:01:59 +120 120 121 12 24 120 1970-05-01 2024-10-11 00:02:00.000 1970-05-01 2024-10-11 00:02:00 +121 121 122 12.1 24.200000000000003 121 1970-05-02 2024-10-11 00:02:01.000 1970-05-02 2024-10-11 00:02:01 +122 122 123 12.2 24.400000000000002 122 1970-05-03 2024-10-11 00:02:02.000 1970-05-03 2024-10-11 00:02:02 +123 123 124 12.3 24.6 123 1970-05-04 2024-10-11 00:02:03.000 1970-05-04 2024-10-11 00:02:03 +124 124 125 12.4 24.8 124 1970-05-05 2024-10-11 00:02:04.000 1970-05-05 2024-10-11 00:02:04 +125 125 126 12.5 25 125 1970-05-06 2024-10-11 00:02:05.000 1970-05-06 2024-10-11 00:02:05 +126 126 127 12.6 25.200000000000003 126 1970-05-07 2024-10-11 00:02:06.000 1970-05-07 2024-10-11 00:02:06 +127 127 128 12.7 25.400000000000002 127 1970-05-08 2024-10-11 00:02:07.000 1970-05-08 2024-10-11 00:02:07 +128 128 129 12.8 25.6 128 1970-05-09 2024-10-11 00:02:08.000 1970-05-09 2024-10-11 00:02:08 +129 129 130 12.9 25.8 129 1970-05-10 2024-10-11 00:02:09.000 1970-05-10 2024-10-11 00:02:09 +130 130 131 13 26 130 1970-05-11 2024-10-11 00:02:10.000 1970-05-11 2024-10-11 00:02:10 +131 131 132 13.1 26.200000000000003 131 1970-05-12 2024-10-11 00:02:11.000 1970-05-12 2024-10-11 00:02:11 +132 132 133 13.2 26.400000000000002 132 1970-05-13 2024-10-11 00:02:12.000 1970-05-13 2024-10-11 00:02:12 +133 133 134 13.3 26.6 133 1970-05-14 2024-10-11 00:02:13.000 1970-05-14 2024-10-11 00:02:13 +134 134 135 13.4 26.8 134 1970-05-15 2024-10-11 00:02:14.000 1970-05-15 2024-10-11 00:02:14 +135 135 136 13.5 27 135 1970-05-16 2024-10-11 00:02:15.000 1970-05-16 2024-10-11 00:02:15 +136 136 137 13.6 27.200000000000003 136 1970-05-17 2024-10-11 00:02:16.000 1970-05-17 2024-10-11 00:02:16 +137 137 138 13.7 27.400000000000002 137 1970-05-18 2024-10-11 00:02:17.000 1970-05-18 2024-10-11 00:02:17 +138 138 139 13.8 27.6 138 1970-05-19 2024-10-11 00:02:18.000 1970-05-19 2024-10-11 00:02:18 +139 139 140 13.9 27.8 139 1970-05-20 2024-10-11 00:02:19.000 1970-05-20 2024-10-11 00:02:19 +140 140 141 14 28 140 1970-05-21 2024-10-11 00:02:20.000 1970-05-21 2024-10-11 00:02:20 +141 141 142 14.1 28.200000000000003 141 1970-05-22 2024-10-11 00:02:21.000 1970-05-22 2024-10-11 00:02:21 +142 142 143 14.2 28.400000000000002 142 1970-05-23 2024-10-11 00:02:22.000 1970-05-23 2024-10-11 00:02:22 +143 143 144 14.3 28.6 143 1970-05-24 2024-10-11 00:02:23.000 1970-05-24 2024-10-11 00:02:23 +144 144 145 14.4 28.8 144 1970-05-25 2024-10-11 00:02:24.000 1970-05-25 2024-10-11 00:02:24 +145 145 146 14.5 29 145 1970-05-26 2024-10-11 00:02:25.000 1970-05-26 2024-10-11 00:02:25 +146 146 147 14.6 29.200000000000003 146 1970-05-27 2024-10-11 00:02:26.000 1970-05-27 2024-10-11 00:02:26 +147 147 148 14.7 29.400000000000002 147 1970-05-28 2024-10-11 00:02:27.000 1970-05-28 2024-10-11 00:02:27 +148 148 149 14.8 29.6 148 1970-05-29 2024-10-11 00:02:28.000 1970-05-29 2024-10-11 00:02:28 +149 149 150 14.9 29.8 149 1970-05-30 2024-10-11 00:02:29.000 1970-05-30 2024-10-11 00:02:29 +150 150 151 15 30 150 1970-05-31 2024-10-11 00:02:30.000 1970-05-31 2024-10-11 00:02:30 +151 151 152 15.1 30.200000000000003 151 1970-06-01 2024-10-11 00:02:31.000 1970-06-01 2024-10-11 00:02:31 +152 152 153 15.2 30.400000000000002 152 1970-06-02 2024-10-11 00:02:32.000 1970-06-02 2024-10-11 00:02:32 +153 153 154 15.3 30.6 153 1970-06-03 2024-10-11 00:02:33.000 1970-06-03 2024-10-11 00:02:33 +154 154 155 15.4 30.8 154 1970-06-04 2024-10-11 00:02:34.000 1970-06-04 2024-10-11 00:02:34 +155 155 156 15.5 31 155 1970-06-05 2024-10-11 00:02:35.000 1970-06-05 2024-10-11 00:02:35 +156 156 157 15.6 31.200000000000003 156 1970-06-06 2024-10-11 00:02:36.000 1970-06-06 2024-10-11 00:02:36 +157 157 158 15.7 31.400000000000002 157 1970-06-07 2024-10-11 00:02:37.000 1970-06-07 2024-10-11 00:02:37 +158 158 159 15.8 31.6 158 1970-06-08 2024-10-11 00:02:38.000 1970-06-08 2024-10-11 00:02:38 +159 159 160 15.9 31.8 159 1970-06-09 2024-10-11 00:02:39.000 1970-06-09 2024-10-11 00:02:39 +160 160 161 16 32 160 1970-06-10 2024-10-11 00:02:40.000 1970-06-10 2024-10-11 00:02:40 +161 161 162 16.1 32.2 161 1970-06-11 2024-10-11 00:02:41.000 1970-06-11 2024-10-11 00:02:41 +162 162 163 16.2 32.4 162 1970-06-12 2024-10-11 00:02:42.000 1970-06-12 2024-10-11 00:02:42 +163 163 164 16.3 32.6 163 1970-06-13 2024-10-11 00:02:43.000 1970-06-13 2024-10-11 00:02:43 +164 164 165 16.4 32.800000000000004 164 1970-06-14 2024-10-11 00:02:44.000 1970-06-14 2024-10-11 00:02:44 +165 165 166 16.5 33 165 1970-06-15 2024-10-11 00:02:45.000 1970-06-15 2024-10-11 00:02:45 +166 166 167 16.6 33.2 166 1970-06-16 2024-10-11 00:02:46.000 1970-06-16 2024-10-11 00:02:46 +167 167 168 16.7 33.4 167 1970-06-17 2024-10-11 00:02:47.000 1970-06-17 2024-10-11 00:02:47 +168 168 169 16.8 33.6 168 1970-06-18 2024-10-11 00:02:48.000 1970-06-18 2024-10-11 00:02:48 +169 169 170 16.9 33.800000000000004 169 1970-06-19 2024-10-11 00:02:49.000 1970-06-19 2024-10-11 00:02:49 +170 170 171 17 34 170 1970-06-20 2024-10-11 00:02:50.000 1970-06-20 2024-10-11 00:02:50 +171 171 172 17.1 34.2 171 1970-06-21 2024-10-11 00:02:51.000 1970-06-21 2024-10-11 00:02:51 +172 172 173 17.2 34.4 172 1970-06-22 2024-10-11 00:02:52.000 1970-06-22 2024-10-11 00:02:52 +173 173 174 17.3 34.6 173 1970-06-23 2024-10-11 00:02:53.000 1970-06-23 2024-10-11 00:02:53 +174 174 175 17.4 34.800000000000004 174 1970-06-24 2024-10-11 00:02:54.000 1970-06-24 2024-10-11 00:02:54 +175 175 176 17.5 35 175 1970-06-25 2024-10-11 00:02:55.000 1970-06-25 2024-10-11 00:02:55 +176 176 177 17.6 35.2 176 1970-06-26 2024-10-11 00:02:56.000 1970-06-26 2024-10-11 00:02:56 +177 177 178 17.7 35.4 177 1970-06-27 2024-10-11 00:02:57.000 1970-06-27 2024-10-11 00:02:57 +178 178 179 17.8 35.6 178 1970-06-28 2024-10-11 00:02:58.000 1970-06-28 2024-10-11 00:02:58 +179 179 180 17.9 35.800000000000004 179 1970-06-29 2024-10-11 00:02:59.000 1970-06-29 2024-10-11 00:02:59 +180 180 181 18 36 180 1970-06-30 2024-10-11 00:03:00.000 1970-06-30 2024-10-11 00:03:00 +181 181 182 18.1 36.2 181 1970-07-01 2024-10-11 00:03:01.000 1970-07-01 2024-10-11 00:03:01 +182 182 183 18.2 36.4 182 1970-07-02 2024-10-11 00:03:02.000 1970-07-02 2024-10-11 00:03:02 +183 183 184 18.3 36.6 183 1970-07-03 2024-10-11 00:03:03.000 1970-07-03 2024-10-11 00:03:03 +184 184 185 18.4 36.800000000000004 184 1970-07-04 2024-10-11 00:03:04.000 1970-07-04 2024-10-11 00:03:04 +185 185 186 18.5 37 185 1970-07-05 2024-10-11 00:03:05.000 1970-07-05 2024-10-11 00:03:05 +186 186 187 18.6 37.2 186 1970-07-06 2024-10-11 00:03:06.000 1970-07-06 2024-10-11 00:03:06 +187 187 188 18.7 37.4 187 1970-07-07 2024-10-11 00:03:07.000 1970-07-07 2024-10-11 00:03:07 +188 188 189 18.8 37.6 188 1970-07-08 2024-10-11 00:03:08.000 1970-07-08 2024-10-11 00:03:08 +189 189 190 18.9 37.800000000000004 189 1970-07-09 2024-10-11 00:03:09.000 1970-07-09 2024-10-11 00:03:09 +190 190 191 19 38 190 1970-07-10 2024-10-11 00:03:10.000 1970-07-10 2024-10-11 00:03:10 +191 191 192 19.1 38.2 191 1970-07-11 2024-10-11 00:03:11.000 1970-07-11 2024-10-11 00:03:11 +192 192 193 19.2 38.400000000000006 192 1970-07-12 2024-10-11 00:03:12.000 1970-07-12 2024-10-11 00:03:12 +193 193 194 19.3 38.6 193 1970-07-13 2024-10-11 00:03:13.000 1970-07-13 2024-10-11 00:03:13 +194 194 195 19.4 38.800000000000004 194 1970-07-14 2024-10-11 00:03:14.000 1970-07-14 2024-10-11 00:03:14 +195 195 196 19.5 39 195 1970-07-15 2024-10-11 00:03:15.000 1970-07-15 2024-10-11 00:03:15 +196 196 197 19.6 39.2 196 1970-07-16 2024-10-11 00:03:16.000 1970-07-16 2024-10-11 00:03:16 +197 197 198 19.7 39.400000000000006 197 1970-07-17 2024-10-11 00:03:17.000 1970-07-17 2024-10-11 00:03:17 +198 198 199 19.8 39.6 198 1970-07-18 2024-10-11 00:03:18.000 1970-07-18 2024-10-11 00:03:18 +199 199 200 19.9 39.800000000000004 199 1970-07-19 2024-10-11 00:03:19.000 1970-07-19 2024-10-11 00:03:19 +200 200 201 20 40 200 1970-07-20 2024-10-11 00:03:20.000 1970-07-20 2024-10-11 00:03:20 +201 201 202 20.1 40.2 201 1970-07-21 2024-10-11 00:03:21.000 1970-07-21 2024-10-11 00:03:21 +202 202 203 20.2 40.400000000000006 202 1970-07-22 2024-10-11 00:03:22.000 1970-07-22 2024-10-11 00:03:22 +203 203 204 20.3 40.6 203 1970-07-23 2024-10-11 00:03:23.000 1970-07-23 2024-10-11 00:03:23 +204 204 205 20.4 40.800000000000004 204 1970-07-24 2024-10-11 00:03:24.000 1970-07-24 2024-10-11 00:03:24 +205 205 206 20.5 41 205 1970-07-25 2024-10-11 00:03:25.000 1970-07-25 2024-10-11 00:03:25 +206 206 207 20.6 41.2 206 1970-07-26 2024-10-11 00:03:26.000 1970-07-26 2024-10-11 00:03:26 +207 207 208 20.7 41.400000000000006 207 1970-07-27 2024-10-11 00:03:27.000 1970-07-27 2024-10-11 00:03:27 +208 208 209 20.8 41.6 208 1970-07-28 2024-10-11 00:03:28.000 1970-07-28 2024-10-11 00:03:28 +209 209 210 20.9 41.800000000000004 209 1970-07-29 2024-10-11 00:03:29.000 1970-07-29 2024-10-11 00:03:29 +210 210 211 21 42 210 1970-07-30 2024-10-11 00:03:30.000 1970-07-30 2024-10-11 00:03:30 +211 211 212 21.1 42.2 211 1970-07-31 2024-10-11 00:03:31.000 1970-07-31 2024-10-11 00:03:31 +212 212 213 21.2 42.400000000000006 212 1970-08-01 2024-10-11 00:03:32.000 1970-08-01 2024-10-11 00:03:32 +213 213 214 21.3 42.6 213 1970-08-02 2024-10-11 00:03:33.000 1970-08-02 2024-10-11 00:03:33 +214 214 215 21.4 42.800000000000004 214 1970-08-03 2024-10-11 00:03:34.000 1970-08-03 2024-10-11 00:03:34 +215 215 216 21.5 43 215 1970-08-04 2024-10-11 00:03:35.000 1970-08-04 2024-10-11 00:03:35 +216 216 217 21.6 43.2 216 1970-08-05 2024-10-11 00:03:36.000 1970-08-05 2024-10-11 00:03:36 +217 217 218 21.7 43.400000000000006 217 1970-08-06 2024-10-11 00:03:37.000 1970-08-06 2024-10-11 00:03:37 +218 218 219 21.8 43.6 218 1970-08-07 2024-10-11 00:03:38.000 1970-08-07 2024-10-11 00:03:38 +219 219 220 21.9 43.800000000000004 219 1970-08-08 2024-10-11 00:03:39.000 1970-08-08 2024-10-11 00:03:39 +220 220 221 22 44 220 1970-08-09 2024-10-11 00:03:40.000 1970-08-09 2024-10-11 00:03:40 +221 221 222 22.1 44.2 221 1970-08-10 2024-10-11 00:03:41.000 1970-08-10 2024-10-11 00:03:41 +222 222 223 22.2 44.400000000000006 222 1970-08-11 2024-10-11 00:03:42.000 1970-08-11 2024-10-11 00:03:42 +223 223 224 22.3 44.6 223 1970-08-12 2024-10-11 00:03:43.000 1970-08-12 2024-10-11 00:03:43 +224 224 225 22.4 44.800000000000004 224 1970-08-13 2024-10-11 00:03:44.000 1970-08-13 2024-10-11 00:03:44 +225 225 226 22.5 45 225 1970-08-14 2024-10-11 00:03:45.000 1970-08-14 2024-10-11 00:03:45 +226 226 227 22.6 45.2 226 1970-08-15 2024-10-11 00:03:46.000 1970-08-15 2024-10-11 00:03:46 +227 227 228 22.7 45.400000000000006 227 1970-08-16 2024-10-11 00:03:47.000 1970-08-16 2024-10-11 00:03:47 +228 228 229 22.8 45.6 228 1970-08-17 2024-10-11 00:03:48.000 1970-08-17 2024-10-11 00:03:48 +229 229 230 22.9 45.800000000000004 229 1970-08-18 2024-10-11 00:03:49.000 1970-08-18 2024-10-11 00:03:49 +230 230 231 23 46 230 1970-08-19 2024-10-11 00:03:50.000 1970-08-19 2024-10-11 00:03:50 +231 231 232 23.1 46.2 231 1970-08-20 2024-10-11 00:03:51.000 1970-08-20 2024-10-11 00:03:51 +232 232 233 23.2 46.400000000000006 232 1970-08-21 2024-10-11 00:03:52.000 1970-08-21 2024-10-11 00:03:52 +233 233 234 23.3 46.6 233 1970-08-22 2024-10-11 00:03:53.000 1970-08-22 2024-10-11 00:03:53 +234 234 235 23.4 46.800000000000004 234 1970-08-23 2024-10-11 00:03:54.000 1970-08-23 2024-10-11 00:03:54 +235 235 236 23.5 47 235 1970-08-24 2024-10-11 00:03:55.000 1970-08-24 2024-10-11 00:03:55 +236 236 237 23.6 47.2 236 1970-08-25 2024-10-11 00:03:56.000 1970-08-25 2024-10-11 00:03:56 +237 237 238 23.7 47.400000000000006 237 1970-08-26 2024-10-11 00:03:57.000 1970-08-26 2024-10-11 00:03:57 +238 238 239 23.8 47.6 238 1970-08-27 2024-10-11 00:03:58.000 1970-08-27 2024-10-11 00:03:58 +239 239 240 23.9 47.800000000000004 239 1970-08-28 2024-10-11 00:03:59.000 1970-08-28 2024-10-11 00:03:59 +240 240 241 24 48 240 1970-08-29 2024-10-11 00:04:00.000 1970-08-29 2024-10-11 00:04:00 +241 241 242 24.1 48.2 241 1970-08-30 2024-10-11 00:04:01.000 1970-08-30 2024-10-11 00:04:01 +242 242 243 24.2 48.400000000000006 242 1970-08-31 2024-10-11 00:04:02.000 1970-08-31 2024-10-11 00:04:02 +243 243 244 24.3 48.6 243 1970-09-01 2024-10-11 00:04:03.000 1970-09-01 2024-10-11 00:04:03 +244 244 245 24.4 48.800000000000004 244 1970-09-02 2024-10-11 00:04:04.000 1970-09-02 2024-10-11 00:04:04 +245 245 246 24.5 49 245 1970-09-03 2024-10-11 00:04:05.000 1970-09-03 2024-10-11 00:04:05 +246 246 247 24.6 49.2 246 1970-09-04 2024-10-11 00:04:06.000 1970-09-04 2024-10-11 00:04:06 +247 247 248 24.7 49.400000000000006 247 1970-09-05 2024-10-11 00:04:07.000 1970-09-05 2024-10-11 00:04:07 +248 248 249 24.8 49.6 248 1970-09-06 2024-10-11 00:04:08.000 1970-09-06 2024-10-11 00:04:08 +249 249 250 24.9 49.800000000000004 249 1970-09-07 2024-10-11 00:04:09.000 1970-09-07 2024-10-11 00:04:09 +250 250 251 25 50 250 1970-09-08 2024-10-11 00:04:10.000 1970-09-08 2024-10-11 00:04:10 +251 251 252 25.1 50.2 251 1970-09-09 2024-10-11 00:04:11.000 1970-09-09 2024-10-11 00:04:11 +252 252 253 25.2 50.400000000000006 252 1970-09-10 2024-10-11 00:04:12.000 1970-09-10 2024-10-11 00:04:12 +253 253 254 25.3 50.6 253 1970-09-11 2024-10-11 00:04:13.000 1970-09-11 2024-10-11 00:04:13 +254 254 255 25.4 50.800000000000004 254 1970-09-12 2024-10-11 00:04:14.000 1970-09-12 2024-10-11 00:04:14 +255 255 256 25.5 51 255 1970-09-13 2024-10-11 00:04:15.000 1970-09-13 2024-10-11 00:04:15 +256 256 257 25.6 51.2 256 1970-09-14 2024-10-11 00:04:16.000 1970-09-14 2024-10-11 00:04:16 +257 257 258 25.7 51.400000000000006 257 1970-09-15 2024-10-11 00:04:17.000 1970-09-15 2024-10-11 00:04:17 +258 258 259 25.8 51.6 258 1970-09-16 2024-10-11 00:04:18.000 1970-09-16 2024-10-11 00:04:18 +259 259 260 25.9 51.800000000000004 259 1970-09-17 2024-10-11 00:04:19.000 1970-09-17 2024-10-11 00:04:19 +260 260 261 26 52 260 1970-09-18 2024-10-11 00:04:20.000 1970-09-18 2024-10-11 00:04:20 +261 261 262 26.1 52.2 261 1970-09-19 2024-10-11 00:04:21.000 1970-09-19 2024-10-11 00:04:21 +262 262 263 26.2 52.400000000000006 262 1970-09-20 2024-10-11 00:04:22.000 1970-09-20 2024-10-11 00:04:22 +263 263 264 26.3 52.6 263 1970-09-21 2024-10-11 00:04:23.000 1970-09-21 2024-10-11 00:04:23 +264 264 265 26.4 52.800000000000004 264 1970-09-22 2024-10-11 00:04:24.000 1970-09-22 2024-10-11 00:04:24 +265 265 266 26.5 53 265 1970-09-23 2024-10-11 00:04:25.000 1970-09-23 2024-10-11 00:04:25 +266 266 267 26.6 53.2 266 1970-09-24 2024-10-11 00:04:26.000 1970-09-24 2024-10-11 00:04:26 +267 267 268 26.7 53.400000000000006 267 1970-09-25 2024-10-11 00:04:27.000 1970-09-25 2024-10-11 00:04:27 +268 268 269 26.8 53.6 268 1970-09-26 2024-10-11 00:04:28.000 1970-09-26 2024-10-11 00:04:28 +269 269 270 26.9 53.800000000000004 269 1970-09-27 2024-10-11 00:04:29.000 1970-09-27 2024-10-11 00:04:29 +270 270 271 27 54 270 1970-09-28 2024-10-11 00:04:30.000 1970-09-28 2024-10-11 00:04:30 +271 271 272 27.1 54.2 271 1970-09-29 2024-10-11 00:04:31.000 1970-09-29 2024-10-11 00:04:31 +272 272 273 27.2 54.400000000000006 272 1970-09-30 2024-10-11 00:04:32.000 1970-09-30 2024-10-11 00:04:32 +273 273 274 27.3 54.6 273 1970-10-01 2024-10-11 00:04:33.000 1970-10-01 2024-10-11 00:04:33 +274 274 275 27.4 54.800000000000004 274 1970-10-02 2024-10-11 00:04:34.000 1970-10-02 2024-10-11 00:04:34 +275 275 276 27.5 55 275 1970-10-03 2024-10-11 00:04:35.000 1970-10-03 2024-10-11 00:04:35 +276 276 277 27.6 55.2 276 1970-10-04 2024-10-11 00:04:36.000 1970-10-04 2024-10-11 00:04:36 +277 277 278 27.7 55.400000000000006 277 1970-10-05 2024-10-11 00:04:37.000 1970-10-05 2024-10-11 00:04:37 +278 278 279 27.8 55.6 278 1970-10-06 2024-10-11 00:04:38.000 1970-10-06 2024-10-11 00:04:38 +279 279 280 27.9 55.800000000000004 279 1970-10-07 2024-10-11 00:04:39.000 1970-10-07 2024-10-11 00:04:39 +280 280 281 28 56 280 1970-10-08 2024-10-11 00:04:40.000 1970-10-08 2024-10-11 00:04:40 +281 281 282 28.1 56.2 281 1970-10-09 2024-10-11 00:04:41.000 1970-10-09 2024-10-11 00:04:41 +282 282 283 28.2 56.400000000000006 282 1970-10-10 2024-10-11 00:04:42.000 1970-10-10 2024-10-11 00:04:42 +283 283 284 28.3 56.6 283 1970-10-11 2024-10-11 00:04:43.000 1970-10-11 2024-10-11 00:04:43 +284 284 285 28.4 56.800000000000004 284 1970-10-12 2024-10-11 00:04:44.000 1970-10-12 2024-10-11 00:04:44 +285 285 286 28.5 57 285 1970-10-13 2024-10-11 00:04:45.000 1970-10-13 2024-10-11 00:04:45 +286 286 287 28.6 57.2 286 1970-10-14 2024-10-11 00:04:46.000 1970-10-14 2024-10-11 00:04:46 +287 287 288 28.7 57.400000000000006 287 1970-10-15 2024-10-11 00:04:47.000 1970-10-15 2024-10-11 00:04:47 +288 288 289 28.8 57.6 288 1970-10-16 2024-10-11 00:04:48.000 1970-10-16 2024-10-11 00:04:48 +289 289 290 28.9 57.800000000000004 289 1970-10-17 2024-10-11 00:04:49.000 1970-10-17 2024-10-11 00:04:49 +290 290 291 29 58 290 1970-10-18 2024-10-11 00:04:50.000 1970-10-18 2024-10-11 00:04:50 +291 291 292 29.1 58.2 291 1970-10-19 2024-10-11 00:04:51.000 1970-10-19 2024-10-11 00:04:51 +292 292 293 29.2 58.400000000000006 292 1970-10-20 2024-10-11 00:04:52.000 1970-10-20 2024-10-11 00:04:52 +293 293 294 29.3 58.6 293 1970-10-21 2024-10-11 00:04:53.000 1970-10-21 2024-10-11 00:04:53 +294 294 295 29.4 58.800000000000004 294 1970-10-22 2024-10-11 00:04:54.000 1970-10-22 2024-10-11 00:04:54 +295 295 296 29.5 59 295 1970-10-23 2024-10-11 00:04:55.000 1970-10-23 2024-10-11 00:04:55 +296 296 297 29.6 59.2 296 1970-10-24 2024-10-11 00:04:56.000 1970-10-24 2024-10-11 00:04:56 +297 297 298 29.7 59.400000000000006 297 1970-10-25 2024-10-11 00:04:57.000 1970-10-25 2024-10-11 00:04:57 +298 298 299 29.8 59.6 298 1970-10-26 2024-10-11 00:04:58.000 1970-10-26 2024-10-11 00:04:58 +299 299 300 29.9 59.800000000000004 299 1970-10-27 2024-10-11 00:04:59.000 1970-10-27 2024-10-11 00:04:59 +300 300 301 30 60 300 1970-10-28 2024-10-11 00:05:00.000 1970-10-28 2024-10-11 00:05:00 +301 301 302 30.1 60.2 301 1970-10-29 2024-10-11 00:05:01.000 1970-10-29 2024-10-11 00:05:01 +302 302 303 30.2 60.400000000000006 302 1970-10-30 2024-10-11 00:05:02.000 1970-10-30 2024-10-11 00:05:02 +303 303 304 30.3 60.6 303 1970-10-31 2024-10-11 00:05:03.000 1970-10-31 2024-10-11 00:05:03 +304 304 305 30.4 60.800000000000004 304 1970-11-01 2024-10-11 00:05:04.000 1970-11-01 2024-10-11 00:05:04 +305 305 306 30.5 61 305 1970-11-02 2024-10-11 00:05:05.000 1970-11-02 2024-10-11 00:05:05 +306 306 307 30.6 61.2 306 1970-11-03 2024-10-11 00:05:06.000 1970-11-03 2024-10-11 00:05:06 +307 307 308 30.7 61.400000000000006 307 1970-11-04 2024-10-11 00:05:07.000 1970-11-04 2024-10-11 00:05:07 +308 308 309 30.8 61.6 308 1970-11-05 2024-10-11 00:05:08.000 1970-11-05 2024-10-11 00:05:08 +309 309 310 30.9 61.800000000000004 309 1970-11-06 2024-10-11 00:05:09.000 1970-11-06 2024-10-11 00:05:09 +310 310 311 31 62 310 1970-11-07 2024-10-11 00:05:10.000 1970-11-07 2024-10-11 00:05:10 +311 311 312 31.1 62.2 311 1970-11-08 2024-10-11 00:05:11.000 1970-11-08 2024-10-11 00:05:11 +312 312 313 31.2 62.400000000000006 312 1970-11-09 2024-10-11 00:05:12.000 1970-11-09 2024-10-11 00:05:12 +313 313 314 31.3 62.6 313 1970-11-10 2024-10-11 00:05:13.000 1970-11-10 2024-10-11 00:05:13 +314 314 315 31.4 62.800000000000004 314 1970-11-11 2024-10-11 00:05:14.000 1970-11-11 2024-10-11 00:05:14 +315 315 316 31.5 63 315 1970-11-12 2024-10-11 00:05:15.000 1970-11-12 2024-10-11 00:05:15 +316 316 317 31.6 63.2 316 1970-11-13 2024-10-11 00:05:16.000 1970-11-13 2024-10-11 00:05:16 +317 317 318 31.7 63.400000000000006 317 1970-11-14 2024-10-11 00:05:17.000 1970-11-14 2024-10-11 00:05:17 +318 318 319 31.8 63.6 318 1970-11-15 2024-10-11 00:05:18.000 1970-11-15 2024-10-11 00:05:18 +319 319 320 31.9 63.800000000000004 319 1970-11-16 2024-10-11 00:05:19.000 1970-11-16 2024-10-11 00:05:19 +320 320 321 32 64 320 1970-11-17 2024-10-11 00:05:20.000 1970-11-17 2024-10-11 00:05:20 +321 321 322 32.1 64.2 321 1970-11-18 2024-10-11 00:05:21.000 1970-11-18 2024-10-11 00:05:21 +322 322 323 32.2 64.4 322 1970-11-19 2024-10-11 00:05:22.000 1970-11-19 2024-10-11 00:05:22 +323 323 324 32.3 64.60000000000001 323 1970-11-20 2024-10-11 00:05:23.000 1970-11-20 2024-10-11 00:05:23 +324 324 325 32.4 64.8 324 1970-11-21 2024-10-11 00:05:24.000 1970-11-21 2024-10-11 00:05:24 +325 325 326 32.5 65 325 1970-11-22 2024-10-11 00:05:25.000 1970-11-22 2024-10-11 00:05:25 +326 326 327 32.6 65.2 326 1970-11-23 2024-10-11 00:05:26.000 1970-11-23 2024-10-11 00:05:26 +327 327 328 32.7 65.4 327 1970-11-24 2024-10-11 00:05:27.000 1970-11-24 2024-10-11 00:05:27 +328 328 329 32.8 65.60000000000001 328 1970-11-25 2024-10-11 00:05:28.000 1970-11-25 2024-10-11 00:05:28 +329 329 330 32.9 65.8 329 1970-11-26 2024-10-11 00:05:29.000 1970-11-26 2024-10-11 00:05:29 +330 330 331 33 66 330 1970-11-27 2024-10-11 00:05:30.000 1970-11-27 2024-10-11 00:05:30 +331 331 332 33.1 66.2 331 1970-11-28 2024-10-11 00:05:31.000 1970-11-28 2024-10-11 00:05:31 +332 332 333 33.2 66.4 332 1970-11-29 2024-10-11 00:05:32.000 1970-11-29 2024-10-11 00:05:32 +333 333 334 33.3 66.60000000000001 333 1970-11-30 2024-10-11 00:05:33.000 1970-11-30 2024-10-11 00:05:33 +334 334 335 33.4 66.8 334 1970-12-01 2024-10-11 00:05:34.000 1970-12-01 2024-10-11 00:05:34 +335 335 336 33.5 67 335 1970-12-02 2024-10-11 00:05:35.000 1970-12-02 2024-10-11 00:05:35 +336 336 337 33.6 67.2 336 1970-12-03 2024-10-11 00:05:36.000 1970-12-03 2024-10-11 00:05:36 +337 337 338 33.7 67.4 337 1970-12-04 2024-10-11 00:05:37.000 1970-12-04 2024-10-11 00:05:37 +338 338 339 33.8 67.60000000000001 338 1970-12-05 2024-10-11 00:05:38.000 1970-12-05 2024-10-11 00:05:38 +339 339 340 33.9 67.8 339 1970-12-06 2024-10-11 00:05:39.000 1970-12-06 2024-10-11 00:05:39 +340 340 341 34 68 340 1970-12-07 2024-10-11 00:05:40.000 1970-12-07 2024-10-11 00:05:40 +341 341 342 34.1 68.2 341 1970-12-08 2024-10-11 00:05:41.000 1970-12-08 2024-10-11 00:05:41 +342 342 343 34.2 68.4 342 1970-12-09 2024-10-11 00:05:42.000 1970-12-09 2024-10-11 00:05:42 +343 343 344 34.3 68.60000000000001 343 1970-12-10 2024-10-11 00:05:43.000 1970-12-10 2024-10-11 00:05:43 +344 344 345 34.4 68.8 344 1970-12-11 2024-10-11 00:05:44.000 1970-12-11 2024-10-11 00:05:44 +345 345 346 34.5 69 345 1970-12-12 2024-10-11 00:05:45.000 1970-12-12 2024-10-11 00:05:45 +346 346 347 34.6 69.2 346 1970-12-13 2024-10-11 00:05:46.000 1970-12-13 2024-10-11 00:05:46 +347 347 348 34.7 69.4 347 1970-12-14 2024-10-11 00:05:47.000 1970-12-14 2024-10-11 00:05:47 +348 348 349 34.8 69.60000000000001 348 1970-12-15 2024-10-11 00:05:48.000 1970-12-15 2024-10-11 00:05:48 +349 349 350 34.9 69.8 349 1970-12-16 2024-10-11 00:05:49.000 1970-12-16 2024-10-11 00:05:49 +350 350 351 35 70 350 1970-12-17 2024-10-11 00:05:50.000 1970-12-17 2024-10-11 00:05:50 +351 351 352 35.1 70.2 351 1970-12-18 2024-10-11 00:05:51.000 1970-12-18 2024-10-11 00:05:51 +352 352 353 35.2 70.4 352 1970-12-19 2024-10-11 00:05:52.000 1970-12-19 2024-10-11 00:05:52 +353 353 354 35.3 70.60000000000001 353 1970-12-20 2024-10-11 00:05:53.000 1970-12-20 2024-10-11 00:05:53 +354 354 355 35.4 70.8 354 1970-12-21 2024-10-11 00:05:54.000 1970-12-21 2024-10-11 00:05:54 +355 355 356 35.5 71 355 1970-12-22 2024-10-11 00:05:55.000 1970-12-22 2024-10-11 00:05:55 +356 356 357 35.6 71.2 356 1970-12-23 2024-10-11 00:05:56.000 1970-12-23 2024-10-11 00:05:56 +357 357 358 35.7 71.4 357 1970-12-24 2024-10-11 00:05:57.000 1970-12-24 2024-10-11 00:05:57 +358 358 359 35.8 71.60000000000001 358 1970-12-25 2024-10-11 00:05:58.000 1970-12-25 2024-10-11 00:05:58 +359 359 360 35.9 71.8 359 1970-12-26 2024-10-11 00:05:59.000 1970-12-26 2024-10-11 00:05:59 +360 360 361 36 72 360 1970-12-27 2024-10-11 00:06:00.000 1970-12-27 2024-10-11 00:06:00 +361 361 362 36.1 72.2 361 1970-12-28 2024-10-11 00:06:01.000 1970-12-28 2024-10-11 00:06:01 +362 362 363 36.2 72.4 362 1970-12-29 2024-10-11 00:06:02.000 1970-12-29 2024-10-11 00:06:02 +363 363 364 36.3 72.60000000000001 363 1970-12-30 2024-10-11 00:06:03.000 1970-12-30 2024-10-11 00:06:03 +364 364 365 36.4 72.8 364 1970-12-31 2024-10-11 00:06:04.000 1970-12-31 2024-10-11 00:06:04 +365 365 366 36.5 73 365 1971-01-01 2024-10-11 00:06:05.000 1971-01-01 2024-10-11 00:06:05 +366 366 367 36.6 73.2 366 1971-01-02 2024-10-11 00:06:06.000 1971-01-02 2024-10-11 00:06:06 +367 367 368 36.7 73.4 367 1971-01-03 2024-10-11 00:06:07.000 1971-01-03 2024-10-11 00:06:07 +368 368 369 36.8 73.60000000000001 368 1971-01-04 2024-10-11 00:06:08.000 1971-01-04 2024-10-11 00:06:08 +369 369 370 36.9 73.8 369 1971-01-05 2024-10-11 00:06:09.000 1971-01-05 2024-10-11 00:06:09 +370 370 371 37 74 370 1971-01-06 2024-10-11 00:06:10.000 1971-01-06 2024-10-11 00:06:10 +371 371 372 37.1 74.2 371 1971-01-07 2024-10-11 00:06:11.000 1971-01-07 2024-10-11 00:06:11 +372 372 373 37.2 74.4 372 1971-01-08 2024-10-11 00:06:12.000 1971-01-08 2024-10-11 00:06:12 +373 373 374 37.3 74.60000000000001 373 1971-01-09 2024-10-11 00:06:13.000 1971-01-09 2024-10-11 00:06:13 +374 374 375 37.4 74.8 374 1971-01-10 2024-10-11 00:06:14.000 1971-01-10 2024-10-11 00:06:14 +375 375 376 37.5 75 375 1971-01-11 2024-10-11 00:06:15.000 1971-01-11 2024-10-11 00:06:15 +376 376 377 37.6 75.2 376 1971-01-12 2024-10-11 00:06:16.000 1971-01-12 2024-10-11 00:06:16 +377 377 378 37.7 75.4 377 1971-01-13 2024-10-11 00:06:17.000 1971-01-13 2024-10-11 00:06:17 +378 378 379 37.8 75.60000000000001 378 1971-01-14 2024-10-11 00:06:18.000 1971-01-14 2024-10-11 00:06:18 +379 379 380 37.9 75.8 379 1971-01-15 2024-10-11 00:06:19.000 1971-01-15 2024-10-11 00:06:19 +380 380 381 38 76 380 1971-01-16 2024-10-11 00:06:20.000 1971-01-16 2024-10-11 00:06:20 +381 381 382 38.1 76.2 381 1971-01-17 2024-10-11 00:06:21.000 1971-01-17 2024-10-11 00:06:21 +382 382 383 38.2 76.4 382 1971-01-18 2024-10-11 00:06:22.000 1971-01-18 2024-10-11 00:06:22 +383 383 384 38.3 76.60000000000001 383 1971-01-19 2024-10-11 00:06:23.000 1971-01-19 2024-10-11 00:06:23 +384 384 385 38.4 76.80000000000001 384 1971-01-20 2024-10-11 00:06:24.000 1971-01-20 2024-10-11 00:06:24 +385 385 386 38.5 77 385 1971-01-21 2024-10-11 00:06:25.000 1971-01-21 2024-10-11 00:06:25 +386 386 387 38.6 77.2 386 1971-01-22 2024-10-11 00:06:26.000 1971-01-22 2024-10-11 00:06:26 +387 387 388 38.7 77.4 387 1971-01-23 2024-10-11 00:06:27.000 1971-01-23 2024-10-11 00:06:27 +388 388 389 38.8 77.60000000000001 388 1971-01-24 2024-10-11 00:06:28.000 1971-01-24 2024-10-11 00:06:28 +389 389 390 38.9 77.80000000000001 389 1971-01-25 2024-10-11 00:06:29.000 1971-01-25 2024-10-11 00:06:29 +390 390 391 39 78 390 1971-01-26 2024-10-11 00:06:30.000 1971-01-26 2024-10-11 00:06:30 +391 391 392 39.1 78.2 391 1971-01-27 2024-10-11 00:06:31.000 1971-01-27 2024-10-11 00:06:31 +392 392 393 39.2 78.4 392 1971-01-28 2024-10-11 00:06:32.000 1971-01-28 2024-10-11 00:06:32 +393 393 394 39.3 78.60000000000001 393 1971-01-29 2024-10-11 00:06:33.000 1971-01-29 2024-10-11 00:06:33 +394 394 395 39.4 78.80000000000001 394 1971-01-30 2024-10-11 00:06:34.000 1971-01-30 2024-10-11 00:06:34 +395 395 396 39.5 79 395 1971-01-31 2024-10-11 00:06:35.000 1971-01-31 2024-10-11 00:06:35 +396 396 397 39.6 79.2 396 1971-02-01 2024-10-11 00:06:36.000 1971-02-01 2024-10-11 00:06:36 +397 397 398 39.7 79.4 397 1971-02-02 2024-10-11 00:06:37.000 1971-02-02 2024-10-11 00:06:37 +398 398 399 39.8 79.60000000000001 398 1971-02-03 2024-10-11 00:06:38.000 1971-02-03 2024-10-11 00:06:38 +399 399 400 39.9 79.80000000000001 399 1971-02-04 2024-10-11 00:06:39.000 1971-02-04 2024-10-11 00:06:39 +400 400 401 40 80 400 1971-02-05 2024-10-11 00:06:40.000 1971-02-05 2024-10-11 00:06:40 +401 401 402 40.1 80.2 401 1971-02-06 2024-10-11 00:06:41.000 1971-02-06 2024-10-11 00:06:41 +402 402 403 40.2 80.4 402 1971-02-07 2024-10-11 00:06:42.000 1971-02-07 2024-10-11 00:06:42 +403 403 404 40.3 80.60000000000001 403 1971-02-08 2024-10-11 00:06:43.000 1971-02-08 2024-10-11 00:06:43 +404 404 405 40.4 80.80000000000001 404 1971-02-09 2024-10-11 00:06:44.000 1971-02-09 2024-10-11 00:06:44 +405 405 406 40.5 81 405 1971-02-10 2024-10-11 00:06:45.000 1971-02-10 2024-10-11 00:06:45 +406 406 407 40.6 81.2 406 1971-02-11 2024-10-11 00:06:46.000 1971-02-11 2024-10-11 00:06:46 +407 407 408 40.7 81.4 407 1971-02-12 2024-10-11 00:06:47.000 1971-02-12 2024-10-11 00:06:47 +408 408 409 40.8 81.60000000000001 408 1971-02-13 2024-10-11 00:06:48.000 1971-02-13 2024-10-11 00:06:48 +409 409 410 40.9 81.80000000000001 409 1971-02-14 2024-10-11 00:06:49.000 1971-02-14 2024-10-11 00:06:49 +410 410 411 41 82 410 1971-02-15 2024-10-11 00:06:50.000 1971-02-15 2024-10-11 00:06:50 +411 411 412 41.1 82.2 411 1971-02-16 2024-10-11 00:06:51.000 1971-02-16 2024-10-11 00:06:51 +412 412 413 41.2 82.4 412 1971-02-17 2024-10-11 00:06:52.000 1971-02-17 2024-10-11 00:06:52 +413 413 414 41.3 82.60000000000001 413 1971-02-18 2024-10-11 00:06:53.000 1971-02-18 2024-10-11 00:06:53 +414 414 415 41.4 82.80000000000001 414 1971-02-19 2024-10-11 00:06:54.000 1971-02-19 2024-10-11 00:06:54 +415 415 416 41.5 83 415 1971-02-20 2024-10-11 00:06:55.000 1971-02-20 2024-10-11 00:06:55 +416 416 417 41.6 83.2 416 1971-02-21 2024-10-11 00:06:56.000 1971-02-21 2024-10-11 00:06:56 +417 417 418 41.7 83.4 417 1971-02-22 2024-10-11 00:06:57.000 1971-02-22 2024-10-11 00:06:57 +418 418 419 41.8 83.60000000000001 418 1971-02-23 2024-10-11 00:06:58.000 1971-02-23 2024-10-11 00:06:58 +419 419 420 41.9 83.80000000000001 419 1971-02-24 2024-10-11 00:06:59.000 1971-02-24 2024-10-11 00:06:59 +420 420 421 42 84 420 1971-02-25 2024-10-11 00:07:00.000 1971-02-25 2024-10-11 00:07:00 +421 421 422 42.1 84.2 421 1971-02-26 2024-10-11 00:07:01.000 1971-02-26 2024-10-11 00:07:01 +422 422 423 42.2 84.4 422 1971-02-27 2024-10-11 00:07:02.000 1971-02-27 2024-10-11 00:07:02 +423 423 424 42.3 84.60000000000001 423 1971-02-28 2024-10-11 00:07:03.000 1971-02-28 2024-10-11 00:07:03 +424 424 425 42.4 84.80000000000001 424 1971-03-01 2024-10-11 00:07:04.000 1971-03-01 2024-10-11 00:07:04 +425 425 426 42.5 85 425 1971-03-02 2024-10-11 00:07:05.000 1971-03-02 2024-10-11 00:07:05 +426 426 427 42.6 85.2 426 1971-03-03 2024-10-11 00:07:06.000 1971-03-03 2024-10-11 00:07:06 +427 427 428 42.7 85.4 427 1971-03-04 2024-10-11 00:07:07.000 1971-03-04 2024-10-11 00:07:07 +428 428 429 42.8 85.60000000000001 428 1971-03-05 2024-10-11 00:07:08.000 1971-03-05 2024-10-11 00:07:08 +429 429 430 42.9 85.80000000000001 429 1971-03-06 2024-10-11 00:07:09.000 1971-03-06 2024-10-11 00:07:09 +430 430 431 43 86 430 1971-03-07 2024-10-11 00:07:10.000 1971-03-07 2024-10-11 00:07:10 +431 431 432 43.1 86.2 431 1971-03-08 2024-10-11 00:07:11.000 1971-03-08 2024-10-11 00:07:11 +432 432 433 43.2 86.4 432 1971-03-09 2024-10-11 00:07:12.000 1971-03-09 2024-10-11 00:07:12 +433 433 434 43.3 86.60000000000001 433 1971-03-10 2024-10-11 00:07:13.000 1971-03-10 2024-10-11 00:07:13 +434 434 435 43.4 86.80000000000001 434 1971-03-11 2024-10-11 00:07:14.000 1971-03-11 2024-10-11 00:07:14 +435 435 436 43.5 87 435 1971-03-12 2024-10-11 00:07:15.000 1971-03-12 2024-10-11 00:07:15 +436 436 437 43.6 87.2 436 1971-03-13 2024-10-11 00:07:16.000 1971-03-13 2024-10-11 00:07:16 +437 437 438 43.7 87.4 437 1971-03-14 2024-10-11 00:07:17.000 1971-03-14 2024-10-11 00:07:17 +438 438 439 43.8 87.60000000000001 438 1971-03-15 2024-10-11 00:07:18.000 1971-03-15 2024-10-11 00:07:18 +439 439 440 43.9 87.80000000000001 439 1971-03-16 2024-10-11 00:07:19.000 1971-03-16 2024-10-11 00:07:19 +440 440 441 44 88 440 1971-03-17 2024-10-11 00:07:20.000 1971-03-17 2024-10-11 00:07:20 +441 441 442 44.1 88.2 441 1971-03-18 2024-10-11 00:07:21.000 1971-03-18 2024-10-11 00:07:21 +442 442 443 44.2 88.4 442 1971-03-19 2024-10-11 00:07:22.000 1971-03-19 2024-10-11 00:07:22 +443 443 444 44.3 88.60000000000001 443 1971-03-20 2024-10-11 00:07:23.000 1971-03-20 2024-10-11 00:07:23 +444 444 445 44.4 88.80000000000001 444 1971-03-21 2024-10-11 00:07:24.000 1971-03-21 2024-10-11 00:07:24 +445 445 446 44.5 89 445 1971-03-22 2024-10-11 00:07:25.000 1971-03-22 2024-10-11 00:07:25 +446 446 447 44.6 89.2 446 1971-03-23 2024-10-11 00:07:26.000 1971-03-23 2024-10-11 00:07:26 +447 447 448 44.7 89.4 447 1971-03-24 2024-10-11 00:07:27.000 1971-03-24 2024-10-11 00:07:27 +448 448 449 44.8 89.60000000000001 448 1971-03-25 2024-10-11 00:07:28.000 1971-03-25 2024-10-11 00:07:28 +449 449 450 44.9 89.80000000000001 449 1971-03-26 2024-10-11 00:07:29.000 1971-03-26 2024-10-11 00:07:29 +450 450 451 45 90 450 1971-03-27 2024-10-11 00:07:30.000 1971-03-27 2024-10-11 00:07:30 +451 451 452 45.1 90.2 451 1971-03-28 2024-10-11 00:07:31.000 1971-03-28 2024-10-11 00:07:31 +452 452 453 45.2 90.4 452 1971-03-29 2024-10-11 00:07:32.000 1971-03-29 2024-10-11 00:07:32 +453 453 454 45.3 90.60000000000001 453 1971-03-30 2024-10-11 00:07:33.000 1971-03-30 2024-10-11 00:07:33 +454 454 455 45.4 90.80000000000001 454 1971-03-31 2024-10-11 00:07:34.000 1971-03-31 2024-10-11 00:07:34 +455 455 456 45.5 91 455 1971-04-01 2024-10-11 00:07:35.000 1971-04-01 2024-10-11 00:07:35 +456 456 457 45.6 91.2 456 1971-04-02 2024-10-11 00:07:36.000 1971-04-02 2024-10-11 00:07:36 +457 457 458 45.7 91.4 457 1971-04-03 2024-10-11 00:07:37.000 1971-04-03 2024-10-11 00:07:37 +458 458 459 45.8 91.60000000000001 458 1971-04-04 2024-10-11 00:07:38.000 1971-04-04 2024-10-11 00:07:38 +459 459 460 45.9 91.80000000000001 459 1971-04-05 2024-10-11 00:07:39.000 1971-04-05 2024-10-11 00:07:39 +460 460 461 46 92 460 1971-04-06 2024-10-11 00:07:40.000 1971-04-06 2024-10-11 00:07:40 +461 461 462 46.1 92.2 461 1971-04-07 2024-10-11 00:07:41.000 1971-04-07 2024-10-11 00:07:41 +462 462 463 46.2 92.4 462 1971-04-08 2024-10-11 00:07:42.000 1971-04-08 2024-10-11 00:07:42 +463 463 464 46.3 92.60000000000001 463 1971-04-09 2024-10-11 00:07:43.000 1971-04-09 2024-10-11 00:07:43 +464 464 465 46.4 92.80000000000001 464 1971-04-10 2024-10-11 00:07:44.000 1971-04-10 2024-10-11 00:07:44 +465 465 466 46.5 93 465 1971-04-11 2024-10-11 00:07:45.000 1971-04-11 2024-10-11 00:07:45 +466 466 467 46.6 93.2 466 1971-04-12 2024-10-11 00:07:46.000 1971-04-12 2024-10-11 00:07:46 +467 467 468 46.7 93.4 467 1971-04-13 2024-10-11 00:07:47.000 1971-04-13 2024-10-11 00:07:47 +468 468 469 46.8 93.60000000000001 468 1971-04-14 2024-10-11 00:07:48.000 1971-04-14 2024-10-11 00:07:48 +469 469 470 46.9 93.80000000000001 469 1971-04-15 2024-10-11 00:07:49.000 1971-04-15 2024-10-11 00:07:49 +470 470 471 47 94 470 1971-04-16 2024-10-11 00:07:50.000 1971-04-16 2024-10-11 00:07:50 +471 471 472 47.1 94.2 471 1971-04-17 2024-10-11 00:07:51.000 1971-04-17 2024-10-11 00:07:51 +472 472 473 47.2 94.4 472 1971-04-18 2024-10-11 00:07:52.000 1971-04-18 2024-10-11 00:07:52 +473 473 474 47.3 94.60000000000001 473 1971-04-19 2024-10-11 00:07:53.000 1971-04-19 2024-10-11 00:07:53 +474 474 475 47.4 94.80000000000001 474 1971-04-20 2024-10-11 00:07:54.000 1971-04-20 2024-10-11 00:07:54 +475 475 476 47.5 95 475 1971-04-21 2024-10-11 00:07:55.000 1971-04-21 2024-10-11 00:07:55 +476 476 477 47.6 95.2 476 1971-04-22 2024-10-11 00:07:56.000 1971-04-22 2024-10-11 00:07:56 +477 477 478 47.7 95.4 477 1971-04-23 2024-10-11 00:07:57.000 1971-04-23 2024-10-11 00:07:57 +478 478 479 47.8 95.60000000000001 478 1971-04-24 2024-10-11 00:07:58.000 1971-04-24 2024-10-11 00:07:58 +479 479 480 47.9 95.80000000000001 479 1971-04-25 2024-10-11 00:07:59.000 1971-04-25 2024-10-11 00:07:59 +480 480 481 48 96 480 1971-04-26 2024-10-11 00:08:00.000 1971-04-26 2024-10-11 00:08:00 +481 481 482 48.1 96.2 481 1971-04-27 2024-10-11 00:08:01.000 1971-04-27 2024-10-11 00:08:01 +482 482 483 48.2 96.4 482 1971-04-28 2024-10-11 00:08:02.000 1971-04-28 2024-10-11 00:08:02 +483 483 484 48.3 96.60000000000001 483 1971-04-29 2024-10-11 00:08:03.000 1971-04-29 2024-10-11 00:08:03 +484 484 485 48.4 96.80000000000001 484 1971-04-30 2024-10-11 00:08:04.000 1971-04-30 2024-10-11 00:08:04 +485 485 486 48.5 97 485 1971-05-01 2024-10-11 00:08:05.000 1971-05-01 2024-10-11 00:08:05 +486 486 487 48.6 97.2 486 1971-05-02 2024-10-11 00:08:06.000 1971-05-02 2024-10-11 00:08:06 +487 487 488 48.7 97.4 487 1971-05-03 2024-10-11 00:08:07.000 1971-05-03 2024-10-11 00:08:07 +488 488 489 48.8 97.60000000000001 488 1971-05-04 2024-10-11 00:08:08.000 1971-05-04 2024-10-11 00:08:08 +489 489 490 48.9 97.80000000000001 489 1971-05-05 2024-10-11 00:08:09.000 1971-05-05 2024-10-11 00:08:09 +490 490 491 49 98 490 1971-05-06 2024-10-11 00:08:10.000 1971-05-06 2024-10-11 00:08:10 +491 491 492 49.1 98.2 491 1971-05-07 2024-10-11 00:08:11.000 1971-05-07 2024-10-11 00:08:11 +492 492 493 49.2 98.4 492 1971-05-08 2024-10-11 00:08:12.000 1971-05-08 2024-10-11 00:08:12 +493 493 494 49.3 98.60000000000001 493 1971-05-09 2024-10-11 00:08:13.000 1971-05-09 2024-10-11 00:08:13 +494 494 495 49.4 98.80000000000001 494 1971-05-10 2024-10-11 00:08:14.000 1971-05-10 2024-10-11 00:08:14 +495 495 496 49.5 99 495 1971-05-11 2024-10-11 00:08:15.000 1971-05-11 2024-10-11 00:08:15 +496 496 497 49.6 99.2 496 1971-05-12 2024-10-11 00:08:16.000 1971-05-12 2024-10-11 00:08:16 +497 497 498 49.7 99.4 497 1971-05-13 2024-10-11 00:08:17.000 1971-05-13 2024-10-11 00:08:17 +498 498 499 49.8 99.60000000000001 498 1971-05-14 2024-10-11 00:08:18.000 1971-05-14 2024-10-11 00:08:18 +499 499 500 49.9 99.80000000000001 499 1971-05-15 2024-10-11 00:08:19.000 1971-05-15 2024-10-11 00:08:19 +500 500 501 50 100 500 1971-05-16 2024-10-11 00:08:20.000 1971-05-16 2024-10-11 00:08:20 +501 501 502 50.1 100.2 501 1971-05-17 2024-10-11 00:08:21.000 1971-05-17 2024-10-11 00:08:21 +502 502 503 50.2 100.4 502 1971-05-18 2024-10-11 00:08:22.000 1971-05-18 2024-10-11 00:08:22 +503 503 504 50.3 100.60000000000001 503 1971-05-19 2024-10-11 00:08:23.000 1971-05-19 2024-10-11 00:08:23 +504 504 505 50.4 100.80000000000001 504 1971-05-20 2024-10-11 00:08:24.000 1971-05-20 2024-10-11 00:08:24 +505 505 506 50.5 101 505 1971-05-21 2024-10-11 00:08:25.000 1971-05-21 2024-10-11 00:08:25 +506 506 507 50.6 101.2 506 1971-05-22 2024-10-11 00:08:26.000 1971-05-22 2024-10-11 00:08:26 +507 507 508 50.7 101.4 507 1971-05-23 2024-10-11 00:08:27.000 1971-05-23 2024-10-11 00:08:27 +508 508 509 50.8 101.60000000000001 508 1971-05-24 2024-10-11 00:08:28.000 1971-05-24 2024-10-11 00:08:28 +509 509 510 50.9 101.80000000000001 509 1971-05-25 2024-10-11 00:08:29.000 1971-05-25 2024-10-11 00:08:29 +510 510 511 51 102 510 1971-05-26 2024-10-11 00:08:30.000 1971-05-26 2024-10-11 00:08:30 +511 511 512 51.1 102.2 511 1971-05-27 2024-10-11 00:08:31.000 1971-05-27 2024-10-11 00:08:31 +512 512 513 51.2 102.4 512 1971-05-28 2024-10-11 00:08:32.000 1971-05-28 2024-10-11 00:08:32 +513 513 514 51.3 102.60000000000001 513 1971-05-29 2024-10-11 00:08:33.000 1971-05-29 2024-10-11 00:08:33 +514 514 515 51.4 102.80000000000001 514 1971-05-30 2024-10-11 00:08:34.000 1971-05-30 2024-10-11 00:08:34 +515 515 516 51.5 103 515 1971-05-31 2024-10-11 00:08:35.000 1971-05-31 2024-10-11 00:08:35 +516 516 517 51.6 103.2 516 1971-06-01 2024-10-11 00:08:36.000 1971-06-01 2024-10-11 00:08:36 +517 517 518 51.7 103.4 517 1971-06-02 2024-10-11 00:08:37.000 1971-06-02 2024-10-11 00:08:37 +518 518 519 51.8 103.60000000000001 518 1971-06-03 2024-10-11 00:08:38.000 1971-06-03 2024-10-11 00:08:38 +519 519 520 51.9 103.80000000000001 519 1971-06-04 2024-10-11 00:08:39.000 1971-06-04 2024-10-11 00:08:39 +520 520 521 52 104 520 1971-06-05 2024-10-11 00:08:40.000 1971-06-05 2024-10-11 00:08:40 +521 521 522 52.1 104.2 521 1971-06-06 2024-10-11 00:08:41.000 1971-06-06 2024-10-11 00:08:41 +522 522 523 52.2 104.4 522 1971-06-07 2024-10-11 00:08:42.000 1971-06-07 2024-10-11 00:08:42 +523 523 524 52.3 104.60000000000001 523 1971-06-08 2024-10-11 00:08:43.000 1971-06-08 2024-10-11 00:08:43 +524 524 525 52.4 104.80000000000001 524 1971-06-09 2024-10-11 00:08:44.000 1971-06-09 2024-10-11 00:08:44 +525 525 526 52.5 105 525 1971-06-10 2024-10-11 00:08:45.000 1971-06-10 2024-10-11 00:08:45 +526 526 527 52.6 105.2 526 1971-06-11 2024-10-11 00:08:46.000 1971-06-11 2024-10-11 00:08:46 +527 527 528 52.7 105.4 527 1971-06-12 2024-10-11 00:08:47.000 1971-06-12 2024-10-11 00:08:47 +528 528 529 52.8 105.60000000000001 528 1971-06-13 2024-10-11 00:08:48.000 1971-06-13 2024-10-11 00:08:48 +529 529 530 52.9 105.80000000000001 529 1971-06-14 2024-10-11 00:08:49.000 1971-06-14 2024-10-11 00:08:49 +530 530 531 53 106 530 1971-06-15 2024-10-11 00:08:50.000 1971-06-15 2024-10-11 00:08:50 +531 531 532 53.1 106.2 531 1971-06-16 2024-10-11 00:08:51.000 1971-06-16 2024-10-11 00:08:51 +532 532 533 53.2 106.4 532 1971-06-17 2024-10-11 00:08:52.000 1971-06-17 2024-10-11 00:08:52 +533 533 534 53.3 106.60000000000001 533 1971-06-18 2024-10-11 00:08:53.000 1971-06-18 2024-10-11 00:08:53 +534 534 535 53.4 106.80000000000001 534 1971-06-19 2024-10-11 00:08:54.000 1971-06-19 2024-10-11 00:08:54 +535 535 536 53.5 107 535 1971-06-20 2024-10-11 00:08:55.000 1971-06-20 2024-10-11 00:08:55 +536 536 537 53.6 107.2 536 1971-06-21 2024-10-11 00:08:56.000 1971-06-21 2024-10-11 00:08:56 +537 537 538 53.7 107.4 537 1971-06-22 2024-10-11 00:08:57.000 1971-06-22 2024-10-11 00:08:57 +538 538 539 53.8 107.60000000000001 538 1971-06-23 2024-10-11 00:08:58.000 1971-06-23 2024-10-11 00:08:58 +539 539 540 53.9 107.80000000000001 539 1971-06-24 2024-10-11 00:08:59.000 1971-06-24 2024-10-11 00:08:59 +540 540 541 54 108 540 1971-06-25 2024-10-11 00:09:00.000 1971-06-25 2024-10-11 00:09:00 +541 541 542 54.1 108.2 541 1971-06-26 2024-10-11 00:09:01.000 1971-06-26 2024-10-11 00:09:01 +542 542 543 54.2 108.4 542 1971-06-27 2024-10-11 00:09:02.000 1971-06-27 2024-10-11 00:09:02 +543 543 544 54.3 108.60000000000001 543 1971-06-28 2024-10-11 00:09:03.000 1971-06-28 2024-10-11 00:09:03 +544 544 545 54.4 108.80000000000001 544 1971-06-29 2024-10-11 00:09:04.000 1971-06-29 2024-10-11 00:09:04 +545 545 546 54.5 109 545 1971-06-30 2024-10-11 00:09:05.000 1971-06-30 2024-10-11 00:09:05 +546 546 547 54.6 109.2 546 1971-07-01 2024-10-11 00:09:06.000 1971-07-01 2024-10-11 00:09:06 +547 547 548 54.7 109.4 547 1971-07-02 2024-10-11 00:09:07.000 1971-07-02 2024-10-11 00:09:07 +548 548 549 54.8 109.60000000000001 548 1971-07-03 2024-10-11 00:09:08.000 1971-07-03 2024-10-11 00:09:08 +549 549 550 54.9 109.80000000000001 549 1971-07-04 2024-10-11 00:09:09.000 1971-07-04 2024-10-11 00:09:09 +550 550 551 55 110 550 1971-07-05 2024-10-11 00:09:10.000 1971-07-05 2024-10-11 00:09:10 +551 551 552 55.1 110.2 551 1971-07-06 2024-10-11 00:09:11.000 1971-07-06 2024-10-11 00:09:11 +552 552 553 55.2 110.4 552 1971-07-07 2024-10-11 00:09:12.000 1971-07-07 2024-10-11 00:09:12 +553 553 554 55.3 110.60000000000001 553 1971-07-08 2024-10-11 00:09:13.000 1971-07-08 2024-10-11 00:09:13 +554 554 555 55.4 110.80000000000001 554 1971-07-09 2024-10-11 00:09:14.000 1971-07-09 2024-10-11 00:09:14 +555 555 556 55.5 111 555 1971-07-10 2024-10-11 00:09:15.000 1971-07-10 2024-10-11 00:09:15 +556 556 557 55.6 111.2 556 1971-07-11 2024-10-11 00:09:16.000 1971-07-11 2024-10-11 00:09:16 +557 557 558 55.7 111.4 557 1971-07-12 2024-10-11 00:09:17.000 1971-07-12 2024-10-11 00:09:17 +558 558 559 55.8 111.60000000000001 558 1971-07-13 2024-10-11 00:09:18.000 1971-07-13 2024-10-11 00:09:18 +559 559 560 55.9 111.80000000000001 559 1971-07-14 2024-10-11 00:09:19.000 1971-07-14 2024-10-11 00:09:19 +560 560 561 56 112 560 1971-07-15 2024-10-11 00:09:20.000 1971-07-15 2024-10-11 00:09:20 +561 561 562 56.1 112.2 561 1971-07-16 2024-10-11 00:09:21.000 1971-07-16 2024-10-11 00:09:21 +562 562 563 56.2 112.4 562 1971-07-17 2024-10-11 00:09:22.000 1971-07-17 2024-10-11 00:09:22 +563 563 564 56.3 112.60000000000001 563 1971-07-18 2024-10-11 00:09:23.000 1971-07-18 2024-10-11 00:09:23 +564 564 565 56.4 112.80000000000001 564 1971-07-19 2024-10-11 00:09:24.000 1971-07-19 2024-10-11 00:09:24 +565 565 566 56.5 113 565 1971-07-20 2024-10-11 00:09:25.000 1971-07-20 2024-10-11 00:09:25 +566 566 567 56.6 113.2 566 1971-07-21 2024-10-11 00:09:26.000 1971-07-21 2024-10-11 00:09:26 +567 567 568 56.7 113.4 567 1971-07-22 2024-10-11 00:09:27.000 1971-07-22 2024-10-11 00:09:27 +568 568 569 56.8 113.60000000000001 568 1971-07-23 2024-10-11 00:09:28.000 1971-07-23 2024-10-11 00:09:28 +569 569 570 56.9 113.80000000000001 569 1971-07-24 2024-10-11 00:09:29.000 1971-07-24 2024-10-11 00:09:29 +570 570 571 57 114 570 1971-07-25 2024-10-11 00:09:30.000 1971-07-25 2024-10-11 00:09:30 +571 571 572 57.1 114.2 571 1971-07-26 2024-10-11 00:09:31.000 1971-07-26 2024-10-11 00:09:31 +572 572 573 57.2 114.4 572 1971-07-27 2024-10-11 00:09:32.000 1971-07-27 2024-10-11 00:09:32 +573 573 574 57.3 114.60000000000001 573 1971-07-28 2024-10-11 00:09:33.000 1971-07-28 2024-10-11 00:09:33 +574 574 575 57.4 114.80000000000001 574 1971-07-29 2024-10-11 00:09:34.000 1971-07-29 2024-10-11 00:09:34 +575 575 576 57.5 115 575 1971-07-30 2024-10-11 00:09:35.000 1971-07-30 2024-10-11 00:09:35 +576 576 577 57.6 115.2 576 1971-07-31 2024-10-11 00:09:36.000 1971-07-31 2024-10-11 00:09:36 +577 577 578 57.7 115.4 577 1971-08-01 2024-10-11 00:09:37.000 1971-08-01 2024-10-11 00:09:37 +578 578 579 57.8 115.60000000000001 578 1971-08-02 2024-10-11 00:09:38.000 1971-08-02 2024-10-11 00:09:38 +579 579 580 57.9 115.80000000000001 579 1971-08-03 2024-10-11 00:09:39.000 1971-08-03 2024-10-11 00:09:39 +580 580 581 58 116 580 1971-08-04 2024-10-11 00:09:40.000 1971-08-04 2024-10-11 00:09:40 +581 581 582 58.1 116.2 581 1971-08-05 2024-10-11 00:09:41.000 1971-08-05 2024-10-11 00:09:41 +582 582 583 58.2 116.4 582 1971-08-06 2024-10-11 00:09:42.000 1971-08-06 2024-10-11 00:09:42 +583 583 584 58.3 116.60000000000001 583 1971-08-07 2024-10-11 00:09:43.000 1971-08-07 2024-10-11 00:09:43 +584 584 585 58.4 116.80000000000001 584 1971-08-08 2024-10-11 00:09:44.000 1971-08-08 2024-10-11 00:09:44 +585 585 586 58.5 117 585 1971-08-09 2024-10-11 00:09:45.000 1971-08-09 2024-10-11 00:09:45 +586 586 587 58.6 117.2 586 1971-08-10 2024-10-11 00:09:46.000 1971-08-10 2024-10-11 00:09:46 +587 587 588 58.7 117.4 587 1971-08-11 2024-10-11 00:09:47.000 1971-08-11 2024-10-11 00:09:47 +588 588 589 58.8 117.60000000000001 588 1971-08-12 2024-10-11 00:09:48.000 1971-08-12 2024-10-11 00:09:48 +589 589 590 58.9 117.80000000000001 589 1971-08-13 2024-10-11 00:09:49.000 1971-08-13 2024-10-11 00:09:49 +590 590 591 59 118 590 1971-08-14 2024-10-11 00:09:50.000 1971-08-14 2024-10-11 00:09:50 +591 591 592 59.1 118.2 591 1971-08-15 2024-10-11 00:09:51.000 1971-08-15 2024-10-11 00:09:51 +592 592 593 59.2 118.4 592 1971-08-16 2024-10-11 00:09:52.000 1971-08-16 2024-10-11 00:09:52 +593 593 594 59.3 118.60000000000001 593 1971-08-17 2024-10-11 00:09:53.000 1971-08-17 2024-10-11 00:09:53 +594 594 595 59.4 118.80000000000001 594 1971-08-18 2024-10-11 00:09:54.000 1971-08-18 2024-10-11 00:09:54 +595 595 596 59.5 119 595 1971-08-19 2024-10-11 00:09:55.000 1971-08-19 2024-10-11 00:09:55 +596 596 597 59.6 119.2 596 1971-08-20 2024-10-11 00:09:56.000 1971-08-20 2024-10-11 00:09:56 +597 597 598 59.7 119.4 597 1971-08-21 2024-10-11 00:09:57.000 1971-08-21 2024-10-11 00:09:57 +598 598 599 59.8 119.60000000000001 598 1971-08-22 2024-10-11 00:09:58.000 1971-08-22 2024-10-11 00:09:58 +599 599 600 59.9 119.80000000000001 599 1971-08-23 2024-10-11 00:09:59.000 1971-08-23 2024-10-11 00:09:59 +600 600 601 60 120 600 1971-08-24 2024-10-11 00:10:00.000 1971-08-24 2024-10-11 00:10:00 +601 601 602 60.1 120.2 601 1971-08-25 2024-10-11 00:10:01.000 1971-08-25 2024-10-11 00:10:01 +602 602 603 60.2 120.4 602 1971-08-26 2024-10-11 00:10:02.000 1971-08-26 2024-10-11 00:10:02 +603 603 604 60.3 120.60000000000001 603 1971-08-27 2024-10-11 00:10:03.000 1971-08-27 2024-10-11 00:10:03 +604 604 605 60.4 120.80000000000001 604 1971-08-28 2024-10-11 00:10:04.000 1971-08-28 2024-10-11 00:10:04 +605 605 606 60.5 121 605 1971-08-29 2024-10-11 00:10:05.000 1971-08-29 2024-10-11 00:10:05 +606 606 607 60.6 121.2 606 1971-08-30 2024-10-11 00:10:06.000 1971-08-30 2024-10-11 00:10:06 +607 607 608 60.7 121.4 607 1971-08-31 2024-10-11 00:10:07.000 1971-08-31 2024-10-11 00:10:07 +608 608 609 60.8 121.60000000000001 608 1971-09-01 2024-10-11 00:10:08.000 1971-09-01 2024-10-11 00:10:08 +609 609 610 60.9 121.80000000000001 609 1971-09-02 2024-10-11 00:10:09.000 1971-09-02 2024-10-11 00:10:09 +610 610 611 61 122 610 1971-09-03 2024-10-11 00:10:10.000 1971-09-03 2024-10-11 00:10:10 +611 611 612 61.1 122.2 611 1971-09-04 2024-10-11 00:10:11.000 1971-09-04 2024-10-11 00:10:11 +612 612 613 61.2 122.4 612 1971-09-05 2024-10-11 00:10:12.000 1971-09-05 2024-10-11 00:10:12 +613 613 614 61.3 122.60000000000001 613 1971-09-06 2024-10-11 00:10:13.000 1971-09-06 2024-10-11 00:10:13 +614 614 615 61.4 122.80000000000001 614 1971-09-07 2024-10-11 00:10:14.000 1971-09-07 2024-10-11 00:10:14 +615 615 616 61.5 123 615 1971-09-08 2024-10-11 00:10:15.000 1971-09-08 2024-10-11 00:10:15 +616 616 617 61.6 123.2 616 1971-09-09 2024-10-11 00:10:16.000 1971-09-09 2024-10-11 00:10:16 +617 617 618 61.7 123.4 617 1971-09-10 2024-10-11 00:10:17.000 1971-09-10 2024-10-11 00:10:17 +618 618 619 61.8 123.60000000000001 618 1971-09-11 2024-10-11 00:10:18.000 1971-09-11 2024-10-11 00:10:18 +619 619 620 61.9 123.80000000000001 619 1971-09-12 2024-10-11 00:10:19.000 1971-09-12 2024-10-11 00:10:19 +620 620 621 62 124 620 1971-09-13 2024-10-11 00:10:20.000 1971-09-13 2024-10-11 00:10:20 +621 621 622 62.1 124.2 621 1971-09-14 2024-10-11 00:10:21.000 1971-09-14 2024-10-11 00:10:21 +622 622 623 62.2 124.4 622 1971-09-15 2024-10-11 00:10:22.000 1971-09-15 2024-10-11 00:10:22 +623 623 624 62.3 124.60000000000001 623 1971-09-16 2024-10-11 00:10:23.000 1971-09-16 2024-10-11 00:10:23 +624 624 625 62.4 124.80000000000001 624 1971-09-17 2024-10-11 00:10:24.000 1971-09-17 2024-10-11 00:10:24 +625 625 626 62.5 125 625 1971-09-18 2024-10-11 00:10:25.000 1971-09-18 2024-10-11 00:10:25 +626 626 627 62.6 125.2 626 1971-09-19 2024-10-11 00:10:26.000 1971-09-19 2024-10-11 00:10:26 +627 627 628 62.7 125.4 627 1971-09-20 2024-10-11 00:10:27.000 1971-09-20 2024-10-11 00:10:27 +628 628 629 62.8 125.60000000000001 628 1971-09-21 2024-10-11 00:10:28.000 1971-09-21 2024-10-11 00:10:28 +629 629 630 62.9 125.80000000000001 629 1971-09-22 2024-10-11 00:10:29.000 1971-09-22 2024-10-11 00:10:29 +630 630 631 63 126 630 1971-09-23 2024-10-11 00:10:30.000 1971-09-23 2024-10-11 00:10:30 +631 631 632 63.1 126.2 631 1971-09-24 2024-10-11 00:10:31.000 1971-09-24 2024-10-11 00:10:31 +632 632 633 63.2 126.4 632 1971-09-25 2024-10-11 00:10:32.000 1971-09-25 2024-10-11 00:10:32 +633 633 634 63.3 126.60000000000001 633 1971-09-26 2024-10-11 00:10:33.000 1971-09-26 2024-10-11 00:10:33 +634 634 635 63.4 126.80000000000001 634 1971-09-27 2024-10-11 00:10:34.000 1971-09-27 2024-10-11 00:10:34 +635 635 636 63.5 127 635 1971-09-28 2024-10-11 00:10:35.000 1971-09-28 2024-10-11 00:10:35 +636 636 637 63.6 127.2 636 1971-09-29 2024-10-11 00:10:36.000 1971-09-29 2024-10-11 00:10:36 +637 637 638 63.7 127.4 637 1971-09-30 2024-10-11 00:10:37.000 1971-09-30 2024-10-11 00:10:37 +638 638 639 63.8 127.60000000000001 638 1971-10-01 2024-10-11 00:10:38.000 1971-10-01 2024-10-11 00:10:38 +639 639 640 63.9 127.80000000000001 639 1971-10-02 2024-10-11 00:10:39.000 1971-10-02 2024-10-11 00:10:39 +640 640 641 64 128 640 1971-10-03 2024-10-11 00:10:40.000 1971-10-03 2024-10-11 00:10:40 +641 641 642 64.1 128.20000000000002 641 1971-10-04 2024-10-11 00:10:41.000 1971-10-04 2024-10-11 00:10:41 +642 642 643 64.2 128.4 642 1971-10-05 2024-10-11 00:10:42.000 1971-10-05 2024-10-11 00:10:42 +643 643 644 64.3 128.6 643 1971-10-06 2024-10-11 00:10:43.000 1971-10-06 2024-10-11 00:10:43 +644 644 645 64.4 128.8 644 1971-10-07 2024-10-11 00:10:44.000 1971-10-07 2024-10-11 00:10:44 +645 645 646 64.5 129 645 1971-10-08 2024-10-11 00:10:45.000 1971-10-08 2024-10-11 00:10:45 +646 646 647 64.6 129.20000000000002 646 1971-10-09 2024-10-11 00:10:46.000 1971-10-09 2024-10-11 00:10:46 +647 647 648 64.7 129.4 647 1971-10-10 2024-10-11 00:10:47.000 1971-10-10 2024-10-11 00:10:47 +648 648 649 64.8 129.6 648 1971-10-11 2024-10-11 00:10:48.000 1971-10-11 2024-10-11 00:10:48 +649 649 650 64.9 129.8 649 1971-10-12 2024-10-11 00:10:49.000 1971-10-12 2024-10-11 00:10:49 +650 650 651 65 130 650 1971-10-13 2024-10-11 00:10:50.000 1971-10-13 2024-10-11 00:10:50 +651 651 652 65.1 130.20000000000002 651 1971-10-14 2024-10-11 00:10:51.000 1971-10-14 2024-10-11 00:10:51 +652 652 653 65.2 130.4 652 1971-10-15 2024-10-11 00:10:52.000 1971-10-15 2024-10-11 00:10:52 +653 653 654 65.3 130.6 653 1971-10-16 2024-10-11 00:10:53.000 1971-10-16 2024-10-11 00:10:53 +654 654 655 65.4 130.8 654 1971-10-17 2024-10-11 00:10:54.000 1971-10-17 2024-10-11 00:10:54 +655 655 656 65.5 131 655 1971-10-18 2024-10-11 00:10:55.000 1971-10-18 2024-10-11 00:10:55 +656 656 657 65.6 131.20000000000002 656 1971-10-19 2024-10-11 00:10:56.000 1971-10-19 2024-10-11 00:10:56 +657 657 658 65.7 131.4 657 1971-10-20 2024-10-11 00:10:57.000 1971-10-20 2024-10-11 00:10:57 +658 658 659 65.8 131.6 658 1971-10-21 2024-10-11 00:10:58.000 1971-10-21 2024-10-11 00:10:58 +659 659 660 65.9 131.8 659 1971-10-22 2024-10-11 00:10:59.000 1971-10-22 2024-10-11 00:10:59 +660 660 661 66 132 660 1971-10-23 2024-10-11 00:11:00.000 1971-10-23 2024-10-11 00:11:00 +661 661 662 66.1 132.20000000000002 661 1971-10-24 2024-10-11 00:11:01.000 1971-10-24 2024-10-11 00:11:01 +662 662 663 66.2 132.4 662 1971-10-25 2024-10-11 00:11:02.000 1971-10-25 2024-10-11 00:11:02 +663 663 664 66.3 132.6 663 1971-10-26 2024-10-11 00:11:03.000 1971-10-26 2024-10-11 00:11:03 +664 664 665 66.4 132.8 664 1971-10-27 2024-10-11 00:11:04.000 1971-10-27 2024-10-11 00:11:04 +665 665 666 66.5 133 665 1971-10-28 2024-10-11 00:11:05.000 1971-10-28 2024-10-11 00:11:05 +666 666 667 66.6 133.20000000000002 666 1971-10-29 2024-10-11 00:11:06.000 1971-10-29 2024-10-11 00:11:06 +667 667 668 66.7 133.4 667 1971-10-30 2024-10-11 00:11:07.000 1971-10-30 2024-10-11 00:11:07 +668 668 669 66.8 133.6 668 1971-10-31 2024-10-11 00:11:08.000 1971-10-31 2024-10-11 00:11:08 +669 669 670 66.9 133.8 669 1971-11-01 2024-10-11 00:11:09.000 1971-11-01 2024-10-11 00:11:09 +670 670 671 67 134 670 1971-11-02 2024-10-11 00:11:10.000 1971-11-02 2024-10-11 00:11:10 +671 671 672 67.1 134.20000000000002 671 1971-11-03 2024-10-11 00:11:11.000 1971-11-03 2024-10-11 00:11:11 +672 672 673 67.2 134.4 672 1971-11-04 2024-10-11 00:11:12.000 1971-11-04 2024-10-11 00:11:12 +673 673 674 67.3 134.6 673 1971-11-05 2024-10-11 00:11:13.000 1971-11-05 2024-10-11 00:11:13 +674 674 675 67.4 134.8 674 1971-11-06 2024-10-11 00:11:14.000 1971-11-06 2024-10-11 00:11:14 +675 675 676 67.5 135 675 1971-11-07 2024-10-11 00:11:15.000 1971-11-07 2024-10-11 00:11:15 +676 676 677 67.6 135.20000000000002 676 1971-11-08 2024-10-11 00:11:16.000 1971-11-08 2024-10-11 00:11:16 +677 677 678 67.7 135.4 677 1971-11-09 2024-10-11 00:11:17.000 1971-11-09 2024-10-11 00:11:17 +678 678 679 67.8 135.6 678 1971-11-10 2024-10-11 00:11:18.000 1971-11-10 2024-10-11 00:11:18 +679 679 680 67.9 135.8 679 1971-11-11 2024-10-11 00:11:19.000 1971-11-11 2024-10-11 00:11:19 +680 680 681 68 136 680 1971-11-12 2024-10-11 00:11:20.000 1971-11-12 2024-10-11 00:11:20 +681 681 682 68.1 136.20000000000002 681 1971-11-13 2024-10-11 00:11:21.000 1971-11-13 2024-10-11 00:11:21 +682 682 683 68.2 136.4 682 1971-11-14 2024-10-11 00:11:22.000 1971-11-14 2024-10-11 00:11:22 +683 683 684 68.3 136.6 683 1971-11-15 2024-10-11 00:11:23.000 1971-11-15 2024-10-11 00:11:23 +684 684 685 68.4 136.8 684 1971-11-16 2024-10-11 00:11:24.000 1971-11-16 2024-10-11 00:11:24 +685 685 686 68.5 137 685 1971-11-17 2024-10-11 00:11:25.000 1971-11-17 2024-10-11 00:11:25 +686 686 687 68.6 137.20000000000002 686 1971-11-18 2024-10-11 00:11:26.000 1971-11-18 2024-10-11 00:11:26 +687 687 688 68.7 137.4 687 1971-11-19 2024-10-11 00:11:27.000 1971-11-19 2024-10-11 00:11:27 +688 688 689 68.8 137.6 688 1971-11-20 2024-10-11 00:11:28.000 1971-11-20 2024-10-11 00:11:28 +689 689 690 68.9 137.8 689 1971-11-21 2024-10-11 00:11:29.000 1971-11-21 2024-10-11 00:11:29 +690 690 691 69 138 690 1971-11-22 2024-10-11 00:11:30.000 1971-11-22 2024-10-11 00:11:30 +691 691 692 69.1 138.20000000000002 691 1971-11-23 2024-10-11 00:11:31.000 1971-11-23 2024-10-11 00:11:31 +692 692 693 69.2 138.4 692 1971-11-24 2024-10-11 00:11:32.000 1971-11-24 2024-10-11 00:11:32 +693 693 694 69.3 138.6 693 1971-11-25 2024-10-11 00:11:33.000 1971-11-25 2024-10-11 00:11:33 +694 694 695 69.4 138.8 694 1971-11-26 2024-10-11 00:11:34.000 1971-11-26 2024-10-11 00:11:34 +695 695 696 69.5 139 695 1971-11-27 2024-10-11 00:11:35.000 1971-11-27 2024-10-11 00:11:35 +696 696 697 69.6 139.20000000000002 696 1971-11-28 2024-10-11 00:11:36.000 1971-11-28 2024-10-11 00:11:36 +697 697 698 69.7 139.4 697 1971-11-29 2024-10-11 00:11:37.000 1971-11-29 2024-10-11 00:11:37 +698 698 699 69.8 139.6 698 1971-11-30 2024-10-11 00:11:38.000 1971-11-30 2024-10-11 00:11:38 +699 699 700 69.9 139.8 699 1971-12-01 2024-10-11 00:11:39.000 1971-12-01 2024-10-11 00:11:39 +700 700 701 70 140 700 1971-12-02 2024-10-11 00:11:40.000 1971-12-02 2024-10-11 00:11:40 +701 701 702 70.1 140.20000000000002 701 1971-12-03 2024-10-11 00:11:41.000 1971-12-03 2024-10-11 00:11:41 +702 702 703 70.2 140.4 702 1971-12-04 2024-10-11 00:11:42.000 1971-12-04 2024-10-11 00:11:42 +703 703 704 70.3 140.6 703 1971-12-05 2024-10-11 00:11:43.000 1971-12-05 2024-10-11 00:11:43 +704 704 705 70.4 140.8 704 1971-12-06 2024-10-11 00:11:44.000 1971-12-06 2024-10-11 00:11:44 +705 705 706 70.5 141 705 1971-12-07 2024-10-11 00:11:45.000 1971-12-07 2024-10-11 00:11:45 +706 706 707 70.6 141.20000000000002 706 1971-12-08 2024-10-11 00:11:46.000 1971-12-08 2024-10-11 00:11:46 +707 707 708 70.7 141.4 707 1971-12-09 2024-10-11 00:11:47.000 1971-12-09 2024-10-11 00:11:47 +708 708 709 70.8 141.6 708 1971-12-10 2024-10-11 00:11:48.000 1971-12-10 2024-10-11 00:11:48 +709 709 710 70.9 141.8 709 1971-12-11 2024-10-11 00:11:49.000 1971-12-11 2024-10-11 00:11:49 +710 710 711 71 142 710 1971-12-12 2024-10-11 00:11:50.000 1971-12-12 2024-10-11 00:11:50 +711 711 712 71.1 142.20000000000002 711 1971-12-13 2024-10-11 00:11:51.000 1971-12-13 2024-10-11 00:11:51 +712 712 713 71.2 142.4 712 1971-12-14 2024-10-11 00:11:52.000 1971-12-14 2024-10-11 00:11:52 +713 713 714 71.3 142.6 713 1971-12-15 2024-10-11 00:11:53.000 1971-12-15 2024-10-11 00:11:53 +714 714 715 71.4 142.8 714 1971-12-16 2024-10-11 00:11:54.000 1971-12-16 2024-10-11 00:11:54 +715 715 716 71.5 143 715 1971-12-17 2024-10-11 00:11:55.000 1971-12-17 2024-10-11 00:11:55 +716 716 717 71.6 143.20000000000002 716 1971-12-18 2024-10-11 00:11:56.000 1971-12-18 2024-10-11 00:11:56 +717 717 718 71.7 143.4 717 1971-12-19 2024-10-11 00:11:57.000 1971-12-19 2024-10-11 00:11:57 +718 718 719 71.8 143.6 718 1971-12-20 2024-10-11 00:11:58.000 1971-12-20 2024-10-11 00:11:58 +719 719 720 71.9 143.8 719 1971-12-21 2024-10-11 00:11:59.000 1971-12-21 2024-10-11 00:11:59 +720 720 721 72 144 720 1971-12-22 2024-10-11 00:12:00.000 1971-12-22 2024-10-11 00:12:00 +721 721 722 72.1 144.20000000000002 721 1971-12-23 2024-10-11 00:12:01.000 1971-12-23 2024-10-11 00:12:01 +722 722 723 72.2 144.4 722 1971-12-24 2024-10-11 00:12:02.000 1971-12-24 2024-10-11 00:12:02 +723 723 724 72.3 144.6 723 1971-12-25 2024-10-11 00:12:03.000 1971-12-25 2024-10-11 00:12:03 +724 724 725 72.4 144.8 724 1971-12-26 2024-10-11 00:12:04.000 1971-12-26 2024-10-11 00:12:04 +725 725 726 72.5 145 725 1971-12-27 2024-10-11 00:12:05.000 1971-12-27 2024-10-11 00:12:05 +726 726 727 72.6 145.20000000000002 726 1971-12-28 2024-10-11 00:12:06.000 1971-12-28 2024-10-11 00:12:06 +727 727 728 72.7 145.4 727 1971-12-29 2024-10-11 00:12:07.000 1971-12-29 2024-10-11 00:12:07 +728 728 729 72.8 145.6 728 1971-12-30 2024-10-11 00:12:08.000 1971-12-30 2024-10-11 00:12:08 +729 729 730 72.9 145.8 729 1971-12-31 2024-10-11 00:12:09.000 1971-12-31 2024-10-11 00:12:09 +730 730 731 73 146 730 1972-01-01 2024-10-11 00:12:10.000 1972-01-01 2024-10-11 00:12:10 +731 731 732 73.1 146.20000000000002 731 1972-01-02 2024-10-11 00:12:11.000 1972-01-02 2024-10-11 00:12:11 +732 732 733 73.2 146.4 732 1972-01-03 2024-10-11 00:12:12.000 1972-01-03 2024-10-11 00:12:12 +733 733 734 73.3 146.6 733 1972-01-04 2024-10-11 00:12:13.000 1972-01-04 2024-10-11 00:12:13 +734 734 735 73.4 146.8 734 1972-01-05 2024-10-11 00:12:14.000 1972-01-05 2024-10-11 00:12:14 +735 735 736 73.5 147 735 1972-01-06 2024-10-11 00:12:15.000 1972-01-06 2024-10-11 00:12:15 +736 736 737 73.6 147.20000000000002 736 1972-01-07 2024-10-11 00:12:16.000 1972-01-07 2024-10-11 00:12:16 +737 737 738 73.7 147.4 737 1972-01-08 2024-10-11 00:12:17.000 1972-01-08 2024-10-11 00:12:17 +738 738 739 73.8 147.6 738 1972-01-09 2024-10-11 00:12:18.000 1972-01-09 2024-10-11 00:12:18 +739 739 740 73.9 147.8 739 1972-01-10 2024-10-11 00:12:19.000 1972-01-10 2024-10-11 00:12:19 +740 740 741 74 148 740 1972-01-11 2024-10-11 00:12:20.000 1972-01-11 2024-10-11 00:12:20 +741 741 742 74.1 148.20000000000002 741 1972-01-12 2024-10-11 00:12:21.000 1972-01-12 2024-10-11 00:12:21 +742 742 743 74.2 148.4 742 1972-01-13 2024-10-11 00:12:22.000 1972-01-13 2024-10-11 00:12:22 +743 743 744 74.3 148.6 743 1972-01-14 2024-10-11 00:12:23.000 1972-01-14 2024-10-11 00:12:23 +744 744 745 74.4 148.8 744 1972-01-15 2024-10-11 00:12:24.000 1972-01-15 2024-10-11 00:12:24 +745 745 746 74.5 149 745 1972-01-16 2024-10-11 00:12:25.000 1972-01-16 2024-10-11 00:12:25 +746 746 747 74.6 149.20000000000002 746 1972-01-17 2024-10-11 00:12:26.000 1972-01-17 2024-10-11 00:12:26 +747 747 748 74.7 149.4 747 1972-01-18 2024-10-11 00:12:27.000 1972-01-18 2024-10-11 00:12:27 +748 748 749 74.8 149.6 748 1972-01-19 2024-10-11 00:12:28.000 1972-01-19 2024-10-11 00:12:28 +749 749 750 74.9 149.8 749 1972-01-20 2024-10-11 00:12:29.000 1972-01-20 2024-10-11 00:12:29 +750 750 751 75 150 750 1972-01-21 2024-10-11 00:12:30.000 1972-01-21 2024-10-11 00:12:30 +751 751 752 75.1 150.20000000000002 751 1972-01-22 2024-10-11 00:12:31.000 1972-01-22 2024-10-11 00:12:31 +752 752 753 75.2 150.4 752 1972-01-23 2024-10-11 00:12:32.000 1972-01-23 2024-10-11 00:12:32 +753 753 754 75.3 150.6 753 1972-01-24 2024-10-11 00:12:33.000 1972-01-24 2024-10-11 00:12:33 +754 754 755 75.4 150.8 754 1972-01-25 2024-10-11 00:12:34.000 1972-01-25 2024-10-11 00:12:34 +755 755 756 75.5 151 755 1972-01-26 2024-10-11 00:12:35.000 1972-01-26 2024-10-11 00:12:35 +756 756 757 75.6 151.20000000000002 756 1972-01-27 2024-10-11 00:12:36.000 1972-01-27 2024-10-11 00:12:36 +757 757 758 75.7 151.4 757 1972-01-28 2024-10-11 00:12:37.000 1972-01-28 2024-10-11 00:12:37 +758 758 759 75.8 151.6 758 1972-01-29 2024-10-11 00:12:38.000 1972-01-29 2024-10-11 00:12:38 +759 759 760 75.9 151.8 759 1972-01-30 2024-10-11 00:12:39.000 1972-01-30 2024-10-11 00:12:39 +760 760 761 76 152 760 1972-01-31 2024-10-11 00:12:40.000 1972-01-31 2024-10-11 00:12:40 +761 761 762 76.1 152.20000000000002 761 1972-02-01 2024-10-11 00:12:41.000 1972-02-01 2024-10-11 00:12:41 +762 762 763 76.2 152.4 762 1972-02-02 2024-10-11 00:12:42.000 1972-02-02 2024-10-11 00:12:42 +763 763 764 76.3 152.6 763 1972-02-03 2024-10-11 00:12:43.000 1972-02-03 2024-10-11 00:12:43 +764 764 765 76.4 152.8 764 1972-02-04 2024-10-11 00:12:44.000 1972-02-04 2024-10-11 00:12:44 +765 765 766 76.5 153 765 1972-02-05 2024-10-11 00:12:45.000 1972-02-05 2024-10-11 00:12:45 +766 766 767 76.6 153.20000000000002 766 1972-02-06 2024-10-11 00:12:46.000 1972-02-06 2024-10-11 00:12:46 +767 767 768 76.7 153.4 767 1972-02-07 2024-10-11 00:12:47.000 1972-02-07 2024-10-11 00:12:47 +768 768 769 76.8 153.60000000000002 768 1972-02-08 2024-10-11 00:12:48.000 1972-02-08 2024-10-11 00:12:48 +769 769 770 76.9 153.8 769 1972-02-09 2024-10-11 00:12:49.000 1972-02-09 2024-10-11 00:12:49 +770 770 771 77 154 770 1972-02-10 2024-10-11 00:12:50.000 1972-02-10 2024-10-11 00:12:50 +771 771 772 77.1 154.20000000000002 771 1972-02-11 2024-10-11 00:12:51.000 1972-02-11 2024-10-11 00:12:51 +772 772 773 77.2 154.4 772 1972-02-12 2024-10-11 00:12:52.000 1972-02-12 2024-10-11 00:12:52 +773 773 774 77.3 154.60000000000002 773 1972-02-13 2024-10-11 00:12:53.000 1972-02-13 2024-10-11 00:12:53 +774 774 775 77.4 154.8 774 1972-02-14 2024-10-11 00:12:54.000 1972-02-14 2024-10-11 00:12:54 +775 775 776 77.5 155 775 1972-02-15 2024-10-11 00:12:55.000 1972-02-15 2024-10-11 00:12:55 +776 776 777 77.6 155.20000000000002 776 1972-02-16 2024-10-11 00:12:56.000 1972-02-16 2024-10-11 00:12:56 +777 777 778 77.7 155.4 777 1972-02-17 2024-10-11 00:12:57.000 1972-02-17 2024-10-11 00:12:57 +778 778 779 77.8 155.60000000000002 778 1972-02-18 2024-10-11 00:12:58.000 1972-02-18 2024-10-11 00:12:58 +779 779 780 77.9 155.8 779 1972-02-19 2024-10-11 00:12:59.000 1972-02-19 2024-10-11 00:12:59 +780 780 781 78 156 780 1972-02-20 2024-10-11 00:13:00.000 1972-02-20 2024-10-11 00:13:00 +781 781 782 78.1 156.20000000000002 781 1972-02-21 2024-10-11 00:13:01.000 1972-02-21 2024-10-11 00:13:01 +782 782 783 78.2 156.4 782 1972-02-22 2024-10-11 00:13:02.000 1972-02-22 2024-10-11 00:13:02 +783 783 784 78.3 156.60000000000002 783 1972-02-23 2024-10-11 00:13:03.000 1972-02-23 2024-10-11 00:13:03 +784 784 785 78.4 156.8 784 1972-02-24 2024-10-11 00:13:04.000 1972-02-24 2024-10-11 00:13:04 +785 785 786 78.5 157 785 1972-02-25 2024-10-11 00:13:05.000 1972-02-25 2024-10-11 00:13:05 +786 786 787 78.6 157.20000000000002 786 1972-02-26 2024-10-11 00:13:06.000 1972-02-26 2024-10-11 00:13:06 +787 787 788 78.7 157.4 787 1972-02-27 2024-10-11 00:13:07.000 1972-02-27 2024-10-11 00:13:07 +788 788 789 78.8 157.60000000000002 788 1972-02-28 2024-10-11 00:13:08.000 1972-02-28 2024-10-11 00:13:08 +789 789 790 78.9 157.8 789 1972-02-29 2024-10-11 00:13:09.000 1972-02-29 2024-10-11 00:13:09 +790 790 791 79 158 790 1972-03-01 2024-10-11 00:13:10.000 1972-03-01 2024-10-11 00:13:10 +791 791 792 79.1 158.20000000000002 791 1972-03-02 2024-10-11 00:13:11.000 1972-03-02 2024-10-11 00:13:11 +792 792 793 79.2 158.4 792 1972-03-03 2024-10-11 00:13:12.000 1972-03-03 2024-10-11 00:13:12 +793 793 794 79.3 158.60000000000002 793 1972-03-04 2024-10-11 00:13:13.000 1972-03-04 2024-10-11 00:13:13 +794 794 795 79.4 158.8 794 1972-03-05 2024-10-11 00:13:14.000 1972-03-05 2024-10-11 00:13:14 +795 795 796 79.5 159 795 1972-03-06 2024-10-11 00:13:15.000 1972-03-06 2024-10-11 00:13:15 +796 796 797 79.6 159.20000000000002 796 1972-03-07 2024-10-11 00:13:16.000 1972-03-07 2024-10-11 00:13:16 +797 797 798 79.7 159.4 797 1972-03-08 2024-10-11 00:13:17.000 1972-03-08 2024-10-11 00:13:17 +798 798 799 79.8 159.60000000000002 798 1972-03-09 2024-10-11 00:13:18.000 1972-03-09 2024-10-11 00:13:18 +799 799 800 79.9 159.8 799 1972-03-10 2024-10-11 00:13:19.000 1972-03-10 2024-10-11 00:13:19 +800 800 801 80 160 800 1972-03-11 2024-10-11 00:13:20.000 1972-03-11 2024-10-11 00:13:20 +801 801 802 80.1 160.20000000000002 801 1972-03-12 2024-10-11 00:13:21.000 1972-03-12 2024-10-11 00:13:21 +802 802 803 80.2 160.4 802 1972-03-13 2024-10-11 00:13:22.000 1972-03-13 2024-10-11 00:13:22 +803 803 804 80.3 160.60000000000002 803 1972-03-14 2024-10-11 00:13:23.000 1972-03-14 2024-10-11 00:13:23 +804 804 805 80.4 160.8 804 1972-03-15 2024-10-11 00:13:24.000 1972-03-15 2024-10-11 00:13:24 +805 805 806 80.5 161 805 1972-03-16 2024-10-11 00:13:25.000 1972-03-16 2024-10-11 00:13:25 +806 806 807 80.6 161.20000000000002 806 1972-03-17 2024-10-11 00:13:26.000 1972-03-17 2024-10-11 00:13:26 +807 807 808 80.7 161.4 807 1972-03-18 2024-10-11 00:13:27.000 1972-03-18 2024-10-11 00:13:27 +808 808 809 80.8 161.60000000000002 808 1972-03-19 2024-10-11 00:13:28.000 1972-03-19 2024-10-11 00:13:28 +809 809 810 80.9 161.8 809 1972-03-20 2024-10-11 00:13:29.000 1972-03-20 2024-10-11 00:13:29 +810 810 811 81 162 810 1972-03-21 2024-10-11 00:13:30.000 1972-03-21 2024-10-11 00:13:30 +811 811 812 81.1 162.20000000000002 811 1972-03-22 2024-10-11 00:13:31.000 1972-03-22 2024-10-11 00:13:31 +812 812 813 81.2 162.4 812 1972-03-23 2024-10-11 00:13:32.000 1972-03-23 2024-10-11 00:13:32 +813 813 814 81.3 162.60000000000002 813 1972-03-24 2024-10-11 00:13:33.000 1972-03-24 2024-10-11 00:13:33 +814 814 815 81.4 162.8 814 1972-03-25 2024-10-11 00:13:34.000 1972-03-25 2024-10-11 00:13:34 +815 815 816 81.5 163 815 1972-03-26 2024-10-11 00:13:35.000 1972-03-26 2024-10-11 00:13:35 +816 816 817 81.6 163.20000000000002 816 1972-03-27 2024-10-11 00:13:36.000 1972-03-27 2024-10-11 00:13:36 +817 817 818 81.7 163.4 817 1972-03-28 2024-10-11 00:13:37.000 1972-03-28 2024-10-11 00:13:37 +818 818 819 81.8 163.60000000000002 818 1972-03-29 2024-10-11 00:13:38.000 1972-03-29 2024-10-11 00:13:38 +819 819 820 81.9 163.8 819 1972-03-30 2024-10-11 00:13:39.000 1972-03-30 2024-10-11 00:13:39 +820 820 821 82 164 820 1972-03-31 2024-10-11 00:13:40.000 1972-03-31 2024-10-11 00:13:40 +821 821 822 82.1 164.20000000000002 821 1972-04-01 2024-10-11 00:13:41.000 1972-04-01 2024-10-11 00:13:41 +822 822 823 82.2 164.4 822 1972-04-02 2024-10-11 00:13:42.000 1972-04-02 2024-10-11 00:13:42 +823 823 824 82.3 164.60000000000002 823 1972-04-03 2024-10-11 00:13:43.000 1972-04-03 2024-10-11 00:13:43 +824 824 825 82.4 164.8 824 1972-04-04 2024-10-11 00:13:44.000 1972-04-04 2024-10-11 00:13:44 +825 825 826 82.5 165 825 1972-04-05 2024-10-11 00:13:45.000 1972-04-05 2024-10-11 00:13:45 +826 826 827 82.6 165.20000000000002 826 1972-04-06 2024-10-11 00:13:46.000 1972-04-06 2024-10-11 00:13:46 +827 827 828 82.7 165.4 827 1972-04-07 2024-10-11 00:13:47.000 1972-04-07 2024-10-11 00:13:47 +828 828 829 82.8 165.60000000000002 828 1972-04-08 2024-10-11 00:13:48.000 1972-04-08 2024-10-11 00:13:48 +829 829 830 82.9 165.8 829 1972-04-09 2024-10-11 00:13:49.000 1972-04-09 2024-10-11 00:13:49 +830 830 831 83 166 830 1972-04-10 2024-10-11 00:13:50.000 1972-04-10 2024-10-11 00:13:50 +831 831 832 83.1 166.20000000000002 831 1972-04-11 2024-10-11 00:13:51.000 1972-04-11 2024-10-11 00:13:51 +832 832 833 83.2 166.4 832 1972-04-12 2024-10-11 00:13:52.000 1972-04-12 2024-10-11 00:13:52 +833 833 834 83.3 166.60000000000002 833 1972-04-13 2024-10-11 00:13:53.000 1972-04-13 2024-10-11 00:13:53 +834 834 835 83.4 166.8 834 1972-04-14 2024-10-11 00:13:54.000 1972-04-14 2024-10-11 00:13:54 +835 835 836 83.5 167 835 1972-04-15 2024-10-11 00:13:55.000 1972-04-15 2024-10-11 00:13:55 +836 836 837 83.6 167.20000000000002 836 1972-04-16 2024-10-11 00:13:56.000 1972-04-16 2024-10-11 00:13:56 +837 837 838 83.7 167.4 837 1972-04-17 2024-10-11 00:13:57.000 1972-04-17 2024-10-11 00:13:57 +838 838 839 83.8 167.60000000000002 838 1972-04-18 2024-10-11 00:13:58.000 1972-04-18 2024-10-11 00:13:58 +839 839 840 83.9 167.8 839 1972-04-19 2024-10-11 00:13:59.000 1972-04-19 2024-10-11 00:13:59 +840 840 841 84 168 840 1972-04-20 2024-10-11 00:14:00.000 1972-04-20 2024-10-11 00:14:00 +841 841 842 84.1 168.20000000000002 841 1972-04-21 2024-10-11 00:14:01.000 1972-04-21 2024-10-11 00:14:01 +842 842 843 84.2 168.4 842 1972-04-22 2024-10-11 00:14:02.000 1972-04-22 2024-10-11 00:14:02 +843 843 844 84.3 168.60000000000002 843 1972-04-23 2024-10-11 00:14:03.000 1972-04-23 2024-10-11 00:14:03 +844 844 845 84.4 168.8 844 1972-04-24 2024-10-11 00:14:04.000 1972-04-24 2024-10-11 00:14:04 +845 845 846 84.5 169 845 1972-04-25 2024-10-11 00:14:05.000 1972-04-25 2024-10-11 00:14:05 +846 846 847 84.6 169.20000000000002 846 1972-04-26 2024-10-11 00:14:06.000 1972-04-26 2024-10-11 00:14:06 +847 847 848 84.7 169.4 847 1972-04-27 2024-10-11 00:14:07.000 1972-04-27 2024-10-11 00:14:07 +848 848 849 84.8 169.60000000000002 848 1972-04-28 2024-10-11 00:14:08.000 1972-04-28 2024-10-11 00:14:08 +849 849 850 84.9 169.8 849 1972-04-29 2024-10-11 00:14:09.000 1972-04-29 2024-10-11 00:14:09 +850 850 851 85 170 850 1972-04-30 2024-10-11 00:14:10.000 1972-04-30 2024-10-11 00:14:10 +851 851 852 85.1 170.20000000000002 851 1972-05-01 2024-10-11 00:14:11.000 1972-05-01 2024-10-11 00:14:11 +852 852 853 85.2 170.4 852 1972-05-02 2024-10-11 00:14:12.000 1972-05-02 2024-10-11 00:14:12 +853 853 854 85.3 170.60000000000002 853 1972-05-03 2024-10-11 00:14:13.000 1972-05-03 2024-10-11 00:14:13 +854 854 855 85.4 170.8 854 1972-05-04 2024-10-11 00:14:14.000 1972-05-04 2024-10-11 00:14:14 +855 855 856 85.5 171 855 1972-05-05 2024-10-11 00:14:15.000 1972-05-05 2024-10-11 00:14:15 +856 856 857 85.6 171.20000000000002 856 1972-05-06 2024-10-11 00:14:16.000 1972-05-06 2024-10-11 00:14:16 +857 857 858 85.7 171.4 857 1972-05-07 2024-10-11 00:14:17.000 1972-05-07 2024-10-11 00:14:17 +858 858 859 85.8 171.60000000000002 858 1972-05-08 2024-10-11 00:14:18.000 1972-05-08 2024-10-11 00:14:18 +859 859 860 85.9 171.8 859 1972-05-09 2024-10-11 00:14:19.000 1972-05-09 2024-10-11 00:14:19 +860 860 861 86 172 860 1972-05-10 2024-10-11 00:14:20.000 1972-05-10 2024-10-11 00:14:20 +861 861 862 86.1 172.20000000000002 861 1972-05-11 2024-10-11 00:14:21.000 1972-05-11 2024-10-11 00:14:21 +862 862 863 86.2 172.4 862 1972-05-12 2024-10-11 00:14:22.000 1972-05-12 2024-10-11 00:14:22 +863 863 864 86.3 172.60000000000002 863 1972-05-13 2024-10-11 00:14:23.000 1972-05-13 2024-10-11 00:14:23 +864 864 865 86.4 172.8 864 1972-05-14 2024-10-11 00:14:24.000 1972-05-14 2024-10-11 00:14:24 +865 865 866 86.5 173 865 1972-05-15 2024-10-11 00:14:25.000 1972-05-15 2024-10-11 00:14:25 +866 866 867 86.6 173.20000000000002 866 1972-05-16 2024-10-11 00:14:26.000 1972-05-16 2024-10-11 00:14:26 +867 867 868 86.7 173.4 867 1972-05-17 2024-10-11 00:14:27.000 1972-05-17 2024-10-11 00:14:27 +868 868 869 86.8 173.60000000000002 868 1972-05-18 2024-10-11 00:14:28.000 1972-05-18 2024-10-11 00:14:28 +869 869 870 86.9 173.8 869 1972-05-19 2024-10-11 00:14:29.000 1972-05-19 2024-10-11 00:14:29 +870 870 871 87 174 870 1972-05-20 2024-10-11 00:14:30.000 1972-05-20 2024-10-11 00:14:30 +871 871 872 87.1 174.20000000000002 871 1972-05-21 2024-10-11 00:14:31.000 1972-05-21 2024-10-11 00:14:31 +872 872 873 87.2 174.4 872 1972-05-22 2024-10-11 00:14:32.000 1972-05-22 2024-10-11 00:14:32 +873 873 874 87.3 174.60000000000002 873 1972-05-23 2024-10-11 00:14:33.000 1972-05-23 2024-10-11 00:14:33 +874 874 875 87.4 174.8 874 1972-05-24 2024-10-11 00:14:34.000 1972-05-24 2024-10-11 00:14:34 +875 875 876 87.5 175 875 1972-05-25 2024-10-11 00:14:35.000 1972-05-25 2024-10-11 00:14:35 +876 876 877 87.6 175.20000000000002 876 1972-05-26 2024-10-11 00:14:36.000 1972-05-26 2024-10-11 00:14:36 +877 877 878 87.7 175.4 877 1972-05-27 2024-10-11 00:14:37.000 1972-05-27 2024-10-11 00:14:37 +878 878 879 87.8 175.60000000000002 878 1972-05-28 2024-10-11 00:14:38.000 1972-05-28 2024-10-11 00:14:38 +879 879 880 87.9 175.8 879 1972-05-29 2024-10-11 00:14:39.000 1972-05-29 2024-10-11 00:14:39 +880 880 881 88 176 880 1972-05-30 2024-10-11 00:14:40.000 1972-05-30 2024-10-11 00:14:40 +881 881 882 88.1 176.20000000000002 881 1972-05-31 2024-10-11 00:14:41.000 1972-05-31 2024-10-11 00:14:41 +882 882 883 88.2 176.4 882 1972-06-01 2024-10-11 00:14:42.000 1972-06-01 2024-10-11 00:14:42 +883 883 884 88.3 176.60000000000002 883 1972-06-02 2024-10-11 00:14:43.000 1972-06-02 2024-10-11 00:14:43 +884 884 885 88.4 176.8 884 1972-06-03 2024-10-11 00:14:44.000 1972-06-03 2024-10-11 00:14:44 +885 885 886 88.5 177 885 1972-06-04 2024-10-11 00:14:45.000 1972-06-04 2024-10-11 00:14:45 +886 886 887 88.6 177.20000000000002 886 1972-06-05 2024-10-11 00:14:46.000 1972-06-05 2024-10-11 00:14:46 +887 887 888 88.7 177.4 887 1972-06-06 2024-10-11 00:14:47.000 1972-06-06 2024-10-11 00:14:47 +888 888 889 88.8 177.60000000000002 888 1972-06-07 2024-10-11 00:14:48.000 1972-06-07 2024-10-11 00:14:48 +889 889 890 88.9 177.8 889 1972-06-08 2024-10-11 00:14:49.000 1972-06-08 2024-10-11 00:14:49 +890 890 891 89 178 890 1972-06-09 2024-10-11 00:14:50.000 1972-06-09 2024-10-11 00:14:50 +891 891 892 89.1 178.20000000000002 891 1972-06-10 2024-10-11 00:14:51.000 1972-06-10 2024-10-11 00:14:51 +892 892 893 89.2 178.4 892 1972-06-11 2024-10-11 00:14:52.000 1972-06-11 2024-10-11 00:14:52 +893 893 894 89.3 178.60000000000002 893 1972-06-12 2024-10-11 00:14:53.000 1972-06-12 2024-10-11 00:14:53 +894 894 895 89.4 178.8 894 1972-06-13 2024-10-11 00:14:54.000 1972-06-13 2024-10-11 00:14:54 +895 895 896 89.5 179 895 1972-06-14 2024-10-11 00:14:55.000 1972-06-14 2024-10-11 00:14:55 +896 896 897 89.6 179.20000000000002 896 1972-06-15 2024-10-11 00:14:56.000 1972-06-15 2024-10-11 00:14:56 +897 897 898 89.7 179.4 897 1972-06-16 2024-10-11 00:14:57.000 1972-06-16 2024-10-11 00:14:57 +898 898 899 89.8 179.60000000000002 898 1972-06-17 2024-10-11 00:14:58.000 1972-06-17 2024-10-11 00:14:58 +899 899 900 89.9 179.8 899 1972-06-18 2024-10-11 00:14:59.000 1972-06-18 2024-10-11 00:14:59 +900 900 901 90 180 900 1972-06-19 2024-10-11 00:15:00.000 1972-06-19 2024-10-11 00:15:00 +901 901 902 90.1 180.20000000000002 901 1972-06-20 2024-10-11 00:15:01.000 1972-06-20 2024-10-11 00:15:01 +902 902 903 90.2 180.4 902 1972-06-21 2024-10-11 00:15:02.000 1972-06-21 2024-10-11 00:15:02 +903 903 904 90.3 180.60000000000002 903 1972-06-22 2024-10-11 00:15:03.000 1972-06-22 2024-10-11 00:15:03 +904 904 905 90.4 180.8 904 1972-06-23 2024-10-11 00:15:04.000 1972-06-23 2024-10-11 00:15:04 +905 905 906 90.5 181 905 1972-06-24 2024-10-11 00:15:05.000 1972-06-24 2024-10-11 00:15:05 +906 906 907 90.6 181.20000000000002 906 1972-06-25 2024-10-11 00:15:06.000 1972-06-25 2024-10-11 00:15:06 +907 907 908 90.7 181.4 907 1972-06-26 2024-10-11 00:15:07.000 1972-06-26 2024-10-11 00:15:07 +908 908 909 90.8 181.60000000000002 908 1972-06-27 2024-10-11 00:15:08.000 1972-06-27 2024-10-11 00:15:08 +909 909 910 90.9 181.8 909 1972-06-28 2024-10-11 00:15:09.000 1972-06-28 2024-10-11 00:15:09 +910 910 911 91 182 910 1972-06-29 2024-10-11 00:15:10.000 1972-06-29 2024-10-11 00:15:10 +911 911 912 91.1 182.20000000000002 911 1972-06-30 2024-10-11 00:15:11.000 1972-06-30 2024-10-11 00:15:11 +912 912 913 91.2 182.4 912 1972-07-01 2024-10-11 00:15:12.000 1972-07-01 2024-10-11 00:15:12 +913 913 914 91.3 182.60000000000002 913 1972-07-02 2024-10-11 00:15:13.000 1972-07-02 2024-10-11 00:15:13 +914 914 915 91.4 182.8 914 1972-07-03 2024-10-11 00:15:14.000 1972-07-03 2024-10-11 00:15:14 +915 915 916 91.5 183 915 1972-07-04 2024-10-11 00:15:15.000 1972-07-04 2024-10-11 00:15:15 +916 916 917 91.6 183.20000000000002 916 1972-07-05 2024-10-11 00:15:16.000 1972-07-05 2024-10-11 00:15:16 +917 917 918 91.7 183.4 917 1972-07-06 2024-10-11 00:15:17.000 1972-07-06 2024-10-11 00:15:17 +918 918 919 91.8 183.60000000000002 918 1972-07-07 2024-10-11 00:15:18.000 1972-07-07 2024-10-11 00:15:18 +919 919 920 91.9 183.8 919 1972-07-08 2024-10-11 00:15:19.000 1972-07-08 2024-10-11 00:15:19 +920 920 921 92 184 920 1972-07-09 2024-10-11 00:15:20.000 1972-07-09 2024-10-11 00:15:20 +921 921 922 92.1 184.20000000000002 921 1972-07-10 2024-10-11 00:15:21.000 1972-07-10 2024-10-11 00:15:21 +922 922 923 92.2 184.4 922 1972-07-11 2024-10-11 00:15:22.000 1972-07-11 2024-10-11 00:15:22 +923 923 924 92.3 184.60000000000002 923 1972-07-12 2024-10-11 00:15:23.000 1972-07-12 2024-10-11 00:15:23 +924 924 925 92.4 184.8 924 1972-07-13 2024-10-11 00:15:24.000 1972-07-13 2024-10-11 00:15:24 +925 925 926 92.5 185 925 1972-07-14 2024-10-11 00:15:25.000 1972-07-14 2024-10-11 00:15:25 +926 926 927 92.6 185.20000000000002 926 1972-07-15 2024-10-11 00:15:26.000 1972-07-15 2024-10-11 00:15:26 +927 927 928 92.7 185.4 927 1972-07-16 2024-10-11 00:15:27.000 1972-07-16 2024-10-11 00:15:27 +928 928 929 92.8 185.60000000000002 928 1972-07-17 2024-10-11 00:15:28.000 1972-07-17 2024-10-11 00:15:28 +929 929 930 92.9 185.8 929 1972-07-18 2024-10-11 00:15:29.000 1972-07-18 2024-10-11 00:15:29 +930 930 931 93 186 930 1972-07-19 2024-10-11 00:15:30.000 1972-07-19 2024-10-11 00:15:30 +931 931 932 93.1 186.20000000000002 931 1972-07-20 2024-10-11 00:15:31.000 1972-07-20 2024-10-11 00:15:31 +932 932 933 93.2 186.4 932 1972-07-21 2024-10-11 00:15:32.000 1972-07-21 2024-10-11 00:15:32 +933 933 934 93.3 186.60000000000002 933 1972-07-22 2024-10-11 00:15:33.000 1972-07-22 2024-10-11 00:15:33 +934 934 935 93.4 186.8 934 1972-07-23 2024-10-11 00:15:34.000 1972-07-23 2024-10-11 00:15:34 +935 935 936 93.5 187 935 1972-07-24 2024-10-11 00:15:35.000 1972-07-24 2024-10-11 00:15:35 +936 936 937 93.6 187.20000000000002 936 1972-07-25 2024-10-11 00:15:36.000 1972-07-25 2024-10-11 00:15:36 +937 937 938 93.7 187.4 937 1972-07-26 2024-10-11 00:15:37.000 1972-07-26 2024-10-11 00:15:37 +938 938 939 93.8 187.60000000000002 938 1972-07-27 2024-10-11 00:15:38.000 1972-07-27 2024-10-11 00:15:38 +939 939 940 93.9 187.8 939 1972-07-28 2024-10-11 00:15:39.000 1972-07-28 2024-10-11 00:15:39 +940 940 941 94 188 940 1972-07-29 2024-10-11 00:15:40.000 1972-07-29 2024-10-11 00:15:40 +941 941 942 94.1 188.20000000000002 941 1972-07-30 2024-10-11 00:15:41.000 1972-07-30 2024-10-11 00:15:41 +942 942 943 94.2 188.4 942 1972-07-31 2024-10-11 00:15:42.000 1972-07-31 2024-10-11 00:15:42 +943 943 944 94.3 188.60000000000002 943 1972-08-01 2024-10-11 00:15:43.000 1972-08-01 2024-10-11 00:15:43 +944 944 945 94.4 188.8 944 1972-08-02 2024-10-11 00:15:44.000 1972-08-02 2024-10-11 00:15:44 +945 945 946 94.5 189 945 1972-08-03 2024-10-11 00:15:45.000 1972-08-03 2024-10-11 00:15:45 +946 946 947 94.6 189.20000000000002 946 1972-08-04 2024-10-11 00:15:46.000 1972-08-04 2024-10-11 00:15:46 +947 947 948 94.7 189.4 947 1972-08-05 2024-10-11 00:15:47.000 1972-08-05 2024-10-11 00:15:47 +948 948 949 94.8 189.60000000000002 948 1972-08-06 2024-10-11 00:15:48.000 1972-08-06 2024-10-11 00:15:48 +949 949 950 94.9 189.8 949 1972-08-07 2024-10-11 00:15:49.000 1972-08-07 2024-10-11 00:15:49 +950 950 951 95 190 950 1972-08-08 2024-10-11 00:15:50.000 1972-08-08 2024-10-11 00:15:50 +951 951 952 95.1 190.20000000000002 951 1972-08-09 2024-10-11 00:15:51.000 1972-08-09 2024-10-11 00:15:51 +952 952 953 95.2 190.4 952 1972-08-10 2024-10-11 00:15:52.000 1972-08-10 2024-10-11 00:15:52 +953 953 954 95.3 190.60000000000002 953 1972-08-11 2024-10-11 00:15:53.000 1972-08-11 2024-10-11 00:15:53 +954 954 955 95.4 190.8 954 1972-08-12 2024-10-11 00:15:54.000 1972-08-12 2024-10-11 00:15:54 +955 955 956 95.5 191 955 1972-08-13 2024-10-11 00:15:55.000 1972-08-13 2024-10-11 00:15:55 +956 956 957 95.6 191.20000000000002 956 1972-08-14 2024-10-11 00:15:56.000 1972-08-14 2024-10-11 00:15:56 +957 957 958 95.7 191.4 957 1972-08-15 2024-10-11 00:15:57.000 1972-08-15 2024-10-11 00:15:57 +958 958 959 95.8 191.60000000000002 958 1972-08-16 2024-10-11 00:15:58.000 1972-08-16 2024-10-11 00:15:58 +959 959 960 95.9 191.8 959 1972-08-17 2024-10-11 00:15:59.000 1972-08-17 2024-10-11 00:15:59 +960 960 961 96 192 960 1972-08-18 2024-10-11 00:16:00.000 1972-08-18 2024-10-11 00:16:00 +961 961 962 96.1 192.20000000000002 961 1972-08-19 2024-10-11 00:16:01.000 1972-08-19 2024-10-11 00:16:01 +962 962 963 96.2 192.4 962 1972-08-20 2024-10-11 00:16:02.000 1972-08-20 2024-10-11 00:16:02 +963 963 964 96.3 192.60000000000002 963 1972-08-21 2024-10-11 00:16:03.000 1972-08-21 2024-10-11 00:16:03 +964 964 965 96.4 192.8 964 1972-08-22 2024-10-11 00:16:04.000 1972-08-22 2024-10-11 00:16:04 +965 965 966 96.5 193 965 1972-08-23 2024-10-11 00:16:05.000 1972-08-23 2024-10-11 00:16:05 +966 966 967 96.6 193.20000000000002 966 1972-08-24 2024-10-11 00:16:06.000 1972-08-24 2024-10-11 00:16:06 +967 967 968 96.7 193.4 967 1972-08-25 2024-10-11 00:16:07.000 1972-08-25 2024-10-11 00:16:07 +968 968 969 96.8 193.60000000000002 968 1972-08-26 2024-10-11 00:16:08.000 1972-08-26 2024-10-11 00:16:08 +969 969 970 96.9 193.8 969 1972-08-27 2024-10-11 00:16:09.000 1972-08-27 2024-10-11 00:16:09 +970 970 971 97 194 970 1972-08-28 2024-10-11 00:16:10.000 1972-08-28 2024-10-11 00:16:10 +971 971 972 97.1 194.20000000000002 971 1972-08-29 2024-10-11 00:16:11.000 1972-08-29 2024-10-11 00:16:11 +972 972 973 97.2 194.4 972 1972-08-30 2024-10-11 00:16:12.000 1972-08-30 2024-10-11 00:16:12 +973 973 974 97.3 194.60000000000002 973 1972-08-31 2024-10-11 00:16:13.000 1972-08-31 2024-10-11 00:16:13 +974 974 975 97.4 194.8 974 1972-09-01 2024-10-11 00:16:14.000 1972-09-01 2024-10-11 00:16:14 +975 975 976 97.5 195 975 1972-09-02 2024-10-11 00:16:15.000 1972-09-02 2024-10-11 00:16:15 +976 976 977 97.6 195.20000000000002 976 1972-09-03 2024-10-11 00:16:16.000 1972-09-03 2024-10-11 00:16:16 +977 977 978 97.7 195.4 977 1972-09-04 2024-10-11 00:16:17.000 1972-09-04 2024-10-11 00:16:17 +978 978 979 97.8 195.60000000000002 978 1972-09-05 2024-10-11 00:16:18.000 1972-09-05 2024-10-11 00:16:18 +979 979 980 97.9 195.8 979 1972-09-06 2024-10-11 00:16:19.000 1972-09-06 2024-10-11 00:16:19 +980 980 981 98 196 980 1972-09-07 2024-10-11 00:16:20.000 1972-09-07 2024-10-11 00:16:20 +981 981 982 98.1 196.20000000000002 981 1972-09-08 2024-10-11 00:16:21.000 1972-09-08 2024-10-11 00:16:21 +982 982 983 98.2 196.4 982 1972-09-09 2024-10-11 00:16:22.000 1972-09-09 2024-10-11 00:16:22 +983 983 984 98.3 196.60000000000002 983 1972-09-10 2024-10-11 00:16:23.000 1972-09-10 2024-10-11 00:16:23 +984 984 985 98.4 196.8 984 1972-09-11 2024-10-11 00:16:24.000 1972-09-11 2024-10-11 00:16:24 +985 985 986 98.5 197 985 1972-09-12 2024-10-11 00:16:25.000 1972-09-12 2024-10-11 00:16:25 +986 986 987 98.6 197.20000000000002 986 1972-09-13 2024-10-11 00:16:26.000 1972-09-13 2024-10-11 00:16:26 +987 987 988 98.7 197.4 987 1972-09-14 2024-10-11 00:16:27.000 1972-09-14 2024-10-11 00:16:27 +988 988 989 98.8 197.60000000000002 988 1972-09-15 2024-10-11 00:16:28.000 1972-09-15 2024-10-11 00:16:28 +989 989 990 98.9 197.8 989 1972-09-16 2024-10-11 00:16:29.000 1972-09-16 2024-10-11 00:16:29 +990 990 991 99 198 990 1972-09-17 2024-10-11 00:16:30.000 1972-09-17 2024-10-11 00:16:30 +991 991 992 99.1 198.20000000000002 991 1972-09-18 2024-10-11 00:16:31.000 1972-09-18 2024-10-11 00:16:31 +992 992 993 99.2 198.4 992 1972-09-19 2024-10-11 00:16:32.000 1972-09-19 2024-10-11 00:16:32 +993 993 994 99.3 198.60000000000002 993 1972-09-20 2024-10-11 00:16:33.000 1972-09-20 2024-10-11 00:16:33 +994 994 995 99.4 198.8 994 1972-09-21 2024-10-11 00:16:34.000 1972-09-21 2024-10-11 00:16:34 +995 995 996 99.5 199 995 1972-09-22 2024-10-11 00:16:35.000 1972-09-22 2024-10-11 00:16:35 +996 996 997 99.6 199.20000000000002 996 1972-09-23 2024-10-11 00:16:36.000 1972-09-23 2024-10-11 00:16:36 +997 997 998 99.7 199.4 997 1972-09-24 2024-10-11 00:16:37.000 1972-09-24 2024-10-11 00:16:37 +998 998 999 99.8 199.60000000000002 998 1972-09-25 2024-10-11 00:16:38.000 1972-09-25 2024-10-11 00:16:38 +999 999 1000 99.9 199.8 999 1972-09-26 2024-10-11 00:16:39.000 1972-09-26 2024-10-11 00:16:39 +1000 1000 1001 100 200 1000 1972-09-27 2024-10-11 00:16:40.000 1972-09-27 2024-10-11 00:16:40 +1001 1001 1002 100.1 200.20000000000002 1001 1972-09-28 2024-10-11 00:16:41.000 1972-09-28 2024-10-11 00:16:41 +1002 1002 1003 100.2 200.4 1002 1972-09-29 2024-10-11 00:16:42.000 1972-09-29 2024-10-11 00:16:42 +1003 1003 1004 100.3 200.60000000000002 1003 1972-09-30 2024-10-11 00:16:43.000 1972-09-30 2024-10-11 00:16:43 +1004 1004 1005 100.4 200.8 1004 1972-10-01 2024-10-11 00:16:44.000 1972-10-01 2024-10-11 00:16:44 +1005 1005 1006 100.5 201 1005 1972-10-02 2024-10-11 00:16:45.000 1972-10-02 2024-10-11 00:16:45 +1006 1006 1007 100.6 201.20000000000002 1006 1972-10-03 2024-10-11 00:16:46.000 1972-10-03 2024-10-11 00:16:46 +1007 1007 1008 100.7 201.4 1007 1972-10-04 2024-10-11 00:16:47.000 1972-10-04 2024-10-11 00:16:47 +1008 1008 1009 100.8 201.60000000000002 1008 1972-10-05 2024-10-11 00:16:48.000 1972-10-05 2024-10-11 00:16:48 +1009 1009 1010 100.9 201.8 1009 1972-10-06 2024-10-11 00:16:49.000 1972-10-06 2024-10-11 00:16:49 +1010 1010 1011 101 202 1010 1972-10-07 2024-10-11 00:16:50.000 1972-10-07 2024-10-11 00:16:50 +1011 1011 1012 101.1 202.20000000000002 1011 1972-10-08 2024-10-11 00:16:51.000 1972-10-08 2024-10-11 00:16:51 +1012 1012 1013 101.2 202.4 1012 1972-10-09 2024-10-11 00:16:52.000 1972-10-09 2024-10-11 00:16:52 +1013 1013 1014 101.3 202.60000000000002 1013 1972-10-10 2024-10-11 00:16:53.000 1972-10-10 2024-10-11 00:16:53 +1014 1014 1015 101.4 202.8 1014 1972-10-11 2024-10-11 00:16:54.000 1972-10-11 2024-10-11 00:16:54 +1015 1015 1016 101.5 203 1015 1972-10-12 2024-10-11 00:16:55.000 1972-10-12 2024-10-11 00:16:55 +1016 1016 1017 101.6 203.20000000000002 1016 1972-10-13 2024-10-11 00:16:56.000 1972-10-13 2024-10-11 00:16:56 +1017 1017 1018 101.7 203.4 1017 1972-10-14 2024-10-11 00:16:57.000 1972-10-14 2024-10-11 00:16:57 +1018 1018 1019 101.8 203.60000000000002 1018 1972-10-15 2024-10-11 00:16:58.000 1972-10-15 2024-10-11 00:16:58 +1019 1019 1020 101.9 203.8 1019 1972-10-16 2024-10-11 00:16:59.000 1972-10-16 2024-10-11 00:16:59 +1020 1020 1021 102 204 1020 1972-10-17 2024-10-11 00:17:00.000 1972-10-17 2024-10-11 00:17:00 +1021 1021 1022 102.1 204.20000000000002 1021 1972-10-18 2024-10-11 00:17:01.000 1972-10-18 2024-10-11 00:17:01 +1022 1022 1023 102.2 204.4 1022 1972-10-19 2024-10-11 00:17:02.000 1972-10-19 2024-10-11 00:17:02 +1023 1023 1024 102.3 204.60000000000002 1023 1972-10-20 2024-10-11 00:17:03.000 1972-10-20 2024-10-11 00:17:03 +1024 1024 1025 102.4 204.8 1024 1972-10-21 2024-10-11 00:17:04.000 1972-10-21 2024-10-11 00:17:04 +1025 1025 1026 102.5 205 1025 1972-10-22 2024-10-11 00:17:05.000 1972-10-22 2024-10-11 00:17:05 +1026 1026 1027 102.6 205.20000000000002 1026 1972-10-23 2024-10-11 00:17:06.000 1972-10-23 2024-10-11 00:17:06 +1027 1027 1028 102.7 205.4 1027 1972-10-24 2024-10-11 00:17:07.000 1972-10-24 2024-10-11 00:17:07 +1028 1028 1029 102.8 205.60000000000002 1028 1972-10-25 2024-10-11 00:17:08.000 1972-10-25 2024-10-11 00:17:08 +1029 1029 1030 102.9 205.8 1029 1972-10-26 2024-10-11 00:17:09.000 1972-10-26 2024-10-11 00:17:09 +1030 1030 1031 103 206 1030 1972-10-27 2024-10-11 00:17:10.000 1972-10-27 2024-10-11 00:17:10 +1031 1031 1032 103.1 206.20000000000002 1031 1972-10-28 2024-10-11 00:17:11.000 1972-10-28 2024-10-11 00:17:11 +1032 1032 1033 103.2 206.4 1032 1972-10-29 2024-10-11 00:17:12.000 1972-10-29 2024-10-11 00:17:12 +1033 1033 1034 103.3 206.60000000000002 1033 1972-10-30 2024-10-11 00:17:13.000 1972-10-30 2024-10-11 00:17:13 +1034 1034 1035 103.4 206.8 1034 1972-10-31 2024-10-11 00:17:14.000 1972-10-31 2024-10-11 00:17:14 +1035 1035 1036 103.5 207 1035 1972-11-01 2024-10-11 00:17:15.000 1972-11-01 2024-10-11 00:17:15 +1036 1036 1037 103.6 207.20000000000002 1036 1972-11-02 2024-10-11 00:17:16.000 1972-11-02 2024-10-11 00:17:16 +1037 1037 1038 103.7 207.4 1037 1972-11-03 2024-10-11 00:17:17.000 1972-11-03 2024-10-11 00:17:17 +1038 1038 1039 103.8 207.60000000000002 1038 1972-11-04 2024-10-11 00:17:18.000 1972-11-04 2024-10-11 00:17:18 +1039 1039 1040 103.9 207.8 1039 1972-11-05 2024-10-11 00:17:19.000 1972-11-05 2024-10-11 00:17:19 +1040 1040 1041 104 208 1040 1972-11-06 2024-10-11 00:17:20.000 1972-11-06 2024-10-11 00:17:20 +1041 1041 1042 104.1 208.20000000000002 1041 1972-11-07 2024-10-11 00:17:21.000 1972-11-07 2024-10-11 00:17:21 +1042 1042 1043 104.2 208.4 1042 1972-11-08 2024-10-11 00:17:22.000 1972-11-08 2024-10-11 00:17:22 +1043 1043 1044 104.3 208.60000000000002 1043 1972-11-09 2024-10-11 00:17:23.000 1972-11-09 2024-10-11 00:17:23 +1044 1044 1045 104.4 208.8 1044 1972-11-10 2024-10-11 00:17:24.000 1972-11-10 2024-10-11 00:17:24 +1045 1045 1046 104.5 209 1045 1972-11-11 2024-10-11 00:17:25.000 1972-11-11 2024-10-11 00:17:25 +1046 1046 1047 104.6 209.20000000000002 1046 1972-11-12 2024-10-11 00:17:26.000 1972-11-12 2024-10-11 00:17:26 +1047 1047 1048 104.7 209.4 1047 1972-11-13 2024-10-11 00:17:27.000 1972-11-13 2024-10-11 00:17:27 +1048 1048 1049 104.8 209.60000000000002 1048 1972-11-14 2024-10-11 00:17:28.000 1972-11-14 2024-10-11 00:17:28 +1049 1049 1050 104.9 209.8 1049 1972-11-15 2024-10-11 00:17:29.000 1972-11-15 2024-10-11 00:17:29 +1050 1050 1051 105 210 1050 1972-11-16 2024-10-11 00:17:30.000 1972-11-16 2024-10-11 00:17:30 +1051 1051 1052 105.1 210.20000000000002 1051 1972-11-17 2024-10-11 00:17:31.000 1972-11-17 2024-10-11 00:17:31 +1052 1052 1053 105.2 210.4 1052 1972-11-18 2024-10-11 00:17:32.000 1972-11-18 2024-10-11 00:17:32 +1053 1053 1054 105.3 210.60000000000002 1053 1972-11-19 2024-10-11 00:17:33.000 1972-11-19 2024-10-11 00:17:33 +1054 1054 1055 105.4 210.8 1054 1972-11-20 2024-10-11 00:17:34.000 1972-11-20 2024-10-11 00:17:34 +1055 1055 1056 105.5 211 1055 1972-11-21 2024-10-11 00:17:35.000 1972-11-21 2024-10-11 00:17:35 +1056 1056 1057 105.6 211.20000000000002 1056 1972-11-22 2024-10-11 00:17:36.000 1972-11-22 2024-10-11 00:17:36 +1057 1057 1058 105.7 211.4 1057 1972-11-23 2024-10-11 00:17:37.000 1972-11-23 2024-10-11 00:17:37 +1058 1058 1059 105.8 211.60000000000002 1058 1972-11-24 2024-10-11 00:17:38.000 1972-11-24 2024-10-11 00:17:38 +1059 1059 1060 105.9 211.8 1059 1972-11-25 2024-10-11 00:17:39.000 1972-11-25 2024-10-11 00:17:39 +1060 1060 1061 106 212 1060 1972-11-26 2024-10-11 00:17:40.000 1972-11-26 2024-10-11 00:17:40 +1061 1061 1062 106.1 212.20000000000002 1061 1972-11-27 2024-10-11 00:17:41.000 1972-11-27 2024-10-11 00:17:41 +1062 1062 1063 106.2 212.4 1062 1972-11-28 2024-10-11 00:17:42.000 1972-11-28 2024-10-11 00:17:42 +1063 1063 1064 106.3 212.60000000000002 1063 1972-11-29 2024-10-11 00:17:43.000 1972-11-29 2024-10-11 00:17:43 +1064 1064 1065 106.4 212.8 1064 1972-11-30 2024-10-11 00:17:44.000 1972-11-30 2024-10-11 00:17:44 +1065 1065 1066 106.5 213 1065 1972-12-01 2024-10-11 00:17:45.000 1972-12-01 2024-10-11 00:17:45 +1066 1066 1067 106.6 213.20000000000002 1066 1972-12-02 2024-10-11 00:17:46.000 1972-12-02 2024-10-11 00:17:46 +1067 1067 1068 106.7 213.4 1067 1972-12-03 2024-10-11 00:17:47.000 1972-12-03 2024-10-11 00:17:47 +1068 1068 1069 106.8 213.60000000000002 1068 1972-12-04 2024-10-11 00:17:48.000 1972-12-04 2024-10-11 00:17:48 +1069 1069 1070 106.9 213.8 1069 1972-12-05 2024-10-11 00:17:49.000 1972-12-05 2024-10-11 00:17:49 +1070 1070 1071 107 214 1070 1972-12-06 2024-10-11 00:17:50.000 1972-12-06 2024-10-11 00:17:50 +1071 1071 1072 107.1 214.20000000000002 1071 1972-12-07 2024-10-11 00:17:51.000 1972-12-07 2024-10-11 00:17:51 +1072 1072 1073 107.2 214.4 1072 1972-12-08 2024-10-11 00:17:52.000 1972-12-08 2024-10-11 00:17:52 +1073 1073 1074 107.3 214.60000000000002 1073 1972-12-09 2024-10-11 00:17:53.000 1972-12-09 2024-10-11 00:17:53 +1074 1074 1075 107.4 214.8 1074 1972-12-10 2024-10-11 00:17:54.000 1972-12-10 2024-10-11 00:17:54 +1075 1075 1076 107.5 215 1075 1972-12-11 2024-10-11 00:17:55.000 1972-12-11 2024-10-11 00:17:55 +1076 1076 1077 107.6 215.20000000000002 1076 1972-12-12 2024-10-11 00:17:56.000 1972-12-12 2024-10-11 00:17:56 +1077 1077 1078 107.7 215.4 1077 1972-12-13 2024-10-11 00:17:57.000 1972-12-13 2024-10-11 00:17:57 +1078 1078 1079 107.8 215.60000000000002 1078 1972-12-14 2024-10-11 00:17:58.000 1972-12-14 2024-10-11 00:17:58 +1079 1079 1080 107.9 215.8 1079 1972-12-15 2024-10-11 00:17:59.000 1972-12-15 2024-10-11 00:17:59 +1080 1080 1081 108 216 1080 1972-12-16 2024-10-11 00:18:00.000 1972-12-16 2024-10-11 00:18:00 +1081 1081 1082 108.1 216.20000000000002 1081 1972-12-17 2024-10-11 00:18:01.000 1972-12-17 2024-10-11 00:18:01 +1082 1082 1083 108.2 216.4 1082 1972-12-18 2024-10-11 00:18:02.000 1972-12-18 2024-10-11 00:18:02 +1083 1083 1084 108.3 216.60000000000002 1083 1972-12-19 2024-10-11 00:18:03.000 1972-12-19 2024-10-11 00:18:03 +1084 1084 1085 108.4 216.8 1084 1972-12-20 2024-10-11 00:18:04.000 1972-12-20 2024-10-11 00:18:04 +1085 1085 1086 108.5 217 1085 1972-12-21 2024-10-11 00:18:05.000 1972-12-21 2024-10-11 00:18:05 +1086 1086 1087 108.6 217.20000000000002 1086 1972-12-22 2024-10-11 00:18:06.000 1972-12-22 2024-10-11 00:18:06 +1087 1087 1088 108.7 217.4 1087 1972-12-23 2024-10-11 00:18:07.000 1972-12-23 2024-10-11 00:18:07 +1088 1088 1089 108.8 217.60000000000002 1088 1972-12-24 2024-10-11 00:18:08.000 1972-12-24 2024-10-11 00:18:08 +1089 1089 1090 108.9 217.8 1089 1972-12-25 2024-10-11 00:18:09.000 1972-12-25 2024-10-11 00:18:09 +1090 1090 1091 109 218 1090 1972-12-26 2024-10-11 00:18:10.000 1972-12-26 2024-10-11 00:18:10 +1091 1091 1092 109.1 218.20000000000002 1091 1972-12-27 2024-10-11 00:18:11.000 1972-12-27 2024-10-11 00:18:11 +1092 1092 1093 109.2 218.4 1092 1972-12-28 2024-10-11 00:18:12.000 1972-12-28 2024-10-11 00:18:12 +1093 1093 1094 109.3 218.60000000000002 1093 1972-12-29 2024-10-11 00:18:13.000 1972-12-29 2024-10-11 00:18:13 +1094 1094 1095 109.4 218.8 1094 1972-12-30 2024-10-11 00:18:14.000 1972-12-30 2024-10-11 00:18:14 +1095 1095 1096 109.5 219 1095 1972-12-31 2024-10-11 00:18:15.000 1972-12-31 2024-10-11 00:18:15 +1096 1096 1097 109.6 219.20000000000002 1096 1973-01-01 2024-10-11 00:18:16.000 1973-01-01 2024-10-11 00:18:16 +1097 1097 1098 109.7 219.4 1097 1973-01-02 2024-10-11 00:18:17.000 1973-01-02 2024-10-11 00:18:17 +1098 1098 1099 109.8 219.60000000000002 1098 1973-01-03 2024-10-11 00:18:18.000 1973-01-03 2024-10-11 00:18:18 +1099 1099 1100 109.9 219.8 1099 1973-01-04 2024-10-11 00:18:19.000 1973-01-04 2024-10-11 00:18:19 +1100 1100 1101 110 220 1100 1973-01-05 2024-10-11 00:18:20.000 1973-01-05 2024-10-11 00:18:20 +1101 1101 1102 110.1 220.20000000000002 1101 1973-01-06 2024-10-11 00:18:21.000 1973-01-06 2024-10-11 00:18:21 +1102 1102 1103 110.2 220.4 1102 1973-01-07 2024-10-11 00:18:22.000 1973-01-07 2024-10-11 00:18:22 +1103 1103 1104 110.3 220.60000000000002 1103 1973-01-08 2024-10-11 00:18:23.000 1973-01-08 2024-10-11 00:18:23 +1104 1104 1105 110.4 220.8 1104 1973-01-09 2024-10-11 00:18:24.000 1973-01-09 2024-10-11 00:18:24 +1105 1105 1106 110.5 221 1105 1973-01-10 2024-10-11 00:18:25.000 1973-01-10 2024-10-11 00:18:25 +1106 1106 1107 110.6 221.20000000000002 1106 1973-01-11 2024-10-11 00:18:26.000 1973-01-11 2024-10-11 00:18:26 +1107 1107 1108 110.7 221.4 1107 1973-01-12 2024-10-11 00:18:27.000 1973-01-12 2024-10-11 00:18:27 +1108 1108 1109 110.8 221.60000000000002 1108 1973-01-13 2024-10-11 00:18:28.000 1973-01-13 2024-10-11 00:18:28 +1109 1109 1110 110.9 221.8 1109 1973-01-14 2024-10-11 00:18:29.000 1973-01-14 2024-10-11 00:18:29 +1110 1110 1111 111 222 1110 1973-01-15 2024-10-11 00:18:30.000 1973-01-15 2024-10-11 00:18:30 +1111 1111 1112 111.1 222.20000000000002 1111 1973-01-16 2024-10-11 00:18:31.000 1973-01-16 2024-10-11 00:18:31 +1112 1112 1113 111.2 222.4 1112 1973-01-17 2024-10-11 00:18:32.000 1973-01-17 2024-10-11 00:18:32 +1113 1113 1114 111.3 222.60000000000002 1113 1973-01-18 2024-10-11 00:18:33.000 1973-01-18 2024-10-11 00:18:33 +1114 1114 1115 111.4 222.8 1114 1973-01-19 2024-10-11 00:18:34.000 1973-01-19 2024-10-11 00:18:34 +1115 1115 1116 111.5 223 1115 1973-01-20 2024-10-11 00:18:35.000 1973-01-20 2024-10-11 00:18:35 +1116 1116 1117 111.6 223.20000000000002 1116 1973-01-21 2024-10-11 00:18:36.000 1973-01-21 2024-10-11 00:18:36 +1117 1117 1118 111.7 223.4 1117 1973-01-22 2024-10-11 00:18:37.000 1973-01-22 2024-10-11 00:18:37 +1118 1118 1119 111.8 223.60000000000002 1118 1973-01-23 2024-10-11 00:18:38.000 1973-01-23 2024-10-11 00:18:38 +1119 1119 1120 111.9 223.8 1119 1973-01-24 2024-10-11 00:18:39.000 1973-01-24 2024-10-11 00:18:39 +1120 1120 1121 112 224 1120 1973-01-25 2024-10-11 00:18:40.000 1973-01-25 2024-10-11 00:18:40 +1121 1121 1122 112.1 224.20000000000002 1121 1973-01-26 2024-10-11 00:18:41.000 1973-01-26 2024-10-11 00:18:41 +1122 1122 1123 112.2 224.4 1122 1973-01-27 2024-10-11 00:18:42.000 1973-01-27 2024-10-11 00:18:42 +1123 1123 1124 112.3 224.60000000000002 1123 1973-01-28 2024-10-11 00:18:43.000 1973-01-28 2024-10-11 00:18:43 +1124 1124 1125 112.4 224.8 1124 1973-01-29 2024-10-11 00:18:44.000 1973-01-29 2024-10-11 00:18:44 +1125 1125 1126 112.5 225 1125 1973-01-30 2024-10-11 00:18:45.000 1973-01-30 2024-10-11 00:18:45 +1126 1126 1127 112.6 225.20000000000002 1126 1973-01-31 2024-10-11 00:18:46.000 1973-01-31 2024-10-11 00:18:46 +1127 1127 1128 112.7 225.4 1127 1973-02-01 2024-10-11 00:18:47.000 1973-02-01 2024-10-11 00:18:47 +1128 1128 1129 112.8 225.60000000000002 1128 1973-02-02 2024-10-11 00:18:48.000 1973-02-02 2024-10-11 00:18:48 +1129 1129 1130 112.9 225.8 1129 1973-02-03 2024-10-11 00:18:49.000 1973-02-03 2024-10-11 00:18:49 +1130 1130 1131 113 226 1130 1973-02-04 2024-10-11 00:18:50.000 1973-02-04 2024-10-11 00:18:50 +1131 1131 1132 113.1 226.20000000000002 1131 1973-02-05 2024-10-11 00:18:51.000 1973-02-05 2024-10-11 00:18:51 +1132 1132 1133 113.2 226.4 1132 1973-02-06 2024-10-11 00:18:52.000 1973-02-06 2024-10-11 00:18:52 +1133 1133 1134 113.3 226.60000000000002 1133 1973-02-07 2024-10-11 00:18:53.000 1973-02-07 2024-10-11 00:18:53 +1134 1134 1135 113.4 226.8 1134 1973-02-08 2024-10-11 00:18:54.000 1973-02-08 2024-10-11 00:18:54 +1135 1135 1136 113.5 227 1135 1973-02-09 2024-10-11 00:18:55.000 1973-02-09 2024-10-11 00:18:55 +1136 1136 1137 113.6 227.20000000000002 1136 1973-02-10 2024-10-11 00:18:56.000 1973-02-10 2024-10-11 00:18:56 +1137 1137 1138 113.7 227.4 1137 1973-02-11 2024-10-11 00:18:57.000 1973-02-11 2024-10-11 00:18:57 +1138 1138 1139 113.8 227.60000000000002 1138 1973-02-12 2024-10-11 00:18:58.000 1973-02-12 2024-10-11 00:18:58 +1139 1139 1140 113.9 227.8 1139 1973-02-13 2024-10-11 00:18:59.000 1973-02-13 2024-10-11 00:18:59 +1140 1140 1141 114 228 1140 1973-02-14 2024-10-11 00:19:00.000 1973-02-14 2024-10-11 00:19:00 +1141 1141 1142 114.1 228.20000000000002 1141 1973-02-15 2024-10-11 00:19:01.000 1973-02-15 2024-10-11 00:19:01 +1142 1142 1143 114.2 228.4 1142 1973-02-16 2024-10-11 00:19:02.000 1973-02-16 2024-10-11 00:19:02 +1143 1143 1144 114.3 228.60000000000002 1143 1973-02-17 2024-10-11 00:19:03.000 1973-02-17 2024-10-11 00:19:03 +1144 1144 1145 114.4 228.8 1144 1973-02-18 2024-10-11 00:19:04.000 1973-02-18 2024-10-11 00:19:04 +1145 1145 1146 114.5 229 1145 1973-02-19 2024-10-11 00:19:05.000 1973-02-19 2024-10-11 00:19:05 +1146 1146 1147 114.6 229.20000000000002 1146 1973-02-20 2024-10-11 00:19:06.000 1973-02-20 2024-10-11 00:19:06 +1147 1147 1148 114.7 229.4 1147 1973-02-21 2024-10-11 00:19:07.000 1973-02-21 2024-10-11 00:19:07 +1148 1148 1149 114.8 229.60000000000002 1148 1973-02-22 2024-10-11 00:19:08.000 1973-02-22 2024-10-11 00:19:08 +1149 1149 1150 114.9 229.8 1149 1973-02-23 2024-10-11 00:19:09.000 1973-02-23 2024-10-11 00:19:09 +1150 1150 1151 115 230 1150 1973-02-24 2024-10-11 00:19:10.000 1973-02-24 2024-10-11 00:19:10 +1151 1151 1152 115.1 230.20000000000002 1151 1973-02-25 2024-10-11 00:19:11.000 1973-02-25 2024-10-11 00:19:11 +1152 1152 1153 115.2 230.4 1152 1973-02-26 2024-10-11 00:19:12.000 1973-02-26 2024-10-11 00:19:12 +1153 1153 1154 115.3 230.60000000000002 1153 1973-02-27 2024-10-11 00:19:13.000 1973-02-27 2024-10-11 00:19:13 +1154 1154 1155 115.4 230.8 1154 1973-02-28 2024-10-11 00:19:14.000 1973-02-28 2024-10-11 00:19:14 +1155 1155 1156 115.5 231 1155 1973-03-01 2024-10-11 00:19:15.000 1973-03-01 2024-10-11 00:19:15 +1156 1156 1157 115.6 231.20000000000002 1156 1973-03-02 2024-10-11 00:19:16.000 1973-03-02 2024-10-11 00:19:16 +1157 1157 1158 115.7 231.4 1157 1973-03-03 2024-10-11 00:19:17.000 1973-03-03 2024-10-11 00:19:17 +1158 1158 1159 115.8 231.60000000000002 1158 1973-03-04 2024-10-11 00:19:18.000 1973-03-04 2024-10-11 00:19:18 +1159 1159 1160 115.9 231.8 1159 1973-03-05 2024-10-11 00:19:19.000 1973-03-05 2024-10-11 00:19:19 +1160 1160 1161 116 232 1160 1973-03-06 2024-10-11 00:19:20.000 1973-03-06 2024-10-11 00:19:20 +1161 1161 1162 116.1 232.20000000000002 1161 1973-03-07 2024-10-11 00:19:21.000 1973-03-07 2024-10-11 00:19:21 +1162 1162 1163 116.2 232.4 1162 1973-03-08 2024-10-11 00:19:22.000 1973-03-08 2024-10-11 00:19:22 +1163 1163 1164 116.3 232.60000000000002 1163 1973-03-09 2024-10-11 00:19:23.000 1973-03-09 2024-10-11 00:19:23 +1164 1164 1165 116.4 232.8 1164 1973-03-10 2024-10-11 00:19:24.000 1973-03-10 2024-10-11 00:19:24 +1165 1165 1166 116.5 233 1165 1973-03-11 2024-10-11 00:19:25.000 1973-03-11 2024-10-11 00:19:25 +1166 1166 1167 116.6 233.20000000000002 1166 1973-03-12 2024-10-11 00:19:26.000 1973-03-12 2024-10-11 00:19:26 +1167 1167 1168 116.7 233.4 1167 1973-03-13 2024-10-11 00:19:27.000 1973-03-13 2024-10-11 00:19:27 +1168 1168 1169 116.8 233.60000000000002 1168 1973-03-14 2024-10-11 00:19:28.000 1973-03-14 2024-10-11 00:19:28 +1169 1169 1170 116.9 233.8 1169 1973-03-15 2024-10-11 00:19:29.000 1973-03-15 2024-10-11 00:19:29 +1170 1170 1171 117 234 1170 1973-03-16 2024-10-11 00:19:30.000 1973-03-16 2024-10-11 00:19:30 +1171 1171 1172 117.1 234.20000000000002 1171 1973-03-17 2024-10-11 00:19:31.000 1973-03-17 2024-10-11 00:19:31 +1172 1172 1173 117.2 234.4 1172 1973-03-18 2024-10-11 00:19:32.000 1973-03-18 2024-10-11 00:19:32 +1173 1173 1174 117.3 234.60000000000002 1173 1973-03-19 2024-10-11 00:19:33.000 1973-03-19 2024-10-11 00:19:33 +1174 1174 1175 117.4 234.8 1174 1973-03-20 2024-10-11 00:19:34.000 1973-03-20 2024-10-11 00:19:34 +1175 1175 1176 117.5 235 1175 1973-03-21 2024-10-11 00:19:35.000 1973-03-21 2024-10-11 00:19:35 +1176 1176 1177 117.6 235.20000000000002 1176 1973-03-22 2024-10-11 00:19:36.000 1973-03-22 2024-10-11 00:19:36 +1177 1177 1178 117.7 235.4 1177 1973-03-23 2024-10-11 00:19:37.000 1973-03-23 2024-10-11 00:19:37 +1178 1178 1179 117.8 235.60000000000002 1178 1973-03-24 2024-10-11 00:19:38.000 1973-03-24 2024-10-11 00:19:38 +1179 1179 1180 117.9 235.8 1179 1973-03-25 2024-10-11 00:19:39.000 1973-03-25 2024-10-11 00:19:39 +1180 1180 1181 118 236 1180 1973-03-26 2024-10-11 00:19:40.000 1973-03-26 2024-10-11 00:19:40 +1181 1181 1182 118.1 236.20000000000002 1181 1973-03-27 2024-10-11 00:19:41.000 1973-03-27 2024-10-11 00:19:41 +1182 1182 1183 118.2 236.4 1182 1973-03-28 2024-10-11 00:19:42.000 1973-03-28 2024-10-11 00:19:42 +1183 1183 1184 118.3 236.60000000000002 1183 1973-03-29 2024-10-11 00:19:43.000 1973-03-29 2024-10-11 00:19:43 +1184 1184 1185 118.4 236.8 1184 1973-03-30 2024-10-11 00:19:44.000 1973-03-30 2024-10-11 00:19:44 +1185 1185 1186 118.5 237 1185 1973-03-31 2024-10-11 00:19:45.000 1973-03-31 2024-10-11 00:19:45 +1186 1186 1187 118.6 237.20000000000002 1186 1973-04-01 2024-10-11 00:19:46.000 1973-04-01 2024-10-11 00:19:46 +1187 1187 1188 118.7 237.4 1187 1973-04-02 2024-10-11 00:19:47.000 1973-04-02 2024-10-11 00:19:47 +1188 1188 1189 118.8 237.60000000000002 1188 1973-04-03 2024-10-11 00:19:48.000 1973-04-03 2024-10-11 00:19:48 +1189 1189 1190 118.9 237.8 1189 1973-04-04 2024-10-11 00:19:49.000 1973-04-04 2024-10-11 00:19:49 +1190 1190 1191 119 238 1190 1973-04-05 2024-10-11 00:19:50.000 1973-04-05 2024-10-11 00:19:50 +1191 1191 1192 119.1 238.20000000000002 1191 1973-04-06 2024-10-11 00:19:51.000 1973-04-06 2024-10-11 00:19:51 +1192 1192 1193 119.2 238.4 1192 1973-04-07 2024-10-11 00:19:52.000 1973-04-07 2024-10-11 00:19:52 +1193 1193 1194 119.3 238.60000000000002 1193 1973-04-08 2024-10-11 00:19:53.000 1973-04-08 2024-10-11 00:19:53 +1194 1194 1195 119.4 238.8 1194 1973-04-09 2024-10-11 00:19:54.000 1973-04-09 2024-10-11 00:19:54 +1195 1195 1196 119.5 239 1195 1973-04-10 2024-10-11 00:19:55.000 1973-04-10 2024-10-11 00:19:55 +1196 1196 1197 119.6 239.20000000000002 1196 1973-04-11 2024-10-11 00:19:56.000 1973-04-11 2024-10-11 00:19:56 +1197 1197 1198 119.7 239.4 1197 1973-04-12 2024-10-11 00:19:57.000 1973-04-12 2024-10-11 00:19:57 +1198 1198 1199 119.8 239.60000000000002 1198 1973-04-13 2024-10-11 00:19:58.000 1973-04-13 2024-10-11 00:19:58 +1199 1199 1200 119.9 239.8 1199 1973-04-14 2024-10-11 00:19:59.000 1973-04-14 2024-10-11 00:19:59 +1200 1200 1201 120 240 1200 1973-04-15 2024-10-11 00:20:00.000 1973-04-15 2024-10-11 00:20:00 +1201 1201 1202 120.1 240.20000000000002 1201 1973-04-16 2024-10-11 00:20:01.000 1973-04-16 2024-10-11 00:20:01 +1202 1202 1203 120.2 240.4 1202 1973-04-17 2024-10-11 00:20:02.000 1973-04-17 2024-10-11 00:20:02 +1203 1203 1204 120.3 240.60000000000002 1203 1973-04-18 2024-10-11 00:20:03.000 1973-04-18 2024-10-11 00:20:03 +1204 1204 1205 120.4 240.8 1204 1973-04-19 2024-10-11 00:20:04.000 1973-04-19 2024-10-11 00:20:04 +1205 1205 1206 120.5 241 1205 1973-04-20 2024-10-11 00:20:05.000 1973-04-20 2024-10-11 00:20:05 +1206 1206 1207 120.6 241.20000000000002 1206 1973-04-21 2024-10-11 00:20:06.000 1973-04-21 2024-10-11 00:20:06 +1207 1207 1208 120.7 241.4 1207 1973-04-22 2024-10-11 00:20:07.000 1973-04-22 2024-10-11 00:20:07 +1208 1208 1209 120.8 241.60000000000002 1208 1973-04-23 2024-10-11 00:20:08.000 1973-04-23 2024-10-11 00:20:08 +1209 1209 1210 120.9 241.8 1209 1973-04-24 2024-10-11 00:20:09.000 1973-04-24 2024-10-11 00:20:09 +1210 1210 1211 121 242 1210 1973-04-25 2024-10-11 00:20:10.000 1973-04-25 2024-10-11 00:20:10 +1211 1211 1212 121.1 242.20000000000002 1211 1973-04-26 2024-10-11 00:20:11.000 1973-04-26 2024-10-11 00:20:11 +1212 1212 1213 121.2 242.4 1212 1973-04-27 2024-10-11 00:20:12.000 1973-04-27 2024-10-11 00:20:12 +1213 1213 1214 121.3 242.60000000000002 1213 1973-04-28 2024-10-11 00:20:13.000 1973-04-28 2024-10-11 00:20:13 +1214 1214 1215 121.4 242.8 1214 1973-04-29 2024-10-11 00:20:14.000 1973-04-29 2024-10-11 00:20:14 +1215 1215 1216 121.5 243 1215 1973-04-30 2024-10-11 00:20:15.000 1973-04-30 2024-10-11 00:20:15 +1216 1216 1217 121.6 243.20000000000002 1216 1973-05-01 2024-10-11 00:20:16.000 1973-05-01 2024-10-11 00:20:16 +1217 1217 1218 121.7 243.4 1217 1973-05-02 2024-10-11 00:20:17.000 1973-05-02 2024-10-11 00:20:17 +1218 1218 1219 121.8 243.60000000000002 1218 1973-05-03 2024-10-11 00:20:18.000 1973-05-03 2024-10-11 00:20:18 +1219 1219 1220 121.9 243.8 1219 1973-05-04 2024-10-11 00:20:19.000 1973-05-04 2024-10-11 00:20:19 +1220 1220 1221 122 244 1220 1973-05-05 2024-10-11 00:20:20.000 1973-05-05 2024-10-11 00:20:20 +1221 1221 1222 122.1 244.20000000000002 1221 1973-05-06 2024-10-11 00:20:21.000 1973-05-06 2024-10-11 00:20:21 +1222 1222 1223 122.2 244.4 1222 1973-05-07 2024-10-11 00:20:22.000 1973-05-07 2024-10-11 00:20:22 +1223 1223 1224 122.3 244.60000000000002 1223 1973-05-08 2024-10-11 00:20:23.000 1973-05-08 2024-10-11 00:20:23 +1224 1224 1225 122.4 244.8 1224 1973-05-09 2024-10-11 00:20:24.000 1973-05-09 2024-10-11 00:20:24 +1225 1225 1226 122.5 245 1225 1973-05-10 2024-10-11 00:20:25.000 1973-05-10 2024-10-11 00:20:25 +1226 1226 1227 122.6 245.20000000000002 1226 1973-05-11 2024-10-11 00:20:26.000 1973-05-11 2024-10-11 00:20:26 +1227 1227 1228 122.7 245.4 1227 1973-05-12 2024-10-11 00:20:27.000 1973-05-12 2024-10-11 00:20:27 +1228 1228 1229 122.8 245.60000000000002 1228 1973-05-13 2024-10-11 00:20:28.000 1973-05-13 2024-10-11 00:20:28 +1229 1229 1230 122.9 245.8 1229 1973-05-14 2024-10-11 00:20:29.000 1973-05-14 2024-10-11 00:20:29 +1230 1230 1231 123 246 1230 1973-05-15 2024-10-11 00:20:30.000 1973-05-15 2024-10-11 00:20:30 +1231 1231 1232 123.1 246.20000000000002 1231 1973-05-16 2024-10-11 00:20:31.000 1973-05-16 2024-10-11 00:20:31 +1232 1232 1233 123.2 246.4 1232 1973-05-17 2024-10-11 00:20:32.000 1973-05-17 2024-10-11 00:20:32 +1233 1233 1234 123.3 246.60000000000002 1233 1973-05-18 2024-10-11 00:20:33.000 1973-05-18 2024-10-11 00:20:33 +1234 1234 1235 123.4 246.8 1234 1973-05-19 2024-10-11 00:20:34.000 1973-05-19 2024-10-11 00:20:34 +1235 1235 1236 123.5 247 1235 1973-05-20 2024-10-11 00:20:35.000 1973-05-20 2024-10-11 00:20:35 +1236 1236 1237 123.6 247.20000000000002 1236 1973-05-21 2024-10-11 00:20:36.000 1973-05-21 2024-10-11 00:20:36 +1237 1237 1238 123.7 247.4 1237 1973-05-22 2024-10-11 00:20:37.000 1973-05-22 2024-10-11 00:20:37 +1238 1238 1239 123.8 247.60000000000002 1238 1973-05-23 2024-10-11 00:20:38.000 1973-05-23 2024-10-11 00:20:38 +1239 1239 1240 123.9 247.8 1239 1973-05-24 2024-10-11 00:20:39.000 1973-05-24 2024-10-11 00:20:39 +1240 1240 1241 124 248 1240 1973-05-25 2024-10-11 00:20:40.000 1973-05-25 2024-10-11 00:20:40 +1241 1241 1242 124.1 248.20000000000002 1241 1973-05-26 2024-10-11 00:20:41.000 1973-05-26 2024-10-11 00:20:41 +1242 1242 1243 124.2 248.4 1242 1973-05-27 2024-10-11 00:20:42.000 1973-05-27 2024-10-11 00:20:42 +1243 1243 1244 124.3 248.60000000000002 1243 1973-05-28 2024-10-11 00:20:43.000 1973-05-28 2024-10-11 00:20:43 +1244 1244 1245 124.4 248.8 1244 1973-05-29 2024-10-11 00:20:44.000 1973-05-29 2024-10-11 00:20:44 +1245 1245 1246 124.5 249 1245 1973-05-30 2024-10-11 00:20:45.000 1973-05-30 2024-10-11 00:20:45 +1246 1246 1247 124.6 249.20000000000002 1246 1973-05-31 2024-10-11 00:20:46.000 1973-05-31 2024-10-11 00:20:46 +1247 1247 1248 124.7 249.4 1247 1973-06-01 2024-10-11 00:20:47.000 1973-06-01 2024-10-11 00:20:47 +1248 1248 1249 124.8 249.60000000000002 1248 1973-06-02 2024-10-11 00:20:48.000 1973-06-02 2024-10-11 00:20:48 +1249 1249 1250 124.9 249.8 1249 1973-06-03 2024-10-11 00:20:49.000 1973-06-03 2024-10-11 00:20:49 +1250 1250 1251 125 250 1250 1973-06-04 2024-10-11 00:20:50.000 1973-06-04 2024-10-11 00:20:50 +1251 1251 1252 125.1 250.20000000000002 1251 1973-06-05 2024-10-11 00:20:51.000 1973-06-05 2024-10-11 00:20:51 +1252 1252 1253 125.2 250.4 1252 1973-06-06 2024-10-11 00:20:52.000 1973-06-06 2024-10-11 00:20:52 +1253 1253 1254 125.3 250.60000000000002 1253 1973-06-07 2024-10-11 00:20:53.000 1973-06-07 2024-10-11 00:20:53 +1254 1254 1255 125.4 250.8 1254 1973-06-08 2024-10-11 00:20:54.000 1973-06-08 2024-10-11 00:20:54 +1255 1255 1256 125.5 251 1255 1973-06-09 2024-10-11 00:20:55.000 1973-06-09 2024-10-11 00:20:55 +1256 1256 1257 125.6 251.20000000000002 1256 1973-06-10 2024-10-11 00:20:56.000 1973-06-10 2024-10-11 00:20:56 +1257 1257 1258 125.7 251.4 1257 1973-06-11 2024-10-11 00:20:57.000 1973-06-11 2024-10-11 00:20:57 +1258 1258 1259 125.8 251.60000000000002 1258 1973-06-12 2024-10-11 00:20:58.000 1973-06-12 2024-10-11 00:20:58 +1259 1259 1260 125.9 251.8 1259 1973-06-13 2024-10-11 00:20:59.000 1973-06-13 2024-10-11 00:20:59 +1260 1260 1261 126 252 1260 1973-06-14 2024-10-11 00:21:00.000 1973-06-14 2024-10-11 00:21:00 +1261 1261 1262 126.1 252.20000000000002 1261 1973-06-15 2024-10-11 00:21:01.000 1973-06-15 2024-10-11 00:21:01 +1262 1262 1263 126.2 252.4 1262 1973-06-16 2024-10-11 00:21:02.000 1973-06-16 2024-10-11 00:21:02 +1263 1263 1264 126.3 252.60000000000002 1263 1973-06-17 2024-10-11 00:21:03.000 1973-06-17 2024-10-11 00:21:03 +1264 1264 1265 126.4 252.8 1264 1973-06-18 2024-10-11 00:21:04.000 1973-06-18 2024-10-11 00:21:04 +1265 1265 1266 126.5 253 1265 1973-06-19 2024-10-11 00:21:05.000 1973-06-19 2024-10-11 00:21:05 +1266 1266 1267 126.6 253.20000000000002 1266 1973-06-20 2024-10-11 00:21:06.000 1973-06-20 2024-10-11 00:21:06 +1267 1267 1268 126.7 253.4 1267 1973-06-21 2024-10-11 00:21:07.000 1973-06-21 2024-10-11 00:21:07 +1268 1268 1269 126.8 253.60000000000002 1268 1973-06-22 2024-10-11 00:21:08.000 1973-06-22 2024-10-11 00:21:08 +1269 1269 1270 126.9 253.8 1269 1973-06-23 2024-10-11 00:21:09.000 1973-06-23 2024-10-11 00:21:09 +1270 1270 1271 127 254 1270 1973-06-24 2024-10-11 00:21:10.000 1973-06-24 2024-10-11 00:21:10 +1271 1271 1272 127.1 254.20000000000002 1271 1973-06-25 2024-10-11 00:21:11.000 1973-06-25 2024-10-11 00:21:11 +1272 1272 1273 127.2 254.4 1272 1973-06-26 2024-10-11 00:21:12.000 1973-06-26 2024-10-11 00:21:12 +1273 1273 1274 127.3 254.60000000000002 1273 1973-06-27 2024-10-11 00:21:13.000 1973-06-27 2024-10-11 00:21:13 +1274 1274 1275 127.4 254.8 1274 1973-06-28 2024-10-11 00:21:14.000 1973-06-28 2024-10-11 00:21:14 +1275 1275 1276 127.5 255 1275 1973-06-29 2024-10-11 00:21:15.000 1973-06-29 2024-10-11 00:21:15 +1276 1276 1277 127.6 255.20000000000002 1276 1973-06-30 2024-10-11 00:21:16.000 1973-06-30 2024-10-11 00:21:16 +1277 1277 1278 127.7 255.4 1277 1973-07-01 2024-10-11 00:21:17.000 1973-07-01 2024-10-11 00:21:17 +1278 1278 1279 127.8 255.60000000000002 1278 1973-07-02 2024-10-11 00:21:18.000 1973-07-02 2024-10-11 00:21:18 +1279 1279 1280 127.9 255.8 1279 1973-07-03 2024-10-11 00:21:19.000 1973-07-03 2024-10-11 00:21:19 +1280 1280 1281 128 256 1280 1973-07-04 2024-10-11 00:21:20.000 1973-07-04 2024-10-11 00:21:20 +1281 1281 1282 128.1 256.2 1281 1973-07-05 2024-10-11 00:21:21.000 1973-07-05 2024-10-11 00:21:21 +1282 1282 1283 128.2 256.40000000000003 1282 1973-07-06 2024-10-11 00:21:22.000 1973-07-06 2024-10-11 00:21:22 +1283 1283 1284 128.3 256.6 1283 1973-07-07 2024-10-11 00:21:23.000 1973-07-07 2024-10-11 00:21:23 +1284 1284 1285 128.4 256.8 1284 1973-07-08 2024-10-11 00:21:24.000 1973-07-08 2024-10-11 00:21:24 +1285 1285 1286 128.5 257 1285 1973-07-09 2024-10-11 00:21:25.000 1973-07-09 2024-10-11 00:21:25 +1286 1286 1287 128.6 257.2 1286 1973-07-10 2024-10-11 00:21:26.000 1973-07-10 2024-10-11 00:21:26 +1287 1287 1288 128.7 257.40000000000003 1287 1973-07-11 2024-10-11 00:21:27.000 1973-07-11 2024-10-11 00:21:27 +1288 1288 1289 128.8 257.6 1288 1973-07-12 2024-10-11 00:21:28.000 1973-07-12 2024-10-11 00:21:28 +1289 1289 1290 128.9 257.8 1289 1973-07-13 2024-10-11 00:21:29.000 1973-07-13 2024-10-11 00:21:29 +1290 1290 1291 129 258 1290 1973-07-14 2024-10-11 00:21:30.000 1973-07-14 2024-10-11 00:21:30 +1291 1291 1292 129.1 258.2 1291 1973-07-15 2024-10-11 00:21:31.000 1973-07-15 2024-10-11 00:21:31 +1292 1292 1293 129.2 258.40000000000003 1292 1973-07-16 2024-10-11 00:21:32.000 1973-07-16 2024-10-11 00:21:32 +1293 1293 1294 129.3 258.6 1293 1973-07-17 2024-10-11 00:21:33.000 1973-07-17 2024-10-11 00:21:33 +1294 1294 1295 129.4 258.8 1294 1973-07-18 2024-10-11 00:21:34.000 1973-07-18 2024-10-11 00:21:34 +1295 1295 1296 129.5 259 1295 1973-07-19 2024-10-11 00:21:35.000 1973-07-19 2024-10-11 00:21:35 +1296 1296 1297 129.6 259.2 1296 1973-07-20 2024-10-11 00:21:36.000 1973-07-20 2024-10-11 00:21:36 +1297 1297 1298 129.7 259.40000000000003 1297 1973-07-21 2024-10-11 00:21:37.000 1973-07-21 2024-10-11 00:21:37 +1298 1298 1299 129.8 259.6 1298 1973-07-22 2024-10-11 00:21:38.000 1973-07-22 2024-10-11 00:21:38 +1299 1299 1300 129.9 259.8 1299 1973-07-23 2024-10-11 00:21:39.000 1973-07-23 2024-10-11 00:21:39 +1300 1300 1301 130 260 1300 1973-07-24 2024-10-11 00:21:40.000 1973-07-24 2024-10-11 00:21:40 +1301 1301 1302 130.1 260.2 1301 1973-07-25 2024-10-11 00:21:41.000 1973-07-25 2024-10-11 00:21:41 +1302 1302 1303 130.2 260.40000000000003 1302 1973-07-26 2024-10-11 00:21:42.000 1973-07-26 2024-10-11 00:21:42 +1303 1303 1304 130.3 260.6 1303 1973-07-27 2024-10-11 00:21:43.000 1973-07-27 2024-10-11 00:21:43 +1304 1304 1305 130.4 260.8 1304 1973-07-28 2024-10-11 00:21:44.000 1973-07-28 2024-10-11 00:21:44 +1305 1305 1306 130.5 261 1305 1973-07-29 2024-10-11 00:21:45.000 1973-07-29 2024-10-11 00:21:45 +1306 1306 1307 130.6 261.2 1306 1973-07-30 2024-10-11 00:21:46.000 1973-07-30 2024-10-11 00:21:46 +1307 1307 1308 130.7 261.40000000000003 1307 1973-07-31 2024-10-11 00:21:47.000 1973-07-31 2024-10-11 00:21:47 +1308 1308 1309 130.8 261.6 1308 1973-08-01 2024-10-11 00:21:48.000 1973-08-01 2024-10-11 00:21:48 +1309 1309 1310 130.9 261.8 1309 1973-08-02 2024-10-11 00:21:49.000 1973-08-02 2024-10-11 00:21:49 +1310 1310 1311 131 262 1310 1973-08-03 2024-10-11 00:21:50.000 1973-08-03 2024-10-11 00:21:50 +1311 1311 1312 131.1 262.2 1311 1973-08-04 2024-10-11 00:21:51.000 1973-08-04 2024-10-11 00:21:51 +1312 1312 1313 131.2 262.40000000000003 1312 1973-08-05 2024-10-11 00:21:52.000 1973-08-05 2024-10-11 00:21:52 +1313 1313 1314 131.3 262.6 1313 1973-08-06 2024-10-11 00:21:53.000 1973-08-06 2024-10-11 00:21:53 +1314 1314 1315 131.4 262.8 1314 1973-08-07 2024-10-11 00:21:54.000 1973-08-07 2024-10-11 00:21:54 +1315 1315 1316 131.5 263 1315 1973-08-08 2024-10-11 00:21:55.000 1973-08-08 2024-10-11 00:21:55 +1316 1316 1317 131.6 263.2 1316 1973-08-09 2024-10-11 00:21:56.000 1973-08-09 2024-10-11 00:21:56 +1317 1317 1318 131.7 263.40000000000003 1317 1973-08-10 2024-10-11 00:21:57.000 1973-08-10 2024-10-11 00:21:57 +1318 1318 1319 131.8 263.6 1318 1973-08-11 2024-10-11 00:21:58.000 1973-08-11 2024-10-11 00:21:58 +1319 1319 1320 131.9 263.8 1319 1973-08-12 2024-10-11 00:21:59.000 1973-08-12 2024-10-11 00:21:59 +1320 1320 1321 132 264 1320 1973-08-13 2024-10-11 00:22:00.000 1973-08-13 2024-10-11 00:22:00 +1321 1321 1322 132.1 264.2 1321 1973-08-14 2024-10-11 00:22:01.000 1973-08-14 2024-10-11 00:22:01 +1322 1322 1323 132.2 264.40000000000003 1322 1973-08-15 2024-10-11 00:22:02.000 1973-08-15 2024-10-11 00:22:02 +1323 1323 1324 132.3 264.6 1323 1973-08-16 2024-10-11 00:22:03.000 1973-08-16 2024-10-11 00:22:03 +1324 1324 1325 132.4 264.8 1324 1973-08-17 2024-10-11 00:22:04.000 1973-08-17 2024-10-11 00:22:04 +1325 1325 1326 132.5 265 1325 1973-08-18 2024-10-11 00:22:05.000 1973-08-18 2024-10-11 00:22:05 +1326 1326 1327 132.6 265.2 1326 1973-08-19 2024-10-11 00:22:06.000 1973-08-19 2024-10-11 00:22:06 +1327 1327 1328 132.7 265.40000000000003 1327 1973-08-20 2024-10-11 00:22:07.000 1973-08-20 2024-10-11 00:22:07 +1328 1328 1329 132.8 265.6 1328 1973-08-21 2024-10-11 00:22:08.000 1973-08-21 2024-10-11 00:22:08 +1329 1329 1330 132.9 265.8 1329 1973-08-22 2024-10-11 00:22:09.000 1973-08-22 2024-10-11 00:22:09 +1330 1330 1331 133 266 1330 1973-08-23 2024-10-11 00:22:10.000 1973-08-23 2024-10-11 00:22:10 +1331 1331 1332 133.1 266.2 1331 1973-08-24 2024-10-11 00:22:11.000 1973-08-24 2024-10-11 00:22:11 +1332 1332 1333 133.2 266.40000000000003 1332 1973-08-25 2024-10-11 00:22:12.000 1973-08-25 2024-10-11 00:22:12 +1333 1333 1334 133.3 266.6 1333 1973-08-26 2024-10-11 00:22:13.000 1973-08-26 2024-10-11 00:22:13 +1334 1334 1335 133.4 266.8 1334 1973-08-27 2024-10-11 00:22:14.000 1973-08-27 2024-10-11 00:22:14 +1335 1335 1336 133.5 267 1335 1973-08-28 2024-10-11 00:22:15.000 1973-08-28 2024-10-11 00:22:15 +1336 1336 1337 133.6 267.2 1336 1973-08-29 2024-10-11 00:22:16.000 1973-08-29 2024-10-11 00:22:16 +1337 1337 1338 133.7 267.40000000000003 1337 1973-08-30 2024-10-11 00:22:17.000 1973-08-30 2024-10-11 00:22:17 +1338 1338 1339 133.8 267.6 1338 1973-08-31 2024-10-11 00:22:18.000 1973-08-31 2024-10-11 00:22:18 +1339 1339 1340 133.9 267.8 1339 1973-09-01 2024-10-11 00:22:19.000 1973-09-01 2024-10-11 00:22:19 +1340 1340 1341 134 268 1340 1973-09-02 2024-10-11 00:22:20.000 1973-09-02 2024-10-11 00:22:20 +1341 1341 1342 134.1 268.2 1341 1973-09-03 2024-10-11 00:22:21.000 1973-09-03 2024-10-11 00:22:21 +1342 1342 1343 134.2 268.40000000000003 1342 1973-09-04 2024-10-11 00:22:22.000 1973-09-04 2024-10-11 00:22:22 +1343 1343 1344 134.3 268.6 1343 1973-09-05 2024-10-11 00:22:23.000 1973-09-05 2024-10-11 00:22:23 +1344 1344 1345 134.4 268.8 1344 1973-09-06 2024-10-11 00:22:24.000 1973-09-06 2024-10-11 00:22:24 +1345 1345 1346 134.5 269 1345 1973-09-07 2024-10-11 00:22:25.000 1973-09-07 2024-10-11 00:22:25 +1346 1346 1347 134.6 269.2 1346 1973-09-08 2024-10-11 00:22:26.000 1973-09-08 2024-10-11 00:22:26 +1347 1347 1348 134.7 269.40000000000003 1347 1973-09-09 2024-10-11 00:22:27.000 1973-09-09 2024-10-11 00:22:27 +1348 1348 1349 134.8 269.6 1348 1973-09-10 2024-10-11 00:22:28.000 1973-09-10 2024-10-11 00:22:28 +1349 1349 1350 134.9 269.8 1349 1973-09-11 2024-10-11 00:22:29.000 1973-09-11 2024-10-11 00:22:29 +1350 1350 1351 135 270 1350 1973-09-12 2024-10-11 00:22:30.000 1973-09-12 2024-10-11 00:22:30 +1351 1351 1352 135.1 270.2 1351 1973-09-13 2024-10-11 00:22:31.000 1973-09-13 2024-10-11 00:22:31 +1352 1352 1353 135.2 270.40000000000003 1352 1973-09-14 2024-10-11 00:22:32.000 1973-09-14 2024-10-11 00:22:32 +1353 1353 1354 135.3 270.6 1353 1973-09-15 2024-10-11 00:22:33.000 1973-09-15 2024-10-11 00:22:33 +1354 1354 1355 135.4 270.8 1354 1973-09-16 2024-10-11 00:22:34.000 1973-09-16 2024-10-11 00:22:34 +1355 1355 1356 135.5 271 1355 1973-09-17 2024-10-11 00:22:35.000 1973-09-17 2024-10-11 00:22:35 +1356 1356 1357 135.6 271.2 1356 1973-09-18 2024-10-11 00:22:36.000 1973-09-18 2024-10-11 00:22:36 +1357 1357 1358 135.7 271.40000000000003 1357 1973-09-19 2024-10-11 00:22:37.000 1973-09-19 2024-10-11 00:22:37 +1358 1358 1359 135.8 271.6 1358 1973-09-20 2024-10-11 00:22:38.000 1973-09-20 2024-10-11 00:22:38 +1359 1359 1360 135.9 271.8 1359 1973-09-21 2024-10-11 00:22:39.000 1973-09-21 2024-10-11 00:22:39 +1360 1360 1361 136 272 1360 1973-09-22 2024-10-11 00:22:40.000 1973-09-22 2024-10-11 00:22:40 +1361 1361 1362 136.1 272.2 1361 1973-09-23 2024-10-11 00:22:41.000 1973-09-23 2024-10-11 00:22:41 +1362 1362 1363 136.2 272.40000000000003 1362 1973-09-24 2024-10-11 00:22:42.000 1973-09-24 2024-10-11 00:22:42 +1363 1363 1364 136.3 272.6 1363 1973-09-25 2024-10-11 00:22:43.000 1973-09-25 2024-10-11 00:22:43 +1364 1364 1365 136.4 272.8 1364 1973-09-26 2024-10-11 00:22:44.000 1973-09-26 2024-10-11 00:22:44 +1365 1365 1366 136.5 273 1365 1973-09-27 2024-10-11 00:22:45.000 1973-09-27 2024-10-11 00:22:45 +1366 1366 1367 136.6 273.2 1366 1973-09-28 2024-10-11 00:22:46.000 1973-09-28 2024-10-11 00:22:46 +1367 1367 1368 136.7 273.40000000000003 1367 1973-09-29 2024-10-11 00:22:47.000 1973-09-29 2024-10-11 00:22:47 +1368 1368 1369 136.8 273.6 1368 1973-09-30 2024-10-11 00:22:48.000 1973-09-30 2024-10-11 00:22:48 +1369 1369 1370 136.9 273.8 1369 1973-10-01 2024-10-11 00:22:49.000 1973-10-01 2024-10-11 00:22:49 +1370 1370 1371 137 274 1370 1973-10-02 2024-10-11 00:22:50.000 1973-10-02 2024-10-11 00:22:50 +1371 1371 1372 137.1 274.2 1371 1973-10-03 2024-10-11 00:22:51.000 1973-10-03 2024-10-11 00:22:51 +1372 1372 1373 137.2 274.40000000000003 1372 1973-10-04 2024-10-11 00:22:52.000 1973-10-04 2024-10-11 00:22:52 +1373 1373 1374 137.3 274.6 1373 1973-10-05 2024-10-11 00:22:53.000 1973-10-05 2024-10-11 00:22:53 +1374 1374 1375 137.4 274.8 1374 1973-10-06 2024-10-11 00:22:54.000 1973-10-06 2024-10-11 00:22:54 +1375 1375 1376 137.5 275 1375 1973-10-07 2024-10-11 00:22:55.000 1973-10-07 2024-10-11 00:22:55 +1376 1376 1377 137.6 275.2 1376 1973-10-08 2024-10-11 00:22:56.000 1973-10-08 2024-10-11 00:22:56 +1377 1377 1378 137.7 275.40000000000003 1377 1973-10-09 2024-10-11 00:22:57.000 1973-10-09 2024-10-11 00:22:57 +1378 1378 1379 137.8 275.6 1378 1973-10-10 2024-10-11 00:22:58.000 1973-10-10 2024-10-11 00:22:58 +1379 1379 1380 137.9 275.8 1379 1973-10-11 2024-10-11 00:22:59.000 1973-10-11 2024-10-11 00:22:59 +1380 1380 1381 138 276 1380 1973-10-12 2024-10-11 00:23:00.000 1973-10-12 2024-10-11 00:23:00 +1381 1381 1382 138.1 276.2 1381 1973-10-13 2024-10-11 00:23:01.000 1973-10-13 2024-10-11 00:23:01 +1382 1382 1383 138.2 276.40000000000003 1382 1973-10-14 2024-10-11 00:23:02.000 1973-10-14 2024-10-11 00:23:02 +1383 1383 1384 138.3 276.6 1383 1973-10-15 2024-10-11 00:23:03.000 1973-10-15 2024-10-11 00:23:03 +1384 1384 1385 138.4 276.8 1384 1973-10-16 2024-10-11 00:23:04.000 1973-10-16 2024-10-11 00:23:04 +1385 1385 1386 138.5 277 1385 1973-10-17 2024-10-11 00:23:05.000 1973-10-17 2024-10-11 00:23:05 +1386 1386 1387 138.6 277.2 1386 1973-10-18 2024-10-11 00:23:06.000 1973-10-18 2024-10-11 00:23:06 +1387 1387 1388 138.7 277.40000000000003 1387 1973-10-19 2024-10-11 00:23:07.000 1973-10-19 2024-10-11 00:23:07 +1388 1388 1389 138.8 277.6 1388 1973-10-20 2024-10-11 00:23:08.000 1973-10-20 2024-10-11 00:23:08 +1389 1389 1390 138.9 277.8 1389 1973-10-21 2024-10-11 00:23:09.000 1973-10-21 2024-10-11 00:23:09 +1390 1390 1391 139 278 1390 1973-10-22 2024-10-11 00:23:10.000 1973-10-22 2024-10-11 00:23:10 +1391 1391 1392 139.1 278.2 1391 1973-10-23 2024-10-11 00:23:11.000 1973-10-23 2024-10-11 00:23:11 +1392 1392 1393 139.2 278.40000000000003 1392 1973-10-24 2024-10-11 00:23:12.000 1973-10-24 2024-10-11 00:23:12 +1393 1393 1394 139.3 278.6 1393 1973-10-25 2024-10-11 00:23:13.000 1973-10-25 2024-10-11 00:23:13 +1394 1394 1395 139.4 278.8 1394 1973-10-26 2024-10-11 00:23:14.000 1973-10-26 2024-10-11 00:23:14 +1395 1395 1396 139.5 279 1395 1973-10-27 2024-10-11 00:23:15.000 1973-10-27 2024-10-11 00:23:15 +1396 1396 1397 139.6 279.2 1396 1973-10-28 2024-10-11 00:23:16.000 1973-10-28 2024-10-11 00:23:16 +1397 1397 1398 139.7 279.40000000000003 1397 1973-10-29 2024-10-11 00:23:17.000 1973-10-29 2024-10-11 00:23:17 +1398 1398 1399 139.8 279.6 1398 1973-10-30 2024-10-11 00:23:18.000 1973-10-30 2024-10-11 00:23:18 +1399 1399 1400 139.9 279.8 1399 1973-10-31 2024-10-11 00:23:19.000 1973-10-31 2024-10-11 00:23:19 +1400 1400 1401 140 280 1400 1973-11-01 2024-10-11 00:23:20.000 1973-11-01 2024-10-11 00:23:20 +1401 1401 1402 140.1 280.2 1401 1973-11-02 2024-10-11 00:23:21.000 1973-11-02 2024-10-11 00:23:21 +1402 1402 1403 140.2 280.40000000000003 1402 1973-11-03 2024-10-11 00:23:22.000 1973-11-03 2024-10-11 00:23:22 +1403 1403 1404 140.3 280.6 1403 1973-11-04 2024-10-11 00:23:23.000 1973-11-04 2024-10-11 00:23:23 +1404 1404 1405 140.4 280.8 1404 1973-11-05 2024-10-11 00:23:24.000 1973-11-05 2024-10-11 00:23:24 +1405 1405 1406 140.5 281 1405 1973-11-06 2024-10-11 00:23:25.000 1973-11-06 2024-10-11 00:23:25 +1406 1406 1407 140.6 281.2 1406 1973-11-07 2024-10-11 00:23:26.000 1973-11-07 2024-10-11 00:23:26 +1407 1407 1408 140.7 281.40000000000003 1407 1973-11-08 2024-10-11 00:23:27.000 1973-11-08 2024-10-11 00:23:27 +1408 1408 1409 140.8 281.6 1408 1973-11-09 2024-10-11 00:23:28.000 1973-11-09 2024-10-11 00:23:28 +1409 1409 1410 140.9 281.8 1409 1973-11-10 2024-10-11 00:23:29.000 1973-11-10 2024-10-11 00:23:29 +1410 1410 1411 141 282 1410 1973-11-11 2024-10-11 00:23:30.000 1973-11-11 2024-10-11 00:23:30 +1411 1411 1412 141.1 282.2 1411 1973-11-12 2024-10-11 00:23:31.000 1973-11-12 2024-10-11 00:23:31 +1412 1412 1413 141.2 282.40000000000003 1412 1973-11-13 2024-10-11 00:23:32.000 1973-11-13 2024-10-11 00:23:32 +1413 1413 1414 141.3 282.6 1413 1973-11-14 2024-10-11 00:23:33.000 1973-11-14 2024-10-11 00:23:33 +1414 1414 1415 141.4 282.8 1414 1973-11-15 2024-10-11 00:23:34.000 1973-11-15 2024-10-11 00:23:34 +1415 1415 1416 141.5 283 1415 1973-11-16 2024-10-11 00:23:35.000 1973-11-16 2024-10-11 00:23:35 +1416 1416 1417 141.6 283.2 1416 1973-11-17 2024-10-11 00:23:36.000 1973-11-17 2024-10-11 00:23:36 +1417 1417 1418 141.7 283.40000000000003 1417 1973-11-18 2024-10-11 00:23:37.000 1973-11-18 2024-10-11 00:23:37 +1418 1418 1419 141.8 283.6 1418 1973-11-19 2024-10-11 00:23:38.000 1973-11-19 2024-10-11 00:23:38 +1419 1419 1420 141.9 283.8 1419 1973-11-20 2024-10-11 00:23:39.000 1973-11-20 2024-10-11 00:23:39 +1420 1420 1421 142 284 1420 1973-11-21 2024-10-11 00:23:40.000 1973-11-21 2024-10-11 00:23:40 +1421 1421 1422 142.1 284.2 1421 1973-11-22 2024-10-11 00:23:41.000 1973-11-22 2024-10-11 00:23:41 +1422 1422 1423 142.2 284.40000000000003 1422 1973-11-23 2024-10-11 00:23:42.000 1973-11-23 2024-10-11 00:23:42 +1423 1423 1424 142.3 284.6 1423 1973-11-24 2024-10-11 00:23:43.000 1973-11-24 2024-10-11 00:23:43 +1424 1424 1425 142.4 284.8 1424 1973-11-25 2024-10-11 00:23:44.000 1973-11-25 2024-10-11 00:23:44 +1425 1425 1426 142.5 285 1425 1973-11-26 2024-10-11 00:23:45.000 1973-11-26 2024-10-11 00:23:45 +1426 1426 1427 142.6 285.2 1426 1973-11-27 2024-10-11 00:23:46.000 1973-11-27 2024-10-11 00:23:46 +1427 1427 1428 142.7 285.40000000000003 1427 1973-11-28 2024-10-11 00:23:47.000 1973-11-28 2024-10-11 00:23:47 +1428 1428 1429 142.8 285.6 1428 1973-11-29 2024-10-11 00:23:48.000 1973-11-29 2024-10-11 00:23:48 +1429 1429 1430 142.9 285.8 1429 1973-11-30 2024-10-11 00:23:49.000 1973-11-30 2024-10-11 00:23:49 +1430 1430 1431 143 286 1430 1973-12-01 2024-10-11 00:23:50.000 1973-12-01 2024-10-11 00:23:50 +1431 1431 1432 143.1 286.2 1431 1973-12-02 2024-10-11 00:23:51.000 1973-12-02 2024-10-11 00:23:51 +1432 1432 1433 143.2 286.40000000000003 1432 1973-12-03 2024-10-11 00:23:52.000 1973-12-03 2024-10-11 00:23:52 +1433 1433 1434 143.3 286.6 1433 1973-12-04 2024-10-11 00:23:53.000 1973-12-04 2024-10-11 00:23:53 +1434 1434 1435 143.4 286.8 1434 1973-12-05 2024-10-11 00:23:54.000 1973-12-05 2024-10-11 00:23:54 +1435 1435 1436 143.5 287 1435 1973-12-06 2024-10-11 00:23:55.000 1973-12-06 2024-10-11 00:23:55 +1436 1436 1437 143.6 287.2 1436 1973-12-07 2024-10-11 00:23:56.000 1973-12-07 2024-10-11 00:23:56 +1437 1437 1438 143.7 287.40000000000003 1437 1973-12-08 2024-10-11 00:23:57.000 1973-12-08 2024-10-11 00:23:57 +1438 1438 1439 143.8 287.6 1438 1973-12-09 2024-10-11 00:23:58.000 1973-12-09 2024-10-11 00:23:58 +1439 1439 1440 143.9 287.8 1439 1973-12-10 2024-10-11 00:23:59.000 1973-12-10 2024-10-11 00:23:59 +1440 1440 1441 144 288 1440 1973-12-11 2024-10-11 00:24:00.000 1973-12-11 2024-10-11 00:24:00 +1441 1441 1442 144.1 288.2 1441 1973-12-12 2024-10-11 00:24:01.000 1973-12-12 2024-10-11 00:24:01 +1442 1442 1443 144.2 288.40000000000003 1442 1973-12-13 2024-10-11 00:24:02.000 1973-12-13 2024-10-11 00:24:02 +1443 1443 1444 144.3 288.6 1443 1973-12-14 2024-10-11 00:24:03.000 1973-12-14 2024-10-11 00:24:03 +1444 1444 1445 144.4 288.8 1444 1973-12-15 2024-10-11 00:24:04.000 1973-12-15 2024-10-11 00:24:04 +1445 1445 1446 144.5 289 1445 1973-12-16 2024-10-11 00:24:05.000 1973-12-16 2024-10-11 00:24:05 +1446 1446 1447 144.6 289.2 1446 1973-12-17 2024-10-11 00:24:06.000 1973-12-17 2024-10-11 00:24:06 +1447 1447 1448 144.7 289.40000000000003 1447 1973-12-18 2024-10-11 00:24:07.000 1973-12-18 2024-10-11 00:24:07 +1448 1448 1449 144.8 289.6 1448 1973-12-19 2024-10-11 00:24:08.000 1973-12-19 2024-10-11 00:24:08 +1449 1449 1450 144.9 289.8 1449 1973-12-20 2024-10-11 00:24:09.000 1973-12-20 2024-10-11 00:24:09 +1450 1450 1451 145 290 1450 1973-12-21 2024-10-11 00:24:10.000 1973-12-21 2024-10-11 00:24:10 +1451 1451 1452 145.1 290.2 1451 1973-12-22 2024-10-11 00:24:11.000 1973-12-22 2024-10-11 00:24:11 +1452 1452 1453 145.2 290.40000000000003 1452 1973-12-23 2024-10-11 00:24:12.000 1973-12-23 2024-10-11 00:24:12 +1453 1453 1454 145.3 290.6 1453 1973-12-24 2024-10-11 00:24:13.000 1973-12-24 2024-10-11 00:24:13 +1454 1454 1455 145.4 290.8 1454 1973-12-25 2024-10-11 00:24:14.000 1973-12-25 2024-10-11 00:24:14 +1455 1455 1456 145.5 291 1455 1973-12-26 2024-10-11 00:24:15.000 1973-12-26 2024-10-11 00:24:15 +1456 1456 1457 145.6 291.2 1456 1973-12-27 2024-10-11 00:24:16.000 1973-12-27 2024-10-11 00:24:16 +1457 1457 1458 145.7 291.40000000000003 1457 1973-12-28 2024-10-11 00:24:17.000 1973-12-28 2024-10-11 00:24:17 +1458 1458 1459 145.8 291.6 1458 1973-12-29 2024-10-11 00:24:18.000 1973-12-29 2024-10-11 00:24:18 +1459 1459 1460 145.9 291.8 1459 1973-12-30 2024-10-11 00:24:19.000 1973-12-30 2024-10-11 00:24:19 +1460 1460 1461 146 292 1460 1973-12-31 2024-10-11 00:24:20.000 1973-12-31 2024-10-11 00:24:20 +1461 1461 1462 146.1 292.2 1461 1974-01-01 2024-10-11 00:24:21.000 1974-01-01 2024-10-11 00:24:21 +1462 1462 1463 146.2 292.40000000000003 1462 1974-01-02 2024-10-11 00:24:22.000 1974-01-02 2024-10-11 00:24:22 +1463 1463 1464 146.3 292.6 1463 1974-01-03 2024-10-11 00:24:23.000 1974-01-03 2024-10-11 00:24:23 +1464 1464 1465 146.4 292.8 1464 1974-01-04 2024-10-11 00:24:24.000 1974-01-04 2024-10-11 00:24:24 +1465 1465 1466 146.5 293 1465 1974-01-05 2024-10-11 00:24:25.000 1974-01-05 2024-10-11 00:24:25 +1466 1466 1467 146.6 293.2 1466 1974-01-06 2024-10-11 00:24:26.000 1974-01-06 2024-10-11 00:24:26 +1467 1467 1468 146.7 293.40000000000003 1467 1974-01-07 2024-10-11 00:24:27.000 1974-01-07 2024-10-11 00:24:27 +1468 1468 1469 146.8 293.6 1468 1974-01-08 2024-10-11 00:24:28.000 1974-01-08 2024-10-11 00:24:28 +1469 1469 1470 146.9 293.8 1469 1974-01-09 2024-10-11 00:24:29.000 1974-01-09 2024-10-11 00:24:29 +1470 1470 1471 147 294 1470 1974-01-10 2024-10-11 00:24:30.000 1974-01-10 2024-10-11 00:24:30 +1471 1471 1472 147.1 294.2 1471 1974-01-11 2024-10-11 00:24:31.000 1974-01-11 2024-10-11 00:24:31 +1472 1472 1473 147.2 294.40000000000003 1472 1974-01-12 2024-10-11 00:24:32.000 1974-01-12 2024-10-11 00:24:32 +1473 1473 1474 147.3 294.6 1473 1974-01-13 2024-10-11 00:24:33.000 1974-01-13 2024-10-11 00:24:33 +1474 1474 1475 147.4 294.8 1474 1974-01-14 2024-10-11 00:24:34.000 1974-01-14 2024-10-11 00:24:34 +1475 1475 1476 147.5 295 1475 1974-01-15 2024-10-11 00:24:35.000 1974-01-15 2024-10-11 00:24:35 +1476 1476 1477 147.6 295.2 1476 1974-01-16 2024-10-11 00:24:36.000 1974-01-16 2024-10-11 00:24:36 +1477 1477 1478 147.7 295.40000000000003 1477 1974-01-17 2024-10-11 00:24:37.000 1974-01-17 2024-10-11 00:24:37 +1478 1478 1479 147.8 295.6 1478 1974-01-18 2024-10-11 00:24:38.000 1974-01-18 2024-10-11 00:24:38 +1479 1479 1480 147.9 295.8 1479 1974-01-19 2024-10-11 00:24:39.000 1974-01-19 2024-10-11 00:24:39 +1480 1480 1481 148 296 1480 1974-01-20 2024-10-11 00:24:40.000 1974-01-20 2024-10-11 00:24:40 +1481 1481 1482 148.1 296.2 1481 1974-01-21 2024-10-11 00:24:41.000 1974-01-21 2024-10-11 00:24:41 +1482 1482 1483 148.2 296.40000000000003 1482 1974-01-22 2024-10-11 00:24:42.000 1974-01-22 2024-10-11 00:24:42 +1483 1483 1484 148.3 296.6 1483 1974-01-23 2024-10-11 00:24:43.000 1974-01-23 2024-10-11 00:24:43 +1484 1484 1485 148.4 296.8 1484 1974-01-24 2024-10-11 00:24:44.000 1974-01-24 2024-10-11 00:24:44 +1485 1485 1486 148.5 297 1485 1974-01-25 2024-10-11 00:24:45.000 1974-01-25 2024-10-11 00:24:45 +1486 1486 1487 148.6 297.2 1486 1974-01-26 2024-10-11 00:24:46.000 1974-01-26 2024-10-11 00:24:46 +1487 1487 1488 148.7 297.40000000000003 1487 1974-01-27 2024-10-11 00:24:47.000 1974-01-27 2024-10-11 00:24:47 +1488 1488 1489 148.8 297.6 1488 1974-01-28 2024-10-11 00:24:48.000 1974-01-28 2024-10-11 00:24:48 +1489 1489 1490 148.9 297.8 1489 1974-01-29 2024-10-11 00:24:49.000 1974-01-29 2024-10-11 00:24:49 +1490 1490 1491 149 298 1490 1974-01-30 2024-10-11 00:24:50.000 1974-01-30 2024-10-11 00:24:50 +1491 1491 1492 149.1 298.2 1491 1974-01-31 2024-10-11 00:24:51.000 1974-01-31 2024-10-11 00:24:51 +1492 1492 1493 149.2 298.40000000000003 1492 1974-02-01 2024-10-11 00:24:52.000 1974-02-01 2024-10-11 00:24:52 +1493 1493 1494 149.3 298.6 1493 1974-02-02 2024-10-11 00:24:53.000 1974-02-02 2024-10-11 00:24:53 +1494 1494 1495 149.4 298.8 1494 1974-02-03 2024-10-11 00:24:54.000 1974-02-03 2024-10-11 00:24:54 +1495 1495 1496 149.5 299 1495 1974-02-04 2024-10-11 00:24:55.000 1974-02-04 2024-10-11 00:24:55 +1496 1496 1497 149.6 299.2 1496 1974-02-05 2024-10-11 00:24:56.000 1974-02-05 2024-10-11 00:24:56 +1497 1497 1498 149.7 299.40000000000003 1497 1974-02-06 2024-10-11 00:24:57.000 1974-02-06 2024-10-11 00:24:57 +1498 1498 1499 149.8 299.6 1498 1974-02-07 2024-10-11 00:24:58.000 1974-02-07 2024-10-11 00:24:58 +1499 1499 1500 149.9 299.8 1499 1974-02-08 2024-10-11 00:24:59.000 1974-02-08 2024-10-11 00:24:59 +1500 1500 1501 150 300 1500 1974-02-09 2024-10-11 00:25:00.000 1974-02-09 2024-10-11 00:25:00 +1501 1501 1502 150.1 300.2 1501 1974-02-10 2024-10-11 00:25:01.000 1974-02-10 2024-10-11 00:25:01 +1502 1502 1503 150.2 300.40000000000003 1502 1974-02-11 2024-10-11 00:25:02.000 1974-02-11 2024-10-11 00:25:02 +1503 1503 1504 150.3 300.6 1503 1974-02-12 2024-10-11 00:25:03.000 1974-02-12 2024-10-11 00:25:03 +1504 1504 1505 150.4 300.8 1504 1974-02-13 2024-10-11 00:25:04.000 1974-02-13 2024-10-11 00:25:04 +1505 1505 1506 150.5 301 1505 1974-02-14 2024-10-11 00:25:05.000 1974-02-14 2024-10-11 00:25:05 +1506 1506 1507 150.6 301.2 1506 1974-02-15 2024-10-11 00:25:06.000 1974-02-15 2024-10-11 00:25:06 +1507 1507 1508 150.7 301.40000000000003 1507 1974-02-16 2024-10-11 00:25:07.000 1974-02-16 2024-10-11 00:25:07 +1508 1508 1509 150.8 301.6 1508 1974-02-17 2024-10-11 00:25:08.000 1974-02-17 2024-10-11 00:25:08 +1509 1509 1510 150.9 301.8 1509 1974-02-18 2024-10-11 00:25:09.000 1974-02-18 2024-10-11 00:25:09 +1510 1510 1511 151 302 1510 1974-02-19 2024-10-11 00:25:10.000 1974-02-19 2024-10-11 00:25:10 +1511 1511 1512 151.1 302.2 1511 1974-02-20 2024-10-11 00:25:11.000 1974-02-20 2024-10-11 00:25:11 +1512 1512 1513 151.2 302.40000000000003 1512 1974-02-21 2024-10-11 00:25:12.000 1974-02-21 2024-10-11 00:25:12 +1513 1513 1514 151.3 302.6 1513 1974-02-22 2024-10-11 00:25:13.000 1974-02-22 2024-10-11 00:25:13 +1514 1514 1515 151.4 302.8 1514 1974-02-23 2024-10-11 00:25:14.000 1974-02-23 2024-10-11 00:25:14 +1515 1515 1516 151.5 303 1515 1974-02-24 2024-10-11 00:25:15.000 1974-02-24 2024-10-11 00:25:15 +1516 1516 1517 151.6 303.2 1516 1974-02-25 2024-10-11 00:25:16.000 1974-02-25 2024-10-11 00:25:16 +1517 1517 1518 151.7 303.40000000000003 1517 1974-02-26 2024-10-11 00:25:17.000 1974-02-26 2024-10-11 00:25:17 +1518 1518 1519 151.8 303.6 1518 1974-02-27 2024-10-11 00:25:18.000 1974-02-27 2024-10-11 00:25:18 +1519 1519 1520 151.9 303.8 1519 1974-02-28 2024-10-11 00:25:19.000 1974-02-28 2024-10-11 00:25:19 +1520 1520 1521 152 304 1520 1974-03-01 2024-10-11 00:25:20.000 1974-03-01 2024-10-11 00:25:20 +1521 1521 1522 152.1 304.2 1521 1974-03-02 2024-10-11 00:25:21.000 1974-03-02 2024-10-11 00:25:21 +1522 1522 1523 152.2 304.40000000000003 1522 1974-03-03 2024-10-11 00:25:22.000 1974-03-03 2024-10-11 00:25:22 +1523 1523 1524 152.3 304.6 1523 1974-03-04 2024-10-11 00:25:23.000 1974-03-04 2024-10-11 00:25:23 +1524 1524 1525 152.4 304.8 1524 1974-03-05 2024-10-11 00:25:24.000 1974-03-05 2024-10-11 00:25:24 +1525 1525 1526 152.5 305 1525 1974-03-06 2024-10-11 00:25:25.000 1974-03-06 2024-10-11 00:25:25 +1526 1526 1527 152.6 305.2 1526 1974-03-07 2024-10-11 00:25:26.000 1974-03-07 2024-10-11 00:25:26 +1527 1527 1528 152.7 305.40000000000003 1527 1974-03-08 2024-10-11 00:25:27.000 1974-03-08 2024-10-11 00:25:27 +1528 1528 1529 152.8 305.6 1528 1974-03-09 2024-10-11 00:25:28.000 1974-03-09 2024-10-11 00:25:28 +1529 1529 1530 152.9 305.8 1529 1974-03-10 2024-10-11 00:25:29.000 1974-03-10 2024-10-11 00:25:29 +1530 1530 1531 153 306 1530 1974-03-11 2024-10-11 00:25:30.000 1974-03-11 2024-10-11 00:25:30 +1531 1531 1532 153.1 306.2 1531 1974-03-12 2024-10-11 00:25:31.000 1974-03-12 2024-10-11 00:25:31 +1532 1532 1533 153.2 306.40000000000003 1532 1974-03-13 2024-10-11 00:25:32.000 1974-03-13 2024-10-11 00:25:32 +1533 1533 1534 153.3 306.6 1533 1974-03-14 2024-10-11 00:25:33.000 1974-03-14 2024-10-11 00:25:33 +1534 1534 1535 153.4 306.8 1534 1974-03-15 2024-10-11 00:25:34.000 1974-03-15 2024-10-11 00:25:34 +1535 1535 1536 153.5 307 1535 1974-03-16 2024-10-11 00:25:35.000 1974-03-16 2024-10-11 00:25:35 +1536 1536 1537 153.6 307.20000000000005 1536 1974-03-17 2024-10-11 00:25:36.000 1974-03-17 2024-10-11 00:25:36 +1537 1537 1538 153.7 307.40000000000003 1537 1974-03-18 2024-10-11 00:25:37.000 1974-03-18 2024-10-11 00:25:37 +1538 1538 1539 153.8 307.6 1538 1974-03-19 2024-10-11 00:25:38.000 1974-03-19 2024-10-11 00:25:38 +1539 1539 1540 153.9 307.8 1539 1974-03-20 2024-10-11 00:25:39.000 1974-03-20 2024-10-11 00:25:39 +1540 1540 1541 154 308 1540 1974-03-21 2024-10-11 00:25:40.000 1974-03-21 2024-10-11 00:25:40 +1541 1541 1542 154.1 308.20000000000005 1541 1974-03-22 2024-10-11 00:25:41.000 1974-03-22 2024-10-11 00:25:41 +1542 1542 1543 154.2 308.40000000000003 1542 1974-03-23 2024-10-11 00:25:42.000 1974-03-23 2024-10-11 00:25:42 +1543 1543 1544 154.3 308.6 1543 1974-03-24 2024-10-11 00:25:43.000 1974-03-24 2024-10-11 00:25:43 +1544 1544 1545 154.4 308.8 1544 1974-03-25 2024-10-11 00:25:44.000 1974-03-25 2024-10-11 00:25:44 +1545 1545 1546 154.5 309 1545 1974-03-26 2024-10-11 00:25:45.000 1974-03-26 2024-10-11 00:25:45 +1546 1546 1547 154.6 309.20000000000005 1546 1974-03-27 2024-10-11 00:25:46.000 1974-03-27 2024-10-11 00:25:46 +1547 1547 1548 154.7 309.40000000000003 1547 1974-03-28 2024-10-11 00:25:47.000 1974-03-28 2024-10-11 00:25:47 +1548 1548 1549 154.8 309.6 1548 1974-03-29 2024-10-11 00:25:48.000 1974-03-29 2024-10-11 00:25:48 +1549 1549 1550 154.9 309.8 1549 1974-03-30 2024-10-11 00:25:49.000 1974-03-30 2024-10-11 00:25:49 +1550 1550 1551 155 310 1550 1974-03-31 2024-10-11 00:25:50.000 1974-03-31 2024-10-11 00:25:50 +1551 1551 1552 155.1 310.20000000000005 1551 1974-04-01 2024-10-11 00:25:51.000 1974-04-01 2024-10-11 00:25:51 +1552 1552 1553 155.2 310.40000000000003 1552 1974-04-02 2024-10-11 00:25:52.000 1974-04-02 2024-10-11 00:25:52 +1553 1553 1554 155.3 310.6 1553 1974-04-03 2024-10-11 00:25:53.000 1974-04-03 2024-10-11 00:25:53 +1554 1554 1555 155.4 310.8 1554 1974-04-04 2024-10-11 00:25:54.000 1974-04-04 2024-10-11 00:25:54 +1555 1555 1556 155.5 311 1555 1974-04-05 2024-10-11 00:25:55.000 1974-04-05 2024-10-11 00:25:55 +1556 1556 1557 155.6 311.20000000000005 1556 1974-04-06 2024-10-11 00:25:56.000 1974-04-06 2024-10-11 00:25:56 +1557 1557 1558 155.7 311.40000000000003 1557 1974-04-07 2024-10-11 00:25:57.000 1974-04-07 2024-10-11 00:25:57 +1558 1558 1559 155.8 311.6 1558 1974-04-08 2024-10-11 00:25:58.000 1974-04-08 2024-10-11 00:25:58 +1559 1559 1560 155.9 311.8 1559 1974-04-09 2024-10-11 00:25:59.000 1974-04-09 2024-10-11 00:25:59 +1560 1560 1561 156 312 1560 1974-04-10 2024-10-11 00:26:00.000 1974-04-10 2024-10-11 00:26:00 +1561 1561 1562 156.1 312.20000000000005 1561 1974-04-11 2024-10-11 00:26:01.000 1974-04-11 2024-10-11 00:26:01 +1562 1562 1563 156.2 312.40000000000003 1562 1974-04-12 2024-10-11 00:26:02.000 1974-04-12 2024-10-11 00:26:02 +1563 1563 1564 156.3 312.6 1563 1974-04-13 2024-10-11 00:26:03.000 1974-04-13 2024-10-11 00:26:03 +1564 1564 1565 156.4 312.8 1564 1974-04-14 2024-10-11 00:26:04.000 1974-04-14 2024-10-11 00:26:04 +1565 1565 1566 156.5 313 1565 1974-04-15 2024-10-11 00:26:05.000 1974-04-15 2024-10-11 00:26:05 +1566 1566 1567 156.6 313.20000000000005 1566 1974-04-16 2024-10-11 00:26:06.000 1974-04-16 2024-10-11 00:26:06 +1567 1567 1568 156.7 313.40000000000003 1567 1974-04-17 2024-10-11 00:26:07.000 1974-04-17 2024-10-11 00:26:07 +1568 1568 1569 156.8 313.6 1568 1974-04-18 2024-10-11 00:26:08.000 1974-04-18 2024-10-11 00:26:08 +1569 1569 1570 156.9 313.8 1569 1974-04-19 2024-10-11 00:26:09.000 1974-04-19 2024-10-11 00:26:09 +1570 1570 1571 157 314 1570 1974-04-20 2024-10-11 00:26:10.000 1974-04-20 2024-10-11 00:26:10 +1571 1571 1572 157.1 314.20000000000005 1571 1974-04-21 2024-10-11 00:26:11.000 1974-04-21 2024-10-11 00:26:11 +1572 1572 1573 157.2 314.40000000000003 1572 1974-04-22 2024-10-11 00:26:12.000 1974-04-22 2024-10-11 00:26:12 +1573 1573 1574 157.3 314.6 1573 1974-04-23 2024-10-11 00:26:13.000 1974-04-23 2024-10-11 00:26:13 +1574 1574 1575 157.4 314.8 1574 1974-04-24 2024-10-11 00:26:14.000 1974-04-24 2024-10-11 00:26:14 +1575 1575 1576 157.5 315 1575 1974-04-25 2024-10-11 00:26:15.000 1974-04-25 2024-10-11 00:26:15 +1576 1576 1577 157.6 315.20000000000005 1576 1974-04-26 2024-10-11 00:26:16.000 1974-04-26 2024-10-11 00:26:16 +1577 1577 1578 157.7 315.40000000000003 1577 1974-04-27 2024-10-11 00:26:17.000 1974-04-27 2024-10-11 00:26:17 +1578 1578 1579 157.8 315.6 1578 1974-04-28 2024-10-11 00:26:18.000 1974-04-28 2024-10-11 00:26:18 +1579 1579 1580 157.9 315.8 1579 1974-04-29 2024-10-11 00:26:19.000 1974-04-29 2024-10-11 00:26:19 +1580 1580 1581 158 316 1580 1974-04-30 2024-10-11 00:26:20.000 1974-04-30 2024-10-11 00:26:20 +1581 1581 1582 158.1 316.20000000000005 1581 1974-05-01 2024-10-11 00:26:21.000 1974-05-01 2024-10-11 00:26:21 +1582 1582 1583 158.2 316.40000000000003 1582 1974-05-02 2024-10-11 00:26:22.000 1974-05-02 2024-10-11 00:26:22 +1583 1583 1584 158.3 316.6 1583 1974-05-03 2024-10-11 00:26:23.000 1974-05-03 2024-10-11 00:26:23 +1584 1584 1585 158.4 316.8 1584 1974-05-04 2024-10-11 00:26:24.000 1974-05-04 2024-10-11 00:26:24 +1585 1585 1586 158.5 317 1585 1974-05-05 2024-10-11 00:26:25.000 1974-05-05 2024-10-11 00:26:25 +1586 1586 1587 158.6 317.20000000000005 1586 1974-05-06 2024-10-11 00:26:26.000 1974-05-06 2024-10-11 00:26:26 +1587 1587 1588 158.7 317.40000000000003 1587 1974-05-07 2024-10-11 00:26:27.000 1974-05-07 2024-10-11 00:26:27 +1588 1588 1589 158.8 317.6 1588 1974-05-08 2024-10-11 00:26:28.000 1974-05-08 2024-10-11 00:26:28 +1589 1589 1590 158.9 317.8 1589 1974-05-09 2024-10-11 00:26:29.000 1974-05-09 2024-10-11 00:26:29 +1590 1590 1591 159 318 1590 1974-05-10 2024-10-11 00:26:30.000 1974-05-10 2024-10-11 00:26:30 +1591 1591 1592 159.1 318.20000000000005 1591 1974-05-11 2024-10-11 00:26:31.000 1974-05-11 2024-10-11 00:26:31 +1592 1592 1593 159.2 318.40000000000003 1592 1974-05-12 2024-10-11 00:26:32.000 1974-05-12 2024-10-11 00:26:32 +1593 1593 1594 159.3 318.6 1593 1974-05-13 2024-10-11 00:26:33.000 1974-05-13 2024-10-11 00:26:33 +1594 1594 1595 159.4 318.8 1594 1974-05-14 2024-10-11 00:26:34.000 1974-05-14 2024-10-11 00:26:34 +1595 1595 1596 159.5 319 1595 1974-05-15 2024-10-11 00:26:35.000 1974-05-15 2024-10-11 00:26:35 +1596 1596 1597 159.6 319.20000000000005 1596 1974-05-16 2024-10-11 00:26:36.000 1974-05-16 2024-10-11 00:26:36 +1597 1597 1598 159.7 319.40000000000003 1597 1974-05-17 2024-10-11 00:26:37.000 1974-05-17 2024-10-11 00:26:37 +1598 1598 1599 159.8 319.6 1598 1974-05-18 2024-10-11 00:26:38.000 1974-05-18 2024-10-11 00:26:38 +1599 1599 1600 159.9 319.8 1599 1974-05-19 2024-10-11 00:26:39.000 1974-05-19 2024-10-11 00:26:39 +1600 1600 1601 160 320 1600 1974-05-20 2024-10-11 00:26:40.000 1974-05-20 2024-10-11 00:26:40 +1601 1601 1602 160.1 320.20000000000005 1601 1974-05-21 2024-10-11 00:26:41.000 1974-05-21 2024-10-11 00:26:41 +1602 1602 1603 160.2 320.40000000000003 1602 1974-05-22 2024-10-11 00:26:42.000 1974-05-22 2024-10-11 00:26:42 +1603 1603 1604 160.3 320.6 1603 1974-05-23 2024-10-11 00:26:43.000 1974-05-23 2024-10-11 00:26:43 +1604 1604 1605 160.4 320.8 1604 1974-05-24 2024-10-11 00:26:44.000 1974-05-24 2024-10-11 00:26:44 +1605 1605 1606 160.5 321 1605 1974-05-25 2024-10-11 00:26:45.000 1974-05-25 2024-10-11 00:26:45 +1606 1606 1607 160.6 321.20000000000005 1606 1974-05-26 2024-10-11 00:26:46.000 1974-05-26 2024-10-11 00:26:46 +1607 1607 1608 160.7 321.40000000000003 1607 1974-05-27 2024-10-11 00:26:47.000 1974-05-27 2024-10-11 00:26:47 +1608 1608 1609 160.8 321.6 1608 1974-05-28 2024-10-11 00:26:48.000 1974-05-28 2024-10-11 00:26:48 +1609 1609 1610 160.9 321.8 1609 1974-05-29 2024-10-11 00:26:49.000 1974-05-29 2024-10-11 00:26:49 +1610 1610 1611 161 322 1610 1974-05-30 2024-10-11 00:26:50.000 1974-05-30 2024-10-11 00:26:50 +1611 1611 1612 161.1 322.20000000000005 1611 1974-05-31 2024-10-11 00:26:51.000 1974-05-31 2024-10-11 00:26:51 +1612 1612 1613 161.2 322.40000000000003 1612 1974-06-01 2024-10-11 00:26:52.000 1974-06-01 2024-10-11 00:26:52 +1613 1613 1614 161.3 322.6 1613 1974-06-02 2024-10-11 00:26:53.000 1974-06-02 2024-10-11 00:26:53 +1614 1614 1615 161.4 322.8 1614 1974-06-03 2024-10-11 00:26:54.000 1974-06-03 2024-10-11 00:26:54 +1615 1615 1616 161.5 323 1615 1974-06-04 2024-10-11 00:26:55.000 1974-06-04 2024-10-11 00:26:55 +1616 1616 1617 161.6 323.20000000000005 1616 1974-06-05 2024-10-11 00:26:56.000 1974-06-05 2024-10-11 00:26:56 +1617 1617 1618 161.7 323.40000000000003 1617 1974-06-06 2024-10-11 00:26:57.000 1974-06-06 2024-10-11 00:26:57 +1618 1618 1619 161.8 323.6 1618 1974-06-07 2024-10-11 00:26:58.000 1974-06-07 2024-10-11 00:26:58 +1619 1619 1620 161.9 323.8 1619 1974-06-08 2024-10-11 00:26:59.000 1974-06-08 2024-10-11 00:26:59 +1620 1620 1621 162 324 1620 1974-06-09 2024-10-11 00:27:00.000 1974-06-09 2024-10-11 00:27:00 +1621 1621 1622 162.1 324.20000000000005 1621 1974-06-10 2024-10-11 00:27:01.000 1974-06-10 2024-10-11 00:27:01 +1622 1622 1623 162.2 324.40000000000003 1622 1974-06-11 2024-10-11 00:27:02.000 1974-06-11 2024-10-11 00:27:02 +1623 1623 1624 162.3 324.6 1623 1974-06-12 2024-10-11 00:27:03.000 1974-06-12 2024-10-11 00:27:03 +1624 1624 1625 162.4 324.8 1624 1974-06-13 2024-10-11 00:27:04.000 1974-06-13 2024-10-11 00:27:04 +1625 1625 1626 162.5 325 1625 1974-06-14 2024-10-11 00:27:05.000 1974-06-14 2024-10-11 00:27:05 +1626 1626 1627 162.6 325.20000000000005 1626 1974-06-15 2024-10-11 00:27:06.000 1974-06-15 2024-10-11 00:27:06 +1627 1627 1628 162.7 325.40000000000003 1627 1974-06-16 2024-10-11 00:27:07.000 1974-06-16 2024-10-11 00:27:07 +1628 1628 1629 162.8 325.6 1628 1974-06-17 2024-10-11 00:27:08.000 1974-06-17 2024-10-11 00:27:08 +1629 1629 1630 162.9 325.8 1629 1974-06-18 2024-10-11 00:27:09.000 1974-06-18 2024-10-11 00:27:09 +1630 1630 1631 163 326 1630 1974-06-19 2024-10-11 00:27:10.000 1974-06-19 2024-10-11 00:27:10 +1631 1631 1632 163.1 326.20000000000005 1631 1974-06-20 2024-10-11 00:27:11.000 1974-06-20 2024-10-11 00:27:11 +1632 1632 1633 163.2 326.40000000000003 1632 1974-06-21 2024-10-11 00:27:12.000 1974-06-21 2024-10-11 00:27:12 +1633 1633 1634 163.3 326.6 1633 1974-06-22 2024-10-11 00:27:13.000 1974-06-22 2024-10-11 00:27:13 +1634 1634 1635 163.4 326.8 1634 1974-06-23 2024-10-11 00:27:14.000 1974-06-23 2024-10-11 00:27:14 +1635 1635 1636 163.5 327 1635 1974-06-24 2024-10-11 00:27:15.000 1974-06-24 2024-10-11 00:27:15 +1636 1636 1637 163.6 327.20000000000005 1636 1974-06-25 2024-10-11 00:27:16.000 1974-06-25 2024-10-11 00:27:16 +1637 1637 1638 163.7 327.40000000000003 1637 1974-06-26 2024-10-11 00:27:17.000 1974-06-26 2024-10-11 00:27:17 +1638 1638 1639 163.8 327.6 1638 1974-06-27 2024-10-11 00:27:18.000 1974-06-27 2024-10-11 00:27:18 +1639 1639 1640 163.9 327.8 1639 1974-06-28 2024-10-11 00:27:19.000 1974-06-28 2024-10-11 00:27:19 +1640 1640 1641 164 328 1640 1974-06-29 2024-10-11 00:27:20.000 1974-06-29 2024-10-11 00:27:20 +1641 1641 1642 164.1 328.20000000000005 1641 1974-06-30 2024-10-11 00:27:21.000 1974-06-30 2024-10-11 00:27:21 +1642 1642 1643 164.2 328.40000000000003 1642 1974-07-01 2024-10-11 00:27:22.000 1974-07-01 2024-10-11 00:27:22 +1643 1643 1644 164.3 328.6 1643 1974-07-02 2024-10-11 00:27:23.000 1974-07-02 2024-10-11 00:27:23 +1644 1644 1645 164.4 328.8 1644 1974-07-03 2024-10-11 00:27:24.000 1974-07-03 2024-10-11 00:27:24 +1645 1645 1646 164.5 329 1645 1974-07-04 2024-10-11 00:27:25.000 1974-07-04 2024-10-11 00:27:25 +1646 1646 1647 164.6 329.20000000000005 1646 1974-07-05 2024-10-11 00:27:26.000 1974-07-05 2024-10-11 00:27:26 +1647 1647 1648 164.7 329.40000000000003 1647 1974-07-06 2024-10-11 00:27:27.000 1974-07-06 2024-10-11 00:27:27 +1648 1648 1649 164.8 329.6 1648 1974-07-07 2024-10-11 00:27:28.000 1974-07-07 2024-10-11 00:27:28 +1649 1649 1650 164.9 329.8 1649 1974-07-08 2024-10-11 00:27:29.000 1974-07-08 2024-10-11 00:27:29 +1650 1650 1651 165 330 1650 1974-07-09 2024-10-11 00:27:30.000 1974-07-09 2024-10-11 00:27:30 +1651 1651 1652 165.1 330.20000000000005 1651 1974-07-10 2024-10-11 00:27:31.000 1974-07-10 2024-10-11 00:27:31 +1652 1652 1653 165.2 330.40000000000003 1652 1974-07-11 2024-10-11 00:27:32.000 1974-07-11 2024-10-11 00:27:32 +1653 1653 1654 165.3 330.6 1653 1974-07-12 2024-10-11 00:27:33.000 1974-07-12 2024-10-11 00:27:33 +1654 1654 1655 165.4 330.8 1654 1974-07-13 2024-10-11 00:27:34.000 1974-07-13 2024-10-11 00:27:34 +1655 1655 1656 165.5 331 1655 1974-07-14 2024-10-11 00:27:35.000 1974-07-14 2024-10-11 00:27:35 +1656 1656 1657 165.6 331.20000000000005 1656 1974-07-15 2024-10-11 00:27:36.000 1974-07-15 2024-10-11 00:27:36 +1657 1657 1658 165.7 331.40000000000003 1657 1974-07-16 2024-10-11 00:27:37.000 1974-07-16 2024-10-11 00:27:37 +1658 1658 1659 165.8 331.6 1658 1974-07-17 2024-10-11 00:27:38.000 1974-07-17 2024-10-11 00:27:38 +1659 1659 1660 165.9 331.8 1659 1974-07-18 2024-10-11 00:27:39.000 1974-07-18 2024-10-11 00:27:39 +1660 1660 1661 166 332 1660 1974-07-19 2024-10-11 00:27:40.000 1974-07-19 2024-10-11 00:27:40 +1661 1661 1662 166.1 332.20000000000005 1661 1974-07-20 2024-10-11 00:27:41.000 1974-07-20 2024-10-11 00:27:41 +1662 1662 1663 166.2 332.40000000000003 1662 1974-07-21 2024-10-11 00:27:42.000 1974-07-21 2024-10-11 00:27:42 +1663 1663 1664 166.3 332.6 1663 1974-07-22 2024-10-11 00:27:43.000 1974-07-22 2024-10-11 00:27:43 +1664 1664 1665 166.4 332.8 1664 1974-07-23 2024-10-11 00:27:44.000 1974-07-23 2024-10-11 00:27:44 +1665 1665 1666 166.5 333 1665 1974-07-24 2024-10-11 00:27:45.000 1974-07-24 2024-10-11 00:27:45 +1666 1666 1667 166.6 333.20000000000005 1666 1974-07-25 2024-10-11 00:27:46.000 1974-07-25 2024-10-11 00:27:46 +1667 1667 1668 166.7 333.40000000000003 1667 1974-07-26 2024-10-11 00:27:47.000 1974-07-26 2024-10-11 00:27:47 +1668 1668 1669 166.8 333.6 1668 1974-07-27 2024-10-11 00:27:48.000 1974-07-27 2024-10-11 00:27:48 +1669 1669 1670 166.9 333.8 1669 1974-07-28 2024-10-11 00:27:49.000 1974-07-28 2024-10-11 00:27:49 +1670 1670 1671 167 334 1670 1974-07-29 2024-10-11 00:27:50.000 1974-07-29 2024-10-11 00:27:50 +1671 1671 1672 167.1 334.20000000000005 1671 1974-07-30 2024-10-11 00:27:51.000 1974-07-30 2024-10-11 00:27:51 +1672 1672 1673 167.2 334.40000000000003 1672 1974-07-31 2024-10-11 00:27:52.000 1974-07-31 2024-10-11 00:27:52 +1673 1673 1674 167.3 334.6 1673 1974-08-01 2024-10-11 00:27:53.000 1974-08-01 2024-10-11 00:27:53 +1674 1674 1675 167.4 334.8 1674 1974-08-02 2024-10-11 00:27:54.000 1974-08-02 2024-10-11 00:27:54 +1675 1675 1676 167.5 335 1675 1974-08-03 2024-10-11 00:27:55.000 1974-08-03 2024-10-11 00:27:55 +1676 1676 1677 167.6 335.20000000000005 1676 1974-08-04 2024-10-11 00:27:56.000 1974-08-04 2024-10-11 00:27:56 +1677 1677 1678 167.7 335.40000000000003 1677 1974-08-05 2024-10-11 00:27:57.000 1974-08-05 2024-10-11 00:27:57 +1678 1678 1679 167.8 335.6 1678 1974-08-06 2024-10-11 00:27:58.000 1974-08-06 2024-10-11 00:27:58 +1679 1679 1680 167.9 335.8 1679 1974-08-07 2024-10-11 00:27:59.000 1974-08-07 2024-10-11 00:27:59 +1680 1680 1681 168 336 1680 1974-08-08 2024-10-11 00:28:00.000 1974-08-08 2024-10-11 00:28:00 +1681 1681 1682 168.1 336.20000000000005 1681 1974-08-09 2024-10-11 00:28:01.000 1974-08-09 2024-10-11 00:28:01 +1682 1682 1683 168.2 336.40000000000003 1682 1974-08-10 2024-10-11 00:28:02.000 1974-08-10 2024-10-11 00:28:02 +1683 1683 1684 168.3 336.6 1683 1974-08-11 2024-10-11 00:28:03.000 1974-08-11 2024-10-11 00:28:03 +1684 1684 1685 168.4 336.8 1684 1974-08-12 2024-10-11 00:28:04.000 1974-08-12 2024-10-11 00:28:04 +1685 1685 1686 168.5 337 1685 1974-08-13 2024-10-11 00:28:05.000 1974-08-13 2024-10-11 00:28:05 +1686 1686 1687 168.6 337.20000000000005 1686 1974-08-14 2024-10-11 00:28:06.000 1974-08-14 2024-10-11 00:28:06 +1687 1687 1688 168.7 337.40000000000003 1687 1974-08-15 2024-10-11 00:28:07.000 1974-08-15 2024-10-11 00:28:07 +1688 1688 1689 168.8 337.6 1688 1974-08-16 2024-10-11 00:28:08.000 1974-08-16 2024-10-11 00:28:08 +1689 1689 1690 168.9 337.8 1689 1974-08-17 2024-10-11 00:28:09.000 1974-08-17 2024-10-11 00:28:09 +1690 1690 1691 169 338 1690 1974-08-18 2024-10-11 00:28:10.000 1974-08-18 2024-10-11 00:28:10 +1691 1691 1692 169.1 338.20000000000005 1691 1974-08-19 2024-10-11 00:28:11.000 1974-08-19 2024-10-11 00:28:11 +1692 1692 1693 169.2 338.40000000000003 1692 1974-08-20 2024-10-11 00:28:12.000 1974-08-20 2024-10-11 00:28:12 +1693 1693 1694 169.3 338.6 1693 1974-08-21 2024-10-11 00:28:13.000 1974-08-21 2024-10-11 00:28:13 +1694 1694 1695 169.4 338.8 1694 1974-08-22 2024-10-11 00:28:14.000 1974-08-22 2024-10-11 00:28:14 +1695 1695 1696 169.5 339 1695 1974-08-23 2024-10-11 00:28:15.000 1974-08-23 2024-10-11 00:28:15 +1696 1696 1697 169.6 339.20000000000005 1696 1974-08-24 2024-10-11 00:28:16.000 1974-08-24 2024-10-11 00:28:16 +1697 1697 1698 169.7 339.40000000000003 1697 1974-08-25 2024-10-11 00:28:17.000 1974-08-25 2024-10-11 00:28:17 +1698 1698 1699 169.8 339.6 1698 1974-08-26 2024-10-11 00:28:18.000 1974-08-26 2024-10-11 00:28:18 +1699 1699 1700 169.9 339.8 1699 1974-08-27 2024-10-11 00:28:19.000 1974-08-27 2024-10-11 00:28:19 +1700 1700 1701 170 340 1700 1974-08-28 2024-10-11 00:28:20.000 1974-08-28 2024-10-11 00:28:20 +1701 1701 1702 170.1 340.20000000000005 1701 1974-08-29 2024-10-11 00:28:21.000 1974-08-29 2024-10-11 00:28:21 +1702 1702 1703 170.2 340.40000000000003 1702 1974-08-30 2024-10-11 00:28:22.000 1974-08-30 2024-10-11 00:28:22 +1703 1703 1704 170.3 340.6 1703 1974-08-31 2024-10-11 00:28:23.000 1974-08-31 2024-10-11 00:28:23 +1704 1704 1705 170.4 340.8 1704 1974-09-01 2024-10-11 00:28:24.000 1974-09-01 2024-10-11 00:28:24 +1705 1705 1706 170.5 341 1705 1974-09-02 2024-10-11 00:28:25.000 1974-09-02 2024-10-11 00:28:25 +1706 1706 1707 170.6 341.20000000000005 1706 1974-09-03 2024-10-11 00:28:26.000 1974-09-03 2024-10-11 00:28:26 +1707 1707 1708 170.7 341.40000000000003 1707 1974-09-04 2024-10-11 00:28:27.000 1974-09-04 2024-10-11 00:28:27 +1708 1708 1709 170.8 341.6 1708 1974-09-05 2024-10-11 00:28:28.000 1974-09-05 2024-10-11 00:28:28 +1709 1709 1710 170.9 341.8 1709 1974-09-06 2024-10-11 00:28:29.000 1974-09-06 2024-10-11 00:28:29 +1710 1710 1711 171 342 1710 1974-09-07 2024-10-11 00:28:30.000 1974-09-07 2024-10-11 00:28:30 +1711 1711 1712 171.1 342.20000000000005 1711 1974-09-08 2024-10-11 00:28:31.000 1974-09-08 2024-10-11 00:28:31 +1712 1712 1713 171.2 342.40000000000003 1712 1974-09-09 2024-10-11 00:28:32.000 1974-09-09 2024-10-11 00:28:32 +1713 1713 1714 171.3 342.6 1713 1974-09-10 2024-10-11 00:28:33.000 1974-09-10 2024-10-11 00:28:33 +1714 1714 1715 171.4 342.8 1714 1974-09-11 2024-10-11 00:28:34.000 1974-09-11 2024-10-11 00:28:34 +1715 1715 1716 171.5 343 1715 1974-09-12 2024-10-11 00:28:35.000 1974-09-12 2024-10-11 00:28:35 +1716 1716 1717 171.6 343.20000000000005 1716 1974-09-13 2024-10-11 00:28:36.000 1974-09-13 2024-10-11 00:28:36 +1717 1717 1718 171.7 343.40000000000003 1717 1974-09-14 2024-10-11 00:28:37.000 1974-09-14 2024-10-11 00:28:37 +1718 1718 1719 171.8 343.6 1718 1974-09-15 2024-10-11 00:28:38.000 1974-09-15 2024-10-11 00:28:38 +1719 1719 1720 171.9 343.8 1719 1974-09-16 2024-10-11 00:28:39.000 1974-09-16 2024-10-11 00:28:39 +1720 1720 1721 172 344 1720 1974-09-17 2024-10-11 00:28:40.000 1974-09-17 2024-10-11 00:28:40 +1721 1721 1722 172.1 344.20000000000005 1721 1974-09-18 2024-10-11 00:28:41.000 1974-09-18 2024-10-11 00:28:41 +1722 1722 1723 172.2 344.40000000000003 1722 1974-09-19 2024-10-11 00:28:42.000 1974-09-19 2024-10-11 00:28:42 +1723 1723 1724 172.3 344.6 1723 1974-09-20 2024-10-11 00:28:43.000 1974-09-20 2024-10-11 00:28:43 +1724 1724 1725 172.4 344.8 1724 1974-09-21 2024-10-11 00:28:44.000 1974-09-21 2024-10-11 00:28:44 +1725 1725 1726 172.5 345 1725 1974-09-22 2024-10-11 00:28:45.000 1974-09-22 2024-10-11 00:28:45 +1726 1726 1727 172.6 345.20000000000005 1726 1974-09-23 2024-10-11 00:28:46.000 1974-09-23 2024-10-11 00:28:46 +1727 1727 1728 172.7 345.40000000000003 1727 1974-09-24 2024-10-11 00:28:47.000 1974-09-24 2024-10-11 00:28:47 +1728 1728 1729 172.8 345.6 1728 1974-09-25 2024-10-11 00:28:48.000 1974-09-25 2024-10-11 00:28:48 +1729 1729 1730 172.9 345.8 1729 1974-09-26 2024-10-11 00:28:49.000 1974-09-26 2024-10-11 00:28:49 +1730 1730 1731 173 346 1730 1974-09-27 2024-10-11 00:28:50.000 1974-09-27 2024-10-11 00:28:50 +1731 1731 1732 173.1 346.20000000000005 1731 1974-09-28 2024-10-11 00:28:51.000 1974-09-28 2024-10-11 00:28:51 +1732 1732 1733 173.2 346.40000000000003 1732 1974-09-29 2024-10-11 00:28:52.000 1974-09-29 2024-10-11 00:28:52 +1733 1733 1734 173.3 346.6 1733 1974-09-30 2024-10-11 00:28:53.000 1974-09-30 2024-10-11 00:28:53 +1734 1734 1735 173.4 346.8 1734 1974-10-01 2024-10-11 00:28:54.000 1974-10-01 2024-10-11 00:28:54 +1735 1735 1736 173.5 347 1735 1974-10-02 2024-10-11 00:28:55.000 1974-10-02 2024-10-11 00:28:55 +1736 1736 1737 173.6 347.20000000000005 1736 1974-10-03 2024-10-11 00:28:56.000 1974-10-03 2024-10-11 00:28:56 +1737 1737 1738 173.7 347.40000000000003 1737 1974-10-04 2024-10-11 00:28:57.000 1974-10-04 2024-10-11 00:28:57 +1738 1738 1739 173.8 347.6 1738 1974-10-05 2024-10-11 00:28:58.000 1974-10-05 2024-10-11 00:28:58 +1739 1739 1740 173.9 347.8 1739 1974-10-06 2024-10-11 00:28:59.000 1974-10-06 2024-10-11 00:28:59 +1740 1740 1741 174 348 1740 1974-10-07 2024-10-11 00:29:00.000 1974-10-07 2024-10-11 00:29:00 +1741 1741 1742 174.1 348.20000000000005 1741 1974-10-08 2024-10-11 00:29:01.000 1974-10-08 2024-10-11 00:29:01 +1742 1742 1743 174.2 348.40000000000003 1742 1974-10-09 2024-10-11 00:29:02.000 1974-10-09 2024-10-11 00:29:02 +1743 1743 1744 174.3 348.6 1743 1974-10-10 2024-10-11 00:29:03.000 1974-10-10 2024-10-11 00:29:03 +1744 1744 1745 174.4 348.8 1744 1974-10-11 2024-10-11 00:29:04.000 1974-10-11 2024-10-11 00:29:04 +1745 1745 1746 174.5 349 1745 1974-10-12 2024-10-11 00:29:05.000 1974-10-12 2024-10-11 00:29:05 +1746 1746 1747 174.6 349.20000000000005 1746 1974-10-13 2024-10-11 00:29:06.000 1974-10-13 2024-10-11 00:29:06 +1747 1747 1748 174.7 349.40000000000003 1747 1974-10-14 2024-10-11 00:29:07.000 1974-10-14 2024-10-11 00:29:07 +1748 1748 1749 174.8 349.6 1748 1974-10-15 2024-10-11 00:29:08.000 1974-10-15 2024-10-11 00:29:08 +1749 1749 1750 174.9 349.8 1749 1974-10-16 2024-10-11 00:29:09.000 1974-10-16 2024-10-11 00:29:09 +1750 1750 1751 175 350 1750 1974-10-17 2024-10-11 00:29:10.000 1974-10-17 2024-10-11 00:29:10 +1751 1751 1752 175.1 350.20000000000005 1751 1974-10-18 2024-10-11 00:29:11.000 1974-10-18 2024-10-11 00:29:11 +1752 1752 1753 175.2 350.40000000000003 1752 1974-10-19 2024-10-11 00:29:12.000 1974-10-19 2024-10-11 00:29:12 +1753 1753 1754 175.3 350.6 1753 1974-10-20 2024-10-11 00:29:13.000 1974-10-20 2024-10-11 00:29:13 +1754 1754 1755 175.4 350.8 1754 1974-10-21 2024-10-11 00:29:14.000 1974-10-21 2024-10-11 00:29:14 +1755 1755 1756 175.5 351 1755 1974-10-22 2024-10-11 00:29:15.000 1974-10-22 2024-10-11 00:29:15 +1756 1756 1757 175.6 351.20000000000005 1756 1974-10-23 2024-10-11 00:29:16.000 1974-10-23 2024-10-11 00:29:16 +1757 1757 1758 175.7 351.40000000000003 1757 1974-10-24 2024-10-11 00:29:17.000 1974-10-24 2024-10-11 00:29:17 +1758 1758 1759 175.8 351.6 1758 1974-10-25 2024-10-11 00:29:18.000 1974-10-25 2024-10-11 00:29:18 +1759 1759 1760 175.9 351.8 1759 1974-10-26 2024-10-11 00:29:19.000 1974-10-26 2024-10-11 00:29:19 +1760 1760 1761 176 352 1760 1974-10-27 2024-10-11 00:29:20.000 1974-10-27 2024-10-11 00:29:20 +1761 1761 1762 176.1 352.20000000000005 1761 1974-10-28 2024-10-11 00:29:21.000 1974-10-28 2024-10-11 00:29:21 +1762 1762 1763 176.2 352.40000000000003 1762 1974-10-29 2024-10-11 00:29:22.000 1974-10-29 2024-10-11 00:29:22 +1763 1763 1764 176.3 352.6 1763 1974-10-30 2024-10-11 00:29:23.000 1974-10-30 2024-10-11 00:29:23 +1764 1764 1765 176.4 352.8 1764 1974-10-31 2024-10-11 00:29:24.000 1974-10-31 2024-10-11 00:29:24 +1765 1765 1766 176.5 353 1765 1974-11-01 2024-10-11 00:29:25.000 1974-11-01 2024-10-11 00:29:25 +1766 1766 1767 176.6 353.20000000000005 1766 1974-11-02 2024-10-11 00:29:26.000 1974-11-02 2024-10-11 00:29:26 +1767 1767 1768 176.7 353.40000000000003 1767 1974-11-03 2024-10-11 00:29:27.000 1974-11-03 2024-10-11 00:29:27 +1768 1768 1769 176.8 353.6 1768 1974-11-04 2024-10-11 00:29:28.000 1974-11-04 2024-10-11 00:29:28 +1769 1769 1770 176.9 353.8 1769 1974-11-05 2024-10-11 00:29:29.000 1974-11-05 2024-10-11 00:29:29 +1770 1770 1771 177 354 1770 1974-11-06 2024-10-11 00:29:30.000 1974-11-06 2024-10-11 00:29:30 +1771 1771 1772 177.1 354.20000000000005 1771 1974-11-07 2024-10-11 00:29:31.000 1974-11-07 2024-10-11 00:29:31 +1772 1772 1773 177.2 354.40000000000003 1772 1974-11-08 2024-10-11 00:29:32.000 1974-11-08 2024-10-11 00:29:32 +1773 1773 1774 177.3 354.6 1773 1974-11-09 2024-10-11 00:29:33.000 1974-11-09 2024-10-11 00:29:33 +1774 1774 1775 177.4 354.8 1774 1974-11-10 2024-10-11 00:29:34.000 1974-11-10 2024-10-11 00:29:34 +1775 1775 1776 177.5 355 1775 1974-11-11 2024-10-11 00:29:35.000 1974-11-11 2024-10-11 00:29:35 +1776 1776 1777 177.6 355.20000000000005 1776 1974-11-12 2024-10-11 00:29:36.000 1974-11-12 2024-10-11 00:29:36 +1777 1777 1778 177.7 355.40000000000003 1777 1974-11-13 2024-10-11 00:29:37.000 1974-11-13 2024-10-11 00:29:37 +1778 1778 1779 177.8 355.6 1778 1974-11-14 2024-10-11 00:29:38.000 1974-11-14 2024-10-11 00:29:38 +1779 1779 1780 177.9 355.8 1779 1974-11-15 2024-10-11 00:29:39.000 1974-11-15 2024-10-11 00:29:39 +1780 1780 1781 178 356 1780 1974-11-16 2024-10-11 00:29:40.000 1974-11-16 2024-10-11 00:29:40 +1781 1781 1782 178.1 356.20000000000005 1781 1974-11-17 2024-10-11 00:29:41.000 1974-11-17 2024-10-11 00:29:41 +1782 1782 1783 178.2 356.40000000000003 1782 1974-11-18 2024-10-11 00:29:42.000 1974-11-18 2024-10-11 00:29:42 +1783 1783 1784 178.3 356.6 1783 1974-11-19 2024-10-11 00:29:43.000 1974-11-19 2024-10-11 00:29:43 +1784 1784 1785 178.4 356.8 1784 1974-11-20 2024-10-11 00:29:44.000 1974-11-20 2024-10-11 00:29:44 +1785 1785 1786 178.5 357 1785 1974-11-21 2024-10-11 00:29:45.000 1974-11-21 2024-10-11 00:29:45 +1786 1786 1787 178.6 357.20000000000005 1786 1974-11-22 2024-10-11 00:29:46.000 1974-11-22 2024-10-11 00:29:46 +1787 1787 1788 178.7 357.40000000000003 1787 1974-11-23 2024-10-11 00:29:47.000 1974-11-23 2024-10-11 00:29:47 +1788 1788 1789 178.8 357.6 1788 1974-11-24 2024-10-11 00:29:48.000 1974-11-24 2024-10-11 00:29:48 +1789 1789 1790 178.9 357.8 1789 1974-11-25 2024-10-11 00:29:49.000 1974-11-25 2024-10-11 00:29:49 +1790 1790 1791 179 358 1790 1974-11-26 2024-10-11 00:29:50.000 1974-11-26 2024-10-11 00:29:50 +1791 1791 1792 179.1 358.20000000000005 1791 1974-11-27 2024-10-11 00:29:51.000 1974-11-27 2024-10-11 00:29:51 +1792 1792 1793 179.2 358.40000000000003 1792 1974-11-28 2024-10-11 00:29:52.000 1974-11-28 2024-10-11 00:29:52 +1793 1793 1794 179.3 358.6 1793 1974-11-29 2024-10-11 00:29:53.000 1974-11-29 2024-10-11 00:29:53 +1794 1794 1795 179.4 358.8 1794 1974-11-30 2024-10-11 00:29:54.000 1974-11-30 2024-10-11 00:29:54 +1795 1795 1796 179.5 359 1795 1974-12-01 2024-10-11 00:29:55.000 1974-12-01 2024-10-11 00:29:55 +1796 1796 1797 179.6 359.20000000000005 1796 1974-12-02 2024-10-11 00:29:56.000 1974-12-02 2024-10-11 00:29:56 +1797 1797 1798 179.7 359.40000000000003 1797 1974-12-03 2024-10-11 00:29:57.000 1974-12-03 2024-10-11 00:29:57 +1798 1798 1799 179.8 359.6 1798 1974-12-04 2024-10-11 00:29:58.000 1974-12-04 2024-10-11 00:29:58 +1799 1799 1800 179.9 359.8 1799 1974-12-05 2024-10-11 00:29:59.000 1974-12-05 2024-10-11 00:29:59 +1800 1800 1801 180 360 1800 1974-12-06 2024-10-11 00:30:00.000 1974-12-06 2024-10-11 00:30:00 +1801 1801 1802 180.1 360.20000000000005 1801 1974-12-07 2024-10-11 00:30:01.000 1974-12-07 2024-10-11 00:30:01 +1802 1802 1803 180.2 360.40000000000003 1802 1974-12-08 2024-10-11 00:30:02.000 1974-12-08 2024-10-11 00:30:02 +1803 1803 1804 180.3 360.6 1803 1974-12-09 2024-10-11 00:30:03.000 1974-12-09 2024-10-11 00:30:03 +1804 1804 1805 180.4 360.8 1804 1974-12-10 2024-10-11 00:30:04.000 1974-12-10 2024-10-11 00:30:04 +1805 1805 1806 180.5 361 1805 1974-12-11 2024-10-11 00:30:05.000 1974-12-11 2024-10-11 00:30:05 +1806 1806 1807 180.6 361.20000000000005 1806 1974-12-12 2024-10-11 00:30:06.000 1974-12-12 2024-10-11 00:30:06 +1807 1807 1808 180.7 361.40000000000003 1807 1974-12-13 2024-10-11 00:30:07.000 1974-12-13 2024-10-11 00:30:07 +1808 1808 1809 180.8 361.6 1808 1974-12-14 2024-10-11 00:30:08.000 1974-12-14 2024-10-11 00:30:08 +1809 1809 1810 180.9 361.8 1809 1974-12-15 2024-10-11 00:30:09.000 1974-12-15 2024-10-11 00:30:09 +1810 1810 1811 181 362 1810 1974-12-16 2024-10-11 00:30:10.000 1974-12-16 2024-10-11 00:30:10 +1811 1811 1812 181.1 362.20000000000005 1811 1974-12-17 2024-10-11 00:30:11.000 1974-12-17 2024-10-11 00:30:11 +1812 1812 1813 181.2 362.40000000000003 1812 1974-12-18 2024-10-11 00:30:12.000 1974-12-18 2024-10-11 00:30:12 +1813 1813 1814 181.3 362.6 1813 1974-12-19 2024-10-11 00:30:13.000 1974-12-19 2024-10-11 00:30:13 +1814 1814 1815 181.4 362.8 1814 1974-12-20 2024-10-11 00:30:14.000 1974-12-20 2024-10-11 00:30:14 +1815 1815 1816 181.5 363 1815 1974-12-21 2024-10-11 00:30:15.000 1974-12-21 2024-10-11 00:30:15 +1816 1816 1817 181.6 363.20000000000005 1816 1974-12-22 2024-10-11 00:30:16.000 1974-12-22 2024-10-11 00:30:16 +1817 1817 1818 181.7 363.40000000000003 1817 1974-12-23 2024-10-11 00:30:17.000 1974-12-23 2024-10-11 00:30:17 +1818 1818 1819 181.8 363.6 1818 1974-12-24 2024-10-11 00:30:18.000 1974-12-24 2024-10-11 00:30:18 +1819 1819 1820 181.9 363.8 1819 1974-12-25 2024-10-11 00:30:19.000 1974-12-25 2024-10-11 00:30:19 +1820 1820 1821 182 364 1820 1974-12-26 2024-10-11 00:30:20.000 1974-12-26 2024-10-11 00:30:20 +1821 1821 1822 182.1 364.20000000000005 1821 1974-12-27 2024-10-11 00:30:21.000 1974-12-27 2024-10-11 00:30:21 +1822 1822 1823 182.2 364.40000000000003 1822 1974-12-28 2024-10-11 00:30:22.000 1974-12-28 2024-10-11 00:30:22 +1823 1823 1824 182.3 364.6 1823 1974-12-29 2024-10-11 00:30:23.000 1974-12-29 2024-10-11 00:30:23 +1824 1824 1825 182.4 364.8 1824 1974-12-30 2024-10-11 00:30:24.000 1974-12-30 2024-10-11 00:30:24 +1825 1825 1826 182.5 365 1825 1974-12-31 2024-10-11 00:30:25.000 1974-12-31 2024-10-11 00:30:25 +1826 1826 1827 182.6 365.20000000000005 1826 1975-01-01 2024-10-11 00:30:26.000 1975-01-01 2024-10-11 00:30:26 +1827 1827 1828 182.7 365.40000000000003 1827 1975-01-02 2024-10-11 00:30:27.000 1975-01-02 2024-10-11 00:30:27 +1828 1828 1829 182.8 365.6 1828 1975-01-03 2024-10-11 00:30:28.000 1975-01-03 2024-10-11 00:30:28 +1829 1829 1830 182.9 365.8 1829 1975-01-04 2024-10-11 00:30:29.000 1975-01-04 2024-10-11 00:30:29 +1830 1830 1831 183 366 1830 1975-01-05 2024-10-11 00:30:30.000 1975-01-05 2024-10-11 00:30:30 +1831 1831 1832 183.1 366.20000000000005 1831 1975-01-06 2024-10-11 00:30:31.000 1975-01-06 2024-10-11 00:30:31 +1832 1832 1833 183.2 366.40000000000003 1832 1975-01-07 2024-10-11 00:30:32.000 1975-01-07 2024-10-11 00:30:32 +1833 1833 1834 183.3 366.6 1833 1975-01-08 2024-10-11 00:30:33.000 1975-01-08 2024-10-11 00:30:33 +1834 1834 1835 183.4 366.8 1834 1975-01-09 2024-10-11 00:30:34.000 1975-01-09 2024-10-11 00:30:34 +1835 1835 1836 183.5 367 1835 1975-01-10 2024-10-11 00:30:35.000 1975-01-10 2024-10-11 00:30:35 +1836 1836 1837 183.6 367.20000000000005 1836 1975-01-11 2024-10-11 00:30:36.000 1975-01-11 2024-10-11 00:30:36 +1837 1837 1838 183.7 367.40000000000003 1837 1975-01-12 2024-10-11 00:30:37.000 1975-01-12 2024-10-11 00:30:37 +1838 1838 1839 183.8 367.6 1838 1975-01-13 2024-10-11 00:30:38.000 1975-01-13 2024-10-11 00:30:38 +1839 1839 1840 183.9 367.8 1839 1975-01-14 2024-10-11 00:30:39.000 1975-01-14 2024-10-11 00:30:39 +1840 1840 1841 184 368 1840 1975-01-15 2024-10-11 00:30:40.000 1975-01-15 2024-10-11 00:30:40 +1841 1841 1842 184.1 368.20000000000005 1841 1975-01-16 2024-10-11 00:30:41.000 1975-01-16 2024-10-11 00:30:41 +1842 1842 1843 184.2 368.40000000000003 1842 1975-01-17 2024-10-11 00:30:42.000 1975-01-17 2024-10-11 00:30:42 +1843 1843 1844 184.3 368.6 1843 1975-01-18 2024-10-11 00:30:43.000 1975-01-18 2024-10-11 00:30:43 +1844 1844 1845 184.4 368.8 1844 1975-01-19 2024-10-11 00:30:44.000 1975-01-19 2024-10-11 00:30:44 +1845 1845 1846 184.5 369 1845 1975-01-20 2024-10-11 00:30:45.000 1975-01-20 2024-10-11 00:30:45 +1846 1846 1847 184.6 369.20000000000005 1846 1975-01-21 2024-10-11 00:30:46.000 1975-01-21 2024-10-11 00:30:46 +1847 1847 1848 184.7 369.40000000000003 1847 1975-01-22 2024-10-11 00:30:47.000 1975-01-22 2024-10-11 00:30:47 +1848 1848 1849 184.8 369.6 1848 1975-01-23 2024-10-11 00:30:48.000 1975-01-23 2024-10-11 00:30:48 +1849 1849 1850 184.9 369.8 1849 1975-01-24 2024-10-11 00:30:49.000 1975-01-24 2024-10-11 00:30:49 +1850 1850 1851 185 370 1850 1975-01-25 2024-10-11 00:30:50.000 1975-01-25 2024-10-11 00:30:50 +1851 1851 1852 185.1 370.20000000000005 1851 1975-01-26 2024-10-11 00:30:51.000 1975-01-26 2024-10-11 00:30:51 +1852 1852 1853 185.2 370.40000000000003 1852 1975-01-27 2024-10-11 00:30:52.000 1975-01-27 2024-10-11 00:30:52 +1853 1853 1854 185.3 370.6 1853 1975-01-28 2024-10-11 00:30:53.000 1975-01-28 2024-10-11 00:30:53 +1854 1854 1855 185.4 370.8 1854 1975-01-29 2024-10-11 00:30:54.000 1975-01-29 2024-10-11 00:30:54 +1855 1855 1856 185.5 371 1855 1975-01-30 2024-10-11 00:30:55.000 1975-01-30 2024-10-11 00:30:55 +1856 1856 1857 185.6 371.20000000000005 1856 1975-01-31 2024-10-11 00:30:56.000 1975-01-31 2024-10-11 00:30:56 +1857 1857 1858 185.7 371.40000000000003 1857 1975-02-01 2024-10-11 00:30:57.000 1975-02-01 2024-10-11 00:30:57 +1858 1858 1859 185.8 371.6 1858 1975-02-02 2024-10-11 00:30:58.000 1975-02-02 2024-10-11 00:30:58 +1859 1859 1860 185.9 371.8 1859 1975-02-03 2024-10-11 00:30:59.000 1975-02-03 2024-10-11 00:30:59 +1860 1860 1861 186 372 1860 1975-02-04 2024-10-11 00:31:00.000 1975-02-04 2024-10-11 00:31:00 +1861 1861 1862 186.1 372.20000000000005 1861 1975-02-05 2024-10-11 00:31:01.000 1975-02-05 2024-10-11 00:31:01 +1862 1862 1863 186.2 372.40000000000003 1862 1975-02-06 2024-10-11 00:31:02.000 1975-02-06 2024-10-11 00:31:02 +1863 1863 1864 186.3 372.6 1863 1975-02-07 2024-10-11 00:31:03.000 1975-02-07 2024-10-11 00:31:03 +1864 1864 1865 186.4 372.8 1864 1975-02-08 2024-10-11 00:31:04.000 1975-02-08 2024-10-11 00:31:04 +1865 1865 1866 186.5 373 1865 1975-02-09 2024-10-11 00:31:05.000 1975-02-09 2024-10-11 00:31:05 +1866 1866 1867 186.6 373.20000000000005 1866 1975-02-10 2024-10-11 00:31:06.000 1975-02-10 2024-10-11 00:31:06 +1867 1867 1868 186.7 373.40000000000003 1867 1975-02-11 2024-10-11 00:31:07.000 1975-02-11 2024-10-11 00:31:07 +1868 1868 1869 186.8 373.6 1868 1975-02-12 2024-10-11 00:31:08.000 1975-02-12 2024-10-11 00:31:08 +1869 1869 1870 186.9 373.8 1869 1975-02-13 2024-10-11 00:31:09.000 1975-02-13 2024-10-11 00:31:09 +1870 1870 1871 187 374 1870 1975-02-14 2024-10-11 00:31:10.000 1975-02-14 2024-10-11 00:31:10 +1871 1871 1872 187.1 374.20000000000005 1871 1975-02-15 2024-10-11 00:31:11.000 1975-02-15 2024-10-11 00:31:11 +1872 1872 1873 187.2 374.40000000000003 1872 1975-02-16 2024-10-11 00:31:12.000 1975-02-16 2024-10-11 00:31:12 +1873 1873 1874 187.3 374.6 1873 1975-02-17 2024-10-11 00:31:13.000 1975-02-17 2024-10-11 00:31:13 +1874 1874 1875 187.4 374.8 1874 1975-02-18 2024-10-11 00:31:14.000 1975-02-18 2024-10-11 00:31:14 +1875 1875 1876 187.5 375 1875 1975-02-19 2024-10-11 00:31:15.000 1975-02-19 2024-10-11 00:31:15 +1876 1876 1877 187.6 375.20000000000005 1876 1975-02-20 2024-10-11 00:31:16.000 1975-02-20 2024-10-11 00:31:16 +1877 1877 1878 187.7 375.40000000000003 1877 1975-02-21 2024-10-11 00:31:17.000 1975-02-21 2024-10-11 00:31:17 +1878 1878 1879 187.8 375.6 1878 1975-02-22 2024-10-11 00:31:18.000 1975-02-22 2024-10-11 00:31:18 +1879 1879 1880 187.9 375.8 1879 1975-02-23 2024-10-11 00:31:19.000 1975-02-23 2024-10-11 00:31:19 +1880 1880 1881 188 376 1880 1975-02-24 2024-10-11 00:31:20.000 1975-02-24 2024-10-11 00:31:20 +1881 1881 1882 188.1 376.20000000000005 1881 1975-02-25 2024-10-11 00:31:21.000 1975-02-25 2024-10-11 00:31:21 +1882 1882 1883 188.2 376.40000000000003 1882 1975-02-26 2024-10-11 00:31:22.000 1975-02-26 2024-10-11 00:31:22 +1883 1883 1884 188.3 376.6 1883 1975-02-27 2024-10-11 00:31:23.000 1975-02-27 2024-10-11 00:31:23 +1884 1884 1885 188.4 376.8 1884 1975-02-28 2024-10-11 00:31:24.000 1975-02-28 2024-10-11 00:31:24 +1885 1885 1886 188.5 377 1885 1975-03-01 2024-10-11 00:31:25.000 1975-03-01 2024-10-11 00:31:25 +1886 1886 1887 188.6 377.20000000000005 1886 1975-03-02 2024-10-11 00:31:26.000 1975-03-02 2024-10-11 00:31:26 +1887 1887 1888 188.7 377.40000000000003 1887 1975-03-03 2024-10-11 00:31:27.000 1975-03-03 2024-10-11 00:31:27 +1888 1888 1889 188.8 377.6 1888 1975-03-04 2024-10-11 00:31:28.000 1975-03-04 2024-10-11 00:31:28 +1889 1889 1890 188.9 377.8 1889 1975-03-05 2024-10-11 00:31:29.000 1975-03-05 2024-10-11 00:31:29 +1890 1890 1891 189 378 1890 1975-03-06 2024-10-11 00:31:30.000 1975-03-06 2024-10-11 00:31:30 +1891 1891 1892 189.1 378.20000000000005 1891 1975-03-07 2024-10-11 00:31:31.000 1975-03-07 2024-10-11 00:31:31 +1892 1892 1893 189.2 378.40000000000003 1892 1975-03-08 2024-10-11 00:31:32.000 1975-03-08 2024-10-11 00:31:32 +1893 1893 1894 189.3 378.6 1893 1975-03-09 2024-10-11 00:31:33.000 1975-03-09 2024-10-11 00:31:33 +1894 1894 1895 189.4 378.8 1894 1975-03-10 2024-10-11 00:31:34.000 1975-03-10 2024-10-11 00:31:34 +1895 1895 1896 189.5 379 1895 1975-03-11 2024-10-11 00:31:35.000 1975-03-11 2024-10-11 00:31:35 +1896 1896 1897 189.6 379.20000000000005 1896 1975-03-12 2024-10-11 00:31:36.000 1975-03-12 2024-10-11 00:31:36 +1897 1897 1898 189.7 379.40000000000003 1897 1975-03-13 2024-10-11 00:31:37.000 1975-03-13 2024-10-11 00:31:37 +1898 1898 1899 189.8 379.6 1898 1975-03-14 2024-10-11 00:31:38.000 1975-03-14 2024-10-11 00:31:38 +1899 1899 1900 189.9 379.8 1899 1975-03-15 2024-10-11 00:31:39.000 1975-03-15 2024-10-11 00:31:39 +1900 1900 1901 190 380 1900 1975-03-16 2024-10-11 00:31:40.000 1975-03-16 2024-10-11 00:31:40 +1901 1901 1902 190.1 380.20000000000005 1901 1975-03-17 2024-10-11 00:31:41.000 1975-03-17 2024-10-11 00:31:41 +1902 1902 1903 190.2 380.40000000000003 1902 1975-03-18 2024-10-11 00:31:42.000 1975-03-18 2024-10-11 00:31:42 +1903 1903 1904 190.3 380.6 1903 1975-03-19 2024-10-11 00:31:43.000 1975-03-19 2024-10-11 00:31:43 +1904 1904 1905 190.4 380.8 1904 1975-03-20 2024-10-11 00:31:44.000 1975-03-20 2024-10-11 00:31:44 +1905 1905 1906 190.5 381 1905 1975-03-21 2024-10-11 00:31:45.000 1975-03-21 2024-10-11 00:31:45 +1906 1906 1907 190.6 381.20000000000005 1906 1975-03-22 2024-10-11 00:31:46.000 1975-03-22 2024-10-11 00:31:46 +1907 1907 1908 190.7 381.40000000000003 1907 1975-03-23 2024-10-11 00:31:47.000 1975-03-23 2024-10-11 00:31:47 +1908 1908 1909 190.8 381.6 1908 1975-03-24 2024-10-11 00:31:48.000 1975-03-24 2024-10-11 00:31:48 +1909 1909 1910 190.9 381.8 1909 1975-03-25 2024-10-11 00:31:49.000 1975-03-25 2024-10-11 00:31:49 +1910 1910 1911 191 382 1910 1975-03-26 2024-10-11 00:31:50.000 1975-03-26 2024-10-11 00:31:50 +1911 1911 1912 191.1 382.20000000000005 1911 1975-03-27 2024-10-11 00:31:51.000 1975-03-27 2024-10-11 00:31:51 +1912 1912 1913 191.2 382.40000000000003 1912 1975-03-28 2024-10-11 00:31:52.000 1975-03-28 2024-10-11 00:31:52 +1913 1913 1914 191.3 382.6 1913 1975-03-29 2024-10-11 00:31:53.000 1975-03-29 2024-10-11 00:31:53 +1914 1914 1915 191.4 382.8 1914 1975-03-30 2024-10-11 00:31:54.000 1975-03-30 2024-10-11 00:31:54 +1915 1915 1916 191.5 383 1915 1975-03-31 2024-10-11 00:31:55.000 1975-03-31 2024-10-11 00:31:55 +1916 1916 1917 191.6 383.20000000000005 1916 1975-04-01 2024-10-11 00:31:56.000 1975-04-01 2024-10-11 00:31:56 +1917 1917 1918 191.7 383.40000000000003 1917 1975-04-02 2024-10-11 00:31:57.000 1975-04-02 2024-10-11 00:31:57 +1918 1918 1919 191.8 383.6 1918 1975-04-03 2024-10-11 00:31:58.000 1975-04-03 2024-10-11 00:31:58 +1919 1919 1920 191.9 383.8 1919 1975-04-04 2024-10-11 00:31:59.000 1975-04-04 2024-10-11 00:31:59 +1920 1920 1921 192 384 1920 1975-04-05 2024-10-11 00:32:00.000 1975-04-05 2024-10-11 00:32:00 +1921 1921 1922 192.1 384.20000000000005 1921 1975-04-06 2024-10-11 00:32:01.000 1975-04-06 2024-10-11 00:32:01 +1922 1922 1923 192.2 384.40000000000003 1922 1975-04-07 2024-10-11 00:32:02.000 1975-04-07 2024-10-11 00:32:02 +1923 1923 1924 192.3 384.6 1923 1975-04-08 2024-10-11 00:32:03.000 1975-04-08 2024-10-11 00:32:03 +1924 1924 1925 192.4 384.8 1924 1975-04-09 2024-10-11 00:32:04.000 1975-04-09 2024-10-11 00:32:04 +1925 1925 1926 192.5 385 1925 1975-04-10 2024-10-11 00:32:05.000 1975-04-10 2024-10-11 00:32:05 +1926 1926 1927 192.6 385.20000000000005 1926 1975-04-11 2024-10-11 00:32:06.000 1975-04-11 2024-10-11 00:32:06 +1927 1927 1928 192.7 385.40000000000003 1927 1975-04-12 2024-10-11 00:32:07.000 1975-04-12 2024-10-11 00:32:07 +1928 1928 1929 192.8 385.6 1928 1975-04-13 2024-10-11 00:32:08.000 1975-04-13 2024-10-11 00:32:08 +1929 1929 1930 192.9 385.8 1929 1975-04-14 2024-10-11 00:32:09.000 1975-04-14 2024-10-11 00:32:09 +1930 1930 1931 193 386 1930 1975-04-15 2024-10-11 00:32:10.000 1975-04-15 2024-10-11 00:32:10 +1931 1931 1932 193.1 386.20000000000005 1931 1975-04-16 2024-10-11 00:32:11.000 1975-04-16 2024-10-11 00:32:11 +1932 1932 1933 193.2 386.40000000000003 1932 1975-04-17 2024-10-11 00:32:12.000 1975-04-17 2024-10-11 00:32:12 +1933 1933 1934 193.3 386.6 1933 1975-04-18 2024-10-11 00:32:13.000 1975-04-18 2024-10-11 00:32:13 +1934 1934 1935 193.4 386.8 1934 1975-04-19 2024-10-11 00:32:14.000 1975-04-19 2024-10-11 00:32:14 +1935 1935 1936 193.5 387 1935 1975-04-20 2024-10-11 00:32:15.000 1975-04-20 2024-10-11 00:32:15 +1936 1936 1937 193.6 387.20000000000005 1936 1975-04-21 2024-10-11 00:32:16.000 1975-04-21 2024-10-11 00:32:16 +1937 1937 1938 193.7 387.40000000000003 1937 1975-04-22 2024-10-11 00:32:17.000 1975-04-22 2024-10-11 00:32:17 +1938 1938 1939 193.8 387.6 1938 1975-04-23 2024-10-11 00:32:18.000 1975-04-23 2024-10-11 00:32:18 +1939 1939 1940 193.9 387.8 1939 1975-04-24 2024-10-11 00:32:19.000 1975-04-24 2024-10-11 00:32:19 +1940 1940 1941 194 388 1940 1975-04-25 2024-10-11 00:32:20.000 1975-04-25 2024-10-11 00:32:20 +1941 1941 1942 194.1 388.20000000000005 1941 1975-04-26 2024-10-11 00:32:21.000 1975-04-26 2024-10-11 00:32:21 +1942 1942 1943 194.2 388.40000000000003 1942 1975-04-27 2024-10-11 00:32:22.000 1975-04-27 2024-10-11 00:32:22 +1943 1943 1944 194.3 388.6 1943 1975-04-28 2024-10-11 00:32:23.000 1975-04-28 2024-10-11 00:32:23 +1944 1944 1945 194.4 388.8 1944 1975-04-29 2024-10-11 00:32:24.000 1975-04-29 2024-10-11 00:32:24 +1945 1945 1946 194.5 389 1945 1975-04-30 2024-10-11 00:32:25.000 1975-04-30 2024-10-11 00:32:25 +1946 1946 1947 194.6 389.20000000000005 1946 1975-05-01 2024-10-11 00:32:26.000 1975-05-01 2024-10-11 00:32:26 +1947 1947 1948 194.7 389.40000000000003 1947 1975-05-02 2024-10-11 00:32:27.000 1975-05-02 2024-10-11 00:32:27 +1948 1948 1949 194.8 389.6 1948 1975-05-03 2024-10-11 00:32:28.000 1975-05-03 2024-10-11 00:32:28 +1949 1949 1950 194.9 389.8 1949 1975-05-04 2024-10-11 00:32:29.000 1975-05-04 2024-10-11 00:32:29 +1950 1950 1951 195 390 1950 1975-05-05 2024-10-11 00:32:30.000 1975-05-05 2024-10-11 00:32:30 +1951 1951 1952 195.1 390.20000000000005 1951 1975-05-06 2024-10-11 00:32:31.000 1975-05-06 2024-10-11 00:32:31 +1952 1952 1953 195.2 390.40000000000003 1952 1975-05-07 2024-10-11 00:32:32.000 1975-05-07 2024-10-11 00:32:32 +1953 1953 1954 195.3 390.6 1953 1975-05-08 2024-10-11 00:32:33.000 1975-05-08 2024-10-11 00:32:33 +1954 1954 1955 195.4 390.8 1954 1975-05-09 2024-10-11 00:32:34.000 1975-05-09 2024-10-11 00:32:34 +1955 1955 1956 195.5 391 1955 1975-05-10 2024-10-11 00:32:35.000 1975-05-10 2024-10-11 00:32:35 +1956 1956 1957 195.6 391.20000000000005 1956 1975-05-11 2024-10-11 00:32:36.000 1975-05-11 2024-10-11 00:32:36 +1957 1957 1958 195.7 391.40000000000003 1957 1975-05-12 2024-10-11 00:32:37.000 1975-05-12 2024-10-11 00:32:37 +1958 1958 1959 195.8 391.6 1958 1975-05-13 2024-10-11 00:32:38.000 1975-05-13 2024-10-11 00:32:38 +1959 1959 1960 195.9 391.8 1959 1975-05-14 2024-10-11 00:32:39.000 1975-05-14 2024-10-11 00:32:39 +1960 1960 1961 196 392 1960 1975-05-15 2024-10-11 00:32:40.000 1975-05-15 2024-10-11 00:32:40 +1961 1961 1962 196.1 392.20000000000005 1961 1975-05-16 2024-10-11 00:32:41.000 1975-05-16 2024-10-11 00:32:41 +1962 1962 1963 196.2 392.40000000000003 1962 1975-05-17 2024-10-11 00:32:42.000 1975-05-17 2024-10-11 00:32:42 +1963 1963 1964 196.3 392.6 1963 1975-05-18 2024-10-11 00:32:43.000 1975-05-18 2024-10-11 00:32:43 +1964 1964 1965 196.4 392.8 1964 1975-05-19 2024-10-11 00:32:44.000 1975-05-19 2024-10-11 00:32:44 +1965 1965 1966 196.5 393 1965 1975-05-20 2024-10-11 00:32:45.000 1975-05-20 2024-10-11 00:32:45 +1966 1966 1967 196.6 393.20000000000005 1966 1975-05-21 2024-10-11 00:32:46.000 1975-05-21 2024-10-11 00:32:46 +1967 1967 1968 196.7 393.40000000000003 1967 1975-05-22 2024-10-11 00:32:47.000 1975-05-22 2024-10-11 00:32:47 +1968 1968 1969 196.8 393.6 1968 1975-05-23 2024-10-11 00:32:48.000 1975-05-23 2024-10-11 00:32:48 +1969 1969 1970 196.9 393.8 1969 1975-05-24 2024-10-11 00:32:49.000 1975-05-24 2024-10-11 00:32:49 +1970 1970 1971 197 394 1970 1975-05-25 2024-10-11 00:32:50.000 1975-05-25 2024-10-11 00:32:50 +1971 1971 1972 197.1 394.20000000000005 1971 1975-05-26 2024-10-11 00:32:51.000 1975-05-26 2024-10-11 00:32:51 +1972 1972 1973 197.2 394.40000000000003 1972 1975-05-27 2024-10-11 00:32:52.000 1975-05-27 2024-10-11 00:32:52 +1973 1973 1974 197.3 394.6 1973 1975-05-28 2024-10-11 00:32:53.000 1975-05-28 2024-10-11 00:32:53 +1974 1974 1975 197.4 394.8 1974 1975-05-29 2024-10-11 00:32:54.000 1975-05-29 2024-10-11 00:32:54 +1975 1975 1976 197.5 395 1975 1975-05-30 2024-10-11 00:32:55.000 1975-05-30 2024-10-11 00:32:55 +1976 1976 1977 197.6 395.20000000000005 1976 1975-05-31 2024-10-11 00:32:56.000 1975-05-31 2024-10-11 00:32:56 +1977 1977 1978 197.7 395.40000000000003 1977 1975-06-01 2024-10-11 00:32:57.000 1975-06-01 2024-10-11 00:32:57 +1978 1978 1979 197.8 395.6 1978 1975-06-02 2024-10-11 00:32:58.000 1975-06-02 2024-10-11 00:32:58 +1979 1979 1980 197.9 395.8 1979 1975-06-03 2024-10-11 00:32:59.000 1975-06-03 2024-10-11 00:32:59 +1980 1980 1981 198 396 1980 1975-06-04 2024-10-11 00:33:00.000 1975-06-04 2024-10-11 00:33:00 +1981 1981 1982 198.1 396.20000000000005 1981 1975-06-05 2024-10-11 00:33:01.000 1975-06-05 2024-10-11 00:33:01 +1982 1982 1983 198.2 396.40000000000003 1982 1975-06-06 2024-10-11 00:33:02.000 1975-06-06 2024-10-11 00:33:02 +1983 1983 1984 198.3 396.6 1983 1975-06-07 2024-10-11 00:33:03.000 1975-06-07 2024-10-11 00:33:03 +1984 1984 1985 198.4 396.8 1984 1975-06-08 2024-10-11 00:33:04.000 1975-06-08 2024-10-11 00:33:04 +1985 1985 1986 198.5 397 1985 1975-06-09 2024-10-11 00:33:05.000 1975-06-09 2024-10-11 00:33:05 +1986 1986 1987 198.6 397.20000000000005 1986 1975-06-10 2024-10-11 00:33:06.000 1975-06-10 2024-10-11 00:33:06 +1987 1987 1988 198.7 397.40000000000003 1987 1975-06-11 2024-10-11 00:33:07.000 1975-06-11 2024-10-11 00:33:07 +1988 1988 1989 198.8 397.6 1988 1975-06-12 2024-10-11 00:33:08.000 1975-06-12 2024-10-11 00:33:08 +1989 1989 1990 198.9 397.8 1989 1975-06-13 2024-10-11 00:33:09.000 1975-06-13 2024-10-11 00:33:09 +1990 1990 1991 199 398 1990 1975-06-14 2024-10-11 00:33:10.000 1975-06-14 2024-10-11 00:33:10 +1991 1991 1992 199.1 398.20000000000005 1991 1975-06-15 2024-10-11 00:33:11.000 1975-06-15 2024-10-11 00:33:11 +1992 1992 1993 199.2 398.40000000000003 1992 1975-06-16 2024-10-11 00:33:12.000 1975-06-16 2024-10-11 00:33:12 +1993 1993 1994 199.3 398.6 1993 1975-06-17 2024-10-11 00:33:13.000 1975-06-17 2024-10-11 00:33:13 +1994 1994 1995 199.4 398.8 1994 1975-06-18 2024-10-11 00:33:14.000 1975-06-18 2024-10-11 00:33:14 +1995 1995 1996 199.5 399 1995 1975-06-19 2024-10-11 00:33:15.000 1975-06-19 2024-10-11 00:33:15 +1996 1996 1997 199.6 399.20000000000005 1996 1975-06-20 2024-10-11 00:33:16.000 1975-06-20 2024-10-11 00:33:16 +1997 1997 1998 199.7 399.40000000000003 1997 1975-06-21 2024-10-11 00:33:17.000 1975-06-21 2024-10-11 00:33:17 +1998 1998 1999 199.8 399.6 1998 1975-06-22 2024-10-11 00:33:18.000 1975-06-22 2024-10-11 00:33:18 +1999 1999 2000 199.9 399.8 1999 1975-06-23 2024-10-11 00:33:19.000 1975-06-23 2024-10-11 00:33:19 +2000 2000 2001 200 400 2000 1975-06-24 2024-10-11 00:33:20.000 1975-06-24 2024-10-11 00:33:20 +2001 2001 2002 200.1 400.20000000000005 2001 1975-06-25 2024-10-11 00:33:21.000 1975-06-25 2024-10-11 00:33:21 +2002 2002 2003 200.2 400.40000000000003 2002 1975-06-26 2024-10-11 00:33:22.000 1975-06-26 2024-10-11 00:33:22 +2003 2003 2004 200.3 400.6 2003 1975-06-27 2024-10-11 00:33:23.000 1975-06-27 2024-10-11 00:33:23 +2004 2004 2005 200.4 400.8 2004 1975-06-28 2024-10-11 00:33:24.000 1975-06-28 2024-10-11 00:33:24 +2005 2005 2006 200.5 401 2005 1975-06-29 2024-10-11 00:33:25.000 1975-06-29 2024-10-11 00:33:25 +2006 2006 2007 200.6 401.20000000000005 2006 1975-06-30 2024-10-11 00:33:26.000 1975-06-30 2024-10-11 00:33:26 +2007 2007 2008 200.7 401.40000000000003 2007 1975-07-01 2024-10-11 00:33:27.000 1975-07-01 2024-10-11 00:33:27 +2008 2008 2009 200.8 401.6 2008 1975-07-02 2024-10-11 00:33:28.000 1975-07-02 2024-10-11 00:33:28 +2009 2009 2010 200.9 401.8 2009 1975-07-03 2024-10-11 00:33:29.000 1975-07-03 2024-10-11 00:33:29 +2010 2010 2011 201 402 2010 1975-07-04 2024-10-11 00:33:30.000 1975-07-04 2024-10-11 00:33:30 +2011 2011 2012 201.1 402.20000000000005 2011 1975-07-05 2024-10-11 00:33:31.000 1975-07-05 2024-10-11 00:33:31 +2012 2012 2013 201.2 402.40000000000003 2012 1975-07-06 2024-10-11 00:33:32.000 1975-07-06 2024-10-11 00:33:32 +2013 2013 2014 201.3 402.6 2013 1975-07-07 2024-10-11 00:33:33.000 1975-07-07 2024-10-11 00:33:33 +2014 2014 2015 201.4 402.8 2014 1975-07-08 2024-10-11 00:33:34.000 1975-07-08 2024-10-11 00:33:34 +2015 2015 2016 201.5 403 2015 1975-07-09 2024-10-11 00:33:35.000 1975-07-09 2024-10-11 00:33:35 +2016 2016 2017 201.6 403.20000000000005 2016 1975-07-10 2024-10-11 00:33:36.000 1975-07-10 2024-10-11 00:33:36 +2017 2017 2018 201.7 403.40000000000003 2017 1975-07-11 2024-10-11 00:33:37.000 1975-07-11 2024-10-11 00:33:37 +2018 2018 2019 201.8 403.6 2018 1975-07-12 2024-10-11 00:33:38.000 1975-07-12 2024-10-11 00:33:38 +2019 2019 2020 201.9 403.8 2019 1975-07-13 2024-10-11 00:33:39.000 1975-07-13 2024-10-11 00:33:39 +2020 2020 2021 202 404 2020 1975-07-14 2024-10-11 00:33:40.000 1975-07-14 2024-10-11 00:33:40 +2021 2021 2022 202.1 404.20000000000005 2021 1975-07-15 2024-10-11 00:33:41.000 1975-07-15 2024-10-11 00:33:41 +2022 2022 2023 202.2 404.40000000000003 2022 1975-07-16 2024-10-11 00:33:42.000 1975-07-16 2024-10-11 00:33:42 +2023 2023 2024 202.3 404.6 2023 1975-07-17 2024-10-11 00:33:43.000 1975-07-17 2024-10-11 00:33:43 +2024 2024 2025 202.4 404.8 2024 1975-07-18 2024-10-11 00:33:44.000 1975-07-18 2024-10-11 00:33:44 +2025 2025 2026 202.5 405 2025 1975-07-19 2024-10-11 00:33:45.000 1975-07-19 2024-10-11 00:33:45 +2026 2026 2027 202.6 405.20000000000005 2026 1975-07-20 2024-10-11 00:33:46.000 1975-07-20 2024-10-11 00:33:46 +2027 2027 2028 202.7 405.40000000000003 2027 1975-07-21 2024-10-11 00:33:47.000 1975-07-21 2024-10-11 00:33:47 +2028 2028 2029 202.8 405.6 2028 1975-07-22 2024-10-11 00:33:48.000 1975-07-22 2024-10-11 00:33:48 +2029 2029 2030 202.9 405.8 2029 1975-07-23 2024-10-11 00:33:49.000 1975-07-23 2024-10-11 00:33:49 +2030 2030 2031 203 406 2030 1975-07-24 2024-10-11 00:33:50.000 1975-07-24 2024-10-11 00:33:50 +2031 2031 2032 203.1 406.20000000000005 2031 1975-07-25 2024-10-11 00:33:51.000 1975-07-25 2024-10-11 00:33:51 +2032 2032 2033 203.2 406.40000000000003 2032 1975-07-26 2024-10-11 00:33:52.000 1975-07-26 2024-10-11 00:33:52 +2033 2033 2034 203.3 406.6 2033 1975-07-27 2024-10-11 00:33:53.000 1975-07-27 2024-10-11 00:33:53 +2034 2034 2035 203.4 406.8 2034 1975-07-28 2024-10-11 00:33:54.000 1975-07-28 2024-10-11 00:33:54 +2035 2035 2036 203.5 407 2035 1975-07-29 2024-10-11 00:33:55.000 1975-07-29 2024-10-11 00:33:55 +2036 2036 2037 203.6 407.20000000000005 2036 1975-07-30 2024-10-11 00:33:56.000 1975-07-30 2024-10-11 00:33:56 +2037 2037 2038 203.7 407.40000000000003 2037 1975-07-31 2024-10-11 00:33:57.000 1975-07-31 2024-10-11 00:33:57 +2038 2038 2039 203.8 407.6 2038 1975-08-01 2024-10-11 00:33:58.000 1975-08-01 2024-10-11 00:33:58 +2039 2039 2040 203.9 407.8 2039 1975-08-02 2024-10-11 00:33:59.000 1975-08-02 2024-10-11 00:33:59 +2040 2040 2041 204 408 2040 1975-08-03 2024-10-11 00:34:00.000 1975-08-03 2024-10-11 00:34:00 +2041 2041 2042 204.1 408.20000000000005 2041 1975-08-04 2024-10-11 00:34:01.000 1975-08-04 2024-10-11 00:34:01 +2042 2042 2043 204.2 408.40000000000003 2042 1975-08-05 2024-10-11 00:34:02.000 1975-08-05 2024-10-11 00:34:02 +2043 2043 2044 204.3 408.6 2043 1975-08-06 2024-10-11 00:34:03.000 1975-08-06 2024-10-11 00:34:03 +2044 2044 2045 204.4 408.8 2044 1975-08-07 2024-10-11 00:34:04.000 1975-08-07 2024-10-11 00:34:04 +2045 2045 2046 204.5 409 2045 1975-08-08 2024-10-11 00:34:05.000 1975-08-08 2024-10-11 00:34:05 +2046 2046 2047 204.6 409.20000000000005 2046 1975-08-09 2024-10-11 00:34:06.000 1975-08-09 2024-10-11 00:34:06 +2047 2047 2048 204.7 409.40000000000003 2047 1975-08-10 2024-10-11 00:34:07.000 1975-08-10 2024-10-11 00:34:07 +2048 2048 2049 204.8 409.6 2048 1975-08-11 2024-10-11 00:34:08.000 1975-08-11 2024-10-11 00:34:08 +2049 2049 2050 204.9 409.8 2049 1975-08-12 2024-10-11 00:34:09.000 1975-08-12 2024-10-11 00:34:09 +2050 2050 2051 205 410 2050 1975-08-13 2024-10-11 00:34:10.000 1975-08-13 2024-10-11 00:34:10 +2051 2051 2052 205.1 410.20000000000005 2051 1975-08-14 2024-10-11 00:34:11.000 1975-08-14 2024-10-11 00:34:11 +2052 2052 2053 205.2 410.40000000000003 2052 1975-08-15 2024-10-11 00:34:12.000 1975-08-15 2024-10-11 00:34:12 +2053 2053 2054 205.3 410.6 2053 1975-08-16 2024-10-11 00:34:13.000 1975-08-16 2024-10-11 00:34:13 +2054 2054 2055 205.4 410.8 2054 1975-08-17 2024-10-11 00:34:14.000 1975-08-17 2024-10-11 00:34:14 +2055 2055 2056 205.5 411 2055 1975-08-18 2024-10-11 00:34:15.000 1975-08-18 2024-10-11 00:34:15 +2056 2056 2057 205.6 411.20000000000005 2056 1975-08-19 2024-10-11 00:34:16.000 1975-08-19 2024-10-11 00:34:16 +2057 2057 2058 205.7 411.40000000000003 2057 1975-08-20 2024-10-11 00:34:17.000 1975-08-20 2024-10-11 00:34:17 +2058 2058 2059 205.8 411.6 2058 1975-08-21 2024-10-11 00:34:18.000 1975-08-21 2024-10-11 00:34:18 +2059 2059 2060 205.9 411.8 2059 1975-08-22 2024-10-11 00:34:19.000 1975-08-22 2024-10-11 00:34:19 +2060 2060 2061 206 412 2060 1975-08-23 2024-10-11 00:34:20.000 1975-08-23 2024-10-11 00:34:20 +2061 2061 2062 206.1 412.20000000000005 2061 1975-08-24 2024-10-11 00:34:21.000 1975-08-24 2024-10-11 00:34:21 +2062 2062 2063 206.2 412.40000000000003 2062 1975-08-25 2024-10-11 00:34:22.000 1975-08-25 2024-10-11 00:34:22 +2063 2063 2064 206.3 412.6 2063 1975-08-26 2024-10-11 00:34:23.000 1975-08-26 2024-10-11 00:34:23 +2064 2064 2065 206.4 412.8 2064 1975-08-27 2024-10-11 00:34:24.000 1975-08-27 2024-10-11 00:34:24 +2065 2065 2066 206.5 413 2065 1975-08-28 2024-10-11 00:34:25.000 1975-08-28 2024-10-11 00:34:25 +2066 2066 2067 206.6 413.20000000000005 2066 1975-08-29 2024-10-11 00:34:26.000 1975-08-29 2024-10-11 00:34:26 +2067 2067 2068 206.7 413.40000000000003 2067 1975-08-30 2024-10-11 00:34:27.000 1975-08-30 2024-10-11 00:34:27 +2068 2068 2069 206.8 413.6 2068 1975-08-31 2024-10-11 00:34:28.000 1975-08-31 2024-10-11 00:34:28 +2069 2069 2070 206.9 413.8 2069 1975-09-01 2024-10-11 00:34:29.000 1975-09-01 2024-10-11 00:34:29 +2070 2070 2071 207 414 2070 1975-09-02 2024-10-11 00:34:30.000 1975-09-02 2024-10-11 00:34:30 +2071 2071 2072 207.1 414.20000000000005 2071 1975-09-03 2024-10-11 00:34:31.000 1975-09-03 2024-10-11 00:34:31 +2072 2072 2073 207.2 414.40000000000003 2072 1975-09-04 2024-10-11 00:34:32.000 1975-09-04 2024-10-11 00:34:32 +2073 2073 2074 207.3 414.6 2073 1975-09-05 2024-10-11 00:34:33.000 1975-09-05 2024-10-11 00:34:33 +2074 2074 2075 207.4 414.8 2074 1975-09-06 2024-10-11 00:34:34.000 1975-09-06 2024-10-11 00:34:34 +2075 2075 2076 207.5 415 2075 1975-09-07 2024-10-11 00:34:35.000 1975-09-07 2024-10-11 00:34:35 +2076 2076 2077 207.6 415.20000000000005 2076 1975-09-08 2024-10-11 00:34:36.000 1975-09-08 2024-10-11 00:34:36 +2077 2077 2078 207.7 415.40000000000003 2077 1975-09-09 2024-10-11 00:34:37.000 1975-09-09 2024-10-11 00:34:37 +2078 2078 2079 207.8 415.6 2078 1975-09-10 2024-10-11 00:34:38.000 1975-09-10 2024-10-11 00:34:38 +2079 2079 2080 207.9 415.8 2079 1975-09-11 2024-10-11 00:34:39.000 1975-09-11 2024-10-11 00:34:39 +2080 2080 2081 208 416 2080 1975-09-12 2024-10-11 00:34:40.000 1975-09-12 2024-10-11 00:34:40 +2081 2081 2082 208.1 416.20000000000005 2081 1975-09-13 2024-10-11 00:34:41.000 1975-09-13 2024-10-11 00:34:41 +2082 2082 2083 208.2 416.40000000000003 2082 1975-09-14 2024-10-11 00:34:42.000 1975-09-14 2024-10-11 00:34:42 +2083 2083 2084 208.3 416.6 2083 1975-09-15 2024-10-11 00:34:43.000 1975-09-15 2024-10-11 00:34:43 +2084 2084 2085 208.4 416.8 2084 1975-09-16 2024-10-11 00:34:44.000 1975-09-16 2024-10-11 00:34:44 +2085 2085 2086 208.5 417 2085 1975-09-17 2024-10-11 00:34:45.000 1975-09-17 2024-10-11 00:34:45 +2086 2086 2087 208.6 417.20000000000005 2086 1975-09-18 2024-10-11 00:34:46.000 1975-09-18 2024-10-11 00:34:46 +2087 2087 2088 208.7 417.40000000000003 2087 1975-09-19 2024-10-11 00:34:47.000 1975-09-19 2024-10-11 00:34:47 +2088 2088 2089 208.8 417.6 2088 1975-09-20 2024-10-11 00:34:48.000 1975-09-20 2024-10-11 00:34:48 +2089 2089 2090 208.9 417.8 2089 1975-09-21 2024-10-11 00:34:49.000 1975-09-21 2024-10-11 00:34:49 +2090 2090 2091 209 418 2090 1975-09-22 2024-10-11 00:34:50.000 1975-09-22 2024-10-11 00:34:50 +2091 2091 2092 209.1 418.20000000000005 2091 1975-09-23 2024-10-11 00:34:51.000 1975-09-23 2024-10-11 00:34:51 +2092 2092 2093 209.2 418.40000000000003 2092 1975-09-24 2024-10-11 00:34:52.000 1975-09-24 2024-10-11 00:34:52 +2093 2093 2094 209.3 418.6 2093 1975-09-25 2024-10-11 00:34:53.000 1975-09-25 2024-10-11 00:34:53 +2094 2094 2095 209.4 418.8 2094 1975-09-26 2024-10-11 00:34:54.000 1975-09-26 2024-10-11 00:34:54 +2095 2095 2096 209.5 419 2095 1975-09-27 2024-10-11 00:34:55.000 1975-09-27 2024-10-11 00:34:55 +2096 2096 2097 209.6 419.20000000000005 2096 1975-09-28 2024-10-11 00:34:56.000 1975-09-28 2024-10-11 00:34:56 +2097 2097 2098 209.7 419.40000000000003 2097 1975-09-29 2024-10-11 00:34:57.000 1975-09-29 2024-10-11 00:34:57 +2098 2098 2099 209.8 419.6 2098 1975-09-30 2024-10-11 00:34:58.000 1975-09-30 2024-10-11 00:34:58 +2099 2099 2100 209.9 419.8 2099 1975-10-01 2024-10-11 00:34:59.000 1975-10-01 2024-10-11 00:34:59 +2100 2100 2101 210 420 2100 1975-10-02 2024-10-11 00:35:00.000 1975-10-02 2024-10-11 00:35:00 +2101 2101 2102 210.1 420.20000000000005 2101 1975-10-03 2024-10-11 00:35:01.000 1975-10-03 2024-10-11 00:35:01 +2102 2102 2103 210.2 420.40000000000003 2102 1975-10-04 2024-10-11 00:35:02.000 1975-10-04 2024-10-11 00:35:02 +2103 2103 2104 210.3 420.6 2103 1975-10-05 2024-10-11 00:35:03.000 1975-10-05 2024-10-11 00:35:03 +2104 2104 2105 210.4 420.8 2104 1975-10-06 2024-10-11 00:35:04.000 1975-10-06 2024-10-11 00:35:04 +2105 2105 2106 210.5 421 2105 1975-10-07 2024-10-11 00:35:05.000 1975-10-07 2024-10-11 00:35:05 +2106 2106 2107 210.6 421.20000000000005 2106 1975-10-08 2024-10-11 00:35:06.000 1975-10-08 2024-10-11 00:35:06 +2107 2107 2108 210.7 421.40000000000003 2107 1975-10-09 2024-10-11 00:35:07.000 1975-10-09 2024-10-11 00:35:07 +2108 2108 2109 210.8 421.6 2108 1975-10-10 2024-10-11 00:35:08.000 1975-10-10 2024-10-11 00:35:08 +2109 2109 2110 210.9 421.8 2109 1975-10-11 2024-10-11 00:35:09.000 1975-10-11 2024-10-11 00:35:09 +2110 2110 2111 211 422 2110 1975-10-12 2024-10-11 00:35:10.000 1975-10-12 2024-10-11 00:35:10 +2111 2111 2112 211.1 422.20000000000005 2111 1975-10-13 2024-10-11 00:35:11.000 1975-10-13 2024-10-11 00:35:11 +2112 2112 2113 211.2 422.40000000000003 2112 1975-10-14 2024-10-11 00:35:12.000 1975-10-14 2024-10-11 00:35:12 +2113 2113 2114 211.3 422.6 2113 1975-10-15 2024-10-11 00:35:13.000 1975-10-15 2024-10-11 00:35:13 +2114 2114 2115 211.4 422.8 2114 1975-10-16 2024-10-11 00:35:14.000 1975-10-16 2024-10-11 00:35:14 +2115 2115 2116 211.5 423 2115 1975-10-17 2024-10-11 00:35:15.000 1975-10-17 2024-10-11 00:35:15 +2116 2116 2117 211.6 423.20000000000005 2116 1975-10-18 2024-10-11 00:35:16.000 1975-10-18 2024-10-11 00:35:16 +2117 2117 2118 211.7 423.40000000000003 2117 1975-10-19 2024-10-11 00:35:17.000 1975-10-19 2024-10-11 00:35:17 +2118 2118 2119 211.8 423.6 2118 1975-10-20 2024-10-11 00:35:18.000 1975-10-20 2024-10-11 00:35:18 +2119 2119 2120 211.9 423.8 2119 1975-10-21 2024-10-11 00:35:19.000 1975-10-21 2024-10-11 00:35:19 +2120 2120 2121 212 424 2120 1975-10-22 2024-10-11 00:35:20.000 1975-10-22 2024-10-11 00:35:20 +2121 2121 2122 212.1 424.20000000000005 2121 1975-10-23 2024-10-11 00:35:21.000 1975-10-23 2024-10-11 00:35:21 +2122 2122 2123 212.2 424.40000000000003 2122 1975-10-24 2024-10-11 00:35:22.000 1975-10-24 2024-10-11 00:35:22 +2123 2123 2124 212.3 424.6 2123 1975-10-25 2024-10-11 00:35:23.000 1975-10-25 2024-10-11 00:35:23 +2124 2124 2125 212.4 424.8 2124 1975-10-26 2024-10-11 00:35:24.000 1975-10-26 2024-10-11 00:35:24 +2125 2125 2126 212.5 425 2125 1975-10-27 2024-10-11 00:35:25.000 1975-10-27 2024-10-11 00:35:25 +2126 2126 2127 212.6 425.20000000000005 2126 1975-10-28 2024-10-11 00:35:26.000 1975-10-28 2024-10-11 00:35:26 +2127 2127 2128 212.7 425.40000000000003 2127 1975-10-29 2024-10-11 00:35:27.000 1975-10-29 2024-10-11 00:35:27 +2128 2128 2129 212.8 425.6 2128 1975-10-30 2024-10-11 00:35:28.000 1975-10-30 2024-10-11 00:35:28 +2129 2129 2130 212.9 425.8 2129 1975-10-31 2024-10-11 00:35:29.000 1975-10-31 2024-10-11 00:35:29 +2130 2130 2131 213 426 2130 1975-11-01 2024-10-11 00:35:30.000 1975-11-01 2024-10-11 00:35:30 +2131 2131 2132 213.1 426.20000000000005 2131 1975-11-02 2024-10-11 00:35:31.000 1975-11-02 2024-10-11 00:35:31 +2132 2132 2133 213.2 426.40000000000003 2132 1975-11-03 2024-10-11 00:35:32.000 1975-11-03 2024-10-11 00:35:32 +2133 2133 2134 213.3 426.6 2133 1975-11-04 2024-10-11 00:35:33.000 1975-11-04 2024-10-11 00:35:33 +2134 2134 2135 213.4 426.8 2134 1975-11-05 2024-10-11 00:35:34.000 1975-11-05 2024-10-11 00:35:34 +2135 2135 2136 213.5 427 2135 1975-11-06 2024-10-11 00:35:35.000 1975-11-06 2024-10-11 00:35:35 +2136 2136 2137 213.6 427.20000000000005 2136 1975-11-07 2024-10-11 00:35:36.000 1975-11-07 2024-10-11 00:35:36 +2137 2137 2138 213.7 427.40000000000003 2137 1975-11-08 2024-10-11 00:35:37.000 1975-11-08 2024-10-11 00:35:37 +2138 2138 2139 213.8 427.6 2138 1975-11-09 2024-10-11 00:35:38.000 1975-11-09 2024-10-11 00:35:38 +2139 2139 2140 213.9 427.8 2139 1975-11-10 2024-10-11 00:35:39.000 1975-11-10 2024-10-11 00:35:39 +2140 2140 2141 214 428 2140 1975-11-11 2024-10-11 00:35:40.000 1975-11-11 2024-10-11 00:35:40 +2141 2141 2142 214.1 428.20000000000005 2141 1975-11-12 2024-10-11 00:35:41.000 1975-11-12 2024-10-11 00:35:41 +2142 2142 2143 214.2 428.40000000000003 2142 1975-11-13 2024-10-11 00:35:42.000 1975-11-13 2024-10-11 00:35:42 +2143 2143 2144 214.3 428.6 2143 1975-11-14 2024-10-11 00:35:43.000 1975-11-14 2024-10-11 00:35:43 +2144 2144 2145 214.4 428.8 2144 1975-11-15 2024-10-11 00:35:44.000 1975-11-15 2024-10-11 00:35:44 +2145 2145 2146 214.5 429 2145 1975-11-16 2024-10-11 00:35:45.000 1975-11-16 2024-10-11 00:35:45 +2146 2146 2147 214.6 429.20000000000005 2146 1975-11-17 2024-10-11 00:35:46.000 1975-11-17 2024-10-11 00:35:46 +2147 2147 2148 214.7 429.40000000000003 2147 1975-11-18 2024-10-11 00:35:47.000 1975-11-18 2024-10-11 00:35:47 +2148 2148 2149 214.8 429.6 2148 1975-11-19 2024-10-11 00:35:48.000 1975-11-19 2024-10-11 00:35:48 +2149 2149 2150 214.9 429.8 2149 1975-11-20 2024-10-11 00:35:49.000 1975-11-20 2024-10-11 00:35:49 +2150 2150 2151 215 430 2150 1975-11-21 2024-10-11 00:35:50.000 1975-11-21 2024-10-11 00:35:50 +2151 2151 2152 215.1 430.20000000000005 2151 1975-11-22 2024-10-11 00:35:51.000 1975-11-22 2024-10-11 00:35:51 +2152 2152 2153 215.2 430.40000000000003 2152 1975-11-23 2024-10-11 00:35:52.000 1975-11-23 2024-10-11 00:35:52 +2153 2153 2154 215.3 430.6 2153 1975-11-24 2024-10-11 00:35:53.000 1975-11-24 2024-10-11 00:35:53 +2154 2154 2155 215.4 430.8 2154 1975-11-25 2024-10-11 00:35:54.000 1975-11-25 2024-10-11 00:35:54 +2155 2155 2156 215.5 431 2155 1975-11-26 2024-10-11 00:35:55.000 1975-11-26 2024-10-11 00:35:55 +2156 2156 2157 215.6 431.20000000000005 2156 1975-11-27 2024-10-11 00:35:56.000 1975-11-27 2024-10-11 00:35:56 +2157 2157 2158 215.7 431.40000000000003 2157 1975-11-28 2024-10-11 00:35:57.000 1975-11-28 2024-10-11 00:35:57 +2158 2158 2159 215.8 431.6 2158 1975-11-29 2024-10-11 00:35:58.000 1975-11-29 2024-10-11 00:35:58 +2159 2159 2160 215.9 431.8 2159 1975-11-30 2024-10-11 00:35:59.000 1975-11-30 2024-10-11 00:35:59 +2160 2160 2161 216 432 2160 1975-12-01 2024-10-11 00:36:00.000 1975-12-01 2024-10-11 00:36:00 +2161 2161 2162 216.1 432.20000000000005 2161 1975-12-02 2024-10-11 00:36:01.000 1975-12-02 2024-10-11 00:36:01 +2162 2162 2163 216.2 432.40000000000003 2162 1975-12-03 2024-10-11 00:36:02.000 1975-12-03 2024-10-11 00:36:02 +2163 2163 2164 216.3 432.6 2163 1975-12-04 2024-10-11 00:36:03.000 1975-12-04 2024-10-11 00:36:03 +2164 2164 2165 216.4 432.8 2164 1975-12-05 2024-10-11 00:36:04.000 1975-12-05 2024-10-11 00:36:04 +2165 2165 2166 216.5 433 2165 1975-12-06 2024-10-11 00:36:05.000 1975-12-06 2024-10-11 00:36:05 +2166 2166 2167 216.6 433.20000000000005 2166 1975-12-07 2024-10-11 00:36:06.000 1975-12-07 2024-10-11 00:36:06 +2167 2167 2168 216.7 433.40000000000003 2167 1975-12-08 2024-10-11 00:36:07.000 1975-12-08 2024-10-11 00:36:07 +2168 2168 2169 216.8 433.6 2168 1975-12-09 2024-10-11 00:36:08.000 1975-12-09 2024-10-11 00:36:08 +2169 2169 2170 216.9 433.8 2169 1975-12-10 2024-10-11 00:36:09.000 1975-12-10 2024-10-11 00:36:09 +2170 2170 2171 217 434 2170 1975-12-11 2024-10-11 00:36:10.000 1975-12-11 2024-10-11 00:36:10 +2171 2171 2172 217.1 434.20000000000005 2171 1975-12-12 2024-10-11 00:36:11.000 1975-12-12 2024-10-11 00:36:11 +2172 2172 2173 217.2 434.40000000000003 2172 1975-12-13 2024-10-11 00:36:12.000 1975-12-13 2024-10-11 00:36:12 +2173 2173 2174 217.3 434.6 2173 1975-12-14 2024-10-11 00:36:13.000 1975-12-14 2024-10-11 00:36:13 +2174 2174 2175 217.4 434.8 2174 1975-12-15 2024-10-11 00:36:14.000 1975-12-15 2024-10-11 00:36:14 +2175 2175 2176 217.5 435 2175 1975-12-16 2024-10-11 00:36:15.000 1975-12-16 2024-10-11 00:36:15 +2176 2176 2177 217.6 435.20000000000005 2176 1975-12-17 2024-10-11 00:36:16.000 1975-12-17 2024-10-11 00:36:16 +2177 2177 2178 217.7 435.40000000000003 2177 1975-12-18 2024-10-11 00:36:17.000 1975-12-18 2024-10-11 00:36:17 +2178 2178 2179 217.8 435.6 2178 1975-12-19 2024-10-11 00:36:18.000 1975-12-19 2024-10-11 00:36:18 +2179 2179 2180 217.9 435.8 2179 1975-12-20 2024-10-11 00:36:19.000 1975-12-20 2024-10-11 00:36:19 +2180 2180 2181 218 436 2180 1975-12-21 2024-10-11 00:36:20.000 1975-12-21 2024-10-11 00:36:20 +2181 2181 2182 218.1 436.20000000000005 2181 1975-12-22 2024-10-11 00:36:21.000 1975-12-22 2024-10-11 00:36:21 +2182 2182 2183 218.2 436.40000000000003 2182 1975-12-23 2024-10-11 00:36:22.000 1975-12-23 2024-10-11 00:36:22 +2183 2183 2184 218.3 436.6 2183 1975-12-24 2024-10-11 00:36:23.000 1975-12-24 2024-10-11 00:36:23 +2184 2184 2185 218.4 436.8 2184 1975-12-25 2024-10-11 00:36:24.000 1975-12-25 2024-10-11 00:36:24 +2185 2185 2186 218.5 437 2185 1975-12-26 2024-10-11 00:36:25.000 1975-12-26 2024-10-11 00:36:25 +2186 2186 2187 218.6 437.20000000000005 2186 1975-12-27 2024-10-11 00:36:26.000 1975-12-27 2024-10-11 00:36:26 +2187 2187 2188 218.7 437.40000000000003 2187 1975-12-28 2024-10-11 00:36:27.000 1975-12-28 2024-10-11 00:36:27 +2188 2188 2189 218.8 437.6 2188 1975-12-29 2024-10-11 00:36:28.000 1975-12-29 2024-10-11 00:36:28 +2189 2189 2190 218.9 437.8 2189 1975-12-30 2024-10-11 00:36:29.000 1975-12-30 2024-10-11 00:36:29 +2190 2190 2191 219 438 2190 1975-12-31 2024-10-11 00:36:30.000 1975-12-31 2024-10-11 00:36:30 +2191 2191 2192 219.1 438.20000000000005 2191 1976-01-01 2024-10-11 00:36:31.000 1976-01-01 2024-10-11 00:36:31 +2192 2192 2193 219.2 438.40000000000003 2192 1976-01-02 2024-10-11 00:36:32.000 1976-01-02 2024-10-11 00:36:32 +2193 2193 2194 219.3 438.6 2193 1976-01-03 2024-10-11 00:36:33.000 1976-01-03 2024-10-11 00:36:33 +2194 2194 2195 219.4 438.8 2194 1976-01-04 2024-10-11 00:36:34.000 1976-01-04 2024-10-11 00:36:34 +2195 2195 2196 219.5 439 2195 1976-01-05 2024-10-11 00:36:35.000 1976-01-05 2024-10-11 00:36:35 +2196 2196 2197 219.6 439.20000000000005 2196 1976-01-06 2024-10-11 00:36:36.000 1976-01-06 2024-10-11 00:36:36 +2197 2197 2198 219.7 439.40000000000003 2197 1976-01-07 2024-10-11 00:36:37.000 1976-01-07 2024-10-11 00:36:37 +2198 2198 2199 219.8 439.6 2198 1976-01-08 2024-10-11 00:36:38.000 1976-01-08 2024-10-11 00:36:38 +2199 2199 2200 219.9 439.8 2199 1976-01-09 2024-10-11 00:36:39.000 1976-01-09 2024-10-11 00:36:39 +2200 2200 2201 220 440 2200 1976-01-10 2024-10-11 00:36:40.000 1976-01-10 2024-10-11 00:36:40 +2201 2201 2202 220.1 440.20000000000005 2201 1976-01-11 2024-10-11 00:36:41.000 1976-01-11 2024-10-11 00:36:41 +2202 2202 2203 220.2 440.40000000000003 2202 1976-01-12 2024-10-11 00:36:42.000 1976-01-12 2024-10-11 00:36:42 +2203 2203 2204 220.3 440.6 2203 1976-01-13 2024-10-11 00:36:43.000 1976-01-13 2024-10-11 00:36:43 +2204 2204 2205 220.4 440.8 2204 1976-01-14 2024-10-11 00:36:44.000 1976-01-14 2024-10-11 00:36:44 +2205 2205 2206 220.5 441 2205 1976-01-15 2024-10-11 00:36:45.000 1976-01-15 2024-10-11 00:36:45 +2206 2206 2207 220.6 441.20000000000005 2206 1976-01-16 2024-10-11 00:36:46.000 1976-01-16 2024-10-11 00:36:46 +2207 2207 2208 220.7 441.40000000000003 2207 1976-01-17 2024-10-11 00:36:47.000 1976-01-17 2024-10-11 00:36:47 +2208 2208 2209 220.8 441.6 2208 1976-01-18 2024-10-11 00:36:48.000 1976-01-18 2024-10-11 00:36:48 +2209 2209 2210 220.9 441.8 2209 1976-01-19 2024-10-11 00:36:49.000 1976-01-19 2024-10-11 00:36:49 +2210 2210 2211 221 442 2210 1976-01-20 2024-10-11 00:36:50.000 1976-01-20 2024-10-11 00:36:50 +2211 2211 2212 221.1 442.20000000000005 2211 1976-01-21 2024-10-11 00:36:51.000 1976-01-21 2024-10-11 00:36:51 +2212 2212 2213 221.2 442.40000000000003 2212 1976-01-22 2024-10-11 00:36:52.000 1976-01-22 2024-10-11 00:36:52 +2213 2213 2214 221.3 442.6 2213 1976-01-23 2024-10-11 00:36:53.000 1976-01-23 2024-10-11 00:36:53 +2214 2214 2215 221.4 442.8 2214 1976-01-24 2024-10-11 00:36:54.000 1976-01-24 2024-10-11 00:36:54 +2215 2215 2216 221.5 443 2215 1976-01-25 2024-10-11 00:36:55.000 1976-01-25 2024-10-11 00:36:55 +2216 2216 2217 221.6 443.20000000000005 2216 1976-01-26 2024-10-11 00:36:56.000 1976-01-26 2024-10-11 00:36:56 +2217 2217 2218 221.7 443.40000000000003 2217 1976-01-27 2024-10-11 00:36:57.000 1976-01-27 2024-10-11 00:36:57 +2218 2218 2219 221.8 443.6 2218 1976-01-28 2024-10-11 00:36:58.000 1976-01-28 2024-10-11 00:36:58 +2219 2219 2220 221.9 443.8 2219 1976-01-29 2024-10-11 00:36:59.000 1976-01-29 2024-10-11 00:36:59 +2220 2220 2221 222 444 2220 1976-01-30 2024-10-11 00:37:00.000 1976-01-30 2024-10-11 00:37:00 +2221 2221 2222 222.1 444.20000000000005 2221 1976-01-31 2024-10-11 00:37:01.000 1976-01-31 2024-10-11 00:37:01 +2222 2222 2223 222.2 444.40000000000003 2222 1976-02-01 2024-10-11 00:37:02.000 1976-02-01 2024-10-11 00:37:02 +2223 2223 2224 222.3 444.6 2223 1976-02-02 2024-10-11 00:37:03.000 1976-02-02 2024-10-11 00:37:03 +2224 2224 2225 222.4 444.8 2224 1976-02-03 2024-10-11 00:37:04.000 1976-02-03 2024-10-11 00:37:04 +2225 2225 2226 222.5 445 2225 1976-02-04 2024-10-11 00:37:05.000 1976-02-04 2024-10-11 00:37:05 +2226 2226 2227 222.6 445.20000000000005 2226 1976-02-05 2024-10-11 00:37:06.000 1976-02-05 2024-10-11 00:37:06 +2227 2227 2228 222.7 445.40000000000003 2227 1976-02-06 2024-10-11 00:37:07.000 1976-02-06 2024-10-11 00:37:07 +2228 2228 2229 222.8 445.6 2228 1976-02-07 2024-10-11 00:37:08.000 1976-02-07 2024-10-11 00:37:08 +2229 2229 2230 222.9 445.8 2229 1976-02-08 2024-10-11 00:37:09.000 1976-02-08 2024-10-11 00:37:09 +2230 2230 2231 223 446 2230 1976-02-09 2024-10-11 00:37:10.000 1976-02-09 2024-10-11 00:37:10 +2231 2231 2232 223.1 446.20000000000005 2231 1976-02-10 2024-10-11 00:37:11.000 1976-02-10 2024-10-11 00:37:11 +2232 2232 2233 223.2 446.40000000000003 2232 1976-02-11 2024-10-11 00:37:12.000 1976-02-11 2024-10-11 00:37:12 +2233 2233 2234 223.3 446.6 2233 1976-02-12 2024-10-11 00:37:13.000 1976-02-12 2024-10-11 00:37:13 +2234 2234 2235 223.4 446.8 2234 1976-02-13 2024-10-11 00:37:14.000 1976-02-13 2024-10-11 00:37:14 +2235 2235 2236 223.5 447 2235 1976-02-14 2024-10-11 00:37:15.000 1976-02-14 2024-10-11 00:37:15 +2236 2236 2237 223.6 447.20000000000005 2236 1976-02-15 2024-10-11 00:37:16.000 1976-02-15 2024-10-11 00:37:16 +2237 2237 2238 223.7 447.40000000000003 2237 1976-02-16 2024-10-11 00:37:17.000 1976-02-16 2024-10-11 00:37:17 +2238 2238 2239 223.8 447.6 2238 1976-02-17 2024-10-11 00:37:18.000 1976-02-17 2024-10-11 00:37:18 +2239 2239 2240 223.9 447.8 2239 1976-02-18 2024-10-11 00:37:19.000 1976-02-18 2024-10-11 00:37:19 +2240 2240 2241 224 448 2240 1976-02-19 2024-10-11 00:37:20.000 1976-02-19 2024-10-11 00:37:20 +2241 2241 2242 224.1 448.20000000000005 2241 1976-02-20 2024-10-11 00:37:21.000 1976-02-20 2024-10-11 00:37:21 +2242 2242 2243 224.2 448.40000000000003 2242 1976-02-21 2024-10-11 00:37:22.000 1976-02-21 2024-10-11 00:37:22 +2243 2243 2244 224.3 448.6 2243 1976-02-22 2024-10-11 00:37:23.000 1976-02-22 2024-10-11 00:37:23 +2244 2244 2245 224.4 448.8 2244 1976-02-23 2024-10-11 00:37:24.000 1976-02-23 2024-10-11 00:37:24 +2245 2245 2246 224.5 449 2245 1976-02-24 2024-10-11 00:37:25.000 1976-02-24 2024-10-11 00:37:25 +2246 2246 2247 224.6 449.20000000000005 2246 1976-02-25 2024-10-11 00:37:26.000 1976-02-25 2024-10-11 00:37:26 +2247 2247 2248 224.7 449.40000000000003 2247 1976-02-26 2024-10-11 00:37:27.000 1976-02-26 2024-10-11 00:37:27 +2248 2248 2249 224.8 449.6 2248 1976-02-27 2024-10-11 00:37:28.000 1976-02-27 2024-10-11 00:37:28 +2249 2249 2250 224.9 449.8 2249 1976-02-28 2024-10-11 00:37:29.000 1976-02-28 2024-10-11 00:37:29 +2250 2250 2251 225 450 2250 1976-02-29 2024-10-11 00:37:30.000 1976-02-29 2024-10-11 00:37:30 +2251 2251 2252 225.1 450.20000000000005 2251 1976-03-01 2024-10-11 00:37:31.000 1976-03-01 2024-10-11 00:37:31 +2252 2252 2253 225.2 450.40000000000003 2252 1976-03-02 2024-10-11 00:37:32.000 1976-03-02 2024-10-11 00:37:32 +2253 2253 2254 225.3 450.6 2253 1976-03-03 2024-10-11 00:37:33.000 1976-03-03 2024-10-11 00:37:33 +2254 2254 2255 225.4 450.8 2254 1976-03-04 2024-10-11 00:37:34.000 1976-03-04 2024-10-11 00:37:34 +2255 2255 2256 225.5 451 2255 1976-03-05 2024-10-11 00:37:35.000 1976-03-05 2024-10-11 00:37:35 +2256 2256 2257 225.6 451.20000000000005 2256 1976-03-06 2024-10-11 00:37:36.000 1976-03-06 2024-10-11 00:37:36 +2257 2257 2258 225.7 451.40000000000003 2257 1976-03-07 2024-10-11 00:37:37.000 1976-03-07 2024-10-11 00:37:37 +2258 2258 2259 225.8 451.6 2258 1976-03-08 2024-10-11 00:37:38.000 1976-03-08 2024-10-11 00:37:38 +2259 2259 2260 225.9 451.8 2259 1976-03-09 2024-10-11 00:37:39.000 1976-03-09 2024-10-11 00:37:39 +2260 2260 2261 226 452 2260 1976-03-10 2024-10-11 00:37:40.000 1976-03-10 2024-10-11 00:37:40 +2261 2261 2262 226.1 452.20000000000005 2261 1976-03-11 2024-10-11 00:37:41.000 1976-03-11 2024-10-11 00:37:41 +2262 2262 2263 226.2 452.40000000000003 2262 1976-03-12 2024-10-11 00:37:42.000 1976-03-12 2024-10-11 00:37:42 +2263 2263 2264 226.3 452.6 2263 1976-03-13 2024-10-11 00:37:43.000 1976-03-13 2024-10-11 00:37:43 +2264 2264 2265 226.4 452.8 2264 1976-03-14 2024-10-11 00:37:44.000 1976-03-14 2024-10-11 00:37:44 +2265 2265 2266 226.5 453 2265 1976-03-15 2024-10-11 00:37:45.000 1976-03-15 2024-10-11 00:37:45 +2266 2266 2267 226.6 453.20000000000005 2266 1976-03-16 2024-10-11 00:37:46.000 1976-03-16 2024-10-11 00:37:46 +2267 2267 2268 226.7 453.40000000000003 2267 1976-03-17 2024-10-11 00:37:47.000 1976-03-17 2024-10-11 00:37:47 +2268 2268 2269 226.8 453.6 2268 1976-03-18 2024-10-11 00:37:48.000 1976-03-18 2024-10-11 00:37:48 +2269 2269 2270 226.9 453.8 2269 1976-03-19 2024-10-11 00:37:49.000 1976-03-19 2024-10-11 00:37:49 +2270 2270 2271 227 454 2270 1976-03-20 2024-10-11 00:37:50.000 1976-03-20 2024-10-11 00:37:50 +2271 2271 2272 227.1 454.20000000000005 2271 1976-03-21 2024-10-11 00:37:51.000 1976-03-21 2024-10-11 00:37:51 +2272 2272 2273 227.2 454.40000000000003 2272 1976-03-22 2024-10-11 00:37:52.000 1976-03-22 2024-10-11 00:37:52 +2273 2273 2274 227.3 454.6 2273 1976-03-23 2024-10-11 00:37:53.000 1976-03-23 2024-10-11 00:37:53 +2274 2274 2275 227.4 454.8 2274 1976-03-24 2024-10-11 00:37:54.000 1976-03-24 2024-10-11 00:37:54 +2275 2275 2276 227.5 455 2275 1976-03-25 2024-10-11 00:37:55.000 1976-03-25 2024-10-11 00:37:55 +2276 2276 2277 227.6 455.20000000000005 2276 1976-03-26 2024-10-11 00:37:56.000 1976-03-26 2024-10-11 00:37:56 +2277 2277 2278 227.7 455.40000000000003 2277 1976-03-27 2024-10-11 00:37:57.000 1976-03-27 2024-10-11 00:37:57 +2278 2278 2279 227.8 455.6 2278 1976-03-28 2024-10-11 00:37:58.000 1976-03-28 2024-10-11 00:37:58 +2279 2279 2280 227.9 455.8 2279 1976-03-29 2024-10-11 00:37:59.000 1976-03-29 2024-10-11 00:37:59 +2280 2280 2281 228 456 2280 1976-03-30 2024-10-11 00:38:00.000 1976-03-30 2024-10-11 00:38:00 +2281 2281 2282 228.1 456.20000000000005 2281 1976-03-31 2024-10-11 00:38:01.000 1976-03-31 2024-10-11 00:38:01 +2282 2282 2283 228.2 456.40000000000003 2282 1976-04-01 2024-10-11 00:38:02.000 1976-04-01 2024-10-11 00:38:02 +2283 2283 2284 228.3 456.6 2283 1976-04-02 2024-10-11 00:38:03.000 1976-04-02 2024-10-11 00:38:03 +2284 2284 2285 228.4 456.8 2284 1976-04-03 2024-10-11 00:38:04.000 1976-04-03 2024-10-11 00:38:04 +2285 2285 2286 228.5 457 2285 1976-04-04 2024-10-11 00:38:05.000 1976-04-04 2024-10-11 00:38:05 +2286 2286 2287 228.6 457.20000000000005 2286 1976-04-05 2024-10-11 00:38:06.000 1976-04-05 2024-10-11 00:38:06 +2287 2287 2288 228.7 457.40000000000003 2287 1976-04-06 2024-10-11 00:38:07.000 1976-04-06 2024-10-11 00:38:07 +2288 2288 2289 228.8 457.6 2288 1976-04-07 2024-10-11 00:38:08.000 1976-04-07 2024-10-11 00:38:08 +2289 2289 2290 228.9 457.8 2289 1976-04-08 2024-10-11 00:38:09.000 1976-04-08 2024-10-11 00:38:09 +2290 2290 2291 229 458 2290 1976-04-09 2024-10-11 00:38:10.000 1976-04-09 2024-10-11 00:38:10 +2291 2291 2292 229.1 458.20000000000005 2291 1976-04-10 2024-10-11 00:38:11.000 1976-04-10 2024-10-11 00:38:11 +2292 2292 2293 229.2 458.40000000000003 2292 1976-04-11 2024-10-11 00:38:12.000 1976-04-11 2024-10-11 00:38:12 +2293 2293 2294 229.3 458.6 2293 1976-04-12 2024-10-11 00:38:13.000 1976-04-12 2024-10-11 00:38:13 +2294 2294 2295 229.4 458.8 2294 1976-04-13 2024-10-11 00:38:14.000 1976-04-13 2024-10-11 00:38:14 +2295 2295 2296 229.5 459 2295 1976-04-14 2024-10-11 00:38:15.000 1976-04-14 2024-10-11 00:38:15 +2296 2296 2297 229.6 459.20000000000005 2296 1976-04-15 2024-10-11 00:38:16.000 1976-04-15 2024-10-11 00:38:16 +2297 2297 2298 229.7 459.40000000000003 2297 1976-04-16 2024-10-11 00:38:17.000 1976-04-16 2024-10-11 00:38:17 +2298 2298 2299 229.8 459.6 2298 1976-04-17 2024-10-11 00:38:18.000 1976-04-17 2024-10-11 00:38:18 +2299 2299 2300 229.9 459.8 2299 1976-04-18 2024-10-11 00:38:19.000 1976-04-18 2024-10-11 00:38:19 +2300 2300 2301 230 460 2300 1976-04-19 2024-10-11 00:38:20.000 1976-04-19 2024-10-11 00:38:20 +2301 2301 2302 230.1 460.20000000000005 2301 1976-04-20 2024-10-11 00:38:21.000 1976-04-20 2024-10-11 00:38:21 +2302 2302 2303 230.2 460.40000000000003 2302 1976-04-21 2024-10-11 00:38:22.000 1976-04-21 2024-10-11 00:38:22 +2303 2303 2304 230.3 460.6 2303 1976-04-22 2024-10-11 00:38:23.000 1976-04-22 2024-10-11 00:38:23 +2304 2304 2305 230.4 460.8 2304 1976-04-23 2024-10-11 00:38:24.000 1976-04-23 2024-10-11 00:38:24 +2305 2305 2306 230.5 461 2305 1976-04-24 2024-10-11 00:38:25.000 1976-04-24 2024-10-11 00:38:25 +2306 2306 2307 230.6 461.20000000000005 2306 1976-04-25 2024-10-11 00:38:26.000 1976-04-25 2024-10-11 00:38:26 +2307 2307 2308 230.7 461.40000000000003 2307 1976-04-26 2024-10-11 00:38:27.000 1976-04-26 2024-10-11 00:38:27 +2308 2308 2309 230.8 461.6 2308 1976-04-27 2024-10-11 00:38:28.000 1976-04-27 2024-10-11 00:38:28 +2309 2309 2310 230.9 461.8 2309 1976-04-28 2024-10-11 00:38:29.000 1976-04-28 2024-10-11 00:38:29 +2310 2310 2311 231 462 2310 1976-04-29 2024-10-11 00:38:30.000 1976-04-29 2024-10-11 00:38:30 +2311 2311 2312 231.1 462.20000000000005 2311 1976-04-30 2024-10-11 00:38:31.000 1976-04-30 2024-10-11 00:38:31 +2312 2312 2313 231.2 462.40000000000003 2312 1976-05-01 2024-10-11 00:38:32.000 1976-05-01 2024-10-11 00:38:32 +2313 2313 2314 231.3 462.6 2313 1976-05-02 2024-10-11 00:38:33.000 1976-05-02 2024-10-11 00:38:33 +2314 2314 2315 231.4 462.8 2314 1976-05-03 2024-10-11 00:38:34.000 1976-05-03 2024-10-11 00:38:34 +2315 2315 2316 231.5 463 2315 1976-05-04 2024-10-11 00:38:35.000 1976-05-04 2024-10-11 00:38:35 +2316 2316 2317 231.6 463.20000000000005 2316 1976-05-05 2024-10-11 00:38:36.000 1976-05-05 2024-10-11 00:38:36 +2317 2317 2318 231.7 463.40000000000003 2317 1976-05-06 2024-10-11 00:38:37.000 1976-05-06 2024-10-11 00:38:37 +2318 2318 2319 231.8 463.6 2318 1976-05-07 2024-10-11 00:38:38.000 1976-05-07 2024-10-11 00:38:38 +2319 2319 2320 231.9 463.8 2319 1976-05-08 2024-10-11 00:38:39.000 1976-05-08 2024-10-11 00:38:39 +2320 2320 2321 232 464 2320 1976-05-09 2024-10-11 00:38:40.000 1976-05-09 2024-10-11 00:38:40 +2321 2321 2322 232.1 464.20000000000005 2321 1976-05-10 2024-10-11 00:38:41.000 1976-05-10 2024-10-11 00:38:41 +2322 2322 2323 232.2 464.40000000000003 2322 1976-05-11 2024-10-11 00:38:42.000 1976-05-11 2024-10-11 00:38:42 +2323 2323 2324 232.3 464.6 2323 1976-05-12 2024-10-11 00:38:43.000 1976-05-12 2024-10-11 00:38:43 +2324 2324 2325 232.4 464.8 2324 1976-05-13 2024-10-11 00:38:44.000 1976-05-13 2024-10-11 00:38:44 +2325 2325 2326 232.5 465 2325 1976-05-14 2024-10-11 00:38:45.000 1976-05-14 2024-10-11 00:38:45 +2326 2326 2327 232.6 465.20000000000005 2326 1976-05-15 2024-10-11 00:38:46.000 1976-05-15 2024-10-11 00:38:46 +2327 2327 2328 232.7 465.40000000000003 2327 1976-05-16 2024-10-11 00:38:47.000 1976-05-16 2024-10-11 00:38:47 +2328 2328 2329 232.8 465.6 2328 1976-05-17 2024-10-11 00:38:48.000 1976-05-17 2024-10-11 00:38:48 +2329 2329 2330 232.9 465.8 2329 1976-05-18 2024-10-11 00:38:49.000 1976-05-18 2024-10-11 00:38:49 +2330 2330 2331 233 466 2330 1976-05-19 2024-10-11 00:38:50.000 1976-05-19 2024-10-11 00:38:50 +2331 2331 2332 233.1 466.20000000000005 2331 1976-05-20 2024-10-11 00:38:51.000 1976-05-20 2024-10-11 00:38:51 +2332 2332 2333 233.2 466.40000000000003 2332 1976-05-21 2024-10-11 00:38:52.000 1976-05-21 2024-10-11 00:38:52 +2333 2333 2334 233.3 466.6 2333 1976-05-22 2024-10-11 00:38:53.000 1976-05-22 2024-10-11 00:38:53 +2334 2334 2335 233.4 466.8 2334 1976-05-23 2024-10-11 00:38:54.000 1976-05-23 2024-10-11 00:38:54 +2335 2335 2336 233.5 467 2335 1976-05-24 2024-10-11 00:38:55.000 1976-05-24 2024-10-11 00:38:55 +2336 2336 2337 233.6 467.20000000000005 2336 1976-05-25 2024-10-11 00:38:56.000 1976-05-25 2024-10-11 00:38:56 +2337 2337 2338 233.7 467.40000000000003 2337 1976-05-26 2024-10-11 00:38:57.000 1976-05-26 2024-10-11 00:38:57 +2338 2338 2339 233.8 467.6 2338 1976-05-27 2024-10-11 00:38:58.000 1976-05-27 2024-10-11 00:38:58 +2339 2339 2340 233.9 467.8 2339 1976-05-28 2024-10-11 00:38:59.000 1976-05-28 2024-10-11 00:38:59 +2340 2340 2341 234 468 2340 1976-05-29 2024-10-11 00:39:00.000 1976-05-29 2024-10-11 00:39:00 +2341 2341 2342 234.1 468.20000000000005 2341 1976-05-30 2024-10-11 00:39:01.000 1976-05-30 2024-10-11 00:39:01 +2342 2342 2343 234.2 468.40000000000003 2342 1976-05-31 2024-10-11 00:39:02.000 1976-05-31 2024-10-11 00:39:02 +2343 2343 2344 234.3 468.6 2343 1976-06-01 2024-10-11 00:39:03.000 1976-06-01 2024-10-11 00:39:03 +2344 2344 2345 234.4 468.8 2344 1976-06-02 2024-10-11 00:39:04.000 1976-06-02 2024-10-11 00:39:04 +2345 2345 2346 234.5 469 2345 1976-06-03 2024-10-11 00:39:05.000 1976-06-03 2024-10-11 00:39:05 +2346 2346 2347 234.6 469.20000000000005 2346 1976-06-04 2024-10-11 00:39:06.000 1976-06-04 2024-10-11 00:39:06 +2347 2347 2348 234.7 469.40000000000003 2347 1976-06-05 2024-10-11 00:39:07.000 1976-06-05 2024-10-11 00:39:07 +2348 2348 2349 234.8 469.6 2348 1976-06-06 2024-10-11 00:39:08.000 1976-06-06 2024-10-11 00:39:08 +2349 2349 2350 234.9 469.8 2349 1976-06-07 2024-10-11 00:39:09.000 1976-06-07 2024-10-11 00:39:09 +2350 2350 2351 235 470 2350 1976-06-08 2024-10-11 00:39:10.000 1976-06-08 2024-10-11 00:39:10 +2351 2351 2352 235.1 470.20000000000005 2351 1976-06-09 2024-10-11 00:39:11.000 1976-06-09 2024-10-11 00:39:11 +2352 2352 2353 235.2 470.40000000000003 2352 1976-06-10 2024-10-11 00:39:12.000 1976-06-10 2024-10-11 00:39:12 +2353 2353 2354 235.3 470.6 2353 1976-06-11 2024-10-11 00:39:13.000 1976-06-11 2024-10-11 00:39:13 +2354 2354 2355 235.4 470.8 2354 1976-06-12 2024-10-11 00:39:14.000 1976-06-12 2024-10-11 00:39:14 +2355 2355 2356 235.5 471 2355 1976-06-13 2024-10-11 00:39:15.000 1976-06-13 2024-10-11 00:39:15 +2356 2356 2357 235.6 471.20000000000005 2356 1976-06-14 2024-10-11 00:39:16.000 1976-06-14 2024-10-11 00:39:16 +2357 2357 2358 235.7 471.40000000000003 2357 1976-06-15 2024-10-11 00:39:17.000 1976-06-15 2024-10-11 00:39:17 +2358 2358 2359 235.8 471.6 2358 1976-06-16 2024-10-11 00:39:18.000 1976-06-16 2024-10-11 00:39:18 +2359 2359 2360 235.9 471.8 2359 1976-06-17 2024-10-11 00:39:19.000 1976-06-17 2024-10-11 00:39:19 +2360 2360 2361 236 472 2360 1976-06-18 2024-10-11 00:39:20.000 1976-06-18 2024-10-11 00:39:20 +2361 2361 2362 236.1 472.20000000000005 2361 1976-06-19 2024-10-11 00:39:21.000 1976-06-19 2024-10-11 00:39:21 +2362 2362 2363 236.2 472.40000000000003 2362 1976-06-20 2024-10-11 00:39:22.000 1976-06-20 2024-10-11 00:39:22 +2363 2363 2364 236.3 472.6 2363 1976-06-21 2024-10-11 00:39:23.000 1976-06-21 2024-10-11 00:39:23 +2364 2364 2365 236.4 472.8 2364 1976-06-22 2024-10-11 00:39:24.000 1976-06-22 2024-10-11 00:39:24 +2365 2365 2366 236.5 473 2365 1976-06-23 2024-10-11 00:39:25.000 1976-06-23 2024-10-11 00:39:25 +2366 2366 2367 236.6 473.20000000000005 2366 1976-06-24 2024-10-11 00:39:26.000 1976-06-24 2024-10-11 00:39:26 +2367 2367 2368 236.7 473.40000000000003 2367 1976-06-25 2024-10-11 00:39:27.000 1976-06-25 2024-10-11 00:39:27 +2368 2368 2369 236.8 473.6 2368 1976-06-26 2024-10-11 00:39:28.000 1976-06-26 2024-10-11 00:39:28 +2369 2369 2370 236.9 473.8 2369 1976-06-27 2024-10-11 00:39:29.000 1976-06-27 2024-10-11 00:39:29 +2370 2370 2371 237 474 2370 1976-06-28 2024-10-11 00:39:30.000 1976-06-28 2024-10-11 00:39:30 +2371 2371 2372 237.1 474.20000000000005 2371 1976-06-29 2024-10-11 00:39:31.000 1976-06-29 2024-10-11 00:39:31 +2372 2372 2373 237.2 474.40000000000003 2372 1976-06-30 2024-10-11 00:39:32.000 1976-06-30 2024-10-11 00:39:32 +2373 2373 2374 237.3 474.6 2373 1976-07-01 2024-10-11 00:39:33.000 1976-07-01 2024-10-11 00:39:33 +2374 2374 2375 237.4 474.8 2374 1976-07-02 2024-10-11 00:39:34.000 1976-07-02 2024-10-11 00:39:34 +2375 2375 2376 237.5 475 2375 1976-07-03 2024-10-11 00:39:35.000 1976-07-03 2024-10-11 00:39:35 +2376 2376 2377 237.6 475.20000000000005 2376 1976-07-04 2024-10-11 00:39:36.000 1976-07-04 2024-10-11 00:39:36 +2377 2377 2378 237.7 475.40000000000003 2377 1976-07-05 2024-10-11 00:39:37.000 1976-07-05 2024-10-11 00:39:37 +2378 2378 2379 237.8 475.6 2378 1976-07-06 2024-10-11 00:39:38.000 1976-07-06 2024-10-11 00:39:38 +2379 2379 2380 237.9 475.8 2379 1976-07-07 2024-10-11 00:39:39.000 1976-07-07 2024-10-11 00:39:39 +2380 2380 2381 238 476 2380 1976-07-08 2024-10-11 00:39:40.000 1976-07-08 2024-10-11 00:39:40 +2381 2381 2382 238.1 476.20000000000005 2381 1976-07-09 2024-10-11 00:39:41.000 1976-07-09 2024-10-11 00:39:41 +2382 2382 2383 238.2 476.40000000000003 2382 1976-07-10 2024-10-11 00:39:42.000 1976-07-10 2024-10-11 00:39:42 +2383 2383 2384 238.3 476.6 2383 1976-07-11 2024-10-11 00:39:43.000 1976-07-11 2024-10-11 00:39:43 +2384 2384 2385 238.4 476.8 2384 1976-07-12 2024-10-11 00:39:44.000 1976-07-12 2024-10-11 00:39:44 +2385 2385 2386 238.5 477 2385 1976-07-13 2024-10-11 00:39:45.000 1976-07-13 2024-10-11 00:39:45 +2386 2386 2387 238.6 477.20000000000005 2386 1976-07-14 2024-10-11 00:39:46.000 1976-07-14 2024-10-11 00:39:46 +2387 2387 2388 238.7 477.40000000000003 2387 1976-07-15 2024-10-11 00:39:47.000 1976-07-15 2024-10-11 00:39:47 +2388 2388 2389 238.8 477.6 2388 1976-07-16 2024-10-11 00:39:48.000 1976-07-16 2024-10-11 00:39:48 +2389 2389 2390 238.9 477.8 2389 1976-07-17 2024-10-11 00:39:49.000 1976-07-17 2024-10-11 00:39:49 +2390 2390 2391 239 478 2390 1976-07-18 2024-10-11 00:39:50.000 1976-07-18 2024-10-11 00:39:50 +2391 2391 2392 239.1 478.20000000000005 2391 1976-07-19 2024-10-11 00:39:51.000 1976-07-19 2024-10-11 00:39:51 +2392 2392 2393 239.2 478.40000000000003 2392 1976-07-20 2024-10-11 00:39:52.000 1976-07-20 2024-10-11 00:39:52 +2393 2393 2394 239.3 478.6 2393 1976-07-21 2024-10-11 00:39:53.000 1976-07-21 2024-10-11 00:39:53 +2394 2394 2395 239.4 478.8 2394 1976-07-22 2024-10-11 00:39:54.000 1976-07-22 2024-10-11 00:39:54 +2395 2395 2396 239.5 479 2395 1976-07-23 2024-10-11 00:39:55.000 1976-07-23 2024-10-11 00:39:55 +2396 2396 2397 239.6 479.20000000000005 2396 1976-07-24 2024-10-11 00:39:56.000 1976-07-24 2024-10-11 00:39:56 +2397 2397 2398 239.7 479.40000000000003 2397 1976-07-25 2024-10-11 00:39:57.000 1976-07-25 2024-10-11 00:39:57 +2398 2398 2399 239.8 479.6 2398 1976-07-26 2024-10-11 00:39:58.000 1976-07-26 2024-10-11 00:39:58 +2399 2399 2400 239.9 479.8 2399 1976-07-27 2024-10-11 00:39:59.000 1976-07-27 2024-10-11 00:39:59 +2400 2400 2401 240 480 2400 1976-07-28 2024-10-11 00:40:00.000 1976-07-28 2024-10-11 00:40:00 +2401 2401 2402 240.1 480.20000000000005 2401 1976-07-29 2024-10-11 00:40:01.000 1976-07-29 2024-10-11 00:40:01 +2402 2402 2403 240.2 480.40000000000003 2402 1976-07-30 2024-10-11 00:40:02.000 1976-07-30 2024-10-11 00:40:02 +2403 2403 2404 240.3 480.6 2403 1976-07-31 2024-10-11 00:40:03.000 1976-07-31 2024-10-11 00:40:03 +2404 2404 2405 240.4 480.8 2404 1976-08-01 2024-10-11 00:40:04.000 1976-08-01 2024-10-11 00:40:04 +2405 2405 2406 240.5 481 2405 1976-08-02 2024-10-11 00:40:05.000 1976-08-02 2024-10-11 00:40:05 +2406 2406 2407 240.6 481.20000000000005 2406 1976-08-03 2024-10-11 00:40:06.000 1976-08-03 2024-10-11 00:40:06 +2407 2407 2408 240.7 481.40000000000003 2407 1976-08-04 2024-10-11 00:40:07.000 1976-08-04 2024-10-11 00:40:07 +2408 2408 2409 240.8 481.6 2408 1976-08-05 2024-10-11 00:40:08.000 1976-08-05 2024-10-11 00:40:08 +2409 2409 2410 240.9 481.8 2409 1976-08-06 2024-10-11 00:40:09.000 1976-08-06 2024-10-11 00:40:09 +2410 2410 2411 241 482 2410 1976-08-07 2024-10-11 00:40:10.000 1976-08-07 2024-10-11 00:40:10 +2411 2411 2412 241.1 482.20000000000005 2411 1976-08-08 2024-10-11 00:40:11.000 1976-08-08 2024-10-11 00:40:11 +2412 2412 2413 241.2 482.40000000000003 2412 1976-08-09 2024-10-11 00:40:12.000 1976-08-09 2024-10-11 00:40:12 +2413 2413 2414 241.3 482.6 2413 1976-08-10 2024-10-11 00:40:13.000 1976-08-10 2024-10-11 00:40:13 +2414 2414 2415 241.4 482.8 2414 1976-08-11 2024-10-11 00:40:14.000 1976-08-11 2024-10-11 00:40:14 +2415 2415 2416 241.5 483 2415 1976-08-12 2024-10-11 00:40:15.000 1976-08-12 2024-10-11 00:40:15 +2416 2416 2417 241.6 483.20000000000005 2416 1976-08-13 2024-10-11 00:40:16.000 1976-08-13 2024-10-11 00:40:16 +2417 2417 2418 241.7 483.40000000000003 2417 1976-08-14 2024-10-11 00:40:17.000 1976-08-14 2024-10-11 00:40:17 +2418 2418 2419 241.8 483.6 2418 1976-08-15 2024-10-11 00:40:18.000 1976-08-15 2024-10-11 00:40:18 +2419 2419 2420 241.9 483.8 2419 1976-08-16 2024-10-11 00:40:19.000 1976-08-16 2024-10-11 00:40:19 +2420 2420 2421 242 484 2420 1976-08-17 2024-10-11 00:40:20.000 1976-08-17 2024-10-11 00:40:20 +2421 2421 2422 242.1 484.20000000000005 2421 1976-08-18 2024-10-11 00:40:21.000 1976-08-18 2024-10-11 00:40:21 +2422 2422 2423 242.2 484.40000000000003 2422 1976-08-19 2024-10-11 00:40:22.000 1976-08-19 2024-10-11 00:40:22 +2423 2423 2424 242.3 484.6 2423 1976-08-20 2024-10-11 00:40:23.000 1976-08-20 2024-10-11 00:40:23 +2424 2424 2425 242.4 484.8 2424 1976-08-21 2024-10-11 00:40:24.000 1976-08-21 2024-10-11 00:40:24 +2425 2425 2426 242.5 485 2425 1976-08-22 2024-10-11 00:40:25.000 1976-08-22 2024-10-11 00:40:25 +2426 2426 2427 242.6 485.20000000000005 2426 1976-08-23 2024-10-11 00:40:26.000 1976-08-23 2024-10-11 00:40:26 +2427 2427 2428 242.7 485.40000000000003 2427 1976-08-24 2024-10-11 00:40:27.000 1976-08-24 2024-10-11 00:40:27 +2428 2428 2429 242.8 485.6 2428 1976-08-25 2024-10-11 00:40:28.000 1976-08-25 2024-10-11 00:40:28 +2429 2429 2430 242.9 485.8 2429 1976-08-26 2024-10-11 00:40:29.000 1976-08-26 2024-10-11 00:40:29 +2430 2430 2431 243 486 2430 1976-08-27 2024-10-11 00:40:30.000 1976-08-27 2024-10-11 00:40:30 +2431 2431 2432 243.1 486.20000000000005 2431 1976-08-28 2024-10-11 00:40:31.000 1976-08-28 2024-10-11 00:40:31 +2432 2432 2433 243.2 486.40000000000003 2432 1976-08-29 2024-10-11 00:40:32.000 1976-08-29 2024-10-11 00:40:32 +2433 2433 2434 243.3 486.6 2433 1976-08-30 2024-10-11 00:40:33.000 1976-08-30 2024-10-11 00:40:33 +2434 2434 2435 243.4 486.8 2434 1976-08-31 2024-10-11 00:40:34.000 1976-08-31 2024-10-11 00:40:34 +2435 2435 2436 243.5 487 2435 1976-09-01 2024-10-11 00:40:35.000 1976-09-01 2024-10-11 00:40:35 +2436 2436 2437 243.6 487.20000000000005 2436 1976-09-02 2024-10-11 00:40:36.000 1976-09-02 2024-10-11 00:40:36 +2437 2437 2438 243.7 487.40000000000003 2437 1976-09-03 2024-10-11 00:40:37.000 1976-09-03 2024-10-11 00:40:37 +2438 2438 2439 243.8 487.6 2438 1976-09-04 2024-10-11 00:40:38.000 1976-09-04 2024-10-11 00:40:38 +2439 2439 2440 243.9 487.8 2439 1976-09-05 2024-10-11 00:40:39.000 1976-09-05 2024-10-11 00:40:39 +2440 2440 2441 244 488 2440 1976-09-06 2024-10-11 00:40:40.000 1976-09-06 2024-10-11 00:40:40 +2441 2441 2442 244.1 488.20000000000005 2441 1976-09-07 2024-10-11 00:40:41.000 1976-09-07 2024-10-11 00:40:41 +2442 2442 2443 244.2 488.40000000000003 2442 1976-09-08 2024-10-11 00:40:42.000 1976-09-08 2024-10-11 00:40:42 +2443 2443 2444 244.3 488.6 2443 1976-09-09 2024-10-11 00:40:43.000 1976-09-09 2024-10-11 00:40:43 +2444 2444 2445 244.4 488.8 2444 1976-09-10 2024-10-11 00:40:44.000 1976-09-10 2024-10-11 00:40:44 +2445 2445 2446 244.5 489 2445 1976-09-11 2024-10-11 00:40:45.000 1976-09-11 2024-10-11 00:40:45 +2446 2446 2447 244.6 489.20000000000005 2446 1976-09-12 2024-10-11 00:40:46.000 1976-09-12 2024-10-11 00:40:46 +2447 2447 2448 244.7 489.40000000000003 2447 1976-09-13 2024-10-11 00:40:47.000 1976-09-13 2024-10-11 00:40:47 +2448 2448 2449 244.8 489.6 2448 1976-09-14 2024-10-11 00:40:48.000 1976-09-14 2024-10-11 00:40:48 +2449 2449 2450 244.9 489.8 2449 1976-09-15 2024-10-11 00:40:49.000 1976-09-15 2024-10-11 00:40:49 +2450 2450 2451 245 490 2450 1976-09-16 2024-10-11 00:40:50.000 1976-09-16 2024-10-11 00:40:50 +2451 2451 2452 245.1 490.20000000000005 2451 1976-09-17 2024-10-11 00:40:51.000 1976-09-17 2024-10-11 00:40:51 +2452 2452 2453 245.2 490.40000000000003 2452 1976-09-18 2024-10-11 00:40:52.000 1976-09-18 2024-10-11 00:40:52 +2453 2453 2454 245.3 490.6 2453 1976-09-19 2024-10-11 00:40:53.000 1976-09-19 2024-10-11 00:40:53 +2454 2454 2455 245.4 490.8 2454 1976-09-20 2024-10-11 00:40:54.000 1976-09-20 2024-10-11 00:40:54 +2455 2455 2456 245.5 491 2455 1976-09-21 2024-10-11 00:40:55.000 1976-09-21 2024-10-11 00:40:55 +2456 2456 2457 245.6 491.20000000000005 2456 1976-09-22 2024-10-11 00:40:56.000 1976-09-22 2024-10-11 00:40:56 +2457 2457 2458 245.7 491.40000000000003 2457 1976-09-23 2024-10-11 00:40:57.000 1976-09-23 2024-10-11 00:40:57 +2458 2458 2459 245.8 491.6 2458 1976-09-24 2024-10-11 00:40:58.000 1976-09-24 2024-10-11 00:40:58 +2459 2459 2460 245.9 491.8 2459 1976-09-25 2024-10-11 00:40:59.000 1976-09-25 2024-10-11 00:40:59 +2460 2460 2461 246 492 2460 1976-09-26 2024-10-11 00:41:00.000 1976-09-26 2024-10-11 00:41:00 +2461 2461 2462 246.1 492.20000000000005 2461 1976-09-27 2024-10-11 00:41:01.000 1976-09-27 2024-10-11 00:41:01 +2462 2462 2463 246.2 492.40000000000003 2462 1976-09-28 2024-10-11 00:41:02.000 1976-09-28 2024-10-11 00:41:02 +2463 2463 2464 246.3 492.6 2463 1976-09-29 2024-10-11 00:41:03.000 1976-09-29 2024-10-11 00:41:03 +2464 2464 2465 246.4 492.8 2464 1976-09-30 2024-10-11 00:41:04.000 1976-09-30 2024-10-11 00:41:04 +2465 2465 2466 246.5 493 2465 1976-10-01 2024-10-11 00:41:05.000 1976-10-01 2024-10-11 00:41:05 +2466 2466 2467 246.6 493.20000000000005 2466 1976-10-02 2024-10-11 00:41:06.000 1976-10-02 2024-10-11 00:41:06 +2467 2467 2468 246.7 493.40000000000003 2467 1976-10-03 2024-10-11 00:41:07.000 1976-10-03 2024-10-11 00:41:07 +2468 2468 2469 246.8 493.6 2468 1976-10-04 2024-10-11 00:41:08.000 1976-10-04 2024-10-11 00:41:08 +2469 2469 2470 246.9 493.8 2469 1976-10-05 2024-10-11 00:41:09.000 1976-10-05 2024-10-11 00:41:09 +2470 2470 2471 247 494 2470 1976-10-06 2024-10-11 00:41:10.000 1976-10-06 2024-10-11 00:41:10 +2471 2471 2472 247.1 494.20000000000005 2471 1976-10-07 2024-10-11 00:41:11.000 1976-10-07 2024-10-11 00:41:11 +2472 2472 2473 247.2 494.40000000000003 2472 1976-10-08 2024-10-11 00:41:12.000 1976-10-08 2024-10-11 00:41:12 +2473 2473 2474 247.3 494.6 2473 1976-10-09 2024-10-11 00:41:13.000 1976-10-09 2024-10-11 00:41:13 +2474 2474 2475 247.4 494.8 2474 1976-10-10 2024-10-11 00:41:14.000 1976-10-10 2024-10-11 00:41:14 +2475 2475 2476 247.5 495 2475 1976-10-11 2024-10-11 00:41:15.000 1976-10-11 2024-10-11 00:41:15 +2476 2476 2477 247.6 495.20000000000005 2476 1976-10-12 2024-10-11 00:41:16.000 1976-10-12 2024-10-11 00:41:16 +2477 2477 2478 247.7 495.40000000000003 2477 1976-10-13 2024-10-11 00:41:17.000 1976-10-13 2024-10-11 00:41:17 +2478 2478 2479 247.8 495.6 2478 1976-10-14 2024-10-11 00:41:18.000 1976-10-14 2024-10-11 00:41:18 +2479 2479 2480 247.9 495.8 2479 1976-10-15 2024-10-11 00:41:19.000 1976-10-15 2024-10-11 00:41:19 +2480 2480 2481 248 496 2480 1976-10-16 2024-10-11 00:41:20.000 1976-10-16 2024-10-11 00:41:20 +2481 2481 2482 248.1 496.20000000000005 2481 1976-10-17 2024-10-11 00:41:21.000 1976-10-17 2024-10-11 00:41:21 +2482 2482 2483 248.2 496.40000000000003 2482 1976-10-18 2024-10-11 00:41:22.000 1976-10-18 2024-10-11 00:41:22 +2483 2483 2484 248.3 496.6 2483 1976-10-19 2024-10-11 00:41:23.000 1976-10-19 2024-10-11 00:41:23 +2484 2484 2485 248.4 496.8 2484 1976-10-20 2024-10-11 00:41:24.000 1976-10-20 2024-10-11 00:41:24 +2485 2485 2486 248.5 497 2485 1976-10-21 2024-10-11 00:41:25.000 1976-10-21 2024-10-11 00:41:25 +2486 2486 2487 248.6 497.20000000000005 2486 1976-10-22 2024-10-11 00:41:26.000 1976-10-22 2024-10-11 00:41:26 +2487 2487 2488 248.7 497.40000000000003 2487 1976-10-23 2024-10-11 00:41:27.000 1976-10-23 2024-10-11 00:41:27 +2488 2488 2489 248.8 497.6 2488 1976-10-24 2024-10-11 00:41:28.000 1976-10-24 2024-10-11 00:41:28 +2489 2489 2490 248.9 497.8 2489 1976-10-25 2024-10-11 00:41:29.000 1976-10-25 2024-10-11 00:41:29 +2490 2490 2491 249 498 2490 1976-10-26 2024-10-11 00:41:30.000 1976-10-26 2024-10-11 00:41:30 +2491 2491 2492 249.1 498.20000000000005 2491 1976-10-27 2024-10-11 00:41:31.000 1976-10-27 2024-10-11 00:41:31 +2492 2492 2493 249.2 498.40000000000003 2492 1976-10-28 2024-10-11 00:41:32.000 1976-10-28 2024-10-11 00:41:32 +2493 2493 2494 249.3 498.6 2493 1976-10-29 2024-10-11 00:41:33.000 1976-10-29 2024-10-11 00:41:33 +2494 2494 2495 249.4 498.8 2494 1976-10-30 2024-10-11 00:41:34.000 1976-10-30 2024-10-11 00:41:34 +2495 2495 2496 249.5 499 2495 1976-10-31 2024-10-11 00:41:35.000 1976-10-31 2024-10-11 00:41:35 +2496 2496 2497 249.6 499.20000000000005 2496 1976-11-01 2024-10-11 00:41:36.000 1976-11-01 2024-10-11 00:41:36 +2497 2497 2498 249.7 499.40000000000003 2497 1976-11-02 2024-10-11 00:41:37.000 1976-11-02 2024-10-11 00:41:37 +2498 2498 2499 249.8 499.6 2498 1976-11-03 2024-10-11 00:41:38.000 1976-11-03 2024-10-11 00:41:38 +2499 2499 2500 249.9 499.8 2499 1976-11-04 2024-10-11 00:41:39.000 1976-11-04 2024-10-11 00:41:39 +2500 2500 2501 250 500 2500 1976-11-05 2024-10-11 00:41:40.000 1976-11-05 2024-10-11 00:41:40 +2501 2501 2502 250.1 500.20000000000005 2501 1976-11-06 2024-10-11 00:41:41.000 1976-11-06 2024-10-11 00:41:41 +2502 2502 2503 250.2 500.40000000000003 2502 1976-11-07 2024-10-11 00:41:42.000 1976-11-07 2024-10-11 00:41:42 +2503 2503 2504 250.3 500.6 2503 1976-11-08 2024-10-11 00:41:43.000 1976-11-08 2024-10-11 00:41:43 +2504 2504 2505 250.4 500.8 2504 1976-11-09 2024-10-11 00:41:44.000 1976-11-09 2024-10-11 00:41:44 +2505 2505 2506 250.5 501 2505 1976-11-10 2024-10-11 00:41:45.000 1976-11-10 2024-10-11 00:41:45 +2506 2506 2507 250.6 501.20000000000005 2506 1976-11-11 2024-10-11 00:41:46.000 1976-11-11 2024-10-11 00:41:46 +2507 2507 2508 250.7 501.40000000000003 2507 1976-11-12 2024-10-11 00:41:47.000 1976-11-12 2024-10-11 00:41:47 +2508 2508 2509 250.8 501.6 2508 1976-11-13 2024-10-11 00:41:48.000 1976-11-13 2024-10-11 00:41:48 +2509 2509 2510 250.9 501.8 2509 1976-11-14 2024-10-11 00:41:49.000 1976-11-14 2024-10-11 00:41:49 +2510 2510 2511 251 502 2510 1976-11-15 2024-10-11 00:41:50.000 1976-11-15 2024-10-11 00:41:50 +2511 2511 2512 251.1 502.20000000000005 2511 1976-11-16 2024-10-11 00:41:51.000 1976-11-16 2024-10-11 00:41:51 +2512 2512 2513 251.2 502.40000000000003 2512 1976-11-17 2024-10-11 00:41:52.000 1976-11-17 2024-10-11 00:41:52 +2513 2513 2514 251.3 502.6 2513 1976-11-18 2024-10-11 00:41:53.000 1976-11-18 2024-10-11 00:41:53 +2514 2514 2515 251.4 502.8 2514 1976-11-19 2024-10-11 00:41:54.000 1976-11-19 2024-10-11 00:41:54 +2515 2515 2516 251.5 503 2515 1976-11-20 2024-10-11 00:41:55.000 1976-11-20 2024-10-11 00:41:55 +2516 2516 2517 251.6 503.20000000000005 2516 1976-11-21 2024-10-11 00:41:56.000 1976-11-21 2024-10-11 00:41:56 +2517 2517 2518 251.7 503.40000000000003 2517 1976-11-22 2024-10-11 00:41:57.000 1976-11-22 2024-10-11 00:41:57 +2518 2518 2519 251.8 503.6 2518 1976-11-23 2024-10-11 00:41:58.000 1976-11-23 2024-10-11 00:41:58 +2519 2519 2520 251.9 503.8 2519 1976-11-24 2024-10-11 00:41:59.000 1976-11-24 2024-10-11 00:41:59 +2520 2520 2521 252 504 2520 1976-11-25 2024-10-11 00:42:00.000 1976-11-25 2024-10-11 00:42:00 +2521 2521 2522 252.1 504.20000000000005 2521 1976-11-26 2024-10-11 00:42:01.000 1976-11-26 2024-10-11 00:42:01 +2522 2522 2523 252.2 504.40000000000003 2522 1976-11-27 2024-10-11 00:42:02.000 1976-11-27 2024-10-11 00:42:02 +2523 2523 2524 252.3 504.6 2523 1976-11-28 2024-10-11 00:42:03.000 1976-11-28 2024-10-11 00:42:03 +2524 2524 2525 252.4 504.8 2524 1976-11-29 2024-10-11 00:42:04.000 1976-11-29 2024-10-11 00:42:04 +2525 2525 2526 252.5 505 2525 1976-11-30 2024-10-11 00:42:05.000 1976-11-30 2024-10-11 00:42:05 +2526 2526 2527 252.6 505.20000000000005 2526 1976-12-01 2024-10-11 00:42:06.000 1976-12-01 2024-10-11 00:42:06 +2527 2527 2528 252.7 505.40000000000003 2527 1976-12-02 2024-10-11 00:42:07.000 1976-12-02 2024-10-11 00:42:07 +2528 2528 2529 252.8 505.6 2528 1976-12-03 2024-10-11 00:42:08.000 1976-12-03 2024-10-11 00:42:08 +2529 2529 2530 252.9 505.8 2529 1976-12-04 2024-10-11 00:42:09.000 1976-12-04 2024-10-11 00:42:09 +2530 2530 2531 253 506 2530 1976-12-05 2024-10-11 00:42:10.000 1976-12-05 2024-10-11 00:42:10 +2531 2531 2532 253.1 506.20000000000005 2531 1976-12-06 2024-10-11 00:42:11.000 1976-12-06 2024-10-11 00:42:11 +2532 2532 2533 253.2 506.40000000000003 2532 1976-12-07 2024-10-11 00:42:12.000 1976-12-07 2024-10-11 00:42:12 +2533 2533 2534 253.3 506.6 2533 1976-12-08 2024-10-11 00:42:13.000 1976-12-08 2024-10-11 00:42:13 +2534 2534 2535 253.4 506.8 2534 1976-12-09 2024-10-11 00:42:14.000 1976-12-09 2024-10-11 00:42:14 +2535 2535 2536 253.5 507 2535 1976-12-10 2024-10-11 00:42:15.000 1976-12-10 2024-10-11 00:42:15 +2536 2536 2537 253.6 507.20000000000005 2536 1976-12-11 2024-10-11 00:42:16.000 1976-12-11 2024-10-11 00:42:16 +2537 2537 2538 253.7 507.40000000000003 2537 1976-12-12 2024-10-11 00:42:17.000 1976-12-12 2024-10-11 00:42:17 +2538 2538 2539 253.8 507.6 2538 1976-12-13 2024-10-11 00:42:18.000 1976-12-13 2024-10-11 00:42:18 +2539 2539 2540 253.9 507.8 2539 1976-12-14 2024-10-11 00:42:19.000 1976-12-14 2024-10-11 00:42:19 +2540 2540 2541 254 508 2540 1976-12-15 2024-10-11 00:42:20.000 1976-12-15 2024-10-11 00:42:20 +2541 2541 2542 254.1 508.20000000000005 2541 1976-12-16 2024-10-11 00:42:21.000 1976-12-16 2024-10-11 00:42:21 +2542 2542 2543 254.2 508.40000000000003 2542 1976-12-17 2024-10-11 00:42:22.000 1976-12-17 2024-10-11 00:42:22 +2543 2543 2544 254.3 508.6 2543 1976-12-18 2024-10-11 00:42:23.000 1976-12-18 2024-10-11 00:42:23 +2544 2544 2545 254.4 508.8 2544 1976-12-19 2024-10-11 00:42:24.000 1976-12-19 2024-10-11 00:42:24 +2545 2545 2546 254.5 509 2545 1976-12-20 2024-10-11 00:42:25.000 1976-12-20 2024-10-11 00:42:25 +2546 2546 2547 254.6 509.20000000000005 2546 1976-12-21 2024-10-11 00:42:26.000 1976-12-21 2024-10-11 00:42:26 +2547 2547 2548 254.7 509.40000000000003 2547 1976-12-22 2024-10-11 00:42:27.000 1976-12-22 2024-10-11 00:42:27 +2548 2548 2549 254.8 509.6 2548 1976-12-23 2024-10-11 00:42:28.000 1976-12-23 2024-10-11 00:42:28 +2549 2549 2550 254.9 509.8 2549 1976-12-24 2024-10-11 00:42:29.000 1976-12-24 2024-10-11 00:42:29 +2550 2550 2551 255 510 2550 1976-12-25 2024-10-11 00:42:30.000 1976-12-25 2024-10-11 00:42:30 +2551 2551 2552 255.1 510.20000000000005 2551 1976-12-26 2024-10-11 00:42:31.000 1976-12-26 2024-10-11 00:42:31 +2552 2552 2553 255.2 510.40000000000003 2552 1976-12-27 2024-10-11 00:42:32.000 1976-12-27 2024-10-11 00:42:32 +2553 2553 2554 255.3 510.6 2553 1976-12-28 2024-10-11 00:42:33.000 1976-12-28 2024-10-11 00:42:33 +2554 2554 2555 255.4 510.8 2554 1976-12-29 2024-10-11 00:42:34.000 1976-12-29 2024-10-11 00:42:34 +2555 2555 2556 255.5 511 2555 1976-12-30 2024-10-11 00:42:35.000 1976-12-30 2024-10-11 00:42:35 +2556 2556 2557 255.6 511.20000000000005 2556 1976-12-31 2024-10-11 00:42:36.000 1976-12-31 2024-10-11 00:42:36 +2557 2557 2558 255.7 511.40000000000003 2557 1977-01-01 2024-10-11 00:42:37.000 1977-01-01 2024-10-11 00:42:37 +2558 2558 2559 255.8 511.6 2558 1977-01-02 2024-10-11 00:42:38.000 1977-01-02 2024-10-11 00:42:38 +2559 2559 2560 255.9 511.8 2559 1977-01-03 2024-10-11 00:42:39.000 1977-01-03 2024-10-11 00:42:39 +2560 2560 2561 256 512 2560 1977-01-04 2024-10-11 00:42:40.000 1977-01-04 2024-10-11 00:42:40 +2561 2561 2562 256.1 512.2 2561 1977-01-05 2024-10-11 00:42:41.000 1977-01-05 2024-10-11 00:42:41 +2562 2562 2563 256.2 512.4 2562 1977-01-06 2024-10-11 00:42:42.000 1977-01-06 2024-10-11 00:42:42 +2563 2563 2564 256.3 512.6 2563 1977-01-07 2024-10-11 00:42:43.000 1977-01-07 2024-10-11 00:42:43 +2564 2564 2565 256.4 512.8000000000001 2564 1977-01-08 2024-10-11 00:42:44.000 1977-01-08 2024-10-11 00:42:44 +2565 2565 2566 256.5 513 2565 1977-01-09 2024-10-11 00:42:45.000 1977-01-09 2024-10-11 00:42:45 +2566 2566 2567 256.6 513.2 2566 1977-01-10 2024-10-11 00:42:46.000 1977-01-10 2024-10-11 00:42:46 +2567 2567 2568 256.7 513.4 2567 1977-01-11 2024-10-11 00:42:47.000 1977-01-11 2024-10-11 00:42:47 +2568 2568 2569 256.8 513.6 2568 1977-01-12 2024-10-11 00:42:48.000 1977-01-12 2024-10-11 00:42:48 +2569 2569 2570 256.9 513.8000000000001 2569 1977-01-13 2024-10-11 00:42:49.000 1977-01-13 2024-10-11 00:42:49 +2570 2570 2571 257 514 2570 1977-01-14 2024-10-11 00:42:50.000 1977-01-14 2024-10-11 00:42:50 +2571 2571 2572 257.1 514.2 2571 1977-01-15 2024-10-11 00:42:51.000 1977-01-15 2024-10-11 00:42:51 +2572 2572 2573 257.2 514.4 2572 1977-01-16 2024-10-11 00:42:52.000 1977-01-16 2024-10-11 00:42:52 +2573 2573 2574 257.3 514.6 2573 1977-01-17 2024-10-11 00:42:53.000 1977-01-17 2024-10-11 00:42:53 +2574 2574 2575 257.4 514.8000000000001 2574 1977-01-18 2024-10-11 00:42:54.000 1977-01-18 2024-10-11 00:42:54 +2575 2575 2576 257.5 515 2575 1977-01-19 2024-10-11 00:42:55.000 1977-01-19 2024-10-11 00:42:55 +2576 2576 2577 257.6 515.2 2576 1977-01-20 2024-10-11 00:42:56.000 1977-01-20 2024-10-11 00:42:56 +2577 2577 2578 257.7 515.4 2577 1977-01-21 2024-10-11 00:42:57.000 1977-01-21 2024-10-11 00:42:57 +2578 2578 2579 257.8 515.6 2578 1977-01-22 2024-10-11 00:42:58.000 1977-01-22 2024-10-11 00:42:58 +2579 2579 2580 257.9 515.8000000000001 2579 1977-01-23 2024-10-11 00:42:59.000 1977-01-23 2024-10-11 00:42:59 +2580 2580 2581 258 516 2580 1977-01-24 2024-10-11 00:43:00.000 1977-01-24 2024-10-11 00:43:00 +2581 2581 2582 258.1 516.2 2581 1977-01-25 2024-10-11 00:43:01.000 1977-01-25 2024-10-11 00:43:01 +2582 2582 2583 258.2 516.4 2582 1977-01-26 2024-10-11 00:43:02.000 1977-01-26 2024-10-11 00:43:02 +2583 2583 2584 258.3 516.6 2583 1977-01-27 2024-10-11 00:43:03.000 1977-01-27 2024-10-11 00:43:03 +2584 2584 2585 258.4 516.8000000000001 2584 1977-01-28 2024-10-11 00:43:04.000 1977-01-28 2024-10-11 00:43:04 +2585 2585 2586 258.5 517 2585 1977-01-29 2024-10-11 00:43:05.000 1977-01-29 2024-10-11 00:43:05 +2586 2586 2587 258.6 517.2 2586 1977-01-30 2024-10-11 00:43:06.000 1977-01-30 2024-10-11 00:43:06 +2587 2587 2588 258.7 517.4 2587 1977-01-31 2024-10-11 00:43:07.000 1977-01-31 2024-10-11 00:43:07 +2588 2588 2589 258.8 517.6 2588 1977-02-01 2024-10-11 00:43:08.000 1977-02-01 2024-10-11 00:43:08 +2589 2589 2590 258.9 517.8000000000001 2589 1977-02-02 2024-10-11 00:43:09.000 1977-02-02 2024-10-11 00:43:09 +2590 2590 2591 259 518 2590 1977-02-03 2024-10-11 00:43:10.000 1977-02-03 2024-10-11 00:43:10 +2591 2591 2592 259.1 518.2 2591 1977-02-04 2024-10-11 00:43:11.000 1977-02-04 2024-10-11 00:43:11 +2592 2592 2593 259.2 518.4 2592 1977-02-05 2024-10-11 00:43:12.000 1977-02-05 2024-10-11 00:43:12 +2593 2593 2594 259.3 518.6 2593 1977-02-06 2024-10-11 00:43:13.000 1977-02-06 2024-10-11 00:43:13 +2594 2594 2595 259.4 518.8000000000001 2594 1977-02-07 2024-10-11 00:43:14.000 1977-02-07 2024-10-11 00:43:14 +2595 2595 2596 259.5 519 2595 1977-02-08 2024-10-11 00:43:15.000 1977-02-08 2024-10-11 00:43:15 +2596 2596 2597 259.6 519.2 2596 1977-02-09 2024-10-11 00:43:16.000 1977-02-09 2024-10-11 00:43:16 +2597 2597 2598 259.7 519.4 2597 1977-02-10 2024-10-11 00:43:17.000 1977-02-10 2024-10-11 00:43:17 +2598 2598 2599 259.8 519.6 2598 1977-02-11 2024-10-11 00:43:18.000 1977-02-11 2024-10-11 00:43:18 +2599 2599 2600 259.9 519.8000000000001 2599 1977-02-12 2024-10-11 00:43:19.000 1977-02-12 2024-10-11 00:43:19 +2600 2600 2601 260 520 2600 1977-02-13 2024-10-11 00:43:20.000 1977-02-13 2024-10-11 00:43:20 +2601 2601 2602 260.1 520.2 2601 1977-02-14 2024-10-11 00:43:21.000 1977-02-14 2024-10-11 00:43:21 +2602 2602 2603 260.2 520.4 2602 1977-02-15 2024-10-11 00:43:22.000 1977-02-15 2024-10-11 00:43:22 +2603 2603 2604 260.3 520.6 2603 1977-02-16 2024-10-11 00:43:23.000 1977-02-16 2024-10-11 00:43:23 +2604 2604 2605 260.4 520.8000000000001 2604 1977-02-17 2024-10-11 00:43:24.000 1977-02-17 2024-10-11 00:43:24 +2605 2605 2606 260.5 521 2605 1977-02-18 2024-10-11 00:43:25.000 1977-02-18 2024-10-11 00:43:25 +2606 2606 2607 260.6 521.2 2606 1977-02-19 2024-10-11 00:43:26.000 1977-02-19 2024-10-11 00:43:26 +2607 2607 2608 260.7 521.4 2607 1977-02-20 2024-10-11 00:43:27.000 1977-02-20 2024-10-11 00:43:27 +2608 2608 2609 260.8 521.6 2608 1977-02-21 2024-10-11 00:43:28.000 1977-02-21 2024-10-11 00:43:28 +2609 2609 2610 260.9 521.8000000000001 2609 1977-02-22 2024-10-11 00:43:29.000 1977-02-22 2024-10-11 00:43:29 +2610 2610 2611 261 522 2610 1977-02-23 2024-10-11 00:43:30.000 1977-02-23 2024-10-11 00:43:30 +2611 2611 2612 261.1 522.2 2611 1977-02-24 2024-10-11 00:43:31.000 1977-02-24 2024-10-11 00:43:31 +2612 2612 2613 261.2 522.4 2612 1977-02-25 2024-10-11 00:43:32.000 1977-02-25 2024-10-11 00:43:32 +2613 2613 2614 261.3 522.6 2613 1977-02-26 2024-10-11 00:43:33.000 1977-02-26 2024-10-11 00:43:33 +2614 2614 2615 261.4 522.8000000000001 2614 1977-02-27 2024-10-11 00:43:34.000 1977-02-27 2024-10-11 00:43:34 +2615 2615 2616 261.5 523 2615 1977-02-28 2024-10-11 00:43:35.000 1977-02-28 2024-10-11 00:43:35 +2616 2616 2617 261.6 523.2 2616 1977-03-01 2024-10-11 00:43:36.000 1977-03-01 2024-10-11 00:43:36 +2617 2617 2618 261.7 523.4 2617 1977-03-02 2024-10-11 00:43:37.000 1977-03-02 2024-10-11 00:43:37 +2618 2618 2619 261.8 523.6 2618 1977-03-03 2024-10-11 00:43:38.000 1977-03-03 2024-10-11 00:43:38 +2619 2619 2620 261.9 523.8000000000001 2619 1977-03-04 2024-10-11 00:43:39.000 1977-03-04 2024-10-11 00:43:39 +2620 2620 2621 262 524 2620 1977-03-05 2024-10-11 00:43:40.000 1977-03-05 2024-10-11 00:43:40 +2621 2621 2622 262.1 524.2 2621 1977-03-06 2024-10-11 00:43:41.000 1977-03-06 2024-10-11 00:43:41 +2622 2622 2623 262.2 524.4 2622 1977-03-07 2024-10-11 00:43:42.000 1977-03-07 2024-10-11 00:43:42 +2623 2623 2624 262.3 524.6 2623 1977-03-08 2024-10-11 00:43:43.000 1977-03-08 2024-10-11 00:43:43 +2624 2624 2625 262.4 524.8000000000001 2624 1977-03-09 2024-10-11 00:43:44.000 1977-03-09 2024-10-11 00:43:44 +2625 2625 2626 262.5 525 2625 1977-03-10 2024-10-11 00:43:45.000 1977-03-10 2024-10-11 00:43:45 +2626 2626 2627 262.6 525.2 2626 1977-03-11 2024-10-11 00:43:46.000 1977-03-11 2024-10-11 00:43:46 +2627 2627 2628 262.7 525.4 2627 1977-03-12 2024-10-11 00:43:47.000 1977-03-12 2024-10-11 00:43:47 +2628 2628 2629 262.8 525.6 2628 1977-03-13 2024-10-11 00:43:48.000 1977-03-13 2024-10-11 00:43:48 +2629 2629 2630 262.9 525.8000000000001 2629 1977-03-14 2024-10-11 00:43:49.000 1977-03-14 2024-10-11 00:43:49 +2630 2630 2631 263 526 2630 1977-03-15 2024-10-11 00:43:50.000 1977-03-15 2024-10-11 00:43:50 +2631 2631 2632 263.1 526.2 2631 1977-03-16 2024-10-11 00:43:51.000 1977-03-16 2024-10-11 00:43:51 +2632 2632 2633 263.2 526.4 2632 1977-03-17 2024-10-11 00:43:52.000 1977-03-17 2024-10-11 00:43:52 +2633 2633 2634 263.3 526.6 2633 1977-03-18 2024-10-11 00:43:53.000 1977-03-18 2024-10-11 00:43:53 +2634 2634 2635 263.4 526.8000000000001 2634 1977-03-19 2024-10-11 00:43:54.000 1977-03-19 2024-10-11 00:43:54 +2635 2635 2636 263.5 527 2635 1977-03-20 2024-10-11 00:43:55.000 1977-03-20 2024-10-11 00:43:55 +2636 2636 2637 263.6 527.2 2636 1977-03-21 2024-10-11 00:43:56.000 1977-03-21 2024-10-11 00:43:56 +2637 2637 2638 263.7 527.4 2637 1977-03-22 2024-10-11 00:43:57.000 1977-03-22 2024-10-11 00:43:57 +2638 2638 2639 263.8 527.6 2638 1977-03-23 2024-10-11 00:43:58.000 1977-03-23 2024-10-11 00:43:58 +2639 2639 2640 263.9 527.8000000000001 2639 1977-03-24 2024-10-11 00:43:59.000 1977-03-24 2024-10-11 00:43:59 +2640 2640 2641 264 528 2640 1977-03-25 2024-10-11 00:44:00.000 1977-03-25 2024-10-11 00:44:00 +2641 2641 2642 264.1 528.2 2641 1977-03-26 2024-10-11 00:44:01.000 1977-03-26 2024-10-11 00:44:01 +2642 2642 2643 264.2 528.4 2642 1977-03-27 2024-10-11 00:44:02.000 1977-03-27 2024-10-11 00:44:02 +2643 2643 2644 264.3 528.6 2643 1977-03-28 2024-10-11 00:44:03.000 1977-03-28 2024-10-11 00:44:03 +2644 2644 2645 264.4 528.8000000000001 2644 1977-03-29 2024-10-11 00:44:04.000 1977-03-29 2024-10-11 00:44:04 +2645 2645 2646 264.5 529 2645 1977-03-30 2024-10-11 00:44:05.000 1977-03-30 2024-10-11 00:44:05 +2646 2646 2647 264.6 529.2 2646 1977-03-31 2024-10-11 00:44:06.000 1977-03-31 2024-10-11 00:44:06 +2647 2647 2648 264.7 529.4 2647 1977-04-01 2024-10-11 00:44:07.000 1977-04-01 2024-10-11 00:44:07 +2648 2648 2649 264.8 529.6 2648 1977-04-02 2024-10-11 00:44:08.000 1977-04-02 2024-10-11 00:44:08 +2649 2649 2650 264.9 529.8000000000001 2649 1977-04-03 2024-10-11 00:44:09.000 1977-04-03 2024-10-11 00:44:09 +2650 2650 2651 265 530 2650 1977-04-04 2024-10-11 00:44:10.000 1977-04-04 2024-10-11 00:44:10 +2651 2651 2652 265.1 530.2 2651 1977-04-05 2024-10-11 00:44:11.000 1977-04-05 2024-10-11 00:44:11 +2652 2652 2653 265.2 530.4 2652 1977-04-06 2024-10-11 00:44:12.000 1977-04-06 2024-10-11 00:44:12 +2653 2653 2654 265.3 530.6 2653 1977-04-07 2024-10-11 00:44:13.000 1977-04-07 2024-10-11 00:44:13 +2654 2654 2655 265.4 530.8000000000001 2654 1977-04-08 2024-10-11 00:44:14.000 1977-04-08 2024-10-11 00:44:14 +2655 2655 2656 265.5 531 2655 1977-04-09 2024-10-11 00:44:15.000 1977-04-09 2024-10-11 00:44:15 +2656 2656 2657 265.6 531.2 2656 1977-04-10 2024-10-11 00:44:16.000 1977-04-10 2024-10-11 00:44:16 +2657 2657 2658 265.7 531.4 2657 1977-04-11 2024-10-11 00:44:17.000 1977-04-11 2024-10-11 00:44:17 +2658 2658 2659 265.8 531.6 2658 1977-04-12 2024-10-11 00:44:18.000 1977-04-12 2024-10-11 00:44:18 +2659 2659 2660 265.9 531.8000000000001 2659 1977-04-13 2024-10-11 00:44:19.000 1977-04-13 2024-10-11 00:44:19 +2660 2660 2661 266 532 2660 1977-04-14 2024-10-11 00:44:20.000 1977-04-14 2024-10-11 00:44:20 +2661 2661 2662 266.1 532.2 2661 1977-04-15 2024-10-11 00:44:21.000 1977-04-15 2024-10-11 00:44:21 +2662 2662 2663 266.2 532.4 2662 1977-04-16 2024-10-11 00:44:22.000 1977-04-16 2024-10-11 00:44:22 +2663 2663 2664 266.3 532.6 2663 1977-04-17 2024-10-11 00:44:23.000 1977-04-17 2024-10-11 00:44:23 +2664 2664 2665 266.4 532.8000000000001 2664 1977-04-18 2024-10-11 00:44:24.000 1977-04-18 2024-10-11 00:44:24 +2665 2665 2666 266.5 533 2665 1977-04-19 2024-10-11 00:44:25.000 1977-04-19 2024-10-11 00:44:25 +2666 2666 2667 266.6 533.2 2666 1977-04-20 2024-10-11 00:44:26.000 1977-04-20 2024-10-11 00:44:26 +2667 2667 2668 266.7 533.4 2667 1977-04-21 2024-10-11 00:44:27.000 1977-04-21 2024-10-11 00:44:27 +2668 2668 2669 266.8 533.6 2668 1977-04-22 2024-10-11 00:44:28.000 1977-04-22 2024-10-11 00:44:28 +2669 2669 2670 266.9 533.8000000000001 2669 1977-04-23 2024-10-11 00:44:29.000 1977-04-23 2024-10-11 00:44:29 +2670 2670 2671 267 534 2670 1977-04-24 2024-10-11 00:44:30.000 1977-04-24 2024-10-11 00:44:30 +2671 2671 2672 267.1 534.2 2671 1977-04-25 2024-10-11 00:44:31.000 1977-04-25 2024-10-11 00:44:31 +2672 2672 2673 267.2 534.4 2672 1977-04-26 2024-10-11 00:44:32.000 1977-04-26 2024-10-11 00:44:32 +2673 2673 2674 267.3 534.6 2673 1977-04-27 2024-10-11 00:44:33.000 1977-04-27 2024-10-11 00:44:33 +2674 2674 2675 267.4 534.8000000000001 2674 1977-04-28 2024-10-11 00:44:34.000 1977-04-28 2024-10-11 00:44:34 +2675 2675 2676 267.5 535 2675 1977-04-29 2024-10-11 00:44:35.000 1977-04-29 2024-10-11 00:44:35 +2676 2676 2677 267.6 535.2 2676 1977-04-30 2024-10-11 00:44:36.000 1977-04-30 2024-10-11 00:44:36 +2677 2677 2678 267.7 535.4 2677 1977-05-01 2024-10-11 00:44:37.000 1977-05-01 2024-10-11 00:44:37 +2678 2678 2679 267.8 535.6 2678 1977-05-02 2024-10-11 00:44:38.000 1977-05-02 2024-10-11 00:44:38 +2679 2679 2680 267.9 535.8000000000001 2679 1977-05-03 2024-10-11 00:44:39.000 1977-05-03 2024-10-11 00:44:39 +2680 2680 2681 268 536 2680 1977-05-04 2024-10-11 00:44:40.000 1977-05-04 2024-10-11 00:44:40 +2681 2681 2682 268.1 536.2 2681 1977-05-05 2024-10-11 00:44:41.000 1977-05-05 2024-10-11 00:44:41 +2682 2682 2683 268.2 536.4 2682 1977-05-06 2024-10-11 00:44:42.000 1977-05-06 2024-10-11 00:44:42 +2683 2683 2684 268.3 536.6 2683 1977-05-07 2024-10-11 00:44:43.000 1977-05-07 2024-10-11 00:44:43 +2684 2684 2685 268.4 536.8000000000001 2684 1977-05-08 2024-10-11 00:44:44.000 1977-05-08 2024-10-11 00:44:44 +2685 2685 2686 268.5 537 2685 1977-05-09 2024-10-11 00:44:45.000 1977-05-09 2024-10-11 00:44:45 +2686 2686 2687 268.6 537.2 2686 1977-05-10 2024-10-11 00:44:46.000 1977-05-10 2024-10-11 00:44:46 +2687 2687 2688 268.7 537.4 2687 1977-05-11 2024-10-11 00:44:47.000 1977-05-11 2024-10-11 00:44:47 +2688 2688 2689 268.8 537.6 2688 1977-05-12 2024-10-11 00:44:48.000 1977-05-12 2024-10-11 00:44:48 +2689 2689 2690 268.9 537.8000000000001 2689 1977-05-13 2024-10-11 00:44:49.000 1977-05-13 2024-10-11 00:44:49 +2690 2690 2691 269 538 2690 1977-05-14 2024-10-11 00:44:50.000 1977-05-14 2024-10-11 00:44:50 +2691 2691 2692 269.1 538.2 2691 1977-05-15 2024-10-11 00:44:51.000 1977-05-15 2024-10-11 00:44:51 +2692 2692 2693 269.2 538.4 2692 1977-05-16 2024-10-11 00:44:52.000 1977-05-16 2024-10-11 00:44:52 +2693 2693 2694 269.3 538.6 2693 1977-05-17 2024-10-11 00:44:53.000 1977-05-17 2024-10-11 00:44:53 +2694 2694 2695 269.4 538.8000000000001 2694 1977-05-18 2024-10-11 00:44:54.000 1977-05-18 2024-10-11 00:44:54 +2695 2695 2696 269.5 539 2695 1977-05-19 2024-10-11 00:44:55.000 1977-05-19 2024-10-11 00:44:55 +2696 2696 2697 269.6 539.2 2696 1977-05-20 2024-10-11 00:44:56.000 1977-05-20 2024-10-11 00:44:56 +2697 2697 2698 269.7 539.4 2697 1977-05-21 2024-10-11 00:44:57.000 1977-05-21 2024-10-11 00:44:57 +2698 2698 2699 269.8 539.6 2698 1977-05-22 2024-10-11 00:44:58.000 1977-05-22 2024-10-11 00:44:58 +2699 2699 2700 269.9 539.8000000000001 2699 1977-05-23 2024-10-11 00:44:59.000 1977-05-23 2024-10-11 00:44:59 +2700 2700 2701 270 540 2700 1977-05-24 2024-10-11 00:45:00.000 1977-05-24 2024-10-11 00:45:00 +2701 2701 2702 270.1 540.2 2701 1977-05-25 2024-10-11 00:45:01.000 1977-05-25 2024-10-11 00:45:01 +2702 2702 2703 270.2 540.4 2702 1977-05-26 2024-10-11 00:45:02.000 1977-05-26 2024-10-11 00:45:02 +2703 2703 2704 270.3 540.6 2703 1977-05-27 2024-10-11 00:45:03.000 1977-05-27 2024-10-11 00:45:03 +2704 2704 2705 270.4 540.8000000000001 2704 1977-05-28 2024-10-11 00:45:04.000 1977-05-28 2024-10-11 00:45:04 +2705 2705 2706 270.5 541 2705 1977-05-29 2024-10-11 00:45:05.000 1977-05-29 2024-10-11 00:45:05 +2706 2706 2707 270.6 541.2 2706 1977-05-30 2024-10-11 00:45:06.000 1977-05-30 2024-10-11 00:45:06 +2707 2707 2708 270.7 541.4 2707 1977-05-31 2024-10-11 00:45:07.000 1977-05-31 2024-10-11 00:45:07 +2708 2708 2709 270.8 541.6 2708 1977-06-01 2024-10-11 00:45:08.000 1977-06-01 2024-10-11 00:45:08 +2709 2709 2710 270.9 541.8000000000001 2709 1977-06-02 2024-10-11 00:45:09.000 1977-06-02 2024-10-11 00:45:09 +2710 2710 2711 271 542 2710 1977-06-03 2024-10-11 00:45:10.000 1977-06-03 2024-10-11 00:45:10 +2711 2711 2712 271.1 542.2 2711 1977-06-04 2024-10-11 00:45:11.000 1977-06-04 2024-10-11 00:45:11 +2712 2712 2713 271.2 542.4 2712 1977-06-05 2024-10-11 00:45:12.000 1977-06-05 2024-10-11 00:45:12 +2713 2713 2714 271.3 542.6 2713 1977-06-06 2024-10-11 00:45:13.000 1977-06-06 2024-10-11 00:45:13 +2714 2714 2715 271.4 542.8000000000001 2714 1977-06-07 2024-10-11 00:45:14.000 1977-06-07 2024-10-11 00:45:14 +2715 2715 2716 271.5 543 2715 1977-06-08 2024-10-11 00:45:15.000 1977-06-08 2024-10-11 00:45:15 +2716 2716 2717 271.6 543.2 2716 1977-06-09 2024-10-11 00:45:16.000 1977-06-09 2024-10-11 00:45:16 +2717 2717 2718 271.7 543.4 2717 1977-06-10 2024-10-11 00:45:17.000 1977-06-10 2024-10-11 00:45:17 +2718 2718 2719 271.8 543.6 2718 1977-06-11 2024-10-11 00:45:18.000 1977-06-11 2024-10-11 00:45:18 +2719 2719 2720 271.9 543.8000000000001 2719 1977-06-12 2024-10-11 00:45:19.000 1977-06-12 2024-10-11 00:45:19 +2720 2720 2721 272 544 2720 1977-06-13 2024-10-11 00:45:20.000 1977-06-13 2024-10-11 00:45:20 +2721 2721 2722 272.1 544.2 2721 1977-06-14 2024-10-11 00:45:21.000 1977-06-14 2024-10-11 00:45:21 +2722 2722 2723 272.2 544.4 2722 1977-06-15 2024-10-11 00:45:22.000 1977-06-15 2024-10-11 00:45:22 +2723 2723 2724 272.3 544.6 2723 1977-06-16 2024-10-11 00:45:23.000 1977-06-16 2024-10-11 00:45:23 +2724 2724 2725 272.4 544.8000000000001 2724 1977-06-17 2024-10-11 00:45:24.000 1977-06-17 2024-10-11 00:45:24 +2725 2725 2726 272.5 545 2725 1977-06-18 2024-10-11 00:45:25.000 1977-06-18 2024-10-11 00:45:25 +2726 2726 2727 272.6 545.2 2726 1977-06-19 2024-10-11 00:45:26.000 1977-06-19 2024-10-11 00:45:26 +2727 2727 2728 272.7 545.4 2727 1977-06-20 2024-10-11 00:45:27.000 1977-06-20 2024-10-11 00:45:27 +2728 2728 2729 272.8 545.6 2728 1977-06-21 2024-10-11 00:45:28.000 1977-06-21 2024-10-11 00:45:28 +2729 2729 2730 272.9 545.8000000000001 2729 1977-06-22 2024-10-11 00:45:29.000 1977-06-22 2024-10-11 00:45:29 +2730 2730 2731 273 546 2730 1977-06-23 2024-10-11 00:45:30.000 1977-06-23 2024-10-11 00:45:30 +2731 2731 2732 273.1 546.2 2731 1977-06-24 2024-10-11 00:45:31.000 1977-06-24 2024-10-11 00:45:31 +2732 2732 2733 273.2 546.4 2732 1977-06-25 2024-10-11 00:45:32.000 1977-06-25 2024-10-11 00:45:32 +2733 2733 2734 273.3 546.6 2733 1977-06-26 2024-10-11 00:45:33.000 1977-06-26 2024-10-11 00:45:33 +2734 2734 2735 273.4 546.8000000000001 2734 1977-06-27 2024-10-11 00:45:34.000 1977-06-27 2024-10-11 00:45:34 +2735 2735 2736 273.5 547 2735 1977-06-28 2024-10-11 00:45:35.000 1977-06-28 2024-10-11 00:45:35 +2736 2736 2737 273.6 547.2 2736 1977-06-29 2024-10-11 00:45:36.000 1977-06-29 2024-10-11 00:45:36 +2737 2737 2738 273.7 547.4 2737 1977-06-30 2024-10-11 00:45:37.000 1977-06-30 2024-10-11 00:45:37 +2738 2738 2739 273.8 547.6 2738 1977-07-01 2024-10-11 00:45:38.000 1977-07-01 2024-10-11 00:45:38 +2739 2739 2740 273.9 547.8000000000001 2739 1977-07-02 2024-10-11 00:45:39.000 1977-07-02 2024-10-11 00:45:39 +2740 2740 2741 274 548 2740 1977-07-03 2024-10-11 00:45:40.000 1977-07-03 2024-10-11 00:45:40 +2741 2741 2742 274.1 548.2 2741 1977-07-04 2024-10-11 00:45:41.000 1977-07-04 2024-10-11 00:45:41 +2742 2742 2743 274.2 548.4 2742 1977-07-05 2024-10-11 00:45:42.000 1977-07-05 2024-10-11 00:45:42 +2743 2743 2744 274.3 548.6 2743 1977-07-06 2024-10-11 00:45:43.000 1977-07-06 2024-10-11 00:45:43 +2744 2744 2745 274.4 548.8000000000001 2744 1977-07-07 2024-10-11 00:45:44.000 1977-07-07 2024-10-11 00:45:44 +2745 2745 2746 274.5 549 2745 1977-07-08 2024-10-11 00:45:45.000 1977-07-08 2024-10-11 00:45:45 +2746 2746 2747 274.6 549.2 2746 1977-07-09 2024-10-11 00:45:46.000 1977-07-09 2024-10-11 00:45:46 +2747 2747 2748 274.7 549.4 2747 1977-07-10 2024-10-11 00:45:47.000 1977-07-10 2024-10-11 00:45:47 +2748 2748 2749 274.8 549.6 2748 1977-07-11 2024-10-11 00:45:48.000 1977-07-11 2024-10-11 00:45:48 +2749 2749 2750 274.9 549.8000000000001 2749 1977-07-12 2024-10-11 00:45:49.000 1977-07-12 2024-10-11 00:45:49 +2750 2750 2751 275 550 2750 1977-07-13 2024-10-11 00:45:50.000 1977-07-13 2024-10-11 00:45:50 +2751 2751 2752 275.1 550.2 2751 1977-07-14 2024-10-11 00:45:51.000 1977-07-14 2024-10-11 00:45:51 +2752 2752 2753 275.2 550.4 2752 1977-07-15 2024-10-11 00:45:52.000 1977-07-15 2024-10-11 00:45:52 +2753 2753 2754 275.3 550.6 2753 1977-07-16 2024-10-11 00:45:53.000 1977-07-16 2024-10-11 00:45:53 +2754 2754 2755 275.4 550.8000000000001 2754 1977-07-17 2024-10-11 00:45:54.000 1977-07-17 2024-10-11 00:45:54 +2755 2755 2756 275.5 551 2755 1977-07-18 2024-10-11 00:45:55.000 1977-07-18 2024-10-11 00:45:55 +2756 2756 2757 275.6 551.2 2756 1977-07-19 2024-10-11 00:45:56.000 1977-07-19 2024-10-11 00:45:56 +2757 2757 2758 275.7 551.4 2757 1977-07-20 2024-10-11 00:45:57.000 1977-07-20 2024-10-11 00:45:57 +2758 2758 2759 275.8 551.6 2758 1977-07-21 2024-10-11 00:45:58.000 1977-07-21 2024-10-11 00:45:58 +2759 2759 2760 275.9 551.8000000000001 2759 1977-07-22 2024-10-11 00:45:59.000 1977-07-22 2024-10-11 00:45:59 +2760 2760 2761 276 552 2760 1977-07-23 2024-10-11 00:46:00.000 1977-07-23 2024-10-11 00:46:00 +2761 2761 2762 276.1 552.2 2761 1977-07-24 2024-10-11 00:46:01.000 1977-07-24 2024-10-11 00:46:01 +2762 2762 2763 276.2 552.4 2762 1977-07-25 2024-10-11 00:46:02.000 1977-07-25 2024-10-11 00:46:02 +2763 2763 2764 276.3 552.6 2763 1977-07-26 2024-10-11 00:46:03.000 1977-07-26 2024-10-11 00:46:03 +2764 2764 2765 276.4 552.8000000000001 2764 1977-07-27 2024-10-11 00:46:04.000 1977-07-27 2024-10-11 00:46:04 +2765 2765 2766 276.5 553 2765 1977-07-28 2024-10-11 00:46:05.000 1977-07-28 2024-10-11 00:46:05 +2766 2766 2767 276.6 553.2 2766 1977-07-29 2024-10-11 00:46:06.000 1977-07-29 2024-10-11 00:46:06 +2767 2767 2768 276.7 553.4 2767 1977-07-30 2024-10-11 00:46:07.000 1977-07-30 2024-10-11 00:46:07 +2768 2768 2769 276.8 553.6 2768 1977-07-31 2024-10-11 00:46:08.000 1977-07-31 2024-10-11 00:46:08 +2769 2769 2770 276.9 553.8000000000001 2769 1977-08-01 2024-10-11 00:46:09.000 1977-08-01 2024-10-11 00:46:09 +2770 2770 2771 277 554 2770 1977-08-02 2024-10-11 00:46:10.000 1977-08-02 2024-10-11 00:46:10 +2771 2771 2772 277.1 554.2 2771 1977-08-03 2024-10-11 00:46:11.000 1977-08-03 2024-10-11 00:46:11 +2772 2772 2773 277.2 554.4 2772 1977-08-04 2024-10-11 00:46:12.000 1977-08-04 2024-10-11 00:46:12 +2773 2773 2774 277.3 554.6 2773 1977-08-05 2024-10-11 00:46:13.000 1977-08-05 2024-10-11 00:46:13 +2774 2774 2775 277.4 554.8000000000001 2774 1977-08-06 2024-10-11 00:46:14.000 1977-08-06 2024-10-11 00:46:14 +2775 2775 2776 277.5 555 2775 1977-08-07 2024-10-11 00:46:15.000 1977-08-07 2024-10-11 00:46:15 +2776 2776 2777 277.6 555.2 2776 1977-08-08 2024-10-11 00:46:16.000 1977-08-08 2024-10-11 00:46:16 +2777 2777 2778 277.7 555.4 2777 1977-08-09 2024-10-11 00:46:17.000 1977-08-09 2024-10-11 00:46:17 +2778 2778 2779 277.8 555.6 2778 1977-08-10 2024-10-11 00:46:18.000 1977-08-10 2024-10-11 00:46:18 +2779 2779 2780 277.9 555.8000000000001 2779 1977-08-11 2024-10-11 00:46:19.000 1977-08-11 2024-10-11 00:46:19 +2780 2780 2781 278 556 2780 1977-08-12 2024-10-11 00:46:20.000 1977-08-12 2024-10-11 00:46:20 +2781 2781 2782 278.1 556.2 2781 1977-08-13 2024-10-11 00:46:21.000 1977-08-13 2024-10-11 00:46:21 +2782 2782 2783 278.2 556.4 2782 1977-08-14 2024-10-11 00:46:22.000 1977-08-14 2024-10-11 00:46:22 +2783 2783 2784 278.3 556.6 2783 1977-08-15 2024-10-11 00:46:23.000 1977-08-15 2024-10-11 00:46:23 +2784 2784 2785 278.4 556.8000000000001 2784 1977-08-16 2024-10-11 00:46:24.000 1977-08-16 2024-10-11 00:46:24 +2785 2785 2786 278.5 557 2785 1977-08-17 2024-10-11 00:46:25.000 1977-08-17 2024-10-11 00:46:25 +2786 2786 2787 278.6 557.2 2786 1977-08-18 2024-10-11 00:46:26.000 1977-08-18 2024-10-11 00:46:26 +2787 2787 2788 278.7 557.4 2787 1977-08-19 2024-10-11 00:46:27.000 1977-08-19 2024-10-11 00:46:27 +2788 2788 2789 278.8 557.6 2788 1977-08-20 2024-10-11 00:46:28.000 1977-08-20 2024-10-11 00:46:28 +2789 2789 2790 278.9 557.8000000000001 2789 1977-08-21 2024-10-11 00:46:29.000 1977-08-21 2024-10-11 00:46:29 +2790 2790 2791 279 558 2790 1977-08-22 2024-10-11 00:46:30.000 1977-08-22 2024-10-11 00:46:30 +2791 2791 2792 279.1 558.2 2791 1977-08-23 2024-10-11 00:46:31.000 1977-08-23 2024-10-11 00:46:31 +2792 2792 2793 279.2 558.4 2792 1977-08-24 2024-10-11 00:46:32.000 1977-08-24 2024-10-11 00:46:32 +2793 2793 2794 279.3 558.6 2793 1977-08-25 2024-10-11 00:46:33.000 1977-08-25 2024-10-11 00:46:33 +2794 2794 2795 279.4 558.8000000000001 2794 1977-08-26 2024-10-11 00:46:34.000 1977-08-26 2024-10-11 00:46:34 +2795 2795 2796 279.5 559 2795 1977-08-27 2024-10-11 00:46:35.000 1977-08-27 2024-10-11 00:46:35 +2796 2796 2797 279.6 559.2 2796 1977-08-28 2024-10-11 00:46:36.000 1977-08-28 2024-10-11 00:46:36 +2797 2797 2798 279.7 559.4 2797 1977-08-29 2024-10-11 00:46:37.000 1977-08-29 2024-10-11 00:46:37 +2798 2798 2799 279.8 559.6 2798 1977-08-30 2024-10-11 00:46:38.000 1977-08-30 2024-10-11 00:46:38 +2799 2799 2800 279.9 559.8000000000001 2799 1977-08-31 2024-10-11 00:46:39.000 1977-08-31 2024-10-11 00:46:39 +2800 2800 2801 280 560 2800 1977-09-01 2024-10-11 00:46:40.000 1977-09-01 2024-10-11 00:46:40 +2801 2801 2802 280.1 560.2 2801 1977-09-02 2024-10-11 00:46:41.000 1977-09-02 2024-10-11 00:46:41 +2802 2802 2803 280.2 560.4 2802 1977-09-03 2024-10-11 00:46:42.000 1977-09-03 2024-10-11 00:46:42 +2803 2803 2804 280.3 560.6 2803 1977-09-04 2024-10-11 00:46:43.000 1977-09-04 2024-10-11 00:46:43 +2804 2804 2805 280.4 560.8000000000001 2804 1977-09-05 2024-10-11 00:46:44.000 1977-09-05 2024-10-11 00:46:44 +2805 2805 2806 280.5 561 2805 1977-09-06 2024-10-11 00:46:45.000 1977-09-06 2024-10-11 00:46:45 +2806 2806 2807 280.6 561.2 2806 1977-09-07 2024-10-11 00:46:46.000 1977-09-07 2024-10-11 00:46:46 +2807 2807 2808 280.7 561.4 2807 1977-09-08 2024-10-11 00:46:47.000 1977-09-08 2024-10-11 00:46:47 +2808 2808 2809 280.8 561.6 2808 1977-09-09 2024-10-11 00:46:48.000 1977-09-09 2024-10-11 00:46:48 +2809 2809 2810 280.9 561.8000000000001 2809 1977-09-10 2024-10-11 00:46:49.000 1977-09-10 2024-10-11 00:46:49 +2810 2810 2811 281 562 2810 1977-09-11 2024-10-11 00:46:50.000 1977-09-11 2024-10-11 00:46:50 +2811 2811 2812 281.1 562.2 2811 1977-09-12 2024-10-11 00:46:51.000 1977-09-12 2024-10-11 00:46:51 +2812 2812 2813 281.2 562.4 2812 1977-09-13 2024-10-11 00:46:52.000 1977-09-13 2024-10-11 00:46:52 +2813 2813 2814 281.3 562.6 2813 1977-09-14 2024-10-11 00:46:53.000 1977-09-14 2024-10-11 00:46:53 +2814 2814 2815 281.4 562.8000000000001 2814 1977-09-15 2024-10-11 00:46:54.000 1977-09-15 2024-10-11 00:46:54 +2815 2815 2816 281.5 563 2815 1977-09-16 2024-10-11 00:46:55.000 1977-09-16 2024-10-11 00:46:55 +2816 2816 2817 281.6 563.2 2816 1977-09-17 2024-10-11 00:46:56.000 1977-09-17 2024-10-11 00:46:56 +2817 2817 2818 281.7 563.4 2817 1977-09-18 2024-10-11 00:46:57.000 1977-09-18 2024-10-11 00:46:57 +2818 2818 2819 281.8 563.6 2818 1977-09-19 2024-10-11 00:46:58.000 1977-09-19 2024-10-11 00:46:58 +2819 2819 2820 281.9 563.8000000000001 2819 1977-09-20 2024-10-11 00:46:59.000 1977-09-20 2024-10-11 00:46:59 +2820 2820 2821 282 564 2820 1977-09-21 2024-10-11 00:47:00.000 1977-09-21 2024-10-11 00:47:00 +2821 2821 2822 282.1 564.2 2821 1977-09-22 2024-10-11 00:47:01.000 1977-09-22 2024-10-11 00:47:01 +2822 2822 2823 282.2 564.4 2822 1977-09-23 2024-10-11 00:47:02.000 1977-09-23 2024-10-11 00:47:02 +2823 2823 2824 282.3 564.6 2823 1977-09-24 2024-10-11 00:47:03.000 1977-09-24 2024-10-11 00:47:03 +2824 2824 2825 282.4 564.8000000000001 2824 1977-09-25 2024-10-11 00:47:04.000 1977-09-25 2024-10-11 00:47:04 +2825 2825 2826 282.5 565 2825 1977-09-26 2024-10-11 00:47:05.000 1977-09-26 2024-10-11 00:47:05 +2826 2826 2827 282.6 565.2 2826 1977-09-27 2024-10-11 00:47:06.000 1977-09-27 2024-10-11 00:47:06 +2827 2827 2828 282.7 565.4 2827 1977-09-28 2024-10-11 00:47:07.000 1977-09-28 2024-10-11 00:47:07 +2828 2828 2829 282.8 565.6 2828 1977-09-29 2024-10-11 00:47:08.000 1977-09-29 2024-10-11 00:47:08 +2829 2829 2830 282.9 565.8000000000001 2829 1977-09-30 2024-10-11 00:47:09.000 1977-09-30 2024-10-11 00:47:09 +2830 2830 2831 283 566 2830 1977-10-01 2024-10-11 00:47:10.000 1977-10-01 2024-10-11 00:47:10 +2831 2831 2832 283.1 566.2 2831 1977-10-02 2024-10-11 00:47:11.000 1977-10-02 2024-10-11 00:47:11 +2832 2832 2833 283.2 566.4 2832 1977-10-03 2024-10-11 00:47:12.000 1977-10-03 2024-10-11 00:47:12 +2833 2833 2834 283.3 566.6 2833 1977-10-04 2024-10-11 00:47:13.000 1977-10-04 2024-10-11 00:47:13 +2834 2834 2835 283.4 566.8000000000001 2834 1977-10-05 2024-10-11 00:47:14.000 1977-10-05 2024-10-11 00:47:14 +2835 2835 2836 283.5 567 2835 1977-10-06 2024-10-11 00:47:15.000 1977-10-06 2024-10-11 00:47:15 +2836 2836 2837 283.6 567.2 2836 1977-10-07 2024-10-11 00:47:16.000 1977-10-07 2024-10-11 00:47:16 +2837 2837 2838 283.7 567.4 2837 1977-10-08 2024-10-11 00:47:17.000 1977-10-08 2024-10-11 00:47:17 +2838 2838 2839 283.8 567.6 2838 1977-10-09 2024-10-11 00:47:18.000 1977-10-09 2024-10-11 00:47:18 +2839 2839 2840 283.9 567.8000000000001 2839 1977-10-10 2024-10-11 00:47:19.000 1977-10-10 2024-10-11 00:47:19 +2840 2840 2841 284 568 2840 1977-10-11 2024-10-11 00:47:20.000 1977-10-11 2024-10-11 00:47:20 +2841 2841 2842 284.1 568.2 2841 1977-10-12 2024-10-11 00:47:21.000 1977-10-12 2024-10-11 00:47:21 +2842 2842 2843 284.2 568.4 2842 1977-10-13 2024-10-11 00:47:22.000 1977-10-13 2024-10-11 00:47:22 +2843 2843 2844 284.3 568.6 2843 1977-10-14 2024-10-11 00:47:23.000 1977-10-14 2024-10-11 00:47:23 +2844 2844 2845 284.4 568.8000000000001 2844 1977-10-15 2024-10-11 00:47:24.000 1977-10-15 2024-10-11 00:47:24 +2845 2845 2846 284.5 569 2845 1977-10-16 2024-10-11 00:47:25.000 1977-10-16 2024-10-11 00:47:25 +2846 2846 2847 284.6 569.2 2846 1977-10-17 2024-10-11 00:47:26.000 1977-10-17 2024-10-11 00:47:26 +2847 2847 2848 284.7 569.4 2847 1977-10-18 2024-10-11 00:47:27.000 1977-10-18 2024-10-11 00:47:27 +2848 2848 2849 284.8 569.6 2848 1977-10-19 2024-10-11 00:47:28.000 1977-10-19 2024-10-11 00:47:28 +2849 2849 2850 284.9 569.8000000000001 2849 1977-10-20 2024-10-11 00:47:29.000 1977-10-20 2024-10-11 00:47:29 +2850 2850 2851 285 570 2850 1977-10-21 2024-10-11 00:47:30.000 1977-10-21 2024-10-11 00:47:30 +2851 2851 2852 285.1 570.2 2851 1977-10-22 2024-10-11 00:47:31.000 1977-10-22 2024-10-11 00:47:31 +2852 2852 2853 285.2 570.4 2852 1977-10-23 2024-10-11 00:47:32.000 1977-10-23 2024-10-11 00:47:32 +2853 2853 2854 285.3 570.6 2853 1977-10-24 2024-10-11 00:47:33.000 1977-10-24 2024-10-11 00:47:33 +2854 2854 2855 285.4 570.8000000000001 2854 1977-10-25 2024-10-11 00:47:34.000 1977-10-25 2024-10-11 00:47:34 +2855 2855 2856 285.5 571 2855 1977-10-26 2024-10-11 00:47:35.000 1977-10-26 2024-10-11 00:47:35 +2856 2856 2857 285.6 571.2 2856 1977-10-27 2024-10-11 00:47:36.000 1977-10-27 2024-10-11 00:47:36 +2857 2857 2858 285.7 571.4 2857 1977-10-28 2024-10-11 00:47:37.000 1977-10-28 2024-10-11 00:47:37 +2858 2858 2859 285.8 571.6 2858 1977-10-29 2024-10-11 00:47:38.000 1977-10-29 2024-10-11 00:47:38 +2859 2859 2860 285.9 571.8000000000001 2859 1977-10-30 2024-10-11 00:47:39.000 1977-10-30 2024-10-11 00:47:39 +2860 2860 2861 286 572 2860 1977-10-31 2024-10-11 00:47:40.000 1977-10-31 2024-10-11 00:47:40 +2861 2861 2862 286.1 572.2 2861 1977-11-01 2024-10-11 00:47:41.000 1977-11-01 2024-10-11 00:47:41 +2862 2862 2863 286.2 572.4 2862 1977-11-02 2024-10-11 00:47:42.000 1977-11-02 2024-10-11 00:47:42 +2863 2863 2864 286.3 572.6 2863 1977-11-03 2024-10-11 00:47:43.000 1977-11-03 2024-10-11 00:47:43 +2864 2864 2865 286.4 572.8000000000001 2864 1977-11-04 2024-10-11 00:47:44.000 1977-11-04 2024-10-11 00:47:44 +2865 2865 2866 286.5 573 2865 1977-11-05 2024-10-11 00:47:45.000 1977-11-05 2024-10-11 00:47:45 +2866 2866 2867 286.6 573.2 2866 1977-11-06 2024-10-11 00:47:46.000 1977-11-06 2024-10-11 00:47:46 +2867 2867 2868 286.7 573.4 2867 1977-11-07 2024-10-11 00:47:47.000 1977-11-07 2024-10-11 00:47:47 +2868 2868 2869 286.8 573.6 2868 1977-11-08 2024-10-11 00:47:48.000 1977-11-08 2024-10-11 00:47:48 +2869 2869 2870 286.9 573.8000000000001 2869 1977-11-09 2024-10-11 00:47:49.000 1977-11-09 2024-10-11 00:47:49 +2870 2870 2871 287 574 2870 1977-11-10 2024-10-11 00:47:50.000 1977-11-10 2024-10-11 00:47:50 +2871 2871 2872 287.1 574.2 2871 1977-11-11 2024-10-11 00:47:51.000 1977-11-11 2024-10-11 00:47:51 +2872 2872 2873 287.2 574.4 2872 1977-11-12 2024-10-11 00:47:52.000 1977-11-12 2024-10-11 00:47:52 +2873 2873 2874 287.3 574.6 2873 1977-11-13 2024-10-11 00:47:53.000 1977-11-13 2024-10-11 00:47:53 +2874 2874 2875 287.4 574.8000000000001 2874 1977-11-14 2024-10-11 00:47:54.000 1977-11-14 2024-10-11 00:47:54 +2875 2875 2876 287.5 575 2875 1977-11-15 2024-10-11 00:47:55.000 1977-11-15 2024-10-11 00:47:55 +2876 2876 2877 287.6 575.2 2876 1977-11-16 2024-10-11 00:47:56.000 1977-11-16 2024-10-11 00:47:56 +2877 2877 2878 287.7 575.4 2877 1977-11-17 2024-10-11 00:47:57.000 1977-11-17 2024-10-11 00:47:57 +2878 2878 2879 287.8 575.6 2878 1977-11-18 2024-10-11 00:47:58.000 1977-11-18 2024-10-11 00:47:58 +2879 2879 2880 287.9 575.8000000000001 2879 1977-11-19 2024-10-11 00:47:59.000 1977-11-19 2024-10-11 00:47:59 +2880 2880 2881 288 576 2880 1977-11-20 2024-10-11 00:48:00.000 1977-11-20 2024-10-11 00:48:00 +2881 2881 2882 288.1 576.2 2881 1977-11-21 2024-10-11 00:48:01.000 1977-11-21 2024-10-11 00:48:01 +2882 2882 2883 288.2 576.4 2882 1977-11-22 2024-10-11 00:48:02.000 1977-11-22 2024-10-11 00:48:02 +2883 2883 2884 288.3 576.6 2883 1977-11-23 2024-10-11 00:48:03.000 1977-11-23 2024-10-11 00:48:03 +2884 2884 2885 288.4 576.8000000000001 2884 1977-11-24 2024-10-11 00:48:04.000 1977-11-24 2024-10-11 00:48:04 +2885 2885 2886 288.5 577 2885 1977-11-25 2024-10-11 00:48:05.000 1977-11-25 2024-10-11 00:48:05 +2886 2886 2887 288.6 577.2 2886 1977-11-26 2024-10-11 00:48:06.000 1977-11-26 2024-10-11 00:48:06 +2887 2887 2888 288.7 577.4 2887 1977-11-27 2024-10-11 00:48:07.000 1977-11-27 2024-10-11 00:48:07 +2888 2888 2889 288.8 577.6 2888 1977-11-28 2024-10-11 00:48:08.000 1977-11-28 2024-10-11 00:48:08 +2889 2889 2890 288.9 577.8000000000001 2889 1977-11-29 2024-10-11 00:48:09.000 1977-11-29 2024-10-11 00:48:09 +2890 2890 2891 289 578 2890 1977-11-30 2024-10-11 00:48:10.000 1977-11-30 2024-10-11 00:48:10 +2891 2891 2892 289.1 578.2 2891 1977-12-01 2024-10-11 00:48:11.000 1977-12-01 2024-10-11 00:48:11 +2892 2892 2893 289.2 578.4 2892 1977-12-02 2024-10-11 00:48:12.000 1977-12-02 2024-10-11 00:48:12 +2893 2893 2894 289.3 578.6 2893 1977-12-03 2024-10-11 00:48:13.000 1977-12-03 2024-10-11 00:48:13 +2894 2894 2895 289.4 578.8000000000001 2894 1977-12-04 2024-10-11 00:48:14.000 1977-12-04 2024-10-11 00:48:14 +2895 2895 2896 289.5 579 2895 1977-12-05 2024-10-11 00:48:15.000 1977-12-05 2024-10-11 00:48:15 +2896 2896 2897 289.6 579.2 2896 1977-12-06 2024-10-11 00:48:16.000 1977-12-06 2024-10-11 00:48:16 +2897 2897 2898 289.7 579.4 2897 1977-12-07 2024-10-11 00:48:17.000 1977-12-07 2024-10-11 00:48:17 +2898 2898 2899 289.8 579.6 2898 1977-12-08 2024-10-11 00:48:18.000 1977-12-08 2024-10-11 00:48:18 +2899 2899 2900 289.9 579.8000000000001 2899 1977-12-09 2024-10-11 00:48:19.000 1977-12-09 2024-10-11 00:48:19 +2900 2900 2901 290 580 2900 1977-12-10 2024-10-11 00:48:20.000 1977-12-10 2024-10-11 00:48:20 +2901 2901 2902 290.1 580.2 2901 1977-12-11 2024-10-11 00:48:21.000 1977-12-11 2024-10-11 00:48:21 +2902 2902 2903 290.2 580.4 2902 1977-12-12 2024-10-11 00:48:22.000 1977-12-12 2024-10-11 00:48:22 +2903 2903 2904 290.3 580.6 2903 1977-12-13 2024-10-11 00:48:23.000 1977-12-13 2024-10-11 00:48:23 +2904 2904 2905 290.4 580.8000000000001 2904 1977-12-14 2024-10-11 00:48:24.000 1977-12-14 2024-10-11 00:48:24 +2905 2905 2906 290.5 581 2905 1977-12-15 2024-10-11 00:48:25.000 1977-12-15 2024-10-11 00:48:25 +2906 2906 2907 290.6 581.2 2906 1977-12-16 2024-10-11 00:48:26.000 1977-12-16 2024-10-11 00:48:26 +2907 2907 2908 290.7 581.4 2907 1977-12-17 2024-10-11 00:48:27.000 1977-12-17 2024-10-11 00:48:27 +2908 2908 2909 290.8 581.6 2908 1977-12-18 2024-10-11 00:48:28.000 1977-12-18 2024-10-11 00:48:28 +2909 2909 2910 290.9 581.8000000000001 2909 1977-12-19 2024-10-11 00:48:29.000 1977-12-19 2024-10-11 00:48:29 +2910 2910 2911 291 582 2910 1977-12-20 2024-10-11 00:48:30.000 1977-12-20 2024-10-11 00:48:30 +2911 2911 2912 291.1 582.2 2911 1977-12-21 2024-10-11 00:48:31.000 1977-12-21 2024-10-11 00:48:31 +2912 2912 2913 291.2 582.4 2912 1977-12-22 2024-10-11 00:48:32.000 1977-12-22 2024-10-11 00:48:32 +2913 2913 2914 291.3 582.6 2913 1977-12-23 2024-10-11 00:48:33.000 1977-12-23 2024-10-11 00:48:33 +2914 2914 2915 291.4 582.8000000000001 2914 1977-12-24 2024-10-11 00:48:34.000 1977-12-24 2024-10-11 00:48:34 +2915 2915 2916 291.5 583 2915 1977-12-25 2024-10-11 00:48:35.000 1977-12-25 2024-10-11 00:48:35 +2916 2916 2917 291.6 583.2 2916 1977-12-26 2024-10-11 00:48:36.000 1977-12-26 2024-10-11 00:48:36 +2917 2917 2918 291.7 583.4 2917 1977-12-27 2024-10-11 00:48:37.000 1977-12-27 2024-10-11 00:48:37 +2918 2918 2919 291.8 583.6 2918 1977-12-28 2024-10-11 00:48:38.000 1977-12-28 2024-10-11 00:48:38 +2919 2919 2920 291.9 583.8000000000001 2919 1977-12-29 2024-10-11 00:48:39.000 1977-12-29 2024-10-11 00:48:39 +2920 2920 2921 292 584 2920 1977-12-30 2024-10-11 00:48:40.000 1977-12-30 2024-10-11 00:48:40 +2921 2921 2922 292.1 584.2 2921 1977-12-31 2024-10-11 00:48:41.000 1977-12-31 2024-10-11 00:48:41 +2922 2922 2923 292.2 584.4 2922 1978-01-01 2024-10-11 00:48:42.000 1978-01-01 2024-10-11 00:48:42 +2923 2923 2924 292.3 584.6 2923 1978-01-02 2024-10-11 00:48:43.000 1978-01-02 2024-10-11 00:48:43 +2924 2924 2925 292.4 584.8000000000001 2924 1978-01-03 2024-10-11 00:48:44.000 1978-01-03 2024-10-11 00:48:44 +2925 2925 2926 292.5 585 2925 1978-01-04 2024-10-11 00:48:45.000 1978-01-04 2024-10-11 00:48:45 +2926 2926 2927 292.6 585.2 2926 1978-01-05 2024-10-11 00:48:46.000 1978-01-05 2024-10-11 00:48:46 +2927 2927 2928 292.7 585.4 2927 1978-01-06 2024-10-11 00:48:47.000 1978-01-06 2024-10-11 00:48:47 +2928 2928 2929 292.8 585.6 2928 1978-01-07 2024-10-11 00:48:48.000 1978-01-07 2024-10-11 00:48:48 +2929 2929 2930 292.9 585.8000000000001 2929 1978-01-08 2024-10-11 00:48:49.000 1978-01-08 2024-10-11 00:48:49 +2930 2930 2931 293 586 2930 1978-01-09 2024-10-11 00:48:50.000 1978-01-09 2024-10-11 00:48:50 +2931 2931 2932 293.1 586.2 2931 1978-01-10 2024-10-11 00:48:51.000 1978-01-10 2024-10-11 00:48:51 +2932 2932 2933 293.2 586.4 2932 1978-01-11 2024-10-11 00:48:52.000 1978-01-11 2024-10-11 00:48:52 +2933 2933 2934 293.3 586.6 2933 1978-01-12 2024-10-11 00:48:53.000 1978-01-12 2024-10-11 00:48:53 +2934 2934 2935 293.4 586.8000000000001 2934 1978-01-13 2024-10-11 00:48:54.000 1978-01-13 2024-10-11 00:48:54 +2935 2935 2936 293.5 587 2935 1978-01-14 2024-10-11 00:48:55.000 1978-01-14 2024-10-11 00:48:55 +2936 2936 2937 293.6 587.2 2936 1978-01-15 2024-10-11 00:48:56.000 1978-01-15 2024-10-11 00:48:56 +2937 2937 2938 293.7 587.4 2937 1978-01-16 2024-10-11 00:48:57.000 1978-01-16 2024-10-11 00:48:57 +2938 2938 2939 293.8 587.6 2938 1978-01-17 2024-10-11 00:48:58.000 1978-01-17 2024-10-11 00:48:58 +2939 2939 2940 293.9 587.8000000000001 2939 1978-01-18 2024-10-11 00:48:59.000 1978-01-18 2024-10-11 00:48:59 +2940 2940 2941 294 588 2940 1978-01-19 2024-10-11 00:49:00.000 1978-01-19 2024-10-11 00:49:00 +2941 2941 2942 294.1 588.2 2941 1978-01-20 2024-10-11 00:49:01.000 1978-01-20 2024-10-11 00:49:01 +2942 2942 2943 294.2 588.4 2942 1978-01-21 2024-10-11 00:49:02.000 1978-01-21 2024-10-11 00:49:02 +2943 2943 2944 294.3 588.6 2943 1978-01-22 2024-10-11 00:49:03.000 1978-01-22 2024-10-11 00:49:03 +2944 2944 2945 294.4 588.8000000000001 2944 1978-01-23 2024-10-11 00:49:04.000 1978-01-23 2024-10-11 00:49:04 +2945 2945 2946 294.5 589 2945 1978-01-24 2024-10-11 00:49:05.000 1978-01-24 2024-10-11 00:49:05 +2946 2946 2947 294.6 589.2 2946 1978-01-25 2024-10-11 00:49:06.000 1978-01-25 2024-10-11 00:49:06 +2947 2947 2948 294.7 589.4 2947 1978-01-26 2024-10-11 00:49:07.000 1978-01-26 2024-10-11 00:49:07 +2948 2948 2949 294.8 589.6 2948 1978-01-27 2024-10-11 00:49:08.000 1978-01-27 2024-10-11 00:49:08 +2949 2949 2950 294.9 589.8000000000001 2949 1978-01-28 2024-10-11 00:49:09.000 1978-01-28 2024-10-11 00:49:09 +2950 2950 2951 295 590 2950 1978-01-29 2024-10-11 00:49:10.000 1978-01-29 2024-10-11 00:49:10 +2951 2951 2952 295.1 590.2 2951 1978-01-30 2024-10-11 00:49:11.000 1978-01-30 2024-10-11 00:49:11 +2952 2952 2953 295.2 590.4 2952 1978-01-31 2024-10-11 00:49:12.000 1978-01-31 2024-10-11 00:49:12 +2953 2953 2954 295.3 590.6 2953 1978-02-01 2024-10-11 00:49:13.000 1978-02-01 2024-10-11 00:49:13 +2954 2954 2955 295.4 590.8000000000001 2954 1978-02-02 2024-10-11 00:49:14.000 1978-02-02 2024-10-11 00:49:14 +2955 2955 2956 295.5 591 2955 1978-02-03 2024-10-11 00:49:15.000 1978-02-03 2024-10-11 00:49:15 +2956 2956 2957 295.6 591.2 2956 1978-02-04 2024-10-11 00:49:16.000 1978-02-04 2024-10-11 00:49:16 +2957 2957 2958 295.7 591.4 2957 1978-02-05 2024-10-11 00:49:17.000 1978-02-05 2024-10-11 00:49:17 +2958 2958 2959 295.8 591.6 2958 1978-02-06 2024-10-11 00:49:18.000 1978-02-06 2024-10-11 00:49:18 +2959 2959 2960 295.9 591.8000000000001 2959 1978-02-07 2024-10-11 00:49:19.000 1978-02-07 2024-10-11 00:49:19 +2960 2960 2961 296 592 2960 1978-02-08 2024-10-11 00:49:20.000 1978-02-08 2024-10-11 00:49:20 +2961 2961 2962 296.1 592.2 2961 1978-02-09 2024-10-11 00:49:21.000 1978-02-09 2024-10-11 00:49:21 +2962 2962 2963 296.2 592.4 2962 1978-02-10 2024-10-11 00:49:22.000 1978-02-10 2024-10-11 00:49:22 +2963 2963 2964 296.3 592.6 2963 1978-02-11 2024-10-11 00:49:23.000 1978-02-11 2024-10-11 00:49:23 +2964 2964 2965 296.4 592.8000000000001 2964 1978-02-12 2024-10-11 00:49:24.000 1978-02-12 2024-10-11 00:49:24 +2965 2965 2966 296.5 593 2965 1978-02-13 2024-10-11 00:49:25.000 1978-02-13 2024-10-11 00:49:25 +2966 2966 2967 296.6 593.2 2966 1978-02-14 2024-10-11 00:49:26.000 1978-02-14 2024-10-11 00:49:26 +2967 2967 2968 296.7 593.4 2967 1978-02-15 2024-10-11 00:49:27.000 1978-02-15 2024-10-11 00:49:27 +2968 2968 2969 296.8 593.6 2968 1978-02-16 2024-10-11 00:49:28.000 1978-02-16 2024-10-11 00:49:28 +2969 2969 2970 296.9 593.8000000000001 2969 1978-02-17 2024-10-11 00:49:29.000 1978-02-17 2024-10-11 00:49:29 +2970 2970 2971 297 594 2970 1978-02-18 2024-10-11 00:49:30.000 1978-02-18 2024-10-11 00:49:30 +2971 2971 2972 297.1 594.2 2971 1978-02-19 2024-10-11 00:49:31.000 1978-02-19 2024-10-11 00:49:31 +2972 2972 2973 297.2 594.4 2972 1978-02-20 2024-10-11 00:49:32.000 1978-02-20 2024-10-11 00:49:32 +2973 2973 2974 297.3 594.6 2973 1978-02-21 2024-10-11 00:49:33.000 1978-02-21 2024-10-11 00:49:33 +2974 2974 2975 297.4 594.8000000000001 2974 1978-02-22 2024-10-11 00:49:34.000 1978-02-22 2024-10-11 00:49:34 +2975 2975 2976 297.5 595 2975 1978-02-23 2024-10-11 00:49:35.000 1978-02-23 2024-10-11 00:49:35 +2976 2976 2977 297.6 595.2 2976 1978-02-24 2024-10-11 00:49:36.000 1978-02-24 2024-10-11 00:49:36 +2977 2977 2978 297.7 595.4 2977 1978-02-25 2024-10-11 00:49:37.000 1978-02-25 2024-10-11 00:49:37 +2978 2978 2979 297.8 595.6 2978 1978-02-26 2024-10-11 00:49:38.000 1978-02-26 2024-10-11 00:49:38 +2979 2979 2980 297.9 595.8000000000001 2979 1978-02-27 2024-10-11 00:49:39.000 1978-02-27 2024-10-11 00:49:39 +2980 2980 2981 298 596 2980 1978-02-28 2024-10-11 00:49:40.000 1978-02-28 2024-10-11 00:49:40 +2981 2981 2982 298.1 596.2 2981 1978-03-01 2024-10-11 00:49:41.000 1978-03-01 2024-10-11 00:49:41 +2982 2982 2983 298.2 596.4 2982 1978-03-02 2024-10-11 00:49:42.000 1978-03-02 2024-10-11 00:49:42 +2983 2983 2984 298.3 596.6 2983 1978-03-03 2024-10-11 00:49:43.000 1978-03-03 2024-10-11 00:49:43 +2984 2984 2985 298.4 596.8000000000001 2984 1978-03-04 2024-10-11 00:49:44.000 1978-03-04 2024-10-11 00:49:44 +2985 2985 2986 298.5 597 2985 1978-03-05 2024-10-11 00:49:45.000 1978-03-05 2024-10-11 00:49:45 +2986 2986 2987 298.6 597.2 2986 1978-03-06 2024-10-11 00:49:46.000 1978-03-06 2024-10-11 00:49:46 +2987 2987 2988 298.7 597.4 2987 1978-03-07 2024-10-11 00:49:47.000 1978-03-07 2024-10-11 00:49:47 +2988 2988 2989 298.8 597.6 2988 1978-03-08 2024-10-11 00:49:48.000 1978-03-08 2024-10-11 00:49:48 +2989 2989 2990 298.9 597.8000000000001 2989 1978-03-09 2024-10-11 00:49:49.000 1978-03-09 2024-10-11 00:49:49 +2990 2990 2991 299 598 2990 1978-03-10 2024-10-11 00:49:50.000 1978-03-10 2024-10-11 00:49:50 +2991 2991 2992 299.1 598.2 2991 1978-03-11 2024-10-11 00:49:51.000 1978-03-11 2024-10-11 00:49:51 +2992 2992 2993 299.2 598.4 2992 1978-03-12 2024-10-11 00:49:52.000 1978-03-12 2024-10-11 00:49:52 +2993 2993 2994 299.3 598.6 2993 1978-03-13 2024-10-11 00:49:53.000 1978-03-13 2024-10-11 00:49:53 +2994 2994 2995 299.4 598.8000000000001 2994 1978-03-14 2024-10-11 00:49:54.000 1978-03-14 2024-10-11 00:49:54 +2995 2995 2996 299.5 599 2995 1978-03-15 2024-10-11 00:49:55.000 1978-03-15 2024-10-11 00:49:55 +2996 2996 2997 299.6 599.2 2996 1978-03-16 2024-10-11 00:49:56.000 1978-03-16 2024-10-11 00:49:56 +2997 2997 2998 299.7 599.4 2997 1978-03-17 2024-10-11 00:49:57.000 1978-03-17 2024-10-11 00:49:57 +2998 2998 2999 299.8 599.6 2998 1978-03-18 2024-10-11 00:49:58.000 1978-03-18 2024-10-11 00:49:58 +2999 2999 3000 299.9 599.8000000000001 2999 1978-03-19 2024-10-11 00:49:59.000 1978-03-19 2024-10-11 00:49:59 +3000 3000 3001 300 600 3000 1978-03-20 2024-10-11 00:50:00.000 1978-03-20 2024-10-11 00:50:00 +3001 3001 3002 300.1 600.2 3001 1978-03-21 2024-10-11 00:50:01.000 1978-03-21 2024-10-11 00:50:01 +3002 3002 3003 300.2 600.4 3002 1978-03-22 2024-10-11 00:50:02.000 1978-03-22 2024-10-11 00:50:02 +3003 3003 3004 300.3 600.6 3003 1978-03-23 2024-10-11 00:50:03.000 1978-03-23 2024-10-11 00:50:03 +3004 3004 3005 300.4 600.8000000000001 3004 1978-03-24 2024-10-11 00:50:04.000 1978-03-24 2024-10-11 00:50:04 +3005 3005 3006 300.5 601 3005 1978-03-25 2024-10-11 00:50:05.000 1978-03-25 2024-10-11 00:50:05 +3006 3006 3007 300.6 601.2 3006 1978-03-26 2024-10-11 00:50:06.000 1978-03-26 2024-10-11 00:50:06 +3007 3007 3008 300.7 601.4 3007 1978-03-27 2024-10-11 00:50:07.000 1978-03-27 2024-10-11 00:50:07 +3008 3008 3009 300.8 601.6 3008 1978-03-28 2024-10-11 00:50:08.000 1978-03-28 2024-10-11 00:50:08 +3009 3009 3010 300.9 601.8000000000001 3009 1978-03-29 2024-10-11 00:50:09.000 1978-03-29 2024-10-11 00:50:09 +3010 3010 3011 301 602 3010 1978-03-30 2024-10-11 00:50:10.000 1978-03-30 2024-10-11 00:50:10 +3011 3011 3012 301.1 602.2 3011 1978-03-31 2024-10-11 00:50:11.000 1978-03-31 2024-10-11 00:50:11 +3012 3012 3013 301.2 602.4 3012 1978-04-01 2024-10-11 00:50:12.000 1978-04-01 2024-10-11 00:50:12 +3013 3013 3014 301.3 602.6 3013 1978-04-02 2024-10-11 00:50:13.000 1978-04-02 2024-10-11 00:50:13 +3014 3014 3015 301.4 602.8000000000001 3014 1978-04-03 2024-10-11 00:50:14.000 1978-04-03 2024-10-11 00:50:14 +3015 3015 3016 301.5 603 3015 1978-04-04 2024-10-11 00:50:15.000 1978-04-04 2024-10-11 00:50:15 +3016 3016 3017 301.6 603.2 3016 1978-04-05 2024-10-11 00:50:16.000 1978-04-05 2024-10-11 00:50:16 +3017 3017 3018 301.7 603.4 3017 1978-04-06 2024-10-11 00:50:17.000 1978-04-06 2024-10-11 00:50:17 +3018 3018 3019 301.8 603.6 3018 1978-04-07 2024-10-11 00:50:18.000 1978-04-07 2024-10-11 00:50:18 +3019 3019 3020 301.9 603.8000000000001 3019 1978-04-08 2024-10-11 00:50:19.000 1978-04-08 2024-10-11 00:50:19 +3020 3020 3021 302 604 3020 1978-04-09 2024-10-11 00:50:20.000 1978-04-09 2024-10-11 00:50:20 +3021 3021 3022 302.1 604.2 3021 1978-04-10 2024-10-11 00:50:21.000 1978-04-10 2024-10-11 00:50:21 +3022 3022 3023 302.2 604.4 3022 1978-04-11 2024-10-11 00:50:22.000 1978-04-11 2024-10-11 00:50:22 +3023 3023 3024 302.3 604.6 3023 1978-04-12 2024-10-11 00:50:23.000 1978-04-12 2024-10-11 00:50:23 +3024 3024 3025 302.4 604.8000000000001 3024 1978-04-13 2024-10-11 00:50:24.000 1978-04-13 2024-10-11 00:50:24 +3025 3025 3026 302.5 605 3025 1978-04-14 2024-10-11 00:50:25.000 1978-04-14 2024-10-11 00:50:25 +3026 3026 3027 302.6 605.2 3026 1978-04-15 2024-10-11 00:50:26.000 1978-04-15 2024-10-11 00:50:26 +3027 3027 3028 302.7 605.4 3027 1978-04-16 2024-10-11 00:50:27.000 1978-04-16 2024-10-11 00:50:27 +3028 3028 3029 302.8 605.6 3028 1978-04-17 2024-10-11 00:50:28.000 1978-04-17 2024-10-11 00:50:28 +3029 3029 3030 302.9 605.8000000000001 3029 1978-04-18 2024-10-11 00:50:29.000 1978-04-18 2024-10-11 00:50:29 +3030 3030 3031 303 606 3030 1978-04-19 2024-10-11 00:50:30.000 1978-04-19 2024-10-11 00:50:30 +3031 3031 3032 303.1 606.2 3031 1978-04-20 2024-10-11 00:50:31.000 1978-04-20 2024-10-11 00:50:31 +3032 3032 3033 303.2 606.4 3032 1978-04-21 2024-10-11 00:50:32.000 1978-04-21 2024-10-11 00:50:32 +3033 3033 3034 303.3 606.6 3033 1978-04-22 2024-10-11 00:50:33.000 1978-04-22 2024-10-11 00:50:33 +3034 3034 3035 303.4 606.8000000000001 3034 1978-04-23 2024-10-11 00:50:34.000 1978-04-23 2024-10-11 00:50:34 +3035 3035 3036 303.5 607 3035 1978-04-24 2024-10-11 00:50:35.000 1978-04-24 2024-10-11 00:50:35 +3036 3036 3037 303.6 607.2 3036 1978-04-25 2024-10-11 00:50:36.000 1978-04-25 2024-10-11 00:50:36 +3037 3037 3038 303.7 607.4 3037 1978-04-26 2024-10-11 00:50:37.000 1978-04-26 2024-10-11 00:50:37 +3038 3038 3039 303.8 607.6 3038 1978-04-27 2024-10-11 00:50:38.000 1978-04-27 2024-10-11 00:50:38 +3039 3039 3040 303.9 607.8000000000001 3039 1978-04-28 2024-10-11 00:50:39.000 1978-04-28 2024-10-11 00:50:39 +3040 3040 3041 304 608 3040 1978-04-29 2024-10-11 00:50:40.000 1978-04-29 2024-10-11 00:50:40 +3041 3041 3042 304.1 608.2 3041 1978-04-30 2024-10-11 00:50:41.000 1978-04-30 2024-10-11 00:50:41 +3042 3042 3043 304.2 608.4 3042 1978-05-01 2024-10-11 00:50:42.000 1978-05-01 2024-10-11 00:50:42 +3043 3043 3044 304.3 608.6 3043 1978-05-02 2024-10-11 00:50:43.000 1978-05-02 2024-10-11 00:50:43 +3044 3044 3045 304.4 608.8000000000001 3044 1978-05-03 2024-10-11 00:50:44.000 1978-05-03 2024-10-11 00:50:44 +3045 3045 3046 304.5 609 3045 1978-05-04 2024-10-11 00:50:45.000 1978-05-04 2024-10-11 00:50:45 +3046 3046 3047 304.6 609.2 3046 1978-05-05 2024-10-11 00:50:46.000 1978-05-05 2024-10-11 00:50:46 +3047 3047 3048 304.7 609.4 3047 1978-05-06 2024-10-11 00:50:47.000 1978-05-06 2024-10-11 00:50:47 +3048 3048 3049 304.8 609.6 3048 1978-05-07 2024-10-11 00:50:48.000 1978-05-07 2024-10-11 00:50:48 +3049 3049 3050 304.9 609.8000000000001 3049 1978-05-08 2024-10-11 00:50:49.000 1978-05-08 2024-10-11 00:50:49 +3050 3050 3051 305 610 3050 1978-05-09 2024-10-11 00:50:50.000 1978-05-09 2024-10-11 00:50:50 +3051 3051 3052 305.1 610.2 3051 1978-05-10 2024-10-11 00:50:51.000 1978-05-10 2024-10-11 00:50:51 +3052 3052 3053 305.2 610.4 3052 1978-05-11 2024-10-11 00:50:52.000 1978-05-11 2024-10-11 00:50:52 +3053 3053 3054 305.3 610.6 3053 1978-05-12 2024-10-11 00:50:53.000 1978-05-12 2024-10-11 00:50:53 +3054 3054 3055 305.4 610.8000000000001 3054 1978-05-13 2024-10-11 00:50:54.000 1978-05-13 2024-10-11 00:50:54 +3055 3055 3056 305.5 611 3055 1978-05-14 2024-10-11 00:50:55.000 1978-05-14 2024-10-11 00:50:55 +3056 3056 3057 305.6 611.2 3056 1978-05-15 2024-10-11 00:50:56.000 1978-05-15 2024-10-11 00:50:56 +3057 3057 3058 305.7 611.4 3057 1978-05-16 2024-10-11 00:50:57.000 1978-05-16 2024-10-11 00:50:57 +3058 3058 3059 305.8 611.6 3058 1978-05-17 2024-10-11 00:50:58.000 1978-05-17 2024-10-11 00:50:58 +3059 3059 3060 305.9 611.8000000000001 3059 1978-05-18 2024-10-11 00:50:59.000 1978-05-18 2024-10-11 00:50:59 +3060 3060 3061 306 612 3060 1978-05-19 2024-10-11 00:51:00.000 1978-05-19 2024-10-11 00:51:00 +3061 3061 3062 306.1 612.2 3061 1978-05-20 2024-10-11 00:51:01.000 1978-05-20 2024-10-11 00:51:01 +3062 3062 3063 306.2 612.4 3062 1978-05-21 2024-10-11 00:51:02.000 1978-05-21 2024-10-11 00:51:02 +3063 3063 3064 306.3 612.6 3063 1978-05-22 2024-10-11 00:51:03.000 1978-05-22 2024-10-11 00:51:03 +3064 3064 3065 306.4 612.8000000000001 3064 1978-05-23 2024-10-11 00:51:04.000 1978-05-23 2024-10-11 00:51:04 +3065 3065 3066 306.5 613 3065 1978-05-24 2024-10-11 00:51:05.000 1978-05-24 2024-10-11 00:51:05 +3066 3066 3067 306.6 613.2 3066 1978-05-25 2024-10-11 00:51:06.000 1978-05-25 2024-10-11 00:51:06 +3067 3067 3068 306.7 613.4 3067 1978-05-26 2024-10-11 00:51:07.000 1978-05-26 2024-10-11 00:51:07 +3068 3068 3069 306.8 613.6 3068 1978-05-27 2024-10-11 00:51:08.000 1978-05-27 2024-10-11 00:51:08 +3069 3069 3070 306.9 613.8000000000001 3069 1978-05-28 2024-10-11 00:51:09.000 1978-05-28 2024-10-11 00:51:09 +3070 3070 3071 307 614 3070 1978-05-29 2024-10-11 00:51:10.000 1978-05-29 2024-10-11 00:51:10 +3071 3071 3072 307.1 614.2 3071 1978-05-30 2024-10-11 00:51:11.000 1978-05-30 2024-10-11 00:51:11 +3072 3072 3073 307.2 614.4000000000001 3072 1978-05-31 2024-10-11 00:51:12.000 1978-05-31 2024-10-11 00:51:12 +3073 3073 3074 307.3 614.6 3073 1978-06-01 2024-10-11 00:51:13.000 1978-06-01 2024-10-11 00:51:13 +3074 3074 3075 307.4 614.8000000000001 3074 1978-06-02 2024-10-11 00:51:14.000 1978-06-02 2024-10-11 00:51:14 +3075 3075 3076 307.5 615 3075 1978-06-03 2024-10-11 00:51:15.000 1978-06-03 2024-10-11 00:51:15 +3076 3076 3077 307.6 615.2 3076 1978-06-04 2024-10-11 00:51:16.000 1978-06-04 2024-10-11 00:51:16 +3077 3077 3078 307.7 615.4000000000001 3077 1978-06-05 2024-10-11 00:51:17.000 1978-06-05 2024-10-11 00:51:17 +3078 3078 3079 307.8 615.6 3078 1978-06-06 2024-10-11 00:51:18.000 1978-06-06 2024-10-11 00:51:18 +3079 3079 3080 307.9 615.8000000000001 3079 1978-06-07 2024-10-11 00:51:19.000 1978-06-07 2024-10-11 00:51:19 +3080 3080 3081 308 616 3080 1978-06-08 2024-10-11 00:51:20.000 1978-06-08 2024-10-11 00:51:20 +3081 3081 3082 308.1 616.2 3081 1978-06-09 2024-10-11 00:51:21.000 1978-06-09 2024-10-11 00:51:21 +3082 3082 3083 308.2 616.4000000000001 3082 1978-06-10 2024-10-11 00:51:22.000 1978-06-10 2024-10-11 00:51:22 +3083 3083 3084 308.3 616.6 3083 1978-06-11 2024-10-11 00:51:23.000 1978-06-11 2024-10-11 00:51:23 +3084 3084 3085 308.4 616.8000000000001 3084 1978-06-12 2024-10-11 00:51:24.000 1978-06-12 2024-10-11 00:51:24 +3085 3085 3086 308.5 617 3085 1978-06-13 2024-10-11 00:51:25.000 1978-06-13 2024-10-11 00:51:25 +3086 3086 3087 308.6 617.2 3086 1978-06-14 2024-10-11 00:51:26.000 1978-06-14 2024-10-11 00:51:26 +3087 3087 3088 308.7 617.4000000000001 3087 1978-06-15 2024-10-11 00:51:27.000 1978-06-15 2024-10-11 00:51:27 +3088 3088 3089 308.8 617.6 3088 1978-06-16 2024-10-11 00:51:28.000 1978-06-16 2024-10-11 00:51:28 +3089 3089 3090 308.9 617.8000000000001 3089 1978-06-17 2024-10-11 00:51:29.000 1978-06-17 2024-10-11 00:51:29 +3090 3090 3091 309 618 3090 1978-06-18 2024-10-11 00:51:30.000 1978-06-18 2024-10-11 00:51:30 +3091 3091 3092 309.1 618.2 3091 1978-06-19 2024-10-11 00:51:31.000 1978-06-19 2024-10-11 00:51:31 +3092 3092 3093 309.2 618.4000000000001 3092 1978-06-20 2024-10-11 00:51:32.000 1978-06-20 2024-10-11 00:51:32 +3093 3093 3094 309.3 618.6 3093 1978-06-21 2024-10-11 00:51:33.000 1978-06-21 2024-10-11 00:51:33 +3094 3094 3095 309.4 618.8000000000001 3094 1978-06-22 2024-10-11 00:51:34.000 1978-06-22 2024-10-11 00:51:34 +3095 3095 3096 309.5 619 3095 1978-06-23 2024-10-11 00:51:35.000 1978-06-23 2024-10-11 00:51:35 +3096 3096 3097 309.6 619.2 3096 1978-06-24 2024-10-11 00:51:36.000 1978-06-24 2024-10-11 00:51:36 +3097 3097 3098 309.7 619.4000000000001 3097 1978-06-25 2024-10-11 00:51:37.000 1978-06-25 2024-10-11 00:51:37 +3098 3098 3099 309.8 619.6 3098 1978-06-26 2024-10-11 00:51:38.000 1978-06-26 2024-10-11 00:51:38 +3099 3099 3100 309.9 619.8000000000001 3099 1978-06-27 2024-10-11 00:51:39.000 1978-06-27 2024-10-11 00:51:39 +3100 3100 3101 310 620 3100 1978-06-28 2024-10-11 00:51:40.000 1978-06-28 2024-10-11 00:51:40 +3101 3101 3102 310.1 620.2 3101 1978-06-29 2024-10-11 00:51:41.000 1978-06-29 2024-10-11 00:51:41 +3102 3102 3103 310.2 620.4000000000001 3102 1978-06-30 2024-10-11 00:51:42.000 1978-06-30 2024-10-11 00:51:42 +3103 3103 3104 310.3 620.6 3103 1978-07-01 2024-10-11 00:51:43.000 1978-07-01 2024-10-11 00:51:43 +3104 3104 3105 310.4 620.8000000000001 3104 1978-07-02 2024-10-11 00:51:44.000 1978-07-02 2024-10-11 00:51:44 +3105 3105 3106 310.5 621 3105 1978-07-03 2024-10-11 00:51:45.000 1978-07-03 2024-10-11 00:51:45 +3106 3106 3107 310.6 621.2 3106 1978-07-04 2024-10-11 00:51:46.000 1978-07-04 2024-10-11 00:51:46 +3107 3107 3108 310.7 621.4000000000001 3107 1978-07-05 2024-10-11 00:51:47.000 1978-07-05 2024-10-11 00:51:47 +3108 3108 3109 310.8 621.6 3108 1978-07-06 2024-10-11 00:51:48.000 1978-07-06 2024-10-11 00:51:48 +3109 3109 3110 310.9 621.8000000000001 3109 1978-07-07 2024-10-11 00:51:49.000 1978-07-07 2024-10-11 00:51:49 +3110 3110 3111 311 622 3110 1978-07-08 2024-10-11 00:51:50.000 1978-07-08 2024-10-11 00:51:50 +3111 3111 3112 311.1 622.2 3111 1978-07-09 2024-10-11 00:51:51.000 1978-07-09 2024-10-11 00:51:51 +3112 3112 3113 311.2 622.4000000000001 3112 1978-07-10 2024-10-11 00:51:52.000 1978-07-10 2024-10-11 00:51:52 +3113 3113 3114 311.3 622.6 3113 1978-07-11 2024-10-11 00:51:53.000 1978-07-11 2024-10-11 00:51:53 +3114 3114 3115 311.4 622.8000000000001 3114 1978-07-12 2024-10-11 00:51:54.000 1978-07-12 2024-10-11 00:51:54 +3115 3115 3116 311.5 623 3115 1978-07-13 2024-10-11 00:51:55.000 1978-07-13 2024-10-11 00:51:55 +3116 3116 3117 311.6 623.2 3116 1978-07-14 2024-10-11 00:51:56.000 1978-07-14 2024-10-11 00:51:56 +3117 3117 3118 311.7 623.4000000000001 3117 1978-07-15 2024-10-11 00:51:57.000 1978-07-15 2024-10-11 00:51:57 +3118 3118 3119 311.8 623.6 3118 1978-07-16 2024-10-11 00:51:58.000 1978-07-16 2024-10-11 00:51:58 +3119 3119 3120 311.9 623.8000000000001 3119 1978-07-17 2024-10-11 00:51:59.000 1978-07-17 2024-10-11 00:51:59 +3120 3120 3121 312 624 3120 1978-07-18 2024-10-11 00:52:00.000 1978-07-18 2024-10-11 00:52:00 +3121 3121 3122 312.1 624.2 3121 1978-07-19 2024-10-11 00:52:01.000 1978-07-19 2024-10-11 00:52:01 +3122 3122 3123 312.2 624.4000000000001 3122 1978-07-20 2024-10-11 00:52:02.000 1978-07-20 2024-10-11 00:52:02 +3123 3123 3124 312.3 624.6 3123 1978-07-21 2024-10-11 00:52:03.000 1978-07-21 2024-10-11 00:52:03 +3124 3124 3125 312.4 624.8000000000001 3124 1978-07-22 2024-10-11 00:52:04.000 1978-07-22 2024-10-11 00:52:04 +3125 3125 3126 312.5 625 3125 1978-07-23 2024-10-11 00:52:05.000 1978-07-23 2024-10-11 00:52:05 +3126 3126 3127 312.6 625.2 3126 1978-07-24 2024-10-11 00:52:06.000 1978-07-24 2024-10-11 00:52:06 +3127 3127 3128 312.7 625.4000000000001 3127 1978-07-25 2024-10-11 00:52:07.000 1978-07-25 2024-10-11 00:52:07 +3128 3128 3129 312.8 625.6 3128 1978-07-26 2024-10-11 00:52:08.000 1978-07-26 2024-10-11 00:52:08 +3129 3129 3130 312.9 625.8000000000001 3129 1978-07-27 2024-10-11 00:52:09.000 1978-07-27 2024-10-11 00:52:09 +3130 3130 3131 313 626 3130 1978-07-28 2024-10-11 00:52:10.000 1978-07-28 2024-10-11 00:52:10 +3131 3131 3132 313.1 626.2 3131 1978-07-29 2024-10-11 00:52:11.000 1978-07-29 2024-10-11 00:52:11 +3132 3132 3133 313.2 626.4000000000001 3132 1978-07-30 2024-10-11 00:52:12.000 1978-07-30 2024-10-11 00:52:12 +3133 3133 3134 313.3 626.6 3133 1978-07-31 2024-10-11 00:52:13.000 1978-07-31 2024-10-11 00:52:13 +3134 3134 3135 313.4 626.8000000000001 3134 1978-08-01 2024-10-11 00:52:14.000 1978-08-01 2024-10-11 00:52:14 +3135 3135 3136 313.5 627 3135 1978-08-02 2024-10-11 00:52:15.000 1978-08-02 2024-10-11 00:52:15 +3136 3136 3137 313.6 627.2 3136 1978-08-03 2024-10-11 00:52:16.000 1978-08-03 2024-10-11 00:52:16 +3137 3137 3138 313.7 627.4000000000001 3137 1978-08-04 2024-10-11 00:52:17.000 1978-08-04 2024-10-11 00:52:17 +3138 3138 3139 313.8 627.6 3138 1978-08-05 2024-10-11 00:52:18.000 1978-08-05 2024-10-11 00:52:18 +3139 3139 3140 313.9 627.8000000000001 3139 1978-08-06 2024-10-11 00:52:19.000 1978-08-06 2024-10-11 00:52:19 +3140 3140 3141 314 628 3140 1978-08-07 2024-10-11 00:52:20.000 1978-08-07 2024-10-11 00:52:20 +3141 3141 3142 314.1 628.2 3141 1978-08-08 2024-10-11 00:52:21.000 1978-08-08 2024-10-11 00:52:21 +3142 3142 3143 314.2 628.4000000000001 3142 1978-08-09 2024-10-11 00:52:22.000 1978-08-09 2024-10-11 00:52:22 +3143 3143 3144 314.3 628.6 3143 1978-08-10 2024-10-11 00:52:23.000 1978-08-10 2024-10-11 00:52:23 +3144 3144 3145 314.4 628.8000000000001 3144 1978-08-11 2024-10-11 00:52:24.000 1978-08-11 2024-10-11 00:52:24 +3145 3145 3146 314.5 629 3145 1978-08-12 2024-10-11 00:52:25.000 1978-08-12 2024-10-11 00:52:25 +3146 3146 3147 314.6 629.2 3146 1978-08-13 2024-10-11 00:52:26.000 1978-08-13 2024-10-11 00:52:26 +3147 3147 3148 314.7 629.4000000000001 3147 1978-08-14 2024-10-11 00:52:27.000 1978-08-14 2024-10-11 00:52:27 +3148 3148 3149 314.8 629.6 3148 1978-08-15 2024-10-11 00:52:28.000 1978-08-15 2024-10-11 00:52:28 +3149 3149 3150 314.9 629.8000000000001 3149 1978-08-16 2024-10-11 00:52:29.000 1978-08-16 2024-10-11 00:52:29 +3150 3150 3151 315 630 3150 1978-08-17 2024-10-11 00:52:30.000 1978-08-17 2024-10-11 00:52:30 +3151 3151 3152 315.1 630.2 3151 1978-08-18 2024-10-11 00:52:31.000 1978-08-18 2024-10-11 00:52:31 +3152 3152 3153 315.2 630.4000000000001 3152 1978-08-19 2024-10-11 00:52:32.000 1978-08-19 2024-10-11 00:52:32 +3153 3153 3154 315.3 630.6 3153 1978-08-20 2024-10-11 00:52:33.000 1978-08-20 2024-10-11 00:52:33 +3154 3154 3155 315.4 630.8000000000001 3154 1978-08-21 2024-10-11 00:52:34.000 1978-08-21 2024-10-11 00:52:34 +3155 3155 3156 315.5 631 3155 1978-08-22 2024-10-11 00:52:35.000 1978-08-22 2024-10-11 00:52:35 +3156 3156 3157 315.6 631.2 3156 1978-08-23 2024-10-11 00:52:36.000 1978-08-23 2024-10-11 00:52:36 +3157 3157 3158 315.7 631.4000000000001 3157 1978-08-24 2024-10-11 00:52:37.000 1978-08-24 2024-10-11 00:52:37 +3158 3158 3159 315.8 631.6 3158 1978-08-25 2024-10-11 00:52:38.000 1978-08-25 2024-10-11 00:52:38 +3159 3159 3160 315.9 631.8000000000001 3159 1978-08-26 2024-10-11 00:52:39.000 1978-08-26 2024-10-11 00:52:39 +3160 3160 3161 316 632 3160 1978-08-27 2024-10-11 00:52:40.000 1978-08-27 2024-10-11 00:52:40 +3161 3161 3162 316.1 632.2 3161 1978-08-28 2024-10-11 00:52:41.000 1978-08-28 2024-10-11 00:52:41 +3162 3162 3163 316.2 632.4000000000001 3162 1978-08-29 2024-10-11 00:52:42.000 1978-08-29 2024-10-11 00:52:42 +3163 3163 3164 316.3 632.6 3163 1978-08-30 2024-10-11 00:52:43.000 1978-08-30 2024-10-11 00:52:43 +3164 3164 3165 316.4 632.8000000000001 3164 1978-08-31 2024-10-11 00:52:44.000 1978-08-31 2024-10-11 00:52:44 +3165 3165 3166 316.5 633 3165 1978-09-01 2024-10-11 00:52:45.000 1978-09-01 2024-10-11 00:52:45 +3166 3166 3167 316.6 633.2 3166 1978-09-02 2024-10-11 00:52:46.000 1978-09-02 2024-10-11 00:52:46 +3167 3167 3168 316.7 633.4000000000001 3167 1978-09-03 2024-10-11 00:52:47.000 1978-09-03 2024-10-11 00:52:47 +3168 3168 3169 316.8 633.6 3168 1978-09-04 2024-10-11 00:52:48.000 1978-09-04 2024-10-11 00:52:48 +3169 3169 3170 316.9 633.8000000000001 3169 1978-09-05 2024-10-11 00:52:49.000 1978-09-05 2024-10-11 00:52:49 +3170 3170 3171 317 634 3170 1978-09-06 2024-10-11 00:52:50.000 1978-09-06 2024-10-11 00:52:50 +3171 3171 3172 317.1 634.2 3171 1978-09-07 2024-10-11 00:52:51.000 1978-09-07 2024-10-11 00:52:51 +3172 3172 3173 317.2 634.4000000000001 3172 1978-09-08 2024-10-11 00:52:52.000 1978-09-08 2024-10-11 00:52:52 +3173 3173 3174 317.3 634.6 3173 1978-09-09 2024-10-11 00:52:53.000 1978-09-09 2024-10-11 00:52:53 +3174 3174 3175 317.4 634.8000000000001 3174 1978-09-10 2024-10-11 00:52:54.000 1978-09-10 2024-10-11 00:52:54 +3175 3175 3176 317.5 635 3175 1978-09-11 2024-10-11 00:52:55.000 1978-09-11 2024-10-11 00:52:55 +3176 3176 3177 317.6 635.2 3176 1978-09-12 2024-10-11 00:52:56.000 1978-09-12 2024-10-11 00:52:56 +3177 3177 3178 317.7 635.4000000000001 3177 1978-09-13 2024-10-11 00:52:57.000 1978-09-13 2024-10-11 00:52:57 +3178 3178 3179 317.8 635.6 3178 1978-09-14 2024-10-11 00:52:58.000 1978-09-14 2024-10-11 00:52:58 +3179 3179 3180 317.9 635.8000000000001 3179 1978-09-15 2024-10-11 00:52:59.000 1978-09-15 2024-10-11 00:52:59 +3180 3180 3181 318 636 3180 1978-09-16 2024-10-11 00:53:00.000 1978-09-16 2024-10-11 00:53:00 +3181 3181 3182 318.1 636.2 3181 1978-09-17 2024-10-11 00:53:01.000 1978-09-17 2024-10-11 00:53:01 +3182 3182 3183 318.2 636.4000000000001 3182 1978-09-18 2024-10-11 00:53:02.000 1978-09-18 2024-10-11 00:53:02 +3183 3183 3184 318.3 636.6 3183 1978-09-19 2024-10-11 00:53:03.000 1978-09-19 2024-10-11 00:53:03 +3184 3184 3185 318.4 636.8000000000001 3184 1978-09-20 2024-10-11 00:53:04.000 1978-09-20 2024-10-11 00:53:04 +3185 3185 3186 318.5 637 3185 1978-09-21 2024-10-11 00:53:05.000 1978-09-21 2024-10-11 00:53:05 +3186 3186 3187 318.6 637.2 3186 1978-09-22 2024-10-11 00:53:06.000 1978-09-22 2024-10-11 00:53:06 +3187 3187 3188 318.7 637.4000000000001 3187 1978-09-23 2024-10-11 00:53:07.000 1978-09-23 2024-10-11 00:53:07 +3188 3188 3189 318.8 637.6 3188 1978-09-24 2024-10-11 00:53:08.000 1978-09-24 2024-10-11 00:53:08 +3189 3189 3190 318.9 637.8000000000001 3189 1978-09-25 2024-10-11 00:53:09.000 1978-09-25 2024-10-11 00:53:09 +3190 3190 3191 319 638 3190 1978-09-26 2024-10-11 00:53:10.000 1978-09-26 2024-10-11 00:53:10 +3191 3191 3192 319.1 638.2 3191 1978-09-27 2024-10-11 00:53:11.000 1978-09-27 2024-10-11 00:53:11 +3192 3192 3193 319.2 638.4000000000001 3192 1978-09-28 2024-10-11 00:53:12.000 1978-09-28 2024-10-11 00:53:12 +3193 3193 3194 319.3 638.6 3193 1978-09-29 2024-10-11 00:53:13.000 1978-09-29 2024-10-11 00:53:13 +3194 3194 3195 319.4 638.8000000000001 3194 1978-09-30 2024-10-11 00:53:14.000 1978-09-30 2024-10-11 00:53:14 +3195 3195 3196 319.5 639 3195 1978-10-01 2024-10-11 00:53:15.000 1978-10-01 2024-10-11 00:53:15 +3196 3196 3197 319.6 639.2 3196 1978-10-02 2024-10-11 00:53:16.000 1978-10-02 2024-10-11 00:53:16 +3197 3197 3198 319.7 639.4000000000001 3197 1978-10-03 2024-10-11 00:53:17.000 1978-10-03 2024-10-11 00:53:17 +3198 3198 3199 319.8 639.6 3198 1978-10-04 2024-10-11 00:53:18.000 1978-10-04 2024-10-11 00:53:18 +3199 3199 3200 319.9 639.8000000000001 3199 1978-10-05 2024-10-11 00:53:19.000 1978-10-05 2024-10-11 00:53:19 +3200 3200 3201 320 640 3200 1978-10-06 2024-10-11 00:53:20.000 1978-10-06 2024-10-11 00:53:20 +3201 3201 3202 320.1 640.2 3201 1978-10-07 2024-10-11 00:53:21.000 1978-10-07 2024-10-11 00:53:21 +3202 3202 3203 320.2 640.4000000000001 3202 1978-10-08 2024-10-11 00:53:22.000 1978-10-08 2024-10-11 00:53:22 +3203 3203 3204 320.3 640.6 3203 1978-10-09 2024-10-11 00:53:23.000 1978-10-09 2024-10-11 00:53:23 +3204 3204 3205 320.4 640.8000000000001 3204 1978-10-10 2024-10-11 00:53:24.000 1978-10-10 2024-10-11 00:53:24 +3205 3205 3206 320.5 641 3205 1978-10-11 2024-10-11 00:53:25.000 1978-10-11 2024-10-11 00:53:25 +3206 3206 3207 320.6 641.2 3206 1978-10-12 2024-10-11 00:53:26.000 1978-10-12 2024-10-11 00:53:26 +3207 3207 3208 320.7 641.4000000000001 3207 1978-10-13 2024-10-11 00:53:27.000 1978-10-13 2024-10-11 00:53:27 +3208 3208 3209 320.8 641.6 3208 1978-10-14 2024-10-11 00:53:28.000 1978-10-14 2024-10-11 00:53:28 +3209 3209 3210 320.9 641.8000000000001 3209 1978-10-15 2024-10-11 00:53:29.000 1978-10-15 2024-10-11 00:53:29 +3210 3210 3211 321 642 3210 1978-10-16 2024-10-11 00:53:30.000 1978-10-16 2024-10-11 00:53:30 +3211 3211 3212 321.1 642.2 3211 1978-10-17 2024-10-11 00:53:31.000 1978-10-17 2024-10-11 00:53:31 +3212 3212 3213 321.2 642.4000000000001 3212 1978-10-18 2024-10-11 00:53:32.000 1978-10-18 2024-10-11 00:53:32 +3213 3213 3214 321.3 642.6 3213 1978-10-19 2024-10-11 00:53:33.000 1978-10-19 2024-10-11 00:53:33 +3214 3214 3215 321.4 642.8000000000001 3214 1978-10-20 2024-10-11 00:53:34.000 1978-10-20 2024-10-11 00:53:34 +3215 3215 3216 321.5 643 3215 1978-10-21 2024-10-11 00:53:35.000 1978-10-21 2024-10-11 00:53:35 +3216 3216 3217 321.6 643.2 3216 1978-10-22 2024-10-11 00:53:36.000 1978-10-22 2024-10-11 00:53:36 +3217 3217 3218 321.7 643.4000000000001 3217 1978-10-23 2024-10-11 00:53:37.000 1978-10-23 2024-10-11 00:53:37 +3218 3218 3219 321.8 643.6 3218 1978-10-24 2024-10-11 00:53:38.000 1978-10-24 2024-10-11 00:53:38 +3219 3219 3220 321.9 643.8000000000001 3219 1978-10-25 2024-10-11 00:53:39.000 1978-10-25 2024-10-11 00:53:39 +3220 3220 3221 322 644 3220 1978-10-26 2024-10-11 00:53:40.000 1978-10-26 2024-10-11 00:53:40 +3221 3221 3222 322.1 644.2 3221 1978-10-27 2024-10-11 00:53:41.000 1978-10-27 2024-10-11 00:53:41 +3222 3222 3223 322.2 644.4000000000001 3222 1978-10-28 2024-10-11 00:53:42.000 1978-10-28 2024-10-11 00:53:42 +3223 3223 3224 322.3 644.6 3223 1978-10-29 2024-10-11 00:53:43.000 1978-10-29 2024-10-11 00:53:43 +3224 3224 3225 322.4 644.8000000000001 3224 1978-10-30 2024-10-11 00:53:44.000 1978-10-30 2024-10-11 00:53:44 +3225 3225 3226 322.5 645 3225 1978-10-31 2024-10-11 00:53:45.000 1978-10-31 2024-10-11 00:53:45 +3226 3226 3227 322.6 645.2 3226 1978-11-01 2024-10-11 00:53:46.000 1978-11-01 2024-10-11 00:53:46 +3227 3227 3228 322.7 645.4000000000001 3227 1978-11-02 2024-10-11 00:53:47.000 1978-11-02 2024-10-11 00:53:47 +3228 3228 3229 322.8 645.6 3228 1978-11-03 2024-10-11 00:53:48.000 1978-11-03 2024-10-11 00:53:48 +3229 3229 3230 322.9 645.8000000000001 3229 1978-11-04 2024-10-11 00:53:49.000 1978-11-04 2024-10-11 00:53:49 +3230 3230 3231 323 646 3230 1978-11-05 2024-10-11 00:53:50.000 1978-11-05 2024-10-11 00:53:50 +3231 3231 3232 323.1 646.2 3231 1978-11-06 2024-10-11 00:53:51.000 1978-11-06 2024-10-11 00:53:51 +3232 3232 3233 323.2 646.4000000000001 3232 1978-11-07 2024-10-11 00:53:52.000 1978-11-07 2024-10-11 00:53:52 +3233 3233 3234 323.3 646.6 3233 1978-11-08 2024-10-11 00:53:53.000 1978-11-08 2024-10-11 00:53:53 +3234 3234 3235 323.4 646.8000000000001 3234 1978-11-09 2024-10-11 00:53:54.000 1978-11-09 2024-10-11 00:53:54 +3235 3235 3236 323.5 647 3235 1978-11-10 2024-10-11 00:53:55.000 1978-11-10 2024-10-11 00:53:55 +3236 3236 3237 323.6 647.2 3236 1978-11-11 2024-10-11 00:53:56.000 1978-11-11 2024-10-11 00:53:56 +3237 3237 3238 323.7 647.4000000000001 3237 1978-11-12 2024-10-11 00:53:57.000 1978-11-12 2024-10-11 00:53:57 +3238 3238 3239 323.8 647.6 3238 1978-11-13 2024-10-11 00:53:58.000 1978-11-13 2024-10-11 00:53:58 +3239 3239 3240 323.9 647.8000000000001 3239 1978-11-14 2024-10-11 00:53:59.000 1978-11-14 2024-10-11 00:53:59 +3240 3240 3241 324 648 3240 1978-11-15 2024-10-11 00:54:00.000 1978-11-15 2024-10-11 00:54:00 +3241 3241 3242 324.1 648.2 3241 1978-11-16 2024-10-11 00:54:01.000 1978-11-16 2024-10-11 00:54:01 +3242 3242 3243 324.2 648.4000000000001 3242 1978-11-17 2024-10-11 00:54:02.000 1978-11-17 2024-10-11 00:54:02 +3243 3243 3244 324.3 648.6 3243 1978-11-18 2024-10-11 00:54:03.000 1978-11-18 2024-10-11 00:54:03 +3244 3244 3245 324.4 648.8000000000001 3244 1978-11-19 2024-10-11 00:54:04.000 1978-11-19 2024-10-11 00:54:04 +3245 3245 3246 324.5 649 3245 1978-11-20 2024-10-11 00:54:05.000 1978-11-20 2024-10-11 00:54:05 +3246 3246 3247 324.6 649.2 3246 1978-11-21 2024-10-11 00:54:06.000 1978-11-21 2024-10-11 00:54:06 +3247 3247 3248 324.7 649.4000000000001 3247 1978-11-22 2024-10-11 00:54:07.000 1978-11-22 2024-10-11 00:54:07 +3248 3248 3249 324.8 649.6 3248 1978-11-23 2024-10-11 00:54:08.000 1978-11-23 2024-10-11 00:54:08 +3249 3249 3250 324.9 649.8000000000001 3249 1978-11-24 2024-10-11 00:54:09.000 1978-11-24 2024-10-11 00:54:09 +3250 3250 3251 325 650 3250 1978-11-25 2024-10-11 00:54:10.000 1978-11-25 2024-10-11 00:54:10 +3251 3251 3252 325.1 650.2 3251 1978-11-26 2024-10-11 00:54:11.000 1978-11-26 2024-10-11 00:54:11 +3252 3252 3253 325.2 650.4000000000001 3252 1978-11-27 2024-10-11 00:54:12.000 1978-11-27 2024-10-11 00:54:12 +3253 3253 3254 325.3 650.6 3253 1978-11-28 2024-10-11 00:54:13.000 1978-11-28 2024-10-11 00:54:13 +3254 3254 3255 325.4 650.8000000000001 3254 1978-11-29 2024-10-11 00:54:14.000 1978-11-29 2024-10-11 00:54:14 +3255 3255 3256 325.5 651 3255 1978-11-30 2024-10-11 00:54:15.000 1978-11-30 2024-10-11 00:54:15 +3256 3256 3257 325.6 651.2 3256 1978-12-01 2024-10-11 00:54:16.000 1978-12-01 2024-10-11 00:54:16 +3257 3257 3258 325.7 651.4000000000001 3257 1978-12-02 2024-10-11 00:54:17.000 1978-12-02 2024-10-11 00:54:17 +3258 3258 3259 325.8 651.6 3258 1978-12-03 2024-10-11 00:54:18.000 1978-12-03 2024-10-11 00:54:18 +3259 3259 3260 325.9 651.8000000000001 3259 1978-12-04 2024-10-11 00:54:19.000 1978-12-04 2024-10-11 00:54:19 +3260 3260 3261 326 652 3260 1978-12-05 2024-10-11 00:54:20.000 1978-12-05 2024-10-11 00:54:20 +3261 3261 3262 326.1 652.2 3261 1978-12-06 2024-10-11 00:54:21.000 1978-12-06 2024-10-11 00:54:21 +3262 3262 3263 326.2 652.4000000000001 3262 1978-12-07 2024-10-11 00:54:22.000 1978-12-07 2024-10-11 00:54:22 +3263 3263 3264 326.3 652.6 3263 1978-12-08 2024-10-11 00:54:23.000 1978-12-08 2024-10-11 00:54:23 +3264 3264 3265 326.4 652.8000000000001 3264 1978-12-09 2024-10-11 00:54:24.000 1978-12-09 2024-10-11 00:54:24 +3265 3265 3266 326.5 653 3265 1978-12-10 2024-10-11 00:54:25.000 1978-12-10 2024-10-11 00:54:25 +3266 3266 3267 326.6 653.2 3266 1978-12-11 2024-10-11 00:54:26.000 1978-12-11 2024-10-11 00:54:26 +3267 3267 3268 326.7 653.4000000000001 3267 1978-12-12 2024-10-11 00:54:27.000 1978-12-12 2024-10-11 00:54:27 +3268 3268 3269 326.8 653.6 3268 1978-12-13 2024-10-11 00:54:28.000 1978-12-13 2024-10-11 00:54:28 +3269 3269 3270 326.9 653.8000000000001 3269 1978-12-14 2024-10-11 00:54:29.000 1978-12-14 2024-10-11 00:54:29 +3270 3270 3271 327 654 3270 1978-12-15 2024-10-11 00:54:30.000 1978-12-15 2024-10-11 00:54:30 +3271 3271 3272 327.1 654.2 3271 1978-12-16 2024-10-11 00:54:31.000 1978-12-16 2024-10-11 00:54:31 +3272 3272 3273 327.2 654.4000000000001 3272 1978-12-17 2024-10-11 00:54:32.000 1978-12-17 2024-10-11 00:54:32 +3273 3273 3274 327.3 654.6 3273 1978-12-18 2024-10-11 00:54:33.000 1978-12-18 2024-10-11 00:54:33 +3274 3274 3275 327.4 654.8000000000001 3274 1978-12-19 2024-10-11 00:54:34.000 1978-12-19 2024-10-11 00:54:34 +3275 3275 3276 327.5 655 3275 1978-12-20 2024-10-11 00:54:35.000 1978-12-20 2024-10-11 00:54:35 +3276 3276 3277 327.6 655.2 3276 1978-12-21 2024-10-11 00:54:36.000 1978-12-21 2024-10-11 00:54:36 +3277 3277 3278 327.7 655.4000000000001 3277 1978-12-22 2024-10-11 00:54:37.000 1978-12-22 2024-10-11 00:54:37 +3278 3278 3279 327.8 655.6 3278 1978-12-23 2024-10-11 00:54:38.000 1978-12-23 2024-10-11 00:54:38 +3279 3279 3280 327.9 655.8000000000001 3279 1978-12-24 2024-10-11 00:54:39.000 1978-12-24 2024-10-11 00:54:39 +3280 3280 3281 328 656 3280 1978-12-25 2024-10-11 00:54:40.000 1978-12-25 2024-10-11 00:54:40 +3281 3281 3282 328.1 656.2 3281 1978-12-26 2024-10-11 00:54:41.000 1978-12-26 2024-10-11 00:54:41 +3282 3282 3283 328.2 656.4000000000001 3282 1978-12-27 2024-10-11 00:54:42.000 1978-12-27 2024-10-11 00:54:42 +3283 3283 3284 328.3 656.6 3283 1978-12-28 2024-10-11 00:54:43.000 1978-12-28 2024-10-11 00:54:43 +3284 3284 3285 328.4 656.8000000000001 3284 1978-12-29 2024-10-11 00:54:44.000 1978-12-29 2024-10-11 00:54:44 +3285 3285 3286 328.5 657 3285 1978-12-30 2024-10-11 00:54:45.000 1978-12-30 2024-10-11 00:54:45 +3286 3286 3287 328.6 657.2 3286 1978-12-31 2024-10-11 00:54:46.000 1978-12-31 2024-10-11 00:54:46 +3287 3287 3288 328.7 657.4000000000001 3287 1979-01-01 2024-10-11 00:54:47.000 1979-01-01 2024-10-11 00:54:47 +3288 3288 3289 328.8 657.6 3288 1979-01-02 2024-10-11 00:54:48.000 1979-01-02 2024-10-11 00:54:48 +3289 3289 3290 328.9 657.8000000000001 3289 1979-01-03 2024-10-11 00:54:49.000 1979-01-03 2024-10-11 00:54:49 +3290 3290 3291 329 658 3290 1979-01-04 2024-10-11 00:54:50.000 1979-01-04 2024-10-11 00:54:50 +3291 3291 3292 329.1 658.2 3291 1979-01-05 2024-10-11 00:54:51.000 1979-01-05 2024-10-11 00:54:51 +3292 3292 3293 329.2 658.4000000000001 3292 1979-01-06 2024-10-11 00:54:52.000 1979-01-06 2024-10-11 00:54:52 +3293 3293 3294 329.3 658.6 3293 1979-01-07 2024-10-11 00:54:53.000 1979-01-07 2024-10-11 00:54:53 +3294 3294 3295 329.4 658.8000000000001 3294 1979-01-08 2024-10-11 00:54:54.000 1979-01-08 2024-10-11 00:54:54 +3295 3295 3296 329.5 659 3295 1979-01-09 2024-10-11 00:54:55.000 1979-01-09 2024-10-11 00:54:55 +3296 3296 3297 329.6 659.2 3296 1979-01-10 2024-10-11 00:54:56.000 1979-01-10 2024-10-11 00:54:56 +3297 3297 3298 329.7 659.4000000000001 3297 1979-01-11 2024-10-11 00:54:57.000 1979-01-11 2024-10-11 00:54:57 +3298 3298 3299 329.8 659.6 3298 1979-01-12 2024-10-11 00:54:58.000 1979-01-12 2024-10-11 00:54:58 +3299 3299 3300 329.9 659.8000000000001 3299 1979-01-13 2024-10-11 00:54:59.000 1979-01-13 2024-10-11 00:54:59 +3300 3300 3301 330 660 3300 1979-01-14 2024-10-11 00:55:00.000 1979-01-14 2024-10-11 00:55:00 +3301 3301 3302 330.1 660.2 3301 1979-01-15 2024-10-11 00:55:01.000 1979-01-15 2024-10-11 00:55:01 +3302 3302 3303 330.2 660.4000000000001 3302 1979-01-16 2024-10-11 00:55:02.000 1979-01-16 2024-10-11 00:55:02 +3303 3303 3304 330.3 660.6 3303 1979-01-17 2024-10-11 00:55:03.000 1979-01-17 2024-10-11 00:55:03 +3304 3304 3305 330.4 660.8000000000001 3304 1979-01-18 2024-10-11 00:55:04.000 1979-01-18 2024-10-11 00:55:04 +3305 3305 3306 330.5 661 3305 1979-01-19 2024-10-11 00:55:05.000 1979-01-19 2024-10-11 00:55:05 +3306 3306 3307 330.6 661.2 3306 1979-01-20 2024-10-11 00:55:06.000 1979-01-20 2024-10-11 00:55:06 +3307 3307 3308 330.7 661.4000000000001 3307 1979-01-21 2024-10-11 00:55:07.000 1979-01-21 2024-10-11 00:55:07 +3308 3308 3309 330.8 661.6 3308 1979-01-22 2024-10-11 00:55:08.000 1979-01-22 2024-10-11 00:55:08 +3309 3309 3310 330.9 661.8000000000001 3309 1979-01-23 2024-10-11 00:55:09.000 1979-01-23 2024-10-11 00:55:09 +3310 3310 3311 331 662 3310 1979-01-24 2024-10-11 00:55:10.000 1979-01-24 2024-10-11 00:55:10 +3311 3311 3312 331.1 662.2 3311 1979-01-25 2024-10-11 00:55:11.000 1979-01-25 2024-10-11 00:55:11 +3312 3312 3313 331.2 662.4000000000001 3312 1979-01-26 2024-10-11 00:55:12.000 1979-01-26 2024-10-11 00:55:12 +3313 3313 3314 331.3 662.6 3313 1979-01-27 2024-10-11 00:55:13.000 1979-01-27 2024-10-11 00:55:13 +3314 3314 3315 331.4 662.8000000000001 3314 1979-01-28 2024-10-11 00:55:14.000 1979-01-28 2024-10-11 00:55:14 +3315 3315 3316 331.5 663 3315 1979-01-29 2024-10-11 00:55:15.000 1979-01-29 2024-10-11 00:55:15 +3316 3316 3317 331.6 663.2 3316 1979-01-30 2024-10-11 00:55:16.000 1979-01-30 2024-10-11 00:55:16 +3317 3317 3318 331.7 663.4000000000001 3317 1979-01-31 2024-10-11 00:55:17.000 1979-01-31 2024-10-11 00:55:17 +3318 3318 3319 331.8 663.6 3318 1979-02-01 2024-10-11 00:55:18.000 1979-02-01 2024-10-11 00:55:18 +3319 3319 3320 331.9 663.8000000000001 3319 1979-02-02 2024-10-11 00:55:19.000 1979-02-02 2024-10-11 00:55:19 +3320 3320 3321 332 664 3320 1979-02-03 2024-10-11 00:55:20.000 1979-02-03 2024-10-11 00:55:20 +3321 3321 3322 332.1 664.2 3321 1979-02-04 2024-10-11 00:55:21.000 1979-02-04 2024-10-11 00:55:21 +3322 3322 3323 332.2 664.4000000000001 3322 1979-02-05 2024-10-11 00:55:22.000 1979-02-05 2024-10-11 00:55:22 +3323 3323 3324 332.3 664.6 3323 1979-02-06 2024-10-11 00:55:23.000 1979-02-06 2024-10-11 00:55:23 +3324 3324 3325 332.4 664.8000000000001 3324 1979-02-07 2024-10-11 00:55:24.000 1979-02-07 2024-10-11 00:55:24 +3325 3325 3326 332.5 665 3325 1979-02-08 2024-10-11 00:55:25.000 1979-02-08 2024-10-11 00:55:25 +3326 3326 3327 332.6 665.2 3326 1979-02-09 2024-10-11 00:55:26.000 1979-02-09 2024-10-11 00:55:26 +3327 3327 3328 332.7 665.4000000000001 3327 1979-02-10 2024-10-11 00:55:27.000 1979-02-10 2024-10-11 00:55:27 +3328 3328 3329 332.8 665.6 3328 1979-02-11 2024-10-11 00:55:28.000 1979-02-11 2024-10-11 00:55:28 +3329 3329 3330 332.9 665.8000000000001 3329 1979-02-12 2024-10-11 00:55:29.000 1979-02-12 2024-10-11 00:55:29 +3330 3330 3331 333 666 3330 1979-02-13 2024-10-11 00:55:30.000 1979-02-13 2024-10-11 00:55:30 +3331 3331 3332 333.1 666.2 3331 1979-02-14 2024-10-11 00:55:31.000 1979-02-14 2024-10-11 00:55:31 +3332 3332 3333 333.2 666.4000000000001 3332 1979-02-15 2024-10-11 00:55:32.000 1979-02-15 2024-10-11 00:55:32 +3333 3333 3334 333.3 666.6 3333 1979-02-16 2024-10-11 00:55:33.000 1979-02-16 2024-10-11 00:55:33 +3334 3334 3335 333.4 666.8000000000001 3334 1979-02-17 2024-10-11 00:55:34.000 1979-02-17 2024-10-11 00:55:34 +3335 3335 3336 333.5 667 3335 1979-02-18 2024-10-11 00:55:35.000 1979-02-18 2024-10-11 00:55:35 +3336 3336 3337 333.6 667.2 3336 1979-02-19 2024-10-11 00:55:36.000 1979-02-19 2024-10-11 00:55:36 +3337 3337 3338 333.7 667.4000000000001 3337 1979-02-20 2024-10-11 00:55:37.000 1979-02-20 2024-10-11 00:55:37 +3338 3338 3339 333.8 667.6 3338 1979-02-21 2024-10-11 00:55:38.000 1979-02-21 2024-10-11 00:55:38 +3339 3339 3340 333.9 667.8000000000001 3339 1979-02-22 2024-10-11 00:55:39.000 1979-02-22 2024-10-11 00:55:39 +3340 3340 3341 334 668 3340 1979-02-23 2024-10-11 00:55:40.000 1979-02-23 2024-10-11 00:55:40 +3341 3341 3342 334.1 668.2 3341 1979-02-24 2024-10-11 00:55:41.000 1979-02-24 2024-10-11 00:55:41 +3342 3342 3343 334.2 668.4000000000001 3342 1979-02-25 2024-10-11 00:55:42.000 1979-02-25 2024-10-11 00:55:42 +3343 3343 3344 334.3 668.6 3343 1979-02-26 2024-10-11 00:55:43.000 1979-02-26 2024-10-11 00:55:43 +3344 3344 3345 334.4 668.8000000000001 3344 1979-02-27 2024-10-11 00:55:44.000 1979-02-27 2024-10-11 00:55:44 +3345 3345 3346 334.5 669 3345 1979-02-28 2024-10-11 00:55:45.000 1979-02-28 2024-10-11 00:55:45 +3346 3346 3347 334.6 669.2 3346 1979-03-01 2024-10-11 00:55:46.000 1979-03-01 2024-10-11 00:55:46 +3347 3347 3348 334.7 669.4000000000001 3347 1979-03-02 2024-10-11 00:55:47.000 1979-03-02 2024-10-11 00:55:47 +3348 3348 3349 334.8 669.6 3348 1979-03-03 2024-10-11 00:55:48.000 1979-03-03 2024-10-11 00:55:48 +3349 3349 3350 334.9 669.8000000000001 3349 1979-03-04 2024-10-11 00:55:49.000 1979-03-04 2024-10-11 00:55:49 +3350 3350 3351 335 670 3350 1979-03-05 2024-10-11 00:55:50.000 1979-03-05 2024-10-11 00:55:50 +3351 3351 3352 335.1 670.2 3351 1979-03-06 2024-10-11 00:55:51.000 1979-03-06 2024-10-11 00:55:51 +3352 3352 3353 335.2 670.4000000000001 3352 1979-03-07 2024-10-11 00:55:52.000 1979-03-07 2024-10-11 00:55:52 +3353 3353 3354 335.3 670.6 3353 1979-03-08 2024-10-11 00:55:53.000 1979-03-08 2024-10-11 00:55:53 +3354 3354 3355 335.4 670.8000000000001 3354 1979-03-09 2024-10-11 00:55:54.000 1979-03-09 2024-10-11 00:55:54 +3355 3355 3356 335.5 671 3355 1979-03-10 2024-10-11 00:55:55.000 1979-03-10 2024-10-11 00:55:55 +3356 3356 3357 335.6 671.2 3356 1979-03-11 2024-10-11 00:55:56.000 1979-03-11 2024-10-11 00:55:56 +3357 3357 3358 335.7 671.4000000000001 3357 1979-03-12 2024-10-11 00:55:57.000 1979-03-12 2024-10-11 00:55:57 +3358 3358 3359 335.8 671.6 3358 1979-03-13 2024-10-11 00:55:58.000 1979-03-13 2024-10-11 00:55:58 +3359 3359 3360 335.9 671.8000000000001 3359 1979-03-14 2024-10-11 00:55:59.000 1979-03-14 2024-10-11 00:55:59 +3360 3360 3361 336 672 3360 1979-03-15 2024-10-11 00:56:00.000 1979-03-15 2024-10-11 00:56:00 +3361 3361 3362 336.1 672.2 3361 1979-03-16 2024-10-11 00:56:01.000 1979-03-16 2024-10-11 00:56:01 +3362 3362 3363 336.2 672.4000000000001 3362 1979-03-17 2024-10-11 00:56:02.000 1979-03-17 2024-10-11 00:56:02 +3363 3363 3364 336.3 672.6 3363 1979-03-18 2024-10-11 00:56:03.000 1979-03-18 2024-10-11 00:56:03 +3364 3364 3365 336.4 672.8000000000001 3364 1979-03-19 2024-10-11 00:56:04.000 1979-03-19 2024-10-11 00:56:04 +3365 3365 3366 336.5 673 3365 1979-03-20 2024-10-11 00:56:05.000 1979-03-20 2024-10-11 00:56:05 +3366 3366 3367 336.6 673.2 3366 1979-03-21 2024-10-11 00:56:06.000 1979-03-21 2024-10-11 00:56:06 +3367 3367 3368 336.7 673.4000000000001 3367 1979-03-22 2024-10-11 00:56:07.000 1979-03-22 2024-10-11 00:56:07 +3368 3368 3369 336.8 673.6 3368 1979-03-23 2024-10-11 00:56:08.000 1979-03-23 2024-10-11 00:56:08 +3369 3369 3370 336.9 673.8000000000001 3369 1979-03-24 2024-10-11 00:56:09.000 1979-03-24 2024-10-11 00:56:09 +3370 3370 3371 337 674 3370 1979-03-25 2024-10-11 00:56:10.000 1979-03-25 2024-10-11 00:56:10 +3371 3371 3372 337.1 674.2 3371 1979-03-26 2024-10-11 00:56:11.000 1979-03-26 2024-10-11 00:56:11 +3372 3372 3373 337.2 674.4000000000001 3372 1979-03-27 2024-10-11 00:56:12.000 1979-03-27 2024-10-11 00:56:12 +3373 3373 3374 337.3 674.6 3373 1979-03-28 2024-10-11 00:56:13.000 1979-03-28 2024-10-11 00:56:13 +3374 3374 3375 337.4 674.8000000000001 3374 1979-03-29 2024-10-11 00:56:14.000 1979-03-29 2024-10-11 00:56:14 +3375 3375 3376 337.5 675 3375 1979-03-30 2024-10-11 00:56:15.000 1979-03-30 2024-10-11 00:56:15 +3376 3376 3377 337.6 675.2 3376 1979-03-31 2024-10-11 00:56:16.000 1979-03-31 2024-10-11 00:56:16 +3377 3377 3378 337.7 675.4000000000001 3377 1979-04-01 2024-10-11 00:56:17.000 1979-04-01 2024-10-11 00:56:17 +3378 3378 3379 337.8 675.6 3378 1979-04-02 2024-10-11 00:56:18.000 1979-04-02 2024-10-11 00:56:18 +3379 3379 3380 337.9 675.8000000000001 3379 1979-04-03 2024-10-11 00:56:19.000 1979-04-03 2024-10-11 00:56:19 +3380 3380 3381 338 676 3380 1979-04-04 2024-10-11 00:56:20.000 1979-04-04 2024-10-11 00:56:20 +3381 3381 3382 338.1 676.2 3381 1979-04-05 2024-10-11 00:56:21.000 1979-04-05 2024-10-11 00:56:21 +3382 3382 3383 338.2 676.4000000000001 3382 1979-04-06 2024-10-11 00:56:22.000 1979-04-06 2024-10-11 00:56:22 +3383 3383 3384 338.3 676.6 3383 1979-04-07 2024-10-11 00:56:23.000 1979-04-07 2024-10-11 00:56:23 +3384 3384 3385 338.4 676.8000000000001 3384 1979-04-08 2024-10-11 00:56:24.000 1979-04-08 2024-10-11 00:56:24 +3385 3385 3386 338.5 677 3385 1979-04-09 2024-10-11 00:56:25.000 1979-04-09 2024-10-11 00:56:25 +3386 3386 3387 338.6 677.2 3386 1979-04-10 2024-10-11 00:56:26.000 1979-04-10 2024-10-11 00:56:26 +3387 3387 3388 338.7 677.4000000000001 3387 1979-04-11 2024-10-11 00:56:27.000 1979-04-11 2024-10-11 00:56:27 +3388 3388 3389 338.8 677.6 3388 1979-04-12 2024-10-11 00:56:28.000 1979-04-12 2024-10-11 00:56:28 +3389 3389 3390 338.9 677.8000000000001 3389 1979-04-13 2024-10-11 00:56:29.000 1979-04-13 2024-10-11 00:56:29 +3390 3390 3391 339 678 3390 1979-04-14 2024-10-11 00:56:30.000 1979-04-14 2024-10-11 00:56:30 +3391 3391 3392 339.1 678.2 3391 1979-04-15 2024-10-11 00:56:31.000 1979-04-15 2024-10-11 00:56:31 +3392 3392 3393 339.2 678.4000000000001 3392 1979-04-16 2024-10-11 00:56:32.000 1979-04-16 2024-10-11 00:56:32 +3393 3393 3394 339.3 678.6 3393 1979-04-17 2024-10-11 00:56:33.000 1979-04-17 2024-10-11 00:56:33 +3394 3394 3395 339.4 678.8000000000001 3394 1979-04-18 2024-10-11 00:56:34.000 1979-04-18 2024-10-11 00:56:34 +3395 3395 3396 339.5 679 3395 1979-04-19 2024-10-11 00:56:35.000 1979-04-19 2024-10-11 00:56:35 +3396 3396 3397 339.6 679.2 3396 1979-04-20 2024-10-11 00:56:36.000 1979-04-20 2024-10-11 00:56:36 +3397 3397 3398 339.7 679.4000000000001 3397 1979-04-21 2024-10-11 00:56:37.000 1979-04-21 2024-10-11 00:56:37 +3398 3398 3399 339.8 679.6 3398 1979-04-22 2024-10-11 00:56:38.000 1979-04-22 2024-10-11 00:56:38 +3399 3399 3400 339.9 679.8000000000001 3399 1979-04-23 2024-10-11 00:56:39.000 1979-04-23 2024-10-11 00:56:39 +3400 3400 3401 340 680 3400 1979-04-24 2024-10-11 00:56:40.000 1979-04-24 2024-10-11 00:56:40 +3401 3401 3402 340.1 680.2 3401 1979-04-25 2024-10-11 00:56:41.000 1979-04-25 2024-10-11 00:56:41 +3402 3402 3403 340.2 680.4000000000001 3402 1979-04-26 2024-10-11 00:56:42.000 1979-04-26 2024-10-11 00:56:42 +3403 3403 3404 340.3 680.6 3403 1979-04-27 2024-10-11 00:56:43.000 1979-04-27 2024-10-11 00:56:43 +3404 3404 3405 340.4 680.8000000000001 3404 1979-04-28 2024-10-11 00:56:44.000 1979-04-28 2024-10-11 00:56:44 +3405 3405 3406 340.5 681 3405 1979-04-29 2024-10-11 00:56:45.000 1979-04-29 2024-10-11 00:56:45 +3406 3406 3407 340.6 681.2 3406 1979-04-30 2024-10-11 00:56:46.000 1979-04-30 2024-10-11 00:56:46 +3407 3407 3408 340.7 681.4000000000001 3407 1979-05-01 2024-10-11 00:56:47.000 1979-05-01 2024-10-11 00:56:47 +3408 3408 3409 340.8 681.6 3408 1979-05-02 2024-10-11 00:56:48.000 1979-05-02 2024-10-11 00:56:48 +3409 3409 3410 340.9 681.8000000000001 3409 1979-05-03 2024-10-11 00:56:49.000 1979-05-03 2024-10-11 00:56:49 +3410 3410 3411 341 682 3410 1979-05-04 2024-10-11 00:56:50.000 1979-05-04 2024-10-11 00:56:50 +3411 3411 3412 341.1 682.2 3411 1979-05-05 2024-10-11 00:56:51.000 1979-05-05 2024-10-11 00:56:51 +3412 3412 3413 341.2 682.4000000000001 3412 1979-05-06 2024-10-11 00:56:52.000 1979-05-06 2024-10-11 00:56:52 +3413 3413 3414 341.3 682.6 3413 1979-05-07 2024-10-11 00:56:53.000 1979-05-07 2024-10-11 00:56:53 +3414 3414 3415 341.4 682.8000000000001 3414 1979-05-08 2024-10-11 00:56:54.000 1979-05-08 2024-10-11 00:56:54 +3415 3415 3416 341.5 683 3415 1979-05-09 2024-10-11 00:56:55.000 1979-05-09 2024-10-11 00:56:55 +3416 3416 3417 341.6 683.2 3416 1979-05-10 2024-10-11 00:56:56.000 1979-05-10 2024-10-11 00:56:56 +3417 3417 3418 341.7 683.4000000000001 3417 1979-05-11 2024-10-11 00:56:57.000 1979-05-11 2024-10-11 00:56:57 +3418 3418 3419 341.8 683.6 3418 1979-05-12 2024-10-11 00:56:58.000 1979-05-12 2024-10-11 00:56:58 +3419 3419 3420 341.9 683.8000000000001 3419 1979-05-13 2024-10-11 00:56:59.000 1979-05-13 2024-10-11 00:56:59 +3420 3420 3421 342 684 3420 1979-05-14 2024-10-11 00:57:00.000 1979-05-14 2024-10-11 00:57:00 +3421 3421 3422 342.1 684.2 3421 1979-05-15 2024-10-11 00:57:01.000 1979-05-15 2024-10-11 00:57:01 +3422 3422 3423 342.2 684.4000000000001 3422 1979-05-16 2024-10-11 00:57:02.000 1979-05-16 2024-10-11 00:57:02 +3423 3423 3424 342.3 684.6 3423 1979-05-17 2024-10-11 00:57:03.000 1979-05-17 2024-10-11 00:57:03 +3424 3424 3425 342.4 684.8000000000001 3424 1979-05-18 2024-10-11 00:57:04.000 1979-05-18 2024-10-11 00:57:04 +3425 3425 3426 342.5 685 3425 1979-05-19 2024-10-11 00:57:05.000 1979-05-19 2024-10-11 00:57:05 +3426 3426 3427 342.6 685.2 3426 1979-05-20 2024-10-11 00:57:06.000 1979-05-20 2024-10-11 00:57:06 +3427 3427 3428 342.7 685.4000000000001 3427 1979-05-21 2024-10-11 00:57:07.000 1979-05-21 2024-10-11 00:57:07 +3428 3428 3429 342.8 685.6 3428 1979-05-22 2024-10-11 00:57:08.000 1979-05-22 2024-10-11 00:57:08 +3429 3429 3430 342.9 685.8000000000001 3429 1979-05-23 2024-10-11 00:57:09.000 1979-05-23 2024-10-11 00:57:09 +3430 3430 3431 343 686 3430 1979-05-24 2024-10-11 00:57:10.000 1979-05-24 2024-10-11 00:57:10 +3431 3431 3432 343.1 686.2 3431 1979-05-25 2024-10-11 00:57:11.000 1979-05-25 2024-10-11 00:57:11 +3432 3432 3433 343.2 686.4000000000001 3432 1979-05-26 2024-10-11 00:57:12.000 1979-05-26 2024-10-11 00:57:12 +3433 3433 3434 343.3 686.6 3433 1979-05-27 2024-10-11 00:57:13.000 1979-05-27 2024-10-11 00:57:13 +3434 3434 3435 343.4 686.8000000000001 3434 1979-05-28 2024-10-11 00:57:14.000 1979-05-28 2024-10-11 00:57:14 +3435 3435 3436 343.5 687 3435 1979-05-29 2024-10-11 00:57:15.000 1979-05-29 2024-10-11 00:57:15 +3436 3436 3437 343.6 687.2 3436 1979-05-30 2024-10-11 00:57:16.000 1979-05-30 2024-10-11 00:57:16 +3437 3437 3438 343.7 687.4000000000001 3437 1979-05-31 2024-10-11 00:57:17.000 1979-05-31 2024-10-11 00:57:17 +3438 3438 3439 343.8 687.6 3438 1979-06-01 2024-10-11 00:57:18.000 1979-06-01 2024-10-11 00:57:18 +3439 3439 3440 343.9 687.8000000000001 3439 1979-06-02 2024-10-11 00:57:19.000 1979-06-02 2024-10-11 00:57:19 +3440 3440 3441 344 688 3440 1979-06-03 2024-10-11 00:57:20.000 1979-06-03 2024-10-11 00:57:20 +3441 3441 3442 344.1 688.2 3441 1979-06-04 2024-10-11 00:57:21.000 1979-06-04 2024-10-11 00:57:21 +3442 3442 3443 344.2 688.4000000000001 3442 1979-06-05 2024-10-11 00:57:22.000 1979-06-05 2024-10-11 00:57:22 +3443 3443 3444 344.3 688.6 3443 1979-06-06 2024-10-11 00:57:23.000 1979-06-06 2024-10-11 00:57:23 +3444 3444 3445 344.4 688.8000000000001 3444 1979-06-07 2024-10-11 00:57:24.000 1979-06-07 2024-10-11 00:57:24 +3445 3445 3446 344.5 689 3445 1979-06-08 2024-10-11 00:57:25.000 1979-06-08 2024-10-11 00:57:25 +3446 3446 3447 344.6 689.2 3446 1979-06-09 2024-10-11 00:57:26.000 1979-06-09 2024-10-11 00:57:26 +3447 3447 3448 344.7 689.4000000000001 3447 1979-06-10 2024-10-11 00:57:27.000 1979-06-10 2024-10-11 00:57:27 +3448 3448 3449 344.8 689.6 3448 1979-06-11 2024-10-11 00:57:28.000 1979-06-11 2024-10-11 00:57:28 +3449 3449 3450 344.9 689.8000000000001 3449 1979-06-12 2024-10-11 00:57:29.000 1979-06-12 2024-10-11 00:57:29 +3450 3450 3451 345 690 3450 1979-06-13 2024-10-11 00:57:30.000 1979-06-13 2024-10-11 00:57:30 +3451 3451 3452 345.1 690.2 3451 1979-06-14 2024-10-11 00:57:31.000 1979-06-14 2024-10-11 00:57:31 +3452 3452 3453 345.2 690.4000000000001 3452 1979-06-15 2024-10-11 00:57:32.000 1979-06-15 2024-10-11 00:57:32 +3453 3453 3454 345.3 690.6 3453 1979-06-16 2024-10-11 00:57:33.000 1979-06-16 2024-10-11 00:57:33 +3454 3454 3455 345.4 690.8000000000001 3454 1979-06-17 2024-10-11 00:57:34.000 1979-06-17 2024-10-11 00:57:34 +3455 3455 3456 345.5 691 3455 1979-06-18 2024-10-11 00:57:35.000 1979-06-18 2024-10-11 00:57:35 +3456 3456 3457 345.6 691.2 3456 1979-06-19 2024-10-11 00:57:36.000 1979-06-19 2024-10-11 00:57:36 +3457 3457 3458 345.7 691.4000000000001 3457 1979-06-20 2024-10-11 00:57:37.000 1979-06-20 2024-10-11 00:57:37 +3458 3458 3459 345.8 691.6 3458 1979-06-21 2024-10-11 00:57:38.000 1979-06-21 2024-10-11 00:57:38 +3459 3459 3460 345.9 691.8000000000001 3459 1979-06-22 2024-10-11 00:57:39.000 1979-06-22 2024-10-11 00:57:39 +3460 3460 3461 346 692 3460 1979-06-23 2024-10-11 00:57:40.000 1979-06-23 2024-10-11 00:57:40 +3461 3461 3462 346.1 692.2 3461 1979-06-24 2024-10-11 00:57:41.000 1979-06-24 2024-10-11 00:57:41 +3462 3462 3463 346.2 692.4000000000001 3462 1979-06-25 2024-10-11 00:57:42.000 1979-06-25 2024-10-11 00:57:42 +3463 3463 3464 346.3 692.6 3463 1979-06-26 2024-10-11 00:57:43.000 1979-06-26 2024-10-11 00:57:43 +3464 3464 3465 346.4 692.8000000000001 3464 1979-06-27 2024-10-11 00:57:44.000 1979-06-27 2024-10-11 00:57:44 +3465 3465 3466 346.5 693 3465 1979-06-28 2024-10-11 00:57:45.000 1979-06-28 2024-10-11 00:57:45 +3466 3466 3467 346.6 693.2 3466 1979-06-29 2024-10-11 00:57:46.000 1979-06-29 2024-10-11 00:57:46 +3467 3467 3468 346.7 693.4000000000001 3467 1979-06-30 2024-10-11 00:57:47.000 1979-06-30 2024-10-11 00:57:47 +3468 3468 3469 346.8 693.6 3468 1979-07-01 2024-10-11 00:57:48.000 1979-07-01 2024-10-11 00:57:48 +3469 3469 3470 346.9 693.8000000000001 3469 1979-07-02 2024-10-11 00:57:49.000 1979-07-02 2024-10-11 00:57:49 +3470 3470 3471 347 694 3470 1979-07-03 2024-10-11 00:57:50.000 1979-07-03 2024-10-11 00:57:50 +3471 3471 3472 347.1 694.2 3471 1979-07-04 2024-10-11 00:57:51.000 1979-07-04 2024-10-11 00:57:51 +3472 3472 3473 347.2 694.4000000000001 3472 1979-07-05 2024-10-11 00:57:52.000 1979-07-05 2024-10-11 00:57:52 +3473 3473 3474 347.3 694.6 3473 1979-07-06 2024-10-11 00:57:53.000 1979-07-06 2024-10-11 00:57:53 +3474 3474 3475 347.4 694.8000000000001 3474 1979-07-07 2024-10-11 00:57:54.000 1979-07-07 2024-10-11 00:57:54 +3475 3475 3476 347.5 695 3475 1979-07-08 2024-10-11 00:57:55.000 1979-07-08 2024-10-11 00:57:55 +3476 3476 3477 347.6 695.2 3476 1979-07-09 2024-10-11 00:57:56.000 1979-07-09 2024-10-11 00:57:56 +3477 3477 3478 347.7 695.4000000000001 3477 1979-07-10 2024-10-11 00:57:57.000 1979-07-10 2024-10-11 00:57:57 +3478 3478 3479 347.8 695.6 3478 1979-07-11 2024-10-11 00:57:58.000 1979-07-11 2024-10-11 00:57:58 +3479 3479 3480 347.9 695.8000000000001 3479 1979-07-12 2024-10-11 00:57:59.000 1979-07-12 2024-10-11 00:57:59 +3480 3480 3481 348 696 3480 1979-07-13 2024-10-11 00:58:00.000 1979-07-13 2024-10-11 00:58:00 +3481 3481 3482 348.1 696.2 3481 1979-07-14 2024-10-11 00:58:01.000 1979-07-14 2024-10-11 00:58:01 +3482 3482 3483 348.2 696.4000000000001 3482 1979-07-15 2024-10-11 00:58:02.000 1979-07-15 2024-10-11 00:58:02 +3483 3483 3484 348.3 696.6 3483 1979-07-16 2024-10-11 00:58:03.000 1979-07-16 2024-10-11 00:58:03 +3484 3484 3485 348.4 696.8000000000001 3484 1979-07-17 2024-10-11 00:58:04.000 1979-07-17 2024-10-11 00:58:04 +3485 3485 3486 348.5 697 3485 1979-07-18 2024-10-11 00:58:05.000 1979-07-18 2024-10-11 00:58:05 +3486 3486 3487 348.6 697.2 3486 1979-07-19 2024-10-11 00:58:06.000 1979-07-19 2024-10-11 00:58:06 +3487 3487 3488 348.7 697.4000000000001 3487 1979-07-20 2024-10-11 00:58:07.000 1979-07-20 2024-10-11 00:58:07 +3488 3488 3489 348.8 697.6 3488 1979-07-21 2024-10-11 00:58:08.000 1979-07-21 2024-10-11 00:58:08 +3489 3489 3490 348.9 697.8000000000001 3489 1979-07-22 2024-10-11 00:58:09.000 1979-07-22 2024-10-11 00:58:09 +3490 3490 3491 349 698 3490 1979-07-23 2024-10-11 00:58:10.000 1979-07-23 2024-10-11 00:58:10 +3491 3491 3492 349.1 698.2 3491 1979-07-24 2024-10-11 00:58:11.000 1979-07-24 2024-10-11 00:58:11 +3492 3492 3493 349.2 698.4000000000001 3492 1979-07-25 2024-10-11 00:58:12.000 1979-07-25 2024-10-11 00:58:12 +3493 3493 3494 349.3 698.6 3493 1979-07-26 2024-10-11 00:58:13.000 1979-07-26 2024-10-11 00:58:13 +3494 3494 3495 349.4 698.8000000000001 3494 1979-07-27 2024-10-11 00:58:14.000 1979-07-27 2024-10-11 00:58:14 +3495 3495 3496 349.5 699 3495 1979-07-28 2024-10-11 00:58:15.000 1979-07-28 2024-10-11 00:58:15 +3496 3496 3497 349.6 699.2 3496 1979-07-29 2024-10-11 00:58:16.000 1979-07-29 2024-10-11 00:58:16 +3497 3497 3498 349.7 699.4000000000001 3497 1979-07-30 2024-10-11 00:58:17.000 1979-07-30 2024-10-11 00:58:17 +3498 3498 3499 349.8 699.6 3498 1979-07-31 2024-10-11 00:58:18.000 1979-07-31 2024-10-11 00:58:18 +3499 3499 3500 349.9 699.8000000000001 3499 1979-08-01 2024-10-11 00:58:19.000 1979-08-01 2024-10-11 00:58:19 +3500 3500 3501 350 700 3500 1979-08-02 2024-10-11 00:58:20.000 1979-08-02 2024-10-11 00:58:20 +3501 3501 3502 350.1 700.2 3501 1979-08-03 2024-10-11 00:58:21.000 1979-08-03 2024-10-11 00:58:21 +3502 3502 3503 350.2 700.4000000000001 3502 1979-08-04 2024-10-11 00:58:22.000 1979-08-04 2024-10-11 00:58:22 +3503 3503 3504 350.3 700.6 3503 1979-08-05 2024-10-11 00:58:23.000 1979-08-05 2024-10-11 00:58:23 +3504 3504 3505 350.4 700.8000000000001 3504 1979-08-06 2024-10-11 00:58:24.000 1979-08-06 2024-10-11 00:58:24 +3505 3505 3506 350.5 701 3505 1979-08-07 2024-10-11 00:58:25.000 1979-08-07 2024-10-11 00:58:25 +3506 3506 3507 350.6 701.2 3506 1979-08-08 2024-10-11 00:58:26.000 1979-08-08 2024-10-11 00:58:26 +3507 3507 3508 350.7 701.4000000000001 3507 1979-08-09 2024-10-11 00:58:27.000 1979-08-09 2024-10-11 00:58:27 +3508 3508 3509 350.8 701.6 3508 1979-08-10 2024-10-11 00:58:28.000 1979-08-10 2024-10-11 00:58:28 +3509 3509 3510 350.9 701.8000000000001 3509 1979-08-11 2024-10-11 00:58:29.000 1979-08-11 2024-10-11 00:58:29 +3510 3510 3511 351 702 3510 1979-08-12 2024-10-11 00:58:30.000 1979-08-12 2024-10-11 00:58:30 +3511 3511 3512 351.1 702.2 3511 1979-08-13 2024-10-11 00:58:31.000 1979-08-13 2024-10-11 00:58:31 +3512 3512 3513 351.2 702.4000000000001 3512 1979-08-14 2024-10-11 00:58:32.000 1979-08-14 2024-10-11 00:58:32 +3513 3513 3514 351.3 702.6 3513 1979-08-15 2024-10-11 00:58:33.000 1979-08-15 2024-10-11 00:58:33 +3514 3514 3515 351.4 702.8000000000001 3514 1979-08-16 2024-10-11 00:58:34.000 1979-08-16 2024-10-11 00:58:34 +3515 3515 3516 351.5 703 3515 1979-08-17 2024-10-11 00:58:35.000 1979-08-17 2024-10-11 00:58:35 +3516 3516 3517 351.6 703.2 3516 1979-08-18 2024-10-11 00:58:36.000 1979-08-18 2024-10-11 00:58:36 +3517 3517 3518 351.7 703.4000000000001 3517 1979-08-19 2024-10-11 00:58:37.000 1979-08-19 2024-10-11 00:58:37 +3518 3518 3519 351.8 703.6 3518 1979-08-20 2024-10-11 00:58:38.000 1979-08-20 2024-10-11 00:58:38 +3519 3519 3520 351.9 703.8000000000001 3519 1979-08-21 2024-10-11 00:58:39.000 1979-08-21 2024-10-11 00:58:39 +3520 3520 3521 352 704 3520 1979-08-22 2024-10-11 00:58:40.000 1979-08-22 2024-10-11 00:58:40 +3521 3521 3522 352.1 704.2 3521 1979-08-23 2024-10-11 00:58:41.000 1979-08-23 2024-10-11 00:58:41 +3522 3522 3523 352.2 704.4000000000001 3522 1979-08-24 2024-10-11 00:58:42.000 1979-08-24 2024-10-11 00:58:42 +3523 3523 3524 352.3 704.6 3523 1979-08-25 2024-10-11 00:58:43.000 1979-08-25 2024-10-11 00:58:43 +3524 3524 3525 352.4 704.8000000000001 3524 1979-08-26 2024-10-11 00:58:44.000 1979-08-26 2024-10-11 00:58:44 +3525 3525 3526 352.5 705 3525 1979-08-27 2024-10-11 00:58:45.000 1979-08-27 2024-10-11 00:58:45 +3526 3526 3527 352.6 705.2 3526 1979-08-28 2024-10-11 00:58:46.000 1979-08-28 2024-10-11 00:58:46 +3527 3527 3528 352.7 705.4000000000001 3527 1979-08-29 2024-10-11 00:58:47.000 1979-08-29 2024-10-11 00:58:47 +3528 3528 3529 352.8 705.6 3528 1979-08-30 2024-10-11 00:58:48.000 1979-08-30 2024-10-11 00:58:48 +3529 3529 3530 352.9 705.8000000000001 3529 1979-08-31 2024-10-11 00:58:49.000 1979-08-31 2024-10-11 00:58:49 +3530 3530 3531 353 706 3530 1979-09-01 2024-10-11 00:58:50.000 1979-09-01 2024-10-11 00:58:50 +3531 3531 3532 353.1 706.2 3531 1979-09-02 2024-10-11 00:58:51.000 1979-09-02 2024-10-11 00:58:51 +3532 3532 3533 353.2 706.4000000000001 3532 1979-09-03 2024-10-11 00:58:52.000 1979-09-03 2024-10-11 00:58:52 +3533 3533 3534 353.3 706.6 3533 1979-09-04 2024-10-11 00:58:53.000 1979-09-04 2024-10-11 00:58:53 +3534 3534 3535 353.4 706.8000000000001 3534 1979-09-05 2024-10-11 00:58:54.000 1979-09-05 2024-10-11 00:58:54 +3535 3535 3536 353.5 707 3535 1979-09-06 2024-10-11 00:58:55.000 1979-09-06 2024-10-11 00:58:55 +3536 3536 3537 353.6 707.2 3536 1979-09-07 2024-10-11 00:58:56.000 1979-09-07 2024-10-11 00:58:56 +3537 3537 3538 353.7 707.4000000000001 3537 1979-09-08 2024-10-11 00:58:57.000 1979-09-08 2024-10-11 00:58:57 +3538 3538 3539 353.8 707.6 3538 1979-09-09 2024-10-11 00:58:58.000 1979-09-09 2024-10-11 00:58:58 +3539 3539 3540 353.9 707.8000000000001 3539 1979-09-10 2024-10-11 00:58:59.000 1979-09-10 2024-10-11 00:58:59 +3540 3540 3541 354 708 3540 1979-09-11 2024-10-11 00:59:00.000 1979-09-11 2024-10-11 00:59:00 +3541 3541 3542 354.1 708.2 3541 1979-09-12 2024-10-11 00:59:01.000 1979-09-12 2024-10-11 00:59:01 +3542 3542 3543 354.2 708.4000000000001 3542 1979-09-13 2024-10-11 00:59:02.000 1979-09-13 2024-10-11 00:59:02 +3543 3543 3544 354.3 708.6 3543 1979-09-14 2024-10-11 00:59:03.000 1979-09-14 2024-10-11 00:59:03 +3544 3544 3545 354.4 708.8000000000001 3544 1979-09-15 2024-10-11 00:59:04.000 1979-09-15 2024-10-11 00:59:04 +3545 3545 3546 354.5 709 3545 1979-09-16 2024-10-11 00:59:05.000 1979-09-16 2024-10-11 00:59:05 +3546 3546 3547 354.6 709.2 3546 1979-09-17 2024-10-11 00:59:06.000 1979-09-17 2024-10-11 00:59:06 +3547 3547 3548 354.7 709.4000000000001 3547 1979-09-18 2024-10-11 00:59:07.000 1979-09-18 2024-10-11 00:59:07 +3548 3548 3549 354.8 709.6 3548 1979-09-19 2024-10-11 00:59:08.000 1979-09-19 2024-10-11 00:59:08 +3549 3549 3550 354.9 709.8000000000001 3549 1979-09-20 2024-10-11 00:59:09.000 1979-09-20 2024-10-11 00:59:09 +3550 3550 3551 355 710 3550 1979-09-21 2024-10-11 00:59:10.000 1979-09-21 2024-10-11 00:59:10 +3551 3551 3552 355.1 710.2 3551 1979-09-22 2024-10-11 00:59:11.000 1979-09-22 2024-10-11 00:59:11 +3552 3552 3553 355.2 710.4000000000001 3552 1979-09-23 2024-10-11 00:59:12.000 1979-09-23 2024-10-11 00:59:12 +3553 3553 3554 355.3 710.6 3553 1979-09-24 2024-10-11 00:59:13.000 1979-09-24 2024-10-11 00:59:13 +3554 3554 3555 355.4 710.8000000000001 3554 1979-09-25 2024-10-11 00:59:14.000 1979-09-25 2024-10-11 00:59:14 +3555 3555 3556 355.5 711 3555 1979-09-26 2024-10-11 00:59:15.000 1979-09-26 2024-10-11 00:59:15 +3556 3556 3557 355.6 711.2 3556 1979-09-27 2024-10-11 00:59:16.000 1979-09-27 2024-10-11 00:59:16 +3557 3557 3558 355.7 711.4000000000001 3557 1979-09-28 2024-10-11 00:59:17.000 1979-09-28 2024-10-11 00:59:17 +3558 3558 3559 355.8 711.6 3558 1979-09-29 2024-10-11 00:59:18.000 1979-09-29 2024-10-11 00:59:18 +3559 3559 3560 355.9 711.8000000000001 3559 1979-09-30 2024-10-11 00:59:19.000 1979-09-30 2024-10-11 00:59:19 +3560 3560 3561 356 712 3560 1979-10-01 2024-10-11 00:59:20.000 1979-10-01 2024-10-11 00:59:20 +3561 3561 3562 356.1 712.2 3561 1979-10-02 2024-10-11 00:59:21.000 1979-10-02 2024-10-11 00:59:21 +3562 3562 3563 356.2 712.4000000000001 3562 1979-10-03 2024-10-11 00:59:22.000 1979-10-03 2024-10-11 00:59:22 +3563 3563 3564 356.3 712.6 3563 1979-10-04 2024-10-11 00:59:23.000 1979-10-04 2024-10-11 00:59:23 +3564 3564 3565 356.4 712.8000000000001 3564 1979-10-05 2024-10-11 00:59:24.000 1979-10-05 2024-10-11 00:59:24 +3565 3565 3566 356.5 713 3565 1979-10-06 2024-10-11 00:59:25.000 1979-10-06 2024-10-11 00:59:25 +3566 3566 3567 356.6 713.2 3566 1979-10-07 2024-10-11 00:59:26.000 1979-10-07 2024-10-11 00:59:26 +3567 3567 3568 356.7 713.4000000000001 3567 1979-10-08 2024-10-11 00:59:27.000 1979-10-08 2024-10-11 00:59:27 +3568 3568 3569 356.8 713.6 3568 1979-10-09 2024-10-11 00:59:28.000 1979-10-09 2024-10-11 00:59:28 +3569 3569 3570 356.9 713.8000000000001 3569 1979-10-10 2024-10-11 00:59:29.000 1979-10-10 2024-10-11 00:59:29 +3570 3570 3571 357 714 3570 1979-10-11 2024-10-11 00:59:30.000 1979-10-11 2024-10-11 00:59:30 +3571 3571 3572 357.1 714.2 3571 1979-10-12 2024-10-11 00:59:31.000 1979-10-12 2024-10-11 00:59:31 +3572 3572 3573 357.2 714.4000000000001 3572 1979-10-13 2024-10-11 00:59:32.000 1979-10-13 2024-10-11 00:59:32 +3573 3573 3574 357.3 714.6 3573 1979-10-14 2024-10-11 00:59:33.000 1979-10-14 2024-10-11 00:59:33 +3574 3574 3575 357.4 714.8000000000001 3574 1979-10-15 2024-10-11 00:59:34.000 1979-10-15 2024-10-11 00:59:34 +3575 3575 3576 357.5 715 3575 1979-10-16 2024-10-11 00:59:35.000 1979-10-16 2024-10-11 00:59:35 +3576 3576 3577 357.6 715.2 3576 1979-10-17 2024-10-11 00:59:36.000 1979-10-17 2024-10-11 00:59:36 +3577 3577 3578 357.7 715.4000000000001 3577 1979-10-18 2024-10-11 00:59:37.000 1979-10-18 2024-10-11 00:59:37 +3578 3578 3579 357.8 715.6 3578 1979-10-19 2024-10-11 00:59:38.000 1979-10-19 2024-10-11 00:59:38 +3579 3579 3580 357.9 715.8000000000001 3579 1979-10-20 2024-10-11 00:59:39.000 1979-10-20 2024-10-11 00:59:39 +3580 3580 3581 358 716 3580 1979-10-21 2024-10-11 00:59:40.000 1979-10-21 2024-10-11 00:59:40 +3581 3581 3582 358.1 716.2 3581 1979-10-22 2024-10-11 00:59:41.000 1979-10-22 2024-10-11 00:59:41 +3582 3582 3583 358.2 716.4000000000001 3582 1979-10-23 2024-10-11 00:59:42.000 1979-10-23 2024-10-11 00:59:42 +3583 3583 3584 358.3 716.6 3583 1979-10-24 2024-10-11 00:59:43.000 1979-10-24 2024-10-11 00:59:43 +3584 3584 3585 358.4 716.8000000000001 3584 1979-10-25 2024-10-11 00:59:44.000 1979-10-25 2024-10-11 00:59:44 +3585 3585 3586 358.5 717 3585 1979-10-26 2024-10-11 00:59:45.000 1979-10-26 2024-10-11 00:59:45 +3586 3586 3587 358.6 717.2 3586 1979-10-27 2024-10-11 00:59:46.000 1979-10-27 2024-10-11 00:59:46 +3587 3587 3588 358.7 717.4000000000001 3587 1979-10-28 2024-10-11 00:59:47.000 1979-10-28 2024-10-11 00:59:47 +3588 3588 3589 358.8 717.6 3588 1979-10-29 2024-10-11 00:59:48.000 1979-10-29 2024-10-11 00:59:48 +3589 3589 3590 358.9 717.8000000000001 3589 1979-10-30 2024-10-11 00:59:49.000 1979-10-30 2024-10-11 00:59:49 +3590 3590 3591 359 718 3590 1979-10-31 2024-10-11 00:59:50.000 1979-10-31 2024-10-11 00:59:50 +3591 3591 3592 359.1 718.2 3591 1979-11-01 2024-10-11 00:59:51.000 1979-11-01 2024-10-11 00:59:51 +3592 3592 3593 359.2 718.4000000000001 3592 1979-11-02 2024-10-11 00:59:52.000 1979-11-02 2024-10-11 00:59:52 +3593 3593 3594 359.3 718.6 3593 1979-11-03 2024-10-11 00:59:53.000 1979-11-03 2024-10-11 00:59:53 +3594 3594 3595 359.4 718.8000000000001 3594 1979-11-04 2024-10-11 00:59:54.000 1979-11-04 2024-10-11 00:59:54 +3595 3595 3596 359.5 719 3595 1979-11-05 2024-10-11 00:59:55.000 1979-11-05 2024-10-11 00:59:55 +3596 3596 3597 359.6 719.2 3596 1979-11-06 2024-10-11 00:59:56.000 1979-11-06 2024-10-11 00:59:56 +3597 3597 3598 359.7 719.4000000000001 3597 1979-11-07 2024-10-11 00:59:57.000 1979-11-07 2024-10-11 00:59:57 +3598 3598 3599 359.8 719.6 3598 1979-11-08 2024-10-11 00:59:58.000 1979-11-08 2024-10-11 00:59:58 +3599 3599 3600 359.9 719.8000000000001 3599 1979-11-09 2024-10-11 00:59:59.000 1979-11-09 2024-10-11 00:59:59 +3600 3600 3601 360 720 3600 1979-11-10 2024-10-11 01:00:00.000 1979-11-10 2024-10-11 01:00:00 +3601 3601 3602 360.1 720.2 3601 1979-11-11 2024-10-11 01:00:01.000 1979-11-11 2024-10-11 01:00:01 +3602 3602 3603 360.2 720.4000000000001 3602 1979-11-12 2024-10-11 01:00:02.000 1979-11-12 2024-10-11 01:00:02 +3603 3603 3604 360.3 720.6 3603 1979-11-13 2024-10-11 01:00:03.000 1979-11-13 2024-10-11 01:00:03 +3604 3604 3605 360.4 720.8000000000001 3604 1979-11-14 2024-10-11 01:00:04.000 1979-11-14 2024-10-11 01:00:04 +3605 3605 3606 360.5 721 3605 1979-11-15 2024-10-11 01:00:05.000 1979-11-15 2024-10-11 01:00:05 +3606 3606 3607 360.6 721.2 3606 1979-11-16 2024-10-11 01:00:06.000 1979-11-16 2024-10-11 01:00:06 +3607 3607 3608 360.7 721.4000000000001 3607 1979-11-17 2024-10-11 01:00:07.000 1979-11-17 2024-10-11 01:00:07 +3608 3608 3609 360.8 721.6 3608 1979-11-18 2024-10-11 01:00:08.000 1979-11-18 2024-10-11 01:00:08 +3609 3609 3610 360.9 721.8000000000001 3609 1979-11-19 2024-10-11 01:00:09.000 1979-11-19 2024-10-11 01:00:09 +3610 3610 3611 361 722 3610 1979-11-20 2024-10-11 01:00:10.000 1979-11-20 2024-10-11 01:00:10 +3611 3611 3612 361.1 722.2 3611 1979-11-21 2024-10-11 01:00:11.000 1979-11-21 2024-10-11 01:00:11 +3612 3612 3613 361.2 722.4000000000001 3612 1979-11-22 2024-10-11 01:00:12.000 1979-11-22 2024-10-11 01:00:12 +3613 3613 3614 361.3 722.6 3613 1979-11-23 2024-10-11 01:00:13.000 1979-11-23 2024-10-11 01:00:13 +3614 3614 3615 361.4 722.8000000000001 3614 1979-11-24 2024-10-11 01:00:14.000 1979-11-24 2024-10-11 01:00:14 +3615 3615 3616 361.5 723 3615 1979-11-25 2024-10-11 01:00:15.000 1979-11-25 2024-10-11 01:00:15 +3616 3616 3617 361.6 723.2 3616 1979-11-26 2024-10-11 01:00:16.000 1979-11-26 2024-10-11 01:00:16 +3617 3617 3618 361.7 723.4000000000001 3617 1979-11-27 2024-10-11 01:00:17.000 1979-11-27 2024-10-11 01:00:17 +3618 3618 3619 361.8 723.6 3618 1979-11-28 2024-10-11 01:00:18.000 1979-11-28 2024-10-11 01:00:18 +3619 3619 3620 361.9 723.8000000000001 3619 1979-11-29 2024-10-11 01:00:19.000 1979-11-29 2024-10-11 01:00:19 +3620 3620 3621 362 724 3620 1979-11-30 2024-10-11 01:00:20.000 1979-11-30 2024-10-11 01:00:20 +3621 3621 3622 362.1 724.2 3621 1979-12-01 2024-10-11 01:00:21.000 1979-12-01 2024-10-11 01:00:21 +3622 3622 3623 362.2 724.4000000000001 3622 1979-12-02 2024-10-11 01:00:22.000 1979-12-02 2024-10-11 01:00:22 +3623 3623 3624 362.3 724.6 3623 1979-12-03 2024-10-11 01:00:23.000 1979-12-03 2024-10-11 01:00:23 +3624 3624 3625 362.4 724.8000000000001 3624 1979-12-04 2024-10-11 01:00:24.000 1979-12-04 2024-10-11 01:00:24 +3625 3625 3626 362.5 725 3625 1979-12-05 2024-10-11 01:00:25.000 1979-12-05 2024-10-11 01:00:25 +3626 3626 3627 362.6 725.2 3626 1979-12-06 2024-10-11 01:00:26.000 1979-12-06 2024-10-11 01:00:26 +3627 3627 3628 362.7 725.4000000000001 3627 1979-12-07 2024-10-11 01:00:27.000 1979-12-07 2024-10-11 01:00:27 +3628 3628 3629 362.8 725.6 3628 1979-12-08 2024-10-11 01:00:28.000 1979-12-08 2024-10-11 01:00:28 +3629 3629 3630 362.9 725.8000000000001 3629 1979-12-09 2024-10-11 01:00:29.000 1979-12-09 2024-10-11 01:00:29 +3630 3630 3631 363 726 3630 1979-12-10 2024-10-11 01:00:30.000 1979-12-10 2024-10-11 01:00:30 +3631 3631 3632 363.1 726.2 3631 1979-12-11 2024-10-11 01:00:31.000 1979-12-11 2024-10-11 01:00:31 +3632 3632 3633 363.2 726.4000000000001 3632 1979-12-12 2024-10-11 01:00:32.000 1979-12-12 2024-10-11 01:00:32 +3633 3633 3634 363.3 726.6 3633 1979-12-13 2024-10-11 01:00:33.000 1979-12-13 2024-10-11 01:00:33 +3634 3634 3635 363.4 726.8000000000001 3634 1979-12-14 2024-10-11 01:00:34.000 1979-12-14 2024-10-11 01:00:34 +3635 3635 3636 363.5 727 3635 1979-12-15 2024-10-11 01:00:35.000 1979-12-15 2024-10-11 01:00:35 +3636 3636 3637 363.6 727.2 3636 1979-12-16 2024-10-11 01:00:36.000 1979-12-16 2024-10-11 01:00:36 +3637 3637 3638 363.7 727.4000000000001 3637 1979-12-17 2024-10-11 01:00:37.000 1979-12-17 2024-10-11 01:00:37 +3638 3638 3639 363.8 727.6 3638 1979-12-18 2024-10-11 01:00:38.000 1979-12-18 2024-10-11 01:00:38 +3639 3639 3640 363.9 727.8000000000001 3639 1979-12-19 2024-10-11 01:00:39.000 1979-12-19 2024-10-11 01:00:39 +3640 3640 3641 364 728 3640 1979-12-20 2024-10-11 01:00:40.000 1979-12-20 2024-10-11 01:00:40 +3641 3641 3642 364.1 728.2 3641 1979-12-21 2024-10-11 01:00:41.000 1979-12-21 2024-10-11 01:00:41 +3642 3642 3643 364.2 728.4000000000001 3642 1979-12-22 2024-10-11 01:00:42.000 1979-12-22 2024-10-11 01:00:42 +3643 3643 3644 364.3 728.6 3643 1979-12-23 2024-10-11 01:00:43.000 1979-12-23 2024-10-11 01:00:43 +3644 3644 3645 364.4 728.8000000000001 3644 1979-12-24 2024-10-11 01:00:44.000 1979-12-24 2024-10-11 01:00:44 +3645 3645 3646 364.5 729 3645 1979-12-25 2024-10-11 01:00:45.000 1979-12-25 2024-10-11 01:00:45 +3646 3646 3647 364.6 729.2 3646 1979-12-26 2024-10-11 01:00:46.000 1979-12-26 2024-10-11 01:00:46 +3647 3647 3648 364.7 729.4000000000001 3647 1979-12-27 2024-10-11 01:00:47.000 1979-12-27 2024-10-11 01:00:47 +3648 3648 3649 364.8 729.6 3648 1979-12-28 2024-10-11 01:00:48.000 1979-12-28 2024-10-11 01:00:48 +3649 3649 3650 364.9 729.8000000000001 3649 1979-12-29 2024-10-11 01:00:49.000 1979-12-29 2024-10-11 01:00:49 +3650 3650 3651 365 730 3650 1979-12-30 2024-10-11 01:00:50.000 1979-12-30 2024-10-11 01:00:50 +3651 3651 3652 365.1 730.2 3651 1979-12-31 2024-10-11 01:00:51.000 1979-12-31 2024-10-11 01:00:51 +3652 3652 3653 365.2 730.4000000000001 3652 1980-01-01 2024-10-11 01:00:52.000 1980-01-01 2024-10-11 01:00:52 +3653 3653 3654 365.3 730.6 3653 1980-01-02 2024-10-11 01:00:53.000 1980-01-02 2024-10-11 01:00:53 +3654 3654 3655 365.4 730.8000000000001 3654 1980-01-03 2024-10-11 01:00:54.000 1980-01-03 2024-10-11 01:00:54 +3655 3655 3656 365.5 731 3655 1980-01-04 2024-10-11 01:00:55.000 1980-01-04 2024-10-11 01:00:55 +3656 3656 3657 365.6 731.2 3656 1980-01-05 2024-10-11 01:00:56.000 1980-01-05 2024-10-11 01:00:56 +3657 3657 3658 365.7 731.4000000000001 3657 1980-01-06 2024-10-11 01:00:57.000 1980-01-06 2024-10-11 01:00:57 +3658 3658 3659 365.8 731.6 3658 1980-01-07 2024-10-11 01:00:58.000 1980-01-07 2024-10-11 01:00:58 +3659 3659 3660 365.9 731.8000000000001 3659 1980-01-08 2024-10-11 01:00:59.000 1980-01-08 2024-10-11 01:00:59 +3660 3660 3661 366 732 3660 1980-01-09 2024-10-11 01:01:00.000 1980-01-09 2024-10-11 01:01:00 +3661 3661 3662 366.1 732.2 3661 1980-01-10 2024-10-11 01:01:01.000 1980-01-10 2024-10-11 01:01:01 +3662 3662 3663 366.2 732.4000000000001 3662 1980-01-11 2024-10-11 01:01:02.000 1980-01-11 2024-10-11 01:01:02 +3663 3663 3664 366.3 732.6 3663 1980-01-12 2024-10-11 01:01:03.000 1980-01-12 2024-10-11 01:01:03 +3664 3664 3665 366.4 732.8000000000001 3664 1980-01-13 2024-10-11 01:01:04.000 1980-01-13 2024-10-11 01:01:04 +3665 3665 3666 366.5 733 3665 1980-01-14 2024-10-11 01:01:05.000 1980-01-14 2024-10-11 01:01:05 +3666 3666 3667 366.6 733.2 3666 1980-01-15 2024-10-11 01:01:06.000 1980-01-15 2024-10-11 01:01:06 +3667 3667 3668 366.7 733.4000000000001 3667 1980-01-16 2024-10-11 01:01:07.000 1980-01-16 2024-10-11 01:01:07 +3668 3668 3669 366.8 733.6 3668 1980-01-17 2024-10-11 01:01:08.000 1980-01-17 2024-10-11 01:01:08 +3669 3669 3670 366.9 733.8000000000001 3669 1980-01-18 2024-10-11 01:01:09.000 1980-01-18 2024-10-11 01:01:09 +3670 3670 3671 367 734 3670 1980-01-19 2024-10-11 01:01:10.000 1980-01-19 2024-10-11 01:01:10 +3671 3671 3672 367.1 734.2 3671 1980-01-20 2024-10-11 01:01:11.000 1980-01-20 2024-10-11 01:01:11 +3672 3672 3673 367.2 734.4000000000001 3672 1980-01-21 2024-10-11 01:01:12.000 1980-01-21 2024-10-11 01:01:12 +3673 3673 3674 367.3 734.6 3673 1980-01-22 2024-10-11 01:01:13.000 1980-01-22 2024-10-11 01:01:13 +3674 3674 3675 367.4 734.8000000000001 3674 1980-01-23 2024-10-11 01:01:14.000 1980-01-23 2024-10-11 01:01:14 +3675 3675 3676 367.5 735 3675 1980-01-24 2024-10-11 01:01:15.000 1980-01-24 2024-10-11 01:01:15 +3676 3676 3677 367.6 735.2 3676 1980-01-25 2024-10-11 01:01:16.000 1980-01-25 2024-10-11 01:01:16 +3677 3677 3678 367.7 735.4000000000001 3677 1980-01-26 2024-10-11 01:01:17.000 1980-01-26 2024-10-11 01:01:17 +3678 3678 3679 367.8 735.6 3678 1980-01-27 2024-10-11 01:01:18.000 1980-01-27 2024-10-11 01:01:18 +3679 3679 3680 367.9 735.8000000000001 3679 1980-01-28 2024-10-11 01:01:19.000 1980-01-28 2024-10-11 01:01:19 +3680 3680 3681 368 736 3680 1980-01-29 2024-10-11 01:01:20.000 1980-01-29 2024-10-11 01:01:20 +3681 3681 3682 368.1 736.2 3681 1980-01-30 2024-10-11 01:01:21.000 1980-01-30 2024-10-11 01:01:21 +3682 3682 3683 368.2 736.4000000000001 3682 1980-01-31 2024-10-11 01:01:22.000 1980-01-31 2024-10-11 01:01:22 +3683 3683 3684 368.3 736.6 3683 1980-02-01 2024-10-11 01:01:23.000 1980-02-01 2024-10-11 01:01:23 +3684 3684 3685 368.4 736.8000000000001 3684 1980-02-02 2024-10-11 01:01:24.000 1980-02-02 2024-10-11 01:01:24 +3685 3685 3686 368.5 737 3685 1980-02-03 2024-10-11 01:01:25.000 1980-02-03 2024-10-11 01:01:25 +3686 3686 3687 368.6 737.2 3686 1980-02-04 2024-10-11 01:01:26.000 1980-02-04 2024-10-11 01:01:26 +3687 3687 3688 368.7 737.4000000000001 3687 1980-02-05 2024-10-11 01:01:27.000 1980-02-05 2024-10-11 01:01:27 +3688 3688 3689 368.8 737.6 3688 1980-02-06 2024-10-11 01:01:28.000 1980-02-06 2024-10-11 01:01:28 +3689 3689 3690 368.9 737.8000000000001 3689 1980-02-07 2024-10-11 01:01:29.000 1980-02-07 2024-10-11 01:01:29 +3690 3690 3691 369 738 3690 1980-02-08 2024-10-11 01:01:30.000 1980-02-08 2024-10-11 01:01:30 +3691 3691 3692 369.1 738.2 3691 1980-02-09 2024-10-11 01:01:31.000 1980-02-09 2024-10-11 01:01:31 +3692 3692 3693 369.2 738.4000000000001 3692 1980-02-10 2024-10-11 01:01:32.000 1980-02-10 2024-10-11 01:01:32 +3693 3693 3694 369.3 738.6 3693 1980-02-11 2024-10-11 01:01:33.000 1980-02-11 2024-10-11 01:01:33 +3694 3694 3695 369.4 738.8000000000001 3694 1980-02-12 2024-10-11 01:01:34.000 1980-02-12 2024-10-11 01:01:34 +3695 3695 3696 369.5 739 3695 1980-02-13 2024-10-11 01:01:35.000 1980-02-13 2024-10-11 01:01:35 +3696 3696 3697 369.6 739.2 3696 1980-02-14 2024-10-11 01:01:36.000 1980-02-14 2024-10-11 01:01:36 +3697 3697 3698 369.7 739.4000000000001 3697 1980-02-15 2024-10-11 01:01:37.000 1980-02-15 2024-10-11 01:01:37 +3698 3698 3699 369.8 739.6 3698 1980-02-16 2024-10-11 01:01:38.000 1980-02-16 2024-10-11 01:01:38 +3699 3699 3700 369.9 739.8000000000001 3699 1980-02-17 2024-10-11 01:01:39.000 1980-02-17 2024-10-11 01:01:39 +3700 3700 3701 370 740 3700 1980-02-18 2024-10-11 01:01:40.000 1980-02-18 2024-10-11 01:01:40 +3701 3701 3702 370.1 740.2 3701 1980-02-19 2024-10-11 01:01:41.000 1980-02-19 2024-10-11 01:01:41 +3702 3702 3703 370.2 740.4000000000001 3702 1980-02-20 2024-10-11 01:01:42.000 1980-02-20 2024-10-11 01:01:42 +3703 3703 3704 370.3 740.6 3703 1980-02-21 2024-10-11 01:01:43.000 1980-02-21 2024-10-11 01:01:43 +3704 3704 3705 370.4 740.8000000000001 3704 1980-02-22 2024-10-11 01:01:44.000 1980-02-22 2024-10-11 01:01:44 +3705 3705 3706 370.5 741 3705 1980-02-23 2024-10-11 01:01:45.000 1980-02-23 2024-10-11 01:01:45 +3706 3706 3707 370.6 741.2 3706 1980-02-24 2024-10-11 01:01:46.000 1980-02-24 2024-10-11 01:01:46 +3707 3707 3708 370.7 741.4000000000001 3707 1980-02-25 2024-10-11 01:01:47.000 1980-02-25 2024-10-11 01:01:47 +3708 3708 3709 370.8 741.6 3708 1980-02-26 2024-10-11 01:01:48.000 1980-02-26 2024-10-11 01:01:48 +3709 3709 3710 370.9 741.8000000000001 3709 1980-02-27 2024-10-11 01:01:49.000 1980-02-27 2024-10-11 01:01:49 +3710 3710 3711 371 742 3710 1980-02-28 2024-10-11 01:01:50.000 1980-02-28 2024-10-11 01:01:50 +3711 3711 3712 371.1 742.2 3711 1980-02-29 2024-10-11 01:01:51.000 1980-02-29 2024-10-11 01:01:51 +3712 3712 3713 371.2 742.4000000000001 3712 1980-03-01 2024-10-11 01:01:52.000 1980-03-01 2024-10-11 01:01:52 +3713 3713 3714 371.3 742.6 3713 1980-03-02 2024-10-11 01:01:53.000 1980-03-02 2024-10-11 01:01:53 +3714 3714 3715 371.4 742.8000000000001 3714 1980-03-03 2024-10-11 01:01:54.000 1980-03-03 2024-10-11 01:01:54 +3715 3715 3716 371.5 743 3715 1980-03-04 2024-10-11 01:01:55.000 1980-03-04 2024-10-11 01:01:55 +3716 3716 3717 371.6 743.2 3716 1980-03-05 2024-10-11 01:01:56.000 1980-03-05 2024-10-11 01:01:56 +3717 3717 3718 371.7 743.4000000000001 3717 1980-03-06 2024-10-11 01:01:57.000 1980-03-06 2024-10-11 01:01:57 +3718 3718 3719 371.8 743.6 3718 1980-03-07 2024-10-11 01:01:58.000 1980-03-07 2024-10-11 01:01:58 +3719 3719 3720 371.9 743.8000000000001 3719 1980-03-08 2024-10-11 01:01:59.000 1980-03-08 2024-10-11 01:01:59 +3720 3720 3721 372 744 3720 1980-03-09 2024-10-11 01:02:00.000 1980-03-09 2024-10-11 01:02:00 +3721 3721 3722 372.1 744.2 3721 1980-03-10 2024-10-11 01:02:01.000 1980-03-10 2024-10-11 01:02:01 +3722 3722 3723 372.2 744.4000000000001 3722 1980-03-11 2024-10-11 01:02:02.000 1980-03-11 2024-10-11 01:02:02 +3723 3723 3724 372.3 744.6 3723 1980-03-12 2024-10-11 01:02:03.000 1980-03-12 2024-10-11 01:02:03 +3724 3724 3725 372.4 744.8000000000001 3724 1980-03-13 2024-10-11 01:02:04.000 1980-03-13 2024-10-11 01:02:04 +3725 3725 3726 372.5 745 3725 1980-03-14 2024-10-11 01:02:05.000 1980-03-14 2024-10-11 01:02:05 +3726 3726 3727 372.6 745.2 3726 1980-03-15 2024-10-11 01:02:06.000 1980-03-15 2024-10-11 01:02:06 +3727 3727 3728 372.7 745.4000000000001 3727 1980-03-16 2024-10-11 01:02:07.000 1980-03-16 2024-10-11 01:02:07 +3728 3728 3729 372.8 745.6 3728 1980-03-17 2024-10-11 01:02:08.000 1980-03-17 2024-10-11 01:02:08 +3729 3729 3730 372.9 745.8000000000001 3729 1980-03-18 2024-10-11 01:02:09.000 1980-03-18 2024-10-11 01:02:09 +3730 3730 3731 373 746 3730 1980-03-19 2024-10-11 01:02:10.000 1980-03-19 2024-10-11 01:02:10 +3731 3731 3732 373.1 746.2 3731 1980-03-20 2024-10-11 01:02:11.000 1980-03-20 2024-10-11 01:02:11 +3732 3732 3733 373.2 746.4000000000001 3732 1980-03-21 2024-10-11 01:02:12.000 1980-03-21 2024-10-11 01:02:12 +3733 3733 3734 373.3 746.6 3733 1980-03-22 2024-10-11 01:02:13.000 1980-03-22 2024-10-11 01:02:13 +3734 3734 3735 373.4 746.8000000000001 3734 1980-03-23 2024-10-11 01:02:14.000 1980-03-23 2024-10-11 01:02:14 +3735 3735 3736 373.5 747 3735 1980-03-24 2024-10-11 01:02:15.000 1980-03-24 2024-10-11 01:02:15 +3736 3736 3737 373.6 747.2 3736 1980-03-25 2024-10-11 01:02:16.000 1980-03-25 2024-10-11 01:02:16 +3737 3737 3738 373.7 747.4000000000001 3737 1980-03-26 2024-10-11 01:02:17.000 1980-03-26 2024-10-11 01:02:17 +3738 3738 3739 373.8 747.6 3738 1980-03-27 2024-10-11 01:02:18.000 1980-03-27 2024-10-11 01:02:18 +3739 3739 3740 373.9 747.8000000000001 3739 1980-03-28 2024-10-11 01:02:19.000 1980-03-28 2024-10-11 01:02:19 +3740 3740 3741 374 748 3740 1980-03-29 2024-10-11 01:02:20.000 1980-03-29 2024-10-11 01:02:20 +3741 3741 3742 374.1 748.2 3741 1980-03-30 2024-10-11 01:02:21.000 1980-03-30 2024-10-11 01:02:21 +3742 3742 3743 374.2 748.4000000000001 3742 1980-03-31 2024-10-11 01:02:22.000 1980-03-31 2024-10-11 01:02:22 +3743 3743 3744 374.3 748.6 3743 1980-04-01 2024-10-11 01:02:23.000 1980-04-01 2024-10-11 01:02:23 +3744 3744 3745 374.4 748.8000000000001 3744 1980-04-02 2024-10-11 01:02:24.000 1980-04-02 2024-10-11 01:02:24 +3745 3745 3746 374.5 749 3745 1980-04-03 2024-10-11 01:02:25.000 1980-04-03 2024-10-11 01:02:25 +3746 3746 3747 374.6 749.2 3746 1980-04-04 2024-10-11 01:02:26.000 1980-04-04 2024-10-11 01:02:26 +3747 3747 3748 374.7 749.4000000000001 3747 1980-04-05 2024-10-11 01:02:27.000 1980-04-05 2024-10-11 01:02:27 +3748 3748 3749 374.8 749.6 3748 1980-04-06 2024-10-11 01:02:28.000 1980-04-06 2024-10-11 01:02:28 +3749 3749 3750 374.9 749.8000000000001 3749 1980-04-07 2024-10-11 01:02:29.000 1980-04-07 2024-10-11 01:02:29 +3750 3750 3751 375 750 3750 1980-04-08 2024-10-11 01:02:30.000 1980-04-08 2024-10-11 01:02:30 +3751 3751 3752 375.1 750.2 3751 1980-04-09 2024-10-11 01:02:31.000 1980-04-09 2024-10-11 01:02:31 +3752 3752 3753 375.2 750.4000000000001 3752 1980-04-10 2024-10-11 01:02:32.000 1980-04-10 2024-10-11 01:02:32 +3753 3753 3754 375.3 750.6 3753 1980-04-11 2024-10-11 01:02:33.000 1980-04-11 2024-10-11 01:02:33 +3754 3754 3755 375.4 750.8000000000001 3754 1980-04-12 2024-10-11 01:02:34.000 1980-04-12 2024-10-11 01:02:34 +3755 3755 3756 375.5 751 3755 1980-04-13 2024-10-11 01:02:35.000 1980-04-13 2024-10-11 01:02:35 +3756 3756 3757 375.6 751.2 3756 1980-04-14 2024-10-11 01:02:36.000 1980-04-14 2024-10-11 01:02:36 +3757 3757 3758 375.7 751.4000000000001 3757 1980-04-15 2024-10-11 01:02:37.000 1980-04-15 2024-10-11 01:02:37 +3758 3758 3759 375.8 751.6 3758 1980-04-16 2024-10-11 01:02:38.000 1980-04-16 2024-10-11 01:02:38 +3759 3759 3760 375.9 751.8000000000001 3759 1980-04-17 2024-10-11 01:02:39.000 1980-04-17 2024-10-11 01:02:39 +3760 3760 3761 376 752 3760 1980-04-18 2024-10-11 01:02:40.000 1980-04-18 2024-10-11 01:02:40 +3761 3761 3762 376.1 752.2 3761 1980-04-19 2024-10-11 01:02:41.000 1980-04-19 2024-10-11 01:02:41 +3762 3762 3763 376.2 752.4000000000001 3762 1980-04-20 2024-10-11 01:02:42.000 1980-04-20 2024-10-11 01:02:42 +3763 3763 3764 376.3 752.6 3763 1980-04-21 2024-10-11 01:02:43.000 1980-04-21 2024-10-11 01:02:43 +3764 3764 3765 376.4 752.8000000000001 3764 1980-04-22 2024-10-11 01:02:44.000 1980-04-22 2024-10-11 01:02:44 +3765 3765 3766 376.5 753 3765 1980-04-23 2024-10-11 01:02:45.000 1980-04-23 2024-10-11 01:02:45 +3766 3766 3767 376.6 753.2 3766 1980-04-24 2024-10-11 01:02:46.000 1980-04-24 2024-10-11 01:02:46 +3767 3767 3768 376.7 753.4000000000001 3767 1980-04-25 2024-10-11 01:02:47.000 1980-04-25 2024-10-11 01:02:47 +3768 3768 3769 376.8 753.6 3768 1980-04-26 2024-10-11 01:02:48.000 1980-04-26 2024-10-11 01:02:48 +3769 3769 3770 376.9 753.8000000000001 3769 1980-04-27 2024-10-11 01:02:49.000 1980-04-27 2024-10-11 01:02:49 +3770 3770 3771 377 754 3770 1980-04-28 2024-10-11 01:02:50.000 1980-04-28 2024-10-11 01:02:50 +3771 3771 3772 377.1 754.2 3771 1980-04-29 2024-10-11 01:02:51.000 1980-04-29 2024-10-11 01:02:51 +3772 3772 3773 377.2 754.4000000000001 3772 1980-04-30 2024-10-11 01:02:52.000 1980-04-30 2024-10-11 01:02:52 +3773 3773 3774 377.3 754.6 3773 1980-05-01 2024-10-11 01:02:53.000 1980-05-01 2024-10-11 01:02:53 +3774 3774 3775 377.4 754.8000000000001 3774 1980-05-02 2024-10-11 01:02:54.000 1980-05-02 2024-10-11 01:02:54 +3775 3775 3776 377.5 755 3775 1980-05-03 2024-10-11 01:02:55.000 1980-05-03 2024-10-11 01:02:55 +3776 3776 3777 377.6 755.2 3776 1980-05-04 2024-10-11 01:02:56.000 1980-05-04 2024-10-11 01:02:56 +3777 3777 3778 377.7 755.4000000000001 3777 1980-05-05 2024-10-11 01:02:57.000 1980-05-05 2024-10-11 01:02:57 +3778 3778 3779 377.8 755.6 3778 1980-05-06 2024-10-11 01:02:58.000 1980-05-06 2024-10-11 01:02:58 +3779 3779 3780 377.9 755.8000000000001 3779 1980-05-07 2024-10-11 01:02:59.000 1980-05-07 2024-10-11 01:02:59 +3780 3780 3781 378 756 3780 1980-05-08 2024-10-11 01:03:00.000 1980-05-08 2024-10-11 01:03:00 +3781 3781 3782 378.1 756.2 3781 1980-05-09 2024-10-11 01:03:01.000 1980-05-09 2024-10-11 01:03:01 +3782 3782 3783 378.2 756.4000000000001 3782 1980-05-10 2024-10-11 01:03:02.000 1980-05-10 2024-10-11 01:03:02 +3783 3783 3784 378.3 756.6 3783 1980-05-11 2024-10-11 01:03:03.000 1980-05-11 2024-10-11 01:03:03 +3784 3784 3785 378.4 756.8000000000001 3784 1980-05-12 2024-10-11 01:03:04.000 1980-05-12 2024-10-11 01:03:04 +3785 3785 3786 378.5 757 3785 1980-05-13 2024-10-11 01:03:05.000 1980-05-13 2024-10-11 01:03:05 +3786 3786 3787 378.6 757.2 3786 1980-05-14 2024-10-11 01:03:06.000 1980-05-14 2024-10-11 01:03:06 +3787 3787 3788 378.7 757.4000000000001 3787 1980-05-15 2024-10-11 01:03:07.000 1980-05-15 2024-10-11 01:03:07 +3788 3788 3789 378.8 757.6 3788 1980-05-16 2024-10-11 01:03:08.000 1980-05-16 2024-10-11 01:03:08 +3789 3789 3790 378.9 757.8000000000001 3789 1980-05-17 2024-10-11 01:03:09.000 1980-05-17 2024-10-11 01:03:09 +3790 3790 3791 379 758 3790 1980-05-18 2024-10-11 01:03:10.000 1980-05-18 2024-10-11 01:03:10 +3791 3791 3792 379.1 758.2 3791 1980-05-19 2024-10-11 01:03:11.000 1980-05-19 2024-10-11 01:03:11 +3792 3792 3793 379.2 758.4000000000001 3792 1980-05-20 2024-10-11 01:03:12.000 1980-05-20 2024-10-11 01:03:12 +3793 3793 3794 379.3 758.6 3793 1980-05-21 2024-10-11 01:03:13.000 1980-05-21 2024-10-11 01:03:13 +3794 3794 3795 379.4 758.8000000000001 3794 1980-05-22 2024-10-11 01:03:14.000 1980-05-22 2024-10-11 01:03:14 +3795 3795 3796 379.5 759 3795 1980-05-23 2024-10-11 01:03:15.000 1980-05-23 2024-10-11 01:03:15 +3796 3796 3797 379.6 759.2 3796 1980-05-24 2024-10-11 01:03:16.000 1980-05-24 2024-10-11 01:03:16 +3797 3797 3798 379.7 759.4000000000001 3797 1980-05-25 2024-10-11 01:03:17.000 1980-05-25 2024-10-11 01:03:17 +3798 3798 3799 379.8 759.6 3798 1980-05-26 2024-10-11 01:03:18.000 1980-05-26 2024-10-11 01:03:18 +3799 3799 3800 379.9 759.8000000000001 3799 1980-05-27 2024-10-11 01:03:19.000 1980-05-27 2024-10-11 01:03:19 +3800 3800 3801 380 760 3800 1980-05-28 2024-10-11 01:03:20.000 1980-05-28 2024-10-11 01:03:20 +3801 3801 3802 380.1 760.2 3801 1980-05-29 2024-10-11 01:03:21.000 1980-05-29 2024-10-11 01:03:21 +3802 3802 3803 380.2 760.4000000000001 3802 1980-05-30 2024-10-11 01:03:22.000 1980-05-30 2024-10-11 01:03:22 +3803 3803 3804 380.3 760.6 3803 1980-05-31 2024-10-11 01:03:23.000 1980-05-31 2024-10-11 01:03:23 +3804 3804 3805 380.4 760.8000000000001 3804 1980-06-01 2024-10-11 01:03:24.000 1980-06-01 2024-10-11 01:03:24 +3805 3805 3806 380.5 761 3805 1980-06-02 2024-10-11 01:03:25.000 1980-06-02 2024-10-11 01:03:25 +3806 3806 3807 380.6 761.2 3806 1980-06-03 2024-10-11 01:03:26.000 1980-06-03 2024-10-11 01:03:26 +3807 3807 3808 380.7 761.4000000000001 3807 1980-06-04 2024-10-11 01:03:27.000 1980-06-04 2024-10-11 01:03:27 +3808 3808 3809 380.8 761.6 3808 1980-06-05 2024-10-11 01:03:28.000 1980-06-05 2024-10-11 01:03:28 +3809 3809 3810 380.9 761.8000000000001 3809 1980-06-06 2024-10-11 01:03:29.000 1980-06-06 2024-10-11 01:03:29 +3810 3810 3811 381 762 3810 1980-06-07 2024-10-11 01:03:30.000 1980-06-07 2024-10-11 01:03:30 +3811 3811 3812 381.1 762.2 3811 1980-06-08 2024-10-11 01:03:31.000 1980-06-08 2024-10-11 01:03:31 +3812 3812 3813 381.2 762.4000000000001 3812 1980-06-09 2024-10-11 01:03:32.000 1980-06-09 2024-10-11 01:03:32 +3813 3813 3814 381.3 762.6 3813 1980-06-10 2024-10-11 01:03:33.000 1980-06-10 2024-10-11 01:03:33 +3814 3814 3815 381.4 762.8000000000001 3814 1980-06-11 2024-10-11 01:03:34.000 1980-06-11 2024-10-11 01:03:34 +3815 3815 3816 381.5 763 3815 1980-06-12 2024-10-11 01:03:35.000 1980-06-12 2024-10-11 01:03:35 +3816 3816 3817 381.6 763.2 3816 1980-06-13 2024-10-11 01:03:36.000 1980-06-13 2024-10-11 01:03:36 +3817 3817 3818 381.7 763.4000000000001 3817 1980-06-14 2024-10-11 01:03:37.000 1980-06-14 2024-10-11 01:03:37 +3818 3818 3819 381.8 763.6 3818 1980-06-15 2024-10-11 01:03:38.000 1980-06-15 2024-10-11 01:03:38 +3819 3819 3820 381.9 763.8000000000001 3819 1980-06-16 2024-10-11 01:03:39.000 1980-06-16 2024-10-11 01:03:39 +3820 3820 3821 382 764 3820 1980-06-17 2024-10-11 01:03:40.000 1980-06-17 2024-10-11 01:03:40 +3821 3821 3822 382.1 764.2 3821 1980-06-18 2024-10-11 01:03:41.000 1980-06-18 2024-10-11 01:03:41 +3822 3822 3823 382.2 764.4000000000001 3822 1980-06-19 2024-10-11 01:03:42.000 1980-06-19 2024-10-11 01:03:42 +3823 3823 3824 382.3 764.6 3823 1980-06-20 2024-10-11 01:03:43.000 1980-06-20 2024-10-11 01:03:43 +3824 3824 3825 382.4 764.8000000000001 3824 1980-06-21 2024-10-11 01:03:44.000 1980-06-21 2024-10-11 01:03:44 +3825 3825 3826 382.5 765 3825 1980-06-22 2024-10-11 01:03:45.000 1980-06-22 2024-10-11 01:03:45 +3826 3826 3827 382.6 765.2 3826 1980-06-23 2024-10-11 01:03:46.000 1980-06-23 2024-10-11 01:03:46 +3827 3827 3828 382.7 765.4000000000001 3827 1980-06-24 2024-10-11 01:03:47.000 1980-06-24 2024-10-11 01:03:47 +3828 3828 3829 382.8 765.6 3828 1980-06-25 2024-10-11 01:03:48.000 1980-06-25 2024-10-11 01:03:48 +3829 3829 3830 382.9 765.8000000000001 3829 1980-06-26 2024-10-11 01:03:49.000 1980-06-26 2024-10-11 01:03:49 +3830 3830 3831 383 766 3830 1980-06-27 2024-10-11 01:03:50.000 1980-06-27 2024-10-11 01:03:50 +3831 3831 3832 383.1 766.2 3831 1980-06-28 2024-10-11 01:03:51.000 1980-06-28 2024-10-11 01:03:51 +3832 3832 3833 383.2 766.4000000000001 3832 1980-06-29 2024-10-11 01:03:52.000 1980-06-29 2024-10-11 01:03:52 +3833 3833 3834 383.3 766.6 3833 1980-06-30 2024-10-11 01:03:53.000 1980-06-30 2024-10-11 01:03:53 +3834 3834 3835 383.4 766.8000000000001 3834 1980-07-01 2024-10-11 01:03:54.000 1980-07-01 2024-10-11 01:03:54 +3835 3835 3836 383.5 767 3835 1980-07-02 2024-10-11 01:03:55.000 1980-07-02 2024-10-11 01:03:55 +3836 3836 3837 383.6 767.2 3836 1980-07-03 2024-10-11 01:03:56.000 1980-07-03 2024-10-11 01:03:56 +3837 3837 3838 383.7 767.4000000000001 3837 1980-07-04 2024-10-11 01:03:57.000 1980-07-04 2024-10-11 01:03:57 +3838 3838 3839 383.8 767.6 3838 1980-07-05 2024-10-11 01:03:58.000 1980-07-05 2024-10-11 01:03:58 +3839 3839 3840 383.9 767.8000000000001 3839 1980-07-06 2024-10-11 01:03:59.000 1980-07-06 2024-10-11 01:03:59 +3840 3840 3841 384 768 3840 1980-07-07 2024-10-11 01:04:00.000 1980-07-07 2024-10-11 01:04:00 +3841 3841 3842 384.1 768.2 3841 1980-07-08 2024-10-11 01:04:01.000 1980-07-08 2024-10-11 01:04:01 +3842 3842 3843 384.2 768.4000000000001 3842 1980-07-09 2024-10-11 01:04:02.000 1980-07-09 2024-10-11 01:04:02 +3843 3843 3844 384.3 768.6 3843 1980-07-10 2024-10-11 01:04:03.000 1980-07-10 2024-10-11 01:04:03 +3844 3844 3845 384.4 768.8000000000001 3844 1980-07-11 2024-10-11 01:04:04.000 1980-07-11 2024-10-11 01:04:04 +3845 3845 3846 384.5 769 3845 1980-07-12 2024-10-11 01:04:05.000 1980-07-12 2024-10-11 01:04:05 +3846 3846 3847 384.6 769.2 3846 1980-07-13 2024-10-11 01:04:06.000 1980-07-13 2024-10-11 01:04:06 +3847 3847 3848 384.7 769.4000000000001 3847 1980-07-14 2024-10-11 01:04:07.000 1980-07-14 2024-10-11 01:04:07 +3848 3848 3849 384.8 769.6 3848 1980-07-15 2024-10-11 01:04:08.000 1980-07-15 2024-10-11 01:04:08 +3849 3849 3850 384.9 769.8000000000001 3849 1980-07-16 2024-10-11 01:04:09.000 1980-07-16 2024-10-11 01:04:09 +3850 3850 3851 385 770 3850 1980-07-17 2024-10-11 01:04:10.000 1980-07-17 2024-10-11 01:04:10 +3851 3851 3852 385.1 770.2 3851 1980-07-18 2024-10-11 01:04:11.000 1980-07-18 2024-10-11 01:04:11 +3852 3852 3853 385.2 770.4000000000001 3852 1980-07-19 2024-10-11 01:04:12.000 1980-07-19 2024-10-11 01:04:12 +3853 3853 3854 385.3 770.6 3853 1980-07-20 2024-10-11 01:04:13.000 1980-07-20 2024-10-11 01:04:13 +3854 3854 3855 385.4 770.8000000000001 3854 1980-07-21 2024-10-11 01:04:14.000 1980-07-21 2024-10-11 01:04:14 +3855 3855 3856 385.5 771 3855 1980-07-22 2024-10-11 01:04:15.000 1980-07-22 2024-10-11 01:04:15 +3856 3856 3857 385.6 771.2 3856 1980-07-23 2024-10-11 01:04:16.000 1980-07-23 2024-10-11 01:04:16 +3857 3857 3858 385.7 771.4000000000001 3857 1980-07-24 2024-10-11 01:04:17.000 1980-07-24 2024-10-11 01:04:17 +3858 3858 3859 385.8 771.6 3858 1980-07-25 2024-10-11 01:04:18.000 1980-07-25 2024-10-11 01:04:18 +3859 3859 3860 385.9 771.8000000000001 3859 1980-07-26 2024-10-11 01:04:19.000 1980-07-26 2024-10-11 01:04:19 +3860 3860 3861 386 772 3860 1980-07-27 2024-10-11 01:04:20.000 1980-07-27 2024-10-11 01:04:20 +3861 3861 3862 386.1 772.2 3861 1980-07-28 2024-10-11 01:04:21.000 1980-07-28 2024-10-11 01:04:21 +3862 3862 3863 386.2 772.4000000000001 3862 1980-07-29 2024-10-11 01:04:22.000 1980-07-29 2024-10-11 01:04:22 +3863 3863 3864 386.3 772.6 3863 1980-07-30 2024-10-11 01:04:23.000 1980-07-30 2024-10-11 01:04:23 +3864 3864 3865 386.4 772.8000000000001 3864 1980-07-31 2024-10-11 01:04:24.000 1980-07-31 2024-10-11 01:04:24 +3865 3865 3866 386.5 773 3865 1980-08-01 2024-10-11 01:04:25.000 1980-08-01 2024-10-11 01:04:25 +3866 3866 3867 386.6 773.2 3866 1980-08-02 2024-10-11 01:04:26.000 1980-08-02 2024-10-11 01:04:26 +3867 3867 3868 386.7 773.4000000000001 3867 1980-08-03 2024-10-11 01:04:27.000 1980-08-03 2024-10-11 01:04:27 +3868 3868 3869 386.8 773.6 3868 1980-08-04 2024-10-11 01:04:28.000 1980-08-04 2024-10-11 01:04:28 +3869 3869 3870 386.9 773.8000000000001 3869 1980-08-05 2024-10-11 01:04:29.000 1980-08-05 2024-10-11 01:04:29 +3870 3870 3871 387 774 3870 1980-08-06 2024-10-11 01:04:30.000 1980-08-06 2024-10-11 01:04:30 +3871 3871 3872 387.1 774.2 3871 1980-08-07 2024-10-11 01:04:31.000 1980-08-07 2024-10-11 01:04:31 +3872 3872 3873 387.2 774.4000000000001 3872 1980-08-08 2024-10-11 01:04:32.000 1980-08-08 2024-10-11 01:04:32 +3873 3873 3874 387.3 774.6 3873 1980-08-09 2024-10-11 01:04:33.000 1980-08-09 2024-10-11 01:04:33 +3874 3874 3875 387.4 774.8000000000001 3874 1980-08-10 2024-10-11 01:04:34.000 1980-08-10 2024-10-11 01:04:34 +3875 3875 3876 387.5 775 3875 1980-08-11 2024-10-11 01:04:35.000 1980-08-11 2024-10-11 01:04:35 +3876 3876 3877 387.6 775.2 3876 1980-08-12 2024-10-11 01:04:36.000 1980-08-12 2024-10-11 01:04:36 +3877 3877 3878 387.7 775.4000000000001 3877 1980-08-13 2024-10-11 01:04:37.000 1980-08-13 2024-10-11 01:04:37 +3878 3878 3879 387.8 775.6 3878 1980-08-14 2024-10-11 01:04:38.000 1980-08-14 2024-10-11 01:04:38 +3879 3879 3880 387.9 775.8000000000001 3879 1980-08-15 2024-10-11 01:04:39.000 1980-08-15 2024-10-11 01:04:39 +3880 3880 3881 388 776 3880 1980-08-16 2024-10-11 01:04:40.000 1980-08-16 2024-10-11 01:04:40 +3881 3881 3882 388.1 776.2 3881 1980-08-17 2024-10-11 01:04:41.000 1980-08-17 2024-10-11 01:04:41 +3882 3882 3883 388.2 776.4000000000001 3882 1980-08-18 2024-10-11 01:04:42.000 1980-08-18 2024-10-11 01:04:42 +3883 3883 3884 388.3 776.6 3883 1980-08-19 2024-10-11 01:04:43.000 1980-08-19 2024-10-11 01:04:43 +3884 3884 3885 388.4 776.8000000000001 3884 1980-08-20 2024-10-11 01:04:44.000 1980-08-20 2024-10-11 01:04:44 +3885 3885 3886 388.5 777 3885 1980-08-21 2024-10-11 01:04:45.000 1980-08-21 2024-10-11 01:04:45 +3886 3886 3887 388.6 777.2 3886 1980-08-22 2024-10-11 01:04:46.000 1980-08-22 2024-10-11 01:04:46 +3887 3887 3888 388.7 777.4000000000001 3887 1980-08-23 2024-10-11 01:04:47.000 1980-08-23 2024-10-11 01:04:47 +3888 3888 3889 388.8 777.6 3888 1980-08-24 2024-10-11 01:04:48.000 1980-08-24 2024-10-11 01:04:48 +3889 3889 3890 388.9 777.8000000000001 3889 1980-08-25 2024-10-11 01:04:49.000 1980-08-25 2024-10-11 01:04:49 +3890 3890 3891 389 778 3890 1980-08-26 2024-10-11 01:04:50.000 1980-08-26 2024-10-11 01:04:50 +3891 3891 3892 389.1 778.2 3891 1980-08-27 2024-10-11 01:04:51.000 1980-08-27 2024-10-11 01:04:51 +3892 3892 3893 389.2 778.4000000000001 3892 1980-08-28 2024-10-11 01:04:52.000 1980-08-28 2024-10-11 01:04:52 +3893 3893 3894 389.3 778.6 3893 1980-08-29 2024-10-11 01:04:53.000 1980-08-29 2024-10-11 01:04:53 +3894 3894 3895 389.4 778.8000000000001 3894 1980-08-30 2024-10-11 01:04:54.000 1980-08-30 2024-10-11 01:04:54 +3895 3895 3896 389.5 779 3895 1980-08-31 2024-10-11 01:04:55.000 1980-08-31 2024-10-11 01:04:55 +3896 3896 3897 389.6 779.2 3896 1980-09-01 2024-10-11 01:04:56.000 1980-09-01 2024-10-11 01:04:56 +3897 3897 3898 389.7 779.4000000000001 3897 1980-09-02 2024-10-11 01:04:57.000 1980-09-02 2024-10-11 01:04:57 +3898 3898 3899 389.8 779.6 3898 1980-09-03 2024-10-11 01:04:58.000 1980-09-03 2024-10-11 01:04:58 +3899 3899 3900 389.9 779.8000000000001 3899 1980-09-04 2024-10-11 01:04:59.000 1980-09-04 2024-10-11 01:04:59 +3900 3900 3901 390 780 3900 1980-09-05 2024-10-11 01:05:00.000 1980-09-05 2024-10-11 01:05:00 +3901 3901 3902 390.1 780.2 3901 1980-09-06 2024-10-11 01:05:01.000 1980-09-06 2024-10-11 01:05:01 +3902 3902 3903 390.2 780.4000000000001 3902 1980-09-07 2024-10-11 01:05:02.000 1980-09-07 2024-10-11 01:05:02 +3903 3903 3904 390.3 780.6 3903 1980-09-08 2024-10-11 01:05:03.000 1980-09-08 2024-10-11 01:05:03 +3904 3904 3905 390.4 780.8000000000001 3904 1980-09-09 2024-10-11 01:05:04.000 1980-09-09 2024-10-11 01:05:04 +3905 3905 3906 390.5 781 3905 1980-09-10 2024-10-11 01:05:05.000 1980-09-10 2024-10-11 01:05:05 +3906 3906 3907 390.6 781.2 3906 1980-09-11 2024-10-11 01:05:06.000 1980-09-11 2024-10-11 01:05:06 +3907 3907 3908 390.7 781.4000000000001 3907 1980-09-12 2024-10-11 01:05:07.000 1980-09-12 2024-10-11 01:05:07 +3908 3908 3909 390.8 781.6 3908 1980-09-13 2024-10-11 01:05:08.000 1980-09-13 2024-10-11 01:05:08 +3909 3909 3910 390.9 781.8000000000001 3909 1980-09-14 2024-10-11 01:05:09.000 1980-09-14 2024-10-11 01:05:09 +3910 3910 3911 391 782 3910 1980-09-15 2024-10-11 01:05:10.000 1980-09-15 2024-10-11 01:05:10 +3911 3911 3912 391.1 782.2 3911 1980-09-16 2024-10-11 01:05:11.000 1980-09-16 2024-10-11 01:05:11 +3912 3912 3913 391.2 782.4000000000001 3912 1980-09-17 2024-10-11 01:05:12.000 1980-09-17 2024-10-11 01:05:12 +3913 3913 3914 391.3 782.6 3913 1980-09-18 2024-10-11 01:05:13.000 1980-09-18 2024-10-11 01:05:13 +3914 3914 3915 391.4 782.8000000000001 3914 1980-09-19 2024-10-11 01:05:14.000 1980-09-19 2024-10-11 01:05:14 +3915 3915 3916 391.5 783 3915 1980-09-20 2024-10-11 01:05:15.000 1980-09-20 2024-10-11 01:05:15 +3916 3916 3917 391.6 783.2 3916 1980-09-21 2024-10-11 01:05:16.000 1980-09-21 2024-10-11 01:05:16 +3917 3917 3918 391.7 783.4000000000001 3917 1980-09-22 2024-10-11 01:05:17.000 1980-09-22 2024-10-11 01:05:17 +3918 3918 3919 391.8 783.6 3918 1980-09-23 2024-10-11 01:05:18.000 1980-09-23 2024-10-11 01:05:18 +3919 3919 3920 391.9 783.8000000000001 3919 1980-09-24 2024-10-11 01:05:19.000 1980-09-24 2024-10-11 01:05:19 +3920 3920 3921 392 784 3920 1980-09-25 2024-10-11 01:05:20.000 1980-09-25 2024-10-11 01:05:20 +3921 3921 3922 392.1 784.2 3921 1980-09-26 2024-10-11 01:05:21.000 1980-09-26 2024-10-11 01:05:21 +3922 3922 3923 392.2 784.4000000000001 3922 1980-09-27 2024-10-11 01:05:22.000 1980-09-27 2024-10-11 01:05:22 +3923 3923 3924 392.3 784.6 3923 1980-09-28 2024-10-11 01:05:23.000 1980-09-28 2024-10-11 01:05:23 +3924 3924 3925 392.4 784.8000000000001 3924 1980-09-29 2024-10-11 01:05:24.000 1980-09-29 2024-10-11 01:05:24 +3925 3925 3926 392.5 785 3925 1980-09-30 2024-10-11 01:05:25.000 1980-09-30 2024-10-11 01:05:25 +3926 3926 3927 392.6 785.2 3926 1980-10-01 2024-10-11 01:05:26.000 1980-10-01 2024-10-11 01:05:26 +3927 3927 3928 392.7 785.4000000000001 3927 1980-10-02 2024-10-11 01:05:27.000 1980-10-02 2024-10-11 01:05:27 +3928 3928 3929 392.8 785.6 3928 1980-10-03 2024-10-11 01:05:28.000 1980-10-03 2024-10-11 01:05:28 +3929 3929 3930 392.9 785.8000000000001 3929 1980-10-04 2024-10-11 01:05:29.000 1980-10-04 2024-10-11 01:05:29 +3930 3930 3931 393 786 3930 1980-10-05 2024-10-11 01:05:30.000 1980-10-05 2024-10-11 01:05:30 +3931 3931 3932 393.1 786.2 3931 1980-10-06 2024-10-11 01:05:31.000 1980-10-06 2024-10-11 01:05:31 +3932 3932 3933 393.2 786.4000000000001 3932 1980-10-07 2024-10-11 01:05:32.000 1980-10-07 2024-10-11 01:05:32 +3933 3933 3934 393.3 786.6 3933 1980-10-08 2024-10-11 01:05:33.000 1980-10-08 2024-10-11 01:05:33 +3934 3934 3935 393.4 786.8000000000001 3934 1980-10-09 2024-10-11 01:05:34.000 1980-10-09 2024-10-11 01:05:34 +3935 3935 3936 393.5 787 3935 1980-10-10 2024-10-11 01:05:35.000 1980-10-10 2024-10-11 01:05:35 +3936 3936 3937 393.6 787.2 3936 1980-10-11 2024-10-11 01:05:36.000 1980-10-11 2024-10-11 01:05:36 +3937 3937 3938 393.7 787.4000000000001 3937 1980-10-12 2024-10-11 01:05:37.000 1980-10-12 2024-10-11 01:05:37 +3938 3938 3939 393.8 787.6 3938 1980-10-13 2024-10-11 01:05:38.000 1980-10-13 2024-10-11 01:05:38 +3939 3939 3940 393.9 787.8000000000001 3939 1980-10-14 2024-10-11 01:05:39.000 1980-10-14 2024-10-11 01:05:39 +3940 3940 3941 394 788 3940 1980-10-15 2024-10-11 01:05:40.000 1980-10-15 2024-10-11 01:05:40 +3941 3941 3942 394.1 788.2 3941 1980-10-16 2024-10-11 01:05:41.000 1980-10-16 2024-10-11 01:05:41 +3942 3942 3943 394.2 788.4000000000001 3942 1980-10-17 2024-10-11 01:05:42.000 1980-10-17 2024-10-11 01:05:42 +3943 3943 3944 394.3 788.6 3943 1980-10-18 2024-10-11 01:05:43.000 1980-10-18 2024-10-11 01:05:43 +3944 3944 3945 394.4 788.8000000000001 3944 1980-10-19 2024-10-11 01:05:44.000 1980-10-19 2024-10-11 01:05:44 +3945 3945 3946 394.5 789 3945 1980-10-20 2024-10-11 01:05:45.000 1980-10-20 2024-10-11 01:05:45 +3946 3946 3947 394.6 789.2 3946 1980-10-21 2024-10-11 01:05:46.000 1980-10-21 2024-10-11 01:05:46 +3947 3947 3948 394.7 789.4000000000001 3947 1980-10-22 2024-10-11 01:05:47.000 1980-10-22 2024-10-11 01:05:47 +3948 3948 3949 394.8 789.6 3948 1980-10-23 2024-10-11 01:05:48.000 1980-10-23 2024-10-11 01:05:48 +3949 3949 3950 394.9 789.8000000000001 3949 1980-10-24 2024-10-11 01:05:49.000 1980-10-24 2024-10-11 01:05:49 +3950 3950 3951 395 790 3950 1980-10-25 2024-10-11 01:05:50.000 1980-10-25 2024-10-11 01:05:50 +3951 3951 3952 395.1 790.2 3951 1980-10-26 2024-10-11 01:05:51.000 1980-10-26 2024-10-11 01:05:51 +3952 3952 3953 395.2 790.4000000000001 3952 1980-10-27 2024-10-11 01:05:52.000 1980-10-27 2024-10-11 01:05:52 +3953 3953 3954 395.3 790.6 3953 1980-10-28 2024-10-11 01:05:53.000 1980-10-28 2024-10-11 01:05:53 +3954 3954 3955 395.4 790.8000000000001 3954 1980-10-29 2024-10-11 01:05:54.000 1980-10-29 2024-10-11 01:05:54 +3955 3955 3956 395.5 791 3955 1980-10-30 2024-10-11 01:05:55.000 1980-10-30 2024-10-11 01:05:55 +3956 3956 3957 395.6 791.2 3956 1980-10-31 2024-10-11 01:05:56.000 1980-10-31 2024-10-11 01:05:56 +3957 3957 3958 395.7 791.4000000000001 3957 1980-11-01 2024-10-11 01:05:57.000 1980-11-01 2024-10-11 01:05:57 +3958 3958 3959 395.8 791.6 3958 1980-11-02 2024-10-11 01:05:58.000 1980-11-02 2024-10-11 01:05:58 +3959 3959 3960 395.9 791.8000000000001 3959 1980-11-03 2024-10-11 01:05:59.000 1980-11-03 2024-10-11 01:05:59 +3960 3960 3961 396 792 3960 1980-11-04 2024-10-11 01:06:00.000 1980-11-04 2024-10-11 01:06:00 +3961 3961 3962 396.1 792.2 3961 1980-11-05 2024-10-11 01:06:01.000 1980-11-05 2024-10-11 01:06:01 +3962 3962 3963 396.2 792.4000000000001 3962 1980-11-06 2024-10-11 01:06:02.000 1980-11-06 2024-10-11 01:06:02 +3963 3963 3964 396.3 792.6 3963 1980-11-07 2024-10-11 01:06:03.000 1980-11-07 2024-10-11 01:06:03 +3964 3964 3965 396.4 792.8000000000001 3964 1980-11-08 2024-10-11 01:06:04.000 1980-11-08 2024-10-11 01:06:04 +3965 3965 3966 396.5 793 3965 1980-11-09 2024-10-11 01:06:05.000 1980-11-09 2024-10-11 01:06:05 +3966 3966 3967 396.6 793.2 3966 1980-11-10 2024-10-11 01:06:06.000 1980-11-10 2024-10-11 01:06:06 +3967 3967 3968 396.7 793.4000000000001 3967 1980-11-11 2024-10-11 01:06:07.000 1980-11-11 2024-10-11 01:06:07 +3968 3968 3969 396.8 793.6 3968 1980-11-12 2024-10-11 01:06:08.000 1980-11-12 2024-10-11 01:06:08 +3969 3969 3970 396.9 793.8000000000001 3969 1980-11-13 2024-10-11 01:06:09.000 1980-11-13 2024-10-11 01:06:09 +3970 3970 3971 397 794 3970 1980-11-14 2024-10-11 01:06:10.000 1980-11-14 2024-10-11 01:06:10 +3971 3971 3972 397.1 794.2 3971 1980-11-15 2024-10-11 01:06:11.000 1980-11-15 2024-10-11 01:06:11 +3972 3972 3973 397.2 794.4000000000001 3972 1980-11-16 2024-10-11 01:06:12.000 1980-11-16 2024-10-11 01:06:12 +3973 3973 3974 397.3 794.6 3973 1980-11-17 2024-10-11 01:06:13.000 1980-11-17 2024-10-11 01:06:13 +3974 3974 3975 397.4 794.8000000000001 3974 1980-11-18 2024-10-11 01:06:14.000 1980-11-18 2024-10-11 01:06:14 +3975 3975 3976 397.5 795 3975 1980-11-19 2024-10-11 01:06:15.000 1980-11-19 2024-10-11 01:06:15 +3976 3976 3977 397.6 795.2 3976 1980-11-20 2024-10-11 01:06:16.000 1980-11-20 2024-10-11 01:06:16 +3977 3977 3978 397.7 795.4000000000001 3977 1980-11-21 2024-10-11 01:06:17.000 1980-11-21 2024-10-11 01:06:17 +3978 3978 3979 397.8 795.6 3978 1980-11-22 2024-10-11 01:06:18.000 1980-11-22 2024-10-11 01:06:18 +3979 3979 3980 397.9 795.8000000000001 3979 1980-11-23 2024-10-11 01:06:19.000 1980-11-23 2024-10-11 01:06:19 +3980 3980 3981 398 796 3980 1980-11-24 2024-10-11 01:06:20.000 1980-11-24 2024-10-11 01:06:20 +3981 3981 3982 398.1 796.2 3981 1980-11-25 2024-10-11 01:06:21.000 1980-11-25 2024-10-11 01:06:21 +3982 3982 3983 398.2 796.4000000000001 3982 1980-11-26 2024-10-11 01:06:22.000 1980-11-26 2024-10-11 01:06:22 +3983 3983 3984 398.3 796.6 3983 1980-11-27 2024-10-11 01:06:23.000 1980-11-27 2024-10-11 01:06:23 +3984 3984 3985 398.4 796.8000000000001 3984 1980-11-28 2024-10-11 01:06:24.000 1980-11-28 2024-10-11 01:06:24 +3985 3985 3986 398.5 797 3985 1980-11-29 2024-10-11 01:06:25.000 1980-11-29 2024-10-11 01:06:25 +3986 3986 3987 398.6 797.2 3986 1980-11-30 2024-10-11 01:06:26.000 1980-11-30 2024-10-11 01:06:26 +3987 3987 3988 398.7 797.4000000000001 3987 1980-12-01 2024-10-11 01:06:27.000 1980-12-01 2024-10-11 01:06:27 +3988 3988 3989 398.8 797.6 3988 1980-12-02 2024-10-11 01:06:28.000 1980-12-02 2024-10-11 01:06:28 +3989 3989 3990 398.9 797.8000000000001 3989 1980-12-03 2024-10-11 01:06:29.000 1980-12-03 2024-10-11 01:06:29 +3990 3990 3991 399 798 3990 1980-12-04 2024-10-11 01:06:30.000 1980-12-04 2024-10-11 01:06:30 +3991 3991 3992 399.1 798.2 3991 1980-12-05 2024-10-11 01:06:31.000 1980-12-05 2024-10-11 01:06:31 +3992 3992 3993 399.2 798.4000000000001 3992 1980-12-06 2024-10-11 01:06:32.000 1980-12-06 2024-10-11 01:06:32 +3993 3993 3994 399.3 798.6 3993 1980-12-07 2024-10-11 01:06:33.000 1980-12-07 2024-10-11 01:06:33 +3994 3994 3995 399.4 798.8000000000001 3994 1980-12-08 2024-10-11 01:06:34.000 1980-12-08 2024-10-11 01:06:34 +3995 3995 3996 399.5 799 3995 1980-12-09 2024-10-11 01:06:35.000 1980-12-09 2024-10-11 01:06:35 +3996 3996 3997 399.6 799.2 3996 1980-12-10 2024-10-11 01:06:36.000 1980-12-10 2024-10-11 01:06:36 +3997 3997 3998 399.7 799.4000000000001 3997 1980-12-11 2024-10-11 01:06:37.000 1980-12-11 2024-10-11 01:06:37 +3998 3998 3999 399.8 799.6 3998 1980-12-12 2024-10-11 01:06:38.000 1980-12-12 2024-10-11 01:06:38 +3999 3999 4000 399.9 799.8000000000001 3999 1980-12-13 2024-10-11 01:06:39.000 1980-12-13 2024-10-11 01:06:39 +4000 4000 4001 400 800 4000 1980-12-14 2024-10-11 01:06:40.000 1980-12-14 2024-10-11 01:06:40 +4001 4001 4002 400.1 800.2 4001 1980-12-15 2024-10-11 01:06:41.000 1980-12-15 2024-10-11 01:06:41 +4002 4002 4003 400.2 800.4000000000001 4002 1980-12-16 2024-10-11 01:06:42.000 1980-12-16 2024-10-11 01:06:42 +4003 4003 4004 400.3 800.6 4003 1980-12-17 2024-10-11 01:06:43.000 1980-12-17 2024-10-11 01:06:43 +4004 4004 4005 400.4 800.8000000000001 4004 1980-12-18 2024-10-11 01:06:44.000 1980-12-18 2024-10-11 01:06:44 +4005 4005 4006 400.5 801 4005 1980-12-19 2024-10-11 01:06:45.000 1980-12-19 2024-10-11 01:06:45 +4006 4006 4007 400.6 801.2 4006 1980-12-20 2024-10-11 01:06:46.000 1980-12-20 2024-10-11 01:06:46 +4007 4007 4008 400.7 801.4000000000001 4007 1980-12-21 2024-10-11 01:06:47.000 1980-12-21 2024-10-11 01:06:47 +4008 4008 4009 400.8 801.6 4008 1980-12-22 2024-10-11 01:06:48.000 1980-12-22 2024-10-11 01:06:48 +4009 4009 4010 400.9 801.8000000000001 4009 1980-12-23 2024-10-11 01:06:49.000 1980-12-23 2024-10-11 01:06:49 +4010 4010 4011 401 802 4010 1980-12-24 2024-10-11 01:06:50.000 1980-12-24 2024-10-11 01:06:50 +4011 4011 4012 401.1 802.2 4011 1980-12-25 2024-10-11 01:06:51.000 1980-12-25 2024-10-11 01:06:51 +4012 4012 4013 401.2 802.4000000000001 4012 1980-12-26 2024-10-11 01:06:52.000 1980-12-26 2024-10-11 01:06:52 +4013 4013 4014 401.3 802.6 4013 1980-12-27 2024-10-11 01:06:53.000 1980-12-27 2024-10-11 01:06:53 +4014 4014 4015 401.4 802.8000000000001 4014 1980-12-28 2024-10-11 01:06:54.000 1980-12-28 2024-10-11 01:06:54 +4015 4015 4016 401.5 803 4015 1980-12-29 2024-10-11 01:06:55.000 1980-12-29 2024-10-11 01:06:55 +4016 4016 4017 401.6 803.2 4016 1980-12-30 2024-10-11 01:06:56.000 1980-12-30 2024-10-11 01:06:56 +4017 4017 4018 401.7 803.4000000000001 4017 1980-12-31 2024-10-11 01:06:57.000 1980-12-31 2024-10-11 01:06:57 +4018 4018 4019 401.8 803.6 4018 1981-01-01 2024-10-11 01:06:58.000 1981-01-01 2024-10-11 01:06:58 +4019 4019 4020 401.9 803.8000000000001 4019 1981-01-02 2024-10-11 01:06:59.000 1981-01-02 2024-10-11 01:06:59 +4020 4020 4021 402 804 4020 1981-01-03 2024-10-11 01:07:00.000 1981-01-03 2024-10-11 01:07:00 +4021 4021 4022 402.1 804.2 4021 1981-01-04 2024-10-11 01:07:01.000 1981-01-04 2024-10-11 01:07:01 +4022 4022 4023 402.2 804.4000000000001 4022 1981-01-05 2024-10-11 01:07:02.000 1981-01-05 2024-10-11 01:07:02 +4023 4023 4024 402.3 804.6 4023 1981-01-06 2024-10-11 01:07:03.000 1981-01-06 2024-10-11 01:07:03 +4024 4024 4025 402.4 804.8000000000001 4024 1981-01-07 2024-10-11 01:07:04.000 1981-01-07 2024-10-11 01:07:04 +4025 4025 4026 402.5 805 4025 1981-01-08 2024-10-11 01:07:05.000 1981-01-08 2024-10-11 01:07:05 +4026 4026 4027 402.6 805.2 4026 1981-01-09 2024-10-11 01:07:06.000 1981-01-09 2024-10-11 01:07:06 +4027 4027 4028 402.7 805.4000000000001 4027 1981-01-10 2024-10-11 01:07:07.000 1981-01-10 2024-10-11 01:07:07 +4028 4028 4029 402.8 805.6 4028 1981-01-11 2024-10-11 01:07:08.000 1981-01-11 2024-10-11 01:07:08 +4029 4029 4030 402.9 805.8000000000001 4029 1981-01-12 2024-10-11 01:07:09.000 1981-01-12 2024-10-11 01:07:09 +4030 4030 4031 403 806 4030 1981-01-13 2024-10-11 01:07:10.000 1981-01-13 2024-10-11 01:07:10 +4031 4031 4032 403.1 806.2 4031 1981-01-14 2024-10-11 01:07:11.000 1981-01-14 2024-10-11 01:07:11 +4032 4032 4033 403.2 806.4000000000001 4032 1981-01-15 2024-10-11 01:07:12.000 1981-01-15 2024-10-11 01:07:12 +4033 4033 4034 403.3 806.6 4033 1981-01-16 2024-10-11 01:07:13.000 1981-01-16 2024-10-11 01:07:13 +4034 4034 4035 403.4 806.8000000000001 4034 1981-01-17 2024-10-11 01:07:14.000 1981-01-17 2024-10-11 01:07:14 +4035 4035 4036 403.5 807 4035 1981-01-18 2024-10-11 01:07:15.000 1981-01-18 2024-10-11 01:07:15 +4036 4036 4037 403.6 807.2 4036 1981-01-19 2024-10-11 01:07:16.000 1981-01-19 2024-10-11 01:07:16 +4037 4037 4038 403.7 807.4000000000001 4037 1981-01-20 2024-10-11 01:07:17.000 1981-01-20 2024-10-11 01:07:17 +4038 4038 4039 403.8 807.6 4038 1981-01-21 2024-10-11 01:07:18.000 1981-01-21 2024-10-11 01:07:18 +4039 4039 4040 403.9 807.8000000000001 4039 1981-01-22 2024-10-11 01:07:19.000 1981-01-22 2024-10-11 01:07:19 +4040 4040 4041 404 808 4040 1981-01-23 2024-10-11 01:07:20.000 1981-01-23 2024-10-11 01:07:20 +4041 4041 4042 404.1 808.2 4041 1981-01-24 2024-10-11 01:07:21.000 1981-01-24 2024-10-11 01:07:21 +4042 4042 4043 404.2 808.4000000000001 4042 1981-01-25 2024-10-11 01:07:22.000 1981-01-25 2024-10-11 01:07:22 +4043 4043 4044 404.3 808.6 4043 1981-01-26 2024-10-11 01:07:23.000 1981-01-26 2024-10-11 01:07:23 +4044 4044 4045 404.4 808.8000000000001 4044 1981-01-27 2024-10-11 01:07:24.000 1981-01-27 2024-10-11 01:07:24 +4045 4045 4046 404.5 809 4045 1981-01-28 2024-10-11 01:07:25.000 1981-01-28 2024-10-11 01:07:25 +4046 4046 4047 404.6 809.2 4046 1981-01-29 2024-10-11 01:07:26.000 1981-01-29 2024-10-11 01:07:26 +4047 4047 4048 404.7 809.4000000000001 4047 1981-01-30 2024-10-11 01:07:27.000 1981-01-30 2024-10-11 01:07:27 +4048 4048 4049 404.8 809.6 4048 1981-01-31 2024-10-11 01:07:28.000 1981-01-31 2024-10-11 01:07:28 +4049 4049 4050 404.9 809.8000000000001 4049 1981-02-01 2024-10-11 01:07:29.000 1981-02-01 2024-10-11 01:07:29 +4050 4050 4051 405 810 4050 1981-02-02 2024-10-11 01:07:30.000 1981-02-02 2024-10-11 01:07:30 +4051 4051 4052 405.1 810.2 4051 1981-02-03 2024-10-11 01:07:31.000 1981-02-03 2024-10-11 01:07:31 +4052 4052 4053 405.2 810.4000000000001 4052 1981-02-04 2024-10-11 01:07:32.000 1981-02-04 2024-10-11 01:07:32 +4053 4053 4054 405.3 810.6 4053 1981-02-05 2024-10-11 01:07:33.000 1981-02-05 2024-10-11 01:07:33 +4054 4054 4055 405.4 810.8000000000001 4054 1981-02-06 2024-10-11 01:07:34.000 1981-02-06 2024-10-11 01:07:34 +4055 4055 4056 405.5 811 4055 1981-02-07 2024-10-11 01:07:35.000 1981-02-07 2024-10-11 01:07:35 +4056 4056 4057 405.6 811.2 4056 1981-02-08 2024-10-11 01:07:36.000 1981-02-08 2024-10-11 01:07:36 +4057 4057 4058 405.7 811.4000000000001 4057 1981-02-09 2024-10-11 01:07:37.000 1981-02-09 2024-10-11 01:07:37 +4058 4058 4059 405.8 811.6 4058 1981-02-10 2024-10-11 01:07:38.000 1981-02-10 2024-10-11 01:07:38 +4059 4059 4060 405.9 811.8000000000001 4059 1981-02-11 2024-10-11 01:07:39.000 1981-02-11 2024-10-11 01:07:39 +4060 4060 4061 406 812 4060 1981-02-12 2024-10-11 01:07:40.000 1981-02-12 2024-10-11 01:07:40 +4061 4061 4062 406.1 812.2 4061 1981-02-13 2024-10-11 01:07:41.000 1981-02-13 2024-10-11 01:07:41 +4062 4062 4063 406.2 812.4000000000001 4062 1981-02-14 2024-10-11 01:07:42.000 1981-02-14 2024-10-11 01:07:42 +4063 4063 4064 406.3 812.6 4063 1981-02-15 2024-10-11 01:07:43.000 1981-02-15 2024-10-11 01:07:43 +4064 4064 4065 406.4 812.8000000000001 4064 1981-02-16 2024-10-11 01:07:44.000 1981-02-16 2024-10-11 01:07:44 +4065 4065 4066 406.5 813 4065 1981-02-17 2024-10-11 01:07:45.000 1981-02-17 2024-10-11 01:07:45 +4066 4066 4067 406.6 813.2 4066 1981-02-18 2024-10-11 01:07:46.000 1981-02-18 2024-10-11 01:07:46 +4067 4067 4068 406.7 813.4000000000001 4067 1981-02-19 2024-10-11 01:07:47.000 1981-02-19 2024-10-11 01:07:47 +4068 4068 4069 406.8 813.6 4068 1981-02-20 2024-10-11 01:07:48.000 1981-02-20 2024-10-11 01:07:48 +4069 4069 4070 406.9 813.8000000000001 4069 1981-02-21 2024-10-11 01:07:49.000 1981-02-21 2024-10-11 01:07:49 +4070 4070 4071 407 814 4070 1981-02-22 2024-10-11 01:07:50.000 1981-02-22 2024-10-11 01:07:50 +4071 4071 4072 407.1 814.2 4071 1981-02-23 2024-10-11 01:07:51.000 1981-02-23 2024-10-11 01:07:51 +4072 4072 4073 407.2 814.4000000000001 4072 1981-02-24 2024-10-11 01:07:52.000 1981-02-24 2024-10-11 01:07:52 +4073 4073 4074 407.3 814.6 4073 1981-02-25 2024-10-11 01:07:53.000 1981-02-25 2024-10-11 01:07:53 +4074 4074 4075 407.4 814.8000000000001 4074 1981-02-26 2024-10-11 01:07:54.000 1981-02-26 2024-10-11 01:07:54 +4075 4075 4076 407.5 815 4075 1981-02-27 2024-10-11 01:07:55.000 1981-02-27 2024-10-11 01:07:55 +4076 4076 4077 407.6 815.2 4076 1981-02-28 2024-10-11 01:07:56.000 1981-02-28 2024-10-11 01:07:56 +4077 4077 4078 407.7 815.4000000000001 4077 1981-03-01 2024-10-11 01:07:57.000 1981-03-01 2024-10-11 01:07:57 +4078 4078 4079 407.8 815.6 4078 1981-03-02 2024-10-11 01:07:58.000 1981-03-02 2024-10-11 01:07:58 +4079 4079 4080 407.9 815.8000000000001 4079 1981-03-03 2024-10-11 01:07:59.000 1981-03-03 2024-10-11 01:07:59 +4080 4080 4081 408 816 4080 1981-03-04 2024-10-11 01:08:00.000 1981-03-04 2024-10-11 01:08:00 +4081 4081 4082 408.1 816.2 4081 1981-03-05 2024-10-11 01:08:01.000 1981-03-05 2024-10-11 01:08:01 +4082 4082 4083 408.2 816.4000000000001 4082 1981-03-06 2024-10-11 01:08:02.000 1981-03-06 2024-10-11 01:08:02 +4083 4083 4084 408.3 816.6 4083 1981-03-07 2024-10-11 01:08:03.000 1981-03-07 2024-10-11 01:08:03 +4084 4084 4085 408.4 816.8000000000001 4084 1981-03-08 2024-10-11 01:08:04.000 1981-03-08 2024-10-11 01:08:04 +4085 4085 4086 408.5 817 4085 1981-03-09 2024-10-11 01:08:05.000 1981-03-09 2024-10-11 01:08:05 +4086 4086 4087 408.6 817.2 4086 1981-03-10 2024-10-11 01:08:06.000 1981-03-10 2024-10-11 01:08:06 +4087 4087 4088 408.7 817.4000000000001 4087 1981-03-11 2024-10-11 01:08:07.000 1981-03-11 2024-10-11 01:08:07 +4088 4088 4089 408.8 817.6 4088 1981-03-12 2024-10-11 01:08:08.000 1981-03-12 2024-10-11 01:08:08 +4089 4089 4090 408.9 817.8000000000001 4089 1981-03-13 2024-10-11 01:08:09.000 1981-03-13 2024-10-11 01:08:09 +4090 4090 4091 409 818 4090 1981-03-14 2024-10-11 01:08:10.000 1981-03-14 2024-10-11 01:08:10 +4091 4091 4092 409.1 818.2 4091 1981-03-15 2024-10-11 01:08:11.000 1981-03-15 2024-10-11 01:08:11 +4092 4092 4093 409.2 818.4000000000001 4092 1981-03-16 2024-10-11 01:08:12.000 1981-03-16 2024-10-11 01:08:12 +4093 4093 4094 409.3 818.6 4093 1981-03-17 2024-10-11 01:08:13.000 1981-03-17 2024-10-11 01:08:13 +4094 4094 4095 409.4 818.8000000000001 4094 1981-03-18 2024-10-11 01:08:14.000 1981-03-18 2024-10-11 01:08:14 +4095 4095 4096 409.5 819 4095 1981-03-19 2024-10-11 01:08:15.000 1981-03-19 2024-10-11 01:08:15 +4096 4096 4097 409.6 819.2 4096 1981-03-20 2024-10-11 01:08:16.000 1981-03-20 2024-10-11 01:08:16 +4097 4097 4098 409.7 819.4000000000001 4097 1981-03-21 2024-10-11 01:08:17.000 1981-03-21 2024-10-11 01:08:17 +4098 4098 4099 409.8 819.6 4098 1981-03-22 2024-10-11 01:08:18.000 1981-03-22 2024-10-11 01:08:18 +4099 4099 4100 409.9 819.8000000000001 4099 1981-03-23 2024-10-11 01:08:19.000 1981-03-23 2024-10-11 01:08:19 +4100 4100 4101 410 820 4100 1981-03-24 2024-10-11 01:08:20.000 1981-03-24 2024-10-11 01:08:20 +4101 4101 4102 410.1 820.2 4101 1981-03-25 2024-10-11 01:08:21.000 1981-03-25 2024-10-11 01:08:21 +4102 4102 4103 410.2 820.4000000000001 4102 1981-03-26 2024-10-11 01:08:22.000 1981-03-26 2024-10-11 01:08:22 +4103 4103 4104 410.3 820.6 4103 1981-03-27 2024-10-11 01:08:23.000 1981-03-27 2024-10-11 01:08:23 +4104 4104 4105 410.4 820.8000000000001 4104 1981-03-28 2024-10-11 01:08:24.000 1981-03-28 2024-10-11 01:08:24 +4105 4105 4106 410.5 821 4105 1981-03-29 2024-10-11 01:08:25.000 1981-03-29 2024-10-11 01:08:25 +4106 4106 4107 410.6 821.2 4106 1981-03-30 2024-10-11 01:08:26.000 1981-03-30 2024-10-11 01:08:26 +4107 4107 4108 410.7 821.4000000000001 4107 1981-03-31 2024-10-11 01:08:27.000 1981-03-31 2024-10-11 01:08:27 +4108 4108 4109 410.8 821.6 4108 1981-04-01 2024-10-11 01:08:28.000 1981-04-01 2024-10-11 01:08:28 +4109 4109 4110 410.9 821.8000000000001 4109 1981-04-02 2024-10-11 01:08:29.000 1981-04-02 2024-10-11 01:08:29 +4110 4110 4111 411 822 4110 1981-04-03 2024-10-11 01:08:30.000 1981-04-03 2024-10-11 01:08:30 +4111 4111 4112 411.1 822.2 4111 1981-04-04 2024-10-11 01:08:31.000 1981-04-04 2024-10-11 01:08:31 +4112 4112 4113 411.2 822.4000000000001 4112 1981-04-05 2024-10-11 01:08:32.000 1981-04-05 2024-10-11 01:08:32 +4113 4113 4114 411.3 822.6 4113 1981-04-06 2024-10-11 01:08:33.000 1981-04-06 2024-10-11 01:08:33 +4114 4114 4115 411.4 822.8000000000001 4114 1981-04-07 2024-10-11 01:08:34.000 1981-04-07 2024-10-11 01:08:34 +4115 4115 4116 411.5 823 4115 1981-04-08 2024-10-11 01:08:35.000 1981-04-08 2024-10-11 01:08:35 +4116 4116 4117 411.6 823.2 4116 1981-04-09 2024-10-11 01:08:36.000 1981-04-09 2024-10-11 01:08:36 +4117 4117 4118 411.7 823.4000000000001 4117 1981-04-10 2024-10-11 01:08:37.000 1981-04-10 2024-10-11 01:08:37 +4118 4118 4119 411.8 823.6 4118 1981-04-11 2024-10-11 01:08:38.000 1981-04-11 2024-10-11 01:08:38 +4119 4119 4120 411.9 823.8000000000001 4119 1981-04-12 2024-10-11 01:08:39.000 1981-04-12 2024-10-11 01:08:39 +4120 4120 4121 412 824 4120 1981-04-13 2024-10-11 01:08:40.000 1981-04-13 2024-10-11 01:08:40 +4121 4121 4122 412.1 824.2 4121 1981-04-14 2024-10-11 01:08:41.000 1981-04-14 2024-10-11 01:08:41 +4122 4122 4123 412.2 824.4000000000001 4122 1981-04-15 2024-10-11 01:08:42.000 1981-04-15 2024-10-11 01:08:42 +4123 4123 4124 412.3 824.6 4123 1981-04-16 2024-10-11 01:08:43.000 1981-04-16 2024-10-11 01:08:43 +4124 4124 4125 412.4 824.8000000000001 4124 1981-04-17 2024-10-11 01:08:44.000 1981-04-17 2024-10-11 01:08:44 +4125 4125 4126 412.5 825 4125 1981-04-18 2024-10-11 01:08:45.000 1981-04-18 2024-10-11 01:08:45 +4126 4126 4127 412.6 825.2 4126 1981-04-19 2024-10-11 01:08:46.000 1981-04-19 2024-10-11 01:08:46 +4127 4127 4128 412.7 825.4000000000001 4127 1981-04-20 2024-10-11 01:08:47.000 1981-04-20 2024-10-11 01:08:47 +4128 4128 4129 412.8 825.6 4128 1981-04-21 2024-10-11 01:08:48.000 1981-04-21 2024-10-11 01:08:48 +4129 4129 4130 412.9 825.8000000000001 4129 1981-04-22 2024-10-11 01:08:49.000 1981-04-22 2024-10-11 01:08:49 +4130 4130 4131 413 826 4130 1981-04-23 2024-10-11 01:08:50.000 1981-04-23 2024-10-11 01:08:50 +4131 4131 4132 413.1 826.2 4131 1981-04-24 2024-10-11 01:08:51.000 1981-04-24 2024-10-11 01:08:51 +4132 4132 4133 413.2 826.4000000000001 4132 1981-04-25 2024-10-11 01:08:52.000 1981-04-25 2024-10-11 01:08:52 +4133 4133 4134 413.3 826.6 4133 1981-04-26 2024-10-11 01:08:53.000 1981-04-26 2024-10-11 01:08:53 +4134 4134 4135 413.4 826.8000000000001 4134 1981-04-27 2024-10-11 01:08:54.000 1981-04-27 2024-10-11 01:08:54 +4135 4135 4136 413.5 827 4135 1981-04-28 2024-10-11 01:08:55.000 1981-04-28 2024-10-11 01:08:55 +4136 4136 4137 413.6 827.2 4136 1981-04-29 2024-10-11 01:08:56.000 1981-04-29 2024-10-11 01:08:56 +4137 4137 4138 413.7 827.4000000000001 4137 1981-04-30 2024-10-11 01:08:57.000 1981-04-30 2024-10-11 01:08:57 +4138 4138 4139 413.8 827.6 4138 1981-05-01 2024-10-11 01:08:58.000 1981-05-01 2024-10-11 01:08:58 +4139 4139 4140 413.9 827.8000000000001 4139 1981-05-02 2024-10-11 01:08:59.000 1981-05-02 2024-10-11 01:08:59 +4140 4140 4141 414 828 4140 1981-05-03 2024-10-11 01:09:00.000 1981-05-03 2024-10-11 01:09:00 +4141 4141 4142 414.1 828.2 4141 1981-05-04 2024-10-11 01:09:01.000 1981-05-04 2024-10-11 01:09:01 +4142 4142 4143 414.2 828.4000000000001 4142 1981-05-05 2024-10-11 01:09:02.000 1981-05-05 2024-10-11 01:09:02 +4143 4143 4144 414.3 828.6 4143 1981-05-06 2024-10-11 01:09:03.000 1981-05-06 2024-10-11 01:09:03 +4144 4144 4145 414.4 828.8000000000001 4144 1981-05-07 2024-10-11 01:09:04.000 1981-05-07 2024-10-11 01:09:04 +4145 4145 4146 414.5 829 4145 1981-05-08 2024-10-11 01:09:05.000 1981-05-08 2024-10-11 01:09:05 +4146 4146 4147 414.6 829.2 4146 1981-05-09 2024-10-11 01:09:06.000 1981-05-09 2024-10-11 01:09:06 +4147 4147 4148 414.7 829.4000000000001 4147 1981-05-10 2024-10-11 01:09:07.000 1981-05-10 2024-10-11 01:09:07 +4148 4148 4149 414.8 829.6 4148 1981-05-11 2024-10-11 01:09:08.000 1981-05-11 2024-10-11 01:09:08 +4149 4149 4150 414.9 829.8000000000001 4149 1981-05-12 2024-10-11 01:09:09.000 1981-05-12 2024-10-11 01:09:09 +4150 4150 4151 415 830 4150 1981-05-13 2024-10-11 01:09:10.000 1981-05-13 2024-10-11 01:09:10 +4151 4151 4152 415.1 830.2 4151 1981-05-14 2024-10-11 01:09:11.000 1981-05-14 2024-10-11 01:09:11 +4152 4152 4153 415.2 830.4000000000001 4152 1981-05-15 2024-10-11 01:09:12.000 1981-05-15 2024-10-11 01:09:12 +4153 4153 4154 415.3 830.6 4153 1981-05-16 2024-10-11 01:09:13.000 1981-05-16 2024-10-11 01:09:13 +4154 4154 4155 415.4 830.8000000000001 4154 1981-05-17 2024-10-11 01:09:14.000 1981-05-17 2024-10-11 01:09:14 +4155 4155 4156 415.5 831 4155 1981-05-18 2024-10-11 01:09:15.000 1981-05-18 2024-10-11 01:09:15 +4156 4156 4157 415.6 831.2 4156 1981-05-19 2024-10-11 01:09:16.000 1981-05-19 2024-10-11 01:09:16 +4157 4157 4158 415.7 831.4000000000001 4157 1981-05-20 2024-10-11 01:09:17.000 1981-05-20 2024-10-11 01:09:17 +4158 4158 4159 415.8 831.6 4158 1981-05-21 2024-10-11 01:09:18.000 1981-05-21 2024-10-11 01:09:18 +4159 4159 4160 415.9 831.8000000000001 4159 1981-05-22 2024-10-11 01:09:19.000 1981-05-22 2024-10-11 01:09:19 +4160 4160 4161 416 832 4160 1981-05-23 2024-10-11 01:09:20.000 1981-05-23 2024-10-11 01:09:20 +4161 4161 4162 416.1 832.2 4161 1981-05-24 2024-10-11 01:09:21.000 1981-05-24 2024-10-11 01:09:21 +4162 4162 4163 416.2 832.4000000000001 4162 1981-05-25 2024-10-11 01:09:22.000 1981-05-25 2024-10-11 01:09:22 +4163 4163 4164 416.3 832.6 4163 1981-05-26 2024-10-11 01:09:23.000 1981-05-26 2024-10-11 01:09:23 +4164 4164 4165 416.4 832.8000000000001 4164 1981-05-27 2024-10-11 01:09:24.000 1981-05-27 2024-10-11 01:09:24 +4165 4165 4166 416.5 833 4165 1981-05-28 2024-10-11 01:09:25.000 1981-05-28 2024-10-11 01:09:25 +4166 4166 4167 416.6 833.2 4166 1981-05-29 2024-10-11 01:09:26.000 1981-05-29 2024-10-11 01:09:26 +4167 4167 4168 416.7 833.4000000000001 4167 1981-05-30 2024-10-11 01:09:27.000 1981-05-30 2024-10-11 01:09:27 +4168 4168 4169 416.8 833.6 4168 1981-05-31 2024-10-11 01:09:28.000 1981-05-31 2024-10-11 01:09:28 +4169 4169 4170 416.9 833.8000000000001 4169 1981-06-01 2024-10-11 01:09:29.000 1981-06-01 2024-10-11 01:09:29 +4170 4170 4171 417 834 4170 1981-06-02 2024-10-11 01:09:30.000 1981-06-02 2024-10-11 01:09:30 +4171 4171 4172 417.1 834.2 4171 1981-06-03 2024-10-11 01:09:31.000 1981-06-03 2024-10-11 01:09:31 +4172 4172 4173 417.2 834.4000000000001 4172 1981-06-04 2024-10-11 01:09:32.000 1981-06-04 2024-10-11 01:09:32 +4173 4173 4174 417.3 834.6 4173 1981-06-05 2024-10-11 01:09:33.000 1981-06-05 2024-10-11 01:09:33 +4174 4174 4175 417.4 834.8000000000001 4174 1981-06-06 2024-10-11 01:09:34.000 1981-06-06 2024-10-11 01:09:34 +4175 4175 4176 417.5 835 4175 1981-06-07 2024-10-11 01:09:35.000 1981-06-07 2024-10-11 01:09:35 +4176 4176 4177 417.6 835.2 4176 1981-06-08 2024-10-11 01:09:36.000 1981-06-08 2024-10-11 01:09:36 +4177 4177 4178 417.7 835.4000000000001 4177 1981-06-09 2024-10-11 01:09:37.000 1981-06-09 2024-10-11 01:09:37 +4178 4178 4179 417.8 835.6 4178 1981-06-10 2024-10-11 01:09:38.000 1981-06-10 2024-10-11 01:09:38 +4179 4179 4180 417.9 835.8000000000001 4179 1981-06-11 2024-10-11 01:09:39.000 1981-06-11 2024-10-11 01:09:39 +4180 4180 4181 418 836 4180 1981-06-12 2024-10-11 01:09:40.000 1981-06-12 2024-10-11 01:09:40 +4181 4181 4182 418.1 836.2 4181 1981-06-13 2024-10-11 01:09:41.000 1981-06-13 2024-10-11 01:09:41 +4182 4182 4183 418.2 836.4000000000001 4182 1981-06-14 2024-10-11 01:09:42.000 1981-06-14 2024-10-11 01:09:42 +4183 4183 4184 418.3 836.6 4183 1981-06-15 2024-10-11 01:09:43.000 1981-06-15 2024-10-11 01:09:43 +4184 4184 4185 418.4 836.8000000000001 4184 1981-06-16 2024-10-11 01:09:44.000 1981-06-16 2024-10-11 01:09:44 +4185 4185 4186 418.5 837 4185 1981-06-17 2024-10-11 01:09:45.000 1981-06-17 2024-10-11 01:09:45 +4186 4186 4187 418.6 837.2 4186 1981-06-18 2024-10-11 01:09:46.000 1981-06-18 2024-10-11 01:09:46 +4187 4187 4188 418.7 837.4000000000001 4187 1981-06-19 2024-10-11 01:09:47.000 1981-06-19 2024-10-11 01:09:47 +4188 4188 4189 418.8 837.6 4188 1981-06-20 2024-10-11 01:09:48.000 1981-06-20 2024-10-11 01:09:48 +4189 4189 4190 418.9 837.8000000000001 4189 1981-06-21 2024-10-11 01:09:49.000 1981-06-21 2024-10-11 01:09:49 +4190 4190 4191 419 838 4190 1981-06-22 2024-10-11 01:09:50.000 1981-06-22 2024-10-11 01:09:50 +4191 4191 4192 419.1 838.2 4191 1981-06-23 2024-10-11 01:09:51.000 1981-06-23 2024-10-11 01:09:51 +4192 4192 4193 419.2 838.4000000000001 4192 1981-06-24 2024-10-11 01:09:52.000 1981-06-24 2024-10-11 01:09:52 +4193 4193 4194 419.3 838.6 4193 1981-06-25 2024-10-11 01:09:53.000 1981-06-25 2024-10-11 01:09:53 +4194 4194 4195 419.4 838.8000000000001 4194 1981-06-26 2024-10-11 01:09:54.000 1981-06-26 2024-10-11 01:09:54 +4195 4195 4196 419.5 839 4195 1981-06-27 2024-10-11 01:09:55.000 1981-06-27 2024-10-11 01:09:55 +4196 4196 4197 419.6 839.2 4196 1981-06-28 2024-10-11 01:09:56.000 1981-06-28 2024-10-11 01:09:56 +4197 4197 4198 419.7 839.4000000000001 4197 1981-06-29 2024-10-11 01:09:57.000 1981-06-29 2024-10-11 01:09:57 +4198 4198 4199 419.8 839.6 4198 1981-06-30 2024-10-11 01:09:58.000 1981-06-30 2024-10-11 01:09:58 +4199 4199 4200 419.9 839.8000000000001 4199 1981-07-01 2024-10-11 01:09:59.000 1981-07-01 2024-10-11 01:09:59 +4200 4200 4201 420 840 4200 1981-07-02 2024-10-11 01:10:00.000 1981-07-02 2024-10-11 01:10:00 +4201 4201 4202 420.1 840.2 4201 1981-07-03 2024-10-11 01:10:01.000 1981-07-03 2024-10-11 01:10:01 +4202 4202 4203 420.2 840.4000000000001 4202 1981-07-04 2024-10-11 01:10:02.000 1981-07-04 2024-10-11 01:10:02 +4203 4203 4204 420.3 840.6 4203 1981-07-05 2024-10-11 01:10:03.000 1981-07-05 2024-10-11 01:10:03 +4204 4204 4205 420.4 840.8000000000001 4204 1981-07-06 2024-10-11 01:10:04.000 1981-07-06 2024-10-11 01:10:04 +4205 4205 4206 420.5 841 4205 1981-07-07 2024-10-11 01:10:05.000 1981-07-07 2024-10-11 01:10:05 +4206 4206 4207 420.6 841.2 4206 1981-07-08 2024-10-11 01:10:06.000 1981-07-08 2024-10-11 01:10:06 +4207 4207 4208 420.7 841.4000000000001 4207 1981-07-09 2024-10-11 01:10:07.000 1981-07-09 2024-10-11 01:10:07 +4208 4208 4209 420.8 841.6 4208 1981-07-10 2024-10-11 01:10:08.000 1981-07-10 2024-10-11 01:10:08 +4209 4209 4210 420.9 841.8000000000001 4209 1981-07-11 2024-10-11 01:10:09.000 1981-07-11 2024-10-11 01:10:09 +4210 4210 4211 421 842 4210 1981-07-12 2024-10-11 01:10:10.000 1981-07-12 2024-10-11 01:10:10 +4211 4211 4212 421.1 842.2 4211 1981-07-13 2024-10-11 01:10:11.000 1981-07-13 2024-10-11 01:10:11 +4212 4212 4213 421.2 842.4000000000001 4212 1981-07-14 2024-10-11 01:10:12.000 1981-07-14 2024-10-11 01:10:12 +4213 4213 4214 421.3 842.6 4213 1981-07-15 2024-10-11 01:10:13.000 1981-07-15 2024-10-11 01:10:13 +4214 4214 4215 421.4 842.8000000000001 4214 1981-07-16 2024-10-11 01:10:14.000 1981-07-16 2024-10-11 01:10:14 +4215 4215 4216 421.5 843 4215 1981-07-17 2024-10-11 01:10:15.000 1981-07-17 2024-10-11 01:10:15 +4216 4216 4217 421.6 843.2 4216 1981-07-18 2024-10-11 01:10:16.000 1981-07-18 2024-10-11 01:10:16 +4217 4217 4218 421.7 843.4000000000001 4217 1981-07-19 2024-10-11 01:10:17.000 1981-07-19 2024-10-11 01:10:17 +4218 4218 4219 421.8 843.6 4218 1981-07-20 2024-10-11 01:10:18.000 1981-07-20 2024-10-11 01:10:18 +4219 4219 4220 421.9 843.8000000000001 4219 1981-07-21 2024-10-11 01:10:19.000 1981-07-21 2024-10-11 01:10:19 +4220 4220 4221 422 844 4220 1981-07-22 2024-10-11 01:10:20.000 1981-07-22 2024-10-11 01:10:20 +4221 4221 4222 422.1 844.2 4221 1981-07-23 2024-10-11 01:10:21.000 1981-07-23 2024-10-11 01:10:21 +4222 4222 4223 422.2 844.4000000000001 4222 1981-07-24 2024-10-11 01:10:22.000 1981-07-24 2024-10-11 01:10:22 +4223 4223 4224 422.3 844.6 4223 1981-07-25 2024-10-11 01:10:23.000 1981-07-25 2024-10-11 01:10:23 +4224 4224 4225 422.4 844.8000000000001 4224 1981-07-26 2024-10-11 01:10:24.000 1981-07-26 2024-10-11 01:10:24 +4225 4225 4226 422.5 845 4225 1981-07-27 2024-10-11 01:10:25.000 1981-07-27 2024-10-11 01:10:25 +4226 4226 4227 422.6 845.2 4226 1981-07-28 2024-10-11 01:10:26.000 1981-07-28 2024-10-11 01:10:26 +4227 4227 4228 422.7 845.4000000000001 4227 1981-07-29 2024-10-11 01:10:27.000 1981-07-29 2024-10-11 01:10:27 +4228 4228 4229 422.8 845.6 4228 1981-07-30 2024-10-11 01:10:28.000 1981-07-30 2024-10-11 01:10:28 +4229 4229 4230 422.9 845.8000000000001 4229 1981-07-31 2024-10-11 01:10:29.000 1981-07-31 2024-10-11 01:10:29 +4230 4230 4231 423 846 4230 1981-08-01 2024-10-11 01:10:30.000 1981-08-01 2024-10-11 01:10:30 +4231 4231 4232 423.1 846.2 4231 1981-08-02 2024-10-11 01:10:31.000 1981-08-02 2024-10-11 01:10:31 +4232 4232 4233 423.2 846.4000000000001 4232 1981-08-03 2024-10-11 01:10:32.000 1981-08-03 2024-10-11 01:10:32 +4233 4233 4234 423.3 846.6 4233 1981-08-04 2024-10-11 01:10:33.000 1981-08-04 2024-10-11 01:10:33 +4234 4234 4235 423.4 846.8000000000001 4234 1981-08-05 2024-10-11 01:10:34.000 1981-08-05 2024-10-11 01:10:34 +4235 4235 4236 423.5 847 4235 1981-08-06 2024-10-11 01:10:35.000 1981-08-06 2024-10-11 01:10:35 +4236 4236 4237 423.6 847.2 4236 1981-08-07 2024-10-11 01:10:36.000 1981-08-07 2024-10-11 01:10:36 +4237 4237 4238 423.7 847.4000000000001 4237 1981-08-08 2024-10-11 01:10:37.000 1981-08-08 2024-10-11 01:10:37 +4238 4238 4239 423.8 847.6 4238 1981-08-09 2024-10-11 01:10:38.000 1981-08-09 2024-10-11 01:10:38 +4239 4239 4240 423.9 847.8000000000001 4239 1981-08-10 2024-10-11 01:10:39.000 1981-08-10 2024-10-11 01:10:39 +4240 4240 4241 424 848 4240 1981-08-11 2024-10-11 01:10:40.000 1981-08-11 2024-10-11 01:10:40 +4241 4241 4242 424.1 848.2 4241 1981-08-12 2024-10-11 01:10:41.000 1981-08-12 2024-10-11 01:10:41 +4242 4242 4243 424.2 848.4000000000001 4242 1981-08-13 2024-10-11 01:10:42.000 1981-08-13 2024-10-11 01:10:42 +4243 4243 4244 424.3 848.6 4243 1981-08-14 2024-10-11 01:10:43.000 1981-08-14 2024-10-11 01:10:43 +4244 4244 4245 424.4 848.8000000000001 4244 1981-08-15 2024-10-11 01:10:44.000 1981-08-15 2024-10-11 01:10:44 +4245 4245 4246 424.5 849 4245 1981-08-16 2024-10-11 01:10:45.000 1981-08-16 2024-10-11 01:10:45 +4246 4246 4247 424.6 849.2 4246 1981-08-17 2024-10-11 01:10:46.000 1981-08-17 2024-10-11 01:10:46 +4247 4247 4248 424.7 849.4000000000001 4247 1981-08-18 2024-10-11 01:10:47.000 1981-08-18 2024-10-11 01:10:47 +4248 4248 4249 424.8 849.6 4248 1981-08-19 2024-10-11 01:10:48.000 1981-08-19 2024-10-11 01:10:48 +4249 4249 4250 424.9 849.8000000000001 4249 1981-08-20 2024-10-11 01:10:49.000 1981-08-20 2024-10-11 01:10:49 +4250 4250 4251 425 850 4250 1981-08-21 2024-10-11 01:10:50.000 1981-08-21 2024-10-11 01:10:50 +4251 4251 4252 425.1 850.2 4251 1981-08-22 2024-10-11 01:10:51.000 1981-08-22 2024-10-11 01:10:51 +4252 4252 4253 425.2 850.4000000000001 4252 1981-08-23 2024-10-11 01:10:52.000 1981-08-23 2024-10-11 01:10:52 +4253 4253 4254 425.3 850.6 4253 1981-08-24 2024-10-11 01:10:53.000 1981-08-24 2024-10-11 01:10:53 +4254 4254 4255 425.4 850.8000000000001 4254 1981-08-25 2024-10-11 01:10:54.000 1981-08-25 2024-10-11 01:10:54 +4255 4255 4256 425.5 851 4255 1981-08-26 2024-10-11 01:10:55.000 1981-08-26 2024-10-11 01:10:55 +4256 4256 4257 425.6 851.2 4256 1981-08-27 2024-10-11 01:10:56.000 1981-08-27 2024-10-11 01:10:56 +4257 4257 4258 425.7 851.4000000000001 4257 1981-08-28 2024-10-11 01:10:57.000 1981-08-28 2024-10-11 01:10:57 +4258 4258 4259 425.8 851.6 4258 1981-08-29 2024-10-11 01:10:58.000 1981-08-29 2024-10-11 01:10:58 +4259 4259 4260 425.9 851.8000000000001 4259 1981-08-30 2024-10-11 01:10:59.000 1981-08-30 2024-10-11 01:10:59 +4260 4260 4261 426 852 4260 1981-08-31 2024-10-11 01:11:00.000 1981-08-31 2024-10-11 01:11:00 +4261 4261 4262 426.1 852.2 4261 1981-09-01 2024-10-11 01:11:01.000 1981-09-01 2024-10-11 01:11:01 +4262 4262 4263 426.2 852.4000000000001 4262 1981-09-02 2024-10-11 01:11:02.000 1981-09-02 2024-10-11 01:11:02 +4263 4263 4264 426.3 852.6 4263 1981-09-03 2024-10-11 01:11:03.000 1981-09-03 2024-10-11 01:11:03 +4264 4264 4265 426.4 852.8000000000001 4264 1981-09-04 2024-10-11 01:11:04.000 1981-09-04 2024-10-11 01:11:04 +4265 4265 4266 426.5 853 4265 1981-09-05 2024-10-11 01:11:05.000 1981-09-05 2024-10-11 01:11:05 +4266 4266 4267 426.6 853.2 4266 1981-09-06 2024-10-11 01:11:06.000 1981-09-06 2024-10-11 01:11:06 +4267 4267 4268 426.7 853.4000000000001 4267 1981-09-07 2024-10-11 01:11:07.000 1981-09-07 2024-10-11 01:11:07 +4268 4268 4269 426.8 853.6 4268 1981-09-08 2024-10-11 01:11:08.000 1981-09-08 2024-10-11 01:11:08 +4269 4269 4270 426.9 853.8000000000001 4269 1981-09-09 2024-10-11 01:11:09.000 1981-09-09 2024-10-11 01:11:09 +4270 4270 4271 427 854 4270 1981-09-10 2024-10-11 01:11:10.000 1981-09-10 2024-10-11 01:11:10 +4271 4271 4272 427.1 854.2 4271 1981-09-11 2024-10-11 01:11:11.000 1981-09-11 2024-10-11 01:11:11 +4272 4272 4273 427.2 854.4000000000001 4272 1981-09-12 2024-10-11 01:11:12.000 1981-09-12 2024-10-11 01:11:12 +4273 4273 4274 427.3 854.6 4273 1981-09-13 2024-10-11 01:11:13.000 1981-09-13 2024-10-11 01:11:13 +4274 4274 4275 427.4 854.8000000000001 4274 1981-09-14 2024-10-11 01:11:14.000 1981-09-14 2024-10-11 01:11:14 +4275 4275 4276 427.5 855 4275 1981-09-15 2024-10-11 01:11:15.000 1981-09-15 2024-10-11 01:11:15 +4276 4276 4277 427.6 855.2 4276 1981-09-16 2024-10-11 01:11:16.000 1981-09-16 2024-10-11 01:11:16 +4277 4277 4278 427.7 855.4000000000001 4277 1981-09-17 2024-10-11 01:11:17.000 1981-09-17 2024-10-11 01:11:17 +4278 4278 4279 427.8 855.6 4278 1981-09-18 2024-10-11 01:11:18.000 1981-09-18 2024-10-11 01:11:18 +4279 4279 4280 427.9 855.8000000000001 4279 1981-09-19 2024-10-11 01:11:19.000 1981-09-19 2024-10-11 01:11:19 +4280 4280 4281 428 856 4280 1981-09-20 2024-10-11 01:11:20.000 1981-09-20 2024-10-11 01:11:20 +4281 4281 4282 428.1 856.2 4281 1981-09-21 2024-10-11 01:11:21.000 1981-09-21 2024-10-11 01:11:21 +4282 4282 4283 428.2 856.4000000000001 4282 1981-09-22 2024-10-11 01:11:22.000 1981-09-22 2024-10-11 01:11:22 +4283 4283 4284 428.3 856.6 4283 1981-09-23 2024-10-11 01:11:23.000 1981-09-23 2024-10-11 01:11:23 +4284 4284 4285 428.4 856.8000000000001 4284 1981-09-24 2024-10-11 01:11:24.000 1981-09-24 2024-10-11 01:11:24 +4285 4285 4286 428.5 857 4285 1981-09-25 2024-10-11 01:11:25.000 1981-09-25 2024-10-11 01:11:25 +4286 4286 4287 428.6 857.2 4286 1981-09-26 2024-10-11 01:11:26.000 1981-09-26 2024-10-11 01:11:26 +4287 4287 4288 428.7 857.4000000000001 4287 1981-09-27 2024-10-11 01:11:27.000 1981-09-27 2024-10-11 01:11:27 +4288 4288 4289 428.8 857.6 4288 1981-09-28 2024-10-11 01:11:28.000 1981-09-28 2024-10-11 01:11:28 +4289 4289 4290 428.9 857.8000000000001 4289 1981-09-29 2024-10-11 01:11:29.000 1981-09-29 2024-10-11 01:11:29 +4290 4290 4291 429 858 4290 1981-09-30 2024-10-11 01:11:30.000 1981-09-30 2024-10-11 01:11:30 +4291 4291 4292 429.1 858.2 4291 1981-10-01 2024-10-11 01:11:31.000 1981-10-01 2024-10-11 01:11:31 +4292 4292 4293 429.2 858.4000000000001 4292 1981-10-02 2024-10-11 01:11:32.000 1981-10-02 2024-10-11 01:11:32 +4293 4293 4294 429.3 858.6 4293 1981-10-03 2024-10-11 01:11:33.000 1981-10-03 2024-10-11 01:11:33 +4294 4294 4295 429.4 858.8000000000001 4294 1981-10-04 2024-10-11 01:11:34.000 1981-10-04 2024-10-11 01:11:34 +4295 4295 4296 429.5 859 4295 1981-10-05 2024-10-11 01:11:35.000 1981-10-05 2024-10-11 01:11:35 +4296 4296 4297 429.6 859.2 4296 1981-10-06 2024-10-11 01:11:36.000 1981-10-06 2024-10-11 01:11:36 +4297 4297 4298 429.7 859.4000000000001 4297 1981-10-07 2024-10-11 01:11:37.000 1981-10-07 2024-10-11 01:11:37 +4298 4298 4299 429.8 859.6 4298 1981-10-08 2024-10-11 01:11:38.000 1981-10-08 2024-10-11 01:11:38 +4299 4299 4300 429.9 859.8000000000001 4299 1981-10-09 2024-10-11 01:11:39.000 1981-10-09 2024-10-11 01:11:39 +4300 4300 4301 430 860 4300 1981-10-10 2024-10-11 01:11:40.000 1981-10-10 2024-10-11 01:11:40 +4301 4301 4302 430.1 860.2 4301 1981-10-11 2024-10-11 01:11:41.000 1981-10-11 2024-10-11 01:11:41 +4302 4302 4303 430.2 860.4000000000001 4302 1981-10-12 2024-10-11 01:11:42.000 1981-10-12 2024-10-11 01:11:42 +4303 4303 4304 430.3 860.6 4303 1981-10-13 2024-10-11 01:11:43.000 1981-10-13 2024-10-11 01:11:43 +4304 4304 4305 430.4 860.8000000000001 4304 1981-10-14 2024-10-11 01:11:44.000 1981-10-14 2024-10-11 01:11:44 +4305 4305 4306 430.5 861 4305 1981-10-15 2024-10-11 01:11:45.000 1981-10-15 2024-10-11 01:11:45 +4306 4306 4307 430.6 861.2 4306 1981-10-16 2024-10-11 01:11:46.000 1981-10-16 2024-10-11 01:11:46 +4307 4307 4308 430.7 861.4000000000001 4307 1981-10-17 2024-10-11 01:11:47.000 1981-10-17 2024-10-11 01:11:47 +4308 4308 4309 430.8 861.6 4308 1981-10-18 2024-10-11 01:11:48.000 1981-10-18 2024-10-11 01:11:48 +4309 4309 4310 430.9 861.8000000000001 4309 1981-10-19 2024-10-11 01:11:49.000 1981-10-19 2024-10-11 01:11:49 +4310 4310 4311 431 862 4310 1981-10-20 2024-10-11 01:11:50.000 1981-10-20 2024-10-11 01:11:50 +4311 4311 4312 431.1 862.2 4311 1981-10-21 2024-10-11 01:11:51.000 1981-10-21 2024-10-11 01:11:51 +4312 4312 4313 431.2 862.4000000000001 4312 1981-10-22 2024-10-11 01:11:52.000 1981-10-22 2024-10-11 01:11:52 +4313 4313 4314 431.3 862.6 4313 1981-10-23 2024-10-11 01:11:53.000 1981-10-23 2024-10-11 01:11:53 +4314 4314 4315 431.4 862.8000000000001 4314 1981-10-24 2024-10-11 01:11:54.000 1981-10-24 2024-10-11 01:11:54 +4315 4315 4316 431.5 863 4315 1981-10-25 2024-10-11 01:11:55.000 1981-10-25 2024-10-11 01:11:55 +4316 4316 4317 431.6 863.2 4316 1981-10-26 2024-10-11 01:11:56.000 1981-10-26 2024-10-11 01:11:56 +4317 4317 4318 431.7 863.4000000000001 4317 1981-10-27 2024-10-11 01:11:57.000 1981-10-27 2024-10-11 01:11:57 +4318 4318 4319 431.8 863.6 4318 1981-10-28 2024-10-11 01:11:58.000 1981-10-28 2024-10-11 01:11:58 +4319 4319 4320 431.9 863.8000000000001 4319 1981-10-29 2024-10-11 01:11:59.000 1981-10-29 2024-10-11 01:11:59 +4320 4320 4321 432 864 4320 1981-10-30 2024-10-11 01:12:00.000 1981-10-30 2024-10-11 01:12:00 +4321 4321 4322 432.1 864.2 4321 1981-10-31 2024-10-11 01:12:01.000 1981-10-31 2024-10-11 01:12:01 +4322 4322 4323 432.2 864.4000000000001 4322 1981-11-01 2024-10-11 01:12:02.000 1981-11-01 2024-10-11 01:12:02 +4323 4323 4324 432.3 864.6 4323 1981-11-02 2024-10-11 01:12:03.000 1981-11-02 2024-10-11 01:12:03 +4324 4324 4325 432.4 864.8000000000001 4324 1981-11-03 2024-10-11 01:12:04.000 1981-11-03 2024-10-11 01:12:04 +4325 4325 4326 432.5 865 4325 1981-11-04 2024-10-11 01:12:05.000 1981-11-04 2024-10-11 01:12:05 +4326 4326 4327 432.6 865.2 4326 1981-11-05 2024-10-11 01:12:06.000 1981-11-05 2024-10-11 01:12:06 +4327 4327 4328 432.7 865.4000000000001 4327 1981-11-06 2024-10-11 01:12:07.000 1981-11-06 2024-10-11 01:12:07 +4328 4328 4329 432.8 865.6 4328 1981-11-07 2024-10-11 01:12:08.000 1981-11-07 2024-10-11 01:12:08 +4329 4329 4330 432.9 865.8000000000001 4329 1981-11-08 2024-10-11 01:12:09.000 1981-11-08 2024-10-11 01:12:09 +4330 4330 4331 433 866 4330 1981-11-09 2024-10-11 01:12:10.000 1981-11-09 2024-10-11 01:12:10 +4331 4331 4332 433.1 866.2 4331 1981-11-10 2024-10-11 01:12:11.000 1981-11-10 2024-10-11 01:12:11 +4332 4332 4333 433.2 866.4000000000001 4332 1981-11-11 2024-10-11 01:12:12.000 1981-11-11 2024-10-11 01:12:12 +4333 4333 4334 433.3 866.6 4333 1981-11-12 2024-10-11 01:12:13.000 1981-11-12 2024-10-11 01:12:13 +4334 4334 4335 433.4 866.8000000000001 4334 1981-11-13 2024-10-11 01:12:14.000 1981-11-13 2024-10-11 01:12:14 +4335 4335 4336 433.5 867 4335 1981-11-14 2024-10-11 01:12:15.000 1981-11-14 2024-10-11 01:12:15 +4336 4336 4337 433.6 867.2 4336 1981-11-15 2024-10-11 01:12:16.000 1981-11-15 2024-10-11 01:12:16 +4337 4337 4338 433.7 867.4000000000001 4337 1981-11-16 2024-10-11 01:12:17.000 1981-11-16 2024-10-11 01:12:17 +4338 4338 4339 433.8 867.6 4338 1981-11-17 2024-10-11 01:12:18.000 1981-11-17 2024-10-11 01:12:18 +4339 4339 4340 433.9 867.8000000000001 4339 1981-11-18 2024-10-11 01:12:19.000 1981-11-18 2024-10-11 01:12:19 +4340 4340 4341 434 868 4340 1981-11-19 2024-10-11 01:12:20.000 1981-11-19 2024-10-11 01:12:20 +4341 4341 4342 434.1 868.2 4341 1981-11-20 2024-10-11 01:12:21.000 1981-11-20 2024-10-11 01:12:21 +4342 4342 4343 434.2 868.4000000000001 4342 1981-11-21 2024-10-11 01:12:22.000 1981-11-21 2024-10-11 01:12:22 +4343 4343 4344 434.3 868.6 4343 1981-11-22 2024-10-11 01:12:23.000 1981-11-22 2024-10-11 01:12:23 +4344 4344 4345 434.4 868.8000000000001 4344 1981-11-23 2024-10-11 01:12:24.000 1981-11-23 2024-10-11 01:12:24 +4345 4345 4346 434.5 869 4345 1981-11-24 2024-10-11 01:12:25.000 1981-11-24 2024-10-11 01:12:25 +4346 4346 4347 434.6 869.2 4346 1981-11-25 2024-10-11 01:12:26.000 1981-11-25 2024-10-11 01:12:26 +4347 4347 4348 434.7 869.4000000000001 4347 1981-11-26 2024-10-11 01:12:27.000 1981-11-26 2024-10-11 01:12:27 +4348 4348 4349 434.8 869.6 4348 1981-11-27 2024-10-11 01:12:28.000 1981-11-27 2024-10-11 01:12:28 +4349 4349 4350 434.9 869.8000000000001 4349 1981-11-28 2024-10-11 01:12:29.000 1981-11-28 2024-10-11 01:12:29 +4350 4350 4351 435 870 4350 1981-11-29 2024-10-11 01:12:30.000 1981-11-29 2024-10-11 01:12:30 +4351 4351 4352 435.1 870.2 4351 1981-11-30 2024-10-11 01:12:31.000 1981-11-30 2024-10-11 01:12:31 +4352 4352 4353 435.2 870.4000000000001 4352 1981-12-01 2024-10-11 01:12:32.000 1981-12-01 2024-10-11 01:12:32 +4353 4353 4354 435.3 870.6 4353 1981-12-02 2024-10-11 01:12:33.000 1981-12-02 2024-10-11 01:12:33 +4354 4354 4355 435.4 870.8000000000001 4354 1981-12-03 2024-10-11 01:12:34.000 1981-12-03 2024-10-11 01:12:34 +4355 4355 4356 435.5 871 4355 1981-12-04 2024-10-11 01:12:35.000 1981-12-04 2024-10-11 01:12:35 +4356 4356 4357 435.6 871.2 4356 1981-12-05 2024-10-11 01:12:36.000 1981-12-05 2024-10-11 01:12:36 +4357 4357 4358 435.7 871.4000000000001 4357 1981-12-06 2024-10-11 01:12:37.000 1981-12-06 2024-10-11 01:12:37 +4358 4358 4359 435.8 871.6 4358 1981-12-07 2024-10-11 01:12:38.000 1981-12-07 2024-10-11 01:12:38 +4359 4359 4360 435.9 871.8000000000001 4359 1981-12-08 2024-10-11 01:12:39.000 1981-12-08 2024-10-11 01:12:39 +4360 4360 4361 436 872 4360 1981-12-09 2024-10-11 01:12:40.000 1981-12-09 2024-10-11 01:12:40 +4361 4361 4362 436.1 872.2 4361 1981-12-10 2024-10-11 01:12:41.000 1981-12-10 2024-10-11 01:12:41 +4362 4362 4363 436.2 872.4000000000001 4362 1981-12-11 2024-10-11 01:12:42.000 1981-12-11 2024-10-11 01:12:42 +4363 4363 4364 436.3 872.6 4363 1981-12-12 2024-10-11 01:12:43.000 1981-12-12 2024-10-11 01:12:43 +4364 4364 4365 436.4 872.8000000000001 4364 1981-12-13 2024-10-11 01:12:44.000 1981-12-13 2024-10-11 01:12:44 +4365 4365 4366 436.5 873 4365 1981-12-14 2024-10-11 01:12:45.000 1981-12-14 2024-10-11 01:12:45 +4366 4366 4367 436.6 873.2 4366 1981-12-15 2024-10-11 01:12:46.000 1981-12-15 2024-10-11 01:12:46 +4367 4367 4368 436.7 873.4000000000001 4367 1981-12-16 2024-10-11 01:12:47.000 1981-12-16 2024-10-11 01:12:47 +4368 4368 4369 436.8 873.6 4368 1981-12-17 2024-10-11 01:12:48.000 1981-12-17 2024-10-11 01:12:48 +4369 4369 4370 436.9 873.8000000000001 4369 1981-12-18 2024-10-11 01:12:49.000 1981-12-18 2024-10-11 01:12:49 +4370 4370 4371 437 874 4370 1981-12-19 2024-10-11 01:12:50.000 1981-12-19 2024-10-11 01:12:50 +4371 4371 4372 437.1 874.2 4371 1981-12-20 2024-10-11 01:12:51.000 1981-12-20 2024-10-11 01:12:51 +4372 4372 4373 437.2 874.4000000000001 4372 1981-12-21 2024-10-11 01:12:52.000 1981-12-21 2024-10-11 01:12:52 +4373 4373 4374 437.3 874.6 4373 1981-12-22 2024-10-11 01:12:53.000 1981-12-22 2024-10-11 01:12:53 +4374 4374 4375 437.4 874.8000000000001 4374 1981-12-23 2024-10-11 01:12:54.000 1981-12-23 2024-10-11 01:12:54 +4375 4375 4376 437.5 875 4375 1981-12-24 2024-10-11 01:12:55.000 1981-12-24 2024-10-11 01:12:55 +4376 4376 4377 437.6 875.2 4376 1981-12-25 2024-10-11 01:12:56.000 1981-12-25 2024-10-11 01:12:56 +4377 4377 4378 437.7 875.4000000000001 4377 1981-12-26 2024-10-11 01:12:57.000 1981-12-26 2024-10-11 01:12:57 +4378 4378 4379 437.8 875.6 4378 1981-12-27 2024-10-11 01:12:58.000 1981-12-27 2024-10-11 01:12:58 +4379 4379 4380 437.9 875.8000000000001 4379 1981-12-28 2024-10-11 01:12:59.000 1981-12-28 2024-10-11 01:12:59 +4380 4380 4381 438 876 4380 1981-12-29 2024-10-11 01:13:00.000 1981-12-29 2024-10-11 01:13:00 +4381 4381 4382 438.1 876.2 4381 1981-12-30 2024-10-11 01:13:01.000 1981-12-30 2024-10-11 01:13:01 +4382 4382 4383 438.2 876.4000000000001 4382 1981-12-31 2024-10-11 01:13:02.000 1981-12-31 2024-10-11 01:13:02 +4383 4383 4384 438.3 876.6 4383 1982-01-01 2024-10-11 01:13:03.000 1982-01-01 2024-10-11 01:13:03 +4384 4384 4385 438.4 876.8000000000001 4384 1982-01-02 2024-10-11 01:13:04.000 1982-01-02 2024-10-11 01:13:04 +4385 4385 4386 438.5 877 4385 1982-01-03 2024-10-11 01:13:05.000 1982-01-03 2024-10-11 01:13:05 +4386 4386 4387 438.6 877.2 4386 1982-01-04 2024-10-11 01:13:06.000 1982-01-04 2024-10-11 01:13:06 +4387 4387 4388 438.7 877.4000000000001 4387 1982-01-05 2024-10-11 01:13:07.000 1982-01-05 2024-10-11 01:13:07 +4388 4388 4389 438.8 877.6 4388 1982-01-06 2024-10-11 01:13:08.000 1982-01-06 2024-10-11 01:13:08 +4389 4389 4390 438.9 877.8000000000001 4389 1982-01-07 2024-10-11 01:13:09.000 1982-01-07 2024-10-11 01:13:09 +4390 4390 4391 439 878 4390 1982-01-08 2024-10-11 01:13:10.000 1982-01-08 2024-10-11 01:13:10 +4391 4391 4392 439.1 878.2 4391 1982-01-09 2024-10-11 01:13:11.000 1982-01-09 2024-10-11 01:13:11 +4392 4392 4393 439.2 878.4000000000001 4392 1982-01-10 2024-10-11 01:13:12.000 1982-01-10 2024-10-11 01:13:12 +4393 4393 4394 439.3 878.6 4393 1982-01-11 2024-10-11 01:13:13.000 1982-01-11 2024-10-11 01:13:13 +4394 4394 4395 439.4 878.8000000000001 4394 1982-01-12 2024-10-11 01:13:14.000 1982-01-12 2024-10-11 01:13:14 +4395 4395 4396 439.5 879 4395 1982-01-13 2024-10-11 01:13:15.000 1982-01-13 2024-10-11 01:13:15 +4396 4396 4397 439.6 879.2 4396 1982-01-14 2024-10-11 01:13:16.000 1982-01-14 2024-10-11 01:13:16 +4397 4397 4398 439.7 879.4000000000001 4397 1982-01-15 2024-10-11 01:13:17.000 1982-01-15 2024-10-11 01:13:17 +4398 4398 4399 439.8 879.6 4398 1982-01-16 2024-10-11 01:13:18.000 1982-01-16 2024-10-11 01:13:18 +4399 4399 4400 439.9 879.8000000000001 4399 1982-01-17 2024-10-11 01:13:19.000 1982-01-17 2024-10-11 01:13:19 +4400 4400 4401 440 880 4400 1982-01-18 2024-10-11 01:13:20.000 1982-01-18 2024-10-11 01:13:20 +4401 4401 4402 440.1 880.2 4401 1982-01-19 2024-10-11 01:13:21.000 1982-01-19 2024-10-11 01:13:21 +4402 4402 4403 440.2 880.4000000000001 4402 1982-01-20 2024-10-11 01:13:22.000 1982-01-20 2024-10-11 01:13:22 +4403 4403 4404 440.3 880.6 4403 1982-01-21 2024-10-11 01:13:23.000 1982-01-21 2024-10-11 01:13:23 +4404 4404 4405 440.4 880.8000000000001 4404 1982-01-22 2024-10-11 01:13:24.000 1982-01-22 2024-10-11 01:13:24 +4405 4405 4406 440.5 881 4405 1982-01-23 2024-10-11 01:13:25.000 1982-01-23 2024-10-11 01:13:25 +4406 4406 4407 440.6 881.2 4406 1982-01-24 2024-10-11 01:13:26.000 1982-01-24 2024-10-11 01:13:26 +4407 4407 4408 440.7 881.4000000000001 4407 1982-01-25 2024-10-11 01:13:27.000 1982-01-25 2024-10-11 01:13:27 +4408 4408 4409 440.8 881.6 4408 1982-01-26 2024-10-11 01:13:28.000 1982-01-26 2024-10-11 01:13:28 +4409 4409 4410 440.9 881.8000000000001 4409 1982-01-27 2024-10-11 01:13:29.000 1982-01-27 2024-10-11 01:13:29 +4410 4410 4411 441 882 4410 1982-01-28 2024-10-11 01:13:30.000 1982-01-28 2024-10-11 01:13:30 +4411 4411 4412 441.1 882.2 4411 1982-01-29 2024-10-11 01:13:31.000 1982-01-29 2024-10-11 01:13:31 +4412 4412 4413 441.2 882.4000000000001 4412 1982-01-30 2024-10-11 01:13:32.000 1982-01-30 2024-10-11 01:13:32 +4413 4413 4414 441.3 882.6 4413 1982-01-31 2024-10-11 01:13:33.000 1982-01-31 2024-10-11 01:13:33 +4414 4414 4415 441.4 882.8000000000001 4414 1982-02-01 2024-10-11 01:13:34.000 1982-02-01 2024-10-11 01:13:34 +4415 4415 4416 441.5 883 4415 1982-02-02 2024-10-11 01:13:35.000 1982-02-02 2024-10-11 01:13:35 +4416 4416 4417 441.6 883.2 4416 1982-02-03 2024-10-11 01:13:36.000 1982-02-03 2024-10-11 01:13:36 +4417 4417 4418 441.7 883.4000000000001 4417 1982-02-04 2024-10-11 01:13:37.000 1982-02-04 2024-10-11 01:13:37 +4418 4418 4419 441.8 883.6 4418 1982-02-05 2024-10-11 01:13:38.000 1982-02-05 2024-10-11 01:13:38 +4419 4419 4420 441.9 883.8000000000001 4419 1982-02-06 2024-10-11 01:13:39.000 1982-02-06 2024-10-11 01:13:39 +4420 4420 4421 442 884 4420 1982-02-07 2024-10-11 01:13:40.000 1982-02-07 2024-10-11 01:13:40 +4421 4421 4422 442.1 884.2 4421 1982-02-08 2024-10-11 01:13:41.000 1982-02-08 2024-10-11 01:13:41 +4422 4422 4423 442.2 884.4000000000001 4422 1982-02-09 2024-10-11 01:13:42.000 1982-02-09 2024-10-11 01:13:42 +4423 4423 4424 442.3 884.6 4423 1982-02-10 2024-10-11 01:13:43.000 1982-02-10 2024-10-11 01:13:43 +4424 4424 4425 442.4 884.8000000000001 4424 1982-02-11 2024-10-11 01:13:44.000 1982-02-11 2024-10-11 01:13:44 +4425 4425 4426 442.5 885 4425 1982-02-12 2024-10-11 01:13:45.000 1982-02-12 2024-10-11 01:13:45 +4426 4426 4427 442.6 885.2 4426 1982-02-13 2024-10-11 01:13:46.000 1982-02-13 2024-10-11 01:13:46 +4427 4427 4428 442.7 885.4000000000001 4427 1982-02-14 2024-10-11 01:13:47.000 1982-02-14 2024-10-11 01:13:47 +4428 4428 4429 442.8 885.6 4428 1982-02-15 2024-10-11 01:13:48.000 1982-02-15 2024-10-11 01:13:48 +4429 4429 4430 442.9 885.8000000000001 4429 1982-02-16 2024-10-11 01:13:49.000 1982-02-16 2024-10-11 01:13:49 +4430 4430 4431 443 886 4430 1982-02-17 2024-10-11 01:13:50.000 1982-02-17 2024-10-11 01:13:50 +4431 4431 4432 443.1 886.2 4431 1982-02-18 2024-10-11 01:13:51.000 1982-02-18 2024-10-11 01:13:51 +4432 4432 4433 443.2 886.4000000000001 4432 1982-02-19 2024-10-11 01:13:52.000 1982-02-19 2024-10-11 01:13:52 +4433 4433 4434 443.3 886.6 4433 1982-02-20 2024-10-11 01:13:53.000 1982-02-20 2024-10-11 01:13:53 +4434 4434 4435 443.4 886.8000000000001 4434 1982-02-21 2024-10-11 01:13:54.000 1982-02-21 2024-10-11 01:13:54 +4435 4435 4436 443.5 887 4435 1982-02-22 2024-10-11 01:13:55.000 1982-02-22 2024-10-11 01:13:55 +4436 4436 4437 443.6 887.2 4436 1982-02-23 2024-10-11 01:13:56.000 1982-02-23 2024-10-11 01:13:56 +4437 4437 4438 443.7 887.4000000000001 4437 1982-02-24 2024-10-11 01:13:57.000 1982-02-24 2024-10-11 01:13:57 +4438 4438 4439 443.8 887.6 4438 1982-02-25 2024-10-11 01:13:58.000 1982-02-25 2024-10-11 01:13:58 +4439 4439 4440 443.9 887.8000000000001 4439 1982-02-26 2024-10-11 01:13:59.000 1982-02-26 2024-10-11 01:13:59 +4440 4440 4441 444 888 4440 1982-02-27 2024-10-11 01:14:00.000 1982-02-27 2024-10-11 01:14:00 +4441 4441 4442 444.1 888.2 4441 1982-02-28 2024-10-11 01:14:01.000 1982-02-28 2024-10-11 01:14:01 +4442 4442 4443 444.2 888.4000000000001 4442 1982-03-01 2024-10-11 01:14:02.000 1982-03-01 2024-10-11 01:14:02 +4443 4443 4444 444.3 888.6 4443 1982-03-02 2024-10-11 01:14:03.000 1982-03-02 2024-10-11 01:14:03 +4444 4444 4445 444.4 888.8000000000001 4444 1982-03-03 2024-10-11 01:14:04.000 1982-03-03 2024-10-11 01:14:04 +4445 4445 4446 444.5 889 4445 1982-03-04 2024-10-11 01:14:05.000 1982-03-04 2024-10-11 01:14:05 +4446 4446 4447 444.6 889.2 4446 1982-03-05 2024-10-11 01:14:06.000 1982-03-05 2024-10-11 01:14:06 +4447 4447 4448 444.7 889.4000000000001 4447 1982-03-06 2024-10-11 01:14:07.000 1982-03-06 2024-10-11 01:14:07 +4448 4448 4449 444.8 889.6 4448 1982-03-07 2024-10-11 01:14:08.000 1982-03-07 2024-10-11 01:14:08 +4449 4449 4450 444.9 889.8000000000001 4449 1982-03-08 2024-10-11 01:14:09.000 1982-03-08 2024-10-11 01:14:09 +4450 4450 4451 445 890 4450 1982-03-09 2024-10-11 01:14:10.000 1982-03-09 2024-10-11 01:14:10 +4451 4451 4452 445.1 890.2 4451 1982-03-10 2024-10-11 01:14:11.000 1982-03-10 2024-10-11 01:14:11 +4452 4452 4453 445.2 890.4000000000001 4452 1982-03-11 2024-10-11 01:14:12.000 1982-03-11 2024-10-11 01:14:12 +4453 4453 4454 445.3 890.6 4453 1982-03-12 2024-10-11 01:14:13.000 1982-03-12 2024-10-11 01:14:13 +4454 4454 4455 445.4 890.8000000000001 4454 1982-03-13 2024-10-11 01:14:14.000 1982-03-13 2024-10-11 01:14:14 +4455 4455 4456 445.5 891 4455 1982-03-14 2024-10-11 01:14:15.000 1982-03-14 2024-10-11 01:14:15 +4456 4456 4457 445.6 891.2 4456 1982-03-15 2024-10-11 01:14:16.000 1982-03-15 2024-10-11 01:14:16 +4457 4457 4458 445.7 891.4000000000001 4457 1982-03-16 2024-10-11 01:14:17.000 1982-03-16 2024-10-11 01:14:17 +4458 4458 4459 445.8 891.6 4458 1982-03-17 2024-10-11 01:14:18.000 1982-03-17 2024-10-11 01:14:18 +4459 4459 4460 445.9 891.8000000000001 4459 1982-03-18 2024-10-11 01:14:19.000 1982-03-18 2024-10-11 01:14:19 +4460 4460 4461 446 892 4460 1982-03-19 2024-10-11 01:14:20.000 1982-03-19 2024-10-11 01:14:20 +4461 4461 4462 446.1 892.2 4461 1982-03-20 2024-10-11 01:14:21.000 1982-03-20 2024-10-11 01:14:21 +4462 4462 4463 446.2 892.4000000000001 4462 1982-03-21 2024-10-11 01:14:22.000 1982-03-21 2024-10-11 01:14:22 +4463 4463 4464 446.3 892.6 4463 1982-03-22 2024-10-11 01:14:23.000 1982-03-22 2024-10-11 01:14:23 +4464 4464 4465 446.4 892.8000000000001 4464 1982-03-23 2024-10-11 01:14:24.000 1982-03-23 2024-10-11 01:14:24 +4465 4465 4466 446.5 893 4465 1982-03-24 2024-10-11 01:14:25.000 1982-03-24 2024-10-11 01:14:25 +4466 4466 4467 446.6 893.2 4466 1982-03-25 2024-10-11 01:14:26.000 1982-03-25 2024-10-11 01:14:26 +4467 4467 4468 446.7 893.4000000000001 4467 1982-03-26 2024-10-11 01:14:27.000 1982-03-26 2024-10-11 01:14:27 +4468 4468 4469 446.8 893.6 4468 1982-03-27 2024-10-11 01:14:28.000 1982-03-27 2024-10-11 01:14:28 +4469 4469 4470 446.9 893.8000000000001 4469 1982-03-28 2024-10-11 01:14:29.000 1982-03-28 2024-10-11 01:14:29 +4470 4470 4471 447 894 4470 1982-03-29 2024-10-11 01:14:30.000 1982-03-29 2024-10-11 01:14:30 +4471 4471 4472 447.1 894.2 4471 1982-03-30 2024-10-11 01:14:31.000 1982-03-30 2024-10-11 01:14:31 +4472 4472 4473 447.2 894.4000000000001 4472 1982-03-31 2024-10-11 01:14:32.000 1982-03-31 2024-10-11 01:14:32 +4473 4473 4474 447.3 894.6 4473 1982-04-01 2024-10-11 01:14:33.000 1982-04-01 2024-10-11 01:14:33 +4474 4474 4475 447.4 894.8000000000001 4474 1982-04-02 2024-10-11 01:14:34.000 1982-04-02 2024-10-11 01:14:34 +4475 4475 4476 447.5 895 4475 1982-04-03 2024-10-11 01:14:35.000 1982-04-03 2024-10-11 01:14:35 +4476 4476 4477 447.6 895.2 4476 1982-04-04 2024-10-11 01:14:36.000 1982-04-04 2024-10-11 01:14:36 +4477 4477 4478 447.7 895.4000000000001 4477 1982-04-05 2024-10-11 01:14:37.000 1982-04-05 2024-10-11 01:14:37 +4478 4478 4479 447.8 895.6 4478 1982-04-06 2024-10-11 01:14:38.000 1982-04-06 2024-10-11 01:14:38 +4479 4479 4480 447.9 895.8000000000001 4479 1982-04-07 2024-10-11 01:14:39.000 1982-04-07 2024-10-11 01:14:39 +4480 4480 4481 448 896 4480 1982-04-08 2024-10-11 01:14:40.000 1982-04-08 2024-10-11 01:14:40 +4481 4481 4482 448.1 896.2 4481 1982-04-09 2024-10-11 01:14:41.000 1982-04-09 2024-10-11 01:14:41 +4482 4482 4483 448.2 896.4000000000001 4482 1982-04-10 2024-10-11 01:14:42.000 1982-04-10 2024-10-11 01:14:42 +4483 4483 4484 448.3 896.6 4483 1982-04-11 2024-10-11 01:14:43.000 1982-04-11 2024-10-11 01:14:43 +4484 4484 4485 448.4 896.8000000000001 4484 1982-04-12 2024-10-11 01:14:44.000 1982-04-12 2024-10-11 01:14:44 +4485 4485 4486 448.5 897 4485 1982-04-13 2024-10-11 01:14:45.000 1982-04-13 2024-10-11 01:14:45 +4486 4486 4487 448.6 897.2 4486 1982-04-14 2024-10-11 01:14:46.000 1982-04-14 2024-10-11 01:14:46 +4487 4487 4488 448.7 897.4000000000001 4487 1982-04-15 2024-10-11 01:14:47.000 1982-04-15 2024-10-11 01:14:47 +4488 4488 4489 448.8 897.6 4488 1982-04-16 2024-10-11 01:14:48.000 1982-04-16 2024-10-11 01:14:48 +4489 4489 4490 448.9 897.8000000000001 4489 1982-04-17 2024-10-11 01:14:49.000 1982-04-17 2024-10-11 01:14:49 +4490 4490 4491 449 898 4490 1982-04-18 2024-10-11 01:14:50.000 1982-04-18 2024-10-11 01:14:50 +4491 4491 4492 449.1 898.2 4491 1982-04-19 2024-10-11 01:14:51.000 1982-04-19 2024-10-11 01:14:51 +4492 4492 4493 449.2 898.4000000000001 4492 1982-04-20 2024-10-11 01:14:52.000 1982-04-20 2024-10-11 01:14:52 +4493 4493 4494 449.3 898.6 4493 1982-04-21 2024-10-11 01:14:53.000 1982-04-21 2024-10-11 01:14:53 +4494 4494 4495 449.4 898.8000000000001 4494 1982-04-22 2024-10-11 01:14:54.000 1982-04-22 2024-10-11 01:14:54 +4495 4495 4496 449.5 899 4495 1982-04-23 2024-10-11 01:14:55.000 1982-04-23 2024-10-11 01:14:55 +4496 4496 4497 449.6 899.2 4496 1982-04-24 2024-10-11 01:14:56.000 1982-04-24 2024-10-11 01:14:56 +4497 4497 4498 449.7 899.4000000000001 4497 1982-04-25 2024-10-11 01:14:57.000 1982-04-25 2024-10-11 01:14:57 +4498 4498 4499 449.8 899.6 4498 1982-04-26 2024-10-11 01:14:58.000 1982-04-26 2024-10-11 01:14:58 +4499 4499 4500 449.9 899.8000000000001 4499 1982-04-27 2024-10-11 01:14:59.000 1982-04-27 2024-10-11 01:14:59 +4500 4500 4501 450 900 4500 1982-04-28 2024-10-11 01:15:00.000 1982-04-28 2024-10-11 01:15:00 +4501 4501 4502 450.1 900.2 4501 1982-04-29 2024-10-11 01:15:01.000 1982-04-29 2024-10-11 01:15:01 +4502 4502 4503 450.2 900.4000000000001 4502 1982-04-30 2024-10-11 01:15:02.000 1982-04-30 2024-10-11 01:15:02 +4503 4503 4504 450.3 900.6 4503 1982-05-01 2024-10-11 01:15:03.000 1982-05-01 2024-10-11 01:15:03 +4504 4504 4505 450.4 900.8000000000001 4504 1982-05-02 2024-10-11 01:15:04.000 1982-05-02 2024-10-11 01:15:04 +4505 4505 4506 450.5 901 4505 1982-05-03 2024-10-11 01:15:05.000 1982-05-03 2024-10-11 01:15:05 +4506 4506 4507 450.6 901.2 4506 1982-05-04 2024-10-11 01:15:06.000 1982-05-04 2024-10-11 01:15:06 +4507 4507 4508 450.7 901.4000000000001 4507 1982-05-05 2024-10-11 01:15:07.000 1982-05-05 2024-10-11 01:15:07 +4508 4508 4509 450.8 901.6 4508 1982-05-06 2024-10-11 01:15:08.000 1982-05-06 2024-10-11 01:15:08 +4509 4509 4510 450.9 901.8000000000001 4509 1982-05-07 2024-10-11 01:15:09.000 1982-05-07 2024-10-11 01:15:09 +4510 4510 4511 451 902 4510 1982-05-08 2024-10-11 01:15:10.000 1982-05-08 2024-10-11 01:15:10 +4511 4511 4512 451.1 902.2 4511 1982-05-09 2024-10-11 01:15:11.000 1982-05-09 2024-10-11 01:15:11 +4512 4512 4513 451.2 902.4000000000001 4512 1982-05-10 2024-10-11 01:15:12.000 1982-05-10 2024-10-11 01:15:12 +4513 4513 4514 451.3 902.6 4513 1982-05-11 2024-10-11 01:15:13.000 1982-05-11 2024-10-11 01:15:13 +4514 4514 4515 451.4 902.8000000000001 4514 1982-05-12 2024-10-11 01:15:14.000 1982-05-12 2024-10-11 01:15:14 +4515 4515 4516 451.5 903 4515 1982-05-13 2024-10-11 01:15:15.000 1982-05-13 2024-10-11 01:15:15 +4516 4516 4517 451.6 903.2 4516 1982-05-14 2024-10-11 01:15:16.000 1982-05-14 2024-10-11 01:15:16 +4517 4517 4518 451.7 903.4000000000001 4517 1982-05-15 2024-10-11 01:15:17.000 1982-05-15 2024-10-11 01:15:17 +4518 4518 4519 451.8 903.6 4518 1982-05-16 2024-10-11 01:15:18.000 1982-05-16 2024-10-11 01:15:18 +4519 4519 4520 451.9 903.8000000000001 4519 1982-05-17 2024-10-11 01:15:19.000 1982-05-17 2024-10-11 01:15:19 +4520 4520 4521 452 904 4520 1982-05-18 2024-10-11 01:15:20.000 1982-05-18 2024-10-11 01:15:20 +4521 4521 4522 452.1 904.2 4521 1982-05-19 2024-10-11 01:15:21.000 1982-05-19 2024-10-11 01:15:21 +4522 4522 4523 452.2 904.4000000000001 4522 1982-05-20 2024-10-11 01:15:22.000 1982-05-20 2024-10-11 01:15:22 +4523 4523 4524 452.3 904.6 4523 1982-05-21 2024-10-11 01:15:23.000 1982-05-21 2024-10-11 01:15:23 +4524 4524 4525 452.4 904.8000000000001 4524 1982-05-22 2024-10-11 01:15:24.000 1982-05-22 2024-10-11 01:15:24 +4525 4525 4526 452.5 905 4525 1982-05-23 2024-10-11 01:15:25.000 1982-05-23 2024-10-11 01:15:25 +4526 4526 4527 452.6 905.2 4526 1982-05-24 2024-10-11 01:15:26.000 1982-05-24 2024-10-11 01:15:26 +4527 4527 4528 452.7 905.4000000000001 4527 1982-05-25 2024-10-11 01:15:27.000 1982-05-25 2024-10-11 01:15:27 +4528 4528 4529 452.8 905.6 4528 1982-05-26 2024-10-11 01:15:28.000 1982-05-26 2024-10-11 01:15:28 +4529 4529 4530 452.9 905.8000000000001 4529 1982-05-27 2024-10-11 01:15:29.000 1982-05-27 2024-10-11 01:15:29 +4530 4530 4531 453 906 4530 1982-05-28 2024-10-11 01:15:30.000 1982-05-28 2024-10-11 01:15:30 +4531 4531 4532 453.1 906.2 4531 1982-05-29 2024-10-11 01:15:31.000 1982-05-29 2024-10-11 01:15:31 +4532 4532 4533 453.2 906.4000000000001 4532 1982-05-30 2024-10-11 01:15:32.000 1982-05-30 2024-10-11 01:15:32 +4533 4533 4534 453.3 906.6 4533 1982-05-31 2024-10-11 01:15:33.000 1982-05-31 2024-10-11 01:15:33 +4534 4534 4535 453.4 906.8000000000001 4534 1982-06-01 2024-10-11 01:15:34.000 1982-06-01 2024-10-11 01:15:34 +4535 4535 4536 453.5 907 4535 1982-06-02 2024-10-11 01:15:35.000 1982-06-02 2024-10-11 01:15:35 +4536 4536 4537 453.6 907.2 4536 1982-06-03 2024-10-11 01:15:36.000 1982-06-03 2024-10-11 01:15:36 +4537 4537 4538 453.7 907.4000000000001 4537 1982-06-04 2024-10-11 01:15:37.000 1982-06-04 2024-10-11 01:15:37 +4538 4538 4539 453.8 907.6 4538 1982-06-05 2024-10-11 01:15:38.000 1982-06-05 2024-10-11 01:15:38 +4539 4539 4540 453.9 907.8000000000001 4539 1982-06-06 2024-10-11 01:15:39.000 1982-06-06 2024-10-11 01:15:39 +4540 4540 4541 454 908 4540 1982-06-07 2024-10-11 01:15:40.000 1982-06-07 2024-10-11 01:15:40 +4541 4541 4542 454.1 908.2 4541 1982-06-08 2024-10-11 01:15:41.000 1982-06-08 2024-10-11 01:15:41 +4542 4542 4543 454.2 908.4000000000001 4542 1982-06-09 2024-10-11 01:15:42.000 1982-06-09 2024-10-11 01:15:42 +4543 4543 4544 454.3 908.6 4543 1982-06-10 2024-10-11 01:15:43.000 1982-06-10 2024-10-11 01:15:43 +4544 4544 4545 454.4 908.8000000000001 4544 1982-06-11 2024-10-11 01:15:44.000 1982-06-11 2024-10-11 01:15:44 +4545 4545 4546 454.5 909 4545 1982-06-12 2024-10-11 01:15:45.000 1982-06-12 2024-10-11 01:15:45 +4546 4546 4547 454.6 909.2 4546 1982-06-13 2024-10-11 01:15:46.000 1982-06-13 2024-10-11 01:15:46 +4547 4547 4548 454.7 909.4000000000001 4547 1982-06-14 2024-10-11 01:15:47.000 1982-06-14 2024-10-11 01:15:47 +4548 4548 4549 454.8 909.6 4548 1982-06-15 2024-10-11 01:15:48.000 1982-06-15 2024-10-11 01:15:48 +4549 4549 4550 454.9 909.8000000000001 4549 1982-06-16 2024-10-11 01:15:49.000 1982-06-16 2024-10-11 01:15:49 +4550 4550 4551 455 910 4550 1982-06-17 2024-10-11 01:15:50.000 1982-06-17 2024-10-11 01:15:50 +4551 4551 4552 455.1 910.2 4551 1982-06-18 2024-10-11 01:15:51.000 1982-06-18 2024-10-11 01:15:51 +4552 4552 4553 455.2 910.4000000000001 4552 1982-06-19 2024-10-11 01:15:52.000 1982-06-19 2024-10-11 01:15:52 +4553 4553 4554 455.3 910.6 4553 1982-06-20 2024-10-11 01:15:53.000 1982-06-20 2024-10-11 01:15:53 +4554 4554 4555 455.4 910.8000000000001 4554 1982-06-21 2024-10-11 01:15:54.000 1982-06-21 2024-10-11 01:15:54 +4555 4555 4556 455.5 911 4555 1982-06-22 2024-10-11 01:15:55.000 1982-06-22 2024-10-11 01:15:55 +4556 4556 4557 455.6 911.2 4556 1982-06-23 2024-10-11 01:15:56.000 1982-06-23 2024-10-11 01:15:56 +4557 4557 4558 455.7 911.4000000000001 4557 1982-06-24 2024-10-11 01:15:57.000 1982-06-24 2024-10-11 01:15:57 +4558 4558 4559 455.8 911.6 4558 1982-06-25 2024-10-11 01:15:58.000 1982-06-25 2024-10-11 01:15:58 +4559 4559 4560 455.9 911.8000000000001 4559 1982-06-26 2024-10-11 01:15:59.000 1982-06-26 2024-10-11 01:15:59 +4560 4560 4561 456 912 4560 1982-06-27 2024-10-11 01:16:00.000 1982-06-27 2024-10-11 01:16:00 +4561 4561 4562 456.1 912.2 4561 1982-06-28 2024-10-11 01:16:01.000 1982-06-28 2024-10-11 01:16:01 +4562 4562 4563 456.2 912.4000000000001 4562 1982-06-29 2024-10-11 01:16:02.000 1982-06-29 2024-10-11 01:16:02 +4563 4563 4564 456.3 912.6 4563 1982-06-30 2024-10-11 01:16:03.000 1982-06-30 2024-10-11 01:16:03 +4564 4564 4565 456.4 912.8000000000001 4564 1982-07-01 2024-10-11 01:16:04.000 1982-07-01 2024-10-11 01:16:04 +4565 4565 4566 456.5 913 4565 1982-07-02 2024-10-11 01:16:05.000 1982-07-02 2024-10-11 01:16:05 +4566 4566 4567 456.6 913.2 4566 1982-07-03 2024-10-11 01:16:06.000 1982-07-03 2024-10-11 01:16:06 +4567 4567 4568 456.7 913.4000000000001 4567 1982-07-04 2024-10-11 01:16:07.000 1982-07-04 2024-10-11 01:16:07 +4568 4568 4569 456.8 913.6 4568 1982-07-05 2024-10-11 01:16:08.000 1982-07-05 2024-10-11 01:16:08 +4569 4569 4570 456.9 913.8000000000001 4569 1982-07-06 2024-10-11 01:16:09.000 1982-07-06 2024-10-11 01:16:09 +4570 4570 4571 457 914 4570 1982-07-07 2024-10-11 01:16:10.000 1982-07-07 2024-10-11 01:16:10 +4571 4571 4572 457.1 914.2 4571 1982-07-08 2024-10-11 01:16:11.000 1982-07-08 2024-10-11 01:16:11 +4572 4572 4573 457.2 914.4000000000001 4572 1982-07-09 2024-10-11 01:16:12.000 1982-07-09 2024-10-11 01:16:12 +4573 4573 4574 457.3 914.6 4573 1982-07-10 2024-10-11 01:16:13.000 1982-07-10 2024-10-11 01:16:13 +4574 4574 4575 457.4 914.8000000000001 4574 1982-07-11 2024-10-11 01:16:14.000 1982-07-11 2024-10-11 01:16:14 +4575 4575 4576 457.5 915 4575 1982-07-12 2024-10-11 01:16:15.000 1982-07-12 2024-10-11 01:16:15 +4576 4576 4577 457.6 915.2 4576 1982-07-13 2024-10-11 01:16:16.000 1982-07-13 2024-10-11 01:16:16 +4577 4577 4578 457.7 915.4000000000001 4577 1982-07-14 2024-10-11 01:16:17.000 1982-07-14 2024-10-11 01:16:17 +4578 4578 4579 457.8 915.6 4578 1982-07-15 2024-10-11 01:16:18.000 1982-07-15 2024-10-11 01:16:18 +4579 4579 4580 457.9 915.8000000000001 4579 1982-07-16 2024-10-11 01:16:19.000 1982-07-16 2024-10-11 01:16:19 +4580 4580 4581 458 916 4580 1982-07-17 2024-10-11 01:16:20.000 1982-07-17 2024-10-11 01:16:20 +4581 4581 4582 458.1 916.2 4581 1982-07-18 2024-10-11 01:16:21.000 1982-07-18 2024-10-11 01:16:21 +4582 4582 4583 458.2 916.4000000000001 4582 1982-07-19 2024-10-11 01:16:22.000 1982-07-19 2024-10-11 01:16:22 +4583 4583 4584 458.3 916.6 4583 1982-07-20 2024-10-11 01:16:23.000 1982-07-20 2024-10-11 01:16:23 +4584 4584 4585 458.4 916.8000000000001 4584 1982-07-21 2024-10-11 01:16:24.000 1982-07-21 2024-10-11 01:16:24 +4585 4585 4586 458.5 917 4585 1982-07-22 2024-10-11 01:16:25.000 1982-07-22 2024-10-11 01:16:25 +4586 4586 4587 458.6 917.2 4586 1982-07-23 2024-10-11 01:16:26.000 1982-07-23 2024-10-11 01:16:26 +4587 4587 4588 458.7 917.4000000000001 4587 1982-07-24 2024-10-11 01:16:27.000 1982-07-24 2024-10-11 01:16:27 +4588 4588 4589 458.8 917.6 4588 1982-07-25 2024-10-11 01:16:28.000 1982-07-25 2024-10-11 01:16:28 +4589 4589 4590 458.9 917.8000000000001 4589 1982-07-26 2024-10-11 01:16:29.000 1982-07-26 2024-10-11 01:16:29 +4590 4590 4591 459 918 4590 1982-07-27 2024-10-11 01:16:30.000 1982-07-27 2024-10-11 01:16:30 +4591 4591 4592 459.1 918.2 4591 1982-07-28 2024-10-11 01:16:31.000 1982-07-28 2024-10-11 01:16:31 +4592 4592 4593 459.2 918.4000000000001 4592 1982-07-29 2024-10-11 01:16:32.000 1982-07-29 2024-10-11 01:16:32 +4593 4593 4594 459.3 918.6 4593 1982-07-30 2024-10-11 01:16:33.000 1982-07-30 2024-10-11 01:16:33 +4594 4594 4595 459.4 918.8000000000001 4594 1982-07-31 2024-10-11 01:16:34.000 1982-07-31 2024-10-11 01:16:34 +4595 4595 4596 459.5 919 4595 1982-08-01 2024-10-11 01:16:35.000 1982-08-01 2024-10-11 01:16:35 +4596 4596 4597 459.6 919.2 4596 1982-08-02 2024-10-11 01:16:36.000 1982-08-02 2024-10-11 01:16:36 +4597 4597 4598 459.7 919.4000000000001 4597 1982-08-03 2024-10-11 01:16:37.000 1982-08-03 2024-10-11 01:16:37 +4598 4598 4599 459.8 919.6 4598 1982-08-04 2024-10-11 01:16:38.000 1982-08-04 2024-10-11 01:16:38 +4599 4599 4600 459.9 919.8000000000001 4599 1982-08-05 2024-10-11 01:16:39.000 1982-08-05 2024-10-11 01:16:39 +4600 4600 4601 460 920 4600 1982-08-06 2024-10-11 01:16:40.000 1982-08-06 2024-10-11 01:16:40 +4601 4601 4602 460.1 920.2 4601 1982-08-07 2024-10-11 01:16:41.000 1982-08-07 2024-10-11 01:16:41 +4602 4602 4603 460.2 920.4000000000001 4602 1982-08-08 2024-10-11 01:16:42.000 1982-08-08 2024-10-11 01:16:42 +4603 4603 4604 460.3 920.6 4603 1982-08-09 2024-10-11 01:16:43.000 1982-08-09 2024-10-11 01:16:43 +4604 4604 4605 460.4 920.8000000000001 4604 1982-08-10 2024-10-11 01:16:44.000 1982-08-10 2024-10-11 01:16:44 +4605 4605 4606 460.5 921 4605 1982-08-11 2024-10-11 01:16:45.000 1982-08-11 2024-10-11 01:16:45 +4606 4606 4607 460.6 921.2 4606 1982-08-12 2024-10-11 01:16:46.000 1982-08-12 2024-10-11 01:16:46 +4607 4607 4608 460.7 921.4000000000001 4607 1982-08-13 2024-10-11 01:16:47.000 1982-08-13 2024-10-11 01:16:47 +4608 4608 4609 460.8 921.6 4608 1982-08-14 2024-10-11 01:16:48.000 1982-08-14 2024-10-11 01:16:48 +4609 4609 4610 460.9 921.8000000000001 4609 1982-08-15 2024-10-11 01:16:49.000 1982-08-15 2024-10-11 01:16:49 +4610 4610 4611 461 922 4610 1982-08-16 2024-10-11 01:16:50.000 1982-08-16 2024-10-11 01:16:50 +4611 4611 4612 461.1 922.2 4611 1982-08-17 2024-10-11 01:16:51.000 1982-08-17 2024-10-11 01:16:51 +4612 4612 4613 461.2 922.4000000000001 4612 1982-08-18 2024-10-11 01:16:52.000 1982-08-18 2024-10-11 01:16:52 +4613 4613 4614 461.3 922.6 4613 1982-08-19 2024-10-11 01:16:53.000 1982-08-19 2024-10-11 01:16:53 +4614 4614 4615 461.4 922.8000000000001 4614 1982-08-20 2024-10-11 01:16:54.000 1982-08-20 2024-10-11 01:16:54 +4615 4615 4616 461.5 923 4615 1982-08-21 2024-10-11 01:16:55.000 1982-08-21 2024-10-11 01:16:55 +4616 4616 4617 461.6 923.2 4616 1982-08-22 2024-10-11 01:16:56.000 1982-08-22 2024-10-11 01:16:56 +4617 4617 4618 461.7 923.4000000000001 4617 1982-08-23 2024-10-11 01:16:57.000 1982-08-23 2024-10-11 01:16:57 +4618 4618 4619 461.8 923.6 4618 1982-08-24 2024-10-11 01:16:58.000 1982-08-24 2024-10-11 01:16:58 +4619 4619 4620 461.9 923.8000000000001 4619 1982-08-25 2024-10-11 01:16:59.000 1982-08-25 2024-10-11 01:16:59 +4620 4620 4621 462 924 4620 1982-08-26 2024-10-11 01:17:00.000 1982-08-26 2024-10-11 01:17:00 +4621 4621 4622 462.1 924.2 4621 1982-08-27 2024-10-11 01:17:01.000 1982-08-27 2024-10-11 01:17:01 +4622 4622 4623 462.2 924.4000000000001 4622 1982-08-28 2024-10-11 01:17:02.000 1982-08-28 2024-10-11 01:17:02 +4623 4623 4624 462.3 924.6 4623 1982-08-29 2024-10-11 01:17:03.000 1982-08-29 2024-10-11 01:17:03 +4624 4624 4625 462.4 924.8000000000001 4624 1982-08-30 2024-10-11 01:17:04.000 1982-08-30 2024-10-11 01:17:04 +4625 4625 4626 462.5 925 4625 1982-08-31 2024-10-11 01:17:05.000 1982-08-31 2024-10-11 01:17:05 +4626 4626 4627 462.6 925.2 4626 1982-09-01 2024-10-11 01:17:06.000 1982-09-01 2024-10-11 01:17:06 +4627 4627 4628 462.7 925.4000000000001 4627 1982-09-02 2024-10-11 01:17:07.000 1982-09-02 2024-10-11 01:17:07 +4628 4628 4629 462.8 925.6 4628 1982-09-03 2024-10-11 01:17:08.000 1982-09-03 2024-10-11 01:17:08 +4629 4629 4630 462.9 925.8000000000001 4629 1982-09-04 2024-10-11 01:17:09.000 1982-09-04 2024-10-11 01:17:09 +4630 4630 4631 463 926 4630 1982-09-05 2024-10-11 01:17:10.000 1982-09-05 2024-10-11 01:17:10 +4631 4631 4632 463.1 926.2 4631 1982-09-06 2024-10-11 01:17:11.000 1982-09-06 2024-10-11 01:17:11 +4632 4632 4633 463.2 926.4000000000001 4632 1982-09-07 2024-10-11 01:17:12.000 1982-09-07 2024-10-11 01:17:12 +4633 4633 4634 463.3 926.6 4633 1982-09-08 2024-10-11 01:17:13.000 1982-09-08 2024-10-11 01:17:13 +4634 4634 4635 463.4 926.8000000000001 4634 1982-09-09 2024-10-11 01:17:14.000 1982-09-09 2024-10-11 01:17:14 +4635 4635 4636 463.5 927 4635 1982-09-10 2024-10-11 01:17:15.000 1982-09-10 2024-10-11 01:17:15 +4636 4636 4637 463.6 927.2 4636 1982-09-11 2024-10-11 01:17:16.000 1982-09-11 2024-10-11 01:17:16 +4637 4637 4638 463.7 927.4000000000001 4637 1982-09-12 2024-10-11 01:17:17.000 1982-09-12 2024-10-11 01:17:17 +4638 4638 4639 463.8 927.6 4638 1982-09-13 2024-10-11 01:17:18.000 1982-09-13 2024-10-11 01:17:18 +4639 4639 4640 463.9 927.8000000000001 4639 1982-09-14 2024-10-11 01:17:19.000 1982-09-14 2024-10-11 01:17:19 +4640 4640 4641 464 928 4640 1982-09-15 2024-10-11 01:17:20.000 1982-09-15 2024-10-11 01:17:20 +4641 4641 4642 464.1 928.2 4641 1982-09-16 2024-10-11 01:17:21.000 1982-09-16 2024-10-11 01:17:21 +4642 4642 4643 464.2 928.4000000000001 4642 1982-09-17 2024-10-11 01:17:22.000 1982-09-17 2024-10-11 01:17:22 +4643 4643 4644 464.3 928.6 4643 1982-09-18 2024-10-11 01:17:23.000 1982-09-18 2024-10-11 01:17:23 +4644 4644 4645 464.4 928.8000000000001 4644 1982-09-19 2024-10-11 01:17:24.000 1982-09-19 2024-10-11 01:17:24 +4645 4645 4646 464.5 929 4645 1982-09-20 2024-10-11 01:17:25.000 1982-09-20 2024-10-11 01:17:25 +4646 4646 4647 464.6 929.2 4646 1982-09-21 2024-10-11 01:17:26.000 1982-09-21 2024-10-11 01:17:26 +4647 4647 4648 464.7 929.4000000000001 4647 1982-09-22 2024-10-11 01:17:27.000 1982-09-22 2024-10-11 01:17:27 +4648 4648 4649 464.8 929.6 4648 1982-09-23 2024-10-11 01:17:28.000 1982-09-23 2024-10-11 01:17:28 +4649 4649 4650 464.9 929.8000000000001 4649 1982-09-24 2024-10-11 01:17:29.000 1982-09-24 2024-10-11 01:17:29 +4650 4650 4651 465 930 4650 1982-09-25 2024-10-11 01:17:30.000 1982-09-25 2024-10-11 01:17:30 +4651 4651 4652 465.1 930.2 4651 1982-09-26 2024-10-11 01:17:31.000 1982-09-26 2024-10-11 01:17:31 +4652 4652 4653 465.2 930.4000000000001 4652 1982-09-27 2024-10-11 01:17:32.000 1982-09-27 2024-10-11 01:17:32 +4653 4653 4654 465.3 930.6 4653 1982-09-28 2024-10-11 01:17:33.000 1982-09-28 2024-10-11 01:17:33 +4654 4654 4655 465.4 930.8000000000001 4654 1982-09-29 2024-10-11 01:17:34.000 1982-09-29 2024-10-11 01:17:34 +4655 4655 4656 465.5 931 4655 1982-09-30 2024-10-11 01:17:35.000 1982-09-30 2024-10-11 01:17:35 +4656 4656 4657 465.6 931.2 4656 1982-10-01 2024-10-11 01:17:36.000 1982-10-01 2024-10-11 01:17:36 +4657 4657 4658 465.7 931.4000000000001 4657 1982-10-02 2024-10-11 01:17:37.000 1982-10-02 2024-10-11 01:17:37 +4658 4658 4659 465.8 931.6 4658 1982-10-03 2024-10-11 01:17:38.000 1982-10-03 2024-10-11 01:17:38 +4659 4659 4660 465.9 931.8000000000001 4659 1982-10-04 2024-10-11 01:17:39.000 1982-10-04 2024-10-11 01:17:39 +4660 4660 4661 466 932 4660 1982-10-05 2024-10-11 01:17:40.000 1982-10-05 2024-10-11 01:17:40 +4661 4661 4662 466.1 932.2 4661 1982-10-06 2024-10-11 01:17:41.000 1982-10-06 2024-10-11 01:17:41 +4662 4662 4663 466.2 932.4000000000001 4662 1982-10-07 2024-10-11 01:17:42.000 1982-10-07 2024-10-11 01:17:42 +4663 4663 4664 466.3 932.6 4663 1982-10-08 2024-10-11 01:17:43.000 1982-10-08 2024-10-11 01:17:43 +4664 4664 4665 466.4 932.8000000000001 4664 1982-10-09 2024-10-11 01:17:44.000 1982-10-09 2024-10-11 01:17:44 +4665 4665 4666 466.5 933 4665 1982-10-10 2024-10-11 01:17:45.000 1982-10-10 2024-10-11 01:17:45 +4666 4666 4667 466.6 933.2 4666 1982-10-11 2024-10-11 01:17:46.000 1982-10-11 2024-10-11 01:17:46 +4667 4667 4668 466.7 933.4000000000001 4667 1982-10-12 2024-10-11 01:17:47.000 1982-10-12 2024-10-11 01:17:47 +4668 4668 4669 466.8 933.6 4668 1982-10-13 2024-10-11 01:17:48.000 1982-10-13 2024-10-11 01:17:48 +4669 4669 4670 466.9 933.8000000000001 4669 1982-10-14 2024-10-11 01:17:49.000 1982-10-14 2024-10-11 01:17:49 +4670 4670 4671 467 934 4670 1982-10-15 2024-10-11 01:17:50.000 1982-10-15 2024-10-11 01:17:50 +4671 4671 4672 467.1 934.2 4671 1982-10-16 2024-10-11 01:17:51.000 1982-10-16 2024-10-11 01:17:51 +4672 4672 4673 467.2 934.4000000000001 4672 1982-10-17 2024-10-11 01:17:52.000 1982-10-17 2024-10-11 01:17:52 +4673 4673 4674 467.3 934.6 4673 1982-10-18 2024-10-11 01:17:53.000 1982-10-18 2024-10-11 01:17:53 +4674 4674 4675 467.4 934.8000000000001 4674 1982-10-19 2024-10-11 01:17:54.000 1982-10-19 2024-10-11 01:17:54 +4675 4675 4676 467.5 935 4675 1982-10-20 2024-10-11 01:17:55.000 1982-10-20 2024-10-11 01:17:55 +4676 4676 4677 467.6 935.2 4676 1982-10-21 2024-10-11 01:17:56.000 1982-10-21 2024-10-11 01:17:56 +4677 4677 4678 467.7 935.4000000000001 4677 1982-10-22 2024-10-11 01:17:57.000 1982-10-22 2024-10-11 01:17:57 +4678 4678 4679 467.8 935.6 4678 1982-10-23 2024-10-11 01:17:58.000 1982-10-23 2024-10-11 01:17:58 +4679 4679 4680 467.9 935.8000000000001 4679 1982-10-24 2024-10-11 01:17:59.000 1982-10-24 2024-10-11 01:17:59 +4680 4680 4681 468 936 4680 1982-10-25 2024-10-11 01:18:00.000 1982-10-25 2024-10-11 01:18:00 +4681 4681 4682 468.1 936.2 4681 1982-10-26 2024-10-11 01:18:01.000 1982-10-26 2024-10-11 01:18:01 +4682 4682 4683 468.2 936.4000000000001 4682 1982-10-27 2024-10-11 01:18:02.000 1982-10-27 2024-10-11 01:18:02 +4683 4683 4684 468.3 936.6 4683 1982-10-28 2024-10-11 01:18:03.000 1982-10-28 2024-10-11 01:18:03 +4684 4684 4685 468.4 936.8000000000001 4684 1982-10-29 2024-10-11 01:18:04.000 1982-10-29 2024-10-11 01:18:04 +4685 4685 4686 468.5 937 4685 1982-10-30 2024-10-11 01:18:05.000 1982-10-30 2024-10-11 01:18:05 +4686 4686 4687 468.6 937.2 4686 1982-10-31 2024-10-11 01:18:06.000 1982-10-31 2024-10-11 01:18:06 +4687 4687 4688 468.7 937.4000000000001 4687 1982-11-01 2024-10-11 01:18:07.000 1982-11-01 2024-10-11 01:18:07 +4688 4688 4689 468.8 937.6 4688 1982-11-02 2024-10-11 01:18:08.000 1982-11-02 2024-10-11 01:18:08 +4689 4689 4690 468.9 937.8000000000001 4689 1982-11-03 2024-10-11 01:18:09.000 1982-11-03 2024-10-11 01:18:09 +4690 4690 4691 469 938 4690 1982-11-04 2024-10-11 01:18:10.000 1982-11-04 2024-10-11 01:18:10 +4691 4691 4692 469.1 938.2 4691 1982-11-05 2024-10-11 01:18:11.000 1982-11-05 2024-10-11 01:18:11 +4692 4692 4693 469.2 938.4000000000001 4692 1982-11-06 2024-10-11 01:18:12.000 1982-11-06 2024-10-11 01:18:12 +4693 4693 4694 469.3 938.6 4693 1982-11-07 2024-10-11 01:18:13.000 1982-11-07 2024-10-11 01:18:13 +4694 4694 4695 469.4 938.8000000000001 4694 1982-11-08 2024-10-11 01:18:14.000 1982-11-08 2024-10-11 01:18:14 +4695 4695 4696 469.5 939 4695 1982-11-09 2024-10-11 01:18:15.000 1982-11-09 2024-10-11 01:18:15 +4696 4696 4697 469.6 939.2 4696 1982-11-10 2024-10-11 01:18:16.000 1982-11-10 2024-10-11 01:18:16 +4697 4697 4698 469.7 939.4000000000001 4697 1982-11-11 2024-10-11 01:18:17.000 1982-11-11 2024-10-11 01:18:17 +4698 4698 4699 469.8 939.6 4698 1982-11-12 2024-10-11 01:18:18.000 1982-11-12 2024-10-11 01:18:18 +4699 4699 4700 469.9 939.8000000000001 4699 1982-11-13 2024-10-11 01:18:19.000 1982-11-13 2024-10-11 01:18:19 +4700 4700 4701 470 940 4700 1982-11-14 2024-10-11 01:18:20.000 1982-11-14 2024-10-11 01:18:20 +4701 4701 4702 470.1 940.2 4701 1982-11-15 2024-10-11 01:18:21.000 1982-11-15 2024-10-11 01:18:21 +4702 4702 4703 470.2 940.4000000000001 4702 1982-11-16 2024-10-11 01:18:22.000 1982-11-16 2024-10-11 01:18:22 +4703 4703 4704 470.3 940.6 4703 1982-11-17 2024-10-11 01:18:23.000 1982-11-17 2024-10-11 01:18:23 +4704 4704 4705 470.4 940.8000000000001 4704 1982-11-18 2024-10-11 01:18:24.000 1982-11-18 2024-10-11 01:18:24 +4705 4705 4706 470.5 941 4705 1982-11-19 2024-10-11 01:18:25.000 1982-11-19 2024-10-11 01:18:25 +4706 4706 4707 470.6 941.2 4706 1982-11-20 2024-10-11 01:18:26.000 1982-11-20 2024-10-11 01:18:26 +4707 4707 4708 470.7 941.4000000000001 4707 1982-11-21 2024-10-11 01:18:27.000 1982-11-21 2024-10-11 01:18:27 +4708 4708 4709 470.8 941.6 4708 1982-11-22 2024-10-11 01:18:28.000 1982-11-22 2024-10-11 01:18:28 +4709 4709 4710 470.9 941.8000000000001 4709 1982-11-23 2024-10-11 01:18:29.000 1982-11-23 2024-10-11 01:18:29 +4710 4710 4711 471 942 4710 1982-11-24 2024-10-11 01:18:30.000 1982-11-24 2024-10-11 01:18:30 +4711 4711 4712 471.1 942.2 4711 1982-11-25 2024-10-11 01:18:31.000 1982-11-25 2024-10-11 01:18:31 +4712 4712 4713 471.2 942.4000000000001 4712 1982-11-26 2024-10-11 01:18:32.000 1982-11-26 2024-10-11 01:18:32 +4713 4713 4714 471.3 942.6 4713 1982-11-27 2024-10-11 01:18:33.000 1982-11-27 2024-10-11 01:18:33 +4714 4714 4715 471.4 942.8000000000001 4714 1982-11-28 2024-10-11 01:18:34.000 1982-11-28 2024-10-11 01:18:34 +4715 4715 4716 471.5 943 4715 1982-11-29 2024-10-11 01:18:35.000 1982-11-29 2024-10-11 01:18:35 +4716 4716 4717 471.6 943.2 4716 1982-11-30 2024-10-11 01:18:36.000 1982-11-30 2024-10-11 01:18:36 +4717 4717 4718 471.7 943.4000000000001 4717 1982-12-01 2024-10-11 01:18:37.000 1982-12-01 2024-10-11 01:18:37 +4718 4718 4719 471.8 943.6 4718 1982-12-02 2024-10-11 01:18:38.000 1982-12-02 2024-10-11 01:18:38 +4719 4719 4720 471.9 943.8000000000001 4719 1982-12-03 2024-10-11 01:18:39.000 1982-12-03 2024-10-11 01:18:39 +4720 4720 4721 472 944 4720 1982-12-04 2024-10-11 01:18:40.000 1982-12-04 2024-10-11 01:18:40 +4721 4721 4722 472.1 944.2 4721 1982-12-05 2024-10-11 01:18:41.000 1982-12-05 2024-10-11 01:18:41 +4722 4722 4723 472.2 944.4000000000001 4722 1982-12-06 2024-10-11 01:18:42.000 1982-12-06 2024-10-11 01:18:42 +4723 4723 4724 472.3 944.6 4723 1982-12-07 2024-10-11 01:18:43.000 1982-12-07 2024-10-11 01:18:43 +4724 4724 4725 472.4 944.8000000000001 4724 1982-12-08 2024-10-11 01:18:44.000 1982-12-08 2024-10-11 01:18:44 +4725 4725 4726 472.5 945 4725 1982-12-09 2024-10-11 01:18:45.000 1982-12-09 2024-10-11 01:18:45 +4726 4726 4727 472.6 945.2 4726 1982-12-10 2024-10-11 01:18:46.000 1982-12-10 2024-10-11 01:18:46 +4727 4727 4728 472.7 945.4000000000001 4727 1982-12-11 2024-10-11 01:18:47.000 1982-12-11 2024-10-11 01:18:47 +4728 4728 4729 472.8 945.6 4728 1982-12-12 2024-10-11 01:18:48.000 1982-12-12 2024-10-11 01:18:48 +4729 4729 4730 472.9 945.8000000000001 4729 1982-12-13 2024-10-11 01:18:49.000 1982-12-13 2024-10-11 01:18:49 +4730 4730 4731 473 946 4730 1982-12-14 2024-10-11 01:18:50.000 1982-12-14 2024-10-11 01:18:50 +4731 4731 4732 473.1 946.2 4731 1982-12-15 2024-10-11 01:18:51.000 1982-12-15 2024-10-11 01:18:51 +4732 4732 4733 473.2 946.4000000000001 4732 1982-12-16 2024-10-11 01:18:52.000 1982-12-16 2024-10-11 01:18:52 +4733 4733 4734 473.3 946.6 4733 1982-12-17 2024-10-11 01:18:53.000 1982-12-17 2024-10-11 01:18:53 +4734 4734 4735 473.4 946.8000000000001 4734 1982-12-18 2024-10-11 01:18:54.000 1982-12-18 2024-10-11 01:18:54 +4735 4735 4736 473.5 947 4735 1982-12-19 2024-10-11 01:18:55.000 1982-12-19 2024-10-11 01:18:55 +4736 4736 4737 473.6 947.2 4736 1982-12-20 2024-10-11 01:18:56.000 1982-12-20 2024-10-11 01:18:56 +4737 4737 4738 473.7 947.4000000000001 4737 1982-12-21 2024-10-11 01:18:57.000 1982-12-21 2024-10-11 01:18:57 +4738 4738 4739 473.8 947.6 4738 1982-12-22 2024-10-11 01:18:58.000 1982-12-22 2024-10-11 01:18:58 +4739 4739 4740 473.9 947.8000000000001 4739 1982-12-23 2024-10-11 01:18:59.000 1982-12-23 2024-10-11 01:18:59 +4740 4740 4741 474 948 4740 1982-12-24 2024-10-11 01:19:00.000 1982-12-24 2024-10-11 01:19:00 +4741 4741 4742 474.1 948.2 4741 1982-12-25 2024-10-11 01:19:01.000 1982-12-25 2024-10-11 01:19:01 +4742 4742 4743 474.2 948.4000000000001 4742 1982-12-26 2024-10-11 01:19:02.000 1982-12-26 2024-10-11 01:19:02 +4743 4743 4744 474.3 948.6 4743 1982-12-27 2024-10-11 01:19:03.000 1982-12-27 2024-10-11 01:19:03 +4744 4744 4745 474.4 948.8000000000001 4744 1982-12-28 2024-10-11 01:19:04.000 1982-12-28 2024-10-11 01:19:04 +4745 4745 4746 474.5 949 4745 1982-12-29 2024-10-11 01:19:05.000 1982-12-29 2024-10-11 01:19:05 +4746 4746 4747 474.6 949.2 4746 1982-12-30 2024-10-11 01:19:06.000 1982-12-30 2024-10-11 01:19:06 +4747 4747 4748 474.7 949.4000000000001 4747 1982-12-31 2024-10-11 01:19:07.000 1982-12-31 2024-10-11 01:19:07 +4748 4748 4749 474.8 949.6 4748 1983-01-01 2024-10-11 01:19:08.000 1983-01-01 2024-10-11 01:19:08 +4749 4749 4750 474.9 949.8000000000001 4749 1983-01-02 2024-10-11 01:19:09.000 1983-01-02 2024-10-11 01:19:09 +4750 4750 4751 475 950 4750 1983-01-03 2024-10-11 01:19:10.000 1983-01-03 2024-10-11 01:19:10 +4751 4751 4752 475.1 950.2 4751 1983-01-04 2024-10-11 01:19:11.000 1983-01-04 2024-10-11 01:19:11 +4752 4752 4753 475.2 950.4000000000001 4752 1983-01-05 2024-10-11 01:19:12.000 1983-01-05 2024-10-11 01:19:12 +4753 4753 4754 475.3 950.6 4753 1983-01-06 2024-10-11 01:19:13.000 1983-01-06 2024-10-11 01:19:13 +4754 4754 4755 475.4 950.8000000000001 4754 1983-01-07 2024-10-11 01:19:14.000 1983-01-07 2024-10-11 01:19:14 +4755 4755 4756 475.5 951 4755 1983-01-08 2024-10-11 01:19:15.000 1983-01-08 2024-10-11 01:19:15 +4756 4756 4757 475.6 951.2 4756 1983-01-09 2024-10-11 01:19:16.000 1983-01-09 2024-10-11 01:19:16 +4757 4757 4758 475.7 951.4000000000001 4757 1983-01-10 2024-10-11 01:19:17.000 1983-01-10 2024-10-11 01:19:17 +4758 4758 4759 475.8 951.6 4758 1983-01-11 2024-10-11 01:19:18.000 1983-01-11 2024-10-11 01:19:18 +4759 4759 4760 475.9 951.8000000000001 4759 1983-01-12 2024-10-11 01:19:19.000 1983-01-12 2024-10-11 01:19:19 +4760 4760 4761 476 952 4760 1983-01-13 2024-10-11 01:19:20.000 1983-01-13 2024-10-11 01:19:20 +4761 4761 4762 476.1 952.2 4761 1983-01-14 2024-10-11 01:19:21.000 1983-01-14 2024-10-11 01:19:21 +4762 4762 4763 476.2 952.4000000000001 4762 1983-01-15 2024-10-11 01:19:22.000 1983-01-15 2024-10-11 01:19:22 +4763 4763 4764 476.3 952.6 4763 1983-01-16 2024-10-11 01:19:23.000 1983-01-16 2024-10-11 01:19:23 +4764 4764 4765 476.4 952.8000000000001 4764 1983-01-17 2024-10-11 01:19:24.000 1983-01-17 2024-10-11 01:19:24 +4765 4765 4766 476.5 953 4765 1983-01-18 2024-10-11 01:19:25.000 1983-01-18 2024-10-11 01:19:25 +4766 4766 4767 476.6 953.2 4766 1983-01-19 2024-10-11 01:19:26.000 1983-01-19 2024-10-11 01:19:26 +4767 4767 4768 476.7 953.4000000000001 4767 1983-01-20 2024-10-11 01:19:27.000 1983-01-20 2024-10-11 01:19:27 +4768 4768 4769 476.8 953.6 4768 1983-01-21 2024-10-11 01:19:28.000 1983-01-21 2024-10-11 01:19:28 +4769 4769 4770 476.9 953.8000000000001 4769 1983-01-22 2024-10-11 01:19:29.000 1983-01-22 2024-10-11 01:19:29 +4770 4770 4771 477 954 4770 1983-01-23 2024-10-11 01:19:30.000 1983-01-23 2024-10-11 01:19:30 +4771 4771 4772 477.1 954.2 4771 1983-01-24 2024-10-11 01:19:31.000 1983-01-24 2024-10-11 01:19:31 +4772 4772 4773 477.2 954.4000000000001 4772 1983-01-25 2024-10-11 01:19:32.000 1983-01-25 2024-10-11 01:19:32 +4773 4773 4774 477.3 954.6 4773 1983-01-26 2024-10-11 01:19:33.000 1983-01-26 2024-10-11 01:19:33 +4774 4774 4775 477.4 954.8000000000001 4774 1983-01-27 2024-10-11 01:19:34.000 1983-01-27 2024-10-11 01:19:34 +4775 4775 4776 477.5 955 4775 1983-01-28 2024-10-11 01:19:35.000 1983-01-28 2024-10-11 01:19:35 +4776 4776 4777 477.6 955.2 4776 1983-01-29 2024-10-11 01:19:36.000 1983-01-29 2024-10-11 01:19:36 +4777 4777 4778 477.7 955.4000000000001 4777 1983-01-30 2024-10-11 01:19:37.000 1983-01-30 2024-10-11 01:19:37 +4778 4778 4779 477.8 955.6 4778 1983-01-31 2024-10-11 01:19:38.000 1983-01-31 2024-10-11 01:19:38 +4779 4779 4780 477.9 955.8000000000001 4779 1983-02-01 2024-10-11 01:19:39.000 1983-02-01 2024-10-11 01:19:39 +4780 4780 4781 478 956 4780 1983-02-02 2024-10-11 01:19:40.000 1983-02-02 2024-10-11 01:19:40 +4781 4781 4782 478.1 956.2 4781 1983-02-03 2024-10-11 01:19:41.000 1983-02-03 2024-10-11 01:19:41 +4782 4782 4783 478.2 956.4000000000001 4782 1983-02-04 2024-10-11 01:19:42.000 1983-02-04 2024-10-11 01:19:42 +4783 4783 4784 478.3 956.6 4783 1983-02-05 2024-10-11 01:19:43.000 1983-02-05 2024-10-11 01:19:43 +4784 4784 4785 478.4 956.8000000000001 4784 1983-02-06 2024-10-11 01:19:44.000 1983-02-06 2024-10-11 01:19:44 +4785 4785 4786 478.5 957 4785 1983-02-07 2024-10-11 01:19:45.000 1983-02-07 2024-10-11 01:19:45 +4786 4786 4787 478.6 957.2 4786 1983-02-08 2024-10-11 01:19:46.000 1983-02-08 2024-10-11 01:19:46 +4787 4787 4788 478.7 957.4000000000001 4787 1983-02-09 2024-10-11 01:19:47.000 1983-02-09 2024-10-11 01:19:47 +4788 4788 4789 478.8 957.6 4788 1983-02-10 2024-10-11 01:19:48.000 1983-02-10 2024-10-11 01:19:48 +4789 4789 4790 478.9 957.8000000000001 4789 1983-02-11 2024-10-11 01:19:49.000 1983-02-11 2024-10-11 01:19:49 +4790 4790 4791 479 958 4790 1983-02-12 2024-10-11 01:19:50.000 1983-02-12 2024-10-11 01:19:50 +4791 4791 4792 479.1 958.2 4791 1983-02-13 2024-10-11 01:19:51.000 1983-02-13 2024-10-11 01:19:51 +4792 4792 4793 479.2 958.4000000000001 4792 1983-02-14 2024-10-11 01:19:52.000 1983-02-14 2024-10-11 01:19:52 +4793 4793 4794 479.3 958.6 4793 1983-02-15 2024-10-11 01:19:53.000 1983-02-15 2024-10-11 01:19:53 +4794 4794 4795 479.4 958.8000000000001 4794 1983-02-16 2024-10-11 01:19:54.000 1983-02-16 2024-10-11 01:19:54 +4795 4795 4796 479.5 959 4795 1983-02-17 2024-10-11 01:19:55.000 1983-02-17 2024-10-11 01:19:55 +4796 4796 4797 479.6 959.2 4796 1983-02-18 2024-10-11 01:19:56.000 1983-02-18 2024-10-11 01:19:56 +4797 4797 4798 479.7 959.4000000000001 4797 1983-02-19 2024-10-11 01:19:57.000 1983-02-19 2024-10-11 01:19:57 +4798 4798 4799 479.8 959.6 4798 1983-02-20 2024-10-11 01:19:58.000 1983-02-20 2024-10-11 01:19:58 +4799 4799 4800 479.9 959.8000000000001 4799 1983-02-21 2024-10-11 01:19:59.000 1983-02-21 2024-10-11 01:19:59 +4800 4800 4801 480 960 4800 1983-02-22 2024-10-11 01:20:00.000 1983-02-22 2024-10-11 01:20:00 +4801 4801 4802 480.1 960.2 4801 1983-02-23 2024-10-11 01:20:01.000 1983-02-23 2024-10-11 01:20:01 +4802 4802 4803 480.2 960.4000000000001 4802 1983-02-24 2024-10-11 01:20:02.000 1983-02-24 2024-10-11 01:20:02 +4803 4803 4804 480.3 960.6 4803 1983-02-25 2024-10-11 01:20:03.000 1983-02-25 2024-10-11 01:20:03 +4804 4804 4805 480.4 960.8000000000001 4804 1983-02-26 2024-10-11 01:20:04.000 1983-02-26 2024-10-11 01:20:04 +4805 4805 4806 480.5 961 4805 1983-02-27 2024-10-11 01:20:05.000 1983-02-27 2024-10-11 01:20:05 +4806 4806 4807 480.6 961.2 4806 1983-02-28 2024-10-11 01:20:06.000 1983-02-28 2024-10-11 01:20:06 +4807 4807 4808 480.7 961.4000000000001 4807 1983-03-01 2024-10-11 01:20:07.000 1983-03-01 2024-10-11 01:20:07 +4808 4808 4809 480.8 961.6 4808 1983-03-02 2024-10-11 01:20:08.000 1983-03-02 2024-10-11 01:20:08 +4809 4809 4810 480.9 961.8000000000001 4809 1983-03-03 2024-10-11 01:20:09.000 1983-03-03 2024-10-11 01:20:09 +4810 4810 4811 481 962 4810 1983-03-04 2024-10-11 01:20:10.000 1983-03-04 2024-10-11 01:20:10 +4811 4811 4812 481.1 962.2 4811 1983-03-05 2024-10-11 01:20:11.000 1983-03-05 2024-10-11 01:20:11 +4812 4812 4813 481.2 962.4000000000001 4812 1983-03-06 2024-10-11 01:20:12.000 1983-03-06 2024-10-11 01:20:12 +4813 4813 4814 481.3 962.6 4813 1983-03-07 2024-10-11 01:20:13.000 1983-03-07 2024-10-11 01:20:13 +4814 4814 4815 481.4 962.8000000000001 4814 1983-03-08 2024-10-11 01:20:14.000 1983-03-08 2024-10-11 01:20:14 +4815 4815 4816 481.5 963 4815 1983-03-09 2024-10-11 01:20:15.000 1983-03-09 2024-10-11 01:20:15 +4816 4816 4817 481.6 963.2 4816 1983-03-10 2024-10-11 01:20:16.000 1983-03-10 2024-10-11 01:20:16 +4817 4817 4818 481.7 963.4000000000001 4817 1983-03-11 2024-10-11 01:20:17.000 1983-03-11 2024-10-11 01:20:17 +4818 4818 4819 481.8 963.6 4818 1983-03-12 2024-10-11 01:20:18.000 1983-03-12 2024-10-11 01:20:18 +4819 4819 4820 481.9 963.8000000000001 4819 1983-03-13 2024-10-11 01:20:19.000 1983-03-13 2024-10-11 01:20:19 +4820 4820 4821 482 964 4820 1983-03-14 2024-10-11 01:20:20.000 1983-03-14 2024-10-11 01:20:20 +4821 4821 4822 482.1 964.2 4821 1983-03-15 2024-10-11 01:20:21.000 1983-03-15 2024-10-11 01:20:21 +4822 4822 4823 482.2 964.4000000000001 4822 1983-03-16 2024-10-11 01:20:22.000 1983-03-16 2024-10-11 01:20:22 +4823 4823 4824 482.3 964.6 4823 1983-03-17 2024-10-11 01:20:23.000 1983-03-17 2024-10-11 01:20:23 +4824 4824 4825 482.4 964.8000000000001 4824 1983-03-18 2024-10-11 01:20:24.000 1983-03-18 2024-10-11 01:20:24 +4825 4825 4826 482.5 965 4825 1983-03-19 2024-10-11 01:20:25.000 1983-03-19 2024-10-11 01:20:25 +4826 4826 4827 482.6 965.2 4826 1983-03-20 2024-10-11 01:20:26.000 1983-03-20 2024-10-11 01:20:26 +4827 4827 4828 482.7 965.4000000000001 4827 1983-03-21 2024-10-11 01:20:27.000 1983-03-21 2024-10-11 01:20:27 +4828 4828 4829 482.8 965.6 4828 1983-03-22 2024-10-11 01:20:28.000 1983-03-22 2024-10-11 01:20:28 +4829 4829 4830 482.9 965.8000000000001 4829 1983-03-23 2024-10-11 01:20:29.000 1983-03-23 2024-10-11 01:20:29 +4830 4830 4831 483 966 4830 1983-03-24 2024-10-11 01:20:30.000 1983-03-24 2024-10-11 01:20:30 +4831 4831 4832 483.1 966.2 4831 1983-03-25 2024-10-11 01:20:31.000 1983-03-25 2024-10-11 01:20:31 +4832 4832 4833 483.2 966.4000000000001 4832 1983-03-26 2024-10-11 01:20:32.000 1983-03-26 2024-10-11 01:20:32 +4833 4833 4834 483.3 966.6 4833 1983-03-27 2024-10-11 01:20:33.000 1983-03-27 2024-10-11 01:20:33 +4834 4834 4835 483.4 966.8000000000001 4834 1983-03-28 2024-10-11 01:20:34.000 1983-03-28 2024-10-11 01:20:34 +4835 4835 4836 483.5 967 4835 1983-03-29 2024-10-11 01:20:35.000 1983-03-29 2024-10-11 01:20:35 +4836 4836 4837 483.6 967.2 4836 1983-03-30 2024-10-11 01:20:36.000 1983-03-30 2024-10-11 01:20:36 +4837 4837 4838 483.7 967.4000000000001 4837 1983-03-31 2024-10-11 01:20:37.000 1983-03-31 2024-10-11 01:20:37 +4838 4838 4839 483.8 967.6 4838 1983-04-01 2024-10-11 01:20:38.000 1983-04-01 2024-10-11 01:20:38 +4839 4839 4840 483.9 967.8000000000001 4839 1983-04-02 2024-10-11 01:20:39.000 1983-04-02 2024-10-11 01:20:39 +4840 4840 4841 484 968 4840 1983-04-03 2024-10-11 01:20:40.000 1983-04-03 2024-10-11 01:20:40 +4841 4841 4842 484.1 968.2 4841 1983-04-04 2024-10-11 01:20:41.000 1983-04-04 2024-10-11 01:20:41 +4842 4842 4843 484.2 968.4000000000001 4842 1983-04-05 2024-10-11 01:20:42.000 1983-04-05 2024-10-11 01:20:42 +4843 4843 4844 484.3 968.6 4843 1983-04-06 2024-10-11 01:20:43.000 1983-04-06 2024-10-11 01:20:43 +4844 4844 4845 484.4 968.8000000000001 4844 1983-04-07 2024-10-11 01:20:44.000 1983-04-07 2024-10-11 01:20:44 +4845 4845 4846 484.5 969 4845 1983-04-08 2024-10-11 01:20:45.000 1983-04-08 2024-10-11 01:20:45 +4846 4846 4847 484.6 969.2 4846 1983-04-09 2024-10-11 01:20:46.000 1983-04-09 2024-10-11 01:20:46 +4847 4847 4848 484.7 969.4000000000001 4847 1983-04-10 2024-10-11 01:20:47.000 1983-04-10 2024-10-11 01:20:47 +4848 4848 4849 484.8 969.6 4848 1983-04-11 2024-10-11 01:20:48.000 1983-04-11 2024-10-11 01:20:48 +4849 4849 4850 484.9 969.8000000000001 4849 1983-04-12 2024-10-11 01:20:49.000 1983-04-12 2024-10-11 01:20:49 +4850 4850 4851 485 970 4850 1983-04-13 2024-10-11 01:20:50.000 1983-04-13 2024-10-11 01:20:50 +4851 4851 4852 485.1 970.2 4851 1983-04-14 2024-10-11 01:20:51.000 1983-04-14 2024-10-11 01:20:51 +4852 4852 4853 485.2 970.4000000000001 4852 1983-04-15 2024-10-11 01:20:52.000 1983-04-15 2024-10-11 01:20:52 +4853 4853 4854 485.3 970.6 4853 1983-04-16 2024-10-11 01:20:53.000 1983-04-16 2024-10-11 01:20:53 +4854 4854 4855 485.4 970.8000000000001 4854 1983-04-17 2024-10-11 01:20:54.000 1983-04-17 2024-10-11 01:20:54 +4855 4855 4856 485.5 971 4855 1983-04-18 2024-10-11 01:20:55.000 1983-04-18 2024-10-11 01:20:55 +4856 4856 4857 485.6 971.2 4856 1983-04-19 2024-10-11 01:20:56.000 1983-04-19 2024-10-11 01:20:56 +4857 4857 4858 485.7 971.4000000000001 4857 1983-04-20 2024-10-11 01:20:57.000 1983-04-20 2024-10-11 01:20:57 +4858 4858 4859 485.8 971.6 4858 1983-04-21 2024-10-11 01:20:58.000 1983-04-21 2024-10-11 01:20:58 +4859 4859 4860 485.9 971.8000000000001 4859 1983-04-22 2024-10-11 01:20:59.000 1983-04-22 2024-10-11 01:20:59 +4860 4860 4861 486 972 4860 1983-04-23 2024-10-11 01:21:00.000 1983-04-23 2024-10-11 01:21:00 +4861 4861 4862 486.1 972.2 4861 1983-04-24 2024-10-11 01:21:01.000 1983-04-24 2024-10-11 01:21:01 +4862 4862 4863 486.2 972.4000000000001 4862 1983-04-25 2024-10-11 01:21:02.000 1983-04-25 2024-10-11 01:21:02 +4863 4863 4864 486.3 972.6 4863 1983-04-26 2024-10-11 01:21:03.000 1983-04-26 2024-10-11 01:21:03 +4864 4864 4865 486.4 972.8000000000001 4864 1983-04-27 2024-10-11 01:21:04.000 1983-04-27 2024-10-11 01:21:04 +4865 4865 4866 486.5 973 4865 1983-04-28 2024-10-11 01:21:05.000 1983-04-28 2024-10-11 01:21:05 +4866 4866 4867 486.6 973.2 4866 1983-04-29 2024-10-11 01:21:06.000 1983-04-29 2024-10-11 01:21:06 +4867 4867 4868 486.7 973.4000000000001 4867 1983-04-30 2024-10-11 01:21:07.000 1983-04-30 2024-10-11 01:21:07 +4868 4868 4869 486.8 973.6 4868 1983-05-01 2024-10-11 01:21:08.000 1983-05-01 2024-10-11 01:21:08 +4869 4869 4870 486.9 973.8000000000001 4869 1983-05-02 2024-10-11 01:21:09.000 1983-05-02 2024-10-11 01:21:09 +4870 4870 4871 487 974 4870 1983-05-03 2024-10-11 01:21:10.000 1983-05-03 2024-10-11 01:21:10 +4871 4871 4872 487.1 974.2 4871 1983-05-04 2024-10-11 01:21:11.000 1983-05-04 2024-10-11 01:21:11 +4872 4872 4873 487.2 974.4000000000001 4872 1983-05-05 2024-10-11 01:21:12.000 1983-05-05 2024-10-11 01:21:12 +4873 4873 4874 487.3 974.6 4873 1983-05-06 2024-10-11 01:21:13.000 1983-05-06 2024-10-11 01:21:13 +4874 4874 4875 487.4 974.8000000000001 4874 1983-05-07 2024-10-11 01:21:14.000 1983-05-07 2024-10-11 01:21:14 +4875 4875 4876 487.5 975 4875 1983-05-08 2024-10-11 01:21:15.000 1983-05-08 2024-10-11 01:21:15 +4876 4876 4877 487.6 975.2 4876 1983-05-09 2024-10-11 01:21:16.000 1983-05-09 2024-10-11 01:21:16 +4877 4877 4878 487.7 975.4000000000001 4877 1983-05-10 2024-10-11 01:21:17.000 1983-05-10 2024-10-11 01:21:17 +4878 4878 4879 487.8 975.6 4878 1983-05-11 2024-10-11 01:21:18.000 1983-05-11 2024-10-11 01:21:18 +4879 4879 4880 487.9 975.8000000000001 4879 1983-05-12 2024-10-11 01:21:19.000 1983-05-12 2024-10-11 01:21:19 +4880 4880 4881 488 976 4880 1983-05-13 2024-10-11 01:21:20.000 1983-05-13 2024-10-11 01:21:20 +4881 4881 4882 488.1 976.2 4881 1983-05-14 2024-10-11 01:21:21.000 1983-05-14 2024-10-11 01:21:21 +4882 4882 4883 488.2 976.4000000000001 4882 1983-05-15 2024-10-11 01:21:22.000 1983-05-15 2024-10-11 01:21:22 +4883 4883 4884 488.3 976.6 4883 1983-05-16 2024-10-11 01:21:23.000 1983-05-16 2024-10-11 01:21:23 +4884 4884 4885 488.4 976.8000000000001 4884 1983-05-17 2024-10-11 01:21:24.000 1983-05-17 2024-10-11 01:21:24 +4885 4885 4886 488.5 977 4885 1983-05-18 2024-10-11 01:21:25.000 1983-05-18 2024-10-11 01:21:25 +4886 4886 4887 488.6 977.2 4886 1983-05-19 2024-10-11 01:21:26.000 1983-05-19 2024-10-11 01:21:26 +4887 4887 4888 488.7 977.4000000000001 4887 1983-05-20 2024-10-11 01:21:27.000 1983-05-20 2024-10-11 01:21:27 +4888 4888 4889 488.8 977.6 4888 1983-05-21 2024-10-11 01:21:28.000 1983-05-21 2024-10-11 01:21:28 +4889 4889 4890 488.9 977.8000000000001 4889 1983-05-22 2024-10-11 01:21:29.000 1983-05-22 2024-10-11 01:21:29 +4890 4890 4891 489 978 4890 1983-05-23 2024-10-11 01:21:30.000 1983-05-23 2024-10-11 01:21:30 +4891 4891 4892 489.1 978.2 4891 1983-05-24 2024-10-11 01:21:31.000 1983-05-24 2024-10-11 01:21:31 +4892 4892 4893 489.2 978.4000000000001 4892 1983-05-25 2024-10-11 01:21:32.000 1983-05-25 2024-10-11 01:21:32 +4893 4893 4894 489.3 978.6 4893 1983-05-26 2024-10-11 01:21:33.000 1983-05-26 2024-10-11 01:21:33 +4894 4894 4895 489.4 978.8000000000001 4894 1983-05-27 2024-10-11 01:21:34.000 1983-05-27 2024-10-11 01:21:34 +4895 4895 4896 489.5 979 4895 1983-05-28 2024-10-11 01:21:35.000 1983-05-28 2024-10-11 01:21:35 +4896 4896 4897 489.6 979.2 4896 1983-05-29 2024-10-11 01:21:36.000 1983-05-29 2024-10-11 01:21:36 +4897 4897 4898 489.7 979.4000000000001 4897 1983-05-30 2024-10-11 01:21:37.000 1983-05-30 2024-10-11 01:21:37 +4898 4898 4899 489.8 979.6 4898 1983-05-31 2024-10-11 01:21:38.000 1983-05-31 2024-10-11 01:21:38 +4899 4899 4900 489.9 979.8000000000001 4899 1983-06-01 2024-10-11 01:21:39.000 1983-06-01 2024-10-11 01:21:39 +4900 4900 4901 490 980 4900 1983-06-02 2024-10-11 01:21:40.000 1983-06-02 2024-10-11 01:21:40 +4901 4901 4902 490.1 980.2 4901 1983-06-03 2024-10-11 01:21:41.000 1983-06-03 2024-10-11 01:21:41 +4902 4902 4903 490.2 980.4000000000001 4902 1983-06-04 2024-10-11 01:21:42.000 1983-06-04 2024-10-11 01:21:42 +4903 4903 4904 490.3 980.6 4903 1983-06-05 2024-10-11 01:21:43.000 1983-06-05 2024-10-11 01:21:43 +4904 4904 4905 490.4 980.8000000000001 4904 1983-06-06 2024-10-11 01:21:44.000 1983-06-06 2024-10-11 01:21:44 +4905 4905 4906 490.5 981 4905 1983-06-07 2024-10-11 01:21:45.000 1983-06-07 2024-10-11 01:21:45 +4906 4906 4907 490.6 981.2 4906 1983-06-08 2024-10-11 01:21:46.000 1983-06-08 2024-10-11 01:21:46 +4907 4907 4908 490.7 981.4000000000001 4907 1983-06-09 2024-10-11 01:21:47.000 1983-06-09 2024-10-11 01:21:47 +4908 4908 4909 490.8 981.6 4908 1983-06-10 2024-10-11 01:21:48.000 1983-06-10 2024-10-11 01:21:48 +4909 4909 4910 490.9 981.8000000000001 4909 1983-06-11 2024-10-11 01:21:49.000 1983-06-11 2024-10-11 01:21:49 +4910 4910 4911 491 982 4910 1983-06-12 2024-10-11 01:21:50.000 1983-06-12 2024-10-11 01:21:50 +4911 4911 4912 491.1 982.2 4911 1983-06-13 2024-10-11 01:21:51.000 1983-06-13 2024-10-11 01:21:51 +4912 4912 4913 491.2 982.4000000000001 4912 1983-06-14 2024-10-11 01:21:52.000 1983-06-14 2024-10-11 01:21:52 +4913 4913 4914 491.3 982.6 4913 1983-06-15 2024-10-11 01:21:53.000 1983-06-15 2024-10-11 01:21:53 +4914 4914 4915 491.4 982.8000000000001 4914 1983-06-16 2024-10-11 01:21:54.000 1983-06-16 2024-10-11 01:21:54 +4915 4915 4916 491.5 983 4915 1983-06-17 2024-10-11 01:21:55.000 1983-06-17 2024-10-11 01:21:55 +4916 4916 4917 491.6 983.2 4916 1983-06-18 2024-10-11 01:21:56.000 1983-06-18 2024-10-11 01:21:56 +4917 4917 4918 491.7 983.4000000000001 4917 1983-06-19 2024-10-11 01:21:57.000 1983-06-19 2024-10-11 01:21:57 +4918 4918 4919 491.8 983.6 4918 1983-06-20 2024-10-11 01:21:58.000 1983-06-20 2024-10-11 01:21:58 +4919 4919 4920 491.9 983.8000000000001 4919 1983-06-21 2024-10-11 01:21:59.000 1983-06-21 2024-10-11 01:21:59 +4920 4920 4921 492 984 4920 1983-06-22 2024-10-11 01:22:00.000 1983-06-22 2024-10-11 01:22:00 +4921 4921 4922 492.1 984.2 4921 1983-06-23 2024-10-11 01:22:01.000 1983-06-23 2024-10-11 01:22:01 +4922 4922 4923 492.2 984.4000000000001 4922 1983-06-24 2024-10-11 01:22:02.000 1983-06-24 2024-10-11 01:22:02 +4923 4923 4924 492.3 984.6 4923 1983-06-25 2024-10-11 01:22:03.000 1983-06-25 2024-10-11 01:22:03 +4924 4924 4925 492.4 984.8000000000001 4924 1983-06-26 2024-10-11 01:22:04.000 1983-06-26 2024-10-11 01:22:04 +4925 4925 4926 492.5 985 4925 1983-06-27 2024-10-11 01:22:05.000 1983-06-27 2024-10-11 01:22:05 +4926 4926 4927 492.6 985.2 4926 1983-06-28 2024-10-11 01:22:06.000 1983-06-28 2024-10-11 01:22:06 +4927 4927 4928 492.7 985.4000000000001 4927 1983-06-29 2024-10-11 01:22:07.000 1983-06-29 2024-10-11 01:22:07 +4928 4928 4929 492.8 985.6 4928 1983-06-30 2024-10-11 01:22:08.000 1983-06-30 2024-10-11 01:22:08 +4929 4929 4930 492.9 985.8000000000001 4929 1983-07-01 2024-10-11 01:22:09.000 1983-07-01 2024-10-11 01:22:09 +4930 4930 4931 493 986 4930 1983-07-02 2024-10-11 01:22:10.000 1983-07-02 2024-10-11 01:22:10 +4931 4931 4932 493.1 986.2 4931 1983-07-03 2024-10-11 01:22:11.000 1983-07-03 2024-10-11 01:22:11 +4932 4932 4933 493.2 986.4000000000001 4932 1983-07-04 2024-10-11 01:22:12.000 1983-07-04 2024-10-11 01:22:12 +4933 4933 4934 493.3 986.6 4933 1983-07-05 2024-10-11 01:22:13.000 1983-07-05 2024-10-11 01:22:13 +4934 4934 4935 493.4 986.8000000000001 4934 1983-07-06 2024-10-11 01:22:14.000 1983-07-06 2024-10-11 01:22:14 +4935 4935 4936 493.5 987 4935 1983-07-07 2024-10-11 01:22:15.000 1983-07-07 2024-10-11 01:22:15 +4936 4936 4937 493.6 987.2 4936 1983-07-08 2024-10-11 01:22:16.000 1983-07-08 2024-10-11 01:22:16 +4937 4937 4938 493.7 987.4000000000001 4937 1983-07-09 2024-10-11 01:22:17.000 1983-07-09 2024-10-11 01:22:17 +4938 4938 4939 493.8 987.6 4938 1983-07-10 2024-10-11 01:22:18.000 1983-07-10 2024-10-11 01:22:18 +4939 4939 4940 493.9 987.8000000000001 4939 1983-07-11 2024-10-11 01:22:19.000 1983-07-11 2024-10-11 01:22:19 +4940 4940 4941 494 988 4940 1983-07-12 2024-10-11 01:22:20.000 1983-07-12 2024-10-11 01:22:20 +4941 4941 4942 494.1 988.2 4941 1983-07-13 2024-10-11 01:22:21.000 1983-07-13 2024-10-11 01:22:21 +4942 4942 4943 494.2 988.4000000000001 4942 1983-07-14 2024-10-11 01:22:22.000 1983-07-14 2024-10-11 01:22:22 +4943 4943 4944 494.3 988.6 4943 1983-07-15 2024-10-11 01:22:23.000 1983-07-15 2024-10-11 01:22:23 +4944 4944 4945 494.4 988.8000000000001 4944 1983-07-16 2024-10-11 01:22:24.000 1983-07-16 2024-10-11 01:22:24 +4945 4945 4946 494.5 989 4945 1983-07-17 2024-10-11 01:22:25.000 1983-07-17 2024-10-11 01:22:25 +4946 4946 4947 494.6 989.2 4946 1983-07-18 2024-10-11 01:22:26.000 1983-07-18 2024-10-11 01:22:26 +4947 4947 4948 494.7 989.4000000000001 4947 1983-07-19 2024-10-11 01:22:27.000 1983-07-19 2024-10-11 01:22:27 +4948 4948 4949 494.8 989.6 4948 1983-07-20 2024-10-11 01:22:28.000 1983-07-20 2024-10-11 01:22:28 +4949 4949 4950 494.9 989.8000000000001 4949 1983-07-21 2024-10-11 01:22:29.000 1983-07-21 2024-10-11 01:22:29 +4950 4950 4951 495 990 4950 1983-07-22 2024-10-11 01:22:30.000 1983-07-22 2024-10-11 01:22:30 +4951 4951 4952 495.1 990.2 4951 1983-07-23 2024-10-11 01:22:31.000 1983-07-23 2024-10-11 01:22:31 +4952 4952 4953 495.2 990.4000000000001 4952 1983-07-24 2024-10-11 01:22:32.000 1983-07-24 2024-10-11 01:22:32 +4953 4953 4954 495.3 990.6 4953 1983-07-25 2024-10-11 01:22:33.000 1983-07-25 2024-10-11 01:22:33 +4954 4954 4955 495.4 990.8000000000001 4954 1983-07-26 2024-10-11 01:22:34.000 1983-07-26 2024-10-11 01:22:34 +4955 4955 4956 495.5 991 4955 1983-07-27 2024-10-11 01:22:35.000 1983-07-27 2024-10-11 01:22:35 +4956 4956 4957 495.6 991.2 4956 1983-07-28 2024-10-11 01:22:36.000 1983-07-28 2024-10-11 01:22:36 +4957 4957 4958 495.7 991.4000000000001 4957 1983-07-29 2024-10-11 01:22:37.000 1983-07-29 2024-10-11 01:22:37 +4958 4958 4959 495.8 991.6 4958 1983-07-30 2024-10-11 01:22:38.000 1983-07-30 2024-10-11 01:22:38 +4959 4959 4960 495.9 991.8000000000001 4959 1983-07-31 2024-10-11 01:22:39.000 1983-07-31 2024-10-11 01:22:39 +4960 4960 4961 496 992 4960 1983-08-01 2024-10-11 01:22:40.000 1983-08-01 2024-10-11 01:22:40 +4961 4961 4962 496.1 992.2 4961 1983-08-02 2024-10-11 01:22:41.000 1983-08-02 2024-10-11 01:22:41 +4962 4962 4963 496.2 992.4000000000001 4962 1983-08-03 2024-10-11 01:22:42.000 1983-08-03 2024-10-11 01:22:42 +4963 4963 4964 496.3 992.6 4963 1983-08-04 2024-10-11 01:22:43.000 1983-08-04 2024-10-11 01:22:43 +4964 4964 4965 496.4 992.8000000000001 4964 1983-08-05 2024-10-11 01:22:44.000 1983-08-05 2024-10-11 01:22:44 +4965 4965 4966 496.5 993 4965 1983-08-06 2024-10-11 01:22:45.000 1983-08-06 2024-10-11 01:22:45 +4966 4966 4967 496.6 993.2 4966 1983-08-07 2024-10-11 01:22:46.000 1983-08-07 2024-10-11 01:22:46 +4967 4967 4968 496.7 993.4000000000001 4967 1983-08-08 2024-10-11 01:22:47.000 1983-08-08 2024-10-11 01:22:47 +4968 4968 4969 496.8 993.6 4968 1983-08-09 2024-10-11 01:22:48.000 1983-08-09 2024-10-11 01:22:48 +4969 4969 4970 496.9 993.8000000000001 4969 1983-08-10 2024-10-11 01:22:49.000 1983-08-10 2024-10-11 01:22:49 +4970 4970 4971 497 994 4970 1983-08-11 2024-10-11 01:22:50.000 1983-08-11 2024-10-11 01:22:50 +4971 4971 4972 497.1 994.2 4971 1983-08-12 2024-10-11 01:22:51.000 1983-08-12 2024-10-11 01:22:51 +4972 4972 4973 497.2 994.4000000000001 4972 1983-08-13 2024-10-11 01:22:52.000 1983-08-13 2024-10-11 01:22:52 +4973 4973 4974 497.3 994.6 4973 1983-08-14 2024-10-11 01:22:53.000 1983-08-14 2024-10-11 01:22:53 +4974 4974 4975 497.4 994.8000000000001 4974 1983-08-15 2024-10-11 01:22:54.000 1983-08-15 2024-10-11 01:22:54 +4975 4975 4976 497.5 995 4975 1983-08-16 2024-10-11 01:22:55.000 1983-08-16 2024-10-11 01:22:55 +4976 4976 4977 497.6 995.2 4976 1983-08-17 2024-10-11 01:22:56.000 1983-08-17 2024-10-11 01:22:56 +4977 4977 4978 497.7 995.4000000000001 4977 1983-08-18 2024-10-11 01:22:57.000 1983-08-18 2024-10-11 01:22:57 +4978 4978 4979 497.8 995.6 4978 1983-08-19 2024-10-11 01:22:58.000 1983-08-19 2024-10-11 01:22:58 +4979 4979 4980 497.9 995.8000000000001 4979 1983-08-20 2024-10-11 01:22:59.000 1983-08-20 2024-10-11 01:22:59 +4980 4980 4981 498 996 4980 1983-08-21 2024-10-11 01:23:00.000 1983-08-21 2024-10-11 01:23:00 +4981 4981 4982 498.1 996.2 4981 1983-08-22 2024-10-11 01:23:01.000 1983-08-22 2024-10-11 01:23:01 +4982 4982 4983 498.2 996.4000000000001 4982 1983-08-23 2024-10-11 01:23:02.000 1983-08-23 2024-10-11 01:23:02 +4983 4983 4984 498.3 996.6 4983 1983-08-24 2024-10-11 01:23:03.000 1983-08-24 2024-10-11 01:23:03 +4984 4984 4985 498.4 996.8000000000001 4984 1983-08-25 2024-10-11 01:23:04.000 1983-08-25 2024-10-11 01:23:04 +4985 4985 4986 498.5 997 4985 1983-08-26 2024-10-11 01:23:05.000 1983-08-26 2024-10-11 01:23:05 +4986 4986 4987 498.6 997.2 4986 1983-08-27 2024-10-11 01:23:06.000 1983-08-27 2024-10-11 01:23:06 +4987 4987 4988 498.7 997.4000000000001 4987 1983-08-28 2024-10-11 01:23:07.000 1983-08-28 2024-10-11 01:23:07 +4988 4988 4989 498.8 997.6 4988 1983-08-29 2024-10-11 01:23:08.000 1983-08-29 2024-10-11 01:23:08 +4989 4989 4990 498.9 997.8000000000001 4989 1983-08-30 2024-10-11 01:23:09.000 1983-08-30 2024-10-11 01:23:09 +4990 4990 4991 499 998 4990 1983-08-31 2024-10-11 01:23:10.000 1983-08-31 2024-10-11 01:23:10 +4991 4991 4992 499.1 998.2 4991 1983-09-01 2024-10-11 01:23:11.000 1983-09-01 2024-10-11 01:23:11 +4992 4992 4993 499.2 998.4000000000001 4992 1983-09-02 2024-10-11 01:23:12.000 1983-09-02 2024-10-11 01:23:12 +4993 4993 4994 499.3 998.6 4993 1983-09-03 2024-10-11 01:23:13.000 1983-09-03 2024-10-11 01:23:13 +4994 4994 4995 499.4 998.8000000000001 4994 1983-09-04 2024-10-11 01:23:14.000 1983-09-04 2024-10-11 01:23:14 +4995 4995 4996 499.5 999 4995 1983-09-05 2024-10-11 01:23:15.000 1983-09-05 2024-10-11 01:23:15 +4996 4996 4997 499.6 999.2 4996 1983-09-06 2024-10-11 01:23:16.000 1983-09-06 2024-10-11 01:23:16 +4997 4997 4998 499.7 999.4000000000001 4997 1983-09-07 2024-10-11 01:23:17.000 1983-09-07 2024-10-11 01:23:17 +4998 4998 4999 499.8 999.6 4998 1983-09-08 2024-10-11 01:23:18.000 1983-09-08 2024-10-11 01:23:18 +4999 4999 5000 499.9 999.8000000000001 4999 1983-09-09 2024-10-11 01:23:19.000 1983-09-09 2024-10-11 01:23:19 +5000 5000 5001 500 1000 5000 1983-09-10 2024-10-11 01:23:20.000 1983-09-10 2024-10-11 01:23:20 +5001 5001 5002 500.1 1000.2 5001 1983-09-11 2024-10-11 01:23:21.000 1983-09-11 2024-10-11 01:23:21 +5002 5002 5003 500.2 1000.4000000000001 5002 1983-09-12 2024-10-11 01:23:22.000 1983-09-12 2024-10-11 01:23:22 +5003 5003 5004 500.3 1000.6 5003 1983-09-13 2024-10-11 01:23:23.000 1983-09-13 2024-10-11 01:23:23 +5004 5004 5005 500.4 1000.8000000000001 5004 1983-09-14 2024-10-11 01:23:24.000 1983-09-14 2024-10-11 01:23:24 +5005 5005 5006 500.5 1001 5005 1983-09-15 2024-10-11 01:23:25.000 1983-09-15 2024-10-11 01:23:25 +5006 5006 5007 500.6 1001.2 5006 1983-09-16 2024-10-11 01:23:26.000 1983-09-16 2024-10-11 01:23:26 +5007 5007 5008 500.7 1001.4000000000001 5007 1983-09-17 2024-10-11 01:23:27.000 1983-09-17 2024-10-11 01:23:27 +5008 5008 5009 500.8 1001.6 5008 1983-09-18 2024-10-11 01:23:28.000 1983-09-18 2024-10-11 01:23:28 +5009 5009 5010 500.9 1001.8000000000001 5009 1983-09-19 2024-10-11 01:23:29.000 1983-09-19 2024-10-11 01:23:29 +5010 5010 5011 501 1002 5010 1983-09-20 2024-10-11 01:23:30.000 1983-09-20 2024-10-11 01:23:30 +5011 5011 5012 501.1 1002.2 5011 1983-09-21 2024-10-11 01:23:31.000 1983-09-21 2024-10-11 01:23:31 +5012 5012 5013 501.2 1002.4000000000001 5012 1983-09-22 2024-10-11 01:23:32.000 1983-09-22 2024-10-11 01:23:32 +5013 5013 5014 501.3 1002.6 5013 1983-09-23 2024-10-11 01:23:33.000 1983-09-23 2024-10-11 01:23:33 +5014 5014 5015 501.4 1002.8000000000001 5014 1983-09-24 2024-10-11 01:23:34.000 1983-09-24 2024-10-11 01:23:34 +5015 5015 5016 501.5 1003 5015 1983-09-25 2024-10-11 01:23:35.000 1983-09-25 2024-10-11 01:23:35 +5016 5016 5017 501.6 1003.2 5016 1983-09-26 2024-10-11 01:23:36.000 1983-09-26 2024-10-11 01:23:36 +5017 5017 5018 501.7 1003.4000000000001 5017 1983-09-27 2024-10-11 01:23:37.000 1983-09-27 2024-10-11 01:23:37 +5018 5018 5019 501.8 1003.6 5018 1983-09-28 2024-10-11 01:23:38.000 1983-09-28 2024-10-11 01:23:38 +5019 5019 5020 501.9 1003.8000000000001 5019 1983-09-29 2024-10-11 01:23:39.000 1983-09-29 2024-10-11 01:23:39 +5020 5020 5021 502 1004 5020 1983-09-30 2024-10-11 01:23:40.000 1983-09-30 2024-10-11 01:23:40 +5021 5021 5022 502.1 1004.2 5021 1983-10-01 2024-10-11 01:23:41.000 1983-10-01 2024-10-11 01:23:41 +5022 5022 5023 502.2 1004.4000000000001 5022 1983-10-02 2024-10-11 01:23:42.000 1983-10-02 2024-10-11 01:23:42 +5023 5023 5024 502.3 1004.6 5023 1983-10-03 2024-10-11 01:23:43.000 1983-10-03 2024-10-11 01:23:43 +5024 5024 5025 502.4 1004.8000000000001 5024 1983-10-04 2024-10-11 01:23:44.000 1983-10-04 2024-10-11 01:23:44 +5025 5025 5026 502.5 1005 5025 1983-10-05 2024-10-11 01:23:45.000 1983-10-05 2024-10-11 01:23:45 +5026 5026 5027 502.6 1005.2 5026 1983-10-06 2024-10-11 01:23:46.000 1983-10-06 2024-10-11 01:23:46 +5027 5027 5028 502.7 1005.4000000000001 5027 1983-10-07 2024-10-11 01:23:47.000 1983-10-07 2024-10-11 01:23:47 +5028 5028 5029 502.8 1005.6 5028 1983-10-08 2024-10-11 01:23:48.000 1983-10-08 2024-10-11 01:23:48 +5029 5029 5030 502.9 1005.8000000000001 5029 1983-10-09 2024-10-11 01:23:49.000 1983-10-09 2024-10-11 01:23:49 +5030 5030 5031 503 1006 5030 1983-10-10 2024-10-11 01:23:50.000 1983-10-10 2024-10-11 01:23:50 +5031 5031 5032 503.1 1006.2 5031 1983-10-11 2024-10-11 01:23:51.000 1983-10-11 2024-10-11 01:23:51 +5032 5032 5033 503.2 1006.4000000000001 5032 1983-10-12 2024-10-11 01:23:52.000 1983-10-12 2024-10-11 01:23:52 +5033 5033 5034 503.3 1006.6 5033 1983-10-13 2024-10-11 01:23:53.000 1983-10-13 2024-10-11 01:23:53 +5034 5034 5035 503.4 1006.8000000000001 5034 1983-10-14 2024-10-11 01:23:54.000 1983-10-14 2024-10-11 01:23:54 +5035 5035 5036 503.5 1007 5035 1983-10-15 2024-10-11 01:23:55.000 1983-10-15 2024-10-11 01:23:55 +5036 5036 5037 503.6 1007.2 5036 1983-10-16 2024-10-11 01:23:56.000 1983-10-16 2024-10-11 01:23:56 +5037 5037 5038 503.7 1007.4000000000001 5037 1983-10-17 2024-10-11 01:23:57.000 1983-10-17 2024-10-11 01:23:57 +5038 5038 5039 503.8 1007.6 5038 1983-10-18 2024-10-11 01:23:58.000 1983-10-18 2024-10-11 01:23:58 +5039 5039 5040 503.9 1007.8000000000001 5039 1983-10-19 2024-10-11 01:23:59.000 1983-10-19 2024-10-11 01:23:59 +5040 5040 5041 504 1008 5040 1983-10-20 2024-10-11 01:24:00.000 1983-10-20 2024-10-11 01:24:00 +5041 5041 5042 504.1 1008.2 5041 1983-10-21 2024-10-11 01:24:01.000 1983-10-21 2024-10-11 01:24:01 +5042 5042 5043 504.2 1008.4000000000001 5042 1983-10-22 2024-10-11 01:24:02.000 1983-10-22 2024-10-11 01:24:02 +5043 5043 5044 504.3 1008.6 5043 1983-10-23 2024-10-11 01:24:03.000 1983-10-23 2024-10-11 01:24:03 +5044 5044 5045 504.4 1008.8000000000001 5044 1983-10-24 2024-10-11 01:24:04.000 1983-10-24 2024-10-11 01:24:04 +5045 5045 5046 504.5 1009 5045 1983-10-25 2024-10-11 01:24:05.000 1983-10-25 2024-10-11 01:24:05 +5046 5046 5047 504.6 1009.2 5046 1983-10-26 2024-10-11 01:24:06.000 1983-10-26 2024-10-11 01:24:06 +5047 5047 5048 504.7 1009.4000000000001 5047 1983-10-27 2024-10-11 01:24:07.000 1983-10-27 2024-10-11 01:24:07 +5048 5048 5049 504.8 1009.6 5048 1983-10-28 2024-10-11 01:24:08.000 1983-10-28 2024-10-11 01:24:08 +5049 5049 5050 504.9 1009.8000000000001 5049 1983-10-29 2024-10-11 01:24:09.000 1983-10-29 2024-10-11 01:24:09 +5050 5050 5051 505 1010 5050 1983-10-30 2024-10-11 01:24:10.000 1983-10-30 2024-10-11 01:24:10 +5051 5051 5052 505.1 1010.2 5051 1983-10-31 2024-10-11 01:24:11.000 1983-10-31 2024-10-11 01:24:11 +5052 5052 5053 505.2 1010.4000000000001 5052 1983-11-01 2024-10-11 01:24:12.000 1983-11-01 2024-10-11 01:24:12 +5053 5053 5054 505.3 1010.6 5053 1983-11-02 2024-10-11 01:24:13.000 1983-11-02 2024-10-11 01:24:13 +5054 5054 5055 505.4 1010.8000000000001 5054 1983-11-03 2024-10-11 01:24:14.000 1983-11-03 2024-10-11 01:24:14 +5055 5055 5056 505.5 1011 5055 1983-11-04 2024-10-11 01:24:15.000 1983-11-04 2024-10-11 01:24:15 +5056 5056 5057 505.6 1011.2 5056 1983-11-05 2024-10-11 01:24:16.000 1983-11-05 2024-10-11 01:24:16 +5057 5057 5058 505.7 1011.4000000000001 5057 1983-11-06 2024-10-11 01:24:17.000 1983-11-06 2024-10-11 01:24:17 +5058 5058 5059 505.8 1011.6 5058 1983-11-07 2024-10-11 01:24:18.000 1983-11-07 2024-10-11 01:24:18 +5059 5059 5060 505.9 1011.8000000000001 5059 1983-11-08 2024-10-11 01:24:19.000 1983-11-08 2024-10-11 01:24:19 +5060 5060 5061 506 1012 5060 1983-11-09 2024-10-11 01:24:20.000 1983-11-09 2024-10-11 01:24:20 +5061 5061 5062 506.1 1012.2 5061 1983-11-10 2024-10-11 01:24:21.000 1983-11-10 2024-10-11 01:24:21 +5062 5062 5063 506.2 1012.4000000000001 5062 1983-11-11 2024-10-11 01:24:22.000 1983-11-11 2024-10-11 01:24:22 +5063 5063 5064 506.3 1012.6 5063 1983-11-12 2024-10-11 01:24:23.000 1983-11-12 2024-10-11 01:24:23 +5064 5064 5065 506.4 1012.8000000000001 5064 1983-11-13 2024-10-11 01:24:24.000 1983-11-13 2024-10-11 01:24:24 +5065 5065 5066 506.5 1013 5065 1983-11-14 2024-10-11 01:24:25.000 1983-11-14 2024-10-11 01:24:25 +5066 5066 5067 506.6 1013.2 5066 1983-11-15 2024-10-11 01:24:26.000 1983-11-15 2024-10-11 01:24:26 +5067 5067 5068 506.7 1013.4000000000001 5067 1983-11-16 2024-10-11 01:24:27.000 1983-11-16 2024-10-11 01:24:27 +5068 5068 5069 506.8 1013.6 5068 1983-11-17 2024-10-11 01:24:28.000 1983-11-17 2024-10-11 01:24:28 +5069 5069 5070 506.9 1013.8000000000001 5069 1983-11-18 2024-10-11 01:24:29.000 1983-11-18 2024-10-11 01:24:29 +5070 5070 5071 507 1014 5070 1983-11-19 2024-10-11 01:24:30.000 1983-11-19 2024-10-11 01:24:30 +5071 5071 5072 507.1 1014.2 5071 1983-11-20 2024-10-11 01:24:31.000 1983-11-20 2024-10-11 01:24:31 +5072 5072 5073 507.2 1014.4000000000001 5072 1983-11-21 2024-10-11 01:24:32.000 1983-11-21 2024-10-11 01:24:32 +5073 5073 5074 507.3 1014.6 5073 1983-11-22 2024-10-11 01:24:33.000 1983-11-22 2024-10-11 01:24:33 +5074 5074 5075 507.4 1014.8000000000001 5074 1983-11-23 2024-10-11 01:24:34.000 1983-11-23 2024-10-11 01:24:34 +5075 5075 5076 507.5 1015 5075 1983-11-24 2024-10-11 01:24:35.000 1983-11-24 2024-10-11 01:24:35 +5076 5076 5077 507.6 1015.2 5076 1983-11-25 2024-10-11 01:24:36.000 1983-11-25 2024-10-11 01:24:36 +5077 5077 5078 507.7 1015.4000000000001 5077 1983-11-26 2024-10-11 01:24:37.000 1983-11-26 2024-10-11 01:24:37 +5078 5078 5079 507.8 1015.6 5078 1983-11-27 2024-10-11 01:24:38.000 1983-11-27 2024-10-11 01:24:38 +5079 5079 5080 507.9 1015.8000000000001 5079 1983-11-28 2024-10-11 01:24:39.000 1983-11-28 2024-10-11 01:24:39 +5080 5080 5081 508 1016 5080 1983-11-29 2024-10-11 01:24:40.000 1983-11-29 2024-10-11 01:24:40 +5081 5081 5082 508.1 1016.2 5081 1983-11-30 2024-10-11 01:24:41.000 1983-11-30 2024-10-11 01:24:41 +5082 5082 5083 508.2 1016.4000000000001 5082 1983-12-01 2024-10-11 01:24:42.000 1983-12-01 2024-10-11 01:24:42 +5083 5083 5084 508.3 1016.6 5083 1983-12-02 2024-10-11 01:24:43.000 1983-12-02 2024-10-11 01:24:43 +5084 5084 5085 508.4 1016.8000000000001 5084 1983-12-03 2024-10-11 01:24:44.000 1983-12-03 2024-10-11 01:24:44 +5085 5085 5086 508.5 1017 5085 1983-12-04 2024-10-11 01:24:45.000 1983-12-04 2024-10-11 01:24:45 +5086 5086 5087 508.6 1017.2 5086 1983-12-05 2024-10-11 01:24:46.000 1983-12-05 2024-10-11 01:24:46 +5087 5087 5088 508.7 1017.4000000000001 5087 1983-12-06 2024-10-11 01:24:47.000 1983-12-06 2024-10-11 01:24:47 +5088 5088 5089 508.8 1017.6 5088 1983-12-07 2024-10-11 01:24:48.000 1983-12-07 2024-10-11 01:24:48 +5089 5089 5090 508.9 1017.8000000000001 5089 1983-12-08 2024-10-11 01:24:49.000 1983-12-08 2024-10-11 01:24:49 +5090 5090 5091 509 1018 5090 1983-12-09 2024-10-11 01:24:50.000 1983-12-09 2024-10-11 01:24:50 +5091 5091 5092 509.1 1018.2 5091 1983-12-10 2024-10-11 01:24:51.000 1983-12-10 2024-10-11 01:24:51 +5092 5092 5093 509.2 1018.4000000000001 5092 1983-12-11 2024-10-11 01:24:52.000 1983-12-11 2024-10-11 01:24:52 +5093 5093 5094 509.3 1018.6 5093 1983-12-12 2024-10-11 01:24:53.000 1983-12-12 2024-10-11 01:24:53 +5094 5094 5095 509.4 1018.8000000000001 5094 1983-12-13 2024-10-11 01:24:54.000 1983-12-13 2024-10-11 01:24:54 +5095 5095 5096 509.5 1019 5095 1983-12-14 2024-10-11 01:24:55.000 1983-12-14 2024-10-11 01:24:55 +5096 5096 5097 509.6 1019.2 5096 1983-12-15 2024-10-11 01:24:56.000 1983-12-15 2024-10-11 01:24:56 +5097 5097 5098 509.7 1019.4000000000001 5097 1983-12-16 2024-10-11 01:24:57.000 1983-12-16 2024-10-11 01:24:57 +5098 5098 5099 509.8 1019.6 5098 1983-12-17 2024-10-11 01:24:58.000 1983-12-17 2024-10-11 01:24:58 +5099 5099 5100 509.9 1019.8000000000001 5099 1983-12-18 2024-10-11 01:24:59.000 1983-12-18 2024-10-11 01:24:59 +5100 5100 5101 510 1020 5100 1983-12-19 2024-10-11 01:25:00.000 1983-12-19 2024-10-11 01:25:00 +5101 5101 5102 510.1 1020.2 5101 1983-12-20 2024-10-11 01:25:01.000 1983-12-20 2024-10-11 01:25:01 +5102 5102 5103 510.2 1020.4000000000001 5102 1983-12-21 2024-10-11 01:25:02.000 1983-12-21 2024-10-11 01:25:02 +5103 5103 5104 510.3 1020.6 5103 1983-12-22 2024-10-11 01:25:03.000 1983-12-22 2024-10-11 01:25:03 +5104 5104 5105 510.4 1020.8000000000001 5104 1983-12-23 2024-10-11 01:25:04.000 1983-12-23 2024-10-11 01:25:04 +5105 5105 5106 510.5 1021 5105 1983-12-24 2024-10-11 01:25:05.000 1983-12-24 2024-10-11 01:25:05 +5106 5106 5107 510.6 1021.2 5106 1983-12-25 2024-10-11 01:25:06.000 1983-12-25 2024-10-11 01:25:06 +5107 5107 5108 510.7 1021.4000000000001 5107 1983-12-26 2024-10-11 01:25:07.000 1983-12-26 2024-10-11 01:25:07 +5108 5108 5109 510.8 1021.6 5108 1983-12-27 2024-10-11 01:25:08.000 1983-12-27 2024-10-11 01:25:08 +5109 5109 5110 510.9 1021.8000000000001 5109 1983-12-28 2024-10-11 01:25:09.000 1983-12-28 2024-10-11 01:25:09 +5110 5110 5111 511 1022 5110 1983-12-29 2024-10-11 01:25:10.000 1983-12-29 2024-10-11 01:25:10 +5111 5111 5112 511.1 1022.2 5111 1983-12-30 2024-10-11 01:25:11.000 1983-12-30 2024-10-11 01:25:11 +5112 5112 5113 511.2 1022.4000000000001 5112 1983-12-31 2024-10-11 01:25:12.000 1983-12-31 2024-10-11 01:25:12 +5113 5113 5114 511.3 1022.6 5113 1984-01-01 2024-10-11 01:25:13.000 1984-01-01 2024-10-11 01:25:13 +5114 5114 5115 511.4 1022.8000000000001 5114 1984-01-02 2024-10-11 01:25:14.000 1984-01-02 2024-10-11 01:25:14 +5115 5115 5116 511.5 1023 5115 1984-01-03 2024-10-11 01:25:15.000 1984-01-03 2024-10-11 01:25:15 +5116 5116 5117 511.6 1023.2 5116 1984-01-04 2024-10-11 01:25:16.000 1984-01-04 2024-10-11 01:25:16 +5117 5117 5118 511.7 1023.4000000000001 5117 1984-01-05 2024-10-11 01:25:17.000 1984-01-05 2024-10-11 01:25:17 +5118 5118 5119 511.8 1023.6 5118 1984-01-06 2024-10-11 01:25:18.000 1984-01-06 2024-10-11 01:25:18 +5119 5119 5120 511.9 1023.8000000000001 5119 1984-01-07 2024-10-11 01:25:19.000 1984-01-07 2024-10-11 01:25:19 +5120 5120 5121 512 1024 5120 1984-01-08 2024-10-11 01:25:20.000 1984-01-08 2024-10-11 01:25:20 +5121 5121 5122 512.1 1024.2 5121 1984-01-09 2024-10-11 01:25:21.000 1984-01-09 2024-10-11 01:25:21 +5122 5122 5123 512.2 1024.4 5122 1984-01-10 2024-10-11 01:25:22.000 1984-01-10 2024-10-11 01:25:22 +5123 5123 5124 512.3 1024.6000000000001 5123 1984-01-11 2024-10-11 01:25:23.000 1984-01-11 2024-10-11 01:25:23 +5124 5124 5125 512.4 1024.8 5124 1984-01-12 2024-10-11 01:25:24.000 1984-01-12 2024-10-11 01:25:24 +5125 5125 5126 512.5 1025 5125 1984-01-13 2024-10-11 01:25:25.000 1984-01-13 2024-10-11 01:25:25 +5126 5126 5127 512.6 1025.2 5126 1984-01-14 2024-10-11 01:25:26.000 1984-01-14 2024-10-11 01:25:26 +5127 5127 5128 512.7 1025.4 5127 1984-01-15 2024-10-11 01:25:27.000 1984-01-15 2024-10-11 01:25:27 +5128 5128 5129 512.8 1025.6000000000001 5128 1984-01-16 2024-10-11 01:25:28.000 1984-01-16 2024-10-11 01:25:28 +5129 5129 5130 512.9 1025.8 5129 1984-01-17 2024-10-11 01:25:29.000 1984-01-17 2024-10-11 01:25:29 +5130 5130 5131 513 1026 5130 1984-01-18 2024-10-11 01:25:30.000 1984-01-18 2024-10-11 01:25:30 +5131 5131 5132 513.1 1026.2 5131 1984-01-19 2024-10-11 01:25:31.000 1984-01-19 2024-10-11 01:25:31 +5132 5132 5133 513.2 1026.4 5132 1984-01-20 2024-10-11 01:25:32.000 1984-01-20 2024-10-11 01:25:32 +5133 5133 5134 513.3 1026.6000000000001 5133 1984-01-21 2024-10-11 01:25:33.000 1984-01-21 2024-10-11 01:25:33 +5134 5134 5135 513.4 1026.8 5134 1984-01-22 2024-10-11 01:25:34.000 1984-01-22 2024-10-11 01:25:34 +5135 5135 5136 513.5 1027 5135 1984-01-23 2024-10-11 01:25:35.000 1984-01-23 2024-10-11 01:25:35 +5136 5136 5137 513.6 1027.2 5136 1984-01-24 2024-10-11 01:25:36.000 1984-01-24 2024-10-11 01:25:36 +5137 5137 5138 513.7 1027.4 5137 1984-01-25 2024-10-11 01:25:37.000 1984-01-25 2024-10-11 01:25:37 +5138 5138 5139 513.8 1027.6000000000001 5138 1984-01-26 2024-10-11 01:25:38.000 1984-01-26 2024-10-11 01:25:38 +5139 5139 5140 513.9 1027.8 5139 1984-01-27 2024-10-11 01:25:39.000 1984-01-27 2024-10-11 01:25:39 +5140 5140 5141 514 1028 5140 1984-01-28 2024-10-11 01:25:40.000 1984-01-28 2024-10-11 01:25:40 +5141 5141 5142 514.1 1028.2 5141 1984-01-29 2024-10-11 01:25:41.000 1984-01-29 2024-10-11 01:25:41 +5142 5142 5143 514.2 1028.4 5142 1984-01-30 2024-10-11 01:25:42.000 1984-01-30 2024-10-11 01:25:42 +5143 5143 5144 514.3 1028.6000000000001 5143 1984-01-31 2024-10-11 01:25:43.000 1984-01-31 2024-10-11 01:25:43 +5144 5144 5145 514.4 1028.8 5144 1984-02-01 2024-10-11 01:25:44.000 1984-02-01 2024-10-11 01:25:44 +5145 5145 5146 514.5 1029 5145 1984-02-02 2024-10-11 01:25:45.000 1984-02-02 2024-10-11 01:25:45 +5146 5146 5147 514.6 1029.2 5146 1984-02-03 2024-10-11 01:25:46.000 1984-02-03 2024-10-11 01:25:46 +5147 5147 5148 514.7 1029.4 5147 1984-02-04 2024-10-11 01:25:47.000 1984-02-04 2024-10-11 01:25:47 +5148 5148 5149 514.8 1029.6000000000001 5148 1984-02-05 2024-10-11 01:25:48.000 1984-02-05 2024-10-11 01:25:48 +5149 5149 5150 514.9 1029.8 5149 1984-02-06 2024-10-11 01:25:49.000 1984-02-06 2024-10-11 01:25:49 +5150 5150 5151 515 1030 5150 1984-02-07 2024-10-11 01:25:50.000 1984-02-07 2024-10-11 01:25:50 +5151 5151 5152 515.1 1030.2 5151 1984-02-08 2024-10-11 01:25:51.000 1984-02-08 2024-10-11 01:25:51 +5152 5152 5153 515.2 1030.4 5152 1984-02-09 2024-10-11 01:25:52.000 1984-02-09 2024-10-11 01:25:52 +5153 5153 5154 515.3 1030.6000000000001 5153 1984-02-10 2024-10-11 01:25:53.000 1984-02-10 2024-10-11 01:25:53 +5154 5154 5155 515.4 1030.8 5154 1984-02-11 2024-10-11 01:25:54.000 1984-02-11 2024-10-11 01:25:54 +5155 5155 5156 515.5 1031 5155 1984-02-12 2024-10-11 01:25:55.000 1984-02-12 2024-10-11 01:25:55 +5156 5156 5157 515.6 1031.2 5156 1984-02-13 2024-10-11 01:25:56.000 1984-02-13 2024-10-11 01:25:56 +5157 5157 5158 515.7 1031.4 5157 1984-02-14 2024-10-11 01:25:57.000 1984-02-14 2024-10-11 01:25:57 +5158 5158 5159 515.8 1031.6000000000001 5158 1984-02-15 2024-10-11 01:25:58.000 1984-02-15 2024-10-11 01:25:58 +5159 5159 5160 515.9 1031.8 5159 1984-02-16 2024-10-11 01:25:59.000 1984-02-16 2024-10-11 01:25:59 +5160 5160 5161 516 1032 5160 1984-02-17 2024-10-11 01:26:00.000 1984-02-17 2024-10-11 01:26:00 +5161 5161 5162 516.1 1032.2 5161 1984-02-18 2024-10-11 01:26:01.000 1984-02-18 2024-10-11 01:26:01 +5162 5162 5163 516.2 1032.4 5162 1984-02-19 2024-10-11 01:26:02.000 1984-02-19 2024-10-11 01:26:02 +5163 5163 5164 516.3 1032.6000000000001 5163 1984-02-20 2024-10-11 01:26:03.000 1984-02-20 2024-10-11 01:26:03 +5164 5164 5165 516.4 1032.8 5164 1984-02-21 2024-10-11 01:26:04.000 1984-02-21 2024-10-11 01:26:04 +5165 5165 5166 516.5 1033 5165 1984-02-22 2024-10-11 01:26:05.000 1984-02-22 2024-10-11 01:26:05 +5166 5166 5167 516.6 1033.2 5166 1984-02-23 2024-10-11 01:26:06.000 1984-02-23 2024-10-11 01:26:06 +5167 5167 5168 516.7 1033.4 5167 1984-02-24 2024-10-11 01:26:07.000 1984-02-24 2024-10-11 01:26:07 +5168 5168 5169 516.8 1033.6000000000001 5168 1984-02-25 2024-10-11 01:26:08.000 1984-02-25 2024-10-11 01:26:08 +5169 5169 5170 516.9 1033.8 5169 1984-02-26 2024-10-11 01:26:09.000 1984-02-26 2024-10-11 01:26:09 +5170 5170 5171 517 1034 5170 1984-02-27 2024-10-11 01:26:10.000 1984-02-27 2024-10-11 01:26:10 +5171 5171 5172 517.1 1034.2 5171 1984-02-28 2024-10-11 01:26:11.000 1984-02-28 2024-10-11 01:26:11 +5172 5172 5173 517.2 1034.4 5172 1984-02-29 2024-10-11 01:26:12.000 1984-02-29 2024-10-11 01:26:12 +5173 5173 5174 517.3 1034.6000000000001 5173 1984-03-01 2024-10-11 01:26:13.000 1984-03-01 2024-10-11 01:26:13 +5174 5174 5175 517.4 1034.8 5174 1984-03-02 2024-10-11 01:26:14.000 1984-03-02 2024-10-11 01:26:14 +5175 5175 5176 517.5 1035 5175 1984-03-03 2024-10-11 01:26:15.000 1984-03-03 2024-10-11 01:26:15 +5176 5176 5177 517.6 1035.2 5176 1984-03-04 2024-10-11 01:26:16.000 1984-03-04 2024-10-11 01:26:16 +5177 5177 5178 517.7 1035.4 5177 1984-03-05 2024-10-11 01:26:17.000 1984-03-05 2024-10-11 01:26:17 +5178 5178 5179 517.8 1035.6000000000001 5178 1984-03-06 2024-10-11 01:26:18.000 1984-03-06 2024-10-11 01:26:18 +5179 5179 5180 517.9 1035.8 5179 1984-03-07 2024-10-11 01:26:19.000 1984-03-07 2024-10-11 01:26:19 +5180 5180 5181 518 1036 5180 1984-03-08 2024-10-11 01:26:20.000 1984-03-08 2024-10-11 01:26:20 +5181 5181 5182 518.1 1036.2 5181 1984-03-09 2024-10-11 01:26:21.000 1984-03-09 2024-10-11 01:26:21 +5182 5182 5183 518.2 1036.4 5182 1984-03-10 2024-10-11 01:26:22.000 1984-03-10 2024-10-11 01:26:22 +5183 5183 5184 518.3 1036.6000000000001 5183 1984-03-11 2024-10-11 01:26:23.000 1984-03-11 2024-10-11 01:26:23 +5184 5184 5185 518.4 1036.8 5184 1984-03-12 2024-10-11 01:26:24.000 1984-03-12 2024-10-11 01:26:24 +5185 5185 5186 518.5 1037 5185 1984-03-13 2024-10-11 01:26:25.000 1984-03-13 2024-10-11 01:26:25 +5186 5186 5187 518.6 1037.2 5186 1984-03-14 2024-10-11 01:26:26.000 1984-03-14 2024-10-11 01:26:26 +5187 5187 5188 518.7 1037.4 5187 1984-03-15 2024-10-11 01:26:27.000 1984-03-15 2024-10-11 01:26:27 +5188 5188 5189 518.8 1037.6000000000001 5188 1984-03-16 2024-10-11 01:26:28.000 1984-03-16 2024-10-11 01:26:28 +5189 5189 5190 518.9 1037.8 5189 1984-03-17 2024-10-11 01:26:29.000 1984-03-17 2024-10-11 01:26:29 +5190 5190 5191 519 1038 5190 1984-03-18 2024-10-11 01:26:30.000 1984-03-18 2024-10-11 01:26:30 +5191 5191 5192 519.1 1038.2 5191 1984-03-19 2024-10-11 01:26:31.000 1984-03-19 2024-10-11 01:26:31 +5192 5192 5193 519.2 1038.4 5192 1984-03-20 2024-10-11 01:26:32.000 1984-03-20 2024-10-11 01:26:32 +5193 5193 5194 519.3 1038.6000000000001 5193 1984-03-21 2024-10-11 01:26:33.000 1984-03-21 2024-10-11 01:26:33 +5194 5194 5195 519.4 1038.8 5194 1984-03-22 2024-10-11 01:26:34.000 1984-03-22 2024-10-11 01:26:34 +5195 5195 5196 519.5 1039 5195 1984-03-23 2024-10-11 01:26:35.000 1984-03-23 2024-10-11 01:26:35 +5196 5196 5197 519.6 1039.2 5196 1984-03-24 2024-10-11 01:26:36.000 1984-03-24 2024-10-11 01:26:36 +5197 5197 5198 519.7 1039.4 5197 1984-03-25 2024-10-11 01:26:37.000 1984-03-25 2024-10-11 01:26:37 +5198 5198 5199 519.8 1039.6000000000001 5198 1984-03-26 2024-10-11 01:26:38.000 1984-03-26 2024-10-11 01:26:38 +5199 5199 5200 519.9 1039.8 5199 1984-03-27 2024-10-11 01:26:39.000 1984-03-27 2024-10-11 01:26:39 +5200 5200 5201 520 1040 5200 1984-03-28 2024-10-11 01:26:40.000 1984-03-28 2024-10-11 01:26:40 +5201 5201 5202 520.1 1040.2 5201 1984-03-29 2024-10-11 01:26:41.000 1984-03-29 2024-10-11 01:26:41 +5202 5202 5203 520.2 1040.4 5202 1984-03-30 2024-10-11 01:26:42.000 1984-03-30 2024-10-11 01:26:42 +5203 5203 5204 520.3 1040.6000000000001 5203 1984-03-31 2024-10-11 01:26:43.000 1984-03-31 2024-10-11 01:26:43 +5204 5204 5205 520.4 1040.8 5204 1984-04-01 2024-10-11 01:26:44.000 1984-04-01 2024-10-11 01:26:44 +5205 5205 5206 520.5 1041 5205 1984-04-02 2024-10-11 01:26:45.000 1984-04-02 2024-10-11 01:26:45 +5206 5206 5207 520.6 1041.2 5206 1984-04-03 2024-10-11 01:26:46.000 1984-04-03 2024-10-11 01:26:46 +5207 5207 5208 520.7 1041.4 5207 1984-04-04 2024-10-11 01:26:47.000 1984-04-04 2024-10-11 01:26:47 +5208 5208 5209 520.8 1041.6000000000001 5208 1984-04-05 2024-10-11 01:26:48.000 1984-04-05 2024-10-11 01:26:48 +5209 5209 5210 520.9 1041.8 5209 1984-04-06 2024-10-11 01:26:49.000 1984-04-06 2024-10-11 01:26:49 +5210 5210 5211 521 1042 5210 1984-04-07 2024-10-11 01:26:50.000 1984-04-07 2024-10-11 01:26:50 +5211 5211 5212 521.1 1042.2 5211 1984-04-08 2024-10-11 01:26:51.000 1984-04-08 2024-10-11 01:26:51 +5212 5212 5213 521.2 1042.4 5212 1984-04-09 2024-10-11 01:26:52.000 1984-04-09 2024-10-11 01:26:52 +5213 5213 5214 521.3 1042.6000000000001 5213 1984-04-10 2024-10-11 01:26:53.000 1984-04-10 2024-10-11 01:26:53 +5214 5214 5215 521.4 1042.8 5214 1984-04-11 2024-10-11 01:26:54.000 1984-04-11 2024-10-11 01:26:54 +5215 5215 5216 521.5 1043 5215 1984-04-12 2024-10-11 01:26:55.000 1984-04-12 2024-10-11 01:26:55 +5216 5216 5217 521.6 1043.2 5216 1984-04-13 2024-10-11 01:26:56.000 1984-04-13 2024-10-11 01:26:56 +5217 5217 5218 521.7 1043.4 5217 1984-04-14 2024-10-11 01:26:57.000 1984-04-14 2024-10-11 01:26:57 +5218 5218 5219 521.8 1043.6000000000001 5218 1984-04-15 2024-10-11 01:26:58.000 1984-04-15 2024-10-11 01:26:58 +5219 5219 5220 521.9 1043.8 5219 1984-04-16 2024-10-11 01:26:59.000 1984-04-16 2024-10-11 01:26:59 +5220 5220 5221 522 1044 5220 1984-04-17 2024-10-11 01:27:00.000 1984-04-17 2024-10-11 01:27:00 +5221 5221 5222 522.1 1044.2 5221 1984-04-18 2024-10-11 01:27:01.000 1984-04-18 2024-10-11 01:27:01 +5222 5222 5223 522.2 1044.4 5222 1984-04-19 2024-10-11 01:27:02.000 1984-04-19 2024-10-11 01:27:02 +5223 5223 5224 522.3 1044.6000000000001 5223 1984-04-20 2024-10-11 01:27:03.000 1984-04-20 2024-10-11 01:27:03 +5224 5224 5225 522.4 1044.8 5224 1984-04-21 2024-10-11 01:27:04.000 1984-04-21 2024-10-11 01:27:04 +5225 5225 5226 522.5 1045 5225 1984-04-22 2024-10-11 01:27:05.000 1984-04-22 2024-10-11 01:27:05 +5226 5226 5227 522.6 1045.2 5226 1984-04-23 2024-10-11 01:27:06.000 1984-04-23 2024-10-11 01:27:06 +5227 5227 5228 522.7 1045.4 5227 1984-04-24 2024-10-11 01:27:07.000 1984-04-24 2024-10-11 01:27:07 +5228 5228 5229 522.8 1045.6000000000001 5228 1984-04-25 2024-10-11 01:27:08.000 1984-04-25 2024-10-11 01:27:08 +5229 5229 5230 522.9 1045.8 5229 1984-04-26 2024-10-11 01:27:09.000 1984-04-26 2024-10-11 01:27:09 +5230 5230 5231 523 1046 5230 1984-04-27 2024-10-11 01:27:10.000 1984-04-27 2024-10-11 01:27:10 +5231 5231 5232 523.1 1046.2 5231 1984-04-28 2024-10-11 01:27:11.000 1984-04-28 2024-10-11 01:27:11 +5232 5232 5233 523.2 1046.4 5232 1984-04-29 2024-10-11 01:27:12.000 1984-04-29 2024-10-11 01:27:12 +5233 5233 5234 523.3 1046.6000000000001 5233 1984-04-30 2024-10-11 01:27:13.000 1984-04-30 2024-10-11 01:27:13 +5234 5234 5235 523.4 1046.8 5234 1984-05-01 2024-10-11 01:27:14.000 1984-05-01 2024-10-11 01:27:14 +5235 5235 5236 523.5 1047 5235 1984-05-02 2024-10-11 01:27:15.000 1984-05-02 2024-10-11 01:27:15 +5236 5236 5237 523.6 1047.2 5236 1984-05-03 2024-10-11 01:27:16.000 1984-05-03 2024-10-11 01:27:16 +5237 5237 5238 523.7 1047.4 5237 1984-05-04 2024-10-11 01:27:17.000 1984-05-04 2024-10-11 01:27:17 +5238 5238 5239 523.8 1047.6000000000001 5238 1984-05-05 2024-10-11 01:27:18.000 1984-05-05 2024-10-11 01:27:18 +5239 5239 5240 523.9 1047.8 5239 1984-05-06 2024-10-11 01:27:19.000 1984-05-06 2024-10-11 01:27:19 +5240 5240 5241 524 1048 5240 1984-05-07 2024-10-11 01:27:20.000 1984-05-07 2024-10-11 01:27:20 +5241 5241 5242 524.1 1048.2 5241 1984-05-08 2024-10-11 01:27:21.000 1984-05-08 2024-10-11 01:27:21 +5242 5242 5243 524.2 1048.4 5242 1984-05-09 2024-10-11 01:27:22.000 1984-05-09 2024-10-11 01:27:22 +5243 5243 5244 524.3 1048.6000000000001 5243 1984-05-10 2024-10-11 01:27:23.000 1984-05-10 2024-10-11 01:27:23 +5244 5244 5245 524.4 1048.8 5244 1984-05-11 2024-10-11 01:27:24.000 1984-05-11 2024-10-11 01:27:24 +5245 5245 5246 524.5 1049 5245 1984-05-12 2024-10-11 01:27:25.000 1984-05-12 2024-10-11 01:27:25 +5246 5246 5247 524.6 1049.2 5246 1984-05-13 2024-10-11 01:27:26.000 1984-05-13 2024-10-11 01:27:26 +5247 5247 5248 524.7 1049.4 5247 1984-05-14 2024-10-11 01:27:27.000 1984-05-14 2024-10-11 01:27:27 +5248 5248 5249 524.8 1049.6000000000001 5248 1984-05-15 2024-10-11 01:27:28.000 1984-05-15 2024-10-11 01:27:28 +5249 5249 5250 524.9 1049.8 5249 1984-05-16 2024-10-11 01:27:29.000 1984-05-16 2024-10-11 01:27:29 +5250 5250 5251 525 1050 5250 1984-05-17 2024-10-11 01:27:30.000 1984-05-17 2024-10-11 01:27:30 +5251 5251 5252 525.1 1050.2 5251 1984-05-18 2024-10-11 01:27:31.000 1984-05-18 2024-10-11 01:27:31 +5252 5252 5253 525.2 1050.4 5252 1984-05-19 2024-10-11 01:27:32.000 1984-05-19 2024-10-11 01:27:32 +5253 5253 5254 525.3 1050.6000000000001 5253 1984-05-20 2024-10-11 01:27:33.000 1984-05-20 2024-10-11 01:27:33 +5254 5254 5255 525.4 1050.8 5254 1984-05-21 2024-10-11 01:27:34.000 1984-05-21 2024-10-11 01:27:34 +5255 5255 5256 525.5 1051 5255 1984-05-22 2024-10-11 01:27:35.000 1984-05-22 2024-10-11 01:27:35 +5256 5256 5257 525.6 1051.2 5256 1984-05-23 2024-10-11 01:27:36.000 1984-05-23 2024-10-11 01:27:36 +5257 5257 5258 525.7 1051.4 5257 1984-05-24 2024-10-11 01:27:37.000 1984-05-24 2024-10-11 01:27:37 +5258 5258 5259 525.8 1051.6000000000001 5258 1984-05-25 2024-10-11 01:27:38.000 1984-05-25 2024-10-11 01:27:38 +5259 5259 5260 525.9 1051.8 5259 1984-05-26 2024-10-11 01:27:39.000 1984-05-26 2024-10-11 01:27:39 +5260 5260 5261 526 1052 5260 1984-05-27 2024-10-11 01:27:40.000 1984-05-27 2024-10-11 01:27:40 +5261 5261 5262 526.1 1052.2 5261 1984-05-28 2024-10-11 01:27:41.000 1984-05-28 2024-10-11 01:27:41 +5262 5262 5263 526.2 1052.4 5262 1984-05-29 2024-10-11 01:27:42.000 1984-05-29 2024-10-11 01:27:42 +5263 5263 5264 526.3 1052.6000000000001 5263 1984-05-30 2024-10-11 01:27:43.000 1984-05-30 2024-10-11 01:27:43 +5264 5264 5265 526.4 1052.8 5264 1984-05-31 2024-10-11 01:27:44.000 1984-05-31 2024-10-11 01:27:44 +5265 5265 5266 526.5 1053 5265 1984-06-01 2024-10-11 01:27:45.000 1984-06-01 2024-10-11 01:27:45 +5266 5266 5267 526.6 1053.2 5266 1984-06-02 2024-10-11 01:27:46.000 1984-06-02 2024-10-11 01:27:46 +5267 5267 5268 526.7 1053.4 5267 1984-06-03 2024-10-11 01:27:47.000 1984-06-03 2024-10-11 01:27:47 +5268 5268 5269 526.8 1053.6000000000001 5268 1984-06-04 2024-10-11 01:27:48.000 1984-06-04 2024-10-11 01:27:48 +5269 5269 5270 526.9 1053.8 5269 1984-06-05 2024-10-11 01:27:49.000 1984-06-05 2024-10-11 01:27:49 +5270 5270 5271 527 1054 5270 1984-06-06 2024-10-11 01:27:50.000 1984-06-06 2024-10-11 01:27:50 +5271 5271 5272 527.1 1054.2 5271 1984-06-07 2024-10-11 01:27:51.000 1984-06-07 2024-10-11 01:27:51 +5272 5272 5273 527.2 1054.4 5272 1984-06-08 2024-10-11 01:27:52.000 1984-06-08 2024-10-11 01:27:52 +5273 5273 5274 527.3 1054.6000000000001 5273 1984-06-09 2024-10-11 01:27:53.000 1984-06-09 2024-10-11 01:27:53 +5274 5274 5275 527.4 1054.8 5274 1984-06-10 2024-10-11 01:27:54.000 1984-06-10 2024-10-11 01:27:54 +5275 5275 5276 527.5 1055 5275 1984-06-11 2024-10-11 01:27:55.000 1984-06-11 2024-10-11 01:27:55 +5276 5276 5277 527.6 1055.2 5276 1984-06-12 2024-10-11 01:27:56.000 1984-06-12 2024-10-11 01:27:56 +5277 5277 5278 527.7 1055.4 5277 1984-06-13 2024-10-11 01:27:57.000 1984-06-13 2024-10-11 01:27:57 +5278 5278 5279 527.8 1055.6000000000001 5278 1984-06-14 2024-10-11 01:27:58.000 1984-06-14 2024-10-11 01:27:58 +5279 5279 5280 527.9 1055.8 5279 1984-06-15 2024-10-11 01:27:59.000 1984-06-15 2024-10-11 01:27:59 +5280 5280 5281 528 1056 5280 1984-06-16 2024-10-11 01:28:00.000 1984-06-16 2024-10-11 01:28:00 +5281 5281 5282 528.1 1056.2 5281 1984-06-17 2024-10-11 01:28:01.000 1984-06-17 2024-10-11 01:28:01 +5282 5282 5283 528.2 1056.4 5282 1984-06-18 2024-10-11 01:28:02.000 1984-06-18 2024-10-11 01:28:02 +5283 5283 5284 528.3 1056.6000000000001 5283 1984-06-19 2024-10-11 01:28:03.000 1984-06-19 2024-10-11 01:28:03 +5284 5284 5285 528.4 1056.8 5284 1984-06-20 2024-10-11 01:28:04.000 1984-06-20 2024-10-11 01:28:04 +5285 5285 5286 528.5 1057 5285 1984-06-21 2024-10-11 01:28:05.000 1984-06-21 2024-10-11 01:28:05 +5286 5286 5287 528.6 1057.2 5286 1984-06-22 2024-10-11 01:28:06.000 1984-06-22 2024-10-11 01:28:06 +5287 5287 5288 528.7 1057.4 5287 1984-06-23 2024-10-11 01:28:07.000 1984-06-23 2024-10-11 01:28:07 +5288 5288 5289 528.8 1057.6000000000001 5288 1984-06-24 2024-10-11 01:28:08.000 1984-06-24 2024-10-11 01:28:08 +5289 5289 5290 528.9 1057.8 5289 1984-06-25 2024-10-11 01:28:09.000 1984-06-25 2024-10-11 01:28:09 +5290 5290 5291 529 1058 5290 1984-06-26 2024-10-11 01:28:10.000 1984-06-26 2024-10-11 01:28:10 +5291 5291 5292 529.1 1058.2 5291 1984-06-27 2024-10-11 01:28:11.000 1984-06-27 2024-10-11 01:28:11 +5292 5292 5293 529.2 1058.4 5292 1984-06-28 2024-10-11 01:28:12.000 1984-06-28 2024-10-11 01:28:12 +5293 5293 5294 529.3 1058.6000000000001 5293 1984-06-29 2024-10-11 01:28:13.000 1984-06-29 2024-10-11 01:28:13 +5294 5294 5295 529.4 1058.8 5294 1984-06-30 2024-10-11 01:28:14.000 1984-06-30 2024-10-11 01:28:14 +5295 5295 5296 529.5 1059 5295 1984-07-01 2024-10-11 01:28:15.000 1984-07-01 2024-10-11 01:28:15 +5296 5296 5297 529.6 1059.2 5296 1984-07-02 2024-10-11 01:28:16.000 1984-07-02 2024-10-11 01:28:16 +5297 5297 5298 529.7 1059.4 5297 1984-07-03 2024-10-11 01:28:17.000 1984-07-03 2024-10-11 01:28:17 +5298 5298 5299 529.8 1059.6000000000001 5298 1984-07-04 2024-10-11 01:28:18.000 1984-07-04 2024-10-11 01:28:18 +5299 5299 5300 529.9 1059.8 5299 1984-07-05 2024-10-11 01:28:19.000 1984-07-05 2024-10-11 01:28:19 +5300 5300 5301 530 1060 5300 1984-07-06 2024-10-11 01:28:20.000 1984-07-06 2024-10-11 01:28:20 +5301 5301 5302 530.1 1060.2 5301 1984-07-07 2024-10-11 01:28:21.000 1984-07-07 2024-10-11 01:28:21 +5302 5302 5303 530.2 1060.4 5302 1984-07-08 2024-10-11 01:28:22.000 1984-07-08 2024-10-11 01:28:22 +5303 5303 5304 530.3 1060.6000000000001 5303 1984-07-09 2024-10-11 01:28:23.000 1984-07-09 2024-10-11 01:28:23 +5304 5304 5305 530.4 1060.8 5304 1984-07-10 2024-10-11 01:28:24.000 1984-07-10 2024-10-11 01:28:24 +5305 5305 5306 530.5 1061 5305 1984-07-11 2024-10-11 01:28:25.000 1984-07-11 2024-10-11 01:28:25 +5306 5306 5307 530.6 1061.2 5306 1984-07-12 2024-10-11 01:28:26.000 1984-07-12 2024-10-11 01:28:26 +5307 5307 5308 530.7 1061.4 5307 1984-07-13 2024-10-11 01:28:27.000 1984-07-13 2024-10-11 01:28:27 +5308 5308 5309 530.8 1061.6000000000001 5308 1984-07-14 2024-10-11 01:28:28.000 1984-07-14 2024-10-11 01:28:28 +5309 5309 5310 530.9 1061.8 5309 1984-07-15 2024-10-11 01:28:29.000 1984-07-15 2024-10-11 01:28:29 +5310 5310 5311 531 1062 5310 1984-07-16 2024-10-11 01:28:30.000 1984-07-16 2024-10-11 01:28:30 +5311 5311 5312 531.1 1062.2 5311 1984-07-17 2024-10-11 01:28:31.000 1984-07-17 2024-10-11 01:28:31 +5312 5312 5313 531.2 1062.4 5312 1984-07-18 2024-10-11 01:28:32.000 1984-07-18 2024-10-11 01:28:32 +5313 5313 5314 531.3 1062.6000000000001 5313 1984-07-19 2024-10-11 01:28:33.000 1984-07-19 2024-10-11 01:28:33 +5314 5314 5315 531.4 1062.8 5314 1984-07-20 2024-10-11 01:28:34.000 1984-07-20 2024-10-11 01:28:34 +5315 5315 5316 531.5 1063 5315 1984-07-21 2024-10-11 01:28:35.000 1984-07-21 2024-10-11 01:28:35 +5316 5316 5317 531.6 1063.2 5316 1984-07-22 2024-10-11 01:28:36.000 1984-07-22 2024-10-11 01:28:36 +5317 5317 5318 531.7 1063.4 5317 1984-07-23 2024-10-11 01:28:37.000 1984-07-23 2024-10-11 01:28:37 +5318 5318 5319 531.8 1063.6000000000001 5318 1984-07-24 2024-10-11 01:28:38.000 1984-07-24 2024-10-11 01:28:38 +5319 5319 5320 531.9 1063.8 5319 1984-07-25 2024-10-11 01:28:39.000 1984-07-25 2024-10-11 01:28:39 +5320 5320 5321 532 1064 5320 1984-07-26 2024-10-11 01:28:40.000 1984-07-26 2024-10-11 01:28:40 +5321 5321 5322 532.1 1064.2 5321 1984-07-27 2024-10-11 01:28:41.000 1984-07-27 2024-10-11 01:28:41 +5322 5322 5323 532.2 1064.4 5322 1984-07-28 2024-10-11 01:28:42.000 1984-07-28 2024-10-11 01:28:42 +5323 5323 5324 532.3 1064.6000000000001 5323 1984-07-29 2024-10-11 01:28:43.000 1984-07-29 2024-10-11 01:28:43 +5324 5324 5325 532.4 1064.8 5324 1984-07-30 2024-10-11 01:28:44.000 1984-07-30 2024-10-11 01:28:44 +5325 5325 5326 532.5 1065 5325 1984-07-31 2024-10-11 01:28:45.000 1984-07-31 2024-10-11 01:28:45 +5326 5326 5327 532.6 1065.2 5326 1984-08-01 2024-10-11 01:28:46.000 1984-08-01 2024-10-11 01:28:46 +5327 5327 5328 532.7 1065.4 5327 1984-08-02 2024-10-11 01:28:47.000 1984-08-02 2024-10-11 01:28:47 +5328 5328 5329 532.8 1065.6000000000001 5328 1984-08-03 2024-10-11 01:28:48.000 1984-08-03 2024-10-11 01:28:48 +5329 5329 5330 532.9 1065.8 5329 1984-08-04 2024-10-11 01:28:49.000 1984-08-04 2024-10-11 01:28:49 +5330 5330 5331 533 1066 5330 1984-08-05 2024-10-11 01:28:50.000 1984-08-05 2024-10-11 01:28:50 +5331 5331 5332 533.1 1066.2 5331 1984-08-06 2024-10-11 01:28:51.000 1984-08-06 2024-10-11 01:28:51 +5332 5332 5333 533.2 1066.4 5332 1984-08-07 2024-10-11 01:28:52.000 1984-08-07 2024-10-11 01:28:52 +5333 5333 5334 533.3 1066.6000000000001 5333 1984-08-08 2024-10-11 01:28:53.000 1984-08-08 2024-10-11 01:28:53 +5334 5334 5335 533.4 1066.8 5334 1984-08-09 2024-10-11 01:28:54.000 1984-08-09 2024-10-11 01:28:54 +5335 5335 5336 533.5 1067 5335 1984-08-10 2024-10-11 01:28:55.000 1984-08-10 2024-10-11 01:28:55 +5336 5336 5337 533.6 1067.2 5336 1984-08-11 2024-10-11 01:28:56.000 1984-08-11 2024-10-11 01:28:56 +5337 5337 5338 533.7 1067.4 5337 1984-08-12 2024-10-11 01:28:57.000 1984-08-12 2024-10-11 01:28:57 +5338 5338 5339 533.8 1067.6000000000001 5338 1984-08-13 2024-10-11 01:28:58.000 1984-08-13 2024-10-11 01:28:58 +5339 5339 5340 533.9 1067.8 5339 1984-08-14 2024-10-11 01:28:59.000 1984-08-14 2024-10-11 01:28:59 +5340 5340 5341 534 1068 5340 1984-08-15 2024-10-11 01:29:00.000 1984-08-15 2024-10-11 01:29:00 +5341 5341 5342 534.1 1068.2 5341 1984-08-16 2024-10-11 01:29:01.000 1984-08-16 2024-10-11 01:29:01 +5342 5342 5343 534.2 1068.4 5342 1984-08-17 2024-10-11 01:29:02.000 1984-08-17 2024-10-11 01:29:02 +5343 5343 5344 534.3 1068.6000000000001 5343 1984-08-18 2024-10-11 01:29:03.000 1984-08-18 2024-10-11 01:29:03 +5344 5344 5345 534.4 1068.8 5344 1984-08-19 2024-10-11 01:29:04.000 1984-08-19 2024-10-11 01:29:04 +5345 5345 5346 534.5 1069 5345 1984-08-20 2024-10-11 01:29:05.000 1984-08-20 2024-10-11 01:29:05 +5346 5346 5347 534.6 1069.2 5346 1984-08-21 2024-10-11 01:29:06.000 1984-08-21 2024-10-11 01:29:06 +5347 5347 5348 534.7 1069.4 5347 1984-08-22 2024-10-11 01:29:07.000 1984-08-22 2024-10-11 01:29:07 +5348 5348 5349 534.8 1069.6000000000001 5348 1984-08-23 2024-10-11 01:29:08.000 1984-08-23 2024-10-11 01:29:08 +5349 5349 5350 534.9 1069.8 5349 1984-08-24 2024-10-11 01:29:09.000 1984-08-24 2024-10-11 01:29:09 +5350 5350 5351 535 1070 5350 1984-08-25 2024-10-11 01:29:10.000 1984-08-25 2024-10-11 01:29:10 +5351 5351 5352 535.1 1070.2 5351 1984-08-26 2024-10-11 01:29:11.000 1984-08-26 2024-10-11 01:29:11 +5352 5352 5353 535.2 1070.4 5352 1984-08-27 2024-10-11 01:29:12.000 1984-08-27 2024-10-11 01:29:12 +5353 5353 5354 535.3 1070.6000000000001 5353 1984-08-28 2024-10-11 01:29:13.000 1984-08-28 2024-10-11 01:29:13 +5354 5354 5355 535.4 1070.8 5354 1984-08-29 2024-10-11 01:29:14.000 1984-08-29 2024-10-11 01:29:14 +5355 5355 5356 535.5 1071 5355 1984-08-30 2024-10-11 01:29:15.000 1984-08-30 2024-10-11 01:29:15 +5356 5356 5357 535.6 1071.2 5356 1984-08-31 2024-10-11 01:29:16.000 1984-08-31 2024-10-11 01:29:16 +5357 5357 5358 535.7 1071.4 5357 1984-09-01 2024-10-11 01:29:17.000 1984-09-01 2024-10-11 01:29:17 +5358 5358 5359 535.8 1071.6000000000001 5358 1984-09-02 2024-10-11 01:29:18.000 1984-09-02 2024-10-11 01:29:18 +5359 5359 5360 535.9 1071.8 5359 1984-09-03 2024-10-11 01:29:19.000 1984-09-03 2024-10-11 01:29:19 +5360 5360 5361 536 1072 5360 1984-09-04 2024-10-11 01:29:20.000 1984-09-04 2024-10-11 01:29:20 +5361 5361 5362 536.1 1072.2 5361 1984-09-05 2024-10-11 01:29:21.000 1984-09-05 2024-10-11 01:29:21 +5362 5362 5363 536.2 1072.4 5362 1984-09-06 2024-10-11 01:29:22.000 1984-09-06 2024-10-11 01:29:22 +5363 5363 5364 536.3 1072.6000000000001 5363 1984-09-07 2024-10-11 01:29:23.000 1984-09-07 2024-10-11 01:29:23 +5364 5364 5365 536.4 1072.8 5364 1984-09-08 2024-10-11 01:29:24.000 1984-09-08 2024-10-11 01:29:24 +5365 5365 5366 536.5 1073 5365 1984-09-09 2024-10-11 01:29:25.000 1984-09-09 2024-10-11 01:29:25 +5366 5366 5367 536.6 1073.2 5366 1984-09-10 2024-10-11 01:29:26.000 1984-09-10 2024-10-11 01:29:26 +5367 5367 5368 536.7 1073.4 5367 1984-09-11 2024-10-11 01:29:27.000 1984-09-11 2024-10-11 01:29:27 +5368 5368 5369 536.8 1073.6000000000001 5368 1984-09-12 2024-10-11 01:29:28.000 1984-09-12 2024-10-11 01:29:28 +5369 5369 5370 536.9 1073.8 5369 1984-09-13 2024-10-11 01:29:29.000 1984-09-13 2024-10-11 01:29:29 +5370 5370 5371 537 1074 5370 1984-09-14 2024-10-11 01:29:30.000 1984-09-14 2024-10-11 01:29:30 +5371 5371 5372 537.1 1074.2 5371 1984-09-15 2024-10-11 01:29:31.000 1984-09-15 2024-10-11 01:29:31 +5372 5372 5373 537.2 1074.4 5372 1984-09-16 2024-10-11 01:29:32.000 1984-09-16 2024-10-11 01:29:32 +5373 5373 5374 537.3 1074.6000000000001 5373 1984-09-17 2024-10-11 01:29:33.000 1984-09-17 2024-10-11 01:29:33 +5374 5374 5375 537.4 1074.8 5374 1984-09-18 2024-10-11 01:29:34.000 1984-09-18 2024-10-11 01:29:34 +5375 5375 5376 537.5 1075 5375 1984-09-19 2024-10-11 01:29:35.000 1984-09-19 2024-10-11 01:29:35 +5376 5376 5377 537.6 1075.2 5376 1984-09-20 2024-10-11 01:29:36.000 1984-09-20 2024-10-11 01:29:36 +5377 5377 5378 537.7 1075.4 5377 1984-09-21 2024-10-11 01:29:37.000 1984-09-21 2024-10-11 01:29:37 +5378 5378 5379 537.8 1075.6000000000001 5378 1984-09-22 2024-10-11 01:29:38.000 1984-09-22 2024-10-11 01:29:38 +5379 5379 5380 537.9 1075.8 5379 1984-09-23 2024-10-11 01:29:39.000 1984-09-23 2024-10-11 01:29:39 +5380 5380 5381 538 1076 5380 1984-09-24 2024-10-11 01:29:40.000 1984-09-24 2024-10-11 01:29:40 +5381 5381 5382 538.1 1076.2 5381 1984-09-25 2024-10-11 01:29:41.000 1984-09-25 2024-10-11 01:29:41 +5382 5382 5383 538.2 1076.4 5382 1984-09-26 2024-10-11 01:29:42.000 1984-09-26 2024-10-11 01:29:42 +5383 5383 5384 538.3 1076.6000000000001 5383 1984-09-27 2024-10-11 01:29:43.000 1984-09-27 2024-10-11 01:29:43 +5384 5384 5385 538.4 1076.8 5384 1984-09-28 2024-10-11 01:29:44.000 1984-09-28 2024-10-11 01:29:44 +5385 5385 5386 538.5 1077 5385 1984-09-29 2024-10-11 01:29:45.000 1984-09-29 2024-10-11 01:29:45 +5386 5386 5387 538.6 1077.2 5386 1984-09-30 2024-10-11 01:29:46.000 1984-09-30 2024-10-11 01:29:46 +5387 5387 5388 538.7 1077.4 5387 1984-10-01 2024-10-11 01:29:47.000 1984-10-01 2024-10-11 01:29:47 +5388 5388 5389 538.8 1077.6000000000001 5388 1984-10-02 2024-10-11 01:29:48.000 1984-10-02 2024-10-11 01:29:48 +5389 5389 5390 538.9 1077.8 5389 1984-10-03 2024-10-11 01:29:49.000 1984-10-03 2024-10-11 01:29:49 +5390 5390 5391 539 1078 5390 1984-10-04 2024-10-11 01:29:50.000 1984-10-04 2024-10-11 01:29:50 +5391 5391 5392 539.1 1078.2 5391 1984-10-05 2024-10-11 01:29:51.000 1984-10-05 2024-10-11 01:29:51 +5392 5392 5393 539.2 1078.4 5392 1984-10-06 2024-10-11 01:29:52.000 1984-10-06 2024-10-11 01:29:52 +5393 5393 5394 539.3 1078.6000000000001 5393 1984-10-07 2024-10-11 01:29:53.000 1984-10-07 2024-10-11 01:29:53 +5394 5394 5395 539.4 1078.8 5394 1984-10-08 2024-10-11 01:29:54.000 1984-10-08 2024-10-11 01:29:54 +5395 5395 5396 539.5 1079 5395 1984-10-09 2024-10-11 01:29:55.000 1984-10-09 2024-10-11 01:29:55 +5396 5396 5397 539.6 1079.2 5396 1984-10-10 2024-10-11 01:29:56.000 1984-10-10 2024-10-11 01:29:56 +5397 5397 5398 539.7 1079.4 5397 1984-10-11 2024-10-11 01:29:57.000 1984-10-11 2024-10-11 01:29:57 +5398 5398 5399 539.8 1079.6000000000001 5398 1984-10-12 2024-10-11 01:29:58.000 1984-10-12 2024-10-11 01:29:58 +5399 5399 5400 539.9 1079.8 5399 1984-10-13 2024-10-11 01:29:59.000 1984-10-13 2024-10-11 01:29:59 +5400 5400 5401 540 1080 5400 1984-10-14 2024-10-11 01:30:00.000 1984-10-14 2024-10-11 01:30:00 +5401 5401 5402 540.1 1080.2 5401 1984-10-15 2024-10-11 01:30:01.000 1984-10-15 2024-10-11 01:30:01 +5402 5402 5403 540.2 1080.4 5402 1984-10-16 2024-10-11 01:30:02.000 1984-10-16 2024-10-11 01:30:02 +5403 5403 5404 540.3 1080.6000000000001 5403 1984-10-17 2024-10-11 01:30:03.000 1984-10-17 2024-10-11 01:30:03 +5404 5404 5405 540.4 1080.8 5404 1984-10-18 2024-10-11 01:30:04.000 1984-10-18 2024-10-11 01:30:04 +5405 5405 5406 540.5 1081 5405 1984-10-19 2024-10-11 01:30:05.000 1984-10-19 2024-10-11 01:30:05 +5406 5406 5407 540.6 1081.2 5406 1984-10-20 2024-10-11 01:30:06.000 1984-10-20 2024-10-11 01:30:06 +5407 5407 5408 540.7 1081.4 5407 1984-10-21 2024-10-11 01:30:07.000 1984-10-21 2024-10-11 01:30:07 +5408 5408 5409 540.8 1081.6000000000001 5408 1984-10-22 2024-10-11 01:30:08.000 1984-10-22 2024-10-11 01:30:08 +5409 5409 5410 540.9 1081.8 5409 1984-10-23 2024-10-11 01:30:09.000 1984-10-23 2024-10-11 01:30:09 +5410 5410 5411 541 1082 5410 1984-10-24 2024-10-11 01:30:10.000 1984-10-24 2024-10-11 01:30:10 +5411 5411 5412 541.1 1082.2 5411 1984-10-25 2024-10-11 01:30:11.000 1984-10-25 2024-10-11 01:30:11 +5412 5412 5413 541.2 1082.4 5412 1984-10-26 2024-10-11 01:30:12.000 1984-10-26 2024-10-11 01:30:12 +5413 5413 5414 541.3 1082.6000000000001 5413 1984-10-27 2024-10-11 01:30:13.000 1984-10-27 2024-10-11 01:30:13 +5414 5414 5415 541.4 1082.8 5414 1984-10-28 2024-10-11 01:30:14.000 1984-10-28 2024-10-11 01:30:14 +5415 5415 5416 541.5 1083 5415 1984-10-29 2024-10-11 01:30:15.000 1984-10-29 2024-10-11 01:30:15 +5416 5416 5417 541.6 1083.2 5416 1984-10-30 2024-10-11 01:30:16.000 1984-10-30 2024-10-11 01:30:16 +5417 5417 5418 541.7 1083.4 5417 1984-10-31 2024-10-11 01:30:17.000 1984-10-31 2024-10-11 01:30:17 +5418 5418 5419 541.8 1083.6000000000001 5418 1984-11-01 2024-10-11 01:30:18.000 1984-11-01 2024-10-11 01:30:18 +5419 5419 5420 541.9 1083.8 5419 1984-11-02 2024-10-11 01:30:19.000 1984-11-02 2024-10-11 01:30:19 +5420 5420 5421 542 1084 5420 1984-11-03 2024-10-11 01:30:20.000 1984-11-03 2024-10-11 01:30:20 +5421 5421 5422 542.1 1084.2 5421 1984-11-04 2024-10-11 01:30:21.000 1984-11-04 2024-10-11 01:30:21 +5422 5422 5423 542.2 1084.4 5422 1984-11-05 2024-10-11 01:30:22.000 1984-11-05 2024-10-11 01:30:22 +5423 5423 5424 542.3 1084.6000000000001 5423 1984-11-06 2024-10-11 01:30:23.000 1984-11-06 2024-10-11 01:30:23 +5424 5424 5425 542.4 1084.8 5424 1984-11-07 2024-10-11 01:30:24.000 1984-11-07 2024-10-11 01:30:24 +5425 5425 5426 542.5 1085 5425 1984-11-08 2024-10-11 01:30:25.000 1984-11-08 2024-10-11 01:30:25 +5426 5426 5427 542.6 1085.2 5426 1984-11-09 2024-10-11 01:30:26.000 1984-11-09 2024-10-11 01:30:26 +5427 5427 5428 542.7 1085.4 5427 1984-11-10 2024-10-11 01:30:27.000 1984-11-10 2024-10-11 01:30:27 +5428 5428 5429 542.8 1085.6000000000001 5428 1984-11-11 2024-10-11 01:30:28.000 1984-11-11 2024-10-11 01:30:28 +5429 5429 5430 542.9 1085.8 5429 1984-11-12 2024-10-11 01:30:29.000 1984-11-12 2024-10-11 01:30:29 +5430 5430 5431 543 1086 5430 1984-11-13 2024-10-11 01:30:30.000 1984-11-13 2024-10-11 01:30:30 +5431 5431 5432 543.1 1086.2 5431 1984-11-14 2024-10-11 01:30:31.000 1984-11-14 2024-10-11 01:30:31 +5432 5432 5433 543.2 1086.4 5432 1984-11-15 2024-10-11 01:30:32.000 1984-11-15 2024-10-11 01:30:32 +5433 5433 5434 543.3 1086.6000000000001 5433 1984-11-16 2024-10-11 01:30:33.000 1984-11-16 2024-10-11 01:30:33 +5434 5434 5435 543.4 1086.8 5434 1984-11-17 2024-10-11 01:30:34.000 1984-11-17 2024-10-11 01:30:34 +5435 5435 5436 543.5 1087 5435 1984-11-18 2024-10-11 01:30:35.000 1984-11-18 2024-10-11 01:30:35 +5436 5436 5437 543.6 1087.2 5436 1984-11-19 2024-10-11 01:30:36.000 1984-11-19 2024-10-11 01:30:36 +5437 5437 5438 543.7 1087.4 5437 1984-11-20 2024-10-11 01:30:37.000 1984-11-20 2024-10-11 01:30:37 +5438 5438 5439 543.8 1087.6000000000001 5438 1984-11-21 2024-10-11 01:30:38.000 1984-11-21 2024-10-11 01:30:38 +5439 5439 5440 543.9 1087.8 5439 1984-11-22 2024-10-11 01:30:39.000 1984-11-22 2024-10-11 01:30:39 +5440 5440 5441 544 1088 5440 1984-11-23 2024-10-11 01:30:40.000 1984-11-23 2024-10-11 01:30:40 +5441 5441 5442 544.1 1088.2 5441 1984-11-24 2024-10-11 01:30:41.000 1984-11-24 2024-10-11 01:30:41 +5442 5442 5443 544.2 1088.4 5442 1984-11-25 2024-10-11 01:30:42.000 1984-11-25 2024-10-11 01:30:42 +5443 5443 5444 544.3 1088.6000000000001 5443 1984-11-26 2024-10-11 01:30:43.000 1984-11-26 2024-10-11 01:30:43 +5444 5444 5445 544.4 1088.8 5444 1984-11-27 2024-10-11 01:30:44.000 1984-11-27 2024-10-11 01:30:44 +5445 5445 5446 544.5 1089 5445 1984-11-28 2024-10-11 01:30:45.000 1984-11-28 2024-10-11 01:30:45 +5446 5446 5447 544.6 1089.2 5446 1984-11-29 2024-10-11 01:30:46.000 1984-11-29 2024-10-11 01:30:46 +5447 5447 5448 544.7 1089.4 5447 1984-11-30 2024-10-11 01:30:47.000 1984-11-30 2024-10-11 01:30:47 +5448 5448 5449 544.8 1089.6000000000001 5448 1984-12-01 2024-10-11 01:30:48.000 1984-12-01 2024-10-11 01:30:48 +5449 5449 5450 544.9 1089.8 5449 1984-12-02 2024-10-11 01:30:49.000 1984-12-02 2024-10-11 01:30:49 +5450 5450 5451 545 1090 5450 1984-12-03 2024-10-11 01:30:50.000 1984-12-03 2024-10-11 01:30:50 +5451 5451 5452 545.1 1090.2 5451 1984-12-04 2024-10-11 01:30:51.000 1984-12-04 2024-10-11 01:30:51 +5452 5452 5453 545.2 1090.4 5452 1984-12-05 2024-10-11 01:30:52.000 1984-12-05 2024-10-11 01:30:52 +5453 5453 5454 545.3 1090.6000000000001 5453 1984-12-06 2024-10-11 01:30:53.000 1984-12-06 2024-10-11 01:30:53 +5454 5454 5455 545.4 1090.8 5454 1984-12-07 2024-10-11 01:30:54.000 1984-12-07 2024-10-11 01:30:54 +5455 5455 5456 545.5 1091 5455 1984-12-08 2024-10-11 01:30:55.000 1984-12-08 2024-10-11 01:30:55 +5456 5456 5457 545.6 1091.2 5456 1984-12-09 2024-10-11 01:30:56.000 1984-12-09 2024-10-11 01:30:56 +5457 5457 5458 545.7 1091.4 5457 1984-12-10 2024-10-11 01:30:57.000 1984-12-10 2024-10-11 01:30:57 +5458 5458 5459 545.8 1091.6000000000001 5458 1984-12-11 2024-10-11 01:30:58.000 1984-12-11 2024-10-11 01:30:58 +5459 5459 5460 545.9 1091.8 5459 1984-12-12 2024-10-11 01:30:59.000 1984-12-12 2024-10-11 01:30:59 +5460 5460 5461 546 1092 5460 1984-12-13 2024-10-11 01:31:00.000 1984-12-13 2024-10-11 01:31:00 +5461 5461 5462 546.1 1092.2 5461 1984-12-14 2024-10-11 01:31:01.000 1984-12-14 2024-10-11 01:31:01 +5462 5462 5463 546.2 1092.4 5462 1984-12-15 2024-10-11 01:31:02.000 1984-12-15 2024-10-11 01:31:02 +5463 5463 5464 546.3 1092.6000000000001 5463 1984-12-16 2024-10-11 01:31:03.000 1984-12-16 2024-10-11 01:31:03 +5464 5464 5465 546.4 1092.8 5464 1984-12-17 2024-10-11 01:31:04.000 1984-12-17 2024-10-11 01:31:04 +5465 5465 5466 546.5 1093 5465 1984-12-18 2024-10-11 01:31:05.000 1984-12-18 2024-10-11 01:31:05 +5466 5466 5467 546.6 1093.2 5466 1984-12-19 2024-10-11 01:31:06.000 1984-12-19 2024-10-11 01:31:06 +5467 5467 5468 546.7 1093.4 5467 1984-12-20 2024-10-11 01:31:07.000 1984-12-20 2024-10-11 01:31:07 +5468 5468 5469 546.8 1093.6000000000001 5468 1984-12-21 2024-10-11 01:31:08.000 1984-12-21 2024-10-11 01:31:08 +5469 5469 5470 546.9 1093.8 5469 1984-12-22 2024-10-11 01:31:09.000 1984-12-22 2024-10-11 01:31:09 +5470 5470 5471 547 1094 5470 1984-12-23 2024-10-11 01:31:10.000 1984-12-23 2024-10-11 01:31:10 +5471 5471 5472 547.1 1094.2 5471 1984-12-24 2024-10-11 01:31:11.000 1984-12-24 2024-10-11 01:31:11 +5472 5472 5473 547.2 1094.4 5472 1984-12-25 2024-10-11 01:31:12.000 1984-12-25 2024-10-11 01:31:12 +5473 5473 5474 547.3 1094.6000000000001 5473 1984-12-26 2024-10-11 01:31:13.000 1984-12-26 2024-10-11 01:31:13 +5474 5474 5475 547.4 1094.8 5474 1984-12-27 2024-10-11 01:31:14.000 1984-12-27 2024-10-11 01:31:14 +5475 5475 5476 547.5 1095 5475 1984-12-28 2024-10-11 01:31:15.000 1984-12-28 2024-10-11 01:31:15 +5476 5476 5477 547.6 1095.2 5476 1984-12-29 2024-10-11 01:31:16.000 1984-12-29 2024-10-11 01:31:16 +5477 5477 5478 547.7 1095.4 5477 1984-12-30 2024-10-11 01:31:17.000 1984-12-30 2024-10-11 01:31:17 +5478 5478 5479 547.8 1095.6000000000001 5478 1984-12-31 2024-10-11 01:31:18.000 1984-12-31 2024-10-11 01:31:18 +5479 5479 5480 547.9 1095.8 5479 1985-01-01 2024-10-11 01:31:19.000 1985-01-01 2024-10-11 01:31:19 +5480 5480 5481 548 1096 5480 1985-01-02 2024-10-11 01:31:20.000 1985-01-02 2024-10-11 01:31:20 +5481 5481 5482 548.1 1096.2 5481 1985-01-03 2024-10-11 01:31:21.000 1985-01-03 2024-10-11 01:31:21 +5482 5482 5483 548.2 1096.4 5482 1985-01-04 2024-10-11 01:31:22.000 1985-01-04 2024-10-11 01:31:22 +5483 5483 5484 548.3 1096.6000000000001 5483 1985-01-05 2024-10-11 01:31:23.000 1985-01-05 2024-10-11 01:31:23 +5484 5484 5485 548.4 1096.8 5484 1985-01-06 2024-10-11 01:31:24.000 1985-01-06 2024-10-11 01:31:24 +5485 5485 5486 548.5 1097 5485 1985-01-07 2024-10-11 01:31:25.000 1985-01-07 2024-10-11 01:31:25 +5486 5486 5487 548.6 1097.2 5486 1985-01-08 2024-10-11 01:31:26.000 1985-01-08 2024-10-11 01:31:26 +5487 5487 5488 548.7 1097.4 5487 1985-01-09 2024-10-11 01:31:27.000 1985-01-09 2024-10-11 01:31:27 +5488 5488 5489 548.8 1097.6000000000001 5488 1985-01-10 2024-10-11 01:31:28.000 1985-01-10 2024-10-11 01:31:28 +5489 5489 5490 548.9 1097.8 5489 1985-01-11 2024-10-11 01:31:29.000 1985-01-11 2024-10-11 01:31:29 +5490 5490 5491 549 1098 5490 1985-01-12 2024-10-11 01:31:30.000 1985-01-12 2024-10-11 01:31:30 +5491 5491 5492 549.1 1098.2 5491 1985-01-13 2024-10-11 01:31:31.000 1985-01-13 2024-10-11 01:31:31 +5492 5492 5493 549.2 1098.4 5492 1985-01-14 2024-10-11 01:31:32.000 1985-01-14 2024-10-11 01:31:32 +5493 5493 5494 549.3 1098.6000000000001 5493 1985-01-15 2024-10-11 01:31:33.000 1985-01-15 2024-10-11 01:31:33 +5494 5494 5495 549.4 1098.8 5494 1985-01-16 2024-10-11 01:31:34.000 1985-01-16 2024-10-11 01:31:34 +5495 5495 5496 549.5 1099 5495 1985-01-17 2024-10-11 01:31:35.000 1985-01-17 2024-10-11 01:31:35 +5496 5496 5497 549.6 1099.2 5496 1985-01-18 2024-10-11 01:31:36.000 1985-01-18 2024-10-11 01:31:36 +5497 5497 5498 549.7 1099.4 5497 1985-01-19 2024-10-11 01:31:37.000 1985-01-19 2024-10-11 01:31:37 +5498 5498 5499 549.8 1099.6000000000001 5498 1985-01-20 2024-10-11 01:31:38.000 1985-01-20 2024-10-11 01:31:38 +5499 5499 5500 549.9 1099.8 5499 1985-01-21 2024-10-11 01:31:39.000 1985-01-21 2024-10-11 01:31:39 +5500 5500 5501 550 1100 5500 1985-01-22 2024-10-11 01:31:40.000 1985-01-22 2024-10-11 01:31:40 +5501 5501 5502 550.1 1100.2 5501 1985-01-23 2024-10-11 01:31:41.000 1985-01-23 2024-10-11 01:31:41 +5502 5502 5503 550.2 1100.4 5502 1985-01-24 2024-10-11 01:31:42.000 1985-01-24 2024-10-11 01:31:42 +5503 5503 5504 550.3 1100.6000000000001 5503 1985-01-25 2024-10-11 01:31:43.000 1985-01-25 2024-10-11 01:31:43 +5504 5504 5505 550.4 1100.8 5504 1985-01-26 2024-10-11 01:31:44.000 1985-01-26 2024-10-11 01:31:44 +5505 5505 5506 550.5 1101 5505 1985-01-27 2024-10-11 01:31:45.000 1985-01-27 2024-10-11 01:31:45 +5506 5506 5507 550.6 1101.2 5506 1985-01-28 2024-10-11 01:31:46.000 1985-01-28 2024-10-11 01:31:46 +5507 5507 5508 550.7 1101.4 5507 1985-01-29 2024-10-11 01:31:47.000 1985-01-29 2024-10-11 01:31:47 +5508 5508 5509 550.8 1101.6000000000001 5508 1985-01-30 2024-10-11 01:31:48.000 1985-01-30 2024-10-11 01:31:48 +5509 5509 5510 550.9 1101.8 5509 1985-01-31 2024-10-11 01:31:49.000 1985-01-31 2024-10-11 01:31:49 +5510 5510 5511 551 1102 5510 1985-02-01 2024-10-11 01:31:50.000 1985-02-01 2024-10-11 01:31:50 +5511 5511 5512 551.1 1102.2 5511 1985-02-02 2024-10-11 01:31:51.000 1985-02-02 2024-10-11 01:31:51 +5512 5512 5513 551.2 1102.4 5512 1985-02-03 2024-10-11 01:31:52.000 1985-02-03 2024-10-11 01:31:52 +5513 5513 5514 551.3 1102.6000000000001 5513 1985-02-04 2024-10-11 01:31:53.000 1985-02-04 2024-10-11 01:31:53 +5514 5514 5515 551.4 1102.8 5514 1985-02-05 2024-10-11 01:31:54.000 1985-02-05 2024-10-11 01:31:54 +5515 5515 5516 551.5 1103 5515 1985-02-06 2024-10-11 01:31:55.000 1985-02-06 2024-10-11 01:31:55 +5516 5516 5517 551.6 1103.2 5516 1985-02-07 2024-10-11 01:31:56.000 1985-02-07 2024-10-11 01:31:56 +5517 5517 5518 551.7 1103.4 5517 1985-02-08 2024-10-11 01:31:57.000 1985-02-08 2024-10-11 01:31:57 +5518 5518 5519 551.8 1103.6000000000001 5518 1985-02-09 2024-10-11 01:31:58.000 1985-02-09 2024-10-11 01:31:58 +5519 5519 5520 551.9 1103.8 5519 1985-02-10 2024-10-11 01:31:59.000 1985-02-10 2024-10-11 01:31:59 +5520 5520 5521 552 1104 5520 1985-02-11 2024-10-11 01:32:00.000 1985-02-11 2024-10-11 01:32:00 +5521 5521 5522 552.1 1104.2 5521 1985-02-12 2024-10-11 01:32:01.000 1985-02-12 2024-10-11 01:32:01 +5522 5522 5523 552.2 1104.4 5522 1985-02-13 2024-10-11 01:32:02.000 1985-02-13 2024-10-11 01:32:02 +5523 5523 5524 552.3 1104.6000000000001 5523 1985-02-14 2024-10-11 01:32:03.000 1985-02-14 2024-10-11 01:32:03 +5524 5524 5525 552.4 1104.8 5524 1985-02-15 2024-10-11 01:32:04.000 1985-02-15 2024-10-11 01:32:04 +5525 5525 5526 552.5 1105 5525 1985-02-16 2024-10-11 01:32:05.000 1985-02-16 2024-10-11 01:32:05 +5526 5526 5527 552.6 1105.2 5526 1985-02-17 2024-10-11 01:32:06.000 1985-02-17 2024-10-11 01:32:06 +5527 5527 5528 552.7 1105.4 5527 1985-02-18 2024-10-11 01:32:07.000 1985-02-18 2024-10-11 01:32:07 +5528 5528 5529 552.8 1105.6000000000001 5528 1985-02-19 2024-10-11 01:32:08.000 1985-02-19 2024-10-11 01:32:08 +5529 5529 5530 552.9 1105.8 5529 1985-02-20 2024-10-11 01:32:09.000 1985-02-20 2024-10-11 01:32:09 +5530 5530 5531 553 1106 5530 1985-02-21 2024-10-11 01:32:10.000 1985-02-21 2024-10-11 01:32:10 +5531 5531 5532 553.1 1106.2 5531 1985-02-22 2024-10-11 01:32:11.000 1985-02-22 2024-10-11 01:32:11 +5532 5532 5533 553.2 1106.4 5532 1985-02-23 2024-10-11 01:32:12.000 1985-02-23 2024-10-11 01:32:12 +5533 5533 5534 553.3 1106.6000000000001 5533 1985-02-24 2024-10-11 01:32:13.000 1985-02-24 2024-10-11 01:32:13 +5534 5534 5535 553.4 1106.8 5534 1985-02-25 2024-10-11 01:32:14.000 1985-02-25 2024-10-11 01:32:14 +5535 5535 5536 553.5 1107 5535 1985-02-26 2024-10-11 01:32:15.000 1985-02-26 2024-10-11 01:32:15 +5536 5536 5537 553.6 1107.2 5536 1985-02-27 2024-10-11 01:32:16.000 1985-02-27 2024-10-11 01:32:16 +5537 5537 5538 553.7 1107.4 5537 1985-02-28 2024-10-11 01:32:17.000 1985-02-28 2024-10-11 01:32:17 +5538 5538 5539 553.8 1107.6000000000001 5538 1985-03-01 2024-10-11 01:32:18.000 1985-03-01 2024-10-11 01:32:18 +5539 5539 5540 553.9 1107.8 5539 1985-03-02 2024-10-11 01:32:19.000 1985-03-02 2024-10-11 01:32:19 +5540 5540 5541 554 1108 5540 1985-03-03 2024-10-11 01:32:20.000 1985-03-03 2024-10-11 01:32:20 +5541 5541 5542 554.1 1108.2 5541 1985-03-04 2024-10-11 01:32:21.000 1985-03-04 2024-10-11 01:32:21 +5542 5542 5543 554.2 1108.4 5542 1985-03-05 2024-10-11 01:32:22.000 1985-03-05 2024-10-11 01:32:22 +5543 5543 5544 554.3 1108.6000000000001 5543 1985-03-06 2024-10-11 01:32:23.000 1985-03-06 2024-10-11 01:32:23 +5544 5544 5545 554.4 1108.8 5544 1985-03-07 2024-10-11 01:32:24.000 1985-03-07 2024-10-11 01:32:24 +5545 5545 5546 554.5 1109 5545 1985-03-08 2024-10-11 01:32:25.000 1985-03-08 2024-10-11 01:32:25 +5546 5546 5547 554.6 1109.2 5546 1985-03-09 2024-10-11 01:32:26.000 1985-03-09 2024-10-11 01:32:26 +5547 5547 5548 554.7 1109.4 5547 1985-03-10 2024-10-11 01:32:27.000 1985-03-10 2024-10-11 01:32:27 +5548 5548 5549 554.8 1109.6000000000001 5548 1985-03-11 2024-10-11 01:32:28.000 1985-03-11 2024-10-11 01:32:28 +5549 5549 5550 554.9 1109.8 5549 1985-03-12 2024-10-11 01:32:29.000 1985-03-12 2024-10-11 01:32:29 +5550 5550 5551 555 1110 5550 1985-03-13 2024-10-11 01:32:30.000 1985-03-13 2024-10-11 01:32:30 +5551 5551 5552 555.1 1110.2 5551 1985-03-14 2024-10-11 01:32:31.000 1985-03-14 2024-10-11 01:32:31 +5552 5552 5553 555.2 1110.4 5552 1985-03-15 2024-10-11 01:32:32.000 1985-03-15 2024-10-11 01:32:32 +5553 5553 5554 555.3 1110.6000000000001 5553 1985-03-16 2024-10-11 01:32:33.000 1985-03-16 2024-10-11 01:32:33 +5554 5554 5555 555.4 1110.8 5554 1985-03-17 2024-10-11 01:32:34.000 1985-03-17 2024-10-11 01:32:34 +5555 5555 5556 555.5 1111 5555 1985-03-18 2024-10-11 01:32:35.000 1985-03-18 2024-10-11 01:32:35 +5556 5556 5557 555.6 1111.2 5556 1985-03-19 2024-10-11 01:32:36.000 1985-03-19 2024-10-11 01:32:36 +5557 5557 5558 555.7 1111.4 5557 1985-03-20 2024-10-11 01:32:37.000 1985-03-20 2024-10-11 01:32:37 +5558 5558 5559 555.8 1111.6000000000001 5558 1985-03-21 2024-10-11 01:32:38.000 1985-03-21 2024-10-11 01:32:38 +5559 5559 5560 555.9 1111.8 5559 1985-03-22 2024-10-11 01:32:39.000 1985-03-22 2024-10-11 01:32:39 +5560 5560 5561 556 1112 5560 1985-03-23 2024-10-11 01:32:40.000 1985-03-23 2024-10-11 01:32:40 +5561 5561 5562 556.1 1112.2 5561 1985-03-24 2024-10-11 01:32:41.000 1985-03-24 2024-10-11 01:32:41 +5562 5562 5563 556.2 1112.4 5562 1985-03-25 2024-10-11 01:32:42.000 1985-03-25 2024-10-11 01:32:42 +5563 5563 5564 556.3 1112.6000000000001 5563 1985-03-26 2024-10-11 01:32:43.000 1985-03-26 2024-10-11 01:32:43 +5564 5564 5565 556.4 1112.8 5564 1985-03-27 2024-10-11 01:32:44.000 1985-03-27 2024-10-11 01:32:44 +5565 5565 5566 556.5 1113 5565 1985-03-28 2024-10-11 01:32:45.000 1985-03-28 2024-10-11 01:32:45 +5566 5566 5567 556.6 1113.2 5566 1985-03-29 2024-10-11 01:32:46.000 1985-03-29 2024-10-11 01:32:46 +5567 5567 5568 556.7 1113.4 5567 1985-03-30 2024-10-11 01:32:47.000 1985-03-30 2024-10-11 01:32:47 +5568 5568 5569 556.8 1113.6000000000001 5568 1985-03-31 2024-10-11 01:32:48.000 1985-03-31 2024-10-11 01:32:48 +5569 5569 5570 556.9 1113.8 5569 1985-04-01 2024-10-11 01:32:49.000 1985-04-01 2024-10-11 01:32:49 +5570 5570 5571 557 1114 5570 1985-04-02 2024-10-11 01:32:50.000 1985-04-02 2024-10-11 01:32:50 +5571 5571 5572 557.1 1114.2 5571 1985-04-03 2024-10-11 01:32:51.000 1985-04-03 2024-10-11 01:32:51 +5572 5572 5573 557.2 1114.4 5572 1985-04-04 2024-10-11 01:32:52.000 1985-04-04 2024-10-11 01:32:52 +5573 5573 5574 557.3 1114.6000000000001 5573 1985-04-05 2024-10-11 01:32:53.000 1985-04-05 2024-10-11 01:32:53 +5574 5574 5575 557.4 1114.8 5574 1985-04-06 2024-10-11 01:32:54.000 1985-04-06 2024-10-11 01:32:54 +5575 5575 5576 557.5 1115 5575 1985-04-07 2024-10-11 01:32:55.000 1985-04-07 2024-10-11 01:32:55 +5576 5576 5577 557.6 1115.2 5576 1985-04-08 2024-10-11 01:32:56.000 1985-04-08 2024-10-11 01:32:56 +5577 5577 5578 557.7 1115.4 5577 1985-04-09 2024-10-11 01:32:57.000 1985-04-09 2024-10-11 01:32:57 +5578 5578 5579 557.8 1115.6000000000001 5578 1985-04-10 2024-10-11 01:32:58.000 1985-04-10 2024-10-11 01:32:58 +5579 5579 5580 557.9 1115.8 5579 1985-04-11 2024-10-11 01:32:59.000 1985-04-11 2024-10-11 01:32:59 +5580 5580 5581 558 1116 5580 1985-04-12 2024-10-11 01:33:00.000 1985-04-12 2024-10-11 01:33:00 +5581 5581 5582 558.1 1116.2 5581 1985-04-13 2024-10-11 01:33:01.000 1985-04-13 2024-10-11 01:33:01 +5582 5582 5583 558.2 1116.4 5582 1985-04-14 2024-10-11 01:33:02.000 1985-04-14 2024-10-11 01:33:02 +5583 5583 5584 558.3 1116.6000000000001 5583 1985-04-15 2024-10-11 01:33:03.000 1985-04-15 2024-10-11 01:33:03 +5584 5584 5585 558.4 1116.8 5584 1985-04-16 2024-10-11 01:33:04.000 1985-04-16 2024-10-11 01:33:04 +5585 5585 5586 558.5 1117 5585 1985-04-17 2024-10-11 01:33:05.000 1985-04-17 2024-10-11 01:33:05 +5586 5586 5587 558.6 1117.2 5586 1985-04-18 2024-10-11 01:33:06.000 1985-04-18 2024-10-11 01:33:06 +5587 5587 5588 558.7 1117.4 5587 1985-04-19 2024-10-11 01:33:07.000 1985-04-19 2024-10-11 01:33:07 +5588 5588 5589 558.8 1117.6000000000001 5588 1985-04-20 2024-10-11 01:33:08.000 1985-04-20 2024-10-11 01:33:08 +5589 5589 5590 558.9 1117.8 5589 1985-04-21 2024-10-11 01:33:09.000 1985-04-21 2024-10-11 01:33:09 +5590 5590 5591 559 1118 5590 1985-04-22 2024-10-11 01:33:10.000 1985-04-22 2024-10-11 01:33:10 +5591 5591 5592 559.1 1118.2 5591 1985-04-23 2024-10-11 01:33:11.000 1985-04-23 2024-10-11 01:33:11 +5592 5592 5593 559.2 1118.4 5592 1985-04-24 2024-10-11 01:33:12.000 1985-04-24 2024-10-11 01:33:12 +5593 5593 5594 559.3 1118.6000000000001 5593 1985-04-25 2024-10-11 01:33:13.000 1985-04-25 2024-10-11 01:33:13 +5594 5594 5595 559.4 1118.8 5594 1985-04-26 2024-10-11 01:33:14.000 1985-04-26 2024-10-11 01:33:14 +5595 5595 5596 559.5 1119 5595 1985-04-27 2024-10-11 01:33:15.000 1985-04-27 2024-10-11 01:33:15 +5596 5596 5597 559.6 1119.2 5596 1985-04-28 2024-10-11 01:33:16.000 1985-04-28 2024-10-11 01:33:16 +5597 5597 5598 559.7 1119.4 5597 1985-04-29 2024-10-11 01:33:17.000 1985-04-29 2024-10-11 01:33:17 +5598 5598 5599 559.8 1119.6000000000001 5598 1985-04-30 2024-10-11 01:33:18.000 1985-04-30 2024-10-11 01:33:18 +5599 5599 5600 559.9 1119.8 5599 1985-05-01 2024-10-11 01:33:19.000 1985-05-01 2024-10-11 01:33:19 +5600 5600 5601 560 1120 5600 1985-05-02 2024-10-11 01:33:20.000 1985-05-02 2024-10-11 01:33:20 +5601 5601 5602 560.1 1120.2 5601 1985-05-03 2024-10-11 01:33:21.000 1985-05-03 2024-10-11 01:33:21 +5602 5602 5603 560.2 1120.4 5602 1985-05-04 2024-10-11 01:33:22.000 1985-05-04 2024-10-11 01:33:22 +5603 5603 5604 560.3 1120.6000000000001 5603 1985-05-05 2024-10-11 01:33:23.000 1985-05-05 2024-10-11 01:33:23 +5604 5604 5605 560.4 1120.8 5604 1985-05-06 2024-10-11 01:33:24.000 1985-05-06 2024-10-11 01:33:24 +5605 5605 5606 560.5 1121 5605 1985-05-07 2024-10-11 01:33:25.000 1985-05-07 2024-10-11 01:33:25 +5606 5606 5607 560.6 1121.2 5606 1985-05-08 2024-10-11 01:33:26.000 1985-05-08 2024-10-11 01:33:26 +5607 5607 5608 560.7 1121.4 5607 1985-05-09 2024-10-11 01:33:27.000 1985-05-09 2024-10-11 01:33:27 +5608 5608 5609 560.8 1121.6000000000001 5608 1985-05-10 2024-10-11 01:33:28.000 1985-05-10 2024-10-11 01:33:28 +5609 5609 5610 560.9 1121.8 5609 1985-05-11 2024-10-11 01:33:29.000 1985-05-11 2024-10-11 01:33:29 +5610 5610 5611 561 1122 5610 1985-05-12 2024-10-11 01:33:30.000 1985-05-12 2024-10-11 01:33:30 +5611 5611 5612 561.1 1122.2 5611 1985-05-13 2024-10-11 01:33:31.000 1985-05-13 2024-10-11 01:33:31 +5612 5612 5613 561.2 1122.4 5612 1985-05-14 2024-10-11 01:33:32.000 1985-05-14 2024-10-11 01:33:32 +5613 5613 5614 561.3 1122.6000000000001 5613 1985-05-15 2024-10-11 01:33:33.000 1985-05-15 2024-10-11 01:33:33 +5614 5614 5615 561.4 1122.8 5614 1985-05-16 2024-10-11 01:33:34.000 1985-05-16 2024-10-11 01:33:34 +5615 5615 5616 561.5 1123 5615 1985-05-17 2024-10-11 01:33:35.000 1985-05-17 2024-10-11 01:33:35 +5616 5616 5617 561.6 1123.2 5616 1985-05-18 2024-10-11 01:33:36.000 1985-05-18 2024-10-11 01:33:36 +5617 5617 5618 561.7 1123.4 5617 1985-05-19 2024-10-11 01:33:37.000 1985-05-19 2024-10-11 01:33:37 +5618 5618 5619 561.8 1123.6000000000001 5618 1985-05-20 2024-10-11 01:33:38.000 1985-05-20 2024-10-11 01:33:38 +5619 5619 5620 561.9 1123.8 5619 1985-05-21 2024-10-11 01:33:39.000 1985-05-21 2024-10-11 01:33:39 +5620 5620 5621 562 1124 5620 1985-05-22 2024-10-11 01:33:40.000 1985-05-22 2024-10-11 01:33:40 +5621 5621 5622 562.1 1124.2 5621 1985-05-23 2024-10-11 01:33:41.000 1985-05-23 2024-10-11 01:33:41 +5622 5622 5623 562.2 1124.4 5622 1985-05-24 2024-10-11 01:33:42.000 1985-05-24 2024-10-11 01:33:42 +5623 5623 5624 562.3 1124.6000000000001 5623 1985-05-25 2024-10-11 01:33:43.000 1985-05-25 2024-10-11 01:33:43 +5624 5624 5625 562.4 1124.8 5624 1985-05-26 2024-10-11 01:33:44.000 1985-05-26 2024-10-11 01:33:44 +5625 5625 5626 562.5 1125 5625 1985-05-27 2024-10-11 01:33:45.000 1985-05-27 2024-10-11 01:33:45 +5626 5626 5627 562.6 1125.2 5626 1985-05-28 2024-10-11 01:33:46.000 1985-05-28 2024-10-11 01:33:46 +5627 5627 5628 562.7 1125.4 5627 1985-05-29 2024-10-11 01:33:47.000 1985-05-29 2024-10-11 01:33:47 +5628 5628 5629 562.8 1125.6000000000001 5628 1985-05-30 2024-10-11 01:33:48.000 1985-05-30 2024-10-11 01:33:48 +5629 5629 5630 562.9 1125.8 5629 1985-05-31 2024-10-11 01:33:49.000 1985-05-31 2024-10-11 01:33:49 +5630 5630 5631 563 1126 5630 1985-06-01 2024-10-11 01:33:50.000 1985-06-01 2024-10-11 01:33:50 +5631 5631 5632 563.1 1126.2 5631 1985-06-02 2024-10-11 01:33:51.000 1985-06-02 2024-10-11 01:33:51 +5632 5632 5633 563.2 1126.4 5632 1985-06-03 2024-10-11 01:33:52.000 1985-06-03 2024-10-11 01:33:52 +5633 5633 5634 563.3 1126.6000000000001 5633 1985-06-04 2024-10-11 01:33:53.000 1985-06-04 2024-10-11 01:33:53 +5634 5634 5635 563.4 1126.8 5634 1985-06-05 2024-10-11 01:33:54.000 1985-06-05 2024-10-11 01:33:54 +5635 5635 5636 563.5 1127 5635 1985-06-06 2024-10-11 01:33:55.000 1985-06-06 2024-10-11 01:33:55 +5636 5636 5637 563.6 1127.2 5636 1985-06-07 2024-10-11 01:33:56.000 1985-06-07 2024-10-11 01:33:56 +5637 5637 5638 563.7 1127.4 5637 1985-06-08 2024-10-11 01:33:57.000 1985-06-08 2024-10-11 01:33:57 +5638 5638 5639 563.8 1127.6000000000001 5638 1985-06-09 2024-10-11 01:33:58.000 1985-06-09 2024-10-11 01:33:58 +5639 5639 5640 563.9 1127.8 5639 1985-06-10 2024-10-11 01:33:59.000 1985-06-10 2024-10-11 01:33:59 +5640 5640 5641 564 1128 5640 1985-06-11 2024-10-11 01:34:00.000 1985-06-11 2024-10-11 01:34:00 +5641 5641 5642 564.1 1128.2 5641 1985-06-12 2024-10-11 01:34:01.000 1985-06-12 2024-10-11 01:34:01 +5642 5642 5643 564.2 1128.4 5642 1985-06-13 2024-10-11 01:34:02.000 1985-06-13 2024-10-11 01:34:02 +5643 5643 5644 564.3 1128.6000000000001 5643 1985-06-14 2024-10-11 01:34:03.000 1985-06-14 2024-10-11 01:34:03 +5644 5644 5645 564.4 1128.8 5644 1985-06-15 2024-10-11 01:34:04.000 1985-06-15 2024-10-11 01:34:04 +5645 5645 5646 564.5 1129 5645 1985-06-16 2024-10-11 01:34:05.000 1985-06-16 2024-10-11 01:34:05 +5646 5646 5647 564.6 1129.2 5646 1985-06-17 2024-10-11 01:34:06.000 1985-06-17 2024-10-11 01:34:06 +5647 5647 5648 564.7 1129.4 5647 1985-06-18 2024-10-11 01:34:07.000 1985-06-18 2024-10-11 01:34:07 +5648 5648 5649 564.8 1129.6000000000001 5648 1985-06-19 2024-10-11 01:34:08.000 1985-06-19 2024-10-11 01:34:08 +5649 5649 5650 564.9 1129.8 5649 1985-06-20 2024-10-11 01:34:09.000 1985-06-20 2024-10-11 01:34:09 +5650 5650 5651 565 1130 5650 1985-06-21 2024-10-11 01:34:10.000 1985-06-21 2024-10-11 01:34:10 +5651 5651 5652 565.1 1130.2 5651 1985-06-22 2024-10-11 01:34:11.000 1985-06-22 2024-10-11 01:34:11 +5652 5652 5653 565.2 1130.4 5652 1985-06-23 2024-10-11 01:34:12.000 1985-06-23 2024-10-11 01:34:12 +5653 5653 5654 565.3 1130.6000000000001 5653 1985-06-24 2024-10-11 01:34:13.000 1985-06-24 2024-10-11 01:34:13 +5654 5654 5655 565.4 1130.8 5654 1985-06-25 2024-10-11 01:34:14.000 1985-06-25 2024-10-11 01:34:14 +5655 5655 5656 565.5 1131 5655 1985-06-26 2024-10-11 01:34:15.000 1985-06-26 2024-10-11 01:34:15 +5656 5656 5657 565.6 1131.2 5656 1985-06-27 2024-10-11 01:34:16.000 1985-06-27 2024-10-11 01:34:16 +5657 5657 5658 565.7 1131.4 5657 1985-06-28 2024-10-11 01:34:17.000 1985-06-28 2024-10-11 01:34:17 +5658 5658 5659 565.8 1131.6000000000001 5658 1985-06-29 2024-10-11 01:34:18.000 1985-06-29 2024-10-11 01:34:18 +5659 5659 5660 565.9 1131.8 5659 1985-06-30 2024-10-11 01:34:19.000 1985-06-30 2024-10-11 01:34:19 +5660 5660 5661 566 1132 5660 1985-07-01 2024-10-11 01:34:20.000 1985-07-01 2024-10-11 01:34:20 +5661 5661 5662 566.1 1132.2 5661 1985-07-02 2024-10-11 01:34:21.000 1985-07-02 2024-10-11 01:34:21 +5662 5662 5663 566.2 1132.4 5662 1985-07-03 2024-10-11 01:34:22.000 1985-07-03 2024-10-11 01:34:22 +5663 5663 5664 566.3 1132.6000000000001 5663 1985-07-04 2024-10-11 01:34:23.000 1985-07-04 2024-10-11 01:34:23 +5664 5664 5665 566.4 1132.8 5664 1985-07-05 2024-10-11 01:34:24.000 1985-07-05 2024-10-11 01:34:24 +5665 5665 5666 566.5 1133 5665 1985-07-06 2024-10-11 01:34:25.000 1985-07-06 2024-10-11 01:34:25 +5666 5666 5667 566.6 1133.2 5666 1985-07-07 2024-10-11 01:34:26.000 1985-07-07 2024-10-11 01:34:26 +5667 5667 5668 566.7 1133.4 5667 1985-07-08 2024-10-11 01:34:27.000 1985-07-08 2024-10-11 01:34:27 +5668 5668 5669 566.8 1133.6000000000001 5668 1985-07-09 2024-10-11 01:34:28.000 1985-07-09 2024-10-11 01:34:28 +5669 5669 5670 566.9 1133.8 5669 1985-07-10 2024-10-11 01:34:29.000 1985-07-10 2024-10-11 01:34:29 +5670 5670 5671 567 1134 5670 1985-07-11 2024-10-11 01:34:30.000 1985-07-11 2024-10-11 01:34:30 +5671 5671 5672 567.1 1134.2 5671 1985-07-12 2024-10-11 01:34:31.000 1985-07-12 2024-10-11 01:34:31 +5672 5672 5673 567.2 1134.4 5672 1985-07-13 2024-10-11 01:34:32.000 1985-07-13 2024-10-11 01:34:32 +5673 5673 5674 567.3 1134.6000000000001 5673 1985-07-14 2024-10-11 01:34:33.000 1985-07-14 2024-10-11 01:34:33 +5674 5674 5675 567.4 1134.8 5674 1985-07-15 2024-10-11 01:34:34.000 1985-07-15 2024-10-11 01:34:34 +5675 5675 5676 567.5 1135 5675 1985-07-16 2024-10-11 01:34:35.000 1985-07-16 2024-10-11 01:34:35 +5676 5676 5677 567.6 1135.2 5676 1985-07-17 2024-10-11 01:34:36.000 1985-07-17 2024-10-11 01:34:36 +5677 5677 5678 567.7 1135.4 5677 1985-07-18 2024-10-11 01:34:37.000 1985-07-18 2024-10-11 01:34:37 +5678 5678 5679 567.8 1135.6000000000001 5678 1985-07-19 2024-10-11 01:34:38.000 1985-07-19 2024-10-11 01:34:38 +5679 5679 5680 567.9 1135.8 5679 1985-07-20 2024-10-11 01:34:39.000 1985-07-20 2024-10-11 01:34:39 +5680 5680 5681 568 1136 5680 1985-07-21 2024-10-11 01:34:40.000 1985-07-21 2024-10-11 01:34:40 +5681 5681 5682 568.1 1136.2 5681 1985-07-22 2024-10-11 01:34:41.000 1985-07-22 2024-10-11 01:34:41 +5682 5682 5683 568.2 1136.4 5682 1985-07-23 2024-10-11 01:34:42.000 1985-07-23 2024-10-11 01:34:42 +5683 5683 5684 568.3 1136.6000000000001 5683 1985-07-24 2024-10-11 01:34:43.000 1985-07-24 2024-10-11 01:34:43 +5684 5684 5685 568.4 1136.8 5684 1985-07-25 2024-10-11 01:34:44.000 1985-07-25 2024-10-11 01:34:44 +5685 5685 5686 568.5 1137 5685 1985-07-26 2024-10-11 01:34:45.000 1985-07-26 2024-10-11 01:34:45 +5686 5686 5687 568.6 1137.2 5686 1985-07-27 2024-10-11 01:34:46.000 1985-07-27 2024-10-11 01:34:46 +5687 5687 5688 568.7 1137.4 5687 1985-07-28 2024-10-11 01:34:47.000 1985-07-28 2024-10-11 01:34:47 +5688 5688 5689 568.8 1137.6000000000001 5688 1985-07-29 2024-10-11 01:34:48.000 1985-07-29 2024-10-11 01:34:48 +5689 5689 5690 568.9 1137.8 5689 1985-07-30 2024-10-11 01:34:49.000 1985-07-30 2024-10-11 01:34:49 +5690 5690 5691 569 1138 5690 1985-07-31 2024-10-11 01:34:50.000 1985-07-31 2024-10-11 01:34:50 +5691 5691 5692 569.1 1138.2 5691 1985-08-01 2024-10-11 01:34:51.000 1985-08-01 2024-10-11 01:34:51 +5692 5692 5693 569.2 1138.4 5692 1985-08-02 2024-10-11 01:34:52.000 1985-08-02 2024-10-11 01:34:52 +5693 5693 5694 569.3 1138.6000000000001 5693 1985-08-03 2024-10-11 01:34:53.000 1985-08-03 2024-10-11 01:34:53 +5694 5694 5695 569.4 1138.8 5694 1985-08-04 2024-10-11 01:34:54.000 1985-08-04 2024-10-11 01:34:54 +5695 5695 5696 569.5 1139 5695 1985-08-05 2024-10-11 01:34:55.000 1985-08-05 2024-10-11 01:34:55 +5696 5696 5697 569.6 1139.2 5696 1985-08-06 2024-10-11 01:34:56.000 1985-08-06 2024-10-11 01:34:56 +5697 5697 5698 569.7 1139.4 5697 1985-08-07 2024-10-11 01:34:57.000 1985-08-07 2024-10-11 01:34:57 +5698 5698 5699 569.8 1139.6000000000001 5698 1985-08-08 2024-10-11 01:34:58.000 1985-08-08 2024-10-11 01:34:58 +5699 5699 5700 569.9 1139.8 5699 1985-08-09 2024-10-11 01:34:59.000 1985-08-09 2024-10-11 01:34:59 +5700 5700 5701 570 1140 5700 1985-08-10 2024-10-11 01:35:00.000 1985-08-10 2024-10-11 01:35:00 +5701 5701 5702 570.1 1140.2 5701 1985-08-11 2024-10-11 01:35:01.000 1985-08-11 2024-10-11 01:35:01 +5702 5702 5703 570.2 1140.4 5702 1985-08-12 2024-10-11 01:35:02.000 1985-08-12 2024-10-11 01:35:02 +5703 5703 5704 570.3 1140.6000000000001 5703 1985-08-13 2024-10-11 01:35:03.000 1985-08-13 2024-10-11 01:35:03 +5704 5704 5705 570.4 1140.8 5704 1985-08-14 2024-10-11 01:35:04.000 1985-08-14 2024-10-11 01:35:04 +5705 5705 5706 570.5 1141 5705 1985-08-15 2024-10-11 01:35:05.000 1985-08-15 2024-10-11 01:35:05 +5706 5706 5707 570.6 1141.2 5706 1985-08-16 2024-10-11 01:35:06.000 1985-08-16 2024-10-11 01:35:06 +5707 5707 5708 570.7 1141.4 5707 1985-08-17 2024-10-11 01:35:07.000 1985-08-17 2024-10-11 01:35:07 +5708 5708 5709 570.8 1141.6000000000001 5708 1985-08-18 2024-10-11 01:35:08.000 1985-08-18 2024-10-11 01:35:08 +5709 5709 5710 570.9 1141.8 5709 1985-08-19 2024-10-11 01:35:09.000 1985-08-19 2024-10-11 01:35:09 +5710 5710 5711 571 1142 5710 1985-08-20 2024-10-11 01:35:10.000 1985-08-20 2024-10-11 01:35:10 +5711 5711 5712 571.1 1142.2 5711 1985-08-21 2024-10-11 01:35:11.000 1985-08-21 2024-10-11 01:35:11 +5712 5712 5713 571.2 1142.4 5712 1985-08-22 2024-10-11 01:35:12.000 1985-08-22 2024-10-11 01:35:12 +5713 5713 5714 571.3 1142.6000000000001 5713 1985-08-23 2024-10-11 01:35:13.000 1985-08-23 2024-10-11 01:35:13 +5714 5714 5715 571.4 1142.8 5714 1985-08-24 2024-10-11 01:35:14.000 1985-08-24 2024-10-11 01:35:14 +5715 5715 5716 571.5 1143 5715 1985-08-25 2024-10-11 01:35:15.000 1985-08-25 2024-10-11 01:35:15 +5716 5716 5717 571.6 1143.2 5716 1985-08-26 2024-10-11 01:35:16.000 1985-08-26 2024-10-11 01:35:16 +5717 5717 5718 571.7 1143.4 5717 1985-08-27 2024-10-11 01:35:17.000 1985-08-27 2024-10-11 01:35:17 +5718 5718 5719 571.8 1143.6000000000001 5718 1985-08-28 2024-10-11 01:35:18.000 1985-08-28 2024-10-11 01:35:18 +5719 5719 5720 571.9 1143.8 5719 1985-08-29 2024-10-11 01:35:19.000 1985-08-29 2024-10-11 01:35:19 +5720 5720 5721 572 1144 5720 1985-08-30 2024-10-11 01:35:20.000 1985-08-30 2024-10-11 01:35:20 +5721 5721 5722 572.1 1144.2 5721 1985-08-31 2024-10-11 01:35:21.000 1985-08-31 2024-10-11 01:35:21 +5722 5722 5723 572.2 1144.4 5722 1985-09-01 2024-10-11 01:35:22.000 1985-09-01 2024-10-11 01:35:22 +5723 5723 5724 572.3 1144.6000000000001 5723 1985-09-02 2024-10-11 01:35:23.000 1985-09-02 2024-10-11 01:35:23 +5724 5724 5725 572.4 1144.8 5724 1985-09-03 2024-10-11 01:35:24.000 1985-09-03 2024-10-11 01:35:24 +5725 5725 5726 572.5 1145 5725 1985-09-04 2024-10-11 01:35:25.000 1985-09-04 2024-10-11 01:35:25 +5726 5726 5727 572.6 1145.2 5726 1985-09-05 2024-10-11 01:35:26.000 1985-09-05 2024-10-11 01:35:26 +5727 5727 5728 572.7 1145.4 5727 1985-09-06 2024-10-11 01:35:27.000 1985-09-06 2024-10-11 01:35:27 +5728 5728 5729 572.8 1145.6000000000001 5728 1985-09-07 2024-10-11 01:35:28.000 1985-09-07 2024-10-11 01:35:28 +5729 5729 5730 572.9 1145.8 5729 1985-09-08 2024-10-11 01:35:29.000 1985-09-08 2024-10-11 01:35:29 +5730 5730 5731 573 1146 5730 1985-09-09 2024-10-11 01:35:30.000 1985-09-09 2024-10-11 01:35:30 +5731 5731 5732 573.1 1146.2 5731 1985-09-10 2024-10-11 01:35:31.000 1985-09-10 2024-10-11 01:35:31 +5732 5732 5733 573.2 1146.4 5732 1985-09-11 2024-10-11 01:35:32.000 1985-09-11 2024-10-11 01:35:32 +5733 5733 5734 573.3 1146.6000000000001 5733 1985-09-12 2024-10-11 01:35:33.000 1985-09-12 2024-10-11 01:35:33 +5734 5734 5735 573.4 1146.8 5734 1985-09-13 2024-10-11 01:35:34.000 1985-09-13 2024-10-11 01:35:34 +5735 5735 5736 573.5 1147 5735 1985-09-14 2024-10-11 01:35:35.000 1985-09-14 2024-10-11 01:35:35 +5736 5736 5737 573.6 1147.2 5736 1985-09-15 2024-10-11 01:35:36.000 1985-09-15 2024-10-11 01:35:36 +5737 5737 5738 573.7 1147.4 5737 1985-09-16 2024-10-11 01:35:37.000 1985-09-16 2024-10-11 01:35:37 +5738 5738 5739 573.8 1147.6000000000001 5738 1985-09-17 2024-10-11 01:35:38.000 1985-09-17 2024-10-11 01:35:38 +5739 5739 5740 573.9 1147.8 5739 1985-09-18 2024-10-11 01:35:39.000 1985-09-18 2024-10-11 01:35:39 +5740 5740 5741 574 1148 5740 1985-09-19 2024-10-11 01:35:40.000 1985-09-19 2024-10-11 01:35:40 +5741 5741 5742 574.1 1148.2 5741 1985-09-20 2024-10-11 01:35:41.000 1985-09-20 2024-10-11 01:35:41 +5742 5742 5743 574.2 1148.4 5742 1985-09-21 2024-10-11 01:35:42.000 1985-09-21 2024-10-11 01:35:42 +5743 5743 5744 574.3 1148.6000000000001 5743 1985-09-22 2024-10-11 01:35:43.000 1985-09-22 2024-10-11 01:35:43 +5744 5744 5745 574.4 1148.8 5744 1985-09-23 2024-10-11 01:35:44.000 1985-09-23 2024-10-11 01:35:44 +5745 5745 5746 574.5 1149 5745 1985-09-24 2024-10-11 01:35:45.000 1985-09-24 2024-10-11 01:35:45 +5746 5746 5747 574.6 1149.2 5746 1985-09-25 2024-10-11 01:35:46.000 1985-09-25 2024-10-11 01:35:46 +5747 5747 5748 574.7 1149.4 5747 1985-09-26 2024-10-11 01:35:47.000 1985-09-26 2024-10-11 01:35:47 +5748 5748 5749 574.8 1149.6000000000001 5748 1985-09-27 2024-10-11 01:35:48.000 1985-09-27 2024-10-11 01:35:48 +5749 5749 5750 574.9 1149.8 5749 1985-09-28 2024-10-11 01:35:49.000 1985-09-28 2024-10-11 01:35:49 +5750 5750 5751 575 1150 5750 1985-09-29 2024-10-11 01:35:50.000 1985-09-29 2024-10-11 01:35:50 +5751 5751 5752 575.1 1150.2 5751 1985-09-30 2024-10-11 01:35:51.000 1985-09-30 2024-10-11 01:35:51 +5752 5752 5753 575.2 1150.4 5752 1985-10-01 2024-10-11 01:35:52.000 1985-10-01 2024-10-11 01:35:52 +5753 5753 5754 575.3 1150.6000000000001 5753 1985-10-02 2024-10-11 01:35:53.000 1985-10-02 2024-10-11 01:35:53 +5754 5754 5755 575.4 1150.8 5754 1985-10-03 2024-10-11 01:35:54.000 1985-10-03 2024-10-11 01:35:54 +5755 5755 5756 575.5 1151 5755 1985-10-04 2024-10-11 01:35:55.000 1985-10-04 2024-10-11 01:35:55 +5756 5756 5757 575.6 1151.2 5756 1985-10-05 2024-10-11 01:35:56.000 1985-10-05 2024-10-11 01:35:56 +5757 5757 5758 575.7 1151.4 5757 1985-10-06 2024-10-11 01:35:57.000 1985-10-06 2024-10-11 01:35:57 +5758 5758 5759 575.8 1151.6000000000001 5758 1985-10-07 2024-10-11 01:35:58.000 1985-10-07 2024-10-11 01:35:58 +5759 5759 5760 575.9 1151.8 5759 1985-10-08 2024-10-11 01:35:59.000 1985-10-08 2024-10-11 01:35:59 +5760 5760 5761 576 1152 5760 1985-10-09 2024-10-11 01:36:00.000 1985-10-09 2024-10-11 01:36:00 +5761 5761 5762 576.1 1152.2 5761 1985-10-10 2024-10-11 01:36:01.000 1985-10-10 2024-10-11 01:36:01 +5762 5762 5763 576.2 1152.4 5762 1985-10-11 2024-10-11 01:36:02.000 1985-10-11 2024-10-11 01:36:02 +5763 5763 5764 576.3 1152.6000000000001 5763 1985-10-12 2024-10-11 01:36:03.000 1985-10-12 2024-10-11 01:36:03 +5764 5764 5765 576.4 1152.8 5764 1985-10-13 2024-10-11 01:36:04.000 1985-10-13 2024-10-11 01:36:04 +5765 5765 5766 576.5 1153 5765 1985-10-14 2024-10-11 01:36:05.000 1985-10-14 2024-10-11 01:36:05 +5766 5766 5767 576.6 1153.2 5766 1985-10-15 2024-10-11 01:36:06.000 1985-10-15 2024-10-11 01:36:06 +5767 5767 5768 576.7 1153.4 5767 1985-10-16 2024-10-11 01:36:07.000 1985-10-16 2024-10-11 01:36:07 +5768 5768 5769 576.8 1153.6000000000001 5768 1985-10-17 2024-10-11 01:36:08.000 1985-10-17 2024-10-11 01:36:08 +5769 5769 5770 576.9 1153.8 5769 1985-10-18 2024-10-11 01:36:09.000 1985-10-18 2024-10-11 01:36:09 +5770 5770 5771 577 1154 5770 1985-10-19 2024-10-11 01:36:10.000 1985-10-19 2024-10-11 01:36:10 +5771 5771 5772 577.1 1154.2 5771 1985-10-20 2024-10-11 01:36:11.000 1985-10-20 2024-10-11 01:36:11 +5772 5772 5773 577.2 1154.4 5772 1985-10-21 2024-10-11 01:36:12.000 1985-10-21 2024-10-11 01:36:12 +5773 5773 5774 577.3 1154.6000000000001 5773 1985-10-22 2024-10-11 01:36:13.000 1985-10-22 2024-10-11 01:36:13 +5774 5774 5775 577.4 1154.8 5774 1985-10-23 2024-10-11 01:36:14.000 1985-10-23 2024-10-11 01:36:14 +5775 5775 5776 577.5 1155 5775 1985-10-24 2024-10-11 01:36:15.000 1985-10-24 2024-10-11 01:36:15 +5776 5776 5777 577.6 1155.2 5776 1985-10-25 2024-10-11 01:36:16.000 1985-10-25 2024-10-11 01:36:16 +5777 5777 5778 577.7 1155.4 5777 1985-10-26 2024-10-11 01:36:17.000 1985-10-26 2024-10-11 01:36:17 +5778 5778 5779 577.8 1155.6000000000001 5778 1985-10-27 2024-10-11 01:36:18.000 1985-10-27 2024-10-11 01:36:18 +5779 5779 5780 577.9 1155.8 5779 1985-10-28 2024-10-11 01:36:19.000 1985-10-28 2024-10-11 01:36:19 +5780 5780 5781 578 1156 5780 1985-10-29 2024-10-11 01:36:20.000 1985-10-29 2024-10-11 01:36:20 +5781 5781 5782 578.1 1156.2 5781 1985-10-30 2024-10-11 01:36:21.000 1985-10-30 2024-10-11 01:36:21 +5782 5782 5783 578.2 1156.4 5782 1985-10-31 2024-10-11 01:36:22.000 1985-10-31 2024-10-11 01:36:22 +5783 5783 5784 578.3 1156.6000000000001 5783 1985-11-01 2024-10-11 01:36:23.000 1985-11-01 2024-10-11 01:36:23 +5784 5784 5785 578.4 1156.8 5784 1985-11-02 2024-10-11 01:36:24.000 1985-11-02 2024-10-11 01:36:24 +5785 5785 5786 578.5 1157 5785 1985-11-03 2024-10-11 01:36:25.000 1985-11-03 2024-10-11 01:36:25 +5786 5786 5787 578.6 1157.2 5786 1985-11-04 2024-10-11 01:36:26.000 1985-11-04 2024-10-11 01:36:26 +5787 5787 5788 578.7 1157.4 5787 1985-11-05 2024-10-11 01:36:27.000 1985-11-05 2024-10-11 01:36:27 +5788 5788 5789 578.8 1157.6000000000001 5788 1985-11-06 2024-10-11 01:36:28.000 1985-11-06 2024-10-11 01:36:28 +5789 5789 5790 578.9 1157.8 5789 1985-11-07 2024-10-11 01:36:29.000 1985-11-07 2024-10-11 01:36:29 +5790 5790 5791 579 1158 5790 1985-11-08 2024-10-11 01:36:30.000 1985-11-08 2024-10-11 01:36:30 +5791 5791 5792 579.1 1158.2 5791 1985-11-09 2024-10-11 01:36:31.000 1985-11-09 2024-10-11 01:36:31 +5792 5792 5793 579.2 1158.4 5792 1985-11-10 2024-10-11 01:36:32.000 1985-11-10 2024-10-11 01:36:32 +5793 5793 5794 579.3 1158.6000000000001 5793 1985-11-11 2024-10-11 01:36:33.000 1985-11-11 2024-10-11 01:36:33 +5794 5794 5795 579.4 1158.8 5794 1985-11-12 2024-10-11 01:36:34.000 1985-11-12 2024-10-11 01:36:34 +5795 5795 5796 579.5 1159 5795 1985-11-13 2024-10-11 01:36:35.000 1985-11-13 2024-10-11 01:36:35 +5796 5796 5797 579.6 1159.2 5796 1985-11-14 2024-10-11 01:36:36.000 1985-11-14 2024-10-11 01:36:36 +5797 5797 5798 579.7 1159.4 5797 1985-11-15 2024-10-11 01:36:37.000 1985-11-15 2024-10-11 01:36:37 +5798 5798 5799 579.8 1159.6000000000001 5798 1985-11-16 2024-10-11 01:36:38.000 1985-11-16 2024-10-11 01:36:38 +5799 5799 5800 579.9 1159.8 5799 1985-11-17 2024-10-11 01:36:39.000 1985-11-17 2024-10-11 01:36:39 +5800 5800 5801 580 1160 5800 1985-11-18 2024-10-11 01:36:40.000 1985-11-18 2024-10-11 01:36:40 +5801 5801 5802 580.1 1160.2 5801 1985-11-19 2024-10-11 01:36:41.000 1985-11-19 2024-10-11 01:36:41 +5802 5802 5803 580.2 1160.4 5802 1985-11-20 2024-10-11 01:36:42.000 1985-11-20 2024-10-11 01:36:42 +5803 5803 5804 580.3 1160.6000000000001 5803 1985-11-21 2024-10-11 01:36:43.000 1985-11-21 2024-10-11 01:36:43 +5804 5804 5805 580.4 1160.8 5804 1985-11-22 2024-10-11 01:36:44.000 1985-11-22 2024-10-11 01:36:44 +5805 5805 5806 580.5 1161 5805 1985-11-23 2024-10-11 01:36:45.000 1985-11-23 2024-10-11 01:36:45 +5806 5806 5807 580.6 1161.2 5806 1985-11-24 2024-10-11 01:36:46.000 1985-11-24 2024-10-11 01:36:46 +5807 5807 5808 580.7 1161.4 5807 1985-11-25 2024-10-11 01:36:47.000 1985-11-25 2024-10-11 01:36:47 +5808 5808 5809 580.8 1161.6000000000001 5808 1985-11-26 2024-10-11 01:36:48.000 1985-11-26 2024-10-11 01:36:48 +5809 5809 5810 580.9 1161.8 5809 1985-11-27 2024-10-11 01:36:49.000 1985-11-27 2024-10-11 01:36:49 +5810 5810 5811 581 1162 5810 1985-11-28 2024-10-11 01:36:50.000 1985-11-28 2024-10-11 01:36:50 +5811 5811 5812 581.1 1162.2 5811 1985-11-29 2024-10-11 01:36:51.000 1985-11-29 2024-10-11 01:36:51 +5812 5812 5813 581.2 1162.4 5812 1985-11-30 2024-10-11 01:36:52.000 1985-11-30 2024-10-11 01:36:52 +5813 5813 5814 581.3 1162.6000000000001 5813 1985-12-01 2024-10-11 01:36:53.000 1985-12-01 2024-10-11 01:36:53 +5814 5814 5815 581.4 1162.8 5814 1985-12-02 2024-10-11 01:36:54.000 1985-12-02 2024-10-11 01:36:54 +5815 5815 5816 581.5 1163 5815 1985-12-03 2024-10-11 01:36:55.000 1985-12-03 2024-10-11 01:36:55 +5816 5816 5817 581.6 1163.2 5816 1985-12-04 2024-10-11 01:36:56.000 1985-12-04 2024-10-11 01:36:56 +5817 5817 5818 581.7 1163.4 5817 1985-12-05 2024-10-11 01:36:57.000 1985-12-05 2024-10-11 01:36:57 +5818 5818 5819 581.8 1163.6000000000001 5818 1985-12-06 2024-10-11 01:36:58.000 1985-12-06 2024-10-11 01:36:58 +5819 5819 5820 581.9 1163.8 5819 1985-12-07 2024-10-11 01:36:59.000 1985-12-07 2024-10-11 01:36:59 +5820 5820 5821 582 1164 5820 1985-12-08 2024-10-11 01:37:00.000 1985-12-08 2024-10-11 01:37:00 +5821 5821 5822 582.1 1164.2 5821 1985-12-09 2024-10-11 01:37:01.000 1985-12-09 2024-10-11 01:37:01 +5822 5822 5823 582.2 1164.4 5822 1985-12-10 2024-10-11 01:37:02.000 1985-12-10 2024-10-11 01:37:02 +5823 5823 5824 582.3 1164.6000000000001 5823 1985-12-11 2024-10-11 01:37:03.000 1985-12-11 2024-10-11 01:37:03 +5824 5824 5825 582.4 1164.8 5824 1985-12-12 2024-10-11 01:37:04.000 1985-12-12 2024-10-11 01:37:04 +5825 5825 5826 582.5 1165 5825 1985-12-13 2024-10-11 01:37:05.000 1985-12-13 2024-10-11 01:37:05 +5826 5826 5827 582.6 1165.2 5826 1985-12-14 2024-10-11 01:37:06.000 1985-12-14 2024-10-11 01:37:06 +5827 5827 5828 582.7 1165.4 5827 1985-12-15 2024-10-11 01:37:07.000 1985-12-15 2024-10-11 01:37:07 +5828 5828 5829 582.8 1165.6000000000001 5828 1985-12-16 2024-10-11 01:37:08.000 1985-12-16 2024-10-11 01:37:08 +5829 5829 5830 582.9 1165.8 5829 1985-12-17 2024-10-11 01:37:09.000 1985-12-17 2024-10-11 01:37:09 +5830 5830 5831 583 1166 5830 1985-12-18 2024-10-11 01:37:10.000 1985-12-18 2024-10-11 01:37:10 +5831 5831 5832 583.1 1166.2 5831 1985-12-19 2024-10-11 01:37:11.000 1985-12-19 2024-10-11 01:37:11 +5832 5832 5833 583.2 1166.4 5832 1985-12-20 2024-10-11 01:37:12.000 1985-12-20 2024-10-11 01:37:12 +5833 5833 5834 583.3 1166.6000000000001 5833 1985-12-21 2024-10-11 01:37:13.000 1985-12-21 2024-10-11 01:37:13 +5834 5834 5835 583.4 1166.8 5834 1985-12-22 2024-10-11 01:37:14.000 1985-12-22 2024-10-11 01:37:14 +5835 5835 5836 583.5 1167 5835 1985-12-23 2024-10-11 01:37:15.000 1985-12-23 2024-10-11 01:37:15 +5836 5836 5837 583.6 1167.2 5836 1985-12-24 2024-10-11 01:37:16.000 1985-12-24 2024-10-11 01:37:16 +5837 5837 5838 583.7 1167.4 5837 1985-12-25 2024-10-11 01:37:17.000 1985-12-25 2024-10-11 01:37:17 +5838 5838 5839 583.8 1167.6000000000001 5838 1985-12-26 2024-10-11 01:37:18.000 1985-12-26 2024-10-11 01:37:18 +5839 5839 5840 583.9 1167.8 5839 1985-12-27 2024-10-11 01:37:19.000 1985-12-27 2024-10-11 01:37:19 +5840 5840 5841 584 1168 5840 1985-12-28 2024-10-11 01:37:20.000 1985-12-28 2024-10-11 01:37:20 +5841 5841 5842 584.1 1168.2 5841 1985-12-29 2024-10-11 01:37:21.000 1985-12-29 2024-10-11 01:37:21 +5842 5842 5843 584.2 1168.4 5842 1985-12-30 2024-10-11 01:37:22.000 1985-12-30 2024-10-11 01:37:22 +5843 5843 5844 584.3 1168.6000000000001 5843 1985-12-31 2024-10-11 01:37:23.000 1985-12-31 2024-10-11 01:37:23 +5844 5844 5845 584.4 1168.8 5844 1986-01-01 2024-10-11 01:37:24.000 1986-01-01 2024-10-11 01:37:24 +5845 5845 5846 584.5 1169 5845 1986-01-02 2024-10-11 01:37:25.000 1986-01-02 2024-10-11 01:37:25 +5846 5846 5847 584.6 1169.2 5846 1986-01-03 2024-10-11 01:37:26.000 1986-01-03 2024-10-11 01:37:26 +5847 5847 5848 584.7 1169.4 5847 1986-01-04 2024-10-11 01:37:27.000 1986-01-04 2024-10-11 01:37:27 +5848 5848 5849 584.8 1169.6000000000001 5848 1986-01-05 2024-10-11 01:37:28.000 1986-01-05 2024-10-11 01:37:28 +5849 5849 5850 584.9 1169.8 5849 1986-01-06 2024-10-11 01:37:29.000 1986-01-06 2024-10-11 01:37:29 +5850 5850 5851 585 1170 5850 1986-01-07 2024-10-11 01:37:30.000 1986-01-07 2024-10-11 01:37:30 +5851 5851 5852 585.1 1170.2 5851 1986-01-08 2024-10-11 01:37:31.000 1986-01-08 2024-10-11 01:37:31 +5852 5852 5853 585.2 1170.4 5852 1986-01-09 2024-10-11 01:37:32.000 1986-01-09 2024-10-11 01:37:32 +5853 5853 5854 585.3 1170.6000000000001 5853 1986-01-10 2024-10-11 01:37:33.000 1986-01-10 2024-10-11 01:37:33 +5854 5854 5855 585.4 1170.8 5854 1986-01-11 2024-10-11 01:37:34.000 1986-01-11 2024-10-11 01:37:34 +5855 5855 5856 585.5 1171 5855 1986-01-12 2024-10-11 01:37:35.000 1986-01-12 2024-10-11 01:37:35 +5856 5856 5857 585.6 1171.2 5856 1986-01-13 2024-10-11 01:37:36.000 1986-01-13 2024-10-11 01:37:36 +5857 5857 5858 585.7 1171.4 5857 1986-01-14 2024-10-11 01:37:37.000 1986-01-14 2024-10-11 01:37:37 +5858 5858 5859 585.8 1171.6000000000001 5858 1986-01-15 2024-10-11 01:37:38.000 1986-01-15 2024-10-11 01:37:38 +5859 5859 5860 585.9 1171.8 5859 1986-01-16 2024-10-11 01:37:39.000 1986-01-16 2024-10-11 01:37:39 +5860 5860 5861 586 1172 5860 1986-01-17 2024-10-11 01:37:40.000 1986-01-17 2024-10-11 01:37:40 +5861 5861 5862 586.1 1172.2 5861 1986-01-18 2024-10-11 01:37:41.000 1986-01-18 2024-10-11 01:37:41 +5862 5862 5863 586.2 1172.4 5862 1986-01-19 2024-10-11 01:37:42.000 1986-01-19 2024-10-11 01:37:42 +5863 5863 5864 586.3 1172.6000000000001 5863 1986-01-20 2024-10-11 01:37:43.000 1986-01-20 2024-10-11 01:37:43 +5864 5864 5865 586.4 1172.8 5864 1986-01-21 2024-10-11 01:37:44.000 1986-01-21 2024-10-11 01:37:44 +5865 5865 5866 586.5 1173 5865 1986-01-22 2024-10-11 01:37:45.000 1986-01-22 2024-10-11 01:37:45 +5866 5866 5867 586.6 1173.2 5866 1986-01-23 2024-10-11 01:37:46.000 1986-01-23 2024-10-11 01:37:46 +5867 5867 5868 586.7 1173.4 5867 1986-01-24 2024-10-11 01:37:47.000 1986-01-24 2024-10-11 01:37:47 +5868 5868 5869 586.8 1173.6000000000001 5868 1986-01-25 2024-10-11 01:37:48.000 1986-01-25 2024-10-11 01:37:48 +5869 5869 5870 586.9 1173.8 5869 1986-01-26 2024-10-11 01:37:49.000 1986-01-26 2024-10-11 01:37:49 +5870 5870 5871 587 1174 5870 1986-01-27 2024-10-11 01:37:50.000 1986-01-27 2024-10-11 01:37:50 +5871 5871 5872 587.1 1174.2 5871 1986-01-28 2024-10-11 01:37:51.000 1986-01-28 2024-10-11 01:37:51 +5872 5872 5873 587.2 1174.4 5872 1986-01-29 2024-10-11 01:37:52.000 1986-01-29 2024-10-11 01:37:52 +5873 5873 5874 587.3 1174.6000000000001 5873 1986-01-30 2024-10-11 01:37:53.000 1986-01-30 2024-10-11 01:37:53 +5874 5874 5875 587.4 1174.8 5874 1986-01-31 2024-10-11 01:37:54.000 1986-01-31 2024-10-11 01:37:54 +5875 5875 5876 587.5 1175 5875 1986-02-01 2024-10-11 01:37:55.000 1986-02-01 2024-10-11 01:37:55 +5876 5876 5877 587.6 1175.2 5876 1986-02-02 2024-10-11 01:37:56.000 1986-02-02 2024-10-11 01:37:56 +5877 5877 5878 587.7 1175.4 5877 1986-02-03 2024-10-11 01:37:57.000 1986-02-03 2024-10-11 01:37:57 +5878 5878 5879 587.8 1175.6000000000001 5878 1986-02-04 2024-10-11 01:37:58.000 1986-02-04 2024-10-11 01:37:58 +5879 5879 5880 587.9 1175.8 5879 1986-02-05 2024-10-11 01:37:59.000 1986-02-05 2024-10-11 01:37:59 +5880 5880 5881 588 1176 5880 1986-02-06 2024-10-11 01:38:00.000 1986-02-06 2024-10-11 01:38:00 +5881 5881 5882 588.1 1176.2 5881 1986-02-07 2024-10-11 01:38:01.000 1986-02-07 2024-10-11 01:38:01 +5882 5882 5883 588.2 1176.4 5882 1986-02-08 2024-10-11 01:38:02.000 1986-02-08 2024-10-11 01:38:02 +5883 5883 5884 588.3 1176.6000000000001 5883 1986-02-09 2024-10-11 01:38:03.000 1986-02-09 2024-10-11 01:38:03 +5884 5884 5885 588.4 1176.8 5884 1986-02-10 2024-10-11 01:38:04.000 1986-02-10 2024-10-11 01:38:04 +5885 5885 5886 588.5 1177 5885 1986-02-11 2024-10-11 01:38:05.000 1986-02-11 2024-10-11 01:38:05 +5886 5886 5887 588.6 1177.2 5886 1986-02-12 2024-10-11 01:38:06.000 1986-02-12 2024-10-11 01:38:06 +5887 5887 5888 588.7 1177.4 5887 1986-02-13 2024-10-11 01:38:07.000 1986-02-13 2024-10-11 01:38:07 +5888 5888 5889 588.8 1177.6000000000001 5888 1986-02-14 2024-10-11 01:38:08.000 1986-02-14 2024-10-11 01:38:08 +5889 5889 5890 588.9 1177.8 5889 1986-02-15 2024-10-11 01:38:09.000 1986-02-15 2024-10-11 01:38:09 +5890 5890 5891 589 1178 5890 1986-02-16 2024-10-11 01:38:10.000 1986-02-16 2024-10-11 01:38:10 +5891 5891 5892 589.1 1178.2 5891 1986-02-17 2024-10-11 01:38:11.000 1986-02-17 2024-10-11 01:38:11 +5892 5892 5893 589.2 1178.4 5892 1986-02-18 2024-10-11 01:38:12.000 1986-02-18 2024-10-11 01:38:12 +5893 5893 5894 589.3 1178.6000000000001 5893 1986-02-19 2024-10-11 01:38:13.000 1986-02-19 2024-10-11 01:38:13 +5894 5894 5895 589.4 1178.8 5894 1986-02-20 2024-10-11 01:38:14.000 1986-02-20 2024-10-11 01:38:14 +5895 5895 5896 589.5 1179 5895 1986-02-21 2024-10-11 01:38:15.000 1986-02-21 2024-10-11 01:38:15 +5896 5896 5897 589.6 1179.2 5896 1986-02-22 2024-10-11 01:38:16.000 1986-02-22 2024-10-11 01:38:16 +5897 5897 5898 589.7 1179.4 5897 1986-02-23 2024-10-11 01:38:17.000 1986-02-23 2024-10-11 01:38:17 +5898 5898 5899 589.8 1179.6000000000001 5898 1986-02-24 2024-10-11 01:38:18.000 1986-02-24 2024-10-11 01:38:18 +5899 5899 5900 589.9 1179.8 5899 1986-02-25 2024-10-11 01:38:19.000 1986-02-25 2024-10-11 01:38:19 +5900 5900 5901 590 1180 5900 1986-02-26 2024-10-11 01:38:20.000 1986-02-26 2024-10-11 01:38:20 +5901 5901 5902 590.1 1180.2 5901 1986-02-27 2024-10-11 01:38:21.000 1986-02-27 2024-10-11 01:38:21 +5902 5902 5903 590.2 1180.4 5902 1986-02-28 2024-10-11 01:38:22.000 1986-02-28 2024-10-11 01:38:22 +5903 5903 5904 590.3 1180.6000000000001 5903 1986-03-01 2024-10-11 01:38:23.000 1986-03-01 2024-10-11 01:38:23 +5904 5904 5905 590.4 1180.8 5904 1986-03-02 2024-10-11 01:38:24.000 1986-03-02 2024-10-11 01:38:24 +5905 5905 5906 590.5 1181 5905 1986-03-03 2024-10-11 01:38:25.000 1986-03-03 2024-10-11 01:38:25 +5906 5906 5907 590.6 1181.2 5906 1986-03-04 2024-10-11 01:38:26.000 1986-03-04 2024-10-11 01:38:26 +5907 5907 5908 590.7 1181.4 5907 1986-03-05 2024-10-11 01:38:27.000 1986-03-05 2024-10-11 01:38:27 +5908 5908 5909 590.8 1181.6000000000001 5908 1986-03-06 2024-10-11 01:38:28.000 1986-03-06 2024-10-11 01:38:28 +5909 5909 5910 590.9 1181.8 5909 1986-03-07 2024-10-11 01:38:29.000 1986-03-07 2024-10-11 01:38:29 +5910 5910 5911 591 1182 5910 1986-03-08 2024-10-11 01:38:30.000 1986-03-08 2024-10-11 01:38:30 +5911 5911 5912 591.1 1182.2 5911 1986-03-09 2024-10-11 01:38:31.000 1986-03-09 2024-10-11 01:38:31 +5912 5912 5913 591.2 1182.4 5912 1986-03-10 2024-10-11 01:38:32.000 1986-03-10 2024-10-11 01:38:32 +5913 5913 5914 591.3 1182.6000000000001 5913 1986-03-11 2024-10-11 01:38:33.000 1986-03-11 2024-10-11 01:38:33 +5914 5914 5915 591.4 1182.8 5914 1986-03-12 2024-10-11 01:38:34.000 1986-03-12 2024-10-11 01:38:34 +5915 5915 5916 591.5 1183 5915 1986-03-13 2024-10-11 01:38:35.000 1986-03-13 2024-10-11 01:38:35 +5916 5916 5917 591.6 1183.2 5916 1986-03-14 2024-10-11 01:38:36.000 1986-03-14 2024-10-11 01:38:36 +5917 5917 5918 591.7 1183.4 5917 1986-03-15 2024-10-11 01:38:37.000 1986-03-15 2024-10-11 01:38:37 +5918 5918 5919 591.8 1183.6000000000001 5918 1986-03-16 2024-10-11 01:38:38.000 1986-03-16 2024-10-11 01:38:38 +5919 5919 5920 591.9 1183.8 5919 1986-03-17 2024-10-11 01:38:39.000 1986-03-17 2024-10-11 01:38:39 +5920 5920 5921 592 1184 5920 1986-03-18 2024-10-11 01:38:40.000 1986-03-18 2024-10-11 01:38:40 +5921 5921 5922 592.1 1184.2 5921 1986-03-19 2024-10-11 01:38:41.000 1986-03-19 2024-10-11 01:38:41 +5922 5922 5923 592.2 1184.4 5922 1986-03-20 2024-10-11 01:38:42.000 1986-03-20 2024-10-11 01:38:42 +5923 5923 5924 592.3 1184.6000000000001 5923 1986-03-21 2024-10-11 01:38:43.000 1986-03-21 2024-10-11 01:38:43 +5924 5924 5925 592.4 1184.8 5924 1986-03-22 2024-10-11 01:38:44.000 1986-03-22 2024-10-11 01:38:44 +5925 5925 5926 592.5 1185 5925 1986-03-23 2024-10-11 01:38:45.000 1986-03-23 2024-10-11 01:38:45 +5926 5926 5927 592.6 1185.2 5926 1986-03-24 2024-10-11 01:38:46.000 1986-03-24 2024-10-11 01:38:46 +5927 5927 5928 592.7 1185.4 5927 1986-03-25 2024-10-11 01:38:47.000 1986-03-25 2024-10-11 01:38:47 +5928 5928 5929 592.8 1185.6000000000001 5928 1986-03-26 2024-10-11 01:38:48.000 1986-03-26 2024-10-11 01:38:48 +5929 5929 5930 592.9 1185.8 5929 1986-03-27 2024-10-11 01:38:49.000 1986-03-27 2024-10-11 01:38:49 +5930 5930 5931 593 1186 5930 1986-03-28 2024-10-11 01:38:50.000 1986-03-28 2024-10-11 01:38:50 +5931 5931 5932 593.1 1186.2 5931 1986-03-29 2024-10-11 01:38:51.000 1986-03-29 2024-10-11 01:38:51 +5932 5932 5933 593.2 1186.4 5932 1986-03-30 2024-10-11 01:38:52.000 1986-03-30 2024-10-11 01:38:52 +5933 5933 5934 593.3 1186.6000000000001 5933 1986-03-31 2024-10-11 01:38:53.000 1986-03-31 2024-10-11 01:38:53 +5934 5934 5935 593.4 1186.8 5934 1986-04-01 2024-10-11 01:38:54.000 1986-04-01 2024-10-11 01:38:54 +5935 5935 5936 593.5 1187 5935 1986-04-02 2024-10-11 01:38:55.000 1986-04-02 2024-10-11 01:38:55 +5936 5936 5937 593.6 1187.2 5936 1986-04-03 2024-10-11 01:38:56.000 1986-04-03 2024-10-11 01:38:56 +5937 5937 5938 593.7 1187.4 5937 1986-04-04 2024-10-11 01:38:57.000 1986-04-04 2024-10-11 01:38:57 +5938 5938 5939 593.8 1187.6000000000001 5938 1986-04-05 2024-10-11 01:38:58.000 1986-04-05 2024-10-11 01:38:58 +5939 5939 5940 593.9 1187.8 5939 1986-04-06 2024-10-11 01:38:59.000 1986-04-06 2024-10-11 01:38:59 +5940 5940 5941 594 1188 5940 1986-04-07 2024-10-11 01:39:00.000 1986-04-07 2024-10-11 01:39:00 +5941 5941 5942 594.1 1188.2 5941 1986-04-08 2024-10-11 01:39:01.000 1986-04-08 2024-10-11 01:39:01 +5942 5942 5943 594.2 1188.4 5942 1986-04-09 2024-10-11 01:39:02.000 1986-04-09 2024-10-11 01:39:02 +5943 5943 5944 594.3 1188.6000000000001 5943 1986-04-10 2024-10-11 01:39:03.000 1986-04-10 2024-10-11 01:39:03 +5944 5944 5945 594.4 1188.8 5944 1986-04-11 2024-10-11 01:39:04.000 1986-04-11 2024-10-11 01:39:04 +5945 5945 5946 594.5 1189 5945 1986-04-12 2024-10-11 01:39:05.000 1986-04-12 2024-10-11 01:39:05 +5946 5946 5947 594.6 1189.2 5946 1986-04-13 2024-10-11 01:39:06.000 1986-04-13 2024-10-11 01:39:06 +5947 5947 5948 594.7 1189.4 5947 1986-04-14 2024-10-11 01:39:07.000 1986-04-14 2024-10-11 01:39:07 +5948 5948 5949 594.8 1189.6000000000001 5948 1986-04-15 2024-10-11 01:39:08.000 1986-04-15 2024-10-11 01:39:08 +5949 5949 5950 594.9 1189.8 5949 1986-04-16 2024-10-11 01:39:09.000 1986-04-16 2024-10-11 01:39:09 +5950 5950 5951 595 1190 5950 1986-04-17 2024-10-11 01:39:10.000 1986-04-17 2024-10-11 01:39:10 +5951 5951 5952 595.1 1190.2 5951 1986-04-18 2024-10-11 01:39:11.000 1986-04-18 2024-10-11 01:39:11 +5952 5952 5953 595.2 1190.4 5952 1986-04-19 2024-10-11 01:39:12.000 1986-04-19 2024-10-11 01:39:12 +5953 5953 5954 595.3 1190.6000000000001 5953 1986-04-20 2024-10-11 01:39:13.000 1986-04-20 2024-10-11 01:39:13 +5954 5954 5955 595.4 1190.8 5954 1986-04-21 2024-10-11 01:39:14.000 1986-04-21 2024-10-11 01:39:14 +5955 5955 5956 595.5 1191 5955 1986-04-22 2024-10-11 01:39:15.000 1986-04-22 2024-10-11 01:39:15 +5956 5956 5957 595.6 1191.2 5956 1986-04-23 2024-10-11 01:39:16.000 1986-04-23 2024-10-11 01:39:16 +5957 5957 5958 595.7 1191.4 5957 1986-04-24 2024-10-11 01:39:17.000 1986-04-24 2024-10-11 01:39:17 +5958 5958 5959 595.8 1191.6000000000001 5958 1986-04-25 2024-10-11 01:39:18.000 1986-04-25 2024-10-11 01:39:18 +5959 5959 5960 595.9 1191.8 5959 1986-04-26 2024-10-11 01:39:19.000 1986-04-26 2024-10-11 01:39:19 +5960 5960 5961 596 1192 5960 1986-04-27 2024-10-11 01:39:20.000 1986-04-27 2024-10-11 01:39:20 +5961 5961 5962 596.1 1192.2 5961 1986-04-28 2024-10-11 01:39:21.000 1986-04-28 2024-10-11 01:39:21 +5962 5962 5963 596.2 1192.4 5962 1986-04-29 2024-10-11 01:39:22.000 1986-04-29 2024-10-11 01:39:22 +5963 5963 5964 596.3 1192.6000000000001 5963 1986-04-30 2024-10-11 01:39:23.000 1986-04-30 2024-10-11 01:39:23 +5964 5964 5965 596.4 1192.8 5964 1986-05-01 2024-10-11 01:39:24.000 1986-05-01 2024-10-11 01:39:24 +5965 5965 5966 596.5 1193 5965 1986-05-02 2024-10-11 01:39:25.000 1986-05-02 2024-10-11 01:39:25 +5966 5966 5967 596.6 1193.2 5966 1986-05-03 2024-10-11 01:39:26.000 1986-05-03 2024-10-11 01:39:26 +5967 5967 5968 596.7 1193.4 5967 1986-05-04 2024-10-11 01:39:27.000 1986-05-04 2024-10-11 01:39:27 +5968 5968 5969 596.8 1193.6000000000001 5968 1986-05-05 2024-10-11 01:39:28.000 1986-05-05 2024-10-11 01:39:28 +5969 5969 5970 596.9 1193.8 5969 1986-05-06 2024-10-11 01:39:29.000 1986-05-06 2024-10-11 01:39:29 +5970 5970 5971 597 1194 5970 1986-05-07 2024-10-11 01:39:30.000 1986-05-07 2024-10-11 01:39:30 +5971 5971 5972 597.1 1194.2 5971 1986-05-08 2024-10-11 01:39:31.000 1986-05-08 2024-10-11 01:39:31 +5972 5972 5973 597.2 1194.4 5972 1986-05-09 2024-10-11 01:39:32.000 1986-05-09 2024-10-11 01:39:32 +5973 5973 5974 597.3 1194.6000000000001 5973 1986-05-10 2024-10-11 01:39:33.000 1986-05-10 2024-10-11 01:39:33 +5974 5974 5975 597.4 1194.8 5974 1986-05-11 2024-10-11 01:39:34.000 1986-05-11 2024-10-11 01:39:34 +5975 5975 5976 597.5 1195 5975 1986-05-12 2024-10-11 01:39:35.000 1986-05-12 2024-10-11 01:39:35 +5976 5976 5977 597.6 1195.2 5976 1986-05-13 2024-10-11 01:39:36.000 1986-05-13 2024-10-11 01:39:36 +5977 5977 5978 597.7 1195.4 5977 1986-05-14 2024-10-11 01:39:37.000 1986-05-14 2024-10-11 01:39:37 +5978 5978 5979 597.8 1195.6000000000001 5978 1986-05-15 2024-10-11 01:39:38.000 1986-05-15 2024-10-11 01:39:38 +5979 5979 5980 597.9 1195.8 5979 1986-05-16 2024-10-11 01:39:39.000 1986-05-16 2024-10-11 01:39:39 +5980 5980 5981 598 1196 5980 1986-05-17 2024-10-11 01:39:40.000 1986-05-17 2024-10-11 01:39:40 +5981 5981 5982 598.1 1196.2 5981 1986-05-18 2024-10-11 01:39:41.000 1986-05-18 2024-10-11 01:39:41 +5982 5982 5983 598.2 1196.4 5982 1986-05-19 2024-10-11 01:39:42.000 1986-05-19 2024-10-11 01:39:42 +5983 5983 5984 598.3 1196.6000000000001 5983 1986-05-20 2024-10-11 01:39:43.000 1986-05-20 2024-10-11 01:39:43 +5984 5984 5985 598.4 1196.8 5984 1986-05-21 2024-10-11 01:39:44.000 1986-05-21 2024-10-11 01:39:44 +5985 5985 5986 598.5 1197 5985 1986-05-22 2024-10-11 01:39:45.000 1986-05-22 2024-10-11 01:39:45 +5986 5986 5987 598.6 1197.2 5986 1986-05-23 2024-10-11 01:39:46.000 1986-05-23 2024-10-11 01:39:46 +5987 5987 5988 598.7 1197.4 5987 1986-05-24 2024-10-11 01:39:47.000 1986-05-24 2024-10-11 01:39:47 +5988 5988 5989 598.8 1197.6000000000001 5988 1986-05-25 2024-10-11 01:39:48.000 1986-05-25 2024-10-11 01:39:48 +5989 5989 5990 598.9 1197.8 5989 1986-05-26 2024-10-11 01:39:49.000 1986-05-26 2024-10-11 01:39:49 +5990 5990 5991 599 1198 5990 1986-05-27 2024-10-11 01:39:50.000 1986-05-27 2024-10-11 01:39:50 +5991 5991 5992 599.1 1198.2 5991 1986-05-28 2024-10-11 01:39:51.000 1986-05-28 2024-10-11 01:39:51 +5992 5992 5993 599.2 1198.4 5992 1986-05-29 2024-10-11 01:39:52.000 1986-05-29 2024-10-11 01:39:52 +5993 5993 5994 599.3 1198.6000000000001 5993 1986-05-30 2024-10-11 01:39:53.000 1986-05-30 2024-10-11 01:39:53 +5994 5994 5995 599.4 1198.8 5994 1986-05-31 2024-10-11 01:39:54.000 1986-05-31 2024-10-11 01:39:54 +5995 5995 5996 599.5 1199 5995 1986-06-01 2024-10-11 01:39:55.000 1986-06-01 2024-10-11 01:39:55 +5996 5996 5997 599.6 1199.2 5996 1986-06-02 2024-10-11 01:39:56.000 1986-06-02 2024-10-11 01:39:56 +5997 5997 5998 599.7 1199.4 5997 1986-06-03 2024-10-11 01:39:57.000 1986-06-03 2024-10-11 01:39:57 +5998 5998 5999 599.8 1199.6000000000001 5998 1986-06-04 2024-10-11 01:39:58.000 1986-06-04 2024-10-11 01:39:58 +5999 5999 6000 599.9 1199.8 5999 1986-06-05 2024-10-11 01:39:59.000 1986-06-05 2024-10-11 01:39:59 +6000 6000 6001 600 1200 6000 1986-06-06 2024-10-11 01:40:00.000 1986-06-06 2024-10-11 01:40:00 +6001 6001 6002 600.1 1200.2 6001 1986-06-07 2024-10-11 01:40:01.000 1986-06-07 2024-10-11 01:40:01 +6002 6002 6003 600.2 1200.4 6002 1986-06-08 2024-10-11 01:40:02.000 1986-06-08 2024-10-11 01:40:02 +6003 6003 6004 600.3 1200.6000000000001 6003 1986-06-09 2024-10-11 01:40:03.000 1986-06-09 2024-10-11 01:40:03 +6004 6004 6005 600.4 1200.8 6004 1986-06-10 2024-10-11 01:40:04.000 1986-06-10 2024-10-11 01:40:04 +6005 6005 6006 600.5 1201 6005 1986-06-11 2024-10-11 01:40:05.000 1986-06-11 2024-10-11 01:40:05 +6006 6006 6007 600.6 1201.2 6006 1986-06-12 2024-10-11 01:40:06.000 1986-06-12 2024-10-11 01:40:06 +6007 6007 6008 600.7 1201.4 6007 1986-06-13 2024-10-11 01:40:07.000 1986-06-13 2024-10-11 01:40:07 +6008 6008 6009 600.8 1201.6000000000001 6008 1986-06-14 2024-10-11 01:40:08.000 1986-06-14 2024-10-11 01:40:08 +6009 6009 6010 600.9 1201.8 6009 1986-06-15 2024-10-11 01:40:09.000 1986-06-15 2024-10-11 01:40:09 +6010 6010 6011 601 1202 6010 1986-06-16 2024-10-11 01:40:10.000 1986-06-16 2024-10-11 01:40:10 +6011 6011 6012 601.1 1202.2 6011 1986-06-17 2024-10-11 01:40:11.000 1986-06-17 2024-10-11 01:40:11 +6012 6012 6013 601.2 1202.4 6012 1986-06-18 2024-10-11 01:40:12.000 1986-06-18 2024-10-11 01:40:12 +6013 6013 6014 601.3 1202.6000000000001 6013 1986-06-19 2024-10-11 01:40:13.000 1986-06-19 2024-10-11 01:40:13 +6014 6014 6015 601.4 1202.8 6014 1986-06-20 2024-10-11 01:40:14.000 1986-06-20 2024-10-11 01:40:14 +6015 6015 6016 601.5 1203 6015 1986-06-21 2024-10-11 01:40:15.000 1986-06-21 2024-10-11 01:40:15 +6016 6016 6017 601.6 1203.2 6016 1986-06-22 2024-10-11 01:40:16.000 1986-06-22 2024-10-11 01:40:16 +6017 6017 6018 601.7 1203.4 6017 1986-06-23 2024-10-11 01:40:17.000 1986-06-23 2024-10-11 01:40:17 +6018 6018 6019 601.8 1203.6000000000001 6018 1986-06-24 2024-10-11 01:40:18.000 1986-06-24 2024-10-11 01:40:18 +6019 6019 6020 601.9 1203.8 6019 1986-06-25 2024-10-11 01:40:19.000 1986-06-25 2024-10-11 01:40:19 +6020 6020 6021 602 1204 6020 1986-06-26 2024-10-11 01:40:20.000 1986-06-26 2024-10-11 01:40:20 +6021 6021 6022 602.1 1204.2 6021 1986-06-27 2024-10-11 01:40:21.000 1986-06-27 2024-10-11 01:40:21 +6022 6022 6023 602.2 1204.4 6022 1986-06-28 2024-10-11 01:40:22.000 1986-06-28 2024-10-11 01:40:22 +6023 6023 6024 602.3 1204.6000000000001 6023 1986-06-29 2024-10-11 01:40:23.000 1986-06-29 2024-10-11 01:40:23 +6024 6024 6025 602.4 1204.8 6024 1986-06-30 2024-10-11 01:40:24.000 1986-06-30 2024-10-11 01:40:24 +6025 6025 6026 602.5 1205 6025 1986-07-01 2024-10-11 01:40:25.000 1986-07-01 2024-10-11 01:40:25 +6026 6026 6027 602.6 1205.2 6026 1986-07-02 2024-10-11 01:40:26.000 1986-07-02 2024-10-11 01:40:26 +6027 6027 6028 602.7 1205.4 6027 1986-07-03 2024-10-11 01:40:27.000 1986-07-03 2024-10-11 01:40:27 +6028 6028 6029 602.8 1205.6000000000001 6028 1986-07-04 2024-10-11 01:40:28.000 1986-07-04 2024-10-11 01:40:28 +6029 6029 6030 602.9 1205.8 6029 1986-07-05 2024-10-11 01:40:29.000 1986-07-05 2024-10-11 01:40:29 +6030 6030 6031 603 1206 6030 1986-07-06 2024-10-11 01:40:30.000 1986-07-06 2024-10-11 01:40:30 +6031 6031 6032 603.1 1206.2 6031 1986-07-07 2024-10-11 01:40:31.000 1986-07-07 2024-10-11 01:40:31 +6032 6032 6033 603.2 1206.4 6032 1986-07-08 2024-10-11 01:40:32.000 1986-07-08 2024-10-11 01:40:32 +6033 6033 6034 603.3 1206.6000000000001 6033 1986-07-09 2024-10-11 01:40:33.000 1986-07-09 2024-10-11 01:40:33 +6034 6034 6035 603.4 1206.8 6034 1986-07-10 2024-10-11 01:40:34.000 1986-07-10 2024-10-11 01:40:34 +6035 6035 6036 603.5 1207 6035 1986-07-11 2024-10-11 01:40:35.000 1986-07-11 2024-10-11 01:40:35 +6036 6036 6037 603.6 1207.2 6036 1986-07-12 2024-10-11 01:40:36.000 1986-07-12 2024-10-11 01:40:36 +6037 6037 6038 603.7 1207.4 6037 1986-07-13 2024-10-11 01:40:37.000 1986-07-13 2024-10-11 01:40:37 +6038 6038 6039 603.8 1207.6000000000001 6038 1986-07-14 2024-10-11 01:40:38.000 1986-07-14 2024-10-11 01:40:38 +6039 6039 6040 603.9 1207.8 6039 1986-07-15 2024-10-11 01:40:39.000 1986-07-15 2024-10-11 01:40:39 +6040 6040 6041 604 1208 6040 1986-07-16 2024-10-11 01:40:40.000 1986-07-16 2024-10-11 01:40:40 +6041 6041 6042 604.1 1208.2 6041 1986-07-17 2024-10-11 01:40:41.000 1986-07-17 2024-10-11 01:40:41 +6042 6042 6043 604.2 1208.4 6042 1986-07-18 2024-10-11 01:40:42.000 1986-07-18 2024-10-11 01:40:42 +6043 6043 6044 604.3 1208.6000000000001 6043 1986-07-19 2024-10-11 01:40:43.000 1986-07-19 2024-10-11 01:40:43 +6044 6044 6045 604.4 1208.8 6044 1986-07-20 2024-10-11 01:40:44.000 1986-07-20 2024-10-11 01:40:44 +6045 6045 6046 604.5 1209 6045 1986-07-21 2024-10-11 01:40:45.000 1986-07-21 2024-10-11 01:40:45 +6046 6046 6047 604.6 1209.2 6046 1986-07-22 2024-10-11 01:40:46.000 1986-07-22 2024-10-11 01:40:46 +6047 6047 6048 604.7 1209.4 6047 1986-07-23 2024-10-11 01:40:47.000 1986-07-23 2024-10-11 01:40:47 +6048 6048 6049 604.8 1209.6000000000001 6048 1986-07-24 2024-10-11 01:40:48.000 1986-07-24 2024-10-11 01:40:48 +6049 6049 6050 604.9 1209.8 6049 1986-07-25 2024-10-11 01:40:49.000 1986-07-25 2024-10-11 01:40:49 +6050 6050 6051 605 1210 6050 1986-07-26 2024-10-11 01:40:50.000 1986-07-26 2024-10-11 01:40:50 +6051 6051 6052 605.1 1210.2 6051 1986-07-27 2024-10-11 01:40:51.000 1986-07-27 2024-10-11 01:40:51 +6052 6052 6053 605.2 1210.4 6052 1986-07-28 2024-10-11 01:40:52.000 1986-07-28 2024-10-11 01:40:52 +6053 6053 6054 605.3 1210.6000000000001 6053 1986-07-29 2024-10-11 01:40:53.000 1986-07-29 2024-10-11 01:40:53 +6054 6054 6055 605.4 1210.8 6054 1986-07-30 2024-10-11 01:40:54.000 1986-07-30 2024-10-11 01:40:54 +6055 6055 6056 605.5 1211 6055 1986-07-31 2024-10-11 01:40:55.000 1986-07-31 2024-10-11 01:40:55 +6056 6056 6057 605.6 1211.2 6056 1986-08-01 2024-10-11 01:40:56.000 1986-08-01 2024-10-11 01:40:56 +6057 6057 6058 605.7 1211.4 6057 1986-08-02 2024-10-11 01:40:57.000 1986-08-02 2024-10-11 01:40:57 +6058 6058 6059 605.8 1211.6000000000001 6058 1986-08-03 2024-10-11 01:40:58.000 1986-08-03 2024-10-11 01:40:58 +6059 6059 6060 605.9 1211.8 6059 1986-08-04 2024-10-11 01:40:59.000 1986-08-04 2024-10-11 01:40:59 +6060 6060 6061 606 1212 6060 1986-08-05 2024-10-11 01:41:00.000 1986-08-05 2024-10-11 01:41:00 +6061 6061 6062 606.1 1212.2 6061 1986-08-06 2024-10-11 01:41:01.000 1986-08-06 2024-10-11 01:41:01 +6062 6062 6063 606.2 1212.4 6062 1986-08-07 2024-10-11 01:41:02.000 1986-08-07 2024-10-11 01:41:02 +6063 6063 6064 606.3 1212.6000000000001 6063 1986-08-08 2024-10-11 01:41:03.000 1986-08-08 2024-10-11 01:41:03 +6064 6064 6065 606.4 1212.8 6064 1986-08-09 2024-10-11 01:41:04.000 1986-08-09 2024-10-11 01:41:04 +6065 6065 6066 606.5 1213 6065 1986-08-10 2024-10-11 01:41:05.000 1986-08-10 2024-10-11 01:41:05 +6066 6066 6067 606.6 1213.2 6066 1986-08-11 2024-10-11 01:41:06.000 1986-08-11 2024-10-11 01:41:06 +6067 6067 6068 606.7 1213.4 6067 1986-08-12 2024-10-11 01:41:07.000 1986-08-12 2024-10-11 01:41:07 +6068 6068 6069 606.8 1213.6000000000001 6068 1986-08-13 2024-10-11 01:41:08.000 1986-08-13 2024-10-11 01:41:08 +6069 6069 6070 606.9 1213.8 6069 1986-08-14 2024-10-11 01:41:09.000 1986-08-14 2024-10-11 01:41:09 +6070 6070 6071 607 1214 6070 1986-08-15 2024-10-11 01:41:10.000 1986-08-15 2024-10-11 01:41:10 +6071 6071 6072 607.1 1214.2 6071 1986-08-16 2024-10-11 01:41:11.000 1986-08-16 2024-10-11 01:41:11 +6072 6072 6073 607.2 1214.4 6072 1986-08-17 2024-10-11 01:41:12.000 1986-08-17 2024-10-11 01:41:12 +6073 6073 6074 607.3 1214.6000000000001 6073 1986-08-18 2024-10-11 01:41:13.000 1986-08-18 2024-10-11 01:41:13 +6074 6074 6075 607.4 1214.8 6074 1986-08-19 2024-10-11 01:41:14.000 1986-08-19 2024-10-11 01:41:14 +6075 6075 6076 607.5 1215 6075 1986-08-20 2024-10-11 01:41:15.000 1986-08-20 2024-10-11 01:41:15 +6076 6076 6077 607.6 1215.2 6076 1986-08-21 2024-10-11 01:41:16.000 1986-08-21 2024-10-11 01:41:16 +6077 6077 6078 607.7 1215.4 6077 1986-08-22 2024-10-11 01:41:17.000 1986-08-22 2024-10-11 01:41:17 +6078 6078 6079 607.8 1215.6000000000001 6078 1986-08-23 2024-10-11 01:41:18.000 1986-08-23 2024-10-11 01:41:18 +6079 6079 6080 607.9 1215.8 6079 1986-08-24 2024-10-11 01:41:19.000 1986-08-24 2024-10-11 01:41:19 +6080 6080 6081 608 1216 6080 1986-08-25 2024-10-11 01:41:20.000 1986-08-25 2024-10-11 01:41:20 +6081 6081 6082 608.1 1216.2 6081 1986-08-26 2024-10-11 01:41:21.000 1986-08-26 2024-10-11 01:41:21 +6082 6082 6083 608.2 1216.4 6082 1986-08-27 2024-10-11 01:41:22.000 1986-08-27 2024-10-11 01:41:22 +6083 6083 6084 608.3 1216.6000000000001 6083 1986-08-28 2024-10-11 01:41:23.000 1986-08-28 2024-10-11 01:41:23 +6084 6084 6085 608.4 1216.8 6084 1986-08-29 2024-10-11 01:41:24.000 1986-08-29 2024-10-11 01:41:24 +6085 6085 6086 608.5 1217 6085 1986-08-30 2024-10-11 01:41:25.000 1986-08-30 2024-10-11 01:41:25 +6086 6086 6087 608.6 1217.2 6086 1986-08-31 2024-10-11 01:41:26.000 1986-08-31 2024-10-11 01:41:26 +6087 6087 6088 608.7 1217.4 6087 1986-09-01 2024-10-11 01:41:27.000 1986-09-01 2024-10-11 01:41:27 +6088 6088 6089 608.8 1217.6000000000001 6088 1986-09-02 2024-10-11 01:41:28.000 1986-09-02 2024-10-11 01:41:28 +6089 6089 6090 608.9 1217.8 6089 1986-09-03 2024-10-11 01:41:29.000 1986-09-03 2024-10-11 01:41:29 +6090 6090 6091 609 1218 6090 1986-09-04 2024-10-11 01:41:30.000 1986-09-04 2024-10-11 01:41:30 +6091 6091 6092 609.1 1218.2 6091 1986-09-05 2024-10-11 01:41:31.000 1986-09-05 2024-10-11 01:41:31 +6092 6092 6093 609.2 1218.4 6092 1986-09-06 2024-10-11 01:41:32.000 1986-09-06 2024-10-11 01:41:32 +6093 6093 6094 609.3 1218.6000000000001 6093 1986-09-07 2024-10-11 01:41:33.000 1986-09-07 2024-10-11 01:41:33 +6094 6094 6095 609.4 1218.8 6094 1986-09-08 2024-10-11 01:41:34.000 1986-09-08 2024-10-11 01:41:34 +6095 6095 6096 609.5 1219 6095 1986-09-09 2024-10-11 01:41:35.000 1986-09-09 2024-10-11 01:41:35 +6096 6096 6097 609.6 1219.2 6096 1986-09-10 2024-10-11 01:41:36.000 1986-09-10 2024-10-11 01:41:36 +6097 6097 6098 609.7 1219.4 6097 1986-09-11 2024-10-11 01:41:37.000 1986-09-11 2024-10-11 01:41:37 +6098 6098 6099 609.8 1219.6000000000001 6098 1986-09-12 2024-10-11 01:41:38.000 1986-09-12 2024-10-11 01:41:38 +6099 6099 6100 609.9 1219.8 6099 1986-09-13 2024-10-11 01:41:39.000 1986-09-13 2024-10-11 01:41:39 +6100 6100 6101 610 1220 6100 1986-09-14 2024-10-11 01:41:40.000 1986-09-14 2024-10-11 01:41:40 +6101 6101 6102 610.1 1220.2 6101 1986-09-15 2024-10-11 01:41:41.000 1986-09-15 2024-10-11 01:41:41 +6102 6102 6103 610.2 1220.4 6102 1986-09-16 2024-10-11 01:41:42.000 1986-09-16 2024-10-11 01:41:42 +6103 6103 6104 610.3 1220.6000000000001 6103 1986-09-17 2024-10-11 01:41:43.000 1986-09-17 2024-10-11 01:41:43 +6104 6104 6105 610.4 1220.8 6104 1986-09-18 2024-10-11 01:41:44.000 1986-09-18 2024-10-11 01:41:44 +6105 6105 6106 610.5 1221 6105 1986-09-19 2024-10-11 01:41:45.000 1986-09-19 2024-10-11 01:41:45 +6106 6106 6107 610.6 1221.2 6106 1986-09-20 2024-10-11 01:41:46.000 1986-09-20 2024-10-11 01:41:46 +6107 6107 6108 610.7 1221.4 6107 1986-09-21 2024-10-11 01:41:47.000 1986-09-21 2024-10-11 01:41:47 +6108 6108 6109 610.8 1221.6000000000001 6108 1986-09-22 2024-10-11 01:41:48.000 1986-09-22 2024-10-11 01:41:48 +6109 6109 6110 610.9 1221.8 6109 1986-09-23 2024-10-11 01:41:49.000 1986-09-23 2024-10-11 01:41:49 +6110 6110 6111 611 1222 6110 1986-09-24 2024-10-11 01:41:50.000 1986-09-24 2024-10-11 01:41:50 +6111 6111 6112 611.1 1222.2 6111 1986-09-25 2024-10-11 01:41:51.000 1986-09-25 2024-10-11 01:41:51 +6112 6112 6113 611.2 1222.4 6112 1986-09-26 2024-10-11 01:41:52.000 1986-09-26 2024-10-11 01:41:52 +6113 6113 6114 611.3 1222.6000000000001 6113 1986-09-27 2024-10-11 01:41:53.000 1986-09-27 2024-10-11 01:41:53 +6114 6114 6115 611.4 1222.8 6114 1986-09-28 2024-10-11 01:41:54.000 1986-09-28 2024-10-11 01:41:54 +6115 6115 6116 611.5 1223 6115 1986-09-29 2024-10-11 01:41:55.000 1986-09-29 2024-10-11 01:41:55 +6116 6116 6117 611.6 1223.2 6116 1986-09-30 2024-10-11 01:41:56.000 1986-09-30 2024-10-11 01:41:56 +6117 6117 6118 611.7 1223.4 6117 1986-10-01 2024-10-11 01:41:57.000 1986-10-01 2024-10-11 01:41:57 +6118 6118 6119 611.8 1223.6000000000001 6118 1986-10-02 2024-10-11 01:41:58.000 1986-10-02 2024-10-11 01:41:58 +6119 6119 6120 611.9 1223.8 6119 1986-10-03 2024-10-11 01:41:59.000 1986-10-03 2024-10-11 01:41:59 +6120 6120 6121 612 1224 6120 1986-10-04 2024-10-11 01:42:00.000 1986-10-04 2024-10-11 01:42:00 +6121 6121 6122 612.1 1224.2 6121 1986-10-05 2024-10-11 01:42:01.000 1986-10-05 2024-10-11 01:42:01 +6122 6122 6123 612.2 1224.4 6122 1986-10-06 2024-10-11 01:42:02.000 1986-10-06 2024-10-11 01:42:02 +6123 6123 6124 612.3 1224.6000000000001 6123 1986-10-07 2024-10-11 01:42:03.000 1986-10-07 2024-10-11 01:42:03 +6124 6124 6125 612.4 1224.8 6124 1986-10-08 2024-10-11 01:42:04.000 1986-10-08 2024-10-11 01:42:04 +6125 6125 6126 612.5 1225 6125 1986-10-09 2024-10-11 01:42:05.000 1986-10-09 2024-10-11 01:42:05 +6126 6126 6127 612.6 1225.2 6126 1986-10-10 2024-10-11 01:42:06.000 1986-10-10 2024-10-11 01:42:06 +6127 6127 6128 612.7 1225.4 6127 1986-10-11 2024-10-11 01:42:07.000 1986-10-11 2024-10-11 01:42:07 +6128 6128 6129 612.8 1225.6000000000001 6128 1986-10-12 2024-10-11 01:42:08.000 1986-10-12 2024-10-11 01:42:08 +6129 6129 6130 612.9 1225.8 6129 1986-10-13 2024-10-11 01:42:09.000 1986-10-13 2024-10-11 01:42:09 +6130 6130 6131 613 1226 6130 1986-10-14 2024-10-11 01:42:10.000 1986-10-14 2024-10-11 01:42:10 +6131 6131 6132 613.1 1226.2 6131 1986-10-15 2024-10-11 01:42:11.000 1986-10-15 2024-10-11 01:42:11 +6132 6132 6133 613.2 1226.4 6132 1986-10-16 2024-10-11 01:42:12.000 1986-10-16 2024-10-11 01:42:12 +6133 6133 6134 613.3 1226.6000000000001 6133 1986-10-17 2024-10-11 01:42:13.000 1986-10-17 2024-10-11 01:42:13 +6134 6134 6135 613.4 1226.8 6134 1986-10-18 2024-10-11 01:42:14.000 1986-10-18 2024-10-11 01:42:14 +6135 6135 6136 613.5 1227 6135 1986-10-19 2024-10-11 01:42:15.000 1986-10-19 2024-10-11 01:42:15 +6136 6136 6137 613.6 1227.2 6136 1986-10-20 2024-10-11 01:42:16.000 1986-10-20 2024-10-11 01:42:16 +6137 6137 6138 613.7 1227.4 6137 1986-10-21 2024-10-11 01:42:17.000 1986-10-21 2024-10-11 01:42:17 +6138 6138 6139 613.8 1227.6000000000001 6138 1986-10-22 2024-10-11 01:42:18.000 1986-10-22 2024-10-11 01:42:18 +6139 6139 6140 613.9 1227.8 6139 1986-10-23 2024-10-11 01:42:19.000 1986-10-23 2024-10-11 01:42:19 +6140 6140 6141 614 1228 6140 1986-10-24 2024-10-11 01:42:20.000 1986-10-24 2024-10-11 01:42:20 +6141 6141 6142 614.1 1228.2 6141 1986-10-25 2024-10-11 01:42:21.000 1986-10-25 2024-10-11 01:42:21 +6142 6142 6143 614.2 1228.4 6142 1986-10-26 2024-10-11 01:42:22.000 1986-10-26 2024-10-11 01:42:22 +6143 6143 6144 614.3 1228.6000000000001 6143 1986-10-27 2024-10-11 01:42:23.000 1986-10-27 2024-10-11 01:42:23 +6144 6144 6145 614.4 1228.8000000000002 6144 1986-10-28 2024-10-11 01:42:24.000 1986-10-28 2024-10-11 01:42:24 +6145 6145 6146 614.5 1229 6145 1986-10-29 2024-10-11 01:42:25.000 1986-10-29 2024-10-11 01:42:25 +6146 6146 6147 614.6 1229.2 6146 1986-10-30 2024-10-11 01:42:26.000 1986-10-30 2024-10-11 01:42:26 +6147 6147 6148 614.7 1229.4 6147 1986-10-31 2024-10-11 01:42:27.000 1986-10-31 2024-10-11 01:42:27 +6148 6148 6149 614.8 1229.6000000000001 6148 1986-11-01 2024-10-11 01:42:28.000 1986-11-01 2024-10-11 01:42:28 +6149 6149 6150 614.9 1229.8000000000002 6149 1986-11-02 2024-10-11 01:42:29.000 1986-11-02 2024-10-11 01:42:29 +6150 6150 6151 615 1230 6150 1986-11-03 2024-10-11 01:42:30.000 1986-11-03 2024-10-11 01:42:30 +6151 6151 6152 615.1 1230.2 6151 1986-11-04 2024-10-11 01:42:31.000 1986-11-04 2024-10-11 01:42:31 +6152 6152 6153 615.2 1230.4 6152 1986-11-05 2024-10-11 01:42:32.000 1986-11-05 2024-10-11 01:42:32 +6153 6153 6154 615.3 1230.6000000000001 6153 1986-11-06 2024-10-11 01:42:33.000 1986-11-06 2024-10-11 01:42:33 +6154 6154 6155 615.4 1230.8000000000002 6154 1986-11-07 2024-10-11 01:42:34.000 1986-11-07 2024-10-11 01:42:34 +6155 6155 6156 615.5 1231 6155 1986-11-08 2024-10-11 01:42:35.000 1986-11-08 2024-10-11 01:42:35 +6156 6156 6157 615.6 1231.2 6156 1986-11-09 2024-10-11 01:42:36.000 1986-11-09 2024-10-11 01:42:36 +6157 6157 6158 615.7 1231.4 6157 1986-11-10 2024-10-11 01:42:37.000 1986-11-10 2024-10-11 01:42:37 +6158 6158 6159 615.8 1231.6000000000001 6158 1986-11-11 2024-10-11 01:42:38.000 1986-11-11 2024-10-11 01:42:38 +6159 6159 6160 615.9 1231.8000000000002 6159 1986-11-12 2024-10-11 01:42:39.000 1986-11-12 2024-10-11 01:42:39 +6160 6160 6161 616 1232 6160 1986-11-13 2024-10-11 01:42:40.000 1986-11-13 2024-10-11 01:42:40 +6161 6161 6162 616.1 1232.2 6161 1986-11-14 2024-10-11 01:42:41.000 1986-11-14 2024-10-11 01:42:41 +6162 6162 6163 616.2 1232.4 6162 1986-11-15 2024-10-11 01:42:42.000 1986-11-15 2024-10-11 01:42:42 +6163 6163 6164 616.3 1232.6000000000001 6163 1986-11-16 2024-10-11 01:42:43.000 1986-11-16 2024-10-11 01:42:43 +6164 6164 6165 616.4 1232.8000000000002 6164 1986-11-17 2024-10-11 01:42:44.000 1986-11-17 2024-10-11 01:42:44 +6165 6165 6166 616.5 1233 6165 1986-11-18 2024-10-11 01:42:45.000 1986-11-18 2024-10-11 01:42:45 +6166 6166 6167 616.6 1233.2 6166 1986-11-19 2024-10-11 01:42:46.000 1986-11-19 2024-10-11 01:42:46 +6167 6167 6168 616.7 1233.4 6167 1986-11-20 2024-10-11 01:42:47.000 1986-11-20 2024-10-11 01:42:47 +6168 6168 6169 616.8 1233.6000000000001 6168 1986-11-21 2024-10-11 01:42:48.000 1986-11-21 2024-10-11 01:42:48 +6169 6169 6170 616.9 1233.8000000000002 6169 1986-11-22 2024-10-11 01:42:49.000 1986-11-22 2024-10-11 01:42:49 +6170 6170 6171 617 1234 6170 1986-11-23 2024-10-11 01:42:50.000 1986-11-23 2024-10-11 01:42:50 +6171 6171 6172 617.1 1234.2 6171 1986-11-24 2024-10-11 01:42:51.000 1986-11-24 2024-10-11 01:42:51 +6172 6172 6173 617.2 1234.4 6172 1986-11-25 2024-10-11 01:42:52.000 1986-11-25 2024-10-11 01:42:52 +6173 6173 6174 617.3 1234.6000000000001 6173 1986-11-26 2024-10-11 01:42:53.000 1986-11-26 2024-10-11 01:42:53 +6174 6174 6175 617.4 1234.8000000000002 6174 1986-11-27 2024-10-11 01:42:54.000 1986-11-27 2024-10-11 01:42:54 +6175 6175 6176 617.5 1235 6175 1986-11-28 2024-10-11 01:42:55.000 1986-11-28 2024-10-11 01:42:55 +6176 6176 6177 617.6 1235.2 6176 1986-11-29 2024-10-11 01:42:56.000 1986-11-29 2024-10-11 01:42:56 +6177 6177 6178 617.7 1235.4 6177 1986-11-30 2024-10-11 01:42:57.000 1986-11-30 2024-10-11 01:42:57 +6178 6178 6179 617.8 1235.6000000000001 6178 1986-12-01 2024-10-11 01:42:58.000 1986-12-01 2024-10-11 01:42:58 +6179 6179 6180 617.9 1235.8000000000002 6179 1986-12-02 2024-10-11 01:42:59.000 1986-12-02 2024-10-11 01:42:59 +6180 6180 6181 618 1236 6180 1986-12-03 2024-10-11 01:43:00.000 1986-12-03 2024-10-11 01:43:00 +6181 6181 6182 618.1 1236.2 6181 1986-12-04 2024-10-11 01:43:01.000 1986-12-04 2024-10-11 01:43:01 +6182 6182 6183 618.2 1236.4 6182 1986-12-05 2024-10-11 01:43:02.000 1986-12-05 2024-10-11 01:43:02 +6183 6183 6184 618.3 1236.6000000000001 6183 1986-12-06 2024-10-11 01:43:03.000 1986-12-06 2024-10-11 01:43:03 +6184 6184 6185 618.4 1236.8000000000002 6184 1986-12-07 2024-10-11 01:43:04.000 1986-12-07 2024-10-11 01:43:04 +6185 6185 6186 618.5 1237 6185 1986-12-08 2024-10-11 01:43:05.000 1986-12-08 2024-10-11 01:43:05 +6186 6186 6187 618.6 1237.2 6186 1986-12-09 2024-10-11 01:43:06.000 1986-12-09 2024-10-11 01:43:06 +6187 6187 6188 618.7 1237.4 6187 1986-12-10 2024-10-11 01:43:07.000 1986-12-10 2024-10-11 01:43:07 +6188 6188 6189 618.8 1237.6000000000001 6188 1986-12-11 2024-10-11 01:43:08.000 1986-12-11 2024-10-11 01:43:08 +6189 6189 6190 618.9 1237.8000000000002 6189 1986-12-12 2024-10-11 01:43:09.000 1986-12-12 2024-10-11 01:43:09 +6190 6190 6191 619 1238 6190 1986-12-13 2024-10-11 01:43:10.000 1986-12-13 2024-10-11 01:43:10 +6191 6191 6192 619.1 1238.2 6191 1986-12-14 2024-10-11 01:43:11.000 1986-12-14 2024-10-11 01:43:11 +6192 6192 6193 619.2 1238.4 6192 1986-12-15 2024-10-11 01:43:12.000 1986-12-15 2024-10-11 01:43:12 +6193 6193 6194 619.3 1238.6000000000001 6193 1986-12-16 2024-10-11 01:43:13.000 1986-12-16 2024-10-11 01:43:13 +6194 6194 6195 619.4 1238.8000000000002 6194 1986-12-17 2024-10-11 01:43:14.000 1986-12-17 2024-10-11 01:43:14 +6195 6195 6196 619.5 1239 6195 1986-12-18 2024-10-11 01:43:15.000 1986-12-18 2024-10-11 01:43:15 +6196 6196 6197 619.6 1239.2 6196 1986-12-19 2024-10-11 01:43:16.000 1986-12-19 2024-10-11 01:43:16 +6197 6197 6198 619.7 1239.4 6197 1986-12-20 2024-10-11 01:43:17.000 1986-12-20 2024-10-11 01:43:17 +6198 6198 6199 619.8 1239.6000000000001 6198 1986-12-21 2024-10-11 01:43:18.000 1986-12-21 2024-10-11 01:43:18 +6199 6199 6200 619.9 1239.8000000000002 6199 1986-12-22 2024-10-11 01:43:19.000 1986-12-22 2024-10-11 01:43:19 +6200 6200 6201 620 1240 6200 1986-12-23 2024-10-11 01:43:20.000 1986-12-23 2024-10-11 01:43:20 +6201 6201 6202 620.1 1240.2 6201 1986-12-24 2024-10-11 01:43:21.000 1986-12-24 2024-10-11 01:43:21 +6202 6202 6203 620.2 1240.4 6202 1986-12-25 2024-10-11 01:43:22.000 1986-12-25 2024-10-11 01:43:22 +6203 6203 6204 620.3 1240.6000000000001 6203 1986-12-26 2024-10-11 01:43:23.000 1986-12-26 2024-10-11 01:43:23 +6204 6204 6205 620.4 1240.8000000000002 6204 1986-12-27 2024-10-11 01:43:24.000 1986-12-27 2024-10-11 01:43:24 +6205 6205 6206 620.5 1241 6205 1986-12-28 2024-10-11 01:43:25.000 1986-12-28 2024-10-11 01:43:25 +6206 6206 6207 620.6 1241.2 6206 1986-12-29 2024-10-11 01:43:26.000 1986-12-29 2024-10-11 01:43:26 +6207 6207 6208 620.7 1241.4 6207 1986-12-30 2024-10-11 01:43:27.000 1986-12-30 2024-10-11 01:43:27 +6208 6208 6209 620.8 1241.6000000000001 6208 1986-12-31 2024-10-11 01:43:28.000 1986-12-31 2024-10-11 01:43:28 +6209 6209 6210 620.9 1241.8000000000002 6209 1987-01-01 2024-10-11 01:43:29.000 1987-01-01 2024-10-11 01:43:29 +6210 6210 6211 621 1242 6210 1987-01-02 2024-10-11 01:43:30.000 1987-01-02 2024-10-11 01:43:30 +6211 6211 6212 621.1 1242.2 6211 1987-01-03 2024-10-11 01:43:31.000 1987-01-03 2024-10-11 01:43:31 +6212 6212 6213 621.2 1242.4 6212 1987-01-04 2024-10-11 01:43:32.000 1987-01-04 2024-10-11 01:43:32 +6213 6213 6214 621.3 1242.6000000000001 6213 1987-01-05 2024-10-11 01:43:33.000 1987-01-05 2024-10-11 01:43:33 +6214 6214 6215 621.4 1242.8000000000002 6214 1987-01-06 2024-10-11 01:43:34.000 1987-01-06 2024-10-11 01:43:34 +6215 6215 6216 621.5 1243 6215 1987-01-07 2024-10-11 01:43:35.000 1987-01-07 2024-10-11 01:43:35 +6216 6216 6217 621.6 1243.2 6216 1987-01-08 2024-10-11 01:43:36.000 1987-01-08 2024-10-11 01:43:36 +6217 6217 6218 621.7 1243.4 6217 1987-01-09 2024-10-11 01:43:37.000 1987-01-09 2024-10-11 01:43:37 +6218 6218 6219 621.8 1243.6000000000001 6218 1987-01-10 2024-10-11 01:43:38.000 1987-01-10 2024-10-11 01:43:38 +6219 6219 6220 621.9 1243.8000000000002 6219 1987-01-11 2024-10-11 01:43:39.000 1987-01-11 2024-10-11 01:43:39 +6220 6220 6221 622 1244 6220 1987-01-12 2024-10-11 01:43:40.000 1987-01-12 2024-10-11 01:43:40 +6221 6221 6222 622.1 1244.2 6221 1987-01-13 2024-10-11 01:43:41.000 1987-01-13 2024-10-11 01:43:41 +6222 6222 6223 622.2 1244.4 6222 1987-01-14 2024-10-11 01:43:42.000 1987-01-14 2024-10-11 01:43:42 +6223 6223 6224 622.3 1244.6000000000001 6223 1987-01-15 2024-10-11 01:43:43.000 1987-01-15 2024-10-11 01:43:43 +6224 6224 6225 622.4 1244.8000000000002 6224 1987-01-16 2024-10-11 01:43:44.000 1987-01-16 2024-10-11 01:43:44 +6225 6225 6226 622.5 1245 6225 1987-01-17 2024-10-11 01:43:45.000 1987-01-17 2024-10-11 01:43:45 +6226 6226 6227 622.6 1245.2 6226 1987-01-18 2024-10-11 01:43:46.000 1987-01-18 2024-10-11 01:43:46 +6227 6227 6228 622.7 1245.4 6227 1987-01-19 2024-10-11 01:43:47.000 1987-01-19 2024-10-11 01:43:47 +6228 6228 6229 622.8 1245.6000000000001 6228 1987-01-20 2024-10-11 01:43:48.000 1987-01-20 2024-10-11 01:43:48 +6229 6229 6230 622.9 1245.8000000000002 6229 1987-01-21 2024-10-11 01:43:49.000 1987-01-21 2024-10-11 01:43:49 +6230 6230 6231 623 1246 6230 1987-01-22 2024-10-11 01:43:50.000 1987-01-22 2024-10-11 01:43:50 +6231 6231 6232 623.1 1246.2 6231 1987-01-23 2024-10-11 01:43:51.000 1987-01-23 2024-10-11 01:43:51 +6232 6232 6233 623.2 1246.4 6232 1987-01-24 2024-10-11 01:43:52.000 1987-01-24 2024-10-11 01:43:52 +6233 6233 6234 623.3 1246.6000000000001 6233 1987-01-25 2024-10-11 01:43:53.000 1987-01-25 2024-10-11 01:43:53 +6234 6234 6235 623.4 1246.8000000000002 6234 1987-01-26 2024-10-11 01:43:54.000 1987-01-26 2024-10-11 01:43:54 +6235 6235 6236 623.5 1247 6235 1987-01-27 2024-10-11 01:43:55.000 1987-01-27 2024-10-11 01:43:55 +6236 6236 6237 623.6 1247.2 6236 1987-01-28 2024-10-11 01:43:56.000 1987-01-28 2024-10-11 01:43:56 +6237 6237 6238 623.7 1247.4 6237 1987-01-29 2024-10-11 01:43:57.000 1987-01-29 2024-10-11 01:43:57 +6238 6238 6239 623.8 1247.6000000000001 6238 1987-01-30 2024-10-11 01:43:58.000 1987-01-30 2024-10-11 01:43:58 +6239 6239 6240 623.9 1247.8000000000002 6239 1987-01-31 2024-10-11 01:43:59.000 1987-01-31 2024-10-11 01:43:59 +6240 6240 6241 624 1248 6240 1987-02-01 2024-10-11 01:44:00.000 1987-02-01 2024-10-11 01:44:00 +6241 6241 6242 624.1 1248.2 6241 1987-02-02 2024-10-11 01:44:01.000 1987-02-02 2024-10-11 01:44:01 +6242 6242 6243 624.2 1248.4 6242 1987-02-03 2024-10-11 01:44:02.000 1987-02-03 2024-10-11 01:44:02 +6243 6243 6244 624.3 1248.6000000000001 6243 1987-02-04 2024-10-11 01:44:03.000 1987-02-04 2024-10-11 01:44:03 +6244 6244 6245 624.4 1248.8000000000002 6244 1987-02-05 2024-10-11 01:44:04.000 1987-02-05 2024-10-11 01:44:04 +6245 6245 6246 624.5 1249 6245 1987-02-06 2024-10-11 01:44:05.000 1987-02-06 2024-10-11 01:44:05 +6246 6246 6247 624.6 1249.2 6246 1987-02-07 2024-10-11 01:44:06.000 1987-02-07 2024-10-11 01:44:06 +6247 6247 6248 624.7 1249.4 6247 1987-02-08 2024-10-11 01:44:07.000 1987-02-08 2024-10-11 01:44:07 +6248 6248 6249 624.8 1249.6000000000001 6248 1987-02-09 2024-10-11 01:44:08.000 1987-02-09 2024-10-11 01:44:08 +6249 6249 6250 624.9 1249.8000000000002 6249 1987-02-10 2024-10-11 01:44:09.000 1987-02-10 2024-10-11 01:44:09 +6250 6250 6251 625 1250 6250 1987-02-11 2024-10-11 01:44:10.000 1987-02-11 2024-10-11 01:44:10 +6251 6251 6252 625.1 1250.2 6251 1987-02-12 2024-10-11 01:44:11.000 1987-02-12 2024-10-11 01:44:11 +6252 6252 6253 625.2 1250.4 6252 1987-02-13 2024-10-11 01:44:12.000 1987-02-13 2024-10-11 01:44:12 +6253 6253 6254 625.3 1250.6000000000001 6253 1987-02-14 2024-10-11 01:44:13.000 1987-02-14 2024-10-11 01:44:13 +6254 6254 6255 625.4 1250.8000000000002 6254 1987-02-15 2024-10-11 01:44:14.000 1987-02-15 2024-10-11 01:44:14 +6255 6255 6256 625.5 1251 6255 1987-02-16 2024-10-11 01:44:15.000 1987-02-16 2024-10-11 01:44:15 +6256 6256 6257 625.6 1251.2 6256 1987-02-17 2024-10-11 01:44:16.000 1987-02-17 2024-10-11 01:44:16 +6257 6257 6258 625.7 1251.4 6257 1987-02-18 2024-10-11 01:44:17.000 1987-02-18 2024-10-11 01:44:17 +6258 6258 6259 625.8 1251.6000000000001 6258 1987-02-19 2024-10-11 01:44:18.000 1987-02-19 2024-10-11 01:44:18 +6259 6259 6260 625.9 1251.8000000000002 6259 1987-02-20 2024-10-11 01:44:19.000 1987-02-20 2024-10-11 01:44:19 +6260 6260 6261 626 1252 6260 1987-02-21 2024-10-11 01:44:20.000 1987-02-21 2024-10-11 01:44:20 +6261 6261 6262 626.1 1252.2 6261 1987-02-22 2024-10-11 01:44:21.000 1987-02-22 2024-10-11 01:44:21 +6262 6262 6263 626.2 1252.4 6262 1987-02-23 2024-10-11 01:44:22.000 1987-02-23 2024-10-11 01:44:22 +6263 6263 6264 626.3 1252.6000000000001 6263 1987-02-24 2024-10-11 01:44:23.000 1987-02-24 2024-10-11 01:44:23 +6264 6264 6265 626.4 1252.8000000000002 6264 1987-02-25 2024-10-11 01:44:24.000 1987-02-25 2024-10-11 01:44:24 +6265 6265 6266 626.5 1253 6265 1987-02-26 2024-10-11 01:44:25.000 1987-02-26 2024-10-11 01:44:25 +6266 6266 6267 626.6 1253.2 6266 1987-02-27 2024-10-11 01:44:26.000 1987-02-27 2024-10-11 01:44:26 +6267 6267 6268 626.7 1253.4 6267 1987-02-28 2024-10-11 01:44:27.000 1987-02-28 2024-10-11 01:44:27 +6268 6268 6269 626.8 1253.6000000000001 6268 1987-03-01 2024-10-11 01:44:28.000 1987-03-01 2024-10-11 01:44:28 +6269 6269 6270 626.9 1253.8000000000002 6269 1987-03-02 2024-10-11 01:44:29.000 1987-03-02 2024-10-11 01:44:29 +6270 6270 6271 627 1254 6270 1987-03-03 2024-10-11 01:44:30.000 1987-03-03 2024-10-11 01:44:30 +6271 6271 6272 627.1 1254.2 6271 1987-03-04 2024-10-11 01:44:31.000 1987-03-04 2024-10-11 01:44:31 +6272 6272 6273 627.2 1254.4 6272 1987-03-05 2024-10-11 01:44:32.000 1987-03-05 2024-10-11 01:44:32 +6273 6273 6274 627.3 1254.6000000000001 6273 1987-03-06 2024-10-11 01:44:33.000 1987-03-06 2024-10-11 01:44:33 +6274 6274 6275 627.4 1254.8000000000002 6274 1987-03-07 2024-10-11 01:44:34.000 1987-03-07 2024-10-11 01:44:34 +6275 6275 6276 627.5 1255 6275 1987-03-08 2024-10-11 01:44:35.000 1987-03-08 2024-10-11 01:44:35 +6276 6276 6277 627.6 1255.2 6276 1987-03-09 2024-10-11 01:44:36.000 1987-03-09 2024-10-11 01:44:36 +6277 6277 6278 627.7 1255.4 6277 1987-03-10 2024-10-11 01:44:37.000 1987-03-10 2024-10-11 01:44:37 +6278 6278 6279 627.8 1255.6000000000001 6278 1987-03-11 2024-10-11 01:44:38.000 1987-03-11 2024-10-11 01:44:38 +6279 6279 6280 627.9 1255.8000000000002 6279 1987-03-12 2024-10-11 01:44:39.000 1987-03-12 2024-10-11 01:44:39 +6280 6280 6281 628 1256 6280 1987-03-13 2024-10-11 01:44:40.000 1987-03-13 2024-10-11 01:44:40 +6281 6281 6282 628.1 1256.2 6281 1987-03-14 2024-10-11 01:44:41.000 1987-03-14 2024-10-11 01:44:41 +6282 6282 6283 628.2 1256.4 6282 1987-03-15 2024-10-11 01:44:42.000 1987-03-15 2024-10-11 01:44:42 +6283 6283 6284 628.3 1256.6000000000001 6283 1987-03-16 2024-10-11 01:44:43.000 1987-03-16 2024-10-11 01:44:43 +6284 6284 6285 628.4 1256.8000000000002 6284 1987-03-17 2024-10-11 01:44:44.000 1987-03-17 2024-10-11 01:44:44 +6285 6285 6286 628.5 1257 6285 1987-03-18 2024-10-11 01:44:45.000 1987-03-18 2024-10-11 01:44:45 +6286 6286 6287 628.6 1257.2 6286 1987-03-19 2024-10-11 01:44:46.000 1987-03-19 2024-10-11 01:44:46 +6287 6287 6288 628.7 1257.4 6287 1987-03-20 2024-10-11 01:44:47.000 1987-03-20 2024-10-11 01:44:47 +6288 6288 6289 628.8 1257.6000000000001 6288 1987-03-21 2024-10-11 01:44:48.000 1987-03-21 2024-10-11 01:44:48 +6289 6289 6290 628.9 1257.8000000000002 6289 1987-03-22 2024-10-11 01:44:49.000 1987-03-22 2024-10-11 01:44:49 +6290 6290 6291 629 1258 6290 1987-03-23 2024-10-11 01:44:50.000 1987-03-23 2024-10-11 01:44:50 +6291 6291 6292 629.1 1258.2 6291 1987-03-24 2024-10-11 01:44:51.000 1987-03-24 2024-10-11 01:44:51 +6292 6292 6293 629.2 1258.4 6292 1987-03-25 2024-10-11 01:44:52.000 1987-03-25 2024-10-11 01:44:52 +6293 6293 6294 629.3 1258.6000000000001 6293 1987-03-26 2024-10-11 01:44:53.000 1987-03-26 2024-10-11 01:44:53 +6294 6294 6295 629.4 1258.8000000000002 6294 1987-03-27 2024-10-11 01:44:54.000 1987-03-27 2024-10-11 01:44:54 +6295 6295 6296 629.5 1259 6295 1987-03-28 2024-10-11 01:44:55.000 1987-03-28 2024-10-11 01:44:55 +6296 6296 6297 629.6 1259.2 6296 1987-03-29 2024-10-11 01:44:56.000 1987-03-29 2024-10-11 01:44:56 +6297 6297 6298 629.7 1259.4 6297 1987-03-30 2024-10-11 01:44:57.000 1987-03-30 2024-10-11 01:44:57 +6298 6298 6299 629.8 1259.6000000000001 6298 1987-03-31 2024-10-11 01:44:58.000 1987-03-31 2024-10-11 01:44:58 +6299 6299 6300 629.9 1259.8000000000002 6299 1987-04-01 2024-10-11 01:44:59.000 1987-04-01 2024-10-11 01:44:59 +6300 6300 6301 630 1260 6300 1987-04-02 2024-10-11 01:45:00.000 1987-04-02 2024-10-11 01:45:00 +6301 6301 6302 630.1 1260.2 6301 1987-04-03 2024-10-11 01:45:01.000 1987-04-03 2024-10-11 01:45:01 +6302 6302 6303 630.2 1260.4 6302 1987-04-04 2024-10-11 01:45:02.000 1987-04-04 2024-10-11 01:45:02 +6303 6303 6304 630.3 1260.6000000000001 6303 1987-04-05 2024-10-11 01:45:03.000 1987-04-05 2024-10-11 01:45:03 +6304 6304 6305 630.4 1260.8000000000002 6304 1987-04-06 2024-10-11 01:45:04.000 1987-04-06 2024-10-11 01:45:04 +6305 6305 6306 630.5 1261 6305 1987-04-07 2024-10-11 01:45:05.000 1987-04-07 2024-10-11 01:45:05 +6306 6306 6307 630.6 1261.2 6306 1987-04-08 2024-10-11 01:45:06.000 1987-04-08 2024-10-11 01:45:06 +6307 6307 6308 630.7 1261.4 6307 1987-04-09 2024-10-11 01:45:07.000 1987-04-09 2024-10-11 01:45:07 +6308 6308 6309 630.8 1261.6000000000001 6308 1987-04-10 2024-10-11 01:45:08.000 1987-04-10 2024-10-11 01:45:08 +6309 6309 6310 630.9 1261.8000000000002 6309 1987-04-11 2024-10-11 01:45:09.000 1987-04-11 2024-10-11 01:45:09 +6310 6310 6311 631 1262 6310 1987-04-12 2024-10-11 01:45:10.000 1987-04-12 2024-10-11 01:45:10 +6311 6311 6312 631.1 1262.2 6311 1987-04-13 2024-10-11 01:45:11.000 1987-04-13 2024-10-11 01:45:11 +6312 6312 6313 631.2 1262.4 6312 1987-04-14 2024-10-11 01:45:12.000 1987-04-14 2024-10-11 01:45:12 +6313 6313 6314 631.3 1262.6000000000001 6313 1987-04-15 2024-10-11 01:45:13.000 1987-04-15 2024-10-11 01:45:13 +6314 6314 6315 631.4 1262.8000000000002 6314 1987-04-16 2024-10-11 01:45:14.000 1987-04-16 2024-10-11 01:45:14 +6315 6315 6316 631.5 1263 6315 1987-04-17 2024-10-11 01:45:15.000 1987-04-17 2024-10-11 01:45:15 +6316 6316 6317 631.6 1263.2 6316 1987-04-18 2024-10-11 01:45:16.000 1987-04-18 2024-10-11 01:45:16 +6317 6317 6318 631.7 1263.4 6317 1987-04-19 2024-10-11 01:45:17.000 1987-04-19 2024-10-11 01:45:17 +6318 6318 6319 631.8 1263.6000000000001 6318 1987-04-20 2024-10-11 01:45:18.000 1987-04-20 2024-10-11 01:45:18 +6319 6319 6320 631.9 1263.8000000000002 6319 1987-04-21 2024-10-11 01:45:19.000 1987-04-21 2024-10-11 01:45:19 +6320 6320 6321 632 1264 6320 1987-04-22 2024-10-11 01:45:20.000 1987-04-22 2024-10-11 01:45:20 +6321 6321 6322 632.1 1264.2 6321 1987-04-23 2024-10-11 01:45:21.000 1987-04-23 2024-10-11 01:45:21 +6322 6322 6323 632.2 1264.4 6322 1987-04-24 2024-10-11 01:45:22.000 1987-04-24 2024-10-11 01:45:22 +6323 6323 6324 632.3 1264.6000000000001 6323 1987-04-25 2024-10-11 01:45:23.000 1987-04-25 2024-10-11 01:45:23 +6324 6324 6325 632.4 1264.8000000000002 6324 1987-04-26 2024-10-11 01:45:24.000 1987-04-26 2024-10-11 01:45:24 +6325 6325 6326 632.5 1265 6325 1987-04-27 2024-10-11 01:45:25.000 1987-04-27 2024-10-11 01:45:25 +6326 6326 6327 632.6 1265.2 6326 1987-04-28 2024-10-11 01:45:26.000 1987-04-28 2024-10-11 01:45:26 +6327 6327 6328 632.7 1265.4 6327 1987-04-29 2024-10-11 01:45:27.000 1987-04-29 2024-10-11 01:45:27 +6328 6328 6329 632.8 1265.6000000000001 6328 1987-04-30 2024-10-11 01:45:28.000 1987-04-30 2024-10-11 01:45:28 +6329 6329 6330 632.9 1265.8000000000002 6329 1987-05-01 2024-10-11 01:45:29.000 1987-05-01 2024-10-11 01:45:29 +6330 6330 6331 633 1266 6330 1987-05-02 2024-10-11 01:45:30.000 1987-05-02 2024-10-11 01:45:30 +6331 6331 6332 633.1 1266.2 6331 1987-05-03 2024-10-11 01:45:31.000 1987-05-03 2024-10-11 01:45:31 +6332 6332 6333 633.2 1266.4 6332 1987-05-04 2024-10-11 01:45:32.000 1987-05-04 2024-10-11 01:45:32 +6333 6333 6334 633.3 1266.6000000000001 6333 1987-05-05 2024-10-11 01:45:33.000 1987-05-05 2024-10-11 01:45:33 +6334 6334 6335 633.4 1266.8000000000002 6334 1987-05-06 2024-10-11 01:45:34.000 1987-05-06 2024-10-11 01:45:34 +6335 6335 6336 633.5 1267 6335 1987-05-07 2024-10-11 01:45:35.000 1987-05-07 2024-10-11 01:45:35 +6336 6336 6337 633.6 1267.2 6336 1987-05-08 2024-10-11 01:45:36.000 1987-05-08 2024-10-11 01:45:36 +6337 6337 6338 633.7 1267.4 6337 1987-05-09 2024-10-11 01:45:37.000 1987-05-09 2024-10-11 01:45:37 +6338 6338 6339 633.8 1267.6000000000001 6338 1987-05-10 2024-10-11 01:45:38.000 1987-05-10 2024-10-11 01:45:38 +6339 6339 6340 633.9 1267.8000000000002 6339 1987-05-11 2024-10-11 01:45:39.000 1987-05-11 2024-10-11 01:45:39 +6340 6340 6341 634 1268 6340 1987-05-12 2024-10-11 01:45:40.000 1987-05-12 2024-10-11 01:45:40 +6341 6341 6342 634.1 1268.2 6341 1987-05-13 2024-10-11 01:45:41.000 1987-05-13 2024-10-11 01:45:41 +6342 6342 6343 634.2 1268.4 6342 1987-05-14 2024-10-11 01:45:42.000 1987-05-14 2024-10-11 01:45:42 +6343 6343 6344 634.3 1268.6000000000001 6343 1987-05-15 2024-10-11 01:45:43.000 1987-05-15 2024-10-11 01:45:43 +6344 6344 6345 634.4 1268.8000000000002 6344 1987-05-16 2024-10-11 01:45:44.000 1987-05-16 2024-10-11 01:45:44 +6345 6345 6346 634.5 1269 6345 1987-05-17 2024-10-11 01:45:45.000 1987-05-17 2024-10-11 01:45:45 +6346 6346 6347 634.6 1269.2 6346 1987-05-18 2024-10-11 01:45:46.000 1987-05-18 2024-10-11 01:45:46 +6347 6347 6348 634.7 1269.4 6347 1987-05-19 2024-10-11 01:45:47.000 1987-05-19 2024-10-11 01:45:47 +6348 6348 6349 634.8 1269.6000000000001 6348 1987-05-20 2024-10-11 01:45:48.000 1987-05-20 2024-10-11 01:45:48 +6349 6349 6350 634.9 1269.8000000000002 6349 1987-05-21 2024-10-11 01:45:49.000 1987-05-21 2024-10-11 01:45:49 +6350 6350 6351 635 1270 6350 1987-05-22 2024-10-11 01:45:50.000 1987-05-22 2024-10-11 01:45:50 +6351 6351 6352 635.1 1270.2 6351 1987-05-23 2024-10-11 01:45:51.000 1987-05-23 2024-10-11 01:45:51 +6352 6352 6353 635.2 1270.4 6352 1987-05-24 2024-10-11 01:45:52.000 1987-05-24 2024-10-11 01:45:52 +6353 6353 6354 635.3 1270.6000000000001 6353 1987-05-25 2024-10-11 01:45:53.000 1987-05-25 2024-10-11 01:45:53 +6354 6354 6355 635.4 1270.8000000000002 6354 1987-05-26 2024-10-11 01:45:54.000 1987-05-26 2024-10-11 01:45:54 +6355 6355 6356 635.5 1271 6355 1987-05-27 2024-10-11 01:45:55.000 1987-05-27 2024-10-11 01:45:55 +6356 6356 6357 635.6 1271.2 6356 1987-05-28 2024-10-11 01:45:56.000 1987-05-28 2024-10-11 01:45:56 +6357 6357 6358 635.7 1271.4 6357 1987-05-29 2024-10-11 01:45:57.000 1987-05-29 2024-10-11 01:45:57 +6358 6358 6359 635.8 1271.6000000000001 6358 1987-05-30 2024-10-11 01:45:58.000 1987-05-30 2024-10-11 01:45:58 +6359 6359 6360 635.9 1271.8000000000002 6359 1987-05-31 2024-10-11 01:45:59.000 1987-05-31 2024-10-11 01:45:59 +6360 6360 6361 636 1272 6360 1987-06-01 2024-10-11 01:46:00.000 1987-06-01 2024-10-11 01:46:00 +6361 6361 6362 636.1 1272.2 6361 1987-06-02 2024-10-11 01:46:01.000 1987-06-02 2024-10-11 01:46:01 +6362 6362 6363 636.2 1272.4 6362 1987-06-03 2024-10-11 01:46:02.000 1987-06-03 2024-10-11 01:46:02 +6363 6363 6364 636.3 1272.6000000000001 6363 1987-06-04 2024-10-11 01:46:03.000 1987-06-04 2024-10-11 01:46:03 +6364 6364 6365 636.4 1272.8000000000002 6364 1987-06-05 2024-10-11 01:46:04.000 1987-06-05 2024-10-11 01:46:04 +6365 6365 6366 636.5 1273 6365 1987-06-06 2024-10-11 01:46:05.000 1987-06-06 2024-10-11 01:46:05 +6366 6366 6367 636.6 1273.2 6366 1987-06-07 2024-10-11 01:46:06.000 1987-06-07 2024-10-11 01:46:06 +6367 6367 6368 636.7 1273.4 6367 1987-06-08 2024-10-11 01:46:07.000 1987-06-08 2024-10-11 01:46:07 +6368 6368 6369 636.8 1273.6000000000001 6368 1987-06-09 2024-10-11 01:46:08.000 1987-06-09 2024-10-11 01:46:08 +6369 6369 6370 636.9 1273.8000000000002 6369 1987-06-10 2024-10-11 01:46:09.000 1987-06-10 2024-10-11 01:46:09 +6370 6370 6371 637 1274 6370 1987-06-11 2024-10-11 01:46:10.000 1987-06-11 2024-10-11 01:46:10 +6371 6371 6372 637.1 1274.2 6371 1987-06-12 2024-10-11 01:46:11.000 1987-06-12 2024-10-11 01:46:11 +6372 6372 6373 637.2 1274.4 6372 1987-06-13 2024-10-11 01:46:12.000 1987-06-13 2024-10-11 01:46:12 +6373 6373 6374 637.3 1274.6000000000001 6373 1987-06-14 2024-10-11 01:46:13.000 1987-06-14 2024-10-11 01:46:13 +6374 6374 6375 637.4 1274.8000000000002 6374 1987-06-15 2024-10-11 01:46:14.000 1987-06-15 2024-10-11 01:46:14 +6375 6375 6376 637.5 1275 6375 1987-06-16 2024-10-11 01:46:15.000 1987-06-16 2024-10-11 01:46:15 +6376 6376 6377 637.6 1275.2 6376 1987-06-17 2024-10-11 01:46:16.000 1987-06-17 2024-10-11 01:46:16 +6377 6377 6378 637.7 1275.4 6377 1987-06-18 2024-10-11 01:46:17.000 1987-06-18 2024-10-11 01:46:17 +6378 6378 6379 637.8 1275.6000000000001 6378 1987-06-19 2024-10-11 01:46:18.000 1987-06-19 2024-10-11 01:46:18 +6379 6379 6380 637.9 1275.8000000000002 6379 1987-06-20 2024-10-11 01:46:19.000 1987-06-20 2024-10-11 01:46:19 +6380 6380 6381 638 1276 6380 1987-06-21 2024-10-11 01:46:20.000 1987-06-21 2024-10-11 01:46:20 +6381 6381 6382 638.1 1276.2 6381 1987-06-22 2024-10-11 01:46:21.000 1987-06-22 2024-10-11 01:46:21 +6382 6382 6383 638.2 1276.4 6382 1987-06-23 2024-10-11 01:46:22.000 1987-06-23 2024-10-11 01:46:22 +6383 6383 6384 638.3 1276.6000000000001 6383 1987-06-24 2024-10-11 01:46:23.000 1987-06-24 2024-10-11 01:46:23 +6384 6384 6385 638.4 1276.8000000000002 6384 1987-06-25 2024-10-11 01:46:24.000 1987-06-25 2024-10-11 01:46:24 +6385 6385 6386 638.5 1277 6385 1987-06-26 2024-10-11 01:46:25.000 1987-06-26 2024-10-11 01:46:25 +6386 6386 6387 638.6 1277.2 6386 1987-06-27 2024-10-11 01:46:26.000 1987-06-27 2024-10-11 01:46:26 +6387 6387 6388 638.7 1277.4 6387 1987-06-28 2024-10-11 01:46:27.000 1987-06-28 2024-10-11 01:46:27 +6388 6388 6389 638.8 1277.6000000000001 6388 1987-06-29 2024-10-11 01:46:28.000 1987-06-29 2024-10-11 01:46:28 +6389 6389 6390 638.9 1277.8000000000002 6389 1987-06-30 2024-10-11 01:46:29.000 1987-06-30 2024-10-11 01:46:29 +6390 6390 6391 639 1278 6390 1987-07-01 2024-10-11 01:46:30.000 1987-07-01 2024-10-11 01:46:30 +6391 6391 6392 639.1 1278.2 6391 1987-07-02 2024-10-11 01:46:31.000 1987-07-02 2024-10-11 01:46:31 +6392 6392 6393 639.2 1278.4 6392 1987-07-03 2024-10-11 01:46:32.000 1987-07-03 2024-10-11 01:46:32 +6393 6393 6394 639.3 1278.6000000000001 6393 1987-07-04 2024-10-11 01:46:33.000 1987-07-04 2024-10-11 01:46:33 +6394 6394 6395 639.4 1278.8000000000002 6394 1987-07-05 2024-10-11 01:46:34.000 1987-07-05 2024-10-11 01:46:34 +6395 6395 6396 639.5 1279 6395 1987-07-06 2024-10-11 01:46:35.000 1987-07-06 2024-10-11 01:46:35 +6396 6396 6397 639.6 1279.2 6396 1987-07-07 2024-10-11 01:46:36.000 1987-07-07 2024-10-11 01:46:36 +6397 6397 6398 639.7 1279.4 6397 1987-07-08 2024-10-11 01:46:37.000 1987-07-08 2024-10-11 01:46:37 +6398 6398 6399 639.8 1279.6000000000001 6398 1987-07-09 2024-10-11 01:46:38.000 1987-07-09 2024-10-11 01:46:38 +6399 6399 6400 639.9 1279.8000000000002 6399 1987-07-10 2024-10-11 01:46:39.000 1987-07-10 2024-10-11 01:46:39 +6400 6400 6401 640 1280 6400 1987-07-11 2024-10-11 01:46:40.000 1987-07-11 2024-10-11 01:46:40 +6401 6401 6402 640.1 1280.2 6401 1987-07-12 2024-10-11 01:46:41.000 1987-07-12 2024-10-11 01:46:41 +6402 6402 6403 640.2 1280.4 6402 1987-07-13 2024-10-11 01:46:42.000 1987-07-13 2024-10-11 01:46:42 +6403 6403 6404 640.3 1280.6000000000001 6403 1987-07-14 2024-10-11 01:46:43.000 1987-07-14 2024-10-11 01:46:43 +6404 6404 6405 640.4 1280.8000000000002 6404 1987-07-15 2024-10-11 01:46:44.000 1987-07-15 2024-10-11 01:46:44 +6405 6405 6406 640.5 1281 6405 1987-07-16 2024-10-11 01:46:45.000 1987-07-16 2024-10-11 01:46:45 +6406 6406 6407 640.6 1281.2 6406 1987-07-17 2024-10-11 01:46:46.000 1987-07-17 2024-10-11 01:46:46 +6407 6407 6408 640.7 1281.4 6407 1987-07-18 2024-10-11 01:46:47.000 1987-07-18 2024-10-11 01:46:47 +6408 6408 6409 640.8 1281.6000000000001 6408 1987-07-19 2024-10-11 01:46:48.000 1987-07-19 2024-10-11 01:46:48 +6409 6409 6410 640.9 1281.8000000000002 6409 1987-07-20 2024-10-11 01:46:49.000 1987-07-20 2024-10-11 01:46:49 +6410 6410 6411 641 1282 6410 1987-07-21 2024-10-11 01:46:50.000 1987-07-21 2024-10-11 01:46:50 +6411 6411 6412 641.1 1282.2 6411 1987-07-22 2024-10-11 01:46:51.000 1987-07-22 2024-10-11 01:46:51 +6412 6412 6413 641.2 1282.4 6412 1987-07-23 2024-10-11 01:46:52.000 1987-07-23 2024-10-11 01:46:52 +6413 6413 6414 641.3 1282.6000000000001 6413 1987-07-24 2024-10-11 01:46:53.000 1987-07-24 2024-10-11 01:46:53 +6414 6414 6415 641.4 1282.8000000000002 6414 1987-07-25 2024-10-11 01:46:54.000 1987-07-25 2024-10-11 01:46:54 +6415 6415 6416 641.5 1283 6415 1987-07-26 2024-10-11 01:46:55.000 1987-07-26 2024-10-11 01:46:55 +6416 6416 6417 641.6 1283.2 6416 1987-07-27 2024-10-11 01:46:56.000 1987-07-27 2024-10-11 01:46:56 +6417 6417 6418 641.7 1283.4 6417 1987-07-28 2024-10-11 01:46:57.000 1987-07-28 2024-10-11 01:46:57 +6418 6418 6419 641.8 1283.6000000000001 6418 1987-07-29 2024-10-11 01:46:58.000 1987-07-29 2024-10-11 01:46:58 +6419 6419 6420 641.9 1283.8000000000002 6419 1987-07-30 2024-10-11 01:46:59.000 1987-07-30 2024-10-11 01:46:59 +6420 6420 6421 642 1284 6420 1987-07-31 2024-10-11 01:47:00.000 1987-07-31 2024-10-11 01:47:00 +6421 6421 6422 642.1 1284.2 6421 1987-08-01 2024-10-11 01:47:01.000 1987-08-01 2024-10-11 01:47:01 +6422 6422 6423 642.2 1284.4 6422 1987-08-02 2024-10-11 01:47:02.000 1987-08-02 2024-10-11 01:47:02 +6423 6423 6424 642.3 1284.6000000000001 6423 1987-08-03 2024-10-11 01:47:03.000 1987-08-03 2024-10-11 01:47:03 +6424 6424 6425 642.4 1284.8000000000002 6424 1987-08-04 2024-10-11 01:47:04.000 1987-08-04 2024-10-11 01:47:04 +6425 6425 6426 642.5 1285 6425 1987-08-05 2024-10-11 01:47:05.000 1987-08-05 2024-10-11 01:47:05 +6426 6426 6427 642.6 1285.2 6426 1987-08-06 2024-10-11 01:47:06.000 1987-08-06 2024-10-11 01:47:06 +6427 6427 6428 642.7 1285.4 6427 1987-08-07 2024-10-11 01:47:07.000 1987-08-07 2024-10-11 01:47:07 +6428 6428 6429 642.8 1285.6000000000001 6428 1987-08-08 2024-10-11 01:47:08.000 1987-08-08 2024-10-11 01:47:08 +6429 6429 6430 642.9 1285.8000000000002 6429 1987-08-09 2024-10-11 01:47:09.000 1987-08-09 2024-10-11 01:47:09 +6430 6430 6431 643 1286 6430 1987-08-10 2024-10-11 01:47:10.000 1987-08-10 2024-10-11 01:47:10 +6431 6431 6432 643.1 1286.2 6431 1987-08-11 2024-10-11 01:47:11.000 1987-08-11 2024-10-11 01:47:11 +6432 6432 6433 643.2 1286.4 6432 1987-08-12 2024-10-11 01:47:12.000 1987-08-12 2024-10-11 01:47:12 +6433 6433 6434 643.3 1286.6000000000001 6433 1987-08-13 2024-10-11 01:47:13.000 1987-08-13 2024-10-11 01:47:13 +6434 6434 6435 643.4 1286.8000000000002 6434 1987-08-14 2024-10-11 01:47:14.000 1987-08-14 2024-10-11 01:47:14 +6435 6435 6436 643.5 1287 6435 1987-08-15 2024-10-11 01:47:15.000 1987-08-15 2024-10-11 01:47:15 +6436 6436 6437 643.6 1287.2 6436 1987-08-16 2024-10-11 01:47:16.000 1987-08-16 2024-10-11 01:47:16 +6437 6437 6438 643.7 1287.4 6437 1987-08-17 2024-10-11 01:47:17.000 1987-08-17 2024-10-11 01:47:17 +6438 6438 6439 643.8 1287.6000000000001 6438 1987-08-18 2024-10-11 01:47:18.000 1987-08-18 2024-10-11 01:47:18 +6439 6439 6440 643.9 1287.8000000000002 6439 1987-08-19 2024-10-11 01:47:19.000 1987-08-19 2024-10-11 01:47:19 +6440 6440 6441 644 1288 6440 1987-08-20 2024-10-11 01:47:20.000 1987-08-20 2024-10-11 01:47:20 +6441 6441 6442 644.1 1288.2 6441 1987-08-21 2024-10-11 01:47:21.000 1987-08-21 2024-10-11 01:47:21 +6442 6442 6443 644.2 1288.4 6442 1987-08-22 2024-10-11 01:47:22.000 1987-08-22 2024-10-11 01:47:22 +6443 6443 6444 644.3 1288.6000000000001 6443 1987-08-23 2024-10-11 01:47:23.000 1987-08-23 2024-10-11 01:47:23 +6444 6444 6445 644.4 1288.8000000000002 6444 1987-08-24 2024-10-11 01:47:24.000 1987-08-24 2024-10-11 01:47:24 +6445 6445 6446 644.5 1289 6445 1987-08-25 2024-10-11 01:47:25.000 1987-08-25 2024-10-11 01:47:25 +6446 6446 6447 644.6 1289.2 6446 1987-08-26 2024-10-11 01:47:26.000 1987-08-26 2024-10-11 01:47:26 +6447 6447 6448 644.7 1289.4 6447 1987-08-27 2024-10-11 01:47:27.000 1987-08-27 2024-10-11 01:47:27 +6448 6448 6449 644.8 1289.6000000000001 6448 1987-08-28 2024-10-11 01:47:28.000 1987-08-28 2024-10-11 01:47:28 +6449 6449 6450 644.9 1289.8000000000002 6449 1987-08-29 2024-10-11 01:47:29.000 1987-08-29 2024-10-11 01:47:29 +6450 6450 6451 645 1290 6450 1987-08-30 2024-10-11 01:47:30.000 1987-08-30 2024-10-11 01:47:30 +6451 6451 6452 645.1 1290.2 6451 1987-08-31 2024-10-11 01:47:31.000 1987-08-31 2024-10-11 01:47:31 +6452 6452 6453 645.2 1290.4 6452 1987-09-01 2024-10-11 01:47:32.000 1987-09-01 2024-10-11 01:47:32 +6453 6453 6454 645.3 1290.6000000000001 6453 1987-09-02 2024-10-11 01:47:33.000 1987-09-02 2024-10-11 01:47:33 +6454 6454 6455 645.4 1290.8000000000002 6454 1987-09-03 2024-10-11 01:47:34.000 1987-09-03 2024-10-11 01:47:34 +6455 6455 6456 645.5 1291 6455 1987-09-04 2024-10-11 01:47:35.000 1987-09-04 2024-10-11 01:47:35 +6456 6456 6457 645.6 1291.2 6456 1987-09-05 2024-10-11 01:47:36.000 1987-09-05 2024-10-11 01:47:36 +6457 6457 6458 645.7 1291.4 6457 1987-09-06 2024-10-11 01:47:37.000 1987-09-06 2024-10-11 01:47:37 +6458 6458 6459 645.8 1291.6000000000001 6458 1987-09-07 2024-10-11 01:47:38.000 1987-09-07 2024-10-11 01:47:38 +6459 6459 6460 645.9 1291.8000000000002 6459 1987-09-08 2024-10-11 01:47:39.000 1987-09-08 2024-10-11 01:47:39 +6460 6460 6461 646 1292 6460 1987-09-09 2024-10-11 01:47:40.000 1987-09-09 2024-10-11 01:47:40 +6461 6461 6462 646.1 1292.2 6461 1987-09-10 2024-10-11 01:47:41.000 1987-09-10 2024-10-11 01:47:41 +6462 6462 6463 646.2 1292.4 6462 1987-09-11 2024-10-11 01:47:42.000 1987-09-11 2024-10-11 01:47:42 +6463 6463 6464 646.3 1292.6000000000001 6463 1987-09-12 2024-10-11 01:47:43.000 1987-09-12 2024-10-11 01:47:43 +6464 6464 6465 646.4 1292.8000000000002 6464 1987-09-13 2024-10-11 01:47:44.000 1987-09-13 2024-10-11 01:47:44 +6465 6465 6466 646.5 1293 6465 1987-09-14 2024-10-11 01:47:45.000 1987-09-14 2024-10-11 01:47:45 +6466 6466 6467 646.6 1293.2 6466 1987-09-15 2024-10-11 01:47:46.000 1987-09-15 2024-10-11 01:47:46 +6467 6467 6468 646.7 1293.4 6467 1987-09-16 2024-10-11 01:47:47.000 1987-09-16 2024-10-11 01:47:47 +6468 6468 6469 646.8 1293.6000000000001 6468 1987-09-17 2024-10-11 01:47:48.000 1987-09-17 2024-10-11 01:47:48 +6469 6469 6470 646.9 1293.8000000000002 6469 1987-09-18 2024-10-11 01:47:49.000 1987-09-18 2024-10-11 01:47:49 +6470 6470 6471 647 1294 6470 1987-09-19 2024-10-11 01:47:50.000 1987-09-19 2024-10-11 01:47:50 +6471 6471 6472 647.1 1294.2 6471 1987-09-20 2024-10-11 01:47:51.000 1987-09-20 2024-10-11 01:47:51 +6472 6472 6473 647.2 1294.4 6472 1987-09-21 2024-10-11 01:47:52.000 1987-09-21 2024-10-11 01:47:52 +6473 6473 6474 647.3 1294.6000000000001 6473 1987-09-22 2024-10-11 01:47:53.000 1987-09-22 2024-10-11 01:47:53 +6474 6474 6475 647.4 1294.8000000000002 6474 1987-09-23 2024-10-11 01:47:54.000 1987-09-23 2024-10-11 01:47:54 +6475 6475 6476 647.5 1295 6475 1987-09-24 2024-10-11 01:47:55.000 1987-09-24 2024-10-11 01:47:55 +6476 6476 6477 647.6 1295.2 6476 1987-09-25 2024-10-11 01:47:56.000 1987-09-25 2024-10-11 01:47:56 +6477 6477 6478 647.7 1295.4 6477 1987-09-26 2024-10-11 01:47:57.000 1987-09-26 2024-10-11 01:47:57 +6478 6478 6479 647.8 1295.6000000000001 6478 1987-09-27 2024-10-11 01:47:58.000 1987-09-27 2024-10-11 01:47:58 +6479 6479 6480 647.9 1295.8000000000002 6479 1987-09-28 2024-10-11 01:47:59.000 1987-09-28 2024-10-11 01:47:59 +6480 6480 6481 648 1296 6480 1987-09-29 2024-10-11 01:48:00.000 1987-09-29 2024-10-11 01:48:00 +6481 6481 6482 648.1 1296.2 6481 1987-09-30 2024-10-11 01:48:01.000 1987-09-30 2024-10-11 01:48:01 +6482 6482 6483 648.2 1296.4 6482 1987-10-01 2024-10-11 01:48:02.000 1987-10-01 2024-10-11 01:48:02 +6483 6483 6484 648.3 1296.6000000000001 6483 1987-10-02 2024-10-11 01:48:03.000 1987-10-02 2024-10-11 01:48:03 +6484 6484 6485 648.4 1296.8000000000002 6484 1987-10-03 2024-10-11 01:48:04.000 1987-10-03 2024-10-11 01:48:04 +6485 6485 6486 648.5 1297 6485 1987-10-04 2024-10-11 01:48:05.000 1987-10-04 2024-10-11 01:48:05 +6486 6486 6487 648.6 1297.2 6486 1987-10-05 2024-10-11 01:48:06.000 1987-10-05 2024-10-11 01:48:06 +6487 6487 6488 648.7 1297.4 6487 1987-10-06 2024-10-11 01:48:07.000 1987-10-06 2024-10-11 01:48:07 +6488 6488 6489 648.8 1297.6000000000001 6488 1987-10-07 2024-10-11 01:48:08.000 1987-10-07 2024-10-11 01:48:08 +6489 6489 6490 648.9 1297.8000000000002 6489 1987-10-08 2024-10-11 01:48:09.000 1987-10-08 2024-10-11 01:48:09 +6490 6490 6491 649 1298 6490 1987-10-09 2024-10-11 01:48:10.000 1987-10-09 2024-10-11 01:48:10 +6491 6491 6492 649.1 1298.2 6491 1987-10-10 2024-10-11 01:48:11.000 1987-10-10 2024-10-11 01:48:11 +6492 6492 6493 649.2 1298.4 6492 1987-10-11 2024-10-11 01:48:12.000 1987-10-11 2024-10-11 01:48:12 +6493 6493 6494 649.3 1298.6000000000001 6493 1987-10-12 2024-10-11 01:48:13.000 1987-10-12 2024-10-11 01:48:13 +6494 6494 6495 649.4 1298.8000000000002 6494 1987-10-13 2024-10-11 01:48:14.000 1987-10-13 2024-10-11 01:48:14 +6495 6495 6496 649.5 1299 6495 1987-10-14 2024-10-11 01:48:15.000 1987-10-14 2024-10-11 01:48:15 +6496 6496 6497 649.6 1299.2 6496 1987-10-15 2024-10-11 01:48:16.000 1987-10-15 2024-10-11 01:48:16 +6497 6497 6498 649.7 1299.4 6497 1987-10-16 2024-10-11 01:48:17.000 1987-10-16 2024-10-11 01:48:17 +6498 6498 6499 649.8 1299.6000000000001 6498 1987-10-17 2024-10-11 01:48:18.000 1987-10-17 2024-10-11 01:48:18 +6499 6499 6500 649.9 1299.8000000000002 6499 1987-10-18 2024-10-11 01:48:19.000 1987-10-18 2024-10-11 01:48:19 +6500 6500 6501 650 1300 6500 1987-10-19 2024-10-11 01:48:20.000 1987-10-19 2024-10-11 01:48:20 +6501 6501 6502 650.1 1300.2 6501 1987-10-20 2024-10-11 01:48:21.000 1987-10-20 2024-10-11 01:48:21 +6502 6502 6503 650.2 1300.4 6502 1987-10-21 2024-10-11 01:48:22.000 1987-10-21 2024-10-11 01:48:22 +6503 6503 6504 650.3 1300.6000000000001 6503 1987-10-22 2024-10-11 01:48:23.000 1987-10-22 2024-10-11 01:48:23 +6504 6504 6505 650.4 1300.8000000000002 6504 1987-10-23 2024-10-11 01:48:24.000 1987-10-23 2024-10-11 01:48:24 +6505 6505 6506 650.5 1301 6505 1987-10-24 2024-10-11 01:48:25.000 1987-10-24 2024-10-11 01:48:25 +6506 6506 6507 650.6 1301.2 6506 1987-10-25 2024-10-11 01:48:26.000 1987-10-25 2024-10-11 01:48:26 +6507 6507 6508 650.7 1301.4 6507 1987-10-26 2024-10-11 01:48:27.000 1987-10-26 2024-10-11 01:48:27 +6508 6508 6509 650.8 1301.6000000000001 6508 1987-10-27 2024-10-11 01:48:28.000 1987-10-27 2024-10-11 01:48:28 +6509 6509 6510 650.9 1301.8000000000002 6509 1987-10-28 2024-10-11 01:48:29.000 1987-10-28 2024-10-11 01:48:29 +6510 6510 6511 651 1302 6510 1987-10-29 2024-10-11 01:48:30.000 1987-10-29 2024-10-11 01:48:30 +6511 6511 6512 651.1 1302.2 6511 1987-10-30 2024-10-11 01:48:31.000 1987-10-30 2024-10-11 01:48:31 +6512 6512 6513 651.2 1302.4 6512 1987-10-31 2024-10-11 01:48:32.000 1987-10-31 2024-10-11 01:48:32 +6513 6513 6514 651.3 1302.6000000000001 6513 1987-11-01 2024-10-11 01:48:33.000 1987-11-01 2024-10-11 01:48:33 +6514 6514 6515 651.4 1302.8000000000002 6514 1987-11-02 2024-10-11 01:48:34.000 1987-11-02 2024-10-11 01:48:34 +6515 6515 6516 651.5 1303 6515 1987-11-03 2024-10-11 01:48:35.000 1987-11-03 2024-10-11 01:48:35 +6516 6516 6517 651.6 1303.2 6516 1987-11-04 2024-10-11 01:48:36.000 1987-11-04 2024-10-11 01:48:36 +6517 6517 6518 651.7 1303.4 6517 1987-11-05 2024-10-11 01:48:37.000 1987-11-05 2024-10-11 01:48:37 +6518 6518 6519 651.8 1303.6000000000001 6518 1987-11-06 2024-10-11 01:48:38.000 1987-11-06 2024-10-11 01:48:38 +6519 6519 6520 651.9 1303.8000000000002 6519 1987-11-07 2024-10-11 01:48:39.000 1987-11-07 2024-10-11 01:48:39 +6520 6520 6521 652 1304 6520 1987-11-08 2024-10-11 01:48:40.000 1987-11-08 2024-10-11 01:48:40 +6521 6521 6522 652.1 1304.2 6521 1987-11-09 2024-10-11 01:48:41.000 1987-11-09 2024-10-11 01:48:41 +6522 6522 6523 652.2 1304.4 6522 1987-11-10 2024-10-11 01:48:42.000 1987-11-10 2024-10-11 01:48:42 +6523 6523 6524 652.3 1304.6000000000001 6523 1987-11-11 2024-10-11 01:48:43.000 1987-11-11 2024-10-11 01:48:43 +6524 6524 6525 652.4 1304.8000000000002 6524 1987-11-12 2024-10-11 01:48:44.000 1987-11-12 2024-10-11 01:48:44 +6525 6525 6526 652.5 1305 6525 1987-11-13 2024-10-11 01:48:45.000 1987-11-13 2024-10-11 01:48:45 +6526 6526 6527 652.6 1305.2 6526 1987-11-14 2024-10-11 01:48:46.000 1987-11-14 2024-10-11 01:48:46 +6527 6527 6528 652.7 1305.4 6527 1987-11-15 2024-10-11 01:48:47.000 1987-11-15 2024-10-11 01:48:47 +6528 6528 6529 652.8 1305.6000000000001 6528 1987-11-16 2024-10-11 01:48:48.000 1987-11-16 2024-10-11 01:48:48 +6529 6529 6530 652.9 1305.8000000000002 6529 1987-11-17 2024-10-11 01:48:49.000 1987-11-17 2024-10-11 01:48:49 +6530 6530 6531 653 1306 6530 1987-11-18 2024-10-11 01:48:50.000 1987-11-18 2024-10-11 01:48:50 +6531 6531 6532 653.1 1306.2 6531 1987-11-19 2024-10-11 01:48:51.000 1987-11-19 2024-10-11 01:48:51 +6532 6532 6533 653.2 1306.4 6532 1987-11-20 2024-10-11 01:48:52.000 1987-11-20 2024-10-11 01:48:52 +6533 6533 6534 653.3 1306.6000000000001 6533 1987-11-21 2024-10-11 01:48:53.000 1987-11-21 2024-10-11 01:48:53 +6534 6534 6535 653.4 1306.8000000000002 6534 1987-11-22 2024-10-11 01:48:54.000 1987-11-22 2024-10-11 01:48:54 +6535 6535 6536 653.5 1307 6535 1987-11-23 2024-10-11 01:48:55.000 1987-11-23 2024-10-11 01:48:55 +6536 6536 6537 653.6 1307.2 6536 1987-11-24 2024-10-11 01:48:56.000 1987-11-24 2024-10-11 01:48:56 +6537 6537 6538 653.7 1307.4 6537 1987-11-25 2024-10-11 01:48:57.000 1987-11-25 2024-10-11 01:48:57 +6538 6538 6539 653.8 1307.6000000000001 6538 1987-11-26 2024-10-11 01:48:58.000 1987-11-26 2024-10-11 01:48:58 +6539 6539 6540 653.9 1307.8000000000002 6539 1987-11-27 2024-10-11 01:48:59.000 1987-11-27 2024-10-11 01:48:59 +6540 6540 6541 654 1308 6540 1987-11-28 2024-10-11 01:49:00.000 1987-11-28 2024-10-11 01:49:00 +6541 6541 6542 654.1 1308.2 6541 1987-11-29 2024-10-11 01:49:01.000 1987-11-29 2024-10-11 01:49:01 +6542 6542 6543 654.2 1308.4 6542 1987-11-30 2024-10-11 01:49:02.000 1987-11-30 2024-10-11 01:49:02 +6543 6543 6544 654.3 1308.6000000000001 6543 1987-12-01 2024-10-11 01:49:03.000 1987-12-01 2024-10-11 01:49:03 +6544 6544 6545 654.4 1308.8000000000002 6544 1987-12-02 2024-10-11 01:49:04.000 1987-12-02 2024-10-11 01:49:04 +6545 6545 6546 654.5 1309 6545 1987-12-03 2024-10-11 01:49:05.000 1987-12-03 2024-10-11 01:49:05 +6546 6546 6547 654.6 1309.2 6546 1987-12-04 2024-10-11 01:49:06.000 1987-12-04 2024-10-11 01:49:06 +6547 6547 6548 654.7 1309.4 6547 1987-12-05 2024-10-11 01:49:07.000 1987-12-05 2024-10-11 01:49:07 +6548 6548 6549 654.8 1309.6000000000001 6548 1987-12-06 2024-10-11 01:49:08.000 1987-12-06 2024-10-11 01:49:08 +6549 6549 6550 654.9 1309.8000000000002 6549 1987-12-07 2024-10-11 01:49:09.000 1987-12-07 2024-10-11 01:49:09 +6550 6550 6551 655 1310 6550 1987-12-08 2024-10-11 01:49:10.000 1987-12-08 2024-10-11 01:49:10 +6551 6551 6552 655.1 1310.2 6551 1987-12-09 2024-10-11 01:49:11.000 1987-12-09 2024-10-11 01:49:11 +6552 6552 6553 655.2 1310.4 6552 1987-12-10 2024-10-11 01:49:12.000 1987-12-10 2024-10-11 01:49:12 +6553 6553 6554 655.3 1310.6000000000001 6553 1987-12-11 2024-10-11 01:49:13.000 1987-12-11 2024-10-11 01:49:13 +6554 6554 6555 655.4 1310.8000000000002 6554 1987-12-12 2024-10-11 01:49:14.000 1987-12-12 2024-10-11 01:49:14 +6555 6555 6556 655.5 1311 6555 1987-12-13 2024-10-11 01:49:15.000 1987-12-13 2024-10-11 01:49:15 +6556 6556 6557 655.6 1311.2 6556 1987-12-14 2024-10-11 01:49:16.000 1987-12-14 2024-10-11 01:49:16 +6557 6557 6558 655.7 1311.4 6557 1987-12-15 2024-10-11 01:49:17.000 1987-12-15 2024-10-11 01:49:17 +6558 6558 6559 655.8 1311.6000000000001 6558 1987-12-16 2024-10-11 01:49:18.000 1987-12-16 2024-10-11 01:49:18 +6559 6559 6560 655.9 1311.8000000000002 6559 1987-12-17 2024-10-11 01:49:19.000 1987-12-17 2024-10-11 01:49:19 +6560 6560 6561 656 1312 6560 1987-12-18 2024-10-11 01:49:20.000 1987-12-18 2024-10-11 01:49:20 +6561 6561 6562 656.1 1312.2 6561 1987-12-19 2024-10-11 01:49:21.000 1987-12-19 2024-10-11 01:49:21 +6562 6562 6563 656.2 1312.4 6562 1987-12-20 2024-10-11 01:49:22.000 1987-12-20 2024-10-11 01:49:22 +6563 6563 6564 656.3 1312.6000000000001 6563 1987-12-21 2024-10-11 01:49:23.000 1987-12-21 2024-10-11 01:49:23 +6564 6564 6565 656.4 1312.8000000000002 6564 1987-12-22 2024-10-11 01:49:24.000 1987-12-22 2024-10-11 01:49:24 +6565 6565 6566 656.5 1313 6565 1987-12-23 2024-10-11 01:49:25.000 1987-12-23 2024-10-11 01:49:25 +6566 6566 6567 656.6 1313.2 6566 1987-12-24 2024-10-11 01:49:26.000 1987-12-24 2024-10-11 01:49:26 +6567 6567 6568 656.7 1313.4 6567 1987-12-25 2024-10-11 01:49:27.000 1987-12-25 2024-10-11 01:49:27 +6568 6568 6569 656.8 1313.6000000000001 6568 1987-12-26 2024-10-11 01:49:28.000 1987-12-26 2024-10-11 01:49:28 +6569 6569 6570 656.9 1313.8000000000002 6569 1987-12-27 2024-10-11 01:49:29.000 1987-12-27 2024-10-11 01:49:29 +6570 6570 6571 657 1314 6570 1987-12-28 2024-10-11 01:49:30.000 1987-12-28 2024-10-11 01:49:30 +6571 6571 6572 657.1 1314.2 6571 1987-12-29 2024-10-11 01:49:31.000 1987-12-29 2024-10-11 01:49:31 +6572 6572 6573 657.2 1314.4 6572 1987-12-30 2024-10-11 01:49:32.000 1987-12-30 2024-10-11 01:49:32 +6573 6573 6574 657.3 1314.6000000000001 6573 1987-12-31 2024-10-11 01:49:33.000 1987-12-31 2024-10-11 01:49:33 +6574 6574 6575 657.4 1314.8000000000002 6574 1988-01-01 2024-10-11 01:49:34.000 1988-01-01 2024-10-11 01:49:34 +6575 6575 6576 657.5 1315 6575 1988-01-02 2024-10-11 01:49:35.000 1988-01-02 2024-10-11 01:49:35 +6576 6576 6577 657.6 1315.2 6576 1988-01-03 2024-10-11 01:49:36.000 1988-01-03 2024-10-11 01:49:36 +6577 6577 6578 657.7 1315.4 6577 1988-01-04 2024-10-11 01:49:37.000 1988-01-04 2024-10-11 01:49:37 +6578 6578 6579 657.8 1315.6000000000001 6578 1988-01-05 2024-10-11 01:49:38.000 1988-01-05 2024-10-11 01:49:38 +6579 6579 6580 657.9 1315.8000000000002 6579 1988-01-06 2024-10-11 01:49:39.000 1988-01-06 2024-10-11 01:49:39 +6580 6580 6581 658 1316 6580 1988-01-07 2024-10-11 01:49:40.000 1988-01-07 2024-10-11 01:49:40 +6581 6581 6582 658.1 1316.2 6581 1988-01-08 2024-10-11 01:49:41.000 1988-01-08 2024-10-11 01:49:41 +6582 6582 6583 658.2 1316.4 6582 1988-01-09 2024-10-11 01:49:42.000 1988-01-09 2024-10-11 01:49:42 +6583 6583 6584 658.3 1316.6000000000001 6583 1988-01-10 2024-10-11 01:49:43.000 1988-01-10 2024-10-11 01:49:43 +6584 6584 6585 658.4 1316.8000000000002 6584 1988-01-11 2024-10-11 01:49:44.000 1988-01-11 2024-10-11 01:49:44 +6585 6585 6586 658.5 1317 6585 1988-01-12 2024-10-11 01:49:45.000 1988-01-12 2024-10-11 01:49:45 +6586 6586 6587 658.6 1317.2 6586 1988-01-13 2024-10-11 01:49:46.000 1988-01-13 2024-10-11 01:49:46 +6587 6587 6588 658.7 1317.4 6587 1988-01-14 2024-10-11 01:49:47.000 1988-01-14 2024-10-11 01:49:47 +6588 6588 6589 658.8 1317.6000000000001 6588 1988-01-15 2024-10-11 01:49:48.000 1988-01-15 2024-10-11 01:49:48 +6589 6589 6590 658.9 1317.8000000000002 6589 1988-01-16 2024-10-11 01:49:49.000 1988-01-16 2024-10-11 01:49:49 +6590 6590 6591 659 1318 6590 1988-01-17 2024-10-11 01:49:50.000 1988-01-17 2024-10-11 01:49:50 +6591 6591 6592 659.1 1318.2 6591 1988-01-18 2024-10-11 01:49:51.000 1988-01-18 2024-10-11 01:49:51 +6592 6592 6593 659.2 1318.4 6592 1988-01-19 2024-10-11 01:49:52.000 1988-01-19 2024-10-11 01:49:52 +6593 6593 6594 659.3 1318.6000000000001 6593 1988-01-20 2024-10-11 01:49:53.000 1988-01-20 2024-10-11 01:49:53 +6594 6594 6595 659.4 1318.8000000000002 6594 1988-01-21 2024-10-11 01:49:54.000 1988-01-21 2024-10-11 01:49:54 +6595 6595 6596 659.5 1319 6595 1988-01-22 2024-10-11 01:49:55.000 1988-01-22 2024-10-11 01:49:55 +6596 6596 6597 659.6 1319.2 6596 1988-01-23 2024-10-11 01:49:56.000 1988-01-23 2024-10-11 01:49:56 +6597 6597 6598 659.7 1319.4 6597 1988-01-24 2024-10-11 01:49:57.000 1988-01-24 2024-10-11 01:49:57 +6598 6598 6599 659.8 1319.6000000000001 6598 1988-01-25 2024-10-11 01:49:58.000 1988-01-25 2024-10-11 01:49:58 +6599 6599 6600 659.9 1319.8000000000002 6599 1988-01-26 2024-10-11 01:49:59.000 1988-01-26 2024-10-11 01:49:59 +6600 6600 6601 660 1320 6600 1988-01-27 2024-10-11 01:50:00.000 1988-01-27 2024-10-11 01:50:00 +6601 6601 6602 660.1 1320.2 6601 1988-01-28 2024-10-11 01:50:01.000 1988-01-28 2024-10-11 01:50:01 +6602 6602 6603 660.2 1320.4 6602 1988-01-29 2024-10-11 01:50:02.000 1988-01-29 2024-10-11 01:50:02 +6603 6603 6604 660.3 1320.6000000000001 6603 1988-01-30 2024-10-11 01:50:03.000 1988-01-30 2024-10-11 01:50:03 +6604 6604 6605 660.4 1320.8000000000002 6604 1988-01-31 2024-10-11 01:50:04.000 1988-01-31 2024-10-11 01:50:04 +6605 6605 6606 660.5 1321 6605 1988-02-01 2024-10-11 01:50:05.000 1988-02-01 2024-10-11 01:50:05 +6606 6606 6607 660.6 1321.2 6606 1988-02-02 2024-10-11 01:50:06.000 1988-02-02 2024-10-11 01:50:06 +6607 6607 6608 660.7 1321.4 6607 1988-02-03 2024-10-11 01:50:07.000 1988-02-03 2024-10-11 01:50:07 +6608 6608 6609 660.8 1321.6000000000001 6608 1988-02-04 2024-10-11 01:50:08.000 1988-02-04 2024-10-11 01:50:08 +6609 6609 6610 660.9 1321.8000000000002 6609 1988-02-05 2024-10-11 01:50:09.000 1988-02-05 2024-10-11 01:50:09 +6610 6610 6611 661 1322 6610 1988-02-06 2024-10-11 01:50:10.000 1988-02-06 2024-10-11 01:50:10 +6611 6611 6612 661.1 1322.2 6611 1988-02-07 2024-10-11 01:50:11.000 1988-02-07 2024-10-11 01:50:11 +6612 6612 6613 661.2 1322.4 6612 1988-02-08 2024-10-11 01:50:12.000 1988-02-08 2024-10-11 01:50:12 +6613 6613 6614 661.3 1322.6000000000001 6613 1988-02-09 2024-10-11 01:50:13.000 1988-02-09 2024-10-11 01:50:13 +6614 6614 6615 661.4 1322.8000000000002 6614 1988-02-10 2024-10-11 01:50:14.000 1988-02-10 2024-10-11 01:50:14 +6615 6615 6616 661.5 1323 6615 1988-02-11 2024-10-11 01:50:15.000 1988-02-11 2024-10-11 01:50:15 +6616 6616 6617 661.6 1323.2 6616 1988-02-12 2024-10-11 01:50:16.000 1988-02-12 2024-10-11 01:50:16 +6617 6617 6618 661.7 1323.4 6617 1988-02-13 2024-10-11 01:50:17.000 1988-02-13 2024-10-11 01:50:17 +6618 6618 6619 661.8 1323.6000000000001 6618 1988-02-14 2024-10-11 01:50:18.000 1988-02-14 2024-10-11 01:50:18 +6619 6619 6620 661.9 1323.8000000000002 6619 1988-02-15 2024-10-11 01:50:19.000 1988-02-15 2024-10-11 01:50:19 +6620 6620 6621 662 1324 6620 1988-02-16 2024-10-11 01:50:20.000 1988-02-16 2024-10-11 01:50:20 +6621 6621 6622 662.1 1324.2 6621 1988-02-17 2024-10-11 01:50:21.000 1988-02-17 2024-10-11 01:50:21 +6622 6622 6623 662.2 1324.4 6622 1988-02-18 2024-10-11 01:50:22.000 1988-02-18 2024-10-11 01:50:22 +6623 6623 6624 662.3 1324.6000000000001 6623 1988-02-19 2024-10-11 01:50:23.000 1988-02-19 2024-10-11 01:50:23 +6624 6624 6625 662.4 1324.8000000000002 6624 1988-02-20 2024-10-11 01:50:24.000 1988-02-20 2024-10-11 01:50:24 +6625 6625 6626 662.5 1325 6625 1988-02-21 2024-10-11 01:50:25.000 1988-02-21 2024-10-11 01:50:25 +6626 6626 6627 662.6 1325.2 6626 1988-02-22 2024-10-11 01:50:26.000 1988-02-22 2024-10-11 01:50:26 +6627 6627 6628 662.7 1325.4 6627 1988-02-23 2024-10-11 01:50:27.000 1988-02-23 2024-10-11 01:50:27 +6628 6628 6629 662.8 1325.6000000000001 6628 1988-02-24 2024-10-11 01:50:28.000 1988-02-24 2024-10-11 01:50:28 +6629 6629 6630 662.9 1325.8000000000002 6629 1988-02-25 2024-10-11 01:50:29.000 1988-02-25 2024-10-11 01:50:29 +6630 6630 6631 663 1326 6630 1988-02-26 2024-10-11 01:50:30.000 1988-02-26 2024-10-11 01:50:30 +6631 6631 6632 663.1 1326.2 6631 1988-02-27 2024-10-11 01:50:31.000 1988-02-27 2024-10-11 01:50:31 +6632 6632 6633 663.2 1326.4 6632 1988-02-28 2024-10-11 01:50:32.000 1988-02-28 2024-10-11 01:50:32 +6633 6633 6634 663.3 1326.6000000000001 6633 1988-02-29 2024-10-11 01:50:33.000 1988-02-29 2024-10-11 01:50:33 +6634 6634 6635 663.4 1326.8000000000002 6634 1988-03-01 2024-10-11 01:50:34.000 1988-03-01 2024-10-11 01:50:34 +6635 6635 6636 663.5 1327 6635 1988-03-02 2024-10-11 01:50:35.000 1988-03-02 2024-10-11 01:50:35 +6636 6636 6637 663.6 1327.2 6636 1988-03-03 2024-10-11 01:50:36.000 1988-03-03 2024-10-11 01:50:36 +6637 6637 6638 663.7 1327.4 6637 1988-03-04 2024-10-11 01:50:37.000 1988-03-04 2024-10-11 01:50:37 +6638 6638 6639 663.8 1327.6000000000001 6638 1988-03-05 2024-10-11 01:50:38.000 1988-03-05 2024-10-11 01:50:38 +6639 6639 6640 663.9 1327.8000000000002 6639 1988-03-06 2024-10-11 01:50:39.000 1988-03-06 2024-10-11 01:50:39 +6640 6640 6641 664 1328 6640 1988-03-07 2024-10-11 01:50:40.000 1988-03-07 2024-10-11 01:50:40 +6641 6641 6642 664.1 1328.2 6641 1988-03-08 2024-10-11 01:50:41.000 1988-03-08 2024-10-11 01:50:41 +6642 6642 6643 664.2 1328.4 6642 1988-03-09 2024-10-11 01:50:42.000 1988-03-09 2024-10-11 01:50:42 +6643 6643 6644 664.3 1328.6000000000001 6643 1988-03-10 2024-10-11 01:50:43.000 1988-03-10 2024-10-11 01:50:43 +6644 6644 6645 664.4 1328.8000000000002 6644 1988-03-11 2024-10-11 01:50:44.000 1988-03-11 2024-10-11 01:50:44 +6645 6645 6646 664.5 1329 6645 1988-03-12 2024-10-11 01:50:45.000 1988-03-12 2024-10-11 01:50:45 +6646 6646 6647 664.6 1329.2 6646 1988-03-13 2024-10-11 01:50:46.000 1988-03-13 2024-10-11 01:50:46 +6647 6647 6648 664.7 1329.4 6647 1988-03-14 2024-10-11 01:50:47.000 1988-03-14 2024-10-11 01:50:47 +6648 6648 6649 664.8 1329.6000000000001 6648 1988-03-15 2024-10-11 01:50:48.000 1988-03-15 2024-10-11 01:50:48 +6649 6649 6650 664.9 1329.8000000000002 6649 1988-03-16 2024-10-11 01:50:49.000 1988-03-16 2024-10-11 01:50:49 +6650 6650 6651 665 1330 6650 1988-03-17 2024-10-11 01:50:50.000 1988-03-17 2024-10-11 01:50:50 +6651 6651 6652 665.1 1330.2 6651 1988-03-18 2024-10-11 01:50:51.000 1988-03-18 2024-10-11 01:50:51 +6652 6652 6653 665.2 1330.4 6652 1988-03-19 2024-10-11 01:50:52.000 1988-03-19 2024-10-11 01:50:52 +6653 6653 6654 665.3 1330.6000000000001 6653 1988-03-20 2024-10-11 01:50:53.000 1988-03-20 2024-10-11 01:50:53 +6654 6654 6655 665.4 1330.8000000000002 6654 1988-03-21 2024-10-11 01:50:54.000 1988-03-21 2024-10-11 01:50:54 +6655 6655 6656 665.5 1331 6655 1988-03-22 2024-10-11 01:50:55.000 1988-03-22 2024-10-11 01:50:55 +6656 6656 6657 665.6 1331.2 6656 1988-03-23 2024-10-11 01:50:56.000 1988-03-23 2024-10-11 01:50:56 +6657 6657 6658 665.7 1331.4 6657 1988-03-24 2024-10-11 01:50:57.000 1988-03-24 2024-10-11 01:50:57 +6658 6658 6659 665.8 1331.6000000000001 6658 1988-03-25 2024-10-11 01:50:58.000 1988-03-25 2024-10-11 01:50:58 +6659 6659 6660 665.9 1331.8000000000002 6659 1988-03-26 2024-10-11 01:50:59.000 1988-03-26 2024-10-11 01:50:59 +6660 6660 6661 666 1332 6660 1988-03-27 2024-10-11 01:51:00.000 1988-03-27 2024-10-11 01:51:00 +6661 6661 6662 666.1 1332.2 6661 1988-03-28 2024-10-11 01:51:01.000 1988-03-28 2024-10-11 01:51:01 +6662 6662 6663 666.2 1332.4 6662 1988-03-29 2024-10-11 01:51:02.000 1988-03-29 2024-10-11 01:51:02 +6663 6663 6664 666.3 1332.6000000000001 6663 1988-03-30 2024-10-11 01:51:03.000 1988-03-30 2024-10-11 01:51:03 +6664 6664 6665 666.4 1332.8000000000002 6664 1988-03-31 2024-10-11 01:51:04.000 1988-03-31 2024-10-11 01:51:04 +6665 6665 6666 666.5 1333 6665 1988-04-01 2024-10-11 01:51:05.000 1988-04-01 2024-10-11 01:51:05 +6666 6666 6667 666.6 1333.2 6666 1988-04-02 2024-10-11 01:51:06.000 1988-04-02 2024-10-11 01:51:06 +6667 6667 6668 666.7 1333.4 6667 1988-04-03 2024-10-11 01:51:07.000 1988-04-03 2024-10-11 01:51:07 +6668 6668 6669 666.8 1333.6000000000001 6668 1988-04-04 2024-10-11 01:51:08.000 1988-04-04 2024-10-11 01:51:08 +6669 6669 6670 666.9 1333.8000000000002 6669 1988-04-05 2024-10-11 01:51:09.000 1988-04-05 2024-10-11 01:51:09 +6670 6670 6671 667 1334 6670 1988-04-06 2024-10-11 01:51:10.000 1988-04-06 2024-10-11 01:51:10 +6671 6671 6672 667.1 1334.2 6671 1988-04-07 2024-10-11 01:51:11.000 1988-04-07 2024-10-11 01:51:11 +6672 6672 6673 667.2 1334.4 6672 1988-04-08 2024-10-11 01:51:12.000 1988-04-08 2024-10-11 01:51:12 +6673 6673 6674 667.3 1334.6000000000001 6673 1988-04-09 2024-10-11 01:51:13.000 1988-04-09 2024-10-11 01:51:13 +6674 6674 6675 667.4 1334.8000000000002 6674 1988-04-10 2024-10-11 01:51:14.000 1988-04-10 2024-10-11 01:51:14 +6675 6675 6676 667.5 1335 6675 1988-04-11 2024-10-11 01:51:15.000 1988-04-11 2024-10-11 01:51:15 +6676 6676 6677 667.6 1335.2 6676 1988-04-12 2024-10-11 01:51:16.000 1988-04-12 2024-10-11 01:51:16 +6677 6677 6678 667.7 1335.4 6677 1988-04-13 2024-10-11 01:51:17.000 1988-04-13 2024-10-11 01:51:17 +6678 6678 6679 667.8 1335.6000000000001 6678 1988-04-14 2024-10-11 01:51:18.000 1988-04-14 2024-10-11 01:51:18 +6679 6679 6680 667.9 1335.8000000000002 6679 1988-04-15 2024-10-11 01:51:19.000 1988-04-15 2024-10-11 01:51:19 +6680 6680 6681 668 1336 6680 1988-04-16 2024-10-11 01:51:20.000 1988-04-16 2024-10-11 01:51:20 +6681 6681 6682 668.1 1336.2 6681 1988-04-17 2024-10-11 01:51:21.000 1988-04-17 2024-10-11 01:51:21 +6682 6682 6683 668.2 1336.4 6682 1988-04-18 2024-10-11 01:51:22.000 1988-04-18 2024-10-11 01:51:22 +6683 6683 6684 668.3 1336.6000000000001 6683 1988-04-19 2024-10-11 01:51:23.000 1988-04-19 2024-10-11 01:51:23 +6684 6684 6685 668.4 1336.8000000000002 6684 1988-04-20 2024-10-11 01:51:24.000 1988-04-20 2024-10-11 01:51:24 +6685 6685 6686 668.5 1337 6685 1988-04-21 2024-10-11 01:51:25.000 1988-04-21 2024-10-11 01:51:25 +6686 6686 6687 668.6 1337.2 6686 1988-04-22 2024-10-11 01:51:26.000 1988-04-22 2024-10-11 01:51:26 +6687 6687 6688 668.7 1337.4 6687 1988-04-23 2024-10-11 01:51:27.000 1988-04-23 2024-10-11 01:51:27 +6688 6688 6689 668.8 1337.6000000000001 6688 1988-04-24 2024-10-11 01:51:28.000 1988-04-24 2024-10-11 01:51:28 +6689 6689 6690 668.9 1337.8000000000002 6689 1988-04-25 2024-10-11 01:51:29.000 1988-04-25 2024-10-11 01:51:29 +6690 6690 6691 669 1338 6690 1988-04-26 2024-10-11 01:51:30.000 1988-04-26 2024-10-11 01:51:30 +6691 6691 6692 669.1 1338.2 6691 1988-04-27 2024-10-11 01:51:31.000 1988-04-27 2024-10-11 01:51:31 +6692 6692 6693 669.2 1338.4 6692 1988-04-28 2024-10-11 01:51:32.000 1988-04-28 2024-10-11 01:51:32 +6693 6693 6694 669.3 1338.6000000000001 6693 1988-04-29 2024-10-11 01:51:33.000 1988-04-29 2024-10-11 01:51:33 +6694 6694 6695 669.4 1338.8000000000002 6694 1988-04-30 2024-10-11 01:51:34.000 1988-04-30 2024-10-11 01:51:34 +6695 6695 6696 669.5 1339 6695 1988-05-01 2024-10-11 01:51:35.000 1988-05-01 2024-10-11 01:51:35 +6696 6696 6697 669.6 1339.2 6696 1988-05-02 2024-10-11 01:51:36.000 1988-05-02 2024-10-11 01:51:36 +6697 6697 6698 669.7 1339.4 6697 1988-05-03 2024-10-11 01:51:37.000 1988-05-03 2024-10-11 01:51:37 +6698 6698 6699 669.8 1339.6000000000001 6698 1988-05-04 2024-10-11 01:51:38.000 1988-05-04 2024-10-11 01:51:38 +6699 6699 6700 669.9 1339.8000000000002 6699 1988-05-05 2024-10-11 01:51:39.000 1988-05-05 2024-10-11 01:51:39 +6700 6700 6701 670 1340 6700 1988-05-06 2024-10-11 01:51:40.000 1988-05-06 2024-10-11 01:51:40 +6701 6701 6702 670.1 1340.2 6701 1988-05-07 2024-10-11 01:51:41.000 1988-05-07 2024-10-11 01:51:41 +6702 6702 6703 670.2 1340.4 6702 1988-05-08 2024-10-11 01:51:42.000 1988-05-08 2024-10-11 01:51:42 +6703 6703 6704 670.3 1340.6000000000001 6703 1988-05-09 2024-10-11 01:51:43.000 1988-05-09 2024-10-11 01:51:43 +6704 6704 6705 670.4 1340.8000000000002 6704 1988-05-10 2024-10-11 01:51:44.000 1988-05-10 2024-10-11 01:51:44 +6705 6705 6706 670.5 1341 6705 1988-05-11 2024-10-11 01:51:45.000 1988-05-11 2024-10-11 01:51:45 +6706 6706 6707 670.6 1341.2 6706 1988-05-12 2024-10-11 01:51:46.000 1988-05-12 2024-10-11 01:51:46 +6707 6707 6708 670.7 1341.4 6707 1988-05-13 2024-10-11 01:51:47.000 1988-05-13 2024-10-11 01:51:47 +6708 6708 6709 670.8 1341.6000000000001 6708 1988-05-14 2024-10-11 01:51:48.000 1988-05-14 2024-10-11 01:51:48 +6709 6709 6710 670.9 1341.8000000000002 6709 1988-05-15 2024-10-11 01:51:49.000 1988-05-15 2024-10-11 01:51:49 +6710 6710 6711 671 1342 6710 1988-05-16 2024-10-11 01:51:50.000 1988-05-16 2024-10-11 01:51:50 +6711 6711 6712 671.1 1342.2 6711 1988-05-17 2024-10-11 01:51:51.000 1988-05-17 2024-10-11 01:51:51 +6712 6712 6713 671.2 1342.4 6712 1988-05-18 2024-10-11 01:51:52.000 1988-05-18 2024-10-11 01:51:52 +6713 6713 6714 671.3 1342.6000000000001 6713 1988-05-19 2024-10-11 01:51:53.000 1988-05-19 2024-10-11 01:51:53 +6714 6714 6715 671.4 1342.8000000000002 6714 1988-05-20 2024-10-11 01:51:54.000 1988-05-20 2024-10-11 01:51:54 +6715 6715 6716 671.5 1343 6715 1988-05-21 2024-10-11 01:51:55.000 1988-05-21 2024-10-11 01:51:55 +6716 6716 6717 671.6 1343.2 6716 1988-05-22 2024-10-11 01:51:56.000 1988-05-22 2024-10-11 01:51:56 +6717 6717 6718 671.7 1343.4 6717 1988-05-23 2024-10-11 01:51:57.000 1988-05-23 2024-10-11 01:51:57 +6718 6718 6719 671.8 1343.6000000000001 6718 1988-05-24 2024-10-11 01:51:58.000 1988-05-24 2024-10-11 01:51:58 +6719 6719 6720 671.9 1343.8000000000002 6719 1988-05-25 2024-10-11 01:51:59.000 1988-05-25 2024-10-11 01:51:59 +6720 6720 6721 672 1344 6720 1988-05-26 2024-10-11 01:52:00.000 1988-05-26 2024-10-11 01:52:00 +6721 6721 6722 672.1 1344.2 6721 1988-05-27 2024-10-11 01:52:01.000 1988-05-27 2024-10-11 01:52:01 +6722 6722 6723 672.2 1344.4 6722 1988-05-28 2024-10-11 01:52:02.000 1988-05-28 2024-10-11 01:52:02 +6723 6723 6724 672.3 1344.6000000000001 6723 1988-05-29 2024-10-11 01:52:03.000 1988-05-29 2024-10-11 01:52:03 +6724 6724 6725 672.4 1344.8000000000002 6724 1988-05-30 2024-10-11 01:52:04.000 1988-05-30 2024-10-11 01:52:04 +6725 6725 6726 672.5 1345 6725 1988-05-31 2024-10-11 01:52:05.000 1988-05-31 2024-10-11 01:52:05 +6726 6726 6727 672.6 1345.2 6726 1988-06-01 2024-10-11 01:52:06.000 1988-06-01 2024-10-11 01:52:06 +6727 6727 6728 672.7 1345.4 6727 1988-06-02 2024-10-11 01:52:07.000 1988-06-02 2024-10-11 01:52:07 +6728 6728 6729 672.8 1345.6000000000001 6728 1988-06-03 2024-10-11 01:52:08.000 1988-06-03 2024-10-11 01:52:08 +6729 6729 6730 672.9 1345.8000000000002 6729 1988-06-04 2024-10-11 01:52:09.000 1988-06-04 2024-10-11 01:52:09 +6730 6730 6731 673 1346 6730 1988-06-05 2024-10-11 01:52:10.000 1988-06-05 2024-10-11 01:52:10 +6731 6731 6732 673.1 1346.2 6731 1988-06-06 2024-10-11 01:52:11.000 1988-06-06 2024-10-11 01:52:11 +6732 6732 6733 673.2 1346.4 6732 1988-06-07 2024-10-11 01:52:12.000 1988-06-07 2024-10-11 01:52:12 +6733 6733 6734 673.3 1346.6000000000001 6733 1988-06-08 2024-10-11 01:52:13.000 1988-06-08 2024-10-11 01:52:13 +6734 6734 6735 673.4 1346.8000000000002 6734 1988-06-09 2024-10-11 01:52:14.000 1988-06-09 2024-10-11 01:52:14 +6735 6735 6736 673.5 1347 6735 1988-06-10 2024-10-11 01:52:15.000 1988-06-10 2024-10-11 01:52:15 +6736 6736 6737 673.6 1347.2 6736 1988-06-11 2024-10-11 01:52:16.000 1988-06-11 2024-10-11 01:52:16 +6737 6737 6738 673.7 1347.4 6737 1988-06-12 2024-10-11 01:52:17.000 1988-06-12 2024-10-11 01:52:17 +6738 6738 6739 673.8 1347.6000000000001 6738 1988-06-13 2024-10-11 01:52:18.000 1988-06-13 2024-10-11 01:52:18 +6739 6739 6740 673.9 1347.8000000000002 6739 1988-06-14 2024-10-11 01:52:19.000 1988-06-14 2024-10-11 01:52:19 +6740 6740 6741 674 1348 6740 1988-06-15 2024-10-11 01:52:20.000 1988-06-15 2024-10-11 01:52:20 +6741 6741 6742 674.1 1348.2 6741 1988-06-16 2024-10-11 01:52:21.000 1988-06-16 2024-10-11 01:52:21 +6742 6742 6743 674.2 1348.4 6742 1988-06-17 2024-10-11 01:52:22.000 1988-06-17 2024-10-11 01:52:22 +6743 6743 6744 674.3 1348.6000000000001 6743 1988-06-18 2024-10-11 01:52:23.000 1988-06-18 2024-10-11 01:52:23 +6744 6744 6745 674.4 1348.8000000000002 6744 1988-06-19 2024-10-11 01:52:24.000 1988-06-19 2024-10-11 01:52:24 +6745 6745 6746 674.5 1349 6745 1988-06-20 2024-10-11 01:52:25.000 1988-06-20 2024-10-11 01:52:25 +6746 6746 6747 674.6 1349.2 6746 1988-06-21 2024-10-11 01:52:26.000 1988-06-21 2024-10-11 01:52:26 +6747 6747 6748 674.7 1349.4 6747 1988-06-22 2024-10-11 01:52:27.000 1988-06-22 2024-10-11 01:52:27 +6748 6748 6749 674.8 1349.6000000000001 6748 1988-06-23 2024-10-11 01:52:28.000 1988-06-23 2024-10-11 01:52:28 +6749 6749 6750 674.9 1349.8000000000002 6749 1988-06-24 2024-10-11 01:52:29.000 1988-06-24 2024-10-11 01:52:29 +6750 6750 6751 675 1350 6750 1988-06-25 2024-10-11 01:52:30.000 1988-06-25 2024-10-11 01:52:30 +6751 6751 6752 675.1 1350.2 6751 1988-06-26 2024-10-11 01:52:31.000 1988-06-26 2024-10-11 01:52:31 +6752 6752 6753 675.2 1350.4 6752 1988-06-27 2024-10-11 01:52:32.000 1988-06-27 2024-10-11 01:52:32 +6753 6753 6754 675.3 1350.6000000000001 6753 1988-06-28 2024-10-11 01:52:33.000 1988-06-28 2024-10-11 01:52:33 +6754 6754 6755 675.4 1350.8000000000002 6754 1988-06-29 2024-10-11 01:52:34.000 1988-06-29 2024-10-11 01:52:34 +6755 6755 6756 675.5 1351 6755 1988-06-30 2024-10-11 01:52:35.000 1988-06-30 2024-10-11 01:52:35 +6756 6756 6757 675.6 1351.2 6756 1988-07-01 2024-10-11 01:52:36.000 1988-07-01 2024-10-11 01:52:36 +6757 6757 6758 675.7 1351.4 6757 1988-07-02 2024-10-11 01:52:37.000 1988-07-02 2024-10-11 01:52:37 +6758 6758 6759 675.8 1351.6000000000001 6758 1988-07-03 2024-10-11 01:52:38.000 1988-07-03 2024-10-11 01:52:38 +6759 6759 6760 675.9 1351.8000000000002 6759 1988-07-04 2024-10-11 01:52:39.000 1988-07-04 2024-10-11 01:52:39 +6760 6760 6761 676 1352 6760 1988-07-05 2024-10-11 01:52:40.000 1988-07-05 2024-10-11 01:52:40 +6761 6761 6762 676.1 1352.2 6761 1988-07-06 2024-10-11 01:52:41.000 1988-07-06 2024-10-11 01:52:41 +6762 6762 6763 676.2 1352.4 6762 1988-07-07 2024-10-11 01:52:42.000 1988-07-07 2024-10-11 01:52:42 +6763 6763 6764 676.3 1352.6000000000001 6763 1988-07-08 2024-10-11 01:52:43.000 1988-07-08 2024-10-11 01:52:43 +6764 6764 6765 676.4 1352.8000000000002 6764 1988-07-09 2024-10-11 01:52:44.000 1988-07-09 2024-10-11 01:52:44 +6765 6765 6766 676.5 1353 6765 1988-07-10 2024-10-11 01:52:45.000 1988-07-10 2024-10-11 01:52:45 +6766 6766 6767 676.6 1353.2 6766 1988-07-11 2024-10-11 01:52:46.000 1988-07-11 2024-10-11 01:52:46 +6767 6767 6768 676.7 1353.4 6767 1988-07-12 2024-10-11 01:52:47.000 1988-07-12 2024-10-11 01:52:47 +6768 6768 6769 676.8 1353.6000000000001 6768 1988-07-13 2024-10-11 01:52:48.000 1988-07-13 2024-10-11 01:52:48 +6769 6769 6770 676.9 1353.8000000000002 6769 1988-07-14 2024-10-11 01:52:49.000 1988-07-14 2024-10-11 01:52:49 +6770 6770 6771 677 1354 6770 1988-07-15 2024-10-11 01:52:50.000 1988-07-15 2024-10-11 01:52:50 +6771 6771 6772 677.1 1354.2 6771 1988-07-16 2024-10-11 01:52:51.000 1988-07-16 2024-10-11 01:52:51 +6772 6772 6773 677.2 1354.4 6772 1988-07-17 2024-10-11 01:52:52.000 1988-07-17 2024-10-11 01:52:52 +6773 6773 6774 677.3 1354.6000000000001 6773 1988-07-18 2024-10-11 01:52:53.000 1988-07-18 2024-10-11 01:52:53 +6774 6774 6775 677.4 1354.8000000000002 6774 1988-07-19 2024-10-11 01:52:54.000 1988-07-19 2024-10-11 01:52:54 +6775 6775 6776 677.5 1355 6775 1988-07-20 2024-10-11 01:52:55.000 1988-07-20 2024-10-11 01:52:55 +6776 6776 6777 677.6 1355.2 6776 1988-07-21 2024-10-11 01:52:56.000 1988-07-21 2024-10-11 01:52:56 +6777 6777 6778 677.7 1355.4 6777 1988-07-22 2024-10-11 01:52:57.000 1988-07-22 2024-10-11 01:52:57 +6778 6778 6779 677.8 1355.6000000000001 6778 1988-07-23 2024-10-11 01:52:58.000 1988-07-23 2024-10-11 01:52:58 +6779 6779 6780 677.9 1355.8000000000002 6779 1988-07-24 2024-10-11 01:52:59.000 1988-07-24 2024-10-11 01:52:59 +6780 6780 6781 678 1356 6780 1988-07-25 2024-10-11 01:53:00.000 1988-07-25 2024-10-11 01:53:00 +6781 6781 6782 678.1 1356.2 6781 1988-07-26 2024-10-11 01:53:01.000 1988-07-26 2024-10-11 01:53:01 +6782 6782 6783 678.2 1356.4 6782 1988-07-27 2024-10-11 01:53:02.000 1988-07-27 2024-10-11 01:53:02 +6783 6783 6784 678.3 1356.6000000000001 6783 1988-07-28 2024-10-11 01:53:03.000 1988-07-28 2024-10-11 01:53:03 +6784 6784 6785 678.4 1356.8000000000002 6784 1988-07-29 2024-10-11 01:53:04.000 1988-07-29 2024-10-11 01:53:04 +6785 6785 6786 678.5 1357 6785 1988-07-30 2024-10-11 01:53:05.000 1988-07-30 2024-10-11 01:53:05 +6786 6786 6787 678.6 1357.2 6786 1988-07-31 2024-10-11 01:53:06.000 1988-07-31 2024-10-11 01:53:06 +6787 6787 6788 678.7 1357.4 6787 1988-08-01 2024-10-11 01:53:07.000 1988-08-01 2024-10-11 01:53:07 +6788 6788 6789 678.8 1357.6000000000001 6788 1988-08-02 2024-10-11 01:53:08.000 1988-08-02 2024-10-11 01:53:08 +6789 6789 6790 678.9 1357.8000000000002 6789 1988-08-03 2024-10-11 01:53:09.000 1988-08-03 2024-10-11 01:53:09 +6790 6790 6791 679 1358 6790 1988-08-04 2024-10-11 01:53:10.000 1988-08-04 2024-10-11 01:53:10 +6791 6791 6792 679.1 1358.2 6791 1988-08-05 2024-10-11 01:53:11.000 1988-08-05 2024-10-11 01:53:11 +6792 6792 6793 679.2 1358.4 6792 1988-08-06 2024-10-11 01:53:12.000 1988-08-06 2024-10-11 01:53:12 +6793 6793 6794 679.3 1358.6000000000001 6793 1988-08-07 2024-10-11 01:53:13.000 1988-08-07 2024-10-11 01:53:13 +6794 6794 6795 679.4 1358.8000000000002 6794 1988-08-08 2024-10-11 01:53:14.000 1988-08-08 2024-10-11 01:53:14 +6795 6795 6796 679.5 1359 6795 1988-08-09 2024-10-11 01:53:15.000 1988-08-09 2024-10-11 01:53:15 +6796 6796 6797 679.6 1359.2 6796 1988-08-10 2024-10-11 01:53:16.000 1988-08-10 2024-10-11 01:53:16 +6797 6797 6798 679.7 1359.4 6797 1988-08-11 2024-10-11 01:53:17.000 1988-08-11 2024-10-11 01:53:17 +6798 6798 6799 679.8 1359.6000000000001 6798 1988-08-12 2024-10-11 01:53:18.000 1988-08-12 2024-10-11 01:53:18 +6799 6799 6800 679.9 1359.8000000000002 6799 1988-08-13 2024-10-11 01:53:19.000 1988-08-13 2024-10-11 01:53:19 +6800 6800 6801 680 1360 6800 1988-08-14 2024-10-11 01:53:20.000 1988-08-14 2024-10-11 01:53:20 +6801 6801 6802 680.1 1360.2 6801 1988-08-15 2024-10-11 01:53:21.000 1988-08-15 2024-10-11 01:53:21 +6802 6802 6803 680.2 1360.4 6802 1988-08-16 2024-10-11 01:53:22.000 1988-08-16 2024-10-11 01:53:22 +6803 6803 6804 680.3 1360.6000000000001 6803 1988-08-17 2024-10-11 01:53:23.000 1988-08-17 2024-10-11 01:53:23 +6804 6804 6805 680.4 1360.8000000000002 6804 1988-08-18 2024-10-11 01:53:24.000 1988-08-18 2024-10-11 01:53:24 +6805 6805 6806 680.5 1361 6805 1988-08-19 2024-10-11 01:53:25.000 1988-08-19 2024-10-11 01:53:25 +6806 6806 6807 680.6 1361.2 6806 1988-08-20 2024-10-11 01:53:26.000 1988-08-20 2024-10-11 01:53:26 +6807 6807 6808 680.7 1361.4 6807 1988-08-21 2024-10-11 01:53:27.000 1988-08-21 2024-10-11 01:53:27 +6808 6808 6809 680.8 1361.6000000000001 6808 1988-08-22 2024-10-11 01:53:28.000 1988-08-22 2024-10-11 01:53:28 +6809 6809 6810 680.9 1361.8000000000002 6809 1988-08-23 2024-10-11 01:53:29.000 1988-08-23 2024-10-11 01:53:29 +6810 6810 6811 681 1362 6810 1988-08-24 2024-10-11 01:53:30.000 1988-08-24 2024-10-11 01:53:30 +6811 6811 6812 681.1 1362.2 6811 1988-08-25 2024-10-11 01:53:31.000 1988-08-25 2024-10-11 01:53:31 +6812 6812 6813 681.2 1362.4 6812 1988-08-26 2024-10-11 01:53:32.000 1988-08-26 2024-10-11 01:53:32 +6813 6813 6814 681.3 1362.6000000000001 6813 1988-08-27 2024-10-11 01:53:33.000 1988-08-27 2024-10-11 01:53:33 +6814 6814 6815 681.4 1362.8000000000002 6814 1988-08-28 2024-10-11 01:53:34.000 1988-08-28 2024-10-11 01:53:34 +6815 6815 6816 681.5 1363 6815 1988-08-29 2024-10-11 01:53:35.000 1988-08-29 2024-10-11 01:53:35 +6816 6816 6817 681.6 1363.2 6816 1988-08-30 2024-10-11 01:53:36.000 1988-08-30 2024-10-11 01:53:36 +6817 6817 6818 681.7 1363.4 6817 1988-08-31 2024-10-11 01:53:37.000 1988-08-31 2024-10-11 01:53:37 +6818 6818 6819 681.8 1363.6000000000001 6818 1988-09-01 2024-10-11 01:53:38.000 1988-09-01 2024-10-11 01:53:38 +6819 6819 6820 681.9 1363.8000000000002 6819 1988-09-02 2024-10-11 01:53:39.000 1988-09-02 2024-10-11 01:53:39 +6820 6820 6821 682 1364 6820 1988-09-03 2024-10-11 01:53:40.000 1988-09-03 2024-10-11 01:53:40 +6821 6821 6822 682.1 1364.2 6821 1988-09-04 2024-10-11 01:53:41.000 1988-09-04 2024-10-11 01:53:41 +6822 6822 6823 682.2 1364.4 6822 1988-09-05 2024-10-11 01:53:42.000 1988-09-05 2024-10-11 01:53:42 +6823 6823 6824 682.3 1364.6000000000001 6823 1988-09-06 2024-10-11 01:53:43.000 1988-09-06 2024-10-11 01:53:43 +6824 6824 6825 682.4 1364.8000000000002 6824 1988-09-07 2024-10-11 01:53:44.000 1988-09-07 2024-10-11 01:53:44 +6825 6825 6826 682.5 1365 6825 1988-09-08 2024-10-11 01:53:45.000 1988-09-08 2024-10-11 01:53:45 +6826 6826 6827 682.6 1365.2 6826 1988-09-09 2024-10-11 01:53:46.000 1988-09-09 2024-10-11 01:53:46 +6827 6827 6828 682.7 1365.4 6827 1988-09-10 2024-10-11 01:53:47.000 1988-09-10 2024-10-11 01:53:47 +6828 6828 6829 682.8 1365.6000000000001 6828 1988-09-11 2024-10-11 01:53:48.000 1988-09-11 2024-10-11 01:53:48 +6829 6829 6830 682.9 1365.8000000000002 6829 1988-09-12 2024-10-11 01:53:49.000 1988-09-12 2024-10-11 01:53:49 +6830 6830 6831 683 1366 6830 1988-09-13 2024-10-11 01:53:50.000 1988-09-13 2024-10-11 01:53:50 +6831 6831 6832 683.1 1366.2 6831 1988-09-14 2024-10-11 01:53:51.000 1988-09-14 2024-10-11 01:53:51 +6832 6832 6833 683.2 1366.4 6832 1988-09-15 2024-10-11 01:53:52.000 1988-09-15 2024-10-11 01:53:52 +6833 6833 6834 683.3 1366.6000000000001 6833 1988-09-16 2024-10-11 01:53:53.000 1988-09-16 2024-10-11 01:53:53 +6834 6834 6835 683.4 1366.8000000000002 6834 1988-09-17 2024-10-11 01:53:54.000 1988-09-17 2024-10-11 01:53:54 +6835 6835 6836 683.5 1367 6835 1988-09-18 2024-10-11 01:53:55.000 1988-09-18 2024-10-11 01:53:55 +6836 6836 6837 683.6 1367.2 6836 1988-09-19 2024-10-11 01:53:56.000 1988-09-19 2024-10-11 01:53:56 +6837 6837 6838 683.7 1367.4 6837 1988-09-20 2024-10-11 01:53:57.000 1988-09-20 2024-10-11 01:53:57 +6838 6838 6839 683.8 1367.6000000000001 6838 1988-09-21 2024-10-11 01:53:58.000 1988-09-21 2024-10-11 01:53:58 +6839 6839 6840 683.9 1367.8000000000002 6839 1988-09-22 2024-10-11 01:53:59.000 1988-09-22 2024-10-11 01:53:59 +6840 6840 6841 684 1368 6840 1988-09-23 2024-10-11 01:54:00.000 1988-09-23 2024-10-11 01:54:00 +6841 6841 6842 684.1 1368.2 6841 1988-09-24 2024-10-11 01:54:01.000 1988-09-24 2024-10-11 01:54:01 +6842 6842 6843 684.2 1368.4 6842 1988-09-25 2024-10-11 01:54:02.000 1988-09-25 2024-10-11 01:54:02 +6843 6843 6844 684.3 1368.6000000000001 6843 1988-09-26 2024-10-11 01:54:03.000 1988-09-26 2024-10-11 01:54:03 +6844 6844 6845 684.4 1368.8000000000002 6844 1988-09-27 2024-10-11 01:54:04.000 1988-09-27 2024-10-11 01:54:04 +6845 6845 6846 684.5 1369 6845 1988-09-28 2024-10-11 01:54:05.000 1988-09-28 2024-10-11 01:54:05 +6846 6846 6847 684.6 1369.2 6846 1988-09-29 2024-10-11 01:54:06.000 1988-09-29 2024-10-11 01:54:06 +6847 6847 6848 684.7 1369.4 6847 1988-09-30 2024-10-11 01:54:07.000 1988-09-30 2024-10-11 01:54:07 +6848 6848 6849 684.8 1369.6000000000001 6848 1988-10-01 2024-10-11 01:54:08.000 1988-10-01 2024-10-11 01:54:08 +6849 6849 6850 684.9 1369.8000000000002 6849 1988-10-02 2024-10-11 01:54:09.000 1988-10-02 2024-10-11 01:54:09 +6850 6850 6851 685 1370 6850 1988-10-03 2024-10-11 01:54:10.000 1988-10-03 2024-10-11 01:54:10 +6851 6851 6852 685.1 1370.2 6851 1988-10-04 2024-10-11 01:54:11.000 1988-10-04 2024-10-11 01:54:11 +6852 6852 6853 685.2 1370.4 6852 1988-10-05 2024-10-11 01:54:12.000 1988-10-05 2024-10-11 01:54:12 +6853 6853 6854 685.3 1370.6000000000001 6853 1988-10-06 2024-10-11 01:54:13.000 1988-10-06 2024-10-11 01:54:13 +6854 6854 6855 685.4 1370.8000000000002 6854 1988-10-07 2024-10-11 01:54:14.000 1988-10-07 2024-10-11 01:54:14 +6855 6855 6856 685.5 1371 6855 1988-10-08 2024-10-11 01:54:15.000 1988-10-08 2024-10-11 01:54:15 +6856 6856 6857 685.6 1371.2 6856 1988-10-09 2024-10-11 01:54:16.000 1988-10-09 2024-10-11 01:54:16 +6857 6857 6858 685.7 1371.4 6857 1988-10-10 2024-10-11 01:54:17.000 1988-10-10 2024-10-11 01:54:17 +6858 6858 6859 685.8 1371.6000000000001 6858 1988-10-11 2024-10-11 01:54:18.000 1988-10-11 2024-10-11 01:54:18 +6859 6859 6860 685.9 1371.8000000000002 6859 1988-10-12 2024-10-11 01:54:19.000 1988-10-12 2024-10-11 01:54:19 +6860 6860 6861 686 1372 6860 1988-10-13 2024-10-11 01:54:20.000 1988-10-13 2024-10-11 01:54:20 +6861 6861 6862 686.1 1372.2 6861 1988-10-14 2024-10-11 01:54:21.000 1988-10-14 2024-10-11 01:54:21 +6862 6862 6863 686.2 1372.4 6862 1988-10-15 2024-10-11 01:54:22.000 1988-10-15 2024-10-11 01:54:22 +6863 6863 6864 686.3 1372.6000000000001 6863 1988-10-16 2024-10-11 01:54:23.000 1988-10-16 2024-10-11 01:54:23 +6864 6864 6865 686.4 1372.8000000000002 6864 1988-10-17 2024-10-11 01:54:24.000 1988-10-17 2024-10-11 01:54:24 +6865 6865 6866 686.5 1373 6865 1988-10-18 2024-10-11 01:54:25.000 1988-10-18 2024-10-11 01:54:25 +6866 6866 6867 686.6 1373.2 6866 1988-10-19 2024-10-11 01:54:26.000 1988-10-19 2024-10-11 01:54:26 +6867 6867 6868 686.7 1373.4 6867 1988-10-20 2024-10-11 01:54:27.000 1988-10-20 2024-10-11 01:54:27 +6868 6868 6869 686.8 1373.6000000000001 6868 1988-10-21 2024-10-11 01:54:28.000 1988-10-21 2024-10-11 01:54:28 +6869 6869 6870 686.9 1373.8000000000002 6869 1988-10-22 2024-10-11 01:54:29.000 1988-10-22 2024-10-11 01:54:29 +6870 6870 6871 687 1374 6870 1988-10-23 2024-10-11 01:54:30.000 1988-10-23 2024-10-11 01:54:30 +6871 6871 6872 687.1 1374.2 6871 1988-10-24 2024-10-11 01:54:31.000 1988-10-24 2024-10-11 01:54:31 +6872 6872 6873 687.2 1374.4 6872 1988-10-25 2024-10-11 01:54:32.000 1988-10-25 2024-10-11 01:54:32 +6873 6873 6874 687.3 1374.6000000000001 6873 1988-10-26 2024-10-11 01:54:33.000 1988-10-26 2024-10-11 01:54:33 +6874 6874 6875 687.4 1374.8000000000002 6874 1988-10-27 2024-10-11 01:54:34.000 1988-10-27 2024-10-11 01:54:34 +6875 6875 6876 687.5 1375 6875 1988-10-28 2024-10-11 01:54:35.000 1988-10-28 2024-10-11 01:54:35 +6876 6876 6877 687.6 1375.2 6876 1988-10-29 2024-10-11 01:54:36.000 1988-10-29 2024-10-11 01:54:36 +6877 6877 6878 687.7 1375.4 6877 1988-10-30 2024-10-11 01:54:37.000 1988-10-30 2024-10-11 01:54:37 +6878 6878 6879 687.8 1375.6000000000001 6878 1988-10-31 2024-10-11 01:54:38.000 1988-10-31 2024-10-11 01:54:38 +6879 6879 6880 687.9 1375.8000000000002 6879 1988-11-01 2024-10-11 01:54:39.000 1988-11-01 2024-10-11 01:54:39 +6880 6880 6881 688 1376 6880 1988-11-02 2024-10-11 01:54:40.000 1988-11-02 2024-10-11 01:54:40 +6881 6881 6882 688.1 1376.2 6881 1988-11-03 2024-10-11 01:54:41.000 1988-11-03 2024-10-11 01:54:41 +6882 6882 6883 688.2 1376.4 6882 1988-11-04 2024-10-11 01:54:42.000 1988-11-04 2024-10-11 01:54:42 +6883 6883 6884 688.3 1376.6000000000001 6883 1988-11-05 2024-10-11 01:54:43.000 1988-11-05 2024-10-11 01:54:43 +6884 6884 6885 688.4 1376.8000000000002 6884 1988-11-06 2024-10-11 01:54:44.000 1988-11-06 2024-10-11 01:54:44 +6885 6885 6886 688.5 1377 6885 1988-11-07 2024-10-11 01:54:45.000 1988-11-07 2024-10-11 01:54:45 +6886 6886 6887 688.6 1377.2 6886 1988-11-08 2024-10-11 01:54:46.000 1988-11-08 2024-10-11 01:54:46 +6887 6887 6888 688.7 1377.4 6887 1988-11-09 2024-10-11 01:54:47.000 1988-11-09 2024-10-11 01:54:47 +6888 6888 6889 688.8 1377.6000000000001 6888 1988-11-10 2024-10-11 01:54:48.000 1988-11-10 2024-10-11 01:54:48 +6889 6889 6890 688.9 1377.8000000000002 6889 1988-11-11 2024-10-11 01:54:49.000 1988-11-11 2024-10-11 01:54:49 +6890 6890 6891 689 1378 6890 1988-11-12 2024-10-11 01:54:50.000 1988-11-12 2024-10-11 01:54:50 +6891 6891 6892 689.1 1378.2 6891 1988-11-13 2024-10-11 01:54:51.000 1988-11-13 2024-10-11 01:54:51 +6892 6892 6893 689.2 1378.4 6892 1988-11-14 2024-10-11 01:54:52.000 1988-11-14 2024-10-11 01:54:52 +6893 6893 6894 689.3 1378.6000000000001 6893 1988-11-15 2024-10-11 01:54:53.000 1988-11-15 2024-10-11 01:54:53 +6894 6894 6895 689.4 1378.8000000000002 6894 1988-11-16 2024-10-11 01:54:54.000 1988-11-16 2024-10-11 01:54:54 +6895 6895 6896 689.5 1379 6895 1988-11-17 2024-10-11 01:54:55.000 1988-11-17 2024-10-11 01:54:55 +6896 6896 6897 689.6 1379.2 6896 1988-11-18 2024-10-11 01:54:56.000 1988-11-18 2024-10-11 01:54:56 +6897 6897 6898 689.7 1379.4 6897 1988-11-19 2024-10-11 01:54:57.000 1988-11-19 2024-10-11 01:54:57 +6898 6898 6899 689.8 1379.6000000000001 6898 1988-11-20 2024-10-11 01:54:58.000 1988-11-20 2024-10-11 01:54:58 +6899 6899 6900 689.9 1379.8000000000002 6899 1988-11-21 2024-10-11 01:54:59.000 1988-11-21 2024-10-11 01:54:59 +6900 6900 6901 690 1380 6900 1988-11-22 2024-10-11 01:55:00.000 1988-11-22 2024-10-11 01:55:00 +6901 6901 6902 690.1 1380.2 6901 1988-11-23 2024-10-11 01:55:01.000 1988-11-23 2024-10-11 01:55:01 +6902 6902 6903 690.2 1380.4 6902 1988-11-24 2024-10-11 01:55:02.000 1988-11-24 2024-10-11 01:55:02 +6903 6903 6904 690.3 1380.6000000000001 6903 1988-11-25 2024-10-11 01:55:03.000 1988-11-25 2024-10-11 01:55:03 +6904 6904 6905 690.4 1380.8000000000002 6904 1988-11-26 2024-10-11 01:55:04.000 1988-11-26 2024-10-11 01:55:04 +6905 6905 6906 690.5 1381 6905 1988-11-27 2024-10-11 01:55:05.000 1988-11-27 2024-10-11 01:55:05 +6906 6906 6907 690.6 1381.2 6906 1988-11-28 2024-10-11 01:55:06.000 1988-11-28 2024-10-11 01:55:06 +6907 6907 6908 690.7 1381.4 6907 1988-11-29 2024-10-11 01:55:07.000 1988-11-29 2024-10-11 01:55:07 +6908 6908 6909 690.8 1381.6000000000001 6908 1988-11-30 2024-10-11 01:55:08.000 1988-11-30 2024-10-11 01:55:08 +6909 6909 6910 690.9 1381.8000000000002 6909 1988-12-01 2024-10-11 01:55:09.000 1988-12-01 2024-10-11 01:55:09 +6910 6910 6911 691 1382 6910 1988-12-02 2024-10-11 01:55:10.000 1988-12-02 2024-10-11 01:55:10 +6911 6911 6912 691.1 1382.2 6911 1988-12-03 2024-10-11 01:55:11.000 1988-12-03 2024-10-11 01:55:11 +6912 6912 6913 691.2 1382.4 6912 1988-12-04 2024-10-11 01:55:12.000 1988-12-04 2024-10-11 01:55:12 +6913 6913 6914 691.3 1382.6000000000001 6913 1988-12-05 2024-10-11 01:55:13.000 1988-12-05 2024-10-11 01:55:13 +6914 6914 6915 691.4 1382.8000000000002 6914 1988-12-06 2024-10-11 01:55:14.000 1988-12-06 2024-10-11 01:55:14 +6915 6915 6916 691.5 1383 6915 1988-12-07 2024-10-11 01:55:15.000 1988-12-07 2024-10-11 01:55:15 +6916 6916 6917 691.6 1383.2 6916 1988-12-08 2024-10-11 01:55:16.000 1988-12-08 2024-10-11 01:55:16 +6917 6917 6918 691.7 1383.4 6917 1988-12-09 2024-10-11 01:55:17.000 1988-12-09 2024-10-11 01:55:17 +6918 6918 6919 691.8 1383.6000000000001 6918 1988-12-10 2024-10-11 01:55:18.000 1988-12-10 2024-10-11 01:55:18 +6919 6919 6920 691.9 1383.8000000000002 6919 1988-12-11 2024-10-11 01:55:19.000 1988-12-11 2024-10-11 01:55:19 +6920 6920 6921 692 1384 6920 1988-12-12 2024-10-11 01:55:20.000 1988-12-12 2024-10-11 01:55:20 +6921 6921 6922 692.1 1384.2 6921 1988-12-13 2024-10-11 01:55:21.000 1988-12-13 2024-10-11 01:55:21 +6922 6922 6923 692.2 1384.4 6922 1988-12-14 2024-10-11 01:55:22.000 1988-12-14 2024-10-11 01:55:22 +6923 6923 6924 692.3 1384.6000000000001 6923 1988-12-15 2024-10-11 01:55:23.000 1988-12-15 2024-10-11 01:55:23 +6924 6924 6925 692.4 1384.8000000000002 6924 1988-12-16 2024-10-11 01:55:24.000 1988-12-16 2024-10-11 01:55:24 +6925 6925 6926 692.5 1385 6925 1988-12-17 2024-10-11 01:55:25.000 1988-12-17 2024-10-11 01:55:25 +6926 6926 6927 692.6 1385.2 6926 1988-12-18 2024-10-11 01:55:26.000 1988-12-18 2024-10-11 01:55:26 +6927 6927 6928 692.7 1385.4 6927 1988-12-19 2024-10-11 01:55:27.000 1988-12-19 2024-10-11 01:55:27 +6928 6928 6929 692.8 1385.6000000000001 6928 1988-12-20 2024-10-11 01:55:28.000 1988-12-20 2024-10-11 01:55:28 +6929 6929 6930 692.9 1385.8000000000002 6929 1988-12-21 2024-10-11 01:55:29.000 1988-12-21 2024-10-11 01:55:29 +6930 6930 6931 693 1386 6930 1988-12-22 2024-10-11 01:55:30.000 1988-12-22 2024-10-11 01:55:30 +6931 6931 6932 693.1 1386.2 6931 1988-12-23 2024-10-11 01:55:31.000 1988-12-23 2024-10-11 01:55:31 +6932 6932 6933 693.2 1386.4 6932 1988-12-24 2024-10-11 01:55:32.000 1988-12-24 2024-10-11 01:55:32 +6933 6933 6934 693.3 1386.6000000000001 6933 1988-12-25 2024-10-11 01:55:33.000 1988-12-25 2024-10-11 01:55:33 +6934 6934 6935 693.4 1386.8000000000002 6934 1988-12-26 2024-10-11 01:55:34.000 1988-12-26 2024-10-11 01:55:34 +6935 6935 6936 693.5 1387 6935 1988-12-27 2024-10-11 01:55:35.000 1988-12-27 2024-10-11 01:55:35 +6936 6936 6937 693.6 1387.2 6936 1988-12-28 2024-10-11 01:55:36.000 1988-12-28 2024-10-11 01:55:36 +6937 6937 6938 693.7 1387.4 6937 1988-12-29 2024-10-11 01:55:37.000 1988-12-29 2024-10-11 01:55:37 +6938 6938 6939 693.8 1387.6000000000001 6938 1988-12-30 2024-10-11 01:55:38.000 1988-12-30 2024-10-11 01:55:38 +6939 6939 6940 693.9 1387.8000000000002 6939 1988-12-31 2024-10-11 01:55:39.000 1988-12-31 2024-10-11 01:55:39 +6940 6940 6941 694 1388 6940 1989-01-01 2024-10-11 01:55:40.000 1989-01-01 2024-10-11 01:55:40 +6941 6941 6942 694.1 1388.2 6941 1989-01-02 2024-10-11 01:55:41.000 1989-01-02 2024-10-11 01:55:41 +6942 6942 6943 694.2 1388.4 6942 1989-01-03 2024-10-11 01:55:42.000 1989-01-03 2024-10-11 01:55:42 +6943 6943 6944 694.3 1388.6000000000001 6943 1989-01-04 2024-10-11 01:55:43.000 1989-01-04 2024-10-11 01:55:43 +6944 6944 6945 694.4 1388.8000000000002 6944 1989-01-05 2024-10-11 01:55:44.000 1989-01-05 2024-10-11 01:55:44 +6945 6945 6946 694.5 1389 6945 1989-01-06 2024-10-11 01:55:45.000 1989-01-06 2024-10-11 01:55:45 +6946 6946 6947 694.6 1389.2 6946 1989-01-07 2024-10-11 01:55:46.000 1989-01-07 2024-10-11 01:55:46 +6947 6947 6948 694.7 1389.4 6947 1989-01-08 2024-10-11 01:55:47.000 1989-01-08 2024-10-11 01:55:47 +6948 6948 6949 694.8 1389.6000000000001 6948 1989-01-09 2024-10-11 01:55:48.000 1989-01-09 2024-10-11 01:55:48 +6949 6949 6950 694.9 1389.8000000000002 6949 1989-01-10 2024-10-11 01:55:49.000 1989-01-10 2024-10-11 01:55:49 +6950 6950 6951 695 1390 6950 1989-01-11 2024-10-11 01:55:50.000 1989-01-11 2024-10-11 01:55:50 +6951 6951 6952 695.1 1390.2 6951 1989-01-12 2024-10-11 01:55:51.000 1989-01-12 2024-10-11 01:55:51 +6952 6952 6953 695.2 1390.4 6952 1989-01-13 2024-10-11 01:55:52.000 1989-01-13 2024-10-11 01:55:52 +6953 6953 6954 695.3 1390.6000000000001 6953 1989-01-14 2024-10-11 01:55:53.000 1989-01-14 2024-10-11 01:55:53 +6954 6954 6955 695.4 1390.8000000000002 6954 1989-01-15 2024-10-11 01:55:54.000 1989-01-15 2024-10-11 01:55:54 +6955 6955 6956 695.5 1391 6955 1989-01-16 2024-10-11 01:55:55.000 1989-01-16 2024-10-11 01:55:55 +6956 6956 6957 695.6 1391.2 6956 1989-01-17 2024-10-11 01:55:56.000 1989-01-17 2024-10-11 01:55:56 +6957 6957 6958 695.7 1391.4 6957 1989-01-18 2024-10-11 01:55:57.000 1989-01-18 2024-10-11 01:55:57 +6958 6958 6959 695.8 1391.6000000000001 6958 1989-01-19 2024-10-11 01:55:58.000 1989-01-19 2024-10-11 01:55:58 +6959 6959 6960 695.9 1391.8000000000002 6959 1989-01-20 2024-10-11 01:55:59.000 1989-01-20 2024-10-11 01:55:59 +6960 6960 6961 696 1392 6960 1989-01-21 2024-10-11 01:56:00.000 1989-01-21 2024-10-11 01:56:00 +6961 6961 6962 696.1 1392.2 6961 1989-01-22 2024-10-11 01:56:01.000 1989-01-22 2024-10-11 01:56:01 +6962 6962 6963 696.2 1392.4 6962 1989-01-23 2024-10-11 01:56:02.000 1989-01-23 2024-10-11 01:56:02 +6963 6963 6964 696.3 1392.6000000000001 6963 1989-01-24 2024-10-11 01:56:03.000 1989-01-24 2024-10-11 01:56:03 +6964 6964 6965 696.4 1392.8000000000002 6964 1989-01-25 2024-10-11 01:56:04.000 1989-01-25 2024-10-11 01:56:04 +6965 6965 6966 696.5 1393 6965 1989-01-26 2024-10-11 01:56:05.000 1989-01-26 2024-10-11 01:56:05 +6966 6966 6967 696.6 1393.2 6966 1989-01-27 2024-10-11 01:56:06.000 1989-01-27 2024-10-11 01:56:06 +6967 6967 6968 696.7 1393.4 6967 1989-01-28 2024-10-11 01:56:07.000 1989-01-28 2024-10-11 01:56:07 +6968 6968 6969 696.8 1393.6000000000001 6968 1989-01-29 2024-10-11 01:56:08.000 1989-01-29 2024-10-11 01:56:08 +6969 6969 6970 696.9 1393.8000000000002 6969 1989-01-30 2024-10-11 01:56:09.000 1989-01-30 2024-10-11 01:56:09 +6970 6970 6971 697 1394 6970 1989-01-31 2024-10-11 01:56:10.000 1989-01-31 2024-10-11 01:56:10 +6971 6971 6972 697.1 1394.2 6971 1989-02-01 2024-10-11 01:56:11.000 1989-02-01 2024-10-11 01:56:11 +6972 6972 6973 697.2 1394.4 6972 1989-02-02 2024-10-11 01:56:12.000 1989-02-02 2024-10-11 01:56:12 +6973 6973 6974 697.3 1394.6000000000001 6973 1989-02-03 2024-10-11 01:56:13.000 1989-02-03 2024-10-11 01:56:13 +6974 6974 6975 697.4 1394.8000000000002 6974 1989-02-04 2024-10-11 01:56:14.000 1989-02-04 2024-10-11 01:56:14 +6975 6975 6976 697.5 1395 6975 1989-02-05 2024-10-11 01:56:15.000 1989-02-05 2024-10-11 01:56:15 +6976 6976 6977 697.6 1395.2 6976 1989-02-06 2024-10-11 01:56:16.000 1989-02-06 2024-10-11 01:56:16 +6977 6977 6978 697.7 1395.4 6977 1989-02-07 2024-10-11 01:56:17.000 1989-02-07 2024-10-11 01:56:17 +6978 6978 6979 697.8 1395.6000000000001 6978 1989-02-08 2024-10-11 01:56:18.000 1989-02-08 2024-10-11 01:56:18 +6979 6979 6980 697.9 1395.8000000000002 6979 1989-02-09 2024-10-11 01:56:19.000 1989-02-09 2024-10-11 01:56:19 +6980 6980 6981 698 1396 6980 1989-02-10 2024-10-11 01:56:20.000 1989-02-10 2024-10-11 01:56:20 +6981 6981 6982 698.1 1396.2 6981 1989-02-11 2024-10-11 01:56:21.000 1989-02-11 2024-10-11 01:56:21 +6982 6982 6983 698.2 1396.4 6982 1989-02-12 2024-10-11 01:56:22.000 1989-02-12 2024-10-11 01:56:22 +6983 6983 6984 698.3 1396.6000000000001 6983 1989-02-13 2024-10-11 01:56:23.000 1989-02-13 2024-10-11 01:56:23 +6984 6984 6985 698.4 1396.8000000000002 6984 1989-02-14 2024-10-11 01:56:24.000 1989-02-14 2024-10-11 01:56:24 +6985 6985 6986 698.5 1397 6985 1989-02-15 2024-10-11 01:56:25.000 1989-02-15 2024-10-11 01:56:25 +6986 6986 6987 698.6 1397.2 6986 1989-02-16 2024-10-11 01:56:26.000 1989-02-16 2024-10-11 01:56:26 +6987 6987 6988 698.7 1397.4 6987 1989-02-17 2024-10-11 01:56:27.000 1989-02-17 2024-10-11 01:56:27 +6988 6988 6989 698.8 1397.6000000000001 6988 1989-02-18 2024-10-11 01:56:28.000 1989-02-18 2024-10-11 01:56:28 +6989 6989 6990 698.9 1397.8000000000002 6989 1989-02-19 2024-10-11 01:56:29.000 1989-02-19 2024-10-11 01:56:29 +6990 6990 6991 699 1398 6990 1989-02-20 2024-10-11 01:56:30.000 1989-02-20 2024-10-11 01:56:30 +6991 6991 6992 699.1 1398.2 6991 1989-02-21 2024-10-11 01:56:31.000 1989-02-21 2024-10-11 01:56:31 +6992 6992 6993 699.2 1398.4 6992 1989-02-22 2024-10-11 01:56:32.000 1989-02-22 2024-10-11 01:56:32 +6993 6993 6994 699.3 1398.6000000000001 6993 1989-02-23 2024-10-11 01:56:33.000 1989-02-23 2024-10-11 01:56:33 +6994 6994 6995 699.4 1398.8000000000002 6994 1989-02-24 2024-10-11 01:56:34.000 1989-02-24 2024-10-11 01:56:34 +6995 6995 6996 699.5 1399 6995 1989-02-25 2024-10-11 01:56:35.000 1989-02-25 2024-10-11 01:56:35 +6996 6996 6997 699.6 1399.2 6996 1989-02-26 2024-10-11 01:56:36.000 1989-02-26 2024-10-11 01:56:36 +6997 6997 6998 699.7 1399.4 6997 1989-02-27 2024-10-11 01:56:37.000 1989-02-27 2024-10-11 01:56:37 +6998 6998 6999 699.8 1399.6000000000001 6998 1989-02-28 2024-10-11 01:56:38.000 1989-02-28 2024-10-11 01:56:38 +6999 6999 7000 699.9 1399.8000000000002 6999 1989-03-01 2024-10-11 01:56:39.000 1989-03-01 2024-10-11 01:56:39 +7000 7000 7001 700 1400 7000 1989-03-02 2024-10-11 01:56:40.000 1989-03-02 2024-10-11 01:56:40 +7001 7001 7002 700.1 1400.2 7001 1989-03-03 2024-10-11 01:56:41.000 1989-03-03 2024-10-11 01:56:41 +7002 7002 7003 700.2 1400.4 7002 1989-03-04 2024-10-11 01:56:42.000 1989-03-04 2024-10-11 01:56:42 +7003 7003 7004 700.3 1400.6000000000001 7003 1989-03-05 2024-10-11 01:56:43.000 1989-03-05 2024-10-11 01:56:43 +7004 7004 7005 700.4 1400.8000000000002 7004 1989-03-06 2024-10-11 01:56:44.000 1989-03-06 2024-10-11 01:56:44 +7005 7005 7006 700.5 1401 7005 1989-03-07 2024-10-11 01:56:45.000 1989-03-07 2024-10-11 01:56:45 +7006 7006 7007 700.6 1401.2 7006 1989-03-08 2024-10-11 01:56:46.000 1989-03-08 2024-10-11 01:56:46 +7007 7007 7008 700.7 1401.4 7007 1989-03-09 2024-10-11 01:56:47.000 1989-03-09 2024-10-11 01:56:47 +7008 7008 7009 700.8 1401.6000000000001 7008 1989-03-10 2024-10-11 01:56:48.000 1989-03-10 2024-10-11 01:56:48 +7009 7009 7010 700.9 1401.8000000000002 7009 1989-03-11 2024-10-11 01:56:49.000 1989-03-11 2024-10-11 01:56:49 +7010 7010 7011 701 1402 7010 1989-03-12 2024-10-11 01:56:50.000 1989-03-12 2024-10-11 01:56:50 +7011 7011 7012 701.1 1402.2 7011 1989-03-13 2024-10-11 01:56:51.000 1989-03-13 2024-10-11 01:56:51 +7012 7012 7013 701.2 1402.4 7012 1989-03-14 2024-10-11 01:56:52.000 1989-03-14 2024-10-11 01:56:52 +7013 7013 7014 701.3 1402.6000000000001 7013 1989-03-15 2024-10-11 01:56:53.000 1989-03-15 2024-10-11 01:56:53 +7014 7014 7015 701.4 1402.8000000000002 7014 1989-03-16 2024-10-11 01:56:54.000 1989-03-16 2024-10-11 01:56:54 +7015 7015 7016 701.5 1403 7015 1989-03-17 2024-10-11 01:56:55.000 1989-03-17 2024-10-11 01:56:55 +7016 7016 7017 701.6 1403.2 7016 1989-03-18 2024-10-11 01:56:56.000 1989-03-18 2024-10-11 01:56:56 +7017 7017 7018 701.7 1403.4 7017 1989-03-19 2024-10-11 01:56:57.000 1989-03-19 2024-10-11 01:56:57 +7018 7018 7019 701.8 1403.6000000000001 7018 1989-03-20 2024-10-11 01:56:58.000 1989-03-20 2024-10-11 01:56:58 +7019 7019 7020 701.9 1403.8000000000002 7019 1989-03-21 2024-10-11 01:56:59.000 1989-03-21 2024-10-11 01:56:59 +7020 7020 7021 702 1404 7020 1989-03-22 2024-10-11 01:57:00.000 1989-03-22 2024-10-11 01:57:00 +7021 7021 7022 702.1 1404.2 7021 1989-03-23 2024-10-11 01:57:01.000 1989-03-23 2024-10-11 01:57:01 +7022 7022 7023 702.2 1404.4 7022 1989-03-24 2024-10-11 01:57:02.000 1989-03-24 2024-10-11 01:57:02 +7023 7023 7024 702.3 1404.6000000000001 7023 1989-03-25 2024-10-11 01:57:03.000 1989-03-25 2024-10-11 01:57:03 +7024 7024 7025 702.4 1404.8000000000002 7024 1989-03-26 2024-10-11 01:57:04.000 1989-03-26 2024-10-11 01:57:04 +7025 7025 7026 702.5 1405 7025 1989-03-27 2024-10-11 01:57:05.000 1989-03-27 2024-10-11 01:57:05 +7026 7026 7027 702.6 1405.2 7026 1989-03-28 2024-10-11 01:57:06.000 1989-03-28 2024-10-11 01:57:06 +7027 7027 7028 702.7 1405.4 7027 1989-03-29 2024-10-11 01:57:07.000 1989-03-29 2024-10-11 01:57:07 +7028 7028 7029 702.8 1405.6000000000001 7028 1989-03-30 2024-10-11 01:57:08.000 1989-03-30 2024-10-11 01:57:08 +7029 7029 7030 702.9 1405.8000000000002 7029 1989-03-31 2024-10-11 01:57:09.000 1989-03-31 2024-10-11 01:57:09 +7030 7030 7031 703 1406 7030 1989-04-01 2024-10-11 01:57:10.000 1989-04-01 2024-10-11 01:57:10 +7031 7031 7032 703.1 1406.2 7031 1989-04-02 2024-10-11 01:57:11.000 1989-04-02 2024-10-11 01:57:11 +7032 7032 7033 703.2 1406.4 7032 1989-04-03 2024-10-11 01:57:12.000 1989-04-03 2024-10-11 01:57:12 +7033 7033 7034 703.3 1406.6000000000001 7033 1989-04-04 2024-10-11 01:57:13.000 1989-04-04 2024-10-11 01:57:13 +7034 7034 7035 703.4 1406.8000000000002 7034 1989-04-05 2024-10-11 01:57:14.000 1989-04-05 2024-10-11 01:57:14 +7035 7035 7036 703.5 1407 7035 1989-04-06 2024-10-11 01:57:15.000 1989-04-06 2024-10-11 01:57:15 +7036 7036 7037 703.6 1407.2 7036 1989-04-07 2024-10-11 01:57:16.000 1989-04-07 2024-10-11 01:57:16 +7037 7037 7038 703.7 1407.4 7037 1989-04-08 2024-10-11 01:57:17.000 1989-04-08 2024-10-11 01:57:17 +7038 7038 7039 703.8 1407.6000000000001 7038 1989-04-09 2024-10-11 01:57:18.000 1989-04-09 2024-10-11 01:57:18 +7039 7039 7040 703.9 1407.8000000000002 7039 1989-04-10 2024-10-11 01:57:19.000 1989-04-10 2024-10-11 01:57:19 +7040 7040 7041 704 1408 7040 1989-04-11 2024-10-11 01:57:20.000 1989-04-11 2024-10-11 01:57:20 +7041 7041 7042 704.1 1408.2 7041 1989-04-12 2024-10-11 01:57:21.000 1989-04-12 2024-10-11 01:57:21 +7042 7042 7043 704.2 1408.4 7042 1989-04-13 2024-10-11 01:57:22.000 1989-04-13 2024-10-11 01:57:22 +7043 7043 7044 704.3 1408.6000000000001 7043 1989-04-14 2024-10-11 01:57:23.000 1989-04-14 2024-10-11 01:57:23 +7044 7044 7045 704.4 1408.8000000000002 7044 1989-04-15 2024-10-11 01:57:24.000 1989-04-15 2024-10-11 01:57:24 +7045 7045 7046 704.5 1409 7045 1989-04-16 2024-10-11 01:57:25.000 1989-04-16 2024-10-11 01:57:25 +7046 7046 7047 704.6 1409.2 7046 1989-04-17 2024-10-11 01:57:26.000 1989-04-17 2024-10-11 01:57:26 +7047 7047 7048 704.7 1409.4 7047 1989-04-18 2024-10-11 01:57:27.000 1989-04-18 2024-10-11 01:57:27 +7048 7048 7049 704.8 1409.6000000000001 7048 1989-04-19 2024-10-11 01:57:28.000 1989-04-19 2024-10-11 01:57:28 +7049 7049 7050 704.9 1409.8000000000002 7049 1989-04-20 2024-10-11 01:57:29.000 1989-04-20 2024-10-11 01:57:29 +7050 7050 7051 705 1410 7050 1989-04-21 2024-10-11 01:57:30.000 1989-04-21 2024-10-11 01:57:30 +7051 7051 7052 705.1 1410.2 7051 1989-04-22 2024-10-11 01:57:31.000 1989-04-22 2024-10-11 01:57:31 +7052 7052 7053 705.2 1410.4 7052 1989-04-23 2024-10-11 01:57:32.000 1989-04-23 2024-10-11 01:57:32 +7053 7053 7054 705.3 1410.6000000000001 7053 1989-04-24 2024-10-11 01:57:33.000 1989-04-24 2024-10-11 01:57:33 +7054 7054 7055 705.4 1410.8000000000002 7054 1989-04-25 2024-10-11 01:57:34.000 1989-04-25 2024-10-11 01:57:34 +7055 7055 7056 705.5 1411 7055 1989-04-26 2024-10-11 01:57:35.000 1989-04-26 2024-10-11 01:57:35 +7056 7056 7057 705.6 1411.2 7056 1989-04-27 2024-10-11 01:57:36.000 1989-04-27 2024-10-11 01:57:36 +7057 7057 7058 705.7 1411.4 7057 1989-04-28 2024-10-11 01:57:37.000 1989-04-28 2024-10-11 01:57:37 +7058 7058 7059 705.8 1411.6000000000001 7058 1989-04-29 2024-10-11 01:57:38.000 1989-04-29 2024-10-11 01:57:38 +7059 7059 7060 705.9 1411.8000000000002 7059 1989-04-30 2024-10-11 01:57:39.000 1989-04-30 2024-10-11 01:57:39 +7060 7060 7061 706 1412 7060 1989-05-01 2024-10-11 01:57:40.000 1989-05-01 2024-10-11 01:57:40 +7061 7061 7062 706.1 1412.2 7061 1989-05-02 2024-10-11 01:57:41.000 1989-05-02 2024-10-11 01:57:41 +7062 7062 7063 706.2 1412.4 7062 1989-05-03 2024-10-11 01:57:42.000 1989-05-03 2024-10-11 01:57:42 +7063 7063 7064 706.3 1412.6000000000001 7063 1989-05-04 2024-10-11 01:57:43.000 1989-05-04 2024-10-11 01:57:43 +7064 7064 7065 706.4 1412.8000000000002 7064 1989-05-05 2024-10-11 01:57:44.000 1989-05-05 2024-10-11 01:57:44 +7065 7065 7066 706.5 1413 7065 1989-05-06 2024-10-11 01:57:45.000 1989-05-06 2024-10-11 01:57:45 +7066 7066 7067 706.6 1413.2 7066 1989-05-07 2024-10-11 01:57:46.000 1989-05-07 2024-10-11 01:57:46 +7067 7067 7068 706.7 1413.4 7067 1989-05-08 2024-10-11 01:57:47.000 1989-05-08 2024-10-11 01:57:47 +7068 7068 7069 706.8 1413.6000000000001 7068 1989-05-09 2024-10-11 01:57:48.000 1989-05-09 2024-10-11 01:57:48 +7069 7069 7070 706.9 1413.8000000000002 7069 1989-05-10 2024-10-11 01:57:49.000 1989-05-10 2024-10-11 01:57:49 +7070 7070 7071 707 1414 7070 1989-05-11 2024-10-11 01:57:50.000 1989-05-11 2024-10-11 01:57:50 +7071 7071 7072 707.1 1414.2 7071 1989-05-12 2024-10-11 01:57:51.000 1989-05-12 2024-10-11 01:57:51 +7072 7072 7073 707.2 1414.4 7072 1989-05-13 2024-10-11 01:57:52.000 1989-05-13 2024-10-11 01:57:52 +7073 7073 7074 707.3 1414.6000000000001 7073 1989-05-14 2024-10-11 01:57:53.000 1989-05-14 2024-10-11 01:57:53 +7074 7074 7075 707.4 1414.8000000000002 7074 1989-05-15 2024-10-11 01:57:54.000 1989-05-15 2024-10-11 01:57:54 +7075 7075 7076 707.5 1415 7075 1989-05-16 2024-10-11 01:57:55.000 1989-05-16 2024-10-11 01:57:55 +7076 7076 7077 707.6 1415.2 7076 1989-05-17 2024-10-11 01:57:56.000 1989-05-17 2024-10-11 01:57:56 +7077 7077 7078 707.7 1415.4 7077 1989-05-18 2024-10-11 01:57:57.000 1989-05-18 2024-10-11 01:57:57 +7078 7078 7079 707.8 1415.6000000000001 7078 1989-05-19 2024-10-11 01:57:58.000 1989-05-19 2024-10-11 01:57:58 +7079 7079 7080 707.9 1415.8000000000002 7079 1989-05-20 2024-10-11 01:57:59.000 1989-05-20 2024-10-11 01:57:59 +7080 7080 7081 708 1416 7080 1989-05-21 2024-10-11 01:58:00.000 1989-05-21 2024-10-11 01:58:00 +7081 7081 7082 708.1 1416.2 7081 1989-05-22 2024-10-11 01:58:01.000 1989-05-22 2024-10-11 01:58:01 +7082 7082 7083 708.2 1416.4 7082 1989-05-23 2024-10-11 01:58:02.000 1989-05-23 2024-10-11 01:58:02 +7083 7083 7084 708.3 1416.6000000000001 7083 1989-05-24 2024-10-11 01:58:03.000 1989-05-24 2024-10-11 01:58:03 +7084 7084 7085 708.4 1416.8000000000002 7084 1989-05-25 2024-10-11 01:58:04.000 1989-05-25 2024-10-11 01:58:04 +7085 7085 7086 708.5 1417 7085 1989-05-26 2024-10-11 01:58:05.000 1989-05-26 2024-10-11 01:58:05 +7086 7086 7087 708.6 1417.2 7086 1989-05-27 2024-10-11 01:58:06.000 1989-05-27 2024-10-11 01:58:06 +7087 7087 7088 708.7 1417.4 7087 1989-05-28 2024-10-11 01:58:07.000 1989-05-28 2024-10-11 01:58:07 +7088 7088 7089 708.8 1417.6000000000001 7088 1989-05-29 2024-10-11 01:58:08.000 1989-05-29 2024-10-11 01:58:08 +7089 7089 7090 708.9 1417.8000000000002 7089 1989-05-30 2024-10-11 01:58:09.000 1989-05-30 2024-10-11 01:58:09 +7090 7090 7091 709 1418 7090 1989-05-31 2024-10-11 01:58:10.000 1989-05-31 2024-10-11 01:58:10 +7091 7091 7092 709.1 1418.2 7091 1989-06-01 2024-10-11 01:58:11.000 1989-06-01 2024-10-11 01:58:11 +7092 7092 7093 709.2 1418.4 7092 1989-06-02 2024-10-11 01:58:12.000 1989-06-02 2024-10-11 01:58:12 +7093 7093 7094 709.3 1418.6000000000001 7093 1989-06-03 2024-10-11 01:58:13.000 1989-06-03 2024-10-11 01:58:13 +7094 7094 7095 709.4 1418.8000000000002 7094 1989-06-04 2024-10-11 01:58:14.000 1989-06-04 2024-10-11 01:58:14 +7095 7095 7096 709.5 1419 7095 1989-06-05 2024-10-11 01:58:15.000 1989-06-05 2024-10-11 01:58:15 +7096 7096 7097 709.6 1419.2 7096 1989-06-06 2024-10-11 01:58:16.000 1989-06-06 2024-10-11 01:58:16 +7097 7097 7098 709.7 1419.4 7097 1989-06-07 2024-10-11 01:58:17.000 1989-06-07 2024-10-11 01:58:17 +7098 7098 7099 709.8 1419.6000000000001 7098 1989-06-08 2024-10-11 01:58:18.000 1989-06-08 2024-10-11 01:58:18 +7099 7099 7100 709.9 1419.8000000000002 7099 1989-06-09 2024-10-11 01:58:19.000 1989-06-09 2024-10-11 01:58:19 +7100 7100 7101 710 1420 7100 1989-06-10 2024-10-11 01:58:20.000 1989-06-10 2024-10-11 01:58:20 +7101 7101 7102 710.1 1420.2 7101 1989-06-11 2024-10-11 01:58:21.000 1989-06-11 2024-10-11 01:58:21 +7102 7102 7103 710.2 1420.4 7102 1989-06-12 2024-10-11 01:58:22.000 1989-06-12 2024-10-11 01:58:22 +7103 7103 7104 710.3 1420.6000000000001 7103 1989-06-13 2024-10-11 01:58:23.000 1989-06-13 2024-10-11 01:58:23 +7104 7104 7105 710.4 1420.8000000000002 7104 1989-06-14 2024-10-11 01:58:24.000 1989-06-14 2024-10-11 01:58:24 +7105 7105 7106 710.5 1421 7105 1989-06-15 2024-10-11 01:58:25.000 1989-06-15 2024-10-11 01:58:25 +7106 7106 7107 710.6 1421.2 7106 1989-06-16 2024-10-11 01:58:26.000 1989-06-16 2024-10-11 01:58:26 +7107 7107 7108 710.7 1421.4 7107 1989-06-17 2024-10-11 01:58:27.000 1989-06-17 2024-10-11 01:58:27 +7108 7108 7109 710.8 1421.6000000000001 7108 1989-06-18 2024-10-11 01:58:28.000 1989-06-18 2024-10-11 01:58:28 +7109 7109 7110 710.9 1421.8000000000002 7109 1989-06-19 2024-10-11 01:58:29.000 1989-06-19 2024-10-11 01:58:29 +7110 7110 7111 711 1422 7110 1989-06-20 2024-10-11 01:58:30.000 1989-06-20 2024-10-11 01:58:30 +7111 7111 7112 711.1 1422.2 7111 1989-06-21 2024-10-11 01:58:31.000 1989-06-21 2024-10-11 01:58:31 +7112 7112 7113 711.2 1422.4 7112 1989-06-22 2024-10-11 01:58:32.000 1989-06-22 2024-10-11 01:58:32 +7113 7113 7114 711.3 1422.6000000000001 7113 1989-06-23 2024-10-11 01:58:33.000 1989-06-23 2024-10-11 01:58:33 +7114 7114 7115 711.4 1422.8000000000002 7114 1989-06-24 2024-10-11 01:58:34.000 1989-06-24 2024-10-11 01:58:34 +7115 7115 7116 711.5 1423 7115 1989-06-25 2024-10-11 01:58:35.000 1989-06-25 2024-10-11 01:58:35 +7116 7116 7117 711.6 1423.2 7116 1989-06-26 2024-10-11 01:58:36.000 1989-06-26 2024-10-11 01:58:36 +7117 7117 7118 711.7 1423.4 7117 1989-06-27 2024-10-11 01:58:37.000 1989-06-27 2024-10-11 01:58:37 +7118 7118 7119 711.8 1423.6000000000001 7118 1989-06-28 2024-10-11 01:58:38.000 1989-06-28 2024-10-11 01:58:38 +7119 7119 7120 711.9 1423.8000000000002 7119 1989-06-29 2024-10-11 01:58:39.000 1989-06-29 2024-10-11 01:58:39 +7120 7120 7121 712 1424 7120 1989-06-30 2024-10-11 01:58:40.000 1989-06-30 2024-10-11 01:58:40 +7121 7121 7122 712.1 1424.2 7121 1989-07-01 2024-10-11 01:58:41.000 1989-07-01 2024-10-11 01:58:41 +7122 7122 7123 712.2 1424.4 7122 1989-07-02 2024-10-11 01:58:42.000 1989-07-02 2024-10-11 01:58:42 +7123 7123 7124 712.3 1424.6000000000001 7123 1989-07-03 2024-10-11 01:58:43.000 1989-07-03 2024-10-11 01:58:43 +7124 7124 7125 712.4 1424.8000000000002 7124 1989-07-04 2024-10-11 01:58:44.000 1989-07-04 2024-10-11 01:58:44 +7125 7125 7126 712.5 1425 7125 1989-07-05 2024-10-11 01:58:45.000 1989-07-05 2024-10-11 01:58:45 +7126 7126 7127 712.6 1425.2 7126 1989-07-06 2024-10-11 01:58:46.000 1989-07-06 2024-10-11 01:58:46 +7127 7127 7128 712.7 1425.4 7127 1989-07-07 2024-10-11 01:58:47.000 1989-07-07 2024-10-11 01:58:47 +7128 7128 7129 712.8 1425.6000000000001 7128 1989-07-08 2024-10-11 01:58:48.000 1989-07-08 2024-10-11 01:58:48 +7129 7129 7130 712.9 1425.8000000000002 7129 1989-07-09 2024-10-11 01:58:49.000 1989-07-09 2024-10-11 01:58:49 +7130 7130 7131 713 1426 7130 1989-07-10 2024-10-11 01:58:50.000 1989-07-10 2024-10-11 01:58:50 +7131 7131 7132 713.1 1426.2 7131 1989-07-11 2024-10-11 01:58:51.000 1989-07-11 2024-10-11 01:58:51 +7132 7132 7133 713.2 1426.4 7132 1989-07-12 2024-10-11 01:58:52.000 1989-07-12 2024-10-11 01:58:52 +7133 7133 7134 713.3 1426.6000000000001 7133 1989-07-13 2024-10-11 01:58:53.000 1989-07-13 2024-10-11 01:58:53 +7134 7134 7135 713.4 1426.8000000000002 7134 1989-07-14 2024-10-11 01:58:54.000 1989-07-14 2024-10-11 01:58:54 +7135 7135 7136 713.5 1427 7135 1989-07-15 2024-10-11 01:58:55.000 1989-07-15 2024-10-11 01:58:55 +7136 7136 7137 713.6 1427.2 7136 1989-07-16 2024-10-11 01:58:56.000 1989-07-16 2024-10-11 01:58:56 +7137 7137 7138 713.7 1427.4 7137 1989-07-17 2024-10-11 01:58:57.000 1989-07-17 2024-10-11 01:58:57 +7138 7138 7139 713.8 1427.6000000000001 7138 1989-07-18 2024-10-11 01:58:58.000 1989-07-18 2024-10-11 01:58:58 +7139 7139 7140 713.9 1427.8000000000002 7139 1989-07-19 2024-10-11 01:58:59.000 1989-07-19 2024-10-11 01:58:59 +7140 7140 7141 714 1428 7140 1989-07-20 2024-10-11 01:59:00.000 1989-07-20 2024-10-11 01:59:00 +7141 7141 7142 714.1 1428.2 7141 1989-07-21 2024-10-11 01:59:01.000 1989-07-21 2024-10-11 01:59:01 +7142 7142 7143 714.2 1428.4 7142 1989-07-22 2024-10-11 01:59:02.000 1989-07-22 2024-10-11 01:59:02 +7143 7143 7144 714.3 1428.6000000000001 7143 1989-07-23 2024-10-11 01:59:03.000 1989-07-23 2024-10-11 01:59:03 +7144 7144 7145 714.4 1428.8000000000002 7144 1989-07-24 2024-10-11 01:59:04.000 1989-07-24 2024-10-11 01:59:04 +7145 7145 7146 714.5 1429 7145 1989-07-25 2024-10-11 01:59:05.000 1989-07-25 2024-10-11 01:59:05 +7146 7146 7147 714.6 1429.2 7146 1989-07-26 2024-10-11 01:59:06.000 1989-07-26 2024-10-11 01:59:06 +7147 7147 7148 714.7 1429.4 7147 1989-07-27 2024-10-11 01:59:07.000 1989-07-27 2024-10-11 01:59:07 +7148 7148 7149 714.8 1429.6000000000001 7148 1989-07-28 2024-10-11 01:59:08.000 1989-07-28 2024-10-11 01:59:08 +7149 7149 7150 714.9 1429.8000000000002 7149 1989-07-29 2024-10-11 01:59:09.000 1989-07-29 2024-10-11 01:59:09 +7150 7150 7151 715 1430 7150 1989-07-30 2024-10-11 01:59:10.000 1989-07-30 2024-10-11 01:59:10 +7151 7151 7152 715.1 1430.2 7151 1989-07-31 2024-10-11 01:59:11.000 1989-07-31 2024-10-11 01:59:11 +7152 7152 7153 715.2 1430.4 7152 1989-08-01 2024-10-11 01:59:12.000 1989-08-01 2024-10-11 01:59:12 +7153 7153 7154 715.3 1430.6000000000001 7153 1989-08-02 2024-10-11 01:59:13.000 1989-08-02 2024-10-11 01:59:13 +7154 7154 7155 715.4 1430.8000000000002 7154 1989-08-03 2024-10-11 01:59:14.000 1989-08-03 2024-10-11 01:59:14 +7155 7155 7156 715.5 1431 7155 1989-08-04 2024-10-11 01:59:15.000 1989-08-04 2024-10-11 01:59:15 +7156 7156 7157 715.6 1431.2 7156 1989-08-05 2024-10-11 01:59:16.000 1989-08-05 2024-10-11 01:59:16 +7157 7157 7158 715.7 1431.4 7157 1989-08-06 2024-10-11 01:59:17.000 1989-08-06 2024-10-11 01:59:17 +7158 7158 7159 715.8 1431.6000000000001 7158 1989-08-07 2024-10-11 01:59:18.000 1989-08-07 2024-10-11 01:59:18 +7159 7159 7160 715.9 1431.8000000000002 7159 1989-08-08 2024-10-11 01:59:19.000 1989-08-08 2024-10-11 01:59:19 +7160 7160 7161 716 1432 7160 1989-08-09 2024-10-11 01:59:20.000 1989-08-09 2024-10-11 01:59:20 +7161 7161 7162 716.1 1432.2 7161 1989-08-10 2024-10-11 01:59:21.000 1989-08-10 2024-10-11 01:59:21 +7162 7162 7163 716.2 1432.4 7162 1989-08-11 2024-10-11 01:59:22.000 1989-08-11 2024-10-11 01:59:22 +7163 7163 7164 716.3 1432.6000000000001 7163 1989-08-12 2024-10-11 01:59:23.000 1989-08-12 2024-10-11 01:59:23 +7164 7164 7165 716.4 1432.8000000000002 7164 1989-08-13 2024-10-11 01:59:24.000 1989-08-13 2024-10-11 01:59:24 +7165 7165 7166 716.5 1433 7165 1989-08-14 2024-10-11 01:59:25.000 1989-08-14 2024-10-11 01:59:25 +7166 7166 7167 716.6 1433.2 7166 1989-08-15 2024-10-11 01:59:26.000 1989-08-15 2024-10-11 01:59:26 +7167 7167 7168 716.7 1433.4 7167 1989-08-16 2024-10-11 01:59:27.000 1989-08-16 2024-10-11 01:59:27 +7168 7168 7169 716.8 1433.6000000000001 7168 1989-08-17 2024-10-11 01:59:28.000 1989-08-17 2024-10-11 01:59:28 +7169 7169 7170 716.9 1433.8000000000002 7169 1989-08-18 2024-10-11 01:59:29.000 1989-08-18 2024-10-11 01:59:29 +7170 7170 7171 717 1434 7170 1989-08-19 2024-10-11 01:59:30.000 1989-08-19 2024-10-11 01:59:30 +7171 7171 7172 717.1 1434.2 7171 1989-08-20 2024-10-11 01:59:31.000 1989-08-20 2024-10-11 01:59:31 +7172 7172 7173 717.2 1434.4 7172 1989-08-21 2024-10-11 01:59:32.000 1989-08-21 2024-10-11 01:59:32 +7173 7173 7174 717.3 1434.6000000000001 7173 1989-08-22 2024-10-11 01:59:33.000 1989-08-22 2024-10-11 01:59:33 +7174 7174 7175 717.4 1434.8000000000002 7174 1989-08-23 2024-10-11 01:59:34.000 1989-08-23 2024-10-11 01:59:34 +7175 7175 7176 717.5 1435 7175 1989-08-24 2024-10-11 01:59:35.000 1989-08-24 2024-10-11 01:59:35 +7176 7176 7177 717.6 1435.2 7176 1989-08-25 2024-10-11 01:59:36.000 1989-08-25 2024-10-11 01:59:36 +7177 7177 7178 717.7 1435.4 7177 1989-08-26 2024-10-11 01:59:37.000 1989-08-26 2024-10-11 01:59:37 +7178 7178 7179 717.8 1435.6000000000001 7178 1989-08-27 2024-10-11 01:59:38.000 1989-08-27 2024-10-11 01:59:38 +7179 7179 7180 717.9 1435.8000000000002 7179 1989-08-28 2024-10-11 01:59:39.000 1989-08-28 2024-10-11 01:59:39 +7180 7180 7181 718 1436 7180 1989-08-29 2024-10-11 01:59:40.000 1989-08-29 2024-10-11 01:59:40 +7181 7181 7182 718.1 1436.2 7181 1989-08-30 2024-10-11 01:59:41.000 1989-08-30 2024-10-11 01:59:41 +7182 7182 7183 718.2 1436.4 7182 1989-08-31 2024-10-11 01:59:42.000 1989-08-31 2024-10-11 01:59:42 +7183 7183 7184 718.3 1436.6000000000001 7183 1989-09-01 2024-10-11 01:59:43.000 1989-09-01 2024-10-11 01:59:43 +7184 7184 7185 718.4 1436.8000000000002 7184 1989-09-02 2024-10-11 01:59:44.000 1989-09-02 2024-10-11 01:59:44 +7185 7185 7186 718.5 1437 7185 1989-09-03 2024-10-11 01:59:45.000 1989-09-03 2024-10-11 01:59:45 +7186 7186 7187 718.6 1437.2 7186 1989-09-04 2024-10-11 01:59:46.000 1989-09-04 2024-10-11 01:59:46 +7187 7187 7188 718.7 1437.4 7187 1989-09-05 2024-10-11 01:59:47.000 1989-09-05 2024-10-11 01:59:47 +7188 7188 7189 718.8 1437.6000000000001 7188 1989-09-06 2024-10-11 01:59:48.000 1989-09-06 2024-10-11 01:59:48 +7189 7189 7190 718.9 1437.8000000000002 7189 1989-09-07 2024-10-11 01:59:49.000 1989-09-07 2024-10-11 01:59:49 +7190 7190 7191 719 1438 7190 1989-09-08 2024-10-11 01:59:50.000 1989-09-08 2024-10-11 01:59:50 +7191 7191 7192 719.1 1438.2 7191 1989-09-09 2024-10-11 01:59:51.000 1989-09-09 2024-10-11 01:59:51 +7192 7192 7193 719.2 1438.4 7192 1989-09-10 2024-10-11 01:59:52.000 1989-09-10 2024-10-11 01:59:52 +7193 7193 7194 719.3 1438.6000000000001 7193 1989-09-11 2024-10-11 01:59:53.000 1989-09-11 2024-10-11 01:59:53 +7194 7194 7195 719.4 1438.8000000000002 7194 1989-09-12 2024-10-11 01:59:54.000 1989-09-12 2024-10-11 01:59:54 +7195 7195 7196 719.5 1439 7195 1989-09-13 2024-10-11 01:59:55.000 1989-09-13 2024-10-11 01:59:55 +7196 7196 7197 719.6 1439.2 7196 1989-09-14 2024-10-11 01:59:56.000 1989-09-14 2024-10-11 01:59:56 +7197 7197 7198 719.7 1439.4 7197 1989-09-15 2024-10-11 01:59:57.000 1989-09-15 2024-10-11 01:59:57 +7198 7198 7199 719.8 1439.6000000000001 7198 1989-09-16 2024-10-11 01:59:58.000 1989-09-16 2024-10-11 01:59:58 +7199 7199 7200 719.9 1439.8000000000002 7199 1989-09-17 2024-10-11 01:59:59.000 1989-09-17 2024-10-11 01:59:59 +7200 7200 7201 720 1440 7200 1989-09-18 2024-10-11 02:00:00.000 1989-09-18 2024-10-11 02:00:00 +7201 7201 7202 720.1 1440.2 7201 1989-09-19 2024-10-11 02:00:01.000 1989-09-19 2024-10-11 02:00:01 +7202 7202 7203 720.2 1440.4 7202 1989-09-20 2024-10-11 02:00:02.000 1989-09-20 2024-10-11 02:00:02 +7203 7203 7204 720.3 1440.6000000000001 7203 1989-09-21 2024-10-11 02:00:03.000 1989-09-21 2024-10-11 02:00:03 +7204 7204 7205 720.4 1440.8000000000002 7204 1989-09-22 2024-10-11 02:00:04.000 1989-09-22 2024-10-11 02:00:04 +7205 7205 7206 720.5 1441 7205 1989-09-23 2024-10-11 02:00:05.000 1989-09-23 2024-10-11 02:00:05 +7206 7206 7207 720.6 1441.2 7206 1989-09-24 2024-10-11 02:00:06.000 1989-09-24 2024-10-11 02:00:06 +7207 7207 7208 720.7 1441.4 7207 1989-09-25 2024-10-11 02:00:07.000 1989-09-25 2024-10-11 02:00:07 +7208 7208 7209 720.8 1441.6000000000001 7208 1989-09-26 2024-10-11 02:00:08.000 1989-09-26 2024-10-11 02:00:08 +7209 7209 7210 720.9 1441.8000000000002 7209 1989-09-27 2024-10-11 02:00:09.000 1989-09-27 2024-10-11 02:00:09 +7210 7210 7211 721 1442 7210 1989-09-28 2024-10-11 02:00:10.000 1989-09-28 2024-10-11 02:00:10 +7211 7211 7212 721.1 1442.2 7211 1989-09-29 2024-10-11 02:00:11.000 1989-09-29 2024-10-11 02:00:11 +7212 7212 7213 721.2 1442.4 7212 1989-09-30 2024-10-11 02:00:12.000 1989-09-30 2024-10-11 02:00:12 +7213 7213 7214 721.3 1442.6000000000001 7213 1989-10-01 2024-10-11 02:00:13.000 1989-10-01 2024-10-11 02:00:13 +7214 7214 7215 721.4 1442.8000000000002 7214 1989-10-02 2024-10-11 02:00:14.000 1989-10-02 2024-10-11 02:00:14 +7215 7215 7216 721.5 1443 7215 1989-10-03 2024-10-11 02:00:15.000 1989-10-03 2024-10-11 02:00:15 +7216 7216 7217 721.6 1443.2 7216 1989-10-04 2024-10-11 02:00:16.000 1989-10-04 2024-10-11 02:00:16 +7217 7217 7218 721.7 1443.4 7217 1989-10-05 2024-10-11 02:00:17.000 1989-10-05 2024-10-11 02:00:17 +7218 7218 7219 721.8 1443.6000000000001 7218 1989-10-06 2024-10-11 02:00:18.000 1989-10-06 2024-10-11 02:00:18 +7219 7219 7220 721.9 1443.8000000000002 7219 1989-10-07 2024-10-11 02:00:19.000 1989-10-07 2024-10-11 02:00:19 +7220 7220 7221 722 1444 7220 1989-10-08 2024-10-11 02:00:20.000 1989-10-08 2024-10-11 02:00:20 +7221 7221 7222 722.1 1444.2 7221 1989-10-09 2024-10-11 02:00:21.000 1989-10-09 2024-10-11 02:00:21 +7222 7222 7223 722.2 1444.4 7222 1989-10-10 2024-10-11 02:00:22.000 1989-10-10 2024-10-11 02:00:22 +7223 7223 7224 722.3 1444.6000000000001 7223 1989-10-11 2024-10-11 02:00:23.000 1989-10-11 2024-10-11 02:00:23 +7224 7224 7225 722.4 1444.8000000000002 7224 1989-10-12 2024-10-11 02:00:24.000 1989-10-12 2024-10-11 02:00:24 +7225 7225 7226 722.5 1445 7225 1989-10-13 2024-10-11 02:00:25.000 1989-10-13 2024-10-11 02:00:25 +7226 7226 7227 722.6 1445.2 7226 1989-10-14 2024-10-11 02:00:26.000 1989-10-14 2024-10-11 02:00:26 +7227 7227 7228 722.7 1445.4 7227 1989-10-15 2024-10-11 02:00:27.000 1989-10-15 2024-10-11 02:00:27 +7228 7228 7229 722.8 1445.6000000000001 7228 1989-10-16 2024-10-11 02:00:28.000 1989-10-16 2024-10-11 02:00:28 +7229 7229 7230 722.9 1445.8000000000002 7229 1989-10-17 2024-10-11 02:00:29.000 1989-10-17 2024-10-11 02:00:29 +7230 7230 7231 723 1446 7230 1989-10-18 2024-10-11 02:00:30.000 1989-10-18 2024-10-11 02:00:30 +7231 7231 7232 723.1 1446.2 7231 1989-10-19 2024-10-11 02:00:31.000 1989-10-19 2024-10-11 02:00:31 +7232 7232 7233 723.2 1446.4 7232 1989-10-20 2024-10-11 02:00:32.000 1989-10-20 2024-10-11 02:00:32 +7233 7233 7234 723.3 1446.6000000000001 7233 1989-10-21 2024-10-11 02:00:33.000 1989-10-21 2024-10-11 02:00:33 +7234 7234 7235 723.4 1446.8000000000002 7234 1989-10-22 2024-10-11 02:00:34.000 1989-10-22 2024-10-11 02:00:34 +7235 7235 7236 723.5 1447 7235 1989-10-23 2024-10-11 02:00:35.000 1989-10-23 2024-10-11 02:00:35 +7236 7236 7237 723.6 1447.2 7236 1989-10-24 2024-10-11 02:00:36.000 1989-10-24 2024-10-11 02:00:36 +7237 7237 7238 723.7 1447.4 7237 1989-10-25 2024-10-11 02:00:37.000 1989-10-25 2024-10-11 02:00:37 +7238 7238 7239 723.8 1447.6000000000001 7238 1989-10-26 2024-10-11 02:00:38.000 1989-10-26 2024-10-11 02:00:38 +7239 7239 7240 723.9 1447.8000000000002 7239 1989-10-27 2024-10-11 02:00:39.000 1989-10-27 2024-10-11 02:00:39 +7240 7240 7241 724 1448 7240 1989-10-28 2024-10-11 02:00:40.000 1989-10-28 2024-10-11 02:00:40 +7241 7241 7242 724.1 1448.2 7241 1989-10-29 2024-10-11 02:00:41.000 1989-10-29 2024-10-11 02:00:41 +7242 7242 7243 724.2 1448.4 7242 1989-10-30 2024-10-11 02:00:42.000 1989-10-30 2024-10-11 02:00:42 +7243 7243 7244 724.3 1448.6000000000001 7243 1989-10-31 2024-10-11 02:00:43.000 1989-10-31 2024-10-11 02:00:43 +7244 7244 7245 724.4 1448.8000000000002 7244 1989-11-01 2024-10-11 02:00:44.000 1989-11-01 2024-10-11 02:00:44 +7245 7245 7246 724.5 1449 7245 1989-11-02 2024-10-11 02:00:45.000 1989-11-02 2024-10-11 02:00:45 +7246 7246 7247 724.6 1449.2 7246 1989-11-03 2024-10-11 02:00:46.000 1989-11-03 2024-10-11 02:00:46 +7247 7247 7248 724.7 1449.4 7247 1989-11-04 2024-10-11 02:00:47.000 1989-11-04 2024-10-11 02:00:47 +7248 7248 7249 724.8 1449.6000000000001 7248 1989-11-05 2024-10-11 02:00:48.000 1989-11-05 2024-10-11 02:00:48 +7249 7249 7250 724.9 1449.8000000000002 7249 1989-11-06 2024-10-11 02:00:49.000 1989-11-06 2024-10-11 02:00:49 +7250 7250 7251 725 1450 7250 1989-11-07 2024-10-11 02:00:50.000 1989-11-07 2024-10-11 02:00:50 +7251 7251 7252 725.1 1450.2 7251 1989-11-08 2024-10-11 02:00:51.000 1989-11-08 2024-10-11 02:00:51 +7252 7252 7253 725.2 1450.4 7252 1989-11-09 2024-10-11 02:00:52.000 1989-11-09 2024-10-11 02:00:52 +7253 7253 7254 725.3 1450.6000000000001 7253 1989-11-10 2024-10-11 02:00:53.000 1989-11-10 2024-10-11 02:00:53 +7254 7254 7255 725.4 1450.8000000000002 7254 1989-11-11 2024-10-11 02:00:54.000 1989-11-11 2024-10-11 02:00:54 +7255 7255 7256 725.5 1451 7255 1989-11-12 2024-10-11 02:00:55.000 1989-11-12 2024-10-11 02:00:55 +7256 7256 7257 725.6 1451.2 7256 1989-11-13 2024-10-11 02:00:56.000 1989-11-13 2024-10-11 02:00:56 +7257 7257 7258 725.7 1451.4 7257 1989-11-14 2024-10-11 02:00:57.000 1989-11-14 2024-10-11 02:00:57 +7258 7258 7259 725.8 1451.6000000000001 7258 1989-11-15 2024-10-11 02:00:58.000 1989-11-15 2024-10-11 02:00:58 +7259 7259 7260 725.9 1451.8000000000002 7259 1989-11-16 2024-10-11 02:00:59.000 1989-11-16 2024-10-11 02:00:59 +7260 7260 7261 726 1452 7260 1989-11-17 2024-10-11 02:01:00.000 1989-11-17 2024-10-11 02:01:00 +7261 7261 7262 726.1 1452.2 7261 1989-11-18 2024-10-11 02:01:01.000 1989-11-18 2024-10-11 02:01:01 +7262 7262 7263 726.2 1452.4 7262 1989-11-19 2024-10-11 02:01:02.000 1989-11-19 2024-10-11 02:01:02 +7263 7263 7264 726.3 1452.6000000000001 7263 1989-11-20 2024-10-11 02:01:03.000 1989-11-20 2024-10-11 02:01:03 +7264 7264 7265 726.4 1452.8000000000002 7264 1989-11-21 2024-10-11 02:01:04.000 1989-11-21 2024-10-11 02:01:04 +7265 7265 7266 726.5 1453 7265 1989-11-22 2024-10-11 02:01:05.000 1989-11-22 2024-10-11 02:01:05 +7266 7266 7267 726.6 1453.2 7266 1989-11-23 2024-10-11 02:01:06.000 1989-11-23 2024-10-11 02:01:06 +7267 7267 7268 726.7 1453.4 7267 1989-11-24 2024-10-11 02:01:07.000 1989-11-24 2024-10-11 02:01:07 +7268 7268 7269 726.8 1453.6000000000001 7268 1989-11-25 2024-10-11 02:01:08.000 1989-11-25 2024-10-11 02:01:08 +7269 7269 7270 726.9 1453.8000000000002 7269 1989-11-26 2024-10-11 02:01:09.000 1989-11-26 2024-10-11 02:01:09 +7270 7270 7271 727 1454 7270 1989-11-27 2024-10-11 02:01:10.000 1989-11-27 2024-10-11 02:01:10 +7271 7271 7272 727.1 1454.2 7271 1989-11-28 2024-10-11 02:01:11.000 1989-11-28 2024-10-11 02:01:11 +7272 7272 7273 727.2 1454.4 7272 1989-11-29 2024-10-11 02:01:12.000 1989-11-29 2024-10-11 02:01:12 +7273 7273 7274 727.3 1454.6000000000001 7273 1989-11-30 2024-10-11 02:01:13.000 1989-11-30 2024-10-11 02:01:13 +7274 7274 7275 727.4 1454.8000000000002 7274 1989-12-01 2024-10-11 02:01:14.000 1989-12-01 2024-10-11 02:01:14 +7275 7275 7276 727.5 1455 7275 1989-12-02 2024-10-11 02:01:15.000 1989-12-02 2024-10-11 02:01:15 +7276 7276 7277 727.6 1455.2 7276 1989-12-03 2024-10-11 02:01:16.000 1989-12-03 2024-10-11 02:01:16 +7277 7277 7278 727.7 1455.4 7277 1989-12-04 2024-10-11 02:01:17.000 1989-12-04 2024-10-11 02:01:17 +7278 7278 7279 727.8 1455.6000000000001 7278 1989-12-05 2024-10-11 02:01:18.000 1989-12-05 2024-10-11 02:01:18 +7279 7279 7280 727.9 1455.8000000000002 7279 1989-12-06 2024-10-11 02:01:19.000 1989-12-06 2024-10-11 02:01:19 +7280 7280 7281 728 1456 7280 1989-12-07 2024-10-11 02:01:20.000 1989-12-07 2024-10-11 02:01:20 +7281 7281 7282 728.1 1456.2 7281 1989-12-08 2024-10-11 02:01:21.000 1989-12-08 2024-10-11 02:01:21 +7282 7282 7283 728.2 1456.4 7282 1989-12-09 2024-10-11 02:01:22.000 1989-12-09 2024-10-11 02:01:22 +7283 7283 7284 728.3 1456.6000000000001 7283 1989-12-10 2024-10-11 02:01:23.000 1989-12-10 2024-10-11 02:01:23 +7284 7284 7285 728.4 1456.8000000000002 7284 1989-12-11 2024-10-11 02:01:24.000 1989-12-11 2024-10-11 02:01:24 +7285 7285 7286 728.5 1457 7285 1989-12-12 2024-10-11 02:01:25.000 1989-12-12 2024-10-11 02:01:25 +7286 7286 7287 728.6 1457.2 7286 1989-12-13 2024-10-11 02:01:26.000 1989-12-13 2024-10-11 02:01:26 +7287 7287 7288 728.7 1457.4 7287 1989-12-14 2024-10-11 02:01:27.000 1989-12-14 2024-10-11 02:01:27 +7288 7288 7289 728.8 1457.6000000000001 7288 1989-12-15 2024-10-11 02:01:28.000 1989-12-15 2024-10-11 02:01:28 +7289 7289 7290 728.9 1457.8000000000002 7289 1989-12-16 2024-10-11 02:01:29.000 1989-12-16 2024-10-11 02:01:29 +7290 7290 7291 729 1458 7290 1989-12-17 2024-10-11 02:01:30.000 1989-12-17 2024-10-11 02:01:30 +7291 7291 7292 729.1 1458.2 7291 1989-12-18 2024-10-11 02:01:31.000 1989-12-18 2024-10-11 02:01:31 +7292 7292 7293 729.2 1458.4 7292 1989-12-19 2024-10-11 02:01:32.000 1989-12-19 2024-10-11 02:01:32 +7293 7293 7294 729.3 1458.6000000000001 7293 1989-12-20 2024-10-11 02:01:33.000 1989-12-20 2024-10-11 02:01:33 +7294 7294 7295 729.4 1458.8000000000002 7294 1989-12-21 2024-10-11 02:01:34.000 1989-12-21 2024-10-11 02:01:34 +7295 7295 7296 729.5 1459 7295 1989-12-22 2024-10-11 02:01:35.000 1989-12-22 2024-10-11 02:01:35 +7296 7296 7297 729.6 1459.2 7296 1989-12-23 2024-10-11 02:01:36.000 1989-12-23 2024-10-11 02:01:36 +7297 7297 7298 729.7 1459.4 7297 1989-12-24 2024-10-11 02:01:37.000 1989-12-24 2024-10-11 02:01:37 +7298 7298 7299 729.8 1459.6000000000001 7298 1989-12-25 2024-10-11 02:01:38.000 1989-12-25 2024-10-11 02:01:38 +7299 7299 7300 729.9 1459.8000000000002 7299 1989-12-26 2024-10-11 02:01:39.000 1989-12-26 2024-10-11 02:01:39 +7300 7300 7301 730 1460 7300 1989-12-27 2024-10-11 02:01:40.000 1989-12-27 2024-10-11 02:01:40 +7301 7301 7302 730.1 1460.2 7301 1989-12-28 2024-10-11 02:01:41.000 1989-12-28 2024-10-11 02:01:41 +7302 7302 7303 730.2 1460.4 7302 1989-12-29 2024-10-11 02:01:42.000 1989-12-29 2024-10-11 02:01:42 +7303 7303 7304 730.3 1460.6000000000001 7303 1989-12-30 2024-10-11 02:01:43.000 1989-12-30 2024-10-11 02:01:43 +7304 7304 7305 730.4 1460.8000000000002 7304 1989-12-31 2024-10-11 02:01:44.000 1989-12-31 2024-10-11 02:01:44 +7305 7305 7306 730.5 1461 7305 1990-01-01 2024-10-11 02:01:45.000 1990-01-01 2024-10-11 02:01:45 +7306 7306 7307 730.6 1461.2 7306 1990-01-02 2024-10-11 02:01:46.000 1990-01-02 2024-10-11 02:01:46 +7307 7307 7308 730.7 1461.4 7307 1990-01-03 2024-10-11 02:01:47.000 1990-01-03 2024-10-11 02:01:47 +7308 7308 7309 730.8 1461.6000000000001 7308 1990-01-04 2024-10-11 02:01:48.000 1990-01-04 2024-10-11 02:01:48 +7309 7309 7310 730.9 1461.8000000000002 7309 1990-01-05 2024-10-11 02:01:49.000 1990-01-05 2024-10-11 02:01:49 +7310 7310 7311 731 1462 7310 1990-01-06 2024-10-11 02:01:50.000 1990-01-06 2024-10-11 02:01:50 +7311 7311 7312 731.1 1462.2 7311 1990-01-07 2024-10-11 02:01:51.000 1990-01-07 2024-10-11 02:01:51 +7312 7312 7313 731.2 1462.4 7312 1990-01-08 2024-10-11 02:01:52.000 1990-01-08 2024-10-11 02:01:52 +7313 7313 7314 731.3 1462.6000000000001 7313 1990-01-09 2024-10-11 02:01:53.000 1990-01-09 2024-10-11 02:01:53 +7314 7314 7315 731.4 1462.8000000000002 7314 1990-01-10 2024-10-11 02:01:54.000 1990-01-10 2024-10-11 02:01:54 +7315 7315 7316 731.5 1463 7315 1990-01-11 2024-10-11 02:01:55.000 1990-01-11 2024-10-11 02:01:55 +7316 7316 7317 731.6 1463.2 7316 1990-01-12 2024-10-11 02:01:56.000 1990-01-12 2024-10-11 02:01:56 +7317 7317 7318 731.7 1463.4 7317 1990-01-13 2024-10-11 02:01:57.000 1990-01-13 2024-10-11 02:01:57 +7318 7318 7319 731.8 1463.6000000000001 7318 1990-01-14 2024-10-11 02:01:58.000 1990-01-14 2024-10-11 02:01:58 +7319 7319 7320 731.9 1463.8000000000002 7319 1990-01-15 2024-10-11 02:01:59.000 1990-01-15 2024-10-11 02:01:59 +7320 7320 7321 732 1464 7320 1990-01-16 2024-10-11 02:02:00.000 1990-01-16 2024-10-11 02:02:00 +7321 7321 7322 732.1 1464.2 7321 1990-01-17 2024-10-11 02:02:01.000 1990-01-17 2024-10-11 02:02:01 +7322 7322 7323 732.2 1464.4 7322 1990-01-18 2024-10-11 02:02:02.000 1990-01-18 2024-10-11 02:02:02 +7323 7323 7324 732.3 1464.6000000000001 7323 1990-01-19 2024-10-11 02:02:03.000 1990-01-19 2024-10-11 02:02:03 +7324 7324 7325 732.4 1464.8000000000002 7324 1990-01-20 2024-10-11 02:02:04.000 1990-01-20 2024-10-11 02:02:04 +7325 7325 7326 732.5 1465 7325 1990-01-21 2024-10-11 02:02:05.000 1990-01-21 2024-10-11 02:02:05 +7326 7326 7327 732.6 1465.2 7326 1990-01-22 2024-10-11 02:02:06.000 1990-01-22 2024-10-11 02:02:06 +7327 7327 7328 732.7 1465.4 7327 1990-01-23 2024-10-11 02:02:07.000 1990-01-23 2024-10-11 02:02:07 +7328 7328 7329 732.8 1465.6000000000001 7328 1990-01-24 2024-10-11 02:02:08.000 1990-01-24 2024-10-11 02:02:08 +7329 7329 7330 732.9 1465.8000000000002 7329 1990-01-25 2024-10-11 02:02:09.000 1990-01-25 2024-10-11 02:02:09 +7330 7330 7331 733 1466 7330 1990-01-26 2024-10-11 02:02:10.000 1990-01-26 2024-10-11 02:02:10 +7331 7331 7332 733.1 1466.2 7331 1990-01-27 2024-10-11 02:02:11.000 1990-01-27 2024-10-11 02:02:11 +7332 7332 7333 733.2 1466.4 7332 1990-01-28 2024-10-11 02:02:12.000 1990-01-28 2024-10-11 02:02:12 +7333 7333 7334 733.3 1466.6000000000001 7333 1990-01-29 2024-10-11 02:02:13.000 1990-01-29 2024-10-11 02:02:13 +7334 7334 7335 733.4 1466.8000000000002 7334 1990-01-30 2024-10-11 02:02:14.000 1990-01-30 2024-10-11 02:02:14 +7335 7335 7336 733.5 1467 7335 1990-01-31 2024-10-11 02:02:15.000 1990-01-31 2024-10-11 02:02:15 +7336 7336 7337 733.6 1467.2 7336 1990-02-01 2024-10-11 02:02:16.000 1990-02-01 2024-10-11 02:02:16 +7337 7337 7338 733.7 1467.4 7337 1990-02-02 2024-10-11 02:02:17.000 1990-02-02 2024-10-11 02:02:17 +7338 7338 7339 733.8 1467.6000000000001 7338 1990-02-03 2024-10-11 02:02:18.000 1990-02-03 2024-10-11 02:02:18 +7339 7339 7340 733.9 1467.8000000000002 7339 1990-02-04 2024-10-11 02:02:19.000 1990-02-04 2024-10-11 02:02:19 +7340 7340 7341 734 1468 7340 1990-02-05 2024-10-11 02:02:20.000 1990-02-05 2024-10-11 02:02:20 +7341 7341 7342 734.1 1468.2 7341 1990-02-06 2024-10-11 02:02:21.000 1990-02-06 2024-10-11 02:02:21 +7342 7342 7343 734.2 1468.4 7342 1990-02-07 2024-10-11 02:02:22.000 1990-02-07 2024-10-11 02:02:22 +7343 7343 7344 734.3 1468.6000000000001 7343 1990-02-08 2024-10-11 02:02:23.000 1990-02-08 2024-10-11 02:02:23 +7344 7344 7345 734.4 1468.8000000000002 7344 1990-02-09 2024-10-11 02:02:24.000 1990-02-09 2024-10-11 02:02:24 +7345 7345 7346 734.5 1469 7345 1990-02-10 2024-10-11 02:02:25.000 1990-02-10 2024-10-11 02:02:25 +7346 7346 7347 734.6 1469.2 7346 1990-02-11 2024-10-11 02:02:26.000 1990-02-11 2024-10-11 02:02:26 +7347 7347 7348 734.7 1469.4 7347 1990-02-12 2024-10-11 02:02:27.000 1990-02-12 2024-10-11 02:02:27 +7348 7348 7349 734.8 1469.6000000000001 7348 1990-02-13 2024-10-11 02:02:28.000 1990-02-13 2024-10-11 02:02:28 +7349 7349 7350 734.9 1469.8000000000002 7349 1990-02-14 2024-10-11 02:02:29.000 1990-02-14 2024-10-11 02:02:29 +7350 7350 7351 735 1470 7350 1990-02-15 2024-10-11 02:02:30.000 1990-02-15 2024-10-11 02:02:30 +7351 7351 7352 735.1 1470.2 7351 1990-02-16 2024-10-11 02:02:31.000 1990-02-16 2024-10-11 02:02:31 +7352 7352 7353 735.2 1470.4 7352 1990-02-17 2024-10-11 02:02:32.000 1990-02-17 2024-10-11 02:02:32 +7353 7353 7354 735.3 1470.6000000000001 7353 1990-02-18 2024-10-11 02:02:33.000 1990-02-18 2024-10-11 02:02:33 +7354 7354 7355 735.4 1470.8000000000002 7354 1990-02-19 2024-10-11 02:02:34.000 1990-02-19 2024-10-11 02:02:34 +7355 7355 7356 735.5 1471 7355 1990-02-20 2024-10-11 02:02:35.000 1990-02-20 2024-10-11 02:02:35 +7356 7356 7357 735.6 1471.2 7356 1990-02-21 2024-10-11 02:02:36.000 1990-02-21 2024-10-11 02:02:36 +7357 7357 7358 735.7 1471.4 7357 1990-02-22 2024-10-11 02:02:37.000 1990-02-22 2024-10-11 02:02:37 +7358 7358 7359 735.8 1471.6000000000001 7358 1990-02-23 2024-10-11 02:02:38.000 1990-02-23 2024-10-11 02:02:38 +7359 7359 7360 735.9 1471.8000000000002 7359 1990-02-24 2024-10-11 02:02:39.000 1990-02-24 2024-10-11 02:02:39 +7360 7360 7361 736 1472 7360 1990-02-25 2024-10-11 02:02:40.000 1990-02-25 2024-10-11 02:02:40 +7361 7361 7362 736.1 1472.2 7361 1990-02-26 2024-10-11 02:02:41.000 1990-02-26 2024-10-11 02:02:41 +7362 7362 7363 736.2 1472.4 7362 1990-02-27 2024-10-11 02:02:42.000 1990-02-27 2024-10-11 02:02:42 +7363 7363 7364 736.3 1472.6000000000001 7363 1990-02-28 2024-10-11 02:02:43.000 1990-02-28 2024-10-11 02:02:43 +7364 7364 7365 736.4 1472.8000000000002 7364 1990-03-01 2024-10-11 02:02:44.000 1990-03-01 2024-10-11 02:02:44 +7365 7365 7366 736.5 1473 7365 1990-03-02 2024-10-11 02:02:45.000 1990-03-02 2024-10-11 02:02:45 +7366 7366 7367 736.6 1473.2 7366 1990-03-03 2024-10-11 02:02:46.000 1990-03-03 2024-10-11 02:02:46 +7367 7367 7368 736.7 1473.4 7367 1990-03-04 2024-10-11 02:02:47.000 1990-03-04 2024-10-11 02:02:47 +7368 7368 7369 736.8 1473.6000000000001 7368 1990-03-05 2024-10-11 02:02:48.000 1990-03-05 2024-10-11 02:02:48 +7369 7369 7370 736.9 1473.8000000000002 7369 1990-03-06 2024-10-11 02:02:49.000 1990-03-06 2024-10-11 02:02:49 +7370 7370 7371 737 1474 7370 1990-03-07 2024-10-11 02:02:50.000 1990-03-07 2024-10-11 02:02:50 +7371 7371 7372 737.1 1474.2 7371 1990-03-08 2024-10-11 02:02:51.000 1990-03-08 2024-10-11 02:02:51 +7372 7372 7373 737.2 1474.4 7372 1990-03-09 2024-10-11 02:02:52.000 1990-03-09 2024-10-11 02:02:52 +7373 7373 7374 737.3 1474.6000000000001 7373 1990-03-10 2024-10-11 02:02:53.000 1990-03-10 2024-10-11 02:02:53 +7374 7374 7375 737.4 1474.8000000000002 7374 1990-03-11 2024-10-11 02:02:54.000 1990-03-11 2024-10-11 02:02:54 +7375 7375 7376 737.5 1475 7375 1990-03-12 2024-10-11 02:02:55.000 1990-03-12 2024-10-11 02:02:55 +7376 7376 7377 737.6 1475.2 7376 1990-03-13 2024-10-11 02:02:56.000 1990-03-13 2024-10-11 02:02:56 +7377 7377 7378 737.7 1475.4 7377 1990-03-14 2024-10-11 02:02:57.000 1990-03-14 2024-10-11 02:02:57 +7378 7378 7379 737.8 1475.6000000000001 7378 1990-03-15 2024-10-11 02:02:58.000 1990-03-15 2024-10-11 02:02:58 +7379 7379 7380 737.9 1475.8000000000002 7379 1990-03-16 2024-10-11 02:02:59.000 1990-03-16 2024-10-11 02:02:59 +7380 7380 7381 738 1476 7380 1990-03-17 2024-10-11 02:03:00.000 1990-03-17 2024-10-11 02:03:00 +7381 7381 7382 738.1 1476.2 7381 1990-03-18 2024-10-11 02:03:01.000 1990-03-18 2024-10-11 02:03:01 +7382 7382 7383 738.2 1476.4 7382 1990-03-19 2024-10-11 02:03:02.000 1990-03-19 2024-10-11 02:03:02 +7383 7383 7384 738.3 1476.6000000000001 7383 1990-03-20 2024-10-11 02:03:03.000 1990-03-20 2024-10-11 02:03:03 +7384 7384 7385 738.4 1476.8000000000002 7384 1990-03-21 2024-10-11 02:03:04.000 1990-03-21 2024-10-11 02:03:04 +7385 7385 7386 738.5 1477 7385 1990-03-22 2024-10-11 02:03:05.000 1990-03-22 2024-10-11 02:03:05 +7386 7386 7387 738.6 1477.2 7386 1990-03-23 2024-10-11 02:03:06.000 1990-03-23 2024-10-11 02:03:06 +7387 7387 7388 738.7 1477.4 7387 1990-03-24 2024-10-11 02:03:07.000 1990-03-24 2024-10-11 02:03:07 +7388 7388 7389 738.8 1477.6000000000001 7388 1990-03-25 2024-10-11 02:03:08.000 1990-03-25 2024-10-11 02:03:08 +7389 7389 7390 738.9 1477.8000000000002 7389 1990-03-26 2024-10-11 02:03:09.000 1990-03-26 2024-10-11 02:03:09 +7390 7390 7391 739 1478 7390 1990-03-27 2024-10-11 02:03:10.000 1990-03-27 2024-10-11 02:03:10 +7391 7391 7392 739.1 1478.2 7391 1990-03-28 2024-10-11 02:03:11.000 1990-03-28 2024-10-11 02:03:11 +7392 7392 7393 739.2 1478.4 7392 1990-03-29 2024-10-11 02:03:12.000 1990-03-29 2024-10-11 02:03:12 +7393 7393 7394 739.3 1478.6000000000001 7393 1990-03-30 2024-10-11 02:03:13.000 1990-03-30 2024-10-11 02:03:13 +7394 7394 7395 739.4 1478.8000000000002 7394 1990-03-31 2024-10-11 02:03:14.000 1990-03-31 2024-10-11 02:03:14 +7395 7395 7396 739.5 1479 7395 1990-04-01 2024-10-11 02:03:15.000 1990-04-01 2024-10-11 02:03:15 +7396 7396 7397 739.6 1479.2 7396 1990-04-02 2024-10-11 02:03:16.000 1990-04-02 2024-10-11 02:03:16 +7397 7397 7398 739.7 1479.4 7397 1990-04-03 2024-10-11 02:03:17.000 1990-04-03 2024-10-11 02:03:17 +7398 7398 7399 739.8 1479.6000000000001 7398 1990-04-04 2024-10-11 02:03:18.000 1990-04-04 2024-10-11 02:03:18 +7399 7399 7400 739.9 1479.8000000000002 7399 1990-04-05 2024-10-11 02:03:19.000 1990-04-05 2024-10-11 02:03:19 +7400 7400 7401 740 1480 7400 1990-04-06 2024-10-11 02:03:20.000 1990-04-06 2024-10-11 02:03:20 +7401 7401 7402 740.1 1480.2 7401 1990-04-07 2024-10-11 02:03:21.000 1990-04-07 2024-10-11 02:03:21 +7402 7402 7403 740.2 1480.4 7402 1990-04-08 2024-10-11 02:03:22.000 1990-04-08 2024-10-11 02:03:22 +7403 7403 7404 740.3 1480.6000000000001 7403 1990-04-09 2024-10-11 02:03:23.000 1990-04-09 2024-10-11 02:03:23 +7404 7404 7405 740.4 1480.8000000000002 7404 1990-04-10 2024-10-11 02:03:24.000 1990-04-10 2024-10-11 02:03:24 +7405 7405 7406 740.5 1481 7405 1990-04-11 2024-10-11 02:03:25.000 1990-04-11 2024-10-11 02:03:25 +7406 7406 7407 740.6 1481.2 7406 1990-04-12 2024-10-11 02:03:26.000 1990-04-12 2024-10-11 02:03:26 +7407 7407 7408 740.7 1481.4 7407 1990-04-13 2024-10-11 02:03:27.000 1990-04-13 2024-10-11 02:03:27 +7408 7408 7409 740.8 1481.6000000000001 7408 1990-04-14 2024-10-11 02:03:28.000 1990-04-14 2024-10-11 02:03:28 +7409 7409 7410 740.9 1481.8000000000002 7409 1990-04-15 2024-10-11 02:03:29.000 1990-04-15 2024-10-11 02:03:29 +7410 7410 7411 741 1482 7410 1990-04-16 2024-10-11 02:03:30.000 1990-04-16 2024-10-11 02:03:30 +7411 7411 7412 741.1 1482.2 7411 1990-04-17 2024-10-11 02:03:31.000 1990-04-17 2024-10-11 02:03:31 +7412 7412 7413 741.2 1482.4 7412 1990-04-18 2024-10-11 02:03:32.000 1990-04-18 2024-10-11 02:03:32 +7413 7413 7414 741.3 1482.6000000000001 7413 1990-04-19 2024-10-11 02:03:33.000 1990-04-19 2024-10-11 02:03:33 +7414 7414 7415 741.4 1482.8000000000002 7414 1990-04-20 2024-10-11 02:03:34.000 1990-04-20 2024-10-11 02:03:34 +7415 7415 7416 741.5 1483 7415 1990-04-21 2024-10-11 02:03:35.000 1990-04-21 2024-10-11 02:03:35 +7416 7416 7417 741.6 1483.2 7416 1990-04-22 2024-10-11 02:03:36.000 1990-04-22 2024-10-11 02:03:36 +7417 7417 7418 741.7 1483.4 7417 1990-04-23 2024-10-11 02:03:37.000 1990-04-23 2024-10-11 02:03:37 +7418 7418 7419 741.8 1483.6000000000001 7418 1990-04-24 2024-10-11 02:03:38.000 1990-04-24 2024-10-11 02:03:38 +7419 7419 7420 741.9 1483.8000000000002 7419 1990-04-25 2024-10-11 02:03:39.000 1990-04-25 2024-10-11 02:03:39 +7420 7420 7421 742 1484 7420 1990-04-26 2024-10-11 02:03:40.000 1990-04-26 2024-10-11 02:03:40 +7421 7421 7422 742.1 1484.2 7421 1990-04-27 2024-10-11 02:03:41.000 1990-04-27 2024-10-11 02:03:41 +7422 7422 7423 742.2 1484.4 7422 1990-04-28 2024-10-11 02:03:42.000 1990-04-28 2024-10-11 02:03:42 +7423 7423 7424 742.3 1484.6000000000001 7423 1990-04-29 2024-10-11 02:03:43.000 1990-04-29 2024-10-11 02:03:43 +7424 7424 7425 742.4 1484.8000000000002 7424 1990-04-30 2024-10-11 02:03:44.000 1990-04-30 2024-10-11 02:03:44 +7425 7425 7426 742.5 1485 7425 1990-05-01 2024-10-11 02:03:45.000 1990-05-01 2024-10-11 02:03:45 +7426 7426 7427 742.6 1485.2 7426 1990-05-02 2024-10-11 02:03:46.000 1990-05-02 2024-10-11 02:03:46 +7427 7427 7428 742.7 1485.4 7427 1990-05-03 2024-10-11 02:03:47.000 1990-05-03 2024-10-11 02:03:47 +7428 7428 7429 742.8 1485.6000000000001 7428 1990-05-04 2024-10-11 02:03:48.000 1990-05-04 2024-10-11 02:03:48 +7429 7429 7430 742.9 1485.8000000000002 7429 1990-05-05 2024-10-11 02:03:49.000 1990-05-05 2024-10-11 02:03:49 +7430 7430 7431 743 1486 7430 1990-05-06 2024-10-11 02:03:50.000 1990-05-06 2024-10-11 02:03:50 +7431 7431 7432 743.1 1486.2 7431 1990-05-07 2024-10-11 02:03:51.000 1990-05-07 2024-10-11 02:03:51 +7432 7432 7433 743.2 1486.4 7432 1990-05-08 2024-10-11 02:03:52.000 1990-05-08 2024-10-11 02:03:52 +7433 7433 7434 743.3 1486.6000000000001 7433 1990-05-09 2024-10-11 02:03:53.000 1990-05-09 2024-10-11 02:03:53 +7434 7434 7435 743.4 1486.8000000000002 7434 1990-05-10 2024-10-11 02:03:54.000 1990-05-10 2024-10-11 02:03:54 +7435 7435 7436 743.5 1487 7435 1990-05-11 2024-10-11 02:03:55.000 1990-05-11 2024-10-11 02:03:55 +7436 7436 7437 743.6 1487.2 7436 1990-05-12 2024-10-11 02:03:56.000 1990-05-12 2024-10-11 02:03:56 +7437 7437 7438 743.7 1487.4 7437 1990-05-13 2024-10-11 02:03:57.000 1990-05-13 2024-10-11 02:03:57 +7438 7438 7439 743.8 1487.6000000000001 7438 1990-05-14 2024-10-11 02:03:58.000 1990-05-14 2024-10-11 02:03:58 +7439 7439 7440 743.9 1487.8000000000002 7439 1990-05-15 2024-10-11 02:03:59.000 1990-05-15 2024-10-11 02:03:59 +7440 7440 7441 744 1488 7440 1990-05-16 2024-10-11 02:04:00.000 1990-05-16 2024-10-11 02:04:00 +7441 7441 7442 744.1 1488.2 7441 1990-05-17 2024-10-11 02:04:01.000 1990-05-17 2024-10-11 02:04:01 +7442 7442 7443 744.2 1488.4 7442 1990-05-18 2024-10-11 02:04:02.000 1990-05-18 2024-10-11 02:04:02 +7443 7443 7444 744.3 1488.6000000000001 7443 1990-05-19 2024-10-11 02:04:03.000 1990-05-19 2024-10-11 02:04:03 +7444 7444 7445 744.4 1488.8000000000002 7444 1990-05-20 2024-10-11 02:04:04.000 1990-05-20 2024-10-11 02:04:04 +7445 7445 7446 744.5 1489 7445 1990-05-21 2024-10-11 02:04:05.000 1990-05-21 2024-10-11 02:04:05 +7446 7446 7447 744.6 1489.2 7446 1990-05-22 2024-10-11 02:04:06.000 1990-05-22 2024-10-11 02:04:06 +7447 7447 7448 744.7 1489.4 7447 1990-05-23 2024-10-11 02:04:07.000 1990-05-23 2024-10-11 02:04:07 +7448 7448 7449 744.8 1489.6000000000001 7448 1990-05-24 2024-10-11 02:04:08.000 1990-05-24 2024-10-11 02:04:08 +7449 7449 7450 744.9 1489.8000000000002 7449 1990-05-25 2024-10-11 02:04:09.000 1990-05-25 2024-10-11 02:04:09 +7450 7450 7451 745 1490 7450 1990-05-26 2024-10-11 02:04:10.000 1990-05-26 2024-10-11 02:04:10 +7451 7451 7452 745.1 1490.2 7451 1990-05-27 2024-10-11 02:04:11.000 1990-05-27 2024-10-11 02:04:11 +7452 7452 7453 745.2 1490.4 7452 1990-05-28 2024-10-11 02:04:12.000 1990-05-28 2024-10-11 02:04:12 +7453 7453 7454 745.3 1490.6000000000001 7453 1990-05-29 2024-10-11 02:04:13.000 1990-05-29 2024-10-11 02:04:13 +7454 7454 7455 745.4 1490.8000000000002 7454 1990-05-30 2024-10-11 02:04:14.000 1990-05-30 2024-10-11 02:04:14 +7455 7455 7456 745.5 1491 7455 1990-05-31 2024-10-11 02:04:15.000 1990-05-31 2024-10-11 02:04:15 +7456 7456 7457 745.6 1491.2 7456 1990-06-01 2024-10-11 02:04:16.000 1990-06-01 2024-10-11 02:04:16 +7457 7457 7458 745.7 1491.4 7457 1990-06-02 2024-10-11 02:04:17.000 1990-06-02 2024-10-11 02:04:17 +7458 7458 7459 745.8 1491.6000000000001 7458 1990-06-03 2024-10-11 02:04:18.000 1990-06-03 2024-10-11 02:04:18 +7459 7459 7460 745.9 1491.8000000000002 7459 1990-06-04 2024-10-11 02:04:19.000 1990-06-04 2024-10-11 02:04:19 +7460 7460 7461 746 1492 7460 1990-06-05 2024-10-11 02:04:20.000 1990-06-05 2024-10-11 02:04:20 +7461 7461 7462 746.1 1492.2 7461 1990-06-06 2024-10-11 02:04:21.000 1990-06-06 2024-10-11 02:04:21 +7462 7462 7463 746.2 1492.4 7462 1990-06-07 2024-10-11 02:04:22.000 1990-06-07 2024-10-11 02:04:22 +7463 7463 7464 746.3 1492.6000000000001 7463 1990-06-08 2024-10-11 02:04:23.000 1990-06-08 2024-10-11 02:04:23 +7464 7464 7465 746.4 1492.8000000000002 7464 1990-06-09 2024-10-11 02:04:24.000 1990-06-09 2024-10-11 02:04:24 +7465 7465 7466 746.5 1493 7465 1990-06-10 2024-10-11 02:04:25.000 1990-06-10 2024-10-11 02:04:25 +7466 7466 7467 746.6 1493.2 7466 1990-06-11 2024-10-11 02:04:26.000 1990-06-11 2024-10-11 02:04:26 +7467 7467 7468 746.7 1493.4 7467 1990-06-12 2024-10-11 02:04:27.000 1990-06-12 2024-10-11 02:04:27 +7468 7468 7469 746.8 1493.6000000000001 7468 1990-06-13 2024-10-11 02:04:28.000 1990-06-13 2024-10-11 02:04:28 +7469 7469 7470 746.9 1493.8000000000002 7469 1990-06-14 2024-10-11 02:04:29.000 1990-06-14 2024-10-11 02:04:29 +7470 7470 7471 747 1494 7470 1990-06-15 2024-10-11 02:04:30.000 1990-06-15 2024-10-11 02:04:30 +7471 7471 7472 747.1 1494.2 7471 1990-06-16 2024-10-11 02:04:31.000 1990-06-16 2024-10-11 02:04:31 +7472 7472 7473 747.2 1494.4 7472 1990-06-17 2024-10-11 02:04:32.000 1990-06-17 2024-10-11 02:04:32 +7473 7473 7474 747.3 1494.6000000000001 7473 1990-06-18 2024-10-11 02:04:33.000 1990-06-18 2024-10-11 02:04:33 +7474 7474 7475 747.4 1494.8000000000002 7474 1990-06-19 2024-10-11 02:04:34.000 1990-06-19 2024-10-11 02:04:34 +7475 7475 7476 747.5 1495 7475 1990-06-20 2024-10-11 02:04:35.000 1990-06-20 2024-10-11 02:04:35 +7476 7476 7477 747.6 1495.2 7476 1990-06-21 2024-10-11 02:04:36.000 1990-06-21 2024-10-11 02:04:36 +7477 7477 7478 747.7 1495.4 7477 1990-06-22 2024-10-11 02:04:37.000 1990-06-22 2024-10-11 02:04:37 +7478 7478 7479 747.8 1495.6000000000001 7478 1990-06-23 2024-10-11 02:04:38.000 1990-06-23 2024-10-11 02:04:38 +7479 7479 7480 747.9 1495.8000000000002 7479 1990-06-24 2024-10-11 02:04:39.000 1990-06-24 2024-10-11 02:04:39 +7480 7480 7481 748 1496 7480 1990-06-25 2024-10-11 02:04:40.000 1990-06-25 2024-10-11 02:04:40 +7481 7481 7482 748.1 1496.2 7481 1990-06-26 2024-10-11 02:04:41.000 1990-06-26 2024-10-11 02:04:41 +7482 7482 7483 748.2 1496.4 7482 1990-06-27 2024-10-11 02:04:42.000 1990-06-27 2024-10-11 02:04:42 +7483 7483 7484 748.3 1496.6000000000001 7483 1990-06-28 2024-10-11 02:04:43.000 1990-06-28 2024-10-11 02:04:43 +7484 7484 7485 748.4 1496.8000000000002 7484 1990-06-29 2024-10-11 02:04:44.000 1990-06-29 2024-10-11 02:04:44 +7485 7485 7486 748.5 1497 7485 1990-06-30 2024-10-11 02:04:45.000 1990-06-30 2024-10-11 02:04:45 +7486 7486 7487 748.6 1497.2 7486 1990-07-01 2024-10-11 02:04:46.000 1990-07-01 2024-10-11 02:04:46 +7487 7487 7488 748.7 1497.4 7487 1990-07-02 2024-10-11 02:04:47.000 1990-07-02 2024-10-11 02:04:47 +7488 7488 7489 748.8 1497.6000000000001 7488 1990-07-03 2024-10-11 02:04:48.000 1990-07-03 2024-10-11 02:04:48 +7489 7489 7490 748.9 1497.8000000000002 7489 1990-07-04 2024-10-11 02:04:49.000 1990-07-04 2024-10-11 02:04:49 +7490 7490 7491 749 1498 7490 1990-07-05 2024-10-11 02:04:50.000 1990-07-05 2024-10-11 02:04:50 +7491 7491 7492 749.1 1498.2 7491 1990-07-06 2024-10-11 02:04:51.000 1990-07-06 2024-10-11 02:04:51 +7492 7492 7493 749.2 1498.4 7492 1990-07-07 2024-10-11 02:04:52.000 1990-07-07 2024-10-11 02:04:52 +7493 7493 7494 749.3 1498.6000000000001 7493 1990-07-08 2024-10-11 02:04:53.000 1990-07-08 2024-10-11 02:04:53 +7494 7494 7495 749.4 1498.8000000000002 7494 1990-07-09 2024-10-11 02:04:54.000 1990-07-09 2024-10-11 02:04:54 +7495 7495 7496 749.5 1499 7495 1990-07-10 2024-10-11 02:04:55.000 1990-07-10 2024-10-11 02:04:55 +7496 7496 7497 749.6 1499.2 7496 1990-07-11 2024-10-11 02:04:56.000 1990-07-11 2024-10-11 02:04:56 +7497 7497 7498 749.7 1499.4 7497 1990-07-12 2024-10-11 02:04:57.000 1990-07-12 2024-10-11 02:04:57 +7498 7498 7499 749.8 1499.6000000000001 7498 1990-07-13 2024-10-11 02:04:58.000 1990-07-13 2024-10-11 02:04:58 +7499 7499 7500 749.9 1499.8000000000002 7499 1990-07-14 2024-10-11 02:04:59.000 1990-07-14 2024-10-11 02:04:59 +7500 7500 7501 750 1500 7500 1990-07-15 2024-10-11 02:05:00.000 1990-07-15 2024-10-11 02:05:00 +7501 7501 7502 750.1 1500.2 7501 1990-07-16 2024-10-11 02:05:01.000 1990-07-16 2024-10-11 02:05:01 +7502 7502 7503 750.2 1500.4 7502 1990-07-17 2024-10-11 02:05:02.000 1990-07-17 2024-10-11 02:05:02 +7503 7503 7504 750.3 1500.6000000000001 7503 1990-07-18 2024-10-11 02:05:03.000 1990-07-18 2024-10-11 02:05:03 +7504 7504 7505 750.4 1500.8000000000002 7504 1990-07-19 2024-10-11 02:05:04.000 1990-07-19 2024-10-11 02:05:04 +7505 7505 7506 750.5 1501 7505 1990-07-20 2024-10-11 02:05:05.000 1990-07-20 2024-10-11 02:05:05 +7506 7506 7507 750.6 1501.2 7506 1990-07-21 2024-10-11 02:05:06.000 1990-07-21 2024-10-11 02:05:06 +7507 7507 7508 750.7 1501.4 7507 1990-07-22 2024-10-11 02:05:07.000 1990-07-22 2024-10-11 02:05:07 +7508 7508 7509 750.8 1501.6000000000001 7508 1990-07-23 2024-10-11 02:05:08.000 1990-07-23 2024-10-11 02:05:08 +7509 7509 7510 750.9 1501.8000000000002 7509 1990-07-24 2024-10-11 02:05:09.000 1990-07-24 2024-10-11 02:05:09 +7510 7510 7511 751 1502 7510 1990-07-25 2024-10-11 02:05:10.000 1990-07-25 2024-10-11 02:05:10 +7511 7511 7512 751.1 1502.2 7511 1990-07-26 2024-10-11 02:05:11.000 1990-07-26 2024-10-11 02:05:11 +7512 7512 7513 751.2 1502.4 7512 1990-07-27 2024-10-11 02:05:12.000 1990-07-27 2024-10-11 02:05:12 +7513 7513 7514 751.3 1502.6000000000001 7513 1990-07-28 2024-10-11 02:05:13.000 1990-07-28 2024-10-11 02:05:13 +7514 7514 7515 751.4 1502.8000000000002 7514 1990-07-29 2024-10-11 02:05:14.000 1990-07-29 2024-10-11 02:05:14 +7515 7515 7516 751.5 1503 7515 1990-07-30 2024-10-11 02:05:15.000 1990-07-30 2024-10-11 02:05:15 +7516 7516 7517 751.6 1503.2 7516 1990-07-31 2024-10-11 02:05:16.000 1990-07-31 2024-10-11 02:05:16 +7517 7517 7518 751.7 1503.4 7517 1990-08-01 2024-10-11 02:05:17.000 1990-08-01 2024-10-11 02:05:17 +7518 7518 7519 751.8 1503.6000000000001 7518 1990-08-02 2024-10-11 02:05:18.000 1990-08-02 2024-10-11 02:05:18 +7519 7519 7520 751.9 1503.8000000000002 7519 1990-08-03 2024-10-11 02:05:19.000 1990-08-03 2024-10-11 02:05:19 +7520 7520 7521 752 1504 7520 1990-08-04 2024-10-11 02:05:20.000 1990-08-04 2024-10-11 02:05:20 +7521 7521 7522 752.1 1504.2 7521 1990-08-05 2024-10-11 02:05:21.000 1990-08-05 2024-10-11 02:05:21 +7522 7522 7523 752.2 1504.4 7522 1990-08-06 2024-10-11 02:05:22.000 1990-08-06 2024-10-11 02:05:22 +7523 7523 7524 752.3 1504.6000000000001 7523 1990-08-07 2024-10-11 02:05:23.000 1990-08-07 2024-10-11 02:05:23 +7524 7524 7525 752.4 1504.8000000000002 7524 1990-08-08 2024-10-11 02:05:24.000 1990-08-08 2024-10-11 02:05:24 +7525 7525 7526 752.5 1505 7525 1990-08-09 2024-10-11 02:05:25.000 1990-08-09 2024-10-11 02:05:25 +7526 7526 7527 752.6 1505.2 7526 1990-08-10 2024-10-11 02:05:26.000 1990-08-10 2024-10-11 02:05:26 +7527 7527 7528 752.7 1505.4 7527 1990-08-11 2024-10-11 02:05:27.000 1990-08-11 2024-10-11 02:05:27 +7528 7528 7529 752.8 1505.6000000000001 7528 1990-08-12 2024-10-11 02:05:28.000 1990-08-12 2024-10-11 02:05:28 +7529 7529 7530 752.9 1505.8000000000002 7529 1990-08-13 2024-10-11 02:05:29.000 1990-08-13 2024-10-11 02:05:29 +7530 7530 7531 753 1506 7530 1990-08-14 2024-10-11 02:05:30.000 1990-08-14 2024-10-11 02:05:30 +7531 7531 7532 753.1 1506.2 7531 1990-08-15 2024-10-11 02:05:31.000 1990-08-15 2024-10-11 02:05:31 +7532 7532 7533 753.2 1506.4 7532 1990-08-16 2024-10-11 02:05:32.000 1990-08-16 2024-10-11 02:05:32 +7533 7533 7534 753.3 1506.6000000000001 7533 1990-08-17 2024-10-11 02:05:33.000 1990-08-17 2024-10-11 02:05:33 +7534 7534 7535 753.4 1506.8000000000002 7534 1990-08-18 2024-10-11 02:05:34.000 1990-08-18 2024-10-11 02:05:34 +7535 7535 7536 753.5 1507 7535 1990-08-19 2024-10-11 02:05:35.000 1990-08-19 2024-10-11 02:05:35 +7536 7536 7537 753.6 1507.2 7536 1990-08-20 2024-10-11 02:05:36.000 1990-08-20 2024-10-11 02:05:36 +7537 7537 7538 753.7 1507.4 7537 1990-08-21 2024-10-11 02:05:37.000 1990-08-21 2024-10-11 02:05:37 +7538 7538 7539 753.8 1507.6000000000001 7538 1990-08-22 2024-10-11 02:05:38.000 1990-08-22 2024-10-11 02:05:38 +7539 7539 7540 753.9 1507.8000000000002 7539 1990-08-23 2024-10-11 02:05:39.000 1990-08-23 2024-10-11 02:05:39 +7540 7540 7541 754 1508 7540 1990-08-24 2024-10-11 02:05:40.000 1990-08-24 2024-10-11 02:05:40 +7541 7541 7542 754.1 1508.2 7541 1990-08-25 2024-10-11 02:05:41.000 1990-08-25 2024-10-11 02:05:41 +7542 7542 7543 754.2 1508.4 7542 1990-08-26 2024-10-11 02:05:42.000 1990-08-26 2024-10-11 02:05:42 +7543 7543 7544 754.3 1508.6000000000001 7543 1990-08-27 2024-10-11 02:05:43.000 1990-08-27 2024-10-11 02:05:43 +7544 7544 7545 754.4 1508.8000000000002 7544 1990-08-28 2024-10-11 02:05:44.000 1990-08-28 2024-10-11 02:05:44 +7545 7545 7546 754.5 1509 7545 1990-08-29 2024-10-11 02:05:45.000 1990-08-29 2024-10-11 02:05:45 +7546 7546 7547 754.6 1509.2 7546 1990-08-30 2024-10-11 02:05:46.000 1990-08-30 2024-10-11 02:05:46 +7547 7547 7548 754.7 1509.4 7547 1990-08-31 2024-10-11 02:05:47.000 1990-08-31 2024-10-11 02:05:47 +7548 7548 7549 754.8 1509.6000000000001 7548 1990-09-01 2024-10-11 02:05:48.000 1990-09-01 2024-10-11 02:05:48 +7549 7549 7550 754.9 1509.8000000000002 7549 1990-09-02 2024-10-11 02:05:49.000 1990-09-02 2024-10-11 02:05:49 +7550 7550 7551 755 1510 7550 1990-09-03 2024-10-11 02:05:50.000 1990-09-03 2024-10-11 02:05:50 +7551 7551 7552 755.1 1510.2 7551 1990-09-04 2024-10-11 02:05:51.000 1990-09-04 2024-10-11 02:05:51 +7552 7552 7553 755.2 1510.4 7552 1990-09-05 2024-10-11 02:05:52.000 1990-09-05 2024-10-11 02:05:52 +7553 7553 7554 755.3 1510.6000000000001 7553 1990-09-06 2024-10-11 02:05:53.000 1990-09-06 2024-10-11 02:05:53 +7554 7554 7555 755.4 1510.8000000000002 7554 1990-09-07 2024-10-11 02:05:54.000 1990-09-07 2024-10-11 02:05:54 +7555 7555 7556 755.5 1511 7555 1990-09-08 2024-10-11 02:05:55.000 1990-09-08 2024-10-11 02:05:55 +7556 7556 7557 755.6 1511.2 7556 1990-09-09 2024-10-11 02:05:56.000 1990-09-09 2024-10-11 02:05:56 +7557 7557 7558 755.7 1511.4 7557 1990-09-10 2024-10-11 02:05:57.000 1990-09-10 2024-10-11 02:05:57 +7558 7558 7559 755.8 1511.6000000000001 7558 1990-09-11 2024-10-11 02:05:58.000 1990-09-11 2024-10-11 02:05:58 +7559 7559 7560 755.9 1511.8000000000002 7559 1990-09-12 2024-10-11 02:05:59.000 1990-09-12 2024-10-11 02:05:59 +7560 7560 7561 756 1512 7560 1990-09-13 2024-10-11 02:06:00.000 1990-09-13 2024-10-11 02:06:00 +7561 7561 7562 756.1 1512.2 7561 1990-09-14 2024-10-11 02:06:01.000 1990-09-14 2024-10-11 02:06:01 +7562 7562 7563 756.2 1512.4 7562 1990-09-15 2024-10-11 02:06:02.000 1990-09-15 2024-10-11 02:06:02 +7563 7563 7564 756.3 1512.6000000000001 7563 1990-09-16 2024-10-11 02:06:03.000 1990-09-16 2024-10-11 02:06:03 +7564 7564 7565 756.4 1512.8000000000002 7564 1990-09-17 2024-10-11 02:06:04.000 1990-09-17 2024-10-11 02:06:04 +7565 7565 7566 756.5 1513 7565 1990-09-18 2024-10-11 02:06:05.000 1990-09-18 2024-10-11 02:06:05 +7566 7566 7567 756.6 1513.2 7566 1990-09-19 2024-10-11 02:06:06.000 1990-09-19 2024-10-11 02:06:06 +7567 7567 7568 756.7 1513.4 7567 1990-09-20 2024-10-11 02:06:07.000 1990-09-20 2024-10-11 02:06:07 +7568 7568 7569 756.8 1513.6000000000001 7568 1990-09-21 2024-10-11 02:06:08.000 1990-09-21 2024-10-11 02:06:08 +7569 7569 7570 756.9 1513.8000000000002 7569 1990-09-22 2024-10-11 02:06:09.000 1990-09-22 2024-10-11 02:06:09 +7570 7570 7571 757 1514 7570 1990-09-23 2024-10-11 02:06:10.000 1990-09-23 2024-10-11 02:06:10 +7571 7571 7572 757.1 1514.2 7571 1990-09-24 2024-10-11 02:06:11.000 1990-09-24 2024-10-11 02:06:11 +7572 7572 7573 757.2 1514.4 7572 1990-09-25 2024-10-11 02:06:12.000 1990-09-25 2024-10-11 02:06:12 +7573 7573 7574 757.3 1514.6000000000001 7573 1990-09-26 2024-10-11 02:06:13.000 1990-09-26 2024-10-11 02:06:13 +7574 7574 7575 757.4 1514.8000000000002 7574 1990-09-27 2024-10-11 02:06:14.000 1990-09-27 2024-10-11 02:06:14 +7575 7575 7576 757.5 1515 7575 1990-09-28 2024-10-11 02:06:15.000 1990-09-28 2024-10-11 02:06:15 +7576 7576 7577 757.6 1515.2 7576 1990-09-29 2024-10-11 02:06:16.000 1990-09-29 2024-10-11 02:06:16 +7577 7577 7578 757.7 1515.4 7577 1990-09-30 2024-10-11 02:06:17.000 1990-09-30 2024-10-11 02:06:17 +7578 7578 7579 757.8 1515.6000000000001 7578 1990-10-01 2024-10-11 02:06:18.000 1990-10-01 2024-10-11 02:06:18 +7579 7579 7580 757.9 1515.8000000000002 7579 1990-10-02 2024-10-11 02:06:19.000 1990-10-02 2024-10-11 02:06:19 +7580 7580 7581 758 1516 7580 1990-10-03 2024-10-11 02:06:20.000 1990-10-03 2024-10-11 02:06:20 +7581 7581 7582 758.1 1516.2 7581 1990-10-04 2024-10-11 02:06:21.000 1990-10-04 2024-10-11 02:06:21 +7582 7582 7583 758.2 1516.4 7582 1990-10-05 2024-10-11 02:06:22.000 1990-10-05 2024-10-11 02:06:22 +7583 7583 7584 758.3 1516.6000000000001 7583 1990-10-06 2024-10-11 02:06:23.000 1990-10-06 2024-10-11 02:06:23 +7584 7584 7585 758.4 1516.8000000000002 7584 1990-10-07 2024-10-11 02:06:24.000 1990-10-07 2024-10-11 02:06:24 +7585 7585 7586 758.5 1517 7585 1990-10-08 2024-10-11 02:06:25.000 1990-10-08 2024-10-11 02:06:25 +7586 7586 7587 758.6 1517.2 7586 1990-10-09 2024-10-11 02:06:26.000 1990-10-09 2024-10-11 02:06:26 +7587 7587 7588 758.7 1517.4 7587 1990-10-10 2024-10-11 02:06:27.000 1990-10-10 2024-10-11 02:06:27 +7588 7588 7589 758.8 1517.6000000000001 7588 1990-10-11 2024-10-11 02:06:28.000 1990-10-11 2024-10-11 02:06:28 +7589 7589 7590 758.9 1517.8000000000002 7589 1990-10-12 2024-10-11 02:06:29.000 1990-10-12 2024-10-11 02:06:29 +7590 7590 7591 759 1518 7590 1990-10-13 2024-10-11 02:06:30.000 1990-10-13 2024-10-11 02:06:30 +7591 7591 7592 759.1 1518.2 7591 1990-10-14 2024-10-11 02:06:31.000 1990-10-14 2024-10-11 02:06:31 +7592 7592 7593 759.2 1518.4 7592 1990-10-15 2024-10-11 02:06:32.000 1990-10-15 2024-10-11 02:06:32 +7593 7593 7594 759.3 1518.6000000000001 7593 1990-10-16 2024-10-11 02:06:33.000 1990-10-16 2024-10-11 02:06:33 +7594 7594 7595 759.4 1518.8000000000002 7594 1990-10-17 2024-10-11 02:06:34.000 1990-10-17 2024-10-11 02:06:34 +7595 7595 7596 759.5 1519 7595 1990-10-18 2024-10-11 02:06:35.000 1990-10-18 2024-10-11 02:06:35 +7596 7596 7597 759.6 1519.2 7596 1990-10-19 2024-10-11 02:06:36.000 1990-10-19 2024-10-11 02:06:36 +7597 7597 7598 759.7 1519.4 7597 1990-10-20 2024-10-11 02:06:37.000 1990-10-20 2024-10-11 02:06:37 +7598 7598 7599 759.8 1519.6000000000001 7598 1990-10-21 2024-10-11 02:06:38.000 1990-10-21 2024-10-11 02:06:38 +7599 7599 7600 759.9 1519.8000000000002 7599 1990-10-22 2024-10-11 02:06:39.000 1990-10-22 2024-10-11 02:06:39 +7600 7600 7601 760 1520 7600 1990-10-23 2024-10-11 02:06:40.000 1990-10-23 2024-10-11 02:06:40 +7601 7601 7602 760.1 1520.2 7601 1990-10-24 2024-10-11 02:06:41.000 1990-10-24 2024-10-11 02:06:41 +7602 7602 7603 760.2 1520.4 7602 1990-10-25 2024-10-11 02:06:42.000 1990-10-25 2024-10-11 02:06:42 +7603 7603 7604 760.3 1520.6000000000001 7603 1990-10-26 2024-10-11 02:06:43.000 1990-10-26 2024-10-11 02:06:43 +7604 7604 7605 760.4 1520.8000000000002 7604 1990-10-27 2024-10-11 02:06:44.000 1990-10-27 2024-10-11 02:06:44 +7605 7605 7606 760.5 1521 7605 1990-10-28 2024-10-11 02:06:45.000 1990-10-28 2024-10-11 02:06:45 +7606 7606 7607 760.6 1521.2 7606 1990-10-29 2024-10-11 02:06:46.000 1990-10-29 2024-10-11 02:06:46 +7607 7607 7608 760.7 1521.4 7607 1990-10-30 2024-10-11 02:06:47.000 1990-10-30 2024-10-11 02:06:47 +7608 7608 7609 760.8 1521.6000000000001 7608 1990-10-31 2024-10-11 02:06:48.000 1990-10-31 2024-10-11 02:06:48 +7609 7609 7610 760.9 1521.8000000000002 7609 1990-11-01 2024-10-11 02:06:49.000 1990-11-01 2024-10-11 02:06:49 +7610 7610 7611 761 1522 7610 1990-11-02 2024-10-11 02:06:50.000 1990-11-02 2024-10-11 02:06:50 +7611 7611 7612 761.1 1522.2 7611 1990-11-03 2024-10-11 02:06:51.000 1990-11-03 2024-10-11 02:06:51 +7612 7612 7613 761.2 1522.4 7612 1990-11-04 2024-10-11 02:06:52.000 1990-11-04 2024-10-11 02:06:52 +7613 7613 7614 761.3 1522.6000000000001 7613 1990-11-05 2024-10-11 02:06:53.000 1990-11-05 2024-10-11 02:06:53 +7614 7614 7615 761.4 1522.8000000000002 7614 1990-11-06 2024-10-11 02:06:54.000 1990-11-06 2024-10-11 02:06:54 +7615 7615 7616 761.5 1523 7615 1990-11-07 2024-10-11 02:06:55.000 1990-11-07 2024-10-11 02:06:55 +7616 7616 7617 761.6 1523.2 7616 1990-11-08 2024-10-11 02:06:56.000 1990-11-08 2024-10-11 02:06:56 +7617 7617 7618 761.7 1523.4 7617 1990-11-09 2024-10-11 02:06:57.000 1990-11-09 2024-10-11 02:06:57 +7618 7618 7619 761.8 1523.6000000000001 7618 1990-11-10 2024-10-11 02:06:58.000 1990-11-10 2024-10-11 02:06:58 +7619 7619 7620 761.9 1523.8000000000002 7619 1990-11-11 2024-10-11 02:06:59.000 1990-11-11 2024-10-11 02:06:59 +7620 7620 7621 762 1524 7620 1990-11-12 2024-10-11 02:07:00.000 1990-11-12 2024-10-11 02:07:00 +7621 7621 7622 762.1 1524.2 7621 1990-11-13 2024-10-11 02:07:01.000 1990-11-13 2024-10-11 02:07:01 +7622 7622 7623 762.2 1524.4 7622 1990-11-14 2024-10-11 02:07:02.000 1990-11-14 2024-10-11 02:07:02 +7623 7623 7624 762.3 1524.6000000000001 7623 1990-11-15 2024-10-11 02:07:03.000 1990-11-15 2024-10-11 02:07:03 +7624 7624 7625 762.4 1524.8000000000002 7624 1990-11-16 2024-10-11 02:07:04.000 1990-11-16 2024-10-11 02:07:04 +7625 7625 7626 762.5 1525 7625 1990-11-17 2024-10-11 02:07:05.000 1990-11-17 2024-10-11 02:07:05 +7626 7626 7627 762.6 1525.2 7626 1990-11-18 2024-10-11 02:07:06.000 1990-11-18 2024-10-11 02:07:06 +7627 7627 7628 762.7 1525.4 7627 1990-11-19 2024-10-11 02:07:07.000 1990-11-19 2024-10-11 02:07:07 +7628 7628 7629 762.8 1525.6000000000001 7628 1990-11-20 2024-10-11 02:07:08.000 1990-11-20 2024-10-11 02:07:08 +7629 7629 7630 762.9 1525.8000000000002 7629 1990-11-21 2024-10-11 02:07:09.000 1990-11-21 2024-10-11 02:07:09 +7630 7630 7631 763 1526 7630 1990-11-22 2024-10-11 02:07:10.000 1990-11-22 2024-10-11 02:07:10 +7631 7631 7632 763.1 1526.2 7631 1990-11-23 2024-10-11 02:07:11.000 1990-11-23 2024-10-11 02:07:11 +7632 7632 7633 763.2 1526.4 7632 1990-11-24 2024-10-11 02:07:12.000 1990-11-24 2024-10-11 02:07:12 +7633 7633 7634 763.3 1526.6000000000001 7633 1990-11-25 2024-10-11 02:07:13.000 1990-11-25 2024-10-11 02:07:13 +7634 7634 7635 763.4 1526.8000000000002 7634 1990-11-26 2024-10-11 02:07:14.000 1990-11-26 2024-10-11 02:07:14 +7635 7635 7636 763.5 1527 7635 1990-11-27 2024-10-11 02:07:15.000 1990-11-27 2024-10-11 02:07:15 +7636 7636 7637 763.6 1527.2 7636 1990-11-28 2024-10-11 02:07:16.000 1990-11-28 2024-10-11 02:07:16 +7637 7637 7638 763.7 1527.4 7637 1990-11-29 2024-10-11 02:07:17.000 1990-11-29 2024-10-11 02:07:17 +7638 7638 7639 763.8 1527.6000000000001 7638 1990-11-30 2024-10-11 02:07:18.000 1990-11-30 2024-10-11 02:07:18 +7639 7639 7640 763.9 1527.8000000000002 7639 1990-12-01 2024-10-11 02:07:19.000 1990-12-01 2024-10-11 02:07:19 +7640 7640 7641 764 1528 7640 1990-12-02 2024-10-11 02:07:20.000 1990-12-02 2024-10-11 02:07:20 +7641 7641 7642 764.1 1528.2 7641 1990-12-03 2024-10-11 02:07:21.000 1990-12-03 2024-10-11 02:07:21 +7642 7642 7643 764.2 1528.4 7642 1990-12-04 2024-10-11 02:07:22.000 1990-12-04 2024-10-11 02:07:22 +7643 7643 7644 764.3 1528.6000000000001 7643 1990-12-05 2024-10-11 02:07:23.000 1990-12-05 2024-10-11 02:07:23 +7644 7644 7645 764.4 1528.8000000000002 7644 1990-12-06 2024-10-11 02:07:24.000 1990-12-06 2024-10-11 02:07:24 +7645 7645 7646 764.5 1529 7645 1990-12-07 2024-10-11 02:07:25.000 1990-12-07 2024-10-11 02:07:25 +7646 7646 7647 764.6 1529.2 7646 1990-12-08 2024-10-11 02:07:26.000 1990-12-08 2024-10-11 02:07:26 +7647 7647 7648 764.7 1529.4 7647 1990-12-09 2024-10-11 02:07:27.000 1990-12-09 2024-10-11 02:07:27 +7648 7648 7649 764.8 1529.6000000000001 7648 1990-12-10 2024-10-11 02:07:28.000 1990-12-10 2024-10-11 02:07:28 +7649 7649 7650 764.9 1529.8000000000002 7649 1990-12-11 2024-10-11 02:07:29.000 1990-12-11 2024-10-11 02:07:29 +7650 7650 7651 765 1530 7650 1990-12-12 2024-10-11 02:07:30.000 1990-12-12 2024-10-11 02:07:30 +7651 7651 7652 765.1 1530.2 7651 1990-12-13 2024-10-11 02:07:31.000 1990-12-13 2024-10-11 02:07:31 +7652 7652 7653 765.2 1530.4 7652 1990-12-14 2024-10-11 02:07:32.000 1990-12-14 2024-10-11 02:07:32 +7653 7653 7654 765.3 1530.6000000000001 7653 1990-12-15 2024-10-11 02:07:33.000 1990-12-15 2024-10-11 02:07:33 +7654 7654 7655 765.4 1530.8000000000002 7654 1990-12-16 2024-10-11 02:07:34.000 1990-12-16 2024-10-11 02:07:34 +7655 7655 7656 765.5 1531 7655 1990-12-17 2024-10-11 02:07:35.000 1990-12-17 2024-10-11 02:07:35 +7656 7656 7657 765.6 1531.2 7656 1990-12-18 2024-10-11 02:07:36.000 1990-12-18 2024-10-11 02:07:36 +7657 7657 7658 765.7 1531.4 7657 1990-12-19 2024-10-11 02:07:37.000 1990-12-19 2024-10-11 02:07:37 +7658 7658 7659 765.8 1531.6000000000001 7658 1990-12-20 2024-10-11 02:07:38.000 1990-12-20 2024-10-11 02:07:38 +7659 7659 7660 765.9 1531.8000000000002 7659 1990-12-21 2024-10-11 02:07:39.000 1990-12-21 2024-10-11 02:07:39 +7660 7660 7661 766 1532 7660 1990-12-22 2024-10-11 02:07:40.000 1990-12-22 2024-10-11 02:07:40 +7661 7661 7662 766.1 1532.2 7661 1990-12-23 2024-10-11 02:07:41.000 1990-12-23 2024-10-11 02:07:41 +7662 7662 7663 766.2 1532.4 7662 1990-12-24 2024-10-11 02:07:42.000 1990-12-24 2024-10-11 02:07:42 +7663 7663 7664 766.3 1532.6000000000001 7663 1990-12-25 2024-10-11 02:07:43.000 1990-12-25 2024-10-11 02:07:43 +7664 7664 7665 766.4 1532.8000000000002 7664 1990-12-26 2024-10-11 02:07:44.000 1990-12-26 2024-10-11 02:07:44 +7665 7665 7666 766.5 1533 7665 1990-12-27 2024-10-11 02:07:45.000 1990-12-27 2024-10-11 02:07:45 +7666 7666 7667 766.6 1533.2 7666 1990-12-28 2024-10-11 02:07:46.000 1990-12-28 2024-10-11 02:07:46 +7667 7667 7668 766.7 1533.4 7667 1990-12-29 2024-10-11 02:07:47.000 1990-12-29 2024-10-11 02:07:47 +7668 7668 7669 766.8 1533.6000000000001 7668 1990-12-30 2024-10-11 02:07:48.000 1990-12-30 2024-10-11 02:07:48 +7669 7669 7670 766.9 1533.8000000000002 7669 1990-12-31 2024-10-11 02:07:49.000 1990-12-31 2024-10-11 02:07:49 +7670 7670 7671 767 1534 7670 1991-01-01 2024-10-11 02:07:50.000 1991-01-01 2024-10-11 02:07:50 +7671 7671 7672 767.1 1534.2 7671 1991-01-02 2024-10-11 02:07:51.000 1991-01-02 2024-10-11 02:07:51 +7672 7672 7673 767.2 1534.4 7672 1991-01-03 2024-10-11 02:07:52.000 1991-01-03 2024-10-11 02:07:52 +7673 7673 7674 767.3 1534.6000000000001 7673 1991-01-04 2024-10-11 02:07:53.000 1991-01-04 2024-10-11 02:07:53 +7674 7674 7675 767.4 1534.8000000000002 7674 1991-01-05 2024-10-11 02:07:54.000 1991-01-05 2024-10-11 02:07:54 +7675 7675 7676 767.5 1535 7675 1991-01-06 2024-10-11 02:07:55.000 1991-01-06 2024-10-11 02:07:55 +7676 7676 7677 767.6 1535.2 7676 1991-01-07 2024-10-11 02:07:56.000 1991-01-07 2024-10-11 02:07:56 +7677 7677 7678 767.7 1535.4 7677 1991-01-08 2024-10-11 02:07:57.000 1991-01-08 2024-10-11 02:07:57 +7678 7678 7679 767.8 1535.6000000000001 7678 1991-01-09 2024-10-11 02:07:58.000 1991-01-09 2024-10-11 02:07:58 +7679 7679 7680 767.9 1535.8000000000002 7679 1991-01-10 2024-10-11 02:07:59.000 1991-01-10 2024-10-11 02:07:59 +7680 7680 7681 768 1536 7680 1991-01-11 2024-10-11 02:08:00.000 1991-01-11 2024-10-11 02:08:00 +7681 7681 7682 768.1 1536.2 7681 1991-01-12 2024-10-11 02:08:01.000 1991-01-12 2024-10-11 02:08:01 +7682 7682 7683 768.2 1536.4 7682 1991-01-13 2024-10-11 02:08:02.000 1991-01-13 2024-10-11 02:08:02 +7683 7683 7684 768.3 1536.6000000000001 7683 1991-01-14 2024-10-11 02:08:03.000 1991-01-14 2024-10-11 02:08:03 +7684 7684 7685 768.4 1536.8000000000002 7684 1991-01-15 2024-10-11 02:08:04.000 1991-01-15 2024-10-11 02:08:04 +7685 7685 7686 768.5 1537 7685 1991-01-16 2024-10-11 02:08:05.000 1991-01-16 2024-10-11 02:08:05 +7686 7686 7687 768.6 1537.2 7686 1991-01-17 2024-10-11 02:08:06.000 1991-01-17 2024-10-11 02:08:06 +7687 7687 7688 768.7 1537.4 7687 1991-01-18 2024-10-11 02:08:07.000 1991-01-18 2024-10-11 02:08:07 +7688 7688 7689 768.8 1537.6000000000001 7688 1991-01-19 2024-10-11 02:08:08.000 1991-01-19 2024-10-11 02:08:08 +7689 7689 7690 768.9 1537.8000000000002 7689 1991-01-20 2024-10-11 02:08:09.000 1991-01-20 2024-10-11 02:08:09 +7690 7690 7691 769 1538 7690 1991-01-21 2024-10-11 02:08:10.000 1991-01-21 2024-10-11 02:08:10 +7691 7691 7692 769.1 1538.2 7691 1991-01-22 2024-10-11 02:08:11.000 1991-01-22 2024-10-11 02:08:11 +7692 7692 7693 769.2 1538.4 7692 1991-01-23 2024-10-11 02:08:12.000 1991-01-23 2024-10-11 02:08:12 +7693 7693 7694 769.3 1538.6000000000001 7693 1991-01-24 2024-10-11 02:08:13.000 1991-01-24 2024-10-11 02:08:13 +7694 7694 7695 769.4 1538.8000000000002 7694 1991-01-25 2024-10-11 02:08:14.000 1991-01-25 2024-10-11 02:08:14 +7695 7695 7696 769.5 1539 7695 1991-01-26 2024-10-11 02:08:15.000 1991-01-26 2024-10-11 02:08:15 +7696 7696 7697 769.6 1539.2 7696 1991-01-27 2024-10-11 02:08:16.000 1991-01-27 2024-10-11 02:08:16 +7697 7697 7698 769.7 1539.4 7697 1991-01-28 2024-10-11 02:08:17.000 1991-01-28 2024-10-11 02:08:17 +7698 7698 7699 769.8 1539.6000000000001 7698 1991-01-29 2024-10-11 02:08:18.000 1991-01-29 2024-10-11 02:08:18 +7699 7699 7700 769.9 1539.8000000000002 7699 1991-01-30 2024-10-11 02:08:19.000 1991-01-30 2024-10-11 02:08:19 +7700 7700 7701 770 1540 7700 1991-01-31 2024-10-11 02:08:20.000 1991-01-31 2024-10-11 02:08:20 +7701 7701 7702 770.1 1540.2 7701 1991-02-01 2024-10-11 02:08:21.000 1991-02-01 2024-10-11 02:08:21 +7702 7702 7703 770.2 1540.4 7702 1991-02-02 2024-10-11 02:08:22.000 1991-02-02 2024-10-11 02:08:22 +7703 7703 7704 770.3 1540.6000000000001 7703 1991-02-03 2024-10-11 02:08:23.000 1991-02-03 2024-10-11 02:08:23 +7704 7704 7705 770.4 1540.8000000000002 7704 1991-02-04 2024-10-11 02:08:24.000 1991-02-04 2024-10-11 02:08:24 +7705 7705 7706 770.5 1541 7705 1991-02-05 2024-10-11 02:08:25.000 1991-02-05 2024-10-11 02:08:25 +7706 7706 7707 770.6 1541.2 7706 1991-02-06 2024-10-11 02:08:26.000 1991-02-06 2024-10-11 02:08:26 +7707 7707 7708 770.7 1541.4 7707 1991-02-07 2024-10-11 02:08:27.000 1991-02-07 2024-10-11 02:08:27 +7708 7708 7709 770.8 1541.6000000000001 7708 1991-02-08 2024-10-11 02:08:28.000 1991-02-08 2024-10-11 02:08:28 +7709 7709 7710 770.9 1541.8000000000002 7709 1991-02-09 2024-10-11 02:08:29.000 1991-02-09 2024-10-11 02:08:29 +7710 7710 7711 771 1542 7710 1991-02-10 2024-10-11 02:08:30.000 1991-02-10 2024-10-11 02:08:30 +7711 7711 7712 771.1 1542.2 7711 1991-02-11 2024-10-11 02:08:31.000 1991-02-11 2024-10-11 02:08:31 +7712 7712 7713 771.2 1542.4 7712 1991-02-12 2024-10-11 02:08:32.000 1991-02-12 2024-10-11 02:08:32 +7713 7713 7714 771.3 1542.6000000000001 7713 1991-02-13 2024-10-11 02:08:33.000 1991-02-13 2024-10-11 02:08:33 +7714 7714 7715 771.4 1542.8000000000002 7714 1991-02-14 2024-10-11 02:08:34.000 1991-02-14 2024-10-11 02:08:34 +7715 7715 7716 771.5 1543 7715 1991-02-15 2024-10-11 02:08:35.000 1991-02-15 2024-10-11 02:08:35 +7716 7716 7717 771.6 1543.2 7716 1991-02-16 2024-10-11 02:08:36.000 1991-02-16 2024-10-11 02:08:36 +7717 7717 7718 771.7 1543.4 7717 1991-02-17 2024-10-11 02:08:37.000 1991-02-17 2024-10-11 02:08:37 +7718 7718 7719 771.8 1543.6000000000001 7718 1991-02-18 2024-10-11 02:08:38.000 1991-02-18 2024-10-11 02:08:38 +7719 7719 7720 771.9 1543.8000000000002 7719 1991-02-19 2024-10-11 02:08:39.000 1991-02-19 2024-10-11 02:08:39 +7720 7720 7721 772 1544 7720 1991-02-20 2024-10-11 02:08:40.000 1991-02-20 2024-10-11 02:08:40 +7721 7721 7722 772.1 1544.2 7721 1991-02-21 2024-10-11 02:08:41.000 1991-02-21 2024-10-11 02:08:41 +7722 7722 7723 772.2 1544.4 7722 1991-02-22 2024-10-11 02:08:42.000 1991-02-22 2024-10-11 02:08:42 +7723 7723 7724 772.3 1544.6000000000001 7723 1991-02-23 2024-10-11 02:08:43.000 1991-02-23 2024-10-11 02:08:43 +7724 7724 7725 772.4 1544.8000000000002 7724 1991-02-24 2024-10-11 02:08:44.000 1991-02-24 2024-10-11 02:08:44 +7725 7725 7726 772.5 1545 7725 1991-02-25 2024-10-11 02:08:45.000 1991-02-25 2024-10-11 02:08:45 +7726 7726 7727 772.6 1545.2 7726 1991-02-26 2024-10-11 02:08:46.000 1991-02-26 2024-10-11 02:08:46 +7727 7727 7728 772.7 1545.4 7727 1991-02-27 2024-10-11 02:08:47.000 1991-02-27 2024-10-11 02:08:47 +7728 7728 7729 772.8 1545.6000000000001 7728 1991-02-28 2024-10-11 02:08:48.000 1991-02-28 2024-10-11 02:08:48 +7729 7729 7730 772.9 1545.8000000000002 7729 1991-03-01 2024-10-11 02:08:49.000 1991-03-01 2024-10-11 02:08:49 +7730 7730 7731 773 1546 7730 1991-03-02 2024-10-11 02:08:50.000 1991-03-02 2024-10-11 02:08:50 +7731 7731 7732 773.1 1546.2 7731 1991-03-03 2024-10-11 02:08:51.000 1991-03-03 2024-10-11 02:08:51 +7732 7732 7733 773.2 1546.4 7732 1991-03-04 2024-10-11 02:08:52.000 1991-03-04 2024-10-11 02:08:52 +7733 7733 7734 773.3 1546.6000000000001 7733 1991-03-05 2024-10-11 02:08:53.000 1991-03-05 2024-10-11 02:08:53 +7734 7734 7735 773.4 1546.8000000000002 7734 1991-03-06 2024-10-11 02:08:54.000 1991-03-06 2024-10-11 02:08:54 +7735 7735 7736 773.5 1547 7735 1991-03-07 2024-10-11 02:08:55.000 1991-03-07 2024-10-11 02:08:55 +7736 7736 7737 773.6 1547.2 7736 1991-03-08 2024-10-11 02:08:56.000 1991-03-08 2024-10-11 02:08:56 +7737 7737 7738 773.7 1547.4 7737 1991-03-09 2024-10-11 02:08:57.000 1991-03-09 2024-10-11 02:08:57 +7738 7738 7739 773.8 1547.6000000000001 7738 1991-03-10 2024-10-11 02:08:58.000 1991-03-10 2024-10-11 02:08:58 +7739 7739 7740 773.9 1547.8000000000002 7739 1991-03-11 2024-10-11 02:08:59.000 1991-03-11 2024-10-11 02:08:59 +7740 7740 7741 774 1548 7740 1991-03-12 2024-10-11 02:09:00.000 1991-03-12 2024-10-11 02:09:00 +7741 7741 7742 774.1 1548.2 7741 1991-03-13 2024-10-11 02:09:01.000 1991-03-13 2024-10-11 02:09:01 +7742 7742 7743 774.2 1548.4 7742 1991-03-14 2024-10-11 02:09:02.000 1991-03-14 2024-10-11 02:09:02 +7743 7743 7744 774.3 1548.6000000000001 7743 1991-03-15 2024-10-11 02:09:03.000 1991-03-15 2024-10-11 02:09:03 +7744 7744 7745 774.4 1548.8000000000002 7744 1991-03-16 2024-10-11 02:09:04.000 1991-03-16 2024-10-11 02:09:04 +7745 7745 7746 774.5 1549 7745 1991-03-17 2024-10-11 02:09:05.000 1991-03-17 2024-10-11 02:09:05 +7746 7746 7747 774.6 1549.2 7746 1991-03-18 2024-10-11 02:09:06.000 1991-03-18 2024-10-11 02:09:06 +7747 7747 7748 774.7 1549.4 7747 1991-03-19 2024-10-11 02:09:07.000 1991-03-19 2024-10-11 02:09:07 +7748 7748 7749 774.8 1549.6000000000001 7748 1991-03-20 2024-10-11 02:09:08.000 1991-03-20 2024-10-11 02:09:08 +7749 7749 7750 774.9 1549.8000000000002 7749 1991-03-21 2024-10-11 02:09:09.000 1991-03-21 2024-10-11 02:09:09 +7750 7750 7751 775 1550 7750 1991-03-22 2024-10-11 02:09:10.000 1991-03-22 2024-10-11 02:09:10 +7751 7751 7752 775.1 1550.2 7751 1991-03-23 2024-10-11 02:09:11.000 1991-03-23 2024-10-11 02:09:11 +7752 7752 7753 775.2 1550.4 7752 1991-03-24 2024-10-11 02:09:12.000 1991-03-24 2024-10-11 02:09:12 +7753 7753 7754 775.3 1550.6000000000001 7753 1991-03-25 2024-10-11 02:09:13.000 1991-03-25 2024-10-11 02:09:13 +7754 7754 7755 775.4 1550.8000000000002 7754 1991-03-26 2024-10-11 02:09:14.000 1991-03-26 2024-10-11 02:09:14 +7755 7755 7756 775.5 1551 7755 1991-03-27 2024-10-11 02:09:15.000 1991-03-27 2024-10-11 02:09:15 +7756 7756 7757 775.6 1551.2 7756 1991-03-28 2024-10-11 02:09:16.000 1991-03-28 2024-10-11 02:09:16 +7757 7757 7758 775.7 1551.4 7757 1991-03-29 2024-10-11 02:09:17.000 1991-03-29 2024-10-11 02:09:17 +7758 7758 7759 775.8 1551.6000000000001 7758 1991-03-30 2024-10-11 02:09:18.000 1991-03-30 2024-10-11 02:09:18 +7759 7759 7760 775.9 1551.8000000000002 7759 1991-03-31 2024-10-11 02:09:19.000 1991-03-31 2024-10-11 02:09:19 +7760 7760 7761 776 1552 7760 1991-04-01 2024-10-11 02:09:20.000 1991-04-01 2024-10-11 02:09:20 +7761 7761 7762 776.1 1552.2 7761 1991-04-02 2024-10-11 02:09:21.000 1991-04-02 2024-10-11 02:09:21 +7762 7762 7763 776.2 1552.4 7762 1991-04-03 2024-10-11 02:09:22.000 1991-04-03 2024-10-11 02:09:22 +7763 7763 7764 776.3 1552.6000000000001 7763 1991-04-04 2024-10-11 02:09:23.000 1991-04-04 2024-10-11 02:09:23 +7764 7764 7765 776.4 1552.8000000000002 7764 1991-04-05 2024-10-11 02:09:24.000 1991-04-05 2024-10-11 02:09:24 +7765 7765 7766 776.5 1553 7765 1991-04-06 2024-10-11 02:09:25.000 1991-04-06 2024-10-11 02:09:25 +7766 7766 7767 776.6 1553.2 7766 1991-04-07 2024-10-11 02:09:26.000 1991-04-07 2024-10-11 02:09:26 +7767 7767 7768 776.7 1553.4 7767 1991-04-08 2024-10-11 02:09:27.000 1991-04-08 2024-10-11 02:09:27 +7768 7768 7769 776.8 1553.6000000000001 7768 1991-04-09 2024-10-11 02:09:28.000 1991-04-09 2024-10-11 02:09:28 +7769 7769 7770 776.9 1553.8000000000002 7769 1991-04-10 2024-10-11 02:09:29.000 1991-04-10 2024-10-11 02:09:29 +7770 7770 7771 777 1554 7770 1991-04-11 2024-10-11 02:09:30.000 1991-04-11 2024-10-11 02:09:30 +7771 7771 7772 777.1 1554.2 7771 1991-04-12 2024-10-11 02:09:31.000 1991-04-12 2024-10-11 02:09:31 +7772 7772 7773 777.2 1554.4 7772 1991-04-13 2024-10-11 02:09:32.000 1991-04-13 2024-10-11 02:09:32 +7773 7773 7774 777.3 1554.6000000000001 7773 1991-04-14 2024-10-11 02:09:33.000 1991-04-14 2024-10-11 02:09:33 +7774 7774 7775 777.4 1554.8000000000002 7774 1991-04-15 2024-10-11 02:09:34.000 1991-04-15 2024-10-11 02:09:34 +7775 7775 7776 777.5 1555 7775 1991-04-16 2024-10-11 02:09:35.000 1991-04-16 2024-10-11 02:09:35 +7776 7776 7777 777.6 1555.2 7776 1991-04-17 2024-10-11 02:09:36.000 1991-04-17 2024-10-11 02:09:36 +7777 7777 7778 777.7 1555.4 7777 1991-04-18 2024-10-11 02:09:37.000 1991-04-18 2024-10-11 02:09:37 +7778 7778 7779 777.8 1555.6000000000001 7778 1991-04-19 2024-10-11 02:09:38.000 1991-04-19 2024-10-11 02:09:38 +7779 7779 7780 777.9 1555.8000000000002 7779 1991-04-20 2024-10-11 02:09:39.000 1991-04-20 2024-10-11 02:09:39 +7780 7780 7781 778 1556 7780 1991-04-21 2024-10-11 02:09:40.000 1991-04-21 2024-10-11 02:09:40 +7781 7781 7782 778.1 1556.2 7781 1991-04-22 2024-10-11 02:09:41.000 1991-04-22 2024-10-11 02:09:41 +7782 7782 7783 778.2 1556.4 7782 1991-04-23 2024-10-11 02:09:42.000 1991-04-23 2024-10-11 02:09:42 +7783 7783 7784 778.3 1556.6000000000001 7783 1991-04-24 2024-10-11 02:09:43.000 1991-04-24 2024-10-11 02:09:43 +7784 7784 7785 778.4 1556.8000000000002 7784 1991-04-25 2024-10-11 02:09:44.000 1991-04-25 2024-10-11 02:09:44 +7785 7785 7786 778.5 1557 7785 1991-04-26 2024-10-11 02:09:45.000 1991-04-26 2024-10-11 02:09:45 +7786 7786 7787 778.6 1557.2 7786 1991-04-27 2024-10-11 02:09:46.000 1991-04-27 2024-10-11 02:09:46 +7787 7787 7788 778.7 1557.4 7787 1991-04-28 2024-10-11 02:09:47.000 1991-04-28 2024-10-11 02:09:47 +7788 7788 7789 778.8 1557.6000000000001 7788 1991-04-29 2024-10-11 02:09:48.000 1991-04-29 2024-10-11 02:09:48 +7789 7789 7790 778.9 1557.8000000000002 7789 1991-04-30 2024-10-11 02:09:49.000 1991-04-30 2024-10-11 02:09:49 +7790 7790 7791 779 1558 7790 1991-05-01 2024-10-11 02:09:50.000 1991-05-01 2024-10-11 02:09:50 +7791 7791 7792 779.1 1558.2 7791 1991-05-02 2024-10-11 02:09:51.000 1991-05-02 2024-10-11 02:09:51 +7792 7792 7793 779.2 1558.4 7792 1991-05-03 2024-10-11 02:09:52.000 1991-05-03 2024-10-11 02:09:52 +7793 7793 7794 779.3 1558.6000000000001 7793 1991-05-04 2024-10-11 02:09:53.000 1991-05-04 2024-10-11 02:09:53 +7794 7794 7795 779.4 1558.8000000000002 7794 1991-05-05 2024-10-11 02:09:54.000 1991-05-05 2024-10-11 02:09:54 +7795 7795 7796 779.5 1559 7795 1991-05-06 2024-10-11 02:09:55.000 1991-05-06 2024-10-11 02:09:55 +7796 7796 7797 779.6 1559.2 7796 1991-05-07 2024-10-11 02:09:56.000 1991-05-07 2024-10-11 02:09:56 +7797 7797 7798 779.7 1559.4 7797 1991-05-08 2024-10-11 02:09:57.000 1991-05-08 2024-10-11 02:09:57 +7798 7798 7799 779.8 1559.6000000000001 7798 1991-05-09 2024-10-11 02:09:58.000 1991-05-09 2024-10-11 02:09:58 +7799 7799 7800 779.9 1559.8000000000002 7799 1991-05-10 2024-10-11 02:09:59.000 1991-05-10 2024-10-11 02:09:59 +7800 7800 7801 780 1560 7800 1991-05-11 2024-10-11 02:10:00.000 1991-05-11 2024-10-11 02:10:00 +7801 7801 7802 780.1 1560.2 7801 1991-05-12 2024-10-11 02:10:01.000 1991-05-12 2024-10-11 02:10:01 +7802 7802 7803 780.2 1560.4 7802 1991-05-13 2024-10-11 02:10:02.000 1991-05-13 2024-10-11 02:10:02 +7803 7803 7804 780.3 1560.6000000000001 7803 1991-05-14 2024-10-11 02:10:03.000 1991-05-14 2024-10-11 02:10:03 +7804 7804 7805 780.4 1560.8000000000002 7804 1991-05-15 2024-10-11 02:10:04.000 1991-05-15 2024-10-11 02:10:04 +7805 7805 7806 780.5 1561 7805 1991-05-16 2024-10-11 02:10:05.000 1991-05-16 2024-10-11 02:10:05 +7806 7806 7807 780.6 1561.2 7806 1991-05-17 2024-10-11 02:10:06.000 1991-05-17 2024-10-11 02:10:06 +7807 7807 7808 780.7 1561.4 7807 1991-05-18 2024-10-11 02:10:07.000 1991-05-18 2024-10-11 02:10:07 +7808 7808 7809 780.8 1561.6000000000001 7808 1991-05-19 2024-10-11 02:10:08.000 1991-05-19 2024-10-11 02:10:08 +7809 7809 7810 780.9 1561.8000000000002 7809 1991-05-20 2024-10-11 02:10:09.000 1991-05-20 2024-10-11 02:10:09 +7810 7810 7811 781 1562 7810 1991-05-21 2024-10-11 02:10:10.000 1991-05-21 2024-10-11 02:10:10 +7811 7811 7812 781.1 1562.2 7811 1991-05-22 2024-10-11 02:10:11.000 1991-05-22 2024-10-11 02:10:11 +7812 7812 7813 781.2 1562.4 7812 1991-05-23 2024-10-11 02:10:12.000 1991-05-23 2024-10-11 02:10:12 +7813 7813 7814 781.3 1562.6000000000001 7813 1991-05-24 2024-10-11 02:10:13.000 1991-05-24 2024-10-11 02:10:13 +7814 7814 7815 781.4 1562.8000000000002 7814 1991-05-25 2024-10-11 02:10:14.000 1991-05-25 2024-10-11 02:10:14 +7815 7815 7816 781.5 1563 7815 1991-05-26 2024-10-11 02:10:15.000 1991-05-26 2024-10-11 02:10:15 +7816 7816 7817 781.6 1563.2 7816 1991-05-27 2024-10-11 02:10:16.000 1991-05-27 2024-10-11 02:10:16 +7817 7817 7818 781.7 1563.4 7817 1991-05-28 2024-10-11 02:10:17.000 1991-05-28 2024-10-11 02:10:17 +7818 7818 7819 781.8 1563.6000000000001 7818 1991-05-29 2024-10-11 02:10:18.000 1991-05-29 2024-10-11 02:10:18 +7819 7819 7820 781.9 1563.8000000000002 7819 1991-05-30 2024-10-11 02:10:19.000 1991-05-30 2024-10-11 02:10:19 +7820 7820 7821 782 1564 7820 1991-05-31 2024-10-11 02:10:20.000 1991-05-31 2024-10-11 02:10:20 +7821 7821 7822 782.1 1564.2 7821 1991-06-01 2024-10-11 02:10:21.000 1991-06-01 2024-10-11 02:10:21 +7822 7822 7823 782.2 1564.4 7822 1991-06-02 2024-10-11 02:10:22.000 1991-06-02 2024-10-11 02:10:22 +7823 7823 7824 782.3 1564.6000000000001 7823 1991-06-03 2024-10-11 02:10:23.000 1991-06-03 2024-10-11 02:10:23 +7824 7824 7825 782.4 1564.8000000000002 7824 1991-06-04 2024-10-11 02:10:24.000 1991-06-04 2024-10-11 02:10:24 +7825 7825 7826 782.5 1565 7825 1991-06-05 2024-10-11 02:10:25.000 1991-06-05 2024-10-11 02:10:25 +7826 7826 7827 782.6 1565.2 7826 1991-06-06 2024-10-11 02:10:26.000 1991-06-06 2024-10-11 02:10:26 +7827 7827 7828 782.7 1565.4 7827 1991-06-07 2024-10-11 02:10:27.000 1991-06-07 2024-10-11 02:10:27 +7828 7828 7829 782.8 1565.6000000000001 7828 1991-06-08 2024-10-11 02:10:28.000 1991-06-08 2024-10-11 02:10:28 +7829 7829 7830 782.9 1565.8000000000002 7829 1991-06-09 2024-10-11 02:10:29.000 1991-06-09 2024-10-11 02:10:29 +7830 7830 7831 783 1566 7830 1991-06-10 2024-10-11 02:10:30.000 1991-06-10 2024-10-11 02:10:30 +7831 7831 7832 783.1 1566.2 7831 1991-06-11 2024-10-11 02:10:31.000 1991-06-11 2024-10-11 02:10:31 +7832 7832 7833 783.2 1566.4 7832 1991-06-12 2024-10-11 02:10:32.000 1991-06-12 2024-10-11 02:10:32 +7833 7833 7834 783.3 1566.6000000000001 7833 1991-06-13 2024-10-11 02:10:33.000 1991-06-13 2024-10-11 02:10:33 +7834 7834 7835 783.4 1566.8000000000002 7834 1991-06-14 2024-10-11 02:10:34.000 1991-06-14 2024-10-11 02:10:34 +7835 7835 7836 783.5 1567 7835 1991-06-15 2024-10-11 02:10:35.000 1991-06-15 2024-10-11 02:10:35 +7836 7836 7837 783.6 1567.2 7836 1991-06-16 2024-10-11 02:10:36.000 1991-06-16 2024-10-11 02:10:36 +7837 7837 7838 783.7 1567.4 7837 1991-06-17 2024-10-11 02:10:37.000 1991-06-17 2024-10-11 02:10:37 +7838 7838 7839 783.8 1567.6000000000001 7838 1991-06-18 2024-10-11 02:10:38.000 1991-06-18 2024-10-11 02:10:38 +7839 7839 7840 783.9 1567.8000000000002 7839 1991-06-19 2024-10-11 02:10:39.000 1991-06-19 2024-10-11 02:10:39 +7840 7840 7841 784 1568 7840 1991-06-20 2024-10-11 02:10:40.000 1991-06-20 2024-10-11 02:10:40 +7841 7841 7842 784.1 1568.2 7841 1991-06-21 2024-10-11 02:10:41.000 1991-06-21 2024-10-11 02:10:41 +7842 7842 7843 784.2 1568.4 7842 1991-06-22 2024-10-11 02:10:42.000 1991-06-22 2024-10-11 02:10:42 +7843 7843 7844 784.3 1568.6000000000001 7843 1991-06-23 2024-10-11 02:10:43.000 1991-06-23 2024-10-11 02:10:43 +7844 7844 7845 784.4 1568.8000000000002 7844 1991-06-24 2024-10-11 02:10:44.000 1991-06-24 2024-10-11 02:10:44 +7845 7845 7846 784.5 1569 7845 1991-06-25 2024-10-11 02:10:45.000 1991-06-25 2024-10-11 02:10:45 +7846 7846 7847 784.6 1569.2 7846 1991-06-26 2024-10-11 02:10:46.000 1991-06-26 2024-10-11 02:10:46 +7847 7847 7848 784.7 1569.4 7847 1991-06-27 2024-10-11 02:10:47.000 1991-06-27 2024-10-11 02:10:47 +7848 7848 7849 784.8 1569.6000000000001 7848 1991-06-28 2024-10-11 02:10:48.000 1991-06-28 2024-10-11 02:10:48 +7849 7849 7850 784.9 1569.8000000000002 7849 1991-06-29 2024-10-11 02:10:49.000 1991-06-29 2024-10-11 02:10:49 +7850 7850 7851 785 1570 7850 1991-06-30 2024-10-11 02:10:50.000 1991-06-30 2024-10-11 02:10:50 +7851 7851 7852 785.1 1570.2 7851 1991-07-01 2024-10-11 02:10:51.000 1991-07-01 2024-10-11 02:10:51 +7852 7852 7853 785.2 1570.4 7852 1991-07-02 2024-10-11 02:10:52.000 1991-07-02 2024-10-11 02:10:52 +7853 7853 7854 785.3 1570.6000000000001 7853 1991-07-03 2024-10-11 02:10:53.000 1991-07-03 2024-10-11 02:10:53 +7854 7854 7855 785.4 1570.8000000000002 7854 1991-07-04 2024-10-11 02:10:54.000 1991-07-04 2024-10-11 02:10:54 +7855 7855 7856 785.5 1571 7855 1991-07-05 2024-10-11 02:10:55.000 1991-07-05 2024-10-11 02:10:55 +7856 7856 7857 785.6 1571.2 7856 1991-07-06 2024-10-11 02:10:56.000 1991-07-06 2024-10-11 02:10:56 +7857 7857 7858 785.7 1571.4 7857 1991-07-07 2024-10-11 02:10:57.000 1991-07-07 2024-10-11 02:10:57 +7858 7858 7859 785.8 1571.6000000000001 7858 1991-07-08 2024-10-11 02:10:58.000 1991-07-08 2024-10-11 02:10:58 +7859 7859 7860 785.9 1571.8000000000002 7859 1991-07-09 2024-10-11 02:10:59.000 1991-07-09 2024-10-11 02:10:59 +7860 7860 7861 786 1572 7860 1991-07-10 2024-10-11 02:11:00.000 1991-07-10 2024-10-11 02:11:00 +7861 7861 7862 786.1 1572.2 7861 1991-07-11 2024-10-11 02:11:01.000 1991-07-11 2024-10-11 02:11:01 +7862 7862 7863 786.2 1572.4 7862 1991-07-12 2024-10-11 02:11:02.000 1991-07-12 2024-10-11 02:11:02 +7863 7863 7864 786.3 1572.6000000000001 7863 1991-07-13 2024-10-11 02:11:03.000 1991-07-13 2024-10-11 02:11:03 +7864 7864 7865 786.4 1572.8000000000002 7864 1991-07-14 2024-10-11 02:11:04.000 1991-07-14 2024-10-11 02:11:04 +7865 7865 7866 786.5 1573 7865 1991-07-15 2024-10-11 02:11:05.000 1991-07-15 2024-10-11 02:11:05 +7866 7866 7867 786.6 1573.2 7866 1991-07-16 2024-10-11 02:11:06.000 1991-07-16 2024-10-11 02:11:06 +7867 7867 7868 786.7 1573.4 7867 1991-07-17 2024-10-11 02:11:07.000 1991-07-17 2024-10-11 02:11:07 +7868 7868 7869 786.8 1573.6000000000001 7868 1991-07-18 2024-10-11 02:11:08.000 1991-07-18 2024-10-11 02:11:08 +7869 7869 7870 786.9 1573.8000000000002 7869 1991-07-19 2024-10-11 02:11:09.000 1991-07-19 2024-10-11 02:11:09 +7870 7870 7871 787 1574 7870 1991-07-20 2024-10-11 02:11:10.000 1991-07-20 2024-10-11 02:11:10 +7871 7871 7872 787.1 1574.2 7871 1991-07-21 2024-10-11 02:11:11.000 1991-07-21 2024-10-11 02:11:11 +7872 7872 7873 787.2 1574.4 7872 1991-07-22 2024-10-11 02:11:12.000 1991-07-22 2024-10-11 02:11:12 +7873 7873 7874 787.3 1574.6000000000001 7873 1991-07-23 2024-10-11 02:11:13.000 1991-07-23 2024-10-11 02:11:13 +7874 7874 7875 787.4 1574.8000000000002 7874 1991-07-24 2024-10-11 02:11:14.000 1991-07-24 2024-10-11 02:11:14 +7875 7875 7876 787.5 1575 7875 1991-07-25 2024-10-11 02:11:15.000 1991-07-25 2024-10-11 02:11:15 +7876 7876 7877 787.6 1575.2 7876 1991-07-26 2024-10-11 02:11:16.000 1991-07-26 2024-10-11 02:11:16 +7877 7877 7878 787.7 1575.4 7877 1991-07-27 2024-10-11 02:11:17.000 1991-07-27 2024-10-11 02:11:17 +7878 7878 7879 787.8 1575.6000000000001 7878 1991-07-28 2024-10-11 02:11:18.000 1991-07-28 2024-10-11 02:11:18 +7879 7879 7880 787.9 1575.8000000000002 7879 1991-07-29 2024-10-11 02:11:19.000 1991-07-29 2024-10-11 02:11:19 +7880 7880 7881 788 1576 7880 1991-07-30 2024-10-11 02:11:20.000 1991-07-30 2024-10-11 02:11:20 +7881 7881 7882 788.1 1576.2 7881 1991-07-31 2024-10-11 02:11:21.000 1991-07-31 2024-10-11 02:11:21 +7882 7882 7883 788.2 1576.4 7882 1991-08-01 2024-10-11 02:11:22.000 1991-08-01 2024-10-11 02:11:22 +7883 7883 7884 788.3 1576.6000000000001 7883 1991-08-02 2024-10-11 02:11:23.000 1991-08-02 2024-10-11 02:11:23 +7884 7884 7885 788.4 1576.8000000000002 7884 1991-08-03 2024-10-11 02:11:24.000 1991-08-03 2024-10-11 02:11:24 +7885 7885 7886 788.5 1577 7885 1991-08-04 2024-10-11 02:11:25.000 1991-08-04 2024-10-11 02:11:25 +7886 7886 7887 788.6 1577.2 7886 1991-08-05 2024-10-11 02:11:26.000 1991-08-05 2024-10-11 02:11:26 +7887 7887 7888 788.7 1577.4 7887 1991-08-06 2024-10-11 02:11:27.000 1991-08-06 2024-10-11 02:11:27 +7888 7888 7889 788.8 1577.6000000000001 7888 1991-08-07 2024-10-11 02:11:28.000 1991-08-07 2024-10-11 02:11:28 +7889 7889 7890 788.9 1577.8000000000002 7889 1991-08-08 2024-10-11 02:11:29.000 1991-08-08 2024-10-11 02:11:29 +7890 7890 7891 789 1578 7890 1991-08-09 2024-10-11 02:11:30.000 1991-08-09 2024-10-11 02:11:30 +7891 7891 7892 789.1 1578.2 7891 1991-08-10 2024-10-11 02:11:31.000 1991-08-10 2024-10-11 02:11:31 +7892 7892 7893 789.2 1578.4 7892 1991-08-11 2024-10-11 02:11:32.000 1991-08-11 2024-10-11 02:11:32 +7893 7893 7894 789.3 1578.6000000000001 7893 1991-08-12 2024-10-11 02:11:33.000 1991-08-12 2024-10-11 02:11:33 +7894 7894 7895 789.4 1578.8000000000002 7894 1991-08-13 2024-10-11 02:11:34.000 1991-08-13 2024-10-11 02:11:34 +7895 7895 7896 789.5 1579 7895 1991-08-14 2024-10-11 02:11:35.000 1991-08-14 2024-10-11 02:11:35 +7896 7896 7897 789.6 1579.2 7896 1991-08-15 2024-10-11 02:11:36.000 1991-08-15 2024-10-11 02:11:36 +7897 7897 7898 789.7 1579.4 7897 1991-08-16 2024-10-11 02:11:37.000 1991-08-16 2024-10-11 02:11:37 +7898 7898 7899 789.8 1579.6000000000001 7898 1991-08-17 2024-10-11 02:11:38.000 1991-08-17 2024-10-11 02:11:38 +7899 7899 7900 789.9 1579.8000000000002 7899 1991-08-18 2024-10-11 02:11:39.000 1991-08-18 2024-10-11 02:11:39 +7900 7900 7901 790 1580 7900 1991-08-19 2024-10-11 02:11:40.000 1991-08-19 2024-10-11 02:11:40 +7901 7901 7902 790.1 1580.2 7901 1991-08-20 2024-10-11 02:11:41.000 1991-08-20 2024-10-11 02:11:41 +7902 7902 7903 790.2 1580.4 7902 1991-08-21 2024-10-11 02:11:42.000 1991-08-21 2024-10-11 02:11:42 +7903 7903 7904 790.3 1580.6000000000001 7903 1991-08-22 2024-10-11 02:11:43.000 1991-08-22 2024-10-11 02:11:43 +7904 7904 7905 790.4 1580.8000000000002 7904 1991-08-23 2024-10-11 02:11:44.000 1991-08-23 2024-10-11 02:11:44 +7905 7905 7906 790.5 1581 7905 1991-08-24 2024-10-11 02:11:45.000 1991-08-24 2024-10-11 02:11:45 +7906 7906 7907 790.6 1581.2 7906 1991-08-25 2024-10-11 02:11:46.000 1991-08-25 2024-10-11 02:11:46 +7907 7907 7908 790.7 1581.4 7907 1991-08-26 2024-10-11 02:11:47.000 1991-08-26 2024-10-11 02:11:47 +7908 7908 7909 790.8 1581.6000000000001 7908 1991-08-27 2024-10-11 02:11:48.000 1991-08-27 2024-10-11 02:11:48 +7909 7909 7910 790.9 1581.8000000000002 7909 1991-08-28 2024-10-11 02:11:49.000 1991-08-28 2024-10-11 02:11:49 +7910 7910 7911 791 1582 7910 1991-08-29 2024-10-11 02:11:50.000 1991-08-29 2024-10-11 02:11:50 +7911 7911 7912 791.1 1582.2 7911 1991-08-30 2024-10-11 02:11:51.000 1991-08-30 2024-10-11 02:11:51 +7912 7912 7913 791.2 1582.4 7912 1991-08-31 2024-10-11 02:11:52.000 1991-08-31 2024-10-11 02:11:52 +7913 7913 7914 791.3 1582.6000000000001 7913 1991-09-01 2024-10-11 02:11:53.000 1991-09-01 2024-10-11 02:11:53 +7914 7914 7915 791.4 1582.8000000000002 7914 1991-09-02 2024-10-11 02:11:54.000 1991-09-02 2024-10-11 02:11:54 +7915 7915 7916 791.5 1583 7915 1991-09-03 2024-10-11 02:11:55.000 1991-09-03 2024-10-11 02:11:55 +7916 7916 7917 791.6 1583.2 7916 1991-09-04 2024-10-11 02:11:56.000 1991-09-04 2024-10-11 02:11:56 +7917 7917 7918 791.7 1583.4 7917 1991-09-05 2024-10-11 02:11:57.000 1991-09-05 2024-10-11 02:11:57 +7918 7918 7919 791.8 1583.6000000000001 7918 1991-09-06 2024-10-11 02:11:58.000 1991-09-06 2024-10-11 02:11:58 +7919 7919 7920 791.9 1583.8000000000002 7919 1991-09-07 2024-10-11 02:11:59.000 1991-09-07 2024-10-11 02:11:59 +7920 7920 7921 792 1584 7920 1991-09-08 2024-10-11 02:12:00.000 1991-09-08 2024-10-11 02:12:00 +7921 7921 7922 792.1 1584.2 7921 1991-09-09 2024-10-11 02:12:01.000 1991-09-09 2024-10-11 02:12:01 +7922 7922 7923 792.2 1584.4 7922 1991-09-10 2024-10-11 02:12:02.000 1991-09-10 2024-10-11 02:12:02 +7923 7923 7924 792.3 1584.6000000000001 7923 1991-09-11 2024-10-11 02:12:03.000 1991-09-11 2024-10-11 02:12:03 +7924 7924 7925 792.4 1584.8000000000002 7924 1991-09-12 2024-10-11 02:12:04.000 1991-09-12 2024-10-11 02:12:04 +7925 7925 7926 792.5 1585 7925 1991-09-13 2024-10-11 02:12:05.000 1991-09-13 2024-10-11 02:12:05 +7926 7926 7927 792.6 1585.2 7926 1991-09-14 2024-10-11 02:12:06.000 1991-09-14 2024-10-11 02:12:06 +7927 7927 7928 792.7 1585.4 7927 1991-09-15 2024-10-11 02:12:07.000 1991-09-15 2024-10-11 02:12:07 +7928 7928 7929 792.8 1585.6000000000001 7928 1991-09-16 2024-10-11 02:12:08.000 1991-09-16 2024-10-11 02:12:08 +7929 7929 7930 792.9 1585.8000000000002 7929 1991-09-17 2024-10-11 02:12:09.000 1991-09-17 2024-10-11 02:12:09 +7930 7930 7931 793 1586 7930 1991-09-18 2024-10-11 02:12:10.000 1991-09-18 2024-10-11 02:12:10 +7931 7931 7932 793.1 1586.2 7931 1991-09-19 2024-10-11 02:12:11.000 1991-09-19 2024-10-11 02:12:11 +7932 7932 7933 793.2 1586.4 7932 1991-09-20 2024-10-11 02:12:12.000 1991-09-20 2024-10-11 02:12:12 +7933 7933 7934 793.3 1586.6000000000001 7933 1991-09-21 2024-10-11 02:12:13.000 1991-09-21 2024-10-11 02:12:13 +7934 7934 7935 793.4 1586.8000000000002 7934 1991-09-22 2024-10-11 02:12:14.000 1991-09-22 2024-10-11 02:12:14 +7935 7935 7936 793.5 1587 7935 1991-09-23 2024-10-11 02:12:15.000 1991-09-23 2024-10-11 02:12:15 +7936 7936 7937 793.6 1587.2 7936 1991-09-24 2024-10-11 02:12:16.000 1991-09-24 2024-10-11 02:12:16 +7937 7937 7938 793.7 1587.4 7937 1991-09-25 2024-10-11 02:12:17.000 1991-09-25 2024-10-11 02:12:17 +7938 7938 7939 793.8 1587.6000000000001 7938 1991-09-26 2024-10-11 02:12:18.000 1991-09-26 2024-10-11 02:12:18 +7939 7939 7940 793.9 1587.8000000000002 7939 1991-09-27 2024-10-11 02:12:19.000 1991-09-27 2024-10-11 02:12:19 +7940 7940 7941 794 1588 7940 1991-09-28 2024-10-11 02:12:20.000 1991-09-28 2024-10-11 02:12:20 +7941 7941 7942 794.1 1588.2 7941 1991-09-29 2024-10-11 02:12:21.000 1991-09-29 2024-10-11 02:12:21 +7942 7942 7943 794.2 1588.4 7942 1991-09-30 2024-10-11 02:12:22.000 1991-09-30 2024-10-11 02:12:22 +7943 7943 7944 794.3 1588.6000000000001 7943 1991-10-01 2024-10-11 02:12:23.000 1991-10-01 2024-10-11 02:12:23 +7944 7944 7945 794.4 1588.8000000000002 7944 1991-10-02 2024-10-11 02:12:24.000 1991-10-02 2024-10-11 02:12:24 +7945 7945 7946 794.5 1589 7945 1991-10-03 2024-10-11 02:12:25.000 1991-10-03 2024-10-11 02:12:25 +7946 7946 7947 794.6 1589.2 7946 1991-10-04 2024-10-11 02:12:26.000 1991-10-04 2024-10-11 02:12:26 +7947 7947 7948 794.7 1589.4 7947 1991-10-05 2024-10-11 02:12:27.000 1991-10-05 2024-10-11 02:12:27 +7948 7948 7949 794.8 1589.6000000000001 7948 1991-10-06 2024-10-11 02:12:28.000 1991-10-06 2024-10-11 02:12:28 +7949 7949 7950 794.9 1589.8000000000002 7949 1991-10-07 2024-10-11 02:12:29.000 1991-10-07 2024-10-11 02:12:29 +7950 7950 7951 795 1590 7950 1991-10-08 2024-10-11 02:12:30.000 1991-10-08 2024-10-11 02:12:30 +7951 7951 7952 795.1 1590.2 7951 1991-10-09 2024-10-11 02:12:31.000 1991-10-09 2024-10-11 02:12:31 +7952 7952 7953 795.2 1590.4 7952 1991-10-10 2024-10-11 02:12:32.000 1991-10-10 2024-10-11 02:12:32 +7953 7953 7954 795.3 1590.6000000000001 7953 1991-10-11 2024-10-11 02:12:33.000 1991-10-11 2024-10-11 02:12:33 +7954 7954 7955 795.4 1590.8000000000002 7954 1991-10-12 2024-10-11 02:12:34.000 1991-10-12 2024-10-11 02:12:34 +7955 7955 7956 795.5 1591 7955 1991-10-13 2024-10-11 02:12:35.000 1991-10-13 2024-10-11 02:12:35 +7956 7956 7957 795.6 1591.2 7956 1991-10-14 2024-10-11 02:12:36.000 1991-10-14 2024-10-11 02:12:36 +7957 7957 7958 795.7 1591.4 7957 1991-10-15 2024-10-11 02:12:37.000 1991-10-15 2024-10-11 02:12:37 +7958 7958 7959 795.8 1591.6000000000001 7958 1991-10-16 2024-10-11 02:12:38.000 1991-10-16 2024-10-11 02:12:38 +7959 7959 7960 795.9 1591.8000000000002 7959 1991-10-17 2024-10-11 02:12:39.000 1991-10-17 2024-10-11 02:12:39 +7960 7960 7961 796 1592 7960 1991-10-18 2024-10-11 02:12:40.000 1991-10-18 2024-10-11 02:12:40 +7961 7961 7962 796.1 1592.2 7961 1991-10-19 2024-10-11 02:12:41.000 1991-10-19 2024-10-11 02:12:41 +7962 7962 7963 796.2 1592.4 7962 1991-10-20 2024-10-11 02:12:42.000 1991-10-20 2024-10-11 02:12:42 +7963 7963 7964 796.3 1592.6000000000001 7963 1991-10-21 2024-10-11 02:12:43.000 1991-10-21 2024-10-11 02:12:43 +7964 7964 7965 796.4 1592.8000000000002 7964 1991-10-22 2024-10-11 02:12:44.000 1991-10-22 2024-10-11 02:12:44 +7965 7965 7966 796.5 1593 7965 1991-10-23 2024-10-11 02:12:45.000 1991-10-23 2024-10-11 02:12:45 +7966 7966 7967 796.6 1593.2 7966 1991-10-24 2024-10-11 02:12:46.000 1991-10-24 2024-10-11 02:12:46 +7967 7967 7968 796.7 1593.4 7967 1991-10-25 2024-10-11 02:12:47.000 1991-10-25 2024-10-11 02:12:47 +7968 7968 7969 796.8 1593.6000000000001 7968 1991-10-26 2024-10-11 02:12:48.000 1991-10-26 2024-10-11 02:12:48 +7969 7969 7970 796.9 1593.8000000000002 7969 1991-10-27 2024-10-11 02:12:49.000 1991-10-27 2024-10-11 02:12:49 +7970 7970 7971 797 1594 7970 1991-10-28 2024-10-11 02:12:50.000 1991-10-28 2024-10-11 02:12:50 +7971 7971 7972 797.1 1594.2 7971 1991-10-29 2024-10-11 02:12:51.000 1991-10-29 2024-10-11 02:12:51 +7972 7972 7973 797.2 1594.4 7972 1991-10-30 2024-10-11 02:12:52.000 1991-10-30 2024-10-11 02:12:52 +7973 7973 7974 797.3 1594.6000000000001 7973 1991-10-31 2024-10-11 02:12:53.000 1991-10-31 2024-10-11 02:12:53 +7974 7974 7975 797.4 1594.8000000000002 7974 1991-11-01 2024-10-11 02:12:54.000 1991-11-01 2024-10-11 02:12:54 +7975 7975 7976 797.5 1595 7975 1991-11-02 2024-10-11 02:12:55.000 1991-11-02 2024-10-11 02:12:55 +7976 7976 7977 797.6 1595.2 7976 1991-11-03 2024-10-11 02:12:56.000 1991-11-03 2024-10-11 02:12:56 +7977 7977 7978 797.7 1595.4 7977 1991-11-04 2024-10-11 02:12:57.000 1991-11-04 2024-10-11 02:12:57 +7978 7978 7979 797.8 1595.6000000000001 7978 1991-11-05 2024-10-11 02:12:58.000 1991-11-05 2024-10-11 02:12:58 +7979 7979 7980 797.9 1595.8000000000002 7979 1991-11-06 2024-10-11 02:12:59.000 1991-11-06 2024-10-11 02:12:59 +7980 7980 7981 798 1596 7980 1991-11-07 2024-10-11 02:13:00.000 1991-11-07 2024-10-11 02:13:00 +7981 7981 7982 798.1 1596.2 7981 1991-11-08 2024-10-11 02:13:01.000 1991-11-08 2024-10-11 02:13:01 +7982 7982 7983 798.2 1596.4 7982 1991-11-09 2024-10-11 02:13:02.000 1991-11-09 2024-10-11 02:13:02 +7983 7983 7984 798.3 1596.6000000000001 7983 1991-11-10 2024-10-11 02:13:03.000 1991-11-10 2024-10-11 02:13:03 +7984 7984 7985 798.4 1596.8000000000002 7984 1991-11-11 2024-10-11 02:13:04.000 1991-11-11 2024-10-11 02:13:04 +7985 7985 7986 798.5 1597 7985 1991-11-12 2024-10-11 02:13:05.000 1991-11-12 2024-10-11 02:13:05 +7986 7986 7987 798.6 1597.2 7986 1991-11-13 2024-10-11 02:13:06.000 1991-11-13 2024-10-11 02:13:06 +7987 7987 7988 798.7 1597.4 7987 1991-11-14 2024-10-11 02:13:07.000 1991-11-14 2024-10-11 02:13:07 +7988 7988 7989 798.8 1597.6000000000001 7988 1991-11-15 2024-10-11 02:13:08.000 1991-11-15 2024-10-11 02:13:08 +7989 7989 7990 798.9 1597.8000000000002 7989 1991-11-16 2024-10-11 02:13:09.000 1991-11-16 2024-10-11 02:13:09 +7990 7990 7991 799 1598 7990 1991-11-17 2024-10-11 02:13:10.000 1991-11-17 2024-10-11 02:13:10 +7991 7991 7992 799.1 1598.2 7991 1991-11-18 2024-10-11 02:13:11.000 1991-11-18 2024-10-11 02:13:11 +7992 7992 7993 799.2 1598.4 7992 1991-11-19 2024-10-11 02:13:12.000 1991-11-19 2024-10-11 02:13:12 +7993 7993 7994 799.3 1598.6000000000001 7993 1991-11-20 2024-10-11 02:13:13.000 1991-11-20 2024-10-11 02:13:13 +7994 7994 7995 799.4 1598.8000000000002 7994 1991-11-21 2024-10-11 02:13:14.000 1991-11-21 2024-10-11 02:13:14 +7995 7995 7996 799.5 1599 7995 1991-11-22 2024-10-11 02:13:15.000 1991-11-22 2024-10-11 02:13:15 +7996 7996 7997 799.6 1599.2 7996 1991-11-23 2024-10-11 02:13:16.000 1991-11-23 2024-10-11 02:13:16 +7997 7997 7998 799.7 1599.4 7997 1991-11-24 2024-10-11 02:13:17.000 1991-11-24 2024-10-11 02:13:17 +7998 7998 7999 799.8 1599.6000000000001 7998 1991-11-25 2024-10-11 02:13:18.000 1991-11-25 2024-10-11 02:13:18 +7999 7999 8000 799.9 1599.8000000000002 7999 1991-11-26 2024-10-11 02:13:19.000 1991-11-26 2024-10-11 02:13:19 +8000 8000 8001 800 1600 8000 1991-11-27 2024-10-11 02:13:20.000 1991-11-27 2024-10-11 02:13:20 +8001 8001 8002 800.1 1600.2 8001 1991-11-28 2024-10-11 02:13:21.000 1991-11-28 2024-10-11 02:13:21 +8002 8002 8003 800.2 1600.4 8002 1991-11-29 2024-10-11 02:13:22.000 1991-11-29 2024-10-11 02:13:22 +8003 8003 8004 800.3 1600.6000000000001 8003 1991-11-30 2024-10-11 02:13:23.000 1991-11-30 2024-10-11 02:13:23 +8004 8004 8005 800.4 1600.8000000000002 8004 1991-12-01 2024-10-11 02:13:24.000 1991-12-01 2024-10-11 02:13:24 +8005 8005 8006 800.5 1601 8005 1991-12-02 2024-10-11 02:13:25.000 1991-12-02 2024-10-11 02:13:25 +8006 8006 8007 800.6 1601.2 8006 1991-12-03 2024-10-11 02:13:26.000 1991-12-03 2024-10-11 02:13:26 +8007 8007 8008 800.7 1601.4 8007 1991-12-04 2024-10-11 02:13:27.000 1991-12-04 2024-10-11 02:13:27 +8008 8008 8009 800.8 1601.6000000000001 8008 1991-12-05 2024-10-11 02:13:28.000 1991-12-05 2024-10-11 02:13:28 +8009 8009 8010 800.9 1601.8000000000002 8009 1991-12-06 2024-10-11 02:13:29.000 1991-12-06 2024-10-11 02:13:29 +8010 8010 8011 801 1602 8010 1991-12-07 2024-10-11 02:13:30.000 1991-12-07 2024-10-11 02:13:30 +8011 8011 8012 801.1 1602.2 8011 1991-12-08 2024-10-11 02:13:31.000 1991-12-08 2024-10-11 02:13:31 +8012 8012 8013 801.2 1602.4 8012 1991-12-09 2024-10-11 02:13:32.000 1991-12-09 2024-10-11 02:13:32 +8013 8013 8014 801.3 1602.6000000000001 8013 1991-12-10 2024-10-11 02:13:33.000 1991-12-10 2024-10-11 02:13:33 +8014 8014 8015 801.4 1602.8000000000002 8014 1991-12-11 2024-10-11 02:13:34.000 1991-12-11 2024-10-11 02:13:34 +8015 8015 8016 801.5 1603 8015 1991-12-12 2024-10-11 02:13:35.000 1991-12-12 2024-10-11 02:13:35 +8016 8016 8017 801.6 1603.2 8016 1991-12-13 2024-10-11 02:13:36.000 1991-12-13 2024-10-11 02:13:36 +8017 8017 8018 801.7 1603.4 8017 1991-12-14 2024-10-11 02:13:37.000 1991-12-14 2024-10-11 02:13:37 +8018 8018 8019 801.8 1603.6000000000001 8018 1991-12-15 2024-10-11 02:13:38.000 1991-12-15 2024-10-11 02:13:38 +8019 8019 8020 801.9 1603.8000000000002 8019 1991-12-16 2024-10-11 02:13:39.000 1991-12-16 2024-10-11 02:13:39 +8020 8020 8021 802 1604 8020 1991-12-17 2024-10-11 02:13:40.000 1991-12-17 2024-10-11 02:13:40 +8021 8021 8022 802.1 1604.2 8021 1991-12-18 2024-10-11 02:13:41.000 1991-12-18 2024-10-11 02:13:41 +8022 8022 8023 802.2 1604.4 8022 1991-12-19 2024-10-11 02:13:42.000 1991-12-19 2024-10-11 02:13:42 +8023 8023 8024 802.3 1604.6000000000001 8023 1991-12-20 2024-10-11 02:13:43.000 1991-12-20 2024-10-11 02:13:43 +8024 8024 8025 802.4 1604.8000000000002 8024 1991-12-21 2024-10-11 02:13:44.000 1991-12-21 2024-10-11 02:13:44 +8025 8025 8026 802.5 1605 8025 1991-12-22 2024-10-11 02:13:45.000 1991-12-22 2024-10-11 02:13:45 +8026 8026 8027 802.6 1605.2 8026 1991-12-23 2024-10-11 02:13:46.000 1991-12-23 2024-10-11 02:13:46 +8027 8027 8028 802.7 1605.4 8027 1991-12-24 2024-10-11 02:13:47.000 1991-12-24 2024-10-11 02:13:47 +8028 8028 8029 802.8 1605.6000000000001 8028 1991-12-25 2024-10-11 02:13:48.000 1991-12-25 2024-10-11 02:13:48 +8029 8029 8030 802.9 1605.8000000000002 8029 1991-12-26 2024-10-11 02:13:49.000 1991-12-26 2024-10-11 02:13:49 +8030 8030 8031 803 1606 8030 1991-12-27 2024-10-11 02:13:50.000 1991-12-27 2024-10-11 02:13:50 +8031 8031 8032 803.1 1606.2 8031 1991-12-28 2024-10-11 02:13:51.000 1991-12-28 2024-10-11 02:13:51 +8032 8032 8033 803.2 1606.4 8032 1991-12-29 2024-10-11 02:13:52.000 1991-12-29 2024-10-11 02:13:52 +8033 8033 8034 803.3 1606.6000000000001 8033 1991-12-30 2024-10-11 02:13:53.000 1991-12-30 2024-10-11 02:13:53 +8034 8034 8035 803.4 1606.8000000000002 8034 1991-12-31 2024-10-11 02:13:54.000 1991-12-31 2024-10-11 02:13:54 +8035 8035 8036 803.5 1607 8035 1992-01-01 2024-10-11 02:13:55.000 1992-01-01 2024-10-11 02:13:55 +8036 8036 8037 803.6 1607.2 8036 1992-01-02 2024-10-11 02:13:56.000 1992-01-02 2024-10-11 02:13:56 +8037 8037 8038 803.7 1607.4 8037 1992-01-03 2024-10-11 02:13:57.000 1992-01-03 2024-10-11 02:13:57 +8038 8038 8039 803.8 1607.6000000000001 8038 1992-01-04 2024-10-11 02:13:58.000 1992-01-04 2024-10-11 02:13:58 +8039 8039 8040 803.9 1607.8000000000002 8039 1992-01-05 2024-10-11 02:13:59.000 1992-01-05 2024-10-11 02:13:59 +8040 8040 8041 804 1608 8040 1992-01-06 2024-10-11 02:14:00.000 1992-01-06 2024-10-11 02:14:00 +8041 8041 8042 804.1 1608.2 8041 1992-01-07 2024-10-11 02:14:01.000 1992-01-07 2024-10-11 02:14:01 +8042 8042 8043 804.2 1608.4 8042 1992-01-08 2024-10-11 02:14:02.000 1992-01-08 2024-10-11 02:14:02 +8043 8043 8044 804.3 1608.6000000000001 8043 1992-01-09 2024-10-11 02:14:03.000 1992-01-09 2024-10-11 02:14:03 +8044 8044 8045 804.4 1608.8000000000002 8044 1992-01-10 2024-10-11 02:14:04.000 1992-01-10 2024-10-11 02:14:04 +8045 8045 8046 804.5 1609 8045 1992-01-11 2024-10-11 02:14:05.000 1992-01-11 2024-10-11 02:14:05 +8046 8046 8047 804.6 1609.2 8046 1992-01-12 2024-10-11 02:14:06.000 1992-01-12 2024-10-11 02:14:06 +8047 8047 8048 804.7 1609.4 8047 1992-01-13 2024-10-11 02:14:07.000 1992-01-13 2024-10-11 02:14:07 +8048 8048 8049 804.8 1609.6000000000001 8048 1992-01-14 2024-10-11 02:14:08.000 1992-01-14 2024-10-11 02:14:08 +8049 8049 8050 804.9 1609.8000000000002 8049 1992-01-15 2024-10-11 02:14:09.000 1992-01-15 2024-10-11 02:14:09 +8050 8050 8051 805 1610 8050 1992-01-16 2024-10-11 02:14:10.000 1992-01-16 2024-10-11 02:14:10 +8051 8051 8052 805.1 1610.2 8051 1992-01-17 2024-10-11 02:14:11.000 1992-01-17 2024-10-11 02:14:11 +8052 8052 8053 805.2 1610.4 8052 1992-01-18 2024-10-11 02:14:12.000 1992-01-18 2024-10-11 02:14:12 +8053 8053 8054 805.3 1610.6000000000001 8053 1992-01-19 2024-10-11 02:14:13.000 1992-01-19 2024-10-11 02:14:13 +8054 8054 8055 805.4 1610.8000000000002 8054 1992-01-20 2024-10-11 02:14:14.000 1992-01-20 2024-10-11 02:14:14 +8055 8055 8056 805.5 1611 8055 1992-01-21 2024-10-11 02:14:15.000 1992-01-21 2024-10-11 02:14:15 +8056 8056 8057 805.6 1611.2 8056 1992-01-22 2024-10-11 02:14:16.000 1992-01-22 2024-10-11 02:14:16 +8057 8057 8058 805.7 1611.4 8057 1992-01-23 2024-10-11 02:14:17.000 1992-01-23 2024-10-11 02:14:17 +8058 8058 8059 805.8 1611.6000000000001 8058 1992-01-24 2024-10-11 02:14:18.000 1992-01-24 2024-10-11 02:14:18 +8059 8059 8060 805.9 1611.8000000000002 8059 1992-01-25 2024-10-11 02:14:19.000 1992-01-25 2024-10-11 02:14:19 +8060 8060 8061 806 1612 8060 1992-01-26 2024-10-11 02:14:20.000 1992-01-26 2024-10-11 02:14:20 +8061 8061 8062 806.1 1612.2 8061 1992-01-27 2024-10-11 02:14:21.000 1992-01-27 2024-10-11 02:14:21 +8062 8062 8063 806.2 1612.4 8062 1992-01-28 2024-10-11 02:14:22.000 1992-01-28 2024-10-11 02:14:22 +8063 8063 8064 806.3 1612.6000000000001 8063 1992-01-29 2024-10-11 02:14:23.000 1992-01-29 2024-10-11 02:14:23 +8064 8064 8065 806.4 1612.8000000000002 8064 1992-01-30 2024-10-11 02:14:24.000 1992-01-30 2024-10-11 02:14:24 +8065 8065 8066 806.5 1613 8065 1992-01-31 2024-10-11 02:14:25.000 1992-01-31 2024-10-11 02:14:25 +8066 8066 8067 806.6 1613.2 8066 1992-02-01 2024-10-11 02:14:26.000 1992-02-01 2024-10-11 02:14:26 +8067 8067 8068 806.7 1613.4 8067 1992-02-02 2024-10-11 02:14:27.000 1992-02-02 2024-10-11 02:14:27 +8068 8068 8069 806.8 1613.6000000000001 8068 1992-02-03 2024-10-11 02:14:28.000 1992-02-03 2024-10-11 02:14:28 +8069 8069 8070 806.9 1613.8000000000002 8069 1992-02-04 2024-10-11 02:14:29.000 1992-02-04 2024-10-11 02:14:29 +8070 8070 8071 807 1614 8070 1992-02-05 2024-10-11 02:14:30.000 1992-02-05 2024-10-11 02:14:30 +8071 8071 8072 807.1 1614.2 8071 1992-02-06 2024-10-11 02:14:31.000 1992-02-06 2024-10-11 02:14:31 +8072 8072 8073 807.2 1614.4 8072 1992-02-07 2024-10-11 02:14:32.000 1992-02-07 2024-10-11 02:14:32 +8073 8073 8074 807.3 1614.6000000000001 8073 1992-02-08 2024-10-11 02:14:33.000 1992-02-08 2024-10-11 02:14:33 +8074 8074 8075 807.4 1614.8000000000002 8074 1992-02-09 2024-10-11 02:14:34.000 1992-02-09 2024-10-11 02:14:34 +8075 8075 8076 807.5 1615 8075 1992-02-10 2024-10-11 02:14:35.000 1992-02-10 2024-10-11 02:14:35 +8076 8076 8077 807.6 1615.2 8076 1992-02-11 2024-10-11 02:14:36.000 1992-02-11 2024-10-11 02:14:36 +8077 8077 8078 807.7 1615.4 8077 1992-02-12 2024-10-11 02:14:37.000 1992-02-12 2024-10-11 02:14:37 +8078 8078 8079 807.8 1615.6000000000001 8078 1992-02-13 2024-10-11 02:14:38.000 1992-02-13 2024-10-11 02:14:38 +8079 8079 8080 807.9 1615.8000000000002 8079 1992-02-14 2024-10-11 02:14:39.000 1992-02-14 2024-10-11 02:14:39 +8080 8080 8081 808 1616 8080 1992-02-15 2024-10-11 02:14:40.000 1992-02-15 2024-10-11 02:14:40 +8081 8081 8082 808.1 1616.2 8081 1992-02-16 2024-10-11 02:14:41.000 1992-02-16 2024-10-11 02:14:41 +8082 8082 8083 808.2 1616.4 8082 1992-02-17 2024-10-11 02:14:42.000 1992-02-17 2024-10-11 02:14:42 +8083 8083 8084 808.3 1616.6000000000001 8083 1992-02-18 2024-10-11 02:14:43.000 1992-02-18 2024-10-11 02:14:43 +8084 8084 8085 808.4 1616.8000000000002 8084 1992-02-19 2024-10-11 02:14:44.000 1992-02-19 2024-10-11 02:14:44 +8085 8085 8086 808.5 1617 8085 1992-02-20 2024-10-11 02:14:45.000 1992-02-20 2024-10-11 02:14:45 +8086 8086 8087 808.6 1617.2 8086 1992-02-21 2024-10-11 02:14:46.000 1992-02-21 2024-10-11 02:14:46 +8087 8087 8088 808.7 1617.4 8087 1992-02-22 2024-10-11 02:14:47.000 1992-02-22 2024-10-11 02:14:47 +8088 8088 8089 808.8 1617.6000000000001 8088 1992-02-23 2024-10-11 02:14:48.000 1992-02-23 2024-10-11 02:14:48 +8089 8089 8090 808.9 1617.8000000000002 8089 1992-02-24 2024-10-11 02:14:49.000 1992-02-24 2024-10-11 02:14:49 +8090 8090 8091 809 1618 8090 1992-02-25 2024-10-11 02:14:50.000 1992-02-25 2024-10-11 02:14:50 +8091 8091 8092 809.1 1618.2 8091 1992-02-26 2024-10-11 02:14:51.000 1992-02-26 2024-10-11 02:14:51 +8092 8092 8093 809.2 1618.4 8092 1992-02-27 2024-10-11 02:14:52.000 1992-02-27 2024-10-11 02:14:52 +8093 8093 8094 809.3 1618.6000000000001 8093 1992-02-28 2024-10-11 02:14:53.000 1992-02-28 2024-10-11 02:14:53 +8094 8094 8095 809.4 1618.8000000000002 8094 1992-02-29 2024-10-11 02:14:54.000 1992-02-29 2024-10-11 02:14:54 +8095 8095 8096 809.5 1619 8095 1992-03-01 2024-10-11 02:14:55.000 1992-03-01 2024-10-11 02:14:55 +8096 8096 8097 809.6 1619.2 8096 1992-03-02 2024-10-11 02:14:56.000 1992-03-02 2024-10-11 02:14:56 +8097 8097 8098 809.7 1619.4 8097 1992-03-03 2024-10-11 02:14:57.000 1992-03-03 2024-10-11 02:14:57 +8098 8098 8099 809.8 1619.6000000000001 8098 1992-03-04 2024-10-11 02:14:58.000 1992-03-04 2024-10-11 02:14:58 +8099 8099 8100 809.9 1619.8000000000002 8099 1992-03-05 2024-10-11 02:14:59.000 1992-03-05 2024-10-11 02:14:59 +8100 8100 8101 810 1620 8100 1992-03-06 2024-10-11 02:15:00.000 1992-03-06 2024-10-11 02:15:00 +8101 8101 8102 810.1 1620.2 8101 1992-03-07 2024-10-11 02:15:01.000 1992-03-07 2024-10-11 02:15:01 +8102 8102 8103 810.2 1620.4 8102 1992-03-08 2024-10-11 02:15:02.000 1992-03-08 2024-10-11 02:15:02 +8103 8103 8104 810.3 1620.6000000000001 8103 1992-03-09 2024-10-11 02:15:03.000 1992-03-09 2024-10-11 02:15:03 +8104 8104 8105 810.4 1620.8000000000002 8104 1992-03-10 2024-10-11 02:15:04.000 1992-03-10 2024-10-11 02:15:04 +8105 8105 8106 810.5 1621 8105 1992-03-11 2024-10-11 02:15:05.000 1992-03-11 2024-10-11 02:15:05 +8106 8106 8107 810.6 1621.2 8106 1992-03-12 2024-10-11 02:15:06.000 1992-03-12 2024-10-11 02:15:06 +8107 8107 8108 810.7 1621.4 8107 1992-03-13 2024-10-11 02:15:07.000 1992-03-13 2024-10-11 02:15:07 +8108 8108 8109 810.8 1621.6000000000001 8108 1992-03-14 2024-10-11 02:15:08.000 1992-03-14 2024-10-11 02:15:08 +8109 8109 8110 810.9 1621.8000000000002 8109 1992-03-15 2024-10-11 02:15:09.000 1992-03-15 2024-10-11 02:15:09 +8110 8110 8111 811 1622 8110 1992-03-16 2024-10-11 02:15:10.000 1992-03-16 2024-10-11 02:15:10 +8111 8111 8112 811.1 1622.2 8111 1992-03-17 2024-10-11 02:15:11.000 1992-03-17 2024-10-11 02:15:11 +8112 8112 8113 811.2 1622.4 8112 1992-03-18 2024-10-11 02:15:12.000 1992-03-18 2024-10-11 02:15:12 +8113 8113 8114 811.3 1622.6000000000001 8113 1992-03-19 2024-10-11 02:15:13.000 1992-03-19 2024-10-11 02:15:13 +8114 8114 8115 811.4 1622.8000000000002 8114 1992-03-20 2024-10-11 02:15:14.000 1992-03-20 2024-10-11 02:15:14 +8115 8115 8116 811.5 1623 8115 1992-03-21 2024-10-11 02:15:15.000 1992-03-21 2024-10-11 02:15:15 +8116 8116 8117 811.6 1623.2 8116 1992-03-22 2024-10-11 02:15:16.000 1992-03-22 2024-10-11 02:15:16 +8117 8117 8118 811.7 1623.4 8117 1992-03-23 2024-10-11 02:15:17.000 1992-03-23 2024-10-11 02:15:17 +8118 8118 8119 811.8 1623.6000000000001 8118 1992-03-24 2024-10-11 02:15:18.000 1992-03-24 2024-10-11 02:15:18 +8119 8119 8120 811.9 1623.8000000000002 8119 1992-03-25 2024-10-11 02:15:19.000 1992-03-25 2024-10-11 02:15:19 +8120 8120 8121 812 1624 8120 1992-03-26 2024-10-11 02:15:20.000 1992-03-26 2024-10-11 02:15:20 +8121 8121 8122 812.1 1624.2 8121 1992-03-27 2024-10-11 02:15:21.000 1992-03-27 2024-10-11 02:15:21 +8122 8122 8123 812.2 1624.4 8122 1992-03-28 2024-10-11 02:15:22.000 1992-03-28 2024-10-11 02:15:22 +8123 8123 8124 812.3 1624.6000000000001 8123 1992-03-29 2024-10-11 02:15:23.000 1992-03-29 2024-10-11 02:15:23 +8124 8124 8125 812.4 1624.8000000000002 8124 1992-03-30 2024-10-11 02:15:24.000 1992-03-30 2024-10-11 02:15:24 +8125 8125 8126 812.5 1625 8125 1992-03-31 2024-10-11 02:15:25.000 1992-03-31 2024-10-11 02:15:25 +8126 8126 8127 812.6 1625.2 8126 1992-04-01 2024-10-11 02:15:26.000 1992-04-01 2024-10-11 02:15:26 +8127 8127 8128 812.7 1625.4 8127 1992-04-02 2024-10-11 02:15:27.000 1992-04-02 2024-10-11 02:15:27 +8128 8128 8129 812.8 1625.6000000000001 8128 1992-04-03 2024-10-11 02:15:28.000 1992-04-03 2024-10-11 02:15:28 +8129 8129 8130 812.9 1625.8000000000002 8129 1992-04-04 2024-10-11 02:15:29.000 1992-04-04 2024-10-11 02:15:29 +8130 8130 8131 813 1626 8130 1992-04-05 2024-10-11 02:15:30.000 1992-04-05 2024-10-11 02:15:30 +8131 8131 8132 813.1 1626.2 8131 1992-04-06 2024-10-11 02:15:31.000 1992-04-06 2024-10-11 02:15:31 +8132 8132 8133 813.2 1626.4 8132 1992-04-07 2024-10-11 02:15:32.000 1992-04-07 2024-10-11 02:15:32 +8133 8133 8134 813.3 1626.6000000000001 8133 1992-04-08 2024-10-11 02:15:33.000 1992-04-08 2024-10-11 02:15:33 +8134 8134 8135 813.4 1626.8000000000002 8134 1992-04-09 2024-10-11 02:15:34.000 1992-04-09 2024-10-11 02:15:34 +8135 8135 8136 813.5 1627 8135 1992-04-10 2024-10-11 02:15:35.000 1992-04-10 2024-10-11 02:15:35 +8136 8136 8137 813.6 1627.2 8136 1992-04-11 2024-10-11 02:15:36.000 1992-04-11 2024-10-11 02:15:36 +8137 8137 8138 813.7 1627.4 8137 1992-04-12 2024-10-11 02:15:37.000 1992-04-12 2024-10-11 02:15:37 +8138 8138 8139 813.8 1627.6000000000001 8138 1992-04-13 2024-10-11 02:15:38.000 1992-04-13 2024-10-11 02:15:38 +8139 8139 8140 813.9 1627.8000000000002 8139 1992-04-14 2024-10-11 02:15:39.000 1992-04-14 2024-10-11 02:15:39 +8140 8140 8141 814 1628 8140 1992-04-15 2024-10-11 02:15:40.000 1992-04-15 2024-10-11 02:15:40 +8141 8141 8142 814.1 1628.2 8141 1992-04-16 2024-10-11 02:15:41.000 1992-04-16 2024-10-11 02:15:41 +8142 8142 8143 814.2 1628.4 8142 1992-04-17 2024-10-11 02:15:42.000 1992-04-17 2024-10-11 02:15:42 +8143 8143 8144 814.3 1628.6000000000001 8143 1992-04-18 2024-10-11 02:15:43.000 1992-04-18 2024-10-11 02:15:43 +8144 8144 8145 814.4 1628.8000000000002 8144 1992-04-19 2024-10-11 02:15:44.000 1992-04-19 2024-10-11 02:15:44 +8145 8145 8146 814.5 1629 8145 1992-04-20 2024-10-11 02:15:45.000 1992-04-20 2024-10-11 02:15:45 +8146 8146 8147 814.6 1629.2 8146 1992-04-21 2024-10-11 02:15:46.000 1992-04-21 2024-10-11 02:15:46 +8147 8147 8148 814.7 1629.4 8147 1992-04-22 2024-10-11 02:15:47.000 1992-04-22 2024-10-11 02:15:47 +8148 8148 8149 814.8 1629.6000000000001 8148 1992-04-23 2024-10-11 02:15:48.000 1992-04-23 2024-10-11 02:15:48 +8149 8149 8150 814.9 1629.8000000000002 8149 1992-04-24 2024-10-11 02:15:49.000 1992-04-24 2024-10-11 02:15:49 +8150 8150 8151 815 1630 8150 1992-04-25 2024-10-11 02:15:50.000 1992-04-25 2024-10-11 02:15:50 +8151 8151 8152 815.1 1630.2 8151 1992-04-26 2024-10-11 02:15:51.000 1992-04-26 2024-10-11 02:15:51 +8152 8152 8153 815.2 1630.4 8152 1992-04-27 2024-10-11 02:15:52.000 1992-04-27 2024-10-11 02:15:52 +8153 8153 8154 815.3 1630.6000000000001 8153 1992-04-28 2024-10-11 02:15:53.000 1992-04-28 2024-10-11 02:15:53 +8154 8154 8155 815.4 1630.8000000000002 8154 1992-04-29 2024-10-11 02:15:54.000 1992-04-29 2024-10-11 02:15:54 +8155 8155 8156 815.5 1631 8155 1992-04-30 2024-10-11 02:15:55.000 1992-04-30 2024-10-11 02:15:55 +8156 8156 8157 815.6 1631.2 8156 1992-05-01 2024-10-11 02:15:56.000 1992-05-01 2024-10-11 02:15:56 +8157 8157 8158 815.7 1631.4 8157 1992-05-02 2024-10-11 02:15:57.000 1992-05-02 2024-10-11 02:15:57 +8158 8158 8159 815.8 1631.6000000000001 8158 1992-05-03 2024-10-11 02:15:58.000 1992-05-03 2024-10-11 02:15:58 +8159 8159 8160 815.9 1631.8000000000002 8159 1992-05-04 2024-10-11 02:15:59.000 1992-05-04 2024-10-11 02:15:59 +8160 8160 8161 816 1632 8160 1992-05-05 2024-10-11 02:16:00.000 1992-05-05 2024-10-11 02:16:00 +8161 8161 8162 816.1 1632.2 8161 1992-05-06 2024-10-11 02:16:01.000 1992-05-06 2024-10-11 02:16:01 +8162 8162 8163 816.2 1632.4 8162 1992-05-07 2024-10-11 02:16:02.000 1992-05-07 2024-10-11 02:16:02 +8163 8163 8164 816.3 1632.6000000000001 8163 1992-05-08 2024-10-11 02:16:03.000 1992-05-08 2024-10-11 02:16:03 +8164 8164 8165 816.4 1632.8000000000002 8164 1992-05-09 2024-10-11 02:16:04.000 1992-05-09 2024-10-11 02:16:04 +8165 8165 8166 816.5 1633 8165 1992-05-10 2024-10-11 02:16:05.000 1992-05-10 2024-10-11 02:16:05 +8166 8166 8167 816.6 1633.2 8166 1992-05-11 2024-10-11 02:16:06.000 1992-05-11 2024-10-11 02:16:06 +8167 8167 8168 816.7 1633.4 8167 1992-05-12 2024-10-11 02:16:07.000 1992-05-12 2024-10-11 02:16:07 +8168 8168 8169 816.8 1633.6000000000001 8168 1992-05-13 2024-10-11 02:16:08.000 1992-05-13 2024-10-11 02:16:08 +8169 8169 8170 816.9 1633.8000000000002 8169 1992-05-14 2024-10-11 02:16:09.000 1992-05-14 2024-10-11 02:16:09 +8170 8170 8171 817 1634 8170 1992-05-15 2024-10-11 02:16:10.000 1992-05-15 2024-10-11 02:16:10 +8171 8171 8172 817.1 1634.2 8171 1992-05-16 2024-10-11 02:16:11.000 1992-05-16 2024-10-11 02:16:11 +8172 8172 8173 817.2 1634.4 8172 1992-05-17 2024-10-11 02:16:12.000 1992-05-17 2024-10-11 02:16:12 +8173 8173 8174 817.3 1634.6000000000001 8173 1992-05-18 2024-10-11 02:16:13.000 1992-05-18 2024-10-11 02:16:13 +8174 8174 8175 817.4 1634.8000000000002 8174 1992-05-19 2024-10-11 02:16:14.000 1992-05-19 2024-10-11 02:16:14 +8175 8175 8176 817.5 1635 8175 1992-05-20 2024-10-11 02:16:15.000 1992-05-20 2024-10-11 02:16:15 +8176 8176 8177 817.6 1635.2 8176 1992-05-21 2024-10-11 02:16:16.000 1992-05-21 2024-10-11 02:16:16 +8177 8177 8178 817.7 1635.4 8177 1992-05-22 2024-10-11 02:16:17.000 1992-05-22 2024-10-11 02:16:17 +8178 8178 8179 817.8 1635.6000000000001 8178 1992-05-23 2024-10-11 02:16:18.000 1992-05-23 2024-10-11 02:16:18 +8179 8179 8180 817.9 1635.8000000000002 8179 1992-05-24 2024-10-11 02:16:19.000 1992-05-24 2024-10-11 02:16:19 +8180 8180 8181 818 1636 8180 1992-05-25 2024-10-11 02:16:20.000 1992-05-25 2024-10-11 02:16:20 +8181 8181 8182 818.1 1636.2 8181 1992-05-26 2024-10-11 02:16:21.000 1992-05-26 2024-10-11 02:16:21 +8182 8182 8183 818.2 1636.4 8182 1992-05-27 2024-10-11 02:16:22.000 1992-05-27 2024-10-11 02:16:22 +8183 8183 8184 818.3 1636.6000000000001 8183 1992-05-28 2024-10-11 02:16:23.000 1992-05-28 2024-10-11 02:16:23 +8184 8184 8185 818.4 1636.8000000000002 8184 1992-05-29 2024-10-11 02:16:24.000 1992-05-29 2024-10-11 02:16:24 +8185 8185 8186 818.5 1637 8185 1992-05-30 2024-10-11 02:16:25.000 1992-05-30 2024-10-11 02:16:25 +8186 8186 8187 818.6 1637.2 8186 1992-05-31 2024-10-11 02:16:26.000 1992-05-31 2024-10-11 02:16:26 +8187 8187 8188 818.7 1637.4 8187 1992-06-01 2024-10-11 02:16:27.000 1992-06-01 2024-10-11 02:16:27 +8188 8188 8189 818.8 1637.6000000000001 8188 1992-06-02 2024-10-11 02:16:28.000 1992-06-02 2024-10-11 02:16:28 +8189 8189 8190 818.9 1637.8000000000002 8189 1992-06-03 2024-10-11 02:16:29.000 1992-06-03 2024-10-11 02:16:29 +8190 8190 8191 819 1638 8190 1992-06-04 2024-10-11 02:16:30.000 1992-06-04 2024-10-11 02:16:30 +8191 8191 8192 819.1 1638.2 8191 1992-06-05 2024-10-11 02:16:31.000 1992-06-05 2024-10-11 02:16:31 +8192 8192 8193 819.2 1638.4 8192 1992-06-06 2024-10-11 02:16:32.000 1992-06-06 2024-10-11 02:16:32 +8193 8193 8194 819.3 1638.6000000000001 8193 1992-06-07 2024-10-11 02:16:33.000 1992-06-07 2024-10-11 02:16:33 +8194 8194 8195 819.4 1638.8000000000002 8194 1992-06-08 2024-10-11 02:16:34.000 1992-06-08 2024-10-11 02:16:34 +8195 8195 8196 819.5 1639 8195 1992-06-09 2024-10-11 02:16:35.000 1992-06-09 2024-10-11 02:16:35 +8196 8196 8197 819.6 1639.2 8196 1992-06-10 2024-10-11 02:16:36.000 1992-06-10 2024-10-11 02:16:36 +8197 8197 8198 819.7 1639.4 8197 1992-06-11 2024-10-11 02:16:37.000 1992-06-11 2024-10-11 02:16:37 +8198 8198 8199 819.8 1639.6000000000001 8198 1992-06-12 2024-10-11 02:16:38.000 1992-06-12 2024-10-11 02:16:38 +8199 8199 8200 819.9 1639.8000000000002 8199 1992-06-13 2024-10-11 02:16:39.000 1992-06-13 2024-10-11 02:16:39 +8200 8200 8201 820 1640 8200 1992-06-14 2024-10-11 02:16:40.000 1992-06-14 2024-10-11 02:16:40 +8201 8201 8202 820.1 1640.2 8201 1992-06-15 2024-10-11 02:16:41.000 1992-06-15 2024-10-11 02:16:41 +8202 8202 8203 820.2 1640.4 8202 1992-06-16 2024-10-11 02:16:42.000 1992-06-16 2024-10-11 02:16:42 +8203 8203 8204 820.3 1640.6000000000001 8203 1992-06-17 2024-10-11 02:16:43.000 1992-06-17 2024-10-11 02:16:43 +8204 8204 8205 820.4 1640.8000000000002 8204 1992-06-18 2024-10-11 02:16:44.000 1992-06-18 2024-10-11 02:16:44 +8205 8205 8206 820.5 1641 8205 1992-06-19 2024-10-11 02:16:45.000 1992-06-19 2024-10-11 02:16:45 +8206 8206 8207 820.6 1641.2 8206 1992-06-20 2024-10-11 02:16:46.000 1992-06-20 2024-10-11 02:16:46 +8207 8207 8208 820.7 1641.4 8207 1992-06-21 2024-10-11 02:16:47.000 1992-06-21 2024-10-11 02:16:47 +8208 8208 8209 820.8 1641.6000000000001 8208 1992-06-22 2024-10-11 02:16:48.000 1992-06-22 2024-10-11 02:16:48 +8209 8209 8210 820.9 1641.8000000000002 8209 1992-06-23 2024-10-11 02:16:49.000 1992-06-23 2024-10-11 02:16:49 +8210 8210 8211 821 1642 8210 1992-06-24 2024-10-11 02:16:50.000 1992-06-24 2024-10-11 02:16:50 +8211 8211 8212 821.1 1642.2 8211 1992-06-25 2024-10-11 02:16:51.000 1992-06-25 2024-10-11 02:16:51 +8212 8212 8213 821.2 1642.4 8212 1992-06-26 2024-10-11 02:16:52.000 1992-06-26 2024-10-11 02:16:52 +8213 8213 8214 821.3 1642.6000000000001 8213 1992-06-27 2024-10-11 02:16:53.000 1992-06-27 2024-10-11 02:16:53 +8214 8214 8215 821.4 1642.8000000000002 8214 1992-06-28 2024-10-11 02:16:54.000 1992-06-28 2024-10-11 02:16:54 +8215 8215 8216 821.5 1643 8215 1992-06-29 2024-10-11 02:16:55.000 1992-06-29 2024-10-11 02:16:55 +8216 8216 8217 821.6 1643.2 8216 1992-06-30 2024-10-11 02:16:56.000 1992-06-30 2024-10-11 02:16:56 +8217 8217 8218 821.7 1643.4 8217 1992-07-01 2024-10-11 02:16:57.000 1992-07-01 2024-10-11 02:16:57 +8218 8218 8219 821.8 1643.6000000000001 8218 1992-07-02 2024-10-11 02:16:58.000 1992-07-02 2024-10-11 02:16:58 +8219 8219 8220 821.9 1643.8000000000002 8219 1992-07-03 2024-10-11 02:16:59.000 1992-07-03 2024-10-11 02:16:59 +8220 8220 8221 822 1644 8220 1992-07-04 2024-10-11 02:17:00.000 1992-07-04 2024-10-11 02:17:00 +8221 8221 8222 822.1 1644.2 8221 1992-07-05 2024-10-11 02:17:01.000 1992-07-05 2024-10-11 02:17:01 +8222 8222 8223 822.2 1644.4 8222 1992-07-06 2024-10-11 02:17:02.000 1992-07-06 2024-10-11 02:17:02 +8223 8223 8224 822.3 1644.6000000000001 8223 1992-07-07 2024-10-11 02:17:03.000 1992-07-07 2024-10-11 02:17:03 +8224 8224 8225 822.4 1644.8000000000002 8224 1992-07-08 2024-10-11 02:17:04.000 1992-07-08 2024-10-11 02:17:04 +8225 8225 8226 822.5 1645 8225 1992-07-09 2024-10-11 02:17:05.000 1992-07-09 2024-10-11 02:17:05 +8226 8226 8227 822.6 1645.2 8226 1992-07-10 2024-10-11 02:17:06.000 1992-07-10 2024-10-11 02:17:06 +8227 8227 8228 822.7 1645.4 8227 1992-07-11 2024-10-11 02:17:07.000 1992-07-11 2024-10-11 02:17:07 +8228 8228 8229 822.8 1645.6000000000001 8228 1992-07-12 2024-10-11 02:17:08.000 1992-07-12 2024-10-11 02:17:08 +8229 8229 8230 822.9 1645.8000000000002 8229 1992-07-13 2024-10-11 02:17:09.000 1992-07-13 2024-10-11 02:17:09 +8230 8230 8231 823 1646 8230 1992-07-14 2024-10-11 02:17:10.000 1992-07-14 2024-10-11 02:17:10 +8231 8231 8232 823.1 1646.2 8231 1992-07-15 2024-10-11 02:17:11.000 1992-07-15 2024-10-11 02:17:11 +8232 8232 8233 823.2 1646.4 8232 1992-07-16 2024-10-11 02:17:12.000 1992-07-16 2024-10-11 02:17:12 +8233 8233 8234 823.3 1646.6000000000001 8233 1992-07-17 2024-10-11 02:17:13.000 1992-07-17 2024-10-11 02:17:13 +8234 8234 8235 823.4 1646.8000000000002 8234 1992-07-18 2024-10-11 02:17:14.000 1992-07-18 2024-10-11 02:17:14 +8235 8235 8236 823.5 1647 8235 1992-07-19 2024-10-11 02:17:15.000 1992-07-19 2024-10-11 02:17:15 +8236 8236 8237 823.6 1647.2 8236 1992-07-20 2024-10-11 02:17:16.000 1992-07-20 2024-10-11 02:17:16 +8237 8237 8238 823.7 1647.4 8237 1992-07-21 2024-10-11 02:17:17.000 1992-07-21 2024-10-11 02:17:17 +8238 8238 8239 823.8 1647.6000000000001 8238 1992-07-22 2024-10-11 02:17:18.000 1992-07-22 2024-10-11 02:17:18 +8239 8239 8240 823.9 1647.8000000000002 8239 1992-07-23 2024-10-11 02:17:19.000 1992-07-23 2024-10-11 02:17:19 +8240 8240 8241 824 1648 8240 1992-07-24 2024-10-11 02:17:20.000 1992-07-24 2024-10-11 02:17:20 +8241 8241 8242 824.1 1648.2 8241 1992-07-25 2024-10-11 02:17:21.000 1992-07-25 2024-10-11 02:17:21 +8242 8242 8243 824.2 1648.4 8242 1992-07-26 2024-10-11 02:17:22.000 1992-07-26 2024-10-11 02:17:22 +8243 8243 8244 824.3 1648.6000000000001 8243 1992-07-27 2024-10-11 02:17:23.000 1992-07-27 2024-10-11 02:17:23 +8244 8244 8245 824.4 1648.8000000000002 8244 1992-07-28 2024-10-11 02:17:24.000 1992-07-28 2024-10-11 02:17:24 +8245 8245 8246 824.5 1649 8245 1992-07-29 2024-10-11 02:17:25.000 1992-07-29 2024-10-11 02:17:25 +8246 8246 8247 824.6 1649.2 8246 1992-07-30 2024-10-11 02:17:26.000 1992-07-30 2024-10-11 02:17:26 +8247 8247 8248 824.7 1649.4 8247 1992-07-31 2024-10-11 02:17:27.000 1992-07-31 2024-10-11 02:17:27 +8248 8248 8249 824.8 1649.6000000000001 8248 1992-08-01 2024-10-11 02:17:28.000 1992-08-01 2024-10-11 02:17:28 +8249 8249 8250 824.9 1649.8000000000002 8249 1992-08-02 2024-10-11 02:17:29.000 1992-08-02 2024-10-11 02:17:29 +8250 8250 8251 825 1650 8250 1992-08-03 2024-10-11 02:17:30.000 1992-08-03 2024-10-11 02:17:30 +8251 8251 8252 825.1 1650.2 8251 1992-08-04 2024-10-11 02:17:31.000 1992-08-04 2024-10-11 02:17:31 +8252 8252 8253 825.2 1650.4 8252 1992-08-05 2024-10-11 02:17:32.000 1992-08-05 2024-10-11 02:17:32 +8253 8253 8254 825.3 1650.6000000000001 8253 1992-08-06 2024-10-11 02:17:33.000 1992-08-06 2024-10-11 02:17:33 +8254 8254 8255 825.4 1650.8000000000002 8254 1992-08-07 2024-10-11 02:17:34.000 1992-08-07 2024-10-11 02:17:34 +8255 8255 8256 825.5 1651 8255 1992-08-08 2024-10-11 02:17:35.000 1992-08-08 2024-10-11 02:17:35 +8256 8256 8257 825.6 1651.2 8256 1992-08-09 2024-10-11 02:17:36.000 1992-08-09 2024-10-11 02:17:36 +8257 8257 8258 825.7 1651.4 8257 1992-08-10 2024-10-11 02:17:37.000 1992-08-10 2024-10-11 02:17:37 +8258 8258 8259 825.8 1651.6000000000001 8258 1992-08-11 2024-10-11 02:17:38.000 1992-08-11 2024-10-11 02:17:38 +8259 8259 8260 825.9 1651.8000000000002 8259 1992-08-12 2024-10-11 02:17:39.000 1992-08-12 2024-10-11 02:17:39 +8260 8260 8261 826 1652 8260 1992-08-13 2024-10-11 02:17:40.000 1992-08-13 2024-10-11 02:17:40 +8261 8261 8262 826.1 1652.2 8261 1992-08-14 2024-10-11 02:17:41.000 1992-08-14 2024-10-11 02:17:41 +8262 8262 8263 826.2 1652.4 8262 1992-08-15 2024-10-11 02:17:42.000 1992-08-15 2024-10-11 02:17:42 +8263 8263 8264 826.3 1652.6000000000001 8263 1992-08-16 2024-10-11 02:17:43.000 1992-08-16 2024-10-11 02:17:43 +8264 8264 8265 826.4 1652.8000000000002 8264 1992-08-17 2024-10-11 02:17:44.000 1992-08-17 2024-10-11 02:17:44 +8265 8265 8266 826.5 1653 8265 1992-08-18 2024-10-11 02:17:45.000 1992-08-18 2024-10-11 02:17:45 +8266 8266 8267 826.6 1653.2 8266 1992-08-19 2024-10-11 02:17:46.000 1992-08-19 2024-10-11 02:17:46 +8267 8267 8268 826.7 1653.4 8267 1992-08-20 2024-10-11 02:17:47.000 1992-08-20 2024-10-11 02:17:47 +8268 8268 8269 826.8 1653.6000000000001 8268 1992-08-21 2024-10-11 02:17:48.000 1992-08-21 2024-10-11 02:17:48 +8269 8269 8270 826.9 1653.8000000000002 8269 1992-08-22 2024-10-11 02:17:49.000 1992-08-22 2024-10-11 02:17:49 +8270 8270 8271 827 1654 8270 1992-08-23 2024-10-11 02:17:50.000 1992-08-23 2024-10-11 02:17:50 +8271 8271 8272 827.1 1654.2 8271 1992-08-24 2024-10-11 02:17:51.000 1992-08-24 2024-10-11 02:17:51 +8272 8272 8273 827.2 1654.4 8272 1992-08-25 2024-10-11 02:17:52.000 1992-08-25 2024-10-11 02:17:52 +8273 8273 8274 827.3 1654.6000000000001 8273 1992-08-26 2024-10-11 02:17:53.000 1992-08-26 2024-10-11 02:17:53 +8274 8274 8275 827.4 1654.8000000000002 8274 1992-08-27 2024-10-11 02:17:54.000 1992-08-27 2024-10-11 02:17:54 +8275 8275 8276 827.5 1655 8275 1992-08-28 2024-10-11 02:17:55.000 1992-08-28 2024-10-11 02:17:55 +8276 8276 8277 827.6 1655.2 8276 1992-08-29 2024-10-11 02:17:56.000 1992-08-29 2024-10-11 02:17:56 +8277 8277 8278 827.7 1655.4 8277 1992-08-30 2024-10-11 02:17:57.000 1992-08-30 2024-10-11 02:17:57 +8278 8278 8279 827.8 1655.6000000000001 8278 1992-08-31 2024-10-11 02:17:58.000 1992-08-31 2024-10-11 02:17:58 +8279 8279 8280 827.9 1655.8000000000002 8279 1992-09-01 2024-10-11 02:17:59.000 1992-09-01 2024-10-11 02:17:59 +8280 8280 8281 828 1656 8280 1992-09-02 2024-10-11 02:18:00.000 1992-09-02 2024-10-11 02:18:00 +8281 8281 8282 828.1 1656.2 8281 1992-09-03 2024-10-11 02:18:01.000 1992-09-03 2024-10-11 02:18:01 +8282 8282 8283 828.2 1656.4 8282 1992-09-04 2024-10-11 02:18:02.000 1992-09-04 2024-10-11 02:18:02 +8283 8283 8284 828.3 1656.6000000000001 8283 1992-09-05 2024-10-11 02:18:03.000 1992-09-05 2024-10-11 02:18:03 +8284 8284 8285 828.4 1656.8000000000002 8284 1992-09-06 2024-10-11 02:18:04.000 1992-09-06 2024-10-11 02:18:04 +8285 8285 8286 828.5 1657 8285 1992-09-07 2024-10-11 02:18:05.000 1992-09-07 2024-10-11 02:18:05 +8286 8286 8287 828.6 1657.2 8286 1992-09-08 2024-10-11 02:18:06.000 1992-09-08 2024-10-11 02:18:06 +8287 8287 8288 828.7 1657.4 8287 1992-09-09 2024-10-11 02:18:07.000 1992-09-09 2024-10-11 02:18:07 +8288 8288 8289 828.8 1657.6000000000001 8288 1992-09-10 2024-10-11 02:18:08.000 1992-09-10 2024-10-11 02:18:08 +8289 8289 8290 828.9 1657.8000000000002 8289 1992-09-11 2024-10-11 02:18:09.000 1992-09-11 2024-10-11 02:18:09 +8290 8290 8291 829 1658 8290 1992-09-12 2024-10-11 02:18:10.000 1992-09-12 2024-10-11 02:18:10 +8291 8291 8292 829.1 1658.2 8291 1992-09-13 2024-10-11 02:18:11.000 1992-09-13 2024-10-11 02:18:11 +8292 8292 8293 829.2 1658.4 8292 1992-09-14 2024-10-11 02:18:12.000 1992-09-14 2024-10-11 02:18:12 +8293 8293 8294 829.3 1658.6000000000001 8293 1992-09-15 2024-10-11 02:18:13.000 1992-09-15 2024-10-11 02:18:13 +8294 8294 8295 829.4 1658.8000000000002 8294 1992-09-16 2024-10-11 02:18:14.000 1992-09-16 2024-10-11 02:18:14 +8295 8295 8296 829.5 1659 8295 1992-09-17 2024-10-11 02:18:15.000 1992-09-17 2024-10-11 02:18:15 +8296 8296 8297 829.6 1659.2 8296 1992-09-18 2024-10-11 02:18:16.000 1992-09-18 2024-10-11 02:18:16 +8297 8297 8298 829.7 1659.4 8297 1992-09-19 2024-10-11 02:18:17.000 1992-09-19 2024-10-11 02:18:17 +8298 8298 8299 829.8 1659.6000000000001 8298 1992-09-20 2024-10-11 02:18:18.000 1992-09-20 2024-10-11 02:18:18 +8299 8299 8300 829.9 1659.8000000000002 8299 1992-09-21 2024-10-11 02:18:19.000 1992-09-21 2024-10-11 02:18:19 +8300 8300 8301 830 1660 8300 1992-09-22 2024-10-11 02:18:20.000 1992-09-22 2024-10-11 02:18:20 +8301 8301 8302 830.1 1660.2 8301 1992-09-23 2024-10-11 02:18:21.000 1992-09-23 2024-10-11 02:18:21 +8302 8302 8303 830.2 1660.4 8302 1992-09-24 2024-10-11 02:18:22.000 1992-09-24 2024-10-11 02:18:22 +8303 8303 8304 830.3 1660.6000000000001 8303 1992-09-25 2024-10-11 02:18:23.000 1992-09-25 2024-10-11 02:18:23 +8304 8304 8305 830.4 1660.8000000000002 8304 1992-09-26 2024-10-11 02:18:24.000 1992-09-26 2024-10-11 02:18:24 +8305 8305 8306 830.5 1661 8305 1992-09-27 2024-10-11 02:18:25.000 1992-09-27 2024-10-11 02:18:25 +8306 8306 8307 830.6 1661.2 8306 1992-09-28 2024-10-11 02:18:26.000 1992-09-28 2024-10-11 02:18:26 +8307 8307 8308 830.7 1661.4 8307 1992-09-29 2024-10-11 02:18:27.000 1992-09-29 2024-10-11 02:18:27 +8308 8308 8309 830.8 1661.6000000000001 8308 1992-09-30 2024-10-11 02:18:28.000 1992-09-30 2024-10-11 02:18:28 +8309 8309 8310 830.9 1661.8000000000002 8309 1992-10-01 2024-10-11 02:18:29.000 1992-10-01 2024-10-11 02:18:29 +8310 8310 8311 831 1662 8310 1992-10-02 2024-10-11 02:18:30.000 1992-10-02 2024-10-11 02:18:30 +8311 8311 8312 831.1 1662.2 8311 1992-10-03 2024-10-11 02:18:31.000 1992-10-03 2024-10-11 02:18:31 +8312 8312 8313 831.2 1662.4 8312 1992-10-04 2024-10-11 02:18:32.000 1992-10-04 2024-10-11 02:18:32 +8313 8313 8314 831.3 1662.6000000000001 8313 1992-10-05 2024-10-11 02:18:33.000 1992-10-05 2024-10-11 02:18:33 +8314 8314 8315 831.4 1662.8000000000002 8314 1992-10-06 2024-10-11 02:18:34.000 1992-10-06 2024-10-11 02:18:34 +8315 8315 8316 831.5 1663 8315 1992-10-07 2024-10-11 02:18:35.000 1992-10-07 2024-10-11 02:18:35 +8316 8316 8317 831.6 1663.2 8316 1992-10-08 2024-10-11 02:18:36.000 1992-10-08 2024-10-11 02:18:36 +8317 8317 8318 831.7 1663.4 8317 1992-10-09 2024-10-11 02:18:37.000 1992-10-09 2024-10-11 02:18:37 +8318 8318 8319 831.8 1663.6000000000001 8318 1992-10-10 2024-10-11 02:18:38.000 1992-10-10 2024-10-11 02:18:38 +8319 8319 8320 831.9 1663.8000000000002 8319 1992-10-11 2024-10-11 02:18:39.000 1992-10-11 2024-10-11 02:18:39 +8320 8320 8321 832 1664 8320 1992-10-12 2024-10-11 02:18:40.000 1992-10-12 2024-10-11 02:18:40 +8321 8321 8322 832.1 1664.2 8321 1992-10-13 2024-10-11 02:18:41.000 1992-10-13 2024-10-11 02:18:41 +8322 8322 8323 832.2 1664.4 8322 1992-10-14 2024-10-11 02:18:42.000 1992-10-14 2024-10-11 02:18:42 +8323 8323 8324 832.3 1664.6000000000001 8323 1992-10-15 2024-10-11 02:18:43.000 1992-10-15 2024-10-11 02:18:43 +8324 8324 8325 832.4 1664.8000000000002 8324 1992-10-16 2024-10-11 02:18:44.000 1992-10-16 2024-10-11 02:18:44 +8325 8325 8326 832.5 1665 8325 1992-10-17 2024-10-11 02:18:45.000 1992-10-17 2024-10-11 02:18:45 +8326 8326 8327 832.6 1665.2 8326 1992-10-18 2024-10-11 02:18:46.000 1992-10-18 2024-10-11 02:18:46 +8327 8327 8328 832.7 1665.4 8327 1992-10-19 2024-10-11 02:18:47.000 1992-10-19 2024-10-11 02:18:47 +8328 8328 8329 832.8 1665.6000000000001 8328 1992-10-20 2024-10-11 02:18:48.000 1992-10-20 2024-10-11 02:18:48 +8329 8329 8330 832.9 1665.8000000000002 8329 1992-10-21 2024-10-11 02:18:49.000 1992-10-21 2024-10-11 02:18:49 +8330 8330 8331 833 1666 8330 1992-10-22 2024-10-11 02:18:50.000 1992-10-22 2024-10-11 02:18:50 +8331 8331 8332 833.1 1666.2 8331 1992-10-23 2024-10-11 02:18:51.000 1992-10-23 2024-10-11 02:18:51 +8332 8332 8333 833.2 1666.4 8332 1992-10-24 2024-10-11 02:18:52.000 1992-10-24 2024-10-11 02:18:52 +8333 8333 8334 833.3 1666.6000000000001 8333 1992-10-25 2024-10-11 02:18:53.000 1992-10-25 2024-10-11 02:18:53 +8334 8334 8335 833.4 1666.8000000000002 8334 1992-10-26 2024-10-11 02:18:54.000 1992-10-26 2024-10-11 02:18:54 +8335 8335 8336 833.5 1667 8335 1992-10-27 2024-10-11 02:18:55.000 1992-10-27 2024-10-11 02:18:55 +8336 8336 8337 833.6 1667.2 8336 1992-10-28 2024-10-11 02:18:56.000 1992-10-28 2024-10-11 02:18:56 +8337 8337 8338 833.7 1667.4 8337 1992-10-29 2024-10-11 02:18:57.000 1992-10-29 2024-10-11 02:18:57 +8338 8338 8339 833.8 1667.6000000000001 8338 1992-10-30 2024-10-11 02:18:58.000 1992-10-30 2024-10-11 02:18:58 +8339 8339 8340 833.9 1667.8000000000002 8339 1992-10-31 2024-10-11 02:18:59.000 1992-10-31 2024-10-11 02:18:59 +8340 8340 8341 834 1668 8340 1992-11-01 2024-10-11 02:19:00.000 1992-11-01 2024-10-11 02:19:00 +8341 8341 8342 834.1 1668.2 8341 1992-11-02 2024-10-11 02:19:01.000 1992-11-02 2024-10-11 02:19:01 +8342 8342 8343 834.2 1668.4 8342 1992-11-03 2024-10-11 02:19:02.000 1992-11-03 2024-10-11 02:19:02 +8343 8343 8344 834.3 1668.6000000000001 8343 1992-11-04 2024-10-11 02:19:03.000 1992-11-04 2024-10-11 02:19:03 +8344 8344 8345 834.4 1668.8000000000002 8344 1992-11-05 2024-10-11 02:19:04.000 1992-11-05 2024-10-11 02:19:04 +8345 8345 8346 834.5 1669 8345 1992-11-06 2024-10-11 02:19:05.000 1992-11-06 2024-10-11 02:19:05 +8346 8346 8347 834.6 1669.2 8346 1992-11-07 2024-10-11 02:19:06.000 1992-11-07 2024-10-11 02:19:06 +8347 8347 8348 834.7 1669.4 8347 1992-11-08 2024-10-11 02:19:07.000 1992-11-08 2024-10-11 02:19:07 +8348 8348 8349 834.8 1669.6000000000001 8348 1992-11-09 2024-10-11 02:19:08.000 1992-11-09 2024-10-11 02:19:08 +8349 8349 8350 834.9 1669.8000000000002 8349 1992-11-10 2024-10-11 02:19:09.000 1992-11-10 2024-10-11 02:19:09 +8350 8350 8351 835 1670 8350 1992-11-11 2024-10-11 02:19:10.000 1992-11-11 2024-10-11 02:19:10 +8351 8351 8352 835.1 1670.2 8351 1992-11-12 2024-10-11 02:19:11.000 1992-11-12 2024-10-11 02:19:11 +8352 8352 8353 835.2 1670.4 8352 1992-11-13 2024-10-11 02:19:12.000 1992-11-13 2024-10-11 02:19:12 +8353 8353 8354 835.3 1670.6000000000001 8353 1992-11-14 2024-10-11 02:19:13.000 1992-11-14 2024-10-11 02:19:13 +8354 8354 8355 835.4 1670.8000000000002 8354 1992-11-15 2024-10-11 02:19:14.000 1992-11-15 2024-10-11 02:19:14 +8355 8355 8356 835.5 1671 8355 1992-11-16 2024-10-11 02:19:15.000 1992-11-16 2024-10-11 02:19:15 +8356 8356 8357 835.6 1671.2 8356 1992-11-17 2024-10-11 02:19:16.000 1992-11-17 2024-10-11 02:19:16 +8357 8357 8358 835.7 1671.4 8357 1992-11-18 2024-10-11 02:19:17.000 1992-11-18 2024-10-11 02:19:17 +8358 8358 8359 835.8 1671.6000000000001 8358 1992-11-19 2024-10-11 02:19:18.000 1992-11-19 2024-10-11 02:19:18 +8359 8359 8360 835.9 1671.8000000000002 8359 1992-11-20 2024-10-11 02:19:19.000 1992-11-20 2024-10-11 02:19:19 +8360 8360 8361 836 1672 8360 1992-11-21 2024-10-11 02:19:20.000 1992-11-21 2024-10-11 02:19:20 +8361 8361 8362 836.1 1672.2 8361 1992-11-22 2024-10-11 02:19:21.000 1992-11-22 2024-10-11 02:19:21 +8362 8362 8363 836.2 1672.4 8362 1992-11-23 2024-10-11 02:19:22.000 1992-11-23 2024-10-11 02:19:22 +8363 8363 8364 836.3 1672.6000000000001 8363 1992-11-24 2024-10-11 02:19:23.000 1992-11-24 2024-10-11 02:19:23 +8364 8364 8365 836.4 1672.8000000000002 8364 1992-11-25 2024-10-11 02:19:24.000 1992-11-25 2024-10-11 02:19:24 +8365 8365 8366 836.5 1673 8365 1992-11-26 2024-10-11 02:19:25.000 1992-11-26 2024-10-11 02:19:25 +8366 8366 8367 836.6 1673.2 8366 1992-11-27 2024-10-11 02:19:26.000 1992-11-27 2024-10-11 02:19:26 +8367 8367 8368 836.7 1673.4 8367 1992-11-28 2024-10-11 02:19:27.000 1992-11-28 2024-10-11 02:19:27 +8368 8368 8369 836.8 1673.6000000000001 8368 1992-11-29 2024-10-11 02:19:28.000 1992-11-29 2024-10-11 02:19:28 +8369 8369 8370 836.9 1673.8000000000002 8369 1992-11-30 2024-10-11 02:19:29.000 1992-11-30 2024-10-11 02:19:29 +8370 8370 8371 837 1674 8370 1992-12-01 2024-10-11 02:19:30.000 1992-12-01 2024-10-11 02:19:30 +8371 8371 8372 837.1 1674.2 8371 1992-12-02 2024-10-11 02:19:31.000 1992-12-02 2024-10-11 02:19:31 +8372 8372 8373 837.2 1674.4 8372 1992-12-03 2024-10-11 02:19:32.000 1992-12-03 2024-10-11 02:19:32 +8373 8373 8374 837.3 1674.6000000000001 8373 1992-12-04 2024-10-11 02:19:33.000 1992-12-04 2024-10-11 02:19:33 +8374 8374 8375 837.4 1674.8000000000002 8374 1992-12-05 2024-10-11 02:19:34.000 1992-12-05 2024-10-11 02:19:34 +8375 8375 8376 837.5 1675 8375 1992-12-06 2024-10-11 02:19:35.000 1992-12-06 2024-10-11 02:19:35 +8376 8376 8377 837.6 1675.2 8376 1992-12-07 2024-10-11 02:19:36.000 1992-12-07 2024-10-11 02:19:36 +8377 8377 8378 837.7 1675.4 8377 1992-12-08 2024-10-11 02:19:37.000 1992-12-08 2024-10-11 02:19:37 +8378 8378 8379 837.8 1675.6000000000001 8378 1992-12-09 2024-10-11 02:19:38.000 1992-12-09 2024-10-11 02:19:38 +8379 8379 8380 837.9 1675.8000000000002 8379 1992-12-10 2024-10-11 02:19:39.000 1992-12-10 2024-10-11 02:19:39 +8380 8380 8381 838 1676 8380 1992-12-11 2024-10-11 02:19:40.000 1992-12-11 2024-10-11 02:19:40 +8381 8381 8382 838.1 1676.2 8381 1992-12-12 2024-10-11 02:19:41.000 1992-12-12 2024-10-11 02:19:41 +8382 8382 8383 838.2 1676.4 8382 1992-12-13 2024-10-11 02:19:42.000 1992-12-13 2024-10-11 02:19:42 +8383 8383 8384 838.3 1676.6000000000001 8383 1992-12-14 2024-10-11 02:19:43.000 1992-12-14 2024-10-11 02:19:43 +8384 8384 8385 838.4 1676.8000000000002 8384 1992-12-15 2024-10-11 02:19:44.000 1992-12-15 2024-10-11 02:19:44 +8385 8385 8386 838.5 1677 8385 1992-12-16 2024-10-11 02:19:45.000 1992-12-16 2024-10-11 02:19:45 +8386 8386 8387 838.6 1677.2 8386 1992-12-17 2024-10-11 02:19:46.000 1992-12-17 2024-10-11 02:19:46 +8387 8387 8388 838.7 1677.4 8387 1992-12-18 2024-10-11 02:19:47.000 1992-12-18 2024-10-11 02:19:47 +8388 8388 8389 838.8 1677.6000000000001 8388 1992-12-19 2024-10-11 02:19:48.000 1992-12-19 2024-10-11 02:19:48 +8389 8389 8390 838.9 1677.8000000000002 8389 1992-12-20 2024-10-11 02:19:49.000 1992-12-20 2024-10-11 02:19:49 +8390 8390 8391 839 1678 8390 1992-12-21 2024-10-11 02:19:50.000 1992-12-21 2024-10-11 02:19:50 +8391 8391 8392 839.1 1678.2 8391 1992-12-22 2024-10-11 02:19:51.000 1992-12-22 2024-10-11 02:19:51 +8392 8392 8393 839.2 1678.4 8392 1992-12-23 2024-10-11 02:19:52.000 1992-12-23 2024-10-11 02:19:52 +8393 8393 8394 839.3 1678.6000000000001 8393 1992-12-24 2024-10-11 02:19:53.000 1992-12-24 2024-10-11 02:19:53 +8394 8394 8395 839.4 1678.8000000000002 8394 1992-12-25 2024-10-11 02:19:54.000 1992-12-25 2024-10-11 02:19:54 +8395 8395 8396 839.5 1679 8395 1992-12-26 2024-10-11 02:19:55.000 1992-12-26 2024-10-11 02:19:55 +8396 8396 8397 839.6 1679.2 8396 1992-12-27 2024-10-11 02:19:56.000 1992-12-27 2024-10-11 02:19:56 +8397 8397 8398 839.7 1679.4 8397 1992-12-28 2024-10-11 02:19:57.000 1992-12-28 2024-10-11 02:19:57 +8398 8398 8399 839.8 1679.6000000000001 8398 1992-12-29 2024-10-11 02:19:58.000 1992-12-29 2024-10-11 02:19:58 +8399 8399 8400 839.9 1679.8000000000002 8399 1992-12-30 2024-10-11 02:19:59.000 1992-12-30 2024-10-11 02:19:59 +8400 8400 8401 840 1680 8400 1992-12-31 2024-10-11 02:20:00.000 1992-12-31 2024-10-11 02:20:00 +8401 8401 8402 840.1 1680.2 8401 1993-01-01 2024-10-11 02:20:01.000 1993-01-01 2024-10-11 02:20:01 +8402 8402 8403 840.2 1680.4 8402 1993-01-02 2024-10-11 02:20:02.000 1993-01-02 2024-10-11 02:20:02 +8403 8403 8404 840.3 1680.6000000000001 8403 1993-01-03 2024-10-11 02:20:03.000 1993-01-03 2024-10-11 02:20:03 +8404 8404 8405 840.4 1680.8000000000002 8404 1993-01-04 2024-10-11 02:20:04.000 1993-01-04 2024-10-11 02:20:04 +8405 8405 8406 840.5 1681 8405 1993-01-05 2024-10-11 02:20:05.000 1993-01-05 2024-10-11 02:20:05 +8406 8406 8407 840.6 1681.2 8406 1993-01-06 2024-10-11 02:20:06.000 1993-01-06 2024-10-11 02:20:06 +8407 8407 8408 840.7 1681.4 8407 1993-01-07 2024-10-11 02:20:07.000 1993-01-07 2024-10-11 02:20:07 +8408 8408 8409 840.8 1681.6000000000001 8408 1993-01-08 2024-10-11 02:20:08.000 1993-01-08 2024-10-11 02:20:08 +8409 8409 8410 840.9 1681.8000000000002 8409 1993-01-09 2024-10-11 02:20:09.000 1993-01-09 2024-10-11 02:20:09 +8410 8410 8411 841 1682 8410 1993-01-10 2024-10-11 02:20:10.000 1993-01-10 2024-10-11 02:20:10 +8411 8411 8412 841.1 1682.2 8411 1993-01-11 2024-10-11 02:20:11.000 1993-01-11 2024-10-11 02:20:11 +8412 8412 8413 841.2 1682.4 8412 1993-01-12 2024-10-11 02:20:12.000 1993-01-12 2024-10-11 02:20:12 +8413 8413 8414 841.3 1682.6000000000001 8413 1993-01-13 2024-10-11 02:20:13.000 1993-01-13 2024-10-11 02:20:13 +8414 8414 8415 841.4 1682.8000000000002 8414 1993-01-14 2024-10-11 02:20:14.000 1993-01-14 2024-10-11 02:20:14 +8415 8415 8416 841.5 1683 8415 1993-01-15 2024-10-11 02:20:15.000 1993-01-15 2024-10-11 02:20:15 +8416 8416 8417 841.6 1683.2 8416 1993-01-16 2024-10-11 02:20:16.000 1993-01-16 2024-10-11 02:20:16 +8417 8417 8418 841.7 1683.4 8417 1993-01-17 2024-10-11 02:20:17.000 1993-01-17 2024-10-11 02:20:17 +8418 8418 8419 841.8 1683.6000000000001 8418 1993-01-18 2024-10-11 02:20:18.000 1993-01-18 2024-10-11 02:20:18 +8419 8419 8420 841.9 1683.8000000000002 8419 1993-01-19 2024-10-11 02:20:19.000 1993-01-19 2024-10-11 02:20:19 +8420 8420 8421 842 1684 8420 1993-01-20 2024-10-11 02:20:20.000 1993-01-20 2024-10-11 02:20:20 +8421 8421 8422 842.1 1684.2 8421 1993-01-21 2024-10-11 02:20:21.000 1993-01-21 2024-10-11 02:20:21 +8422 8422 8423 842.2 1684.4 8422 1993-01-22 2024-10-11 02:20:22.000 1993-01-22 2024-10-11 02:20:22 +8423 8423 8424 842.3 1684.6000000000001 8423 1993-01-23 2024-10-11 02:20:23.000 1993-01-23 2024-10-11 02:20:23 +8424 8424 8425 842.4 1684.8000000000002 8424 1993-01-24 2024-10-11 02:20:24.000 1993-01-24 2024-10-11 02:20:24 +8425 8425 8426 842.5 1685 8425 1993-01-25 2024-10-11 02:20:25.000 1993-01-25 2024-10-11 02:20:25 +8426 8426 8427 842.6 1685.2 8426 1993-01-26 2024-10-11 02:20:26.000 1993-01-26 2024-10-11 02:20:26 +8427 8427 8428 842.7 1685.4 8427 1993-01-27 2024-10-11 02:20:27.000 1993-01-27 2024-10-11 02:20:27 +8428 8428 8429 842.8 1685.6000000000001 8428 1993-01-28 2024-10-11 02:20:28.000 1993-01-28 2024-10-11 02:20:28 +8429 8429 8430 842.9 1685.8000000000002 8429 1993-01-29 2024-10-11 02:20:29.000 1993-01-29 2024-10-11 02:20:29 +8430 8430 8431 843 1686 8430 1993-01-30 2024-10-11 02:20:30.000 1993-01-30 2024-10-11 02:20:30 +8431 8431 8432 843.1 1686.2 8431 1993-01-31 2024-10-11 02:20:31.000 1993-01-31 2024-10-11 02:20:31 +8432 8432 8433 843.2 1686.4 8432 1993-02-01 2024-10-11 02:20:32.000 1993-02-01 2024-10-11 02:20:32 +8433 8433 8434 843.3 1686.6000000000001 8433 1993-02-02 2024-10-11 02:20:33.000 1993-02-02 2024-10-11 02:20:33 +8434 8434 8435 843.4 1686.8000000000002 8434 1993-02-03 2024-10-11 02:20:34.000 1993-02-03 2024-10-11 02:20:34 +8435 8435 8436 843.5 1687 8435 1993-02-04 2024-10-11 02:20:35.000 1993-02-04 2024-10-11 02:20:35 +8436 8436 8437 843.6 1687.2 8436 1993-02-05 2024-10-11 02:20:36.000 1993-02-05 2024-10-11 02:20:36 +8437 8437 8438 843.7 1687.4 8437 1993-02-06 2024-10-11 02:20:37.000 1993-02-06 2024-10-11 02:20:37 +8438 8438 8439 843.8 1687.6000000000001 8438 1993-02-07 2024-10-11 02:20:38.000 1993-02-07 2024-10-11 02:20:38 +8439 8439 8440 843.9 1687.8000000000002 8439 1993-02-08 2024-10-11 02:20:39.000 1993-02-08 2024-10-11 02:20:39 +8440 8440 8441 844 1688 8440 1993-02-09 2024-10-11 02:20:40.000 1993-02-09 2024-10-11 02:20:40 +8441 8441 8442 844.1 1688.2 8441 1993-02-10 2024-10-11 02:20:41.000 1993-02-10 2024-10-11 02:20:41 +8442 8442 8443 844.2 1688.4 8442 1993-02-11 2024-10-11 02:20:42.000 1993-02-11 2024-10-11 02:20:42 +8443 8443 8444 844.3 1688.6000000000001 8443 1993-02-12 2024-10-11 02:20:43.000 1993-02-12 2024-10-11 02:20:43 +8444 8444 8445 844.4 1688.8000000000002 8444 1993-02-13 2024-10-11 02:20:44.000 1993-02-13 2024-10-11 02:20:44 +8445 8445 8446 844.5 1689 8445 1993-02-14 2024-10-11 02:20:45.000 1993-02-14 2024-10-11 02:20:45 +8446 8446 8447 844.6 1689.2 8446 1993-02-15 2024-10-11 02:20:46.000 1993-02-15 2024-10-11 02:20:46 +8447 8447 8448 844.7 1689.4 8447 1993-02-16 2024-10-11 02:20:47.000 1993-02-16 2024-10-11 02:20:47 +8448 8448 8449 844.8 1689.6000000000001 8448 1993-02-17 2024-10-11 02:20:48.000 1993-02-17 2024-10-11 02:20:48 +8449 8449 8450 844.9 1689.8000000000002 8449 1993-02-18 2024-10-11 02:20:49.000 1993-02-18 2024-10-11 02:20:49 +8450 8450 8451 845 1690 8450 1993-02-19 2024-10-11 02:20:50.000 1993-02-19 2024-10-11 02:20:50 +8451 8451 8452 845.1 1690.2 8451 1993-02-20 2024-10-11 02:20:51.000 1993-02-20 2024-10-11 02:20:51 +8452 8452 8453 845.2 1690.4 8452 1993-02-21 2024-10-11 02:20:52.000 1993-02-21 2024-10-11 02:20:52 +8453 8453 8454 845.3 1690.6000000000001 8453 1993-02-22 2024-10-11 02:20:53.000 1993-02-22 2024-10-11 02:20:53 +8454 8454 8455 845.4 1690.8000000000002 8454 1993-02-23 2024-10-11 02:20:54.000 1993-02-23 2024-10-11 02:20:54 +8455 8455 8456 845.5 1691 8455 1993-02-24 2024-10-11 02:20:55.000 1993-02-24 2024-10-11 02:20:55 +8456 8456 8457 845.6 1691.2 8456 1993-02-25 2024-10-11 02:20:56.000 1993-02-25 2024-10-11 02:20:56 +8457 8457 8458 845.7 1691.4 8457 1993-02-26 2024-10-11 02:20:57.000 1993-02-26 2024-10-11 02:20:57 +8458 8458 8459 845.8 1691.6000000000001 8458 1993-02-27 2024-10-11 02:20:58.000 1993-02-27 2024-10-11 02:20:58 +8459 8459 8460 845.9 1691.8000000000002 8459 1993-02-28 2024-10-11 02:20:59.000 1993-02-28 2024-10-11 02:20:59 +8460 8460 8461 846 1692 8460 1993-03-01 2024-10-11 02:21:00.000 1993-03-01 2024-10-11 02:21:00 +8461 8461 8462 846.1 1692.2 8461 1993-03-02 2024-10-11 02:21:01.000 1993-03-02 2024-10-11 02:21:01 +8462 8462 8463 846.2 1692.4 8462 1993-03-03 2024-10-11 02:21:02.000 1993-03-03 2024-10-11 02:21:02 +8463 8463 8464 846.3 1692.6000000000001 8463 1993-03-04 2024-10-11 02:21:03.000 1993-03-04 2024-10-11 02:21:03 +8464 8464 8465 846.4 1692.8000000000002 8464 1993-03-05 2024-10-11 02:21:04.000 1993-03-05 2024-10-11 02:21:04 +8465 8465 8466 846.5 1693 8465 1993-03-06 2024-10-11 02:21:05.000 1993-03-06 2024-10-11 02:21:05 +8466 8466 8467 846.6 1693.2 8466 1993-03-07 2024-10-11 02:21:06.000 1993-03-07 2024-10-11 02:21:06 +8467 8467 8468 846.7 1693.4 8467 1993-03-08 2024-10-11 02:21:07.000 1993-03-08 2024-10-11 02:21:07 +8468 8468 8469 846.8 1693.6000000000001 8468 1993-03-09 2024-10-11 02:21:08.000 1993-03-09 2024-10-11 02:21:08 +8469 8469 8470 846.9 1693.8000000000002 8469 1993-03-10 2024-10-11 02:21:09.000 1993-03-10 2024-10-11 02:21:09 +8470 8470 8471 847 1694 8470 1993-03-11 2024-10-11 02:21:10.000 1993-03-11 2024-10-11 02:21:10 +8471 8471 8472 847.1 1694.2 8471 1993-03-12 2024-10-11 02:21:11.000 1993-03-12 2024-10-11 02:21:11 +8472 8472 8473 847.2 1694.4 8472 1993-03-13 2024-10-11 02:21:12.000 1993-03-13 2024-10-11 02:21:12 +8473 8473 8474 847.3 1694.6000000000001 8473 1993-03-14 2024-10-11 02:21:13.000 1993-03-14 2024-10-11 02:21:13 +8474 8474 8475 847.4 1694.8000000000002 8474 1993-03-15 2024-10-11 02:21:14.000 1993-03-15 2024-10-11 02:21:14 +8475 8475 8476 847.5 1695 8475 1993-03-16 2024-10-11 02:21:15.000 1993-03-16 2024-10-11 02:21:15 +8476 8476 8477 847.6 1695.2 8476 1993-03-17 2024-10-11 02:21:16.000 1993-03-17 2024-10-11 02:21:16 +8477 8477 8478 847.7 1695.4 8477 1993-03-18 2024-10-11 02:21:17.000 1993-03-18 2024-10-11 02:21:17 +8478 8478 8479 847.8 1695.6000000000001 8478 1993-03-19 2024-10-11 02:21:18.000 1993-03-19 2024-10-11 02:21:18 +8479 8479 8480 847.9 1695.8000000000002 8479 1993-03-20 2024-10-11 02:21:19.000 1993-03-20 2024-10-11 02:21:19 +8480 8480 8481 848 1696 8480 1993-03-21 2024-10-11 02:21:20.000 1993-03-21 2024-10-11 02:21:20 +8481 8481 8482 848.1 1696.2 8481 1993-03-22 2024-10-11 02:21:21.000 1993-03-22 2024-10-11 02:21:21 +8482 8482 8483 848.2 1696.4 8482 1993-03-23 2024-10-11 02:21:22.000 1993-03-23 2024-10-11 02:21:22 +8483 8483 8484 848.3 1696.6000000000001 8483 1993-03-24 2024-10-11 02:21:23.000 1993-03-24 2024-10-11 02:21:23 +8484 8484 8485 848.4 1696.8000000000002 8484 1993-03-25 2024-10-11 02:21:24.000 1993-03-25 2024-10-11 02:21:24 +8485 8485 8486 848.5 1697 8485 1993-03-26 2024-10-11 02:21:25.000 1993-03-26 2024-10-11 02:21:25 +8486 8486 8487 848.6 1697.2 8486 1993-03-27 2024-10-11 02:21:26.000 1993-03-27 2024-10-11 02:21:26 +8487 8487 8488 848.7 1697.4 8487 1993-03-28 2024-10-11 02:21:27.000 1993-03-28 2024-10-11 02:21:27 +8488 8488 8489 848.8 1697.6000000000001 8488 1993-03-29 2024-10-11 02:21:28.000 1993-03-29 2024-10-11 02:21:28 +8489 8489 8490 848.9 1697.8000000000002 8489 1993-03-30 2024-10-11 02:21:29.000 1993-03-30 2024-10-11 02:21:29 +8490 8490 8491 849 1698 8490 1993-03-31 2024-10-11 02:21:30.000 1993-03-31 2024-10-11 02:21:30 +8491 8491 8492 849.1 1698.2 8491 1993-04-01 2024-10-11 02:21:31.000 1993-04-01 2024-10-11 02:21:31 +8492 8492 8493 849.2 1698.4 8492 1993-04-02 2024-10-11 02:21:32.000 1993-04-02 2024-10-11 02:21:32 +8493 8493 8494 849.3 1698.6000000000001 8493 1993-04-03 2024-10-11 02:21:33.000 1993-04-03 2024-10-11 02:21:33 +8494 8494 8495 849.4 1698.8000000000002 8494 1993-04-04 2024-10-11 02:21:34.000 1993-04-04 2024-10-11 02:21:34 +8495 8495 8496 849.5 1699 8495 1993-04-05 2024-10-11 02:21:35.000 1993-04-05 2024-10-11 02:21:35 +8496 8496 8497 849.6 1699.2 8496 1993-04-06 2024-10-11 02:21:36.000 1993-04-06 2024-10-11 02:21:36 +8497 8497 8498 849.7 1699.4 8497 1993-04-07 2024-10-11 02:21:37.000 1993-04-07 2024-10-11 02:21:37 +8498 8498 8499 849.8 1699.6000000000001 8498 1993-04-08 2024-10-11 02:21:38.000 1993-04-08 2024-10-11 02:21:38 +8499 8499 8500 849.9 1699.8000000000002 8499 1993-04-09 2024-10-11 02:21:39.000 1993-04-09 2024-10-11 02:21:39 +8500 8500 8501 850 1700 8500 1993-04-10 2024-10-11 02:21:40.000 1993-04-10 2024-10-11 02:21:40 +8501 8501 8502 850.1 1700.2 8501 1993-04-11 2024-10-11 02:21:41.000 1993-04-11 2024-10-11 02:21:41 +8502 8502 8503 850.2 1700.4 8502 1993-04-12 2024-10-11 02:21:42.000 1993-04-12 2024-10-11 02:21:42 +8503 8503 8504 850.3 1700.6000000000001 8503 1993-04-13 2024-10-11 02:21:43.000 1993-04-13 2024-10-11 02:21:43 +8504 8504 8505 850.4 1700.8000000000002 8504 1993-04-14 2024-10-11 02:21:44.000 1993-04-14 2024-10-11 02:21:44 +8505 8505 8506 850.5 1701 8505 1993-04-15 2024-10-11 02:21:45.000 1993-04-15 2024-10-11 02:21:45 +8506 8506 8507 850.6 1701.2 8506 1993-04-16 2024-10-11 02:21:46.000 1993-04-16 2024-10-11 02:21:46 +8507 8507 8508 850.7 1701.4 8507 1993-04-17 2024-10-11 02:21:47.000 1993-04-17 2024-10-11 02:21:47 +8508 8508 8509 850.8 1701.6000000000001 8508 1993-04-18 2024-10-11 02:21:48.000 1993-04-18 2024-10-11 02:21:48 +8509 8509 8510 850.9 1701.8000000000002 8509 1993-04-19 2024-10-11 02:21:49.000 1993-04-19 2024-10-11 02:21:49 +8510 8510 8511 851 1702 8510 1993-04-20 2024-10-11 02:21:50.000 1993-04-20 2024-10-11 02:21:50 +8511 8511 8512 851.1 1702.2 8511 1993-04-21 2024-10-11 02:21:51.000 1993-04-21 2024-10-11 02:21:51 +8512 8512 8513 851.2 1702.4 8512 1993-04-22 2024-10-11 02:21:52.000 1993-04-22 2024-10-11 02:21:52 +8513 8513 8514 851.3 1702.6000000000001 8513 1993-04-23 2024-10-11 02:21:53.000 1993-04-23 2024-10-11 02:21:53 +8514 8514 8515 851.4 1702.8000000000002 8514 1993-04-24 2024-10-11 02:21:54.000 1993-04-24 2024-10-11 02:21:54 +8515 8515 8516 851.5 1703 8515 1993-04-25 2024-10-11 02:21:55.000 1993-04-25 2024-10-11 02:21:55 +8516 8516 8517 851.6 1703.2 8516 1993-04-26 2024-10-11 02:21:56.000 1993-04-26 2024-10-11 02:21:56 +8517 8517 8518 851.7 1703.4 8517 1993-04-27 2024-10-11 02:21:57.000 1993-04-27 2024-10-11 02:21:57 +8518 8518 8519 851.8 1703.6000000000001 8518 1993-04-28 2024-10-11 02:21:58.000 1993-04-28 2024-10-11 02:21:58 +8519 8519 8520 851.9 1703.8000000000002 8519 1993-04-29 2024-10-11 02:21:59.000 1993-04-29 2024-10-11 02:21:59 +8520 8520 8521 852 1704 8520 1993-04-30 2024-10-11 02:22:00.000 1993-04-30 2024-10-11 02:22:00 +8521 8521 8522 852.1 1704.2 8521 1993-05-01 2024-10-11 02:22:01.000 1993-05-01 2024-10-11 02:22:01 +8522 8522 8523 852.2 1704.4 8522 1993-05-02 2024-10-11 02:22:02.000 1993-05-02 2024-10-11 02:22:02 +8523 8523 8524 852.3 1704.6000000000001 8523 1993-05-03 2024-10-11 02:22:03.000 1993-05-03 2024-10-11 02:22:03 +8524 8524 8525 852.4 1704.8000000000002 8524 1993-05-04 2024-10-11 02:22:04.000 1993-05-04 2024-10-11 02:22:04 +8525 8525 8526 852.5 1705 8525 1993-05-05 2024-10-11 02:22:05.000 1993-05-05 2024-10-11 02:22:05 +8526 8526 8527 852.6 1705.2 8526 1993-05-06 2024-10-11 02:22:06.000 1993-05-06 2024-10-11 02:22:06 +8527 8527 8528 852.7 1705.4 8527 1993-05-07 2024-10-11 02:22:07.000 1993-05-07 2024-10-11 02:22:07 +8528 8528 8529 852.8 1705.6000000000001 8528 1993-05-08 2024-10-11 02:22:08.000 1993-05-08 2024-10-11 02:22:08 +8529 8529 8530 852.9 1705.8000000000002 8529 1993-05-09 2024-10-11 02:22:09.000 1993-05-09 2024-10-11 02:22:09 +8530 8530 8531 853 1706 8530 1993-05-10 2024-10-11 02:22:10.000 1993-05-10 2024-10-11 02:22:10 +8531 8531 8532 853.1 1706.2 8531 1993-05-11 2024-10-11 02:22:11.000 1993-05-11 2024-10-11 02:22:11 +8532 8532 8533 853.2 1706.4 8532 1993-05-12 2024-10-11 02:22:12.000 1993-05-12 2024-10-11 02:22:12 +8533 8533 8534 853.3 1706.6000000000001 8533 1993-05-13 2024-10-11 02:22:13.000 1993-05-13 2024-10-11 02:22:13 +8534 8534 8535 853.4 1706.8000000000002 8534 1993-05-14 2024-10-11 02:22:14.000 1993-05-14 2024-10-11 02:22:14 +8535 8535 8536 853.5 1707 8535 1993-05-15 2024-10-11 02:22:15.000 1993-05-15 2024-10-11 02:22:15 +8536 8536 8537 853.6 1707.2 8536 1993-05-16 2024-10-11 02:22:16.000 1993-05-16 2024-10-11 02:22:16 +8537 8537 8538 853.7 1707.4 8537 1993-05-17 2024-10-11 02:22:17.000 1993-05-17 2024-10-11 02:22:17 +8538 8538 8539 853.8 1707.6000000000001 8538 1993-05-18 2024-10-11 02:22:18.000 1993-05-18 2024-10-11 02:22:18 +8539 8539 8540 853.9 1707.8000000000002 8539 1993-05-19 2024-10-11 02:22:19.000 1993-05-19 2024-10-11 02:22:19 +8540 8540 8541 854 1708 8540 1993-05-20 2024-10-11 02:22:20.000 1993-05-20 2024-10-11 02:22:20 +8541 8541 8542 854.1 1708.2 8541 1993-05-21 2024-10-11 02:22:21.000 1993-05-21 2024-10-11 02:22:21 +8542 8542 8543 854.2 1708.4 8542 1993-05-22 2024-10-11 02:22:22.000 1993-05-22 2024-10-11 02:22:22 +8543 8543 8544 854.3 1708.6000000000001 8543 1993-05-23 2024-10-11 02:22:23.000 1993-05-23 2024-10-11 02:22:23 +8544 8544 8545 854.4 1708.8000000000002 8544 1993-05-24 2024-10-11 02:22:24.000 1993-05-24 2024-10-11 02:22:24 +8545 8545 8546 854.5 1709 8545 1993-05-25 2024-10-11 02:22:25.000 1993-05-25 2024-10-11 02:22:25 +8546 8546 8547 854.6 1709.2 8546 1993-05-26 2024-10-11 02:22:26.000 1993-05-26 2024-10-11 02:22:26 +8547 8547 8548 854.7 1709.4 8547 1993-05-27 2024-10-11 02:22:27.000 1993-05-27 2024-10-11 02:22:27 +8548 8548 8549 854.8 1709.6000000000001 8548 1993-05-28 2024-10-11 02:22:28.000 1993-05-28 2024-10-11 02:22:28 +8549 8549 8550 854.9 1709.8000000000002 8549 1993-05-29 2024-10-11 02:22:29.000 1993-05-29 2024-10-11 02:22:29 +8550 8550 8551 855 1710 8550 1993-05-30 2024-10-11 02:22:30.000 1993-05-30 2024-10-11 02:22:30 +8551 8551 8552 855.1 1710.2 8551 1993-05-31 2024-10-11 02:22:31.000 1993-05-31 2024-10-11 02:22:31 +8552 8552 8553 855.2 1710.4 8552 1993-06-01 2024-10-11 02:22:32.000 1993-06-01 2024-10-11 02:22:32 +8553 8553 8554 855.3 1710.6000000000001 8553 1993-06-02 2024-10-11 02:22:33.000 1993-06-02 2024-10-11 02:22:33 +8554 8554 8555 855.4 1710.8000000000002 8554 1993-06-03 2024-10-11 02:22:34.000 1993-06-03 2024-10-11 02:22:34 +8555 8555 8556 855.5 1711 8555 1993-06-04 2024-10-11 02:22:35.000 1993-06-04 2024-10-11 02:22:35 +8556 8556 8557 855.6 1711.2 8556 1993-06-05 2024-10-11 02:22:36.000 1993-06-05 2024-10-11 02:22:36 +8557 8557 8558 855.7 1711.4 8557 1993-06-06 2024-10-11 02:22:37.000 1993-06-06 2024-10-11 02:22:37 +8558 8558 8559 855.8 1711.6000000000001 8558 1993-06-07 2024-10-11 02:22:38.000 1993-06-07 2024-10-11 02:22:38 +8559 8559 8560 855.9 1711.8000000000002 8559 1993-06-08 2024-10-11 02:22:39.000 1993-06-08 2024-10-11 02:22:39 +8560 8560 8561 856 1712 8560 1993-06-09 2024-10-11 02:22:40.000 1993-06-09 2024-10-11 02:22:40 +8561 8561 8562 856.1 1712.2 8561 1993-06-10 2024-10-11 02:22:41.000 1993-06-10 2024-10-11 02:22:41 +8562 8562 8563 856.2 1712.4 8562 1993-06-11 2024-10-11 02:22:42.000 1993-06-11 2024-10-11 02:22:42 +8563 8563 8564 856.3 1712.6000000000001 8563 1993-06-12 2024-10-11 02:22:43.000 1993-06-12 2024-10-11 02:22:43 +8564 8564 8565 856.4 1712.8000000000002 8564 1993-06-13 2024-10-11 02:22:44.000 1993-06-13 2024-10-11 02:22:44 +8565 8565 8566 856.5 1713 8565 1993-06-14 2024-10-11 02:22:45.000 1993-06-14 2024-10-11 02:22:45 +8566 8566 8567 856.6 1713.2 8566 1993-06-15 2024-10-11 02:22:46.000 1993-06-15 2024-10-11 02:22:46 +8567 8567 8568 856.7 1713.4 8567 1993-06-16 2024-10-11 02:22:47.000 1993-06-16 2024-10-11 02:22:47 +8568 8568 8569 856.8 1713.6000000000001 8568 1993-06-17 2024-10-11 02:22:48.000 1993-06-17 2024-10-11 02:22:48 +8569 8569 8570 856.9 1713.8000000000002 8569 1993-06-18 2024-10-11 02:22:49.000 1993-06-18 2024-10-11 02:22:49 +8570 8570 8571 857 1714 8570 1993-06-19 2024-10-11 02:22:50.000 1993-06-19 2024-10-11 02:22:50 +8571 8571 8572 857.1 1714.2 8571 1993-06-20 2024-10-11 02:22:51.000 1993-06-20 2024-10-11 02:22:51 +8572 8572 8573 857.2 1714.4 8572 1993-06-21 2024-10-11 02:22:52.000 1993-06-21 2024-10-11 02:22:52 +8573 8573 8574 857.3 1714.6000000000001 8573 1993-06-22 2024-10-11 02:22:53.000 1993-06-22 2024-10-11 02:22:53 +8574 8574 8575 857.4 1714.8000000000002 8574 1993-06-23 2024-10-11 02:22:54.000 1993-06-23 2024-10-11 02:22:54 +8575 8575 8576 857.5 1715 8575 1993-06-24 2024-10-11 02:22:55.000 1993-06-24 2024-10-11 02:22:55 +8576 8576 8577 857.6 1715.2 8576 1993-06-25 2024-10-11 02:22:56.000 1993-06-25 2024-10-11 02:22:56 +8577 8577 8578 857.7 1715.4 8577 1993-06-26 2024-10-11 02:22:57.000 1993-06-26 2024-10-11 02:22:57 +8578 8578 8579 857.8 1715.6000000000001 8578 1993-06-27 2024-10-11 02:22:58.000 1993-06-27 2024-10-11 02:22:58 +8579 8579 8580 857.9 1715.8000000000002 8579 1993-06-28 2024-10-11 02:22:59.000 1993-06-28 2024-10-11 02:22:59 +8580 8580 8581 858 1716 8580 1993-06-29 2024-10-11 02:23:00.000 1993-06-29 2024-10-11 02:23:00 +8581 8581 8582 858.1 1716.2 8581 1993-06-30 2024-10-11 02:23:01.000 1993-06-30 2024-10-11 02:23:01 +8582 8582 8583 858.2 1716.4 8582 1993-07-01 2024-10-11 02:23:02.000 1993-07-01 2024-10-11 02:23:02 +8583 8583 8584 858.3 1716.6000000000001 8583 1993-07-02 2024-10-11 02:23:03.000 1993-07-02 2024-10-11 02:23:03 +8584 8584 8585 858.4 1716.8000000000002 8584 1993-07-03 2024-10-11 02:23:04.000 1993-07-03 2024-10-11 02:23:04 +8585 8585 8586 858.5 1717 8585 1993-07-04 2024-10-11 02:23:05.000 1993-07-04 2024-10-11 02:23:05 +8586 8586 8587 858.6 1717.2 8586 1993-07-05 2024-10-11 02:23:06.000 1993-07-05 2024-10-11 02:23:06 +8587 8587 8588 858.7 1717.4 8587 1993-07-06 2024-10-11 02:23:07.000 1993-07-06 2024-10-11 02:23:07 +8588 8588 8589 858.8 1717.6000000000001 8588 1993-07-07 2024-10-11 02:23:08.000 1993-07-07 2024-10-11 02:23:08 +8589 8589 8590 858.9 1717.8000000000002 8589 1993-07-08 2024-10-11 02:23:09.000 1993-07-08 2024-10-11 02:23:09 +8590 8590 8591 859 1718 8590 1993-07-09 2024-10-11 02:23:10.000 1993-07-09 2024-10-11 02:23:10 +8591 8591 8592 859.1 1718.2 8591 1993-07-10 2024-10-11 02:23:11.000 1993-07-10 2024-10-11 02:23:11 +8592 8592 8593 859.2 1718.4 8592 1993-07-11 2024-10-11 02:23:12.000 1993-07-11 2024-10-11 02:23:12 +8593 8593 8594 859.3 1718.6000000000001 8593 1993-07-12 2024-10-11 02:23:13.000 1993-07-12 2024-10-11 02:23:13 +8594 8594 8595 859.4 1718.8000000000002 8594 1993-07-13 2024-10-11 02:23:14.000 1993-07-13 2024-10-11 02:23:14 +8595 8595 8596 859.5 1719 8595 1993-07-14 2024-10-11 02:23:15.000 1993-07-14 2024-10-11 02:23:15 +8596 8596 8597 859.6 1719.2 8596 1993-07-15 2024-10-11 02:23:16.000 1993-07-15 2024-10-11 02:23:16 +8597 8597 8598 859.7 1719.4 8597 1993-07-16 2024-10-11 02:23:17.000 1993-07-16 2024-10-11 02:23:17 +8598 8598 8599 859.8 1719.6000000000001 8598 1993-07-17 2024-10-11 02:23:18.000 1993-07-17 2024-10-11 02:23:18 +8599 8599 8600 859.9 1719.8000000000002 8599 1993-07-18 2024-10-11 02:23:19.000 1993-07-18 2024-10-11 02:23:19 +8600 8600 8601 860 1720 8600 1993-07-19 2024-10-11 02:23:20.000 1993-07-19 2024-10-11 02:23:20 +8601 8601 8602 860.1 1720.2 8601 1993-07-20 2024-10-11 02:23:21.000 1993-07-20 2024-10-11 02:23:21 +8602 8602 8603 860.2 1720.4 8602 1993-07-21 2024-10-11 02:23:22.000 1993-07-21 2024-10-11 02:23:22 +8603 8603 8604 860.3 1720.6000000000001 8603 1993-07-22 2024-10-11 02:23:23.000 1993-07-22 2024-10-11 02:23:23 +8604 8604 8605 860.4 1720.8000000000002 8604 1993-07-23 2024-10-11 02:23:24.000 1993-07-23 2024-10-11 02:23:24 +8605 8605 8606 860.5 1721 8605 1993-07-24 2024-10-11 02:23:25.000 1993-07-24 2024-10-11 02:23:25 +8606 8606 8607 860.6 1721.2 8606 1993-07-25 2024-10-11 02:23:26.000 1993-07-25 2024-10-11 02:23:26 +8607 8607 8608 860.7 1721.4 8607 1993-07-26 2024-10-11 02:23:27.000 1993-07-26 2024-10-11 02:23:27 +8608 8608 8609 860.8 1721.6000000000001 8608 1993-07-27 2024-10-11 02:23:28.000 1993-07-27 2024-10-11 02:23:28 +8609 8609 8610 860.9 1721.8000000000002 8609 1993-07-28 2024-10-11 02:23:29.000 1993-07-28 2024-10-11 02:23:29 +8610 8610 8611 861 1722 8610 1993-07-29 2024-10-11 02:23:30.000 1993-07-29 2024-10-11 02:23:30 +8611 8611 8612 861.1 1722.2 8611 1993-07-30 2024-10-11 02:23:31.000 1993-07-30 2024-10-11 02:23:31 +8612 8612 8613 861.2 1722.4 8612 1993-07-31 2024-10-11 02:23:32.000 1993-07-31 2024-10-11 02:23:32 +8613 8613 8614 861.3 1722.6000000000001 8613 1993-08-01 2024-10-11 02:23:33.000 1993-08-01 2024-10-11 02:23:33 +8614 8614 8615 861.4 1722.8000000000002 8614 1993-08-02 2024-10-11 02:23:34.000 1993-08-02 2024-10-11 02:23:34 +8615 8615 8616 861.5 1723 8615 1993-08-03 2024-10-11 02:23:35.000 1993-08-03 2024-10-11 02:23:35 +8616 8616 8617 861.6 1723.2 8616 1993-08-04 2024-10-11 02:23:36.000 1993-08-04 2024-10-11 02:23:36 +8617 8617 8618 861.7 1723.4 8617 1993-08-05 2024-10-11 02:23:37.000 1993-08-05 2024-10-11 02:23:37 +8618 8618 8619 861.8 1723.6000000000001 8618 1993-08-06 2024-10-11 02:23:38.000 1993-08-06 2024-10-11 02:23:38 +8619 8619 8620 861.9 1723.8000000000002 8619 1993-08-07 2024-10-11 02:23:39.000 1993-08-07 2024-10-11 02:23:39 +8620 8620 8621 862 1724 8620 1993-08-08 2024-10-11 02:23:40.000 1993-08-08 2024-10-11 02:23:40 +8621 8621 8622 862.1 1724.2 8621 1993-08-09 2024-10-11 02:23:41.000 1993-08-09 2024-10-11 02:23:41 +8622 8622 8623 862.2 1724.4 8622 1993-08-10 2024-10-11 02:23:42.000 1993-08-10 2024-10-11 02:23:42 +8623 8623 8624 862.3 1724.6000000000001 8623 1993-08-11 2024-10-11 02:23:43.000 1993-08-11 2024-10-11 02:23:43 +8624 8624 8625 862.4 1724.8000000000002 8624 1993-08-12 2024-10-11 02:23:44.000 1993-08-12 2024-10-11 02:23:44 +8625 8625 8626 862.5 1725 8625 1993-08-13 2024-10-11 02:23:45.000 1993-08-13 2024-10-11 02:23:45 +8626 8626 8627 862.6 1725.2 8626 1993-08-14 2024-10-11 02:23:46.000 1993-08-14 2024-10-11 02:23:46 +8627 8627 8628 862.7 1725.4 8627 1993-08-15 2024-10-11 02:23:47.000 1993-08-15 2024-10-11 02:23:47 +8628 8628 8629 862.8 1725.6000000000001 8628 1993-08-16 2024-10-11 02:23:48.000 1993-08-16 2024-10-11 02:23:48 +8629 8629 8630 862.9 1725.8000000000002 8629 1993-08-17 2024-10-11 02:23:49.000 1993-08-17 2024-10-11 02:23:49 +8630 8630 8631 863 1726 8630 1993-08-18 2024-10-11 02:23:50.000 1993-08-18 2024-10-11 02:23:50 +8631 8631 8632 863.1 1726.2 8631 1993-08-19 2024-10-11 02:23:51.000 1993-08-19 2024-10-11 02:23:51 +8632 8632 8633 863.2 1726.4 8632 1993-08-20 2024-10-11 02:23:52.000 1993-08-20 2024-10-11 02:23:52 +8633 8633 8634 863.3 1726.6000000000001 8633 1993-08-21 2024-10-11 02:23:53.000 1993-08-21 2024-10-11 02:23:53 +8634 8634 8635 863.4 1726.8000000000002 8634 1993-08-22 2024-10-11 02:23:54.000 1993-08-22 2024-10-11 02:23:54 +8635 8635 8636 863.5 1727 8635 1993-08-23 2024-10-11 02:23:55.000 1993-08-23 2024-10-11 02:23:55 +8636 8636 8637 863.6 1727.2 8636 1993-08-24 2024-10-11 02:23:56.000 1993-08-24 2024-10-11 02:23:56 +8637 8637 8638 863.7 1727.4 8637 1993-08-25 2024-10-11 02:23:57.000 1993-08-25 2024-10-11 02:23:57 +8638 8638 8639 863.8 1727.6000000000001 8638 1993-08-26 2024-10-11 02:23:58.000 1993-08-26 2024-10-11 02:23:58 +8639 8639 8640 863.9 1727.8000000000002 8639 1993-08-27 2024-10-11 02:23:59.000 1993-08-27 2024-10-11 02:23:59 +8640 8640 8641 864 1728 8640 1993-08-28 2024-10-11 02:24:00.000 1993-08-28 2024-10-11 02:24:00 +8641 8641 8642 864.1 1728.2 8641 1993-08-29 2024-10-11 02:24:01.000 1993-08-29 2024-10-11 02:24:01 +8642 8642 8643 864.2 1728.4 8642 1993-08-30 2024-10-11 02:24:02.000 1993-08-30 2024-10-11 02:24:02 +8643 8643 8644 864.3 1728.6000000000001 8643 1993-08-31 2024-10-11 02:24:03.000 1993-08-31 2024-10-11 02:24:03 +8644 8644 8645 864.4 1728.8000000000002 8644 1993-09-01 2024-10-11 02:24:04.000 1993-09-01 2024-10-11 02:24:04 +8645 8645 8646 864.5 1729 8645 1993-09-02 2024-10-11 02:24:05.000 1993-09-02 2024-10-11 02:24:05 +8646 8646 8647 864.6 1729.2 8646 1993-09-03 2024-10-11 02:24:06.000 1993-09-03 2024-10-11 02:24:06 +8647 8647 8648 864.7 1729.4 8647 1993-09-04 2024-10-11 02:24:07.000 1993-09-04 2024-10-11 02:24:07 +8648 8648 8649 864.8 1729.6000000000001 8648 1993-09-05 2024-10-11 02:24:08.000 1993-09-05 2024-10-11 02:24:08 +8649 8649 8650 864.9 1729.8000000000002 8649 1993-09-06 2024-10-11 02:24:09.000 1993-09-06 2024-10-11 02:24:09 +8650 8650 8651 865 1730 8650 1993-09-07 2024-10-11 02:24:10.000 1993-09-07 2024-10-11 02:24:10 +8651 8651 8652 865.1 1730.2 8651 1993-09-08 2024-10-11 02:24:11.000 1993-09-08 2024-10-11 02:24:11 +8652 8652 8653 865.2 1730.4 8652 1993-09-09 2024-10-11 02:24:12.000 1993-09-09 2024-10-11 02:24:12 +8653 8653 8654 865.3 1730.6000000000001 8653 1993-09-10 2024-10-11 02:24:13.000 1993-09-10 2024-10-11 02:24:13 +8654 8654 8655 865.4 1730.8000000000002 8654 1993-09-11 2024-10-11 02:24:14.000 1993-09-11 2024-10-11 02:24:14 +8655 8655 8656 865.5 1731 8655 1993-09-12 2024-10-11 02:24:15.000 1993-09-12 2024-10-11 02:24:15 +8656 8656 8657 865.6 1731.2 8656 1993-09-13 2024-10-11 02:24:16.000 1993-09-13 2024-10-11 02:24:16 +8657 8657 8658 865.7 1731.4 8657 1993-09-14 2024-10-11 02:24:17.000 1993-09-14 2024-10-11 02:24:17 +8658 8658 8659 865.8 1731.6000000000001 8658 1993-09-15 2024-10-11 02:24:18.000 1993-09-15 2024-10-11 02:24:18 +8659 8659 8660 865.9 1731.8000000000002 8659 1993-09-16 2024-10-11 02:24:19.000 1993-09-16 2024-10-11 02:24:19 +8660 8660 8661 866 1732 8660 1993-09-17 2024-10-11 02:24:20.000 1993-09-17 2024-10-11 02:24:20 +8661 8661 8662 866.1 1732.2 8661 1993-09-18 2024-10-11 02:24:21.000 1993-09-18 2024-10-11 02:24:21 +8662 8662 8663 866.2 1732.4 8662 1993-09-19 2024-10-11 02:24:22.000 1993-09-19 2024-10-11 02:24:22 +8663 8663 8664 866.3 1732.6000000000001 8663 1993-09-20 2024-10-11 02:24:23.000 1993-09-20 2024-10-11 02:24:23 +8664 8664 8665 866.4 1732.8000000000002 8664 1993-09-21 2024-10-11 02:24:24.000 1993-09-21 2024-10-11 02:24:24 +8665 8665 8666 866.5 1733 8665 1993-09-22 2024-10-11 02:24:25.000 1993-09-22 2024-10-11 02:24:25 +8666 8666 8667 866.6 1733.2 8666 1993-09-23 2024-10-11 02:24:26.000 1993-09-23 2024-10-11 02:24:26 +8667 8667 8668 866.7 1733.4 8667 1993-09-24 2024-10-11 02:24:27.000 1993-09-24 2024-10-11 02:24:27 +8668 8668 8669 866.8 1733.6000000000001 8668 1993-09-25 2024-10-11 02:24:28.000 1993-09-25 2024-10-11 02:24:28 +8669 8669 8670 866.9 1733.8000000000002 8669 1993-09-26 2024-10-11 02:24:29.000 1993-09-26 2024-10-11 02:24:29 +8670 8670 8671 867 1734 8670 1993-09-27 2024-10-11 02:24:30.000 1993-09-27 2024-10-11 02:24:30 +8671 8671 8672 867.1 1734.2 8671 1993-09-28 2024-10-11 02:24:31.000 1993-09-28 2024-10-11 02:24:31 +8672 8672 8673 867.2 1734.4 8672 1993-09-29 2024-10-11 02:24:32.000 1993-09-29 2024-10-11 02:24:32 +8673 8673 8674 867.3 1734.6000000000001 8673 1993-09-30 2024-10-11 02:24:33.000 1993-09-30 2024-10-11 02:24:33 +8674 8674 8675 867.4 1734.8000000000002 8674 1993-10-01 2024-10-11 02:24:34.000 1993-10-01 2024-10-11 02:24:34 +8675 8675 8676 867.5 1735 8675 1993-10-02 2024-10-11 02:24:35.000 1993-10-02 2024-10-11 02:24:35 +8676 8676 8677 867.6 1735.2 8676 1993-10-03 2024-10-11 02:24:36.000 1993-10-03 2024-10-11 02:24:36 +8677 8677 8678 867.7 1735.4 8677 1993-10-04 2024-10-11 02:24:37.000 1993-10-04 2024-10-11 02:24:37 +8678 8678 8679 867.8 1735.6000000000001 8678 1993-10-05 2024-10-11 02:24:38.000 1993-10-05 2024-10-11 02:24:38 +8679 8679 8680 867.9 1735.8000000000002 8679 1993-10-06 2024-10-11 02:24:39.000 1993-10-06 2024-10-11 02:24:39 +8680 8680 8681 868 1736 8680 1993-10-07 2024-10-11 02:24:40.000 1993-10-07 2024-10-11 02:24:40 +8681 8681 8682 868.1 1736.2 8681 1993-10-08 2024-10-11 02:24:41.000 1993-10-08 2024-10-11 02:24:41 +8682 8682 8683 868.2 1736.4 8682 1993-10-09 2024-10-11 02:24:42.000 1993-10-09 2024-10-11 02:24:42 +8683 8683 8684 868.3 1736.6000000000001 8683 1993-10-10 2024-10-11 02:24:43.000 1993-10-10 2024-10-11 02:24:43 +8684 8684 8685 868.4 1736.8000000000002 8684 1993-10-11 2024-10-11 02:24:44.000 1993-10-11 2024-10-11 02:24:44 +8685 8685 8686 868.5 1737 8685 1993-10-12 2024-10-11 02:24:45.000 1993-10-12 2024-10-11 02:24:45 +8686 8686 8687 868.6 1737.2 8686 1993-10-13 2024-10-11 02:24:46.000 1993-10-13 2024-10-11 02:24:46 +8687 8687 8688 868.7 1737.4 8687 1993-10-14 2024-10-11 02:24:47.000 1993-10-14 2024-10-11 02:24:47 +8688 8688 8689 868.8 1737.6000000000001 8688 1993-10-15 2024-10-11 02:24:48.000 1993-10-15 2024-10-11 02:24:48 +8689 8689 8690 868.9 1737.8000000000002 8689 1993-10-16 2024-10-11 02:24:49.000 1993-10-16 2024-10-11 02:24:49 +8690 8690 8691 869 1738 8690 1993-10-17 2024-10-11 02:24:50.000 1993-10-17 2024-10-11 02:24:50 +8691 8691 8692 869.1 1738.2 8691 1993-10-18 2024-10-11 02:24:51.000 1993-10-18 2024-10-11 02:24:51 +8692 8692 8693 869.2 1738.4 8692 1993-10-19 2024-10-11 02:24:52.000 1993-10-19 2024-10-11 02:24:52 +8693 8693 8694 869.3 1738.6000000000001 8693 1993-10-20 2024-10-11 02:24:53.000 1993-10-20 2024-10-11 02:24:53 +8694 8694 8695 869.4 1738.8000000000002 8694 1993-10-21 2024-10-11 02:24:54.000 1993-10-21 2024-10-11 02:24:54 +8695 8695 8696 869.5 1739 8695 1993-10-22 2024-10-11 02:24:55.000 1993-10-22 2024-10-11 02:24:55 +8696 8696 8697 869.6 1739.2 8696 1993-10-23 2024-10-11 02:24:56.000 1993-10-23 2024-10-11 02:24:56 +8697 8697 8698 869.7 1739.4 8697 1993-10-24 2024-10-11 02:24:57.000 1993-10-24 2024-10-11 02:24:57 +8698 8698 8699 869.8 1739.6000000000001 8698 1993-10-25 2024-10-11 02:24:58.000 1993-10-25 2024-10-11 02:24:58 +8699 8699 8700 869.9 1739.8000000000002 8699 1993-10-26 2024-10-11 02:24:59.000 1993-10-26 2024-10-11 02:24:59 +8700 8700 8701 870 1740 8700 1993-10-27 2024-10-11 02:25:00.000 1993-10-27 2024-10-11 02:25:00 +8701 8701 8702 870.1 1740.2 8701 1993-10-28 2024-10-11 02:25:01.000 1993-10-28 2024-10-11 02:25:01 +8702 8702 8703 870.2 1740.4 8702 1993-10-29 2024-10-11 02:25:02.000 1993-10-29 2024-10-11 02:25:02 +8703 8703 8704 870.3 1740.6000000000001 8703 1993-10-30 2024-10-11 02:25:03.000 1993-10-30 2024-10-11 02:25:03 +8704 8704 8705 870.4 1740.8000000000002 8704 1993-10-31 2024-10-11 02:25:04.000 1993-10-31 2024-10-11 02:25:04 +8705 8705 8706 870.5 1741 8705 1993-11-01 2024-10-11 02:25:05.000 1993-11-01 2024-10-11 02:25:05 +8706 8706 8707 870.6 1741.2 8706 1993-11-02 2024-10-11 02:25:06.000 1993-11-02 2024-10-11 02:25:06 +8707 8707 8708 870.7 1741.4 8707 1993-11-03 2024-10-11 02:25:07.000 1993-11-03 2024-10-11 02:25:07 +8708 8708 8709 870.8 1741.6000000000001 8708 1993-11-04 2024-10-11 02:25:08.000 1993-11-04 2024-10-11 02:25:08 +8709 8709 8710 870.9 1741.8000000000002 8709 1993-11-05 2024-10-11 02:25:09.000 1993-11-05 2024-10-11 02:25:09 +8710 8710 8711 871 1742 8710 1993-11-06 2024-10-11 02:25:10.000 1993-11-06 2024-10-11 02:25:10 +8711 8711 8712 871.1 1742.2 8711 1993-11-07 2024-10-11 02:25:11.000 1993-11-07 2024-10-11 02:25:11 +8712 8712 8713 871.2 1742.4 8712 1993-11-08 2024-10-11 02:25:12.000 1993-11-08 2024-10-11 02:25:12 +8713 8713 8714 871.3 1742.6000000000001 8713 1993-11-09 2024-10-11 02:25:13.000 1993-11-09 2024-10-11 02:25:13 +8714 8714 8715 871.4 1742.8000000000002 8714 1993-11-10 2024-10-11 02:25:14.000 1993-11-10 2024-10-11 02:25:14 +8715 8715 8716 871.5 1743 8715 1993-11-11 2024-10-11 02:25:15.000 1993-11-11 2024-10-11 02:25:15 +8716 8716 8717 871.6 1743.2 8716 1993-11-12 2024-10-11 02:25:16.000 1993-11-12 2024-10-11 02:25:16 +8717 8717 8718 871.7 1743.4 8717 1993-11-13 2024-10-11 02:25:17.000 1993-11-13 2024-10-11 02:25:17 +8718 8718 8719 871.8 1743.6000000000001 8718 1993-11-14 2024-10-11 02:25:18.000 1993-11-14 2024-10-11 02:25:18 +8719 8719 8720 871.9 1743.8000000000002 8719 1993-11-15 2024-10-11 02:25:19.000 1993-11-15 2024-10-11 02:25:19 +8720 8720 8721 872 1744 8720 1993-11-16 2024-10-11 02:25:20.000 1993-11-16 2024-10-11 02:25:20 +8721 8721 8722 872.1 1744.2 8721 1993-11-17 2024-10-11 02:25:21.000 1993-11-17 2024-10-11 02:25:21 +8722 8722 8723 872.2 1744.4 8722 1993-11-18 2024-10-11 02:25:22.000 1993-11-18 2024-10-11 02:25:22 +8723 8723 8724 872.3 1744.6000000000001 8723 1993-11-19 2024-10-11 02:25:23.000 1993-11-19 2024-10-11 02:25:23 +8724 8724 8725 872.4 1744.8000000000002 8724 1993-11-20 2024-10-11 02:25:24.000 1993-11-20 2024-10-11 02:25:24 +8725 8725 8726 872.5 1745 8725 1993-11-21 2024-10-11 02:25:25.000 1993-11-21 2024-10-11 02:25:25 +8726 8726 8727 872.6 1745.2 8726 1993-11-22 2024-10-11 02:25:26.000 1993-11-22 2024-10-11 02:25:26 +8727 8727 8728 872.7 1745.4 8727 1993-11-23 2024-10-11 02:25:27.000 1993-11-23 2024-10-11 02:25:27 +8728 8728 8729 872.8 1745.6000000000001 8728 1993-11-24 2024-10-11 02:25:28.000 1993-11-24 2024-10-11 02:25:28 +8729 8729 8730 872.9 1745.8000000000002 8729 1993-11-25 2024-10-11 02:25:29.000 1993-11-25 2024-10-11 02:25:29 +8730 8730 8731 873 1746 8730 1993-11-26 2024-10-11 02:25:30.000 1993-11-26 2024-10-11 02:25:30 +8731 8731 8732 873.1 1746.2 8731 1993-11-27 2024-10-11 02:25:31.000 1993-11-27 2024-10-11 02:25:31 +8732 8732 8733 873.2 1746.4 8732 1993-11-28 2024-10-11 02:25:32.000 1993-11-28 2024-10-11 02:25:32 +8733 8733 8734 873.3 1746.6000000000001 8733 1993-11-29 2024-10-11 02:25:33.000 1993-11-29 2024-10-11 02:25:33 +8734 8734 8735 873.4 1746.8000000000002 8734 1993-11-30 2024-10-11 02:25:34.000 1993-11-30 2024-10-11 02:25:34 +8735 8735 8736 873.5 1747 8735 1993-12-01 2024-10-11 02:25:35.000 1993-12-01 2024-10-11 02:25:35 +8736 8736 8737 873.6 1747.2 8736 1993-12-02 2024-10-11 02:25:36.000 1993-12-02 2024-10-11 02:25:36 +8737 8737 8738 873.7 1747.4 8737 1993-12-03 2024-10-11 02:25:37.000 1993-12-03 2024-10-11 02:25:37 +8738 8738 8739 873.8 1747.6000000000001 8738 1993-12-04 2024-10-11 02:25:38.000 1993-12-04 2024-10-11 02:25:38 +8739 8739 8740 873.9 1747.8000000000002 8739 1993-12-05 2024-10-11 02:25:39.000 1993-12-05 2024-10-11 02:25:39 +8740 8740 8741 874 1748 8740 1993-12-06 2024-10-11 02:25:40.000 1993-12-06 2024-10-11 02:25:40 +8741 8741 8742 874.1 1748.2 8741 1993-12-07 2024-10-11 02:25:41.000 1993-12-07 2024-10-11 02:25:41 +8742 8742 8743 874.2 1748.4 8742 1993-12-08 2024-10-11 02:25:42.000 1993-12-08 2024-10-11 02:25:42 +8743 8743 8744 874.3 1748.6000000000001 8743 1993-12-09 2024-10-11 02:25:43.000 1993-12-09 2024-10-11 02:25:43 +8744 8744 8745 874.4 1748.8000000000002 8744 1993-12-10 2024-10-11 02:25:44.000 1993-12-10 2024-10-11 02:25:44 +8745 8745 8746 874.5 1749 8745 1993-12-11 2024-10-11 02:25:45.000 1993-12-11 2024-10-11 02:25:45 +8746 8746 8747 874.6 1749.2 8746 1993-12-12 2024-10-11 02:25:46.000 1993-12-12 2024-10-11 02:25:46 +8747 8747 8748 874.7 1749.4 8747 1993-12-13 2024-10-11 02:25:47.000 1993-12-13 2024-10-11 02:25:47 +8748 8748 8749 874.8 1749.6000000000001 8748 1993-12-14 2024-10-11 02:25:48.000 1993-12-14 2024-10-11 02:25:48 +8749 8749 8750 874.9 1749.8000000000002 8749 1993-12-15 2024-10-11 02:25:49.000 1993-12-15 2024-10-11 02:25:49 +8750 8750 8751 875 1750 8750 1993-12-16 2024-10-11 02:25:50.000 1993-12-16 2024-10-11 02:25:50 +8751 8751 8752 875.1 1750.2 8751 1993-12-17 2024-10-11 02:25:51.000 1993-12-17 2024-10-11 02:25:51 +8752 8752 8753 875.2 1750.4 8752 1993-12-18 2024-10-11 02:25:52.000 1993-12-18 2024-10-11 02:25:52 +8753 8753 8754 875.3 1750.6000000000001 8753 1993-12-19 2024-10-11 02:25:53.000 1993-12-19 2024-10-11 02:25:53 +8754 8754 8755 875.4 1750.8000000000002 8754 1993-12-20 2024-10-11 02:25:54.000 1993-12-20 2024-10-11 02:25:54 +8755 8755 8756 875.5 1751 8755 1993-12-21 2024-10-11 02:25:55.000 1993-12-21 2024-10-11 02:25:55 +8756 8756 8757 875.6 1751.2 8756 1993-12-22 2024-10-11 02:25:56.000 1993-12-22 2024-10-11 02:25:56 +8757 8757 8758 875.7 1751.4 8757 1993-12-23 2024-10-11 02:25:57.000 1993-12-23 2024-10-11 02:25:57 +8758 8758 8759 875.8 1751.6000000000001 8758 1993-12-24 2024-10-11 02:25:58.000 1993-12-24 2024-10-11 02:25:58 +8759 8759 8760 875.9 1751.8000000000002 8759 1993-12-25 2024-10-11 02:25:59.000 1993-12-25 2024-10-11 02:25:59 +8760 8760 8761 876 1752 8760 1993-12-26 2024-10-11 02:26:00.000 1993-12-26 2024-10-11 02:26:00 +8761 8761 8762 876.1 1752.2 8761 1993-12-27 2024-10-11 02:26:01.000 1993-12-27 2024-10-11 02:26:01 +8762 8762 8763 876.2 1752.4 8762 1993-12-28 2024-10-11 02:26:02.000 1993-12-28 2024-10-11 02:26:02 +8763 8763 8764 876.3 1752.6000000000001 8763 1993-12-29 2024-10-11 02:26:03.000 1993-12-29 2024-10-11 02:26:03 +8764 8764 8765 876.4 1752.8000000000002 8764 1993-12-30 2024-10-11 02:26:04.000 1993-12-30 2024-10-11 02:26:04 +8765 8765 8766 876.5 1753 8765 1993-12-31 2024-10-11 02:26:05.000 1993-12-31 2024-10-11 02:26:05 +8766 8766 8767 876.6 1753.2 8766 1994-01-01 2024-10-11 02:26:06.000 1994-01-01 2024-10-11 02:26:06 +8767 8767 8768 876.7 1753.4 8767 1994-01-02 2024-10-11 02:26:07.000 1994-01-02 2024-10-11 02:26:07 +8768 8768 8769 876.8 1753.6000000000001 8768 1994-01-03 2024-10-11 02:26:08.000 1994-01-03 2024-10-11 02:26:08 +8769 8769 8770 876.9 1753.8000000000002 8769 1994-01-04 2024-10-11 02:26:09.000 1994-01-04 2024-10-11 02:26:09 +8770 8770 8771 877 1754 8770 1994-01-05 2024-10-11 02:26:10.000 1994-01-05 2024-10-11 02:26:10 +8771 8771 8772 877.1 1754.2 8771 1994-01-06 2024-10-11 02:26:11.000 1994-01-06 2024-10-11 02:26:11 +8772 8772 8773 877.2 1754.4 8772 1994-01-07 2024-10-11 02:26:12.000 1994-01-07 2024-10-11 02:26:12 +8773 8773 8774 877.3 1754.6000000000001 8773 1994-01-08 2024-10-11 02:26:13.000 1994-01-08 2024-10-11 02:26:13 +8774 8774 8775 877.4 1754.8000000000002 8774 1994-01-09 2024-10-11 02:26:14.000 1994-01-09 2024-10-11 02:26:14 +8775 8775 8776 877.5 1755 8775 1994-01-10 2024-10-11 02:26:15.000 1994-01-10 2024-10-11 02:26:15 +8776 8776 8777 877.6 1755.2 8776 1994-01-11 2024-10-11 02:26:16.000 1994-01-11 2024-10-11 02:26:16 +8777 8777 8778 877.7 1755.4 8777 1994-01-12 2024-10-11 02:26:17.000 1994-01-12 2024-10-11 02:26:17 +8778 8778 8779 877.8 1755.6000000000001 8778 1994-01-13 2024-10-11 02:26:18.000 1994-01-13 2024-10-11 02:26:18 +8779 8779 8780 877.9 1755.8000000000002 8779 1994-01-14 2024-10-11 02:26:19.000 1994-01-14 2024-10-11 02:26:19 +8780 8780 8781 878 1756 8780 1994-01-15 2024-10-11 02:26:20.000 1994-01-15 2024-10-11 02:26:20 +8781 8781 8782 878.1 1756.2 8781 1994-01-16 2024-10-11 02:26:21.000 1994-01-16 2024-10-11 02:26:21 +8782 8782 8783 878.2 1756.4 8782 1994-01-17 2024-10-11 02:26:22.000 1994-01-17 2024-10-11 02:26:22 +8783 8783 8784 878.3 1756.6000000000001 8783 1994-01-18 2024-10-11 02:26:23.000 1994-01-18 2024-10-11 02:26:23 +8784 8784 8785 878.4 1756.8000000000002 8784 1994-01-19 2024-10-11 02:26:24.000 1994-01-19 2024-10-11 02:26:24 +8785 8785 8786 878.5 1757 8785 1994-01-20 2024-10-11 02:26:25.000 1994-01-20 2024-10-11 02:26:25 +8786 8786 8787 878.6 1757.2 8786 1994-01-21 2024-10-11 02:26:26.000 1994-01-21 2024-10-11 02:26:26 +8787 8787 8788 878.7 1757.4 8787 1994-01-22 2024-10-11 02:26:27.000 1994-01-22 2024-10-11 02:26:27 +8788 8788 8789 878.8 1757.6000000000001 8788 1994-01-23 2024-10-11 02:26:28.000 1994-01-23 2024-10-11 02:26:28 +8789 8789 8790 878.9 1757.8000000000002 8789 1994-01-24 2024-10-11 02:26:29.000 1994-01-24 2024-10-11 02:26:29 +8790 8790 8791 879 1758 8790 1994-01-25 2024-10-11 02:26:30.000 1994-01-25 2024-10-11 02:26:30 +8791 8791 8792 879.1 1758.2 8791 1994-01-26 2024-10-11 02:26:31.000 1994-01-26 2024-10-11 02:26:31 +8792 8792 8793 879.2 1758.4 8792 1994-01-27 2024-10-11 02:26:32.000 1994-01-27 2024-10-11 02:26:32 +8793 8793 8794 879.3 1758.6000000000001 8793 1994-01-28 2024-10-11 02:26:33.000 1994-01-28 2024-10-11 02:26:33 +8794 8794 8795 879.4 1758.8000000000002 8794 1994-01-29 2024-10-11 02:26:34.000 1994-01-29 2024-10-11 02:26:34 +8795 8795 8796 879.5 1759 8795 1994-01-30 2024-10-11 02:26:35.000 1994-01-30 2024-10-11 02:26:35 +8796 8796 8797 879.6 1759.2 8796 1994-01-31 2024-10-11 02:26:36.000 1994-01-31 2024-10-11 02:26:36 +8797 8797 8798 879.7 1759.4 8797 1994-02-01 2024-10-11 02:26:37.000 1994-02-01 2024-10-11 02:26:37 +8798 8798 8799 879.8 1759.6000000000001 8798 1994-02-02 2024-10-11 02:26:38.000 1994-02-02 2024-10-11 02:26:38 +8799 8799 8800 879.9 1759.8000000000002 8799 1994-02-03 2024-10-11 02:26:39.000 1994-02-03 2024-10-11 02:26:39 +8800 8800 8801 880 1760 8800 1994-02-04 2024-10-11 02:26:40.000 1994-02-04 2024-10-11 02:26:40 +8801 8801 8802 880.1 1760.2 8801 1994-02-05 2024-10-11 02:26:41.000 1994-02-05 2024-10-11 02:26:41 +8802 8802 8803 880.2 1760.4 8802 1994-02-06 2024-10-11 02:26:42.000 1994-02-06 2024-10-11 02:26:42 +8803 8803 8804 880.3 1760.6000000000001 8803 1994-02-07 2024-10-11 02:26:43.000 1994-02-07 2024-10-11 02:26:43 +8804 8804 8805 880.4 1760.8000000000002 8804 1994-02-08 2024-10-11 02:26:44.000 1994-02-08 2024-10-11 02:26:44 +8805 8805 8806 880.5 1761 8805 1994-02-09 2024-10-11 02:26:45.000 1994-02-09 2024-10-11 02:26:45 +8806 8806 8807 880.6 1761.2 8806 1994-02-10 2024-10-11 02:26:46.000 1994-02-10 2024-10-11 02:26:46 +8807 8807 8808 880.7 1761.4 8807 1994-02-11 2024-10-11 02:26:47.000 1994-02-11 2024-10-11 02:26:47 +8808 8808 8809 880.8 1761.6000000000001 8808 1994-02-12 2024-10-11 02:26:48.000 1994-02-12 2024-10-11 02:26:48 +8809 8809 8810 880.9 1761.8000000000002 8809 1994-02-13 2024-10-11 02:26:49.000 1994-02-13 2024-10-11 02:26:49 +8810 8810 8811 881 1762 8810 1994-02-14 2024-10-11 02:26:50.000 1994-02-14 2024-10-11 02:26:50 +8811 8811 8812 881.1 1762.2 8811 1994-02-15 2024-10-11 02:26:51.000 1994-02-15 2024-10-11 02:26:51 +8812 8812 8813 881.2 1762.4 8812 1994-02-16 2024-10-11 02:26:52.000 1994-02-16 2024-10-11 02:26:52 +8813 8813 8814 881.3 1762.6000000000001 8813 1994-02-17 2024-10-11 02:26:53.000 1994-02-17 2024-10-11 02:26:53 +8814 8814 8815 881.4 1762.8000000000002 8814 1994-02-18 2024-10-11 02:26:54.000 1994-02-18 2024-10-11 02:26:54 +8815 8815 8816 881.5 1763 8815 1994-02-19 2024-10-11 02:26:55.000 1994-02-19 2024-10-11 02:26:55 +8816 8816 8817 881.6 1763.2 8816 1994-02-20 2024-10-11 02:26:56.000 1994-02-20 2024-10-11 02:26:56 +8817 8817 8818 881.7 1763.4 8817 1994-02-21 2024-10-11 02:26:57.000 1994-02-21 2024-10-11 02:26:57 +8818 8818 8819 881.8 1763.6000000000001 8818 1994-02-22 2024-10-11 02:26:58.000 1994-02-22 2024-10-11 02:26:58 +8819 8819 8820 881.9 1763.8000000000002 8819 1994-02-23 2024-10-11 02:26:59.000 1994-02-23 2024-10-11 02:26:59 +8820 8820 8821 882 1764 8820 1994-02-24 2024-10-11 02:27:00.000 1994-02-24 2024-10-11 02:27:00 +8821 8821 8822 882.1 1764.2 8821 1994-02-25 2024-10-11 02:27:01.000 1994-02-25 2024-10-11 02:27:01 +8822 8822 8823 882.2 1764.4 8822 1994-02-26 2024-10-11 02:27:02.000 1994-02-26 2024-10-11 02:27:02 +8823 8823 8824 882.3 1764.6000000000001 8823 1994-02-27 2024-10-11 02:27:03.000 1994-02-27 2024-10-11 02:27:03 +8824 8824 8825 882.4 1764.8000000000002 8824 1994-02-28 2024-10-11 02:27:04.000 1994-02-28 2024-10-11 02:27:04 +8825 8825 8826 882.5 1765 8825 1994-03-01 2024-10-11 02:27:05.000 1994-03-01 2024-10-11 02:27:05 +8826 8826 8827 882.6 1765.2 8826 1994-03-02 2024-10-11 02:27:06.000 1994-03-02 2024-10-11 02:27:06 +8827 8827 8828 882.7 1765.4 8827 1994-03-03 2024-10-11 02:27:07.000 1994-03-03 2024-10-11 02:27:07 +8828 8828 8829 882.8 1765.6000000000001 8828 1994-03-04 2024-10-11 02:27:08.000 1994-03-04 2024-10-11 02:27:08 +8829 8829 8830 882.9 1765.8000000000002 8829 1994-03-05 2024-10-11 02:27:09.000 1994-03-05 2024-10-11 02:27:09 +8830 8830 8831 883 1766 8830 1994-03-06 2024-10-11 02:27:10.000 1994-03-06 2024-10-11 02:27:10 +8831 8831 8832 883.1 1766.2 8831 1994-03-07 2024-10-11 02:27:11.000 1994-03-07 2024-10-11 02:27:11 +8832 8832 8833 883.2 1766.4 8832 1994-03-08 2024-10-11 02:27:12.000 1994-03-08 2024-10-11 02:27:12 +8833 8833 8834 883.3 1766.6000000000001 8833 1994-03-09 2024-10-11 02:27:13.000 1994-03-09 2024-10-11 02:27:13 +8834 8834 8835 883.4 1766.8000000000002 8834 1994-03-10 2024-10-11 02:27:14.000 1994-03-10 2024-10-11 02:27:14 +8835 8835 8836 883.5 1767 8835 1994-03-11 2024-10-11 02:27:15.000 1994-03-11 2024-10-11 02:27:15 +8836 8836 8837 883.6 1767.2 8836 1994-03-12 2024-10-11 02:27:16.000 1994-03-12 2024-10-11 02:27:16 +8837 8837 8838 883.7 1767.4 8837 1994-03-13 2024-10-11 02:27:17.000 1994-03-13 2024-10-11 02:27:17 +8838 8838 8839 883.8 1767.6000000000001 8838 1994-03-14 2024-10-11 02:27:18.000 1994-03-14 2024-10-11 02:27:18 +8839 8839 8840 883.9 1767.8000000000002 8839 1994-03-15 2024-10-11 02:27:19.000 1994-03-15 2024-10-11 02:27:19 +8840 8840 8841 884 1768 8840 1994-03-16 2024-10-11 02:27:20.000 1994-03-16 2024-10-11 02:27:20 +8841 8841 8842 884.1 1768.2 8841 1994-03-17 2024-10-11 02:27:21.000 1994-03-17 2024-10-11 02:27:21 +8842 8842 8843 884.2 1768.4 8842 1994-03-18 2024-10-11 02:27:22.000 1994-03-18 2024-10-11 02:27:22 +8843 8843 8844 884.3 1768.6000000000001 8843 1994-03-19 2024-10-11 02:27:23.000 1994-03-19 2024-10-11 02:27:23 +8844 8844 8845 884.4 1768.8000000000002 8844 1994-03-20 2024-10-11 02:27:24.000 1994-03-20 2024-10-11 02:27:24 +8845 8845 8846 884.5 1769 8845 1994-03-21 2024-10-11 02:27:25.000 1994-03-21 2024-10-11 02:27:25 +8846 8846 8847 884.6 1769.2 8846 1994-03-22 2024-10-11 02:27:26.000 1994-03-22 2024-10-11 02:27:26 +8847 8847 8848 884.7 1769.4 8847 1994-03-23 2024-10-11 02:27:27.000 1994-03-23 2024-10-11 02:27:27 +8848 8848 8849 884.8 1769.6000000000001 8848 1994-03-24 2024-10-11 02:27:28.000 1994-03-24 2024-10-11 02:27:28 +8849 8849 8850 884.9 1769.8000000000002 8849 1994-03-25 2024-10-11 02:27:29.000 1994-03-25 2024-10-11 02:27:29 +8850 8850 8851 885 1770 8850 1994-03-26 2024-10-11 02:27:30.000 1994-03-26 2024-10-11 02:27:30 +8851 8851 8852 885.1 1770.2 8851 1994-03-27 2024-10-11 02:27:31.000 1994-03-27 2024-10-11 02:27:31 +8852 8852 8853 885.2 1770.4 8852 1994-03-28 2024-10-11 02:27:32.000 1994-03-28 2024-10-11 02:27:32 +8853 8853 8854 885.3 1770.6000000000001 8853 1994-03-29 2024-10-11 02:27:33.000 1994-03-29 2024-10-11 02:27:33 +8854 8854 8855 885.4 1770.8000000000002 8854 1994-03-30 2024-10-11 02:27:34.000 1994-03-30 2024-10-11 02:27:34 +8855 8855 8856 885.5 1771 8855 1994-03-31 2024-10-11 02:27:35.000 1994-03-31 2024-10-11 02:27:35 +8856 8856 8857 885.6 1771.2 8856 1994-04-01 2024-10-11 02:27:36.000 1994-04-01 2024-10-11 02:27:36 +8857 8857 8858 885.7 1771.4 8857 1994-04-02 2024-10-11 02:27:37.000 1994-04-02 2024-10-11 02:27:37 +8858 8858 8859 885.8 1771.6000000000001 8858 1994-04-03 2024-10-11 02:27:38.000 1994-04-03 2024-10-11 02:27:38 +8859 8859 8860 885.9 1771.8000000000002 8859 1994-04-04 2024-10-11 02:27:39.000 1994-04-04 2024-10-11 02:27:39 +8860 8860 8861 886 1772 8860 1994-04-05 2024-10-11 02:27:40.000 1994-04-05 2024-10-11 02:27:40 +8861 8861 8862 886.1 1772.2 8861 1994-04-06 2024-10-11 02:27:41.000 1994-04-06 2024-10-11 02:27:41 +8862 8862 8863 886.2 1772.4 8862 1994-04-07 2024-10-11 02:27:42.000 1994-04-07 2024-10-11 02:27:42 +8863 8863 8864 886.3 1772.6000000000001 8863 1994-04-08 2024-10-11 02:27:43.000 1994-04-08 2024-10-11 02:27:43 +8864 8864 8865 886.4 1772.8000000000002 8864 1994-04-09 2024-10-11 02:27:44.000 1994-04-09 2024-10-11 02:27:44 +8865 8865 8866 886.5 1773 8865 1994-04-10 2024-10-11 02:27:45.000 1994-04-10 2024-10-11 02:27:45 +8866 8866 8867 886.6 1773.2 8866 1994-04-11 2024-10-11 02:27:46.000 1994-04-11 2024-10-11 02:27:46 +8867 8867 8868 886.7 1773.4 8867 1994-04-12 2024-10-11 02:27:47.000 1994-04-12 2024-10-11 02:27:47 +8868 8868 8869 886.8 1773.6000000000001 8868 1994-04-13 2024-10-11 02:27:48.000 1994-04-13 2024-10-11 02:27:48 +8869 8869 8870 886.9 1773.8000000000002 8869 1994-04-14 2024-10-11 02:27:49.000 1994-04-14 2024-10-11 02:27:49 +8870 8870 8871 887 1774 8870 1994-04-15 2024-10-11 02:27:50.000 1994-04-15 2024-10-11 02:27:50 +8871 8871 8872 887.1 1774.2 8871 1994-04-16 2024-10-11 02:27:51.000 1994-04-16 2024-10-11 02:27:51 +8872 8872 8873 887.2 1774.4 8872 1994-04-17 2024-10-11 02:27:52.000 1994-04-17 2024-10-11 02:27:52 +8873 8873 8874 887.3 1774.6000000000001 8873 1994-04-18 2024-10-11 02:27:53.000 1994-04-18 2024-10-11 02:27:53 +8874 8874 8875 887.4 1774.8000000000002 8874 1994-04-19 2024-10-11 02:27:54.000 1994-04-19 2024-10-11 02:27:54 +8875 8875 8876 887.5 1775 8875 1994-04-20 2024-10-11 02:27:55.000 1994-04-20 2024-10-11 02:27:55 +8876 8876 8877 887.6 1775.2 8876 1994-04-21 2024-10-11 02:27:56.000 1994-04-21 2024-10-11 02:27:56 +8877 8877 8878 887.7 1775.4 8877 1994-04-22 2024-10-11 02:27:57.000 1994-04-22 2024-10-11 02:27:57 +8878 8878 8879 887.8 1775.6000000000001 8878 1994-04-23 2024-10-11 02:27:58.000 1994-04-23 2024-10-11 02:27:58 +8879 8879 8880 887.9 1775.8000000000002 8879 1994-04-24 2024-10-11 02:27:59.000 1994-04-24 2024-10-11 02:27:59 +8880 8880 8881 888 1776 8880 1994-04-25 2024-10-11 02:28:00.000 1994-04-25 2024-10-11 02:28:00 +8881 8881 8882 888.1 1776.2 8881 1994-04-26 2024-10-11 02:28:01.000 1994-04-26 2024-10-11 02:28:01 +8882 8882 8883 888.2 1776.4 8882 1994-04-27 2024-10-11 02:28:02.000 1994-04-27 2024-10-11 02:28:02 +8883 8883 8884 888.3 1776.6000000000001 8883 1994-04-28 2024-10-11 02:28:03.000 1994-04-28 2024-10-11 02:28:03 +8884 8884 8885 888.4 1776.8000000000002 8884 1994-04-29 2024-10-11 02:28:04.000 1994-04-29 2024-10-11 02:28:04 +8885 8885 8886 888.5 1777 8885 1994-04-30 2024-10-11 02:28:05.000 1994-04-30 2024-10-11 02:28:05 +8886 8886 8887 888.6 1777.2 8886 1994-05-01 2024-10-11 02:28:06.000 1994-05-01 2024-10-11 02:28:06 +8887 8887 8888 888.7 1777.4 8887 1994-05-02 2024-10-11 02:28:07.000 1994-05-02 2024-10-11 02:28:07 +8888 8888 8889 888.8 1777.6000000000001 8888 1994-05-03 2024-10-11 02:28:08.000 1994-05-03 2024-10-11 02:28:08 +8889 8889 8890 888.9 1777.8000000000002 8889 1994-05-04 2024-10-11 02:28:09.000 1994-05-04 2024-10-11 02:28:09 +8890 8890 8891 889 1778 8890 1994-05-05 2024-10-11 02:28:10.000 1994-05-05 2024-10-11 02:28:10 +8891 8891 8892 889.1 1778.2 8891 1994-05-06 2024-10-11 02:28:11.000 1994-05-06 2024-10-11 02:28:11 +8892 8892 8893 889.2 1778.4 8892 1994-05-07 2024-10-11 02:28:12.000 1994-05-07 2024-10-11 02:28:12 +8893 8893 8894 889.3 1778.6000000000001 8893 1994-05-08 2024-10-11 02:28:13.000 1994-05-08 2024-10-11 02:28:13 +8894 8894 8895 889.4 1778.8000000000002 8894 1994-05-09 2024-10-11 02:28:14.000 1994-05-09 2024-10-11 02:28:14 +8895 8895 8896 889.5 1779 8895 1994-05-10 2024-10-11 02:28:15.000 1994-05-10 2024-10-11 02:28:15 +8896 8896 8897 889.6 1779.2 8896 1994-05-11 2024-10-11 02:28:16.000 1994-05-11 2024-10-11 02:28:16 +8897 8897 8898 889.7 1779.4 8897 1994-05-12 2024-10-11 02:28:17.000 1994-05-12 2024-10-11 02:28:17 +8898 8898 8899 889.8 1779.6000000000001 8898 1994-05-13 2024-10-11 02:28:18.000 1994-05-13 2024-10-11 02:28:18 +8899 8899 8900 889.9 1779.8000000000002 8899 1994-05-14 2024-10-11 02:28:19.000 1994-05-14 2024-10-11 02:28:19 +8900 8900 8901 890 1780 8900 1994-05-15 2024-10-11 02:28:20.000 1994-05-15 2024-10-11 02:28:20 +8901 8901 8902 890.1 1780.2 8901 1994-05-16 2024-10-11 02:28:21.000 1994-05-16 2024-10-11 02:28:21 +8902 8902 8903 890.2 1780.4 8902 1994-05-17 2024-10-11 02:28:22.000 1994-05-17 2024-10-11 02:28:22 +8903 8903 8904 890.3 1780.6000000000001 8903 1994-05-18 2024-10-11 02:28:23.000 1994-05-18 2024-10-11 02:28:23 +8904 8904 8905 890.4 1780.8000000000002 8904 1994-05-19 2024-10-11 02:28:24.000 1994-05-19 2024-10-11 02:28:24 +8905 8905 8906 890.5 1781 8905 1994-05-20 2024-10-11 02:28:25.000 1994-05-20 2024-10-11 02:28:25 +8906 8906 8907 890.6 1781.2 8906 1994-05-21 2024-10-11 02:28:26.000 1994-05-21 2024-10-11 02:28:26 +8907 8907 8908 890.7 1781.4 8907 1994-05-22 2024-10-11 02:28:27.000 1994-05-22 2024-10-11 02:28:27 +8908 8908 8909 890.8 1781.6000000000001 8908 1994-05-23 2024-10-11 02:28:28.000 1994-05-23 2024-10-11 02:28:28 +8909 8909 8910 890.9 1781.8000000000002 8909 1994-05-24 2024-10-11 02:28:29.000 1994-05-24 2024-10-11 02:28:29 +8910 8910 8911 891 1782 8910 1994-05-25 2024-10-11 02:28:30.000 1994-05-25 2024-10-11 02:28:30 +8911 8911 8912 891.1 1782.2 8911 1994-05-26 2024-10-11 02:28:31.000 1994-05-26 2024-10-11 02:28:31 +8912 8912 8913 891.2 1782.4 8912 1994-05-27 2024-10-11 02:28:32.000 1994-05-27 2024-10-11 02:28:32 +8913 8913 8914 891.3 1782.6000000000001 8913 1994-05-28 2024-10-11 02:28:33.000 1994-05-28 2024-10-11 02:28:33 +8914 8914 8915 891.4 1782.8000000000002 8914 1994-05-29 2024-10-11 02:28:34.000 1994-05-29 2024-10-11 02:28:34 +8915 8915 8916 891.5 1783 8915 1994-05-30 2024-10-11 02:28:35.000 1994-05-30 2024-10-11 02:28:35 +8916 8916 8917 891.6 1783.2 8916 1994-05-31 2024-10-11 02:28:36.000 1994-05-31 2024-10-11 02:28:36 +8917 8917 8918 891.7 1783.4 8917 1994-06-01 2024-10-11 02:28:37.000 1994-06-01 2024-10-11 02:28:37 +8918 8918 8919 891.8 1783.6000000000001 8918 1994-06-02 2024-10-11 02:28:38.000 1994-06-02 2024-10-11 02:28:38 +8919 8919 8920 891.9 1783.8000000000002 8919 1994-06-03 2024-10-11 02:28:39.000 1994-06-03 2024-10-11 02:28:39 +8920 8920 8921 892 1784 8920 1994-06-04 2024-10-11 02:28:40.000 1994-06-04 2024-10-11 02:28:40 +8921 8921 8922 892.1 1784.2 8921 1994-06-05 2024-10-11 02:28:41.000 1994-06-05 2024-10-11 02:28:41 +8922 8922 8923 892.2 1784.4 8922 1994-06-06 2024-10-11 02:28:42.000 1994-06-06 2024-10-11 02:28:42 +8923 8923 8924 892.3 1784.6000000000001 8923 1994-06-07 2024-10-11 02:28:43.000 1994-06-07 2024-10-11 02:28:43 +8924 8924 8925 892.4 1784.8000000000002 8924 1994-06-08 2024-10-11 02:28:44.000 1994-06-08 2024-10-11 02:28:44 +8925 8925 8926 892.5 1785 8925 1994-06-09 2024-10-11 02:28:45.000 1994-06-09 2024-10-11 02:28:45 +8926 8926 8927 892.6 1785.2 8926 1994-06-10 2024-10-11 02:28:46.000 1994-06-10 2024-10-11 02:28:46 +8927 8927 8928 892.7 1785.4 8927 1994-06-11 2024-10-11 02:28:47.000 1994-06-11 2024-10-11 02:28:47 +8928 8928 8929 892.8 1785.6000000000001 8928 1994-06-12 2024-10-11 02:28:48.000 1994-06-12 2024-10-11 02:28:48 +8929 8929 8930 892.9 1785.8000000000002 8929 1994-06-13 2024-10-11 02:28:49.000 1994-06-13 2024-10-11 02:28:49 +8930 8930 8931 893 1786 8930 1994-06-14 2024-10-11 02:28:50.000 1994-06-14 2024-10-11 02:28:50 +8931 8931 8932 893.1 1786.2 8931 1994-06-15 2024-10-11 02:28:51.000 1994-06-15 2024-10-11 02:28:51 +8932 8932 8933 893.2 1786.4 8932 1994-06-16 2024-10-11 02:28:52.000 1994-06-16 2024-10-11 02:28:52 +8933 8933 8934 893.3 1786.6000000000001 8933 1994-06-17 2024-10-11 02:28:53.000 1994-06-17 2024-10-11 02:28:53 +8934 8934 8935 893.4 1786.8000000000002 8934 1994-06-18 2024-10-11 02:28:54.000 1994-06-18 2024-10-11 02:28:54 +8935 8935 8936 893.5 1787 8935 1994-06-19 2024-10-11 02:28:55.000 1994-06-19 2024-10-11 02:28:55 +8936 8936 8937 893.6 1787.2 8936 1994-06-20 2024-10-11 02:28:56.000 1994-06-20 2024-10-11 02:28:56 +8937 8937 8938 893.7 1787.4 8937 1994-06-21 2024-10-11 02:28:57.000 1994-06-21 2024-10-11 02:28:57 +8938 8938 8939 893.8 1787.6000000000001 8938 1994-06-22 2024-10-11 02:28:58.000 1994-06-22 2024-10-11 02:28:58 +8939 8939 8940 893.9 1787.8000000000002 8939 1994-06-23 2024-10-11 02:28:59.000 1994-06-23 2024-10-11 02:28:59 +8940 8940 8941 894 1788 8940 1994-06-24 2024-10-11 02:29:00.000 1994-06-24 2024-10-11 02:29:00 +8941 8941 8942 894.1 1788.2 8941 1994-06-25 2024-10-11 02:29:01.000 1994-06-25 2024-10-11 02:29:01 +8942 8942 8943 894.2 1788.4 8942 1994-06-26 2024-10-11 02:29:02.000 1994-06-26 2024-10-11 02:29:02 +8943 8943 8944 894.3 1788.6000000000001 8943 1994-06-27 2024-10-11 02:29:03.000 1994-06-27 2024-10-11 02:29:03 +8944 8944 8945 894.4 1788.8000000000002 8944 1994-06-28 2024-10-11 02:29:04.000 1994-06-28 2024-10-11 02:29:04 +8945 8945 8946 894.5 1789 8945 1994-06-29 2024-10-11 02:29:05.000 1994-06-29 2024-10-11 02:29:05 +8946 8946 8947 894.6 1789.2 8946 1994-06-30 2024-10-11 02:29:06.000 1994-06-30 2024-10-11 02:29:06 +8947 8947 8948 894.7 1789.4 8947 1994-07-01 2024-10-11 02:29:07.000 1994-07-01 2024-10-11 02:29:07 +8948 8948 8949 894.8 1789.6000000000001 8948 1994-07-02 2024-10-11 02:29:08.000 1994-07-02 2024-10-11 02:29:08 +8949 8949 8950 894.9 1789.8000000000002 8949 1994-07-03 2024-10-11 02:29:09.000 1994-07-03 2024-10-11 02:29:09 +8950 8950 8951 895 1790 8950 1994-07-04 2024-10-11 02:29:10.000 1994-07-04 2024-10-11 02:29:10 +8951 8951 8952 895.1 1790.2 8951 1994-07-05 2024-10-11 02:29:11.000 1994-07-05 2024-10-11 02:29:11 +8952 8952 8953 895.2 1790.4 8952 1994-07-06 2024-10-11 02:29:12.000 1994-07-06 2024-10-11 02:29:12 +8953 8953 8954 895.3 1790.6000000000001 8953 1994-07-07 2024-10-11 02:29:13.000 1994-07-07 2024-10-11 02:29:13 +8954 8954 8955 895.4 1790.8000000000002 8954 1994-07-08 2024-10-11 02:29:14.000 1994-07-08 2024-10-11 02:29:14 +8955 8955 8956 895.5 1791 8955 1994-07-09 2024-10-11 02:29:15.000 1994-07-09 2024-10-11 02:29:15 +8956 8956 8957 895.6 1791.2 8956 1994-07-10 2024-10-11 02:29:16.000 1994-07-10 2024-10-11 02:29:16 +8957 8957 8958 895.7 1791.4 8957 1994-07-11 2024-10-11 02:29:17.000 1994-07-11 2024-10-11 02:29:17 +8958 8958 8959 895.8 1791.6000000000001 8958 1994-07-12 2024-10-11 02:29:18.000 1994-07-12 2024-10-11 02:29:18 +8959 8959 8960 895.9 1791.8000000000002 8959 1994-07-13 2024-10-11 02:29:19.000 1994-07-13 2024-10-11 02:29:19 +8960 8960 8961 896 1792 8960 1994-07-14 2024-10-11 02:29:20.000 1994-07-14 2024-10-11 02:29:20 +8961 8961 8962 896.1 1792.2 8961 1994-07-15 2024-10-11 02:29:21.000 1994-07-15 2024-10-11 02:29:21 +8962 8962 8963 896.2 1792.4 8962 1994-07-16 2024-10-11 02:29:22.000 1994-07-16 2024-10-11 02:29:22 +8963 8963 8964 896.3 1792.6000000000001 8963 1994-07-17 2024-10-11 02:29:23.000 1994-07-17 2024-10-11 02:29:23 +8964 8964 8965 896.4 1792.8000000000002 8964 1994-07-18 2024-10-11 02:29:24.000 1994-07-18 2024-10-11 02:29:24 +8965 8965 8966 896.5 1793 8965 1994-07-19 2024-10-11 02:29:25.000 1994-07-19 2024-10-11 02:29:25 +8966 8966 8967 896.6 1793.2 8966 1994-07-20 2024-10-11 02:29:26.000 1994-07-20 2024-10-11 02:29:26 +8967 8967 8968 896.7 1793.4 8967 1994-07-21 2024-10-11 02:29:27.000 1994-07-21 2024-10-11 02:29:27 +8968 8968 8969 896.8 1793.6000000000001 8968 1994-07-22 2024-10-11 02:29:28.000 1994-07-22 2024-10-11 02:29:28 +8969 8969 8970 896.9 1793.8000000000002 8969 1994-07-23 2024-10-11 02:29:29.000 1994-07-23 2024-10-11 02:29:29 +8970 8970 8971 897 1794 8970 1994-07-24 2024-10-11 02:29:30.000 1994-07-24 2024-10-11 02:29:30 +8971 8971 8972 897.1 1794.2 8971 1994-07-25 2024-10-11 02:29:31.000 1994-07-25 2024-10-11 02:29:31 +8972 8972 8973 897.2 1794.4 8972 1994-07-26 2024-10-11 02:29:32.000 1994-07-26 2024-10-11 02:29:32 +8973 8973 8974 897.3 1794.6000000000001 8973 1994-07-27 2024-10-11 02:29:33.000 1994-07-27 2024-10-11 02:29:33 +8974 8974 8975 897.4 1794.8000000000002 8974 1994-07-28 2024-10-11 02:29:34.000 1994-07-28 2024-10-11 02:29:34 +8975 8975 8976 897.5 1795 8975 1994-07-29 2024-10-11 02:29:35.000 1994-07-29 2024-10-11 02:29:35 +8976 8976 8977 897.6 1795.2 8976 1994-07-30 2024-10-11 02:29:36.000 1994-07-30 2024-10-11 02:29:36 +8977 8977 8978 897.7 1795.4 8977 1994-07-31 2024-10-11 02:29:37.000 1994-07-31 2024-10-11 02:29:37 +8978 8978 8979 897.8 1795.6000000000001 8978 1994-08-01 2024-10-11 02:29:38.000 1994-08-01 2024-10-11 02:29:38 +8979 8979 8980 897.9 1795.8000000000002 8979 1994-08-02 2024-10-11 02:29:39.000 1994-08-02 2024-10-11 02:29:39 +8980 8980 8981 898 1796 8980 1994-08-03 2024-10-11 02:29:40.000 1994-08-03 2024-10-11 02:29:40 +8981 8981 8982 898.1 1796.2 8981 1994-08-04 2024-10-11 02:29:41.000 1994-08-04 2024-10-11 02:29:41 +8982 8982 8983 898.2 1796.4 8982 1994-08-05 2024-10-11 02:29:42.000 1994-08-05 2024-10-11 02:29:42 +8983 8983 8984 898.3 1796.6000000000001 8983 1994-08-06 2024-10-11 02:29:43.000 1994-08-06 2024-10-11 02:29:43 +8984 8984 8985 898.4 1796.8000000000002 8984 1994-08-07 2024-10-11 02:29:44.000 1994-08-07 2024-10-11 02:29:44 +8985 8985 8986 898.5 1797 8985 1994-08-08 2024-10-11 02:29:45.000 1994-08-08 2024-10-11 02:29:45 +8986 8986 8987 898.6 1797.2 8986 1994-08-09 2024-10-11 02:29:46.000 1994-08-09 2024-10-11 02:29:46 +8987 8987 8988 898.7 1797.4 8987 1994-08-10 2024-10-11 02:29:47.000 1994-08-10 2024-10-11 02:29:47 +8988 8988 8989 898.8 1797.6000000000001 8988 1994-08-11 2024-10-11 02:29:48.000 1994-08-11 2024-10-11 02:29:48 +8989 8989 8990 898.9 1797.8000000000002 8989 1994-08-12 2024-10-11 02:29:49.000 1994-08-12 2024-10-11 02:29:49 +8990 8990 8991 899 1798 8990 1994-08-13 2024-10-11 02:29:50.000 1994-08-13 2024-10-11 02:29:50 +8991 8991 8992 899.1 1798.2 8991 1994-08-14 2024-10-11 02:29:51.000 1994-08-14 2024-10-11 02:29:51 +8992 8992 8993 899.2 1798.4 8992 1994-08-15 2024-10-11 02:29:52.000 1994-08-15 2024-10-11 02:29:52 +8993 8993 8994 899.3 1798.6000000000001 8993 1994-08-16 2024-10-11 02:29:53.000 1994-08-16 2024-10-11 02:29:53 +8994 8994 8995 899.4 1798.8000000000002 8994 1994-08-17 2024-10-11 02:29:54.000 1994-08-17 2024-10-11 02:29:54 +8995 8995 8996 899.5 1799 8995 1994-08-18 2024-10-11 02:29:55.000 1994-08-18 2024-10-11 02:29:55 +8996 8996 8997 899.6 1799.2 8996 1994-08-19 2024-10-11 02:29:56.000 1994-08-19 2024-10-11 02:29:56 +8997 8997 8998 899.7 1799.4 8997 1994-08-20 2024-10-11 02:29:57.000 1994-08-20 2024-10-11 02:29:57 +8998 8998 8999 899.8 1799.6000000000001 8998 1994-08-21 2024-10-11 02:29:58.000 1994-08-21 2024-10-11 02:29:58 +8999 8999 9000 899.9 1799.8000000000002 8999 1994-08-22 2024-10-11 02:29:59.000 1994-08-22 2024-10-11 02:29:59 +9000 9000 9001 900 1800 9000 1994-08-23 2024-10-11 02:30:00.000 1994-08-23 2024-10-11 02:30:00 +9001 9001 9002 900.1 1800.2 9001 1994-08-24 2024-10-11 02:30:01.000 1994-08-24 2024-10-11 02:30:01 +9002 9002 9003 900.2 1800.4 9002 1994-08-25 2024-10-11 02:30:02.000 1994-08-25 2024-10-11 02:30:02 +9003 9003 9004 900.3 1800.6000000000001 9003 1994-08-26 2024-10-11 02:30:03.000 1994-08-26 2024-10-11 02:30:03 +9004 9004 9005 900.4 1800.8000000000002 9004 1994-08-27 2024-10-11 02:30:04.000 1994-08-27 2024-10-11 02:30:04 +9005 9005 9006 900.5 1801 9005 1994-08-28 2024-10-11 02:30:05.000 1994-08-28 2024-10-11 02:30:05 +9006 9006 9007 900.6 1801.2 9006 1994-08-29 2024-10-11 02:30:06.000 1994-08-29 2024-10-11 02:30:06 +9007 9007 9008 900.7 1801.4 9007 1994-08-30 2024-10-11 02:30:07.000 1994-08-30 2024-10-11 02:30:07 +9008 9008 9009 900.8 1801.6000000000001 9008 1994-08-31 2024-10-11 02:30:08.000 1994-08-31 2024-10-11 02:30:08 +9009 9009 9010 900.9 1801.8000000000002 9009 1994-09-01 2024-10-11 02:30:09.000 1994-09-01 2024-10-11 02:30:09 +9010 9010 9011 901 1802 9010 1994-09-02 2024-10-11 02:30:10.000 1994-09-02 2024-10-11 02:30:10 +9011 9011 9012 901.1 1802.2 9011 1994-09-03 2024-10-11 02:30:11.000 1994-09-03 2024-10-11 02:30:11 +9012 9012 9013 901.2 1802.4 9012 1994-09-04 2024-10-11 02:30:12.000 1994-09-04 2024-10-11 02:30:12 +9013 9013 9014 901.3 1802.6000000000001 9013 1994-09-05 2024-10-11 02:30:13.000 1994-09-05 2024-10-11 02:30:13 +9014 9014 9015 901.4 1802.8000000000002 9014 1994-09-06 2024-10-11 02:30:14.000 1994-09-06 2024-10-11 02:30:14 +9015 9015 9016 901.5 1803 9015 1994-09-07 2024-10-11 02:30:15.000 1994-09-07 2024-10-11 02:30:15 +9016 9016 9017 901.6 1803.2 9016 1994-09-08 2024-10-11 02:30:16.000 1994-09-08 2024-10-11 02:30:16 +9017 9017 9018 901.7 1803.4 9017 1994-09-09 2024-10-11 02:30:17.000 1994-09-09 2024-10-11 02:30:17 +9018 9018 9019 901.8 1803.6000000000001 9018 1994-09-10 2024-10-11 02:30:18.000 1994-09-10 2024-10-11 02:30:18 +9019 9019 9020 901.9 1803.8000000000002 9019 1994-09-11 2024-10-11 02:30:19.000 1994-09-11 2024-10-11 02:30:19 +9020 9020 9021 902 1804 9020 1994-09-12 2024-10-11 02:30:20.000 1994-09-12 2024-10-11 02:30:20 +9021 9021 9022 902.1 1804.2 9021 1994-09-13 2024-10-11 02:30:21.000 1994-09-13 2024-10-11 02:30:21 +9022 9022 9023 902.2 1804.4 9022 1994-09-14 2024-10-11 02:30:22.000 1994-09-14 2024-10-11 02:30:22 +9023 9023 9024 902.3 1804.6000000000001 9023 1994-09-15 2024-10-11 02:30:23.000 1994-09-15 2024-10-11 02:30:23 +9024 9024 9025 902.4 1804.8000000000002 9024 1994-09-16 2024-10-11 02:30:24.000 1994-09-16 2024-10-11 02:30:24 +9025 9025 9026 902.5 1805 9025 1994-09-17 2024-10-11 02:30:25.000 1994-09-17 2024-10-11 02:30:25 +9026 9026 9027 902.6 1805.2 9026 1994-09-18 2024-10-11 02:30:26.000 1994-09-18 2024-10-11 02:30:26 +9027 9027 9028 902.7 1805.4 9027 1994-09-19 2024-10-11 02:30:27.000 1994-09-19 2024-10-11 02:30:27 +9028 9028 9029 902.8 1805.6000000000001 9028 1994-09-20 2024-10-11 02:30:28.000 1994-09-20 2024-10-11 02:30:28 +9029 9029 9030 902.9 1805.8000000000002 9029 1994-09-21 2024-10-11 02:30:29.000 1994-09-21 2024-10-11 02:30:29 +9030 9030 9031 903 1806 9030 1994-09-22 2024-10-11 02:30:30.000 1994-09-22 2024-10-11 02:30:30 +9031 9031 9032 903.1 1806.2 9031 1994-09-23 2024-10-11 02:30:31.000 1994-09-23 2024-10-11 02:30:31 +9032 9032 9033 903.2 1806.4 9032 1994-09-24 2024-10-11 02:30:32.000 1994-09-24 2024-10-11 02:30:32 +9033 9033 9034 903.3 1806.6000000000001 9033 1994-09-25 2024-10-11 02:30:33.000 1994-09-25 2024-10-11 02:30:33 +9034 9034 9035 903.4 1806.8000000000002 9034 1994-09-26 2024-10-11 02:30:34.000 1994-09-26 2024-10-11 02:30:34 +9035 9035 9036 903.5 1807 9035 1994-09-27 2024-10-11 02:30:35.000 1994-09-27 2024-10-11 02:30:35 +9036 9036 9037 903.6 1807.2 9036 1994-09-28 2024-10-11 02:30:36.000 1994-09-28 2024-10-11 02:30:36 +9037 9037 9038 903.7 1807.4 9037 1994-09-29 2024-10-11 02:30:37.000 1994-09-29 2024-10-11 02:30:37 +9038 9038 9039 903.8 1807.6000000000001 9038 1994-09-30 2024-10-11 02:30:38.000 1994-09-30 2024-10-11 02:30:38 +9039 9039 9040 903.9 1807.8000000000002 9039 1994-10-01 2024-10-11 02:30:39.000 1994-10-01 2024-10-11 02:30:39 +9040 9040 9041 904 1808 9040 1994-10-02 2024-10-11 02:30:40.000 1994-10-02 2024-10-11 02:30:40 +9041 9041 9042 904.1 1808.2 9041 1994-10-03 2024-10-11 02:30:41.000 1994-10-03 2024-10-11 02:30:41 +9042 9042 9043 904.2 1808.4 9042 1994-10-04 2024-10-11 02:30:42.000 1994-10-04 2024-10-11 02:30:42 +9043 9043 9044 904.3 1808.6000000000001 9043 1994-10-05 2024-10-11 02:30:43.000 1994-10-05 2024-10-11 02:30:43 +9044 9044 9045 904.4 1808.8000000000002 9044 1994-10-06 2024-10-11 02:30:44.000 1994-10-06 2024-10-11 02:30:44 +9045 9045 9046 904.5 1809 9045 1994-10-07 2024-10-11 02:30:45.000 1994-10-07 2024-10-11 02:30:45 +9046 9046 9047 904.6 1809.2 9046 1994-10-08 2024-10-11 02:30:46.000 1994-10-08 2024-10-11 02:30:46 +9047 9047 9048 904.7 1809.4 9047 1994-10-09 2024-10-11 02:30:47.000 1994-10-09 2024-10-11 02:30:47 +9048 9048 9049 904.8 1809.6000000000001 9048 1994-10-10 2024-10-11 02:30:48.000 1994-10-10 2024-10-11 02:30:48 +9049 9049 9050 904.9 1809.8000000000002 9049 1994-10-11 2024-10-11 02:30:49.000 1994-10-11 2024-10-11 02:30:49 +9050 9050 9051 905 1810 9050 1994-10-12 2024-10-11 02:30:50.000 1994-10-12 2024-10-11 02:30:50 +9051 9051 9052 905.1 1810.2 9051 1994-10-13 2024-10-11 02:30:51.000 1994-10-13 2024-10-11 02:30:51 +9052 9052 9053 905.2 1810.4 9052 1994-10-14 2024-10-11 02:30:52.000 1994-10-14 2024-10-11 02:30:52 +9053 9053 9054 905.3 1810.6000000000001 9053 1994-10-15 2024-10-11 02:30:53.000 1994-10-15 2024-10-11 02:30:53 +9054 9054 9055 905.4 1810.8000000000002 9054 1994-10-16 2024-10-11 02:30:54.000 1994-10-16 2024-10-11 02:30:54 +9055 9055 9056 905.5 1811 9055 1994-10-17 2024-10-11 02:30:55.000 1994-10-17 2024-10-11 02:30:55 +9056 9056 9057 905.6 1811.2 9056 1994-10-18 2024-10-11 02:30:56.000 1994-10-18 2024-10-11 02:30:56 +9057 9057 9058 905.7 1811.4 9057 1994-10-19 2024-10-11 02:30:57.000 1994-10-19 2024-10-11 02:30:57 +9058 9058 9059 905.8 1811.6000000000001 9058 1994-10-20 2024-10-11 02:30:58.000 1994-10-20 2024-10-11 02:30:58 +9059 9059 9060 905.9 1811.8000000000002 9059 1994-10-21 2024-10-11 02:30:59.000 1994-10-21 2024-10-11 02:30:59 +9060 9060 9061 906 1812 9060 1994-10-22 2024-10-11 02:31:00.000 1994-10-22 2024-10-11 02:31:00 +9061 9061 9062 906.1 1812.2 9061 1994-10-23 2024-10-11 02:31:01.000 1994-10-23 2024-10-11 02:31:01 +9062 9062 9063 906.2 1812.4 9062 1994-10-24 2024-10-11 02:31:02.000 1994-10-24 2024-10-11 02:31:02 +9063 9063 9064 906.3 1812.6000000000001 9063 1994-10-25 2024-10-11 02:31:03.000 1994-10-25 2024-10-11 02:31:03 +9064 9064 9065 906.4 1812.8000000000002 9064 1994-10-26 2024-10-11 02:31:04.000 1994-10-26 2024-10-11 02:31:04 +9065 9065 9066 906.5 1813 9065 1994-10-27 2024-10-11 02:31:05.000 1994-10-27 2024-10-11 02:31:05 +9066 9066 9067 906.6 1813.2 9066 1994-10-28 2024-10-11 02:31:06.000 1994-10-28 2024-10-11 02:31:06 +9067 9067 9068 906.7 1813.4 9067 1994-10-29 2024-10-11 02:31:07.000 1994-10-29 2024-10-11 02:31:07 +9068 9068 9069 906.8 1813.6000000000001 9068 1994-10-30 2024-10-11 02:31:08.000 1994-10-30 2024-10-11 02:31:08 +9069 9069 9070 906.9 1813.8000000000002 9069 1994-10-31 2024-10-11 02:31:09.000 1994-10-31 2024-10-11 02:31:09 +9070 9070 9071 907 1814 9070 1994-11-01 2024-10-11 02:31:10.000 1994-11-01 2024-10-11 02:31:10 +9071 9071 9072 907.1 1814.2 9071 1994-11-02 2024-10-11 02:31:11.000 1994-11-02 2024-10-11 02:31:11 +9072 9072 9073 907.2 1814.4 9072 1994-11-03 2024-10-11 02:31:12.000 1994-11-03 2024-10-11 02:31:12 +9073 9073 9074 907.3 1814.6000000000001 9073 1994-11-04 2024-10-11 02:31:13.000 1994-11-04 2024-10-11 02:31:13 +9074 9074 9075 907.4 1814.8000000000002 9074 1994-11-05 2024-10-11 02:31:14.000 1994-11-05 2024-10-11 02:31:14 +9075 9075 9076 907.5 1815 9075 1994-11-06 2024-10-11 02:31:15.000 1994-11-06 2024-10-11 02:31:15 +9076 9076 9077 907.6 1815.2 9076 1994-11-07 2024-10-11 02:31:16.000 1994-11-07 2024-10-11 02:31:16 +9077 9077 9078 907.7 1815.4 9077 1994-11-08 2024-10-11 02:31:17.000 1994-11-08 2024-10-11 02:31:17 +9078 9078 9079 907.8 1815.6000000000001 9078 1994-11-09 2024-10-11 02:31:18.000 1994-11-09 2024-10-11 02:31:18 +9079 9079 9080 907.9 1815.8000000000002 9079 1994-11-10 2024-10-11 02:31:19.000 1994-11-10 2024-10-11 02:31:19 +9080 9080 9081 908 1816 9080 1994-11-11 2024-10-11 02:31:20.000 1994-11-11 2024-10-11 02:31:20 +9081 9081 9082 908.1 1816.2 9081 1994-11-12 2024-10-11 02:31:21.000 1994-11-12 2024-10-11 02:31:21 +9082 9082 9083 908.2 1816.4 9082 1994-11-13 2024-10-11 02:31:22.000 1994-11-13 2024-10-11 02:31:22 +9083 9083 9084 908.3 1816.6000000000001 9083 1994-11-14 2024-10-11 02:31:23.000 1994-11-14 2024-10-11 02:31:23 +9084 9084 9085 908.4 1816.8000000000002 9084 1994-11-15 2024-10-11 02:31:24.000 1994-11-15 2024-10-11 02:31:24 +9085 9085 9086 908.5 1817 9085 1994-11-16 2024-10-11 02:31:25.000 1994-11-16 2024-10-11 02:31:25 +9086 9086 9087 908.6 1817.2 9086 1994-11-17 2024-10-11 02:31:26.000 1994-11-17 2024-10-11 02:31:26 +9087 9087 9088 908.7 1817.4 9087 1994-11-18 2024-10-11 02:31:27.000 1994-11-18 2024-10-11 02:31:27 +9088 9088 9089 908.8 1817.6000000000001 9088 1994-11-19 2024-10-11 02:31:28.000 1994-11-19 2024-10-11 02:31:28 +9089 9089 9090 908.9 1817.8000000000002 9089 1994-11-20 2024-10-11 02:31:29.000 1994-11-20 2024-10-11 02:31:29 +9090 9090 9091 909 1818 9090 1994-11-21 2024-10-11 02:31:30.000 1994-11-21 2024-10-11 02:31:30 +9091 9091 9092 909.1 1818.2 9091 1994-11-22 2024-10-11 02:31:31.000 1994-11-22 2024-10-11 02:31:31 +9092 9092 9093 909.2 1818.4 9092 1994-11-23 2024-10-11 02:31:32.000 1994-11-23 2024-10-11 02:31:32 +9093 9093 9094 909.3 1818.6000000000001 9093 1994-11-24 2024-10-11 02:31:33.000 1994-11-24 2024-10-11 02:31:33 +9094 9094 9095 909.4 1818.8000000000002 9094 1994-11-25 2024-10-11 02:31:34.000 1994-11-25 2024-10-11 02:31:34 +9095 9095 9096 909.5 1819 9095 1994-11-26 2024-10-11 02:31:35.000 1994-11-26 2024-10-11 02:31:35 +9096 9096 9097 909.6 1819.2 9096 1994-11-27 2024-10-11 02:31:36.000 1994-11-27 2024-10-11 02:31:36 +9097 9097 9098 909.7 1819.4 9097 1994-11-28 2024-10-11 02:31:37.000 1994-11-28 2024-10-11 02:31:37 +9098 9098 9099 909.8 1819.6000000000001 9098 1994-11-29 2024-10-11 02:31:38.000 1994-11-29 2024-10-11 02:31:38 +9099 9099 9100 909.9 1819.8000000000002 9099 1994-11-30 2024-10-11 02:31:39.000 1994-11-30 2024-10-11 02:31:39 +9100 9100 9101 910 1820 9100 1994-12-01 2024-10-11 02:31:40.000 1994-12-01 2024-10-11 02:31:40 +9101 9101 9102 910.1 1820.2 9101 1994-12-02 2024-10-11 02:31:41.000 1994-12-02 2024-10-11 02:31:41 +9102 9102 9103 910.2 1820.4 9102 1994-12-03 2024-10-11 02:31:42.000 1994-12-03 2024-10-11 02:31:42 +9103 9103 9104 910.3 1820.6000000000001 9103 1994-12-04 2024-10-11 02:31:43.000 1994-12-04 2024-10-11 02:31:43 +9104 9104 9105 910.4 1820.8000000000002 9104 1994-12-05 2024-10-11 02:31:44.000 1994-12-05 2024-10-11 02:31:44 +9105 9105 9106 910.5 1821 9105 1994-12-06 2024-10-11 02:31:45.000 1994-12-06 2024-10-11 02:31:45 +9106 9106 9107 910.6 1821.2 9106 1994-12-07 2024-10-11 02:31:46.000 1994-12-07 2024-10-11 02:31:46 +9107 9107 9108 910.7 1821.4 9107 1994-12-08 2024-10-11 02:31:47.000 1994-12-08 2024-10-11 02:31:47 +9108 9108 9109 910.8 1821.6000000000001 9108 1994-12-09 2024-10-11 02:31:48.000 1994-12-09 2024-10-11 02:31:48 +9109 9109 9110 910.9 1821.8000000000002 9109 1994-12-10 2024-10-11 02:31:49.000 1994-12-10 2024-10-11 02:31:49 +9110 9110 9111 911 1822 9110 1994-12-11 2024-10-11 02:31:50.000 1994-12-11 2024-10-11 02:31:50 +9111 9111 9112 911.1 1822.2 9111 1994-12-12 2024-10-11 02:31:51.000 1994-12-12 2024-10-11 02:31:51 +9112 9112 9113 911.2 1822.4 9112 1994-12-13 2024-10-11 02:31:52.000 1994-12-13 2024-10-11 02:31:52 +9113 9113 9114 911.3 1822.6000000000001 9113 1994-12-14 2024-10-11 02:31:53.000 1994-12-14 2024-10-11 02:31:53 +9114 9114 9115 911.4 1822.8000000000002 9114 1994-12-15 2024-10-11 02:31:54.000 1994-12-15 2024-10-11 02:31:54 +9115 9115 9116 911.5 1823 9115 1994-12-16 2024-10-11 02:31:55.000 1994-12-16 2024-10-11 02:31:55 +9116 9116 9117 911.6 1823.2 9116 1994-12-17 2024-10-11 02:31:56.000 1994-12-17 2024-10-11 02:31:56 +9117 9117 9118 911.7 1823.4 9117 1994-12-18 2024-10-11 02:31:57.000 1994-12-18 2024-10-11 02:31:57 +9118 9118 9119 911.8 1823.6000000000001 9118 1994-12-19 2024-10-11 02:31:58.000 1994-12-19 2024-10-11 02:31:58 +9119 9119 9120 911.9 1823.8000000000002 9119 1994-12-20 2024-10-11 02:31:59.000 1994-12-20 2024-10-11 02:31:59 +9120 9120 9121 912 1824 9120 1994-12-21 2024-10-11 02:32:00.000 1994-12-21 2024-10-11 02:32:00 +9121 9121 9122 912.1 1824.2 9121 1994-12-22 2024-10-11 02:32:01.000 1994-12-22 2024-10-11 02:32:01 +9122 9122 9123 912.2 1824.4 9122 1994-12-23 2024-10-11 02:32:02.000 1994-12-23 2024-10-11 02:32:02 +9123 9123 9124 912.3 1824.6000000000001 9123 1994-12-24 2024-10-11 02:32:03.000 1994-12-24 2024-10-11 02:32:03 +9124 9124 9125 912.4 1824.8000000000002 9124 1994-12-25 2024-10-11 02:32:04.000 1994-12-25 2024-10-11 02:32:04 +9125 9125 9126 912.5 1825 9125 1994-12-26 2024-10-11 02:32:05.000 1994-12-26 2024-10-11 02:32:05 +9126 9126 9127 912.6 1825.2 9126 1994-12-27 2024-10-11 02:32:06.000 1994-12-27 2024-10-11 02:32:06 +9127 9127 9128 912.7 1825.4 9127 1994-12-28 2024-10-11 02:32:07.000 1994-12-28 2024-10-11 02:32:07 +9128 9128 9129 912.8 1825.6000000000001 9128 1994-12-29 2024-10-11 02:32:08.000 1994-12-29 2024-10-11 02:32:08 +9129 9129 9130 912.9 1825.8000000000002 9129 1994-12-30 2024-10-11 02:32:09.000 1994-12-30 2024-10-11 02:32:09 +9130 9130 9131 913 1826 9130 1994-12-31 2024-10-11 02:32:10.000 1994-12-31 2024-10-11 02:32:10 +9131 9131 9132 913.1 1826.2 9131 1995-01-01 2024-10-11 02:32:11.000 1995-01-01 2024-10-11 02:32:11 +9132 9132 9133 913.2 1826.4 9132 1995-01-02 2024-10-11 02:32:12.000 1995-01-02 2024-10-11 02:32:12 +9133 9133 9134 913.3 1826.6000000000001 9133 1995-01-03 2024-10-11 02:32:13.000 1995-01-03 2024-10-11 02:32:13 +9134 9134 9135 913.4 1826.8000000000002 9134 1995-01-04 2024-10-11 02:32:14.000 1995-01-04 2024-10-11 02:32:14 +9135 9135 9136 913.5 1827 9135 1995-01-05 2024-10-11 02:32:15.000 1995-01-05 2024-10-11 02:32:15 +9136 9136 9137 913.6 1827.2 9136 1995-01-06 2024-10-11 02:32:16.000 1995-01-06 2024-10-11 02:32:16 +9137 9137 9138 913.7 1827.4 9137 1995-01-07 2024-10-11 02:32:17.000 1995-01-07 2024-10-11 02:32:17 +9138 9138 9139 913.8 1827.6000000000001 9138 1995-01-08 2024-10-11 02:32:18.000 1995-01-08 2024-10-11 02:32:18 +9139 9139 9140 913.9 1827.8000000000002 9139 1995-01-09 2024-10-11 02:32:19.000 1995-01-09 2024-10-11 02:32:19 +9140 9140 9141 914 1828 9140 1995-01-10 2024-10-11 02:32:20.000 1995-01-10 2024-10-11 02:32:20 +9141 9141 9142 914.1 1828.2 9141 1995-01-11 2024-10-11 02:32:21.000 1995-01-11 2024-10-11 02:32:21 +9142 9142 9143 914.2 1828.4 9142 1995-01-12 2024-10-11 02:32:22.000 1995-01-12 2024-10-11 02:32:22 +9143 9143 9144 914.3 1828.6000000000001 9143 1995-01-13 2024-10-11 02:32:23.000 1995-01-13 2024-10-11 02:32:23 +9144 9144 9145 914.4 1828.8000000000002 9144 1995-01-14 2024-10-11 02:32:24.000 1995-01-14 2024-10-11 02:32:24 +9145 9145 9146 914.5 1829 9145 1995-01-15 2024-10-11 02:32:25.000 1995-01-15 2024-10-11 02:32:25 +9146 9146 9147 914.6 1829.2 9146 1995-01-16 2024-10-11 02:32:26.000 1995-01-16 2024-10-11 02:32:26 +9147 9147 9148 914.7 1829.4 9147 1995-01-17 2024-10-11 02:32:27.000 1995-01-17 2024-10-11 02:32:27 +9148 9148 9149 914.8 1829.6000000000001 9148 1995-01-18 2024-10-11 02:32:28.000 1995-01-18 2024-10-11 02:32:28 +9149 9149 9150 914.9 1829.8000000000002 9149 1995-01-19 2024-10-11 02:32:29.000 1995-01-19 2024-10-11 02:32:29 +9150 9150 9151 915 1830 9150 1995-01-20 2024-10-11 02:32:30.000 1995-01-20 2024-10-11 02:32:30 +9151 9151 9152 915.1 1830.2 9151 1995-01-21 2024-10-11 02:32:31.000 1995-01-21 2024-10-11 02:32:31 +9152 9152 9153 915.2 1830.4 9152 1995-01-22 2024-10-11 02:32:32.000 1995-01-22 2024-10-11 02:32:32 +9153 9153 9154 915.3 1830.6000000000001 9153 1995-01-23 2024-10-11 02:32:33.000 1995-01-23 2024-10-11 02:32:33 +9154 9154 9155 915.4 1830.8000000000002 9154 1995-01-24 2024-10-11 02:32:34.000 1995-01-24 2024-10-11 02:32:34 +9155 9155 9156 915.5 1831 9155 1995-01-25 2024-10-11 02:32:35.000 1995-01-25 2024-10-11 02:32:35 +9156 9156 9157 915.6 1831.2 9156 1995-01-26 2024-10-11 02:32:36.000 1995-01-26 2024-10-11 02:32:36 +9157 9157 9158 915.7 1831.4 9157 1995-01-27 2024-10-11 02:32:37.000 1995-01-27 2024-10-11 02:32:37 +9158 9158 9159 915.8 1831.6000000000001 9158 1995-01-28 2024-10-11 02:32:38.000 1995-01-28 2024-10-11 02:32:38 +9159 9159 9160 915.9 1831.8000000000002 9159 1995-01-29 2024-10-11 02:32:39.000 1995-01-29 2024-10-11 02:32:39 +9160 9160 9161 916 1832 9160 1995-01-30 2024-10-11 02:32:40.000 1995-01-30 2024-10-11 02:32:40 +9161 9161 9162 916.1 1832.2 9161 1995-01-31 2024-10-11 02:32:41.000 1995-01-31 2024-10-11 02:32:41 +9162 9162 9163 916.2 1832.4 9162 1995-02-01 2024-10-11 02:32:42.000 1995-02-01 2024-10-11 02:32:42 +9163 9163 9164 916.3 1832.6000000000001 9163 1995-02-02 2024-10-11 02:32:43.000 1995-02-02 2024-10-11 02:32:43 +9164 9164 9165 916.4 1832.8000000000002 9164 1995-02-03 2024-10-11 02:32:44.000 1995-02-03 2024-10-11 02:32:44 +9165 9165 9166 916.5 1833 9165 1995-02-04 2024-10-11 02:32:45.000 1995-02-04 2024-10-11 02:32:45 +9166 9166 9167 916.6 1833.2 9166 1995-02-05 2024-10-11 02:32:46.000 1995-02-05 2024-10-11 02:32:46 +9167 9167 9168 916.7 1833.4 9167 1995-02-06 2024-10-11 02:32:47.000 1995-02-06 2024-10-11 02:32:47 +9168 9168 9169 916.8 1833.6000000000001 9168 1995-02-07 2024-10-11 02:32:48.000 1995-02-07 2024-10-11 02:32:48 +9169 9169 9170 916.9 1833.8000000000002 9169 1995-02-08 2024-10-11 02:32:49.000 1995-02-08 2024-10-11 02:32:49 +9170 9170 9171 917 1834 9170 1995-02-09 2024-10-11 02:32:50.000 1995-02-09 2024-10-11 02:32:50 +9171 9171 9172 917.1 1834.2 9171 1995-02-10 2024-10-11 02:32:51.000 1995-02-10 2024-10-11 02:32:51 +9172 9172 9173 917.2 1834.4 9172 1995-02-11 2024-10-11 02:32:52.000 1995-02-11 2024-10-11 02:32:52 +9173 9173 9174 917.3 1834.6000000000001 9173 1995-02-12 2024-10-11 02:32:53.000 1995-02-12 2024-10-11 02:32:53 +9174 9174 9175 917.4 1834.8000000000002 9174 1995-02-13 2024-10-11 02:32:54.000 1995-02-13 2024-10-11 02:32:54 +9175 9175 9176 917.5 1835 9175 1995-02-14 2024-10-11 02:32:55.000 1995-02-14 2024-10-11 02:32:55 +9176 9176 9177 917.6 1835.2 9176 1995-02-15 2024-10-11 02:32:56.000 1995-02-15 2024-10-11 02:32:56 +9177 9177 9178 917.7 1835.4 9177 1995-02-16 2024-10-11 02:32:57.000 1995-02-16 2024-10-11 02:32:57 +9178 9178 9179 917.8 1835.6000000000001 9178 1995-02-17 2024-10-11 02:32:58.000 1995-02-17 2024-10-11 02:32:58 +9179 9179 9180 917.9 1835.8000000000002 9179 1995-02-18 2024-10-11 02:32:59.000 1995-02-18 2024-10-11 02:32:59 +9180 9180 9181 918 1836 9180 1995-02-19 2024-10-11 02:33:00.000 1995-02-19 2024-10-11 02:33:00 +9181 9181 9182 918.1 1836.2 9181 1995-02-20 2024-10-11 02:33:01.000 1995-02-20 2024-10-11 02:33:01 +9182 9182 9183 918.2 1836.4 9182 1995-02-21 2024-10-11 02:33:02.000 1995-02-21 2024-10-11 02:33:02 +9183 9183 9184 918.3 1836.6000000000001 9183 1995-02-22 2024-10-11 02:33:03.000 1995-02-22 2024-10-11 02:33:03 +9184 9184 9185 918.4 1836.8000000000002 9184 1995-02-23 2024-10-11 02:33:04.000 1995-02-23 2024-10-11 02:33:04 +9185 9185 9186 918.5 1837 9185 1995-02-24 2024-10-11 02:33:05.000 1995-02-24 2024-10-11 02:33:05 +9186 9186 9187 918.6 1837.2 9186 1995-02-25 2024-10-11 02:33:06.000 1995-02-25 2024-10-11 02:33:06 +9187 9187 9188 918.7 1837.4 9187 1995-02-26 2024-10-11 02:33:07.000 1995-02-26 2024-10-11 02:33:07 +9188 9188 9189 918.8 1837.6000000000001 9188 1995-02-27 2024-10-11 02:33:08.000 1995-02-27 2024-10-11 02:33:08 +9189 9189 9190 918.9 1837.8000000000002 9189 1995-02-28 2024-10-11 02:33:09.000 1995-02-28 2024-10-11 02:33:09 +9190 9190 9191 919 1838 9190 1995-03-01 2024-10-11 02:33:10.000 1995-03-01 2024-10-11 02:33:10 +9191 9191 9192 919.1 1838.2 9191 1995-03-02 2024-10-11 02:33:11.000 1995-03-02 2024-10-11 02:33:11 +9192 9192 9193 919.2 1838.4 9192 1995-03-03 2024-10-11 02:33:12.000 1995-03-03 2024-10-11 02:33:12 +9193 9193 9194 919.3 1838.6000000000001 9193 1995-03-04 2024-10-11 02:33:13.000 1995-03-04 2024-10-11 02:33:13 +9194 9194 9195 919.4 1838.8000000000002 9194 1995-03-05 2024-10-11 02:33:14.000 1995-03-05 2024-10-11 02:33:14 +9195 9195 9196 919.5 1839 9195 1995-03-06 2024-10-11 02:33:15.000 1995-03-06 2024-10-11 02:33:15 +9196 9196 9197 919.6 1839.2 9196 1995-03-07 2024-10-11 02:33:16.000 1995-03-07 2024-10-11 02:33:16 +9197 9197 9198 919.7 1839.4 9197 1995-03-08 2024-10-11 02:33:17.000 1995-03-08 2024-10-11 02:33:17 +9198 9198 9199 919.8 1839.6000000000001 9198 1995-03-09 2024-10-11 02:33:18.000 1995-03-09 2024-10-11 02:33:18 +9199 9199 9200 919.9 1839.8000000000002 9199 1995-03-10 2024-10-11 02:33:19.000 1995-03-10 2024-10-11 02:33:19 +9200 9200 9201 920 1840 9200 1995-03-11 2024-10-11 02:33:20.000 1995-03-11 2024-10-11 02:33:20 +9201 9201 9202 920.1 1840.2 9201 1995-03-12 2024-10-11 02:33:21.000 1995-03-12 2024-10-11 02:33:21 +9202 9202 9203 920.2 1840.4 9202 1995-03-13 2024-10-11 02:33:22.000 1995-03-13 2024-10-11 02:33:22 +9203 9203 9204 920.3 1840.6000000000001 9203 1995-03-14 2024-10-11 02:33:23.000 1995-03-14 2024-10-11 02:33:23 +9204 9204 9205 920.4 1840.8000000000002 9204 1995-03-15 2024-10-11 02:33:24.000 1995-03-15 2024-10-11 02:33:24 +9205 9205 9206 920.5 1841 9205 1995-03-16 2024-10-11 02:33:25.000 1995-03-16 2024-10-11 02:33:25 +9206 9206 9207 920.6 1841.2 9206 1995-03-17 2024-10-11 02:33:26.000 1995-03-17 2024-10-11 02:33:26 +9207 9207 9208 920.7 1841.4 9207 1995-03-18 2024-10-11 02:33:27.000 1995-03-18 2024-10-11 02:33:27 +9208 9208 9209 920.8 1841.6000000000001 9208 1995-03-19 2024-10-11 02:33:28.000 1995-03-19 2024-10-11 02:33:28 +9209 9209 9210 920.9 1841.8000000000002 9209 1995-03-20 2024-10-11 02:33:29.000 1995-03-20 2024-10-11 02:33:29 +9210 9210 9211 921 1842 9210 1995-03-21 2024-10-11 02:33:30.000 1995-03-21 2024-10-11 02:33:30 +9211 9211 9212 921.1 1842.2 9211 1995-03-22 2024-10-11 02:33:31.000 1995-03-22 2024-10-11 02:33:31 +9212 9212 9213 921.2 1842.4 9212 1995-03-23 2024-10-11 02:33:32.000 1995-03-23 2024-10-11 02:33:32 +9213 9213 9214 921.3 1842.6000000000001 9213 1995-03-24 2024-10-11 02:33:33.000 1995-03-24 2024-10-11 02:33:33 +9214 9214 9215 921.4 1842.8000000000002 9214 1995-03-25 2024-10-11 02:33:34.000 1995-03-25 2024-10-11 02:33:34 +9215 9215 9216 921.5 1843 9215 1995-03-26 2024-10-11 02:33:35.000 1995-03-26 2024-10-11 02:33:35 +9216 9216 9217 921.6 1843.2 9216 1995-03-27 2024-10-11 02:33:36.000 1995-03-27 2024-10-11 02:33:36 +9217 9217 9218 921.7 1843.4 9217 1995-03-28 2024-10-11 02:33:37.000 1995-03-28 2024-10-11 02:33:37 +9218 9218 9219 921.8 1843.6000000000001 9218 1995-03-29 2024-10-11 02:33:38.000 1995-03-29 2024-10-11 02:33:38 +9219 9219 9220 921.9 1843.8000000000002 9219 1995-03-30 2024-10-11 02:33:39.000 1995-03-30 2024-10-11 02:33:39 +9220 9220 9221 922 1844 9220 1995-03-31 2024-10-11 02:33:40.000 1995-03-31 2024-10-11 02:33:40 +9221 9221 9222 922.1 1844.2 9221 1995-04-01 2024-10-11 02:33:41.000 1995-04-01 2024-10-11 02:33:41 +9222 9222 9223 922.2 1844.4 9222 1995-04-02 2024-10-11 02:33:42.000 1995-04-02 2024-10-11 02:33:42 +9223 9223 9224 922.3 1844.6000000000001 9223 1995-04-03 2024-10-11 02:33:43.000 1995-04-03 2024-10-11 02:33:43 +9224 9224 9225 922.4 1844.8000000000002 9224 1995-04-04 2024-10-11 02:33:44.000 1995-04-04 2024-10-11 02:33:44 +9225 9225 9226 922.5 1845 9225 1995-04-05 2024-10-11 02:33:45.000 1995-04-05 2024-10-11 02:33:45 +9226 9226 9227 922.6 1845.2 9226 1995-04-06 2024-10-11 02:33:46.000 1995-04-06 2024-10-11 02:33:46 +9227 9227 9228 922.7 1845.4 9227 1995-04-07 2024-10-11 02:33:47.000 1995-04-07 2024-10-11 02:33:47 +9228 9228 9229 922.8 1845.6000000000001 9228 1995-04-08 2024-10-11 02:33:48.000 1995-04-08 2024-10-11 02:33:48 +9229 9229 9230 922.9 1845.8000000000002 9229 1995-04-09 2024-10-11 02:33:49.000 1995-04-09 2024-10-11 02:33:49 +9230 9230 9231 923 1846 9230 1995-04-10 2024-10-11 02:33:50.000 1995-04-10 2024-10-11 02:33:50 +9231 9231 9232 923.1 1846.2 9231 1995-04-11 2024-10-11 02:33:51.000 1995-04-11 2024-10-11 02:33:51 +9232 9232 9233 923.2 1846.4 9232 1995-04-12 2024-10-11 02:33:52.000 1995-04-12 2024-10-11 02:33:52 +9233 9233 9234 923.3 1846.6000000000001 9233 1995-04-13 2024-10-11 02:33:53.000 1995-04-13 2024-10-11 02:33:53 +9234 9234 9235 923.4 1846.8000000000002 9234 1995-04-14 2024-10-11 02:33:54.000 1995-04-14 2024-10-11 02:33:54 +9235 9235 9236 923.5 1847 9235 1995-04-15 2024-10-11 02:33:55.000 1995-04-15 2024-10-11 02:33:55 +9236 9236 9237 923.6 1847.2 9236 1995-04-16 2024-10-11 02:33:56.000 1995-04-16 2024-10-11 02:33:56 +9237 9237 9238 923.7 1847.4 9237 1995-04-17 2024-10-11 02:33:57.000 1995-04-17 2024-10-11 02:33:57 +9238 9238 9239 923.8 1847.6000000000001 9238 1995-04-18 2024-10-11 02:33:58.000 1995-04-18 2024-10-11 02:33:58 +9239 9239 9240 923.9 1847.8000000000002 9239 1995-04-19 2024-10-11 02:33:59.000 1995-04-19 2024-10-11 02:33:59 +9240 9240 9241 924 1848 9240 1995-04-20 2024-10-11 02:34:00.000 1995-04-20 2024-10-11 02:34:00 +9241 9241 9242 924.1 1848.2 9241 1995-04-21 2024-10-11 02:34:01.000 1995-04-21 2024-10-11 02:34:01 +9242 9242 9243 924.2 1848.4 9242 1995-04-22 2024-10-11 02:34:02.000 1995-04-22 2024-10-11 02:34:02 +9243 9243 9244 924.3 1848.6000000000001 9243 1995-04-23 2024-10-11 02:34:03.000 1995-04-23 2024-10-11 02:34:03 +9244 9244 9245 924.4 1848.8000000000002 9244 1995-04-24 2024-10-11 02:34:04.000 1995-04-24 2024-10-11 02:34:04 +9245 9245 9246 924.5 1849 9245 1995-04-25 2024-10-11 02:34:05.000 1995-04-25 2024-10-11 02:34:05 +9246 9246 9247 924.6 1849.2 9246 1995-04-26 2024-10-11 02:34:06.000 1995-04-26 2024-10-11 02:34:06 +9247 9247 9248 924.7 1849.4 9247 1995-04-27 2024-10-11 02:34:07.000 1995-04-27 2024-10-11 02:34:07 +9248 9248 9249 924.8 1849.6000000000001 9248 1995-04-28 2024-10-11 02:34:08.000 1995-04-28 2024-10-11 02:34:08 +9249 9249 9250 924.9 1849.8000000000002 9249 1995-04-29 2024-10-11 02:34:09.000 1995-04-29 2024-10-11 02:34:09 +9250 9250 9251 925 1850 9250 1995-04-30 2024-10-11 02:34:10.000 1995-04-30 2024-10-11 02:34:10 +9251 9251 9252 925.1 1850.2 9251 1995-05-01 2024-10-11 02:34:11.000 1995-05-01 2024-10-11 02:34:11 +9252 9252 9253 925.2 1850.4 9252 1995-05-02 2024-10-11 02:34:12.000 1995-05-02 2024-10-11 02:34:12 +9253 9253 9254 925.3 1850.6000000000001 9253 1995-05-03 2024-10-11 02:34:13.000 1995-05-03 2024-10-11 02:34:13 +9254 9254 9255 925.4 1850.8000000000002 9254 1995-05-04 2024-10-11 02:34:14.000 1995-05-04 2024-10-11 02:34:14 +9255 9255 9256 925.5 1851 9255 1995-05-05 2024-10-11 02:34:15.000 1995-05-05 2024-10-11 02:34:15 +9256 9256 9257 925.6 1851.2 9256 1995-05-06 2024-10-11 02:34:16.000 1995-05-06 2024-10-11 02:34:16 +9257 9257 9258 925.7 1851.4 9257 1995-05-07 2024-10-11 02:34:17.000 1995-05-07 2024-10-11 02:34:17 +9258 9258 9259 925.8 1851.6000000000001 9258 1995-05-08 2024-10-11 02:34:18.000 1995-05-08 2024-10-11 02:34:18 +9259 9259 9260 925.9 1851.8000000000002 9259 1995-05-09 2024-10-11 02:34:19.000 1995-05-09 2024-10-11 02:34:19 +9260 9260 9261 926 1852 9260 1995-05-10 2024-10-11 02:34:20.000 1995-05-10 2024-10-11 02:34:20 +9261 9261 9262 926.1 1852.2 9261 1995-05-11 2024-10-11 02:34:21.000 1995-05-11 2024-10-11 02:34:21 +9262 9262 9263 926.2 1852.4 9262 1995-05-12 2024-10-11 02:34:22.000 1995-05-12 2024-10-11 02:34:22 +9263 9263 9264 926.3 1852.6000000000001 9263 1995-05-13 2024-10-11 02:34:23.000 1995-05-13 2024-10-11 02:34:23 +9264 9264 9265 926.4 1852.8000000000002 9264 1995-05-14 2024-10-11 02:34:24.000 1995-05-14 2024-10-11 02:34:24 +9265 9265 9266 926.5 1853 9265 1995-05-15 2024-10-11 02:34:25.000 1995-05-15 2024-10-11 02:34:25 +9266 9266 9267 926.6 1853.2 9266 1995-05-16 2024-10-11 02:34:26.000 1995-05-16 2024-10-11 02:34:26 +9267 9267 9268 926.7 1853.4 9267 1995-05-17 2024-10-11 02:34:27.000 1995-05-17 2024-10-11 02:34:27 +9268 9268 9269 926.8 1853.6000000000001 9268 1995-05-18 2024-10-11 02:34:28.000 1995-05-18 2024-10-11 02:34:28 +9269 9269 9270 926.9 1853.8000000000002 9269 1995-05-19 2024-10-11 02:34:29.000 1995-05-19 2024-10-11 02:34:29 +9270 9270 9271 927 1854 9270 1995-05-20 2024-10-11 02:34:30.000 1995-05-20 2024-10-11 02:34:30 +9271 9271 9272 927.1 1854.2 9271 1995-05-21 2024-10-11 02:34:31.000 1995-05-21 2024-10-11 02:34:31 +9272 9272 9273 927.2 1854.4 9272 1995-05-22 2024-10-11 02:34:32.000 1995-05-22 2024-10-11 02:34:32 +9273 9273 9274 927.3 1854.6000000000001 9273 1995-05-23 2024-10-11 02:34:33.000 1995-05-23 2024-10-11 02:34:33 +9274 9274 9275 927.4 1854.8000000000002 9274 1995-05-24 2024-10-11 02:34:34.000 1995-05-24 2024-10-11 02:34:34 +9275 9275 9276 927.5 1855 9275 1995-05-25 2024-10-11 02:34:35.000 1995-05-25 2024-10-11 02:34:35 +9276 9276 9277 927.6 1855.2 9276 1995-05-26 2024-10-11 02:34:36.000 1995-05-26 2024-10-11 02:34:36 +9277 9277 9278 927.7 1855.4 9277 1995-05-27 2024-10-11 02:34:37.000 1995-05-27 2024-10-11 02:34:37 +9278 9278 9279 927.8 1855.6000000000001 9278 1995-05-28 2024-10-11 02:34:38.000 1995-05-28 2024-10-11 02:34:38 +9279 9279 9280 927.9 1855.8000000000002 9279 1995-05-29 2024-10-11 02:34:39.000 1995-05-29 2024-10-11 02:34:39 +9280 9280 9281 928 1856 9280 1995-05-30 2024-10-11 02:34:40.000 1995-05-30 2024-10-11 02:34:40 +9281 9281 9282 928.1 1856.2 9281 1995-05-31 2024-10-11 02:34:41.000 1995-05-31 2024-10-11 02:34:41 +9282 9282 9283 928.2 1856.4 9282 1995-06-01 2024-10-11 02:34:42.000 1995-06-01 2024-10-11 02:34:42 +9283 9283 9284 928.3 1856.6000000000001 9283 1995-06-02 2024-10-11 02:34:43.000 1995-06-02 2024-10-11 02:34:43 +9284 9284 9285 928.4 1856.8000000000002 9284 1995-06-03 2024-10-11 02:34:44.000 1995-06-03 2024-10-11 02:34:44 +9285 9285 9286 928.5 1857 9285 1995-06-04 2024-10-11 02:34:45.000 1995-06-04 2024-10-11 02:34:45 +9286 9286 9287 928.6 1857.2 9286 1995-06-05 2024-10-11 02:34:46.000 1995-06-05 2024-10-11 02:34:46 +9287 9287 9288 928.7 1857.4 9287 1995-06-06 2024-10-11 02:34:47.000 1995-06-06 2024-10-11 02:34:47 +9288 9288 9289 928.8 1857.6000000000001 9288 1995-06-07 2024-10-11 02:34:48.000 1995-06-07 2024-10-11 02:34:48 +9289 9289 9290 928.9 1857.8000000000002 9289 1995-06-08 2024-10-11 02:34:49.000 1995-06-08 2024-10-11 02:34:49 +9290 9290 9291 929 1858 9290 1995-06-09 2024-10-11 02:34:50.000 1995-06-09 2024-10-11 02:34:50 +9291 9291 9292 929.1 1858.2 9291 1995-06-10 2024-10-11 02:34:51.000 1995-06-10 2024-10-11 02:34:51 +9292 9292 9293 929.2 1858.4 9292 1995-06-11 2024-10-11 02:34:52.000 1995-06-11 2024-10-11 02:34:52 +9293 9293 9294 929.3 1858.6000000000001 9293 1995-06-12 2024-10-11 02:34:53.000 1995-06-12 2024-10-11 02:34:53 +9294 9294 9295 929.4 1858.8000000000002 9294 1995-06-13 2024-10-11 02:34:54.000 1995-06-13 2024-10-11 02:34:54 +9295 9295 9296 929.5 1859 9295 1995-06-14 2024-10-11 02:34:55.000 1995-06-14 2024-10-11 02:34:55 +9296 9296 9297 929.6 1859.2 9296 1995-06-15 2024-10-11 02:34:56.000 1995-06-15 2024-10-11 02:34:56 +9297 9297 9298 929.7 1859.4 9297 1995-06-16 2024-10-11 02:34:57.000 1995-06-16 2024-10-11 02:34:57 +9298 9298 9299 929.8 1859.6000000000001 9298 1995-06-17 2024-10-11 02:34:58.000 1995-06-17 2024-10-11 02:34:58 +9299 9299 9300 929.9 1859.8000000000002 9299 1995-06-18 2024-10-11 02:34:59.000 1995-06-18 2024-10-11 02:34:59 +9300 9300 9301 930 1860 9300 1995-06-19 2024-10-11 02:35:00.000 1995-06-19 2024-10-11 02:35:00 +9301 9301 9302 930.1 1860.2 9301 1995-06-20 2024-10-11 02:35:01.000 1995-06-20 2024-10-11 02:35:01 +9302 9302 9303 930.2 1860.4 9302 1995-06-21 2024-10-11 02:35:02.000 1995-06-21 2024-10-11 02:35:02 +9303 9303 9304 930.3 1860.6000000000001 9303 1995-06-22 2024-10-11 02:35:03.000 1995-06-22 2024-10-11 02:35:03 +9304 9304 9305 930.4 1860.8000000000002 9304 1995-06-23 2024-10-11 02:35:04.000 1995-06-23 2024-10-11 02:35:04 +9305 9305 9306 930.5 1861 9305 1995-06-24 2024-10-11 02:35:05.000 1995-06-24 2024-10-11 02:35:05 +9306 9306 9307 930.6 1861.2 9306 1995-06-25 2024-10-11 02:35:06.000 1995-06-25 2024-10-11 02:35:06 +9307 9307 9308 930.7 1861.4 9307 1995-06-26 2024-10-11 02:35:07.000 1995-06-26 2024-10-11 02:35:07 +9308 9308 9309 930.8 1861.6000000000001 9308 1995-06-27 2024-10-11 02:35:08.000 1995-06-27 2024-10-11 02:35:08 +9309 9309 9310 930.9 1861.8000000000002 9309 1995-06-28 2024-10-11 02:35:09.000 1995-06-28 2024-10-11 02:35:09 +9310 9310 9311 931 1862 9310 1995-06-29 2024-10-11 02:35:10.000 1995-06-29 2024-10-11 02:35:10 +9311 9311 9312 931.1 1862.2 9311 1995-06-30 2024-10-11 02:35:11.000 1995-06-30 2024-10-11 02:35:11 +9312 9312 9313 931.2 1862.4 9312 1995-07-01 2024-10-11 02:35:12.000 1995-07-01 2024-10-11 02:35:12 +9313 9313 9314 931.3 1862.6000000000001 9313 1995-07-02 2024-10-11 02:35:13.000 1995-07-02 2024-10-11 02:35:13 +9314 9314 9315 931.4 1862.8000000000002 9314 1995-07-03 2024-10-11 02:35:14.000 1995-07-03 2024-10-11 02:35:14 +9315 9315 9316 931.5 1863 9315 1995-07-04 2024-10-11 02:35:15.000 1995-07-04 2024-10-11 02:35:15 +9316 9316 9317 931.6 1863.2 9316 1995-07-05 2024-10-11 02:35:16.000 1995-07-05 2024-10-11 02:35:16 +9317 9317 9318 931.7 1863.4 9317 1995-07-06 2024-10-11 02:35:17.000 1995-07-06 2024-10-11 02:35:17 +9318 9318 9319 931.8 1863.6000000000001 9318 1995-07-07 2024-10-11 02:35:18.000 1995-07-07 2024-10-11 02:35:18 +9319 9319 9320 931.9 1863.8000000000002 9319 1995-07-08 2024-10-11 02:35:19.000 1995-07-08 2024-10-11 02:35:19 +9320 9320 9321 932 1864 9320 1995-07-09 2024-10-11 02:35:20.000 1995-07-09 2024-10-11 02:35:20 +9321 9321 9322 932.1 1864.2 9321 1995-07-10 2024-10-11 02:35:21.000 1995-07-10 2024-10-11 02:35:21 +9322 9322 9323 932.2 1864.4 9322 1995-07-11 2024-10-11 02:35:22.000 1995-07-11 2024-10-11 02:35:22 +9323 9323 9324 932.3 1864.6000000000001 9323 1995-07-12 2024-10-11 02:35:23.000 1995-07-12 2024-10-11 02:35:23 +9324 9324 9325 932.4 1864.8000000000002 9324 1995-07-13 2024-10-11 02:35:24.000 1995-07-13 2024-10-11 02:35:24 +9325 9325 9326 932.5 1865 9325 1995-07-14 2024-10-11 02:35:25.000 1995-07-14 2024-10-11 02:35:25 +9326 9326 9327 932.6 1865.2 9326 1995-07-15 2024-10-11 02:35:26.000 1995-07-15 2024-10-11 02:35:26 +9327 9327 9328 932.7 1865.4 9327 1995-07-16 2024-10-11 02:35:27.000 1995-07-16 2024-10-11 02:35:27 +9328 9328 9329 932.8 1865.6000000000001 9328 1995-07-17 2024-10-11 02:35:28.000 1995-07-17 2024-10-11 02:35:28 +9329 9329 9330 932.9 1865.8000000000002 9329 1995-07-18 2024-10-11 02:35:29.000 1995-07-18 2024-10-11 02:35:29 +9330 9330 9331 933 1866 9330 1995-07-19 2024-10-11 02:35:30.000 1995-07-19 2024-10-11 02:35:30 +9331 9331 9332 933.1 1866.2 9331 1995-07-20 2024-10-11 02:35:31.000 1995-07-20 2024-10-11 02:35:31 +9332 9332 9333 933.2 1866.4 9332 1995-07-21 2024-10-11 02:35:32.000 1995-07-21 2024-10-11 02:35:32 +9333 9333 9334 933.3 1866.6000000000001 9333 1995-07-22 2024-10-11 02:35:33.000 1995-07-22 2024-10-11 02:35:33 +9334 9334 9335 933.4 1866.8000000000002 9334 1995-07-23 2024-10-11 02:35:34.000 1995-07-23 2024-10-11 02:35:34 +9335 9335 9336 933.5 1867 9335 1995-07-24 2024-10-11 02:35:35.000 1995-07-24 2024-10-11 02:35:35 +9336 9336 9337 933.6 1867.2 9336 1995-07-25 2024-10-11 02:35:36.000 1995-07-25 2024-10-11 02:35:36 +9337 9337 9338 933.7 1867.4 9337 1995-07-26 2024-10-11 02:35:37.000 1995-07-26 2024-10-11 02:35:37 +9338 9338 9339 933.8 1867.6000000000001 9338 1995-07-27 2024-10-11 02:35:38.000 1995-07-27 2024-10-11 02:35:38 +9339 9339 9340 933.9 1867.8000000000002 9339 1995-07-28 2024-10-11 02:35:39.000 1995-07-28 2024-10-11 02:35:39 +9340 9340 9341 934 1868 9340 1995-07-29 2024-10-11 02:35:40.000 1995-07-29 2024-10-11 02:35:40 +9341 9341 9342 934.1 1868.2 9341 1995-07-30 2024-10-11 02:35:41.000 1995-07-30 2024-10-11 02:35:41 +9342 9342 9343 934.2 1868.4 9342 1995-07-31 2024-10-11 02:35:42.000 1995-07-31 2024-10-11 02:35:42 +9343 9343 9344 934.3 1868.6000000000001 9343 1995-08-01 2024-10-11 02:35:43.000 1995-08-01 2024-10-11 02:35:43 +9344 9344 9345 934.4 1868.8000000000002 9344 1995-08-02 2024-10-11 02:35:44.000 1995-08-02 2024-10-11 02:35:44 +9345 9345 9346 934.5 1869 9345 1995-08-03 2024-10-11 02:35:45.000 1995-08-03 2024-10-11 02:35:45 +9346 9346 9347 934.6 1869.2 9346 1995-08-04 2024-10-11 02:35:46.000 1995-08-04 2024-10-11 02:35:46 +9347 9347 9348 934.7 1869.4 9347 1995-08-05 2024-10-11 02:35:47.000 1995-08-05 2024-10-11 02:35:47 +9348 9348 9349 934.8 1869.6000000000001 9348 1995-08-06 2024-10-11 02:35:48.000 1995-08-06 2024-10-11 02:35:48 +9349 9349 9350 934.9 1869.8000000000002 9349 1995-08-07 2024-10-11 02:35:49.000 1995-08-07 2024-10-11 02:35:49 +9350 9350 9351 935 1870 9350 1995-08-08 2024-10-11 02:35:50.000 1995-08-08 2024-10-11 02:35:50 +9351 9351 9352 935.1 1870.2 9351 1995-08-09 2024-10-11 02:35:51.000 1995-08-09 2024-10-11 02:35:51 +9352 9352 9353 935.2 1870.4 9352 1995-08-10 2024-10-11 02:35:52.000 1995-08-10 2024-10-11 02:35:52 +9353 9353 9354 935.3 1870.6000000000001 9353 1995-08-11 2024-10-11 02:35:53.000 1995-08-11 2024-10-11 02:35:53 +9354 9354 9355 935.4 1870.8000000000002 9354 1995-08-12 2024-10-11 02:35:54.000 1995-08-12 2024-10-11 02:35:54 +9355 9355 9356 935.5 1871 9355 1995-08-13 2024-10-11 02:35:55.000 1995-08-13 2024-10-11 02:35:55 +9356 9356 9357 935.6 1871.2 9356 1995-08-14 2024-10-11 02:35:56.000 1995-08-14 2024-10-11 02:35:56 +9357 9357 9358 935.7 1871.4 9357 1995-08-15 2024-10-11 02:35:57.000 1995-08-15 2024-10-11 02:35:57 +9358 9358 9359 935.8 1871.6000000000001 9358 1995-08-16 2024-10-11 02:35:58.000 1995-08-16 2024-10-11 02:35:58 +9359 9359 9360 935.9 1871.8000000000002 9359 1995-08-17 2024-10-11 02:35:59.000 1995-08-17 2024-10-11 02:35:59 +9360 9360 9361 936 1872 9360 1995-08-18 2024-10-11 02:36:00.000 1995-08-18 2024-10-11 02:36:00 +9361 9361 9362 936.1 1872.2 9361 1995-08-19 2024-10-11 02:36:01.000 1995-08-19 2024-10-11 02:36:01 +9362 9362 9363 936.2 1872.4 9362 1995-08-20 2024-10-11 02:36:02.000 1995-08-20 2024-10-11 02:36:02 +9363 9363 9364 936.3 1872.6000000000001 9363 1995-08-21 2024-10-11 02:36:03.000 1995-08-21 2024-10-11 02:36:03 +9364 9364 9365 936.4 1872.8000000000002 9364 1995-08-22 2024-10-11 02:36:04.000 1995-08-22 2024-10-11 02:36:04 +9365 9365 9366 936.5 1873 9365 1995-08-23 2024-10-11 02:36:05.000 1995-08-23 2024-10-11 02:36:05 +9366 9366 9367 936.6 1873.2 9366 1995-08-24 2024-10-11 02:36:06.000 1995-08-24 2024-10-11 02:36:06 +9367 9367 9368 936.7 1873.4 9367 1995-08-25 2024-10-11 02:36:07.000 1995-08-25 2024-10-11 02:36:07 +9368 9368 9369 936.8 1873.6000000000001 9368 1995-08-26 2024-10-11 02:36:08.000 1995-08-26 2024-10-11 02:36:08 +9369 9369 9370 936.9 1873.8000000000002 9369 1995-08-27 2024-10-11 02:36:09.000 1995-08-27 2024-10-11 02:36:09 +9370 9370 9371 937 1874 9370 1995-08-28 2024-10-11 02:36:10.000 1995-08-28 2024-10-11 02:36:10 +9371 9371 9372 937.1 1874.2 9371 1995-08-29 2024-10-11 02:36:11.000 1995-08-29 2024-10-11 02:36:11 +9372 9372 9373 937.2 1874.4 9372 1995-08-30 2024-10-11 02:36:12.000 1995-08-30 2024-10-11 02:36:12 +9373 9373 9374 937.3 1874.6000000000001 9373 1995-08-31 2024-10-11 02:36:13.000 1995-08-31 2024-10-11 02:36:13 +9374 9374 9375 937.4 1874.8000000000002 9374 1995-09-01 2024-10-11 02:36:14.000 1995-09-01 2024-10-11 02:36:14 +9375 9375 9376 937.5 1875 9375 1995-09-02 2024-10-11 02:36:15.000 1995-09-02 2024-10-11 02:36:15 +9376 9376 9377 937.6 1875.2 9376 1995-09-03 2024-10-11 02:36:16.000 1995-09-03 2024-10-11 02:36:16 +9377 9377 9378 937.7 1875.4 9377 1995-09-04 2024-10-11 02:36:17.000 1995-09-04 2024-10-11 02:36:17 +9378 9378 9379 937.8 1875.6000000000001 9378 1995-09-05 2024-10-11 02:36:18.000 1995-09-05 2024-10-11 02:36:18 +9379 9379 9380 937.9 1875.8000000000002 9379 1995-09-06 2024-10-11 02:36:19.000 1995-09-06 2024-10-11 02:36:19 +9380 9380 9381 938 1876 9380 1995-09-07 2024-10-11 02:36:20.000 1995-09-07 2024-10-11 02:36:20 +9381 9381 9382 938.1 1876.2 9381 1995-09-08 2024-10-11 02:36:21.000 1995-09-08 2024-10-11 02:36:21 +9382 9382 9383 938.2 1876.4 9382 1995-09-09 2024-10-11 02:36:22.000 1995-09-09 2024-10-11 02:36:22 +9383 9383 9384 938.3 1876.6000000000001 9383 1995-09-10 2024-10-11 02:36:23.000 1995-09-10 2024-10-11 02:36:23 +9384 9384 9385 938.4 1876.8000000000002 9384 1995-09-11 2024-10-11 02:36:24.000 1995-09-11 2024-10-11 02:36:24 +9385 9385 9386 938.5 1877 9385 1995-09-12 2024-10-11 02:36:25.000 1995-09-12 2024-10-11 02:36:25 +9386 9386 9387 938.6 1877.2 9386 1995-09-13 2024-10-11 02:36:26.000 1995-09-13 2024-10-11 02:36:26 +9387 9387 9388 938.7 1877.4 9387 1995-09-14 2024-10-11 02:36:27.000 1995-09-14 2024-10-11 02:36:27 +9388 9388 9389 938.8 1877.6000000000001 9388 1995-09-15 2024-10-11 02:36:28.000 1995-09-15 2024-10-11 02:36:28 +9389 9389 9390 938.9 1877.8000000000002 9389 1995-09-16 2024-10-11 02:36:29.000 1995-09-16 2024-10-11 02:36:29 +9390 9390 9391 939 1878 9390 1995-09-17 2024-10-11 02:36:30.000 1995-09-17 2024-10-11 02:36:30 +9391 9391 9392 939.1 1878.2 9391 1995-09-18 2024-10-11 02:36:31.000 1995-09-18 2024-10-11 02:36:31 +9392 9392 9393 939.2 1878.4 9392 1995-09-19 2024-10-11 02:36:32.000 1995-09-19 2024-10-11 02:36:32 +9393 9393 9394 939.3 1878.6000000000001 9393 1995-09-20 2024-10-11 02:36:33.000 1995-09-20 2024-10-11 02:36:33 +9394 9394 9395 939.4 1878.8000000000002 9394 1995-09-21 2024-10-11 02:36:34.000 1995-09-21 2024-10-11 02:36:34 +9395 9395 9396 939.5 1879 9395 1995-09-22 2024-10-11 02:36:35.000 1995-09-22 2024-10-11 02:36:35 +9396 9396 9397 939.6 1879.2 9396 1995-09-23 2024-10-11 02:36:36.000 1995-09-23 2024-10-11 02:36:36 +9397 9397 9398 939.7 1879.4 9397 1995-09-24 2024-10-11 02:36:37.000 1995-09-24 2024-10-11 02:36:37 +9398 9398 9399 939.8 1879.6000000000001 9398 1995-09-25 2024-10-11 02:36:38.000 1995-09-25 2024-10-11 02:36:38 +9399 9399 9400 939.9 1879.8000000000002 9399 1995-09-26 2024-10-11 02:36:39.000 1995-09-26 2024-10-11 02:36:39 +9400 9400 9401 940 1880 9400 1995-09-27 2024-10-11 02:36:40.000 1995-09-27 2024-10-11 02:36:40 +9401 9401 9402 940.1 1880.2 9401 1995-09-28 2024-10-11 02:36:41.000 1995-09-28 2024-10-11 02:36:41 +9402 9402 9403 940.2 1880.4 9402 1995-09-29 2024-10-11 02:36:42.000 1995-09-29 2024-10-11 02:36:42 +9403 9403 9404 940.3 1880.6000000000001 9403 1995-09-30 2024-10-11 02:36:43.000 1995-09-30 2024-10-11 02:36:43 +9404 9404 9405 940.4 1880.8000000000002 9404 1995-10-01 2024-10-11 02:36:44.000 1995-10-01 2024-10-11 02:36:44 +9405 9405 9406 940.5 1881 9405 1995-10-02 2024-10-11 02:36:45.000 1995-10-02 2024-10-11 02:36:45 +9406 9406 9407 940.6 1881.2 9406 1995-10-03 2024-10-11 02:36:46.000 1995-10-03 2024-10-11 02:36:46 +9407 9407 9408 940.7 1881.4 9407 1995-10-04 2024-10-11 02:36:47.000 1995-10-04 2024-10-11 02:36:47 +9408 9408 9409 940.8 1881.6000000000001 9408 1995-10-05 2024-10-11 02:36:48.000 1995-10-05 2024-10-11 02:36:48 +9409 9409 9410 940.9 1881.8000000000002 9409 1995-10-06 2024-10-11 02:36:49.000 1995-10-06 2024-10-11 02:36:49 +9410 9410 9411 941 1882 9410 1995-10-07 2024-10-11 02:36:50.000 1995-10-07 2024-10-11 02:36:50 +9411 9411 9412 941.1 1882.2 9411 1995-10-08 2024-10-11 02:36:51.000 1995-10-08 2024-10-11 02:36:51 +9412 9412 9413 941.2 1882.4 9412 1995-10-09 2024-10-11 02:36:52.000 1995-10-09 2024-10-11 02:36:52 +9413 9413 9414 941.3 1882.6000000000001 9413 1995-10-10 2024-10-11 02:36:53.000 1995-10-10 2024-10-11 02:36:53 +9414 9414 9415 941.4 1882.8000000000002 9414 1995-10-11 2024-10-11 02:36:54.000 1995-10-11 2024-10-11 02:36:54 +9415 9415 9416 941.5 1883 9415 1995-10-12 2024-10-11 02:36:55.000 1995-10-12 2024-10-11 02:36:55 +9416 9416 9417 941.6 1883.2 9416 1995-10-13 2024-10-11 02:36:56.000 1995-10-13 2024-10-11 02:36:56 +9417 9417 9418 941.7 1883.4 9417 1995-10-14 2024-10-11 02:36:57.000 1995-10-14 2024-10-11 02:36:57 +9418 9418 9419 941.8 1883.6000000000001 9418 1995-10-15 2024-10-11 02:36:58.000 1995-10-15 2024-10-11 02:36:58 +9419 9419 9420 941.9 1883.8000000000002 9419 1995-10-16 2024-10-11 02:36:59.000 1995-10-16 2024-10-11 02:36:59 +9420 9420 9421 942 1884 9420 1995-10-17 2024-10-11 02:37:00.000 1995-10-17 2024-10-11 02:37:00 +9421 9421 9422 942.1 1884.2 9421 1995-10-18 2024-10-11 02:37:01.000 1995-10-18 2024-10-11 02:37:01 +9422 9422 9423 942.2 1884.4 9422 1995-10-19 2024-10-11 02:37:02.000 1995-10-19 2024-10-11 02:37:02 +9423 9423 9424 942.3 1884.6000000000001 9423 1995-10-20 2024-10-11 02:37:03.000 1995-10-20 2024-10-11 02:37:03 +9424 9424 9425 942.4 1884.8000000000002 9424 1995-10-21 2024-10-11 02:37:04.000 1995-10-21 2024-10-11 02:37:04 +9425 9425 9426 942.5 1885 9425 1995-10-22 2024-10-11 02:37:05.000 1995-10-22 2024-10-11 02:37:05 +9426 9426 9427 942.6 1885.2 9426 1995-10-23 2024-10-11 02:37:06.000 1995-10-23 2024-10-11 02:37:06 +9427 9427 9428 942.7 1885.4 9427 1995-10-24 2024-10-11 02:37:07.000 1995-10-24 2024-10-11 02:37:07 +9428 9428 9429 942.8 1885.6000000000001 9428 1995-10-25 2024-10-11 02:37:08.000 1995-10-25 2024-10-11 02:37:08 +9429 9429 9430 942.9 1885.8000000000002 9429 1995-10-26 2024-10-11 02:37:09.000 1995-10-26 2024-10-11 02:37:09 +9430 9430 9431 943 1886 9430 1995-10-27 2024-10-11 02:37:10.000 1995-10-27 2024-10-11 02:37:10 +9431 9431 9432 943.1 1886.2 9431 1995-10-28 2024-10-11 02:37:11.000 1995-10-28 2024-10-11 02:37:11 +9432 9432 9433 943.2 1886.4 9432 1995-10-29 2024-10-11 02:37:12.000 1995-10-29 2024-10-11 02:37:12 +9433 9433 9434 943.3 1886.6000000000001 9433 1995-10-30 2024-10-11 02:37:13.000 1995-10-30 2024-10-11 02:37:13 +9434 9434 9435 943.4 1886.8000000000002 9434 1995-10-31 2024-10-11 02:37:14.000 1995-10-31 2024-10-11 02:37:14 +9435 9435 9436 943.5 1887 9435 1995-11-01 2024-10-11 02:37:15.000 1995-11-01 2024-10-11 02:37:15 +9436 9436 9437 943.6 1887.2 9436 1995-11-02 2024-10-11 02:37:16.000 1995-11-02 2024-10-11 02:37:16 +9437 9437 9438 943.7 1887.4 9437 1995-11-03 2024-10-11 02:37:17.000 1995-11-03 2024-10-11 02:37:17 +9438 9438 9439 943.8 1887.6000000000001 9438 1995-11-04 2024-10-11 02:37:18.000 1995-11-04 2024-10-11 02:37:18 +9439 9439 9440 943.9 1887.8000000000002 9439 1995-11-05 2024-10-11 02:37:19.000 1995-11-05 2024-10-11 02:37:19 +9440 9440 9441 944 1888 9440 1995-11-06 2024-10-11 02:37:20.000 1995-11-06 2024-10-11 02:37:20 +9441 9441 9442 944.1 1888.2 9441 1995-11-07 2024-10-11 02:37:21.000 1995-11-07 2024-10-11 02:37:21 +9442 9442 9443 944.2 1888.4 9442 1995-11-08 2024-10-11 02:37:22.000 1995-11-08 2024-10-11 02:37:22 +9443 9443 9444 944.3 1888.6000000000001 9443 1995-11-09 2024-10-11 02:37:23.000 1995-11-09 2024-10-11 02:37:23 +9444 9444 9445 944.4 1888.8000000000002 9444 1995-11-10 2024-10-11 02:37:24.000 1995-11-10 2024-10-11 02:37:24 +9445 9445 9446 944.5 1889 9445 1995-11-11 2024-10-11 02:37:25.000 1995-11-11 2024-10-11 02:37:25 +9446 9446 9447 944.6 1889.2 9446 1995-11-12 2024-10-11 02:37:26.000 1995-11-12 2024-10-11 02:37:26 +9447 9447 9448 944.7 1889.4 9447 1995-11-13 2024-10-11 02:37:27.000 1995-11-13 2024-10-11 02:37:27 +9448 9448 9449 944.8 1889.6000000000001 9448 1995-11-14 2024-10-11 02:37:28.000 1995-11-14 2024-10-11 02:37:28 +9449 9449 9450 944.9 1889.8000000000002 9449 1995-11-15 2024-10-11 02:37:29.000 1995-11-15 2024-10-11 02:37:29 +9450 9450 9451 945 1890 9450 1995-11-16 2024-10-11 02:37:30.000 1995-11-16 2024-10-11 02:37:30 +9451 9451 9452 945.1 1890.2 9451 1995-11-17 2024-10-11 02:37:31.000 1995-11-17 2024-10-11 02:37:31 +9452 9452 9453 945.2 1890.4 9452 1995-11-18 2024-10-11 02:37:32.000 1995-11-18 2024-10-11 02:37:32 +9453 9453 9454 945.3 1890.6000000000001 9453 1995-11-19 2024-10-11 02:37:33.000 1995-11-19 2024-10-11 02:37:33 +9454 9454 9455 945.4 1890.8000000000002 9454 1995-11-20 2024-10-11 02:37:34.000 1995-11-20 2024-10-11 02:37:34 +9455 9455 9456 945.5 1891 9455 1995-11-21 2024-10-11 02:37:35.000 1995-11-21 2024-10-11 02:37:35 +9456 9456 9457 945.6 1891.2 9456 1995-11-22 2024-10-11 02:37:36.000 1995-11-22 2024-10-11 02:37:36 +9457 9457 9458 945.7 1891.4 9457 1995-11-23 2024-10-11 02:37:37.000 1995-11-23 2024-10-11 02:37:37 +9458 9458 9459 945.8 1891.6000000000001 9458 1995-11-24 2024-10-11 02:37:38.000 1995-11-24 2024-10-11 02:37:38 +9459 9459 9460 945.9 1891.8000000000002 9459 1995-11-25 2024-10-11 02:37:39.000 1995-11-25 2024-10-11 02:37:39 +9460 9460 9461 946 1892 9460 1995-11-26 2024-10-11 02:37:40.000 1995-11-26 2024-10-11 02:37:40 +9461 9461 9462 946.1 1892.2 9461 1995-11-27 2024-10-11 02:37:41.000 1995-11-27 2024-10-11 02:37:41 +9462 9462 9463 946.2 1892.4 9462 1995-11-28 2024-10-11 02:37:42.000 1995-11-28 2024-10-11 02:37:42 +9463 9463 9464 946.3 1892.6000000000001 9463 1995-11-29 2024-10-11 02:37:43.000 1995-11-29 2024-10-11 02:37:43 +9464 9464 9465 946.4 1892.8000000000002 9464 1995-11-30 2024-10-11 02:37:44.000 1995-11-30 2024-10-11 02:37:44 +9465 9465 9466 946.5 1893 9465 1995-12-01 2024-10-11 02:37:45.000 1995-12-01 2024-10-11 02:37:45 +9466 9466 9467 946.6 1893.2 9466 1995-12-02 2024-10-11 02:37:46.000 1995-12-02 2024-10-11 02:37:46 +9467 9467 9468 946.7 1893.4 9467 1995-12-03 2024-10-11 02:37:47.000 1995-12-03 2024-10-11 02:37:47 +9468 9468 9469 946.8 1893.6000000000001 9468 1995-12-04 2024-10-11 02:37:48.000 1995-12-04 2024-10-11 02:37:48 +9469 9469 9470 946.9 1893.8000000000002 9469 1995-12-05 2024-10-11 02:37:49.000 1995-12-05 2024-10-11 02:37:49 +9470 9470 9471 947 1894 9470 1995-12-06 2024-10-11 02:37:50.000 1995-12-06 2024-10-11 02:37:50 +9471 9471 9472 947.1 1894.2 9471 1995-12-07 2024-10-11 02:37:51.000 1995-12-07 2024-10-11 02:37:51 +9472 9472 9473 947.2 1894.4 9472 1995-12-08 2024-10-11 02:37:52.000 1995-12-08 2024-10-11 02:37:52 +9473 9473 9474 947.3 1894.6000000000001 9473 1995-12-09 2024-10-11 02:37:53.000 1995-12-09 2024-10-11 02:37:53 +9474 9474 9475 947.4 1894.8000000000002 9474 1995-12-10 2024-10-11 02:37:54.000 1995-12-10 2024-10-11 02:37:54 +9475 9475 9476 947.5 1895 9475 1995-12-11 2024-10-11 02:37:55.000 1995-12-11 2024-10-11 02:37:55 +9476 9476 9477 947.6 1895.2 9476 1995-12-12 2024-10-11 02:37:56.000 1995-12-12 2024-10-11 02:37:56 +9477 9477 9478 947.7 1895.4 9477 1995-12-13 2024-10-11 02:37:57.000 1995-12-13 2024-10-11 02:37:57 +9478 9478 9479 947.8 1895.6000000000001 9478 1995-12-14 2024-10-11 02:37:58.000 1995-12-14 2024-10-11 02:37:58 +9479 9479 9480 947.9 1895.8000000000002 9479 1995-12-15 2024-10-11 02:37:59.000 1995-12-15 2024-10-11 02:37:59 +9480 9480 9481 948 1896 9480 1995-12-16 2024-10-11 02:38:00.000 1995-12-16 2024-10-11 02:38:00 +9481 9481 9482 948.1 1896.2 9481 1995-12-17 2024-10-11 02:38:01.000 1995-12-17 2024-10-11 02:38:01 +9482 9482 9483 948.2 1896.4 9482 1995-12-18 2024-10-11 02:38:02.000 1995-12-18 2024-10-11 02:38:02 +9483 9483 9484 948.3 1896.6000000000001 9483 1995-12-19 2024-10-11 02:38:03.000 1995-12-19 2024-10-11 02:38:03 +9484 9484 9485 948.4 1896.8000000000002 9484 1995-12-20 2024-10-11 02:38:04.000 1995-12-20 2024-10-11 02:38:04 +9485 9485 9486 948.5 1897 9485 1995-12-21 2024-10-11 02:38:05.000 1995-12-21 2024-10-11 02:38:05 +9486 9486 9487 948.6 1897.2 9486 1995-12-22 2024-10-11 02:38:06.000 1995-12-22 2024-10-11 02:38:06 +9487 9487 9488 948.7 1897.4 9487 1995-12-23 2024-10-11 02:38:07.000 1995-12-23 2024-10-11 02:38:07 +9488 9488 9489 948.8 1897.6000000000001 9488 1995-12-24 2024-10-11 02:38:08.000 1995-12-24 2024-10-11 02:38:08 +9489 9489 9490 948.9 1897.8000000000002 9489 1995-12-25 2024-10-11 02:38:09.000 1995-12-25 2024-10-11 02:38:09 +9490 9490 9491 949 1898 9490 1995-12-26 2024-10-11 02:38:10.000 1995-12-26 2024-10-11 02:38:10 +9491 9491 9492 949.1 1898.2 9491 1995-12-27 2024-10-11 02:38:11.000 1995-12-27 2024-10-11 02:38:11 +9492 9492 9493 949.2 1898.4 9492 1995-12-28 2024-10-11 02:38:12.000 1995-12-28 2024-10-11 02:38:12 +9493 9493 9494 949.3 1898.6000000000001 9493 1995-12-29 2024-10-11 02:38:13.000 1995-12-29 2024-10-11 02:38:13 +9494 9494 9495 949.4 1898.8000000000002 9494 1995-12-30 2024-10-11 02:38:14.000 1995-12-30 2024-10-11 02:38:14 +9495 9495 9496 949.5 1899 9495 1995-12-31 2024-10-11 02:38:15.000 1995-12-31 2024-10-11 02:38:15 +9496 9496 9497 949.6 1899.2 9496 1996-01-01 2024-10-11 02:38:16.000 1996-01-01 2024-10-11 02:38:16 +9497 9497 9498 949.7 1899.4 9497 1996-01-02 2024-10-11 02:38:17.000 1996-01-02 2024-10-11 02:38:17 +9498 9498 9499 949.8 1899.6000000000001 9498 1996-01-03 2024-10-11 02:38:18.000 1996-01-03 2024-10-11 02:38:18 +9499 9499 9500 949.9 1899.8000000000002 9499 1996-01-04 2024-10-11 02:38:19.000 1996-01-04 2024-10-11 02:38:19 +9500 9500 9501 950 1900 9500 1996-01-05 2024-10-11 02:38:20.000 1996-01-05 2024-10-11 02:38:20 +9501 9501 9502 950.1 1900.2 9501 1996-01-06 2024-10-11 02:38:21.000 1996-01-06 2024-10-11 02:38:21 +9502 9502 9503 950.2 1900.4 9502 1996-01-07 2024-10-11 02:38:22.000 1996-01-07 2024-10-11 02:38:22 +9503 9503 9504 950.3 1900.6000000000001 9503 1996-01-08 2024-10-11 02:38:23.000 1996-01-08 2024-10-11 02:38:23 +9504 9504 9505 950.4 1900.8000000000002 9504 1996-01-09 2024-10-11 02:38:24.000 1996-01-09 2024-10-11 02:38:24 +9505 9505 9506 950.5 1901 9505 1996-01-10 2024-10-11 02:38:25.000 1996-01-10 2024-10-11 02:38:25 +9506 9506 9507 950.6 1901.2 9506 1996-01-11 2024-10-11 02:38:26.000 1996-01-11 2024-10-11 02:38:26 +9507 9507 9508 950.7 1901.4 9507 1996-01-12 2024-10-11 02:38:27.000 1996-01-12 2024-10-11 02:38:27 +9508 9508 9509 950.8 1901.6000000000001 9508 1996-01-13 2024-10-11 02:38:28.000 1996-01-13 2024-10-11 02:38:28 +9509 9509 9510 950.9 1901.8000000000002 9509 1996-01-14 2024-10-11 02:38:29.000 1996-01-14 2024-10-11 02:38:29 +9510 9510 9511 951 1902 9510 1996-01-15 2024-10-11 02:38:30.000 1996-01-15 2024-10-11 02:38:30 +9511 9511 9512 951.1 1902.2 9511 1996-01-16 2024-10-11 02:38:31.000 1996-01-16 2024-10-11 02:38:31 +9512 9512 9513 951.2 1902.4 9512 1996-01-17 2024-10-11 02:38:32.000 1996-01-17 2024-10-11 02:38:32 +9513 9513 9514 951.3 1902.6000000000001 9513 1996-01-18 2024-10-11 02:38:33.000 1996-01-18 2024-10-11 02:38:33 +9514 9514 9515 951.4 1902.8000000000002 9514 1996-01-19 2024-10-11 02:38:34.000 1996-01-19 2024-10-11 02:38:34 +9515 9515 9516 951.5 1903 9515 1996-01-20 2024-10-11 02:38:35.000 1996-01-20 2024-10-11 02:38:35 +9516 9516 9517 951.6 1903.2 9516 1996-01-21 2024-10-11 02:38:36.000 1996-01-21 2024-10-11 02:38:36 +9517 9517 9518 951.7 1903.4 9517 1996-01-22 2024-10-11 02:38:37.000 1996-01-22 2024-10-11 02:38:37 +9518 9518 9519 951.8 1903.6000000000001 9518 1996-01-23 2024-10-11 02:38:38.000 1996-01-23 2024-10-11 02:38:38 +9519 9519 9520 951.9 1903.8000000000002 9519 1996-01-24 2024-10-11 02:38:39.000 1996-01-24 2024-10-11 02:38:39 +9520 9520 9521 952 1904 9520 1996-01-25 2024-10-11 02:38:40.000 1996-01-25 2024-10-11 02:38:40 +9521 9521 9522 952.1 1904.2 9521 1996-01-26 2024-10-11 02:38:41.000 1996-01-26 2024-10-11 02:38:41 +9522 9522 9523 952.2 1904.4 9522 1996-01-27 2024-10-11 02:38:42.000 1996-01-27 2024-10-11 02:38:42 +9523 9523 9524 952.3 1904.6000000000001 9523 1996-01-28 2024-10-11 02:38:43.000 1996-01-28 2024-10-11 02:38:43 +9524 9524 9525 952.4 1904.8000000000002 9524 1996-01-29 2024-10-11 02:38:44.000 1996-01-29 2024-10-11 02:38:44 +9525 9525 9526 952.5 1905 9525 1996-01-30 2024-10-11 02:38:45.000 1996-01-30 2024-10-11 02:38:45 +9526 9526 9527 952.6 1905.2 9526 1996-01-31 2024-10-11 02:38:46.000 1996-01-31 2024-10-11 02:38:46 +9527 9527 9528 952.7 1905.4 9527 1996-02-01 2024-10-11 02:38:47.000 1996-02-01 2024-10-11 02:38:47 +9528 9528 9529 952.8 1905.6000000000001 9528 1996-02-02 2024-10-11 02:38:48.000 1996-02-02 2024-10-11 02:38:48 +9529 9529 9530 952.9 1905.8000000000002 9529 1996-02-03 2024-10-11 02:38:49.000 1996-02-03 2024-10-11 02:38:49 +9530 9530 9531 953 1906 9530 1996-02-04 2024-10-11 02:38:50.000 1996-02-04 2024-10-11 02:38:50 +9531 9531 9532 953.1 1906.2 9531 1996-02-05 2024-10-11 02:38:51.000 1996-02-05 2024-10-11 02:38:51 +9532 9532 9533 953.2 1906.4 9532 1996-02-06 2024-10-11 02:38:52.000 1996-02-06 2024-10-11 02:38:52 +9533 9533 9534 953.3 1906.6000000000001 9533 1996-02-07 2024-10-11 02:38:53.000 1996-02-07 2024-10-11 02:38:53 +9534 9534 9535 953.4 1906.8000000000002 9534 1996-02-08 2024-10-11 02:38:54.000 1996-02-08 2024-10-11 02:38:54 +9535 9535 9536 953.5 1907 9535 1996-02-09 2024-10-11 02:38:55.000 1996-02-09 2024-10-11 02:38:55 +9536 9536 9537 953.6 1907.2 9536 1996-02-10 2024-10-11 02:38:56.000 1996-02-10 2024-10-11 02:38:56 +9537 9537 9538 953.7 1907.4 9537 1996-02-11 2024-10-11 02:38:57.000 1996-02-11 2024-10-11 02:38:57 +9538 9538 9539 953.8 1907.6000000000001 9538 1996-02-12 2024-10-11 02:38:58.000 1996-02-12 2024-10-11 02:38:58 +9539 9539 9540 953.9 1907.8000000000002 9539 1996-02-13 2024-10-11 02:38:59.000 1996-02-13 2024-10-11 02:38:59 +9540 9540 9541 954 1908 9540 1996-02-14 2024-10-11 02:39:00.000 1996-02-14 2024-10-11 02:39:00 +9541 9541 9542 954.1 1908.2 9541 1996-02-15 2024-10-11 02:39:01.000 1996-02-15 2024-10-11 02:39:01 +9542 9542 9543 954.2 1908.4 9542 1996-02-16 2024-10-11 02:39:02.000 1996-02-16 2024-10-11 02:39:02 +9543 9543 9544 954.3 1908.6000000000001 9543 1996-02-17 2024-10-11 02:39:03.000 1996-02-17 2024-10-11 02:39:03 +9544 9544 9545 954.4 1908.8000000000002 9544 1996-02-18 2024-10-11 02:39:04.000 1996-02-18 2024-10-11 02:39:04 +9545 9545 9546 954.5 1909 9545 1996-02-19 2024-10-11 02:39:05.000 1996-02-19 2024-10-11 02:39:05 +9546 9546 9547 954.6 1909.2 9546 1996-02-20 2024-10-11 02:39:06.000 1996-02-20 2024-10-11 02:39:06 +9547 9547 9548 954.7 1909.4 9547 1996-02-21 2024-10-11 02:39:07.000 1996-02-21 2024-10-11 02:39:07 +9548 9548 9549 954.8 1909.6000000000001 9548 1996-02-22 2024-10-11 02:39:08.000 1996-02-22 2024-10-11 02:39:08 +9549 9549 9550 954.9 1909.8000000000002 9549 1996-02-23 2024-10-11 02:39:09.000 1996-02-23 2024-10-11 02:39:09 +9550 9550 9551 955 1910 9550 1996-02-24 2024-10-11 02:39:10.000 1996-02-24 2024-10-11 02:39:10 +9551 9551 9552 955.1 1910.2 9551 1996-02-25 2024-10-11 02:39:11.000 1996-02-25 2024-10-11 02:39:11 +9552 9552 9553 955.2 1910.4 9552 1996-02-26 2024-10-11 02:39:12.000 1996-02-26 2024-10-11 02:39:12 +9553 9553 9554 955.3 1910.6000000000001 9553 1996-02-27 2024-10-11 02:39:13.000 1996-02-27 2024-10-11 02:39:13 +9554 9554 9555 955.4 1910.8000000000002 9554 1996-02-28 2024-10-11 02:39:14.000 1996-02-28 2024-10-11 02:39:14 +9555 9555 9556 955.5 1911 9555 1996-02-29 2024-10-11 02:39:15.000 1996-02-29 2024-10-11 02:39:15 +9556 9556 9557 955.6 1911.2 9556 1996-03-01 2024-10-11 02:39:16.000 1996-03-01 2024-10-11 02:39:16 +9557 9557 9558 955.7 1911.4 9557 1996-03-02 2024-10-11 02:39:17.000 1996-03-02 2024-10-11 02:39:17 +9558 9558 9559 955.8 1911.6000000000001 9558 1996-03-03 2024-10-11 02:39:18.000 1996-03-03 2024-10-11 02:39:18 +9559 9559 9560 955.9 1911.8000000000002 9559 1996-03-04 2024-10-11 02:39:19.000 1996-03-04 2024-10-11 02:39:19 +9560 9560 9561 956 1912 9560 1996-03-05 2024-10-11 02:39:20.000 1996-03-05 2024-10-11 02:39:20 +9561 9561 9562 956.1 1912.2 9561 1996-03-06 2024-10-11 02:39:21.000 1996-03-06 2024-10-11 02:39:21 +9562 9562 9563 956.2 1912.4 9562 1996-03-07 2024-10-11 02:39:22.000 1996-03-07 2024-10-11 02:39:22 +9563 9563 9564 956.3 1912.6000000000001 9563 1996-03-08 2024-10-11 02:39:23.000 1996-03-08 2024-10-11 02:39:23 +9564 9564 9565 956.4 1912.8000000000002 9564 1996-03-09 2024-10-11 02:39:24.000 1996-03-09 2024-10-11 02:39:24 +9565 9565 9566 956.5 1913 9565 1996-03-10 2024-10-11 02:39:25.000 1996-03-10 2024-10-11 02:39:25 +9566 9566 9567 956.6 1913.2 9566 1996-03-11 2024-10-11 02:39:26.000 1996-03-11 2024-10-11 02:39:26 +9567 9567 9568 956.7 1913.4 9567 1996-03-12 2024-10-11 02:39:27.000 1996-03-12 2024-10-11 02:39:27 +9568 9568 9569 956.8 1913.6000000000001 9568 1996-03-13 2024-10-11 02:39:28.000 1996-03-13 2024-10-11 02:39:28 +9569 9569 9570 956.9 1913.8000000000002 9569 1996-03-14 2024-10-11 02:39:29.000 1996-03-14 2024-10-11 02:39:29 +9570 9570 9571 957 1914 9570 1996-03-15 2024-10-11 02:39:30.000 1996-03-15 2024-10-11 02:39:30 +9571 9571 9572 957.1 1914.2 9571 1996-03-16 2024-10-11 02:39:31.000 1996-03-16 2024-10-11 02:39:31 +9572 9572 9573 957.2 1914.4 9572 1996-03-17 2024-10-11 02:39:32.000 1996-03-17 2024-10-11 02:39:32 +9573 9573 9574 957.3 1914.6000000000001 9573 1996-03-18 2024-10-11 02:39:33.000 1996-03-18 2024-10-11 02:39:33 +9574 9574 9575 957.4 1914.8000000000002 9574 1996-03-19 2024-10-11 02:39:34.000 1996-03-19 2024-10-11 02:39:34 +9575 9575 9576 957.5 1915 9575 1996-03-20 2024-10-11 02:39:35.000 1996-03-20 2024-10-11 02:39:35 +9576 9576 9577 957.6 1915.2 9576 1996-03-21 2024-10-11 02:39:36.000 1996-03-21 2024-10-11 02:39:36 +9577 9577 9578 957.7 1915.4 9577 1996-03-22 2024-10-11 02:39:37.000 1996-03-22 2024-10-11 02:39:37 +9578 9578 9579 957.8 1915.6000000000001 9578 1996-03-23 2024-10-11 02:39:38.000 1996-03-23 2024-10-11 02:39:38 +9579 9579 9580 957.9 1915.8000000000002 9579 1996-03-24 2024-10-11 02:39:39.000 1996-03-24 2024-10-11 02:39:39 +9580 9580 9581 958 1916 9580 1996-03-25 2024-10-11 02:39:40.000 1996-03-25 2024-10-11 02:39:40 +9581 9581 9582 958.1 1916.2 9581 1996-03-26 2024-10-11 02:39:41.000 1996-03-26 2024-10-11 02:39:41 +9582 9582 9583 958.2 1916.4 9582 1996-03-27 2024-10-11 02:39:42.000 1996-03-27 2024-10-11 02:39:42 +9583 9583 9584 958.3 1916.6000000000001 9583 1996-03-28 2024-10-11 02:39:43.000 1996-03-28 2024-10-11 02:39:43 +9584 9584 9585 958.4 1916.8000000000002 9584 1996-03-29 2024-10-11 02:39:44.000 1996-03-29 2024-10-11 02:39:44 +9585 9585 9586 958.5 1917 9585 1996-03-30 2024-10-11 02:39:45.000 1996-03-30 2024-10-11 02:39:45 +9586 9586 9587 958.6 1917.2 9586 1996-03-31 2024-10-11 02:39:46.000 1996-03-31 2024-10-11 02:39:46 +9587 9587 9588 958.7 1917.4 9587 1996-04-01 2024-10-11 02:39:47.000 1996-04-01 2024-10-11 02:39:47 +9588 9588 9589 958.8 1917.6000000000001 9588 1996-04-02 2024-10-11 02:39:48.000 1996-04-02 2024-10-11 02:39:48 +9589 9589 9590 958.9 1917.8000000000002 9589 1996-04-03 2024-10-11 02:39:49.000 1996-04-03 2024-10-11 02:39:49 +9590 9590 9591 959 1918 9590 1996-04-04 2024-10-11 02:39:50.000 1996-04-04 2024-10-11 02:39:50 +9591 9591 9592 959.1 1918.2 9591 1996-04-05 2024-10-11 02:39:51.000 1996-04-05 2024-10-11 02:39:51 +9592 9592 9593 959.2 1918.4 9592 1996-04-06 2024-10-11 02:39:52.000 1996-04-06 2024-10-11 02:39:52 +9593 9593 9594 959.3 1918.6000000000001 9593 1996-04-07 2024-10-11 02:39:53.000 1996-04-07 2024-10-11 02:39:53 +9594 9594 9595 959.4 1918.8000000000002 9594 1996-04-08 2024-10-11 02:39:54.000 1996-04-08 2024-10-11 02:39:54 +9595 9595 9596 959.5 1919 9595 1996-04-09 2024-10-11 02:39:55.000 1996-04-09 2024-10-11 02:39:55 +9596 9596 9597 959.6 1919.2 9596 1996-04-10 2024-10-11 02:39:56.000 1996-04-10 2024-10-11 02:39:56 +9597 9597 9598 959.7 1919.4 9597 1996-04-11 2024-10-11 02:39:57.000 1996-04-11 2024-10-11 02:39:57 +9598 9598 9599 959.8 1919.6000000000001 9598 1996-04-12 2024-10-11 02:39:58.000 1996-04-12 2024-10-11 02:39:58 +9599 9599 9600 959.9 1919.8000000000002 9599 1996-04-13 2024-10-11 02:39:59.000 1996-04-13 2024-10-11 02:39:59 +9600 9600 9601 960 1920 9600 1996-04-14 2024-10-11 02:40:00.000 1996-04-14 2024-10-11 02:40:00 +9601 9601 9602 960.1 1920.2 9601 1996-04-15 2024-10-11 02:40:01.000 1996-04-15 2024-10-11 02:40:01 +9602 9602 9603 960.2 1920.4 9602 1996-04-16 2024-10-11 02:40:02.000 1996-04-16 2024-10-11 02:40:02 +9603 9603 9604 960.3 1920.6000000000001 9603 1996-04-17 2024-10-11 02:40:03.000 1996-04-17 2024-10-11 02:40:03 +9604 9604 9605 960.4 1920.8000000000002 9604 1996-04-18 2024-10-11 02:40:04.000 1996-04-18 2024-10-11 02:40:04 +9605 9605 9606 960.5 1921 9605 1996-04-19 2024-10-11 02:40:05.000 1996-04-19 2024-10-11 02:40:05 +9606 9606 9607 960.6 1921.2 9606 1996-04-20 2024-10-11 02:40:06.000 1996-04-20 2024-10-11 02:40:06 +9607 9607 9608 960.7 1921.4 9607 1996-04-21 2024-10-11 02:40:07.000 1996-04-21 2024-10-11 02:40:07 +9608 9608 9609 960.8 1921.6000000000001 9608 1996-04-22 2024-10-11 02:40:08.000 1996-04-22 2024-10-11 02:40:08 +9609 9609 9610 960.9 1921.8000000000002 9609 1996-04-23 2024-10-11 02:40:09.000 1996-04-23 2024-10-11 02:40:09 +9610 9610 9611 961 1922 9610 1996-04-24 2024-10-11 02:40:10.000 1996-04-24 2024-10-11 02:40:10 +9611 9611 9612 961.1 1922.2 9611 1996-04-25 2024-10-11 02:40:11.000 1996-04-25 2024-10-11 02:40:11 +9612 9612 9613 961.2 1922.4 9612 1996-04-26 2024-10-11 02:40:12.000 1996-04-26 2024-10-11 02:40:12 +9613 9613 9614 961.3 1922.6000000000001 9613 1996-04-27 2024-10-11 02:40:13.000 1996-04-27 2024-10-11 02:40:13 +9614 9614 9615 961.4 1922.8000000000002 9614 1996-04-28 2024-10-11 02:40:14.000 1996-04-28 2024-10-11 02:40:14 +9615 9615 9616 961.5 1923 9615 1996-04-29 2024-10-11 02:40:15.000 1996-04-29 2024-10-11 02:40:15 +9616 9616 9617 961.6 1923.2 9616 1996-04-30 2024-10-11 02:40:16.000 1996-04-30 2024-10-11 02:40:16 +9617 9617 9618 961.7 1923.4 9617 1996-05-01 2024-10-11 02:40:17.000 1996-05-01 2024-10-11 02:40:17 +9618 9618 9619 961.8 1923.6000000000001 9618 1996-05-02 2024-10-11 02:40:18.000 1996-05-02 2024-10-11 02:40:18 +9619 9619 9620 961.9 1923.8000000000002 9619 1996-05-03 2024-10-11 02:40:19.000 1996-05-03 2024-10-11 02:40:19 +9620 9620 9621 962 1924 9620 1996-05-04 2024-10-11 02:40:20.000 1996-05-04 2024-10-11 02:40:20 +9621 9621 9622 962.1 1924.2 9621 1996-05-05 2024-10-11 02:40:21.000 1996-05-05 2024-10-11 02:40:21 +9622 9622 9623 962.2 1924.4 9622 1996-05-06 2024-10-11 02:40:22.000 1996-05-06 2024-10-11 02:40:22 +9623 9623 9624 962.3 1924.6000000000001 9623 1996-05-07 2024-10-11 02:40:23.000 1996-05-07 2024-10-11 02:40:23 +9624 9624 9625 962.4 1924.8000000000002 9624 1996-05-08 2024-10-11 02:40:24.000 1996-05-08 2024-10-11 02:40:24 +9625 9625 9626 962.5 1925 9625 1996-05-09 2024-10-11 02:40:25.000 1996-05-09 2024-10-11 02:40:25 +9626 9626 9627 962.6 1925.2 9626 1996-05-10 2024-10-11 02:40:26.000 1996-05-10 2024-10-11 02:40:26 +9627 9627 9628 962.7 1925.4 9627 1996-05-11 2024-10-11 02:40:27.000 1996-05-11 2024-10-11 02:40:27 +9628 9628 9629 962.8 1925.6000000000001 9628 1996-05-12 2024-10-11 02:40:28.000 1996-05-12 2024-10-11 02:40:28 +9629 9629 9630 962.9 1925.8000000000002 9629 1996-05-13 2024-10-11 02:40:29.000 1996-05-13 2024-10-11 02:40:29 +9630 9630 9631 963 1926 9630 1996-05-14 2024-10-11 02:40:30.000 1996-05-14 2024-10-11 02:40:30 +9631 9631 9632 963.1 1926.2 9631 1996-05-15 2024-10-11 02:40:31.000 1996-05-15 2024-10-11 02:40:31 +9632 9632 9633 963.2 1926.4 9632 1996-05-16 2024-10-11 02:40:32.000 1996-05-16 2024-10-11 02:40:32 +9633 9633 9634 963.3 1926.6000000000001 9633 1996-05-17 2024-10-11 02:40:33.000 1996-05-17 2024-10-11 02:40:33 +9634 9634 9635 963.4 1926.8000000000002 9634 1996-05-18 2024-10-11 02:40:34.000 1996-05-18 2024-10-11 02:40:34 +9635 9635 9636 963.5 1927 9635 1996-05-19 2024-10-11 02:40:35.000 1996-05-19 2024-10-11 02:40:35 +9636 9636 9637 963.6 1927.2 9636 1996-05-20 2024-10-11 02:40:36.000 1996-05-20 2024-10-11 02:40:36 +9637 9637 9638 963.7 1927.4 9637 1996-05-21 2024-10-11 02:40:37.000 1996-05-21 2024-10-11 02:40:37 +9638 9638 9639 963.8 1927.6000000000001 9638 1996-05-22 2024-10-11 02:40:38.000 1996-05-22 2024-10-11 02:40:38 +9639 9639 9640 963.9 1927.8000000000002 9639 1996-05-23 2024-10-11 02:40:39.000 1996-05-23 2024-10-11 02:40:39 +9640 9640 9641 964 1928 9640 1996-05-24 2024-10-11 02:40:40.000 1996-05-24 2024-10-11 02:40:40 +9641 9641 9642 964.1 1928.2 9641 1996-05-25 2024-10-11 02:40:41.000 1996-05-25 2024-10-11 02:40:41 +9642 9642 9643 964.2 1928.4 9642 1996-05-26 2024-10-11 02:40:42.000 1996-05-26 2024-10-11 02:40:42 +9643 9643 9644 964.3 1928.6000000000001 9643 1996-05-27 2024-10-11 02:40:43.000 1996-05-27 2024-10-11 02:40:43 +9644 9644 9645 964.4 1928.8000000000002 9644 1996-05-28 2024-10-11 02:40:44.000 1996-05-28 2024-10-11 02:40:44 +9645 9645 9646 964.5 1929 9645 1996-05-29 2024-10-11 02:40:45.000 1996-05-29 2024-10-11 02:40:45 +9646 9646 9647 964.6 1929.2 9646 1996-05-30 2024-10-11 02:40:46.000 1996-05-30 2024-10-11 02:40:46 +9647 9647 9648 964.7 1929.4 9647 1996-05-31 2024-10-11 02:40:47.000 1996-05-31 2024-10-11 02:40:47 +9648 9648 9649 964.8 1929.6000000000001 9648 1996-06-01 2024-10-11 02:40:48.000 1996-06-01 2024-10-11 02:40:48 +9649 9649 9650 964.9 1929.8000000000002 9649 1996-06-02 2024-10-11 02:40:49.000 1996-06-02 2024-10-11 02:40:49 +9650 9650 9651 965 1930 9650 1996-06-03 2024-10-11 02:40:50.000 1996-06-03 2024-10-11 02:40:50 +9651 9651 9652 965.1 1930.2 9651 1996-06-04 2024-10-11 02:40:51.000 1996-06-04 2024-10-11 02:40:51 +9652 9652 9653 965.2 1930.4 9652 1996-06-05 2024-10-11 02:40:52.000 1996-06-05 2024-10-11 02:40:52 +9653 9653 9654 965.3 1930.6000000000001 9653 1996-06-06 2024-10-11 02:40:53.000 1996-06-06 2024-10-11 02:40:53 +9654 9654 9655 965.4 1930.8000000000002 9654 1996-06-07 2024-10-11 02:40:54.000 1996-06-07 2024-10-11 02:40:54 +9655 9655 9656 965.5 1931 9655 1996-06-08 2024-10-11 02:40:55.000 1996-06-08 2024-10-11 02:40:55 +9656 9656 9657 965.6 1931.2 9656 1996-06-09 2024-10-11 02:40:56.000 1996-06-09 2024-10-11 02:40:56 +9657 9657 9658 965.7 1931.4 9657 1996-06-10 2024-10-11 02:40:57.000 1996-06-10 2024-10-11 02:40:57 +9658 9658 9659 965.8 1931.6000000000001 9658 1996-06-11 2024-10-11 02:40:58.000 1996-06-11 2024-10-11 02:40:58 +9659 9659 9660 965.9 1931.8000000000002 9659 1996-06-12 2024-10-11 02:40:59.000 1996-06-12 2024-10-11 02:40:59 +9660 9660 9661 966 1932 9660 1996-06-13 2024-10-11 02:41:00.000 1996-06-13 2024-10-11 02:41:00 +9661 9661 9662 966.1 1932.2 9661 1996-06-14 2024-10-11 02:41:01.000 1996-06-14 2024-10-11 02:41:01 +9662 9662 9663 966.2 1932.4 9662 1996-06-15 2024-10-11 02:41:02.000 1996-06-15 2024-10-11 02:41:02 +9663 9663 9664 966.3 1932.6000000000001 9663 1996-06-16 2024-10-11 02:41:03.000 1996-06-16 2024-10-11 02:41:03 +9664 9664 9665 966.4 1932.8000000000002 9664 1996-06-17 2024-10-11 02:41:04.000 1996-06-17 2024-10-11 02:41:04 +9665 9665 9666 966.5 1933 9665 1996-06-18 2024-10-11 02:41:05.000 1996-06-18 2024-10-11 02:41:05 +9666 9666 9667 966.6 1933.2 9666 1996-06-19 2024-10-11 02:41:06.000 1996-06-19 2024-10-11 02:41:06 +9667 9667 9668 966.7 1933.4 9667 1996-06-20 2024-10-11 02:41:07.000 1996-06-20 2024-10-11 02:41:07 +9668 9668 9669 966.8 1933.6000000000001 9668 1996-06-21 2024-10-11 02:41:08.000 1996-06-21 2024-10-11 02:41:08 +9669 9669 9670 966.9 1933.8000000000002 9669 1996-06-22 2024-10-11 02:41:09.000 1996-06-22 2024-10-11 02:41:09 +9670 9670 9671 967 1934 9670 1996-06-23 2024-10-11 02:41:10.000 1996-06-23 2024-10-11 02:41:10 +9671 9671 9672 967.1 1934.2 9671 1996-06-24 2024-10-11 02:41:11.000 1996-06-24 2024-10-11 02:41:11 +9672 9672 9673 967.2 1934.4 9672 1996-06-25 2024-10-11 02:41:12.000 1996-06-25 2024-10-11 02:41:12 +9673 9673 9674 967.3 1934.6000000000001 9673 1996-06-26 2024-10-11 02:41:13.000 1996-06-26 2024-10-11 02:41:13 +9674 9674 9675 967.4 1934.8000000000002 9674 1996-06-27 2024-10-11 02:41:14.000 1996-06-27 2024-10-11 02:41:14 +9675 9675 9676 967.5 1935 9675 1996-06-28 2024-10-11 02:41:15.000 1996-06-28 2024-10-11 02:41:15 +9676 9676 9677 967.6 1935.2 9676 1996-06-29 2024-10-11 02:41:16.000 1996-06-29 2024-10-11 02:41:16 +9677 9677 9678 967.7 1935.4 9677 1996-06-30 2024-10-11 02:41:17.000 1996-06-30 2024-10-11 02:41:17 +9678 9678 9679 967.8 1935.6000000000001 9678 1996-07-01 2024-10-11 02:41:18.000 1996-07-01 2024-10-11 02:41:18 +9679 9679 9680 967.9 1935.8000000000002 9679 1996-07-02 2024-10-11 02:41:19.000 1996-07-02 2024-10-11 02:41:19 +9680 9680 9681 968 1936 9680 1996-07-03 2024-10-11 02:41:20.000 1996-07-03 2024-10-11 02:41:20 +9681 9681 9682 968.1 1936.2 9681 1996-07-04 2024-10-11 02:41:21.000 1996-07-04 2024-10-11 02:41:21 +9682 9682 9683 968.2 1936.4 9682 1996-07-05 2024-10-11 02:41:22.000 1996-07-05 2024-10-11 02:41:22 +9683 9683 9684 968.3 1936.6000000000001 9683 1996-07-06 2024-10-11 02:41:23.000 1996-07-06 2024-10-11 02:41:23 +9684 9684 9685 968.4 1936.8000000000002 9684 1996-07-07 2024-10-11 02:41:24.000 1996-07-07 2024-10-11 02:41:24 +9685 9685 9686 968.5 1937 9685 1996-07-08 2024-10-11 02:41:25.000 1996-07-08 2024-10-11 02:41:25 +9686 9686 9687 968.6 1937.2 9686 1996-07-09 2024-10-11 02:41:26.000 1996-07-09 2024-10-11 02:41:26 +9687 9687 9688 968.7 1937.4 9687 1996-07-10 2024-10-11 02:41:27.000 1996-07-10 2024-10-11 02:41:27 +9688 9688 9689 968.8 1937.6000000000001 9688 1996-07-11 2024-10-11 02:41:28.000 1996-07-11 2024-10-11 02:41:28 +9689 9689 9690 968.9 1937.8000000000002 9689 1996-07-12 2024-10-11 02:41:29.000 1996-07-12 2024-10-11 02:41:29 +9690 9690 9691 969 1938 9690 1996-07-13 2024-10-11 02:41:30.000 1996-07-13 2024-10-11 02:41:30 +9691 9691 9692 969.1 1938.2 9691 1996-07-14 2024-10-11 02:41:31.000 1996-07-14 2024-10-11 02:41:31 +9692 9692 9693 969.2 1938.4 9692 1996-07-15 2024-10-11 02:41:32.000 1996-07-15 2024-10-11 02:41:32 +9693 9693 9694 969.3 1938.6000000000001 9693 1996-07-16 2024-10-11 02:41:33.000 1996-07-16 2024-10-11 02:41:33 +9694 9694 9695 969.4 1938.8000000000002 9694 1996-07-17 2024-10-11 02:41:34.000 1996-07-17 2024-10-11 02:41:34 +9695 9695 9696 969.5 1939 9695 1996-07-18 2024-10-11 02:41:35.000 1996-07-18 2024-10-11 02:41:35 +9696 9696 9697 969.6 1939.2 9696 1996-07-19 2024-10-11 02:41:36.000 1996-07-19 2024-10-11 02:41:36 +9697 9697 9698 969.7 1939.4 9697 1996-07-20 2024-10-11 02:41:37.000 1996-07-20 2024-10-11 02:41:37 +9698 9698 9699 969.8 1939.6000000000001 9698 1996-07-21 2024-10-11 02:41:38.000 1996-07-21 2024-10-11 02:41:38 +9699 9699 9700 969.9 1939.8000000000002 9699 1996-07-22 2024-10-11 02:41:39.000 1996-07-22 2024-10-11 02:41:39 +9700 9700 9701 970 1940 9700 1996-07-23 2024-10-11 02:41:40.000 1996-07-23 2024-10-11 02:41:40 +9701 9701 9702 970.1 1940.2 9701 1996-07-24 2024-10-11 02:41:41.000 1996-07-24 2024-10-11 02:41:41 +9702 9702 9703 970.2 1940.4 9702 1996-07-25 2024-10-11 02:41:42.000 1996-07-25 2024-10-11 02:41:42 +9703 9703 9704 970.3 1940.6000000000001 9703 1996-07-26 2024-10-11 02:41:43.000 1996-07-26 2024-10-11 02:41:43 +9704 9704 9705 970.4 1940.8000000000002 9704 1996-07-27 2024-10-11 02:41:44.000 1996-07-27 2024-10-11 02:41:44 +9705 9705 9706 970.5 1941 9705 1996-07-28 2024-10-11 02:41:45.000 1996-07-28 2024-10-11 02:41:45 +9706 9706 9707 970.6 1941.2 9706 1996-07-29 2024-10-11 02:41:46.000 1996-07-29 2024-10-11 02:41:46 +9707 9707 9708 970.7 1941.4 9707 1996-07-30 2024-10-11 02:41:47.000 1996-07-30 2024-10-11 02:41:47 +9708 9708 9709 970.8 1941.6000000000001 9708 1996-07-31 2024-10-11 02:41:48.000 1996-07-31 2024-10-11 02:41:48 +9709 9709 9710 970.9 1941.8000000000002 9709 1996-08-01 2024-10-11 02:41:49.000 1996-08-01 2024-10-11 02:41:49 +9710 9710 9711 971 1942 9710 1996-08-02 2024-10-11 02:41:50.000 1996-08-02 2024-10-11 02:41:50 +9711 9711 9712 971.1 1942.2 9711 1996-08-03 2024-10-11 02:41:51.000 1996-08-03 2024-10-11 02:41:51 +9712 9712 9713 971.2 1942.4 9712 1996-08-04 2024-10-11 02:41:52.000 1996-08-04 2024-10-11 02:41:52 +9713 9713 9714 971.3 1942.6000000000001 9713 1996-08-05 2024-10-11 02:41:53.000 1996-08-05 2024-10-11 02:41:53 +9714 9714 9715 971.4 1942.8000000000002 9714 1996-08-06 2024-10-11 02:41:54.000 1996-08-06 2024-10-11 02:41:54 +9715 9715 9716 971.5 1943 9715 1996-08-07 2024-10-11 02:41:55.000 1996-08-07 2024-10-11 02:41:55 +9716 9716 9717 971.6 1943.2 9716 1996-08-08 2024-10-11 02:41:56.000 1996-08-08 2024-10-11 02:41:56 +9717 9717 9718 971.7 1943.4 9717 1996-08-09 2024-10-11 02:41:57.000 1996-08-09 2024-10-11 02:41:57 +9718 9718 9719 971.8 1943.6000000000001 9718 1996-08-10 2024-10-11 02:41:58.000 1996-08-10 2024-10-11 02:41:58 +9719 9719 9720 971.9 1943.8000000000002 9719 1996-08-11 2024-10-11 02:41:59.000 1996-08-11 2024-10-11 02:41:59 +9720 9720 9721 972 1944 9720 1996-08-12 2024-10-11 02:42:00.000 1996-08-12 2024-10-11 02:42:00 +9721 9721 9722 972.1 1944.2 9721 1996-08-13 2024-10-11 02:42:01.000 1996-08-13 2024-10-11 02:42:01 +9722 9722 9723 972.2 1944.4 9722 1996-08-14 2024-10-11 02:42:02.000 1996-08-14 2024-10-11 02:42:02 +9723 9723 9724 972.3 1944.6000000000001 9723 1996-08-15 2024-10-11 02:42:03.000 1996-08-15 2024-10-11 02:42:03 +9724 9724 9725 972.4 1944.8000000000002 9724 1996-08-16 2024-10-11 02:42:04.000 1996-08-16 2024-10-11 02:42:04 +9725 9725 9726 972.5 1945 9725 1996-08-17 2024-10-11 02:42:05.000 1996-08-17 2024-10-11 02:42:05 +9726 9726 9727 972.6 1945.2 9726 1996-08-18 2024-10-11 02:42:06.000 1996-08-18 2024-10-11 02:42:06 +9727 9727 9728 972.7 1945.4 9727 1996-08-19 2024-10-11 02:42:07.000 1996-08-19 2024-10-11 02:42:07 +9728 9728 9729 972.8 1945.6000000000001 9728 1996-08-20 2024-10-11 02:42:08.000 1996-08-20 2024-10-11 02:42:08 +9729 9729 9730 972.9 1945.8000000000002 9729 1996-08-21 2024-10-11 02:42:09.000 1996-08-21 2024-10-11 02:42:09 +9730 9730 9731 973 1946 9730 1996-08-22 2024-10-11 02:42:10.000 1996-08-22 2024-10-11 02:42:10 +9731 9731 9732 973.1 1946.2 9731 1996-08-23 2024-10-11 02:42:11.000 1996-08-23 2024-10-11 02:42:11 +9732 9732 9733 973.2 1946.4 9732 1996-08-24 2024-10-11 02:42:12.000 1996-08-24 2024-10-11 02:42:12 +9733 9733 9734 973.3 1946.6000000000001 9733 1996-08-25 2024-10-11 02:42:13.000 1996-08-25 2024-10-11 02:42:13 +9734 9734 9735 973.4 1946.8000000000002 9734 1996-08-26 2024-10-11 02:42:14.000 1996-08-26 2024-10-11 02:42:14 +9735 9735 9736 973.5 1947 9735 1996-08-27 2024-10-11 02:42:15.000 1996-08-27 2024-10-11 02:42:15 +9736 9736 9737 973.6 1947.2 9736 1996-08-28 2024-10-11 02:42:16.000 1996-08-28 2024-10-11 02:42:16 +9737 9737 9738 973.7 1947.4 9737 1996-08-29 2024-10-11 02:42:17.000 1996-08-29 2024-10-11 02:42:17 +9738 9738 9739 973.8 1947.6000000000001 9738 1996-08-30 2024-10-11 02:42:18.000 1996-08-30 2024-10-11 02:42:18 +9739 9739 9740 973.9 1947.8000000000002 9739 1996-08-31 2024-10-11 02:42:19.000 1996-08-31 2024-10-11 02:42:19 +9740 9740 9741 974 1948 9740 1996-09-01 2024-10-11 02:42:20.000 1996-09-01 2024-10-11 02:42:20 +9741 9741 9742 974.1 1948.2 9741 1996-09-02 2024-10-11 02:42:21.000 1996-09-02 2024-10-11 02:42:21 +9742 9742 9743 974.2 1948.4 9742 1996-09-03 2024-10-11 02:42:22.000 1996-09-03 2024-10-11 02:42:22 +9743 9743 9744 974.3 1948.6000000000001 9743 1996-09-04 2024-10-11 02:42:23.000 1996-09-04 2024-10-11 02:42:23 +9744 9744 9745 974.4 1948.8000000000002 9744 1996-09-05 2024-10-11 02:42:24.000 1996-09-05 2024-10-11 02:42:24 +9745 9745 9746 974.5 1949 9745 1996-09-06 2024-10-11 02:42:25.000 1996-09-06 2024-10-11 02:42:25 +9746 9746 9747 974.6 1949.2 9746 1996-09-07 2024-10-11 02:42:26.000 1996-09-07 2024-10-11 02:42:26 +9747 9747 9748 974.7 1949.4 9747 1996-09-08 2024-10-11 02:42:27.000 1996-09-08 2024-10-11 02:42:27 +9748 9748 9749 974.8 1949.6000000000001 9748 1996-09-09 2024-10-11 02:42:28.000 1996-09-09 2024-10-11 02:42:28 +9749 9749 9750 974.9 1949.8000000000002 9749 1996-09-10 2024-10-11 02:42:29.000 1996-09-10 2024-10-11 02:42:29 +9750 9750 9751 975 1950 9750 1996-09-11 2024-10-11 02:42:30.000 1996-09-11 2024-10-11 02:42:30 +9751 9751 9752 975.1 1950.2 9751 1996-09-12 2024-10-11 02:42:31.000 1996-09-12 2024-10-11 02:42:31 +9752 9752 9753 975.2 1950.4 9752 1996-09-13 2024-10-11 02:42:32.000 1996-09-13 2024-10-11 02:42:32 +9753 9753 9754 975.3 1950.6000000000001 9753 1996-09-14 2024-10-11 02:42:33.000 1996-09-14 2024-10-11 02:42:33 +9754 9754 9755 975.4 1950.8000000000002 9754 1996-09-15 2024-10-11 02:42:34.000 1996-09-15 2024-10-11 02:42:34 +9755 9755 9756 975.5 1951 9755 1996-09-16 2024-10-11 02:42:35.000 1996-09-16 2024-10-11 02:42:35 +9756 9756 9757 975.6 1951.2 9756 1996-09-17 2024-10-11 02:42:36.000 1996-09-17 2024-10-11 02:42:36 +9757 9757 9758 975.7 1951.4 9757 1996-09-18 2024-10-11 02:42:37.000 1996-09-18 2024-10-11 02:42:37 +9758 9758 9759 975.8 1951.6000000000001 9758 1996-09-19 2024-10-11 02:42:38.000 1996-09-19 2024-10-11 02:42:38 +9759 9759 9760 975.9 1951.8000000000002 9759 1996-09-20 2024-10-11 02:42:39.000 1996-09-20 2024-10-11 02:42:39 +9760 9760 9761 976 1952 9760 1996-09-21 2024-10-11 02:42:40.000 1996-09-21 2024-10-11 02:42:40 +9761 9761 9762 976.1 1952.2 9761 1996-09-22 2024-10-11 02:42:41.000 1996-09-22 2024-10-11 02:42:41 +9762 9762 9763 976.2 1952.4 9762 1996-09-23 2024-10-11 02:42:42.000 1996-09-23 2024-10-11 02:42:42 +9763 9763 9764 976.3 1952.6000000000001 9763 1996-09-24 2024-10-11 02:42:43.000 1996-09-24 2024-10-11 02:42:43 +9764 9764 9765 976.4 1952.8000000000002 9764 1996-09-25 2024-10-11 02:42:44.000 1996-09-25 2024-10-11 02:42:44 +9765 9765 9766 976.5 1953 9765 1996-09-26 2024-10-11 02:42:45.000 1996-09-26 2024-10-11 02:42:45 +9766 9766 9767 976.6 1953.2 9766 1996-09-27 2024-10-11 02:42:46.000 1996-09-27 2024-10-11 02:42:46 +9767 9767 9768 976.7 1953.4 9767 1996-09-28 2024-10-11 02:42:47.000 1996-09-28 2024-10-11 02:42:47 +9768 9768 9769 976.8 1953.6000000000001 9768 1996-09-29 2024-10-11 02:42:48.000 1996-09-29 2024-10-11 02:42:48 +9769 9769 9770 976.9 1953.8000000000002 9769 1996-09-30 2024-10-11 02:42:49.000 1996-09-30 2024-10-11 02:42:49 +9770 9770 9771 977 1954 9770 1996-10-01 2024-10-11 02:42:50.000 1996-10-01 2024-10-11 02:42:50 +9771 9771 9772 977.1 1954.2 9771 1996-10-02 2024-10-11 02:42:51.000 1996-10-02 2024-10-11 02:42:51 +9772 9772 9773 977.2 1954.4 9772 1996-10-03 2024-10-11 02:42:52.000 1996-10-03 2024-10-11 02:42:52 +9773 9773 9774 977.3 1954.6000000000001 9773 1996-10-04 2024-10-11 02:42:53.000 1996-10-04 2024-10-11 02:42:53 +9774 9774 9775 977.4 1954.8000000000002 9774 1996-10-05 2024-10-11 02:42:54.000 1996-10-05 2024-10-11 02:42:54 +9775 9775 9776 977.5 1955 9775 1996-10-06 2024-10-11 02:42:55.000 1996-10-06 2024-10-11 02:42:55 +9776 9776 9777 977.6 1955.2 9776 1996-10-07 2024-10-11 02:42:56.000 1996-10-07 2024-10-11 02:42:56 +9777 9777 9778 977.7 1955.4 9777 1996-10-08 2024-10-11 02:42:57.000 1996-10-08 2024-10-11 02:42:57 +9778 9778 9779 977.8 1955.6000000000001 9778 1996-10-09 2024-10-11 02:42:58.000 1996-10-09 2024-10-11 02:42:58 +9779 9779 9780 977.9 1955.8000000000002 9779 1996-10-10 2024-10-11 02:42:59.000 1996-10-10 2024-10-11 02:42:59 +9780 9780 9781 978 1956 9780 1996-10-11 2024-10-11 02:43:00.000 1996-10-11 2024-10-11 02:43:00 +9781 9781 9782 978.1 1956.2 9781 1996-10-12 2024-10-11 02:43:01.000 1996-10-12 2024-10-11 02:43:01 +9782 9782 9783 978.2 1956.4 9782 1996-10-13 2024-10-11 02:43:02.000 1996-10-13 2024-10-11 02:43:02 +9783 9783 9784 978.3 1956.6000000000001 9783 1996-10-14 2024-10-11 02:43:03.000 1996-10-14 2024-10-11 02:43:03 +9784 9784 9785 978.4 1956.8000000000002 9784 1996-10-15 2024-10-11 02:43:04.000 1996-10-15 2024-10-11 02:43:04 +9785 9785 9786 978.5 1957 9785 1996-10-16 2024-10-11 02:43:05.000 1996-10-16 2024-10-11 02:43:05 +9786 9786 9787 978.6 1957.2 9786 1996-10-17 2024-10-11 02:43:06.000 1996-10-17 2024-10-11 02:43:06 +9787 9787 9788 978.7 1957.4 9787 1996-10-18 2024-10-11 02:43:07.000 1996-10-18 2024-10-11 02:43:07 +9788 9788 9789 978.8 1957.6000000000001 9788 1996-10-19 2024-10-11 02:43:08.000 1996-10-19 2024-10-11 02:43:08 +9789 9789 9790 978.9 1957.8000000000002 9789 1996-10-20 2024-10-11 02:43:09.000 1996-10-20 2024-10-11 02:43:09 +9790 9790 9791 979 1958 9790 1996-10-21 2024-10-11 02:43:10.000 1996-10-21 2024-10-11 02:43:10 +9791 9791 9792 979.1 1958.2 9791 1996-10-22 2024-10-11 02:43:11.000 1996-10-22 2024-10-11 02:43:11 +9792 9792 9793 979.2 1958.4 9792 1996-10-23 2024-10-11 02:43:12.000 1996-10-23 2024-10-11 02:43:12 +9793 9793 9794 979.3 1958.6000000000001 9793 1996-10-24 2024-10-11 02:43:13.000 1996-10-24 2024-10-11 02:43:13 +9794 9794 9795 979.4 1958.8000000000002 9794 1996-10-25 2024-10-11 02:43:14.000 1996-10-25 2024-10-11 02:43:14 +9795 9795 9796 979.5 1959 9795 1996-10-26 2024-10-11 02:43:15.000 1996-10-26 2024-10-11 02:43:15 +9796 9796 9797 979.6 1959.2 9796 1996-10-27 2024-10-11 02:43:16.000 1996-10-27 2024-10-11 02:43:16 +9797 9797 9798 979.7 1959.4 9797 1996-10-28 2024-10-11 02:43:17.000 1996-10-28 2024-10-11 02:43:17 +9798 9798 9799 979.8 1959.6000000000001 9798 1996-10-29 2024-10-11 02:43:18.000 1996-10-29 2024-10-11 02:43:18 +9799 9799 9800 979.9 1959.8000000000002 9799 1996-10-30 2024-10-11 02:43:19.000 1996-10-30 2024-10-11 02:43:19 +9800 9800 9801 980 1960 9800 1996-10-31 2024-10-11 02:43:20.000 1996-10-31 2024-10-11 02:43:20 +9801 9801 9802 980.1 1960.2 9801 1996-11-01 2024-10-11 02:43:21.000 1996-11-01 2024-10-11 02:43:21 +9802 9802 9803 980.2 1960.4 9802 1996-11-02 2024-10-11 02:43:22.000 1996-11-02 2024-10-11 02:43:22 +9803 9803 9804 980.3 1960.6000000000001 9803 1996-11-03 2024-10-11 02:43:23.000 1996-11-03 2024-10-11 02:43:23 +9804 9804 9805 980.4 1960.8000000000002 9804 1996-11-04 2024-10-11 02:43:24.000 1996-11-04 2024-10-11 02:43:24 +9805 9805 9806 980.5 1961 9805 1996-11-05 2024-10-11 02:43:25.000 1996-11-05 2024-10-11 02:43:25 +9806 9806 9807 980.6 1961.2 9806 1996-11-06 2024-10-11 02:43:26.000 1996-11-06 2024-10-11 02:43:26 +9807 9807 9808 980.7 1961.4 9807 1996-11-07 2024-10-11 02:43:27.000 1996-11-07 2024-10-11 02:43:27 +9808 9808 9809 980.8 1961.6000000000001 9808 1996-11-08 2024-10-11 02:43:28.000 1996-11-08 2024-10-11 02:43:28 +9809 9809 9810 980.9 1961.8000000000002 9809 1996-11-09 2024-10-11 02:43:29.000 1996-11-09 2024-10-11 02:43:29 +9810 9810 9811 981 1962 9810 1996-11-10 2024-10-11 02:43:30.000 1996-11-10 2024-10-11 02:43:30 +9811 9811 9812 981.1 1962.2 9811 1996-11-11 2024-10-11 02:43:31.000 1996-11-11 2024-10-11 02:43:31 +9812 9812 9813 981.2 1962.4 9812 1996-11-12 2024-10-11 02:43:32.000 1996-11-12 2024-10-11 02:43:32 +9813 9813 9814 981.3 1962.6000000000001 9813 1996-11-13 2024-10-11 02:43:33.000 1996-11-13 2024-10-11 02:43:33 +9814 9814 9815 981.4 1962.8000000000002 9814 1996-11-14 2024-10-11 02:43:34.000 1996-11-14 2024-10-11 02:43:34 +9815 9815 9816 981.5 1963 9815 1996-11-15 2024-10-11 02:43:35.000 1996-11-15 2024-10-11 02:43:35 +9816 9816 9817 981.6 1963.2 9816 1996-11-16 2024-10-11 02:43:36.000 1996-11-16 2024-10-11 02:43:36 +9817 9817 9818 981.7 1963.4 9817 1996-11-17 2024-10-11 02:43:37.000 1996-11-17 2024-10-11 02:43:37 +9818 9818 9819 981.8 1963.6000000000001 9818 1996-11-18 2024-10-11 02:43:38.000 1996-11-18 2024-10-11 02:43:38 +9819 9819 9820 981.9 1963.8000000000002 9819 1996-11-19 2024-10-11 02:43:39.000 1996-11-19 2024-10-11 02:43:39 +9820 9820 9821 982 1964 9820 1996-11-20 2024-10-11 02:43:40.000 1996-11-20 2024-10-11 02:43:40 +9821 9821 9822 982.1 1964.2 9821 1996-11-21 2024-10-11 02:43:41.000 1996-11-21 2024-10-11 02:43:41 +9822 9822 9823 982.2 1964.4 9822 1996-11-22 2024-10-11 02:43:42.000 1996-11-22 2024-10-11 02:43:42 +9823 9823 9824 982.3 1964.6000000000001 9823 1996-11-23 2024-10-11 02:43:43.000 1996-11-23 2024-10-11 02:43:43 +9824 9824 9825 982.4 1964.8000000000002 9824 1996-11-24 2024-10-11 02:43:44.000 1996-11-24 2024-10-11 02:43:44 +9825 9825 9826 982.5 1965 9825 1996-11-25 2024-10-11 02:43:45.000 1996-11-25 2024-10-11 02:43:45 +9826 9826 9827 982.6 1965.2 9826 1996-11-26 2024-10-11 02:43:46.000 1996-11-26 2024-10-11 02:43:46 +9827 9827 9828 982.7 1965.4 9827 1996-11-27 2024-10-11 02:43:47.000 1996-11-27 2024-10-11 02:43:47 +9828 9828 9829 982.8 1965.6000000000001 9828 1996-11-28 2024-10-11 02:43:48.000 1996-11-28 2024-10-11 02:43:48 +9829 9829 9830 982.9 1965.8000000000002 9829 1996-11-29 2024-10-11 02:43:49.000 1996-11-29 2024-10-11 02:43:49 +9830 9830 9831 983 1966 9830 1996-11-30 2024-10-11 02:43:50.000 1996-11-30 2024-10-11 02:43:50 +9831 9831 9832 983.1 1966.2 9831 1996-12-01 2024-10-11 02:43:51.000 1996-12-01 2024-10-11 02:43:51 +9832 9832 9833 983.2 1966.4 9832 1996-12-02 2024-10-11 02:43:52.000 1996-12-02 2024-10-11 02:43:52 +9833 9833 9834 983.3 1966.6000000000001 9833 1996-12-03 2024-10-11 02:43:53.000 1996-12-03 2024-10-11 02:43:53 +9834 9834 9835 983.4 1966.8000000000002 9834 1996-12-04 2024-10-11 02:43:54.000 1996-12-04 2024-10-11 02:43:54 +9835 9835 9836 983.5 1967 9835 1996-12-05 2024-10-11 02:43:55.000 1996-12-05 2024-10-11 02:43:55 +9836 9836 9837 983.6 1967.2 9836 1996-12-06 2024-10-11 02:43:56.000 1996-12-06 2024-10-11 02:43:56 +9837 9837 9838 983.7 1967.4 9837 1996-12-07 2024-10-11 02:43:57.000 1996-12-07 2024-10-11 02:43:57 +9838 9838 9839 983.8 1967.6000000000001 9838 1996-12-08 2024-10-11 02:43:58.000 1996-12-08 2024-10-11 02:43:58 +9839 9839 9840 983.9 1967.8000000000002 9839 1996-12-09 2024-10-11 02:43:59.000 1996-12-09 2024-10-11 02:43:59 +9840 9840 9841 984 1968 9840 1996-12-10 2024-10-11 02:44:00.000 1996-12-10 2024-10-11 02:44:00 +9841 9841 9842 984.1 1968.2 9841 1996-12-11 2024-10-11 02:44:01.000 1996-12-11 2024-10-11 02:44:01 +9842 9842 9843 984.2 1968.4 9842 1996-12-12 2024-10-11 02:44:02.000 1996-12-12 2024-10-11 02:44:02 +9843 9843 9844 984.3 1968.6000000000001 9843 1996-12-13 2024-10-11 02:44:03.000 1996-12-13 2024-10-11 02:44:03 +9844 9844 9845 984.4 1968.8000000000002 9844 1996-12-14 2024-10-11 02:44:04.000 1996-12-14 2024-10-11 02:44:04 +9845 9845 9846 984.5 1969 9845 1996-12-15 2024-10-11 02:44:05.000 1996-12-15 2024-10-11 02:44:05 +9846 9846 9847 984.6 1969.2 9846 1996-12-16 2024-10-11 02:44:06.000 1996-12-16 2024-10-11 02:44:06 +9847 9847 9848 984.7 1969.4 9847 1996-12-17 2024-10-11 02:44:07.000 1996-12-17 2024-10-11 02:44:07 +9848 9848 9849 984.8 1969.6000000000001 9848 1996-12-18 2024-10-11 02:44:08.000 1996-12-18 2024-10-11 02:44:08 +9849 9849 9850 984.9 1969.8000000000002 9849 1996-12-19 2024-10-11 02:44:09.000 1996-12-19 2024-10-11 02:44:09 +9850 9850 9851 985 1970 9850 1996-12-20 2024-10-11 02:44:10.000 1996-12-20 2024-10-11 02:44:10 +9851 9851 9852 985.1 1970.2 9851 1996-12-21 2024-10-11 02:44:11.000 1996-12-21 2024-10-11 02:44:11 +9852 9852 9853 985.2 1970.4 9852 1996-12-22 2024-10-11 02:44:12.000 1996-12-22 2024-10-11 02:44:12 +9853 9853 9854 985.3 1970.6000000000001 9853 1996-12-23 2024-10-11 02:44:13.000 1996-12-23 2024-10-11 02:44:13 +9854 9854 9855 985.4 1970.8000000000002 9854 1996-12-24 2024-10-11 02:44:14.000 1996-12-24 2024-10-11 02:44:14 +9855 9855 9856 985.5 1971 9855 1996-12-25 2024-10-11 02:44:15.000 1996-12-25 2024-10-11 02:44:15 +9856 9856 9857 985.6 1971.2 9856 1996-12-26 2024-10-11 02:44:16.000 1996-12-26 2024-10-11 02:44:16 +9857 9857 9858 985.7 1971.4 9857 1996-12-27 2024-10-11 02:44:17.000 1996-12-27 2024-10-11 02:44:17 +9858 9858 9859 985.8 1971.6000000000001 9858 1996-12-28 2024-10-11 02:44:18.000 1996-12-28 2024-10-11 02:44:18 +9859 9859 9860 985.9 1971.8000000000002 9859 1996-12-29 2024-10-11 02:44:19.000 1996-12-29 2024-10-11 02:44:19 +9860 9860 9861 986 1972 9860 1996-12-30 2024-10-11 02:44:20.000 1996-12-30 2024-10-11 02:44:20 +9861 9861 9862 986.1 1972.2 9861 1996-12-31 2024-10-11 02:44:21.000 1996-12-31 2024-10-11 02:44:21 +9862 9862 9863 986.2 1972.4 9862 1997-01-01 2024-10-11 02:44:22.000 1997-01-01 2024-10-11 02:44:22 +9863 9863 9864 986.3 1972.6000000000001 9863 1997-01-02 2024-10-11 02:44:23.000 1997-01-02 2024-10-11 02:44:23 +9864 9864 9865 986.4 1972.8000000000002 9864 1997-01-03 2024-10-11 02:44:24.000 1997-01-03 2024-10-11 02:44:24 +9865 9865 9866 986.5 1973 9865 1997-01-04 2024-10-11 02:44:25.000 1997-01-04 2024-10-11 02:44:25 +9866 9866 9867 986.6 1973.2 9866 1997-01-05 2024-10-11 02:44:26.000 1997-01-05 2024-10-11 02:44:26 +9867 9867 9868 986.7 1973.4 9867 1997-01-06 2024-10-11 02:44:27.000 1997-01-06 2024-10-11 02:44:27 +9868 9868 9869 986.8 1973.6000000000001 9868 1997-01-07 2024-10-11 02:44:28.000 1997-01-07 2024-10-11 02:44:28 +9869 9869 9870 986.9 1973.8000000000002 9869 1997-01-08 2024-10-11 02:44:29.000 1997-01-08 2024-10-11 02:44:29 +9870 9870 9871 987 1974 9870 1997-01-09 2024-10-11 02:44:30.000 1997-01-09 2024-10-11 02:44:30 +9871 9871 9872 987.1 1974.2 9871 1997-01-10 2024-10-11 02:44:31.000 1997-01-10 2024-10-11 02:44:31 +9872 9872 9873 987.2 1974.4 9872 1997-01-11 2024-10-11 02:44:32.000 1997-01-11 2024-10-11 02:44:32 +9873 9873 9874 987.3 1974.6000000000001 9873 1997-01-12 2024-10-11 02:44:33.000 1997-01-12 2024-10-11 02:44:33 +9874 9874 9875 987.4 1974.8000000000002 9874 1997-01-13 2024-10-11 02:44:34.000 1997-01-13 2024-10-11 02:44:34 +9875 9875 9876 987.5 1975 9875 1997-01-14 2024-10-11 02:44:35.000 1997-01-14 2024-10-11 02:44:35 +9876 9876 9877 987.6 1975.2 9876 1997-01-15 2024-10-11 02:44:36.000 1997-01-15 2024-10-11 02:44:36 +9877 9877 9878 987.7 1975.4 9877 1997-01-16 2024-10-11 02:44:37.000 1997-01-16 2024-10-11 02:44:37 +9878 9878 9879 987.8 1975.6000000000001 9878 1997-01-17 2024-10-11 02:44:38.000 1997-01-17 2024-10-11 02:44:38 +9879 9879 9880 987.9 1975.8000000000002 9879 1997-01-18 2024-10-11 02:44:39.000 1997-01-18 2024-10-11 02:44:39 +9880 9880 9881 988 1976 9880 1997-01-19 2024-10-11 02:44:40.000 1997-01-19 2024-10-11 02:44:40 +9881 9881 9882 988.1 1976.2 9881 1997-01-20 2024-10-11 02:44:41.000 1997-01-20 2024-10-11 02:44:41 +9882 9882 9883 988.2 1976.4 9882 1997-01-21 2024-10-11 02:44:42.000 1997-01-21 2024-10-11 02:44:42 +9883 9883 9884 988.3 1976.6000000000001 9883 1997-01-22 2024-10-11 02:44:43.000 1997-01-22 2024-10-11 02:44:43 +9884 9884 9885 988.4 1976.8000000000002 9884 1997-01-23 2024-10-11 02:44:44.000 1997-01-23 2024-10-11 02:44:44 +9885 9885 9886 988.5 1977 9885 1997-01-24 2024-10-11 02:44:45.000 1997-01-24 2024-10-11 02:44:45 +9886 9886 9887 988.6 1977.2 9886 1997-01-25 2024-10-11 02:44:46.000 1997-01-25 2024-10-11 02:44:46 +9887 9887 9888 988.7 1977.4 9887 1997-01-26 2024-10-11 02:44:47.000 1997-01-26 2024-10-11 02:44:47 +9888 9888 9889 988.8 1977.6000000000001 9888 1997-01-27 2024-10-11 02:44:48.000 1997-01-27 2024-10-11 02:44:48 +9889 9889 9890 988.9 1977.8000000000002 9889 1997-01-28 2024-10-11 02:44:49.000 1997-01-28 2024-10-11 02:44:49 +9890 9890 9891 989 1978 9890 1997-01-29 2024-10-11 02:44:50.000 1997-01-29 2024-10-11 02:44:50 +9891 9891 9892 989.1 1978.2 9891 1997-01-30 2024-10-11 02:44:51.000 1997-01-30 2024-10-11 02:44:51 +9892 9892 9893 989.2 1978.4 9892 1997-01-31 2024-10-11 02:44:52.000 1997-01-31 2024-10-11 02:44:52 +9893 9893 9894 989.3 1978.6000000000001 9893 1997-02-01 2024-10-11 02:44:53.000 1997-02-01 2024-10-11 02:44:53 +9894 9894 9895 989.4 1978.8000000000002 9894 1997-02-02 2024-10-11 02:44:54.000 1997-02-02 2024-10-11 02:44:54 +9895 9895 9896 989.5 1979 9895 1997-02-03 2024-10-11 02:44:55.000 1997-02-03 2024-10-11 02:44:55 +9896 9896 9897 989.6 1979.2 9896 1997-02-04 2024-10-11 02:44:56.000 1997-02-04 2024-10-11 02:44:56 +9897 9897 9898 989.7 1979.4 9897 1997-02-05 2024-10-11 02:44:57.000 1997-02-05 2024-10-11 02:44:57 +9898 9898 9899 989.8 1979.6000000000001 9898 1997-02-06 2024-10-11 02:44:58.000 1997-02-06 2024-10-11 02:44:58 +9899 9899 9900 989.9 1979.8000000000002 9899 1997-02-07 2024-10-11 02:44:59.000 1997-02-07 2024-10-11 02:44:59 +9900 9900 9901 990 1980 9900 1997-02-08 2024-10-11 02:45:00.000 1997-02-08 2024-10-11 02:45:00 +9901 9901 9902 990.1 1980.2 9901 1997-02-09 2024-10-11 02:45:01.000 1997-02-09 2024-10-11 02:45:01 +9902 9902 9903 990.2 1980.4 9902 1997-02-10 2024-10-11 02:45:02.000 1997-02-10 2024-10-11 02:45:02 +9903 9903 9904 990.3 1980.6000000000001 9903 1997-02-11 2024-10-11 02:45:03.000 1997-02-11 2024-10-11 02:45:03 +9904 9904 9905 990.4 1980.8000000000002 9904 1997-02-12 2024-10-11 02:45:04.000 1997-02-12 2024-10-11 02:45:04 +9905 9905 9906 990.5 1981 9905 1997-02-13 2024-10-11 02:45:05.000 1997-02-13 2024-10-11 02:45:05 +9906 9906 9907 990.6 1981.2 9906 1997-02-14 2024-10-11 02:45:06.000 1997-02-14 2024-10-11 02:45:06 +9907 9907 9908 990.7 1981.4 9907 1997-02-15 2024-10-11 02:45:07.000 1997-02-15 2024-10-11 02:45:07 +9908 9908 9909 990.8 1981.6000000000001 9908 1997-02-16 2024-10-11 02:45:08.000 1997-02-16 2024-10-11 02:45:08 +9909 9909 9910 990.9 1981.8000000000002 9909 1997-02-17 2024-10-11 02:45:09.000 1997-02-17 2024-10-11 02:45:09 +9910 9910 9911 991 1982 9910 1997-02-18 2024-10-11 02:45:10.000 1997-02-18 2024-10-11 02:45:10 +9911 9911 9912 991.1 1982.2 9911 1997-02-19 2024-10-11 02:45:11.000 1997-02-19 2024-10-11 02:45:11 +9912 9912 9913 991.2 1982.4 9912 1997-02-20 2024-10-11 02:45:12.000 1997-02-20 2024-10-11 02:45:12 +9913 9913 9914 991.3 1982.6000000000001 9913 1997-02-21 2024-10-11 02:45:13.000 1997-02-21 2024-10-11 02:45:13 +9914 9914 9915 991.4 1982.8000000000002 9914 1997-02-22 2024-10-11 02:45:14.000 1997-02-22 2024-10-11 02:45:14 +9915 9915 9916 991.5 1983 9915 1997-02-23 2024-10-11 02:45:15.000 1997-02-23 2024-10-11 02:45:15 +9916 9916 9917 991.6 1983.2 9916 1997-02-24 2024-10-11 02:45:16.000 1997-02-24 2024-10-11 02:45:16 +9917 9917 9918 991.7 1983.4 9917 1997-02-25 2024-10-11 02:45:17.000 1997-02-25 2024-10-11 02:45:17 +9918 9918 9919 991.8 1983.6000000000001 9918 1997-02-26 2024-10-11 02:45:18.000 1997-02-26 2024-10-11 02:45:18 +9919 9919 9920 991.9 1983.8000000000002 9919 1997-02-27 2024-10-11 02:45:19.000 1997-02-27 2024-10-11 02:45:19 +9920 9920 9921 992 1984 9920 1997-02-28 2024-10-11 02:45:20.000 1997-02-28 2024-10-11 02:45:20 +9921 9921 9922 992.1 1984.2 9921 1997-03-01 2024-10-11 02:45:21.000 1997-03-01 2024-10-11 02:45:21 +9922 9922 9923 992.2 1984.4 9922 1997-03-02 2024-10-11 02:45:22.000 1997-03-02 2024-10-11 02:45:22 +9923 9923 9924 992.3 1984.6000000000001 9923 1997-03-03 2024-10-11 02:45:23.000 1997-03-03 2024-10-11 02:45:23 +9924 9924 9925 992.4 1984.8000000000002 9924 1997-03-04 2024-10-11 02:45:24.000 1997-03-04 2024-10-11 02:45:24 +9925 9925 9926 992.5 1985 9925 1997-03-05 2024-10-11 02:45:25.000 1997-03-05 2024-10-11 02:45:25 +9926 9926 9927 992.6 1985.2 9926 1997-03-06 2024-10-11 02:45:26.000 1997-03-06 2024-10-11 02:45:26 +9927 9927 9928 992.7 1985.4 9927 1997-03-07 2024-10-11 02:45:27.000 1997-03-07 2024-10-11 02:45:27 +9928 9928 9929 992.8 1985.6000000000001 9928 1997-03-08 2024-10-11 02:45:28.000 1997-03-08 2024-10-11 02:45:28 +9929 9929 9930 992.9 1985.8000000000002 9929 1997-03-09 2024-10-11 02:45:29.000 1997-03-09 2024-10-11 02:45:29 +9930 9930 9931 993 1986 9930 1997-03-10 2024-10-11 02:45:30.000 1997-03-10 2024-10-11 02:45:30 +9931 9931 9932 993.1 1986.2 9931 1997-03-11 2024-10-11 02:45:31.000 1997-03-11 2024-10-11 02:45:31 +9932 9932 9933 993.2 1986.4 9932 1997-03-12 2024-10-11 02:45:32.000 1997-03-12 2024-10-11 02:45:32 +9933 9933 9934 993.3 1986.6000000000001 9933 1997-03-13 2024-10-11 02:45:33.000 1997-03-13 2024-10-11 02:45:33 +9934 9934 9935 993.4 1986.8000000000002 9934 1997-03-14 2024-10-11 02:45:34.000 1997-03-14 2024-10-11 02:45:34 +9935 9935 9936 993.5 1987 9935 1997-03-15 2024-10-11 02:45:35.000 1997-03-15 2024-10-11 02:45:35 +9936 9936 9937 993.6 1987.2 9936 1997-03-16 2024-10-11 02:45:36.000 1997-03-16 2024-10-11 02:45:36 +9937 9937 9938 993.7 1987.4 9937 1997-03-17 2024-10-11 02:45:37.000 1997-03-17 2024-10-11 02:45:37 +9938 9938 9939 993.8 1987.6000000000001 9938 1997-03-18 2024-10-11 02:45:38.000 1997-03-18 2024-10-11 02:45:38 +9939 9939 9940 993.9 1987.8000000000002 9939 1997-03-19 2024-10-11 02:45:39.000 1997-03-19 2024-10-11 02:45:39 +9940 9940 9941 994 1988 9940 1997-03-20 2024-10-11 02:45:40.000 1997-03-20 2024-10-11 02:45:40 +9941 9941 9942 994.1 1988.2 9941 1997-03-21 2024-10-11 02:45:41.000 1997-03-21 2024-10-11 02:45:41 +9942 9942 9943 994.2 1988.4 9942 1997-03-22 2024-10-11 02:45:42.000 1997-03-22 2024-10-11 02:45:42 +9943 9943 9944 994.3 1988.6000000000001 9943 1997-03-23 2024-10-11 02:45:43.000 1997-03-23 2024-10-11 02:45:43 +9944 9944 9945 994.4 1988.8000000000002 9944 1997-03-24 2024-10-11 02:45:44.000 1997-03-24 2024-10-11 02:45:44 +9945 9945 9946 994.5 1989 9945 1997-03-25 2024-10-11 02:45:45.000 1997-03-25 2024-10-11 02:45:45 +9946 9946 9947 994.6 1989.2 9946 1997-03-26 2024-10-11 02:45:46.000 1997-03-26 2024-10-11 02:45:46 +9947 9947 9948 994.7 1989.4 9947 1997-03-27 2024-10-11 02:45:47.000 1997-03-27 2024-10-11 02:45:47 +9948 9948 9949 994.8 1989.6000000000001 9948 1997-03-28 2024-10-11 02:45:48.000 1997-03-28 2024-10-11 02:45:48 +9949 9949 9950 994.9 1989.8000000000002 9949 1997-03-29 2024-10-11 02:45:49.000 1997-03-29 2024-10-11 02:45:49 +9950 9950 9951 995 1990 9950 1997-03-30 2024-10-11 02:45:50.000 1997-03-30 2024-10-11 02:45:50 +9951 9951 9952 995.1 1990.2 9951 1997-03-31 2024-10-11 02:45:51.000 1997-03-31 2024-10-11 02:45:51 +9952 9952 9953 995.2 1990.4 9952 1997-04-01 2024-10-11 02:45:52.000 1997-04-01 2024-10-11 02:45:52 +9953 9953 9954 995.3 1990.6000000000001 9953 1997-04-02 2024-10-11 02:45:53.000 1997-04-02 2024-10-11 02:45:53 +9954 9954 9955 995.4 1990.8000000000002 9954 1997-04-03 2024-10-11 02:45:54.000 1997-04-03 2024-10-11 02:45:54 +9955 9955 9956 995.5 1991 9955 1997-04-04 2024-10-11 02:45:55.000 1997-04-04 2024-10-11 02:45:55 +9956 9956 9957 995.6 1991.2 9956 1997-04-05 2024-10-11 02:45:56.000 1997-04-05 2024-10-11 02:45:56 +9957 9957 9958 995.7 1991.4 9957 1997-04-06 2024-10-11 02:45:57.000 1997-04-06 2024-10-11 02:45:57 +9958 9958 9959 995.8 1991.6000000000001 9958 1997-04-07 2024-10-11 02:45:58.000 1997-04-07 2024-10-11 02:45:58 +9959 9959 9960 995.9 1991.8000000000002 9959 1997-04-08 2024-10-11 02:45:59.000 1997-04-08 2024-10-11 02:45:59 +9960 9960 9961 996 1992 9960 1997-04-09 2024-10-11 02:46:00.000 1997-04-09 2024-10-11 02:46:00 +9961 9961 9962 996.1 1992.2 9961 1997-04-10 2024-10-11 02:46:01.000 1997-04-10 2024-10-11 02:46:01 +9962 9962 9963 996.2 1992.4 9962 1997-04-11 2024-10-11 02:46:02.000 1997-04-11 2024-10-11 02:46:02 +9963 9963 9964 996.3 1992.6000000000001 9963 1997-04-12 2024-10-11 02:46:03.000 1997-04-12 2024-10-11 02:46:03 +9964 9964 9965 996.4 1992.8000000000002 9964 1997-04-13 2024-10-11 02:46:04.000 1997-04-13 2024-10-11 02:46:04 +9965 9965 9966 996.5 1993 9965 1997-04-14 2024-10-11 02:46:05.000 1997-04-14 2024-10-11 02:46:05 +9966 9966 9967 996.6 1993.2 9966 1997-04-15 2024-10-11 02:46:06.000 1997-04-15 2024-10-11 02:46:06 +9967 9967 9968 996.7 1993.4 9967 1997-04-16 2024-10-11 02:46:07.000 1997-04-16 2024-10-11 02:46:07 +9968 9968 9969 996.8 1993.6000000000001 9968 1997-04-17 2024-10-11 02:46:08.000 1997-04-17 2024-10-11 02:46:08 +9969 9969 9970 996.9 1993.8000000000002 9969 1997-04-18 2024-10-11 02:46:09.000 1997-04-18 2024-10-11 02:46:09 +9970 9970 9971 997 1994 9970 1997-04-19 2024-10-11 02:46:10.000 1997-04-19 2024-10-11 02:46:10 +9971 9971 9972 997.1 1994.2 9971 1997-04-20 2024-10-11 02:46:11.000 1997-04-20 2024-10-11 02:46:11 +9972 9972 9973 997.2 1994.4 9972 1997-04-21 2024-10-11 02:46:12.000 1997-04-21 2024-10-11 02:46:12 +9973 9973 9974 997.3 1994.6000000000001 9973 1997-04-22 2024-10-11 02:46:13.000 1997-04-22 2024-10-11 02:46:13 +9974 9974 9975 997.4 1994.8000000000002 9974 1997-04-23 2024-10-11 02:46:14.000 1997-04-23 2024-10-11 02:46:14 +9975 9975 9976 997.5 1995 9975 1997-04-24 2024-10-11 02:46:15.000 1997-04-24 2024-10-11 02:46:15 +9976 9976 9977 997.6 1995.2 9976 1997-04-25 2024-10-11 02:46:16.000 1997-04-25 2024-10-11 02:46:16 +9977 9977 9978 997.7 1995.4 9977 1997-04-26 2024-10-11 02:46:17.000 1997-04-26 2024-10-11 02:46:17 +9978 9978 9979 997.8 1995.6000000000001 9978 1997-04-27 2024-10-11 02:46:18.000 1997-04-27 2024-10-11 02:46:18 +9979 9979 9980 997.9 1995.8000000000002 9979 1997-04-28 2024-10-11 02:46:19.000 1997-04-28 2024-10-11 02:46:19 +9980 9980 9981 998 1996 9980 1997-04-29 2024-10-11 02:46:20.000 1997-04-29 2024-10-11 02:46:20 +9981 9981 9982 998.1 1996.2 9981 1997-04-30 2024-10-11 02:46:21.000 1997-04-30 2024-10-11 02:46:21 +9982 9982 9983 998.2 1996.4 9982 1997-05-01 2024-10-11 02:46:22.000 1997-05-01 2024-10-11 02:46:22 +9983 9983 9984 998.3 1996.6000000000001 9983 1997-05-02 2024-10-11 02:46:23.000 1997-05-02 2024-10-11 02:46:23 +9984 9984 9985 998.4 1996.8000000000002 9984 1997-05-03 2024-10-11 02:46:24.000 1997-05-03 2024-10-11 02:46:24 +9985 9985 9986 998.5 1997 9985 1997-05-04 2024-10-11 02:46:25.000 1997-05-04 2024-10-11 02:46:25 +9986 9986 9987 998.6 1997.2 9986 1997-05-05 2024-10-11 02:46:26.000 1997-05-05 2024-10-11 02:46:26 +9987 9987 9988 998.7 1997.4 9987 1997-05-06 2024-10-11 02:46:27.000 1997-05-06 2024-10-11 02:46:27 +9988 9988 9989 998.8 1997.6000000000001 9988 1997-05-07 2024-10-11 02:46:28.000 1997-05-07 2024-10-11 02:46:28 +9989 9989 9990 998.9 1997.8000000000002 9989 1997-05-08 2024-10-11 02:46:29.000 1997-05-08 2024-10-11 02:46:29 +9990 9990 9991 999 1998 9990 1997-05-09 2024-10-11 02:46:30.000 1997-05-09 2024-10-11 02:46:30 +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9995 9995 9996 999.5 1999 9995 1997-05-14 2024-10-11 02:46:35.000 1997-05-14 2024-10-11 02:46:35 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +select * from test_native_parquet where date32 >= '1970-01-10'; +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +10 10 11 1 2 10 1970-01-11 2024-10-11 00:00:10.000 1970-01-11 2024-10-11 00:00:10 +11 11 12 1.1 2.2 11 1970-01-12 2024-10-11 00:00:11.000 1970-01-12 2024-10-11 00:00:11 +12 12 13 1.2 2.4000000000000004 12 1970-01-13 2024-10-11 00:00:12.000 1970-01-13 2024-10-11 00:00:12 +13 13 14 1.3 2.6 13 1970-01-14 2024-10-11 00:00:13.000 1970-01-14 2024-10-11 00:00:13 +14 14 15 1.4 2.8000000000000003 14 1970-01-15 2024-10-11 00:00:14.000 1970-01-15 2024-10-11 00:00:14 +15 15 16 1.5 3 15 1970-01-16 2024-10-11 00:00:15.000 1970-01-16 2024-10-11 00:00:15 +16 16 17 1.6 3.2 16 1970-01-17 2024-10-11 00:00:16.000 1970-01-17 2024-10-11 00:00:16 +17 17 18 1.7 3.4000000000000004 17 1970-01-18 2024-10-11 00:00:17.000 1970-01-18 2024-10-11 00:00:17 +18 18 19 1.8 3.6 18 1970-01-19 2024-10-11 00:00:18.000 1970-01-19 2024-10-11 00:00:18 +19 19 20 1.9 3.8000000000000003 19 1970-01-20 2024-10-11 00:00:19.000 1970-01-20 2024-10-11 00:00:19 +20 20 21 2 4 20 1970-01-21 2024-10-11 00:00:20.000 1970-01-21 2024-10-11 00:00:20 +21 21 22 2.1 4.2 21 1970-01-22 2024-10-11 00:00:21.000 1970-01-22 2024-10-11 00:00:21 +22 22 23 2.2 4.4 22 1970-01-23 2024-10-11 00:00:22.000 1970-01-23 2024-10-11 00:00:22 +23 23 24 2.3 4.6000000000000005 23 1970-01-24 2024-10-11 00:00:23.000 1970-01-24 2024-10-11 00:00:23 +24 24 25 2.4 4.800000000000001 24 1970-01-25 2024-10-11 00:00:24.000 1970-01-25 2024-10-11 00:00:24 +25 25 26 2.5 5 25 1970-01-26 2024-10-11 00:00:25.000 1970-01-26 2024-10-11 00:00:25 +26 26 27 2.6 5.2 26 1970-01-27 2024-10-11 00:00:26.000 1970-01-27 2024-10-11 00:00:26 +27 27 28 2.7 5.4 27 1970-01-28 2024-10-11 00:00:27.000 1970-01-28 2024-10-11 00:00:27 +28 28 29 2.8 5.6000000000000005 28 1970-01-29 2024-10-11 00:00:28.000 1970-01-29 2024-10-11 00:00:28 +29 29 30 2.9 5.800000000000001 29 1970-01-30 2024-10-11 00:00:29.000 1970-01-30 2024-10-11 00:00:29 +30 30 31 3 6 30 1970-01-31 2024-10-11 00:00:30.000 1970-01-31 2024-10-11 00:00:30 +31 31 32 3.1 6.2 31 1970-02-01 2024-10-11 00:00:31.000 1970-02-01 2024-10-11 00:00:31 +32 32 33 3.2 6.4 32 1970-02-02 2024-10-11 00:00:32.000 1970-02-02 2024-10-11 00:00:32 +33 33 34 3.3 6.6000000000000005 33 1970-02-03 2024-10-11 00:00:33.000 1970-02-03 2024-10-11 00:00:33 +34 34 35 3.4 6.800000000000001 34 1970-02-04 2024-10-11 00:00:34.000 1970-02-04 2024-10-11 00:00:34 +35 35 36 3.5 7 35 1970-02-05 2024-10-11 00:00:35.000 1970-02-05 2024-10-11 00:00:35 +36 36 37 3.6 7.2 36 1970-02-06 2024-10-11 00:00:36.000 1970-02-06 2024-10-11 00:00:36 +37 37 38 3.7 7.4 37 1970-02-07 2024-10-11 00:00:37.000 1970-02-07 2024-10-11 00:00:37 +38 38 39 3.8 7.6000000000000005 38 1970-02-08 2024-10-11 00:00:38.000 1970-02-08 2024-10-11 00:00:38 +39 39 40 3.9 7.800000000000001 39 1970-02-09 2024-10-11 00:00:39.000 1970-02-09 2024-10-11 00:00:39 +40 40 41 4 8 40 1970-02-10 2024-10-11 00:00:40.000 1970-02-10 2024-10-11 00:00:40 +41 41 42 4.1 8.200000000000001 41 1970-02-11 2024-10-11 00:00:41.000 1970-02-11 2024-10-11 00:00:41 +42 42 43 4.2 8.4 42 1970-02-12 2024-10-11 00:00:42.000 1970-02-12 2024-10-11 00:00:42 +43 43 44 4.3 8.6 43 1970-02-13 2024-10-11 00:00:43.000 1970-02-13 2024-10-11 00:00:43 +44 44 45 4.4 8.8 44 1970-02-14 2024-10-11 00:00:44.000 1970-02-14 2024-10-11 00:00:44 +45 45 46 4.5 9 45 1970-02-15 2024-10-11 00:00:45.000 1970-02-15 2024-10-11 00:00:45 +46 46 47 4.6 9.200000000000001 46 1970-02-16 2024-10-11 00:00:46.000 1970-02-16 2024-10-11 00:00:46 +47 47 48 4.7 9.4 47 1970-02-17 2024-10-11 00:00:47.000 1970-02-17 2024-10-11 00:00:47 +48 48 49 4.8 9.600000000000001 48 1970-02-18 2024-10-11 00:00:48.000 1970-02-18 2024-10-11 00:00:48 +49 49 50 4.9 9.8 49 1970-02-19 2024-10-11 00:00:49.000 1970-02-19 2024-10-11 00:00:49 +50 50 51 5 10 50 1970-02-20 2024-10-11 00:00:50.000 1970-02-20 2024-10-11 00:00:50 +51 51 52 5.1 10.200000000000001 51 1970-02-21 2024-10-11 00:00:51.000 1970-02-21 2024-10-11 00:00:51 +52 52 53 5.2 10.4 52 1970-02-22 2024-10-11 00:00:52.000 1970-02-22 2024-10-11 00:00:52 +53 53 54 5.3 10.600000000000001 53 1970-02-23 2024-10-11 00:00:53.000 1970-02-23 2024-10-11 00:00:53 +54 54 55 5.4 10.8 54 1970-02-24 2024-10-11 00:00:54.000 1970-02-24 2024-10-11 00:00:54 +55 55 56 5.5 11 55 1970-02-25 2024-10-11 00:00:55.000 1970-02-25 2024-10-11 00:00:55 +56 56 57 5.6 11.200000000000001 56 1970-02-26 2024-10-11 00:00:56.000 1970-02-26 2024-10-11 00:00:56 +57 57 58 5.7 11.4 57 1970-02-27 2024-10-11 00:00:57.000 1970-02-27 2024-10-11 00:00:57 +58 58 59 5.8 11.600000000000001 58 1970-02-28 2024-10-11 00:00:58.000 1970-02-28 2024-10-11 00:00:58 +59 59 60 5.9 11.8 59 1970-03-01 2024-10-11 00:00:59.000 1970-03-01 2024-10-11 00:00:59 +60 60 61 6 12 60 1970-03-02 2024-10-11 00:01:00.000 1970-03-02 2024-10-11 00:01:00 +61 61 62 6.1 12.200000000000001 61 1970-03-03 2024-10-11 00:01:01.000 1970-03-03 2024-10-11 00:01:01 +62 62 63 6.2 12.4 62 1970-03-04 2024-10-11 00:01:02.000 1970-03-04 2024-10-11 00:01:02 +63 63 64 6.3 12.600000000000001 63 1970-03-05 2024-10-11 00:01:03.000 1970-03-05 2024-10-11 00:01:03 +64 64 65 6.4 12.8 64 1970-03-06 2024-10-11 00:01:04.000 1970-03-06 2024-10-11 00:01:04 +65 65 66 6.5 13 65 1970-03-07 2024-10-11 00:01:05.000 1970-03-07 2024-10-11 00:01:05 +66 66 67 6.6 13.200000000000001 66 1970-03-08 2024-10-11 00:01:06.000 1970-03-08 2024-10-11 00:01:06 +67 67 68 6.7 13.4 67 1970-03-09 2024-10-11 00:01:07.000 1970-03-09 2024-10-11 00:01:07 +68 68 69 6.8 13.600000000000001 68 1970-03-10 2024-10-11 00:01:08.000 1970-03-10 2024-10-11 00:01:08 +69 69 70 6.9 13.8 69 1970-03-11 2024-10-11 00:01:09.000 1970-03-11 2024-10-11 00:01:09 +70 70 71 7 14 70 1970-03-12 2024-10-11 00:01:10.000 1970-03-12 2024-10-11 00:01:10 +71 71 72 7.1 14.200000000000001 71 1970-03-13 2024-10-11 00:01:11.000 1970-03-13 2024-10-11 00:01:11 +72 72 73 7.2 14.4 72 1970-03-14 2024-10-11 00:01:12.000 1970-03-14 2024-10-11 00:01:12 +73 73 74 7.3 14.600000000000001 73 1970-03-15 2024-10-11 00:01:13.000 1970-03-15 2024-10-11 00:01:13 +74 74 75 7.4 14.8 74 1970-03-16 2024-10-11 00:01:14.000 1970-03-16 2024-10-11 00:01:14 +75 75 76 7.5 15 75 1970-03-17 2024-10-11 00:01:15.000 1970-03-17 2024-10-11 00:01:15 +76 76 77 7.6 15.200000000000001 76 1970-03-18 2024-10-11 00:01:16.000 1970-03-18 2024-10-11 00:01:16 +77 77 78 7.7 15.4 77 1970-03-19 2024-10-11 00:01:17.000 1970-03-19 2024-10-11 00:01:17 +78 78 79 7.8 15.600000000000001 78 1970-03-20 2024-10-11 00:01:18.000 1970-03-20 2024-10-11 00:01:18 +79 79 80 7.9 15.8 79 1970-03-21 2024-10-11 00:01:19.000 1970-03-21 2024-10-11 00:01:19 +80 80 81 8 16 80 1970-03-22 2024-10-11 00:01:20.000 1970-03-22 2024-10-11 00:01:20 +81 81 82 8.1 16.2 81 1970-03-23 2024-10-11 00:01:21.000 1970-03-23 2024-10-11 00:01:21 +82 82 83 8.2 16.400000000000002 82 1970-03-24 2024-10-11 00:01:22.000 1970-03-24 2024-10-11 00:01:22 +83 83 84 8.3 16.6 83 1970-03-25 2024-10-11 00:01:23.000 1970-03-25 2024-10-11 00:01:23 +84 84 85 8.4 16.8 84 1970-03-26 2024-10-11 00:01:24.000 1970-03-26 2024-10-11 00:01:24 +85 85 86 8.5 17 85 1970-03-27 2024-10-11 00:01:25.000 1970-03-27 2024-10-11 00:01:25 +86 86 87 8.6 17.2 86 1970-03-28 2024-10-11 00:01:26.000 1970-03-28 2024-10-11 00:01:26 +87 87 88 8.7 17.400000000000002 87 1970-03-29 2024-10-11 00:01:27.000 1970-03-29 2024-10-11 00:01:27 +88 88 89 8.8 17.6 88 1970-03-30 2024-10-11 00:01:28.000 1970-03-30 2024-10-11 00:01:28 +89 89 90 8.9 17.8 89 1970-03-31 2024-10-11 00:01:29.000 1970-03-31 2024-10-11 00:01:29 +90 90 91 9 18 90 1970-04-01 2024-10-11 00:01:30.000 1970-04-01 2024-10-11 00:01:30 +91 91 92 9.1 18.2 91 1970-04-02 2024-10-11 00:01:31.000 1970-04-02 2024-10-11 00:01:31 +92 92 93 9.2 18.400000000000002 92 1970-04-03 2024-10-11 00:01:32.000 1970-04-03 2024-10-11 00:01:32 +93 93 94 9.3 18.6 93 1970-04-04 2024-10-11 00:01:33.000 1970-04-04 2024-10-11 00:01:33 +94 94 95 9.4 18.8 94 1970-04-05 2024-10-11 00:01:34.000 1970-04-05 2024-10-11 00:01:34 +95 95 96 9.5 19 95 1970-04-06 2024-10-11 00:01:35.000 1970-04-06 2024-10-11 00:01:35 +96 96 97 9.6 19.200000000000003 96 1970-04-07 2024-10-11 00:01:36.000 1970-04-07 2024-10-11 00:01:36 +97 97 98 9.7 19.400000000000002 97 1970-04-08 2024-10-11 00:01:37.000 1970-04-08 2024-10-11 00:01:37 +98 98 99 9.8 19.6 98 1970-04-09 2024-10-11 00:01:38.000 1970-04-09 2024-10-11 00:01:38 +99 99 100 9.9 19.8 99 1970-04-10 2024-10-11 00:01:39.000 1970-04-10 2024-10-11 00:01:39 +100 100 101 10 20 100 1970-04-11 2024-10-11 00:01:40.000 1970-04-11 2024-10-11 00:01:40 +101 101 102 10.1 20.200000000000003 101 1970-04-12 2024-10-11 00:01:41.000 1970-04-12 2024-10-11 00:01:41 +102 102 103 10.2 20.400000000000002 102 1970-04-13 2024-10-11 00:01:42.000 1970-04-13 2024-10-11 00:01:42 +103 103 104 10.3 20.6 103 1970-04-14 2024-10-11 00:01:43.000 1970-04-14 2024-10-11 00:01:43 +104 104 105 10.4 20.8 104 1970-04-15 2024-10-11 00:01:44.000 1970-04-15 2024-10-11 00:01:44 +105 105 106 10.5 21 105 1970-04-16 2024-10-11 00:01:45.000 1970-04-16 2024-10-11 00:01:45 +106 106 107 10.6 21.200000000000003 106 1970-04-17 2024-10-11 00:01:46.000 1970-04-17 2024-10-11 00:01:46 +107 107 108 10.7 21.400000000000002 107 1970-04-18 2024-10-11 00:01:47.000 1970-04-18 2024-10-11 00:01:47 +108 108 109 10.8 21.6 108 1970-04-19 2024-10-11 00:01:48.000 1970-04-19 2024-10-11 00:01:48 +109 109 110 10.9 21.8 109 1970-04-20 2024-10-11 00:01:49.000 1970-04-20 2024-10-11 00:01:49 +110 110 111 11 22 110 1970-04-21 2024-10-11 00:01:50.000 1970-04-21 2024-10-11 00:01:50 +111 111 112 11.1 22.200000000000003 111 1970-04-22 2024-10-11 00:01:51.000 1970-04-22 2024-10-11 00:01:51 +112 112 113 11.2 22.400000000000002 112 1970-04-23 2024-10-11 00:01:52.000 1970-04-23 2024-10-11 00:01:52 +113 113 114 11.3 22.6 113 1970-04-24 2024-10-11 00:01:53.000 1970-04-24 2024-10-11 00:01:53 +114 114 115 11.4 22.8 114 1970-04-25 2024-10-11 00:01:54.000 1970-04-25 2024-10-11 00:01:54 +115 115 116 11.5 23 115 1970-04-26 2024-10-11 00:01:55.000 1970-04-26 2024-10-11 00:01:55 +116 116 117 11.6 23.200000000000003 116 1970-04-27 2024-10-11 00:01:56.000 1970-04-27 2024-10-11 00:01:56 +117 117 118 11.7 23.400000000000002 117 1970-04-28 2024-10-11 00:01:57.000 1970-04-28 2024-10-11 00:01:57 +118 118 119 11.8 23.6 118 1970-04-29 2024-10-11 00:01:58.000 1970-04-29 2024-10-11 00:01:58 +119 119 120 11.9 23.8 119 1970-04-30 2024-10-11 00:01:59.000 1970-04-30 2024-10-11 00:01:59 +120 120 121 12 24 120 1970-05-01 2024-10-11 00:02:00.000 1970-05-01 2024-10-11 00:02:00 +121 121 122 12.1 24.200000000000003 121 1970-05-02 2024-10-11 00:02:01.000 1970-05-02 2024-10-11 00:02:01 +122 122 123 12.2 24.400000000000002 122 1970-05-03 2024-10-11 00:02:02.000 1970-05-03 2024-10-11 00:02:02 +123 123 124 12.3 24.6 123 1970-05-04 2024-10-11 00:02:03.000 1970-05-04 2024-10-11 00:02:03 +124 124 125 12.4 24.8 124 1970-05-05 2024-10-11 00:02:04.000 1970-05-05 2024-10-11 00:02:04 +125 125 126 12.5 25 125 1970-05-06 2024-10-11 00:02:05.000 1970-05-06 2024-10-11 00:02:05 +126 126 127 12.6 25.200000000000003 126 1970-05-07 2024-10-11 00:02:06.000 1970-05-07 2024-10-11 00:02:06 +127 127 128 12.7 25.400000000000002 127 1970-05-08 2024-10-11 00:02:07.000 1970-05-08 2024-10-11 00:02:07 +128 128 129 12.8 25.6 128 1970-05-09 2024-10-11 00:02:08.000 1970-05-09 2024-10-11 00:02:08 +129 129 130 12.9 25.8 129 1970-05-10 2024-10-11 00:02:09.000 1970-05-10 2024-10-11 00:02:09 +130 130 131 13 26 130 1970-05-11 2024-10-11 00:02:10.000 1970-05-11 2024-10-11 00:02:10 +131 131 132 13.1 26.200000000000003 131 1970-05-12 2024-10-11 00:02:11.000 1970-05-12 2024-10-11 00:02:11 +132 132 133 13.2 26.400000000000002 132 1970-05-13 2024-10-11 00:02:12.000 1970-05-13 2024-10-11 00:02:12 +133 133 134 13.3 26.6 133 1970-05-14 2024-10-11 00:02:13.000 1970-05-14 2024-10-11 00:02:13 +134 134 135 13.4 26.8 134 1970-05-15 2024-10-11 00:02:14.000 1970-05-15 2024-10-11 00:02:14 +135 135 136 13.5 27 135 1970-05-16 2024-10-11 00:02:15.000 1970-05-16 2024-10-11 00:02:15 +136 136 137 13.6 27.200000000000003 136 1970-05-17 2024-10-11 00:02:16.000 1970-05-17 2024-10-11 00:02:16 +137 137 138 13.7 27.400000000000002 137 1970-05-18 2024-10-11 00:02:17.000 1970-05-18 2024-10-11 00:02:17 +138 138 139 13.8 27.6 138 1970-05-19 2024-10-11 00:02:18.000 1970-05-19 2024-10-11 00:02:18 +139 139 140 13.9 27.8 139 1970-05-20 2024-10-11 00:02:19.000 1970-05-20 2024-10-11 00:02:19 +140 140 141 14 28 140 1970-05-21 2024-10-11 00:02:20.000 1970-05-21 2024-10-11 00:02:20 +141 141 142 14.1 28.200000000000003 141 1970-05-22 2024-10-11 00:02:21.000 1970-05-22 2024-10-11 00:02:21 +142 142 143 14.2 28.400000000000002 142 1970-05-23 2024-10-11 00:02:22.000 1970-05-23 2024-10-11 00:02:22 +143 143 144 14.3 28.6 143 1970-05-24 2024-10-11 00:02:23.000 1970-05-24 2024-10-11 00:02:23 +144 144 145 14.4 28.8 144 1970-05-25 2024-10-11 00:02:24.000 1970-05-25 2024-10-11 00:02:24 +145 145 146 14.5 29 145 1970-05-26 2024-10-11 00:02:25.000 1970-05-26 2024-10-11 00:02:25 +146 146 147 14.6 29.200000000000003 146 1970-05-27 2024-10-11 00:02:26.000 1970-05-27 2024-10-11 00:02:26 +147 147 148 14.7 29.400000000000002 147 1970-05-28 2024-10-11 00:02:27.000 1970-05-28 2024-10-11 00:02:27 +148 148 149 14.8 29.6 148 1970-05-29 2024-10-11 00:02:28.000 1970-05-29 2024-10-11 00:02:28 +149 149 150 14.9 29.8 149 1970-05-30 2024-10-11 00:02:29.000 1970-05-30 2024-10-11 00:02:29 +150 150 151 15 30 150 1970-05-31 2024-10-11 00:02:30.000 1970-05-31 2024-10-11 00:02:30 +151 151 152 15.1 30.200000000000003 151 1970-06-01 2024-10-11 00:02:31.000 1970-06-01 2024-10-11 00:02:31 +152 152 153 15.2 30.400000000000002 152 1970-06-02 2024-10-11 00:02:32.000 1970-06-02 2024-10-11 00:02:32 +153 153 154 15.3 30.6 153 1970-06-03 2024-10-11 00:02:33.000 1970-06-03 2024-10-11 00:02:33 +154 154 155 15.4 30.8 154 1970-06-04 2024-10-11 00:02:34.000 1970-06-04 2024-10-11 00:02:34 +155 155 156 15.5 31 155 1970-06-05 2024-10-11 00:02:35.000 1970-06-05 2024-10-11 00:02:35 +156 156 157 15.6 31.200000000000003 156 1970-06-06 2024-10-11 00:02:36.000 1970-06-06 2024-10-11 00:02:36 +157 157 158 15.7 31.400000000000002 157 1970-06-07 2024-10-11 00:02:37.000 1970-06-07 2024-10-11 00:02:37 +158 158 159 15.8 31.6 158 1970-06-08 2024-10-11 00:02:38.000 1970-06-08 2024-10-11 00:02:38 +159 159 160 15.9 31.8 159 1970-06-09 2024-10-11 00:02:39.000 1970-06-09 2024-10-11 00:02:39 +160 160 161 16 32 160 1970-06-10 2024-10-11 00:02:40.000 1970-06-10 2024-10-11 00:02:40 +161 161 162 16.1 32.2 161 1970-06-11 2024-10-11 00:02:41.000 1970-06-11 2024-10-11 00:02:41 +162 162 163 16.2 32.4 162 1970-06-12 2024-10-11 00:02:42.000 1970-06-12 2024-10-11 00:02:42 +163 163 164 16.3 32.6 163 1970-06-13 2024-10-11 00:02:43.000 1970-06-13 2024-10-11 00:02:43 +164 164 165 16.4 32.800000000000004 164 1970-06-14 2024-10-11 00:02:44.000 1970-06-14 2024-10-11 00:02:44 +165 165 166 16.5 33 165 1970-06-15 2024-10-11 00:02:45.000 1970-06-15 2024-10-11 00:02:45 +166 166 167 16.6 33.2 166 1970-06-16 2024-10-11 00:02:46.000 1970-06-16 2024-10-11 00:02:46 +167 167 168 16.7 33.4 167 1970-06-17 2024-10-11 00:02:47.000 1970-06-17 2024-10-11 00:02:47 +168 168 169 16.8 33.6 168 1970-06-18 2024-10-11 00:02:48.000 1970-06-18 2024-10-11 00:02:48 +169 169 170 16.9 33.800000000000004 169 1970-06-19 2024-10-11 00:02:49.000 1970-06-19 2024-10-11 00:02:49 +170 170 171 17 34 170 1970-06-20 2024-10-11 00:02:50.000 1970-06-20 2024-10-11 00:02:50 +171 171 172 17.1 34.2 171 1970-06-21 2024-10-11 00:02:51.000 1970-06-21 2024-10-11 00:02:51 +172 172 173 17.2 34.4 172 1970-06-22 2024-10-11 00:02:52.000 1970-06-22 2024-10-11 00:02:52 +173 173 174 17.3 34.6 173 1970-06-23 2024-10-11 00:02:53.000 1970-06-23 2024-10-11 00:02:53 +174 174 175 17.4 34.800000000000004 174 1970-06-24 2024-10-11 00:02:54.000 1970-06-24 2024-10-11 00:02:54 +175 175 176 17.5 35 175 1970-06-25 2024-10-11 00:02:55.000 1970-06-25 2024-10-11 00:02:55 +176 176 177 17.6 35.2 176 1970-06-26 2024-10-11 00:02:56.000 1970-06-26 2024-10-11 00:02:56 +177 177 178 17.7 35.4 177 1970-06-27 2024-10-11 00:02:57.000 1970-06-27 2024-10-11 00:02:57 +178 178 179 17.8 35.6 178 1970-06-28 2024-10-11 00:02:58.000 1970-06-28 2024-10-11 00:02:58 +179 179 180 17.9 35.800000000000004 179 1970-06-29 2024-10-11 00:02:59.000 1970-06-29 2024-10-11 00:02:59 +180 180 181 18 36 180 1970-06-30 2024-10-11 00:03:00.000 1970-06-30 2024-10-11 00:03:00 +181 181 182 18.1 36.2 181 1970-07-01 2024-10-11 00:03:01.000 1970-07-01 2024-10-11 00:03:01 +182 182 183 18.2 36.4 182 1970-07-02 2024-10-11 00:03:02.000 1970-07-02 2024-10-11 00:03:02 +183 183 184 18.3 36.6 183 1970-07-03 2024-10-11 00:03:03.000 1970-07-03 2024-10-11 00:03:03 +184 184 185 18.4 36.800000000000004 184 1970-07-04 2024-10-11 00:03:04.000 1970-07-04 2024-10-11 00:03:04 +185 185 186 18.5 37 185 1970-07-05 2024-10-11 00:03:05.000 1970-07-05 2024-10-11 00:03:05 +186 186 187 18.6 37.2 186 1970-07-06 2024-10-11 00:03:06.000 1970-07-06 2024-10-11 00:03:06 +187 187 188 18.7 37.4 187 1970-07-07 2024-10-11 00:03:07.000 1970-07-07 2024-10-11 00:03:07 +188 188 189 18.8 37.6 188 1970-07-08 2024-10-11 00:03:08.000 1970-07-08 2024-10-11 00:03:08 +189 189 190 18.9 37.800000000000004 189 1970-07-09 2024-10-11 00:03:09.000 1970-07-09 2024-10-11 00:03:09 +190 190 191 19 38 190 1970-07-10 2024-10-11 00:03:10.000 1970-07-10 2024-10-11 00:03:10 +191 191 192 19.1 38.2 191 1970-07-11 2024-10-11 00:03:11.000 1970-07-11 2024-10-11 00:03:11 +192 192 193 19.2 38.400000000000006 192 1970-07-12 2024-10-11 00:03:12.000 1970-07-12 2024-10-11 00:03:12 +193 193 194 19.3 38.6 193 1970-07-13 2024-10-11 00:03:13.000 1970-07-13 2024-10-11 00:03:13 +194 194 195 19.4 38.800000000000004 194 1970-07-14 2024-10-11 00:03:14.000 1970-07-14 2024-10-11 00:03:14 +195 195 196 19.5 39 195 1970-07-15 2024-10-11 00:03:15.000 1970-07-15 2024-10-11 00:03:15 +196 196 197 19.6 39.2 196 1970-07-16 2024-10-11 00:03:16.000 1970-07-16 2024-10-11 00:03:16 +197 197 198 19.7 39.400000000000006 197 1970-07-17 2024-10-11 00:03:17.000 1970-07-17 2024-10-11 00:03:17 +198 198 199 19.8 39.6 198 1970-07-18 2024-10-11 00:03:18.000 1970-07-18 2024-10-11 00:03:18 +199 199 200 19.9 39.800000000000004 199 1970-07-19 2024-10-11 00:03:19.000 1970-07-19 2024-10-11 00:03:19 +200 200 201 20 40 200 1970-07-20 2024-10-11 00:03:20.000 1970-07-20 2024-10-11 00:03:20 +201 201 202 20.1 40.2 201 1970-07-21 2024-10-11 00:03:21.000 1970-07-21 2024-10-11 00:03:21 +202 202 203 20.2 40.400000000000006 202 1970-07-22 2024-10-11 00:03:22.000 1970-07-22 2024-10-11 00:03:22 +203 203 204 20.3 40.6 203 1970-07-23 2024-10-11 00:03:23.000 1970-07-23 2024-10-11 00:03:23 +204 204 205 20.4 40.800000000000004 204 1970-07-24 2024-10-11 00:03:24.000 1970-07-24 2024-10-11 00:03:24 +205 205 206 20.5 41 205 1970-07-25 2024-10-11 00:03:25.000 1970-07-25 2024-10-11 00:03:25 +206 206 207 20.6 41.2 206 1970-07-26 2024-10-11 00:03:26.000 1970-07-26 2024-10-11 00:03:26 +207 207 208 20.7 41.400000000000006 207 1970-07-27 2024-10-11 00:03:27.000 1970-07-27 2024-10-11 00:03:27 +208 208 209 20.8 41.6 208 1970-07-28 2024-10-11 00:03:28.000 1970-07-28 2024-10-11 00:03:28 +209 209 210 20.9 41.800000000000004 209 1970-07-29 2024-10-11 00:03:29.000 1970-07-29 2024-10-11 00:03:29 +210 210 211 21 42 210 1970-07-30 2024-10-11 00:03:30.000 1970-07-30 2024-10-11 00:03:30 +211 211 212 21.1 42.2 211 1970-07-31 2024-10-11 00:03:31.000 1970-07-31 2024-10-11 00:03:31 +212 212 213 21.2 42.400000000000006 212 1970-08-01 2024-10-11 00:03:32.000 1970-08-01 2024-10-11 00:03:32 +213 213 214 21.3 42.6 213 1970-08-02 2024-10-11 00:03:33.000 1970-08-02 2024-10-11 00:03:33 +214 214 215 21.4 42.800000000000004 214 1970-08-03 2024-10-11 00:03:34.000 1970-08-03 2024-10-11 00:03:34 +215 215 216 21.5 43 215 1970-08-04 2024-10-11 00:03:35.000 1970-08-04 2024-10-11 00:03:35 +216 216 217 21.6 43.2 216 1970-08-05 2024-10-11 00:03:36.000 1970-08-05 2024-10-11 00:03:36 +217 217 218 21.7 43.400000000000006 217 1970-08-06 2024-10-11 00:03:37.000 1970-08-06 2024-10-11 00:03:37 +218 218 219 21.8 43.6 218 1970-08-07 2024-10-11 00:03:38.000 1970-08-07 2024-10-11 00:03:38 +219 219 220 21.9 43.800000000000004 219 1970-08-08 2024-10-11 00:03:39.000 1970-08-08 2024-10-11 00:03:39 +220 220 221 22 44 220 1970-08-09 2024-10-11 00:03:40.000 1970-08-09 2024-10-11 00:03:40 +221 221 222 22.1 44.2 221 1970-08-10 2024-10-11 00:03:41.000 1970-08-10 2024-10-11 00:03:41 +222 222 223 22.2 44.400000000000006 222 1970-08-11 2024-10-11 00:03:42.000 1970-08-11 2024-10-11 00:03:42 +223 223 224 22.3 44.6 223 1970-08-12 2024-10-11 00:03:43.000 1970-08-12 2024-10-11 00:03:43 +224 224 225 22.4 44.800000000000004 224 1970-08-13 2024-10-11 00:03:44.000 1970-08-13 2024-10-11 00:03:44 +225 225 226 22.5 45 225 1970-08-14 2024-10-11 00:03:45.000 1970-08-14 2024-10-11 00:03:45 +226 226 227 22.6 45.2 226 1970-08-15 2024-10-11 00:03:46.000 1970-08-15 2024-10-11 00:03:46 +227 227 228 22.7 45.400000000000006 227 1970-08-16 2024-10-11 00:03:47.000 1970-08-16 2024-10-11 00:03:47 +228 228 229 22.8 45.6 228 1970-08-17 2024-10-11 00:03:48.000 1970-08-17 2024-10-11 00:03:48 +229 229 230 22.9 45.800000000000004 229 1970-08-18 2024-10-11 00:03:49.000 1970-08-18 2024-10-11 00:03:49 +230 230 231 23 46 230 1970-08-19 2024-10-11 00:03:50.000 1970-08-19 2024-10-11 00:03:50 +231 231 232 23.1 46.2 231 1970-08-20 2024-10-11 00:03:51.000 1970-08-20 2024-10-11 00:03:51 +232 232 233 23.2 46.400000000000006 232 1970-08-21 2024-10-11 00:03:52.000 1970-08-21 2024-10-11 00:03:52 +233 233 234 23.3 46.6 233 1970-08-22 2024-10-11 00:03:53.000 1970-08-22 2024-10-11 00:03:53 +234 234 235 23.4 46.800000000000004 234 1970-08-23 2024-10-11 00:03:54.000 1970-08-23 2024-10-11 00:03:54 +235 235 236 23.5 47 235 1970-08-24 2024-10-11 00:03:55.000 1970-08-24 2024-10-11 00:03:55 +236 236 237 23.6 47.2 236 1970-08-25 2024-10-11 00:03:56.000 1970-08-25 2024-10-11 00:03:56 +237 237 238 23.7 47.400000000000006 237 1970-08-26 2024-10-11 00:03:57.000 1970-08-26 2024-10-11 00:03:57 +238 238 239 23.8 47.6 238 1970-08-27 2024-10-11 00:03:58.000 1970-08-27 2024-10-11 00:03:58 +239 239 240 23.9 47.800000000000004 239 1970-08-28 2024-10-11 00:03:59.000 1970-08-28 2024-10-11 00:03:59 +240 240 241 24 48 240 1970-08-29 2024-10-11 00:04:00.000 1970-08-29 2024-10-11 00:04:00 +241 241 242 24.1 48.2 241 1970-08-30 2024-10-11 00:04:01.000 1970-08-30 2024-10-11 00:04:01 +242 242 243 24.2 48.400000000000006 242 1970-08-31 2024-10-11 00:04:02.000 1970-08-31 2024-10-11 00:04:02 +243 243 244 24.3 48.6 243 1970-09-01 2024-10-11 00:04:03.000 1970-09-01 2024-10-11 00:04:03 +244 244 245 24.4 48.800000000000004 244 1970-09-02 2024-10-11 00:04:04.000 1970-09-02 2024-10-11 00:04:04 +245 245 246 24.5 49 245 1970-09-03 2024-10-11 00:04:05.000 1970-09-03 2024-10-11 00:04:05 +246 246 247 24.6 49.2 246 1970-09-04 2024-10-11 00:04:06.000 1970-09-04 2024-10-11 00:04:06 +247 247 248 24.7 49.400000000000006 247 1970-09-05 2024-10-11 00:04:07.000 1970-09-05 2024-10-11 00:04:07 +248 248 249 24.8 49.6 248 1970-09-06 2024-10-11 00:04:08.000 1970-09-06 2024-10-11 00:04:08 +249 249 250 24.9 49.800000000000004 249 1970-09-07 2024-10-11 00:04:09.000 1970-09-07 2024-10-11 00:04:09 +250 250 251 25 50 250 1970-09-08 2024-10-11 00:04:10.000 1970-09-08 2024-10-11 00:04:10 +251 251 252 25.1 50.2 251 1970-09-09 2024-10-11 00:04:11.000 1970-09-09 2024-10-11 00:04:11 +252 252 253 25.2 50.400000000000006 252 1970-09-10 2024-10-11 00:04:12.000 1970-09-10 2024-10-11 00:04:12 +253 253 254 25.3 50.6 253 1970-09-11 2024-10-11 00:04:13.000 1970-09-11 2024-10-11 00:04:13 +254 254 255 25.4 50.800000000000004 254 1970-09-12 2024-10-11 00:04:14.000 1970-09-12 2024-10-11 00:04:14 +255 255 256 25.5 51 255 1970-09-13 2024-10-11 00:04:15.000 1970-09-13 2024-10-11 00:04:15 +256 256 257 25.6 51.2 256 1970-09-14 2024-10-11 00:04:16.000 1970-09-14 2024-10-11 00:04:16 +257 257 258 25.7 51.400000000000006 257 1970-09-15 2024-10-11 00:04:17.000 1970-09-15 2024-10-11 00:04:17 +258 258 259 25.8 51.6 258 1970-09-16 2024-10-11 00:04:18.000 1970-09-16 2024-10-11 00:04:18 +259 259 260 25.9 51.800000000000004 259 1970-09-17 2024-10-11 00:04:19.000 1970-09-17 2024-10-11 00:04:19 +260 260 261 26 52 260 1970-09-18 2024-10-11 00:04:20.000 1970-09-18 2024-10-11 00:04:20 +261 261 262 26.1 52.2 261 1970-09-19 2024-10-11 00:04:21.000 1970-09-19 2024-10-11 00:04:21 +262 262 263 26.2 52.400000000000006 262 1970-09-20 2024-10-11 00:04:22.000 1970-09-20 2024-10-11 00:04:22 +263 263 264 26.3 52.6 263 1970-09-21 2024-10-11 00:04:23.000 1970-09-21 2024-10-11 00:04:23 +264 264 265 26.4 52.800000000000004 264 1970-09-22 2024-10-11 00:04:24.000 1970-09-22 2024-10-11 00:04:24 +265 265 266 26.5 53 265 1970-09-23 2024-10-11 00:04:25.000 1970-09-23 2024-10-11 00:04:25 +266 266 267 26.6 53.2 266 1970-09-24 2024-10-11 00:04:26.000 1970-09-24 2024-10-11 00:04:26 +267 267 268 26.7 53.400000000000006 267 1970-09-25 2024-10-11 00:04:27.000 1970-09-25 2024-10-11 00:04:27 +268 268 269 26.8 53.6 268 1970-09-26 2024-10-11 00:04:28.000 1970-09-26 2024-10-11 00:04:28 +269 269 270 26.9 53.800000000000004 269 1970-09-27 2024-10-11 00:04:29.000 1970-09-27 2024-10-11 00:04:29 +270 270 271 27 54 270 1970-09-28 2024-10-11 00:04:30.000 1970-09-28 2024-10-11 00:04:30 +271 271 272 27.1 54.2 271 1970-09-29 2024-10-11 00:04:31.000 1970-09-29 2024-10-11 00:04:31 +272 272 273 27.2 54.400000000000006 272 1970-09-30 2024-10-11 00:04:32.000 1970-09-30 2024-10-11 00:04:32 +273 273 274 27.3 54.6 273 1970-10-01 2024-10-11 00:04:33.000 1970-10-01 2024-10-11 00:04:33 +274 274 275 27.4 54.800000000000004 274 1970-10-02 2024-10-11 00:04:34.000 1970-10-02 2024-10-11 00:04:34 +275 275 276 27.5 55 275 1970-10-03 2024-10-11 00:04:35.000 1970-10-03 2024-10-11 00:04:35 +276 276 277 27.6 55.2 276 1970-10-04 2024-10-11 00:04:36.000 1970-10-04 2024-10-11 00:04:36 +277 277 278 27.7 55.400000000000006 277 1970-10-05 2024-10-11 00:04:37.000 1970-10-05 2024-10-11 00:04:37 +278 278 279 27.8 55.6 278 1970-10-06 2024-10-11 00:04:38.000 1970-10-06 2024-10-11 00:04:38 +279 279 280 27.9 55.800000000000004 279 1970-10-07 2024-10-11 00:04:39.000 1970-10-07 2024-10-11 00:04:39 +280 280 281 28 56 280 1970-10-08 2024-10-11 00:04:40.000 1970-10-08 2024-10-11 00:04:40 +281 281 282 28.1 56.2 281 1970-10-09 2024-10-11 00:04:41.000 1970-10-09 2024-10-11 00:04:41 +282 282 283 28.2 56.400000000000006 282 1970-10-10 2024-10-11 00:04:42.000 1970-10-10 2024-10-11 00:04:42 +283 283 284 28.3 56.6 283 1970-10-11 2024-10-11 00:04:43.000 1970-10-11 2024-10-11 00:04:43 +284 284 285 28.4 56.800000000000004 284 1970-10-12 2024-10-11 00:04:44.000 1970-10-12 2024-10-11 00:04:44 +285 285 286 28.5 57 285 1970-10-13 2024-10-11 00:04:45.000 1970-10-13 2024-10-11 00:04:45 +286 286 287 28.6 57.2 286 1970-10-14 2024-10-11 00:04:46.000 1970-10-14 2024-10-11 00:04:46 +287 287 288 28.7 57.400000000000006 287 1970-10-15 2024-10-11 00:04:47.000 1970-10-15 2024-10-11 00:04:47 +288 288 289 28.8 57.6 288 1970-10-16 2024-10-11 00:04:48.000 1970-10-16 2024-10-11 00:04:48 +289 289 290 28.9 57.800000000000004 289 1970-10-17 2024-10-11 00:04:49.000 1970-10-17 2024-10-11 00:04:49 +290 290 291 29 58 290 1970-10-18 2024-10-11 00:04:50.000 1970-10-18 2024-10-11 00:04:50 +291 291 292 29.1 58.2 291 1970-10-19 2024-10-11 00:04:51.000 1970-10-19 2024-10-11 00:04:51 +292 292 293 29.2 58.400000000000006 292 1970-10-20 2024-10-11 00:04:52.000 1970-10-20 2024-10-11 00:04:52 +293 293 294 29.3 58.6 293 1970-10-21 2024-10-11 00:04:53.000 1970-10-21 2024-10-11 00:04:53 +294 294 295 29.4 58.800000000000004 294 1970-10-22 2024-10-11 00:04:54.000 1970-10-22 2024-10-11 00:04:54 +295 295 296 29.5 59 295 1970-10-23 2024-10-11 00:04:55.000 1970-10-23 2024-10-11 00:04:55 +296 296 297 29.6 59.2 296 1970-10-24 2024-10-11 00:04:56.000 1970-10-24 2024-10-11 00:04:56 +297 297 298 29.7 59.400000000000006 297 1970-10-25 2024-10-11 00:04:57.000 1970-10-25 2024-10-11 00:04:57 +298 298 299 29.8 59.6 298 1970-10-26 2024-10-11 00:04:58.000 1970-10-26 2024-10-11 00:04:58 +299 299 300 29.9 59.800000000000004 299 1970-10-27 2024-10-11 00:04:59.000 1970-10-27 2024-10-11 00:04:59 +300 300 301 30 60 300 1970-10-28 2024-10-11 00:05:00.000 1970-10-28 2024-10-11 00:05:00 +301 301 302 30.1 60.2 301 1970-10-29 2024-10-11 00:05:01.000 1970-10-29 2024-10-11 00:05:01 +302 302 303 30.2 60.400000000000006 302 1970-10-30 2024-10-11 00:05:02.000 1970-10-30 2024-10-11 00:05:02 +303 303 304 30.3 60.6 303 1970-10-31 2024-10-11 00:05:03.000 1970-10-31 2024-10-11 00:05:03 +304 304 305 30.4 60.800000000000004 304 1970-11-01 2024-10-11 00:05:04.000 1970-11-01 2024-10-11 00:05:04 +305 305 306 30.5 61 305 1970-11-02 2024-10-11 00:05:05.000 1970-11-02 2024-10-11 00:05:05 +306 306 307 30.6 61.2 306 1970-11-03 2024-10-11 00:05:06.000 1970-11-03 2024-10-11 00:05:06 +307 307 308 30.7 61.400000000000006 307 1970-11-04 2024-10-11 00:05:07.000 1970-11-04 2024-10-11 00:05:07 +308 308 309 30.8 61.6 308 1970-11-05 2024-10-11 00:05:08.000 1970-11-05 2024-10-11 00:05:08 +309 309 310 30.9 61.800000000000004 309 1970-11-06 2024-10-11 00:05:09.000 1970-11-06 2024-10-11 00:05:09 +310 310 311 31 62 310 1970-11-07 2024-10-11 00:05:10.000 1970-11-07 2024-10-11 00:05:10 +311 311 312 31.1 62.2 311 1970-11-08 2024-10-11 00:05:11.000 1970-11-08 2024-10-11 00:05:11 +312 312 313 31.2 62.400000000000006 312 1970-11-09 2024-10-11 00:05:12.000 1970-11-09 2024-10-11 00:05:12 +313 313 314 31.3 62.6 313 1970-11-10 2024-10-11 00:05:13.000 1970-11-10 2024-10-11 00:05:13 +314 314 315 31.4 62.800000000000004 314 1970-11-11 2024-10-11 00:05:14.000 1970-11-11 2024-10-11 00:05:14 +315 315 316 31.5 63 315 1970-11-12 2024-10-11 00:05:15.000 1970-11-12 2024-10-11 00:05:15 +316 316 317 31.6 63.2 316 1970-11-13 2024-10-11 00:05:16.000 1970-11-13 2024-10-11 00:05:16 +317 317 318 31.7 63.400000000000006 317 1970-11-14 2024-10-11 00:05:17.000 1970-11-14 2024-10-11 00:05:17 +318 318 319 31.8 63.6 318 1970-11-15 2024-10-11 00:05:18.000 1970-11-15 2024-10-11 00:05:18 +319 319 320 31.9 63.800000000000004 319 1970-11-16 2024-10-11 00:05:19.000 1970-11-16 2024-10-11 00:05:19 +320 320 321 32 64 320 1970-11-17 2024-10-11 00:05:20.000 1970-11-17 2024-10-11 00:05:20 +321 321 322 32.1 64.2 321 1970-11-18 2024-10-11 00:05:21.000 1970-11-18 2024-10-11 00:05:21 +322 322 323 32.2 64.4 322 1970-11-19 2024-10-11 00:05:22.000 1970-11-19 2024-10-11 00:05:22 +323 323 324 32.3 64.60000000000001 323 1970-11-20 2024-10-11 00:05:23.000 1970-11-20 2024-10-11 00:05:23 +324 324 325 32.4 64.8 324 1970-11-21 2024-10-11 00:05:24.000 1970-11-21 2024-10-11 00:05:24 +325 325 326 32.5 65 325 1970-11-22 2024-10-11 00:05:25.000 1970-11-22 2024-10-11 00:05:25 +326 326 327 32.6 65.2 326 1970-11-23 2024-10-11 00:05:26.000 1970-11-23 2024-10-11 00:05:26 +327 327 328 32.7 65.4 327 1970-11-24 2024-10-11 00:05:27.000 1970-11-24 2024-10-11 00:05:27 +328 328 329 32.8 65.60000000000001 328 1970-11-25 2024-10-11 00:05:28.000 1970-11-25 2024-10-11 00:05:28 +329 329 330 32.9 65.8 329 1970-11-26 2024-10-11 00:05:29.000 1970-11-26 2024-10-11 00:05:29 +330 330 331 33 66 330 1970-11-27 2024-10-11 00:05:30.000 1970-11-27 2024-10-11 00:05:30 +331 331 332 33.1 66.2 331 1970-11-28 2024-10-11 00:05:31.000 1970-11-28 2024-10-11 00:05:31 +332 332 333 33.2 66.4 332 1970-11-29 2024-10-11 00:05:32.000 1970-11-29 2024-10-11 00:05:32 +333 333 334 33.3 66.60000000000001 333 1970-11-30 2024-10-11 00:05:33.000 1970-11-30 2024-10-11 00:05:33 +334 334 335 33.4 66.8 334 1970-12-01 2024-10-11 00:05:34.000 1970-12-01 2024-10-11 00:05:34 +335 335 336 33.5 67 335 1970-12-02 2024-10-11 00:05:35.000 1970-12-02 2024-10-11 00:05:35 +336 336 337 33.6 67.2 336 1970-12-03 2024-10-11 00:05:36.000 1970-12-03 2024-10-11 00:05:36 +337 337 338 33.7 67.4 337 1970-12-04 2024-10-11 00:05:37.000 1970-12-04 2024-10-11 00:05:37 +338 338 339 33.8 67.60000000000001 338 1970-12-05 2024-10-11 00:05:38.000 1970-12-05 2024-10-11 00:05:38 +339 339 340 33.9 67.8 339 1970-12-06 2024-10-11 00:05:39.000 1970-12-06 2024-10-11 00:05:39 +340 340 341 34 68 340 1970-12-07 2024-10-11 00:05:40.000 1970-12-07 2024-10-11 00:05:40 +341 341 342 34.1 68.2 341 1970-12-08 2024-10-11 00:05:41.000 1970-12-08 2024-10-11 00:05:41 +342 342 343 34.2 68.4 342 1970-12-09 2024-10-11 00:05:42.000 1970-12-09 2024-10-11 00:05:42 +343 343 344 34.3 68.60000000000001 343 1970-12-10 2024-10-11 00:05:43.000 1970-12-10 2024-10-11 00:05:43 +344 344 345 34.4 68.8 344 1970-12-11 2024-10-11 00:05:44.000 1970-12-11 2024-10-11 00:05:44 +345 345 346 34.5 69 345 1970-12-12 2024-10-11 00:05:45.000 1970-12-12 2024-10-11 00:05:45 +346 346 347 34.6 69.2 346 1970-12-13 2024-10-11 00:05:46.000 1970-12-13 2024-10-11 00:05:46 +347 347 348 34.7 69.4 347 1970-12-14 2024-10-11 00:05:47.000 1970-12-14 2024-10-11 00:05:47 +348 348 349 34.8 69.60000000000001 348 1970-12-15 2024-10-11 00:05:48.000 1970-12-15 2024-10-11 00:05:48 +349 349 350 34.9 69.8 349 1970-12-16 2024-10-11 00:05:49.000 1970-12-16 2024-10-11 00:05:49 +350 350 351 35 70 350 1970-12-17 2024-10-11 00:05:50.000 1970-12-17 2024-10-11 00:05:50 +351 351 352 35.1 70.2 351 1970-12-18 2024-10-11 00:05:51.000 1970-12-18 2024-10-11 00:05:51 +352 352 353 35.2 70.4 352 1970-12-19 2024-10-11 00:05:52.000 1970-12-19 2024-10-11 00:05:52 +353 353 354 35.3 70.60000000000001 353 1970-12-20 2024-10-11 00:05:53.000 1970-12-20 2024-10-11 00:05:53 +354 354 355 35.4 70.8 354 1970-12-21 2024-10-11 00:05:54.000 1970-12-21 2024-10-11 00:05:54 +355 355 356 35.5 71 355 1970-12-22 2024-10-11 00:05:55.000 1970-12-22 2024-10-11 00:05:55 +356 356 357 35.6 71.2 356 1970-12-23 2024-10-11 00:05:56.000 1970-12-23 2024-10-11 00:05:56 +357 357 358 35.7 71.4 357 1970-12-24 2024-10-11 00:05:57.000 1970-12-24 2024-10-11 00:05:57 +358 358 359 35.8 71.60000000000001 358 1970-12-25 2024-10-11 00:05:58.000 1970-12-25 2024-10-11 00:05:58 +359 359 360 35.9 71.8 359 1970-12-26 2024-10-11 00:05:59.000 1970-12-26 2024-10-11 00:05:59 +360 360 361 36 72 360 1970-12-27 2024-10-11 00:06:00.000 1970-12-27 2024-10-11 00:06:00 +361 361 362 36.1 72.2 361 1970-12-28 2024-10-11 00:06:01.000 1970-12-28 2024-10-11 00:06:01 +362 362 363 36.2 72.4 362 1970-12-29 2024-10-11 00:06:02.000 1970-12-29 2024-10-11 00:06:02 +363 363 364 36.3 72.60000000000001 363 1970-12-30 2024-10-11 00:06:03.000 1970-12-30 2024-10-11 00:06:03 +364 364 365 36.4 72.8 364 1970-12-31 2024-10-11 00:06:04.000 1970-12-31 2024-10-11 00:06:04 +365 365 366 36.5 73 365 1971-01-01 2024-10-11 00:06:05.000 1971-01-01 2024-10-11 00:06:05 +366 366 367 36.6 73.2 366 1971-01-02 2024-10-11 00:06:06.000 1971-01-02 2024-10-11 00:06:06 +367 367 368 36.7 73.4 367 1971-01-03 2024-10-11 00:06:07.000 1971-01-03 2024-10-11 00:06:07 +368 368 369 36.8 73.60000000000001 368 1971-01-04 2024-10-11 00:06:08.000 1971-01-04 2024-10-11 00:06:08 +369 369 370 36.9 73.8 369 1971-01-05 2024-10-11 00:06:09.000 1971-01-05 2024-10-11 00:06:09 +370 370 371 37 74 370 1971-01-06 2024-10-11 00:06:10.000 1971-01-06 2024-10-11 00:06:10 +371 371 372 37.1 74.2 371 1971-01-07 2024-10-11 00:06:11.000 1971-01-07 2024-10-11 00:06:11 +372 372 373 37.2 74.4 372 1971-01-08 2024-10-11 00:06:12.000 1971-01-08 2024-10-11 00:06:12 +373 373 374 37.3 74.60000000000001 373 1971-01-09 2024-10-11 00:06:13.000 1971-01-09 2024-10-11 00:06:13 +374 374 375 37.4 74.8 374 1971-01-10 2024-10-11 00:06:14.000 1971-01-10 2024-10-11 00:06:14 +375 375 376 37.5 75 375 1971-01-11 2024-10-11 00:06:15.000 1971-01-11 2024-10-11 00:06:15 +376 376 377 37.6 75.2 376 1971-01-12 2024-10-11 00:06:16.000 1971-01-12 2024-10-11 00:06:16 +377 377 378 37.7 75.4 377 1971-01-13 2024-10-11 00:06:17.000 1971-01-13 2024-10-11 00:06:17 +378 378 379 37.8 75.60000000000001 378 1971-01-14 2024-10-11 00:06:18.000 1971-01-14 2024-10-11 00:06:18 +379 379 380 37.9 75.8 379 1971-01-15 2024-10-11 00:06:19.000 1971-01-15 2024-10-11 00:06:19 +380 380 381 38 76 380 1971-01-16 2024-10-11 00:06:20.000 1971-01-16 2024-10-11 00:06:20 +381 381 382 38.1 76.2 381 1971-01-17 2024-10-11 00:06:21.000 1971-01-17 2024-10-11 00:06:21 +382 382 383 38.2 76.4 382 1971-01-18 2024-10-11 00:06:22.000 1971-01-18 2024-10-11 00:06:22 +383 383 384 38.3 76.60000000000001 383 1971-01-19 2024-10-11 00:06:23.000 1971-01-19 2024-10-11 00:06:23 +384 384 385 38.4 76.80000000000001 384 1971-01-20 2024-10-11 00:06:24.000 1971-01-20 2024-10-11 00:06:24 +385 385 386 38.5 77 385 1971-01-21 2024-10-11 00:06:25.000 1971-01-21 2024-10-11 00:06:25 +386 386 387 38.6 77.2 386 1971-01-22 2024-10-11 00:06:26.000 1971-01-22 2024-10-11 00:06:26 +387 387 388 38.7 77.4 387 1971-01-23 2024-10-11 00:06:27.000 1971-01-23 2024-10-11 00:06:27 +388 388 389 38.8 77.60000000000001 388 1971-01-24 2024-10-11 00:06:28.000 1971-01-24 2024-10-11 00:06:28 +389 389 390 38.9 77.80000000000001 389 1971-01-25 2024-10-11 00:06:29.000 1971-01-25 2024-10-11 00:06:29 +390 390 391 39 78 390 1971-01-26 2024-10-11 00:06:30.000 1971-01-26 2024-10-11 00:06:30 +391 391 392 39.1 78.2 391 1971-01-27 2024-10-11 00:06:31.000 1971-01-27 2024-10-11 00:06:31 +392 392 393 39.2 78.4 392 1971-01-28 2024-10-11 00:06:32.000 1971-01-28 2024-10-11 00:06:32 +393 393 394 39.3 78.60000000000001 393 1971-01-29 2024-10-11 00:06:33.000 1971-01-29 2024-10-11 00:06:33 +394 394 395 39.4 78.80000000000001 394 1971-01-30 2024-10-11 00:06:34.000 1971-01-30 2024-10-11 00:06:34 +395 395 396 39.5 79 395 1971-01-31 2024-10-11 00:06:35.000 1971-01-31 2024-10-11 00:06:35 +396 396 397 39.6 79.2 396 1971-02-01 2024-10-11 00:06:36.000 1971-02-01 2024-10-11 00:06:36 +397 397 398 39.7 79.4 397 1971-02-02 2024-10-11 00:06:37.000 1971-02-02 2024-10-11 00:06:37 +398 398 399 39.8 79.60000000000001 398 1971-02-03 2024-10-11 00:06:38.000 1971-02-03 2024-10-11 00:06:38 +399 399 400 39.9 79.80000000000001 399 1971-02-04 2024-10-11 00:06:39.000 1971-02-04 2024-10-11 00:06:39 +400 400 401 40 80 400 1971-02-05 2024-10-11 00:06:40.000 1971-02-05 2024-10-11 00:06:40 +401 401 402 40.1 80.2 401 1971-02-06 2024-10-11 00:06:41.000 1971-02-06 2024-10-11 00:06:41 +402 402 403 40.2 80.4 402 1971-02-07 2024-10-11 00:06:42.000 1971-02-07 2024-10-11 00:06:42 +403 403 404 40.3 80.60000000000001 403 1971-02-08 2024-10-11 00:06:43.000 1971-02-08 2024-10-11 00:06:43 +404 404 405 40.4 80.80000000000001 404 1971-02-09 2024-10-11 00:06:44.000 1971-02-09 2024-10-11 00:06:44 +405 405 406 40.5 81 405 1971-02-10 2024-10-11 00:06:45.000 1971-02-10 2024-10-11 00:06:45 +406 406 407 40.6 81.2 406 1971-02-11 2024-10-11 00:06:46.000 1971-02-11 2024-10-11 00:06:46 +407 407 408 40.7 81.4 407 1971-02-12 2024-10-11 00:06:47.000 1971-02-12 2024-10-11 00:06:47 +408 408 409 40.8 81.60000000000001 408 1971-02-13 2024-10-11 00:06:48.000 1971-02-13 2024-10-11 00:06:48 +409 409 410 40.9 81.80000000000001 409 1971-02-14 2024-10-11 00:06:49.000 1971-02-14 2024-10-11 00:06:49 +410 410 411 41 82 410 1971-02-15 2024-10-11 00:06:50.000 1971-02-15 2024-10-11 00:06:50 +411 411 412 41.1 82.2 411 1971-02-16 2024-10-11 00:06:51.000 1971-02-16 2024-10-11 00:06:51 +412 412 413 41.2 82.4 412 1971-02-17 2024-10-11 00:06:52.000 1971-02-17 2024-10-11 00:06:52 +413 413 414 41.3 82.60000000000001 413 1971-02-18 2024-10-11 00:06:53.000 1971-02-18 2024-10-11 00:06:53 +414 414 415 41.4 82.80000000000001 414 1971-02-19 2024-10-11 00:06:54.000 1971-02-19 2024-10-11 00:06:54 +415 415 416 41.5 83 415 1971-02-20 2024-10-11 00:06:55.000 1971-02-20 2024-10-11 00:06:55 +416 416 417 41.6 83.2 416 1971-02-21 2024-10-11 00:06:56.000 1971-02-21 2024-10-11 00:06:56 +417 417 418 41.7 83.4 417 1971-02-22 2024-10-11 00:06:57.000 1971-02-22 2024-10-11 00:06:57 +418 418 419 41.8 83.60000000000001 418 1971-02-23 2024-10-11 00:06:58.000 1971-02-23 2024-10-11 00:06:58 +419 419 420 41.9 83.80000000000001 419 1971-02-24 2024-10-11 00:06:59.000 1971-02-24 2024-10-11 00:06:59 +420 420 421 42 84 420 1971-02-25 2024-10-11 00:07:00.000 1971-02-25 2024-10-11 00:07:00 +421 421 422 42.1 84.2 421 1971-02-26 2024-10-11 00:07:01.000 1971-02-26 2024-10-11 00:07:01 +422 422 423 42.2 84.4 422 1971-02-27 2024-10-11 00:07:02.000 1971-02-27 2024-10-11 00:07:02 +423 423 424 42.3 84.60000000000001 423 1971-02-28 2024-10-11 00:07:03.000 1971-02-28 2024-10-11 00:07:03 +424 424 425 42.4 84.80000000000001 424 1971-03-01 2024-10-11 00:07:04.000 1971-03-01 2024-10-11 00:07:04 +425 425 426 42.5 85 425 1971-03-02 2024-10-11 00:07:05.000 1971-03-02 2024-10-11 00:07:05 +426 426 427 42.6 85.2 426 1971-03-03 2024-10-11 00:07:06.000 1971-03-03 2024-10-11 00:07:06 +427 427 428 42.7 85.4 427 1971-03-04 2024-10-11 00:07:07.000 1971-03-04 2024-10-11 00:07:07 +428 428 429 42.8 85.60000000000001 428 1971-03-05 2024-10-11 00:07:08.000 1971-03-05 2024-10-11 00:07:08 +429 429 430 42.9 85.80000000000001 429 1971-03-06 2024-10-11 00:07:09.000 1971-03-06 2024-10-11 00:07:09 +430 430 431 43 86 430 1971-03-07 2024-10-11 00:07:10.000 1971-03-07 2024-10-11 00:07:10 +431 431 432 43.1 86.2 431 1971-03-08 2024-10-11 00:07:11.000 1971-03-08 2024-10-11 00:07:11 +432 432 433 43.2 86.4 432 1971-03-09 2024-10-11 00:07:12.000 1971-03-09 2024-10-11 00:07:12 +433 433 434 43.3 86.60000000000001 433 1971-03-10 2024-10-11 00:07:13.000 1971-03-10 2024-10-11 00:07:13 +434 434 435 43.4 86.80000000000001 434 1971-03-11 2024-10-11 00:07:14.000 1971-03-11 2024-10-11 00:07:14 +435 435 436 43.5 87 435 1971-03-12 2024-10-11 00:07:15.000 1971-03-12 2024-10-11 00:07:15 +436 436 437 43.6 87.2 436 1971-03-13 2024-10-11 00:07:16.000 1971-03-13 2024-10-11 00:07:16 +437 437 438 43.7 87.4 437 1971-03-14 2024-10-11 00:07:17.000 1971-03-14 2024-10-11 00:07:17 +438 438 439 43.8 87.60000000000001 438 1971-03-15 2024-10-11 00:07:18.000 1971-03-15 2024-10-11 00:07:18 +439 439 440 43.9 87.80000000000001 439 1971-03-16 2024-10-11 00:07:19.000 1971-03-16 2024-10-11 00:07:19 +440 440 441 44 88 440 1971-03-17 2024-10-11 00:07:20.000 1971-03-17 2024-10-11 00:07:20 +441 441 442 44.1 88.2 441 1971-03-18 2024-10-11 00:07:21.000 1971-03-18 2024-10-11 00:07:21 +442 442 443 44.2 88.4 442 1971-03-19 2024-10-11 00:07:22.000 1971-03-19 2024-10-11 00:07:22 +443 443 444 44.3 88.60000000000001 443 1971-03-20 2024-10-11 00:07:23.000 1971-03-20 2024-10-11 00:07:23 +444 444 445 44.4 88.80000000000001 444 1971-03-21 2024-10-11 00:07:24.000 1971-03-21 2024-10-11 00:07:24 +445 445 446 44.5 89 445 1971-03-22 2024-10-11 00:07:25.000 1971-03-22 2024-10-11 00:07:25 +446 446 447 44.6 89.2 446 1971-03-23 2024-10-11 00:07:26.000 1971-03-23 2024-10-11 00:07:26 +447 447 448 44.7 89.4 447 1971-03-24 2024-10-11 00:07:27.000 1971-03-24 2024-10-11 00:07:27 +448 448 449 44.8 89.60000000000001 448 1971-03-25 2024-10-11 00:07:28.000 1971-03-25 2024-10-11 00:07:28 +449 449 450 44.9 89.80000000000001 449 1971-03-26 2024-10-11 00:07:29.000 1971-03-26 2024-10-11 00:07:29 +450 450 451 45 90 450 1971-03-27 2024-10-11 00:07:30.000 1971-03-27 2024-10-11 00:07:30 +451 451 452 45.1 90.2 451 1971-03-28 2024-10-11 00:07:31.000 1971-03-28 2024-10-11 00:07:31 +452 452 453 45.2 90.4 452 1971-03-29 2024-10-11 00:07:32.000 1971-03-29 2024-10-11 00:07:32 +453 453 454 45.3 90.60000000000001 453 1971-03-30 2024-10-11 00:07:33.000 1971-03-30 2024-10-11 00:07:33 +454 454 455 45.4 90.80000000000001 454 1971-03-31 2024-10-11 00:07:34.000 1971-03-31 2024-10-11 00:07:34 +455 455 456 45.5 91 455 1971-04-01 2024-10-11 00:07:35.000 1971-04-01 2024-10-11 00:07:35 +456 456 457 45.6 91.2 456 1971-04-02 2024-10-11 00:07:36.000 1971-04-02 2024-10-11 00:07:36 +457 457 458 45.7 91.4 457 1971-04-03 2024-10-11 00:07:37.000 1971-04-03 2024-10-11 00:07:37 +458 458 459 45.8 91.60000000000001 458 1971-04-04 2024-10-11 00:07:38.000 1971-04-04 2024-10-11 00:07:38 +459 459 460 45.9 91.80000000000001 459 1971-04-05 2024-10-11 00:07:39.000 1971-04-05 2024-10-11 00:07:39 +460 460 461 46 92 460 1971-04-06 2024-10-11 00:07:40.000 1971-04-06 2024-10-11 00:07:40 +461 461 462 46.1 92.2 461 1971-04-07 2024-10-11 00:07:41.000 1971-04-07 2024-10-11 00:07:41 +462 462 463 46.2 92.4 462 1971-04-08 2024-10-11 00:07:42.000 1971-04-08 2024-10-11 00:07:42 +463 463 464 46.3 92.60000000000001 463 1971-04-09 2024-10-11 00:07:43.000 1971-04-09 2024-10-11 00:07:43 +464 464 465 46.4 92.80000000000001 464 1971-04-10 2024-10-11 00:07:44.000 1971-04-10 2024-10-11 00:07:44 +465 465 466 46.5 93 465 1971-04-11 2024-10-11 00:07:45.000 1971-04-11 2024-10-11 00:07:45 +466 466 467 46.6 93.2 466 1971-04-12 2024-10-11 00:07:46.000 1971-04-12 2024-10-11 00:07:46 +467 467 468 46.7 93.4 467 1971-04-13 2024-10-11 00:07:47.000 1971-04-13 2024-10-11 00:07:47 +468 468 469 46.8 93.60000000000001 468 1971-04-14 2024-10-11 00:07:48.000 1971-04-14 2024-10-11 00:07:48 +469 469 470 46.9 93.80000000000001 469 1971-04-15 2024-10-11 00:07:49.000 1971-04-15 2024-10-11 00:07:49 +470 470 471 47 94 470 1971-04-16 2024-10-11 00:07:50.000 1971-04-16 2024-10-11 00:07:50 +471 471 472 47.1 94.2 471 1971-04-17 2024-10-11 00:07:51.000 1971-04-17 2024-10-11 00:07:51 +472 472 473 47.2 94.4 472 1971-04-18 2024-10-11 00:07:52.000 1971-04-18 2024-10-11 00:07:52 +473 473 474 47.3 94.60000000000001 473 1971-04-19 2024-10-11 00:07:53.000 1971-04-19 2024-10-11 00:07:53 +474 474 475 47.4 94.80000000000001 474 1971-04-20 2024-10-11 00:07:54.000 1971-04-20 2024-10-11 00:07:54 +475 475 476 47.5 95 475 1971-04-21 2024-10-11 00:07:55.000 1971-04-21 2024-10-11 00:07:55 +476 476 477 47.6 95.2 476 1971-04-22 2024-10-11 00:07:56.000 1971-04-22 2024-10-11 00:07:56 +477 477 478 47.7 95.4 477 1971-04-23 2024-10-11 00:07:57.000 1971-04-23 2024-10-11 00:07:57 +478 478 479 47.8 95.60000000000001 478 1971-04-24 2024-10-11 00:07:58.000 1971-04-24 2024-10-11 00:07:58 +479 479 480 47.9 95.80000000000001 479 1971-04-25 2024-10-11 00:07:59.000 1971-04-25 2024-10-11 00:07:59 +480 480 481 48 96 480 1971-04-26 2024-10-11 00:08:00.000 1971-04-26 2024-10-11 00:08:00 +481 481 482 48.1 96.2 481 1971-04-27 2024-10-11 00:08:01.000 1971-04-27 2024-10-11 00:08:01 +482 482 483 48.2 96.4 482 1971-04-28 2024-10-11 00:08:02.000 1971-04-28 2024-10-11 00:08:02 +483 483 484 48.3 96.60000000000001 483 1971-04-29 2024-10-11 00:08:03.000 1971-04-29 2024-10-11 00:08:03 +484 484 485 48.4 96.80000000000001 484 1971-04-30 2024-10-11 00:08:04.000 1971-04-30 2024-10-11 00:08:04 +485 485 486 48.5 97 485 1971-05-01 2024-10-11 00:08:05.000 1971-05-01 2024-10-11 00:08:05 +486 486 487 48.6 97.2 486 1971-05-02 2024-10-11 00:08:06.000 1971-05-02 2024-10-11 00:08:06 +487 487 488 48.7 97.4 487 1971-05-03 2024-10-11 00:08:07.000 1971-05-03 2024-10-11 00:08:07 +488 488 489 48.8 97.60000000000001 488 1971-05-04 2024-10-11 00:08:08.000 1971-05-04 2024-10-11 00:08:08 +489 489 490 48.9 97.80000000000001 489 1971-05-05 2024-10-11 00:08:09.000 1971-05-05 2024-10-11 00:08:09 +490 490 491 49 98 490 1971-05-06 2024-10-11 00:08:10.000 1971-05-06 2024-10-11 00:08:10 +491 491 492 49.1 98.2 491 1971-05-07 2024-10-11 00:08:11.000 1971-05-07 2024-10-11 00:08:11 +492 492 493 49.2 98.4 492 1971-05-08 2024-10-11 00:08:12.000 1971-05-08 2024-10-11 00:08:12 +493 493 494 49.3 98.60000000000001 493 1971-05-09 2024-10-11 00:08:13.000 1971-05-09 2024-10-11 00:08:13 +494 494 495 49.4 98.80000000000001 494 1971-05-10 2024-10-11 00:08:14.000 1971-05-10 2024-10-11 00:08:14 +495 495 496 49.5 99 495 1971-05-11 2024-10-11 00:08:15.000 1971-05-11 2024-10-11 00:08:15 +496 496 497 49.6 99.2 496 1971-05-12 2024-10-11 00:08:16.000 1971-05-12 2024-10-11 00:08:16 +497 497 498 49.7 99.4 497 1971-05-13 2024-10-11 00:08:17.000 1971-05-13 2024-10-11 00:08:17 +498 498 499 49.8 99.60000000000001 498 1971-05-14 2024-10-11 00:08:18.000 1971-05-14 2024-10-11 00:08:18 +499 499 500 49.9 99.80000000000001 499 1971-05-15 2024-10-11 00:08:19.000 1971-05-15 2024-10-11 00:08:19 +500 500 501 50 100 500 1971-05-16 2024-10-11 00:08:20.000 1971-05-16 2024-10-11 00:08:20 +501 501 502 50.1 100.2 501 1971-05-17 2024-10-11 00:08:21.000 1971-05-17 2024-10-11 00:08:21 +502 502 503 50.2 100.4 502 1971-05-18 2024-10-11 00:08:22.000 1971-05-18 2024-10-11 00:08:22 +503 503 504 50.3 100.60000000000001 503 1971-05-19 2024-10-11 00:08:23.000 1971-05-19 2024-10-11 00:08:23 +504 504 505 50.4 100.80000000000001 504 1971-05-20 2024-10-11 00:08:24.000 1971-05-20 2024-10-11 00:08:24 +505 505 506 50.5 101 505 1971-05-21 2024-10-11 00:08:25.000 1971-05-21 2024-10-11 00:08:25 +506 506 507 50.6 101.2 506 1971-05-22 2024-10-11 00:08:26.000 1971-05-22 2024-10-11 00:08:26 +507 507 508 50.7 101.4 507 1971-05-23 2024-10-11 00:08:27.000 1971-05-23 2024-10-11 00:08:27 +508 508 509 50.8 101.60000000000001 508 1971-05-24 2024-10-11 00:08:28.000 1971-05-24 2024-10-11 00:08:28 +509 509 510 50.9 101.80000000000001 509 1971-05-25 2024-10-11 00:08:29.000 1971-05-25 2024-10-11 00:08:29 +510 510 511 51 102 510 1971-05-26 2024-10-11 00:08:30.000 1971-05-26 2024-10-11 00:08:30 +511 511 512 51.1 102.2 511 1971-05-27 2024-10-11 00:08:31.000 1971-05-27 2024-10-11 00:08:31 +512 512 513 51.2 102.4 512 1971-05-28 2024-10-11 00:08:32.000 1971-05-28 2024-10-11 00:08:32 +513 513 514 51.3 102.60000000000001 513 1971-05-29 2024-10-11 00:08:33.000 1971-05-29 2024-10-11 00:08:33 +514 514 515 51.4 102.80000000000001 514 1971-05-30 2024-10-11 00:08:34.000 1971-05-30 2024-10-11 00:08:34 +515 515 516 51.5 103 515 1971-05-31 2024-10-11 00:08:35.000 1971-05-31 2024-10-11 00:08:35 +516 516 517 51.6 103.2 516 1971-06-01 2024-10-11 00:08:36.000 1971-06-01 2024-10-11 00:08:36 +517 517 518 51.7 103.4 517 1971-06-02 2024-10-11 00:08:37.000 1971-06-02 2024-10-11 00:08:37 +518 518 519 51.8 103.60000000000001 518 1971-06-03 2024-10-11 00:08:38.000 1971-06-03 2024-10-11 00:08:38 +519 519 520 51.9 103.80000000000001 519 1971-06-04 2024-10-11 00:08:39.000 1971-06-04 2024-10-11 00:08:39 +520 520 521 52 104 520 1971-06-05 2024-10-11 00:08:40.000 1971-06-05 2024-10-11 00:08:40 +521 521 522 52.1 104.2 521 1971-06-06 2024-10-11 00:08:41.000 1971-06-06 2024-10-11 00:08:41 +522 522 523 52.2 104.4 522 1971-06-07 2024-10-11 00:08:42.000 1971-06-07 2024-10-11 00:08:42 +523 523 524 52.3 104.60000000000001 523 1971-06-08 2024-10-11 00:08:43.000 1971-06-08 2024-10-11 00:08:43 +524 524 525 52.4 104.80000000000001 524 1971-06-09 2024-10-11 00:08:44.000 1971-06-09 2024-10-11 00:08:44 +525 525 526 52.5 105 525 1971-06-10 2024-10-11 00:08:45.000 1971-06-10 2024-10-11 00:08:45 +526 526 527 52.6 105.2 526 1971-06-11 2024-10-11 00:08:46.000 1971-06-11 2024-10-11 00:08:46 +527 527 528 52.7 105.4 527 1971-06-12 2024-10-11 00:08:47.000 1971-06-12 2024-10-11 00:08:47 +528 528 529 52.8 105.60000000000001 528 1971-06-13 2024-10-11 00:08:48.000 1971-06-13 2024-10-11 00:08:48 +529 529 530 52.9 105.80000000000001 529 1971-06-14 2024-10-11 00:08:49.000 1971-06-14 2024-10-11 00:08:49 +530 530 531 53 106 530 1971-06-15 2024-10-11 00:08:50.000 1971-06-15 2024-10-11 00:08:50 +531 531 532 53.1 106.2 531 1971-06-16 2024-10-11 00:08:51.000 1971-06-16 2024-10-11 00:08:51 +532 532 533 53.2 106.4 532 1971-06-17 2024-10-11 00:08:52.000 1971-06-17 2024-10-11 00:08:52 +533 533 534 53.3 106.60000000000001 533 1971-06-18 2024-10-11 00:08:53.000 1971-06-18 2024-10-11 00:08:53 +534 534 535 53.4 106.80000000000001 534 1971-06-19 2024-10-11 00:08:54.000 1971-06-19 2024-10-11 00:08:54 +535 535 536 53.5 107 535 1971-06-20 2024-10-11 00:08:55.000 1971-06-20 2024-10-11 00:08:55 +536 536 537 53.6 107.2 536 1971-06-21 2024-10-11 00:08:56.000 1971-06-21 2024-10-11 00:08:56 +537 537 538 53.7 107.4 537 1971-06-22 2024-10-11 00:08:57.000 1971-06-22 2024-10-11 00:08:57 +538 538 539 53.8 107.60000000000001 538 1971-06-23 2024-10-11 00:08:58.000 1971-06-23 2024-10-11 00:08:58 +539 539 540 53.9 107.80000000000001 539 1971-06-24 2024-10-11 00:08:59.000 1971-06-24 2024-10-11 00:08:59 +540 540 541 54 108 540 1971-06-25 2024-10-11 00:09:00.000 1971-06-25 2024-10-11 00:09:00 +541 541 542 54.1 108.2 541 1971-06-26 2024-10-11 00:09:01.000 1971-06-26 2024-10-11 00:09:01 +542 542 543 54.2 108.4 542 1971-06-27 2024-10-11 00:09:02.000 1971-06-27 2024-10-11 00:09:02 +543 543 544 54.3 108.60000000000001 543 1971-06-28 2024-10-11 00:09:03.000 1971-06-28 2024-10-11 00:09:03 +544 544 545 54.4 108.80000000000001 544 1971-06-29 2024-10-11 00:09:04.000 1971-06-29 2024-10-11 00:09:04 +545 545 546 54.5 109 545 1971-06-30 2024-10-11 00:09:05.000 1971-06-30 2024-10-11 00:09:05 +546 546 547 54.6 109.2 546 1971-07-01 2024-10-11 00:09:06.000 1971-07-01 2024-10-11 00:09:06 +547 547 548 54.7 109.4 547 1971-07-02 2024-10-11 00:09:07.000 1971-07-02 2024-10-11 00:09:07 +548 548 549 54.8 109.60000000000001 548 1971-07-03 2024-10-11 00:09:08.000 1971-07-03 2024-10-11 00:09:08 +549 549 550 54.9 109.80000000000001 549 1971-07-04 2024-10-11 00:09:09.000 1971-07-04 2024-10-11 00:09:09 +550 550 551 55 110 550 1971-07-05 2024-10-11 00:09:10.000 1971-07-05 2024-10-11 00:09:10 +551 551 552 55.1 110.2 551 1971-07-06 2024-10-11 00:09:11.000 1971-07-06 2024-10-11 00:09:11 +552 552 553 55.2 110.4 552 1971-07-07 2024-10-11 00:09:12.000 1971-07-07 2024-10-11 00:09:12 +553 553 554 55.3 110.60000000000001 553 1971-07-08 2024-10-11 00:09:13.000 1971-07-08 2024-10-11 00:09:13 +554 554 555 55.4 110.80000000000001 554 1971-07-09 2024-10-11 00:09:14.000 1971-07-09 2024-10-11 00:09:14 +555 555 556 55.5 111 555 1971-07-10 2024-10-11 00:09:15.000 1971-07-10 2024-10-11 00:09:15 +556 556 557 55.6 111.2 556 1971-07-11 2024-10-11 00:09:16.000 1971-07-11 2024-10-11 00:09:16 +557 557 558 55.7 111.4 557 1971-07-12 2024-10-11 00:09:17.000 1971-07-12 2024-10-11 00:09:17 +558 558 559 55.8 111.60000000000001 558 1971-07-13 2024-10-11 00:09:18.000 1971-07-13 2024-10-11 00:09:18 +559 559 560 55.9 111.80000000000001 559 1971-07-14 2024-10-11 00:09:19.000 1971-07-14 2024-10-11 00:09:19 +560 560 561 56 112 560 1971-07-15 2024-10-11 00:09:20.000 1971-07-15 2024-10-11 00:09:20 +561 561 562 56.1 112.2 561 1971-07-16 2024-10-11 00:09:21.000 1971-07-16 2024-10-11 00:09:21 +562 562 563 56.2 112.4 562 1971-07-17 2024-10-11 00:09:22.000 1971-07-17 2024-10-11 00:09:22 +563 563 564 56.3 112.60000000000001 563 1971-07-18 2024-10-11 00:09:23.000 1971-07-18 2024-10-11 00:09:23 +564 564 565 56.4 112.80000000000001 564 1971-07-19 2024-10-11 00:09:24.000 1971-07-19 2024-10-11 00:09:24 +565 565 566 56.5 113 565 1971-07-20 2024-10-11 00:09:25.000 1971-07-20 2024-10-11 00:09:25 +566 566 567 56.6 113.2 566 1971-07-21 2024-10-11 00:09:26.000 1971-07-21 2024-10-11 00:09:26 +567 567 568 56.7 113.4 567 1971-07-22 2024-10-11 00:09:27.000 1971-07-22 2024-10-11 00:09:27 +568 568 569 56.8 113.60000000000001 568 1971-07-23 2024-10-11 00:09:28.000 1971-07-23 2024-10-11 00:09:28 +569 569 570 56.9 113.80000000000001 569 1971-07-24 2024-10-11 00:09:29.000 1971-07-24 2024-10-11 00:09:29 +570 570 571 57 114 570 1971-07-25 2024-10-11 00:09:30.000 1971-07-25 2024-10-11 00:09:30 +571 571 572 57.1 114.2 571 1971-07-26 2024-10-11 00:09:31.000 1971-07-26 2024-10-11 00:09:31 +572 572 573 57.2 114.4 572 1971-07-27 2024-10-11 00:09:32.000 1971-07-27 2024-10-11 00:09:32 +573 573 574 57.3 114.60000000000001 573 1971-07-28 2024-10-11 00:09:33.000 1971-07-28 2024-10-11 00:09:33 +574 574 575 57.4 114.80000000000001 574 1971-07-29 2024-10-11 00:09:34.000 1971-07-29 2024-10-11 00:09:34 +575 575 576 57.5 115 575 1971-07-30 2024-10-11 00:09:35.000 1971-07-30 2024-10-11 00:09:35 +576 576 577 57.6 115.2 576 1971-07-31 2024-10-11 00:09:36.000 1971-07-31 2024-10-11 00:09:36 +577 577 578 57.7 115.4 577 1971-08-01 2024-10-11 00:09:37.000 1971-08-01 2024-10-11 00:09:37 +578 578 579 57.8 115.60000000000001 578 1971-08-02 2024-10-11 00:09:38.000 1971-08-02 2024-10-11 00:09:38 +579 579 580 57.9 115.80000000000001 579 1971-08-03 2024-10-11 00:09:39.000 1971-08-03 2024-10-11 00:09:39 +580 580 581 58 116 580 1971-08-04 2024-10-11 00:09:40.000 1971-08-04 2024-10-11 00:09:40 +581 581 582 58.1 116.2 581 1971-08-05 2024-10-11 00:09:41.000 1971-08-05 2024-10-11 00:09:41 +582 582 583 58.2 116.4 582 1971-08-06 2024-10-11 00:09:42.000 1971-08-06 2024-10-11 00:09:42 +583 583 584 58.3 116.60000000000001 583 1971-08-07 2024-10-11 00:09:43.000 1971-08-07 2024-10-11 00:09:43 +584 584 585 58.4 116.80000000000001 584 1971-08-08 2024-10-11 00:09:44.000 1971-08-08 2024-10-11 00:09:44 +585 585 586 58.5 117 585 1971-08-09 2024-10-11 00:09:45.000 1971-08-09 2024-10-11 00:09:45 +586 586 587 58.6 117.2 586 1971-08-10 2024-10-11 00:09:46.000 1971-08-10 2024-10-11 00:09:46 +587 587 588 58.7 117.4 587 1971-08-11 2024-10-11 00:09:47.000 1971-08-11 2024-10-11 00:09:47 +588 588 589 58.8 117.60000000000001 588 1971-08-12 2024-10-11 00:09:48.000 1971-08-12 2024-10-11 00:09:48 +589 589 590 58.9 117.80000000000001 589 1971-08-13 2024-10-11 00:09:49.000 1971-08-13 2024-10-11 00:09:49 +590 590 591 59 118 590 1971-08-14 2024-10-11 00:09:50.000 1971-08-14 2024-10-11 00:09:50 +591 591 592 59.1 118.2 591 1971-08-15 2024-10-11 00:09:51.000 1971-08-15 2024-10-11 00:09:51 +592 592 593 59.2 118.4 592 1971-08-16 2024-10-11 00:09:52.000 1971-08-16 2024-10-11 00:09:52 +593 593 594 59.3 118.60000000000001 593 1971-08-17 2024-10-11 00:09:53.000 1971-08-17 2024-10-11 00:09:53 +594 594 595 59.4 118.80000000000001 594 1971-08-18 2024-10-11 00:09:54.000 1971-08-18 2024-10-11 00:09:54 +595 595 596 59.5 119 595 1971-08-19 2024-10-11 00:09:55.000 1971-08-19 2024-10-11 00:09:55 +596 596 597 59.6 119.2 596 1971-08-20 2024-10-11 00:09:56.000 1971-08-20 2024-10-11 00:09:56 +597 597 598 59.7 119.4 597 1971-08-21 2024-10-11 00:09:57.000 1971-08-21 2024-10-11 00:09:57 +598 598 599 59.8 119.60000000000001 598 1971-08-22 2024-10-11 00:09:58.000 1971-08-22 2024-10-11 00:09:58 +599 599 600 59.9 119.80000000000001 599 1971-08-23 2024-10-11 00:09:59.000 1971-08-23 2024-10-11 00:09:59 +600 600 601 60 120 600 1971-08-24 2024-10-11 00:10:00.000 1971-08-24 2024-10-11 00:10:00 +601 601 602 60.1 120.2 601 1971-08-25 2024-10-11 00:10:01.000 1971-08-25 2024-10-11 00:10:01 +602 602 603 60.2 120.4 602 1971-08-26 2024-10-11 00:10:02.000 1971-08-26 2024-10-11 00:10:02 +603 603 604 60.3 120.60000000000001 603 1971-08-27 2024-10-11 00:10:03.000 1971-08-27 2024-10-11 00:10:03 +604 604 605 60.4 120.80000000000001 604 1971-08-28 2024-10-11 00:10:04.000 1971-08-28 2024-10-11 00:10:04 +605 605 606 60.5 121 605 1971-08-29 2024-10-11 00:10:05.000 1971-08-29 2024-10-11 00:10:05 +606 606 607 60.6 121.2 606 1971-08-30 2024-10-11 00:10:06.000 1971-08-30 2024-10-11 00:10:06 +607 607 608 60.7 121.4 607 1971-08-31 2024-10-11 00:10:07.000 1971-08-31 2024-10-11 00:10:07 +608 608 609 60.8 121.60000000000001 608 1971-09-01 2024-10-11 00:10:08.000 1971-09-01 2024-10-11 00:10:08 +609 609 610 60.9 121.80000000000001 609 1971-09-02 2024-10-11 00:10:09.000 1971-09-02 2024-10-11 00:10:09 +610 610 611 61 122 610 1971-09-03 2024-10-11 00:10:10.000 1971-09-03 2024-10-11 00:10:10 +611 611 612 61.1 122.2 611 1971-09-04 2024-10-11 00:10:11.000 1971-09-04 2024-10-11 00:10:11 +612 612 613 61.2 122.4 612 1971-09-05 2024-10-11 00:10:12.000 1971-09-05 2024-10-11 00:10:12 +613 613 614 61.3 122.60000000000001 613 1971-09-06 2024-10-11 00:10:13.000 1971-09-06 2024-10-11 00:10:13 +614 614 615 61.4 122.80000000000001 614 1971-09-07 2024-10-11 00:10:14.000 1971-09-07 2024-10-11 00:10:14 +615 615 616 61.5 123 615 1971-09-08 2024-10-11 00:10:15.000 1971-09-08 2024-10-11 00:10:15 +616 616 617 61.6 123.2 616 1971-09-09 2024-10-11 00:10:16.000 1971-09-09 2024-10-11 00:10:16 +617 617 618 61.7 123.4 617 1971-09-10 2024-10-11 00:10:17.000 1971-09-10 2024-10-11 00:10:17 +618 618 619 61.8 123.60000000000001 618 1971-09-11 2024-10-11 00:10:18.000 1971-09-11 2024-10-11 00:10:18 +619 619 620 61.9 123.80000000000001 619 1971-09-12 2024-10-11 00:10:19.000 1971-09-12 2024-10-11 00:10:19 +620 620 621 62 124 620 1971-09-13 2024-10-11 00:10:20.000 1971-09-13 2024-10-11 00:10:20 +621 621 622 62.1 124.2 621 1971-09-14 2024-10-11 00:10:21.000 1971-09-14 2024-10-11 00:10:21 +622 622 623 62.2 124.4 622 1971-09-15 2024-10-11 00:10:22.000 1971-09-15 2024-10-11 00:10:22 +623 623 624 62.3 124.60000000000001 623 1971-09-16 2024-10-11 00:10:23.000 1971-09-16 2024-10-11 00:10:23 +624 624 625 62.4 124.80000000000001 624 1971-09-17 2024-10-11 00:10:24.000 1971-09-17 2024-10-11 00:10:24 +625 625 626 62.5 125 625 1971-09-18 2024-10-11 00:10:25.000 1971-09-18 2024-10-11 00:10:25 +626 626 627 62.6 125.2 626 1971-09-19 2024-10-11 00:10:26.000 1971-09-19 2024-10-11 00:10:26 +627 627 628 62.7 125.4 627 1971-09-20 2024-10-11 00:10:27.000 1971-09-20 2024-10-11 00:10:27 +628 628 629 62.8 125.60000000000001 628 1971-09-21 2024-10-11 00:10:28.000 1971-09-21 2024-10-11 00:10:28 +629 629 630 62.9 125.80000000000001 629 1971-09-22 2024-10-11 00:10:29.000 1971-09-22 2024-10-11 00:10:29 +630 630 631 63 126 630 1971-09-23 2024-10-11 00:10:30.000 1971-09-23 2024-10-11 00:10:30 +631 631 632 63.1 126.2 631 1971-09-24 2024-10-11 00:10:31.000 1971-09-24 2024-10-11 00:10:31 +632 632 633 63.2 126.4 632 1971-09-25 2024-10-11 00:10:32.000 1971-09-25 2024-10-11 00:10:32 +633 633 634 63.3 126.60000000000001 633 1971-09-26 2024-10-11 00:10:33.000 1971-09-26 2024-10-11 00:10:33 +634 634 635 63.4 126.80000000000001 634 1971-09-27 2024-10-11 00:10:34.000 1971-09-27 2024-10-11 00:10:34 +635 635 636 63.5 127 635 1971-09-28 2024-10-11 00:10:35.000 1971-09-28 2024-10-11 00:10:35 +636 636 637 63.6 127.2 636 1971-09-29 2024-10-11 00:10:36.000 1971-09-29 2024-10-11 00:10:36 +637 637 638 63.7 127.4 637 1971-09-30 2024-10-11 00:10:37.000 1971-09-30 2024-10-11 00:10:37 +638 638 639 63.8 127.60000000000001 638 1971-10-01 2024-10-11 00:10:38.000 1971-10-01 2024-10-11 00:10:38 +639 639 640 63.9 127.80000000000001 639 1971-10-02 2024-10-11 00:10:39.000 1971-10-02 2024-10-11 00:10:39 +640 640 641 64 128 640 1971-10-03 2024-10-11 00:10:40.000 1971-10-03 2024-10-11 00:10:40 +641 641 642 64.1 128.20000000000002 641 1971-10-04 2024-10-11 00:10:41.000 1971-10-04 2024-10-11 00:10:41 +642 642 643 64.2 128.4 642 1971-10-05 2024-10-11 00:10:42.000 1971-10-05 2024-10-11 00:10:42 +643 643 644 64.3 128.6 643 1971-10-06 2024-10-11 00:10:43.000 1971-10-06 2024-10-11 00:10:43 +644 644 645 64.4 128.8 644 1971-10-07 2024-10-11 00:10:44.000 1971-10-07 2024-10-11 00:10:44 +645 645 646 64.5 129 645 1971-10-08 2024-10-11 00:10:45.000 1971-10-08 2024-10-11 00:10:45 +646 646 647 64.6 129.20000000000002 646 1971-10-09 2024-10-11 00:10:46.000 1971-10-09 2024-10-11 00:10:46 +647 647 648 64.7 129.4 647 1971-10-10 2024-10-11 00:10:47.000 1971-10-10 2024-10-11 00:10:47 +648 648 649 64.8 129.6 648 1971-10-11 2024-10-11 00:10:48.000 1971-10-11 2024-10-11 00:10:48 +649 649 650 64.9 129.8 649 1971-10-12 2024-10-11 00:10:49.000 1971-10-12 2024-10-11 00:10:49 +650 650 651 65 130 650 1971-10-13 2024-10-11 00:10:50.000 1971-10-13 2024-10-11 00:10:50 +651 651 652 65.1 130.20000000000002 651 1971-10-14 2024-10-11 00:10:51.000 1971-10-14 2024-10-11 00:10:51 +652 652 653 65.2 130.4 652 1971-10-15 2024-10-11 00:10:52.000 1971-10-15 2024-10-11 00:10:52 +653 653 654 65.3 130.6 653 1971-10-16 2024-10-11 00:10:53.000 1971-10-16 2024-10-11 00:10:53 +654 654 655 65.4 130.8 654 1971-10-17 2024-10-11 00:10:54.000 1971-10-17 2024-10-11 00:10:54 +655 655 656 65.5 131 655 1971-10-18 2024-10-11 00:10:55.000 1971-10-18 2024-10-11 00:10:55 +656 656 657 65.6 131.20000000000002 656 1971-10-19 2024-10-11 00:10:56.000 1971-10-19 2024-10-11 00:10:56 +657 657 658 65.7 131.4 657 1971-10-20 2024-10-11 00:10:57.000 1971-10-20 2024-10-11 00:10:57 +658 658 659 65.8 131.6 658 1971-10-21 2024-10-11 00:10:58.000 1971-10-21 2024-10-11 00:10:58 +659 659 660 65.9 131.8 659 1971-10-22 2024-10-11 00:10:59.000 1971-10-22 2024-10-11 00:10:59 +660 660 661 66 132 660 1971-10-23 2024-10-11 00:11:00.000 1971-10-23 2024-10-11 00:11:00 +661 661 662 66.1 132.20000000000002 661 1971-10-24 2024-10-11 00:11:01.000 1971-10-24 2024-10-11 00:11:01 +662 662 663 66.2 132.4 662 1971-10-25 2024-10-11 00:11:02.000 1971-10-25 2024-10-11 00:11:02 +663 663 664 66.3 132.6 663 1971-10-26 2024-10-11 00:11:03.000 1971-10-26 2024-10-11 00:11:03 +664 664 665 66.4 132.8 664 1971-10-27 2024-10-11 00:11:04.000 1971-10-27 2024-10-11 00:11:04 +665 665 666 66.5 133 665 1971-10-28 2024-10-11 00:11:05.000 1971-10-28 2024-10-11 00:11:05 +666 666 667 66.6 133.20000000000002 666 1971-10-29 2024-10-11 00:11:06.000 1971-10-29 2024-10-11 00:11:06 +667 667 668 66.7 133.4 667 1971-10-30 2024-10-11 00:11:07.000 1971-10-30 2024-10-11 00:11:07 +668 668 669 66.8 133.6 668 1971-10-31 2024-10-11 00:11:08.000 1971-10-31 2024-10-11 00:11:08 +669 669 670 66.9 133.8 669 1971-11-01 2024-10-11 00:11:09.000 1971-11-01 2024-10-11 00:11:09 +670 670 671 67 134 670 1971-11-02 2024-10-11 00:11:10.000 1971-11-02 2024-10-11 00:11:10 +671 671 672 67.1 134.20000000000002 671 1971-11-03 2024-10-11 00:11:11.000 1971-11-03 2024-10-11 00:11:11 +672 672 673 67.2 134.4 672 1971-11-04 2024-10-11 00:11:12.000 1971-11-04 2024-10-11 00:11:12 +673 673 674 67.3 134.6 673 1971-11-05 2024-10-11 00:11:13.000 1971-11-05 2024-10-11 00:11:13 +674 674 675 67.4 134.8 674 1971-11-06 2024-10-11 00:11:14.000 1971-11-06 2024-10-11 00:11:14 +675 675 676 67.5 135 675 1971-11-07 2024-10-11 00:11:15.000 1971-11-07 2024-10-11 00:11:15 +676 676 677 67.6 135.20000000000002 676 1971-11-08 2024-10-11 00:11:16.000 1971-11-08 2024-10-11 00:11:16 +677 677 678 67.7 135.4 677 1971-11-09 2024-10-11 00:11:17.000 1971-11-09 2024-10-11 00:11:17 +678 678 679 67.8 135.6 678 1971-11-10 2024-10-11 00:11:18.000 1971-11-10 2024-10-11 00:11:18 +679 679 680 67.9 135.8 679 1971-11-11 2024-10-11 00:11:19.000 1971-11-11 2024-10-11 00:11:19 +680 680 681 68 136 680 1971-11-12 2024-10-11 00:11:20.000 1971-11-12 2024-10-11 00:11:20 +681 681 682 68.1 136.20000000000002 681 1971-11-13 2024-10-11 00:11:21.000 1971-11-13 2024-10-11 00:11:21 +682 682 683 68.2 136.4 682 1971-11-14 2024-10-11 00:11:22.000 1971-11-14 2024-10-11 00:11:22 +683 683 684 68.3 136.6 683 1971-11-15 2024-10-11 00:11:23.000 1971-11-15 2024-10-11 00:11:23 +684 684 685 68.4 136.8 684 1971-11-16 2024-10-11 00:11:24.000 1971-11-16 2024-10-11 00:11:24 +685 685 686 68.5 137 685 1971-11-17 2024-10-11 00:11:25.000 1971-11-17 2024-10-11 00:11:25 +686 686 687 68.6 137.20000000000002 686 1971-11-18 2024-10-11 00:11:26.000 1971-11-18 2024-10-11 00:11:26 +687 687 688 68.7 137.4 687 1971-11-19 2024-10-11 00:11:27.000 1971-11-19 2024-10-11 00:11:27 +688 688 689 68.8 137.6 688 1971-11-20 2024-10-11 00:11:28.000 1971-11-20 2024-10-11 00:11:28 +689 689 690 68.9 137.8 689 1971-11-21 2024-10-11 00:11:29.000 1971-11-21 2024-10-11 00:11:29 +690 690 691 69 138 690 1971-11-22 2024-10-11 00:11:30.000 1971-11-22 2024-10-11 00:11:30 +691 691 692 69.1 138.20000000000002 691 1971-11-23 2024-10-11 00:11:31.000 1971-11-23 2024-10-11 00:11:31 +692 692 693 69.2 138.4 692 1971-11-24 2024-10-11 00:11:32.000 1971-11-24 2024-10-11 00:11:32 +693 693 694 69.3 138.6 693 1971-11-25 2024-10-11 00:11:33.000 1971-11-25 2024-10-11 00:11:33 +694 694 695 69.4 138.8 694 1971-11-26 2024-10-11 00:11:34.000 1971-11-26 2024-10-11 00:11:34 +695 695 696 69.5 139 695 1971-11-27 2024-10-11 00:11:35.000 1971-11-27 2024-10-11 00:11:35 +696 696 697 69.6 139.20000000000002 696 1971-11-28 2024-10-11 00:11:36.000 1971-11-28 2024-10-11 00:11:36 +697 697 698 69.7 139.4 697 1971-11-29 2024-10-11 00:11:37.000 1971-11-29 2024-10-11 00:11:37 +698 698 699 69.8 139.6 698 1971-11-30 2024-10-11 00:11:38.000 1971-11-30 2024-10-11 00:11:38 +699 699 700 69.9 139.8 699 1971-12-01 2024-10-11 00:11:39.000 1971-12-01 2024-10-11 00:11:39 +700 700 701 70 140 700 1971-12-02 2024-10-11 00:11:40.000 1971-12-02 2024-10-11 00:11:40 +701 701 702 70.1 140.20000000000002 701 1971-12-03 2024-10-11 00:11:41.000 1971-12-03 2024-10-11 00:11:41 +702 702 703 70.2 140.4 702 1971-12-04 2024-10-11 00:11:42.000 1971-12-04 2024-10-11 00:11:42 +703 703 704 70.3 140.6 703 1971-12-05 2024-10-11 00:11:43.000 1971-12-05 2024-10-11 00:11:43 +704 704 705 70.4 140.8 704 1971-12-06 2024-10-11 00:11:44.000 1971-12-06 2024-10-11 00:11:44 +705 705 706 70.5 141 705 1971-12-07 2024-10-11 00:11:45.000 1971-12-07 2024-10-11 00:11:45 +706 706 707 70.6 141.20000000000002 706 1971-12-08 2024-10-11 00:11:46.000 1971-12-08 2024-10-11 00:11:46 +707 707 708 70.7 141.4 707 1971-12-09 2024-10-11 00:11:47.000 1971-12-09 2024-10-11 00:11:47 +708 708 709 70.8 141.6 708 1971-12-10 2024-10-11 00:11:48.000 1971-12-10 2024-10-11 00:11:48 +709 709 710 70.9 141.8 709 1971-12-11 2024-10-11 00:11:49.000 1971-12-11 2024-10-11 00:11:49 +710 710 711 71 142 710 1971-12-12 2024-10-11 00:11:50.000 1971-12-12 2024-10-11 00:11:50 +711 711 712 71.1 142.20000000000002 711 1971-12-13 2024-10-11 00:11:51.000 1971-12-13 2024-10-11 00:11:51 +712 712 713 71.2 142.4 712 1971-12-14 2024-10-11 00:11:52.000 1971-12-14 2024-10-11 00:11:52 +713 713 714 71.3 142.6 713 1971-12-15 2024-10-11 00:11:53.000 1971-12-15 2024-10-11 00:11:53 +714 714 715 71.4 142.8 714 1971-12-16 2024-10-11 00:11:54.000 1971-12-16 2024-10-11 00:11:54 +715 715 716 71.5 143 715 1971-12-17 2024-10-11 00:11:55.000 1971-12-17 2024-10-11 00:11:55 +716 716 717 71.6 143.20000000000002 716 1971-12-18 2024-10-11 00:11:56.000 1971-12-18 2024-10-11 00:11:56 +717 717 718 71.7 143.4 717 1971-12-19 2024-10-11 00:11:57.000 1971-12-19 2024-10-11 00:11:57 +718 718 719 71.8 143.6 718 1971-12-20 2024-10-11 00:11:58.000 1971-12-20 2024-10-11 00:11:58 +719 719 720 71.9 143.8 719 1971-12-21 2024-10-11 00:11:59.000 1971-12-21 2024-10-11 00:11:59 +720 720 721 72 144 720 1971-12-22 2024-10-11 00:12:00.000 1971-12-22 2024-10-11 00:12:00 +721 721 722 72.1 144.20000000000002 721 1971-12-23 2024-10-11 00:12:01.000 1971-12-23 2024-10-11 00:12:01 +722 722 723 72.2 144.4 722 1971-12-24 2024-10-11 00:12:02.000 1971-12-24 2024-10-11 00:12:02 +723 723 724 72.3 144.6 723 1971-12-25 2024-10-11 00:12:03.000 1971-12-25 2024-10-11 00:12:03 +724 724 725 72.4 144.8 724 1971-12-26 2024-10-11 00:12:04.000 1971-12-26 2024-10-11 00:12:04 +725 725 726 72.5 145 725 1971-12-27 2024-10-11 00:12:05.000 1971-12-27 2024-10-11 00:12:05 +726 726 727 72.6 145.20000000000002 726 1971-12-28 2024-10-11 00:12:06.000 1971-12-28 2024-10-11 00:12:06 +727 727 728 72.7 145.4 727 1971-12-29 2024-10-11 00:12:07.000 1971-12-29 2024-10-11 00:12:07 +728 728 729 72.8 145.6 728 1971-12-30 2024-10-11 00:12:08.000 1971-12-30 2024-10-11 00:12:08 +729 729 730 72.9 145.8 729 1971-12-31 2024-10-11 00:12:09.000 1971-12-31 2024-10-11 00:12:09 +730 730 731 73 146 730 1972-01-01 2024-10-11 00:12:10.000 1972-01-01 2024-10-11 00:12:10 +731 731 732 73.1 146.20000000000002 731 1972-01-02 2024-10-11 00:12:11.000 1972-01-02 2024-10-11 00:12:11 +732 732 733 73.2 146.4 732 1972-01-03 2024-10-11 00:12:12.000 1972-01-03 2024-10-11 00:12:12 +733 733 734 73.3 146.6 733 1972-01-04 2024-10-11 00:12:13.000 1972-01-04 2024-10-11 00:12:13 +734 734 735 73.4 146.8 734 1972-01-05 2024-10-11 00:12:14.000 1972-01-05 2024-10-11 00:12:14 +735 735 736 73.5 147 735 1972-01-06 2024-10-11 00:12:15.000 1972-01-06 2024-10-11 00:12:15 +736 736 737 73.6 147.20000000000002 736 1972-01-07 2024-10-11 00:12:16.000 1972-01-07 2024-10-11 00:12:16 +737 737 738 73.7 147.4 737 1972-01-08 2024-10-11 00:12:17.000 1972-01-08 2024-10-11 00:12:17 +738 738 739 73.8 147.6 738 1972-01-09 2024-10-11 00:12:18.000 1972-01-09 2024-10-11 00:12:18 +739 739 740 73.9 147.8 739 1972-01-10 2024-10-11 00:12:19.000 1972-01-10 2024-10-11 00:12:19 +740 740 741 74 148 740 1972-01-11 2024-10-11 00:12:20.000 1972-01-11 2024-10-11 00:12:20 +741 741 742 74.1 148.20000000000002 741 1972-01-12 2024-10-11 00:12:21.000 1972-01-12 2024-10-11 00:12:21 +742 742 743 74.2 148.4 742 1972-01-13 2024-10-11 00:12:22.000 1972-01-13 2024-10-11 00:12:22 +743 743 744 74.3 148.6 743 1972-01-14 2024-10-11 00:12:23.000 1972-01-14 2024-10-11 00:12:23 +744 744 745 74.4 148.8 744 1972-01-15 2024-10-11 00:12:24.000 1972-01-15 2024-10-11 00:12:24 +745 745 746 74.5 149 745 1972-01-16 2024-10-11 00:12:25.000 1972-01-16 2024-10-11 00:12:25 +746 746 747 74.6 149.20000000000002 746 1972-01-17 2024-10-11 00:12:26.000 1972-01-17 2024-10-11 00:12:26 +747 747 748 74.7 149.4 747 1972-01-18 2024-10-11 00:12:27.000 1972-01-18 2024-10-11 00:12:27 +748 748 749 74.8 149.6 748 1972-01-19 2024-10-11 00:12:28.000 1972-01-19 2024-10-11 00:12:28 +749 749 750 74.9 149.8 749 1972-01-20 2024-10-11 00:12:29.000 1972-01-20 2024-10-11 00:12:29 +750 750 751 75 150 750 1972-01-21 2024-10-11 00:12:30.000 1972-01-21 2024-10-11 00:12:30 +751 751 752 75.1 150.20000000000002 751 1972-01-22 2024-10-11 00:12:31.000 1972-01-22 2024-10-11 00:12:31 +752 752 753 75.2 150.4 752 1972-01-23 2024-10-11 00:12:32.000 1972-01-23 2024-10-11 00:12:32 +753 753 754 75.3 150.6 753 1972-01-24 2024-10-11 00:12:33.000 1972-01-24 2024-10-11 00:12:33 +754 754 755 75.4 150.8 754 1972-01-25 2024-10-11 00:12:34.000 1972-01-25 2024-10-11 00:12:34 +755 755 756 75.5 151 755 1972-01-26 2024-10-11 00:12:35.000 1972-01-26 2024-10-11 00:12:35 +756 756 757 75.6 151.20000000000002 756 1972-01-27 2024-10-11 00:12:36.000 1972-01-27 2024-10-11 00:12:36 +757 757 758 75.7 151.4 757 1972-01-28 2024-10-11 00:12:37.000 1972-01-28 2024-10-11 00:12:37 +758 758 759 75.8 151.6 758 1972-01-29 2024-10-11 00:12:38.000 1972-01-29 2024-10-11 00:12:38 +759 759 760 75.9 151.8 759 1972-01-30 2024-10-11 00:12:39.000 1972-01-30 2024-10-11 00:12:39 +760 760 761 76 152 760 1972-01-31 2024-10-11 00:12:40.000 1972-01-31 2024-10-11 00:12:40 +761 761 762 76.1 152.20000000000002 761 1972-02-01 2024-10-11 00:12:41.000 1972-02-01 2024-10-11 00:12:41 +762 762 763 76.2 152.4 762 1972-02-02 2024-10-11 00:12:42.000 1972-02-02 2024-10-11 00:12:42 +763 763 764 76.3 152.6 763 1972-02-03 2024-10-11 00:12:43.000 1972-02-03 2024-10-11 00:12:43 +764 764 765 76.4 152.8 764 1972-02-04 2024-10-11 00:12:44.000 1972-02-04 2024-10-11 00:12:44 +765 765 766 76.5 153 765 1972-02-05 2024-10-11 00:12:45.000 1972-02-05 2024-10-11 00:12:45 +766 766 767 76.6 153.20000000000002 766 1972-02-06 2024-10-11 00:12:46.000 1972-02-06 2024-10-11 00:12:46 +767 767 768 76.7 153.4 767 1972-02-07 2024-10-11 00:12:47.000 1972-02-07 2024-10-11 00:12:47 +768 768 769 76.8 153.60000000000002 768 1972-02-08 2024-10-11 00:12:48.000 1972-02-08 2024-10-11 00:12:48 +769 769 770 76.9 153.8 769 1972-02-09 2024-10-11 00:12:49.000 1972-02-09 2024-10-11 00:12:49 +770 770 771 77 154 770 1972-02-10 2024-10-11 00:12:50.000 1972-02-10 2024-10-11 00:12:50 +771 771 772 77.1 154.20000000000002 771 1972-02-11 2024-10-11 00:12:51.000 1972-02-11 2024-10-11 00:12:51 +772 772 773 77.2 154.4 772 1972-02-12 2024-10-11 00:12:52.000 1972-02-12 2024-10-11 00:12:52 +773 773 774 77.3 154.60000000000002 773 1972-02-13 2024-10-11 00:12:53.000 1972-02-13 2024-10-11 00:12:53 +774 774 775 77.4 154.8 774 1972-02-14 2024-10-11 00:12:54.000 1972-02-14 2024-10-11 00:12:54 +775 775 776 77.5 155 775 1972-02-15 2024-10-11 00:12:55.000 1972-02-15 2024-10-11 00:12:55 +776 776 777 77.6 155.20000000000002 776 1972-02-16 2024-10-11 00:12:56.000 1972-02-16 2024-10-11 00:12:56 +777 777 778 77.7 155.4 777 1972-02-17 2024-10-11 00:12:57.000 1972-02-17 2024-10-11 00:12:57 +778 778 779 77.8 155.60000000000002 778 1972-02-18 2024-10-11 00:12:58.000 1972-02-18 2024-10-11 00:12:58 +779 779 780 77.9 155.8 779 1972-02-19 2024-10-11 00:12:59.000 1972-02-19 2024-10-11 00:12:59 +780 780 781 78 156 780 1972-02-20 2024-10-11 00:13:00.000 1972-02-20 2024-10-11 00:13:00 +781 781 782 78.1 156.20000000000002 781 1972-02-21 2024-10-11 00:13:01.000 1972-02-21 2024-10-11 00:13:01 +782 782 783 78.2 156.4 782 1972-02-22 2024-10-11 00:13:02.000 1972-02-22 2024-10-11 00:13:02 +783 783 784 78.3 156.60000000000002 783 1972-02-23 2024-10-11 00:13:03.000 1972-02-23 2024-10-11 00:13:03 +784 784 785 78.4 156.8 784 1972-02-24 2024-10-11 00:13:04.000 1972-02-24 2024-10-11 00:13:04 +785 785 786 78.5 157 785 1972-02-25 2024-10-11 00:13:05.000 1972-02-25 2024-10-11 00:13:05 +786 786 787 78.6 157.20000000000002 786 1972-02-26 2024-10-11 00:13:06.000 1972-02-26 2024-10-11 00:13:06 +787 787 788 78.7 157.4 787 1972-02-27 2024-10-11 00:13:07.000 1972-02-27 2024-10-11 00:13:07 +788 788 789 78.8 157.60000000000002 788 1972-02-28 2024-10-11 00:13:08.000 1972-02-28 2024-10-11 00:13:08 +789 789 790 78.9 157.8 789 1972-02-29 2024-10-11 00:13:09.000 1972-02-29 2024-10-11 00:13:09 +790 790 791 79 158 790 1972-03-01 2024-10-11 00:13:10.000 1972-03-01 2024-10-11 00:13:10 +791 791 792 79.1 158.20000000000002 791 1972-03-02 2024-10-11 00:13:11.000 1972-03-02 2024-10-11 00:13:11 +792 792 793 79.2 158.4 792 1972-03-03 2024-10-11 00:13:12.000 1972-03-03 2024-10-11 00:13:12 +793 793 794 79.3 158.60000000000002 793 1972-03-04 2024-10-11 00:13:13.000 1972-03-04 2024-10-11 00:13:13 +794 794 795 79.4 158.8 794 1972-03-05 2024-10-11 00:13:14.000 1972-03-05 2024-10-11 00:13:14 +795 795 796 79.5 159 795 1972-03-06 2024-10-11 00:13:15.000 1972-03-06 2024-10-11 00:13:15 +796 796 797 79.6 159.20000000000002 796 1972-03-07 2024-10-11 00:13:16.000 1972-03-07 2024-10-11 00:13:16 +797 797 798 79.7 159.4 797 1972-03-08 2024-10-11 00:13:17.000 1972-03-08 2024-10-11 00:13:17 +798 798 799 79.8 159.60000000000002 798 1972-03-09 2024-10-11 00:13:18.000 1972-03-09 2024-10-11 00:13:18 +799 799 800 79.9 159.8 799 1972-03-10 2024-10-11 00:13:19.000 1972-03-10 2024-10-11 00:13:19 +800 800 801 80 160 800 1972-03-11 2024-10-11 00:13:20.000 1972-03-11 2024-10-11 00:13:20 +801 801 802 80.1 160.20000000000002 801 1972-03-12 2024-10-11 00:13:21.000 1972-03-12 2024-10-11 00:13:21 +802 802 803 80.2 160.4 802 1972-03-13 2024-10-11 00:13:22.000 1972-03-13 2024-10-11 00:13:22 +803 803 804 80.3 160.60000000000002 803 1972-03-14 2024-10-11 00:13:23.000 1972-03-14 2024-10-11 00:13:23 +804 804 805 80.4 160.8 804 1972-03-15 2024-10-11 00:13:24.000 1972-03-15 2024-10-11 00:13:24 +805 805 806 80.5 161 805 1972-03-16 2024-10-11 00:13:25.000 1972-03-16 2024-10-11 00:13:25 +806 806 807 80.6 161.20000000000002 806 1972-03-17 2024-10-11 00:13:26.000 1972-03-17 2024-10-11 00:13:26 +807 807 808 80.7 161.4 807 1972-03-18 2024-10-11 00:13:27.000 1972-03-18 2024-10-11 00:13:27 +808 808 809 80.8 161.60000000000002 808 1972-03-19 2024-10-11 00:13:28.000 1972-03-19 2024-10-11 00:13:28 +809 809 810 80.9 161.8 809 1972-03-20 2024-10-11 00:13:29.000 1972-03-20 2024-10-11 00:13:29 +810 810 811 81 162 810 1972-03-21 2024-10-11 00:13:30.000 1972-03-21 2024-10-11 00:13:30 +811 811 812 81.1 162.20000000000002 811 1972-03-22 2024-10-11 00:13:31.000 1972-03-22 2024-10-11 00:13:31 +812 812 813 81.2 162.4 812 1972-03-23 2024-10-11 00:13:32.000 1972-03-23 2024-10-11 00:13:32 +813 813 814 81.3 162.60000000000002 813 1972-03-24 2024-10-11 00:13:33.000 1972-03-24 2024-10-11 00:13:33 +814 814 815 81.4 162.8 814 1972-03-25 2024-10-11 00:13:34.000 1972-03-25 2024-10-11 00:13:34 +815 815 816 81.5 163 815 1972-03-26 2024-10-11 00:13:35.000 1972-03-26 2024-10-11 00:13:35 +816 816 817 81.6 163.20000000000002 816 1972-03-27 2024-10-11 00:13:36.000 1972-03-27 2024-10-11 00:13:36 +817 817 818 81.7 163.4 817 1972-03-28 2024-10-11 00:13:37.000 1972-03-28 2024-10-11 00:13:37 +818 818 819 81.8 163.60000000000002 818 1972-03-29 2024-10-11 00:13:38.000 1972-03-29 2024-10-11 00:13:38 +819 819 820 81.9 163.8 819 1972-03-30 2024-10-11 00:13:39.000 1972-03-30 2024-10-11 00:13:39 +820 820 821 82 164 820 1972-03-31 2024-10-11 00:13:40.000 1972-03-31 2024-10-11 00:13:40 +821 821 822 82.1 164.20000000000002 821 1972-04-01 2024-10-11 00:13:41.000 1972-04-01 2024-10-11 00:13:41 +822 822 823 82.2 164.4 822 1972-04-02 2024-10-11 00:13:42.000 1972-04-02 2024-10-11 00:13:42 +823 823 824 82.3 164.60000000000002 823 1972-04-03 2024-10-11 00:13:43.000 1972-04-03 2024-10-11 00:13:43 +824 824 825 82.4 164.8 824 1972-04-04 2024-10-11 00:13:44.000 1972-04-04 2024-10-11 00:13:44 +825 825 826 82.5 165 825 1972-04-05 2024-10-11 00:13:45.000 1972-04-05 2024-10-11 00:13:45 +826 826 827 82.6 165.20000000000002 826 1972-04-06 2024-10-11 00:13:46.000 1972-04-06 2024-10-11 00:13:46 +827 827 828 82.7 165.4 827 1972-04-07 2024-10-11 00:13:47.000 1972-04-07 2024-10-11 00:13:47 +828 828 829 82.8 165.60000000000002 828 1972-04-08 2024-10-11 00:13:48.000 1972-04-08 2024-10-11 00:13:48 +829 829 830 82.9 165.8 829 1972-04-09 2024-10-11 00:13:49.000 1972-04-09 2024-10-11 00:13:49 +830 830 831 83 166 830 1972-04-10 2024-10-11 00:13:50.000 1972-04-10 2024-10-11 00:13:50 +831 831 832 83.1 166.20000000000002 831 1972-04-11 2024-10-11 00:13:51.000 1972-04-11 2024-10-11 00:13:51 +832 832 833 83.2 166.4 832 1972-04-12 2024-10-11 00:13:52.000 1972-04-12 2024-10-11 00:13:52 +833 833 834 83.3 166.60000000000002 833 1972-04-13 2024-10-11 00:13:53.000 1972-04-13 2024-10-11 00:13:53 +834 834 835 83.4 166.8 834 1972-04-14 2024-10-11 00:13:54.000 1972-04-14 2024-10-11 00:13:54 +835 835 836 83.5 167 835 1972-04-15 2024-10-11 00:13:55.000 1972-04-15 2024-10-11 00:13:55 +836 836 837 83.6 167.20000000000002 836 1972-04-16 2024-10-11 00:13:56.000 1972-04-16 2024-10-11 00:13:56 +837 837 838 83.7 167.4 837 1972-04-17 2024-10-11 00:13:57.000 1972-04-17 2024-10-11 00:13:57 +838 838 839 83.8 167.60000000000002 838 1972-04-18 2024-10-11 00:13:58.000 1972-04-18 2024-10-11 00:13:58 +839 839 840 83.9 167.8 839 1972-04-19 2024-10-11 00:13:59.000 1972-04-19 2024-10-11 00:13:59 +840 840 841 84 168 840 1972-04-20 2024-10-11 00:14:00.000 1972-04-20 2024-10-11 00:14:00 +841 841 842 84.1 168.20000000000002 841 1972-04-21 2024-10-11 00:14:01.000 1972-04-21 2024-10-11 00:14:01 +842 842 843 84.2 168.4 842 1972-04-22 2024-10-11 00:14:02.000 1972-04-22 2024-10-11 00:14:02 +843 843 844 84.3 168.60000000000002 843 1972-04-23 2024-10-11 00:14:03.000 1972-04-23 2024-10-11 00:14:03 +844 844 845 84.4 168.8 844 1972-04-24 2024-10-11 00:14:04.000 1972-04-24 2024-10-11 00:14:04 +845 845 846 84.5 169 845 1972-04-25 2024-10-11 00:14:05.000 1972-04-25 2024-10-11 00:14:05 +846 846 847 84.6 169.20000000000002 846 1972-04-26 2024-10-11 00:14:06.000 1972-04-26 2024-10-11 00:14:06 +847 847 848 84.7 169.4 847 1972-04-27 2024-10-11 00:14:07.000 1972-04-27 2024-10-11 00:14:07 +848 848 849 84.8 169.60000000000002 848 1972-04-28 2024-10-11 00:14:08.000 1972-04-28 2024-10-11 00:14:08 +849 849 850 84.9 169.8 849 1972-04-29 2024-10-11 00:14:09.000 1972-04-29 2024-10-11 00:14:09 +850 850 851 85 170 850 1972-04-30 2024-10-11 00:14:10.000 1972-04-30 2024-10-11 00:14:10 +851 851 852 85.1 170.20000000000002 851 1972-05-01 2024-10-11 00:14:11.000 1972-05-01 2024-10-11 00:14:11 +852 852 853 85.2 170.4 852 1972-05-02 2024-10-11 00:14:12.000 1972-05-02 2024-10-11 00:14:12 +853 853 854 85.3 170.60000000000002 853 1972-05-03 2024-10-11 00:14:13.000 1972-05-03 2024-10-11 00:14:13 +854 854 855 85.4 170.8 854 1972-05-04 2024-10-11 00:14:14.000 1972-05-04 2024-10-11 00:14:14 +855 855 856 85.5 171 855 1972-05-05 2024-10-11 00:14:15.000 1972-05-05 2024-10-11 00:14:15 +856 856 857 85.6 171.20000000000002 856 1972-05-06 2024-10-11 00:14:16.000 1972-05-06 2024-10-11 00:14:16 +857 857 858 85.7 171.4 857 1972-05-07 2024-10-11 00:14:17.000 1972-05-07 2024-10-11 00:14:17 +858 858 859 85.8 171.60000000000002 858 1972-05-08 2024-10-11 00:14:18.000 1972-05-08 2024-10-11 00:14:18 +859 859 860 85.9 171.8 859 1972-05-09 2024-10-11 00:14:19.000 1972-05-09 2024-10-11 00:14:19 +860 860 861 86 172 860 1972-05-10 2024-10-11 00:14:20.000 1972-05-10 2024-10-11 00:14:20 +861 861 862 86.1 172.20000000000002 861 1972-05-11 2024-10-11 00:14:21.000 1972-05-11 2024-10-11 00:14:21 +862 862 863 86.2 172.4 862 1972-05-12 2024-10-11 00:14:22.000 1972-05-12 2024-10-11 00:14:22 +863 863 864 86.3 172.60000000000002 863 1972-05-13 2024-10-11 00:14:23.000 1972-05-13 2024-10-11 00:14:23 +864 864 865 86.4 172.8 864 1972-05-14 2024-10-11 00:14:24.000 1972-05-14 2024-10-11 00:14:24 +865 865 866 86.5 173 865 1972-05-15 2024-10-11 00:14:25.000 1972-05-15 2024-10-11 00:14:25 +866 866 867 86.6 173.20000000000002 866 1972-05-16 2024-10-11 00:14:26.000 1972-05-16 2024-10-11 00:14:26 +867 867 868 86.7 173.4 867 1972-05-17 2024-10-11 00:14:27.000 1972-05-17 2024-10-11 00:14:27 +868 868 869 86.8 173.60000000000002 868 1972-05-18 2024-10-11 00:14:28.000 1972-05-18 2024-10-11 00:14:28 +869 869 870 86.9 173.8 869 1972-05-19 2024-10-11 00:14:29.000 1972-05-19 2024-10-11 00:14:29 +870 870 871 87 174 870 1972-05-20 2024-10-11 00:14:30.000 1972-05-20 2024-10-11 00:14:30 +871 871 872 87.1 174.20000000000002 871 1972-05-21 2024-10-11 00:14:31.000 1972-05-21 2024-10-11 00:14:31 +872 872 873 87.2 174.4 872 1972-05-22 2024-10-11 00:14:32.000 1972-05-22 2024-10-11 00:14:32 +873 873 874 87.3 174.60000000000002 873 1972-05-23 2024-10-11 00:14:33.000 1972-05-23 2024-10-11 00:14:33 +874 874 875 87.4 174.8 874 1972-05-24 2024-10-11 00:14:34.000 1972-05-24 2024-10-11 00:14:34 +875 875 876 87.5 175 875 1972-05-25 2024-10-11 00:14:35.000 1972-05-25 2024-10-11 00:14:35 +876 876 877 87.6 175.20000000000002 876 1972-05-26 2024-10-11 00:14:36.000 1972-05-26 2024-10-11 00:14:36 +877 877 878 87.7 175.4 877 1972-05-27 2024-10-11 00:14:37.000 1972-05-27 2024-10-11 00:14:37 +878 878 879 87.8 175.60000000000002 878 1972-05-28 2024-10-11 00:14:38.000 1972-05-28 2024-10-11 00:14:38 +879 879 880 87.9 175.8 879 1972-05-29 2024-10-11 00:14:39.000 1972-05-29 2024-10-11 00:14:39 +880 880 881 88 176 880 1972-05-30 2024-10-11 00:14:40.000 1972-05-30 2024-10-11 00:14:40 +881 881 882 88.1 176.20000000000002 881 1972-05-31 2024-10-11 00:14:41.000 1972-05-31 2024-10-11 00:14:41 +882 882 883 88.2 176.4 882 1972-06-01 2024-10-11 00:14:42.000 1972-06-01 2024-10-11 00:14:42 +883 883 884 88.3 176.60000000000002 883 1972-06-02 2024-10-11 00:14:43.000 1972-06-02 2024-10-11 00:14:43 +884 884 885 88.4 176.8 884 1972-06-03 2024-10-11 00:14:44.000 1972-06-03 2024-10-11 00:14:44 +885 885 886 88.5 177 885 1972-06-04 2024-10-11 00:14:45.000 1972-06-04 2024-10-11 00:14:45 +886 886 887 88.6 177.20000000000002 886 1972-06-05 2024-10-11 00:14:46.000 1972-06-05 2024-10-11 00:14:46 +887 887 888 88.7 177.4 887 1972-06-06 2024-10-11 00:14:47.000 1972-06-06 2024-10-11 00:14:47 +888 888 889 88.8 177.60000000000002 888 1972-06-07 2024-10-11 00:14:48.000 1972-06-07 2024-10-11 00:14:48 +889 889 890 88.9 177.8 889 1972-06-08 2024-10-11 00:14:49.000 1972-06-08 2024-10-11 00:14:49 +890 890 891 89 178 890 1972-06-09 2024-10-11 00:14:50.000 1972-06-09 2024-10-11 00:14:50 +891 891 892 89.1 178.20000000000002 891 1972-06-10 2024-10-11 00:14:51.000 1972-06-10 2024-10-11 00:14:51 +892 892 893 89.2 178.4 892 1972-06-11 2024-10-11 00:14:52.000 1972-06-11 2024-10-11 00:14:52 +893 893 894 89.3 178.60000000000002 893 1972-06-12 2024-10-11 00:14:53.000 1972-06-12 2024-10-11 00:14:53 +894 894 895 89.4 178.8 894 1972-06-13 2024-10-11 00:14:54.000 1972-06-13 2024-10-11 00:14:54 +895 895 896 89.5 179 895 1972-06-14 2024-10-11 00:14:55.000 1972-06-14 2024-10-11 00:14:55 +896 896 897 89.6 179.20000000000002 896 1972-06-15 2024-10-11 00:14:56.000 1972-06-15 2024-10-11 00:14:56 +897 897 898 89.7 179.4 897 1972-06-16 2024-10-11 00:14:57.000 1972-06-16 2024-10-11 00:14:57 +898 898 899 89.8 179.60000000000002 898 1972-06-17 2024-10-11 00:14:58.000 1972-06-17 2024-10-11 00:14:58 +899 899 900 89.9 179.8 899 1972-06-18 2024-10-11 00:14:59.000 1972-06-18 2024-10-11 00:14:59 +900 900 901 90 180 900 1972-06-19 2024-10-11 00:15:00.000 1972-06-19 2024-10-11 00:15:00 +901 901 902 90.1 180.20000000000002 901 1972-06-20 2024-10-11 00:15:01.000 1972-06-20 2024-10-11 00:15:01 +902 902 903 90.2 180.4 902 1972-06-21 2024-10-11 00:15:02.000 1972-06-21 2024-10-11 00:15:02 +903 903 904 90.3 180.60000000000002 903 1972-06-22 2024-10-11 00:15:03.000 1972-06-22 2024-10-11 00:15:03 +904 904 905 90.4 180.8 904 1972-06-23 2024-10-11 00:15:04.000 1972-06-23 2024-10-11 00:15:04 +905 905 906 90.5 181 905 1972-06-24 2024-10-11 00:15:05.000 1972-06-24 2024-10-11 00:15:05 +906 906 907 90.6 181.20000000000002 906 1972-06-25 2024-10-11 00:15:06.000 1972-06-25 2024-10-11 00:15:06 +907 907 908 90.7 181.4 907 1972-06-26 2024-10-11 00:15:07.000 1972-06-26 2024-10-11 00:15:07 +908 908 909 90.8 181.60000000000002 908 1972-06-27 2024-10-11 00:15:08.000 1972-06-27 2024-10-11 00:15:08 +909 909 910 90.9 181.8 909 1972-06-28 2024-10-11 00:15:09.000 1972-06-28 2024-10-11 00:15:09 +910 910 911 91 182 910 1972-06-29 2024-10-11 00:15:10.000 1972-06-29 2024-10-11 00:15:10 +911 911 912 91.1 182.20000000000002 911 1972-06-30 2024-10-11 00:15:11.000 1972-06-30 2024-10-11 00:15:11 +912 912 913 91.2 182.4 912 1972-07-01 2024-10-11 00:15:12.000 1972-07-01 2024-10-11 00:15:12 +913 913 914 91.3 182.60000000000002 913 1972-07-02 2024-10-11 00:15:13.000 1972-07-02 2024-10-11 00:15:13 +914 914 915 91.4 182.8 914 1972-07-03 2024-10-11 00:15:14.000 1972-07-03 2024-10-11 00:15:14 +915 915 916 91.5 183 915 1972-07-04 2024-10-11 00:15:15.000 1972-07-04 2024-10-11 00:15:15 +916 916 917 91.6 183.20000000000002 916 1972-07-05 2024-10-11 00:15:16.000 1972-07-05 2024-10-11 00:15:16 +917 917 918 91.7 183.4 917 1972-07-06 2024-10-11 00:15:17.000 1972-07-06 2024-10-11 00:15:17 +918 918 919 91.8 183.60000000000002 918 1972-07-07 2024-10-11 00:15:18.000 1972-07-07 2024-10-11 00:15:18 +919 919 920 91.9 183.8 919 1972-07-08 2024-10-11 00:15:19.000 1972-07-08 2024-10-11 00:15:19 +920 920 921 92 184 920 1972-07-09 2024-10-11 00:15:20.000 1972-07-09 2024-10-11 00:15:20 +921 921 922 92.1 184.20000000000002 921 1972-07-10 2024-10-11 00:15:21.000 1972-07-10 2024-10-11 00:15:21 +922 922 923 92.2 184.4 922 1972-07-11 2024-10-11 00:15:22.000 1972-07-11 2024-10-11 00:15:22 +923 923 924 92.3 184.60000000000002 923 1972-07-12 2024-10-11 00:15:23.000 1972-07-12 2024-10-11 00:15:23 +924 924 925 92.4 184.8 924 1972-07-13 2024-10-11 00:15:24.000 1972-07-13 2024-10-11 00:15:24 +925 925 926 92.5 185 925 1972-07-14 2024-10-11 00:15:25.000 1972-07-14 2024-10-11 00:15:25 +926 926 927 92.6 185.20000000000002 926 1972-07-15 2024-10-11 00:15:26.000 1972-07-15 2024-10-11 00:15:26 +927 927 928 92.7 185.4 927 1972-07-16 2024-10-11 00:15:27.000 1972-07-16 2024-10-11 00:15:27 +928 928 929 92.8 185.60000000000002 928 1972-07-17 2024-10-11 00:15:28.000 1972-07-17 2024-10-11 00:15:28 +929 929 930 92.9 185.8 929 1972-07-18 2024-10-11 00:15:29.000 1972-07-18 2024-10-11 00:15:29 +930 930 931 93 186 930 1972-07-19 2024-10-11 00:15:30.000 1972-07-19 2024-10-11 00:15:30 +931 931 932 93.1 186.20000000000002 931 1972-07-20 2024-10-11 00:15:31.000 1972-07-20 2024-10-11 00:15:31 +932 932 933 93.2 186.4 932 1972-07-21 2024-10-11 00:15:32.000 1972-07-21 2024-10-11 00:15:32 +933 933 934 93.3 186.60000000000002 933 1972-07-22 2024-10-11 00:15:33.000 1972-07-22 2024-10-11 00:15:33 +934 934 935 93.4 186.8 934 1972-07-23 2024-10-11 00:15:34.000 1972-07-23 2024-10-11 00:15:34 +935 935 936 93.5 187 935 1972-07-24 2024-10-11 00:15:35.000 1972-07-24 2024-10-11 00:15:35 +936 936 937 93.6 187.20000000000002 936 1972-07-25 2024-10-11 00:15:36.000 1972-07-25 2024-10-11 00:15:36 +937 937 938 93.7 187.4 937 1972-07-26 2024-10-11 00:15:37.000 1972-07-26 2024-10-11 00:15:37 +938 938 939 93.8 187.60000000000002 938 1972-07-27 2024-10-11 00:15:38.000 1972-07-27 2024-10-11 00:15:38 +939 939 940 93.9 187.8 939 1972-07-28 2024-10-11 00:15:39.000 1972-07-28 2024-10-11 00:15:39 +940 940 941 94 188 940 1972-07-29 2024-10-11 00:15:40.000 1972-07-29 2024-10-11 00:15:40 +941 941 942 94.1 188.20000000000002 941 1972-07-30 2024-10-11 00:15:41.000 1972-07-30 2024-10-11 00:15:41 +942 942 943 94.2 188.4 942 1972-07-31 2024-10-11 00:15:42.000 1972-07-31 2024-10-11 00:15:42 +943 943 944 94.3 188.60000000000002 943 1972-08-01 2024-10-11 00:15:43.000 1972-08-01 2024-10-11 00:15:43 +944 944 945 94.4 188.8 944 1972-08-02 2024-10-11 00:15:44.000 1972-08-02 2024-10-11 00:15:44 +945 945 946 94.5 189 945 1972-08-03 2024-10-11 00:15:45.000 1972-08-03 2024-10-11 00:15:45 +946 946 947 94.6 189.20000000000002 946 1972-08-04 2024-10-11 00:15:46.000 1972-08-04 2024-10-11 00:15:46 +947 947 948 94.7 189.4 947 1972-08-05 2024-10-11 00:15:47.000 1972-08-05 2024-10-11 00:15:47 +948 948 949 94.8 189.60000000000002 948 1972-08-06 2024-10-11 00:15:48.000 1972-08-06 2024-10-11 00:15:48 +949 949 950 94.9 189.8 949 1972-08-07 2024-10-11 00:15:49.000 1972-08-07 2024-10-11 00:15:49 +950 950 951 95 190 950 1972-08-08 2024-10-11 00:15:50.000 1972-08-08 2024-10-11 00:15:50 +951 951 952 95.1 190.20000000000002 951 1972-08-09 2024-10-11 00:15:51.000 1972-08-09 2024-10-11 00:15:51 +952 952 953 95.2 190.4 952 1972-08-10 2024-10-11 00:15:52.000 1972-08-10 2024-10-11 00:15:52 +953 953 954 95.3 190.60000000000002 953 1972-08-11 2024-10-11 00:15:53.000 1972-08-11 2024-10-11 00:15:53 +954 954 955 95.4 190.8 954 1972-08-12 2024-10-11 00:15:54.000 1972-08-12 2024-10-11 00:15:54 +955 955 956 95.5 191 955 1972-08-13 2024-10-11 00:15:55.000 1972-08-13 2024-10-11 00:15:55 +956 956 957 95.6 191.20000000000002 956 1972-08-14 2024-10-11 00:15:56.000 1972-08-14 2024-10-11 00:15:56 +957 957 958 95.7 191.4 957 1972-08-15 2024-10-11 00:15:57.000 1972-08-15 2024-10-11 00:15:57 +958 958 959 95.8 191.60000000000002 958 1972-08-16 2024-10-11 00:15:58.000 1972-08-16 2024-10-11 00:15:58 +959 959 960 95.9 191.8 959 1972-08-17 2024-10-11 00:15:59.000 1972-08-17 2024-10-11 00:15:59 +960 960 961 96 192 960 1972-08-18 2024-10-11 00:16:00.000 1972-08-18 2024-10-11 00:16:00 +961 961 962 96.1 192.20000000000002 961 1972-08-19 2024-10-11 00:16:01.000 1972-08-19 2024-10-11 00:16:01 +962 962 963 96.2 192.4 962 1972-08-20 2024-10-11 00:16:02.000 1972-08-20 2024-10-11 00:16:02 +963 963 964 96.3 192.60000000000002 963 1972-08-21 2024-10-11 00:16:03.000 1972-08-21 2024-10-11 00:16:03 +964 964 965 96.4 192.8 964 1972-08-22 2024-10-11 00:16:04.000 1972-08-22 2024-10-11 00:16:04 +965 965 966 96.5 193 965 1972-08-23 2024-10-11 00:16:05.000 1972-08-23 2024-10-11 00:16:05 +966 966 967 96.6 193.20000000000002 966 1972-08-24 2024-10-11 00:16:06.000 1972-08-24 2024-10-11 00:16:06 +967 967 968 96.7 193.4 967 1972-08-25 2024-10-11 00:16:07.000 1972-08-25 2024-10-11 00:16:07 +968 968 969 96.8 193.60000000000002 968 1972-08-26 2024-10-11 00:16:08.000 1972-08-26 2024-10-11 00:16:08 +969 969 970 96.9 193.8 969 1972-08-27 2024-10-11 00:16:09.000 1972-08-27 2024-10-11 00:16:09 +970 970 971 97 194 970 1972-08-28 2024-10-11 00:16:10.000 1972-08-28 2024-10-11 00:16:10 +971 971 972 97.1 194.20000000000002 971 1972-08-29 2024-10-11 00:16:11.000 1972-08-29 2024-10-11 00:16:11 +972 972 973 97.2 194.4 972 1972-08-30 2024-10-11 00:16:12.000 1972-08-30 2024-10-11 00:16:12 +973 973 974 97.3 194.60000000000002 973 1972-08-31 2024-10-11 00:16:13.000 1972-08-31 2024-10-11 00:16:13 +974 974 975 97.4 194.8 974 1972-09-01 2024-10-11 00:16:14.000 1972-09-01 2024-10-11 00:16:14 +975 975 976 97.5 195 975 1972-09-02 2024-10-11 00:16:15.000 1972-09-02 2024-10-11 00:16:15 +976 976 977 97.6 195.20000000000002 976 1972-09-03 2024-10-11 00:16:16.000 1972-09-03 2024-10-11 00:16:16 +977 977 978 97.7 195.4 977 1972-09-04 2024-10-11 00:16:17.000 1972-09-04 2024-10-11 00:16:17 +978 978 979 97.8 195.60000000000002 978 1972-09-05 2024-10-11 00:16:18.000 1972-09-05 2024-10-11 00:16:18 +979 979 980 97.9 195.8 979 1972-09-06 2024-10-11 00:16:19.000 1972-09-06 2024-10-11 00:16:19 +980 980 981 98 196 980 1972-09-07 2024-10-11 00:16:20.000 1972-09-07 2024-10-11 00:16:20 +981 981 982 98.1 196.20000000000002 981 1972-09-08 2024-10-11 00:16:21.000 1972-09-08 2024-10-11 00:16:21 +982 982 983 98.2 196.4 982 1972-09-09 2024-10-11 00:16:22.000 1972-09-09 2024-10-11 00:16:22 +983 983 984 98.3 196.60000000000002 983 1972-09-10 2024-10-11 00:16:23.000 1972-09-10 2024-10-11 00:16:23 +984 984 985 98.4 196.8 984 1972-09-11 2024-10-11 00:16:24.000 1972-09-11 2024-10-11 00:16:24 +985 985 986 98.5 197 985 1972-09-12 2024-10-11 00:16:25.000 1972-09-12 2024-10-11 00:16:25 +986 986 987 98.6 197.20000000000002 986 1972-09-13 2024-10-11 00:16:26.000 1972-09-13 2024-10-11 00:16:26 +987 987 988 98.7 197.4 987 1972-09-14 2024-10-11 00:16:27.000 1972-09-14 2024-10-11 00:16:27 +988 988 989 98.8 197.60000000000002 988 1972-09-15 2024-10-11 00:16:28.000 1972-09-15 2024-10-11 00:16:28 +989 989 990 98.9 197.8 989 1972-09-16 2024-10-11 00:16:29.000 1972-09-16 2024-10-11 00:16:29 +990 990 991 99 198 990 1972-09-17 2024-10-11 00:16:30.000 1972-09-17 2024-10-11 00:16:30 +991 991 992 99.1 198.20000000000002 991 1972-09-18 2024-10-11 00:16:31.000 1972-09-18 2024-10-11 00:16:31 +992 992 993 99.2 198.4 992 1972-09-19 2024-10-11 00:16:32.000 1972-09-19 2024-10-11 00:16:32 +993 993 994 99.3 198.60000000000002 993 1972-09-20 2024-10-11 00:16:33.000 1972-09-20 2024-10-11 00:16:33 +994 994 995 99.4 198.8 994 1972-09-21 2024-10-11 00:16:34.000 1972-09-21 2024-10-11 00:16:34 +995 995 996 99.5 199 995 1972-09-22 2024-10-11 00:16:35.000 1972-09-22 2024-10-11 00:16:35 +996 996 997 99.6 199.20000000000002 996 1972-09-23 2024-10-11 00:16:36.000 1972-09-23 2024-10-11 00:16:36 +997 997 998 99.7 199.4 997 1972-09-24 2024-10-11 00:16:37.000 1972-09-24 2024-10-11 00:16:37 +998 998 999 99.8 199.60000000000002 998 1972-09-25 2024-10-11 00:16:38.000 1972-09-25 2024-10-11 00:16:38 +999 999 1000 99.9 199.8 999 1972-09-26 2024-10-11 00:16:39.000 1972-09-26 2024-10-11 00:16:39 +1000 1000 1001 100 200 1000 1972-09-27 2024-10-11 00:16:40.000 1972-09-27 2024-10-11 00:16:40 +1001 1001 1002 100.1 200.20000000000002 1001 1972-09-28 2024-10-11 00:16:41.000 1972-09-28 2024-10-11 00:16:41 +1002 1002 1003 100.2 200.4 1002 1972-09-29 2024-10-11 00:16:42.000 1972-09-29 2024-10-11 00:16:42 +1003 1003 1004 100.3 200.60000000000002 1003 1972-09-30 2024-10-11 00:16:43.000 1972-09-30 2024-10-11 00:16:43 +1004 1004 1005 100.4 200.8 1004 1972-10-01 2024-10-11 00:16:44.000 1972-10-01 2024-10-11 00:16:44 +1005 1005 1006 100.5 201 1005 1972-10-02 2024-10-11 00:16:45.000 1972-10-02 2024-10-11 00:16:45 +1006 1006 1007 100.6 201.20000000000002 1006 1972-10-03 2024-10-11 00:16:46.000 1972-10-03 2024-10-11 00:16:46 +1007 1007 1008 100.7 201.4 1007 1972-10-04 2024-10-11 00:16:47.000 1972-10-04 2024-10-11 00:16:47 +1008 1008 1009 100.8 201.60000000000002 1008 1972-10-05 2024-10-11 00:16:48.000 1972-10-05 2024-10-11 00:16:48 +1009 1009 1010 100.9 201.8 1009 1972-10-06 2024-10-11 00:16:49.000 1972-10-06 2024-10-11 00:16:49 +1010 1010 1011 101 202 1010 1972-10-07 2024-10-11 00:16:50.000 1972-10-07 2024-10-11 00:16:50 +1011 1011 1012 101.1 202.20000000000002 1011 1972-10-08 2024-10-11 00:16:51.000 1972-10-08 2024-10-11 00:16:51 +1012 1012 1013 101.2 202.4 1012 1972-10-09 2024-10-11 00:16:52.000 1972-10-09 2024-10-11 00:16:52 +1013 1013 1014 101.3 202.60000000000002 1013 1972-10-10 2024-10-11 00:16:53.000 1972-10-10 2024-10-11 00:16:53 +1014 1014 1015 101.4 202.8 1014 1972-10-11 2024-10-11 00:16:54.000 1972-10-11 2024-10-11 00:16:54 +1015 1015 1016 101.5 203 1015 1972-10-12 2024-10-11 00:16:55.000 1972-10-12 2024-10-11 00:16:55 +1016 1016 1017 101.6 203.20000000000002 1016 1972-10-13 2024-10-11 00:16:56.000 1972-10-13 2024-10-11 00:16:56 +1017 1017 1018 101.7 203.4 1017 1972-10-14 2024-10-11 00:16:57.000 1972-10-14 2024-10-11 00:16:57 +1018 1018 1019 101.8 203.60000000000002 1018 1972-10-15 2024-10-11 00:16:58.000 1972-10-15 2024-10-11 00:16:58 +1019 1019 1020 101.9 203.8 1019 1972-10-16 2024-10-11 00:16:59.000 1972-10-16 2024-10-11 00:16:59 +1020 1020 1021 102 204 1020 1972-10-17 2024-10-11 00:17:00.000 1972-10-17 2024-10-11 00:17:00 +1021 1021 1022 102.1 204.20000000000002 1021 1972-10-18 2024-10-11 00:17:01.000 1972-10-18 2024-10-11 00:17:01 +1022 1022 1023 102.2 204.4 1022 1972-10-19 2024-10-11 00:17:02.000 1972-10-19 2024-10-11 00:17:02 +1023 1023 1024 102.3 204.60000000000002 1023 1972-10-20 2024-10-11 00:17:03.000 1972-10-20 2024-10-11 00:17:03 +1024 1024 1025 102.4 204.8 1024 1972-10-21 2024-10-11 00:17:04.000 1972-10-21 2024-10-11 00:17:04 +1025 1025 1026 102.5 205 1025 1972-10-22 2024-10-11 00:17:05.000 1972-10-22 2024-10-11 00:17:05 +1026 1026 1027 102.6 205.20000000000002 1026 1972-10-23 2024-10-11 00:17:06.000 1972-10-23 2024-10-11 00:17:06 +1027 1027 1028 102.7 205.4 1027 1972-10-24 2024-10-11 00:17:07.000 1972-10-24 2024-10-11 00:17:07 +1028 1028 1029 102.8 205.60000000000002 1028 1972-10-25 2024-10-11 00:17:08.000 1972-10-25 2024-10-11 00:17:08 +1029 1029 1030 102.9 205.8 1029 1972-10-26 2024-10-11 00:17:09.000 1972-10-26 2024-10-11 00:17:09 +1030 1030 1031 103 206 1030 1972-10-27 2024-10-11 00:17:10.000 1972-10-27 2024-10-11 00:17:10 +1031 1031 1032 103.1 206.20000000000002 1031 1972-10-28 2024-10-11 00:17:11.000 1972-10-28 2024-10-11 00:17:11 +1032 1032 1033 103.2 206.4 1032 1972-10-29 2024-10-11 00:17:12.000 1972-10-29 2024-10-11 00:17:12 +1033 1033 1034 103.3 206.60000000000002 1033 1972-10-30 2024-10-11 00:17:13.000 1972-10-30 2024-10-11 00:17:13 +1034 1034 1035 103.4 206.8 1034 1972-10-31 2024-10-11 00:17:14.000 1972-10-31 2024-10-11 00:17:14 +1035 1035 1036 103.5 207 1035 1972-11-01 2024-10-11 00:17:15.000 1972-11-01 2024-10-11 00:17:15 +1036 1036 1037 103.6 207.20000000000002 1036 1972-11-02 2024-10-11 00:17:16.000 1972-11-02 2024-10-11 00:17:16 +1037 1037 1038 103.7 207.4 1037 1972-11-03 2024-10-11 00:17:17.000 1972-11-03 2024-10-11 00:17:17 +1038 1038 1039 103.8 207.60000000000002 1038 1972-11-04 2024-10-11 00:17:18.000 1972-11-04 2024-10-11 00:17:18 +1039 1039 1040 103.9 207.8 1039 1972-11-05 2024-10-11 00:17:19.000 1972-11-05 2024-10-11 00:17:19 +1040 1040 1041 104 208 1040 1972-11-06 2024-10-11 00:17:20.000 1972-11-06 2024-10-11 00:17:20 +1041 1041 1042 104.1 208.20000000000002 1041 1972-11-07 2024-10-11 00:17:21.000 1972-11-07 2024-10-11 00:17:21 +1042 1042 1043 104.2 208.4 1042 1972-11-08 2024-10-11 00:17:22.000 1972-11-08 2024-10-11 00:17:22 +1043 1043 1044 104.3 208.60000000000002 1043 1972-11-09 2024-10-11 00:17:23.000 1972-11-09 2024-10-11 00:17:23 +1044 1044 1045 104.4 208.8 1044 1972-11-10 2024-10-11 00:17:24.000 1972-11-10 2024-10-11 00:17:24 +1045 1045 1046 104.5 209 1045 1972-11-11 2024-10-11 00:17:25.000 1972-11-11 2024-10-11 00:17:25 +1046 1046 1047 104.6 209.20000000000002 1046 1972-11-12 2024-10-11 00:17:26.000 1972-11-12 2024-10-11 00:17:26 +1047 1047 1048 104.7 209.4 1047 1972-11-13 2024-10-11 00:17:27.000 1972-11-13 2024-10-11 00:17:27 +1048 1048 1049 104.8 209.60000000000002 1048 1972-11-14 2024-10-11 00:17:28.000 1972-11-14 2024-10-11 00:17:28 +1049 1049 1050 104.9 209.8 1049 1972-11-15 2024-10-11 00:17:29.000 1972-11-15 2024-10-11 00:17:29 +1050 1050 1051 105 210 1050 1972-11-16 2024-10-11 00:17:30.000 1972-11-16 2024-10-11 00:17:30 +1051 1051 1052 105.1 210.20000000000002 1051 1972-11-17 2024-10-11 00:17:31.000 1972-11-17 2024-10-11 00:17:31 +1052 1052 1053 105.2 210.4 1052 1972-11-18 2024-10-11 00:17:32.000 1972-11-18 2024-10-11 00:17:32 +1053 1053 1054 105.3 210.60000000000002 1053 1972-11-19 2024-10-11 00:17:33.000 1972-11-19 2024-10-11 00:17:33 +1054 1054 1055 105.4 210.8 1054 1972-11-20 2024-10-11 00:17:34.000 1972-11-20 2024-10-11 00:17:34 +1055 1055 1056 105.5 211 1055 1972-11-21 2024-10-11 00:17:35.000 1972-11-21 2024-10-11 00:17:35 +1056 1056 1057 105.6 211.20000000000002 1056 1972-11-22 2024-10-11 00:17:36.000 1972-11-22 2024-10-11 00:17:36 +1057 1057 1058 105.7 211.4 1057 1972-11-23 2024-10-11 00:17:37.000 1972-11-23 2024-10-11 00:17:37 +1058 1058 1059 105.8 211.60000000000002 1058 1972-11-24 2024-10-11 00:17:38.000 1972-11-24 2024-10-11 00:17:38 +1059 1059 1060 105.9 211.8 1059 1972-11-25 2024-10-11 00:17:39.000 1972-11-25 2024-10-11 00:17:39 +1060 1060 1061 106 212 1060 1972-11-26 2024-10-11 00:17:40.000 1972-11-26 2024-10-11 00:17:40 +1061 1061 1062 106.1 212.20000000000002 1061 1972-11-27 2024-10-11 00:17:41.000 1972-11-27 2024-10-11 00:17:41 +1062 1062 1063 106.2 212.4 1062 1972-11-28 2024-10-11 00:17:42.000 1972-11-28 2024-10-11 00:17:42 +1063 1063 1064 106.3 212.60000000000002 1063 1972-11-29 2024-10-11 00:17:43.000 1972-11-29 2024-10-11 00:17:43 +1064 1064 1065 106.4 212.8 1064 1972-11-30 2024-10-11 00:17:44.000 1972-11-30 2024-10-11 00:17:44 +1065 1065 1066 106.5 213 1065 1972-12-01 2024-10-11 00:17:45.000 1972-12-01 2024-10-11 00:17:45 +1066 1066 1067 106.6 213.20000000000002 1066 1972-12-02 2024-10-11 00:17:46.000 1972-12-02 2024-10-11 00:17:46 +1067 1067 1068 106.7 213.4 1067 1972-12-03 2024-10-11 00:17:47.000 1972-12-03 2024-10-11 00:17:47 +1068 1068 1069 106.8 213.60000000000002 1068 1972-12-04 2024-10-11 00:17:48.000 1972-12-04 2024-10-11 00:17:48 +1069 1069 1070 106.9 213.8 1069 1972-12-05 2024-10-11 00:17:49.000 1972-12-05 2024-10-11 00:17:49 +1070 1070 1071 107 214 1070 1972-12-06 2024-10-11 00:17:50.000 1972-12-06 2024-10-11 00:17:50 +1071 1071 1072 107.1 214.20000000000002 1071 1972-12-07 2024-10-11 00:17:51.000 1972-12-07 2024-10-11 00:17:51 +1072 1072 1073 107.2 214.4 1072 1972-12-08 2024-10-11 00:17:52.000 1972-12-08 2024-10-11 00:17:52 +1073 1073 1074 107.3 214.60000000000002 1073 1972-12-09 2024-10-11 00:17:53.000 1972-12-09 2024-10-11 00:17:53 +1074 1074 1075 107.4 214.8 1074 1972-12-10 2024-10-11 00:17:54.000 1972-12-10 2024-10-11 00:17:54 +1075 1075 1076 107.5 215 1075 1972-12-11 2024-10-11 00:17:55.000 1972-12-11 2024-10-11 00:17:55 +1076 1076 1077 107.6 215.20000000000002 1076 1972-12-12 2024-10-11 00:17:56.000 1972-12-12 2024-10-11 00:17:56 +1077 1077 1078 107.7 215.4 1077 1972-12-13 2024-10-11 00:17:57.000 1972-12-13 2024-10-11 00:17:57 +1078 1078 1079 107.8 215.60000000000002 1078 1972-12-14 2024-10-11 00:17:58.000 1972-12-14 2024-10-11 00:17:58 +1079 1079 1080 107.9 215.8 1079 1972-12-15 2024-10-11 00:17:59.000 1972-12-15 2024-10-11 00:17:59 +1080 1080 1081 108 216 1080 1972-12-16 2024-10-11 00:18:00.000 1972-12-16 2024-10-11 00:18:00 +1081 1081 1082 108.1 216.20000000000002 1081 1972-12-17 2024-10-11 00:18:01.000 1972-12-17 2024-10-11 00:18:01 +1082 1082 1083 108.2 216.4 1082 1972-12-18 2024-10-11 00:18:02.000 1972-12-18 2024-10-11 00:18:02 +1083 1083 1084 108.3 216.60000000000002 1083 1972-12-19 2024-10-11 00:18:03.000 1972-12-19 2024-10-11 00:18:03 +1084 1084 1085 108.4 216.8 1084 1972-12-20 2024-10-11 00:18:04.000 1972-12-20 2024-10-11 00:18:04 +1085 1085 1086 108.5 217 1085 1972-12-21 2024-10-11 00:18:05.000 1972-12-21 2024-10-11 00:18:05 +1086 1086 1087 108.6 217.20000000000002 1086 1972-12-22 2024-10-11 00:18:06.000 1972-12-22 2024-10-11 00:18:06 +1087 1087 1088 108.7 217.4 1087 1972-12-23 2024-10-11 00:18:07.000 1972-12-23 2024-10-11 00:18:07 +1088 1088 1089 108.8 217.60000000000002 1088 1972-12-24 2024-10-11 00:18:08.000 1972-12-24 2024-10-11 00:18:08 +1089 1089 1090 108.9 217.8 1089 1972-12-25 2024-10-11 00:18:09.000 1972-12-25 2024-10-11 00:18:09 +1090 1090 1091 109 218 1090 1972-12-26 2024-10-11 00:18:10.000 1972-12-26 2024-10-11 00:18:10 +1091 1091 1092 109.1 218.20000000000002 1091 1972-12-27 2024-10-11 00:18:11.000 1972-12-27 2024-10-11 00:18:11 +1092 1092 1093 109.2 218.4 1092 1972-12-28 2024-10-11 00:18:12.000 1972-12-28 2024-10-11 00:18:12 +1093 1093 1094 109.3 218.60000000000002 1093 1972-12-29 2024-10-11 00:18:13.000 1972-12-29 2024-10-11 00:18:13 +1094 1094 1095 109.4 218.8 1094 1972-12-30 2024-10-11 00:18:14.000 1972-12-30 2024-10-11 00:18:14 +1095 1095 1096 109.5 219 1095 1972-12-31 2024-10-11 00:18:15.000 1972-12-31 2024-10-11 00:18:15 +1096 1096 1097 109.6 219.20000000000002 1096 1973-01-01 2024-10-11 00:18:16.000 1973-01-01 2024-10-11 00:18:16 +1097 1097 1098 109.7 219.4 1097 1973-01-02 2024-10-11 00:18:17.000 1973-01-02 2024-10-11 00:18:17 +1098 1098 1099 109.8 219.60000000000002 1098 1973-01-03 2024-10-11 00:18:18.000 1973-01-03 2024-10-11 00:18:18 +1099 1099 1100 109.9 219.8 1099 1973-01-04 2024-10-11 00:18:19.000 1973-01-04 2024-10-11 00:18:19 +1100 1100 1101 110 220 1100 1973-01-05 2024-10-11 00:18:20.000 1973-01-05 2024-10-11 00:18:20 +1101 1101 1102 110.1 220.20000000000002 1101 1973-01-06 2024-10-11 00:18:21.000 1973-01-06 2024-10-11 00:18:21 +1102 1102 1103 110.2 220.4 1102 1973-01-07 2024-10-11 00:18:22.000 1973-01-07 2024-10-11 00:18:22 +1103 1103 1104 110.3 220.60000000000002 1103 1973-01-08 2024-10-11 00:18:23.000 1973-01-08 2024-10-11 00:18:23 +1104 1104 1105 110.4 220.8 1104 1973-01-09 2024-10-11 00:18:24.000 1973-01-09 2024-10-11 00:18:24 +1105 1105 1106 110.5 221 1105 1973-01-10 2024-10-11 00:18:25.000 1973-01-10 2024-10-11 00:18:25 +1106 1106 1107 110.6 221.20000000000002 1106 1973-01-11 2024-10-11 00:18:26.000 1973-01-11 2024-10-11 00:18:26 +1107 1107 1108 110.7 221.4 1107 1973-01-12 2024-10-11 00:18:27.000 1973-01-12 2024-10-11 00:18:27 +1108 1108 1109 110.8 221.60000000000002 1108 1973-01-13 2024-10-11 00:18:28.000 1973-01-13 2024-10-11 00:18:28 +1109 1109 1110 110.9 221.8 1109 1973-01-14 2024-10-11 00:18:29.000 1973-01-14 2024-10-11 00:18:29 +1110 1110 1111 111 222 1110 1973-01-15 2024-10-11 00:18:30.000 1973-01-15 2024-10-11 00:18:30 +1111 1111 1112 111.1 222.20000000000002 1111 1973-01-16 2024-10-11 00:18:31.000 1973-01-16 2024-10-11 00:18:31 +1112 1112 1113 111.2 222.4 1112 1973-01-17 2024-10-11 00:18:32.000 1973-01-17 2024-10-11 00:18:32 +1113 1113 1114 111.3 222.60000000000002 1113 1973-01-18 2024-10-11 00:18:33.000 1973-01-18 2024-10-11 00:18:33 +1114 1114 1115 111.4 222.8 1114 1973-01-19 2024-10-11 00:18:34.000 1973-01-19 2024-10-11 00:18:34 +1115 1115 1116 111.5 223 1115 1973-01-20 2024-10-11 00:18:35.000 1973-01-20 2024-10-11 00:18:35 +1116 1116 1117 111.6 223.20000000000002 1116 1973-01-21 2024-10-11 00:18:36.000 1973-01-21 2024-10-11 00:18:36 +1117 1117 1118 111.7 223.4 1117 1973-01-22 2024-10-11 00:18:37.000 1973-01-22 2024-10-11 00:18:37 +1118 1118 1119 111.8 223.60000000000002 1118 1973-01-23 2024-10-11 00:18:38.000 1973-01-23 2024-10-11 00:18:38 +1119 1119 1120 111.9 223.8 1119 1973-01-24 2024-10-11 00:18:39.000 1973-01-24 2024-10-11 00:18:39 +1120 1120 1121 112 224 1120 1973-01-25 2024-10-11 00:18:40.000 1973-01-25 2024-10-11 00:18:40 +1121 1121 1122 112.1 224.20000000000002 1121 1973-01-26 2024-10-11 00:18:41.000 1973-01-26 2024-10-11 00:18:41 +1122 1122 1123 112.2 224.4 1122 1973-01-27 2024-10-11 00:18:42.000 1973-01-27 2024-10-11 00:18:42 +1123 1123 1124 112.3 224.60000000000002 1123 1973-01-28 2024-10-11 00:18:43.000 1973-01-28 2024-10-11 00:18:43 +1124 1124 1125 112.4 224.8 1124 1973-01-29 2024-10-11 00:18:44.000 1973-01-29 2024-10-11 00:18:44 +1125 1125 1126 112.5 225 1125 1973-01-30 2024-10-11 00:18:45.000 1973-01-30 2024-10-11 00:18:45 +1126 1126 1127 112.6 225.20000000000002 1126 1973-01-31 2024-10-11 00:18:46.000 1973-01-31 2024-10-11 00:18:46 +1127 1127 1128 112.7 225.4 1127 1973-02-01 2024-10-11 00:18:47.000 1973-02-01 2024-10-11 00:18:47 +1128 1128 1129 112.8 225.60000000000002 1128 1973-02-02 2024-10-11 00:18:48.000 1973-02-02 2024-10-11 00:18:48 +1129 1129 1130 112.9 225.8 1129 1973-02-03 2024-10-11 00:18:49.000 1973-02-03 2024-10-11 00:18:49 +1130 1130 1131 113 226 1130 1973-02-04 2024-10-11 00:18:50.000 1973-02-04 2024-10-11 00:18:50 +1131 1131 1132 113.1 226.20000000000002 1131 1973-02-05 2024-10-11 00:18:51.000 1973-02-05 2024-10-11 00:18:51 +1132 1132 1133 113.2 226.4 1132 1973-02-06 2024-10-11 00:18:52.000 1973-02-06 2024-10-11 00:18:52 +1133 1133 1134 113.3 226.60000000000002 1133 1973-02-07 2024-10-11 00:18:53.000 1973-02-07 2024-10-11 00:18:53 +1134 1134 1135 113.4 226.8 1134 1973-02-08 2024-10-11 00:18:54.000 1973-02-08 2024-10-11 00:18:54 +1135 1135 1136 113.5 227 1135 1973-02-09 2024-10-11 00:18:55.000 1973-02-09 2024-10-11 00:18:55 +1136 1136 1137 113.6 227.20000000000002 1136 1973-02-10 2024-10-11 00:18:56.000 1973-02-10 2024-10-11 00:18:56 +1137 1137 1138 113.7 227.4 1137 1973-02-11 2024-10-11 00:18:57.000 1973-02-11 2024-10-11 00:18:57 +1138 1138 1139 113.8 227.60000000000002 1138 1973-02-12 2024-10-11 00:18:58.000 1973-02-12 2024-10-11 00:18:58 +1139 1139 1140 113.9 227.8 1139 1973-02-13 2024-10-11 00:18:59.000 1973-02-13 2024-10-11 00:18:59 +1140 1140 1141 114 228 1140 1973-02-14 2024-10-11 00:19:00.000 1973-02-14 2024-10-11 00:19:00 +1141 1141 1142 114.1 228.20000000000002 1141 1973-02-15 2024-10-11 00:19:01.000 1973-02-15 2024-10-11 00:19:01 +1142 1142 1143 114.2 228.4 1142 1973-02-16 2024-10-11 00:19:02.000 1973-02-16 2024-10-11 00:19:02 +1143 1143 1144 114.3 228.60000000000002 1143 1973-02-17 2024-10-11 00:19:03.000 1973-02-17 2024-10-11 00:19:03 +1144 1144 1145 114.4 228.8 1144 1973-02-18 2024-10-11 00:19:04.000 1973-02-18 2024-10-11 00:19:04 +1145 1145 1146 114.5 229 1145 1973-02-19 2024-10-11 00:19:05.000 1973-02-19 2024-10-11 00:19:05 +1146 1146 1147 114.6 229.20000000000002 1146 1973-02-20 2024-10-11 00:19:06.000 1973-02-20 2024-10-11 00:19:06 +1147 1147 1148 114.7 229.4 1147 1973-02-21 2024-10-11 00:19:07.000 1973-02-21 2024-10-11 00:19:07 +1148 1148 1149 114.8 229.60000000000002 1148 1973-02-22 2024-10-11 00:19:08.000 1973-02-22 2024-10-11 00:19:08 +1149 1149 1150 114.9 229.8 1149 1973-02-23 2024-10-11 00:19:09.000 1973-02-23 2024-10-11 00:19:09 +1150 1150 1151 115 230 1150 1973-02-24 2024-10-11 00:19:10.000 1973-02-24 2024-10-11 00:19:10 +1151 1151 1152 115.1 230.20000000000002 1151 1973-02-25 2024-10-11 00:19:11.000 1973-02-25 2024-10-11 00:19:11 +1152 1152 1153 115.2 230.4 1152 1973-02-26 2024-10-11 00:19:12.000 1973-02-26 2024-10-11 00:19:12 +1153 1153 1154 115.3 230.60000000000002 1153 1973-02-27 2024-10-11 00:19:13.000 1973-02-27 2024-10-11 00:19:13 +1154 1154 1155 115.4 230.8 1154 1973-02-28 2024-10-11 00:19:14.000 1973-02-28 2024-10-11 00:19:14 +1155 1155 1156 115.5 231 1155 1973-03-01 2024-10-11 00:19:15.000 1973-03-01 2024-10-11 00:19:15 +1156 1156 1157 115.6 231.20000000000002 1156 1973-03-02 2024-10-11 00:19:16.000 1973-03-02 2024-10-11 00:19:16 +1157 1157 1158 115.7 231.4 1157 1973-03-03 2024-10-11 00:19:17.000 1973-03-03 2024-10-11 00:19:17 +1158 1158 1159 115.8 231.60000000000002 1158 1973-03-04 2024-10-11 00:19:18.000 1973-03-04 2024-10-11 00:19:18 +1159 1159 1160 115.9 231.8 1159 1973-03-05 2024-10-11 00:19:19.000 1973-03-05 2024-10-11 00:19:19 +1160 1160 1161 116 232 1160 1973-03-06 2024-10-11 00:19:20.000 1973-03-06 2024-10-11 00:19:20 +1161 1161 1162 116.1 232.20000000000002 1161 1973-03-07 2024-10-11 00:19:21.000 1973-03-07 2024-10-11 00:19:21 +1162 1162 1163 116.2 232.4 1162 1973-03-08 2024-10-11 00:19:22.000 1973-03-08 2024-10-11 00:19:22 +1163 1163 1164 116.3 232.60000000000002 1163 1973-03-09 2024-10-11 00:19:23.000 1973-03-09 2024-10-11 00:19:23 +1164 1164 1165 116.4 232.8 1164 1973-03-10 2024-10-11 00:19:24.000 1973-03-10 2024-10-11 00:19:24 +1165 1165 1166 116.5 233 1165 1973-03-11 2024-10-11 00:19:25.000 1973-03-11 2024-10-11 00:19:25 +1166 1166 1167 116.6 233.20000000000002 1166 1973-03-12 2024-10-11 00:19:26.000 1973-03-12 2024-10-11 00:19:26 +1167 1167 1168 116.7 233.4 1167 1973-03-13 2024-10-11 00:19:27.000 1973-03-13 2024-10-11 00:19:27 +1168 1168 1169 116.8 233.60000000000002 1168 1973-03-14 2024-10-11 00:19:28.000 1973-03-14 2024-10-11 00:19:28 +1169 1169 1170 116.9 233.8 1169 1973-03-15 2024-10-11 00:19:29.000 1973-03-15 2024-10-11 00:19:29 +1170 1170 1171 117 234 1170 1973-03-16 2024-10-11 00:19:30.000 1973-03-16 2024-10-11 00:19:30 +1171 1171 1172 117.1 234.20000000000002 1171 1973-03-17 2024-10-11 00:19:31.000 1973-03-17 2024-10-11 00:19:31 +1172 1172 1173 117.2 234.4 1172 1973-03-18 2024-10-11 00:19:32.000 1973-03-18 2024-10-11 00:19:32 +1173 1173 1174 117.3 234.60000000000002 1173 1973-03-19 2024-10-11 00:19:33.000 1973-03-19 2024-10-11 00:19:33 +1174 1174 1175 117.4 234.8 1174 1973-03-20 2024-10-11 00:19:34.000 1973-03-20 2024-10-11 00:19:34 +1175 1175 1176 117.5 235 1175 1973-03-21 2024-10-11 00:19:35.000 1973-03-21 2024-10-11 00:19:35 +1176 1176 1177 117.6 235.20000000000002 1176 1973-03-22 2024-10-11 00:19:36.000 1973-03-22 2024-10-11 00:19:36 +1177 1177 1178 117.7 235.4 1177 1973-03-23 2024-10-11 00:19:37.000 1973-03-23 2024-10-11 00:19:37 +1178 1178 1179 117.8 235.60000000000002 1178 1973-03-24 2024-10-11 00:19:38.000 1973-03-24 2024-10-11 00:19:38 +1179 1179 1180 117.9 235.8 1179 1973-03-25 2024-10-11 00:19:39.000 1973-03-25 2024-10-11 00:19:39 +1180 1180 1181 118 236 1180 1973-03-26 2024-10-11 00:19:40.000 1973-03-26 2024-10-11 00:19:40 +1181 1181 1182 118.1 236.20000000000002 1181 1973-03-27 2024-10-11 00:19:41.000 1973-03-27 2024-10-11 00:19:41 +1182 1182 1183 118.2 236.4 1182 1973-03-28 2024-10-11 00:19:42.000 1973-03-28 2024-10-11 00:19:42 +1183 1183 1184 118.3 236.60000000000002 1183 1973-03-29 2024-10-11 00:19:43.000 1973-03-29 2024-10-11 00:19:43 +1184 1184 1185 118.4 236.8 1184 1973-03-30 2024-10-11 00:19:44.000 1973-03-30 2024-10-11 00:19:44 +1185 1185 1186 118.5 237 1185 1973-03-31 2024-10-11 00:19:45.000 1973-03-31 2024-10-11 00:19:45 +1186 1186 1187 118.6 237.20000000000002 1186 1973-04-01 2024-10-11 00:19:46.000 1973-04-01 2024-10-11 00:19:46 +1187 1187 1188 118.7 237.4 1187 1973-04-02 2024-10-11 00:19:47.000 1973-04-02 2024-10-11 00:19:47 +1188 1188 1189 118.8 237.60000000000002 1188 1973-04-03 2024-10-11 00:19:48.000 1973-04-03 2024-10-11 00:19:48 +1189 1189 1190 118.9 237.8 1189 1973-04-04 2024-10-11 00:19:49.000 1973-04-04 2024-10-11 00:19:49 +1190 1190 1191 119 238 1190 1973-04-05 2024-10-11 00:19:50.000 1973-04-05 2024-10-11 00:19:50 +1191 1191 1192 119.1 238.20000000000002 1191 1973-04-06 2024-10-11 00:19:51.000 1973-04-06 2024-10-11 00:19:51 +1192 1192 1193 119.2 238.4 1192 1973-04-07 2024-10-11 00:19:52.000 1973-04-07 2024-10-11 00:19:52 +1193 1193 1194 119.3 238.60000000000002 1193 1973-04-08 2024-10-11 00:19:53.000 1973-04-08 2024-10-11 00:19:53 +1194 1194 1195 119.4 238.8 1194 1973-04-09 2024-10-11 00:19:54.000 1973-04-09 2024-10-11 00:19:54 +1195 1195 1196 119.5 239 1195 1973-04-10 2024-10-11 00:19:55.000 1973-04-10 2024-10-11 00:19:55 +1196 1196 1197 119.6 239.20000000000002 1196 1973-04-11 2024-10-11 00:19:56.000 1973-04-11 2024-10-11 00:19:56 +1197 1197 1198 119.7 239.4 1197 1973-04-12 2024-10-11 00:19:57.000 1973-04-12 2024-10-11 00:19:57 +1198 1198 1199 119.8 239.60000000000002 1198 1973-04-13 2024-10-11 00:19:58.000 1973-04-13 2024-10-11 00:19:58 +1199 1199 1200 119.9 239.8 1199 1973-04-14 2024-10-11 00:19:59.000 1973-04-14 2024-10-11 00:19:59 +1200 1200 1201 120 240 1200 1973-04-15 2024-10-11 00:20:00.000 1973-04-15 2024-10-11 00:20:00 +1201 1201 1202 120.1 240.20000000000002 1201 1973-04-16 2024-10-11 00:20:01.000 1973-04-16 2024-10-11 00:20:01 +1202 1202 1203 120.2 240.4 1202 1973-04-17 2024-10-11 00:20:02.000 1973-04-17 2024-10-11 00:20:02 +1203 1203 1204 120.3 240.60000000000002 1203 1973-04-18 2024-10-11 00:20:03.000 1973-04-18 2024-10-11 00:20:03 +1204 1204 1205 120.4 240.8 1204 1973-04-19 2024-10-11 00:20:04.000 1973-04-19 2024-10-11 00:20:04 +1205 1205 1206 120.5 241 1205 1973-04-20 2024-10-11 00:20:05.000 1973-04-20 2024-10-11 00:20:05 +1206 1206 1207 120.6 241.20000000000002 1206 1973-04-21 2024-10-11 00:20:06.000 1973-04-21 2024-10-11 00:20:06 +1207 1207 1208 120.7 241.4 1207 1973-04-22 2024-10-11 00:20:07.000 1973-04-22 2024-10-11 00:20:07 +1208 1208 1209 120.8 241.60000000000002 1208 1973-04-23 2024-10-11 00:20:08.000 1973-04-23 2024-10-11 00:20:08 +1209 1209 1210 120.9 241.8 1209 1973-04-24 2024-10-11 00:20:09.000 1973-04-24 2024-10-11 00:20:09 +1210 1210 1211 121 242 1210 1973-04-25 2024-10-11 00:20:10.000 1973-04-25 2024-10-11 00:20:10 +1211 1211 1212 121.1 242.20000000000002 1211 1973-04-26 2024-10-11 00:20:11.000 1973-04-26 2024-10-11 00:20:11 +1212 1212 1213 121.2 242.4 1212 1973-04-27 2024-10-11 00:20:12.000 1973-04-27 2024-10-11 00:20:12 +1213 1213 1214 121.3 242.60000000000002 1213 1973-04-28 2024-10-11 00:20:13.000 1973-04-28 2024-10-11 00:20:13 +1214 1214 1215 121.4 242.8 1214 1973-04-29 2024-10-11 00:20:14.000 1973-04-29 2024-10-11 00:20:14 +1215 1215 1216 121.5 243 1215 1973-04-30 2024-10-11 00:20:15.000 1973-04-30 2024-10-11 00:20:15 +1216 1216 1217 121.6 243.20000000000002 1216 1973-05-01 2024-10-11 00:20:16.000 1973-05-01 2024-10-11 00:20:16 +1217 1217 1218 121.7 243.4 1217 1973-05-02 2024-10-11 00:20:17.000 1973-05-02 2024-10-11 00:20:17 +1218 1218 1219 121.8 243.60000000000002 1218 1973-05-03 2024-10-11 00:20:18.000 1973-05-03 2024-10-11 00:20:18 +1219 1219 1220 121.9 243.8 1219 1973-05-04 2024-10-11 00:20:19.000 1973-05-04 2024-10-11 00:20:19 +1220 1220 1221 122 244 1220 1973-05-05 2024-10-11 00:20:20.000 1973-05-05 2024-10-11 00:20:20 +1221 1221 1222 122.1 244.20000000000002 1221 1973-05-06 2024-10-11 00:20:21.000 1973-05-06 2024-10-11 00:20:21 +1222 1222 1223 122.2 244.4 1222 1973-05-07 2024-10-11 00:20:22.000 1973-05-07 2024-10-11 00:20:22 +1223 1223 1224 122.3 244.60000000000002 1223 1973-05-08 2024-10-11 00:20:23.000 1973-05-08 2024-10-11 00:20:23 +1224 1224 1225 122.4 244.8 1224 1973-05-09 2024-10-11 00:20:24.000 1973-05-09 2024-10-11 00:20:24 +1225 1225 1226 122.5 245 1225 1973-05-10 2024-10-11 00:20:25.000 1973-05-10 2024-10-11 00:20:25 +1226 1226 1227 122.6 245.20000000000002 1226 1973-05-11 2024-10-11 00:20:26.000 1973-05-11 2024-10-11 00:20:26 +1227 1227 1228 122.7 245.4 1227 1973-05-12 2024-10-11 00:20:27.000 1973-05-12 2024-10-11 00:20:27 +1228 1228 1229 122.8 245.60000000000002 1228 1973-05-13 2024-10-11 00:20:28.000 1973-05-13 2024-10-11 00:20:28 +1229 1229 1230 122.9 245.8 1229 1973-05-14 2024-10-11 00:20:29.000 1973-05-14 2024-10-11 00:20:29 +1230 1230 1231 123 246 1230 1973-05-15 2024-10-11 00:20:30.000 1973-05-15 2024-10-11 00:20:30 +1231 1231 1232 123.1 246.20000000000002 1231 1973-05-16 2024-10-11 00:20:31.000 1973-05-16 2024-10-11 00:20:31 +1232 1232 1233 123.2 246.4 1232 1973-05-17 2024-10-11 00:20:32.000 1973-05-17 2024-10-11 00:20:32 +1233 1233 1234 123.3 246.60000000000002 1233 1973-05-18 2024-10-11 00:20:33.000 1973-05-18 2024-10-11 00:20:33 +1234 1234 1235 123.4 246.8 1234 1973-05-19 2024-10-11 00:20:34.000 1973-05-19 2024-10-11 00:20:34 +1235 1235 1236 123.5 247 1235 1973-05-20 2024-10-11 00:20:35.000 1973-05-20 2024-10-11 00:20:35 +1236 1236 1237 123.6 247.20000000000002 1236 1973-05-21 2024-10-11 00:20:36.000 1973-05-21 2024-10-11 00:20:36 +1237 1237 1238 123.7 247.4 1237 1973-05-22 2024-10-11 00:20:37.000 1973-05-22 2024-10-11 00:20:37 +1238 1238 1239 123.8 247.60000000000002 1238 1973-05-23 2024-10-11 00:20:38.000 1973-05-23 2024-10-11 00:20:38 +1239 1239 1240 123.9 247.8 1239 1973-05-24 2024-10-11 00:20:39.000 1973-05-24 2024-10-11 00:20:39 +1240 1240 1241 124 248 1240 1973-05-25 2024-10-11 00:20:40.000 1973-05-25 2024-10-11 00:20:40 +1241 1241 1242 124.1 248.20000000000002 1241 1973-05-26 2024-10-11 00:20:41.000 1973-05-26 2024-10-11 00:20:41 +1242 1242 1243 124.2 248.4 1242 1973-05-27 2024-10-11 00:20:42.000 1973-05-27 2024-10-11 00:20:42 +1243 1243 1244 124.3 248.60000000000002 1243 1973-05-28 2024-10-11 00:20:43.000 1973-05-28 2024-10-11 00:20:43 +1244 1244 1245 124.4 248.8 1244 1973-05-29 2024-10-11 00:20:44.000 1973-05-29 2024-10-11 00:20:44 +1245 1245 1246 124.5 249 1245 1973-05-30 2024-10-11 00:20:45.000 1973-05-30 2024-10-11 00:20:45 +1246 1246 1247 124.6 249.20000000000002 1246 1973-05-31 2024-10-11 00:20:46.000 1973-05-31 2024-10-11 00:20:46 +1247 1247 1248 124.7 249.4 1247 1973-06-01 2024-10-11 00:20:47.000 1973-06-01 2024-10-11 00:20:47 +1248 1248 1249 124.8 249.60000000000002 1248 1973-06-02 2024-10-11 00:20:48.000 1973-06-02 2024-10-11 00:20:48 +1249 1249 1250 124.9 249.8 1249 1973-06-03 2024-10-11 00:20:49.000 1973-06-03 2024-10-11 00:20:49 +1250 1250 1251 125 250 1250 1973-06-04 2024-10-11 00:20:50.000 1973-06-04 2024-10-11 00:20:50 +1251 1251 1252 125.1 250.20000000000002 1251 1973-06-05 2024-10-11 00:20:51.000 1973-06-05 2024-10-11 00:20:51 +1252 1252 1253 125.2 250.4 1252 1973-06-06 2024-10-11 00:20:52.000 1973-06-06 2024-10-11 00:20:52 +1253 1253 1254 125.3 250.60000000000002 1253 1973-06-07 2024-10-11 00:20:53.000 1973-06-07 2024-10-11 00:20:53 +1254 1254 1255 125.4 250.8 1254 1973-06-08 2024-10-11 00:20:54.000 1973-06-08 2024-10-11 00:20:54 +1255 1255 1256 125.5 251 1255 1973-06-09 2024-10-11 00:20:55.000 1973-06-09 2024-10-11 00:20:55 +1256 1256 1257 125.6 251.20000000000002 1256 1973-06-10 2024-10-11 00:20:56.000 1973-06-10 2024-10-11 00:20:56 +1257 1257 1258 125.7 251.4 1257 1973-06-11 2024-10-11 00:20:57.000 1973-06-11 2024-10-11 00:20:57 +1258 1258 1259 125.8 251.60000000000002 1258 1973-06-12 2024-10-11 00:20:58.000 1973-06-12 2024-10-11 00:20:58 +1259 1259 1260 125.9 251.8 1259 1973-06-13 2024-10-11 00:20:59.000 1973-06-13 2024-10-11 00:20:59 +1260 1260 1261 126 252 1260 1973-06-14 2024-10-11 00:21:00.000 1973-06-14 2024-10-11 00:21:00 +1261 1261 1262 126.1 252.20000000000002 1261 1973-06-15 2024-10-11 00:21:01.000 1973-06-15 2024-10-11 00:21:01 +1262 1262 1263 126.2 252.4 1262 1973-06-16 2024-10-11 00:21:02.000 1973-06-16 2024-10-11 00:21:02 +1263 1263 1264 126.3 252.60000000000002 1263 1973-06-17 2024-10-11 00:21:03.000 1973-06-17 2024-10-11 00:21:03 +1264 1264 1265 126.4 252.8 1264 1973-06-18 2024-10-11 00:21:04.000 1973-06-18 2024-10-11 00:21:04 +1265 1265 1266 126.5 253 1265 1973-06-19 2024-10-11 00:21:05.000 1973-06-19 2024-10-11 00:21:05 +1266 1266 1267 126.6 253.20000000000002 1266 1973-06-20 2024-10-11 00:21:06.000 1973-06-20 2024-10-11 00:21:06 +1267 1267 1268 126.7 253.4 1267 1973-06-21 2024-10-11 00:21:07.000 1973-06-21 2024-10-11 00:21:07 +1268 1268 1269 126.8 253.60000000000002 1268 1973-06-22 2024-10-11 00:21:08.000 1973-06-22 2024-10-11 00:21:08 +1269 1269 1270 126.9 253.8 1269 1973-06-23 2024-10-11 00:21:09.000 1973-06-23 2024-10-11 00:21:09 +1270 1270 1271 127 254 1270 1973-06-24 2024-10-11 00:21:10.000 1973-06-24 2024-10-11 00:21:10 +1271 1271 1272 127.1 254.20000000000002 1271 1973-06-25 2024-10-11 00:21:11.000 1973-06-25 2024-10-11 00:21:11 +1272 1272 1273 127.2 254.4 1272 1973-06-26 2024-10-11 00:21:12.000 1973-06-26 2024-10-11 00:21:12 +1273 1273 1274 127.3 254.60000000000002 1273 1973-06-27 2024-10-11 00:21:13.000 1973-06-27 2024-10-11 00:21:13 +1274 1274 1275 127.4 254.8 1274 1973-06-28 2024-10-11 00:21:14.000 1973-06-28 2024-10-11 00:21:14 +1275 1275 1276 127.5 255 1275 1973-06-29 2024-10-11 00:21:15.000 1973-06-29 2024-10-11 00:21:15 +1276 1276 1277 127.6 255.20000000000002 1276 1973-06-30 2024-10-11 00:21:16.000 1973-06-30 2024-10-11 00:21:16 +1277 1277 1278 127.7 255.4 1277 1973-07-01 2024-10-11 00:21:17.000 1973-07-01 2024-10-11 00:21:17 +1278 1278 1279 127.8 255.60000000000002 1278 1973-07-02 2024-10-11 00:21:18.000 1973-07-02 2024-10-11 00:21:18 +1279 1279 1280 127.9 255.8 1279 1973-07-03 2024-10-11 00:21:19.000 1973-07-03 2024-10-11 00:21:19 +1280 1280 1281 128 256 1280 1973-07-04 2024-10-11 00:21:20.000 1973-07-04 2024-10-11 00:21:20 +1281 1281 1282 128.1 256.2 1281 1973-07-05 2024-10-11 00:21:21.000 1973-07-05 2024-10-11 00:21:21 +1282 1282 1283 128.2 256.40000000000003 1282 1973-07-06 2024-10-11 00:21:22.000 1973-07-06 2024-10-11 00:21:22 +1283 1283 1284 128.3 256.6 1283 1973-07-07 2024-10-11 00:21:23.000 1973-07-07 2024-10-11 00:21:23 +1284 1284 1285 128.4 256.8 1284 1973-07-08 2024-10-11 00:21:24.000 1973-07-08 2024-10-11 00:21:24 +1285 1285 1286 128.5 257 1285 1973-07-09 2024-10-11 00:21:25.000 1973-07-09 2024-10-11 00:21:25 +1286 1286 1287 128.6 257.2 1286 1973-07-10 2024-10-11 00:21:26.000 1973-07-10 2024-10-11 00:21:26 +1287 1287 1288 128.7 257.40000000000003 1287 1973-07-11 2024-10-11 00:21:27.000 1973-07-11 2024-10-11 00:21:27 +1288 1288 1289 128.8 257.6 1288 1973-07-12 2024-10-11 00:21:28.000 1973-07-12 2024-10-11 00:21:28 +1289 1289 1290 128.9 257.8 1289 1973-07-13 2024-10-11 00:21:29.000 1973-07-13 2024-10-11 00:21:29 +1290 1290 1291 129 258 1290 1973-07-14 2024-10-11 00:21:30.000 1973-07-14 2024-10-11 00:21:30 +1291 1291 1292 129.1 258.2 1291 1973-07-15 2024-10-11 00:21:31.000 1973-07-15 2024-10-11 00:21:31 +1292 1292 1293 129.2 258.40000000000003 1292 1973-07-16 2024-10-11 00:21:32.000 1973-07-16 2024-10-11 00:21:32 +1293 1293 1294 129.3 258.6 1293 1973-07-17 2024-10-11 00:21:33.000 1973-07-17 2024-10-11 00:21:33 +1294 1294 1295 129.4 258.8 1294 1973-07-18 2024-10-11 00:21:34.000 1973-07-18 2024-10-11 00:21:34 +1295 1295 1296 129.5 259 1295 1973-07-19 2024-10-11 00:21:35.000 1973-07-19 2024-10-11 00:21:35 +1296 1296 1297 129.6 259.2 1296 1973-07-20 2024-10-11 00:21:36.000 1973-07-20 2024-10-11 00:21:36 +1297 1297 1298 129.7 259.40000000000003 1297 1973-07-21 2024-10-11 00:21:37.000 1973-07-21 2024-10-11 00:21:37 +1298 1298 1299 129.8 259.6 1298 1973-07-22 2024-10-11 00:21:38.000 1973-07-22 2024-10-11 00:21:38 +1299 1299 1300 129.9 259.8 1299 1973-07-23 2024-10-11 00:21:39.000 1973-07-23 2024-10-11 00:21:39 +1300 1300 1301 130 260 1300 1973-07-24 2024-10-11 00:21:40.000 1973-07-24 2024-10-11 00:21:40 +1301 1301 1302 130.1 260.2 1301 1973-07-25 2024-10-11 00:21:41.000 1973-07-25 2024-10-11 00:21:41 +1302 1302 1303 130.2 260.40000000000003 1302 1973-07-26 2024-10-11 00:21:42.000 1973-07-26 2024-10-11 00:21:42 +1303 1303 1304 130.3 260.6 1303 1973-07-27 2024-10-11 00:21:43.000 1973-07-27 2024-10-11 00:21:43 +1304 1304 1305 130.4 260.8 1304 1973-07-28 2024-10-11 00:21:44.000 1973-07-28 2024-10-11 00:21:44 +1305 1305 1306 130.5 261 1305 1973-07-29 2024-10-11 00:21:45.000 1973-07-29 2024-10-11 00:21:45 +1306 1306 1307 130.6 261.2 1306 1973-07-30 2024-10-11 00:21:46.000 1973-07-30 2024-10-11 00:21:46 +1307 1307 1308 130.7 261.40000000000003 1307 1973-07-31 2024-10-11 00:21:47.000 1973-07-31 2024-10-11 00:21:47 +1308 1308 1309 130.8 261.6 1308 1973-08-01 2024-10-11 00:21:48.000 1973-08-01 2024-10-11 00:21:48 +1309 1309 1310 130.9 261.8 1309 1973-08-02 2024-10-11 00:21:49.000 1973-08-02 2024-10-11 00:21:49 +1310 1310 1311 131 262 1310 1973-08-03 2024-10-11 00:21:50.000 1973-08-03 2024-10-11 00:21:50 +1311 1311 1312 131.1 262.2 1311 1973-08-04 2024-10-11 00:21:51.000 1973-08-04 2024-10-11 00:21:51 +1312 1312 1313 131.2 262.40000000000003 1312 1973-08-05 2024-10-11 00:21:52.000 1973-08-05 2024-10-11 00:21:52 +1313 1313 1314 131.3 262.6 1313 1973-08-06 2024-10-11 00:21:53.000 1973-08-06 2024-10-11 00:21:53 +1314 1314 1315 131.4 262.8 1314 1973-08-07 2024-10-11 00:21:54.000 1973-08-07 2024-10-11 00:21:54 +1315 1315 1316 131.5 263 1315 1973-08-08 2024-10-11 00:21:55.000 1973-08-08 2024-10-11 00:21:55 +1316 1316 1317 131.6 263.2 1316 1973-08-09 2024-10-11 00:21:56.000 1973-08-09 2024-10-11 00:21:56 +1317 1317 1318 131.7 263.40000000000003 1317 1973-08-10 2024-10-11 00:21:57.000 1973-08-10 2024-10-11 00:21:57 +1318 1318 1319 131.8 263.6 1318 1973-08-11 2024-10-11 00:21:58.000 1973-08-11 2024-10-11 00:21:58 +1319 1319 1320 131.9 263.8 1319 1973-08-12 2024-10-11 00:21:59.000 1973-08-12 2024-10-11 00:21:59 +1320 1320 1321 132 264 1320 1973-08-13 2024-10-11 00:22:00.000 1973-08-13 2024-10-11 00:22:00 +1321 1321 1322 132.1 264.2 1321 1973-08-14 2024-10-11 00:22:01.000 1973-08-14 2024-10-11 00:22:01 +1322 1322 1323 132.2 264.40000000000003 1322 1973-08-15 2024-10-11 00:22:02.000 1973-08-15 2024-10-11 00:22:02 +1323 1323 1324 132.3 264.6 1323 1973-08-16 2024-10-11 00:22:03.000 1973-08-16 2024-10-11 00:22:03 +1324 1324 1325 132.4 264.8 1324 1973-08-17 2024-10-11 00:22:04.000 1973-08-17 2024-10-11 00:22:04 +1325 1325 1326 132.5 265 1325 1973-08-18 2024-10-11 00:22:05.000 1973-08-18 2024-10-11 00:22:05 +1326 1326 1327 132.6 265.2 1326 1973-08-19 2024-10-11 00:22:06.000 1973-08-19 2024-10-11 00:22:06 +1327 1327 1328 132.7 265.40000000000003 1327 1973-08-20 2024-10-11 00:22:07.000 1973-08-20 2024-10-11 00:22:07 +1328 1328 1329 132.8 265.6 1328 1973-08-21 2024-10-11 00:22:08.000 1973-08-21 2024-10-11 00:22:08 +1329 1329 1330 132.9 265.8 1329 1973-08-22 2024-10-11 00:22:09.000 1973-08-22 2024-10-11 00:22:09 +1330 1330 1331 133 266 1330 1973-08-23 2024-10-11 00:22:10.000 1973-08-23 2024-10-11 00:22:10 +1331 1331 1332 133.1 266.2 1331 1973-08-24 2024-10-11 00:22:11.000 1973-08-24 2024-10-11 00:22:11 +1332 1332 1333 133.2 266.40000000000003 1332 1973-08-25 2024-10-11 00:22:12.000 1973-08-25 2024-10-11 00:22:12 +1333 1333 1334 133.3 266.6 1333 1973-08-26 2024-10-11 00:22:13.000 1973-08-26 2024-10-11 00:22:13 +1334 1334 1335 133.4 266.8 1334 1973-08-27 2024-10-11 00:22:14.000 1973-08-27 2024-10-11 00:22:14 +1335 1335 1336 133.5 267 1335 1973-08-28 2024-10-11 00:22:15.000 1973-08-28 2024-10-11 00:22:15 +1336 1336 1337 133.6 267.2 1336 1973-08-29 2024-10-11 00:22:16.000 1973-08-29 2024-10-11 00:22:16 +1337 1337 1338 133.7 267.40000000000003 1337 1973-08-30 2024-10-11 00:22:17.000 1973-08-30 2024-10-11 00:22:17 +1338 1338 1339 133.8 267.6 1338 1973-08-31 2024-10-11 00:22:18.000 1973-08-31 2024-10-11 00:22:18 +1339 1339 1340 133.9 267.8 1339 1973-09-01 2024-10-11 00:22:19.000 1973-09-01 2024-10-11 00:22:19 +1340 1340 1341 134 268 1340 1973-09-02 2024-10-11 00:22:20.000 1973-09-02 2024-10-11 00:22:20 +1341 1341 1342 134.1 268.2 1341 1973-09-03 2024-10-11 00:22:21.000 1973-09-03 2024-10-11 00:22:21 +1342 1342 1343 134.2 268.40000000000003 1342 1973-09-04 2024-10-11 00:22:22.000 1973-09-04 2024-10-11 00:22:22 +1343 1343 1344 134.3 268.6 1343 1973-09-05 2024-10-11 00:22:23.000 1973-09-05 2024-10-11 00:22:23 +1344 1344 1345 134.4 268.8 1344 1973-09-06 2024-10-11 00:22:24.000 1973-09-06 2024-10-11 00:22:24 +1345 1345 1346 134.5 269 1345 1973-09-07 2024-10-11 00:22:25.000 1973-09-07 2024-10-11 00:22:25 +1346 1346 1347 134.6 269.2 1346 1973-09-08 2024-10-11 00:22:26.000 1973-09-08 2024-10-11 00:22:26 +1347 1347 1348 134.7 269.40000000000003 1347 1973-09-09 2024-10-11 00:22:27.000 1973-09-09 2024-10-11 00:22:27 +1348 1348 1349 134.8 269.6 1348 1973-09-10 2024-10-11 00:22:28.000 1973-09-10 2024-10-11 00:22:28 +1349 1349 1350 134.9 269.8 1349 1973-09-11 2024-10-11 00:22:29.000 1973-09-11 2024-10-11 00:22:29 +1350 1350 1351 135 270 1350 1973-09-12 2024-10-11 00:22:30.000 1973-09-12 2024-10-11 00:22:30 +1351 1351 1352 135.1 270.2 1351 1973-09-13 2024-10-11 00:22:31.000 1973-09-13 2024-10-11 00:22:31 +1352 1352 1353 135.2 270.40000000000003 1352 1973-09-14 2024-10-11 00:22:32.000 1973-09-14 2024-10-11 00:22:32 +1353 1353 1354 135.3 270.6 1353 1973-09-15 2024-10-11 00:22:33.000 1973-09-15 2024-10-11 00:22:33 +1354 1354 1355 135.4 270.8 1354 1973-09-16 2024-10-11 00:22:34.000 1973-09-16 2024-10-11 00:22:34 +1355 1355 1356 135.5 271 1355 1973-09-17 2024-10-11 00:22:35.000 1973-09-17 2024-10-11 00:22:35 +1356 1356 1357 135.6 271.2 1356 1973-09-18 2024-10-11 00:22:36.000 1973-09-18 2024-10-11 00:22:36 +1357 1357 1358 135.7 271.40000000000003 1357 1973-09-19 2024-10-11 00:22:37.000 1973-09-19 2024-10-11 00:22:37 +1358 1358 1359 135.8 271.6 1358 1973-09-20 2024-10-11 00:22:38.000 1973-09-20 2024-10-11 00:22:38 +1359 1359 1360 135.9 271.8 1359 1973-09-21 2024-10-11 00:22:39.000 1973-09-21 2024-10-11 00:22:39 +1360 1360 1361 136 272 1360 1973-09-22 2024-10-11 00:22:40.000 1973-09-22 2024-10-11 00:22:40 +1361 1361 1362 136.1 272.2 1361 1973-09-23 2024-10-11 00:22:41.000 1973-09-23 2024-10-11 00:22:41 +1362 1362 1363 136.2 272.40000000000003 1362 1973-09-24 2024-10-11 00:22:42.000 1973-09-24 2024-10-11 00:22:42 +1363 1363 1364 136.3 272.6 1363 1973-09-25 2024-10-11 00:22:43.000 1973-09-25 2024-10-11 00:22:43 +1364 1364 1365 136.4 272.8 1364 1973-09-26 2024-10-11 00:22:44.000 1973-09-26 2024-10-11 00:22:44 +1365 1365 1366 136.5 273 1365 1973-09-27 2024-10-11 00:22:45.000 1973-09-27 2024-10-11 00:22:45 +1366 1366 1367 136.6 273.2 1366 1973-09-28 2024-10-11 00:22:46.000 1973-09-28 2024-10-11 00:22:46 +1367 1367 1368 136.7 273.40000000000003 1367 1973-09-29 2024-10-11 00:22:47.000 1973-09-29 2024-10-11 00:22:47 +1368 1368 1369 136.8 273.6 1368 1973-09-30 2024-10-11 00:22:48.000 1973-09-30 2024-10-11 00:22:48 +1369 1369 1370 136.9 273.8 1369 1973-10-01 2024-10-11 00:22:49.000 1973-10-01 2024-10-11 00:22:49 +1370 1370 1371 137 274 1370 1973-10-02 2024-10-11 00:22:50.000 1973-10-02 2024-10-11 00:22:50 +1371 1371 1372 137.1 274.2 1371 1973-10-03 2024-10-11 00:22:51.000 1973-10-03 2024-10-11 00:22:51 +1372 1372 1373 137.2 274.40000000000003 1372 1973-10-04 2024-10-11 00:22:52.000 1973-10-04 2024-10-11 00:22:52 +1373 1373 1374 137.3 274.6 1373 1973-10-05 2024-10-11 00:22:53.000 1973-10-05 2024-10-11 00:22:53 +1374 1374 1375 137.4 274.8 1374 1973-10-06 2024-10-11 00:22:54.000 1973-10-06 2024-10-11 00:22:54 +1375 1375 1376 137.5 275 1375 1973-10-07 2024-10-11 00:22:55.000 1973-10-07 2024-10-11 00:22:55 +1376 1376 1377 137.6 275.2 1376 1973-10-08 2024-10-11 00:22:56.000 1973-10-08 2024-10-11 00:22:56 +1377 1377 1378 137.7 275.40000000000003 1377 1973-10-09 2024-10-11 00:22:57.000 1973-10-09 2024-10-11 00:22:57 +1378 1378 1379 137.8 275.6 1378 1973-10-10 2024-10-11 00:22:58.000 1973-10-10 2024-10-11 00:22:58 +1379 1379 1380 137.9 275.8 1379 1973-10-11 2024-10-11 00:22:59.000 1973-10-11 2024-10-11 00:22:59 +1380 1380 1381 138 276 1380 1973-10-12 2024-10-11 00:23:00.000 1973-10-12 2024-10-11 00:23:00 +1381 1381 1382 138.1 276.2 1381 1973-10-13 2024-10-11 00:23:01.000 1973-10-13 2024-10-11 00:23:01 +1382 1382 1383 138.2 276.40000000000003 1382 1973-10-14 2024-10-11 00:23:02.000 1973-10-14 2024-10-11 00:23:02 +1383 1383 1384 138.3 276.6 1383 1973-10-15 2024-10-11 00:23:03.000 1973-10-15 2024-10-11 00:23:03 +1384 1384 1385 138.4 276.8 1384 1973-10-16 2024-10-11 00:23:04.000 1973-10-16 2024-10-11 00:23:04 +1385 1385 1386 138.5 277 1385 1973-10-17 2024-10-11 00:23:05.000 1973-10-17 2024-10-11 00:23:05 +1386 1386 1387 138.6 277.2 1386 1973-10-18 2024-10-11 00:23:06.000 1973-10-18 2024-10-11 00:23:06 +1387 1387 1388 138.7 277.40000000000003 1387 1973-10-19 2024-10-11 00:23:07.000 1973-10-19 2024-10-11 00:23:07 +1388 1388 1389 138.8 277.6 1388 1973-10-20 2024-10-11 00:23:08.000 1973-10-20 2024-10-11 00:23:08 +1389 1389 1390 138.9 277.8 1389 1973-10-21 2024-10-11 00:23:09.000 1973-10-21 2024-10-11 00:23:09 +1390 1390 1391 139 278 1390 1973-10-22 2024-10-11 00:23:10.000 1973-10-22 2024-10-11 00:23:10 +1391 1391 1392 139.1 278.2 1391 1973-10-23 2024-10-11 00:23:11.000 1973-10-23 2024-10-11 00:23:11 +1392 1392 1393 139.2 278.40000000000003 1392 1973-10-24 2024-10-11 00:23:12.000 1973-10-24 2024-10-11 00:23:12 +1393 1393 1394 139.3 278.6 1393 1973-10-25 2024-10-11 00:23:13.000 1973-10-25 2024-10-11 00:23:13 +1394 1394 1395 139.4 278.8 1394 1973-10-26 2024-10-11 00:23:14.000 1973-10-26 2024-10-11 00:23:14 +1395 1395 1396 139.5 279 1395 1973-10-27 2024-10-11 00:23:15.000 1973-10-27 2024-10-11 00:23:15 +1396 1396 1397 139.6 279.2 1396 1973-10-28 2024-10-11 00:23:16.000 1973-10-28 2024-10-11 00:23:16 +1397 1397 1398 139.7 279.40000000000003 1397 1973-10-29 2024-10-11 00:23:17.000 1973-10-29 2024-10-11 00:23:17 +1398 1398 1399 139.8 279.6 1398 1973-10-30 2024-10-11 00:23:18.000 1973-10-30 2024-10-11 00:23:18 +1399 1399 1400 139.9 279.8 1399 1973-10-31 2024-10-11 00:23:19.000 1973-10-31 2024-10-11 00:23:19 +1400 1400 1401 140 280 1400 1973-11-01 2024-10-11 00:23:20.000 1973-11-01 2024-10-11 00:23:20 +1401 1401 1402 140.1 280.2 1401 1973-11-02 2024-10-11 00:23:21.000 1973-11-02 2024-10-11 00:23:21 +1402 1402 1403 140.2 280.40000000000003 1402 1973-11-03 2024-10-11 00:23:22.000 1973-11-03 2024-10-11 00:23:22 +1403 1403 1404 140.3 280.6 1403 1973-11-04 2024-10-11 00:23:23.000 1973-11-04 2024-10-11 00:23:23 +1404 1404 1405 140.4 280.8 1404 1973-11-05 2024-10-11 00:23:24.000 1973-11-05 2024-10-11 00:23:24 +1405 1405 1406 140.5 281 1405 1973-11-06 2024-10-11 00:23:25.000 1973-11-06 2024-10-11 00:23:25 +1406 1406 1407 140.6 281.2 1406 1973-11-07 2024-10-11 00:23:26.000 1973-11-07 2024-10-11 00:23:26 +1407 1407 1408 140.7 281.40000000000003 1407 1973-11-08 2024-10-11 00:23:27.000 1973-11-08 2024-10-11 00:23:27 +1408 1408 1409 140.8 281.6 1408 1973-11-09 2024-10-11 00:23:28.000 1973-11-09 2024-10-11 00:23:28 +1409 1409 1410 140.9 281.8 1409 1973-11-10 2024-10-11 00:23:29.000 1973-11-10 2024-10-11 00:23:29 +1410 1410 1411 141 282 1410 1973-11-11 2024-10-11 00:23:30.000 1973-11-11 2024-10-11 00:23:30 +1411 1411 1412 141.1 282.2 1411 1973-11-12 2024-10-11 00:23:31.000 1973-11-12 2024-10-11 00:23:31 +1412 1412 1413 141.2 282.40000000000003 1412 1973-11-13 2024-10-11 00:23:32.000 1973-11-13 2024-10-11 00:23:32 +1413 1413 1414 141.3 282.6 1413 1973-11-14 2024-10-11 00:23:33.000 1973-11-14 2024-10-11 00:23:33 +1414 1414 1415 141.4 282.8 1414 1973-11-15 2024-10-11 00:23:34.000 1973-11-15 2024-10-11 00:23:34 +1415 1415 1416 141.5 283 1415 1973-11-16 2024-10-11 00:23:35.000 1973-11-16 2024-10-11 00:23:35 +1416 1416 1417 141.6 283.2 1416 1973-11-17 2024-10-11 00:23:36.000 1973-11-17 2024-10-11 00:23:36 +1417 1417 1418 141.7 283.40000000000003 1417 1973-11-18 2024-10-11 00:23:37.000 1973-11-18 2024-10-11 00:23:37 +1418 1418 1419 141.8 283.6 1418 1973-11-19 2024-10-11 00:23:38.000 1973-11-19 2024-10-11 00:23:38 +1419 1419 1420 141.9 283.8 1419 1973-11-20 2024-10-11 00:23:39.000 1973-11-20 2024-10-11 00:23:39 +1420 1420 1421 142 284 1420 1973-11-21 2024-10-11 00:23:40.000 1973-11-21 2024-10-11 00:23:40 +1421 1421 1422 142.1 284.2 1421 1973-11-22 2024-10-11 00:23:41.000 1973-11-22 2024-10-11 00:23:41 +1422 1422 1423 142.2 284.40000000000003 1422 1973-11-23 2024-10-11 00:23:42.000 1973-11-23 2024-10-11 00:23:42 +1423 1423 1424 142.3 284.6 1423 1973-11-24 2024-10-11 00:23:43.000 1973-11-24 2024-10-11 00:23:43 +1424 1424 1425 142.4 284.8 1424 1973-11-25 2024-10-11 00:23:44.000 1973-11-25 2024-10-11 00:23:44 +1425 1425 1426 142.5 285 1425 1973-11-26 2024-10-11 00:23:45.000 1973-11-26 2024-10-11 00:23:45 +1426 1426 1427 142.6 285.2 1426 1973-11-27 2024-10-11 00:23:46.000 1973-11-27 2024-10-11 00:23:46 +1427 1427 1428 142.7 285.40000000000003 1427 1973-11-28 2024-10-11 00:23:47.000 1973-11-28 2024-10-11 00:23:47 +1428 1428 1429 142.8 285.6 1428 1973-11-29 2024-10-11 00:23:48.000 1973-11-29 2024-10-11 00:23:48 +1429 1429 1430 142.9 285.8 1429 1973-11-30 2024-10-11 00:23:49.000 1973-11-30 2024-10-11 00:23:49 +1430 1430 1431 143 286 1430 1973-12-01 2024-10-11 00:23:50.000 1973-12-01 2024-10-11 00:23:50 +1431 1431 1432 143.1 286.2 1431 1973-12-02 2024-10-11 00:23:51.000 1973-12-02 2024-10-11 00:23:51 +1432 1432 1433 143.2 286.40000000000003 1432 1973-12-03 2024-10-11 00:23:52.000 1973-12-03 2024-10-11 00:23:52 +1433 1433 1434 143.3 286.6 1433 1973-12-04 2024-10-11 00:23:53.000 1973-12-04 2024-10-11 00:23:53 +1434 1434 1435 143.4 286.8 1434 1973-12-05 2024-10-11 00:23:54.000 1973-12-05 2024-10-11 00:23:54 +1435 1435 1436 143.5 287 1435 1973-12-06 2024-10-11 00:23:55.000 1973-12-06 2024-10-11 00:23:55 +1436 1436 1437 143.6 287.2 1436 1973-12-07 2024-10-11 00:23:56.000 1973-12-07 2024-10-11 00:23:56 +1437 1437 1438 143.7 287.40000000000003 1437 1973-12-08 2024-10-11 00:23:57.000 1973-12-08 2024-10-11 00:23:57 +1438 1438 1439 143.8 287.6 1438 1973-12-09 2024-10-11 00:23:58.000 1973-12-09 2024-10-11 00:23:58 +1439 1439 1440 143.9 287.8 1439 1973-12-10 2024-10-11 00:23:59.000 1973-12-10 2024-10-11 00:23:59 +1440 1440 1441 144 288 1440 1973-12-11 2024-10-11 00:24:00.000 1973-12-11 2024-10-11 00:24:00 +1441 1441 1442 144.1 288.2 1441 1973-12-12 2024-10-11 00:24:01.000 1973-12-12 2024-10-11 00:24:01 +1442 1442 1443 144.2 288.40000000000003 1442 1973-12-13 2024-10-11 00:24:02.000 1973-12-13 2024-10-11 00:24:02 +1443 1443 1444 144.3 288.6 1443 1973-12-14 2024-10-11 00:24:03.000 1973-12-14 2024-10-11 00:24:03 +1444 1444 1445 144.4 288.8 1444 1973-12-15 2024-10-11 00:24:04.000 1973-12-15 2024-10-11 00:24:04 +1445 1445 1446 144.5 289 1445 1973-12-16 2024-10-11 00:24:05.000 1973-12-16 2024-10-11 00:24:05 +1446 1446 1447 144.6 289.2 1446 1973-12-17 2024-10-11 00:24:06.000 1973-12-17 2024-10-11 00:24:06 +1447 1447 1448 144.7 289.40000000000003 1447 1973-12-18 2024-10-11 00:24:07.000 1973-12-18 2024-10-11 00:24:07 +1448 1448 1449 144.8 289.6 1448 1973-12-19 2024-10-11 00:24:08.000 1973-12-19 2024-10-11 00:24:08 +1449 1449 1450 144.9 289.8 1449 1973-12-20 2024-10-11 00:24:09.000 1973-12-20 2024-10-11 00:24:09 +1450 1450 1451 145 290 1450 1973-12-21 2024-10-11 00:24:10.000 1973-12-21 2024-10-11 00:24:10 +1451 1451 1452 145.1 290.2 1451 1973-12-22 2024-10-11 00:24:11.000 1973-12-22 2024-10-11 00:24:11 +1452 1452 1453 145.2 290.40000000000003 1452 1973-12-23 2024-10-11 00:24:12.000 1973-12-23 2024-10-11 00:24:12 +1453 1453 1454 145.3 290.6 1453 1973-12-24 2024-10-11 00:24:13.000 1973-12-24 2024-10-11 00:24:13 +1454 1454 1455 145.4 290.8 1454 1973-12-25 2024-10-11 00:24:14.000 1973-12-25 2024-10-11 00:24:14 +1455 1455 1456 145.5 291 1455 1973-12-26 2024-10-11 00:24:15.000 1973-12-26 2024-10-11 00:24:15 +1456 1456 1457 145.6 291.2 1456 1973-12-27 2024-10-11 00:24:16.000 1973-12-27 2024-10-11 00:24:16 +1457 1457 1458 145.7 291.40000000000003 1457 1973-12-28 2024-10-11 00:24:17.000 1973-12-28 2024-10-11 00:24:17 +1458 1458 1459 145.8 291.6 1458 1973-12-29 2024-10-11 00:24:18.000 1973-12-29 2024-10-11 00:24:18 +1459 1459 1460 145.9 291.8 1459 1973-12-30 2024-10-11 00:24:19.000 1973-12-30 2024-10-11 00:24:19 +1460 1460 1461 146 292 1460 1973-12-31 2024-10-11 00:24:20.000 1973-12-31 2024-10-11 00:24:20 +1461 1461 1462 146.1 292.2 1461 1974-01-01 2024-10-11 00:24:21.000 1974-01-01 2024-10-11 00:24:21 +1462 1462 1463 146.2 292.40000000000003 1462 1974-01-02 2024-10-11 00:24:22.000 1974-01-02 2024-10-11 00:24:22 +1463 1463 1464 146.3 292.6 1463 1974-01-03 2024-10-11 00:24:23.000 1974-01-03 2024-10-11 00:24:23 +1464 1464 1465 146.4 292.8 1464 1974-01-04 2024-10-11 00:24:24.000 1974-01-04 2024-10-11 00:24:24 +1465 1465 1466 146.5 293 1465 1974-01-05 2024-10-11 00:24:25.000 1974-01-05 2024-10-11 00:24:25 +1466 1466 1467 146.6 293.2 1466 1974-01-06 2024-10-11 00:24:26.000 1974-01-06 2024-10-11 00:24:26 +1467 1467 1468 146.7 293.40000000000003 1467 1974-01-07 2024-10-11 00:24:27.000 1974-01-07 2024-10-11 00:24:27 +1468 1468 1469 146.8 293.6 1468 1974-01-08 2024-10-11 00:24:28.000 1974-01-08 2024-10-11 00:24:28 +1469 1469 1470 146.9 293.8 1469 1974-01-09 2024-10-11 00:24:29.000 1974-01-09 2024-10-11 00:24:29 +1470 1470 1471 147 294 1470 1974-01-10 2024-10-11 00:24:30.000 1974-01-10 2024-10-11 00:24:30 +1471 1471 1472 147.1 294.2 1471 1974-01-11 2024-10-11 00:24:31.000 1974-01-11 2024-10-11 00:24:31 +1472 1472 1473 147.2 294.40000000000003 1472 1974-01-12 2024-10-11 00:24:32.000 1974-01-12 2024-10-11 00:24:32 +1473 1473 1474 147.3 294.6 1473 1974-01-13 2024-10-11 00:24:33.000 1974-01-13 2024-10-11 00:24:33 +1474 1474 1475 147.4 294.8 1474 1974-01-14 2024-10-11 00:24:34.000 1974-01-14 2024-10-11 00:24:34 +1475 1475 1476 147.5 295 1475 1974-01-15 2024-10-11 00:24:35.000 1974-01-15 2024-10-11 00:24:35 +1476 1476 1477 147.6 295.2 1476 1974-01-16 2024-10-11 00:24:36.000 1974-01-16 2024-10-11 00:24:36 +1477 1477 1478 147.7 295.40000000000003 1477 1974-01-17 2024-10-11 00:24:37.000 1974-01-17 2024-10-11 00:24:37 +1478 1478 1479 147.8 295.6 1478 1974-01-18 2024-10-11 00:24:38.000 1974-01-18 2024-10-11 00:24:38 +1479 1479 1480 147.9 295.8 1479 1974-01-19 2024-10-11 00:24:39.000 1974-01-19 2024-10-11 00:24:39 +1480 1480 1481 148 296 1480 1974-01-20 2024-10-11 00:24:40.000 1974-01-20 2024-10-11 00:24:40 +1481 1481 1482 148.1 296.2 1481 1974-01-21 2024-10-11 00:24:41.000 1974-01-21 2024-10-11 00:24:41 +1482 1482 1483 148.2 296.40000000000003 1482 1974-01-22 2024-10-11 00:24:42.000 1974-01-22 2024-10-11 00:24:42 +1483 1483 1484 148.3 296.6 1483 1974-01-23 2024-10-11 00:24:43.000 1974-01-23 2024-10-11 00:24:43 +1484 1484 1485 148.4 296.8 1484 1974-01-24 2024-10-11 00:24:44.000 1974-01-24 2024-10-11 00:24:44 +1485 1485 1486 148.5 297 1485 1974-01-25 2024-10-11 00:24:45.000 1974-01-25 2024-10-11 00:24:45 +1486 1486 1487 148.6 297.2 1486 1974-01-26 2024-10-11 00:24:46.000 1974-01-26 2024-10-11 00:24:46 +1487 1487 1488 148.7 297.40000000000003 1487 1974-01-27 2024-10-11 00:24:47.000 1974-01-27 2024-10-11 00:24:47 +1488 1488 1489 148.8 297.6 1488 1974-01-28 2024-10-11 00:24:48.000 1974-01-28 2024-10-11 00:24:48 +1489 1489 1490 148.9 297.8 1489 1974-01-29 2024-10-11 00:24:49.000 1974-01-29 2024-10-11 00:24:49 +1490 1490 1491 149 298 1490 1974-01-30 2024-10-11 00:24:50.000 1974-01-30 2024-10-11 00:24:50 +1491 1491 1492 149.1 298.2 1491 1974-01-31 2024-10-11 00:24:51.000 1974-01-31 2024-10-11 00:24:51 +1492 1492 1493 149.2 298.40000000000003 1492 1974-02-01 2024-10-11 00:24:52.000 1974-02-01 2024-10-11 00:24:52 +1493 1493 1494 149.3 298.6 1493 1974-02-02 2024-10-11 00:24:53.000 1974-02-02 2024-10-11 00:24:53 +1494 1494 1495 149.4 298.8 1494 1974-02-03 2024-10-11 00:24:54.000 1974-02-03 2024-10-11 00:24:54 +1495 1495 1496 149.5 299 1495 1974-02-04 2024-10-11 00:24:55.000 1974-02-04 2024-10-11 00:24:55 +1496 1496 1497 149.6 299.2 1496 1974-02-05 2024-10-11 00:24:56.000 1974-02-05 2024-10-11 00:24:56 +1497 1497 1498 149.7 299.40000000000003 1497 1974-02-06 2024-10-11 00:24:57.000 1974-02-06 2024-10-11 00:24:57 +1498 1498 1499 149.8 299.6 1498 1974-02-07 2024-10-11 00:24:58.000 1974-02-07 2024-10-11 00:24:58 +1499 1499 1500 149.9 299.8 1499 1974-02-08 2024-10-11 00:24:59.000 1974-02-08 2024-10-11 00:24:59 +1500 1500 1501 150 300 1500 1974-02-09 2024-10-11 00:25:00.000 1974-02-09 2024-10-11 00:25:00 +1501 1501 1502 150.1 300.2 1501 1974-02-10 2024-10-11 00:25:01.000 1974-02-10 2024-10-11 00:25:01 +1502 1502 1503 150.2 300.40000000000003 1502 1974-02-11 2024-10-11 00:25:02.000 1974-02-11 2024-10-11 00:25:02 +1503 1503 1504 150.3 300.6 1503 1974-02-12 2024-10-11 00:25:03.000 1974-02-12 2024-10-11 00:25:03 +1504 1504 1505 150.4 300.8 1504 1974-02-13 2024-10-11 00:25:04.000 1974-02-13 2024-10-11 00:25:04 +1505 1505 1506 150.5 301 1505 1974-02-14 2024-10-11 00:25:05.000 1974-02-14 2024-10-11 00:25:05 +1506 1506 1507 150.6 301.2 1506 1974-02-15 2024-10-11 00:25:06.000 1974-02-15 2024-10-11 00:25:06 +1507 1507 1508 150.7 301.40000000000003 1507 1974-02-16 2024-10-11 00:25:07.000 1974-02-16 2024-10-11 00:25:07 +1508 1508 1509 150.8 301.6 1508 1974-02-17 2024-10-11 00:25:08.000 1974-02-17 2024-10-11 00:25:08 +1509 1509 1510 150.9 301.8 1509 1974-02-18 2024-10-11 00:25:09.000 1974-02-18 2024-10-11 00:25:09 +1510 1510 1511 151 302 1510 1974-02-19 2024-10-11 00:25:10.000 1974-02-19 2024-10-11 00:25:10 +1511 1511 1512 151.1 302.2 1511 1974-02-20 2024-10-11 00:25:11.000 1974-02-20 2024-10-11 00:25:11 +1512 1512 1513 151.2 302.40000000000003 1512 1974-02-21 2024-10-11 00:25:12.000 1974-02-21 2024-10-11 00:25:12 +1513 1513 1514 151.3 302.6 1513 1974-02-22 2024-10-11 00:25:13.000 1974-02-22 2024-10-11 00:25:13 +1514 1514 1515 151.4 302.8 1514 1974-02-23 2024-10-11 00:25:14.000 1974-02-23 2024-10-11 00:25:14 +1515 1515 1516 151.5 303 1515 1974-02-24 2024-10-11 00:25:15.000 1974-02-24 2024-10-11 00:25:15 +1516 1516 1517 151.6 303.2 1516 1974-02-25 2024-10-11 00:25:16.000 1974-02-25 2024-10-11 00:25:16 +1517 1517 1518 151.7 303.40000000000003 1517 1974-02-26 2024-10-11 00:25:17.000 1974-02-26 2024-10-11 00:25:17 +1518 1518 1519 151.8 303.6 1518 1974-02-27 2024-10-11 00:25:18.000 1974-02-27 2024-10-11 00:25:18 +1519 1519 1520 151.9 303.8 1519 1974-02-28 2024-10-11 00:25:19.000 1974-02-28 2024-10-11 00:25:19 +1520 1520 1521 152 304 1520 1974-03-01 2024-10-11 00:25:20.000 1974-03-01 2024-10-11 00:25:20 +1521 1521 1522 152.1 304.2 1521 1974-03-02 2024-10-11 00:25:21.000 1974-03-02 2024-10-11 00:25:21 +1522 1522 1523 152.2 304.40000000000003 1522 1974-03-03 2024-10-11 00:25:22.000 1974-03-03 2024-10-11 00:25:22 +1523 1523 1524 152.3 304.6 1523 1974-03-04 2024-10-11 00:25:23.000 1974-03-04 2024-10-11 00:25:23 +1524 1524 1525 152.4 304.8 1524 1974-03-05 2024-10-11 00:25:24.000 1974-03-05 2024-10-11 00:25:24 +1525 1525 1526 152.5 305 1525 1974-03-06 2024-10-11 00:25:25.000 1974-03-06 2024-10-11 00:25:25 +1526 1526 1527 152.6 305.2 1526 1974-03-07 2024-10-11 00:25:26.000 1974-03-07 2024-10-11 00:25:26 +1527 1527 1528 152.7 305.40000000000003 1527 1974-03-08 2024-10-11 00:25:27.000 1974-03-08 2024-10-11 00:25:27 +1528 1528 1529 152.8 305.6 1528 1974-03-09 2024-10-11 00:25:28.000 1974-03-09 2024-10-11 00:25:28 +1529 1529 1530 152.9 305.8 1529 1974-03-10 2024-10-11 00:25:29.000 1974-03-10 2024-10-11 00:25:29 +1530 1530 1531 153 306 1530 1974-03-11 2024-10-11 00:25:30.000 1974-03-11 2024-10-11 00:25:30 +1531 1531 1532 153.1 306.2 1531 1974-03-12 2024-10-11 00:25:31.000 1974-03-12 2024-10-11 00:25:31 +1532 1532 1533 153.2 306.40000000000003 1532 1974-03-13 2024-10-11 00:25:32.000 1974-03-13 2024-10-11 00:25:32 +1533 1533 1534 153.3 306.6 1533 1974-03-14 2024-10-11 00:25:33.000 1974-03-14 2024-10-11 00:25:33 +1534 1534 1535 153.4 306.8 1534 1974-03-15 2024-10-11 00:25:34.000 1974-03-15 2024-10-11 00:25:34 +1535 1535 1536 153.5 307 1535 1974-03-16 2024-10-11 00:25:35.000 1974-03-16 2024-10-11 00:25:35 +1536 1536 1537 153.6 307.20000000000005 1536 1974-03-17 2024-10-11 00:25:36.000 1974-03-17 2024-10-11 00:25:36 +1537 1537 1538 153.7 307.40000000000003 1537 1974-03-18 2024-10-11 00:25:37.000 1974-03-18 2024-10-11 00:25:37 +1538 1538 1539 153.8 307.6 1538 1974-03-19 2024-10-11 00:25:38.000 1974-03-19 2024-10-11 00:25:38 +1539 1539 1540 153.9 307.8 1539 1974-03-20 2024-10-11 00:25:39.000 1974-03-20 2024-10-11 00:25:39 +1540 1540 1541 154 308 1540 1974-03-21 2024-10-11 00:25:40.000 1974-03-21 2024-10-11 00:25:40 +1541 1541 1542 154.1 308.20000000000005 1541 1974-03-22 2024-10-11 00:25:41.000 1974-03-22 2024-10-11 00:25:41 +1542 1542 1543 154.2 308.40000000000003 1542 1974-03-23 2024-10-11 00:25:42.000 1974-03-23 2024-10-11 00:25:42 +1543 1543 1544 154.3 308.6 1543 1974-03-24 2024-10-11 00:25:43.000 1974-03-24 2024-10-11 00:25:43 +1544 1544 1545 154.4 308.8 1544 1974-03-25 2024-10-11 00:25:44.000 1974-03-25 2024-10-11 00:25:44 +1545 1545 1546 154.5 309 1545 1974-03-26 2024-10-11 00:25:45.000 1974-03-26 2024-10-11 00:25:45 +1546 1546 1547 154.6 309.20000000000005 1546 1974-03-27 2024-10-11 00:25:46.000 1974-03-27 2024-10-11 00:25:46 +1547 1547 1548 154.7 309.40000000000003 1547 1974-03-28 2024-10-11 00:25:47.000 1974-03-28 2024-10-11 00:25:47 +1548 1548 1549 154.8 309.6 1548 1974-03-29 2024-10-11 00:25:48.000 1974-03-29 2024-10-11 00:25:48 +1549 1549 1550 154.9 309.8 1549 1974-03-30 2024-10-11 00:25:49.000 1974-03-30 2024-10-11 00:25:49 +1550 1550 1551 155 310 1550 1974-03-31 2024-10-11 00:25:50.000 1974-03-31 2024-10-11 00:25:50 +1551 1551 1552 155.1 310.20000000000005 1551 1974-04-01 2024-10-11 00:25:51.000 1974-04-01 2024-10-11 00:25:51 +1552 1552 1553 155.2 310.40000000000003 1552 1974-04-02 2024-10-11 00:25:52.000 1974-04-02 2024-10-11 00:25:52 +1553 1553 1554 155.3 310.6 1553 1974-04-03 2024-10-11 00:25:53.000 1974-04-03 2024-10-11 00:25:53 +1554 1554 1555 155.4 310.8 1554 1974-04-04 2024-10-11 00:25:54.000 1974-04-04 2024-10-11 00:25:54 +1555 1555 1556 155.5 311 1555 1974-04-05 2024-10-11 00:25:55.000 1974-04-05 2024-10-11 00:25:55 +1556 1556 1557 155.6 311.20000000000005 1556 1974-04-06 2024-10-11 00:25:56.000 1974-04-06 2024-10-11 00:25:56 +1557 1557 1558 155.7 311.40000000000003 1557 1974-04-07 2024-10-11 00:25:57.000 1974-04-07 2024-10-11 00:25:57 +1558 1558 1559 155.8 311.6 1558 1974-04-08 2024-10-11 00:25:58.000 1974-04-08 2024-10-11 00:25:58 +1559 1559 1560 155.9 311.8 1559 1974-04-09 2024-10-11 00:25:59.000 1974-04-09 2024-10-11 00:25:59 +1560 1560 1561 156 312 1560 1974-04-10 2024-10-11 00:26:00.000 1974-04-10 2024-10-11 00:26:00 +1561 1561 1562 156.1 312.20000000000005 1561 1974-04-11 2024-10-11 00:26:01.000 1974-04-11 2024-10-11 00:26:01 +1562 1562 1563 156.2 312.40000000000003 1562 1974-04-12 2024-10-11 00:26:02.000 1974-04-12 2024-10-11 00:26:02 +1563 1563 1564 156.3 312.6 1563 1974-04-13 2024-10-11 00:26:03.000 1974-04-13 2024-10-11 00:26:03 +1564 1564 1565 156.4 312.8 1564 1974-04-14 2024-10-11 00:26:04.000 1974-04-14 2024-10-11 00:26:04 +1565 1565 1566 156.5 313 1565 1974-04-15 2024-10-11 00:26:05.000 1974-04-15 2024-10-11 00:26:05 +1566 1566 1567 156.6 313.20000000000005 1566 1974-04-16 2024-10-11 00:26:06.000 1974-04-16 2024-10-11 00:26:06 +1567 1567 1568 156.7 313.40000000000003 1567 1974-04-17 2024-10-11 00:26:07.000 1974-04-17 2024-10-11 00:26:07 +1568 1568 1569 156.8 313.6 1568 1974-04-18 2024-10-11 00:26:08.000 1974-04-18 2024-10-11 00:26:08 +1569 1569 1570 156.9 313.8 1569 1974-04-19 2024-10-11 00:26:09.000 1974-04-19 2024-10-11 00:26:09 +1570 1570 1571 157 314 1570 1974-04-20 2024-10-11 00:26:10.000 1974-04-20 2024-10-11 00:26:10 +1571 1571 1572 157.1 314.20000000000005 1571 1974-04-21 2024-10-11 00:26:11.000 1974-04-21 2024-10-11 00:26:11 +1572 1572 1573 157.2 314.40000000000003 1572 1974-04-22 2024-10-11 00:26:12.000 1974-04-22 2024-10-11 00:26:12 +1573 1573 1574 157.3 314.6 1573 1974-04-23 2024-10-11 00:26:13.000 1974-04-23 2024-10-11 00:26:13 +1574 1574 1575 157.4 314.8 1574 1974-04-24 2024-10-11 00:26:14.000 1974-04-24 2024-10-11 00:26:14 +1575 1575 1576 157.5 315 1575 1974-04-25 2024-10-11 00:26:15.000 1974-04-25 2024-10-11 00:26:15 +1576 1576 1577 157.6 315.20000000000005 1576 1974-04-26 2024-10-11 00:26:16.000 1974-04-26 2024-10-11 00:26:16 +1577 1577 1578 157.7 315.40000000000003 1577 1974-04-27 2024-10-11 00:26:17.000 1974-04-27 2024-10-11 00:26:17 +1578 1578 1579 157.8 315.6 1578 1974-04-28 2024-10-11 00:26:18.000 1974-04-28 2024-10-11 00:26:18 +1579 1579 1580 157.9 315.8 1579 1974-04-29 2024-10-11 00:26:19.000 1974-04-29 2024-10-11 00:26:19 +1580 1580 1581 158 316 1580 1974-04-30 2024-10-11 00:26:20.000 1974-04-30 2024-10-11 00:26:20 +1581 1581 1582 158.1 316.20000000000005 1581 1974-05-01 2024-10-11 00:26:21.000 1974-05-01 2024-10-11 00:26:21 +1582 1582 1583 158.2 316.40000000000003 1582 1974-05-02 2024-10-11 00:26:22.000 1974-05-02 2024-10-11 00:26:22 +1583 1583 1584 158.3 316.6 1583 1974-05-03 2024-10-11 00:26:23.000 1974-05-03 2024-10-11 00:26:23 +1584 1584 1585 158.4 316.8 1584 1974-05-04 2024-10-11 00:26:24.000 1974-05-04 2024-10-11 00:26:24 +1585 1585 1586 158.5 317 1585 1974-05-05 2024-10-11 00:26:25.000 1974-05-05 2024-10-11 00:26:25 +1586 1586 1587 158.6 317.20000000000005 1586 1974-05-06 2024-10-11 00:26:26.000 1974-05-06 2024-10-11 00:26:26 +1587 1587 1588 158.7 317.40000000000003 1587 1974-05-07 2024-10-11 00:26:27.000 1974-05-07 2024-10-11 00:26:27 +1588 1588 1589 158.8 317.6 1588 1974-05-08 2024-10-11 00:26:28.000 1974-05-08 2024-10-11 00:26:28 +1589 1589 1590 158.9 317.8 1589 1974-05-09 2024-10-11 00:26:29.000 1974-05-09 2024-10-11 00:26:29 +1590 1590 1591 159 318 1590 1974-05-10 2024-10-11 00:26:30.000 1974-05-10 2024-10-11 00:26:30 +1591 1591 1592 159.1 318.20000000000005 1591 1974-05-11 2024-10-11 00:26:31.000 1974-05-11 2024-10-11 00:26:31 +1592 1592 1593 159.2 318.40000000000003 1592 1974-05-12 2024-10-11 00:26:32.000 1974-05-12 2024-10-11 00:26:32 +1593 1593 1594 159.3 318.6 1593 1974-05-13 2024-10-11 00:26:33.000 1974-05-13 2024-10-11 00:26:33 +1594 1594 1595 159.4 318.8 1594 1974-05-14 2024-10-11 00:26:34.000 1974-05-14 2024-10-11 00:26:34 +1595 1595 1596 159.5 319 1595 1974-05-15 2024-10-11 00:26:35.000 1974-05-15 2024-10-11 00:26:35 +1596 1596 1597 159.6 319.20000000000005 1596 1974-05-16 2024-10-11 00:26:36.000 1974-05-16 2024-10-11 00:26:36 +1597 1597 1598 159.7 319.40000000000003 1597 1974-05-17 2024-10-11 00:26:37.000 1974-05-17 2024-10-11 00:26:37 +1598 1598 1599 159.8 319.6 1598 1974-05-18 2024-10-11 00:26:38.000 1974-05-18 2024-10-11 00:26:38 +1599 1599 1600 159.9 319.8 1599 1974-05-19 2024-10-11 00:26:39.000 1974-05-19 2024-10-11 00:26:39 +1600 1600 1601 160 320 1600 1974-05-20 2024-10-11 00:26:40.000 1974-05-20 2024-10-11 00:26:40 +1601 1601 1602 160.1 320.20000000000005 1601 1974-05-21 2024-10-11 00:26:41.000 1974-05-21 2024-10-11 00:26:41 +1602 1602 1603 160.2 320.40000000000003 1602 1974-05-22 2024-10-11 00:26:42.000 1974-05-22 2024-10-11 00:26:42 +1603 1603 1604 160.3 320.6 1603 1974-05-23 2024-10-11 00:26:43.000 1974-05-23 2024-10-11 00:26:43 +1604 1604 1605 160.4 320.8 1604 1974-05-24 2024-10-11 00:26:44.000 1974-05-24 2024-10-11 00:26:44 +1605 1605 1606 160.5 321 1605 1974-05-25 2024-10-11 00:26:45.000 1974-05-25 2024-10-11 00:26:45 +1606 1606 1607 160.6 321.20000000000005 1606 1974-05-26 2024-10-11 00:26:46.000 1974-05-26 2024-10-11 00:26:46 +1607 1607 1608 160.7 321.40000000000003 1607 1974-05-27 2024-10-11 00:26:47.000 1974-05-27 2024-10-11 00:26:47 +1608 1608 1609 160.8 321.6 1608 1974-05-28 2024-10-11 00:26:48.000 1974-05-28 2024-10-11 00:26:48 +1609 1609 1610 160.9 321.8 1609 1974-05-29 2024-10-11 00:26:49.000 1974-05-29 2024-10-11 00:26:49 +1610 1610 1611 161 322 1610 1974-05-30 2024-10-11 00:26:50.000 1974-05-30 2024-10-11 00:26:50 +1611 1611 1612 161.1 322.20000000000005 1611 1974-05-31 2024-10-11 00:26:51.000 1974-05-31 2024-10-11 00:26:51 +1612 1612 1613 161.2 322.40000000000003 1612 1974-06-01 2024-10-11 00:26:52.000 1974-06-01 2024-10-11 00:26:52 +1613 1613 1614 161.3 322.6 1613 1974-06-02 2024-10-11 00:26:53.000 1974-06-02 2024-10-11 00:26:53 +1614 1614 1615 161.4 322.8 1614 1974-06-03 2024-10-11 00:26:54.000 1974-06-03 2024-10-11 00:26:54 +1615 1615 1616 161.5 323 1615 1974-06-04 2024-10-11 00:26:55.000 1974-06-04 2024-10-11 00:26:55 +1616 1616 1617 161.6 323.20000000000005 1616 1974-06-05 2024-10-11 00:26:56.000 1974-06-05 2024-10-11 00:26:56 +1617 1617 1618 161.7 323.40000000000003 1617 1974-06-06 2024-10-11 00:26:57.000 1974-06-06 2024-10-11 00:26:57 +1618 1618 1619 161.8 323.6 1618 1974-06-07 2024-10-11 00:26:58.000 1974-06-07 2024-10-11 00:26:58 +1619 1619 1620 161.9 323.8 1619 1974-06-08 2024-10-11 00:26:59.000 1974-06-08 2024-10-11 00:26:59 +1620 1620 1621 162 324 1620 1974-06-09 2024-10-11 00:27:00.000 1974-06-09 2024-10-11 00:27:00 +1621 1621 1622 162.1 324.20000000000005 1621 1974-06-10 2024-10-11 00:27:01.000 1974-06-10 2024-10-11 00:27:01 +1622 1622 1623 162.2 324.40000000000003 1622 1974-06-11 2024-10-11 00:27:02.000 1974-06-11 2024-10-11 00:27:02 +1623 1623 1624 162.3 324.6 1623 1974-06-12 2024-10-11 00:27:03.000 1974-06-12 2024-10-11 00:27:03 +1624 1624 1625 162.4 324.8 1624 1974-06-13 2024-10-11 00:27:04.000 1974-06-13 2024-10-11 00:27:04 +1625 1625 1626 162.5 325 1625 1974-06-14 2024-10-11 00:27:05.000 1974-06-14 2024-10-11 00:27:05 +1626 1626 1627 162.6 325.20000000000005 1626 1974-06-15 2024-10-11 00:27:06.000 1974-06-15 2024-10-11 00:27:06 +1627 1627 1628 162.7 325.40000000000003 1627 1974-06-16 2024-10-11 00:27:07.000 1974-06-16 2024-10-11 00:27:07 +1628 1628 1629 162.8 325.6 1628 1974-06-17 2024-10-11 00:27:08.000 1974-06-17 2024-10-11 00:27:08 +1629 1629 1630 162.9 325.8 1629 1974-06-18 2024-10-11 00:27:09.000 1974-06-18 2024-10-11 00:27:09 +1630 1630 1631 163 326 1630 1974-06-19 2024-10-11 00:27:10.000 1974-06-19 2024-10-11 00:27:10 +1631 1631 1632 163.1 326.20000000000005 1631 1974-06-20 2024-10-11 00:27:11.000 1974-06-20 2024-10-11 00:27:11 +1632 1632 1633 163.2 326.40000000000003 1632 1974-06-21 2024-10-11 00:27:12.000 1974-06-21 2024-10-11 00:27:12 +1633 1633 1634 163.3 326.6 1633 1974-06-22 2024-10-11 00:27:13.000 1974-06-22 2024-10-11 00:27:13 +1634 1634 1635 163.4 326.8 1634 1974-06-23 2024-10-11 00:27:14.000 1974-06-23 2024-10-11 00:27:14 +1635 1635 1636 163.5 327 1635 1974-06-24 2024-10-11 00:27:15.000 1974-06-24 2024-10-11 00:27:15 +1636 1636 1637 163.6 327.20000000000005 1636 1974-06-25 2024-10-11 00:27:16.000 1974-06-25 2024-10-11 00:27:16 +1637 1637 1638 163.7 327.40000000000003 1637 1974-06-26 2024-10-11 00:27:17.000 1974-06-26 2024-10-11 00:27:17 +1638 1638 1639 163.8 327.6 1638 1974-06-27 2024-10-11 00:27:18.000 1974-06-27 2024-10-11 00:27:18 +1639 1639 1640 163.9 327.8 1639 1974-06-28 2024-10-11 00:27:19.000 1974-06-28 2024-10-11 00:27:19 +1640 1640 1641 164 328 1640 1974-06-29 2024-10-11 00:27:20.000 1974-06-29 2024-10-11 00:27:20 +1641 1641 1642 164.1 328.20000000000005 1641 1974-06-30 2024-10-11 00:27:21.000 1974-06-30 2024-10-11 00:27:21 +1642 1642 1643 164.2 328.40000000000003 1642 1974-07-01 2024-10-11 00:27:22.000 1974-07-01 2024-10-11 00:27:22 +1643 1643 1644 164.3 328.6 1643 1974-07-02 2024-10-11 00:27:23.000 1974-07-02 2024-10-11 00:27:23 +1644 1644 1645 164.4 328.8 1644 1974-07-03 2024-10-11 00:27:24.000 1974-07-03 2024-10-11 00:27:24 +1645 1645 1646 164.5 329 1645 1974-07-04 2024-10-11 00:27:25.000 1974-07-04 2024-10-11 00:27:25 +1646 1646 1647 164.6 329.20000000000005 1646 1974-07-05 2024-10-11 00:27:26.000 1974-07-05 2024-10-11 00:27:26 +1647 1647 1648 164.7 329.40000000000003 1647 1974-07-06 2024-10-11 00:27:27.000 1974-07-06 2024-10-11 00:27:27 +1648 1648 1649 164.8 329.6 1648 1974-07-07 2024-10-11 00:27:28.000 1974-07-07 2024-10-11 00:27:28 +1649 1649 1650 164.9 329.8 1649 1974-07-08 2024-10-11 00:27:29.000 1974-07-08 2024-10-11 00:27:29 +1650 1650 1651 165 330 1650 1974-07-09 2024-10-11 00:27:30.000 1974-07-09 2024-10-11 00:27:30 +1651 1651 1652 165.1 330.20000000000005 1651 1974-07-10 2024-10-11 00:27:31.000 1974-07-10 2024-10-11 00:27:31 +1652 1652 1653 165.2 330.40000000000003 1652 1974-07-11 2024-10-11 00:27:32.000 1974-07-11 2024-10-11 00:27:32 +1653 1653 1654 165.3 330.6 1653 1974-07-12 2024-10-11 00:27:33.000 1974-07-12 2024-10-11 00:27:33 +1654 1654 1655 165.4 330.8 1654 1974-07-13 2024-10-11 00:27:34.000 1974-07-13 2024-10-11 00:27:34 +1655 1655 1656 165.5 331 1655 1974-07-14 2024-10-11 00:27:35.000 1974-07-14 2024-10-11 00:27:35 +1656 1656 1657 165.6 331.20000000000005 1656 1974-07-15 2024-10-11 00:27:36.000 1974-07-15 2024-10-11 00:27:36 +1657 1657 1658 165.7 331.40000000000003 1657 1974-07-16 2024-10-11 00:27:37.000 1974-07-16 2024-10-11 00:27:37 +1658 1658 1659 165.8 331.6 1658 1974-07-17 2024-10-11 00:27:38.000 1974-07-17 2024-10-11 00:27:38 +1659 1659 1660 165.9 331.8 1659 1974-07-18 2024-10-11 00:27:39.000 1974-07-18 2024-10-11 00:27:39 +1660 1660 1661 166 332 1660 1974-07-19 2024-10-11 00:27:40.000 1974-07-19 2024-10-11 00:27:40 +1661 1661 1662 166.1 332.20000000000005 1661 1974-07-20 2024-10-11 00:27:41.000 1974-07-20 2024-10-11 00:27:41 +1662 1662 1663 166.2 332.40000000000003 1662 1974-07-21 2024-10-11 00:27:42.000 1974-07-21 2024-10-11 00:27:42 +1663 1663 1664 166.3 332.6 1663 1974-07-22 2024-10-11 00:27:43.000 1974-07-22 2024-10-11 00:27:43 +1664 1664 1665 166.4 332.8 1664 1974-07-23 2024-10-11 00:27:44.000 1974-07-23 2024-10-11 00:27:44 +1665 1665 1666 166.5 333 1665 1974-07-24 2024-10-11 00:27:45.000 1974-07-24 2024-10-11 00:27:45 +1666 1666 1667 166.6 333.20000000000005 1666 1974-07-25 2024-10-11 00:27:46.000 1974-07-25 2024-10-11 00:27:46 +1667 1667 1668 166.7 333.40000000000003 1667 1974-07-26 2024-10-11 00:27:47.000 1974-07-26 2024-10-11 00:27:47 +1668 1668 1669 166.8 333.6 1668 1974-07-27 2024-10-11 00:27:48.000 1974-07-27 2024-10-11 00:27:48 +1669 1669 1670 166.9 333.8 1669 1974-07-28 2024-10-11 00:27:49.000 1974-07-28 2024-10-11 00:27:49 +1670 1670 1671 167 334 1670 1974-07-29 2024-10-11 00:27:50.000 1974-07-29 2024-10-11 00:27:50 +1671 1671 1672 167.1 334.20000000000005 1671 1974-07-30 2024-10-11 00:27:51.000 1974-07-30 2024-10-11 00:27:51 +1672 1672 1673 167.2 334.40000000000003 1672 1974-07-31 2024-10-11 00:27:52.000 1974-07-31 2024-10-11 00:27:52 +1673 1673 1674 167.3 334.6 1673 1974-08-01 2024-10-11 00:27:53.000 1974-08-01 2024-10-11 00:27:53 +1674 1674 1675 167.4 334.8 1674 1974-08-02 2024-10-11 00:27:54.000 1974-08-02 2024-10-11 00:27:54 +1675 1675 1676 167.5 335 1675 1974-08-03 2024-10-11 00:27:55.000 1974-08-03 2024-10-11 00:27:55 +1676 1676 1677 167.6 335.20000000000005 1676 1974-08-04 2024-10-11 00:27:56.000 1974-08-04 2024-10-11 00:27:56 +1677 1677 1678 167.7 335.40000000000003 1677 1974-08-05 2024-10-11 00:27:57.000 1974-08-05 2024-10-11 00:27:57 +1678 1678 1679 167.8 335.6 1678 1974-08-06 2024-10-11 00:27:58.000 1974-08-06 2024-10-11 00:27:58 +1679 1679 1680 167.9 335.8 1679 1974-08-07 2024-10-11 00:27:59.000 1974-08-07 2024-10-11 00:27:59 +1680 1680 1681 168 336 1680 1974-08-08 2024-10-11 00:28:00.000 1974-08-08 2024-10-11 00:28:00 +1681 1681 1682 168.1 336.20000000000005 1681 1974-08-09 2024-10-11 00:28:01.000 1974-08-09 2024-10-11 00:28:01 +1682 1682 1683 168.2 336.40000000000003 1682 1974-08-10 2024-10-11 00:28:02.000 1974-08-10 2024-10-11 00:28:02 +1683 1683 1684 168.3 336.6 1683 1974-08-11 2024-10-11 00:28:03.000 1974-08-11 2024-10-11 00:28:03 +1684 1684 1685 168.4 336.8 1684 1974-08-12 2024-10-11 00:28:04.000 1974-08-12 2024-10-11 00:28:04 +1685 1685 1686 168.5 337 1685 1974-08-13 2024-10-11 00:28:05.000 1974-08-13 2024-10-11 00:28:05 +1686 1686 1687 168.6 337.20000000000005 1686 1974-08-14 2024-10-11 00:28:06.000 1974-08-14 2024-10-11 00:28:06 +1687 1687 1688 168.7 337.40000000000003 1687 1974-08-15 2024-10-11 00:28:07.000 1974-08-15 2024-10-11 00:28:07 +1688 1688 1689 168.8 337.6 1688 1974-08-16 2024-10-11 00:28:08.000 1974-08-16 2024-10-11 00:28:08 +1689 1689 1690 168.9 337.8 1689 1974-08-17 2024-10-11 00:28:09.000 1974-08-17 2024-10-11 00:28:09 +1690 1690 1691 169 338 1690 1974-08-18 2024-10-11 00:28:10.000 1974-08-18 2024-10-11 00:28:10 +1691 1691 1692 169.1 338.20000000000005 1691 1974-08-19 2024-10-11 00:28:11.000 1974-08-19 2024-10-11 00:28:11 +1692 1692 1693 169.2 338.40000000000003 1692 1974-08-20 2024-10-11 00:28:12.000 1974-08-20 2024-10-11 00:28:12 +1693 1693 1694 169.3 338.6 1693 1974-08-21 2024-10-11 00:28:13.000 1974-08-21 2024-10-11 00:28:13 +1694 1694 1695 169.4 338.8 1694 1974-08-22 2024-10-11 00:28:14.000 1974-08-22 2024-10-11 00:28:14 +1695 1695 1696 169.5 339 1695 1974-08-23 2024-10-11 00:28:15.000 1974-08-23 2024-10-11 00:28:15 +1696 1696 1697 169.6 339.20000000000005 1696 1974-08-24 2024-10-11 00:28:16.000 1974-08-24 2024-10-11 00:28:16 +1697 1697 1698 169.7 339.40000000000003 1697 1974-08-25 2024-10-11 00:28:17.000 1974-08-25 2024-10-11 00:28:17 +1698 1698 1699 169.8 339.6 1698 1974-08-26 2024-10-11 00:28:18.000 1974-08-26 2024-10-11 00:28:18 +1699 1699 1700 169.9 339.8 1699 1974-08-27 2024-10-11 00:28:19.000 1974-08-27 2024-10-11 00:28:19 +1700 1700 1701 170 340 1700 1974-08-28 2024-10-11 00:28:20.000 1974-08-28 2024-10-11 00:28:20 +1701 1701 1702 170.1 340.20000000000005 1701 1974-08-29 2024-10-11 00:28:21.000 1974-08-29 2024-10-11 00:28:21 +1702 1702 1703 170.2 340.40000000000003 1702 1974-08-30 2024-10-11 00:28:22.000 1974-08-30 2024-10-11 00:28:22 +1703 1703 1704 170.3 340.6 1703 1974-08-31 2024-10-11 00:28:23.000 1974-08-31 2024-10-11 00:28:23 +1704 1704 1705 170.4 340.8 1704 1974-09-01 2024-10-11 00:28:24.000 1974-09-01 2024-10-11 00:28:24 +1705 1705 1706 170.5 341 1705 1974-09-02 2024-10-11 00:28:25.000 1974-09-02 2024-10-11 00:28:25 +1706 1706 1707 170.6 341.20000000000005 1706 1974-09-03 2024-10-11 00:28:26.000 1974-09-03 2024-10-11 00:28:26 +1707 1707 1708 170.7 341.40000000000003 1707 1974-09-04 2024-10-11 00:28:27.000 1974-09-04 2024-10-11 00:28:27 +1708 1708 1709 170.8 341.6 1708 1974-09-05 2024-10-11 00:28:28.000 1974-09-05 2024-10-11 00:28:28 +1709 1709 1710 170.9 341.8 1709 1974-09-06 2024-10-11 00:28:29.000 1974-09-06 2024-10-11 00:28:29 +1710 1710 1711 171 342 1710 1974-09-07 2024-10-11 00:28:30.000 1974-09-07 2024-10-11 00:28:30 +1711 1711 1712 171.1 342.20000000000005 1711 1974-09-08 2024-10-11 00:28:31.000 1974-09-08 2024-10-11 00:28:31 +1712 1712 1713 171.2 342.40000000000003 1712 1974-09-09 2024-10-11 00:28:32.000 1974-09-09 2024-10-11 00:28:32 +1713 1713 1714 171.3 342.6 1713 1974-09-10 2024-10-11 00:28:33.000 1974-09-10 2024-10-11 00:28:33 +1714 1714 1715 171.4 342.8 1714 1974-09-11 2024-10-11 00:28:34.000 1974-09-11 2024-10-11 00:28:34 +1715 1715 1716 171.5 343 1715 1974-09-12 2024-10-11 00:28:35.000 1974-09-12 2024-10-11 00:28:35 +1716 1716 1717 171.6 343.20000000000005 1716 1974-09-13 2024-10-11 00:28:36.000 1974-09-13 2024-10-11 00:28:36 +1717 1717 1718 171.7 343.40000000000003 1717 1974-09-14 2024-10-11 00:28:37.000 1974-09-14 2024-10-11 00:28:37 +1718 1718 1719 171.8 343.6 1718 1974-09-15 2024-10-11 00:28:38.000 1974-09-15 2024-10-11 00:28:38 +1719 1719 1720 171.9 343.8 1719 1974-09-16 2024-10-11 00:28:39.000 1974-09-16 2024-10-11 00:28:39 +1720 1720 1721 172 344 1720 1974-09-17 2024-10-11 00:28:40.000 1974-09-17 2024-10-11 00:28:40 +1721 1721 1722 172.1 344.20000000000005 1721 1974-09-18 2024-10-11 00:28:41.000 1974-09-18 2024-10-11 00:28:41 +1722 1722 1723 172.2 344.40000000000003 1722 1974-09-19 2024-10-11 00:28:42.000 1974-09-19 2024-10-11 00:28:42 +1723 1723 1724 172.3 344.6 1723 1974-09-20 2024-10-11 00:28:43.000 1974-09-20 2024-10-11 00:28:43 +1724 1724 1725 172.4 344.8 1724 1974-09-21 2024-10-11 00:28:44.000 1974-09-21 2024-10-11 00:28:44 +1725 1725 1726 172.5 345 1725 1974-09-22 2024-10-11 00:28:45.000 1974-09-22 2024-10-11 00:28:45 +1726 1726 1727 172.6 345.20000000000005 1726 1974-09-23 2024-10-11 00:28:46.000 1974-09-23 2024-10-11 00:28:46 +1727 1727 1728 172.7 345.40000000000003 1727 1974-09-24 2024-10-11 00:28:47.000 1974-09-24 2024-10-11 00:28:47 +1728 1728 1729 172.8 345.6 1728 1974-09-25 2024-10-11 00:28:48.000 1974-09-25 2024-10-11 00:28:48 +1729 1729 1730 172.9 345.8 1729 1974-09-26 2024-10-11 00:28:49.000 1974-09-26 2024-10-11 00:28:49 +1730 1730 1731 173 346 1730 1974-09-27 2024-10-11 00:28:50.000 1974-09-27 2024-10-11 00:28:50 +1731 1731 1732 173.1 346.20000000000005 1731 1974-09-28 2024-10-11 00:28:51.000 1974-09-28 2024-10-11 00:28:51 +1732 1732 1733 173.2 346.40000000000003 1732 1974-09-29 2024-10-11 00:28:52.000 1974-09-29 2024-10-11 00:28:52 +1733 1733 1734 173.3 346.6 1733 1974-09-30 2024-10-11 00:28:53.000 1974-09-30 2024-10-11 00:28:53 +1734 1734 1735 173.4 346.8 1734 1974-10-01 2024-10-11 00:28:54.000 1974-10-01 2024-10-11 00:28:54 +1735 1735 1736 173.5 347 1735 1974-10-02 2024-10-11 00:28:55.000 1974-10-02 2024-10-11 00:28:55 +1736 1736 1737 173.6 347.20000000000005 1736 1974-10-03 2024-10-11 00:28:56.000 1974-10-03 2024-10-11 00:28:56 +1737 1737 1738 173.7 347.40000000000003 1737 1974-10-04 2024-10-11 00:28:57.000 1974-10-04 2024-10-11 00:28:57 +1738 1738 1739 173.8 347.6 1738 1974-10-05 2024-10-11 00:28:58.000 1974-10-05 2024-10-11 00:28:58 +1739 1739 1740 173.9 347.8 1739 1974-10-06 2024-10-11 00:28:59.000 1974-10-06 2024-10-11 00:28:59 +1740 1740 1741 174 348 1740 1974-10-07 2024-10-11 00:29:00.000 1974-10-07 2024-10-11 00:29:00 +1741 1741 1742 174.1 348.20000000000005 1741 1974-10-08 2024-10-11 00:29:01.000 1974-10-08 2024-10-11 00:29:01 +1742 1742 1743 174.2 348.40000000000003 1742 1974-10-09 2024-10-11 00:29:02.000 1974-10-09 2024-10-11 00:29:02 +1743 1743 1744 174.3 348.6 1743 1974-10-10 2024-10-11 00:29:03.000 1974-10-10 2024-10-11 00:29:03 +1744 1744 1745 174.4 348.8 1744 1974-10-11 2024-10-11 00:29:04.000 1974-10-11 2024-10-11 00:29:04 +1745 1745 1746 174.5 349 1745 1974-10-12 2024-10-11 00:29:05.000 1974-10-12 2024-10-11 00:29:05 +1746 1746 1747 174.6 349.20000000000005 1746 1974-10-13 2024-10-11 00:29:06.000 1974-10-13 2024-10-11 00:29:06 +1747 1747 1748 174.7 349.40000000000003 1747 1974-10-14 2024-10-11 00:29:07.000 1974-10-14 2024-10-11 00:29:07 +1748 1748 1749 174.8 349.6 1748 1974-10-15 2024-10-11 00:29:08.000 1974-10-15 2024-10-11 00:29:08 +1749 1749 1750 174.9 349.8 1749 1974-10-16 2024-10-11 00:29:09.000 1974-10-16 2024-10-11 00:29:09 +1750 1750 1751 175 350 1750 1974-10-17 2024-10-11 00:29:10.000 1974-10-17 2024-10-11 00:29:10 +1751 1751 1752 175.1 350.20000000000005 1751 1974-10-18 2024-10-11 00:29:11.000 1974-10-18 2024-10-11 00:29:11 +1752 1752 1753 175.2 350.40000000000003 1752 1974-10-19 2024-10-11 00:29:12.000 1974-10-19 2024-10-11 00:29:12 +1753 1753 1754 175.3 350.6 1753 1974-10-20 2024-10-11 00:29:13.000 1974-10-20 2024-10-11 00:29:13 +1754 1754 1755 175.4 350.8 1754 1974-10-21 2024-10-11 00:29:14.000 1974-10-21 2024-10-11 00:29:14 +1755 1755 1756 175.5 351 1755 1974-10-22 2024-10-11 00:29:15.000 1974-10-22 2024-10-11 00:29:15 +1756 1756 1757 175.6 351.20000000000005 1756 1974-10-23 2024-10-11 00:29:16.000 1974-10-23 2024-10-11 00:29:16 +1757 1757 1758 175.7 351.40000000000003 1757 1974-10-24 2024-10-11 00:29:17.000 1974-10-24 2024-10-11 00:29:17 +1758 1758 1759 175.8 351.6 1758 1974-10-25 2024-10-11 00:29:18.000 1974-10-25 2024-10-11 00:29:18 +1759 1759 1760 175.9 351.8 1759 1974-10-26 2024-10-11 00:29:19.000 1974-10-26 2024-10-11 00:29:19 +1760 1760 1761 176 352 1760 1974-10-27 2024-10-11 00:29:20.000 1974-10-27 2024-10-11 00:29:20 +1761 1761 1762 176.1 352.20000000000005 1761 1974-10-28 2024-10-11 00:29:21.000 1974-10-28 2024-10-11 00:29:21 +1762 1762 1763 176.2 352.40000000000003 1762 1974-10-29 2024-10-11 00:29:22.000 1974-10-29 2024-10-11 00:29:22 +1763 1763 1764 176.3 352.6 1763 1974-10-30 2024-10-11 00:29:23.000 1974-10-30 2024-10-11 00:29:23 +1764 1764 1765 176.4 352.8 1764 1974-10-31 2024-10-11 00:29:24.000 1974-10-31 2024-10-11 00:29:24 +1765 1765 1766 176.5 353 1765 1974-11-01 2024-10-11 00:29:25.000 1974-11-01 2024-10-11 00:29:25 +1766 1766 1767 176.6 353.20000000000005 1766 1974-11-02 2024-10-11 00:29:26.000 1974-11-02 2024-10-11 00:29:26 +1767 1767 1768 176.7 353.40000000000003 1767 1974-11-03 2024-10-11 00:29:27.000 1974-11-03 2024-10-11 00:29:27 +1768 1768 1769 176.8 353.6 1768 1974-11-04 2024-10-11 00:29:28.000 1974-11-04 2024-10-11 00:29:28 +1769 1769 1770 176.9 353.8 1769 1974-11-05 2024-10-11 00:29:29.000 1974-11-05 2024-10-11 00:29:29 +1770 1770 1771 177 354 1770 1974-11-06 2024-10-11 00:29:30.000 1974-11-06 2024-10-11 00:29:30 +1771 1771 1772 177.1 354.20000000000005 1771 1974-11-07 2024-10-11 00:29:31.000 1974-11-07 2024-10-11 00:29:31 +1772 1772 1773 177.2 354.40000000000003 1772 1974-11-08 2024-10-11 00:29:32.000 1974-11-08 2024-10-11 00:29:32 +1773 1773 1774 177.3 354.6 1773 1974-11-09 2024-10-11 00:29:33.000 1974-11-09 2024-10-11 00:29:33 +1774 1774 1775 177.4 354.8 1774 1974-11-10 2024-10-11 00:29:34.000 1974-11-10 2024-10-11 00:29:34 +1775 1775 1776 177.5 355 1775 1974-11-11 2024-10-11 00:29:35.000 1974-11-11 2024-10-11 00:29:35 +1776 1776 1777 177.6 355.20000000000005 1776 1974-11-12 2024-10-11 00:29:36.000 1974-11-12 2024-10-11 00:29:36 +1777 1777 1778 177.7 355.40000000000003 1777 1974-11-13 2024-10-11 00:29:37.000 1974-11-13 2024-10-11 00:29:37 +1778 1778 1779 177.8 355.6 1778 1974-11-14 2024-10-11 00:29:38.000 1974-11-14 2024-10-11 00:29:38 +1779 1779 1780 177.9 355.8 1779 1974-11-15 2024-10-11 00:29:39.000 1974-11-15 2024-10-11 00:29:39 +1780 1780 1781 178 356 1780 1974-11-16 2024-10-11 00:29:40.000 1974-11-16 2024-10-11 00:29:40 +1781 1781 1782 178.1 356.20000000000005 1781 1974-11-17 2024-10-11 00:29:41.000 1974-11-17 2024-10-11 00:29:41 +1782 1782 1783 178.2 356.40000000000003 1782 1974-11-18 2024-10-11 00:29:42.000 1974-11-18 2024-10-11 00:29:42 +1783 1783 1784 178.3 356.6 1783 1974-11-19 2024-10-11 00:29:43.000 1974-11-19 2024-10-11 00:29:43 +1784 1784 1785 178.4 356.8 1784 1974-11-20 2024-10-11 00:29:44.000 1974-11-20 2024-10-11 00:29:44 +1785 1785 1786 178.5 357 1785 1974-11-21 2024-10-11 00:29:45.000 1974-11-21 2024-10-11 00:29:45 +1786 1786 1787 178.6 357.20000000000005 1786 1974-11-22 2024-10-11 00:29:46.000 1974-11-22 2024-10-11 00:29:46 +1787 1787 1788 178.7 357.40000000000003 1787 1974-11-23 2024-10-11 00:29:47.000 1974-11-23 2024-10-11 00:29:47 +1788 1788 1789 178.8 357.6 1788 1974-11-24 2024-10-11 00:29:48.000 1974-11-24 2024-10-11 00:29:48 +1789 1789 1790 178.9 357.8 1789 1974-11-25 2024-10-11 00:29:49.000 1974-11-25 2024-10-11 00:29:49 +1790 1790 1791 179 358 1790 1974-11-26 2024-10-11 00:29:50.000 1974-11-26 2024-10-11 00:29:50 +1791 1791 1792 179.1 358.20000000000005 1791 1974-11-27 2024-10-11 00:29:51.000 1974-11-27 2024-10-11 00:29:51 +1792 1792 1793 179.2 358.40000000000003 1792 1974-11-28 2024-10-11 00:29:52.000 1974-11-28 2024-10-11 00:29:52 +1793 1793 1794 179.3 358.6 1793 1974-11-29 2024-10-11 00:29:53.000 1974-11-29 2024-10-11 00:29:53 +1794 1794 1795 179.4 358.8 1794 1974-11-30 2024-10-11 00:29:54.000 1974-11-30 2024-10-11 00:29:54 +1795 1795 1796 179.5 359 1795 1974-12-01 2024-10-11 00:29:55.000 1974-12-01 2024-10-11 00:29:55 +1796 1796 1797 179.6 359.20000000000005 1796 1974-12-02 2024-10-11 00:29:56.000 1974-12-02 2024-10-11 00:29:56 +1797 1797 1798 179.7 359.40000000000003 1797 1974-12-03 2024-10-11 00:29:57.000 1974-12-03 2024-10-11 00:29:57 +1798 1798 1799 179.8 359.6 1798 1974-12-04 2024-10-11 00:29:58.000 1974-12-04 2024-10-11 00:29:58 +1799 1799 1800 179.9 359.8 1799 1974-12-05 2024-10-11 00:29:59.000 1974-12-05 2024-10-11 00:29:59 +1800 1800 1801 180 360 1800 1974-12-06 2024-10-11 00:30:00.000 1974-12-06 2024-10-11 00:30:00 +1801 1801 1802 180.1 360.20000000000005 1801 1974-12-07 2024-10-11 00:30:01.000 1974-12-07 2024-10-11 00:30:01 +1802 1802 1803 180.2 360.40000000000003 1802 1974-12-08 2024-10-11 00:30:02.000 1974-12-08 2024-10-11 00:30:02 +1803 1803 1804 180.3 360.6 1803 1974-12-09 2024-10-11 00:30:03.000 1974-12-09 2024-10-11 00:30:03 +1804 1804 1805 180.4 360.8 1804 1974-12-10 2024-10-11 00:30:04.000 1974-12-10 2024-10-11 00:30:04 +1805 1805 1806 180.5 361 1805 1974-12-11 2024-10-11 00:30:05.000 1974-12-11 2024-10-11 00:30:05 +1806 1806 1807 180.6 361.20000000000005 1806 1974-12-12 2024-10-11 00:30:06.000 1974-12-12 2024-10-11 00:30:06 +1807 1807 1808 180.7 361.40000000000003 1807 1974-12-13 2024-10-11 00:30:07.000 1974-12-13 2024-10-11 00:30:07 +1808 1808 1809 180.8 361.6 1808 1974-12-14 2024-10-11 00:30:08.000 1974-12-14 2024-10-11 00:30:08 +1809 1809 1810 180.9 361.8 1809 1974-12-15 2024-10-11 00:30:09.000 1974-12-15 2024-10-11 00:30:09 +1810 1810 1811 181 362 1810 1974-12-16 2024-10-11 00:30:10.000 1974-12-16 2024-10-11 00:30:10 +1811 1811 1812 181.1 362.20000000000005 1811 1974-12-17 2024-10-11 00:30:11.000 1974-12-17 2024-10-11 00:30:11 +1812 1812 1813 181.2 362.40000000000003 1812 1974-12-18 2024-10-11 00:30:12.000 1974-12-18 2024-10-11 00:30:12 +1813 1813 1814 181.3 362.6 1813 1974-12-19 2024-10-11 00:30:13.000 1974-12-19 2024-10-11 00:30:13 +1814 1814 1815 181.4 362.8 1814 1974-12-20 2024-10-11 00:30:14.000 1974-12-20 2024-10-11 00:30:14 +1815 1815 1816 181.5 363 1815 1974-12-21 2024-10-11 00:30:15.000 1974-12-21 2024-10-11 00:30:15 +1816 1816 1817 181.6 363.20000000000005 1816 1974-12-22 2024-10-11 00:30:16.000 1974-12-22 2024-10-11 00:30:16 +1817 1817 1818 181.7 363.40000000000003 1817 1974-12-23 2024-10-11 00:30:17.000 1974-12-23 2024-10-11 00:30:17 +1818 1818 1819 181.8 363.6 1818 1974-12-24 2024-10-11 00:30:18.000 1974-12-24 2024-10-11 00:30:18 +1819 1819 1820 181.9 363.8 1819 1974-12-25 2024-10-11 00:30:19.000 1974-12-25 2024-10-11 00:30:19 +1820 1820 1821 182 364 1820 1974-12-26 2024-10-11 00:30:20.000 1974-12-26 2024-10-11 00:30:20 +1821 1821 1822 182.1 364.20000000000005 1821 1974-12-27 2024-10-11 00:30:21.000 1974-12-27 2024-10-11 00:30:21 +1822 1822 1823 182.2 364.40000000000003 1822 1974-12-28 2024-10-11 00:30:22.000 1974-12-28 2024-10-11 00:30:22 +1823 1823 1824 182.3 364.6 1823 1974-12-29 2024-10-11 00:30:23.000 1974-12-29 2024-10-11 00:30:23 +1824 1824 1825 182.4 364.8 1824 1974-12-30 2024-10-11 00:30:24.000 1974-12-30 2024-10-11 00:30:24 +1825 1825 1826 182.5 365 1825 1974-12-31 2024-10-11 00:30:25.000 1974-12-31 2024-10-11 00:30:25 +1826 1826 1827 182.6 365.20000000000005 1826 1975-01-01 2024-10-11 00:30:26.000 1975-01-01 2024-10-11 00:30:26 +1827 1827 1828 182.7 365.40000000000003 1827 1975-01-02 2024-10-11 00:30:27.000 1975-01-02 2024-10-11 00:30:27 +1828 1828 1829 182.8 365.6 1828 1975-01-03 2024-10-11 00:30:28.000 1975-01-03 2024-10-11 00:30:28 +1829 1829 1830 182.9 365.8 1829 1975-01-04 2024-10-11 00:30:29.000 1975-01-04 2024-10-11 00:30:29 +1830 1830 1831 183 366 1830 1975-01-05 2024-10-11 00:30:30.000 1975-01-05 2024-10-11 00:30:30 +1831 1831 1832 183.1 366.20000000000005 1831 1975-01-06 2024-10-11 00:30:31.000 1975-01-06 2024-10-11 00:30:31 +1832 1832 1833 183.2 366.40000000000003 1832 1975-01-07 2024-10-11 00:30:32.000 1975-01-07 2024-10-11 00:30:32 +1833 1833 1834 183.3 366.6 1833 1975-01-08 2024-10-11 00:30:33.000 1975-01-08 2024-10-11 00:30:33 +1834 1834 1835 183.4 366.8 1834 1975-01-09 2024-10-11 00:30:34.000 1975-01-09 2024-10-11 00:30:34 +1835 1835 1836 183.5 367 1835 1975-01-10 2024-10-11 00:30:35.000 1975-01-10 2024-10-11 00:30:35 +1836 1836 1837 183.6 367.20000000000005 1836 1975-01-11 2024-10-11 00:30:36.000 1975-01-11 2024-10-11 00:30:36 +1837 1837 1838 183.7 367.40000000000003 1837 1975-01-12 2024-10-11 00:30:37.000 1975-01-12 2024-10-11 00:30:37 +1838 1838 1839 183.8 367.6 1838 1975-01-13 2024-10-11 00:30:38.000 1975-01-13 2024-10-11 00:30:38 +1839 1839 1840 183.9 367.8 1839 1975-01-14 2024-10-11 00:30:39.000 1975-01-14 2024-10-11 00:30:39 +1840 1840 1841 184 368 1840 1975-01-15 2024-10-11 00:30:40.000 1975-01-15 2024-10-11 00:30:40 +1841 1841 1842 184.1 368.20000000000005 1841 1975-01-16 2024-10-11 00:30:41.000 1975-01-16 2024-10-11 00:30:41 +1842 1842 1843 184.2 368.40000000000003 1842 1975-01-17 2024-10-11 00:30:42.000 1975-01-17 2024-10-11 00:30:42 +1843 1843 1844 184.3 368.6 1843 1975-01-18 2024-10-11 00:30:43.000 1975-01-18 2024-10-11 00:30:43 +1844 1844 1845 184.4 368.8 1844 1975-01-19 2024-10-11 00:30:44.000 1975-01-19 2024-10-11 00:30:44 +1845 1845 1846 184.5 369 1845 1975-01-20 2024-10-11 00:30:45.000 1975-01-20 2024-10-11 00:30:45 +1846 1846 1847 184.6 369.20000000000005 1846 1975-01-21 2024-10-11 00:30:46.000 1975-01-21 2024-10-11 00:30:46 +1847 1847 1848 184.7 369.40000000000003 1847 1975-01-22 2024-10-11 00:30:47.000 1975-01-22 2024-10-11 00:30:47 +1848 1848 1849 184.8 369.6 1848 1975-01-23 2024-10-11 00:30:48.000 1975-01-23 2024-10-11 00:30:48 +1849 1849 1850 184.9 369.8 1849 1975-01-24 2024-10-11 00:30:49.000 1975-01-24 2024-10-11 00:30:49 +1850 1850 1851 185 370 1850 1975-01-25 2024-10-11 00:30:50.000 1975-01-25 2024-10-11 00:30:50 +1851 1851 1852 185.1 370.20000000000005 1851 1975-01-26 2024-10-11 00:30:51.000 1975-01-26 2024-10-11 00:30:51 +1852 1852 1853 185.2 370.40000000000003 1852 1975-01-27 2024-10-11 00:30:52.000 1975-01-27 2024-10-11 00:30:52 +1853 1853 1854 185.3 370.6 1853 1975-01-28 2024-10-11 00:30:53.000 1975-01-28 2024-10-11 00:30:53 +1854 1854 1855 185.4 370.8 1854 1975-01-29 2024-10-11 00:30:54.000 1975-01-29 2024-10-11 00:30:54 +1855 1855 1856 185.5 371 1855 1975-01-30 2024-10-11 00:30:55.000 1975-01-30 2024-10-11 00:30:55 +1856 1856 1857 185.6 371.20000000000005 1856 1975-01-31 2024-10-11 00:30:56.000 1975-01-31 2024-10-11 00:30:56 +1857 1857 1858 185.7 371.40000000000003 1857 1975-02-01 2024-10-11 00:30:57.000 1975-02-01 2024-10-11 00:30:57 +1858 1858 1859 185.8 371.6 1858 1975-02-02 2024-10-11 00:30:58.000 1975-02-02 2024-10-11 00:30:58 +1859 1859 1860 185.9 371.8 1859 1975-02-03 2024-10-11 00:30:59.000 1975-02-03 2024-10-11 00:30:59 +1860 1860 1861 186 372 1860 1975-02-04 2024-10-11 00:31:00.000 1975-02-04 2024-10-11 00:31:00 +1861 1861 1862 186.1 372.20000000000005 1861 1975-02-05 2024-10-11 00:31:01.000 1975-02-05 2024-10-11 00:31:01 +1862 1862 1863 186.2 372.40000000000003 1862 1975-02-06 2024-10-11 00:31:02.000 1975-02-06 2024-10-11 00:31:02 +1863 1863 1864 186.3 372.6 1863 1975-02-07 2024-10-11 00:31:03.000 1975-02-07 2024-10-11 00:31:03 +1864 1864 1865 186.4 372.8 1864 1975-02-08 2024-10-11 00:31:04.000 1975-02-08 2024-10-11 00:31:04 +1865 1865 1866 186.5 373 1865 1975-02-09 2024-10-11 00:31:05.000 1975-02-09 2024-10-11 00:31:05 +1866 1866 1867 186.6 373.20000000000005 1866 1975-02-10 2024-10-11 00:31:06.000 1975-02-10 2024-10-11 00:31:06 +1867 1867 1868 186.7 373.40000000000003 1867 1975-02-11 2024-10-11 00:31:07.000 1975-02-11 2024-10-11 00:31:07 +1868 1868 1869 186.8 373.6 1868 1975-02-12 2024-10-11 00:31:08.000 1975-02-12 2024-10-11 00:31:08 +1869 1869 1870 186.9 373.8 1869 1975-02-13 2024-10-11 00:31:09.000 1975-02-13 2024-10-11 00:31:09 +1870 1870 1871 187 374 1870 1975-02-14 2024-10-11 00:31:10.000 1975-02-14 2024-10-11 00:31:10 +1871 1871 1872 187.1 374.20000000000005 1871 1975-02-15 2024-10-11 00:31:11.000 1975-02-15 2024-10-11 00:31:11 +1872 1872 1873 187.2 374.40000000000003 1872 1975-02-16 2024-10-11 00:31:12.000 1975-02-16 2024-10-11 00:31:12 +1873 1873 1874 187.3 374.6 1873 1975-02-17 2024-10-11 00:31:13.000 1975-02-17 2024-10-11 00:31:13 +1874 1874 1875 187.4 374.8 1874 1975-02-18 2024-10-11 00:31:14.000 1975-02-18 2024-10-11 00:31:14 +1875 1875 1876 187.5 375 1875 1975-02-19 2024-10-11 00:31:15.000 1975-02-19 2024-10-11 00:31:15 +1876 1876 1877 187.6 375.20000000000005 1876 1975-02-20 2024-10-11 00:31:16.000 1975-02-20 2024-10-11 00:31:16 +1877 1877 1878 187.7 375.40000000000003 1877 1975-02-21 2024-10-11 00:31:17.000 1975-02-21 2024-10-11 00:31:17 +1878 1878 1879 187.8 375.6 1878 1975-02-22 2024-10-11 00:31:18.000 1975-02-22 2024-10-11 00:31:18 +1879 1879 1880 187.9 375.8 1879 1975-02-23 2024-10-11 00:31:19.000 1975-02-23 2024-10-11 00:31:19 +1880 1880 1881 188 376 1880 1975-02-24 2024-10-11 00:31:20.000 1975-02-24 2024-10-11 00:31:20 +1881 1881 1882 188.1 376.20000000000005 1881 1975-02-25 2024-10-11 00:31:21.000 1975-02-25 2024-10-11 00:31:21 +1882 1882 1883 188.2 376.40000000000003 1882 1975-02-26 2024-10-11 00:31:22.000 1975-02-26 2024-10-11 00:31:22 +1883 1883 1884 188.3 376.6 1883 1975-02-27 2024-10-11 00:31:23.000 1975-02-27 2024-10-11 00:31:23 +1884 1884 1885 188.4 376.8 1884 1975-02-28 2024-10-11 00:31:24.000 1975-02-28 2024-10-11 00:31:24 +1885 1885 1886 188.5 377 1885 1975-03-01 2024-10-11 00:31:25.000 1975-03-01 2024-10-11 00:31:25 +1886 1886 1887 188.6 377.20000000000005 1886 1975-03-02 2024-10-11 00:31:26.000 1975-03-02 2024-10-11 00:31:26 +1887 1887 1888 188.7 377.40000000000003 1887 1975-03-03 2024-10-11 00:31:27.000 1975-03-03 2024-10-11 00:31:27 +1888 1888 1889 188.8 377.6 1888 1975-03-04 2024-10-11 00:31:28.000 1975-03-04 2024-10-11 00:31:28 +1889 1889 1890 188.9 377.8 1889 1975-03-05 2024-10-11 00:31:29.000 1975-03-05 2024-10-11 00:31:29 +1890 1890 1891 189 378 1890 1975-03-06 2024-10-11 00:31:30.000 1975-03-06 2024-10-11 00:31:30 +1891 1891 1892 189.1 378.20000000000005 1891 1975-03-07 2024-10-11 00:31:31.000 1975-03-07 2024-10-11 00:31:31 +1892 1892 1893 189.2 378.40000000000003 1892 1975-03-08 2024-10-11 00:31:32.000 1975-03-08 2024-10-11 00:31:32 +1893 1893 1894 189.3 378.6 1893 1975-03-09 2024-10-11 00:31:33.000 1975-03-09 2024-10-11 00:31:33 +1894 1894 1895 189.4 378.8 1894 1975-03-10 2024-10-11 00:31:34.000 1975-03-10 2024-10-11 00:31:34 +1895 1895 1896 189.5 379 1895 1975-03-11 2024-10-11 00:31:35.000 1975-03-11 2024-10-11 00:31:35 +1896 1896 1897 189.6 379.20000000000005 1896 1975-03-12 2024-10-11 00:31:36.000 1975-03-12 2024-10-11 00:31:36 +1897 1897 1898 189.7 379.40000000000003 1897 1975-03-13 2024-10-11 00:31:37.000 1975-03-13 2024-10-11 00:31:37 +1898 1898 1899 189.8 379.6 1898 1975-03-14 2024-10-11 00:31:38.000 1975-03-14 2024-10-11 00:31:38 +1899 1899 1900 189.9 379.8 1899 1975-03-15 2024-10-11 00:31:39.000 1975-03-15 2024-10-11 00:31:39 +1900 1900 1901 190 380 1900 1975-03-16 2024-10-11 00:31:40.000 1975-03-16 2024-10-11 00:31:40 +1901 1901 1902 190.1 380.20000000000005 1901 1975-03-17 2024-10-11 00:31:41.000 1975-03-17 2024-10-11 00:31:41 +1902 1902 1903 190.2 380.40000000000003 1902 1975-03-18 2024-10-11 00:31:42.000 1975-03-18 2024-10-11 00:31:42 +1903 1903 1904 190.3 380.6 1903 1975-03-19 2024-10-11 00:31:43.000 1975-03-19 2024-10-11 00:31:43 +1904 1904 1905 190.4 380.8 1904 1975-03-20 2024-10-11 00:31:44.000 1975-03-20 2024-10-11 00:31:44 +1905 1905 1906 190.5 381 1905 1975-03-21 2024-10-11 00:31:45.000 1975-03-21 2024-10-11 00:31:45 +1906 1906 1907 190.6 381.20000000000005 1906 1975-03-22 2024-10-11 00:31:46.000 1975-03-22 2024-10-11 00:31:46 +1907 1907 1908 190.7 381.40000000000003 1907 1975-03-23 2024-10-11 00:31:47.000 1975-03-23 2024-10-11 00:31:47 +1908 1908 1909 190.8 381.6 1908 1975-03-24 2024-10-11 00:31:48.000 1975-03-24 2024-10-11 00:31:48 +1909 1909 1910 190.9 381.8 1909 1975-03-25 2024-10-11 00:31:49.000 1975-03-25 2024-10-11 00:31:49 +1910 1910 1911 191 382 1910 1975-03-26 2024-10-11 00:31:50.000 1975-03-26 2024-10-11 00:31:50 +1911 1911 1912 191.1 382.20000000000005 1911 1975-03-27 2024-10-11 00:31:51.000 1975-03-27 2024-10-11 00:31:51 +1912 1912 1913 191.2 382.40000000000003 1912 1975-03-28 2024-10-11 00:31:52.000 1975-03-28 2024-10-11 00:31:52 +1913 1913 1914 191.3 382.6 1913 1975-03-29 2024-10-11 00:31:53.000 1975-03-29 2024-10-11 00:31:53 +1914 1914 1915 191.4 382.8 1914 1975-03-30 2024-10-11 00:31:54.000 1975-03-30 2024-10-11 00:31:54 +1915 1915 1916 191.5 383 1915 1975-03-31 2024-10-11 00:31:55.000 1975-03-31 2024-10-11 00:31:55 +1916 1916 1917 191.6 383.20000000000005 1916 1975-04-01 2024-10-11 00:31:56.000 1975-04-01 2024-10-11 00:31:56 +1917 1917 1918 191.7 383.40000000000003 1917 1975-04-02 2024-10-11 00:31:57.000 1975-04-02 2024-10-11 00:31:57 +1918 1918 1919 191.8 383.6 1918 1975-04-03 2024-10-11 00:31:58.000 1975-04-03 2024-10-11 00:31:58 +1919 1919 1920 191.9 383.8 1919 1975-04-04 2024-10-11 00:31:59.000 1975-04-04 2024-10-11 00:31:59 +1920 1920 1921 192 384 1920 1975-04-05 2024-10-11 00:32:00.000 1975-04-05 2024-10-11 00:32:00 +1921 1921 1922 192.1 384.20000000000005 1921 1975-04-06 2024-10-11 00:32:01.000 1975-04-06 2024-10-11 00:32:01 +1922 1922 1923 192.2 384.40000000000003 1922 1975-04-07 2024-10-11 00:32:02.000 1975-04-07 2024-10-11 00:32:02 +1923 1923 1924 192.3 384.6 1923 1975-04-08 2024-10-11 00:32:03.000 1975-04-08 2024-10-11 00:32:03 +1924 1924 1925 192.4 384.8 1924 1975-04-09 2024-10-11 00:32:04.000 1975-04-09 2024-10-11 00:32:04 +1925 1925 1926 192.5 385 1925 1975-04-10 2024-10-11 00:32:05.000 1975-04-10 2024-10-11 00:32:05 +1926 1926 1927 192.6 385.20000000000005 1926 1975-04-11 2024-10-11 00:32:06.000 1975-04-11 2024-10-11 00:32:06 +1927 1927 1928 192.7 385.40000000000003 1927 1975-04-12 2024-10-11 00:32:07.000 1975-04-12 2024-10-11 00:32:07 +1928 1928 1929 192.8 385.6 1928 1975-04-13 2024-10-11 00:32:08.000 1975-04-13 2024-10-11 00:32:08 +1929 1929 1930 192.9 385.8 1929 1975-04-14 2024-10-11 00:32:09.000 1975-04-14 2024-10-11 00:32:09 +1930 1930 1931 193 386 1930 1975-04-15 2024-10-11 00:32:10.000 1975-04-15 2024-10-11 00:32:10 +1931 1931 1932 193.1 386.20000000000005 1931 1975-04-16 2024-10-11 00:32:11.000 1975-04-16 2024-10-11 00:32:11 +1932 1932 1933 193.2 386.40000000000003 1932 1975-04-17 2024-10-11 00:32:12.000 1975-04-17 2024-10-11 00:32:12 +1933 1933 1934 193.3 386.6 1933 1975-04-18 2024-10-11 00:32:13.000 1975-04-18 2024-10-11 00:32:13 +1934 1934 1935 193.4 386.8 1934 1975-04-19 2024-10-11 00:32:14.000 1975-04-19 2024-10-11 00:32:14 +1935 1935 1936 193.5 387 1935 1975-04-20 2024-10-11 00:32:15.000 1975-04-20 2024-10-11 00:32:15 +1936 1936 1937 193.6 387.20000000000005 1936 1975-04-21 2024-10-11 00:32:16.000 1975-04-21 2024-10-11 00:32:16 +1937 1937 1938 193.7 387.40000000000003 1937 1975-04-22 2024-10-11 00:32:17.000 1975-04-22 2024-10-11 00:32:17 +1938 1938 1939 193.8 387.6 1938 1975-04-23 2024-10-11 00:32:18.000 1975-04-23 2024-10-11 00:32:18 +1939 1939 1940 193.9 387.8 1939 1975-04-24 2024-10-11 00:32:19.000 1975-04-24 2024-10-11 00:32:19 +1940 1940 1941 194 388 1940 1975-04-25 2024-10-11 00:32:20.000 1975-04-25 2024-10-11 00:32:20 +1941 1941 1942 194.1 388.20000000000005 1941 1975-04-26 2024-10-11 00:32:21.000 1975-04-26 2024-10-11 00:32:21 +1942 1942 1943 194.2 388.40000000000003 1942 1975-04-27 2024-10-11 00:32:22.000 1975-04-27 2024-10-11 00:32:22 +1943 1943 1944 194.3 388.6 1943 1975-04-28 2024-10-11 00:32:23.000 1975-04-28 2024-10-11 00:32:23 +1944 1944 1945 194.4 388.8 1944 1975-04-29 2024-10-11 00:32:24.000 1975-04-29 2024-10-11 00:32:24 +1945 1945 1946 194.5 389 1945 1975-04-30 2024-10-11 00:32:25.000 1975-04-30 2024-10-11 00:32:25 +1946 1946 1947 194.6 389.20000000000005 1946 1975-05-01 2024-10-11 00:32:26.000 1975-05-01 2024-10-11 00:32:26 +1947 1947 1948 194.7 389.40000000000003 1947 1975-05-02 2024-10-11 00:32:27.000 1975-05-02 2024-10-11 00:32:27 +1948 1948 1949 194.8 389.6 1948 1975-05-03 2024-10-11 00:32:28.000 1975-05-03 2024-10-11 00:32:28 +1949 1949 1950 194.9 389.8 1949 1975-05-04 2024-10-11 00:32:29.000 1975-05-04 2024-10-11 00:32:29 +1950 1950 1951 195 390 1950 1975-05-05 2024-10-11 00:32:30.000 1975-05-05 2024-10-11 00:32:30 +1951 1951 1952 195.1 390.20000000000005 1951 1975-05-06 2024-10-11 00:32:31.000 1975-05-06 2024-10-11 00:32:31 +1952 1952 1953 195.2 390.40000000000003 1952 1975-05-07 2024-10-11 00:32:32.000 1975-05-07 2024-10-11 00:32:32 +1953 1953 1954 195.3 390.6 1953 1975-05-08 2024-10-11 00:32:33.000 1975-05-08 2024-10-11 00:32:33 +1954 1954 1955 195.4 390.8 1954 1975-05-09 2024-10-11 00:32:34.000 1975-05-09 2024-10-11 00:32:34 +1955 1955 1956 195.5 391 1955 1975-05-10 2024-10-11 00:32:35.000 1975-05-10 2024-10-11 00:32:35 +1956 1956 1957 195.6 391.20000000000005 1956 1975-05-11 2024-10-11 00:32:36.000 1975-05-11 2024-10-11 00:32:36 +1957 1957 1958 195.7 391.40000000000003 1957 1975-05-12 2024-10-11 00:32:37.000 1975-05-12 2024-10-11 00:32:37 +1958 1958 1959 195.8 391.6 1958 1975-05-13 2024-10-11 00:32:38.000 1975-05-13 2024-10-11 00:32:38 +1959 1959 1960 195.9 391.8 1959 1975-05-14 2024-10-11 00:32:39.000 1975-05-14 2024-10-11 00:32:39 +1960 1960 1961 196 392 1960 1975-05-15 2024-10-11 00:32:40.000 1975-05-15 2024-10-11 00:32:40 +1961 1961 1962 196.1 392.20000000000005 1961 1975-05-16 2024-10-11 00:32:41.000 1975-05-16 2024-10-11 00:32:41 +1962 1962 1963 196.2 392.40000000000003 1962 1975-05-17 2024-10-11 00:32:42.000 1975-05-17 2024-10-11 00:32:42 +1963 1963 1964 196.3 392.6 1963 1975-05-18 2024-10-11 00:32:43.000 1975-05-18 2024-10-11 00:32:43 +1964 1964 1965 196.4 392.8 1964 1975-05-19 2024-10-11 00:32:44.000 1975-05-19 2024-10-11 00:32:44 +1965 1965 1966 196.5 393 1965 1975-05-20 2024-10-11 00:32:45.000 1975-05-20 2024-10-11 00:32:45 +1966 1966 1967 196.6 393.20000000000005 1966 1975-05-21 2024-10-11 00:32:46.000 1975-05-21 2024-10-11 00:32:46 +1967 1967 1968 196.7 393.40000000000003 1967 1975-05-22 2024-10-11 00:32:47.000 1975-05-22 2024-10-11 00:32:47 +1968 1968 1969 196.8 393.6 1968 1975-05-23 2024-10-11 00:32:48.000 1975-05-23 2024-10-11 00:32:48 +1969 1969 1970 196.9 393.8 1969 1975-05-24 2024-10-11 00:32:49.000 1975-05-24 2024-10-11 00:32:49 +1970 1970 1971 197 394 1970 1975-05-25 2024-10-11 00:32:50.000 1975-05-25 2024-10-11 00:32:50 +1971 1971 1972 197.1 394.20000000000005 1971 1975-05-26 2024-10-11 00:32:51.000 1975-05-26 2024-10-11 00:32:51 +1972 1972 1973 197.2 394.40000000000003 1972 1975-05-27 2024-10-11 00:32:52.000 1975-05-27 2024-10-11 00:32:52 +1973 1973 1974 197.3 394.6 1973 1975-05-28 2024-10-11 00:32:53.000 1975-05-28 2024-10-11 00:32:53 +1974 1974 1975 197.4 394.8 1974 1975-05-29 2024-10-11 00:32:54.000 1975-05-29 2024-10-11 00:32:54 +1975 1975 1976 197.5 395 1975 1975-05-30 2024-10-11 00:32:55.000 1975-05-30 2024-10-11 00:32:55 +1976 1976 1977 197.6 395.20000000000005 1976 1975-05-31 2024-10-11 00:32:56.000 1975-05-31 2024-10-11 00:32:56 +1977 1977 1978 197.7 395.40000000000003 1977 1975-06-01 2024-10-11 00:32:57.000 1975-06-01 2024-10-11 00:32:57 +1978 1978 1979 197.8 395.6 1978 1975-06-02 2024-10-11 00:32:58.000 1975-06-02 2024-10-11 00:32:58 +1979 1979 1980 197.9 395.8 1979 1975-06-03 2024-10-11 00:32:59.000 1975-06-03 2024-10-11 00:32:59 +1980 1980 1981 198 396 1980 1975-06-04 2024-10-11 00:33:00.000 1975-06-04 2024-10-11 00:33:00 +1981 1981 1982 198.1 396.20000000000005 1981 1975-06-05 2024-10-11 00:33:01.000 1975-06-05 2024-10-11 00:33:01 +1982 1982 1983 198.2 396.40000000000003 1982 1975-06-06 2024-10-11 00:33:02.000 1975-06-06 2024-10-11 00:33:02 +1983 1983 1984 198.3 396.6 1983 1975-06-07 2024-10-11 00:33:03.000 1975-06-07 2024-10-11 00:33:03 +1984 1984 1985 198.4 396.8 1984 1975-06-08 2024-10-11 00:33:04.000 1975-06-08 2024-10-11 00:33:04 +1985 1985 1986 198.5 397 1985 1975-06-09 2024-10-11 00:33:05.000 1975-06-09 2024-10-11 00:33:05 +1986 1986 1987 198.6 397.20000000000005 1986 1975-06-10 2024-10-11 00:33:06.000 1975-06-10 2024-10-11 00:33:06 +1987 1987 1988 198.7 397.40000000000003 1987 1975-06-11 2024-10-11 00:33:07.000 1975-06-11 2024-10-11 00:33:07 +1988 1988 1989 198.8 397.6 1988 1975-06-12 2024-10-11 00:33:08.000 1975-06-12 2024-10-11 00:33:08 +1989 1989 1990 198.9 397.8 1989 1975-06-13 2024-10-11 00:33:09.000 1975-06-13 2024-10-11 00:33:09 +1990 1990 1991 199 398 1990 1975-06-14 2024-10-11 00:33:10.000 1975-06-14 2024-10-11 00:33:10 +1991 1991 1992 199.1 398.20000000000005 1991 1975-06-15 2024-10-11 00:33:11.000 1975-06-15 2024-10-11 00:33:11 +1992 1992 1993 199.2 398.40000000000003 1992 1975-06-16 2024-10-11 00:33:12.000 1975-06-16 2024-10-11 00:33:12 +1993 1993 1994 199.3 398.6 1993 1975-06-17 2024-10-11 00:33:13.000 1975-06-17 2024-10-11 00:33:13 +1994 1994 1995 199.4 398.8 1994 1975-06-18 2024-10-11 00:33:14.000 1975-06-18 2024-10-11 00:33:14 +1995 1995 1996 199.5 399 1995 1975-06-19 2024-10-11 00:33:15.000 1975-06-19 2024-10-11 00:33:15 +1996 1996 1997 199.6 399.20000000000005 1996 1975-06-20 2024-10-11 00:33:16.000 1975-06-20 2024-10-11 00:33:16 +1997 1997 1998 199.7 399.40000000000003 1997 1975-06-21 2024-10-11 00:33:17.000 1975-06-21 2024-10-11 00:33:17 +1998 1998 1999 199.8 399.6 1998 1975-06-22 2024-10-11 00:33:18.000 1975-06-22 2024-10-11 00:33:18 +1999 1999 2000 199.9 399.8 1999 1975-06-23 2024-10-11 00:33:19.000 1975-06-23 2024-10-11 00:33:19 +2000 2000 2001 200 400 2000 1975-06-24 2024-10-11 00:33:20.000 1975-06-24 2024-10-11 00:33:20 +2001 2001 2002 200.1 400.20000000000005 2001 1975-06-25 2024-10-11 00:33:21.000 1975-06-25 2024-10-11 00:33:21 +2002 2002 2003 200.2 400.40000000000003 2002 1975-06-26 2024-10-11 00:33:22.000 1975-06-26 2024-10-11 00:33:22 +2003 2003 2004 200.3 400.6 2003 1975-06-27 2024-10-11 00:33:23.000 1975-06-27 2024-10-11 00:33:23 +2004 2004 2005 200.4 400.8 2004 1975-06-28 2024-10-11 00:33:24.000 1975-06-28 2024-10-11 00:33:24 +2005 2005 2006 200.5 401 2005 1975-06-29 2024-10-11 00:33:25.000 1975-06-29 2024-10-11 00:33:25 +2006 2006 2007 200.6 401.20000000000005 2006 1975-06-30 2024-10-11 00:33:26.000 1975-06-30 2024-10-11 00:33:26 +2007 2007 2008 200.7 401.40000000000003 2007 1975-07-01 2024-10-11 00:33:27.000 1975-07-01 2024-10-11 00:33:27 +2008 2008 2009 200.8 401.6 2008 1975-07-02 2024-10-11 00:33:28.000 1975-07-02 2024-10-11 00:33:28 +2009 2009 2010 200.9 401.8 2009 1975-07-03 2024-10-11 00:33:29.000 1975-07-03 2024-10-11 00:33:29 +2010 2010 2011 201 402 2010 1975-07-04 2024-10-11 00:33:30.000 1975-07-04 2024-10-11 00:33:30 +2011 2011 2012 201.1 402.20000000000005 2011 1975-07-05 2024-10-11 00:33:31.000 1975-07-05 2024-10-11 00:33:31 +2012 2012 2013 201.2 402.40000000000003 2012 1975-07-06 2024-10-11 00:33:32.000 1975-07-06 2024-10-11 00:33:32 +2013 2013 2014 201.3 402.6 2013 1975-07-07 2024-10-11 00:33:33.000 1975-07-07 2024-10-11 00:33:33 +2014 2014 2015 201.4 402.8 2014 1975-07-08 2024-10-11 00:33:34.000 1975-07-08 2024-10-11 00:33:34 +2015 2015 2016 201.5 403 2015 1975-07-09 2024-10-11 00:33:35.000 1975-07-09 2024-10-11 00:33:35 +2016 2016 2017 201.6 403.20000000000005 2016 1975-07-10 2024-10-11 00:33:36.000 1975-07-10 2024-10-11 00:33:36 +2017 2017 2018 201.7 403.40000000000003 2017 1975-07-11 2024-10-11 00:33:37.000 1975-07-11 2024-10-11 00:33:37 +2018 2018 2019 201.8 403.6 2018 1975-07-12 2024-10-11 00:33:38.000 1975-07-12 2024-10-11 00:33:38 +2019 2019 2020 201.9 403.8 2019 1975-07-13 2024-10-11 00:33:39.000 1975-07-13 2024-10-11 00:33:39 +2020 2020 2021 202 404 2020 1975-07-14 2024-10-11 00:33:40.000 1975-07-14 2024-10-11 00:33:40 +2021 2021 2022 202.1 404.20000000000005 2021 1975-07-15 2024-10-11 00:33:41.000 1975-07-15 2024-10-11 00:33:41 +2022 2022 2023 202.2 404.40000000000003 2022 1975-07-16 2024-10-11 00:33:42.000 1975-07-16 2024-10-11 00:33:42 +2023 2023 2024 202.3 404.6 2023 1975-07-17 2024-10-11 00:33:43.000 1975-07-17 2024-10-11 00:33:43 +2024 2024 2025 202.4 404.8 2024 1975-07-18 2024-10-11 00:33:44.000 1975-07-18 2024-10-11 00:33:44 +2025 2025 2026 202.5 405 2025 1975-07-19 2024-10-11 00:33:45.000 1975-07-19 2024-10-11 00:33:45 +2026 2026 2027 202.6 405.20000000000005 2026 1975-07-20 2024-10-11 00:33:46.000 1975-07-20 2024-10-11 00:33:46 +2027 2027 2028 202.7 405.40000000000003 2027 1975-07-21 2024-10-11 00:33:47.000 1975-07-21 2024-10-11 00:33:47 +2028 2028 2029 202.8 405.6 2028 1975-07-22 2024-10-11 00:33:48.000 1975-07-22 2024-10-11 00:33:48 +2029 2029 2030 202.9 405.8 2029 1975-07-23 2024-10-11 00:33:49.000 1975-07-23 2024-10-11 00:33:49 +2030 2030 2031 203 406 2030 1975-07-24 2024-10-11 00:33:50.000 1975-07-24 2024-10-11 00:33:50 +2031 2031 2032 203.1 406.20000000000005 2031 1975-07-25 2024-10-11 00:33:51.000 1975-07-25 2024-10-11 00:33:51 +2032 2032 2033 203.2 406.40000000000003 2032 1975-07-26 2024-10-11 00:33:52.000 1975-07-26 2024-10-11 00:33:52 +2033 2033 2034 203.3 406.6 2033 1975-07-27 2024-10-11 00:33:53.000 1975-07-27 2024-10-11 00:33:53 +2034 2034 2035 203.4 406.8 2034 1975-07-28 2024-10-11 00:33:54.000 1975-07-28 2024-10-11 00:33:54 +2035 2035 2036 203.5 407 2035 1975-07-29 2024-10-11 00:33:55.000 1975-07-29 2024-10-11 00:33:55 +2036 2036 2037 203.6 407.20000000000005 2036 1975-07-30 2024-10-11 00:33:56.000 1975-07-30 2024-10-11 00:33:56 +2037 2037 2038 203.7 407.40000000000003 2037 1975-07-31 2024-10-11 00:33:57.000 1975-07-31 2024-10-11 00:33:57 +2038 2038 2039 203.8 407.6 2038 1975-08-01 2024-10-11 00:33:58.000 1975-08-01 2024-10-11 00:33:58 +2039 2039 2040 203.9 407.8 2039 1975-08-02 2024-10-11 00:33:59.000 1975-08-02 2024-10-11 00:33:59 +2040 2040 2041 204 408 2040 1975-08-03 2024-10-11 00:34:00.000 1975-08-03 2024-10-11 00:34:00 +2041 2041 2042 204.1 408.20000000000005 2041 1975-08-04 2024-10-11 00:34:01.000 1975-08-04 2024-10-11 00:34:01 +2042 2042 2043 204.2 408.40000000000003 2042 1975-08-05 2024-10-11 00:34:02.000 1975-08-05 2024-10-11 00:34:02 +2043 2043 2044 204.3 408.6 2043 1975-08-06 2024-10-11 00:34:03.000 1975-08-06 2024-10-11 00:34:03 +2044 2044 2045 204.4 408.8 2044 1975-08-07 2024-10-11 00:34:04.000 1975-08-07 2024-10-11 00:34:04 +2045 2045 2046 204.5 409 2045 1975-08-08 2024-10-11 00:34:05.000 1975-08-08 2024-10-11 00:34:05 +2046 2046 2047 204.6 409.20000000000005 2046 1975-08-09 2024-10-11 00:34:06.000 1975-08-09 2024-10-11 00:34:06 +2047 2047 2048 204.7 409.40000000000003 2047 1975-08-10 2024-10-11 00:34:07.000 1975-08-10 2024-10-11 00:34:07 +2048 2048 2049 204.8 409.6 2048 1975-08-11 2024-10-11 00:34:08.000 1975-08-11 2024-10-11 00:34:08 +2049 2049 2050 204.9 409.8 2049 1975-08-12 2024-10-11 00:34:09.000 1975-08-12 2024-10-11 00:34:09 +2050 2050 2051 205 410 2050 1975-08-13 2024-10-11 00:34:10.000 1975-08-13 2024-10-11 00:34:10 +2051 2051 2052 205.1 410.20000000000005 2051 1975-08-14 2024-10-11 00:34:11.000 1975-08-14 2024-10-11 00:34:11 +2052 2052 2053 205.2 410.40000000000003 2052 1975-08-15 2024-10-11 00:34:12.000 1975-08-15 2024-10-11 00:34:12 +2053 2053 2054 205.3 410.6 2053 1975-08-16 2024-10-11 00:34:13.000 1975-08-16 2024-10-11 00:34:13 +2054 2054 2055 205.4 410.8 2054 1975-08-17 2024-10-11 00:34:14.000 1975-08-17 2024-10-11 00:34:14 +2055 2055 2056 205.5 411 2055 1975-08-18 2024-10-11 00:34:15.000 1975-08-18 2024-10-11 00:34:15 +2056 2056 2057 205.6 411.20000000000005 2056 1975-08-19 2024-10-11 00:34:16.000 1975-08-19 2024-10-11 00:34:16 +2057 2057 2058 205.7 411.40000000000003 2057 1975-08-20 2024-10-11 00:34:17.000 1975-08-20 2024-10-11 00:34:17 +2058 2058 2059 205.8 411.6 2058 1975-08-21 2024-10-11 00:34:18.000 1975-08-21 2024-10-11 00:34:18 +2059 2059 2060 205.9 411.8 2059 1975-08-22 2024-10-11 00:34:19.000 1975-08-22 2024-10-11 00:34:19 +2060 2060 2061 206 412 2060 1975-08-23 2024-10-11 00:34:20.000 1975-08-23 2024-10-11 00:34:20 +2061 2061 2062 206.1 412.20000000000005 2061 1975-08-24 2024-10-11 00:34:21.000 1975-08-24 2024-10-11 00:34:21 +2062 2062 2063 206.2 412.40000000000003 2062 1975-08-25 2024-10-11 00:34:22.000 1975-08-25 2024-10-11 00:34:22 +2063 2063 2064 206.3 412.6 2063 1975-08-26 2024-10-11 00:34:23.000 1975-08-26 2024-10-11 00:34:23 +2064 2064 2065 206.4 412.8 2064 1975-08-27 2024-10-11 00:34:24.000 1975-08-27 2024-10-11 00:34:24 +2065 2065 2066 206.5 413 2065 1975-08-28 2024-10-11 00:34:25.000 1975-08-28 2024-10-11 00:34:25 +2066 2066 2067 206.6 413.20000000000005 2066 1975-08-29 2024-10-11 00:34:26.000 1975-08-29 2024-10-11 00:34:26 +2067 2067 2068 206.7 413.40000000000003 2067 1975-08-30 2024-10-11 00:34:27.000 1975-08-30 2024-10-11 00:34:27 +2068 2068 2069 206.8 413.6 2068 1975-08-31 2024-10-11 00:34:28.000 1975-08-31 2024-10-11 00:34:28 +2069 2069 2070 206.9 413.8 2069 1975-09-01 2024-10-11 00:34:29.000 1975-09-01 2024-10-11 00:34:29 +2070 2070 2071 207 414 2070 1975-09-02 2024-10-11 00:34:30.000 1975-09-02 2024-10-11 00:34:30 +2071 2071 2072 207.1 414.20000000000005 2071 1975-09-03 2024-10-11 00:34:31.000 1975-09-03 2024-10-11 00:34:31 +2072 2072 2073 207.2 414.40000000000003 2072 1975-09-04 2024-10-11 00:34:32.000 1975-09-04 2024-10-11 00:34:32 +2073 2073 2074 207.3 414.6 2073 1975-09-05 2024-10-11 00:34:33.000 1975-09-05 2024-10-11 00:34:33 +2074 2074 2075 207.4 414.8 2074 1975-09-06 2024-10-11 00:34:34.000 1975-09-06 2024-10-11 00:34:34 +2075 2075 2076 207.5 415 2075 1975-09-07 2024-10-11 00:34:35.000 1975-09-07 2024-10-11 00:34:35 +2076 2076 2077 207.6 415.20000000000005 2076 1975-09-08 2024-10-11 00:34:36.000 1975-09-08 2024-10-11 00:34:36 +2077 2077 2078 207.7 415.40000000000003 2077 1975-09-09 2024-10-11 00:34:37.000 1975-09-09 2024-10-11 00:34:37 +2078 2078 2079 207.8 415.6 2078 1975-09-10 2024-10-11 00:34:38.000 1975-09-10 2024-10-11 00:34:38 +2079 2079 2080 207.9 415.8 2079 1975-09-11 2024-10-11 00:34:39.000 1975-09-11 2024-10-11 00:34:39 +2080 2080 2081 208 416 2080 1975-09-12 2024-10-11 00:34:40.000 1975-09-12 2024-10-11 00:34:40 +2081 2081 2082 208.1 416.20000000000005 2081 1975-09-13 2024-10-11 00:34:41.000 1975-09-13 2024-10-11 00:34:41 +2082 2082 2083 208.2 416.40000000000003 2082 1975-09-14 2024-10-11 00:34:42.000 1975-09-14 2024-10-11 00:34:42 +2083 2083 2084 208.3 416.6 2083 1975-09-15 2024-10-11 00:34:43.000 1975-09-15 2024-10-11 00:34:43 +2084 2084 2085 208.4 416.8 2084 1975-09-16 2024-10-11 00:34:44.000 1975-09-16 2024-10-11 00:34:44 +2085 2085 2086 208.5 417 2085 1975-09-17 2024-10-11 00:34:45.000 1975-09-17 2024-10-11 00:34:45 +2086 2086 2087 208.6 417.20000000000005 2086 1975-09-18 2024-10-11 00:34:46.000 1975-09-18 2024-10-11 00:34:46 +2087 2087 2088 208.7 417.40000000000003 2087 1975-09-19 2024-10-11 00:34:47.000 1975-09-19 2024-10-11 00:34:47 +2088 2088 2089 208.8 417.6 2088 1975-09-20 2024-10-11 00:34:48.000 1975-09-20 2024-10-11 00:34:48 +2089 2089 2090 208.9 417.8 2089 1975-09-21 2024-10-11 00:34:49.000 1975-09-21 2024-10-11 00:34:49 +2090 2090 2091 209 418 2090 1975-09-22 2024-10-11 00:34:50.000 1975-09-22 2024-10-11 00:34:50 +2091 2091 2092 209.1 418.20000000000005 2091 1975-09-23 2024-10-11 00:34:51.000 1975-09-23 2024-10-11 00:34:51 +2092 2092 2093 209.2 418.40000000000003 2092 1975-09-24 2024-10-11 00:34:52.000 1975-09-24 2024-10-11 00:34:52 +2093 2093 2094 209.3 418.6 2093 1975-09-25 2024-10-11 00:34:53.000 1975-09-25 2024-10-11 00:34:53 +2094 2094 2095 209.4 418.8 2094 1975-09-26 2024-10-11 00:34:54.000 1975-09-26 2024-10-11 00:34:54 +2095 2095 2096 209.5 419 2095 1975-09-27 2024-10-11 00:34:55.000 1975-09-27 2024-10-11 00:34:55 +2096 2096 2097 209.6 419.20000000000005 2096 1975-09-28 2024-10-11 00:34:56.000 1975-09-28 2024-10-11 00:34:56 +2097 2097 2098 209.7 419.40000000000003 2097 1975-09-29 2024-10-11 00:34:57.000 1975-09-29 2024-10-11 00:34:57 +2098 2098 2099 209.8 419.6 2098 1975-09-30 2024-10-11 00:34:58.000 1975-09-30 2024-10-11 00:34:58 +2099 2099 2100 209.9 419.8 2099 1975-10-01 2024-10-11 00:34:59.000 1975-10-01 2024-10-11 00:34:59 +2100 2100 2101 210 420 2100 1975-10-02 2024-10-11 00:35:00.000 1975-10-02 2024-10-11 00:35:00 +2101 2101 2102 210.1 420.20000000000005 2101 1975-10-03 2024-10-11 00:35:01.000 1975-10-03 2024-10-11 00:35:01 +2102 2102 2103 210.2 420.40000000000003 2102 1975-10-04 2024-10-11 00:35:02.000 1975-10-04 2024-10-11 00:35:02 +2103 2103 2104 210.3 420.6 2103 1975-10-05 2024-10-11 00:35:03.000 1975-10-05 2024-10-11 00:35:03 +2104 2104 2105 210.4 420.8 2104 1975-10-06 2024-10-11 00:35:04.000 1975-10-06 2024-10-11 00:35:04 +2105 2105 2106 210.5 421 2105 1975-10-07 2024-10-11 00:35:05.000 1975-10-07 2024-10-11 00:35:05 +2106 2106 2107 210.6 421.20000000000005 2106 1975-10-08 2024-10-11 00:35:06.000 1975-10-08 2024-10-11 00:35:06 +2107 2107 2108 210.7 421.40000000000003 2107 1975-10-09 2024-10-11 00:35:07.000 1975-10-09 2024-10-11 00:35:07 +2108 2108 2109 210.8 421.6 2108 1975-10-10 2024-10-11 00:35:08.000 1975-10-10 2024-10-11 00:35:08 +2109 2109 2110 210.9 421.8 2109 1975-10-11 2024-10-11 00:35:09.000 1975-10-11 2024-10-11 00:35:09 +2110 2110 2111 211 422 2110 1975-10-12 2024-10-11 00:35:10.000 1975-10-12 2024-10-11 00:35:10 +2111 2111 2112 211.1 422.20000000000005 2111 1975-10-13 2024-10-11 00:35:11.000 1975-10-13 2024-10-11 00:35:11 +2112 2112 2113 211.2 422.40000000000003 2112 1975-10-14 2024-10-11 00:35:12.000 1975-10-14 2024-10-11 00:35:12 +2113 2113 2114 211.3 422.6 2113 1975-10-15 2024-10-11 00:35:13.000 1975-10-15 2024-10-11 00:35:13 +2114 2114 2115 211.4 422.8 2114 1975-10-16 2024-10-11 00:35:14.000 1975-10-16 2024-10-11 00:35:14 +2115 2115 2116 211.5 423 2115 1975-10-17 2024-10-11 00:35:15.000 1975-10-17 2024-10-11 00:35:15 +2116 2116 2117 211.6 423.20000000000005 2116 1975-10-18 2024-10-11 00:35:16.000 1975-10-18 2024-10-11 00:35:16 +2117 2117 2118 211.7 423.40000000000003 2117 1975-10-19 2024-10-11 00:35:17.000 1975-10-19 2024-10-11 00:35:17 +2118 2118 2119 211.8 423.6 2118 1975-10-20 2024-10-11 00:35:18.000 1975-10-20 2024-10-11 00:35:18 +2119 2119 2120 211.9 423.8 2119 1975-10-21 2024-10-11 00:35:19.000 1975-10-21 2024-10-11 00:35:19 +2120 2120 2121 212 424 2120 1975-10-22 2024-10-11 00:35:20.000 1975-10-22 2024-10-11 00:35:20 +2121 2121 2122 212.1 424.20000000000005 2121 1975-10-23 2024-10-11 00:35:21.000 1975-10-23 2024-10-11 00:35:21 +2122 2122 2123 212.2 424.40000000000003 2122 1975-10-24 2024-10-11 00:35:22.000 1975-10-24 2024-10-11 00:35:22 +2123 2123 2124 212.3 424.6 2123 1975-10-25 2024-10-11 00:35:23.000 1975-10-25 2024-10-11 00:35:23 +2124 2124 2125 212.4 424.8 2124 1975-10-26 2024-10-11 00:35:24.000 1975-10-26 2024-10-11 00:35:24 +2125 2125 2126 212.5 425 2125 1975-10-27 2024-10-11 00:35:25.000 1975-10-27 2024-10-11 00:35:25 +2126 2126 2127 212.6 425.20000000000005 2126 1975-10-28 2024-10-11 00:35:26.000 1975-10-28 2024-10-11 00:35:26 +2127 2127 2128 212.7 425.40000000000003 2127 1975-10-29 2024-10-11 00:35:27.000 1975-10-29 2024-10-11 00:35:27 +2128 2128 2129 212.8 425.6 2128 1975-10-30 2024-10-11 00:35:28.000 1975-10-30 2024-10-11 00:35:28 +2129 2129 2130 212.9 425.8 2129 1975-10-31 2024-10-11 00:35:29.000 1975-10-31 2024-10-11 00:35:29 +2130 2130 2131 213 426 2130 1975-11-01 2024-10-11 00:35:30.000 1975-11-01 2024-10-11 00:35:30 +2131 2131 2132 213.1 426.20000000000005 2131 1975-11-02 2024-10-11 00:35:31.000 1975-11-02 2024-10-11 00:35:31 +2132 2132 2133 213.2 426.40000000000003 2132 1975-11-03 2024-10-11 00:35:32.000 1975-11-03 2024-10-11 00:35:32 +2133 2133 2134 213.3 426.6 2133 1975-11-04 2024-10-11 00:35:33.000 1975-11-04 2024-10-11 00:35:33 +2134 2134 2135 213.4 426.8 2134 1975-11-05 2024-10-11 00:35:34.000 1975-11-05 2024-10-11 00:35:34 +2135 2135 2136 213.5 427 2135 1975-11-06 2024-10-11 00:35:35.000 1975-11-06 2024-10-11 00:35:35 +2136 2136 2137 213.6 427.20000000000005 2136 1975-11-07 2024-10-11 00:35:36.000 1975-11-07 2024-10-11 00:35:36 +2137 2137 2138 213.7 427.40000000000003 2137 1975-11-08 2024-10-11 00:35:37.000 1975-11-08 2024-10-11 00:35:37 +2138 2138 2139 213.8 427.6 2138 1975-11-09 2024-10-11 00:35:38.000 1975-11-09 2024-10-11 00:35:38 +2139 2139 2140 213.9 427.8 2139 1975-11-10 2024-10-11 00:35:39.000 1975-11-10 2024-10-11 00:35:39 +2140 2140 2141 214 428 2140 1975-11-11 2024-10-11 00:35:40.000 1975-11-11 2024-10-11 00:35:40 +2141 2141 2142 214.1 428.20000000000005 2141 1975-11-12 2024-10-11 00:35:41.000 1975-11-12 2024-10-11 00:35:41 +2142 2142 2143 214.2 428.40000000000003 2142 1975-11-13 2024-10-11 00:35:42.000 1975-11-13 2024-10-11 00:35:42 +2143 2143 2144 214.3 428.6 2143 1975-11-14 2024-10-11 00:35:43.000 1975-11-14 2024-10-11 00:35:43 +2144 2144 2145 214.4 428.8 2144 1975-11-15 2024-10-11 00:35:44.000 1975-11-15 2024-10-11 00:35:44 +2145 2145 2146 214.5 429 2145 1975-11-16 2024-10-11 00:35:45.000 1975-11-16 2024-10-11 00:35:45 +2146 2146 2147 214.6 429.20000000000005 2146 1975-11-17 2024-10-11 00:35:46.000 1975-11-17 2024-10-11 00:35:46 +2147 2147 2148 214.7 429.40000000000003 2147 1975-11-18 2024-10-11 00:35:47.000 1975-11-18 2024-10-11 00:35:47 +2148 2148 2149 214.8 429.6 2148 1975-11-19 2024-10-11 00:35:48.000 1975-11-19 2024-10-11 00:35:48 +2149 2149 2150 214.9 429.8 2149 1975-11-20 2024-10-11 00:35:49.000 1975-11-20 2024-10-11 00:35:49 +2150 2150 2151 215 430 2150 1975-11-21 2024-10-11 00:35:50.000 1975-11-21 2024-10-11 00:35:50 +2151 2151 2152 215.1 430.20000000000005 2151 1975-11-22 2024-10-11 00:35:51.000 1975-11-22 2024-10-11 00:35:51 +2152 2152 2153 215.2 430.40000000000003 2152 1975-11-23 2024-10-11 00:35:52.000 1975-11-23 2024-10-11 00:35:52 +2153 2153 2154 215.3 430.6 2153 1975-11-24 2024-10-11 00:35:53.000 1975-11-24 2024-10-11 00:35:53 +2154 2154 2155 215.4 430.8 2154 1975-11-25 2024-10-11 00:35:54.000 1975-11-25 2024-10-11 00:35:54 +2155 2155 2156 215.5 431 2155 1975-11-26 2024-10-11 00:35:55.000 1975-11-26 2024-10-11 00:35:55 +2156 2156 2157 215.6 431.20000000000005 2156 1975-11-27 2024-10-11 00:35:56.000 1975-11-27 2024-10-11 00:35:56 +2157 2157 2158 215.7 431.40000000000003 2157 1975-11-28 2024-10-11 00:35:57.000 1975-11-28 2024-10-11 00:35:57 +2158 2158 2159 215.8 431.6 2158 1975-11-29 2024-10-11 00:35:58.000 1975-11-29 2024-10-11 00:35:58 +2159 2159 2160 215.9 431.8 2159 1975-11-30 2024-10-11 00:35:59.000 1975-11-30 2024-10-11 00:35:59 +2160 2160 2161 216 432 2160 1975-12-01 2024-10-11 00:36:00.000 1975-12-01 2024-10-11 00:36:00 +2161 2161 2162 216.1 432.20000000000005 2161 1975-12-02 2024-10-11 00:36:01.000 1975-12-02 2024-10-11 00:36:01 +2162 2162 2163 216.2 432.40000000000003 2162 1975-12-03 2024-10-11 00:36:02.000 1975-12-03 2024-10-11 00:36:02 +2163 2163 2164 216.3 432.6 2163 1975-12-04 2024-10-11 00:36:03.000 1975-12-04 2024-10-11 00:36:03 +2164 2164 2165 216.4 432.8 2164 1975-12-05 2024-10-11 00:36:04.000 1975-12-05 2024-10-11 00:36:04 +2165 2165 2166 216.5 433 2165 1975-12-06 2024-10-11 00:36:05.000 1975-12-06 2024-10-11 00:36:05 +2166 2166 2167 216.6 433.20000000000005 2166 1975-12-07 2024-10-11 00:36:06.000 1975-12-07 2024-10-11 00:36:06 +2167 2167 2168 216.7 433.40000000000003 2167 1975-12-08 2024-10-11 00:36:07.000 1975-12-08 2024-10-11 00:36:07 +2168 2168 2169 216.8 433.6 2168 1975-12-09 2024-10-11 00:36:08.000 1975-12-09 2024-10-11 00:36:08 +2169 2169 2170 216.9 433.8 2169 1975-12-10 2024-10-11 00:36:09.000 1975-12-10 2024-10-11 00:36:09 +2170 2170 2171 217 434 2170 1975-12-11 2024-10-11 00:36:10.000 1975-12-11 2024-10-11 00:36:10 +2171 2171 2172 217.1 434.20000000000005 2171 1975-12-12 2024-10-11 00:36:11.000 1975-12-12 2024-10-11 00:36:11 +2172 2172 2173 217.2 434.40000000000003 2172 1975-12-13 2024-10-11 00:36:12.000 1975-12-13 2024-10-11 00:36:12 +2173 2173 2174 217.3 434.6 2173 1975-12-14 2024-10-11 00:36:13.000 1975-12-14 2024-10-11 00:36:13 +2174 2174 2175 217.4 434.8 2174 1975-12-15 2024-10-11 00:36:14.000 1975-12-15 2024-10-11 00:36:14 +2175 2175 2176 217.5 435 2175 1975-12-16 2024-10-11 00:36:15.000 1975-12-16 2024-10-11 00:36:15 +2176 2176 2177 217.6 435.20000000000005 2176 1975-12-17 2024-10-11 00:36:16.000 1975-12-17 2024-10-11 00:36:16 +2177 2177 2178 217.7 435.40000000000003 2177 1975-12-18 2024-10-11 00:36:17.000 1975-12-18 2024-10-11 00:36:17 +2178 2178 2179 217.8 435.6 2178 1975-12-19 2024-10-11 00:36:18.000 1975-12-19 2024-10-11 00:36:18 +2179 2179 2180 217.9 435.8 2179 1975-12-20 2024-10-11 00:36:19.000 1975-12-20 2024-10-11 00:36:19 +2180 2180 2181 218 436 2180 1975-12-21 2024-10-11 00:36:20.000 1975-12-21 2024-10-11 00:36:20 +2181 2181 2182 218.1 436.20000000000005 2181 1975-12-22 2024-10-11 00:36:21.000 1975-12-22 2024-10-11 00:36:21 +2182 2182 2183 218.2 436.40000000000003 2182 1975-12-23 2024-10-11 00:36:22.000 1975-12-23 2024-10-11 00:36:22 +2183 2183 2184 218.3 436.6 2183 1975-12-24 2024-10-11 00:36:23.000 1975-12-24 2024-10-11 00:36:23 +2184 2184 2185 218.4 436.8 2184 1975-12-25 2024-10-11 00:36:24.000 1975-12-25 2024-10-11 00:36:24 +2185 2185 2186 218.5 437 2185 1975-12-26 2024-10-11 00:36:25.000 1975-12-26 2024-10-11 00:36:25 +2186 2186 2187 218.6 437.20000000000005 2186 1975-12-27 2024-10-11 00:36:26.000 1975-12-27 2024-10-11 00:36:26 +2187 2187 2188 218.7 437.40000000000003 2187 1975-12-28 2024-10-11 00:36:27.000 1975-12-28 2024-10-11 00:36:27 +2188 2188 2189 218.8 437.6 2188 1975-12-29 2024-10-11 00:36:28.000 1975-12-29 2024-10-11 00:36:28 +2189 2189 2190 218.9 437.8 2189 1975-12-30 2024-10-11 00:36:29.000 1975-12-30 2024-10-11 00:36:29 +2190 2190 2191 219 438 2190 1975-12-31 2024-10-11 00:36:30.000 1975-12-31 2024-10-11 00:36:30 +2191 2191 2192 219.1 438.20000000000005 2191 1976-01-01 2024-10-11 00:36:31.000 1976-01-01 2024-10-11 00:36:31 +2192 2192 2193 219.2 438.40000000000003 2192 1976-01-02 2024-10-11 00:36:32.000 1976-01-02 2024-10-11 00:36:32 +2193 2193 2194 219.3 438.6 2193 1976-01-03 2024-10-11 00:36:33.000 1976-01-03 2024-10-11 00:36:33 +2194 2194 2195 219.4 438.8 2194 1976-01-04 2024-10-11 00:36:34.000 1976-01-04 2024-10-11 00:36:34 +2195 2195 2196 219.5 439 2195 1976-01-05 2024-10-11 00:36:35.000 1976-01-05 2024-10-11 00:36:35 +2196 2196 2197 219.6 439.20000000000005 2196 1976-01-06 2024-10-11 00:36:36.000 1976-01-06 2024-10-11 00:36:36 +2197 2197 2198 219.7 439.40000000000003 2197 1976-01-07 2024-10-11 00:36:37.000 1976-01-07 2024-10-11 00:36:37 +2198 2198 2199 219.8 439.6 2198 1976-01-08 2024-10-11 00:36:38.000 1976-01-08 2024-10-11 00:36:38 +2199 2199 2200 219.9 439.8 2199 1976-01-09 2024-10-11 00:36:39.000 1976-01-09 2024-10-11 00:36:39 +2200 2200 2201 220 440 2200 1976-01-10 2024-10-11 00:36:40.000 1976-01-10 2024-10-11 00:36:40 +2201 2201 2202 220.1 440.20000000000005 2201 1976-01-11 2024-10-11 00:36:41.000 1976-01-11 2024-10-11 00:36:41 +2202 2202 2203 220.2 440.40000000000003 2202 1976-01-12 2024-10-11 00:36:42.000 1976-01-12 2024-10-11 00:36:42 +2203 2203 2204 220.3 440.6 2203 1976-01-13 2024-10-11 00:36:43.000 1976-01-13 2024-10-11 00:36:43 +2204 2204 2205 220.4 440.8 2204 1976-01-14 2024-10-11 00:36:44.000 1976-01-14 2024-10-11 00:36:44 +2205 2205 2206 220.5 441 2205 1976-01-15 2024-10-11 00:36:45.000 1976-01-15 2024-10-11 00:36:45 +2206 2206 2207 220.6 441.20000000000005 2206 1976-01-16 2024-10-11 00:36:46.000 1976-01-16 2024-10-11 00:36:46 +2207 2207 2208 220.7 441.40000000000003 2207 1976-01-17 2024-10-11 00:36:47.000 1976-01-17 2024-10-11 00:36:47 +2208 2208 2209 220.8 441.6 2208 1976-01-18 2024-10-11 00:36:48.000 1976-01-18 2024-10-11 00:36:48 +2209 2209 2210 220.9 441.8 2209 1976-01-19 2024-10-11 00:36:49.000 1976-01-19 2024-10-11 00:36:49 +2210 2210 2211 221 442 2210 1976-01-20 2024-10-11 00:36:50.000 1976-01-20 2024-10-11 00:36:50 +2211 2211 2212 221.1 442.20000000000005 2211 1976-01-21 2024-10-11 00:36:51.000 1976-01-21 2024-10-11 00:36:51 +2212 2212 2213 221.2 442.40000000000003 2212 1976-01-22 2024-10-11 00:36:52.000 1976-01-22 2024-10-11 00:36:52 +2213 2213 2214 221.3 442.6 2213 1976-01-23 2024-10-11 00:36:53.000 1976-01-23 2024-10-11 00:36:53 +2214 2214 2215 221.4 442.8 2214 1976-01-24 2024-10-11 00:36:54.000 1976-01-24 2024-10-11 00:36:54 +2215 2215 2216 221.5 443 2215 1976-01-25 2024-10-11 00:36:55.000 1976-01-25 2024-10-11 00:36:55 +2216 2216 2217 221.6 443.20000000000005 2216 1976-01-26 2024-10-11 00:36:56.000 1976-01-26 2024-10-11 00:36:56 +2217 2217 2218 221.7 443.40000000000003 2217 1976-01-27 2024-10-11 00:36:57.000 1976-01-27 2024-10-11 00:36:57 +2218 2218 2219 221.8 443.6 2218 1976-01-28 2024-10-11 00:36:58.000 1976-01-28 2024-10-11 00:36:58 +2219 2219 2220 221.9 443.8 2219 1976-01-29 2024-10-11 00:36:59.000 1976-01-29 2024-10-11 00:36:59 +2220 2220 2221 222 444 2220 1976-01-30 2024-10-11 00:37:00.000 1976-01-30 2024-10-11 00:37:00 +2221 2221 2222 222.1 444.20000000000005 2221 1976-01-31 2024-10-11 00:37:01.000 1976-01-31 2024-10-11 00:37:01 +2222 2222 2223 222.2 444.40000000000003 2222 1976-02-01 2024-10-11 00:37:02.000 1976-02-01 2024-10-11 00:37:02 +2223 2223 2224 222.3 444.6 2223 1976-02-02 2024-10-11 00:37:03.000 1976-02-02 2024-10-11 00:37:03 +2224 2224 2225 222.4 444.8 2224 1976-02-03 2024-10-11 00:37:04.000 1976-02-03 2024-10-11 00:37:04 +2225 2225 2226 222.5 445 2225 1976-02-04 2024-10-11 00:37:05.000 1976-02-04 2024-10-11 00:37:05 +2226 2226 2227 222.6 445.20000000000005 2226 1976-02-05 2024-10-11 00:37:06.000 1976-02-05 2024-10-11 00:37:06 +2227 2227 2228 222.7 445.40000000000003 2227 1976-02-06 2024-10-11 00:37:07.000 1976-02-06 2024-10-11 00:37:07 +2228 2228 2229 222.8 445.6 2228 1976-02-07 2024-10-11 00:37:08.000 1976-02-07 2024-10-11 00:37:08 +2229 2229 2230 222.9 445.8 2229 1976-02-08 2024-10-11 00:37:09.000 1976-02-08 2024-10-11 00:37:09 +2230 2230 2231 223 446 2230 1976-02-09 2024-10-11 00:37:10.000 1976-02-09 2024-10-11 00:37:10 +2231 2231 2232 223.1 446.20000000000005 2231 1976-02-10 2024-10-11 00:37:11.000 1976-02-10 2024-10-11 00:37:11 +2232 2232 2233 223.2 446.40000000000003 2232 1976-02-11 2024-10-11 00:37:12.000 1976-02-11 2024-10-11 00:37:12 +2233 2233 2234 223.3 446.6 2233 1976-02-12 2024-10-11 00:37:13.000 1976-02-12 2024-10-11 00:37:13 +2234 2234 2235 223.4 446.8 2234 1976-02-13 2024-10-11 00:37:14.000 1976-02-13 2024-10-11 00:37:14 +2235 2235 2236 223.5 447 2235 1976-02-14 2024-10-11 00:37:15.000 1976-02-14 2024-10-11 00:37:15 +2236 2236 2237 223.6 447.20000000000005 2236 1976-02-15 2024-10-11 00:37:16.000 1976-02-15 2024-10-11 00:37:16 +2237 2237 2238 223.7 447.40000000000003 2237 1976-02-16 2024-10-11 00:37:17.000 1976-02-16 2024-10-11 00:37:17 +2238 2238 2239 223.8 447.6 2238 1976-02-17 2024-10-11 00:37:18.000 1976-02-17 2024-10-11 00:37:18 +2239 2239 2240 223.9 447.8 2239 1976-02-18 2024-10-11 00:37:19.000 1976-02-18 2024-10-11 00:37:19 +2240 2240 2241 224 448 2240 1976-02-19 2024-10-11 00:37:20.000 1976-02-19 2024-10-11 00:37:20 +2241 2241 2242 224.1 448.20000000000005 2241 1976-02-20 2024-10-11 00:37:21.000 1976-02-20 2024-10-11 00:37:21 +2242 2242 2243 224.2 448.40000000000003 2242 1976-02-21 2024-10-11 00:37:22.000 1976-02-21 2024-10-11 00:37:22 +2243 2243 2244 224.3 448.6 2243 1976-02-22 2024-10-11 00:37:23.000 1976-02-22 2024-10-11 00:37:23 +2244 2244 2245 224.4 448.8 2244 1976-02-23 2024-10-11 00:37:24.000 1976-02-23 2024-10-11 00:37:24 +2245 2245 2246 224.5 449 2245 1976-02-24 2024-10-11 00:37:25.000 1976-02-24 2024-10-11 00:37:25 +2246 2246 2247 224.6 449.20000000000005 2246 1976-02-25 2024-10-11 00:37:26.000 1976-02-25 2024-10-11 00:37:26 +2247 2247 2248 224.7 449.40000000000003 2247 1976-02-26 2024-10-11 00:37:27.000 1976-02-26 2024-10-11 00:37:27 +2248 2248 2249 224.8 449.6 2248 1976-02-27 2024-10-11 00:37:28.000 1976-02-27 2024-10-11 00:37:28 +2249 2249 2250 224.9 449.8 2249 1976-02-28 2024-10-11 00:37:29.000 1976-02-28 2024-10-11 00:37:29 +2250 2250 2251 225 450 2250 1976-02-29 2024-10-11 00:37:30.000 1976-02-29 2024-10-11 00:37:30 +2251 2251 2252 225.1 450.20000000000005 2251 1976-03-01 2024-10-11 00:37:31.000 1976-03-01 2024-10-11 00:37:31 +2252 2252 2253 225.2 450.40000000000003 2252 1976-03-02 2024-10-11 00:37:32.000 1976-03-02 2024-10-11 00:37:32 +2253 2253 2254 225.3 450.6 2253 1976-03-03 2024-10-11 00:37:33.000 1976-03-03 2024-10-11 00:37:33 +2254 2254 2255 225.4 450.8 2254 1976-03-04 2024-10-11 00:37:34.000 1976-03-04 2024-10-11 00:37:34 +2255 2255 2256 225.5 451 2255 1976-03-05 2024-10-11 00:37:35.000 1976-03-05 2024-10-11 00:37:35 +2256 2256 2257 225.6 451.20000000000005 2256 1976-03-06 2024-10-11 00:37:36.000 1976-03-06 2024-10-11 00:37:36 +2257 2257 2258 225.7 451.40000000000003 2257 1976-03-07 2024-10-11 00:37:37.000 1976-03-07 2024-10-11 00:37:37 +2258 2258 2259 225.8 451.6 2258 1976-03-08 2024-10-11 00:37:38.000 1976-03-08 2024-10-11 00:37:38 +2259 2259 2260 225.9 451.8 2259 1976-03-09 2024-10-11 00:37:39.000 1976-03-09 2024-10-11 00:37:39 +2260 2260 2261 226 452 2260 1976-03-10 2024-10-11 00:37:40.000 1976-03-10 2024-10-11 00:37:40 +2261 2261 2262 226.1 452.20000000000005 2261 1976-03-11 2024-10-11 00:37:41.000 1976-03-11 2024-10-11 00:37:41 +2262 2262 2263 226.2 452.40000000000003 2262 1976-03-12 2024-10-11 00:37:42.000 1976-03-12 2024-10-11 00:37:42 +2263 2263 2264 226.3 452.6 2263 1976-03-13 2024-10-11 00:37:43.000 1976-03-13 2024-10-11 00:37:43 +2264 2264 2265 226.4 452.8 2264 1976-03-14 2024-10-11 00:37:44.000 1976-03-14 2024-10-11 00:37:44 +2265 2265 2266 226.5 453 2265 1976-03-15 2024-10-11 00:37:45.000 1976-03-15 2024-10-11 00:37:45 +2266 2266 2267 226.6 453.20000000000005 2266 1976-03-16 2024-10-11 00:37:46.000 1976-03-16 2024-10-11 00:37:46 +2267 2267 2268 226.7 453.40000000000003 2267 1976-03-17 2024-10-11 00:37:47.000 1976-03-17 2024-10-11 00:37:47 +2268 2268 2269 226.8 453.6 2268 1976-03-18 2024-10-11 00:37:48.000 1976-03-18 2024-10-11 00:37:48 +2269 2269 2270 226.9 453.8 2269 1976-03-19 2024-10-11 00:37:49.000 1976-03-19 2024-10-11 00:37:49 +2270 2270 2271 227 454 2270 1976-03-20 2024-10-11 00:37:50.000 1976-03-20 2024-10-11 00:37:50 +2271 2271 2272 227.1 454.20000000000005 2271 1976-03-21 2024-10-11 00:37:51.000 1976-03-21 2024-10-11 00:37:51 +2272 2272 2273 227.2 454.40000000000003 2272 1976-03-22 2024-10-11 00:37:52.000 1976-03-22 2024-10-11 00:37:52 +2273 2273 2274 227.3 454.6 2273 1976-03-23 2024-10-11 00:37:53.000 1976-03-23 2024-10-11 00:37:53 +2274 2274 2275 227.4 454.8 2274 1976-03-24 2024-10-11 00:37:54.000 1976-03-24 2024-10-11 00:37:54 +2275 2275 2276 227.5 455 2275 1976-03-25 2024-10-11 00:37:55.000 1976-03-25 2024-10-11 00:37:55 +2276 2276 2277 227.6 455.20000000000005 2276 1976-03-26 2024-10-11 00:37:56.000 1976-03-26 2024-10-11 00:37:56 +2277 2277 2278 227.7 455.40000000000003 2277 1976-03-27 2024-10-11 00:37:57.000 1976-03-27 2024-10-11 00:37:57 +2278 2278 2279 227.8 455.6 2278 1976-03-28 2024-10-11 00:37:58.000 1976-03-28 2024-10-11 00:37:58 +2279 2279 2280 227.9 455.8 2279 1976-03-29 2024-10-11 00:37:59.000 1976-03-29 2024-10-11 00:37:59 +2280 2280 2281 228 456 2280 1976-03-30 2024-10-11 00:38:00.000 1976-03-30 2024-10-11 00:38:00 +2281 2281 2282 228.1 456.20000000000005 2281 1976-03-31 2024-10-11 00:38:01.000 1976-03-31 2024-10-11 00:38:01 +2282 2282 2283 228.2 456.40000000000003 2282 1976-04-01 2024-10-11 00:38:02.000 1976-04-01 2024-10-11 00:38:02 +2283 2283 2284 228.3 456.6 2283 1976-04-02 2024-10-11 00:38:03.000 1976-04-02 2024-10-11 00:38:03 +2284 2284 2285 228.4 456.8 2284 1976-04-03 2024-10-11 00:38:04.000 1976-04-03 2024-10-11 00:38:04 +2285 2285 2286 228.5 457 2285 1976-04-04 2024-10-11 00:38:05.000 1976-04-04 2024-10-11 00:38:05 +2286 2286 2287 228.6 457.20000000000005 2286 1976-04-05 2024-10-11 00:38:06.000 1976-04-05 2024-10-11 00:38:06 +2287 2287 2288 228.7 457.40000000000003 2287 1976-04-06 2024-10-11 00:38:07.000 1976-04-06 2024-10-11 00:38:07 +2288 2288 2289 228.8 457.6 2288 1976-04-07 2024-10-11 00:38:08.000 1976-04-07 2024-10-11 00:38:08 +2289 2289 2290 228.9 457.8 2289 1976-04-08 2024-10-11 00:38:09.000 1976-04-08 2024-10-11 00:38:09 +2290 2290 2291 229 458 2290 1976-04-09 2024-10-11 00:38:10.000 1976-04-09 2024-10-11 00:38:10 +2291 2291 2292 229.1 458.20000000000005 2291 1976-04-10 2024-10-11 00:38:11.000 1976-04-10 2024-10-11 00:38:11 +2292 2292 2293 229.2 458.40000000000003 2292 1976-04-11 2024-10-11 00:38:12.000 1976-04-11 2024-10-11 00:38:12 +2293 2293 2294 229.3 458.6 2293 1976-04-12 2024-10-11 00:38:13.000 1976-04-12 2024-10-11 00:38:13 +2294 2294 2295 229.4 458.8 2294 1976-04-13 2024-10-11 00:38:14.000 1976-04-13 2024-10-11 00:38:14 +2295 2295 2296 229.5 459 2295 1976-04-14 2024-10-11 00:38:15.000 1976-04-14 2024-10-11 00:38:15 +2296 2296 2297 229.6 459.20000000000005 2296 1976-04-15 2024-10-11 00:38:16.000 1976-04-15 2024-10-11 00:38:16 +2297 2297 2298 229.7 459.40000000000003 2297 1976-04-16 2024-10-11 00:38:17.000 1976-04-16 2024-10-11 00:38:17 +2298 2298 2299 229.8 459.6 2298 1976-04-17 2024-10-11 00:38:18.000 1976-04-17 2024-10-11 00:38:18 +2299 2299 2300 229.9 459.8 2299 1976-04-18 2024-10-11 00:38:19.000 1976-04-18 2024-10-11 00:38:19 +2300 2300 2301 230 460 2300 1976-04-19 2024-10-11 00:38:20.000 1976-04-19 2024-10-11 00:38:20 +2301 2301 2302 230.1 460.20000000000005 2301 1976-04-20 2024-10-11 00:38:21.000 1976-04-20 2024-10-11 00:38:21 +2302 2302 2303 230.2 460.40000000000003 2302 1976-04-21 2024-10-11 00:38:22.000 1976-04-21 2024-10-11 00:38:22 +2303 2303 2304 230.3 460.6 2303 1976-04-22 2024-10-11 00:38:23.000 1976-04-22 2024-10-11 00:38:23 +2304 2304 2305 230.4 460.8 2304 1976-04-23 2024-10-11 00:38:24.000 1976-04-23 2024-10-11 00:38:24 +2305 2305 2306 230.5 461 2305 1976-04-24 2024-10-11 00:38:25.000 1976-04-24 2024-10-11 00:38:25 +2306 2306 2307 230.6 461.20000000000005 2306 1976-04-25 2024-10-11 00:38:26.000 1976-04-25 2024-10-11 00:38:26 +2307 2307 2308 230.7 461.40000000000003 2307 1976-04-26 2024-10-11 00:38:27.000 1976-04-26 2024-10-11 00:38:27 +2308 2308 2309 230.8 461.6 2308 1976-04-27 2024-10-11 00:38:28.000 1976-04-27 2024-10-11 00:38:28 +2309 2309 2310 230.9 461.8 2309 1976-04-28 2024-10-11 00:38:29.000 1976-04-28 2024-10-11 00:38:29 +2310 2310 2311 231 462 2310 1976-04-29 2024-10-11 00:38:30.000 1976-04-29 2024-10-11 00:38:30 +2311 2311 2312 231.1 462.20000000000005 2311 1976-04-30 2024-10-11 00:38:31.000 1976-04-30 2024-10-11 00:38:31 +2312 2312 2313 231.2 462.40000000000003 2312 1976-05-01 2024-10-11 00:38:32.000 1976-05-01 2024-10-11 00:38:32 +2313 2313 2314 231.3 462.6 2313 1976-05-02 2024-10-11 00:38:33.000 1976-05-02 2024-10-11 00:38:33 +2314 2314 2315 231.4 462.8 2314 1976-05-03 2024-10-11 00:38:34.000 1976-05-03 2024-10-11 00:38:34 +2315 2315 2316 231.5 463 2315 1976-05-04 2024-10-11 00:38:35.000 1976-05-04 2024-10-11 00:38:35 +2316 2316 2317 231.6 463.20000000000005 2316 1976-05-05 2024-10-11 00:38:36.000 1976-05-05 2024-10-11 00:38:36 +2317 2317 2318 231.7 463.40000000000003 2317 1976-05-06 2024-10-11 00:38:37.000 1976-05-06 2024-10-11 00:38:37 +2318 2318 2319 231.8 463.6 2318 1976-05-07 2024-10-11 00:38:38.000 1976-05-07 2024-10-11 00:38:38 +2319 2319 2320 231.9 463.8 2319 1976-05-08 2024-10-11 00:38:39.000 1976-05-08 2024-10-11 00:38:39 +2320 2320 2321 232 464 2320 1976-05-09 2024-10-11 00:38:40.000 1976-05-09 2024-10-11 00:38:40 +2321 2321 2322 232.1 464.20000000000005 2321 1976-05-10 2024-10-11 00:38:41.000 1976-05-10 2024-10-11 00:38:41 +2322 2322 2323 232.2 464.40000000000003 2322 1976-05-11 2024-10-11 00:38:42.000 1976-05-11 2024-10-11 00:38:42 +2323 2323 2324 232.3 464.6 2323 1976-05-12 2024-10-11 00:38:43.000 1976-05-12 2024-10-11 00:38:43 +2324 2324 2325 232.4 464.8 2324 1976-05-13 2024-10-11 00:38:44.000 1976-05-13 2024-10-11 00:38:44 +2325 2325 2326 232.5 465 2325 1976-05-14 2024-10-11 00:38:45.000 1976-05-14 2024-10-11 00:38:45 +2326 2326 2327 232.6 465.20000000000005 2326 1976-05-15 2024-10-11 00:38:46.000 1976-05-15 2024-10-11 00:38:46 +2327 2327 2328 232.7 465.40000000000003 2327 1976-05-16 2024-10-11 00:38:47.000 1976-05-16 2024-10-11 00:38:47 +2328 2328 2329 232.8 465.6 2328 1976-05-17 2024-10-11 00:38:48.000 1976-05-17 2024-10-11 00:38:48 +2329 2329 2330 232.9 465.8 2329 1976-05-18 2024-10-11 00:38:49.000 1976-05-18 2024-10-11 00:38:49 +2330 2330 2331 233 466 2330 1976-05-19 2024-10-11 00:38:50.000 1976-05-19 2024-10-11 00:38:50 +2331 2331 2332 233.1 466.20000000000005 2331 1976-05-20 2024-10-11 00:38:51.000 1976-05-20 2024-10-11 00:38:51 +2332 2332 2333 233.2 466.40000000000003 2332 1976-05-21 2024-10-11 00:38:52.000 1976-05-21 2024-10-11 00:38:52 +2333 2333 2334 233.3 466.6 2333 1976-05-22 2024-10-11 00:38:53.000 1976-05-22 2024-10-11 00:38:53 +2334 2334 2335 233.4 466.8 2334 1976-05-23 2024-10-11 00:38:54.000 1976-05-23 2024-10-11 00:38:54 +2335 2335 2336 233.5 467 2335 1976-05-24 2024-10-11 00:38:55.000 1976-05-24 2024-10-11 00:38:55 +2336 2336 2337 233.6 467.20000000000005 2336 1976-05-25 2024-10-11 00:38:56.000 1976-05-25 2024-10-11 00:38:56 +2337 2337 2338 233.7 467.40000000000003 2337 1976-05-26 2024-10-11 00:38:57.000 1976-05-26 2024-10-11 00:38:57 +2338 2338 2339 233.8 467.6 2338 1976-05-27 2024-10-11 00:38:58.000 1976-05-27 2024-10-11 00:38:58 +2339 2339 2340 233.9 467.8 2339 1976-05-28 2024-10-11 00:38:59.000 1976-05-28 2024-10-11 00:38:59 +2340 2340 2341 234 468 2340 1976-05-29 2024-10-11 00:39:00.000 1976-05-29 2024-10-11 00:39:00 +2341 2341 2342 234.1 468.20000000000005 2341 1976-05-30 2024-10-11 00:39:01.000 1976-05-30 2024-10-11 00:39:01 +2342 2342 2343 234.2 468.40000000000003 2342 1976-05-31 2024-10-11 00:39:02.000 1976-05-31 2024-10-11 00:39:02 +2343 2343 2344 234.3 468.6 2343 1976-06-01 2024-10-11 00:39:03.000 1976-06-01 2024-10-11 00:39:03 +2344 2344 2345 234.4 468.8 2344 1976-06-02 2024-10-11 00:39:04.000 1976-06-02 2024-10-11 00:39:04 +2345 2345 2346 234.5 469 2345 1976-06-03 2024-10-11 00:39:05.000 1976-06-03 2024-10-11 00:39:05 +2346 2346 2347 234.6 469.20000000000005 2346 1976-06-04 2024-10-11 00:39:06.000 1976-06-04 2024-10-11 00:39:06 +2347 2347 2348 234.7 469.40000000000003 2347 1976-06-05 2024-10-11 00:39:07.000 1976-06-05 2024-10-11 00:39:07 +2348 2348 2349 234.8 469.6 2348 1976-06-06 2024-10-11 00:39:08.000 1976-06-06 2024-10-11 00:39:08 +2349 2349 2350 234.9 469.8 2349 1976-06-07 2024-10-11 00:39:09.000 1976-06-07 2024-10-11 00:39:09 +2350 2350 2351 235 470 2350 1976-06-08 2024-10-11 00:39:10.000 1976-06-08 2024-10-11 00:39:10 +2351 2351 2352 235.1 470.20000000000005 2351 1976-06-09 2024-10-11 00:39:11.000 1976-06-09 2024-10-11 00:39:11 +2352 2352 2353 235.2 470.40000000000003 2352 1976-06-10 2024-10-11 00:39:12.000 1976-06-10 2024-10-11 00:39:12 +2353 2353 2354 235.3 470.6 2353 1976-06-11 2024-10-11 00:39:13.000 1976-06-11 2024-10-11 00:39:13 +2354 2354 2355 235.4 470.8 2354 1976-06-12 2024-10-11 00:39:14.000 1976-06-12 2024-10-11 00:39:14 +2355 2355 2356 235.5 471 2355 1976-06-13 2024-10-11 00:39:15.000 1976-06-13 2024-10-11 00:39:15 +2356 2356 2357 235.6 471.20000000000005 2356 1976-06-14 2024-10-11 00:39:16.000 1976-06-14 2024-10-11 00:39:16 +2357 2357 2358 235.7 471.40000000000003 2357 1976-06-15 2024-10-11 00:39:17.000 1976-06-15 2024-10-11 00:39:17 +2358 2358 2359 235.8 471.6 2358 1976-06-16 2024-10-11 00:39:18.000 1976-06-16 2024-10-11 00:39:18 +2359 2359 2360 235.9 471.8 2359 1976-06-17 2024-10-11 00:39:19.000 1976-06-17 2024-10-11 00:39:19 +2360 2360 2361 236 472 2360 1976-06-18 2024-10-11 00:39:20.000 1976-06-18 2024-10-11 00:39:20 +2361 2361 2362 236.1 472.20000000000005 2361 1976-06-19 2024-10-11 00:39:21.000 1976-06-19 2024-10-11 00:39:21 +2362 2362 2363 236.2 472.40000000000003 2362 1976-06-20 2024-10-11 00:39:22.000 1976-06-20 2024-10-11 00:39:22 +2363 2363 2364 236.3 472.6 2363 1976-06-21 2024-10-11 00:39:23.000 1976-06-21 2024-10-11 00:39:23 +2364 2364 2365 236.4 472.8 2364 1976-06-22 2024-10-11 00:39:24.000 1976-06-22 2024-10-11 00:39:24 +2365 2365 2366 236.5 473 2365 1976-06-23 2024-10-11 00:39:25.000 1976-06-23 2024-10-11 00:39:25 +2366 2366 2367 236.6 473.20000000000005 2366 1976-06-24 2024-10-11 00:39:26.000 1976-06-24 2024-10-11 00:39:26 +2367 2367 2368 236.7 473.40000000000003 2367 1976-06-25 2024-10-11 00:39:27.000 1976-06-25 2024-10-11 00:39:27 +2368 2368 2369 236.8 473.6 2368 1976-06-26 2024-10-11 00:39:28.000 1976-06-26 2024-10-11 00:39:28 +2369 2369 2370 236.9 473.8 2369 1976-06-27 2024-10-11 00:39:29.000 1976-06-27 2024-10-11 00:39:29 +2370 2370 2371 237 474 2370 1976-06-28 2024-10-11 00:39:30.000 1976-06-28 2024-10-11 00:39:30 +2371 2371 2372 237.1 474.20000000000005 2371 1976-06-29 2024-10-11 00:39:31.000 1976-06-29 2024-10-11 00:39:31 +2372 2372 2373 237.2 474.40000000000003 2372 1976-06-30 2024-10-11 00:39:32.000 1976-06-30 2024-10-11 00:39:32 +2373 2373 2374 237.3 474.6 2373 1976-07-01 2024-10-11 00:39:33.000 1976-07-01 2024-10-11 00:39:33 +2374 2374 2375 237.4 474.8 2374 1976-07-02 2024-10-11 00:39:34.000 1976-07-02 2024-10-11 00:39:34 +2375 2375 2376 237.5 475 2375 1976-07-03 2024-10-11 00:39:35.000 1976-07-03 2024-10-11 00:39:35 +2376 2376 2377 237.6 475.20000000000005 2376 1976-07-04 2024-10-11 00:39:36.000 1976-07-04 2024-10-11 00:39:36 +2377 2377 2378 237.7 475.40000000000003 2377 1976-07-05 2024-10-11 00:39:37.000 1976-07-05 2024-10-11 00:39:37 +2378 2378 2379 237.8 475.6 2378 1976-07-06 2024-10-11 00:39:38.000 1976-07-06 2024-10-11 00:39:38 +2379 2379 2380 237.9 475.8 2379 1976-07-07 2024-10-11 00:39:39.000 1976-07-07 2024-10-11 00:39:39 +2380 2380 2381 238 476 2380 1976-07-08 2024-10-11 00:39:40.000 1976-07-08 2024-10-11 00:39:40 +2381 2381 2382 238.1 476.20000000000005 2381 1976-07-09 2024-10-11 00:39:41.000 1976-07-09 2024-10-11 00:39:41 +2382 2382 2383 238.2 476.40000000000003 2382 1976-07-10 2024-10-11 00:39:42.000 1976-07-10 2024-10-11 00:39:42 +2383 2383 2384 238.3 476.6 2383 1976-07-11 2024-10-11 00:39:43.000 1976-07-11 2024-10-11 00:39:43 +2384 2384 2385 238.4 476.8 2384 1976-07-12 2024-10-11 00:39:44.000 1976-07-12 2024-10-11 00:39:44 +2385 2385 2386 238.5 477 2385 1976-07-13 2024-10-11 00:39:45.000 1976-07-13 2024-10-11 00:39:45 +2386 2386 2387 238.6 477.20000000000005 2386 1976-07-14 2024-10-11 00:39:46.000 1976-07-14 2024-10-11 00:39:46 +2387 2387 2388 238.7 477.40000000000003 2387 1976-07-15 2024-10-11 00:39:47.000 1976-07-15 2024-10-11 00:39:47 +2388 2388 2389 238.8 477.6 2388 1976-07-16 2024-10-11 00:39:48.000 1976-07-16 2024-10-11 00:39:48 +2389 2389 2390 238.9 477.8 2389 1976-07-17 2024-10-11 00:39:49.000 1976-07-17 2024-10-11 00:39:49 +2390 2390 2391 239 478 2390 1976-07-18 2024-10-11 00:39:50.000 1976-07-18 2024-10-11 00:39:50 +2391 2391 2392 239.1 478.20000000000005 2391 1976-07-19 2024-10-11 00:39:51.000 1976-07-19 2024-10-11 00:39:51 +2392 2392 2393 239.2 478.40000000000003 2392 1976-07-20 2024-10-11 00:39:52.000 1976-07-20 2024-10-11 00:39:52 +2393 2393 2394 239.3 478.6 2393 1976-07-21 2024-10-11 00:39:53.000 1976-07-21 2024-10-11 00:39:53 +2394 2394 2395 239.4 478.8 2394 1976-07-22 2024-10-11 00:39:54.000 1976-07-22 2024-10-11 00:39:54 +2395 2395 2396 239.5 479 2395 1976-07-23 2024-10-11 00:39:55.000 1976-07-23 2024-10-11 00:39:55 +2396 2396 2397 239.6 479.20000000000005 2396 1976-07-24 2024-10-11 00:39:56.000 1976-07-24 2024-10-11 00:39:56 +2397 2397 2398 239.7 479.40000000000003 2397 1976-07-25 2024-10-11 00:39:57.000 1976-07-25 2024-10-11 00:39:57 +2398 2398 2399 239.8 479.6 2398 1976-07-26 2024-10-11 00:39:58.000 1976-07-26 2024-10-11 00:39:58 +2399 2399 2400 239.9 479.8 2399 1976-07-27 2024-10-11 00:39:59.000 1976-07-27 2024-10-11 00:39:59 +2400 2400 2401 240 480 2400 1976-07-28 2024-10-11 00:40:00.000 1976-07-28 2024-10-11 00:40:00 +2401 2401 2402 240.1 480.20000000000005 2401 1976-07-29 2024-10-11 00:40:01.000 1976-07-29 2024-10-11 00:40:01 +2402 2402 2403 240.2 480.40000000000003 2402 1976-07-30 2024-10-11 00:40:02.000 1976-07-30 2024-10-11 00:40:02 +2403 2403 2404 240.3 480.6 2403 1976-07-31 2024-10-11 00:40:03.000 1976-07-31 2024-10-11 00:40:03 +2404 2404 2405 240.4 480.8 2404 1976-08-01 2024-10-11 00:40:04.000 1976-08-01 2024-10-11 00:40:04 +2405 2405 2406 240.5 481 2405 1976-08-02 2024-10-11 00:40:05.000 1976-08-02 2024-10-11 00:40:05 +2406 2406 2407 240.6 481.20000000000005 2406 1976-08-03 2024-10-11 00:40:06.000 1976-08-03 2024-10-11 00:40:06 +2407 2407 2408 240.7 481.40000000000003 2407 1976-08-04 2024-10-11 00:40:07.000 1976-08-04 2024-10-11 00:40:07 +2408 2408 2409 240.8 481.6 2408 1976-08-05 2024-10-11 00:40:08.000 1976-08-05 2024-10-11 00:40:08 +2409 2409 2410 240.9 481.8 2409 1976-08-06 2024-10-11 00:40:09.000 1976-08-06 2024-10-11 00:40:09 +2410 2410 2411 241 482 2410 1976-08-07 2024-10-11 00:40:10.000 1976-08-07 2024-10-11 00:40:10 +2411 2411 2412 241.1 482.20000000000005 2411 1976-08-08 2024-10-11 00:40:11.000 1976-08-08 2024-10-11 00:40:11 +2412 2412 2413 241.2 482.40000000000003 2412 1976-08-09 2024-10-11 00:40:12.000 1976-08-09 2024-10-11 00:40:12 +2413 2413 2414 241.3 482.6 2413 1976-08-10 2024-10-11 00:40:13.000 1976-08-10 2024-10-11 00:40:13 +2414 2414 2415 241.4 482.8 2414 1976-08-11 2024-10-11 00:40:14.000 1976-08-11 2024-10-11 00:40:14 +2415 2415 2416 241.5 483 2415 1976-08-12 2024-10-11 00:40:15.000 1976-08-12 2024-10-11 00:40:15 +2416 2416 2417 241.6 483.20000000000005 2416 1976-08-13 2024-10-11 00:40:16.000 1976-08-13 2024-10-11 00:40:16 +2417 2417 2418 241.7 483.40000000000003 2417 1976-08-14 2024-10-11 00:40:17.000 1976-08-14 2024-10-11 00:40:17 +2418 2418 2419 241.8 483.6 2418 1976-08-15 2024-10-11 00:40:18.000 1976-08-15 2024-10-11 00:40:18 +2419 2419 2420 241.9 483.8 2419 1976-08-16 2024-10-11 00:40:19.000 1976-08-16 2024-10-11 00:40:19 +2420 2420 2421 242 484 2420 1976-08-17 2024-10-11 00:40:20.000 1976-08-17 2024-10-11 00:40:20 +2421 2421 2422 242.1 484.20000000000005 2421 1976-08-18 2024-10-11 00:40:21.000 1976-08-18 2024-10-11 00:40:21 +2422 2422 2423 242.2 484.40000000000003 2422 1976-08-19 2024-10-11 00:40:22.000 1976-08-19 2024-10-11 00:40:22 +2423 2423 2424 242.3 484.6 2423 1976-08-20 2024-10-11 00:40:23.000 1976-08-20 2024-10-11 00:40:23 +2424 2424 2425 242.4 484.8 2424 1976-08-21 2024-10-11 00:40:24.000 1976-08-21 2024-10-11 00:40:24 +2425 2425 2426 242.5 485 2425 1976-08-22 2024-10-11 00:40:25.000 1976-08-22 2024-10-11 00:40:25 +2426 2426 2427 242.6 485.20000000000005 2426 1976-08-23 2024-10-11 00:40:26.000 1976-08-23 2024-10-11 00:40:26 +2427 2427 2428 242.7 485.40000000000003 2427 1976-08-24 2024-10-11 00:40:27.000 1976-08-24 2024-10-11 00:40:27 +2428 2428 2429 242.8 485.6 2428 1976-08-25 2024-10-11 00:40:28.000 1976-08-25 2024-10-11 00:40:28 +2429 2429 2430 242.9 485.8 2429 1976-08-26 2024-10-11 00:40:29.000 1976-08-26 2024-10-11 00:40:29 +2430 2430 2431 243 486 2430 1976-08-27 2024-10-11 00:40:30.000 1976-08-27 2024-10-11 00:40:30 +2431 2431 2432 243.1 486.20000000000005 2431 1976-08-28 2024-10-11 00:40:31.000 1976-08-28 2024-10-11 00:40:31 +2432 2432 2433 243.2 486.40000000000003 2432 1976-08-29 2024-10-11 00:40:32.000 1976-08-29 2024-10-11 00:40:32 +2433 2433 2434 243.3 486.6 2433 1976-08-30 2024-10-11 00:40:33.000 1976-08-30 2024-10-11 00:40:33 +2434 2434 2435 243.4 486.8 2434 1976-08-31 2024-10-11 00:40:34.000 1976-08-31 2024-10-11 00:40:34 +2435 2435 2436 243.5 487 2435 1976-09-01 2024-10-11 00:40:35.000 1976-09-01 2024-10-11 00:40:35 +2436 2436 2437 243.6 487.20000000000005 2436 1976-09-02 2024-10-11 00:40:36.000 1976-09-02 2024-10-11 00:40:36 +2437 2437 2438 243.7 487.40000000000003 2437 1976-09-03 2024-10-11 00:40:37.000 1976-09-03 2024-10-11 00:40:37 +2438 2438 2439 243.8 487.6 2438 1976-09-04 2024-10-11 00:40:38.000 1976-09-04 2024-10-11 00:40:38 +2439 2439 2440 243.9 487.8 2439 1976-09-05 2024-10-11 00:40:39.000 1976-09-05 2024-10-11 00:40:39 +2440 2440 2441 244 488 2440 1976-09-06 2024-10-11 00:40:40.000 1976-09-06 2024-10-11 00:40:40 +2441 2441 2442 244.1 488.20000000000005 2441 1976-09-07 2024-10-11 00:40:41.000 1976-09-07 2024-10-11 00:40:41 +2442 2442 2443 244.2 488.40000000000003 2442 1976-09-08 2024-10-11 00:40:42.000 1976-09-08 2024-10-11 00:40:42 +2443 2443 2444 244.3 488.6 2443 1976-09-09 2024-10-11 00:40:43.000 1976-09-09 2024-10-11 00:40:43 +2444 2444 2445 244.4 488.8 2444 1976-09-10 2024-10-11 00:40:44.000 1976-09-10 2024-10-11 00:40:44 +2445 2445 2446 244.5 489 2445 1976-09-11 2024-10-11 00:40:45.000 1976-09-11 2024-10-11 00:40:45 +2446 2446 2447 244.6 489.20000000000005 2446 1976-09-12 2024-10-11 00:40:46.000 1976-09-12 2024-10-11 00:40:46 +2447 2447 2448 244.7 489.40000000000003 2447 1976-09-13 2024-10-11 00:40:47.000 1976-09-13 2024-10-11 00:40:47 +2448 2448 2449 244.8 489.6 2448 1976-09-14 2024-10-11 00:40:48.000 1976-09-14 2024-10-11 00:40:48 +2449 2449 2450 244.9 489.8 2449 1976-09-15 2024-10-11 00:40:49.000 1976-09-15 2024-10-11 00:40:49 +2450 2450 2451 245 490 2450 1976-09-16 2024-10-11 00:40:50.000 1976-09-16 2024-10-11 00:40:50 +2451 2451 2452 245.1 490.20000000000005 2451 1976-09-17 2024-10-11 00:40:51.000 1976-09-17 2024-10-11 00:40:51 +2452 2452 2453 245.2 490.40000000000003 2452 1976-09-18 2024-10-11 00:40:52.000 1976-09-18 2024-10-11 00:40:52 +2453 2453 2454 245.3 490.6 2453 1976-09-19 2024-10-11 00:40:53.000 1976-09-19 2024-10-11 00:40:53 +2454 2454 2455 245.4 490.8 2454 1976-09-20 2024-10-11 00:40:54.000 1976-09-20 2024-10-11 00:40:54 +2455 2455 2456 245.5 491 2455 1976-09-21 2024-10-11 00:40:55.000 1976-09-21 2024-10-11 00:40:55 +2456 2456 2457 245.6 491.20000000000005 2456 1976-09-22 2024-10-11 00:40:56.000 1976-09-22 2024-10-11 00:40:56 +2457 2457 2458 245.7 491.40000000000003 2457 1976-09-23 2024-10-11 00:40:57.000 1976-09-23 2024-10-11 00:40:57 +2458 2458 2459 245.8 491.6 2458 1976-09-24 2024-10-11 00:40:58.000 1976-09-24 2024-10-11 00:40:58 +2459 2459 2460 245.9 491.8 2459 1976-09-25 2024-10-11 00:40:59.000 1976-09-25 2024-10-11 00:40:59 +2460 2460 2461 246 492 2460 1976-09-26 2024-10-11 00:41:00.000 1976-09-26 2024-10-11 00:41:00 +2461 2461 2462 246.1 492.20000000000005 2461 1976-09-27 2024-10-11 00:41:01.000 1976-09-27 2024-10-11 00:41:01 +2462 2462 2463 246.2 492.40000000000003 2462 1976-09-28 2024-10-11 00:41:02.000 1976-09-28 2024-10-11 00:41:02 +2463 2463 2464 246.3 492.6 2463 1976-09-29 2024-10-11 00:41:03.000 1976-09-29 2024-10-11 00:41:03 +2464 2464 2465 246.4 492.8 2464 1976-09-30 2024-10-11 00:41:04.000 1976-09-30 2024-10-11 00:41:04 +2465 2465 2466 246.5 493 2465 1976-10-01 2024-10-11 00:41:05.000 1976-10-01 2024-10-11 00:41:05 +2466 2466 2467 246.6 493.20000000000005 2466 1976-10-02 2024-10-11 00:41:06.000 1976-10-02 2024-10-11 00:41:06 +2467 2467 2468 246.7 493.40000000000003 2467 1976-10-03 2024-10-11 00:41:07.000 1976-10-03 2024-10-11 00:41:07 +2468 2468 2469 246.8 493.6 2468 1976-10-04 2024-10-11 00:41:08.000 1976-10-04 2024-10-11 00:41:08 +2469 2469 2470 246.9 493.8 2469 1976-10-05 2024-10-11 00:41:09.000 1976-10-05 2024-10-11 00:41:09 +2470 2470 2471 247 494 2470 1976-10-06 2024-10-11 00:41:10.000 1976-10-06 2024-10-11 00:41:10 +2471 2471 2472 247.1 494.20000000000005 2471 1976-10-07 2024-10-11 00:41:11.000 1976-10-07 2024-10-11 00:41:11 +2472 2472 2473 247.2 494.40000000000003 2472 1976-10-08 2024-10-11 00:41:12.000 1976-10-08 2024-10-11 00:41:12 +2473 2473 2474 247.3 494.6 2473 1976-10-09 2024-10-11 00:41:13.000 1976-10-09 2024-10-11 00:41:13 +2474 2474 2475 247.4 494.8 2474 1976-10-10 2024-10-11 00:41:14.000 1976-10-10 2024-10-11 00:41:14 +2475 2475 2476 247.5 495 2475 1976-10-11 2024-10-11 00:41:15.000 1976-10-11 2024-10-11 00:41:15 +2476 2476 2477 247.6 495.20000000000005 2476 1976-10-12 2024-10-11 00:41:16.000 1976-10-12 2024-10-11 00:41:16 +2477 2477 2478 247.7 495.40000000000003 2477 1976-10-13 2024-10-11 00:41:17.000 1976-10-13 2024-10-11 00:41:17 +2478 2478 2479 247.8 495.6 2478 1976-10-14 2024-10-11 00:41:18.000 1976-10-14 2024-10-11 00:41:18 +2479 2479 2480 247.9 495.8 2479 1976-10-15 2024-10-11 00:41:19.000 1976-10-15 2024-10-11 00:41:19 +2480 2480 2481 248 496 2480 1976-10-16 2024-10-11 00:41:20.000 1976-10-16 2024-10-11 00:41:20 +2481 2481 2482 248.1 496.20000000000005 2481 1976-10-17 2024-10-11 00:41:21.000 1976-10-17 2024-10-11 00:41:21 +2482 2482 2483 248.2 496.40000000000003 2482 1976-10-18 2024-10-11 00:41:22.000 1976-10-18 2024-10-11 00:41:22 +2483 2483 2484 248.3 496.6 2483 1976-10-19 2024-10-11 00:41:23.000 1976-10-19 2024-10-11 00:41:23 +2484 2484 2485 248.4 496.8 2484 1976-10-20 2024-10-11 00:41:24.000 1976-10-20 2024-10-11 00:41:24 +2485 2485 2486 248.5 497 2485 1976-10-21 2024-10-11 00:41:25.000 1976-10-21 2024-10-11 00:41:25 +2486 2486 2487 248.6 497.20000000000005 2486 1976-10-22 2024-10-11 00:41:26.000 1976-10-22 2024-10-11 00:41:26 +2487 2487 2488 248.7 497.40000000000003 2487 1976-10-23 2024-10-11 00:41:27.000 1976-10-23 2024-10-11 00:41:27 +2488 2488 2489 248.8 497.6 2488 1976-10-24 2024-10-11 00:41:28.000 1976-10-24 2024-10-11 00:41:28 +2489 2489 2490 248.9 497.8 2489 1976-10-25 2024-10-11 00:41:29.000 1976-10-25 2024-10-11 00:41:29 +2490 2490 2491 249 498 2490 1976-10-26 2024-10-11 00:41:30.000 1976-10-26 2024-10-11 00:41:30 +2491 2491 2492 249.1 498.20000000000005 2491 1976-10-27 2024-10-11 00:41:31.000 1976-10-27 2024-10-11 00:41:31 +2492 2492 2493 249.2 498.40000000000003 2492 1976-10-28 2024-10-11 00:41:32.000 1976-10-28 2024-10-11 00:41:32 +2493 2493 2494 249.3 498.6 2493 1976-10-29 2024-10-11 00:41:33.000 1976-10-29 2024-10-11 00:41:33 +2494 2494 2495 249.4 498.8 2494 1976-10-30 2024-10-11 00:41:34.000 1976-10-30 2024-10-11 00:41:34 +2495 2495 2496 249.5 499 2495 1976-10-31 2024-10-11 00:41:35.000 1976-10-31 2024-10-11 00:41:35 +2496 2496 2497 249.6 499.20000000000005 2496 1976-11-01 2024-10-11 00:41:36.000 1976-11-01 2024-10-11 00:41:36 +2497 2497 2498 249.7 499.40000000000003 2497 1976-11-02 2024-10-11 00:41:37.000 1976-11-02 2024-10-11 00:41:37 +2498 2498 2499 249.8 499.6 2498 1976-11-03 2024-10-11 00:41:38.000 1976-11-03 2024-10-11 00:41:38 +2499 2499 2500 249.9 499.8 2499 1976-11-04 2024-10-11 00:41:39.000 1976-11-04 2024-10-11 00:41:39 +2500 2500 2501 250 500 2500 1976-11-05 2024-10-11 00:41:40.000 1976-11-05 2024-10-11 00:41:40 +2501 2501 2502 250.1 500.20000000000005 2501 1976-11-06 2024-10-11 00:41:41.000 1976-11-06 2024-10-11 00:41:41 +2502 2502 2503 250.2 500.40000000000003 2502 1976-11-07 2024-10-11 00:41:42.000 1976-11-07 2024-10-11 00:41:42 +2503 2503 2504 250.3 500.6 2503 1976-11-08 2024-10-11 00:41:43.000 1976-11-08 2024-10-11 00:41:43 +2504 2504 2505 250.4 500.8 2504 1976-11-09 2024-10-11 00:41:44.000 1976-11-09 2024-10-11 00:41:44 +2505 2505 2506 250.5 501 2505 1976-11-10 2024-10-11 00:41:45.000 1976-11-10 2024-10-11 00:41:45 +2506 2506 2507 250.6 501.20000000000005 2506 1976-11-11 2024-10-11 00:41:46.000 1976-11-11 2024-10-11 00:41:46 +2507 2507 2508 250.7 501.40000000000003 2507 1976-11-12 2024-10-11 00:41:47.000 1976-11-12 2024-10-11 00:41:47 +2508 2508 2509 250.8 501.6 2508 1976-11-13 2024-10-11 00:41:48.000 1976-11-13 2024-10-11 00:41:48 +2509 2509 2510 250.9 501.8 2509 1976-11-14 2024-10-11 00:41:49.000 1976-11-14 2024-10-11 00:41:49 +2510 2510 2511 251 502 2510 1976-11-15 2024-10-11 00:41:50.000 1976-11-15 2024-10-11 00:41:50 +2511 2511 2512 251.1 502.20000000000005 2511 1976-11-16 2024-10-11 00:41:51.000 1976-11-16 2024-10-11 00:41:51 +2512 2512 2513 251.2 502.40000000000003 2512 1976-11-17 2024-10-11 00:41:52.000 1976-11-17 2024-10-11 00:41:52 +2513 2513 2514 251.3 502.6 2513 1976-11-18 2024-10-11 00:41:53.000 1976-11-18 2024-10-11 00:41:53 +2514 2514 2515 251.4 502.8 2514 1976-11-19 2024-10-11 00:41:54.000 1976-11-19 2024-10-11 00:41:54 +2515 2515 2516 251.5 503 2515 1976-11-20 2024-10-11 00:41:55.000 1976-11-20 2024-10-11 00:41:55 +2516 2516 2517 251.6 503.20000000000005 2516 1976-11-21 2024-10-11 00:41:56.000 1976-11-21 2024-10-11 00:41:56 +2517 2517 2518 251.7 503.40000000000003 2517 1976-11-22 2024-10-11 00:41:57.000 1976-11-22 2024-10-11 00:41:57 +2518 2518 2519 251.8 503.6 2518 1976-11-23 2024-10-11 00:41:58.000 1976-11-23 2024-10-11 00:41:58 +2519 2519 2520 251.9 503.8 2519 1976-11-24 2024-10-11 00:41:59.000 1976-11-24 2024-10-11 00:41:59 +2520 2520 2521 252 504 2520 1976-11-25 2024-10-11 00:42:00.000 1976-11-25 2024-10-11 00:42:00 +2521 2521 2522 252.1 504.20000000000005 2521 1976-11-26 2024-10-11 00:42:01.000 1976-11-26 2024-10-11 00:42:01 +2522 2522 2523 252.2 504.40000000000003 2522 1976-11-27 2024-10-11 00:42:02.000 1976-11-27 2024-10-11 00:42:02 +2523 2523 2524 252.3 504.6 2523 1976-11-28 2024-10-11 00:42:03.000 1976-11-28 2024-10-11 00:42:03 +2524 2524 2525 252.4 504.8 2524 1976-11-29 2024-10-11 00:42:04.000 1976-11-29 2024-10-11 00:42:04 +2525 2525 2526 252.5 505 2525 1976-11-30 2024-10-11 00:42:05.000 1976-11-30 2024-10-11 00:42:05 +2526 2526 2527 252.6 505.20000000000005 2526 1976-12-01 2024-10-11 00:42:06.000 1976-12-01 2024-10-11 00:42:06 +2527 2527 2528 252.7 505.40000000000003 2527 1976-12-02 2024-10-11 00:42:07.000 1976-12-02 2024-10-11 00:42:07 +2528 2528 2529 252.8 505.6 2528 1976-12-03 2024-10-11 00:42:08.000 1976-12-03 2024-10-11 00:42:08 +2529 2529 2530 252.9 505.8 2529 1976-12-04 2024-10-11 00:42:09.000 1976-12-04 2024-10-11 00:42:09 +2530 2530 2531 253 506 2530 1976-12-05 2024-10-11 00:42:10.000 1976-12-05 2024-10-11 00:42:10 +2531 2531 2532 253.1 506.20000000000005 2531 1976-12-06 2024-10-11 00:42:11.000 1976-12-06 2024-10-11 00:42:11 +2532 2532 2533 253.2 506.40000000000003 2532 1976-12-07 2024-10-11 00:42:12.000 1976-12-07 2024-10-11 00:42:12 +2533 2533 2534 253.3 506.6 2533 1976-12-08 2024-10-11 00:42:13.000 1976-12-08 2024-10-11 00:42:13 +2534 2534 2535 253.4 506.8 2534 1976-12-09 2024-10-11 00:42:14.000 1976-12-09 2024-10-11 00:42:14 +2535 2535 2536 253.5 507 2535 1976-12-10 2024-10-11 00:42:15.000 1976-12-10 2024-10-11 00:42:15 +2536 2536 2537 253.6 507.20000000000005 2536 1976-12-11 2024-10-11 00:42:16.000 1976-12-11 2024-10-11 00:42:16 +2537 2537 2538 253.7 507.40000000000003 2537 1976-12-12 2024-10-11 00:42:17.000 1976-12-12 2024-10-11 00:42:17 +2538 2538 2539 253.8 507.6 2538 1976-12-13 2024-10-11 00:42:18.000 1976-12-13 2024-10-11 00:42:18 +2539 2539 2540 253.9 507.8 2539 1976-12-14 2024-10-11 00:42:19.000 1976-12-14 2024-10-11 00:42:19 +2540 2540 2541 254 508 2540 1976-12-15 2024-10-11 00:42:20.000 1976-12-15 2024-10-11 00:42:20 +2541 2541 2542 254.1 508.20000000000005 2541 1976-12-16 2024-10-11 00:42:21.000 1976-12-16 2024-10-11 00:42:21 +2542 2542 2543 254.2 508.40000000000003 2542 1976-12-17 2024-10-11 00:42:22.000 1976-12-17 2024-10-11 00:42:22 +2543 2543 2544 254.3 508.6 2543 1976-12-18 2024-10-11 00:42:23.000 1976-12-18 2024-10-11 00:42:23 +2544 2544 2545 254.4 508.8 2544 1976-12-19 2024-10-11 00:42:24.000 1976-12-19 2024-10-11 00:42:24 +2545 2545 2546 254.5 509 2545 1976-12-20 2024-10-11 00:42:25.000 1976-12-20 2024-10-11 00:42:25 +2546 2546 2547 254.6 509.20000000000005 2546 1976-12-21 2024-10-11 00:42:26.000 1976-12-21 2024-10-11 00:42:26 +2547 2547 2548 254.7 509.40000000000003 2547 1976-12-22 2024-10-11 00:42:27.000 1976-12-22 2024-10-11 00:42:27 +2548 2548 2549 254.8 509.6 2548 1976-12-23 2024-10-11 00:42:28.000 1976-12-23 2024-10-11 00:42:28 +2549 2549 2550 254.9 509.8 2549 1976-12-24 2024-10-11 00:42:29.000 1976-12-24 2024-10-11 00:42:29 +2550 2550 2551 255 510 2550 1976-12-25 2024-10-11 00:42:30.000 1976-12-25 2024-10-11 00:42:30 +2551 2551 2552 255.1 510.20000000000005 2551 1976-12-26 2024-10-11 00:42:31.000 1976-12-26 2024-10-11 00:42:31 +2552 2552 2553 255.2 510.40000000000003 2552 1976-12-27 2024-10-11 00:42:32.000 1976-12-27 2024-10-11 00:42:32 +2553 2553 2554 255.3 510.6 2553 1976-12-28 2024-10-11 00:42:33.000 1976-12-28 2024-10-11 00:42:33 +2554 2554 2555 255.4 510.8 2554 1976-12-29 2024-10-11 00:42:34.000 1976-12-29 2024-10-11 00:42:34 +2555 2555 2556 255.5 511 2555 1976-12-30 2024-10-11 00:42:35.000 1976-12-30 2024-10-11 00:42:35 +2556 2556 2557 255.6 511.20000000000005 2556 1976-12-31 2024-10-11 00:42:36.000 1976-12-31 2024-10-11 00:42:36 +2557 2557 2558 255.7 511.40000000000003 2557 1977-01-01 2024-10-11 00:42:37.000 1977-01-01 2024-10-11 00:42:37 +2558 2558 2559 255.8 511.6 2558 1977-01-02 2024-10-11 00:42:38.000 1977-01-02 2024-10-11 00:42:38 +2559 2559 2560 255.9 511.8 2559 1977-01-03 2024-10-11 00:42:39.000 1977-01-03 2024-10-11 00:42:39 +2560 2560 2561 256 512 2560 1977-01-04 2024-10-11 00:42:40.000 1977-01-04 2024-10-11 00:42:40 +2561 2561 2562 256.1 512.2 2561 1977-01-05 2024-10-11 00:42:41.000 1977-01-05 2024-10-11 00:42:41 +2562 2562 2563 256.2 512.4 2562 1977-01-06 2024-10-11 00:42:42.000 1977-01-06 2024-10-11 00:42:42 +2563 2563 2564 256.3 512.6 2563 1977-01-07 2024-10-11 00:42:43.000 1977-01-07 2024-10-11 00:42:43 +2564 2564 2565 256.4 512.8000000000001 2564 1977-01-08 2024-10-11 00:42:44.000 1977-01-08 2024-10-11 00:42:44 +2565 2565 2566 256.5 513 2565 1977-01-09 2024-10-11 00:42:45.000 1977-01-09 2024-10-11 00:42:45 +2566 2566 2567 256.6 513.2 2566 1977-01-10 2024-10-11 00:42:46.000 1977-01-10 2024-10-11 00:42:46 +2567 2567 2568 256.7 513.4 2567 1977-01-11 2024-10-11 00:42:47.000 1977-01-11 2024-10-11 00:42:47 +2568 2568 2569 256.8 513.6 2568 1977-01-12 2024-10-11 00:42:48.000 1977-01-12 2024-10-11 00:42:48 +2569 2569 2570 256.9 513.8000000000001 2569 1977-01-13 2024-10-11 00:42:49.000 1977-01-13 2024-10-11 00:42:49 +2570 2570 2571 257 514 2570 1977-01-14 2024-10-11 00:42:50.000 1977-01-14 2024-10-11 00:42:50 +2571 2571 2572 257.1 514.2 2571 1977-01-15 2024-10-11 00:42:51.000 1977-01-15 2024-10-11 00:42:51 +2572 2572 2573 257.2 514.4 2572 1977-01-16 2024-10-11 00:42:52.000 1977-01-16 2024-10-11 00:42:52 +2573 2573 2574 257.3 514.6 2573 1977-01-17 2024-10-11 00:42:53.000 1977-01-17 2024-10-11 00:42:53 +2574 2574 2575 257.4 514.8000000000001 2574 1977-01-18 2024-10-11 00:42:54.000 1977-01-18 2024-10-11 00:42:54 +2575 2575 2576 257.5 515 2575 1977-01-19 2024-10-11 00:42:55.000 1977-01-19 2024-10-11 00:42:55 +2576 2576 2577 257.6 515.2 2576 1977-01-20 2024-10-11 00:42:56.000 1977-01-20 2024-10-11 00:42:56 +2577 2577 2578 257.7 515.4 2577 1977-01-21 2024-10-11 00:42:57.000 1977-01-21 2024-10-11 00:42:57 +2578 2578 2579 257.8 515.6 2578 1977-01-22 2024-10-11 00:42:58.000 1977-01-22 2024-10-11 00:42:58 +2579 2579 2580 257.9 515.8000000000001 2579 1977-01-23 2024-10-11 00:42:59.000 1977-01-23 2024-10-11 00:42:59 +2580 2580 2581 258 516 2580 1977-01-24 2024-10-11 00:43:00.000 1977-01-24 2024-10-11 00:43:00 +2581 2581 2582 258.1 516.2 2581 1977-01-25 2024-10-11 00:43:01.000 1977-01-25 2024-10-11 00:43:01 +2582 2582 2583 258.2 516.4 2582 1977-01-26 2024-10-11 00:43:02.000 1977-01-26 2024-10-11 00:43:02 +2583 2583 2584 258.3 516.6 2583 1977-01-27 2024-10-11 00:43:03.000 1977-01-27 2024-10-11 00:43:03 +2584 2584 2585 258.4 516.8000000000001 2584 1977-01-28 2024-10-11 00:43:04.000 1977-01-28 2024-10-11 00:43:04 +2585 2585 2586 258.5 517 2585 1977-01-29 2024-10-11 00:43:05.000 1977-01-29 2024-10-11 00:43:05 +2586 2586 2587 258.6 517.2 2586 1977-01-30 2024-10-11 00:43:06.000 1977-01-30 2024-10-11 00:43:06 +2587 2587 2588 258.7 517.4 2587 1977-01-31 2024-10-11 00:43:07.000 1977-01-31 2024-10-11 00:43:07 +2588 2588 2589 258.8 517.6 2588 1977-02-01 2024-10-11 00:43:08.000 1977-02-01 2024-10-11 00:43:08 +2589 2589 2590 258.9 517.8000000000001 2589 1977-02-02 2024-10-11 00:43:09.000 1977-02-02 2024-10-11 00:43:09 +2590 2590 2591 259 518 2590 1977-02-03 2024-10-11 00:43:10.000 1977-02-03 2024-10-11 00:43:10 +2591 2591 2592 259.1 518.2 2591 1977-02-04 2024-10-11 00:43:11.000 1977-02-04 2024-10-11 00:43:11 +2592 2592 2593 259.2 518.4 2592 1977-02-05 2024-10-11 00:43:12.000 1977-02-05 2024-10-11 00:43:12 +2593 2593 2594 259.3 518.6 2593 1977-02-06 2024-10-11 00:43:13.000 1977-02-06 2024-10-11 00:43:13 +2594 2594 2595 259.4 518.8000000000001 2594 1977-02-07 2024-10-11 00:43:14.000 1977-02-07 2024-10-11 00:43:14 +2595 2595 2596 259.5 519 2595 1977-02-08 2024-10-11 00:43:15.000 1977-02-08 2024-10-11 00:43:15 +2596 2596 2597 259.6 519.2 2596 1977-02-09 2024-10-11 00:43:16.000 1977-02-09 2024-10-11 00:43:16 +2597 2597 2598 259.7 519.4 2597 1977-02-10 2024-10-11 00:43:17.000 1977-02-10 2024-10-11 00:43:17 +2598 2598 2599 259.8 519.6 2598 1977-02-11 2024-10-11 00:43:18.000 1977-02-11 2024-10-11 00:43:18 +2599 2599 2600 259.9 519.8000000000001 2599 1977-02-12 2024-10-11 00:43:19.000 1977-02-12 2024-10-11 00:43:19 +2600 2600 2601 260 520 2600 1977-02-13 2024-10-11 00:43:20.000 1977-02-13 2024-10-11 00:43:20 +2601 2601 2602 260.1 520.2 2601 1977-02-14 2024-10-11 00:43:21.000 1977-02-14 2024-10-11 00:43:21 +2602 2602 2603 260.2 520.4 2602 1977-02-15 2024-10-11 00:43:22.000 1977-02-15 2024-10-11 00:43:22 +2603 2603 2604 260.3 520.6 2603 1977-02-16 2024-10-11 00:43:23.000 1977-02-16 2024-10-11 00:43:23 +2604 2604 2605 260.4 520.8000000000001 2604 1977-02-17 2024-10-11 00:43:24.000 1977-02-17 2024-10-11 00:43:24 +2605 2605 2606 260.5 521 2605 1977-02-18 2024-10-11 00:43:25.000 1977-02-18 2024-10-11 00:43:25 +2606 2606 2607 260.6 521.2 2606 1977-02-19 2024-10-11 00:43:26.000 1977-02-19 2024-10-11 00:43:26 +2607 2607 2608 260.7 521.4 2607 1977-02-20 2024-10-11 00:43:27.000 1977-02-20 2024-10-11 00:43:27 +2608 2608 2609 260.8 521.6 2608 1977-02-21 2024-10-11 00:43:28.000 1977-02-21 2024-10-11 00:43:28 +2609 2609 2610 260.9 521.8000000000001 2609 1977-02-22 2024-10-11 00:43:29.000 1977-02-22 2024-10-11 00:43:29 +2610 2610 2611 261 522 2610 1977-02-23 2024-10-11 00:43:30.000 1977-02-23 2024-10-11 00:43:30 +2611 2611 2612 261.1 522.2 2611 1977-02-24 2024-10-11 00:43:31.000 1977-02-24 2024-10-11 00:43:31 +2612 2612 2613 261.2 522.4 2612 1977-02-25 2024-10-11 00:43:32.000 1977-02-25 2024-10-11 00:43:32 +2613 2613 2614 261.3 522.6 2613 1977-02-26 2024-10-11 00:43:33.000 1977-02-26 2024-10-11 00:43:33 +2614 2614 2615 261.4 522.8000000000001 2614 1977-02-27 2024-10-11 00:43:34.000 1977-02-27 2024-10-11 00:43:34 +2615 2615 2616 261.5 523 2615 1977-02-28 2024-10-11 00:43:35.000 1977-02-28 2024-10-11 00:43:35 +2616 2616 2617 261.6 523.2 2616 1977-03-01 2024-10-11 00:43:36.000 1977-03-01 2024-10-11 00:43:36 +2617 2617 2618 261.7 523.4 2617 1977-03-02 2024-10-11 00:43:37.000 1977-03-02 2024-10-11 00:43:37 +2618 2618 2619 261.8 523.6 2618 1977-03-03 2024-10-11 00:43:38.000 1977-03-03 2024-10-11 00:43:38 +2619 2619 2620 261.9 523.8000000000001 2619 1977-03-04 2024-10-11 00:43:39.000 1977-03-04 2024-10-11 00:43:39 +2620 2620 2621 262 524 2620 1977-03-05 2024-10-11 00:43:40.000 1977-03-05 2024-10-11 00:43:40 +2621 2621 2622 262.1 524.2 2621 1977-03-06 2024-10-11 00:43:41.000 1977-03-06 2024-10-11 00:43:41 +2622 2622 2623 262.2 524.4 2622 1977-03-07 2024-10-11 00:43:42.000 1977-03-07 2024-10-11 00:43:42 +2623 2623 2624 262.3 524.6 2623 1977-03-08 2024-10-11 00:43:43.000 1977-03-08 2024-10-11 00:43:43 +2624 2624 2625 262.4 524.8000000000001 2624 1977-03-09 2024-10-11 00:43:44.000 1977-03-09 2024-10-11 00:43:44 +2625 2625 2626 262.5 525 2625 1977-03-10 2024-10-11 00:43:45.000 1977-03-10 2024-10-11 00:43:45 +2626 2626 2627 262.6 525.2 2626 1977-03-11 2024-10-11 00:43:46.000 1977-03-11 2024-10-11 00:43:46 +2627 2627 2628 262.7 525.4 2627 1977-03-12 2024-10-11 00:43:47.000 1977-03-12 2024-10-11 00:43:47 +2628 2628 2629 262.8 525.6 2628 1977-03-13 2024-10-11 00:43:48.000 1977-03-13 2024-10-11 00:43:48 +2629 2629 2630 262.9 525.8000000000001 2629 1977-03-14 2024-10-11 00:43:49.000 1977-03-14 2024-10-11 00:43:49 +2630 2630 2631 263 526 2630 1977-03-15 2024-10-11 00:43:50.000 1977-03-15 2024-10-11 00:43:50 +2631 2631 2632 263.1 526.2 2631 1977-03-16 2024-10-11 00:43:51.000 1977-03-16 2024-10-11 00:43:51 +2632 2632 2633 263.2 526.4 2632 1977-03-17 2024-10-11 00:43:52.000 1977-03-17 2024-10-11 00:43:52 +2633 2633 2634 263.3 526.6 2633 1977-03-18 2024-10-11 00:43:53.000 1977-03-18 2024-10-11 00:43:53 +2634 2634 2635 263.4 526.8000000000001 2634 1977-03-19 2024-10-11 00:43:54.000 1977-03-19 2024-10-11 00:43:54 +2635 2635 2636 263.5 527 2635 1977-03-20 2024-10-11 00:43:55.000 1977-03-20 2024-10-11 00:43:55 +2636 2636 2637 263.6 527.2 2636 1977-03-21 2024-10-11 00:43:56.000 1977-03-21 2024-10-11 00:43:56 +2637 2637 2638 263.7 527.4 2637 1977-03-22 2024-10-11 00:43:57.000 1977-03-22 2024-10-11 00:43:57 +2638 2638 2639 263.8 527.6 2638 1977-03-23 2024-10-11 00:43:58.000 1977-03-23 2024-10-11 00:43:58 +2639 2639 2640 263.9 527.8000000000001 2639 1977-03-24 2024-10-11 00:43:59.000 1977-03-24 2024-10-11 00:43:59 +2640 2640 2641 264 528 2640 1977-03-25 2024-10-11 00:44:00.000 1977-03-25 2024-10-11 00:44:00 +2641 2641 2642 264.1 528.2 2641 1977-03-26 2024-10-11 00:44:01.000 1977-03-26 2024-10-11 00:44:01 +2642 2642 2643 264.2 528.4 2642 1977-03-27 2024-10-11 00:44:02.000 1977-03-27 2024-10-11 00:44:02 +2643 2643 2644 264.3 528.6 2643 1977-03-28 2024-10-11 00:44:03.000 1977-03-28 2024-10-11 00:44:03 +2644 2644 2645 264.4 528.8000000000001 2644 1977-03-29 2024-10-11 00:44:04.000 1977-03-29 2024-10-11 00:44:04 +2645 2645 2646 264.5 529 2645 1977-03-30 2024-10-11 00:44:05.000 1977-03-30 2024-10-11 00:44:05 +2646 2646 2647 264.6 529.2 2646 1977-03-31 2024-10-11 00:44:06.000 1977-03-31 2024-10-11 00:44:06 +2647 2647 2648 264.7 529.4 2647 1977-04-01 2024-10-11 00:44:07.000 1977-04-01 2024-10-11 00:44:07 +2648 2648 2649 264.8 529.6 2648 1977-04-02 2024-10-11 00:44:08.000 1977-04-02 2024-10-11 00:44:08 +2649 2649 2650 264.9 529.8000000000001 2649 1977-04-03 2024-10-11 00:44:09.000 1977-04-03 2024-10-11 00:44:09 +2650 2650 2651 265 530 2650 1977-04-04 2024-10-11 00:44:10.000 1977-04-04 2024-10-11 00:44:10 +2651 2651 2652 265.1 530.2 2651 1977-04-05 2024-10-11 00:44:11.000 1977-04-05 2024-10-11 00:44:11 +2652 2652 2653 265.2 530.4 2652 1977-04-06 2024-10-11 00:44:12.000 1977-04-06 2024-10-11 00:44:12 +2653 2653 2654 265.3 530.6 2653 1977-04-07 2024-10-11 00:44:13.000 1977-04-07 2024-10-11 00:44:13 +2654 2654 2655 265.4 530.8000000000001 2654 1977-04-08 2024-10-11 00:44:14.000 1977-04-08 2024-10-11 00:44:14 +2655 2655 2656 265.5 531 2655 1977-04-09 2024-10-11 00:44:15.000 1977-04-09 2024-10-11 00:44:15 +2656 2656 2657 265.6 531.2 2656 1977-04-10 2024-10-11 00:44:16.000 1977-04-10 2024-10-11 00:44:16 +2657 2657 2658 265.7 531.4 2657 1977-04-11 2024-10-11 00:44:17.000 1977-04-11 2024-10-11 00:44:17 +2658 2658 2659 265.8 531.6 2658 1977-04-12 2024-10-11 00:44:18.000 1977-04-12 2024-10-11 00:44:18 +2659 2659 2660 265.9 531.8000000000001 2659 1977-04-13 2024-10-11 00:44:19.000 1977-04-13 2024-10-11 00:44:19 +2660 2660 2661 266 532 2660 1977-04-14 2024-10-11 00:44:20.000 1977-04-14 2024-10-11 00:44:20 +2661 2661 2662 266.1 532.2 2661 1977-04-15 2024-10-11 00:44:21.000 1977-04-15 2024-10-11 00:44:21 +2662 2662 2663 266.2 532.4 2662 1977-04-16 2024-10-11 00:44:22.000 1977-04-16 2024-10-11 00:44:22 +2663 2663 2664 266.3 532.6 2663 1977-04-17 2024-10-11 00:44:23.000 1977-04-17 2024-10-11 00:44:23 +2664 2664 2665 266.4 532.8000000000001 2664 1977-04-18 2024-10-11 00:44:24.000 1977-04-18 2024-10-11 00:44:24 +2665 2665 2666 266.5 533 2665 1977-04-19 2024-10-11 00:44:25.000 1977-04-19 2024-10-11 00:44:25 +2666 2666 2667 266.6 533.2 2666 1977-04-20 2024-10-11 00:44:26.000 1977-04-20 2024-10-11 00:44:26 +2667 2667 2668 266.7 533.4 2667 1977-04-21 2024-10-11 00:44:27.000 1977-04-21 2024-10-11 00:44:27 +2668 2668 2669 266.8 533.6 2668 1977-04-22 2024-10-11 00:44:28.000 1977-04-22 2024-10-11 00:44:28 +2669 2669 2670 266.9 533.8000000000001 2669 1977-04-23 2024-10-11 00:44:29.000 1977-04-23 2024-10-11 00:44:29 +2670 2670 2671 267 534 2670 1977-04-24 2024-10-11 00:44:30.000 1977-04-24 2024-10-11 00:44:30 +2671 2671 2672 267.1 534.2 2671 1977-04-25 2024-10-11 00:44:31.000 1977-04-25 2024-10-11 00:44:31 +2672 2672 2673 267.2 534.4 2672 1977-04-26 2024-10-11 00:44:32.000 1977-04-26 2024-10-11 00:44:32 +2673 2673 2674 267.3 534.6 2673 1977-04-27 2024-10-11 00:44:33.000 1977-04-27 2024-10-11 00:44:33 +2674 2674 2675 267.4 534.8000000000001 2674 1977-04-28 2024-10-11 00:44:34.000 1977-04-28 2024-10-11 00:44:34 +2675 2675 2676 267.5 535 2675 1977-04-29 2024-10-11 00:44:35.000 1977-04-29 2024-10-11 00:44:35 +2676 2676 2677 267.6 535.2 2676 1977-04-30 2024-10-11 00:44:36.000 1977-04-30 2024-10-11 00:44:36 +2677 2677 2678 267.7 535.4 2677 1977-05-01 2024-10-11 00:44:37.000 1977-05-01 2024-10-11 00:44:37 +2678 2678 2679 267.8 535.6 2678 1977-05-02 2024-10-11 00:44:38.000 1977-05-02 2024-10-11 00:44:38 +2679 2679 2680 267.9 535.8000000000001 2679 1977-05-03 2024-10-11 00:44:39.000 1977-05-03 2024-10-11 00:44:39 +2680 2680 2681 268 536 2680 1977-05-04 2024-10-11 00:44:40.000 1977-05-04 2024-10-11 00:44:40 +2681 2681 2682 268.1 536.2 2681 1977-05-05 2024-10-11 00:44:41.000 1977-05-05 2024-10-11 00:44:41 +2682 2682 2683 268.2 536.4 2682 1977-05-06 2024-10-11 00:44:42.000 1977-05-06 2024-10-11 00:44:42 +2683 2683 2684 268.3 536.6 2683 1977-05-07 2024-10-11 00:44:43.000 1977-05-07 2024-10-11 00:44:43 +2684 2684 2685 268.4 536.8000000000001 2684 1977-05-08 2024-10-11 00:44:44.000 1977-05-08 2024-10-11 00:44:44 +2685 2685 2686 268.5 537 2685 1977-05-09 2024-10-11 00:44:45.000 1977-05-09 2024-10-11 00:44:45 +2686 2686 2687 268.6 537.2 2686 1977-05-10 2024-10-11 00:44:46.000 1977-05-10 2024-10-11 00:44:46 +2687 2687 2688 268.7 537.4 2687 1977-05-11 2024-10-11 00:44:47.000 1977-05-11 2024-10-11 00:44:47 +2688 2688 2689 268.8 537.6 2688 1977-05-12 2024-10-11 00:44:48.000 1977-05-12 2024-10-11 00:44:48 +2689 2689 2690 268.9 537.8000000000001 2689 1977-05-13 2024-10-11 00:44:49.000 1977-05-13 2024-10-11 00:44:49 +2690 2690 2691 269 538 2690 1977-05-14 2024-10-11 00:44:50.000 1977-05-14 2024-10-11 00:44:50 +2691 2691 2692 269.1 538.2 2691 1977-05-15 2024-10-11 00:44:51.000 1977-05-15 2024-10-11 00:44:51 +2692 2692 2693 269.2 538.4 2692 1977-05-16 2024-10-11 00:44:52.000 1977-05-16 2024-10-11 00:44:52 +2693 2693 2694 269.3 538.6 2693 1977-05-17 2024-10-11 00:44:53.000 1977-05-17 2024-10-11 00:44:53 +2694 2694 2695 269.4 538.8000000000001 2694 1977-05-18 2024-10-11 00:44:54.000 1977-05-18 2024-10-11 00:44:54 +2695 2695 2696 269.5 539 2695 1977-05-19 2024-10-11 00:44:55.000 1977-05-19 2024-10-11 00:44:55 +2696 2696 2697 269.6 539.2 2696 1977-05-20 2024-10-11 00:44:56.000 1977-05-20 2024-10-11 00:44:56 +2697 2697 2698 269.7 539.4 2697 1977-05-21 2024-10-11 00:44:57.000 1977-05-21 2024-10-11 00:44:57 +2698 2698 2699 269.8 539.6 2698 1977-05-22 2024-10-11 00:44:58.000 1977-05-22 2024-10-11 00:44:58 +2699 2699 2700 269.9 539.8000000000001 2699 1977-05-23 2024-10-11 00:44:59.000 1977-05-23 2024-10-11 00:44:59 +2700 2700 2701 270 540 2700 1977-05-24 2024-10-11 00:45:00.000 1977-05-24 2024-10-11 00:45:00 +2701 2701 2702 270.1 540.2 2701 1977-05-25 2024-10-11 00:45:01.000 1977-05-25 2024-10-11 00:45:01 +2702 2702 2703 270.2 540.4 2702 1977-05-26 2024-10-11 00:45:02.000 1977-05-26 2024-10-11 00:45:02 +2703 2703 2704 270.3 540.6 2703 1977-05-27 2024-10-11 00:45:03.000 1977-05-27 2024-10-11 00:45:03 +2704 2704 2705 270.4 540.8000000000001 2704 1977-05-28 2024-10-11 00:45:04.000 1977-05-28 2024-10-11 00:45:04 +2705 2705 2706 270.5 541 2705 1977-05-29 2024-10-11 00:45:05.000 1977-05-29 2024-10-11 00:45:05 +2706 2706 2707 270.6 541.2 2706 1977-05-30 2024-10-11 00:45:06.000 1977-05-30 2024-10-11 00:45:06 +2707 2707 2708 270.7 541.4 2707 1977-05-31 2024-10-11 00:45:07.000 1977-05-31 2024-10-11 00:45:07 +2708 2708 2709 270.8 541.6 2708 1977-06-01 2024-10-11 00:45:08.000 1977-06-01 2024-10-11 00:45:08 +2709 2709 2710 270.9 541.8000000000001 2709 1977-06-02 2024-10-11 00:45:09.000 1977-06-02 2024-10-11 00:45:09 +2710 2710 2711 271 542 2710 1977-06-03 2024-10-11 00:45:10.000 1977-06-03 2024-10-11 00:45:10 +2711 2711 2712 271.1 542.2 2711 1977-06-04 2024-10-11 00:45:11.000 1977-06-04 2024-10-11 00:45:11 +2712 2712 2713 271.2 542.4 2712 1977-06-05 2024-10-11 00:45:12.000 1977-06-05 2024-10-11 00:45:12 +2713 2713 2714 271.3 542.6 2713 1977-06-06 2024-10-11 00:45:13.000 1977-06-06 2024-10-11 00:45:13 +2714 2714 2715 271.4 542.8000000000001 2714 1977-06-07 2024-10-11 00:45:14.000 1977-06-07 2024-10-11 00:45:14 +2715 2715 2716 271.5 543 2715 1977-06-08 2024-10-11 00:45:15.000 1977-06-08 2024-10-11 00:45:15 +2716 2716 2717 271.6 543.2 2716 1977-06-09 2024-10-11 00:45:16.000 1977-06-09 2024-10-11 00:45:16 +2717 2717 2718 271.7 543.4 2717 1977-06-10 2024-10-11 00:45:17.000 1977-06-10 2024-10-11 00:45:17 +2718 2718 2719 271.8 543.6 2718 1977-06-11 2024-10-11 00:45:18.000 1977-06-11 2024-10-11 00:45:18 +2719 2719 2720 271.9 543.8000000000001 2719 1977-06-12 2024-10-11 00:45:19.000 1977-06-12 2024-10-11 00:45:19 +2720 2720 2721 272 544 2720 1977-06-13 2024-10-11 00:45:20.000 1977-06-13 2024-10-11 00:45:20 +2721 2721 2722 272.1 544.2 2721 1977-06-14 2024-10-11 00:45:21.000 1977-06-14 2024-10-11 00:45:21 +2722 2722 2723 272.2 544.4 2722 1977-06-15 2024-10-11 00:45:22.000 1977-06-15 2024-10-11 00:45:22 +2723 2723 2724 272.3 544.6 2723 1977-06-16 2024-10-11 00:45:23.000 1977-06-16 2024-10-11 00:45:23 +2724 2724 2725 272.4 544.8000000000001 2724 1977-06-17 2024-10-11 00:45:24.000 1977-06-17 2024-10-11 00:45:24 +2725 2725 2726 272.5 545 2725 1977-06-18 2024-10-11 00:45:25.000 1977-06-18 2024-10-11 00:45:25 +2726 2726 2727 272.6 545.2 2726 1977-06-19 2024-10-11 00:45:26.000 1977-06-19 2024-10-11 00:45:26 +2727 2727 2728 272.7 545.4 2727 1977-06-20 2024-10-11 00:45:27.000 1977-06-20 2024-10-11 00:45:27 +2728 2728 2729 272.8 545.6 2728 1977-06-21 2024-10-11 00:45:28.000 1977-06-21 2024-10-11 00:45:28 +2729 2729 2730 272.9 545.8000000000001 2729 1977-06-22 2024-10-11 00:45:29.000 1977-06-22 2024-10-11 00:45:29 +2730 2730 2731 273 546 2730 1977-06-23 2024-10-11 00:45:30.000 1977-06-23 2024-10-11 00:45:30 +2731 2731 2732 273.1 546.2 2731 1977-06-24 2024-10-11 00:45:31.000 1977-06-24 2024-10-11 00:45:31 +2732 2732 2733 273.2 546.4 2732 1977-06-25 2024-10-11 00:45:32.000 1977-06-25 2024-10-11 00:45:32 +2733 2733 2734 273.3 546.6 2733 1977-06-26 2024-10-11 00:45:33.000 1977-06-26 2024-10-11 00:45:33 +2734 2734 2735 273.4 546.8000000000001 2734 1977-06-27 2024-10-11 00:45:34.000 1977-06-27 2024-10-11 00:45:34 +2735 2735 2736 273.5 547 2735 1977-06-28 2024-10-11 00:45:35.000 1977-06-28 2024-10-11 00:45:35 +2736 2736 2737 273.6 547.2 2736 1977-06-29 2024-10-11 00:45:36.000 1977-06-29 2024-10-11 00:45:36 +2737 2737 2738 273.7 547.4 2737 1977-06-30 2024-10-11 00:45:37.000 1977-06-30 2024-10-11 00:45:37 +2738 2738 2739 273.8 547.6 2738 1977-07-01 2024-10-11 00:45:38.000 1977-07-01 2024-10-11 00:45:38 +2739 2739 2740 273.9 547.8000000000001 2739 1977-07-02 2024-10-11 00:45:39.000 1977-07-02 2024-10-11 00:45:39 +2740 2740 2741 274 548 2740 1977-07-03 2024-10-11 00:45:40.000 1977-07-03 2024-10-11 00:45:40 +2741 2741 2742 274.1 548.2 2741 1977-07-04 2024-10-11 00:45:41.000 1977-07-04 2024-10-11 00:45:41 +2742 2742 2743 274.2 548.4 2742 1977-07-05 2024-10-11 00:45:42.000 1977-07-05 2024-10-11 00:45:42 +2743 2743 2744 274.3 548.6 2743 1977-07-06 2024-10-11 00:45:43.000 1977-07-06 2024-10-11 00:45:43 +2744 2744 2745 274.4 548.8000000000001 2744 1977-07-07 2024-10-11 00:45:44.000 1977-07-07 2024-10-11 00:45:44 +2745 2745 2746 274.5 549 2745 1977-07-08 2024-10-11 00:45:45.000 1977-07-08 2024-10-11 00:45:45 +2746 2746 2747 274.6 549.2 2746 1977-07-09 2024-10-11 00:45:46.000 1977-07-09 2024-10-11 00:45:46 +2747 2747 2748 274.7 549.4 2747 1977-07-10 2024-10-11 00:45:47.000 1977-07-10 2024-10-11 00:45:47 +2748 2748 2749 274.8 549.6 2748 1977-07-11 2024-10-11 00:45:48.000 1977-07-11 2024-10-11 00:45:48 +2749 2749 2750 274.9 549.8000000000001 2749 1977-07-12 2024-10-11 00:45:49.000 1977-07-12 2024-10-11 00:45:49 +2750 2750 2751 275 550 2750 1977-07-13 2024-10-11 00:45:50.000 1977-07-13 2024-10-11 00:45:50 +2751 2751 2752 275.1 550.2 2751 1977-07-14 2024-10-11 00:45:51.000 1977-07-14 2024-10-11 00:45:51 +2752 2752 2753 275.2 550.4 2752 1977-07-15 2024-10-11 00:45:52.000 1977-07-15 2024-10-11 00:45:52 +2753 2753 2754 275.3 550.6 2753 1977-07-16 2024-10-11 00:45:53.000 1977-07-16 2024-10-11 00:45:53 +2754 2754 2755 275.4 550.8000000000001 2754 1977-07-17 2024-10-11 00:45:54.000 1977-07-17 2024-10-11 00:45:54 +2755 2755 2756 275.5 551 2755 1977-07-18 2024-10-11 00:45:55.000 1977-07-18 2024-10-11 00:45:55 +2756 2756 2757 275.6 551.2 2756 1977-07-19 2024-10-11 00:45:56.000 1977-07-19 2024-10-11 00:45:56 +2757 2757 2758 275.7 551.4 2757 1977-07-20 2024-10-11 00:45:57.000 1977-07-20 2024-10-11 00:45:57 +2758 2758 2759 275.8 551.6 2758 1977-07-21 2024-10-11 00:45:58.000 1977-07-21 2024-10-11 00:45:58 +2759 2759 2760 275.9 551.8000000000001 2759 1977-07-22 2024-10-11 00:45:59.000 1977-07-22 2024-10-11 00:45:59 +2760 2760 2761 276 552 2760 1977-07-23 2024-10-11 00:46:00.000 1977-07-23 2024-10-11 00:46:00 +2761 2761 2762 276.1 552.2 2761 1977-07-24 2024-10-11 00:46:01.000 1977-07-24 2024-10-11 00:46:01 +2762 2762 2763 276.2 552.4 2762 1977-07-25 2024-10-11 00:46:02.000 1977-07-25 2024-10-11 00:46:02 +2763 2763 2764 276.3 552.6 2763 1977-07-26 2024-10-11 00:46:03.000 1977-07-26 2024-10-11 00:46:03 +2764 2764 2765 276.4 552.8000000000001 2764 1977-07-27 2024-10-11 00:46:04.000 1977-07-27 2024-10-11 00:46:04 +2765 2765 2766 276.5 553 2765 1977-07-28 2024-10-11 00:46:05.000 1977-07-28 2024-10-11 00:46:05 +2766 2766 2767 276.6 553.2 2766 1977-07-29 2024-10-11 00:46:06.000 1977-07-29 2024-10-11 00:46:06 +2767 2767 2768 276.7 553.4 2767 1977-07-30 2024-10-11 00:46:07.000 1977-07-30 2024-10-11 00:46:07 +2768 2768 2769 276.8 553.6 2768 1977-07-31 2024-10-11 00:46:08.000 1977-07-31 2024-10-11 00:46:08 +2769 2769 2770 276.9 553.8000000000001 2769 1977-08-01 2024-10-11 00:46:09.000 1977-08-01 2024-10-11 00:46:09 +2770 2770 2771 277 554 2770 1977-08-02 2024-10-11 00:46:10.000 1977-08-02 2024-10-11 00:46:10 +2771 2771 2772 277.1 554.2 2771 1977-08-03 2024-10-11 00:46:11.000 1977-08-03 2024-10-11 00:46:11 +2772 2772 2773 277.2 554.4 2772 1977-08-04 2024-10-11 00:46:12.000 1977-08-04 2024-10-11 00:46:12 +2773 2773 2774 277.3 554.6 2773 1977-08-05 2024-10-11 00:46:13.000 1977-08-05 2024-10-11 00:46:13 +2774 2774 2775 277.4 554.8000000000001 2774 1977-08-06 2024-10-11 00:46:14.000 1977-08-06 2024-10-11 00:46:14 +2775 2775 2776 277.5 555 2775 1977-08-07 2024-10-11 00:46:15.000 1977-08-07 2024-10-11 00:46:15 +2776 2776 2777 277.6 555.2 2776 1977-08-08 2024-10-11 00:46:16.000 1977-08-08 2024-10-11 00:46:16 +2777 2777 2778 277.7 555.4 2777 1977-08-09 2024-10-11 00:46:17.000 1977-08-09 2024-10-11 00:46:17 +2778 2778 2779 277.8 555.6 2778 1977-08-10 2024-10-11 00:46:18.000 1977-08-10 2024-10-11 00:46:18 +2779 2779 2780 277.9 555.8000000000001 2779 1977-08-11 2024-10-11 00:46:19.000 1977-08-11 2024-10-11 00:46:19 +2780 2780 2781 278 556 2780 1977-08-12 2024-10-11 00:46:20.000 1977-08-12 2024-10-11 00:46:20 +2781 2781 2782 278.1 556.2 2781 1977-08-13 2024-10-11 00:46:21.000 1977-08-13 2024-10-11 00:46:21 +2782 2782 2783 278.2 556.4 2782 1977-08-14 2024-10-11 00:46:22.000 1977-08-14 2024-10-11 00:46:22 +2783 2783 2784 278.3 556.6 2783 1977-08-15 2024-10-11 00:46:23.000 1977-08-15 2024-10-11 00:46:23 +2784 2784 2785 278.4 556.8000000000001 2784 1977-08-16 2024-10-11 00:46:24.000 1977-08-16 2024-10-11 00:46:24 +2785 2785 2786 278.5 557 2785 1977-08-17 2024-10-11 00:46:25.000 1977-08-17 2024-10-11 00:46:25 +2786 2786 2787 278.6 557.2 2786 1977-08-18 2024-10-11 00:46:26.000 1977-08-18 2024-10-11 00:46:26 +2787 2787 2788 278.7 557.4 2787 1977-08-19 2024-10-11 00:46:27.000 1977-08-19 2024-10-11 00:46:27 +2788 2788 2789 278.8 557.6 2788 1977-08-20 2024-10-11 00:46:28.000 1977-08-20 2024-10-11 00:46:28 +2789 2789 2790 278.9 557.8000000000001 2789 1977-08-21 2024-10-11 00:46:29.000 1977-08-21 2024-10-11 00:46:29 +2790 2790 2791 279 558 2790 1977-08-22 2024-10-11 00:46:30.000 1977-08-22 2024-10-11 00:46:30 +2791 2791 2792 279.1 558.2 2791 1977-08-23 2024-10-11 00:46:31.000 1977-08-23 2024-10-11 00:46:31 +2792 2792 2793 279.2 558.4 2792 1977-08-24 2024-10-11 00:46:32.000 1977-08-24 2024-10-11 00:46:32 +2793 2793 2794 279.3 558.6 2793 1977-08-25 2024-10-11 00:46:33.000 1977-08-25 2024-10-11 00:46:33 +2794 2794 2795 279.4 558.8000000000001 2794 1977-08-26 2024-10-11 00:46:34.000 1977-08-26 2024-10-11 00:46:34 +2795 2795 2796 279.5 559 2795 1977-08-27 2024-10-11 00:46:35.000 1977-08-27 2024-10-11 00:46:35 +2796 2796 2797 279.6 559.2 2796 1977-08-28 2024-10-11 00:46:36.000 1977-08-28 2024-10-11 00:46:36 +2797 2797 2798 279.7 559.4 2797 1977-08-29 2024-10-11 00:46:37.000 1977-08-29 2024-10-11 00:46:37 +2798 2798 2799 279.8 559.6 2798 1977-08-30 2024-10-11 00:46:38.000 1977-08-30 2024-10-11 00:46:38 +2799 2799 2800 279.9 559.8000000000001 2799 1977-08-31 2024-10-11 00:46:39.000 1977-08-31 2024-10-11 00:46:39 +2800 2800 2801 280 560 2800 1977-09-01 2024-10-11 00:46:40.000 1977-09-01 2024-10-11 00:46:40 +2801 2801 2802 280.1 560.2 2801 1977-09-02 2024-10-11 00:46:41.000 1977-09-02 2024-10-11 00:46:41 +2802 2802 2803 280.2 560.4 2802 1977-09-03 2024-10-11 00:46:42.000 1977-09-03 2024-10-11 00:46:42 +2803 2803 2804 280.3 560.6 2803 1977-09-04 2024-10-11 00:46:43.000 1977-09-04 2024-10-11 00:46:43 +2804 2804 2805 280.4 560.8000000000001 2804 1977-09-05 2024-10-11 00:46:44.000 1977-09-05 2024-10-11 00:46:44 +2805 2805 2806 280.5 561 2805 1977-09-06 2024-10-11 00:46:45.000 1977-09-06 2024-10-11 00:46:45 +2806 2806 2807 280.6 561.2 2806 1977-09-07 2024-10-11 00:46:46.000 1977-09-07 2024-10-11 00:46:46 +2807 2807 2808 280.7 561.4 2807 1977-09-08 2024-10-11 00:46:47.000 1977-09-08 2024-10-11 00:46:47 +2808 2808 2809 280.8 561.6 2808 1977-09-09 2024-10-11 00:46:48.000 1977-09-09 2024-10-11 00:46:48 +2809 2809 2810 280.9 561.8000000000001 2809 1977-09-10 2024-10-11 00:46:49.000 1977-09-10 2024-10-11 00:46:49 +2810 2810 2811 281 562 2810 1977-09-11 2024-10-11 00:46:50.000 1977-09-11 2024-10-11 00:46:50 +2811 2811 2812 281.1 562.2 2811 1977-09-12 2024-10-11 00:46:51.000 1977-09-12 2024-10-11 00:46:51 +2812 2812 2813 281.2 562.4 2812 1977-09-13 2024-10-11 00:46:52.000 1977-09-13 2024-10-11 00:46:52 +2813 2813 2814 281.3 562.6 2813 1977-09-14 2024-10-11 00:46:53.000 1977-09-14 2024-10-11 00:46:53 +2814 2814 2815 281.4 562.8000000000001 2814 1977-09-15 2024-10-11 00:46:54.000 1977-09-15 2024-10-11 00:46:54 +2815 2815 2816 281.5 563 2815 1977-09-16 2024-10-11 00:46:55.000 1977-09-16 2024-10-11 00:46:55 +2816 2816 2817 281.6 563.2 2816 1977-09-17 2024-10-11 00:46:56.000 1977-09-17 2024-10-11 00:46:56 +2817 2817 2818 281.7 563.4 2817 1977-09-18 2024-10-11 00:46:57.000 1977-09-18 2024-10-11 00:46:57 +2818 2818 2819 281.8 563.6 2818 1977-09-19 2024-10-11 00:46:58.000 1977-09-19 2024-10-11 00:46:58 +2819 2819 2820 281.9 563.8000000000001 2819 1977-09-20 2024-10-11 00:46:59.000 1977-09-20 2024-10-11 00:46:59 +2820 2820 2821 282 564 2820 1977-09-21 2024-10-11 00:47:00.000 1977-09-21 2024-10-11 00:47:00 +2821 2821 2822 282.1 564.2 2821 1977-09-22 2024-10-11 00:47:01.000 1977-09-22 2024-10-11 00:47:01 +2822 2822 2823 282.2 564.4 2822 1977-09-23 2024-10-11 00:47:02.000 1977-09-23 2024-10-11 00:47:02 +2823 2823 2824 282.3 564.6 2823 1977-09-24 2024-10-11 00:47:03.000 1977-09-24 2024-10-11 00:47:03 +2824 2824 2825 282.4 564.8000000000001 2824 1977-09-25 2024-10-11 00:47:04.000 1977-09-25 2024-10-11 00:47:04 +2825 2825 2826 282.5 565 2825 1977-09-26 2024-10-11 00:47:05.000 1977-09-26 2024-10-11 00:47:05 +2826 2826 2827 282.6 565.2 2826 1977-09-27 2024-10-11 00:47:06.000 1977-09-27 2024-10-11 00:47:06 +2827 2827 2828 282.7 565.4 2827 1977-09-28 2024-10-11 00:47:07.000 1977-09-28 2024-10-11 00:47:07 +2828 2828 2829 282.8 565.6 2828 1977-09-29 2024-10-11 00:47:08.000 1977-09-29 2024-10-11 00:47:08 +2829 2829 2830 282.9 565.8000000000001 2829 1977-09-30 2024-10-11 00:47:09.000 1977-09-30 2024-10-11 00:47:09 +2830 2830 2831 283 566 2830 1977-10-01 2024-10-11 00:47:10.000 1977-10-01 2024-10-11 00:47:10 +2831 2831 2832 283.1 566.2 2831 1977-10-02 2024-10-11 00:47:11.000 1977-10-02 2024-10-11 00:47:11 +2832 2832 2833 283.2 566.4 2832 1977-10-03 2024-10-11 00:47:12.000 1977-10-03 2024-10-11 00:47:12 +2833 2833 2834 283.3 566.6 2833 1977-10-04 2024-10-11 00:47:13.000 1977-10-04 2024-10-11 00:47:13 +2834 2834 2835 283.4 566.8000000000001 2834 1977-10-05 2024-10-11 00:47:14.000 1977-10-05 2024-10-11 00:47:14 +2835 2835 2836 283.5 567 2835 1977-10-06 2024-10-11 00:47:15.000 1977-10-06 2024-10-11 00:47:15 +2836 2836 2837 283.6 567.2 2836 1977-10-07 2024-10-11 00:47:16.000 1977-10-07 2024-10-11 00:47:16 +2837 2837 2838 283.7 567.4 2837 1977-10-08 2024-10-11 00:47:17.000 1977-10-08 2024-10-11 00:47:17 +2838 2838 2839 283.8 567.6 2838 1977-10-09 2024-10-11 00:47:18.000 1977-10-09 2024-10-11 00:47:18 +2839 2839 2840 283.9 567.8000000000001 2839 1977-10-10 2024-10-11 00:47:19.000 1977-10-10 2024-10-11 00:47:19 +2840 2840 2841 284 568 2840 1977-10-11 2024-10-11 00:47:20.000 1977-10-11 2024-10-11 00:47:20 +2841 2841 2842 284.1 568.2 2841 1977-10-12 2024-10-11 00:47:21.000 1977-10-12 2024-10-11 00:47:21 +2842 2842 2843 284.2 568.4 2842 1977-10-13 2024-10-11 00:47:22.000 1977-10-13 2024-10-11 00:47:22 +2843 2843 2844 284.3 568.6 2843 1977-10-14 2024-10-11 00:47:23.000 1977-10-14 2024-10-11 00:47:23 +2844 2844 2845 284.4 568.8000000000001 2844 1977-10-15 2024-10-11 00:47:24.000 1977-10-15 2024-10-11 00:47:24 +2845 2845 2846 284.5 569 2845 1977-10-16 2024-10-11 00:47:25.000 1977-10-16 2024-10-11 00:47:25 +2846 2846 2847 284.6 569.2 2846 1977-10-17 2024-10-11 00:47:26.000 1977-10-17 2024-10-11 00:47:26 +2847 2847 2848 284.7 569.4 2847 1977-10-18 2024-10-11 00:47:27.000 1977-10-18 2024-10-11 00:47:27 +2848 2848 2849 284.8 569.6 2848 1977-10-19 2024-10-11 00:47:28.000 1977-10-19 2024-10-11 00:47:28 +2849 2849 2850 284.9 569.8000000000001 2849 1977-10-20 2024-10-11 00:47:29.000 1977-10-20 2024-10-11 00:47:29 +2850 2850 2851 285 570 2850 1977-10-21 2024-10-11 00:47:30.000 1977-10-21 2024-10-11 00:47:30 +2851 2851 2852 285.1 570.2 2851 1977-10-22 2024-10-11 00:47:31.000 1977-10-22 2024-10-11 00:47:31 +2852 2852 2853 285.2 570.4 2852 1977-10-23 2024-10-11 00:47:32.000 1977-10-23 2024-10-11 00:47:32 +2853 2853 2854 285.3 570.6 2853 1977-10-24 2024-10-11 00:47:33.000 1977-10-24 2024-10-11 00:47:33 +2854 2854 2855 285.4 570.8000000000001 2854 1977-10-25 2024-10-11 00:47:34.000 1977-10-25 2024-10-11 00:47:34 +2855 2855 2856 285.5 571 2855 1977-10-26 2024-10-11 00:47:35.000 1977-10-26 2024-10-11 00:47:35 +2856 2856 2857 285.6 571.2 2856 1977-10-27 2024-10-11 00:47:36.000 1977-10-27 2024-10-11 00:47:36 +2857 2857 2858 285.7 571.4 2857 1977-10-28 2024-10-11 00:47:37.000 1977-10-28 2024-10-11 00:47:37 +2858 2858 2859 285.8 571.6 2858 1977-10-29 2024-10-11 00:47:38.000 1977-10-29 2024-10-11 00:47:38 +2859 2859 2860 285.9 571.8000000000001 2859 1977-10-30 2024-10-11 00:47:39.000 1977-10-30 2024-10-11 00:47:39 +2860 2860 2861 286 572 2860 1977-10-31 2024-10-11 00:47:40.000 1977-10-31 2024-10-11 00:47:40 +2861 2861 2862 286.1 572.2 2861 1977-11-01 2024-10-11 00:47:41.000 1977-11-01 2024-10-11 00:47:41 +2862 2862 2863 286.2 572.4 2862 1977-11-02 2024-10-11 00:47:42.000 1977-11-02 2024-10-11 00:47:42 +2863 2863 2864 286.3 572.6 2863 1977-11-03 2024-10-11 00:47:43.000 1977-11-03 2024-10-11 00:47:43 +2864 2864 2865 286.4 572.8000000000001 2864 1977-11-04 2024-10-11 00:47:44.000 1977-11-04 2024-10-11 00:47:44 +2865 2865 2866 286.5 573 2865 1977-11-05 2024-10-11 00:47:45.000 1977-11-05 2024-10-11 00:47:45 +2866 2866 2867 286.6 573.2 2866 1977-11-06 2024-10-11 00:47:46.000 1977-11-06 2024-10-11 00:47:46 +2867 2867 2868 286.7 573.4 2867 1977-11-07 2024-10-11 00:47:47.000 1977-11-07 2024-10-11 00:47:47 +2868 2868 2869 286.8 573.6 2868 1977-11-08 2024-10-11 00:47:48.000 1977-11-08 2024-10-11 00:47:48 +2869 2869 2870 286.9 573.8000000000001 2869 1977-11-09 2024-10-11 00:47:49.000 1977-11-09 2024-10-11 00:47:49 +2870 2870 2871 287 574 2870 1977-11-10 2024-10-11 00:47:50.000 1977-11-10 2024-10-11 00:47:50 +2871 2871 2872 287.1 574.2 2871 1977-11-11 2024-10-11 00:47:51.000 1977-11-11 2024-10-11 00:47:51 +2872 2872 2873 287.2 574.4 2872 1977-11-12 2024-10-11 00:47:52.000 1977-11-12 2024-10-11 00:47:52 +2873 2873 2874 287.3 574.6 2873 1977-11-13 2024-10-11 00:47:53.000 1977-11-13 2024-10-11 00:47:53 +2874 2874 2875 287.4 574.8000000000001 2874 1977-11-14 2024-10-11 00:47:54.000 1977-11-14 2024-10-11 00:47:54 +2875 2875 2876 287.5 575 2875 1977-11-15 2024-10-11 00:47:55.000 1977-11-15 2024-10-11 00:47:55 +2876 2876 2877 287.6 575.2 2876 1977-11-16 2024-10-11 00:47:56.000 1977-11-16 2024-10-11 00:47:56 +2877 2877 2878 287.7 575.4 2877 1977-11-17 2024-10-11 00:47:57.000 1977-11-17 2024-10-11 00:47:57 +2878 2878 2879 287.8 575.6 2878 1977-11-18 2024-10-11 00:47:58.000 1977-11-18 2024-10-11 00:47:58 +2879 2879 2880 287.9 575.8000000000001 2879 1977-11-19 2024-10-11 00:47:59.000 1977-11-19 2024-10-11 00:47:59 +2880 2880 2881 288 576 2880 1977-11-20 2024-10-11 00:48:00.000 1977-11-20 2024-10-11 00:48:00 +2881 2881 2882 288.1 576.2 2881 1977-11-21 2024-10-11 00:48:01.000 1977-11-21 2024-10-11 00:48:01 +2882 2882 2883 288.2 576.4 2882 1977-11-22 2024-10-11 00:48:02.000 1977-11-22 2024-10-11 00:48:02 +2883 2883 2884 288.3 576.6 2883 1977-11-23 2024-10-11 00:48:03.000 1977-11-23 2024-10-11 00:48:03 +2884 2884 2885 288.4 576.8000000000001 2884 1977-11-24 2024-10-11 00:48:04.000 1977-11-24 2024-10-11 00:48:04 +2885 2885 2886 288.5 577 2885 1977-11-25 2024-10-11 00:48:05.000 1977-11-25 2024-10-11 00:48:05 +2886 2886 2887 288.6 577.2 2886 1977-11-26 2024-10-11 00:48:06.000 1977-11-26 2024-10-11 00:48:06 +2887 2887 2888 288.7 577.4 2887 1977-11-27 2024-10-11 00:48:07.000 1977-11-27 2024-10-11 00:48:07 +2888 2888 2889 288.8 577.6 2888 1977-11-28 2024-10-11 00:48:08.000 1977-11-28 2024-10-11 00:48:08 +2889 2889 2890 288.9 577.8000000000001 2889 1977-11-29 2024-10-11 00:48:09.000 1977-11-29 2024-10-11 00:48:09 +2890 2890 2891 289 578 2890 1977-11-30 2024-10-11 00:48:10.000 1977-11-30 2024-10-11 00:48:10 +2891 2891 2892 289.1 578.2 2891 1977-12-01 2024-10-11 00:48:11.000 1977-12-01 2024-10-11 00:48:11 +2892 2892 2893 289.2 578.4 2892 1977-12-02 2024-10-11 00:48:12.000 1977-12-02 2024-10-11 00:48:12 +2893 2893 2894 289.3 578.6 2893 1977-12-03 2024-10-11 00:48:13.000 1977-12-03 2024-10-11 00:48:13 +2894 2894 2895 289.4 578.8000000000001 2894 1977-12-04 2024-10-11 00:48:14.000 1977-12-04 2024-10-11 00:48:14 +2895 2895 2896 289.5 579 2895 1977-12-05 2024-10-11 00:48:15.000 1977-12-05 2024-10-11 00:48:15 +2896 2896 2897 289.6 579.2 2896 1977-12-06 2024-10-11 00:48:16.000 1977-12-06 2024-10-11 00:48:16 +2897 2897 2898 289.7 579.4 2897 1977-12-07 2024-10-11 00:48:17.000 1977-12-07 2024-10-11 00:48:17 +2898 2898 2899 289.8 579.6 2898 1977-12-08 2024-10-11 00:48:18.000 1977-12-08 2024-10-11 00:48:18 +2899 2899 2900 289.9 579.8000000000001 2899 1977-12-09 2024-10-11 00:48:19.000 1977-12-09 2024-10-11 00:48:19 +2900 2900 2901 290 580 2900 1977-12-10 2024-10-11 00:48:20.000 1977-12-10 2024-10-11 00:48:20 +2901 2901 2902 290.1 580.2 2901 1977-12-11 2024-10-11 00:48:21.000 1977-12-11 2024-10-11 00:48:21 +2902 2902 2903 290.2 580.4 2902 1977-12-12 2024-10-11 00:48:22.000 1977-12-12 2024-10-11 00:48:22 +2903 2903 2904 290.3 580.6 2903 1977-12-13 2024-10-11 00:48:23.000 1977-12-13 2024-10-11 00:48:23 +2904 2904 2905 290.4 580.8000000000001 2904 1977-12-14 2024-10-11 00:48:24.000 1977-12-14 2024-10-11 00:48:24 +2905 2905 2906 290.5 581 2905 1977-12-15 2024-10-11 00:48:25.000 1977-12-15 2024-10-11 00:48:25 +2906 2906 2907 290.6 581.2 2906 1977-12-16 2024-10-11 00:48:26.000 1977-12-16 2024-10-11 00:48:26 +2907 2907 2908 290.7 581.4 2907 1977-12-17 2024-10-11 00:48:27.000 1977-12-17 2024-10-11 00:48:27 +2908 2908 2909 290.8 581.6 2908 1977-12-18 2024-10-11 00:48:28.000 1977-12-18 2024-10-11 00:48:28 +2909 2909 2910 290.9 581.8000000000001 2909 1977-12-19 2024-10-11 00:48:29.000 1977-12-19 2024-10-11 00:48:29 +2910 2910 2911 291 582 2910 1977-12-20 2024-10-11 00:48:30.000 1977-12-20 2024-10-11 00:48:30 +2911 2911 2912 291.1 582.2 2911 1977-12-21 2024-10-11 00:48:31.000 1977-12-21 2024-10-11 00:48:31 +2912 2912 2913 291.2 582.4 2912 1977-12-22 2024-10-11 00:48:32.000 1977-12-22 2024-10-11 00:48:32 +2913 2913 2914 291.3 582.6 2913 1977-12-23 2024-10-11 00:48:33.000 1977-12-23 2024-10-11 00:48:33 +2914 2914 2915 291.4 582.8000000000001 2914 1977-12-24 2024-10-11 00:48:34.000 1977-12-24 2024-10-11 00:48:34 +2915 2915 2916 291.5 583 2915 1977-12-25 2024-10-11 00:48:35.000 1977-12-25 2024-10-11 00:48:35 +2916 2916 2917 291.6 583.2 2916 1977-12-26 2024-10-11 00:48:36.000 1977-12-26 2024-10-11 00:48:36 +2917 2917 2918 291.7 583.4 2917 1977-12-27 2024-10-11 00:48:37.000 1977-12-27 2024-10-11 00:48:37 +2918 2918 2919 291.8 583.6 2918 1977-12-28 2024-10-11 00:48:38.000 1977-12-28 2024-10-11 00:48:38 +2919 2919 2920 291.9 583.8000000000001 2919 1977-12-29 2024-10-11 00:48:39.000 1977-12-29 2024-10-11 00:48:39 +2920 2920 2921 292 584 2920 1977-12-30 2024-10-11 00:48:40.000 1977-12-30 2024-10-11 00:48:40 +2921 2921 2922 292.1 584.2 2921 1977-12-31 2024-10-11 00:48:41.000 1977-12-31 2024-10-11 00:48:41 +2922 2922 2923 292.2 584.4 2922 1978-01-01 2024-10-11 00:48:42.000 1978-01-01 2024-10-11 00:48:42 +2923 2923 2924 292.3 584.6 2923 1978-01-02 2024-10-11 00:48:43.000 1978-01-02 2024-10-11 00:48:43 +2924 2924 2925 292.4 584.8000000000001 2924 1978-01-03 2024-10-11 00:48:44.000 1978-01-03 2024-10-11 00:48:44 +2925 2925 2926 292.5 585 2925 1978-01-04 2024-10-11 00:48:45.000 1978-01-04 2024-10-11 00:48:45 +2926 2926 2927 292.6 585.2 2926 1978-01-05 2024-10-11 00:48:46.000 1978-01-05 2024-10-11 00:48:46 +2927 2927 2928 292.7 585.4 2927 1978-01-06 2024-10-11 00:48:47.000 1978-01-06 2024-10-11 00:48:47 +2928 2928 2929 292.8 585.6 2928 1978-01-07 2024-10-11 00:48:48.000 1978-01-07 2024-10-11 00:48:48 +2929 2929 2930 292.9 585.8000000000001 2929 1978-01-08 2024-10-11 00:48:49.000 1978-01-08 2024-10-11 00:48:49 +2930 2930 2931 293 586 2930 1978-01-09 2024-10-11 00:48:50.000 1978-01-09 2024-10-11 00:48:50 +2931 2931 2932 293.1 586.2 2931 1978-01-10 2024-10-11 00:48:51.000 1978-01-10 2024-10-11 00:48:51 +2932 2932 2933 293.2 586.4 2932 1978-01-11 2024-10-11 00:48:52.000 1978-01-11 2024-10-11 00:48:52 +2933 2933 2934 293.3 586.6 2933 1978-01-12 2024-10-11 00:48:53.000 1978-01-12 2024-10-11 00:48:53 +2934 2934 2935 293.4 586.8000000000001 2934 1978-01-13 2024-10-11 00:48:54.000 1978-01-13 2024-10-11 00:48:54 +2935 2935 2936 293.5 587 2935 1978-01-14 2024-10-11 00:48:55.000 1978-01-14 2024-10-11 00:48:55 +2936 2936 2937 293.6 587.2 2936 1978-01-15 2024-10-11 00:48:56.000 1978-01-15 2024-10-11 00:48:56 +2937 2937 2938 293.7 587.4 2937 1978-01-16 2024-10-11 00:48:57.000 1978-01-16 2024-10-11 00:48:57 +2938 2938 2939 293.8 587.6 2938 1978-01-17 2024-10-11 00:48:58.000 1978-01-17 2024-10-11 00:48:58 +2939 2939 2940 293.9 587.8000000000001 2939 1978-01-18 2024-10-11 00:48:59.000 1978-01-18 2024-10-11 00:48:59 +2940 2940 2941 294 588 2940 1978-01-19 2024-10-11 00:49:00.000 1978-01-19 2024-10-11 00:49:00 +2941 2941 2942 294.1 588.2 2941 1978-01-20 2024-10-11 00:49:01.000 1978-01-20 2024-10-11 00:49:01 +2942 2942 2943 294.2 588.4 2942 1978-01-21 2024-10-11 00:49:02.000 1978-01-21 2024-10-11 00:49:02 +2943 2943 2944 294.3 588.6 2943 1978-01-22 2024-10-11 00:49:03.000 1978-01-22 2024-10-11 00:49:03 +2944 2944 2945 294.4 588.8000000000001 2944 1978-01-23 2024-10-11 00:49:04.000 1978-01-23 2024-10-11 00:49:04 +2945 2945 2946 294.5 589 2945 1978-01-24 2024-10-11 00:49:05.000 1978-01-24 2024-10-11 00:49:05 +2946 2946 2947 294.6 589.2 2946 1978-01-25 2024-10-11 00:49:06.000 1978-01-25 2024-10-11 00:49:06 +2947 2947 2948 294.7 589.4 2947 1978-01-26 2024-10-11 00:49:07.000 1978-01-26 2024-10-11 00:49:07 +2948 2948 2949 294.8 589.6 2948 1978-01-27 2024-10-11 00:49:08.000 1978-01-27 2024-10-11 00:49:08 +2949 2949 2950 294.9 589.8000000000001 2949 1978-01-28 2024-10-11 00:49:09.000 1978-01-28 2024-10-11 00:49:09 +2950 2950 2951 295 590 2950 1978-01-29 2024-10-11 00:49:10.000 1978-01-29 2024-10-11 00:49:10 +2951 2951 2952 295.1 590.2 2951 1978-01-30 2024-10-11 00:49:11.000 1978-01-30 2024-10-11 00:49:11 +2952 2952 2953 295.2 590.4 2952 1978-01-31 2024-10-11 00:49:12.000 1978-01-31 2024-10-11 00:49:12 +2953 2953 2954 295.3 590.6 2953 1978-02-01 2024-10-11 00:49:13.000 1978-02-01 2024-10-11 00:49:13 +2954 2954 2955 295.4 590.8000000000001 2954 1978-02-02 2024-10-11 00:49:14.000 1978-02-02 2024-10-11 00:49:14 +2955 2955 2956 295.5 591 2955 1978-02-03 2024-10-11 00:49:15.000 1978-02-03 2024-10-11 00:49:15 +2956 2956 2957 295.6 591.2 2956 1978-02-04 2024-10-11 00:49:16.000 1978-02-04 2024-10-11 00:49:16 +2957 2957 2958 295.7 591.4 2957 1978-02-05 2024-10-11 00:49:17.000 1978-02-05 2024-10-11 00:49:17 +2958 2958 2959 295.8 591.6 2958 1978-02-06 2024-10-11 00:49:18.000 1978-02-06 2024-10-11 00:49:18 +2959 2959 2960 295.9 591.8000000000001 2959 1978-02-07 2024-10-11 00:49:19.000 1978-02-07 2024-10-11 00:49:19 +2960 2960 2961 296 592 2960 1978-02-08 2024-10-11 00:49:20.000 1978-02-08 2024-10-11 00:49:20 +2961 2961 2962 296.1 592.2 2961 1978-02-09 2024-10-11 00:49:21.000 1978-02-09 2024-10-11 00:49:21 +2962 2962 2963 296.2 592.4 2962 1978-02-10 2024-10-11 00:49:22.000 1978-02-10 2024-10-11 00:49:22 +2963 2963 2964 296.3 592.6 2963 1978-02-11 2024-10-11 00:49:23.000 1978-02-11 2024-10-11 00:49:23 +2964 2964 2965 296.4 592.8000000000001 2964 1978-02-12 2024-10-11 00:49:24.000 1978-02-12 2024-10-11 00:49:24 +2965 2965 2966 296.5 593 2965 1978-02-13 2024-10-11 00:49:25.000 1978-02-13 2024-10-11 00:49:25 +2966 2966 2967 296.6 593.2 2966 1978-02-14 2024-10-11 00:49:26.000 1978-02-14 2024-10-11 00:49:26 +2967 2967 2968 296.7 593.4 2967 1978-02-15 2024-10-11 00:49:27.000 1978-02-15 2024-10-11 00:49:27 +2968 2968 2969 296.8 593.6 2968 1978-02-16 2024-10-11 00:49:28.000 1978-02-16 2024-10-11 00:49:28 +2969 2969 2970 296.9 593.8000000000001 2969 1978-02-17 2024-10-11 00:49:29.000 1978-02-17 2024-10-11 00:49:29 +2970 2970 2971 297 594 2970 1978-02-18 2024-10-11 00:49:30.000 1978-02-18 2024-10-11 00:49:30 +2971 2971 2972 297.1 594.2 2971 1978-02-19 2024-10-11 00:49:31.000 1978-02-19 2024-10-11 00:49:31 +2972 2972 2973 297.2 594.4 2972 1978-02-20 2024-10-11 00:49:32.000 1978-02-20 2024-10-11 00:49:32 +2973 2973 2974 297.3 594.6 2973 1978-02-21 2024-10-11 00:49:33.000 1978-02-21 2024-10-11 00:49:33 +2974 2974 2975 297.4 594.8000000000001 2974 1978-02-22 2024-10-11 00:49:34.000 1978-02-22 2024-10-11 00:49:34 +2975 2975 2976 297.5 595 2975 1978-02-23 2024-10-11 00:49:35.000 1978-02-23 2024-10-11 00:49:35 +2976 2976 2977 297.6 595.2 2976 1978-02-24 2024-10-11 00:49:36.000 1978-02-24 2024-10-11 00:49:36 +2977 2977 2978 297.7 595.4 2977 1978-02-25 2024-10-11 00:49:37.000 1978-02-25 2024-10-11 00:49:37 +2978 2978 2979 297.8 595.6 2978 1978-02-26 2024-10-11 00:49:38.000 1978-02-26 2024-10-11 00:49:38 +2979 2979 2980 297.9 595.8000000000001 2979 1978-02-27 2024-10-11 00:49:39.000 1978-02-27 2024-10-11 00:49:39 +2980 2980 2981 298 596 2980 1978-02-28 2024-10-11 00:49:40.000 1978-02-28 2024-10-11 00:49:40 +2981 2981 2982 298.1 596.2 2981 1978-03-01 2024-10-11 00:49:41.000 1978-03-01 2024-10-11 00:49:41 +2982 2982 2983 298.2 596.4 2982 1978-03-02 2024-10-11 00:49:42.000 1978-03-02 2024-10-11 00:49:42 +2983 2983 2984 298.3 596.6 2983 1978-03-03 2024-10-11 00:49:43.000 1978-03-03 2024-10-11 00:49:43 +2984 2984 2985 298.4 596.8000000000001 2984 1978-03-04 2024-10-11 00:49:44.000 1978-03-04 2024-10-11 00:49:44 +2985 2985 2986 298.5 597 2985 1978-03-05 2024-10-11 00:49:45.000 1978-03-05 2024-10-11 00:49:45 +2986 2986 2987 298.6 597.2 2986 1978-03-06 2024-10-11 00:49:46.000 1978-03-06 2024-10-11 00:49:46 +2987 2987 2988 298.7 597.4 2987 1978-03-07 2024-10-11 00:49:47.000 1978-03-07 2024-10-11 00:49:47 +2988 2988 2989 298.8 597.6 2988 1978-03-08 2024-10-11 00:49:48.000 1978-03-08 2024-10-11 00:49:48 +2989 2989 2990 298.9 597.8000000000001 2989 1978-03-09 2024-10-11 00:49:49.000 1978-03-09 2024-10-11 00:49:49 +2990 2990 2991 299 598 2990 1978-03-10 2024-10-11 00:49:50.000 1978-03-10 2024-10-11 00:49:50 +2991 2991 2992 299.1 598.2 2991 1978-03-11 2024-10-11 00:49:51.000 1978-03-11 2024-10-11 00:49:51 +2992 2992 2993 299.2 598.4 2992 1978-03-12 2024-10-11 00:49:52.000 1978-03-12 2024-10-11 00:49:52 +2993 2993 2994 299.3 598.6 2993 1978-03-13 2024-10-11 00:49:53.000 1978-03-13 2024-10-11 00:49:53 +2994 2994 2995 299.4 598.8000000000001 2994 1978-03-14 2024-10-11 00:49:54.000 1978-03-14 2024-10-11 00:49:54 +2995 2995 2996 299.5 599 2995 1978-03-15 2024-10-11 00:49:55.000 1978-03-15 2024-10-11 00:49:55 +2996 2996 2997 299.6 599.2 2996 1978-03-16 2024-10-11 00:49:56.000 1978-03-16 2024-10-11 00:49:56 +2997 2997 2998 299.7 599.4 2997 1978-03-17 2024-10-11 00:49:57.000 1978-03-17 2024-10-11 00:49:57 +2998 2998 2999 299.8 599.6 2998 1978-03-18 2024-10-11 00:49:58.000 1978-03-18 2024-10-11 00:49:58 +2999 2999 3000 299.9 599.8000000000001 2999 1978-03-19 2024-10-11 00:49:59.000 1978-03-19 2024-10-11 00:49:59 +3000 3000 3001 300 600 3000 1978-03-20 2024-10-11 00:50:00.000 1978-03-20 2024-10-11 00:50:00 +3001 3001 3002 300.1 600.2 3001 1978-03-21 2024-10-11 00:50:01.000 1978-03-21 2024-10-11 00:50:01 +3002 3002 3003 300.2 600.4 3002 1978-03-22 2024-10-11 00:50:02.000 1978-03-22 2024-10-11 00:50:02 +3003 3003 3004 300.3 600.6 3003 1978-03-23 2024-10-11 00:50:03.000 1978-03-23 2024-10-11 00:50:03 +3004 3004 3005 300.4 600.8000000000001 3004 1978-03-24 2024-10-11 00:50:04.000 1978-03-24 2024-10-11 00:50:04 +3005 3005 3006 300.5 601 3005 1978-03-25 2024-10-11 00:50:05.000 1978-03-25 2024-10-11 00:50:05 +3006 3006 3007 300.6 601.2 3006 1978-03-26 2024-10-11 00:50:06.000 1978-03-26 2024-10-11 00:50:06 +3007 3007 3008 300.7 601.4 3007 1978-03-27 2024-10-11 00:50:07.000 1978-03-27 2024-10-11 00:50:07 +3008 3008 3009 300.8 601.6 3008 1978-03-28 2024-10-11 00:50:08.000 1978-03-28 2024-10-11 00:50:08 +3009 3009 3010 300.9 601.8000000000001 3009 1978-03-29 2024-10-11 00:50:09.000 1978-03-29 2024-10-11 00:50:09 +3010 3010 3011 301 602 3010 1978-03-30 2024-10-11 00:50:10.000 1978-03-30 2024-10-11 00:50:10 +3011 3011 3012 301.1 602.2 3011 1978-03-31 2024-10-11 00:50:11.000 1978-03-31 2024-10-11 00:50:11 +3012 3012 3013 301.2 602.4 3012 1978-04-01 2024-10-11 00:50:12.000 1978-04-01 2024-10-11 00:50:12 +3013 3013 3014 301.3 602.6 3013 1978-04-02 2024-10-11 00:50:13.000 1978-04-02 2024-10-11 00:50:13 +3014 3014 3015 301.4 602.8000000000001 3014 1978-04-03 2024-10-11 00:50:14.000 1978-04-03 2024-10-11 00:50:14 +3015 3015 3016 301.5 603 3015 1978-04-04 2024-10-11 00:50:15.000 1978-04-04 2024-10-11 00:50:15 +3016 3016 3017 301.6 603.2 3016 1978-04-05 2024-10-11 00:50:16.000 1978-04-05 2024-10-11 00:50:16 +3017 3017 3018 301.7 603.4 3017 1978-04-06 2024-10-11 00:50:17.000 1978-04-06 2024-10-11 00:50:17 +3018 3018 3019 301.8 603.6 3018 1978-04-07 2024-10-11 00:50:18.000 1978-04-07 2024-10-11 00:50:18 +3019 3019 3020 301.9 603.8000000000001 3019 1978-04-08 2024-10-11 00:50:19.000 1978-04-08 2024-10-11 00:50:19 +3020 3020 3021 302 604 3020 1978-04-09 2024-10-11 00:50:20.000 1978-04-09 2024-10-11 00:50:20 +3021 3021 3022 302.1 604.2 3021 1978-04-10 2024-10-11 00:50:21.000 1978-04-10 2024-10-11 00:50:21 +3022 3022 3023 302.2 604.4 3022 1978-04-11 2024-10-11 00:50:22.000 1978-04-11 2024-10-11 00:50:22 +3023 3023 3024 302.3 604.6 3023 1978-04-12 2024-10-11 00:50:23.000 1978-04-12 2024-10-11 00:50:23 +3024 3024 3025 302.4 604.8000000000001 3024 1978-04-13 2024-10-11 00:50:24.000 1978-04-13 2024-10-11 00:50:24 +3025 3025 3026 302.5 605 3025 1978-04-14 2024-10-11 00:50:25.000 1978-04-14 2024-10-11 00:50:25 +3026 3026 3027 302.6 605.2 3026 1978-04-15 2024-10-11 00:50:26.000 1978-04-15 2024-10-11 00:50:26 +3027 3027 3028 302.7 605.4 3027 1978-04-16 2024-10-11 00:50:27.000 1978-04-16 2024-10-11 00:50:27 +3028 3028 3029 302.8 605.6 3028 1978-04-17 2024-10-11 00:50:28.000 1978-04-17 2024-10-11 00:50:28 +3029 3029 3030 302.9 605.8000000000001 3029 1978-04-18 2024-10-11 00:50:29.000 1978-04-18 2024-10-11 00:50:29 +3030 3030 3031 303 606 3030 1978-04-19 2024-10-11 00:50:30.000 1978-04-19 2024-10-11 00:50:30 +3031 3031 3032 303.1 606.2 3031 1978-04-20 2024-10-11 00:50:31.000 1978-04-20 2024-10-11 00:50:31 +3032 3032 3033 303.2 606.4 3032 1978-04-21 2024-10-11 00:50:32.000 1978-04-21 2024-10-11 00:50:32 +3033 3033 3034 303.3 606.6 3033 1978-04-22 2024-10-11 00:50:33.000 1978-04-22 2024-10-11 00:50:33 +3034 3034 3035 303.4 606.8000000000001 3034 1978-04-23 2024-10-11 00:50:34.000 1978-04-23 2024-10-11 00:50:34 +3035 3035 3036 303.5 607 3035 1978-04-24 2024-10-11 00:50:35.000 1978-04-24 2024-10-11 00:50:35 +3036 3036 3037 303.6 607.2 3036 1978-04-25 2024-10-11 00:50:36.000 1978-04-25 2024-10-11 00:50:36 +3037 3037 3038 303.7 607.4 3037 1978-04-26 2024-10-11 00:50:37.000 1978-04-26 2024-10-11 00:50:37 +3038 3038 3039 303.8 607.6 3038 1978-04-27 2024-10-11 00:50:38.000 1978-04-27 2024-10-11 00:50:38 +3039 3039 3040 303.9 607.8000000000001 3039 1978-04-28 2024-10-11 00:50:39.000 1978-04-28 2024-10-11 00:50:39 +3040 3040 3041 304 608 3040 1978-04-29 2024-10-11 00:50:40.000 1978-04-29 2024-10-11 00:50:40 +3041 3041 3042 304.1 608.2 3041 1978-04-30 2024-10-11 00:50:41.000 1978-04-30 2024-10-11 00:50:41 +3042 3042 3043 304.2 608.4 3042 1978-05-01 2024-10-11 00:50:42.000 1978-05-01 2024-10-11 00:50:42 +3043 3043 3044 304.3 608.6 3043 1978-05-02 2024-10-11 00:50:43.000 1978-05-02 2024-10-11 00:50:43 +3044 3044 3045 304.4 608.8000000000001 3044 1978-05-03 2024-10-11 00:50:44.000 1978-05-03 2024-10-11 00:50:44 +3045 3045 3046 304.5 609 3045 1978-05-04 2024-10-11 00:50:45.000 1978-05-04 2024-10-11 00:50:45 +3046 3046 3047 304.6 609.2 3046 1978-05-05 2024-10-11 00:50:46.000 1978-05-05 2024-10-11 00:50:46 +3047 3047 3048 304.7 609.4 3047 1978-05-06 2024-10-11 00:50:47.000 1978-05-06 2024-10-11 00:50:47 +3048 3048 3049 304.8 609.6 3048 1978-05-07 2024-10-11 00:50:48.000 1978-05-07 2024-10-11 00:50:48 +3049 3049 3050 304.9 609.8000000000001 3049 1978-05-08 2024-10-11 00:50:49.000 1978-05-08 2024-10-11 00:50:49 +3050 3050 3051 305 610 3050 1978-05-09 2024-10-11 00:50:50.000 1978-05-09 2024-10-11 00:50:50 +3051 3051 3052 305.1 610.2 3051 1978-05-10 2024-10-11 00:50:51.000 1978-05-10 2024-10-11 00:50:51 +3052 3052 3053 305.2 610.4 3052 1978-05-11 2024-10-11 00:50:52.000 1978-05-11 2024-10-11 00:50:52 +3053 3053 3054 305.3 610.6 3053 1978-05-12 2024-10-11 00:50:53.000 1978-05-12 2024-10-11 00:50:53 +3054 3054 3055 305.4 610.8000000000001 3054 1978-05-13 2024-10-11 00:50:54.000 1978-05-13 2024-10-11 00:50:54 +3055 3055 3056 305.5 611 3055 1978-05-14 2024-10-11 00:50:55.000 1978-05-14 2024-10-11 00:50:55 +3056 3056 3057 305.6 611.2 3056 1978-05-15 2024-10-11 00:50:56.000 1978-05-15 2024-10-11 00:50:56 +3057 3057 3058 305.7 611.4 3057 1978-05-16 2024-10-11 00:50:57.000 1978-05-16 2024-10-11 00:50:57 +3058 3058 3059 305.8 611.6 3058 1978-05-17 2024-10-11 00:50:58.000 1978-05-17 2024-10-11 00:50:58 +3059 3059 3060 305.9 611.8000000000001 3059 1978-05-18 2024-10-11 00:50:59.000 1978-05-18 2024-10-11 00:50:59 +3060 3060 3061 306 612 3060 1978-05-19 2024-10-11 00:51:00.000 1978-05-19 2024-10-11 00:51:00 +3061 3061 3062 306.1 612.2 3061 1978-05-20 2024-10-11 00:51:01.000 1978-05-20 2024-10-11 00:51:01 +3062 3062 3063 306.2 612.4 3062 1978-05-21 2024-10-11 00:51:02.000 1978-05-21 2024-10-11 00:51:02 +3063 3063 3064 306.3 612.6 3063 1978-05-22 2024-10-11 00:51:03.000 1978-05-22 2024-10-11 00:51:03 +3064 3064 3065 306.4 612.8000000000001 3064 1978-05-23 2024-10-11 00:51:04.000 1978-05-23 2024-10-11 00:51:04 +3065 3065 3066 306.5 613 3065 1978-05-24 2024-10-11 00:51:05.000 1978-05-24 2024-10-11 00:51:05 +3066 3066 3067 306.6 613.2 3066 1978-05-25 2024-10-11 00:51:06.000 1978-05-25 2024-10-11 00:51:06 +3067 3067 3068 306.7 613.4 3067 1978-05-26 2024-10-11 00:51:07.000 1978-05-26 2024-10-11 00:51:07 +3068 3068 3069 306.8 613.6 3068 1978-05-27 2024-10-11 00:51:08.000 1978-05-27 2024-10-11 00:51:08 +3069 3069 3070 306.9 613.8000000000001 3069 1978-05-28 2024-10-11 00:51:09.000 1978-05-28 2024-10-11 00:51:09 +3070 3070 3071 307 614 3070 1978-05-29 2024-10-11 00:51:10.000 1978-05-29 2024-10-11 00:51:10 +3071 3071 3072 307.1 614.2 3071 1978-05-30 2024-10-11 00:51:11.000 1978-05-30 2024-10-11 00:51:11 +3072 3072 3073 307.2 614.4000000000001 3072 1978-05-31 2024-10-11 00:51:12.000 1978-05-31 2024-10-11 00:51:12 +3073 3073 3074 307.3 614.6 3073 1978-06-01 2024-10-11 00:51:13.000 1978-06-01 2024-10-11 00:51:13 +3074 3074 3075 307.4 614.8000000000001 3074 1978-06-02 2024-10-11 00:51:14.000 1978-06-02 2024-10-11 00:51:14 +3075 3075 3076 307.5 615 3075 1978-06-03 2024-10-11 00:51:15.000 1978-06-03 2024-10-11 00:51:15 +3076 3076 3077 307.6 615.2 3076 1978-06-04 2024-10-11 00:51:16.000 1978-06-04 2024-10-11 00:51:16 +3077 3077 3078 307.7 615.4000000000001 3077 1978-06-05 2024-10-11 00:51:17.000 1978-06-05 2024-10-11 00:51:17 +3078 3078 3079 307.8 615.6 3078 1978-06-06 2024-10-11 00:51:18.000 1978-06-06 2024-10-11 00:51:18 +3079 3079 3080 307.9 615.8000000000001 3079 1978-06-07 2024-10-11 00:51:19.000 1978-06-07 2024-10-11 00:51:19 +3080 3080 3081 308 616 3080 1978-06-08 2024-10-11 00:51:20.000 1978-06-08 2024-10-11 00:51:20 +3081 3081 3082 308.1 616.2 3081 1978-06-09 2024-10-11 00:51:21.000 1978-06-09 2024-10-11 00:51:21 +3082 3082 3083 308.2 616.4000000000001 3082 1978-06-10 2024-10-11 00:51:22.000 1978-06-10 2024-10-11 00:51:22 +3083 3083 3084 308.3 616.6 3083 1978-06-11 2024-10-11 00:51:23.000 1978-06-11 2024-10-11 00:51:23 +3084 3084 3085 308.4 616.8000000000001 3084 1978-06-12 2024-10-11 00:51:24.000 1978-06-12 2024-10-11 00:51:24 +3085 3085 3086 308.5 617 3085 1978-06-13 2024-10-11 00:51:25.000 1978-06-13 2024-10-11 00:51:25 +3086 3086 3087 308.6 617.2 3086 1978-06-14 2024-10-11 00:51:26.000 1978-06-14 2024-10-11 00:51:26 +3087 3087 3088 308.7 617.4000000000001 3087 1978-06-15 2024-10-11 00:51:27.000 1978-06-15 2024-10-11 00:51:27 +3088 3088 3089 308.8 617.6 3088 1978-06-16 2024-10-11 00:51:28.000 1978-06-16 2024-10-11 00:51:28 +3089 3089 3090 308.9 617.8000000000001 3089 1978-06-17 2024-10-11 00:51:29.000 1978-06-17 2024-10-11 00:51:29 +3090 3090 3091 309 618 3090 1978-06-18 2024-10-11 00:51:30.000 1978-06-18 2024-10-11 00:51:30 +3091 3091 3092 309.1 618.2 3091 1978-06-19 2024-10-11 00:51:31.000 1978-06-19 2024-10-11 00:51:31 +3092 3092 3093 309.2 618.4000000000001 3092 1978-06-20 2024-10-11 00:51:32.000 1978-06-20 2024-10-11 00:51:32 +3093 3093 3094 309.3 618.6 3093 1978-06-21 2024-10-11 00:51:33.000 1978-06-21 2024-10-11 00:51:33 +3094 3094 3095 309.4 618.8000000000001 3094 1978-06-22 2024-10-11 00:51:34.000 1978-06-22 2024-10-11 00:51:34 +3095 3095 3096 309.5 619 3095 1978-06-23 2024-10-11 00:51:35.000 1978-06-23 2024-10-11 00:51:35 +3096 3096 3097 309.6 619.2 3096 1978-06-24 2024-10-11 00:51:36.000 1978-06-24 2024-10-11 00:51:36 +3097 3097 3098 309.7 619.4000000000001 3097 1978-06-25 2024-10-11 00:51:37.000 1978-06-25 2024-10-11 00:51:37 +3098 3098 3099 309.8 619.6 3098 1978-06-26 2024-10-11 00:51:38.000 1978-06-26 2024-10-11 00:51:38 +3099 3099 3100 309.9 619.8000000000001 3099 1978-06-27 2024-10-11 00:51:39.000 1978-06-27 2024-10-11 00:51:39 +3100 3100 3101 310 620 3100 1978-06-28 2024-10-11 00:51:40.000 1978-06-28 2024-10-11 00:51:40 +3101 3101 3102 310.1 620.2 3101 1978-06-29 2024-10-11 00:51:41.000 1978-06-29 2024-10-11 00:51:41 +3102 3102 3103 310.2 620.4000000000001 3102 1978-06-30 2024-10-11 00:51:42.000 1978-06-30 2024-10-11 00:51:42 +3103 3103 3104 310.3 620.6 3103 1978-07-01 2024-10-11 00:51:43.000 1978-07-01 2024-10-11 00:51:43 +3104 3104 3105 310.4 620.8000000000001 3104 1978-07-02 2024-10-11 00:51:44.000 1978-07-02 2024-10-11 00:51:44 +3105 3105 3106 310.5 621 3105 1978-07-03 2024-10-11 00:51:45.000 1978-07-03 2024-10-11 00:51:45 +3106 3106 3107 310.6 621.2 3106 1978-07-04 2024-10-11 00:51:46.000 1978-07-04 2024-10-11 00:51:46 +3107 3107 3108 310.7 621.4000000000001 3107 1978-07-05 2024-10-11 00:51:47.000 1978-07-05 2024-10-11 00:51:47 +3108 3108 3109 310.8 621.6 3108 1978-07-06 2024-10-11 00:51:48.000 1978-07-06 2024-10-11 00:51:48 +3109 3109 3110 310.9 621.8000000000001 3109 1978-07-07 2024-10-11 00:51:49.000 1978-07-07 2024-10-11 00:51:49 +3110 3110 3111 311 622 3110 1978-07-08 2024-10-11 00:51:50.000 1978-07-08 2024-10-11 00:51:50 +3111 3111 3112 311.1 622.2 3111 1978-07-09 2024-10-11 00:51:51.000 1978-07-09 2024-10-11 00:51:51 +3112 3112 3113 311.2 622.4000000000001 3112 1978-07-10 2024-10-11 00:51:52.000 1978-07-10 2024-10-11 00:51:52 +3113 3113 3114 311.3 622.6 3113 1978-07-11 2024-10-11 00:51:53.000 1978-07-11 2024-10-11 00:51:53 +3114 3114 3115 311.4 622.8000000000001 3114 1978-07-12 2024-10-11 00:51:54.000 1978-07-12 2024-10-11 00:51:54 +3115 3115 3116 311.5 623 3115 1978-07-13 2024-10-11 00:51:55.000 1978-07-13 2024-10-11 00:51:55 +3116 3116 3117 311.6 623.2 3116 1978-07-14 2024-10-11 00:51:56.000 1978-07-14 2024-10-11 00:51:56 +3117 3117 3118 311.7 623.4000000000001 3117 1978-07-15 2024-10-11 00:51:57.000 1978-07-15 2024-10-11 00:51:57 +3118 3118 3119 311.8 623.6 3118 1978-07-16 2024-10-11 00:51:58.000 1978-07-16 2024-10-11 00:51:58 +3119 3119 3120 311.9 623.8000000000001 3119 1978-07-17 2024-10-11 00:51:59.000 1978-07-17 2024-10-11 00:51:59 +3120 3120 3121 312 624 3120 1978-07-18 2024-10-11 00:52:00.000 1978-07-18 2024-10-11 00:52:00 +3121 3121 3122 312.1 624.2 3121 1978-07-19 2024-10-11 00:52:01.000 1978-07-19 2024-10-11 00:52:01 +3122 3122 3123 312.2 624.4000000000001 3122 1978-07-20 2024-10-11 00:52:02.000 1978-07-20 2024-10-11 00:52:02 +3123 3123 3124 312.3 624.6 3123 1978-07-21 2024-10-11 00:52:03.000 1978-07-21 2024-10-11 00:52:03 +3124 3124 3125 312.4 624.8000000000001 3124 1978-07-22 2024-10-11 00:52:04.000 1978-07-22 2024-10-11 00:52:04 +3125 3125 3126 312.5 625 3125 1978-07-23 2024-10-11 00:52:05.000 1978-07-23 2024-10-11 00:52:05 +3126 3126 3127 312.6 625.2 3126 1978-07-24 2024-10-11 00:52:06.000 1978-07-24 2024-10-11 00:52:06 +3127 3127 3128 312.7 625.4000000000001 3127 1978-07-25 2024-10-11 00:52:07.000 1978-07-25 2024-10-11 00:52:07 +3128 3128 3129 312.8 625.6 3128 1978-07-26 2024-10-11 00:52:08.000 1978-07-26 2024-10-11 00:52:08 +3129 3129 3130 312.9 625.8000000000001 3129 1978-07-27 2024-10-11 00:52:09.000 1978-07-27 2024-10-11 00:52:09 +3130 3130 3131 313 626 3130 1978-07-28 2024-10-11 00:52:10.000 1978-07-28 2024-10-11 00:52:10 +3131 3131 3132 313.1 626.2 3131 1978-07-29 2024-10-11 00:52:11.000 1978-07-29 2024-10-11 00:52:11 +3132 3132 3133 313.2 626.4000000000001 3132 1978-07-30 2024-10-11 00:52:12.000 1978-07-30 2024-10-11 00:52:12 +3133 3133 3134 313.3 626.6 3133 1978-07-31 2024-10-11 00:52:13.000 1978-07-31 2024-10-11 00:52:13 +3134 3134 3135 313.4 626.8000000000001 3134 1978-08-01 2024-10-11 00:52:14.000 1978-08-01 2024-10-11 00:52:14 +3135 3135 3136 313.5 627 3135 1978-08-02 2024-10-11 00:52:15.000 1978-08-02 2024-10-11 00:52:15 +3136 3136 3137 313.6 627.2 3136 1978-08-03 2024-10-11 00:52:16.000 1978-08-03 2024-10-11 00:52:16 +3137 3137 3138 313.7 627.4000000000001 3137 1978-08-04 2024-10-11 00:52:17.000 1978-08-04 2024-10-11 00:52:17 +3138 3138 3139 313.8 627.6 3138 1978-08-05 2024-10-11 00:52:18.000 1978-08-05 2024-10-11 00:52:18 +3139 3139 3140 313.9 627.8000000000001 3139 1978-08-06 2024-10-11 00:52:19.000 1978-08-06 2024-10-11 00:52:19 +3140 3140 3141 314 628 3140 1978-08-07 2024-10-11 00:52:20.000 1978-08-07 2024-10-11 00:52:20 +3141 3141 3142 314.1 628.2 3141 1978-08-08 2024-10-11 00:52:21.000 1978-08-08 2024-10-11 00:52:21 +3142 3142 3143 314.2 628.4000000000001 3142 1978-08-09 2024-10-11 00:52:22.000 1978-08-09 2024-10-11 00:52:22 +3143 3143 3144 314.3 628.6 3143 1978-08-10 2024-10-11 00:52:23.000 1978-08-10 2024-10-11 00:52:23 +3144 3144 3145 314.4 628.8000000000001 3144 1978-08-11 2024-10-11 00:52:24.000 1978-08-11 2024-10-11 00:52:24 +3145 3145 3146 314.5 629 3145 1978-08-12 2024-10-11 00:52:25.000 1978-08-12 2024-10-11 00:52:25 +3146 3146 3147 314.6 629.2 3146 1978-08-13 2024-10-11 00:52:26.000 1978-08-13 2024-10-11 00:52:26 +3147 3147 3148 314.7 629.4000000000001 3147 1978-08-14 2024-10-11 00:52:27.000 1978-08-14 2024-10-11 00:52:27 +3148 3148 3149 314.8 629.6 3148 1978-08-15 2024-10-11 00:52:28.000 1978-08-15 2024-10-11 00:52:28 +3149 3149 3150 314.9 629.8000000000001 3149 1978-08-16 2024-10-11 00:52:29.000 1978-08-16 2024-10-11 00:52:29 +3150 3150 3151 315 630 3150 1978-08-17 2024-10-11 00:52:30.000 1978-08-17 2024-10-11 00:52:30 +3151 3151 3152 315.1 630.2 3151 1978-08-18 2024-10-11 00:52:31.000 1978-08-18 2024-10-11 00:52:31 +3152 3152 3153 315.2 630.4000000000001 3152 1978-08-19 2024-10-11 00:52:32.000 1978-08-19 2024-10-11 00:52:32 +3153 3153 3154 315.3 630.6 3153 1978-08-20 2024-10-11 00:52:33.000 1978-08-20 2024-10-11 00:52:33 +3154 3154 3155 315.4 630.8000000000001 3154 1978-08-21 2024-10-11 00:52:34.000 1978-08-21 2024-10-11 00:52:34 +3155 3155 3156 315.5 631 3155 1978-08-22 2024-10-11 00:52:35.000 1978-08-22 2024-10-11 00:52:35 +3156 3156 3157 315.6 631.2 3156 1978-08-23 2024-10-11 00:52:36.000 1978-08-23 2024-10-11 00:52:36 +3157 3157 3158 315.7 631.4000000000001 3157 1978-08-24 2024-10-11 00:52:37.000 1978-08-24 2024-10-11 00:52:37 +3158 3158 3159 315.8 631.6 3158 1978-08-25 2024-10-11 00:52:38.000 1978-08-25 2024-10-11 00:52:38 +3159 3159 3160 315.9 631.8000000000001 3159 1978-08-26 2024-10-11 00:52:39.000 1978-08-26 2024-10-11 00:52:39 +3160 3160 3161 316 632 3160 1978-08-27 2024-10-11 00:52:40.000 1978-08-27 2024-10-11 00:52:40 +3161 3161 3162 316.1 632.2 3161 1978-08-28 2024-10-11 00:52:41.000 1978-08-28 2024-10-11 00:52:41 +3162 3162 3163 316.2 632.4000000000001 3162 1978-08-29 2024-10-11 00:52:42.000 1978-08-29 2024-10-11 00:52:42 +3163 3163 3164 316.3 632.6 3163 1978-08-30 2024-10-11 00:52:43.000 1978-08-30 2024-10-11 00:52:43 +3164 3164 3165 316.4 632.8000000000001 3164 1978-08-31 2024-10-11 00:52:44.000 1978-08-31 2024-10-11 00:52:44 +3165 3165 3166 316.5 633 3165 1978-09-01 2024-10-11 00:52:45.000 1978-09-01 2024-10-11 00:52:45 +3166 3166 3167 316.6 633.2 3166 1978-09-02 2024-10-11 00:52:46.000 1978-09-02 2024-10-11 00:52:46 +3167 3167 3168 316.7 633.4000000000001 3167 1978-09-03 2024-10-11 00:52:47.000 1978-09-03 2024-10-11 00:52:47 +3168 3168 3169 316.8 633.6 3168 1978-09-04 2024-10-11 00:52:48.000 1978-09-04 2024-10-11 00:52:48 +3169 3169 3170 316.9 633.8000000000001 3169 1978-09-05 2024-10-11 00:52:49.000 1978-09-05 2024-10-11 00:52:49 +3170 3170 3171 317 634 3170 1978-09-06 2024-10-11 00:52:50.000 1978-09-06 2024-10-11 00:52:50 +3171 3171 3172 317.1 634.2 3171 1978-09-07 2024-10-11 00:52:51.000 1978-09-07 2024-10-11 00:52:51 +3172 3172 3173 317.2 634.4000000000001 3172 1978-09-08 2024-10-11 00:52:52.000 1978-09-08 2024-10-11 00:52:52 +3173 3173 3174 317.3 634.6 3173 1978-09-09 2024-10-11 00:52:53.000 1978-09-09 2024-10-11 00:52:53 +3174 3174 3175 317.4 634.8000000000001 3174 1978-09-10 2024-10-11 00:52:54.000 1978-09-10 2024-10-11 00:52:54 +3175 3175 3176 317.5 635 3175 1978-09-11 2024-10-11 00:52:55.000 1978-09-11 2024-10-11 00:52:55 +3176 3176 3177 317.6 635.2 3176 1978-09-12 2024-10-11 00:52:56.000 1978-09-12 2024-10-11 00:52:56 +3177 3177 3178 317.7 635.4000000000001 3177 1978-09-13 2024-10-11 00:52:57.000 1978-09-13 2024-10-11 00:52:57 +3178 3178 3179 317.8 635.6 3178 1978-09-14 2024-10-11 00:52:58.000 1978-09-14 2024-10-11 00:52:58 +3179 3179 3180 317.9 635.8000000000001 3179 1978-09-15 2024-10-11 00:52:59.000 1978-09-15 2024-10-11 00:52:59 +3180 3180 3181 318 636 3180 1978-09-16 2024-10-11 00:53:00.000 1978-09-16 2024-10-11 00:53:00 +3181 3181 3182 318.1 636.2 3181 1978-09-17 2024-10-11 00:53:01.000 1978-09-17 2024-10-11 00:53:01 +3182 3182 3183 318.2 636.4000000000001 3182 1978-09-18 2024-10-11 00:53:02.000 1978-09-18 2024-10-11 00:53:02 +3183 3183 3184 318.3 636.6 3183 1978-09-19 2024-10-11 00:53:03.000 1978-09-19 2024-10-11 00:53:03 +3184 3184 3185 318.4 636.8000000000001 3184 1978-09-20 2024-10-11 00:53:04.000 1978-09-20 2024-10-11 00:53:04 +3185 3185 3186 318.5 637 3185 1978-09-21 2024-10-11 00:53:05.000 1978-09-21 2024-10-11 00:53:05 +3186 3186 3187 318.6 637.2 3186 1978-09-22 2024-10-11 00:53:06.000 1978-09-22 2024-10-11 00:53:06 +3187 3187 3188 318.7 637.4000000000001 3187 1978-09-23 2024-10-11 00:53:07.000 1978-09-23 2024-10-11 00:53:07 +3188 3188 3189 318.8 637.6 3188 1978-09-24 2024-10-11 00:53:08.000 1978-09-24 2024-10-11 00:53:08 +3189 3189 3190 318.9 637.8000000000001 3189 1978-09-25 2024-10-11 00:53:09.000 1978-09-25 2024-10-11 00:53:09 +3190 3190 3191 319 638 3190 1978-09-26 2024-10-11 00:53:10.000 1978-09-26 2024-10-11 00:53:10 +3191 3191 3192 319.1 638.2 3191 1978-09-27 2024-10-11 00:53:11.000 1978-09-27 2024-10-11 00:53:11 +3192 3192 3193 319.2 638.4000000000001 3192 1978-09-28 2024-10-11 00:53:12.000 1978-09-28 2024-10-11 00:53:12 +3193 3193 3194 319.3 638.6 3193 1978-09-29 2024-10-11 00:53:13.000 1978-09-29 2024-10-11 00:53:13 +3194 3194 3195 319.4 638.8000000000001 3194 1978-09-30 2024-10-11 00:53:14.000 1978-09-30 2024-10-11 00:53:14 +3195 3195 3196 319.5 639 3195 1978-10-01 2024-10-11 00:53:15.000 1978-10-01 2024-10-11 00:53:15 +3196 3196 3197 319.6 639.2 3196 1978-10-02 2024-10-11 00:53:16.000 1978-10-02 2024-10-11 00:53:16 +3197 3197 3198 319.7 639.4000000000001 3197 1978-10-03 2024-10-11 00:53:17.000 1978-10-03 2024-10-11 00:53:17 +3198 3198 3199 319.8 639.6 3198 1978-10-04 2024-10-11 00:53:18.000 1978-10-04 2024-10-11 00:53:18 +3199 3199 3200 319.9 639.8000000000001 3199 1978-10-05 2024-10-11 00:53:19.000 1978-10-05 2024-10-11 00:53:19 +3200 3200 3201 320 640 3200 1978-10-06 2024-10-11 00:53:20.000 1978-10-06 2024-10-11 00:53:20 +3201 3201 3202 320.1 640.2 3201 1978-10-07 2024-10-11 00:53:21.000 1978-10-07 2024-10-11 00:53:21 +3202 3202 3203 320.2 640.4000000000001 3202 1978-10-08 2024-10-11 00:53:22.000 1978-10-08 2024-10-11 00:53:22 +3203 3203 3204 320.3 640.6 3203 1978-10-09 2024-10-11 00:53:23.000 1978-10-09 2024-10-11 00:53:23 +3204 3204 3205 320.4 640.8000000000001 3204 1978-10-10 2024-10-11 00:53:24.000 1978-10-10 2024-10-11 00:53:24 +3205 3205 3206 320.5 641 3205 1978-10-11 2024-10-11 00:53:25.000 1978-10-11 2024-10-11 00:53:25 +3206 3206 3207 320.6 641.2 3206 1978-10-12 2024-10-11 00:53:26.000 1978-10-12 2024-10-11 00:53:26 +3207 3207 3208 320.7 641.4000000000001 3207 1978-10-13 2024-10-11 00:53:27.000 1978-10-13 2024-10-11 00:53:27 +3208 3208 3209 320.8 641.6 3208 1978-10-14 2024-10-11 00:53:28.000 1978-10-14 2024-10-11 00:53:28 +3209 3209 3210 320.9 641.8000000000001 3209 1978-10-15 2024-10-11 00:53:29.000 1978-10-15 2024-10-11 00:53:29 +3210 3210 3211 321 642 3210 1978-10-16 2024-10-11 00:53:30.000 1978-10-16 2024-10-11 00:53:30 +3211 3211 3212 321.1 642.2 3211 1978-10-17 2024-10-11 00:53:31.000 1978-10-17 2024-10-11 00:53:31 +3212 3212 3213 321.2 642.4000000000001 3212 1978-10-18 2024-10-11 00:53:32.000 1978-10-18 2024-10-11 00:53:32 +3213 3213 3214 321.3 642.6 3213 1978-10-19 2024-10-11 00:53:33.000 1978-10-19 2024-10-11 00:53:33 +3214 3214 3215 321.4 642.8000000000001 3214 1978-10-20 2024-10-11 00:53:34.000 1978-10-20 2024-10-11 00:53:34 +3215 3215 3216 321.5 643 3215 1978-10-21 2024-10-11 00:53:35.000 1978-10-21 2024-10-11 00:53:35 +3216 3216 3217 321.6 643.2 3216 1978-10-22 2024-10-11 00:53:36.000 1978-10-22 2024-10-11 00:53:36 +3217 3217 3218 321.7 643.4000000000001 3217 1978-10-23 2024-10-11 00:53:37.000 1978-10-23 2024-10-11 00:53:37 +3218 3218 3219 321.8 643.6 3218 1978-10-24 2024-10-11 00:53:38.000 1978-10-24 2024-10-11 00:53:38 +3219 3219 3220 321.9 643.8000000000001 3219 1978-10-25 2024-10-11 00:53:39.000 1978-10-25 2024-10-11 00:53:39 +3220 3220 3221 322 644 3220 1978-10-26 2024-10-11 00:53:40.000 1978-10-26 2024-10-11 00:53:40 +3221 3221 3222 322.1 644.2 3221 1978-10-27 2024-10-11 00:53:41.000 1978-10-27 2024-10-11 00:53:41 +3222 3222 3223 322.2 644.4000000000001 3222 1978-10-28 2024-10-11 00:53:42.000 1978-10-28 2024-10-11 00:53:42 +3223 3223 3224 322.3 644.6 3223 1978-10-29 2024-10-11 00:53:43.000 1978-10-29 2024-10-11 00:53:43 +3224 3224 3225 322.4 644.8000000000001 3224 1978-10-30 2024-10-11 00:53:44.000 1978-10-30 2024-10-11 00:53:44 +3225 3225 3226 322.5 645 3225 1978-10-31 2024-10-11 00:53:45.000 1978-10-31 2024-10-11 00:53:45 +3226 3226 3227 322.6 645.2 3226 1978-11-01 2024-10-11 00:53:46.000 1978-11-01 2024-10-11 00:53:46 +3227 3227 3228 322.7 645.4000000000001 3227 1978-11-02 2024-10-11 00:53:47.000 1978-11-02 2024-10-11 00:53:47 +3228 3228 3229 322.8 645.6 3228 1978-11-03 2024-10-11 00:53:48.000 1978-11-03 2024-10-11 00:53:48 +3229 3229 3230 322.9 645.8000000000001 3229 1978-11-04 2024-10-11 00:53:49.000 1978-11-04 2024-10-11 00:53:49 +3230 3230 3231 323 646 3230 1978-11-05 2024-10-11 00:53:50.000 1978-11-05 2024-10-11 00:53:50 +3231 3231 3232 323.1 646.2 3231 1978-11-06 2024-10-11 00:53:51.000 1978-11-06 2024-10-11 00:53:51 +3232 3232 3233 323.2 646.4000000000001 3232 1978-11-07 2024-10-11 00:53:52.000 1978-11-07 2024-10-11 00:53:52 +3233 3233 3234 323.3 646.6 3233 1978-11-08 2024-10-11 00:53:53.000 1978-11-08 2024-10-11 00:53:53 +3234 3234 3235 323.4 646.8000000000001 3234 1978-11-09 2024-10-11 00:53:54.000 1978-11-09 2024-10-11 00:53:54 +3235 3235 3236 323.5 647 3235 1978-11-10 2024-10-11 00:53:55.000 1978-11-10 2024-10-11 00:53:55 +3236 3236 3237 323.6 647.2 3236 1978-11-11 2024-10-11 00:53:56.000 1978-11-11 2024-10-11 00:53:56 +3237 3237 3238 323.7 647.4000000000001 3237 1978-11-12 2024-10-11 00:53:57.000 1978-11-12 2024-10-11 00:53:57 +3238 3238 3239 323.8 647.6 3238 1978-11-13 2024-10-11 00:53:58.000 1978-11-13 2024-10-11 00:53:58 +3239 3239 3240 323.9 647.8000000000001 3239 1978-11-14 2024-10-11 00:53:59.000 1978-11-14 2024-10-11 00:53:59 +3240 3240 3241 324 648 3240 1978-11-15 2024-10-11 00:54:00.000 1978-11-15 2024-10-11 00:54:00 +3241 3241 3242 324.1 648.2 3241 1978-11-16 2024-10-11 00:54:01.000 1978-11-16 2024-10-11 00:54:01 +3242 3242 3243 324.2 648.4000000000001 3242 1978-11-17 2024-10-11 00:54:02.000 1978-11-17 2024-10-11 00:54:02 +3243 3243 3244 324.3 648.6 3243 1978-11-18 2024-10-11 00:54:03.000 1978-11-18 2024-10-11 00:54:03 +3244 3244 3245 324.4 648.8000000000001 3244 1978-11-19 2024-10-11 00:54:04.000 1978-11-19 2024-10-11 00:54:04 +3245 3245 3246 324.5 649 3245 1978-11-20 2024-10-11 00:54:05.000 1978-11-20 2024-10-11 00:54:05 +3246 3246 3247 324.6 649.2 3246 1978-11-21 2024-10-11 00:54:06.000 1978-11-21 2024-10-11 00:54:06 +3247 3247 3248 324.7 649.4000000000001 3247 1978-11-22 2024-10-11 00:54:07.000 1978-11-22 2024-10-11 00:54:07 +3248 3248 3249 324.8 649.6 3248 1978-11-23 2024-10-11 00:54:08.000 1978-11-23 2024-10-11 00:54:08 +3249 3249 3250 324.9 649.8000000000001 3249 1978-11-24 2024-10-11 00:54:09.000 1978-11-24 2024-10-11 00:54:09 +3250 3250 3251 325 650 3250 1978-11-25 2024-10-11 00:54:10.000 1978-11-25 2024-10-11 00:54:10 +3251 3251 3252 325.1 650.2 3251 1978-11-26 2024-10-11 00:54:11.000 1978-11-26 2024-10-11 00:54:11 +3252 3252 3253 325.2 650.4000000000001 3252 1978-11-27 2024-10-11 00:54:12.000 1978-11-27 2024-10-11 00:54:12 +3253 3253 3254 325.3 650.6 3253 1978-11-28 2024-10-11 00:54:13.000 1978-11-28 2024-10-11 00:54:13 +3254 3254 3255 325.4 650.8000000000001 3254 1978-11-29 2024-10-11 00:54:14.000 1978-11-29 2024-10-11 00:54:14 +3255 3255 3256 325.5 651 3255 1978-11-30 2024-10-11 00:54:15.000 1978-11-30 2024-10-11 00:54:15 +3256 3256 3257 325.6 651.2 3256 1978-12-01 2024-10-11 00:54:16.000 1978-12-01 2024-10-11 00:54:16 +3257 3257 3258 325.7 651.4000000000001 3257 1978-12-02 2024-10-11 00:54:17.000 1978-12-02 2024-10-11 00:54:17 +3258 3258 3259 325.8 651.6 3258 1978-12-03 2024-10-11 00:54:18.000 1978-12-03 2024-10-11 00:54:18 +3259 3259 3260 325.9 651.8000000000001 3259 1978-12-04 2024-10-11 00:54:19.000 1978-12-04 2024-10-11 00:54:19 +3260 3260 3261 326 652 3260 1978-12-05 2024-10-11 00:54:20.000 1978-12-05 2024-10-11 00:54:20 +3261 3261 3262 326.1 652.2 3261 1978-12-06 2024-10-11 00:54:21.000 1978-12-06 2024-10-11 00:54:21 +3262 3262 3263 326.2 652.4000000000001 3262 1978-12-07 2024-10-11 00:54:22.000 1978-12-07 2024-10-11 00:54:22 +3263 3263 3264 326.3 652.6 3263 1978-12-08 2024-10-11 00:54:23.000 1978-12-08 2024-10-11 00:54:23 +3264 3264 3265 326.4 652.8000000000001 3264 1978-12-09 2024-10-11 00:54:24.000 1978-12-09 2024-10-11 00:54:24 +3265 3265 3266 326.5 653 3265 1978-12-10 2024-10-11 00:54:25.000 1978-12-10 2024-10-11 00:54:25 +3266 3266 3267 326.6 653.2 3266 1978-12-11 2024-10-11 00:54:26.000 1978-12-11 2024-10-11 00:54:26 +3267 3267 3268 326.7 653.4000000000001 3267 1978-12-12 2024-10-11 00:54:27.000 1978-12-12 2024-10-11 00:54:27 +3268 3268 3269 326.8 653.6 3268 1978-12-13 2024-10-11 00:54:28.000 1978-12-13 2024-10-11 00:54:28 +3269 3269 3270 326.9 653.8000000000001 3269 1978-12-14 2024-10-11 00:54:29.000 1978-12-14 2024-10-11 00:54:29 +3270 3270 3271 327 654 3270 1978-12-15 2024-10-11 00:54:30.000 1978-12-15 2024-10-11 00:54:30 +3271 3271 3272 327.1 654.2 3271 1978-12-16 2024-10-11 00:54:31.000 1978-12-16 2024-10-11 00:54:31 +3272 3272 3273 327.2 654.4000000000001 3272 1978-12-17 2024-10-11 00:54:32.000 1978-12-17 2024-10-11 00:54:32 +3273 3273 3274 327.3 654.6 3273 1978-12-18 2024-10-11 00:54:33.000 1978-12-18 2024-10-11 00:54:33 +3274 3274 3275 327.4 654.8000000000001 3274 1978-12-19 2024-10-11 00:54:34.000 1978-12-19 2024-10-11 00:54:34 +3275 3275 3276 327.5 655 3275 1978-12-20 2024-10-11 00:54:35.000 1978-12-20 2024-10-11 00:54:35 +3276 3276 3277 327.6 655.2 3276 1978-12-21 2024-10-11 00:54:36.000 1978-12-21 2024-10-11 00:54:36 +3277 3277 3278 327.7 655.4000000000001 3277 1978-12-22 2024-10-11 00:54:37.000 1978-12-22 2024-10-11 00:54:37 +3278 3278 3279 327.8 655.6 3278 1978-12-23 2024-10-11 00:54:38.000 1978-12-23 2024-10-11 00:54:38 +3279 3279 3280 327.9 655.8000000000001 3279 1978-12-24 2024-10-11 00:54:39.000 1978-12-24 2024-10-11 00:54:39 +3280 3280 3281 328 656 3280 1978-12-25 2024-10-11 00:54:40.000 1978-12-25 2024-10-11 00:54:40 +3281 3281 3282 328.1 656.2 3281 1978-12-26 2024-10-11 00:54:41.000 1978-12-26 2024-10-11 00:54:41 +3282 3282 3283 328.2 656.4000000000001 3282 1978-12-27 2024-10-11 00:54:42.000 1978-12-27 2024-10-11 00:54:42 +3283 3283 3284 328.3 656.6 3283 1978-12-28 2024-10-11 00:54:43.000 1978-12-28 2024-10-11 00:54:43 +3284 3284 3285 328.4 656.8000000000001 3284 1978-12-29 2024-10-11 00:54:44.000 1978-12-29 2024-10-11 00:54:44 +3285 3285 3286 328.5 657 3285 1978-12-30 2024-10-11 00:54:45.000 1978-12-30 2024-10-11 00:54:45 +3286 3286 3287 328.6 657.2 3286 1978-12-31 2024-10-11 00:54:46.000 1978-12-31 2024-10-11 00:54:46 +3287 3287 3288 328.7 657.4000000000001 3287 1979-01-01 2024-10-11 00:54:47.000 1979-01-01 2024-10-11 00:54:47 +3288 3288 3289 328.8 657.6 3288 1979-01-02 2024-10-11 00:54:48.000 1979-01-02 2024-10-11 00:54:48 +3289 3289 3290 328.9 657.8000000000001 3289 1979-01-03 2024-10-11 00:54:49.000 1979-01-03 2024-10-11 00:54:49 +3290 3290 3291 329 658 3290 1979-01-04 2024-10-11 00:54:50.000 1979-01-04 2024-10-11 00:54:50 +3291 3291 3292 329.1 658.2 3291 1979-01-05 2024-10-11 00:54:51.000 1979-01-05 2024-10-11 00:54:51 +3292 3292 3293 329.2 658.4000000000001 3292 1979-01-06 2024-10-11 00:54:52.000 1979-01-06 2024-10-11 00:54:52 +3293 3293 3294 329.3 658.6 3293 1979-01-07 2024-10-11 00:54:53.000 1979-01-07 2024-10-11 00:54:53 +3294 3294 3295 329.4 658.8000000000001 3294 1979-01-08 2024-10-11 00:54:54.000 1979-01-08 2024-10-11 00:54:54 +3295 3295 3296 329.5 659 3295 1979-01-09 2024-10-11 00:54:55.000 1979-01-09 2024-10-11 00:54:55 +3296 3296 3297 329.6 659.2 3296 1979-01-10 2024-10-11 00:54:56.000 1979-01-10 2024-10-11 00:54:56 +3297 3297 3298 329.7 659.4000000000001 3297 1979-01-11 2024-10-11 00:54:57.000 1979-01-11 2024-10-11 00:54:57 +3298 3298 3299 329.8 659.6 3298 1979-01-12 2024-10-11 00:54:58.000 1979-01-12 2024-10-11 00:54:58 +3299 3299 3300 329.9 659.8000000000001 3299 1979-01-13 2024-10-11 00:54:59.000 1979-01-13 2024-10-11 00:54:59 +3300 3300 3301 330 660 3300 1979-01-14 2024-10-11 00:55:00.000 1979-01-14 2024-10-11 00:55:00 +3301 3301 3302 330.1 660.2 3301 1979-01-15 2024-10-11 00:55:01.000 1979-01-15 2024-10-11 00:55:01 +3302 3302 3303 330.2 660.4000000000001 3302 1979-01-16 2024-10-11 00:55:02.000 1979-01-16 2024-10-11 00:55:02 +3303 3303 3304 330.3 660.6 3303 1979-01-17 2024-10-11 00:55:03.000 1979-01-17 2024-10-11 00:55:03 +3304 3304 3305 330.4 660.8000000000001 3304 1979-01-18 2024-10-11 00:55:04.000 1979-01-18 2024-10-11 00:55:04 +3305 3305 3306 330.5 661 3305 1979-01-19 2024-10-11 00:55:05.000 1979-01-19 2024-10-11 00:55:05 +3306 3306 3307 330.6 661.2 3306 1979-01-20 2024-10-11 00:55:06.000 1979-01-20 2024-10-11 00:55:06 +3307 3307 3308 330.7 661.4000000000001 3307 1979-01-21 2024-10-11 00:55:07.000 1979-01-21 2024-10-11 00:55:07 +3308 3308 3309 330.8 661.6 3308 1979-01-22 2024-10-11 00:55:08.000 1979-01-22 2024-10-11 00:55:08 +3309 3309 3310 330.9 661.8000000000001 3309 1979-01-23 2024-10-11 00:55:09.000 1979-01-23 2024-10-11 00:55:09 +3310 3310 3311 331 662 3310 1979-01-24 2024-10-11 00:55:10.000 1979-01-24 2024-10-11 00:55:10 +3311 3311 3312 331.1 662.2 3311 1979-01-25 2024-10-11 00:55:11.000 1979-01-25 2024-10-11 00:55:11 +3312 3312 3313 331.2 662.4000000000001 3312 1979-01-26 2024-10-11 00:55:12.000 1979-01-26 2024-10-11 00:55:12 +3313 3313 3314 331.3 662.6 3313 1979-01-27 2024-10-11 00:55:13.000 1979-01-27 2024-10-11 00:55:13 +3314 3314 3315 331.4 662.8000000000001 3314 1979-01-28 2024-10-11 00:55:14.000 1979-01-28 2024-10-11 00:55:14 +3315 3315 3316 331.5 663 3315 1979-01-29 2024-10-11 00:55:15.000 1979-01-29 2024-10-11 00:55:15 +3316 3316 3317 331.6 663.2 3316 1979-01-30 2024-10-11 00:55:16.000 1979-01-30 2024-10-11 00:55:16 +3317 3317 3318 331.7 663.4000000000001 3317 1979-01-31 2024-10-11 00:55:17.000 1979-01-31 2024-10-11 00:55:17 +3318 3318 3319 331.8 663.6 3318 1979-02-01 2024-10-11 00:55:18.000 1979-02-01 2024-10-11 00:55:18 +3319 3319 3320 331.9 663.8000000000001 3319 1979-02-02 2024-10-11 00:55:19.000 1979-02-02 2024-10-11 00:55:19 +3320 3320 3321 332 664 3320 1979-02-03 2024-10-11 00:55:20.000 1979-02-03 2024-10-11 00:55:20 +3321 3321 3322 332.1 664.2 3321 1979-02-04 2024-10-11 00:55:21.000 1979-02-04 2024-10-11 00:55:21 +3322 3322 3323 332.2 664.4000000000001 3322 1979-02-05 2024-10-11 00:55:22.000 1979-02-05 2024-10-11 00:55:22 +3323 3323 3324 332.3 664.6 3323 1979-02-06 2024-10-11 00:55:23.000 1979-02-06 2024-10-11 00:55:23 +3324 3324 3325 332.4 664.8000000000001 3324 1979-02-07 2024-10-11 00:55:24.000 1979-02-07 2024-10-11 00:55:24 +3325 3325 3326 332.5 665 3325 1979-02-08 2024-10-11 00:55:25.000 1979-02-08 2024-10-11 00:55:25 +3326 3326 3327 332.6 665.2 3326 1979-02-09 2024-10-11 00:55:26.000 1979-02-09 2024-10-11 00:55:26 +3327 3327 3328 332.7 665.4000000000001 3327 1979-02-10 2024-10-11 00:55:27.000 1979-02-10 2024-10-11 00:55:27 +3328 3328 3329 332.8 665.6 3328 1979-02-11 2024-10-11 00:55:28.000 1979-02-11 2024-10-11 00:55:28 +3329 3329 3330 332.9 665.8000000000001 3329 1979-02-12 2024-10-11 00:55:29.000 1979-02-12 2024-10-11 00:55:29 +3330 3330 3331 333 666 3330 1979-02-13 2024-10-11 00:55:30.000 1979-02-13 2024-10-11 00:55:30 +3331 3331 3332 333.1 666.2 3331 1979-02-14 2024-10-11 00:55:31.000 1979-02-14 2024-10-11 00:55:31 +3332 3332 3333 333.2 666.4000000000001 3332 1979-02-15 2024-10-11 00:55:32.000 1979-02-15 2024-10-11 00:55:32 +3333 3333 3334 333.3 666.6 3333 1979-02-16 2024-10-11 00:55:33.000 1979-02-16 2024-10-11 00:55:33 +3334 3334 3335 333.4 666.8000000000001 3334 1979-02-17 2024-10-11 00:55:34.000 1979-02-17 2024-10-11 00:55:34 +3335 3335 3336 333.5 667 3335 1979-02-18 2024-10-11 00:55:35.000 1979-02-18 2024-10-11 00:55:35 +3336 3336 3337 333.6 667.2 3336 1979-02-19 2024-10-11 00:55:36.000 1979-02-19 2024-10-11 00:55:36 +3337 3337 3338 333.7 667.4000000000001 3337 1979-02-20 2024-10-11 00:55:37.000 1979-02-20 2024-10-11 00:55:37 +3338 3338 3339 333.8 667.6 3338 1979-02-21 2024-10-11 00:55:38.000 1979-02-21 2024-10-11 00:55:38 +3339 3339 3340 333.9 667.8000000000001 3339 1979-02-22 2024-10-11 00:55:39.000 1979-02-22 2024-10-11 00:55:39 +3340 3340 3341 334 668 3340 1979-02-23 2024-10-11 00:55:40.000 1979-02-23 2024-10-11 00:55:40 +3341 3341 3342 334.1 668.2 3341 1979-02-24 2024-10-11 00:55:41.000 1979-02-24 2024-10-11 00:55:41 +3342 3342 3343 334.2 668.4000000000001 3342 1979-02-25 2024-10-11 00:55:42.000 1979-02-25 2024-10-11 00:55:42 +3343 3343 3344 334.3 668.6 3343 1979-02-26 2024-10-11 00:55:43.000 1979-02-26 2024-10-11 00:55:43 +3344 3344 3345 334.4 668.8000000000001 3344 1979-02-27 2024-10-11 00:55:44.000 1979-02-27 2024-10-11 00:55:44 +3345 3345 3346 334.5 669 3345 1979-02-28 2024-10-11 00:55:45.000 1979-02-28 2024-10-11 00:55:45 +3346 3346 3347 334.6 669.2 3346 1979-03-01 2024-10-11 00:55:46.000 1979-03-01 2024-10-11 00:55:46 +3347 3347 3348 334.7 669.4000000000001 3347 1979-03-02 2024-10-11 00:55:47.000 1979-03-02 2024-10-11 00:55:47 +3348 3348 3349 334.8 669.6 3348 1979-03-03 2024-10-11 00:55:48.000 1979-03-03 2024-10-11 00:55:48 +3349 3349 3350 334.9 669.8000000000001 3349 1979-03-04 2024-10-11 00:55:49.000 1979-03-04 2024-10-11 00:55:49 +3350 3350 3351 335 670 3350 1979-03-05 2024-10-11 00:55:50.000 1979-03-05 2024-10-11 00:55:50 +3351 3351 3352 335.1 670.2 3351 1979-03-06 2024-10-11 00:55:51.000 1979-03-06 2024-10-11 00:55:51 +3352 3352 3353 335.2 670.4000000000001 3352 1979-03-07 2024-10-11 00:55:52.000 1979-03-07 2024-10-11 00:55:52 +3353 3353 3354 335.3 670.6 3353 1979-03-08 2024-10-11 00:55:53.000 1979-03-08 2024-10-11 00:55:53 +3354 3354 3355 335.4 670.8000000000001 3354 1979-03-09 2024-10-11 00:55:54.000 1979-03-09 2024-10-11 00:55:54 +3355 3355 3356 335.5 671 3355 1979-03-10 2024-10-11 00:55:55.000 1979-03-10 2024-10-11 00:55:55 +3356 3356 3357 335.6 671.2 3356 1979-03-11 2024-10-11 00:55:56.000 1979-03-11 2024-10-11 00:55:56 +3357 3357 3358 335.7 671.4000000000001 3357 1979-03-12 2024-10-11 00:55:57.000 1979-03-12 2024-10-11 00:55:57 +3358 3358 3359 335.8 671.6 3358 1979-03-13 2024-10-11 00:55:58.000 1979-03-13 2024-10-11 00:55:58 +3359 3359 3360 335.9 671.8000000000001 3359 1979-03-14 2024-10-11 00:55:59.000 1979-03-14 2024-10-11 00:55:59 +3360 3360 3361 336 672 3360 1979-03-15 2024-10-11 00:56:00.000 1979-03-15 2024-10-11 00:56:00 +3361 3361 3362 336.1 672.2 3361 1979-03-16 2024-10-11 00:56:01.000 1979-03-16 2024-10-11 00:56:01 +3362 3362 3363 336.2 672.4000000000001 3362 1979-03-17 2024-10-11 00:56:02.000 1979-03-17 2024-10-11 00:56:02 +3363 3363 3364 336.3 672.6 3363 1979-03-18 2024-10-11 00:56:03.000 1979-03-18 2024-10-11 00:56:03 +3364 3364 3365 336.4 672.8000000000001 3364 1979-03-19 2024-10-11 00:56:04.000 1979-03-19 2024-10-11 00:56:04 +3365 3365 3366 336.5 673 3365 1979-03-20 2024-10-11 00:56:05.000 1979-03-20 2024-10-11 00:56:05 +3366 3366 3367 336.6 673.2 3366 1979-03-21 2024-10-11 00:56:06.000 1979-03-21 2024-10-11 00:56:06 +3367 3367 3368 336.7 673.4000000000001 3367 1979-03-22 2024-10-11 00:56:07.000 1979-03-22 2024-10-11 00:56:07 +3368 3368 3369 336.8 673.6 3368 1979-03-23 2024-10-11 00:56:08.000 1979-03-23 2024-10-11 00:56:08 +3369 3369 3370 336.9 673.8000000000001 3369 1979-03-24 2024-10-11 00:56:09.000 1979-03-24 2024-10-11 00:56:09 +3370 3370 3371 337 674 3370 1979-03-25 2024-10-11 00:56:10.000 1979-03-25 2024-10-11 00:56:10 +3371 3371 3372 337.1 674.2 3371 1979-03-26 2024-10-11 00:56:11.000 1979-03-26 2024-10-11 00:56:11 +3372 3372 3373 337.2 674.4000000000001 3372 1979-03-27 2024-10-11 00:56:12.000 1979-03-27 2024-10-11 00:56:12 +3373 3373 3374 337.3 674.6 3373 1979-03-28 2024-10-11 00:56:13.000 1979-03-28 2024-10-11 00:56:13 +3374 3374 3375 337.4 674.8000000000001 3374 1979-03-29 2024-10-11 00:56:14.000 1979-03-29 2024-10-11 00:56:14 +3375 3375 3376 337.5 675 3375 1979-03-30 2024-10-11 00:56:15.000 1979-03-30 2024-10-11 00:56:15 +3376 3376 3377 337.6 675.2 3376 1979-03-31 2024-10-11 00:56:16.000 1979-03-31 2024-10-11 00:56:16 +3377 3377 3378 337.7 675.4000000000001 3377 1979-04-01 2024-10-11 00:56:17.000 1979-04-01 2024-10-11 00:56:17 +3378 3378 3379 337.8 675.6 3378 1979-04-02 2024-10-11 00:56:18.000 1979-04-02 2024-10-11 00:56:18 +3379 3379 3380 337.9 675.8000000000001 3379 1979-04-03 2024-10-11 00:56:19.000 1979-04-03 2024-10-11 00:56:19 +3380 3380 3381 338 676 3380 1979-04-04 2024-10-11 00:56:20.000 1979-04-04 2024-10-11 00:56:20 +3381 3381 3382 338.1 676.2 3381 1979-04-05 2024-10-11 00:56:21.000 1979-04-05 2024-10-11 00:56:21 +3382 3382 3383 338.2 676.4000000000001 3382 1979-04-06 2024-10-11 00:56:22.000 1979-04-06 2024-10-11 00:56:22 +3383 3383 3384 338.3 676.6 3383 1979-04-07 2024-10-11 00:56:23.000 1979-04-07 2024-10-11 00:56:23 +3384 3384 3385 338.4 676.8000000000001 3384 1979-04-08 2024-10-11 00:56:24.000 1979-04-08 2024-10-11 00:56:24 +3385 3385 3386 338.5 677 3385 1979-04-09 2024-10-11 00:56:25.000 1979-04-09 2024-10-11 00:56:25 +3386 3386 3387 338.6 677.2 3386 1979-04-10 2024-10-11 00:56:26.000 1979-04-10 2024-10-11 00:56:26 +3387 3387 3388 338.7 677.4000000000001 3387 1979-04-11 2024-10-11 00:56:27.000 1979-04-11 2024-10-11 00:56:27 +3388 3388 3389 338.8 677.6 3388 1979-04-12 2024-10-11 00:56:28.000 1979-04-12 2024-10-11 00:56:28 +3389 3389 3390 338.9 677.8000000000001 3389 1979-04-13 2024-10-11 00:56:29.000 1979-04-13 2024-10-11 00:56:29 +3390 3390 3391 339 678 3390 1979-04-14 2024-10-11 00:56:30.000 1979-04-14 2024-10-11 00:56:30 +3391 3391 3392 339.1 678.2 3391 1979-04-15 2024-10-11 00:56:31.000 1979-04-15 2024-10-11 00:56:31 +3392 3392 3393 339.2 678.4000000000001 3392 1979-04-16 2024-10-11 00:56:32.000 1979-04-16 2024-10-11 00:56:32 +3393 3393 3394 339.3 678.6 3393 1979-04-17 2024-10-11 00:56:33.000 1979-04-17 2024-10-11 00:56:33 +3394 3394 3395 339.4 678.8000000000001 3394 1979-04-18 2024-10-11 00:56:34.000 1979-04-18 2024-10-11 00:56:34 +3395 3395 3396 339.5 679 3395 1979-04-19 2024-10-11 00:56:35.000 1979-04-19 2024-10-11 00:56:35 +3396 3396 3397 339.6 679.2 3396 1979-04-20 2024-10-11 00:56:36.000 1979-04-20 2024-10-11 00:56:36 +3397 3397 3398 339.7 679.4000000000001 3397 1979-04-21 2024-10-11 00:56:37.000 1979-04-21 2024-10-11 00:56:37 +3398 3398 3399 339.8 679.6 3398 1979-04-22 2024-10-11 00:56:38.000 1979-04-22 2024-10-11 00:56:38 +3399 3399 3400 339.9 679.8000000000001 3399 1979-04-23 2024-10-11 00:56:39.000 1979-04-23 2024-10-11 00:56:39 +3400 3400 3401 340 680 3400 1979-04-24 2024-10-11 00:56:40.000 1979-04-24 2024-10-11 00:56:40 +3401 3401 3402 340.1 680.2 3401 1979-04-25 2024-10-11 00:56:41.000 1979-04-25 2024-10-11 00:56:41 +3402 3402 3403 340.2 680.4000000000001 3402 1979-04-26 2024-10-11 00:56:42.000 1979-04-26 2024-10-11 00:56:42 +3403 3403 3404 340.3 680.6 3403 1979-04-27 2024-10-11 00:56:43.000 1979-04-27 2024-10-11 00:56:43 +3404 3404 3405 340.4 680.8000000000001 3404 1979-04-28 2024-10-11 00:56:44.000 1979-04-28 2024-10-11 00:56:44 +3405 3405 3406 340.5 681 3405 1979-04-29 2024-10-11 00:56:45.000 1979-04-29 2024-10-11 00:56:45 +3406 3406 3407 340.6 681.2 3406 1979-04-30 2024-10-11 00:56:46.000 1979-04-30 2024-10-11 00:56:46 +3407 3407 3408 340.7 681.4000000000001 3407 1979-05-01 2024-10-11 00:56:47.000 1979-05-01 2024-10-11 00:56:47 +3408 3408 3409 340.8 681.6 3408 1979-05-02 2024-10-11 00:56:48.000 1979-05-02 2024-10-11 00:56:48 +3409 3409 3410 340.9 681.8000000000001 3409 1979-05-03 2024-10-11 00:56:49.000 1979-05-03 2024-10-11 00:56:49 +3410 3410 3411 341 682 3410 1979-05-04 2024-10-11 00:56:50.000 1979-05-04 2024-10-11 00:56:50 +3411 3411 3412 341.1 682.2 3411 1979-05-05 2024-10-11 00:56:51.000 1979-05-05 2024-10-11 00:56:51 +3412 3412 3413 341.2 682.4000000000001 3412 1979-05-06 2024-10-11 00:56:52.000 1979-05-06 2024-10-11 00:56:52 +3413 3413 3414 341.3 682.6 3413 1979-05-07 2024-10-11 00:56:53.000 1979-05-07 2024-10-11 00:56:53 +3414 3414 3415 341.4 682.8000000000001 3414 1979-05-08 2024-10-11 00:56:54.000 1979-05-08 2024-10-11 00:56:54 +3415 3415 3416 341.5 683 3415 1979-05-09 2024-10-11 00:56:55.000 1979-05-09 2024-10-11 00:56:55 +3416 3416 3417 341.6 683.2 3416 1979-05-10 2024-10-11 00:56:56.000 1979-05-10 2024-10-11 00:56:56 +3417 3417 3418 341.7 683.4000000000001 3417 1979-05-11 2024-10-11 00:56:57.000 1979-05-11 2024-10-11 00:56:57 +3418 3418 3419 341.8 683.6 3418 1979-05-12 2024-10-11 00:56:58.000 1979-05-12 2024-10-11 00:56:58 +3419 3419 3420 341.9 683.8000000000001 3419 1979-05-13 2024-10-11 00:56:59.000 1979-05-13 2024-10-11 00:56:59 +3420 3420 3421 342 684 3420 1979-05-14 2024-10-11 00:57:00.000 1979-05-14 2024-10-11 00:57:00 +3421 3421 3422 342.1 684.2 3421 1979-05-15 2024-10-11 00:57:01.000 1979-05-15 2024-10-11 00:57:01 +3422 3422 3423 342.2 684.4000000000001 3422 1979-05-16 2024-10-11 00:57:02.000 1979-05-16 2024-10-11 00:57:02 +3423 3423 3424 342.3 684.6 3423 1979-05-17 2024-10-11 00:57:03.000 1979-05-17 2024-10-11 00:57:03 +3424 3424 3425 342.4 684.8000000000001 3424 1979-05-18 2024-10-11 00:57:04.000 1979-05-18 2024-10-11 00:57:04 +3425 3425 3426 342.5 685 3425 1979-05-19 2024-10-11 00:57:05.000 1979-05-19 2024-10-11 00:57:05 +3426 3426 3427 342.6 685.2 3426 1979-05-20 2024-10-11 00:57:06.000 1979-05-20 2024-10-11 00:57:06 +3427 3427 3428 342.7 685.4000000000001 3427 1979-05-21 2024-10-11 00:57:07.000 1979-05-21 2024-10-11 00:57:07 +3428 3428 3429 342.8 685.6 3428 1979-05-22 2024-10-11 00:57:08.000 1979-05-22 2024-10-11 00:57:08 +3429 3429 3430 342.9 685.8000000000001 3429 1979-05-23 2024-10-11 00:57:09.000 1979-05-23 2024-10-11 00:57:09 +3430 3430 3431 343 686 3430 1979-05-24 2024-10-11 00:57:10.000 1979-05-24 2024-10-11 00:57:10 +3431 3431 3432 343.1 686.2 3431 1979-05-25 2024-10-11 00:57:11.000 1979-05-25 2024-10-11 00:57:11 +3432 3432 3433 343.2 686.4000000000001 3432 1979-05-26 2024-10-11 00:57:12.000 1979-05-26 2024-10-11 00:57:12 +3433 3433 3434 343.3 686.6 3433 1979-05-27 2024-10-11 00:57:13.000 1979-05-27 2024-10-11 00:57:13 +3434 3434 3435 343.4 686.8000000000001 3434 1979-05-28 2024-10-11 00:57:14.000 1979-05-28 2024-10-11 00:57:14 +3435 3435 3436 343.5 687 3435 1979-05-29 2024-10-11 00:57:15.000 1979-05-29 2024-10-11 00:57:15 +3436 3436 3437 343.6 687.2 3436 1979-05-30 2024-10-11 00:57:16.000 1979-05-30 2024-10-11 00:57:16 +3437 3437 3438 343.7 687.4000000000001 3437 1979-05-31 2024-10-11 00:57:17.000 1979-05-31 2024-10-11 00:57:17 +3438 3438 3439 343.8 687.6 3438 1979-06-01 2024-10-11 00:57:18.000 1979-06-01 2024-10-11 00:57:18 +3439 3439 3440 343.9 687.8000000000001 3439 1979-06-02 2024-10-11 00:57:19.000 1979-06-02 2024-10-11 00:57:19 +3440 3440 3441 344 688 3440 1979-06-03 2024-10-11 00:57:20.000 1979-06-03 2024-10-11 00:57:20 +3441 3441 3442 344.1 688.2 3441 1979-06-04 2024-10-11 00:57:21.000 1979-06-04 2024-10-11 00:57:21 +3442 3442 3443 344.2 688.4000000000001 3442 1979-06-05 2024-10-11 00:57:22.000 1979-06-05 2024-10-11 00:57:22 +3443 3443 3444 344.3 688.6 3443 1979-06-06 2024-10-11 00:57:23.000 1979-06-06 2024-10-11 00:57:23 +3444 3444 3445 344.4 688.8000000000001 3444 1979-06-07 2024-10-11 00:57:24.000 1979-06-07 2024-10-11 00:57:24 +3445 3445 3446 344.5 689 3445 1979-06-08 2024-10-11 00:57:25.000 1979-06-08 2024-10-11 00:57:25 +3446 3446 3447 344.6 689.2 3446 1979-06-09 2024-10-11 00:57:26.000 1979-06-09 2024-10-11 00:57:26 +3447 3447 3448 344.7 689.4000000000001 3447 1979-06-10 2024-10-11 00:57:27.000 1979-06-10 2024-10-11 00:57:27 +3448 3448 3449 344.8 689.6 3448 1979-06-11 2024-10-11 00:57:28.000 1979-06-11 2024-10-11 00:57:28 +3449 3449 3450 344.9 689.8000000000001 3449 1979-06-12 2024-10-11 00:57:29.000 1979-06-12 2024-10-11 00:57:29 +3450 3450 3451 345 690 3450 1979-06-13 2024-10-11 00:57:30.000 1979-06-13 2024-10-11 00:57:30 +3451 3451 3452 345.1 690.2 3451 1979-06-14 2024-10-11 00:57:31.000 1979-06-14 2024-10-11 00:57:31 +3452 3452 3453 345.2 690.4000000000001 3452 1979-06-15 2024-10-11 00:57:32.000 1979-06-15 2024-10-11 00:57:32 +3453 3453 3454 345.3 690.6 3453 1979-06-16 2024-10-11 00:57:33.000 1979-06-16 2024-10-11 00:57:33 +3454 3454 3455 345.4 690.8000000000001 3454 1979-06-17 2024-10-11 00:57:34.000 1979-06-17 2024-10-11 00:57:34 +3455 3455 3456 345.5 691 3455 1979-06-18 2024-10-11 00:57:35.000 1979-06-18 2024-10-11 00:57:35 +3456 3456 3457 345.6 691.2 3456 1979-06-19 2024-10-11 00:57:36.000 1979-06-19 2024-10-11 00:57:36 +3457 3457 3458 345.7 691.4000000000001 3457 1979-06-20 2024-10-11 00:57:37.000 1979-06-20 2024-10-11 00:57:37 +3458 3458 3459 345.8 691.6 3458 1979-06-21 2024-10-11 00:57:38.000 1979-06-21 2024-10-11 00:57:38 +3459 3459 3460 345.9 691.8000000000001 3459 1979-06-22 2024-10-11 00:57:39.000 1979-06-22 2024-10-11 00:57:39 +3460 3460 3461 346 692 3460 1979-06-23 2024-10-11 00:57:40.000 1979-06-23 2024-10-11 00:57:40 +3461 3461 3462 346.1 692.2 3461 1979-06-24 2024-10-11 00:57:41.000 1979-06-24 2024-10-11 00:57:41 +3462 3462 3463 346.2 692.4000000000001 3462 1979-06-25 2024-10-11 00:57:42.000 1979-06-25 2024-10-11 00:57:42 +3463 3463 3464 346.3 692.6 3463 1979-06-26 2024-10-11 00:57:43.000 1979-06-26 2024-10-11 00:57:43 +3464 3464 3465 346.4 692.8000000000001 3464 1979-06-27 2024-10-11 00:57:44.000 1979-06-27 2024-10-11 00:57:44 +3465 3465 3466 346.5 693 3465 1979-06-28 2024-10-11 00:57:45.000 1979-06-28 2024-10-11 00:57:45 +3466 3466 3467 346.6 693.2 3466 1979-06-29 2024-10-11 00:57:46.000 1979-06-29 2024-10-11 00:57:46 +3467 3467 3468 346.7 693.4000000000001 3467 1979-06-30 2024-10-11 00:57:47.000 1979-06-30 2024-10-11 00:57:47 +3468 3468 3469 346.8 693.6 3468 1979-07-01 2024-10-11 00:57:48.000 1979-07-01 2024-10-11 00:57:48 +3469 3469 3470 346.9 693.8000000000001 3469 1979-07-02 2024-10-11 00:57:49.000 1979-07-02 2024-10-11 00:57:49 +3470 3470 3471 347 694 3470 1979-07-03 2024-10-11 00:57:50.000 1979-07-03 2024-10-11 00:57:50 +3471 3471 3472 347.1 694.2 3471 1979-07-04 2024-10-11 00:57:51.000 1979-07-04 2024-10-11 00:57:51 +3472 3472 3473 347.2 694.4000000000001 3472 1979-07-05 2024-10-11 00:57:52.000 1979-07-05 2024-10-11 00:57:52 +3473 3473 3474 347.3 694.6 3473 1979-07-06 2024-10-11 00:57:53.000 1979-07-06 2024-10-11 00:57:53 +3474 3474 3475 347.4 694.8000000000001 3474 1979-07-07 2024-10-11 00:57:54.000 1979-07-07 2024-10-11 00:57:54 +3475 3475 3476 347.5 695 3475 1979-07-08 2024-10-11 00:57:55.000 1979-07-08 2024-10-11 00:57:55 +3476 3476 3477 347.6 695.2 3476 1979-07-09 2024-10-11 00:57:56.000 1979-07-09 2024-10-11 00:57:56 +3477 3477 3478 347.7 695.4000000000001 3477 1979-07-10 2024-10-11 00:57:57.000 1979-07-10 2024-10-11 00:57:57 +3478 3478 3479 347.8 695.6 3478 1979-07-11 2024-10-11 00:57:58.000 1979-07-11 2024-10-11 00:57:58 +3479 3479 3480 347.9 695.8000000000001 3479 1979-07-12 2024-10-11 00:57:59.000 1979-07-12 2024-10-11 00:57:59 +3480 3480 3481 348 696 3480 1979-07-13 2024-10-11 00:58:00.000 1979-07-13 2024-10-11 00:58:00 +3481 3481 3482 348.1 696.2 3481 1979-07-14 2024-10-11 00:58:01.000 1979-07-14 2024-10-11 00:58:01 +3482 3482 3483 348.2 696.4000000000001 3482 1979-07-15 2024-10-11 00:58:02.000 1979-07-15 2024-10-11 00:58:02 +3483 3483 3484 348.3 696.6 3483 1979-07-16 2024-10-11 00:58:03.000 1979-07-16 2024-10-11 00:58:03 +3484 3484 3485 348.4 696.8000000000001 3484 1979-07-17 2024-10-11 00:58:04.000 1979-07-17 2024-10-11 00:58:04 +3485 3485 3486 348.5 697 3485 1979-07-18 2024-10-11 00:58:05.000 1979-07-18 2024-10-11 00:58:05 +3486 3486 3487 348.6 697.2 3486 1979-07-19 2024-10-11 00:58:06.000 1979-07-19 2024-10-11 00:58:06 +3487 3487 3488 348.7 697.4000000000001 3487 1979-07-20 2024-10-11 00:58:07.000 1979-07-20 2024-10-11 00:58:07 +3488 3488 3489 348.8 697.6 3488 1979-07-21 2024-10-11 00:58:08.000 1979-07-21 2024-10-11 00:58:08 +3489 3489 3490 348.9 697.8000000000001 3489 1979-07-22 2024-10-11 00:58:09.000 1979-07-22 2024-10-11 00:58:09 +3490 3490 3491 349 698 3490 1979-07-23 2024-10-11 00:58:10.000 1979-07-23 2024-10-11 00:58:10 +3491 3491 3492 349.1 698.2 3491 1979-07-24 2024-10-11 00:58:11.000 1979-07-24 2024-10-11 00:58:11 +3492 3492 3493 349.2 698.4000000000001 3492 1979-07-25 2024-10-11 00:58:12.000 1979-07-25 2024-10-11 00:58:12 +3493 3493 3494 349.3 698.6 3493 1979-07-26 2024-10-11 00:58:13.000 1979-07-26 2024-10-11 00:58:13 +3494 3494 3495 349.4 698.8000000000001 3494 1979-07-27 2024-10-11 00:58:14.000 1979-07-27 2024-10-11 00:58:14 +3495 3495 3496 349.5 699 3495 1979-07-28 2024-10-11 00:58:15.000 1979-07-28 2024-10-11 00:58:15 +3496 3496 3497 349.6 699.2 3496 1979-07-29 2024-10-11 00:58:16.000 1979-07-29 2024-10-11 00:58:16 +3497 3497 3498 349.7 699.4000000000001 3497 1979-07-30 2024-10-11 00:58:17.000 1979-07-30 2024-10-11 00:58:17 +3498 3498 3499 349.8 699.6 3498 1979-07-31 2024-10-11 00:58:18.000 1979-07-31 2024-10-11 00:58:18 +3499 3499 3500 349.9 699.8000000000001 3499 1979-08-01 2024-10-11 00:58:19.000 1979-08-01 2024-10-11 00:58:19 +3500 3500 3501 350 700 3500 1979-08-02 2024-10-11 00:58:20.000 1979-08-02 2024-10-11 00:58:20 +3501 3501 3502 350.1 700.2 3501 1979-08-03 2024-10-11 00:58:21.000 1979-08-03 2024-10-11 00:58:21 +3502 3502 3503 350.2 700.4000000000001 3502 1979-08-04 2024-10-11 00:58:22.000 1979-08-04 2024-10-11 00:58:22 +3503 3503 3504 350.3 700.6 3503 1979-08-05 2024-10-11 00:58:23.000 1979-08-05 2024-10-11 00:58:23 +3504 3504 3505 350.4 700.8000000000001 3504 1979-08-06 2024-10-11 00:58:24.000 1979-08-06 2024-10-11 00:58:24 +3505 3505 3506 350.5 701 3505 1979-08-07 2024-10-11 00:58:25.000 1979-08-07 2024-10-11 00:58:25 +3506 3506 3507 350.6 701.2 3506 1979-08-08 2024-10-11 00:58:26.000 1979-08-08 2024-10-11 00:58:26 +3507 3507 3508 350.7 701.4000000000001 3507 1979-08-09 2024-10-11 00:58:27.000 1979-08-09 2024-10-11 00:58:27 +3508 3508 3509 350.8 701.6 3508 1979-08-10 2024-10-11 00:58:28.000 1979-08-10 2024-10-11 00:58:28 +3509 3509 3510 350.9 701.8000000000001 3509 1979-08-11 2024-10-11 00:58:29.000 1979-08-11 2024-10-11 00:58:29 +3510 3510 3511 351 702 3510 1979-08-12 2024-10-11 00:58:30.000 1979-08-12 2024-10-11 00:58:30 +3511 3511 3512 351.1 702.2 3511 1979-08-13 2024-10-11 00:58:31.000 1979-08-13 2024-10-11 00:58:31 +3512 3512 3513 351.2 702.4000000000001 3512 1979-08-14 2024-10-11 00:58:32.000 1979-08-14 2024-10-11 00:58:32 +3513 3513 3514 351.3 702.6 3513 1979-08-15 2024-10-11 00:58:33.000 1979-08-15 2024-10-11 00:58:33 +3514 3514 3515 351.4 702.8000000000001 3514 1979-08-16 2024-10-11 00:58:34.000 1979-08-16 2024-10-11 00:58:34 +3515 3515 3516 351.5 703 3515 1979-08-17 2024-10-11 00:58:35.000 1979-08-17 2024-10-11 00:58:35 +3516 3516 3517 351.6 703.2 3516 1979-08-18 2024-10-11 00:58:36.000 1979-08-18 2024-10-11 00:58:36 +3517 3517 3518 351.7 703.4000000000001 3517 1979-08-19 2024-10-11 00:58:37.000 1979-08-19 2024-10-11 00:58:37 +3518 3518 3519 351.8 703.6 3518 1979-08-20 2024-10-11 00:58:38.000 1979-08-20 2024-10-11 00:58:38 +3519 3519 3520 351.9 703.8000000000001 3519 1979-08-21 2024-10-11 00:58:39.000 1979-08-21 2024-10-11 00:58:39 +3520 3520 3521 352 704 3520 1979-08-22 2024-10-11 00:58:40.000 1979-08-22 2024-10-11 00:58:40 +3521 3521 3522 352.1 704.2 3521 1979-08-23 2024-10-11 00:58:41.000 1979-08-23 2024-10-11 00:58:41 +3522 3522 3523 352.2 704.4000000000001 3522 1979-08-24 2024-10-11 00:58:42.000 1979-08-24 2024-10-11 00:58:42 +3523 3523 3524 352.3 704.6 3523 1979-08-25 2024-10-11 00:58:43.000 1979-08-25 2024-10-11 00:58:43 +3524 3524 3525 352.4 704.8000000000001 3524 1979-08-26 2024-10-11 00:58:44.000 1979-08-26 2024-10-11 00:58:44 +3525 3525 3526 352.5 705 3525 1979-08-27 2024-10-11 00:58:45.000 1979-08-27 2024-10-11 00:58:45 +3526 3526 3527 352.6 705.2 3526 1979-08-28 2024-10-11 00:58:46.000 1979-08-28 2024-10-11 00:58:46 +3527 3527 3528 352.7 705.4000000000001 3527 1979-08-29 2024-10-11 00:58:47.000 1979-08-29 2024-10-11 00:58:47 +3528 3528 3529 352.8 705.6 3528 1979-08-30 2024-10-11 00:58:48.000 1979-08-30 2024-10-11 00:58:48 +3529 3529 3530 352.9 705.8000000000001 3529 1979-08-31 2024-10-11 00:58:49.000 1979-08-31 2024-10-11 00:58:49 +3530 3530 3531 353 706 3530 1979-09-01 2024-10-11 00:58:50.000 1979-09-01 2024-10-11 00:58:50 +3531 3531 3532 353.1 706.2 3531 1979-09-02 2024-10-11 00:58:51.000 1979-09-02 2024-10-11 00:58:51 +3532 3532 3533 353.2 706.4000000000001 3532 1979-09-03 2024-10-11 00:58:52.000 1979-09-03 2024-10-11 00:58:52 +3533 3533 3534 353.3 706.6 3533 1979-09-04 2024-10-11 00:58:53.000 1979-09-04 2024-10-11 00:58:53 +3534 3534 3535 353.4 706.8000000000001 3534 1979-09-05 2024-10-11 00:58:54.000 1979-09-05 2024-10-11 00:58:54 +3535 3535 3536 353.5 707 3535 1979-09-06 2024-10-11 00:58:55.000 1979-09-06 2024-10-11 00:58:55 +3536 3536 3537 353.6 707.2 3536 1979-09-07 2024-10-11 00:58:56.000 1979-09-07 2024-10-11 00:58:56 +3537 3537 3538 353.7 707.4000000000001 3537 1979-09-08 2024-10-11 00:58:57.000 1979-09-08 2024-10-11 00:58:57 +3538 3538 3539 353.8 707.6 3538 1979-09-09 2024-10-11 00:58:58.000 1979-09-09 2024-10-11 00:58:58 +3539 3539 3540 353.9 707.8000000000001 3539 1979-09-10 2024-10-11 00:58:59.000 1979-09-10 2024-10-11 00:58:59 +3540 3540 3541 354 708 3540 1979-09-11 2024-10-11 00:59:00.000 1979-09-11 2024-10-11 00:59:00 +3541 3541 3542 354.1 708.2 3541 1979-09-12 2024-10-11 00:59:01.000 1979-09-12 2024-10-11 00:59:01 +3542 3542 3543 354.2 708.4000000000001 3542 1979-09-13 2024-10-11 00:59:02.000 1979-09-13 2024-10-11 00:59:02 +3543 3543 3544 354.3 708.6 3543 1979-09-14 2024-10-11 00:59:03.000 1979-09-14 2024-10-11 00:59:03 +3544 3544 3545 354.4 708.8000000000001 3544 1979-09-15 2024-10-11 00:59:04.000 1979-09-15 2024-10-11 00:59:04 +3545 3545 3546 354.5 709 3545 1979-09-16 2024-10-11 00:59:05.000 1979-09-16 2024-10-11 00:59:05 +3546 3546 3547 354.6 709.2 3546 1979-09-17 2024-10-11 00:59:06.000 1979-09-17 2024-10-11 00:59:06 +3547 3547 3548 354.7 709.4000000000001 3547 1979-09-18 2024-10-11 00:59:07.000 1979-09-18 2024-10-11 00:59:07 +3548 3548 3549 354.8 709.6 3548 1979-09-19 2024-10-11 00:59:08.000 1979-09-19 2024-10-11 00:59:08 +3549 3549 3550 354.9 709.8000000000001 3549 1979-09-20 2024-10-11 00:59:09.000 1979-09-20 2024-10-11 00:59:09 +3550 3550 3551 355 710 3550 1979-09-21 2024-10-11 00:59:10.000 1979-09-21 2024-10-11 00:59:10 +3551 3551 3552 355.1 710.2 3551 1979-09-22 2024-10-11 00:59:11.000 1979-09-22 2024-10-11 00:59:11 +3552 3552 3553 355.2 710.4000000000001 3552 1979-09-23 2024-10-11 00:59:12.000 1979-09-23 2024-10-11 00:59:12 +3553 3553 3554 355.3 710.6 3553 1979-09-24 2024-10-11 00:59:13.000 1979-09-24 2024-10-11 00:59:13 +3554 3554 3555 355.4 710.8000000000001 3554 1979-09-25 2024-10-11 00:59:14.000 1979-09-25 2024-10-11 00:59:14 +3555 3555 3556 355.5 711 3555 1979-09-26 2024-10-11 00:59:15.000 1979-09-26 2024-10-11 00:59:15 +3556 3556 3557 355.6 711.2 3556 1979-09-27 2024-10-11 00:59:16.000 1979-09-27 2024-10-11 00:59:16 +3557 3557 3558 355.7 711.4000000000001 3557 1979-09-28 2024-10-11 00:59:17.000 1979-09-28 2024-10-11 00:59:17 +3558 3558 3559 355.8 711.6 3558 1979-09-29 2024-10-11 00:59:18.000 1979-09-29 2024-10-11 00:59:18 +3559 3559 3560 355.9 711.8000000000001 3559 1979-09-30 2024-10-11 00:59:19.000 1979-09-30 2024-10-11 00:59:19 +3560 3560 3561 356 712 3560 1979-10-01 2024-10-11 00:59:20.000 1979-10-01 2024-10-11 00:59:20 +3561 3561 3562 356.1 712.2 3561 1979-10-02 2024-10-11 00:59:21.000 1979-10-02 2024-10-11 00:59:21 +3562 3562 3563 356.2 712.4000000000001 3562 1979-10-03 2024-10-11 00:59:22.000 1979-10-03 2024-10-11 00:59:22 +3563 3563 3564 356.3 712.6 3563 1979-10-04 2024-10-11 00:59:23.000 1979-10-04 2024-10-11 00:59:23 +3564 3564 3565 356.4 712.8000000000001 3564 1979-10-05 2024-10-11 00:59:24.000 1979-10-05 2024-10-11 00:59:24 +3565 3565 3566 356.5 713 3565 1979-10-06 2024-10-11 00:59:25.000 1979-10-06 2024-10-11 00:59:25 +3566 3566 3567 356.6 713.2 3566 1979-10-07 2024-10-11 00:59:26.000 1979-10-07 2024-10-11 00:59:26 +3567 3567 3568 356.7 713.4000000000001 3567 1979-10-08 2024-10-11 00:59:27.000 1979-10-08 2024-10-11 00:59:27 +3568 3568 3569 356.8 713.6 3568 1979-10-09 2024-10-11 00:59:28.000 1979-10-09 2024-10-11 00:59:28 +3569 3569 3570 356.9 713.8000000000001 3569 1979-10-10 2024-10-11 00:59:29.000 1979-10-10 2024-10-11 00:59:29 +3570 3570 3571 357 714 3570 1979-10-11 2024-10-11 00:59:30.000 1979-10-11 2024-10-11 00:59:30 +3571 3571 3572 357.1 714.2 3571 1979-10-12 2024-10-11 00:59:31.000 1979-10-12 2024-10-11 00:59:31 +3572 3572 3573 357.2 714.4000000000001 3572 1979-10-13 2024-10-11 00:59:32.000 1979-10-13 2024-10-11 00:59:32 +3573 3573 3574 357.3 714.6 3573 1979-10-14 2024-10-11 00:59:33.000 1979-10-14 2024-10-11 00:59:33 +3574 3574 3575 357.4 714.8000000000001 3574 1979-10-15 2024-10-11 00:59:34.000 1979-10-15 2024-10-11 00:59:34 +3575 3575 3576 357.5 715 3575 1979-10-16 2024-10-11 00:59:35.000 1979-10-16 2024-10-11 00:59:35 +3576 3576 3577 357.6 715.2 3576 1979-10-17 2024-10-11 00:59:36.000 1979-10-17 2024-10-11 00:59:36 +3577 3577 3578 357.7 715.4000000000001 3577 1979-10-18 2024-10-11 00:59:37.000 1979-10-18 2024-10-11 00:59:37 +3578 3578 3579 357.8 715.6 3578 1979-10-19 2024-10-11 00:59:38.000 1979-10-19 2024-10-11 00:59:38 +3579 3579 3580 357.9 715.8000000000001 3579 1979-10-20 2024-10-11 00:59:39.000 1979-10-20 2024-10-11 00:59:39 +3580 3580 3581 358 716 3580 1979-10-21 2024-10-11 00:59:40.000 1979-10-21 2024-10-11 00:59:40 +3581 3581 3582 358.1 716.2 3581 1979-10-22 2024-10-11 00:59:41.000 1979-10-22 2024-10-11 00:59:41 +3582 3582 3583 358.2 716.4000000000001 3582 1979-10-23 2024-10-11 00:59:42.000 1979-10-23 2024-10-11 00:59:42 +3583 3583 3584 358.3 716.6 3583 1979-10-24 2024-10-11 00:59:43.000 1979-10-24 2024-10-11 00:59:43 +3584 3584 3585 358.4 716.8000000000001 3584 1979-10-25 2024-10-11 00:59:44.000 1979-10-25 2024-10-11 00:59:44 +3585 3585 3586 358.5 717 3585 1979-10-26 2024-10-11 00:59:45.000 1979-10-26 2024-10-11 00:59:45 +3586 3586 3587 358.6 717.2 3586 1979-10-27 2024-10-11 00:59:46.000 1979-10-27 2024-10-11 00:59:46 +3587 3587 3588 358.7 717.4000000000001 3587 1979-10-28 2024-10-11 00:59:47.000 1979-10-28 2024-10-11 00:59:47 +3588 3588 3589 358.8 717.6 3588 1979-10-29 2024-10-11 00:59:48.000 1979-10-29 2024-10-11 00:59:48 +3589 3589 3590 358.9 717.8000000000001 3589 1979-10-30 2024-10-11 00:59:49.000 1979-10-30 2024-10-11 00:59:49 +3590 3590 3591 359 718 3590 1979-10-31 2024-10-11 00:59:50.000 1979-10-31 2024-10-11 00:59:50 +3591 3591 3592 359.1 718.2 3591 1979-11-01 2024-10-11 00:59:51.000 1979-11-01 2024-10-11 00:59:51 +3592 3592 3593 359.2 718.4000000000001 3592 1979-11-02 2024-10-11 00:59:52.000 1979-11-02 2024-10-11 00:59:52 +3593 3593 3594 359.3 718.6 3593 1979-11-03 2024-10-11 00:59:53.000 1979-11-03 2024-10-11 00:59:53 +3594 3594 3595 359.4 718.8000000000001 3594 1979-11-04 2024-10-11 00:59:54.000 1979-11-04 2024-10-11 00:59:54 +3595 3595 3596 359.5 719 3595 1979-11-05 2024-10-11 00:59:55.000 1979-11-05 2024-10-11 00:59:55 +3596 3596 3597 359.6 719.2 3596 1979-11-06 2024-10-11 00:59:56.000 1979-11-06 2024-10-11 00:59:56 +3597 3597 3598 359.7 719.4000000000001 3597 1979-11-07 2024-10-11 00:59:57.000 1979-11-07 2024-10-11 00:59:57 +3598 3598 3599 359.8 719.6 3598 1979-11-08 2024-10-11 00:59:58.000 1979-11-08 2024-10-11 00:59:58 +3599 3599 3600 359.9 719.8000000000001 3599 1979-11-09 2024-10-11 00:59:59.000 1979-11-09 2024-10-11 00:59:59 +3600 3600 3601 360 720 3600 1979-11-10 2024-10-11 01:00:00.000 1979-11-10 2024-10-11 01:00:00 +3601 3601 3602 360.1 720.2 3601 1979-11-11 2024-10-11 01:00:01.000 1979-11-11 2024-10-11 01:00:01 +3602 3602 3603 360.2 720.4000000000001 3602 1979-11-12 2024-10-11 01:00:02.000 1979-11-12 2024-10-11 01:00:02 +3603 3603 3604 360.3 720.6 3603 1979-11-13 2024-10-11 01:00:03.000 1979-11-13 2024-10-11 01:00:03 +3604 3604 3605 360.4 720.8000000000001 3604 1979-11-14 2024-10-11 01:00:04.000 1979-11-14 2024-10-11 01:00:04 +3605 3605 3606 360.5 721 3605 1979-11-15 2024-10-11 01:00:05.000 1979-11-15 2024-10-11 01:00:05 +3606 3606 3607 360.6 721.2 3606 1979-11-16 2024-10-11 01:00:06.000 1979-11-16 2024-10-11 01:00:06 +3607 3607 3608 360.7 721.4000000000001 3607 1979-11-17 2024-10-11 01:00:07.000 1979-11-17 2024-10-11 01:00:07 +3608 3608 3609 360.8 721.6 3608 1979-11-18 2024-10-11 01:00:08.000 1979-11-18 2024-10-11 01:00:08 +3609 3609 3610 360.9 721.8000000000001 3609 1979-11-19 2024-10-11 01:00:09.000 1979-11-19 2024-10-11 01:00:09 +3610 3610 3611 361 722 3610 1979-11-20 2024-10-11 01:00:10.000 1979-11-20 2024-10-11 01:00:10 +3611 3611 3612 361.1 722.2 3611 1979-11-21 2024-10-11 01:00:11.000 1979-11-21 2024-10-11 01:00:11 +3612 3612 3613 361.2 722.4000000000001 3612 1979-11-22 2024-10-11 01:00:12.000 1979-11-22 2024-10-11 01:00:12 +3613 3613 3614 361.3 722.6 3613 1979-11-23 2024-10-11 01:00:13.000 1979-11-23 2024-10-11 01:00:13 +3614 3614 3615 361.4 722.8000000000001 3614 1979-11-24 2024-10-11 01:00:14.000 1979-11-24 2024-10-11 01:00:14 +3615 3615 3616 361.5 723 3615 1979-11-25 2024-10-11 01:00:15.000 1979-11-25 2024-10-11 01:00:15 +3616 3616 3617 361.6 723.2 3616 1979-11-26 2024-10-11 01:00:16.000 1979-11-26 2024-10-11 01:00:16 +3617 3617 3618 361.7 723.4000000000001 3617 1979-11-27 2024-10-11 01:00:17.000 1979-11-27 2024-10-11 01:00:17 +3618 3618 3619 361.8 723.6 3618 1979-11-28 2024-10-11 01:00:18.000 1979-11-28 2024-10-11 01:00:18 +3619 3619 3620 361.9 723.8000000000001 3619 1979-11-29 2024-10-11 01:00:19.000 1979-11-29 2024-10-11 01:00:19 +3620 3620 3621 362 724 3620 1979-11-30 2024-10-11 01:00:20.000 1979-11-30 2024-10-11 01:00:20 +3621 3621 3622 362.1 724.2 3621 1979-12-01 2024-10-11 01:00:21.000 1979-12-01 2024-10-11 01:00:21 +3622 3622 3623 362.2 724.4000000000001 3622 1979-12-02 2024-10-11 01:00:22.000 1979-12-02 2024-10-11 01:00:22 +3623 3623 3624 362.3 724.6 3623 1979-12-03 2024-10-11 01:00:23.000 1979-12-03 2024-10-11 01:00:23 +3624 3624 3625 362.4 724.8000000000001 3624 1979-12-04 2024-10-11 01:00:24.000 1979-12-04 2024-10-11 01:00:24 +3625 3625 3626 362.5 725 3625 1979-12-05 2024-10-11 01:00:25.000 1979-12-05 2024-10-11 01:00:25 +3626 3626 3627 362.6 725.2 3626 1979-12-06 2024-10-11 01:00:26.000 1979-12-06 2024-10-11 01:00:26 +3627 3627 3628 362.7 725.4000000000001 3627 1979-12-07 2024-10-11 01:00:27.000 1979-12-07 2024-10-11 01:00:27 +3628 3628 3629 362.8 725.6 3628 1979-12-08 2024-10-11 01:00:28.000 1979-12-08 2024-10-11 01:00:28 +3629 3629 3630 362.9 725.8000000000001 3629 1979-12-09 2024-10-11 01:00:29.000 1979-12-09 2024-10-11 01:00:29 +3630 3630 3631 363 726 3630 1979-12-10 2024-10-11 01:00:30.000 1979-12-10 2024-10-11 01:00:30 +3631 3631 3632 363.1 726.2 3631 1979-12-11 2024-10-11 01:00:31.000 1979-12-11 2024-10-11 01:00:31 +3632 3632 3633 363.2 726.4000000000001 3632 1979-12-12 2024-10-11 01:00:32.000 1979-12-12 2024-10-11 01:00:32 +3633 3633 3634 363.3 726.6 3633 1979-12-13 2024-10-11 01:00:33.000 1979-12-13 2024-10-11 01:00:33 +3634 3634 3635 363.4 726.8000000000001 3634 1979-12-14 2024-10-11 01:00:34.000 1979-12-14 2024-10-11 01:00:34 +3635 3635 3636 363.5 727 3635 1979-12-15 2024-10-11 01:00:35.000 1979-12-15 2024-10-11 01:00:35 +3636 3636 3637 363.6 727.2 3636 1979-12-16 2024-10-11 01:00:36.000 1979-12-16 2024-10-11 01:00:36 +3637 3637 3638 363.7 727.4000000000001 3637 1979-12-17 2024-10-11 01:00:37.000 1979-12-17 2024-10-11 01:00:37 +3638 3638 3639 363.8 727.6 3638 1979-12-18 2024-10-11 01:00:38.000 1979-12-18 2024-10-11 01:00:38 +3639 3639 3640 363.9 727.8000000000001 3639 1979-12-19 2024-10-11 01:00:39.000 1979-12-19 2024-10-11 01:00:39 +3640 3640 3641 364 728 3640 1979-12-20 2024-10-11 01:00:40.000 1979-12-20 2024-10-11 01:00:40 +3641 3641 3642 364.1 728.2 3641 1979-12-21 2024-10-11 01:00:41.000 1979-12-21 2024-10-11 01:00:41 +3642 3642 3643 364.2 728.4000000000001 3642 1979-12-22 2024-10-11 01:00:42.000 1979-12-22 2024-10-11 01:00:42 +3643 3643 3644 364.3 728.6 3643 1979-12-23 2024-10-11 01:00:43.000 1979-12-23 2024-10-11 01:00:43 +3644 3644 3645 364.4 728.8000000000001 3644 1979-12-24 2024-10-11 01:00:44.000 1979-12-24 2024-10-11 01:00:44 +3645 3645 3646 364.5 729 3645 1979-12-25 2024-10-11 01:00:45.000 1979-12-25 2024-10-11 01:00:45 +3646 3646 3647 364.6 729.2 3646 1979-12-26 2024-10-11 01:00:46.000 1979-12-26 2024-10-11 01:00:46 +3647 3647 3648 364.7 729.4000000000001 3647 1979-12-27 2024-10-11 01:00:47.000 1979-12-27 2024-10-11 01:00:47 +3648 3648 3649 364.8 729.6 3648 1979-12-28 2024-10-11 01:00:48.000 1979-12-28 2024-10-11 01:00:48 +3649 3649 3650 364.9 729.8000000000001 3649 1979-12-29 2024-10-11 01:00:49.000 1979-12-29 2024-10-11 01:00:49 +3650 3650 3651 365 730 3650 1979-12-30 2024-10-11 01:00:50.000 1979-12-30 2024-10-11 01:00:50 +3651 3651 3652 365.1 730.2 3651 1979-12-31 2024-10-11 01:00:51.000 1979-12-31 2024-10-11 01:00:51 +3652 3652 3653 365.2 730.4000000000001 3652 1980-01-01 2024-10-11 01:00:52.000 1980-01-01 2024-10-11 01:00:52 +3653 3653 3654 365.3 730.6 3653 1980-01-02 2024-10-11 01:00:53.000 1980-01-02 2024-10-11 01:00:53 +3654 3654 3655 365.4 730.8000000000001 3654 1980-01-03 2024-10-11 01:00:54.000 1980-01-03 2024-10-11 01:00:54 +3655 3655 3656 365.5 731 3655 1980-01-04 2024-10-11 01:00:55.000 1980-01-04 2024-10-11 01:00:55 +3656 3656 3657 365.6 731.2 3656 1980-01-05 2024-10-11 01:00:56.000 1980-01-05 2024-10-11 01:00:56 +3657 3657 3658 365.7 731.4000000000001 3657 1980-01-06 2024-10-11 01:00:57.000 1980-01-06 2024-10-11 01:00:57 +3658 3658 3659 365.8 731.6 3658 1980-01-07 2024-10-11 01:00:58.000 1980-01-07 2024-10-11 01:00:58 +3659 3659 3660 365.9 731.8000000000001 3659 1980-01-08 2024-10-11 01:00:59.000 1980-01-08 2024-10-11 01:00:59 +3660 3660 3661 366 732 3660 1980-01-09 2024-10-11 01:01:00.000 1980-01-09 2024-10-11 01:01:00 +3661 3661 3662 366.1 732.2 3661 1980-01-10 2024-10-11 01:01:01.000 1980-01-10 2024-10-11 01:01:01 +3662 3662 3663 366.2 732.4000000000001 3662 1980-01-11 2024-10-11 01:01:02.000 1980-01-11 2024-10-11 01:01:02 +3663 3663 3664 366.3 732.6 3663 1980-01-12 2024-10-11 01:01:03.000 1980-01-12 2024-10-11 01:01:03 +3664 3664 3665 366.4 732.8000000000001 3664 1980-01-13 2024-10-11 01:01:04.000 1980-01-13 2024-10-11 01:01:04 +3665 3665 3666 366.5 733 3665 1980-01-14 2024-10-11 01:01:05.000 1980-01-14 2024-10-11 01:01:05 +3666 3666 3667 366.6 733.2 3666 1980-01-15 2024-10-11 01:01:06.000 1980-01-15 2024-10-11 01:01:06 +3667 3667 3668 366.7 733.4000000000001 3667 1980-01-16 2024-10-11 01:01:07.000 1980-01-16 2024-10-11 01:01:07 +3668 3668 3669 366.8 733.6 3668 1980-01-17 2024-10-11 01:01:08.000 1980-01-17 2024-10-11 01:01:08 +3669 3669 3670 366.9 733.8000000000001 3669 1980-01-18 2024-10-11 01:01:09.000 1980-01-18 2024-10-11 01:01:09 +3670 3670 3671 367 734 3670 1980-01-19 2024-10-11 01:01:10.000 1980-01-19 2024-10-11 01:01:10 +3671 3671 3672 367.1 734.2 3671 1980-01-20 2024-10-11 01:01:11.000 1980-01-20 2024-10-11 01:01:11 +3672 3672 3673 367.2 734.4000000000001 3672 1980-01-21 2024-10-11 01:01:12.000 1980-01-21 2024-10-11 01:01:12 +3673 3673 3674 367.3 734.6 3673 1980-01-22 2024-10-11 01:01:13.000 1980-01-22 2024-10-11 01:01:13 +3674 3674 3675 367.4 734.8000000000001 3674 1980-01-23 2024-10-11 01:01:14.000 1980-01-23 2024-10-11 01:01:14 +3675 3675 3676 367.5 735 3675 1980-01-24 2024-10-11 01:01:15.000 1980-01-24 2024-10-11 01:01:15 +3676 3676 3677 367.6 735.2 3676 1980-01-25 2024-10-11 01:01:16.000 1980-01-25 2024-10-11 01:01:16 +3677 3677 3678 367.7 735.4000000000001 3677 1980-01-26 2024-10-11 01:01:17.000 1980-01-26 2024-10-11 01:01:17 +3678 3678 3679 367.8 735.6 3678 1980-01-27 2024-10-11 01:01:18.000 1980-01-27 2024-10-11 01:01:18 +3679 3679 3680 367.9 735.8000000000001 3679 1980-01-28 2024-10-11 01:01:19.000 1980-01-28 2024-10-11 01:01:19 +3680 3680 3681 368 736 3680 1980-01-29 2024-10-11 01:01:20.000 1980-01-29 2024-10-11 01:01:20 +3681 3681 3682 368.1 736.2 3681 1980-01-30 2024-10-11 01:01:21.000 1980-01-30 2024-10-11 01:01:21 +3682 3682 3683 368.2 736.4000000000001 3682 1980-01-31 2024-10-11 01:01:22.000 1980-01-31 2024-10-11 01:01:22 +3683 3683 3684 368.3 736.6 3683 1980-02-01 2024-10-11 01:01:23.000 1980-02-01 2024-10-11 01:01:23 +3684 3684 3685 368.4 736.8000000000001 3684 1980-02-02 2024-10-11 01:01:24.000 1980-02-02 2024-10-11 01:01:24 +3685 3685 3686 368.5 737 3685 1980-02-03 2024-10-11 01:01:25.000 1980-02-03 2024-10-11 01:01:25 +3686 3686 3687 368.6 737.2 3686 1980-02-04 2024-10-11 01:01:26.000 1980-02-04 2024-10-11 01:01:26 +3687 3687 3688 368.7 737.4000000000001 3687 1980-02-05 2024-10-11 01:01:27.000 1980-02-05 2024-10-11 01:01:27 +3688 3688 3689 368.8 737.6 3688 1980-02-06 2024-10-11 01:01:28.000 1980-02-06 2024-10-11 01:01:28 +3689 3689 3690 368.9 737.8000000000001 3689 1980-02-07 2024-10-11 01:01:29.000 1980-02-07 2024-10-11 01:01:29 +3690 3690 3691 369 738 3690 1980-02-08 2024-10-11 01:01:30.000 1980-02-08 2024-10-11 01:01:30 +3691 3691 3692 369.1 738.2 3691 1980-02-09 2024-10-11 01:01:31.000 1980-02-09 2024-10-11 01:01:31 +3692 3692 3693 369.2 738.4000000000001 3692 1980-02-10 2024-10-11 01:01:32.000 1980-02-10 2024-10-11 01:01:32 +3693 3693 3694 369.3 738.6 3693 1980-02-11 2024-10-11 01:01:33.000 1980-02-11 2024-10-11 01:01:33 +3694 3694 3695 369.4 738.8000000000001 3694 1980-02-12 2024-10-11 01:01:34.000 1980-02-12 2024-10-11 01:01:34 +3695 3695 3696 369.5 739 3695 1980-02-13 2024-10-11 01:01:35.000 1980-02-13 2024-10-11 01:01:35 +3696 3696 3697 369.6 739.2 3696 1980-02-14 2024-10-11 01:01:36.000 1980-02-14 2024-10-11 01:01:36 +3697 3697 3698 369.7 739.4000000000001 3697 1980-02-15 2024-10-11 01:01:37.000 1980-02-15 2024-10-11 01:01:37 +3698 3698 3699 369.8 739.6 3698 1980-02-16 2024-10-11 01:01:38.000 1980-02-16 2024-10-11 01:01:38 +3699 3699 3700 369.9 739.8000000000001 3699 1980-02-17 2024-10-11 01:01:39.000 1980-02-17 2024-10-11 01:01:39 +3700 3700 3701 370 740 3700 1980-02-18 2024-10-11 01:01:40.000 1980-02-18 2024-10-11 01:01:40 +3701 3701 3702 370.1 740.2 3701 1980-02-19 2024-10-11 01:01:41.000 1980-02-19 2024-10-11 01:01:41 +3702 3702 3703 370.2 740.4000000000001 3702 1980-02-20 2024-10-11 01:01:42.000 1980-02-20 2024-10-11 01:01:42 +3703 3703 3704 370.3 740.6 3703 1980-02-21 2024-10-11 01:01:43.000 1980-02-21 2024-10-11 01:01:43 +3704 3704 3705 370.4 740.8000000000001 3704 1980-02-22 2024-10-11 01:01:44.000 1980-02-22 2024-10-11 01:01:44 +3705 3705 3706 370.5 741 3705 1980-02-23 2024-10-11 01:01:45.000 1980-02-23 2024-10-11 01:01:45 +3706 3706 3707 370.6 741.2 3706 1980-02-24 2024-10-11 01:01:46.000 1980-02-24 2024-10-11 01:01:46 +3707 3707 3708 370.7 741.4000000000001 3707 1980-02-25 2024-10-11 01:01:47.000 1980-02-25 2024-10-11 01:01:47 +3708 3708 3709 370.8 741.6 3708 1980-02-26 2024-10-11 01:01:48.000 1980-02-26 2024-10-11 01:01:48 +3709 3709 3710 370.9 741.8000000000001 3709 1980-02-27 2024-10-11 01:01:49.000 1980-02-27 2024-10-11 01:01:49 +3710 3710 3711 371 742 3710 1980-02-28 2024-10-11 01:01:50.000 1980-02-28 2024-10-11 01:01:50 +3711 3711 3712 371.1 742.2 3711 1980-02-29 2024-10-11 01:01:51.000 1980-02-29 2024-10-11 01:01:51 +3712 3712 3713 371.2 742.4000000000001 3712 1980-03-01 2024-10-11 01:01:52.000 1980-03-01 2024-10-11 01:01:52 +3713 3713 3714 371.3 742.6 3713 1980-03-02 2024-10-11 01:01:53.000 1980-03-02 2024-10-11 01:01:53 +3714 3714 3715 371.4 742.8000000000001 3714 1980-03-03 2024-10-11 01:01:54.000 1980-03-03 2024-10-11 01:01:54 +3715 3715 3716 371.5 743 3715 1980-03-04 2024-10-11 01:01:55.000 1980-03-04 2024-10-11 01:01:55 +3716 3716 3717 371.6 743.2 3716 1980-03-05 2024-10-11 01:01:56.000 1980-03-05 2024-10-11 01:01:56 +3717 3717 3718 371.7 743.4000000000001 3717 1980-03-06 2024-10-11 01:01:57.000 1980-03-06 2024-10-11 01:01:57 +3718 3718 3719 371.8 743.6 3718 1980-03-07 2024-10-11 01:01:58.000 1980-03-07 2024-10-11 01:01:58 +3719 3719 3720 371.9 743.8000000000001 3719 1980-03-08 2024-10-11 01:01:59.000 1980-03-08 2024-10-11 01:01:59 +3720 3720 3721 372 744 3720 1980-03-09 2024-10-11 01:02:00.000 1980-03-09 2024-10-11 01:02:00 +3721 3721 3722 372.1 744.2 3721 1980-03-10 2024-10-11 01:02:01.000 1980-03-10 2024-10-11 01:02:01 +3722 3722 3723 372.2 744.4000000000001 3722 1980-03-11 2024-10-11 01:02:02.000 1980-03-11 2024-10-11 01:02:02 +3723 3723 3724 372.3 744.6 3723 1980-03-12 2024-10-11 01:02:03.000 1980-03-12 2024-10-11 01:02:03 +3724 3724 3725 372.4 744.8000000000001 3724 1980-03-13 2024-10-11 01:02:04.000 1980-03-13 2024-10-11 01:02:04 +3725 3725 3726 372.5 745 3725 1980-03-14 2024-10-11 01:02:05.000 1980-03-14 2024-10-11 01:02:05 +3726 3726 3727 372.6 745.2 3726 1980-03-15 2024-10-11 01:02:06.000 1980-03-15 2024-10-11 01:02:06 +3727 3727 3728 372.7 745.4000000000001 3727 1980-03-16 2024-10-11 01:02:07.000 1980-03-16 2024-10-11 01:02:07 +3728 3728 3729 372.8 745.6 3728 1980-03-17 2024-10-11 01:02:08.000 1980-03-17 2024-10-11 01:02:08 +3729 3729 3730 372.9 745.8000000000001 3729 1980-03-18 2024-10-11 01:02:09.000 1980-03-18 2024-10-11 01:02:09 +3730 3730 3731 373 746 3730 1980-03-19 2024-10-11 01:02:10.000 1980-03-19 2024-10-11 01:02:10 +3731 3731 3732 373.1 746.2 3731 1980-03-20 2024-10-11 01:02:11.000 1980-03-20 2024-10-11 01:02:11 +3732 3732 3733 373.2 746.4000000000001 3732 1980-03-21 2024-10-11 01:02:12.000 1980-03-21 2024-10-11 01:02:12 +3733 3733 3734 373.3 746.6 3733 1980-03-22 2024-10-11 01:02:13.000 1980-03-22 2024-10-11 01:02:13 +3734 3734 3735 373.4 746.8000000000001 3734 1980-03-23 2024-10-11 01:02:14.000 1980-03-23 2024-10-11 01:02:14 +3735 3735 3736 373.5 747 3735 1980-03-24 2024-10-11 01:02:15.000 1980-03-24 2024-10-11 01:02:15 +3736 3736 3737 373.6 747.2 3736 1980-03-25 2024-10-11 01:02:16.000 1980-03-25 2024-10-11 01:02:16 +3737 3737 3738 373.7 747.4000000000001 3737 1980-03-26 2024-10-11 01:02:17.000 1980-03-26 2024-10-11 01:02:17 +3738 3738 3739 373.8 747.6 3738 1980-03-27 2024-10-11 01:02:18.000 1980-03-27 2024-10-11 01:02:18 +3739 3739 3740 373.9 747.8000000000001 3739 1980-03-28 2024-10-11 01:02:19.000 1980-03-28 2024-10-11 01:02:19 +3740 3740 3741 374 748 3740 1980-03-29 2024-10-11 01:02:20.000 1980-03-29 2024-10-11 01:02:20 +3741 3741 3742 374.1 748.2 3741 1980-03-30 2024-10-11 01:02:21.000 1980-03-30 2024-10-11 01:02:21 +3742 3742 3743 374.2 748.4000000000001 3742 1980-03-31 2024-10-11 01:02:22.000 1980-03-31 2024-10-11 01:02:22 +3743 3743 3744 374.3 748.6 3743 1980-04-01 2024-10-11 01:02:23.000 1980-04-01 2024-10-11 01:02:23 +3744 3744 3745 374.4 748.8000000000001 3744 1980-04-02 2024-10-11 01:02:24.000 1980-04-02 2024-10-11 01:02:24 +3745 3745 3746 374.5 749 3745 1980-04-03 2024-10-11 01:02:25.000 1980-04-03 2024-10-11 01:02:25 +3746 3746 3747 374.6 749.2 3746 1980-04-04 2024-10-11 01:02:26.000 1980-04-04 2024-10-11 01:02:26 +3747 3747 3748 374.7 749.4000000000001 3747 1980-04-05 2024-10-11 01:02:27.000 1980-04-05 2024-10-11 01:02:27 +3748 3748 3749 374.8 749.6 3748 1980-04-06 2024-10-11 01:02:28.000 1980-04-06 2024-10-11 01:02:28 +3749 3749 3750 374.9 749.8000000000001 3749 1980-04-07 2024-10-11 01:02:29.000 1980-04-07 2024-10-11 01:02:29 +3750 3750 3751 375 750 3750 1980-04-08 2024-10-11 01:02:30.000 1980-04-08 2024-10-11 01:02:30 +3751 3751 3752 375.1 750.2 3751 1980-04-09 2024-10-11 01:02:31.000 1980-04-09 2024-10-11 01:02:31 +3752 3752 3753 375.2 750.4000000000001 3752 1980-04-10 2024-10-11 01:02:32.000 1980-04-10 2024-10-11 01:02:32 +3753 3753 3754 375.3 750.6 3753 1980-04-11 2024-10-11 01:02:33.000 1980-04-11 2024-10-11 01:02:33 +3754 3754 3755 375.4 750.8000000000001 3754 1980-04-12 2024-10-11 01:02:34.000 1980-04-12 2024-10-11 01:02:34 +3755 3755 3756 375.5 751 3755 1980-04-13 2024-10-11 01:02:35.000 1980-04-13 2024-10-11 01:02:35 +3756 3756 3757 375.6 751.2 3756 1980-04-14 2024-10-11 01:02:36.000 1980-04-14 2024-10-11 01:02:36 +3757 3757 3758 375.7 751.4000000000001 3757 1980-04-15 2024-10-11 01:02:37.000 1980-04-15 2024-10-11 01:02:37 +3758 3758 3759 375.8 751.6 3758 1980-04-16 2024-10-11 01:02:38.000 1980-04-16 2024-10-11 01:02:38 +3759 3759 3760 375.9 751.8000000000001 3759 1980-04-17 2024-10-11 01:02:39.000 1980-04-17 2024-10-11 01:02:39 +3760 3760 3761 376 752 3760 1980-04-18 2024-10-11 01:02:40.000 1980-04-18 2024-10-11 01:02:40 +3761 3761 3762 376.1 752.2 3761 1980-04-19 2024-10-11 01:02:41.000 1980-04-19 2024-10-11 01:02:41 +3762 3762 3763 376.2 752.4000000000001 3762 1980-04-20 2024-10-11 01:02:42.000 1980-04-20 2024-10-11 01:02:42 +3763 3763 3764 376.3 752.6 3763 1980-04-21 2024-10-11 01:02:43.000 1980-04-21 2024-10-11 01:02:43 +3764 3764 3765 376.4 752.8000000000001 3764 1980-04-22 2024-10-11 01:02:44.000 1980-04-22 2024-10-11 01:02:44 +3765 3765 3766 376.5 753 3765 1980-04-23 2024-10-11 01:02:45.000 1980-04-23 2024-10-11 01:02:45 +3766 3766 3767 376.6 753.2 3766 1980-04-24 2024-10-11 01:02:46.000 1980-04-24 2024-10-11 01:02:46 +3767 3767 3768 376.7 753.4000000000001 3767 1980-04-25 2024-10-11 01:02:47.000 1980-04-25 2024-10-11 01:02:47 +3768 3768 3769 376.8 753.6 3768 1980-04-26 2024-10-11 01:02:48.000 1980-04-26 2024-10-11 01:02:48 +3769 3769 3770 376.9 753.8000000000001 3769 1980-04-27 2024-10-11 01:02:49.000 1980-04-27 2024-10-11 01:02:49 +3770 3770 3771 377 754 3770 1980-04-28 2024-10-11 01:02:50.000 1980-04-28 2024-10-11 01:02:50 +3771 3771 3772 377.1 754.2 3771 1980-04-29 2024-10-11 01:02:51.000 1980-04-29 2024-10-11 01:02:51 +3772 3772 3773 377.2 754.4000000000001 3772 1980-04-30 2024-10-11 01:02:52.000 1980-04-30 2024-10-11 01:02:52 +3773 3773 3774 377.3 754.6 3773 1980-05-01 2024-10-11 01:02:53.000 1980-05-01 2024-10-11 01:02:53 +3774 3774 3775 377.4 754.8000000000001 3774 1980-05-02 2024-10-11 01:02:54.000 1980-05-02 2024-10-11 01:02:54 +3775 3775 3776 377.5 755 3775 1980-05-03 2024-10-11 01:02:55.000 1980-05-03 2024-10-11 01:02:55 +3776 3776 3777 377.6 755.2 3776 1980-05-04 2024-10-11 01:02:56.000 1980-05-04 2024-10-11 01:02:56 +3777 3777 3778 377.7 755.4000000000001 3777 1980-05-05 2024-10-11 01:02:57.000 1980-05-05 2024-10-11 01:02:57 +3778 3778 3779 377.8 755.6 3778 1980-05-06 2024-10-11 01:02:58.000 1980-05-06 2024-10-11 01:02:58 +3779 3779 3780 377.9 755.8000000000001 3779 1980-05-07 2024-10-11 01:02:59.000 1980-05-07 2024-10-11 01:02:59 +3780 3780 3781 378 756 3780 1980-05-08 2024-10-11 01:03:00.000 1980-05-08 2024-10-11 01:03:00 +3781 3781 3782 378.1 756.2 3781 1980-05-09 2024-10-11 01:03:01.000 1980-05-09 2024-10-11 01:03:01 +3782 3782 3783 378.2 756.4000000000001 3782 1980-05-10 2024-10-11 01:03:02.000 1980-05-10 2024-10-11 01:03:02 +3783 3783 3784 378.3 756.6 3783 1980-05-11 2024-10-11 01:03:03.000 1980-05-11 2024-10-11 01:03:03 +3784 3784 3785 378.4 756.8000000000001 3784 1980-05-12 2024-10-11 01:03:04.000 1980-05-12 2024-10-11 01:03:04 +3785 3785 3786 378.5 757 3785 1980-05-13 2024-10-11 01:03:05.000 1980-05-13 2024-10-11 01:03:05 +3786 3786 3787 378.6 757.2 3786 1980-05-14 2024-10-11 01:03:06.000 1980-05-14 2024-10-11 01:03:06 +3787 3787 3788 378.7 757.4000000000001 3787 1980-05-15 2024-10-11 01:03:07.000 1980-05-15 2024-10-11 01:03:07 +3788 3788 3789 378.8 757.6 3788 1980-05-16 2024-10-11 01:03:08.000 1980-05-16 2024-10-11 01:03:08 +3789 3789 3790 378.9 757.8000000000001 3789 1980-05-17 2024-10-11 01:03:09.000 1980-05-17 2024-10-11 01:03:09 +3790 3790 3791 379 758 3790 1980-05-18 2024-10-11 01:03:10.000 1980-05-18 2024-10-11 01:03:10 +3791 3791 3792 379.1 758.2 3791 1980-05-19 2024-10-11 01:03:11.000 1980-05-19 2024-10-11 01:03:11 +3792 3792 3793 379.2 758.4000000000001 3792 1980-05-20 2024-10-11 01:03:12.000 1980-05-20 2024-10-11 01:03:12 +3793 3793 3794 379.3 758.6 3793 1980-05-21 2024-10-11 01:03:13.000 1980-05-21 2024-10-11 01:03:13 +3794 3794 3795 379.4 758.8000000000001 3794 1980-05-22 2024-10-11 01:03:14.000 1980-05-22 2024-10-11 01:03:14 +3795 3795 3796 379.5 759 3795 1980-05-23 2024-10-11 01:03:15.000 1980-05-23 2024-10-11 01:03:15 +3796 3796 3797 379.6 759.2 3796 1980-05-24 2024-10-11 01:03:16.000 1980-05-24 2024-10-11 01:03:16 +3797 3797 3798 379.7 759.4000000000001 3797 1980-05-25 2024-10-11 01:03:17.000 1980-05-25 2024-10-11 01:03:17 +3798 3798 3799 379.8 759.6 3798 1980-05-26 2024-10-11 01:03:18.000 1980-05-26 2024-10-11 01:03:18 +3799 3799 3800 379.9 759.8000000000001 3799 1980-05-27 2024-10-11 01:03:19.000 1980-05-27 2024-10-11 01:03:19 +3800 3800 3801 380 760 3800 1980-05-28 2024-10-11 01:03:20.000 1980-05-28 2024-10-11 01:03:20 +3801 3801 3802 380.1 760.2 3801 1980-05-29 2024-10-11 01:03:21.000 1980-05-29 2024-10-11 01:03:21 +3802 3802 3803 380.2 760.4000000000001 3802 1980-05-30 2024-10-11 01:03:22.000 1980-05-30 2024-10-11 01:03:22 +3803 3803 3804 380.3 760.6 3803 1980-05-31 2024-10-11 01:03:23.000 1980-05-31 2024-10-11 01:03:23 +3804 3804 3805 380.4 760.8000000000001 3804 1980-06-01 2024-10-11 01:03:24.000 1980-06-01 2024-10-11 01:03:24 +3805 3805 3806 380.5 761 3805 1980-06-02 2024-10-11 01:03:25.000 1980-06-02 2024-10-11 01:03:25 +3806 3806 3807 380.6 761.2 3806 1980-06-03 2024-10-11 01:03:26.000 1980-06-03 2024-10-11 01:03:26 +3807 3807 3808 380.7 761.4000000000001 3807 1980-06-04 2024-10-11 01:03:27.000 1980-06-04 2024-10-11 01:03:27 +3808 3808 3809 380.8 761.6 3808 1980-06-05 2024-10-11 01:03:28.000 1980-06-05 2024-10-11 01:03:28 +3809 3809 3810 380.9 761.8000000000001 3809 1980-06-06 2024-10-11 01:03:29.000 1980-06-06 2024-10-11 01:03:29 +3810 3810 3811 381 762 3810 1980-06-07 2024-10-11 01:03:30.000 1980-06-07 2024-10-11 01:03:30 +3811 3811 3812 381.1 762.2 3811 1980-06-08 2024-10-11 01:03:31.000 1980-06-08 2024-10-11 01:03:31 +3812 3812 3813 381.2 762.4000000000001 3812 1980-06-09 2024-10-11 01:03:32.000 1980-06-09 2024-10-11 01:03:32 +3813 3813 3814 381.3 762.6 3813 1980-06-10 2024-10-11 01:03:33.000 1980-06-10 2024-10-11 01:03:33 +3814 3814 3815 381.4 762.8000000000001 3814 1980-06-11 2024-10-11 01:03:34.000 1980-06-11 2024-10-11 01:03:34 +3815 3815 3816 381.5 763 3815 1980-06-12 2024-10-11 01:03:35.000 1980-06-12 2024-10-11 01:03:35 +3816 3816 3817 381.6 763.2 3816 1980-06-13 2024-10-11 01:03:36.000 1980-06-13 2024-10-11 01:03:36 +3817 3817 3818 381.7 763.4000000000001 3817 1980-06-14 2024-10-11 01:03:37.000 1980-06-14 2024-10-11 01:03:37 +3818 3818 3819 381.8 763.6 3818 1980-06-15 2024-10-11 01:03:38.000 1980-06-15 2024-10-11 01:03:38 +3819 3819 3820 381.9 763.8000000000001 3819 1980-06-16 2024-10-11 01:03:39.000 1980-06-16 2024-10-11 01:03:39 +3820 3820 3821 382 764 3820 1980-06-17 2024-10-11 01:03:40.000 1980-06-17 2024-10-11 01:03:40 +3821 3821 3822 382.1 764.2 3821 1980-06-18 2024-10-11 01:03:41.000 1980-06-18 2024-10-11 01:03:41 +3822 3822 3823 382.2 764.4000000000001 3822 1980-06-19 2024-10-11 01:03:42.000 1980-06-19 2024-10-11 01:03:42 +3823 3823 3824 382.3 764.6 3823 1980-06-20 2024-10-11 01:03:43.000 1980-06-20 2024-10-11 01:03:43 +3824 3824 3825 382.4 764.8000000000001 3824 1980-06-21 2024-10-11 01:03:44.000 1980-06-21 2024-10-11 01:03:44 +3825 3825 3826 382.5 765 3825 1980-06-22 2024-10-11 01:03:45.000 1980-06-22 2024-10-11 01:03:45 +3826 3826 3827 382.6 765.2 3826 1980-06-23 2024-10-11 01:03:46.000 1980-06-23 2024-10-11 01:03:46 +3827 3827 3828 382.7 765.4000000000001 3827 1980-06-24 2024-10-11 01:03:47.000 1980-06-24 2024-10-11 01:03:47 +3828 3828 3829 382.8 765.6 3828 1980-06-25 2024-10-11 01:03:48.000 1980-06-25 2024-10-11 01:03:48 +3829 3829 3830 382.9 765.8000000000001 3829 1980-06-26 2024-10-11 01:03:49.000 1980-06-26 2024-10-11 01:03:49 +3830 3830 3831 383 766 3830 1980-06-27 2024-10-11 01:03:50.000 1980-06-27 2024-10-11 01:03:50 +3831 3831 3832 383.1 766.2 3831 1980-06-28 2024-10-11 01:03:51.000 1980-06-28 2024-10-11 01:03:51 +3832 3832 3833 383.2 766.4000000000001 3832 1980-06-29 2024-10-11 01:03:52.000 1980-06-29 2024-10-11 01:03:52 +3833 3833 3834 383.3 766.6 3833 1980-06-30 2024-10-11 01:03:53.000 1980-06-30 2024-10-11 01:03:53 +3834 3834 3835 383.4 766.8000000000001 3834 1980-07-01 2024-10-11 01:03:54.000 1980-07-01 2024-10-11 01:03:54 +3835 3835 3836 383.5 767 3835 1980-07-02 2024-10-11 01:03:55.000 1980-07-02 2024-10-11 01:03:55 +3836 3836 3837 383.6 767.2 3836 1980-07-03 2024-10-11 01:03:56.000 1980-07-03 2024-10-11 01:03:56 +3837 3837 3838 383.7 767.4000000000001 3837 1980-07-04 2024-10-11 01:03:57.000 1980-07-04 2024-10-11 01:03:57 +3838 3838 3839 383.8 767.6 3838 1980-07-05 2024-10-11 01:03:58.000 1980-07-05 2024-10-11 01:03:58 +3839 3839 3840 383.9 767.8000000000001 3839 1980-07-06 2024-10-11 01:03:59.000 1980-07-06 2024-10-11 01:03:59 +3840 3840 3841 384 768 3840 1980-07-07 2024-10-11 01:04:00.000 1980-07-07 2024-10-11 01:04:00 +3841 3841 3842 384.1 768.2 3841 1980-07-08 2024-10-11 01:04:01.000 1980-07-08 2024-10-11 01:04:01 +3842 3842 3843 384.2 768.4000000000001 3842 1980-07-09 2024-10-11 01:04:02.000 1980-07-09 2024-10-11 01:04:02 +3843 3843 3844 384.3 768.6 3843 1980-07-10 2024-10-11 01:04:03.000 1980-07-10 2024-10-11 01:04:03 +3844 3844 3845 384.4 768.8000000000001 3844 1980-07-11 2024-10-11 01:04:04.000 1980-07-11 2024-10-11 01:04:04 +3845 3845 3846 384.5 769 3845 1980-07-12 2024-10-11 01:04:05.000 1980-07-12 2024-10-11 01:04:05 +3846 3846 3847 384.6 769.2 3846 1980-07-13 2024-10-11 01:04:06.000 1980-07-13 2024-10-11 01:04:06 +3847 3847 3848 384.7 769.4000000000001 3847 1980-07-14 2024-10-11 01:04:07.000 1980-07-14 2024-10-11 01:04:07 +3848 3848 3849 384.8 769.6 3848 1980-07-15 2024-10-11 01:04:08.000 1980-07-15 2024-10-11 01:04:08 +3849 3849 3850 384.9 769.8000000000001 3849 1980-07-16 2024-10-11 01:04:09.000 1980-07-16 2024-10-11 01:04:09 +3850 3850 3851 385 770 3850 1980-07-17 2024-10-11 01:04:10.000 1980-07-17 2024-10-11 01:04:10 +3851 3851 3852 385.1 770.2 3851 1980-07-18 2024-10-11 01:04:11.000 1980-07-18 2024-10-11 01:04:11 +3852 3852 3853 385.2 770.4000000000001 3852 1980-07-19 2024-10-11 01:04:12.000 1980-07-19 2024-10-11 01:04:12 +3853 3853 3854 385.3 770.6 3853 1980-07-20 2024-10-11 01:04:13.000 1980-07-20 2024-10-11 01:04:13 +3854 3854 3855 385.4 770.8000000000001 3854 1980-07-21 2024-10-11 01:04:14.000 1980-07-21 2024-10-11 01:04:14 +3855 3855 3856 385.5 771 3855 1980-07-22 2024-10-11 01:04:15.000 1980-07-22 2024-10-11 01:04:15 +3856 3856 3857 385.6 771.2 3856 1980-07-23 2024-10-11 01:04:16.000 1980-07-23 2024-10-11 01:04:16 +3857 3857 3858 385.7 771.4000000000001 3857 1980-07-24 2024-10-11 01:04:17.000 1980-07-24 2024-10-11 01:04:17 +3858 3858 3859 385.8 771.6 3858 1980-07-25 2024-10-11 01:04:18.000 1980-07-25 2024-10-11 01:04:18 +3859 3859 3860 385.9 771.8000000000001 3859 1980-07-26 2024-10-11 01:04:19.000 1980-07-26 2024-10-11 01:04:19 +3860 3860 3861 386 772 3860 1980-07-27 2024-10-11 01:04:20.000 1980-07-27 2024-10-11 01:04:20 +3861 3861 3862 386.1 772.2 3861 1980-07-28 2024-10-11 01:04:21.000 1980-07-28 2024-10-11 01:04:21 +3862 3862 3863 386.2 772.4000000000001 3862 1980-07-29 2024-10-11 01:04:22.000 1980-07-29 2024-10-11 01:04:22 +3863 3863 3864 386.3 772.6 3863 1980-07-30 2024-10-11 01:04:23.000 1980-07-30 2024-10-11 01:04:23 +3864 3864 3865 386.4 772.8000000000001 3864 1980-07-31 2024-10-11 01:04:24.000 1980-07-31 2024-10-11 01:04:24 +3865 3865 3866 386.5 773 3865 1980-08-01 2024-10-11 01:04:25.000 1980-08-01 2024-10-11 01:04:25 +3866 3866 3867 386.6 773.2 3866 1980-08-02 2024-10-11 01:04:26.000 1980-08-02 2024-10-11 01:04:26 +3867 3867 3868 386.7 773.4000000000001 3867 1980-08-03 2024-10-11 01:04:27.000 1980-08-03 2024-10-11 01:04:27 +3868 3868 3869 386.8 773.6 3868 1980-08-04 2024-10-11 01:04:28.000 1980-08-04 2024-10-11 01:04:28 +3869 3869 3870 386.9 773.8000000000001 3869 1980-08-05 2024-10-11 01:04:29.000 1980-08-05 2024-10-11 01:04:29 +3870 3870 3871 387 774 3870 1980-08-06 2024-10-11 01:04:30.000 1980-08-06 2024-10-11 01:04:30 +3871 3871 3872 387.1 774.2 3871 1980-08-07 2024-10-11 01:04:31.000 1980-08-07 2024-10-11 01:04:31 +3872 3872 3873 387.2 774.4000000000001 3872 1980-08-08 2024-10-11 01:04:32.000 1980-08-08 2024-10-11 01:04:32 +3873 3873 3874 387.3 774.6 3873 1980-08-09 2024-10-11 01:04:33.000 1980-08-09 2024-10-11 01:04:33 +3874 3874 3875 387.4 774.8000000000001 3874 1980-08-10 2024-10-11 01:04:34.000 1980-08-10 2024-10-11 01:04:34 +3875 3875 3876 387.5 775 3875 1980-08-11 2024-10-11 01:04:35.000 1980-08-11 2024-10-11 01:04:35 +3876 3876 3877 387.6 775.2 3876 1980-08-12 2024-10-11 01:04:36.000 1980-08-12 2024-10-11 01:04:36 +3877 3877 3878 387.7 775.4000000000001 3877 1980-08-13 2024-10-11 01:04:37.000 1980-08-13 2024-10-11 01:04:37 +3878 3878 3879 387.8 775.6 3878 1980-08-14 2024-10-11 01:04:38.000 1980-08-14 2024-10-11 01:04:38 +3879 3879 3880 387.9 775.8000000000001 3879 1980-08-15 2024-10-11 01:04:39.000 1980-08-15 2024-10-11 01:04:39 +3880 3880 3881 388 776 3880 1980-08-16 2024-10-11 01:04:40.000 1980-08-16 2024-10-11 01:04:40 +3881 3881 3882 388.1 776.2 3881 1980-08-17 2024-10-11 01:04:41.000 1980-08-17 2024-10-11 01:04:41 +3882 3882 3883 388.2 776.4000000000001 3882 1980-08-18 2024-10-11 01:04:42.000 1980-08-18 2024-10-11 01:04:42 +3883 3883 3884 388.3 776.6 3883 1980-08-19 2024-10-11 01:04:43.000 1980-08-19 2024-10-11 01:04:43 +3884 3884 3885 388.4 776.8000000000001 3884 1980-08-20 2024-10-11 01:04:44.000 1980-08-20 2024-10-11 01:04:44 +3885 3885 3886 388.5 777 3885 1980-08-21 2024-10-11 01:04:45.000 1980-08-21 2024-10-11 01:04:45 +3886 3886 3887 388.6 777.2 3886 1980-08-22 2024-10-11 01:04:46.000 1980-08-22 2024-10-11 01:04:46 +3887 3887 3888 388.7 777.4000000000001 3887 1980-08-23 2024-10-11 01:04:47.000 1980-08-23 2024-10-11 01:04:47 +3888 3888 3889 388.8 777.6 3888 1980-08-24 2024-10-11 01:04:48.000 1980-08-24 2024-10-11 01:04:48 +3889 3889 3890 388.9 777.8000000000001 3889 1980-08-25 2024-10-11 01:04:49.000 1980-08-25 2024-10-11 01:04:49 +3890 3890 3891 389 778 3890 1980-08-26 2024-10-11 01:04:50.000 1980-08-26 2024-10-11 01:04:50 +3891 3891 3892 389.1 778.2 3891 1980-08-27 2024-10-11 01:04:51.000 1980-08-27 2024-10-11 01:04:51 +3892 3892 3893 389.2 778.4000000000001 3892 1980-08-28 2024-10-11 01:04:52.000 1980-08-28 2024-10-11 01:04:52 +3893 3893 3894 389.3 778.6 3893 1980-08-29 2024-10-11 01:04:53.000 1980-08-29 2024-10-11 01:04:53 +3894 3894 3895 389.4 778.8000000000001 3894 1980-08-30 2024-10-11 01:04:54.000 1980-08-30 2024-10-11 01:04:54 +3895 3895 3896 389.5 779 3895 1980-08-31 2024-10-11 01:04:55.000 1980-08-31 2024-10-11 01:04:55 +3896 3896 3897 389.6 779.2 3896 1980-09-01 2024-10-11 01:04:56.000 1980-09-01 2024-10-11 01:04:56 +3897 3897 3898 389.7 779.4000000000001 3897 1980-09-02 2024-10-11 01:04:57.000 1980-09-02 2024-10-11 01:04:57 +3898 3898 3899 389.8 779.6 3898 1980-09-03 2024-10-11 01:04:58.000 1980-09-03 2024-10-11 01:04:58 +3899 3899 3900 389.9 779.8000000000001 3899 1980-09-04 2024-10-11 01:04:59.000 1980-09-04 2024-10-11 01:04:59 +3900 3900 3901 390 780 3900 1980-09-05 2024-10-11 01:05:00.000 1980-09-05 2024-10-11 01:05:00 +3901 3901 3902 390.1 780.2 3901 1980-09-06 2024-10-11 01:05:01.000 1980-09-06 2024-10-11 01:05:01 +3902 3902 3903 390.2 780.4000000000001 3902 1980-09-07 2024-10-11 01:05:02.000 1980-09-07 2024-10-11 01:05:02 +3903 3903 3904 390.3 780.6 3903 1980-09-08 2024-10-11 01:05:03.000 1980-09-08 2024-10-11 01:05:03 +3904 3904 3905 390.4 780.8000000000001 3904 1980-09-09 2024-10-11 01:05:04.000 1980-09-09 2024-10-11 01:05:04 +3905 3905 3906 390.5 781 3905 1980-09-10 2024-10-11 01:05:05.000 1980-09-10 2024-10-11 01:05:05 +3906 3906 3907 390.6 781.2 3906 1980-09-11 2024-10-11 01:05:06.000 1980-09-11 2024-10-11 01:05:06 +3907 3907 3908 390.7 781.4000000000001 3907 1980-09-12 2024-10-11 01:05:07.000 1980-09-12 2024-10-11 01:05:07 +3908 3908 3909 390.8 781.6 3908 1980-09-13 2024-10-11 01:05:08.000 1980-09-13 2024-10-11 01:05:08 +3909 3909 3910 390.9 781.8000000000001 3909 1980-09-14 2024-10-11 01:05:09.000 1980-09-14 2024-10-11 01:05:09 +3910 3910 3911 391 782 3910 1980-09-15 2024-10-11 01:05:10.000 1980-09-15 2024-10-11 01:05:10 +3911 3911 3912 391.1 782.2 3911 1980-09-16 2024-10-11 01:05:11.000 1980-09-16 2024-10-11 01:05:11 +3912 3912 3913 391.2 782.4000000000001 3912 1980-09-17 2024-10-11 01:05:12.000 1980-09-17 2024-10-11 01:05:12 +3913 3913 3914 391.3 782.6 3913 1980-09-18 2024-10-11 01:05:13.000 1980-09-18 2024-10-11 01:05:13 +3914 3914 3915 391.4 782.8000000000001 3914 1980-09-19 2024-10-11 01:05:14.000 1980-09-19 2024-10-11 01:05:14 +3915 3915 3916 391.5 783 3915 1980-09-20 2024-10-11 01:05:15.000 1980-09-20 2024-10-11 01:05:15 +3916 3916 3917 391.6 783.2 3916 1980-09-21 2024-10-11 01:05:16.000 1980-09-21 2024-10-11 01:05:16 +3917 3917 3918 391.7 783.4000000000001 3917 1980-09-22 2024-10-11 01:05:17.000 1980-09-22 2024-10-11 01:05:17 +3918 3918 3919 391.8 783.6 3918 1980-09-23 2024-10-11 01:05:18.000 1980-09-23 2024-10-11 01:05:18 +3919 3919 3920 391.9 783.8000000000001 3919 1980-09-24 2024-10-11 01:05:19.000 1980-09-24 2024-10-11 01:05:19 +3920 3920 3921 392 784 3920 1980-09-25 2024-10-11 01:05:20.000 1980-09-25 2024-10-11 01:05:20 +3921 3921 3922 392.1 784.2 3921 1980-09-26 2024-10-11 01:05:21.000 1980-09-26 2024-10-11 01:05:21 +3922 3922 3923 392.2 784.4000000000001 3922 1980-09-27 2024-10-11 01:05:22.000 1980-09-27 2024-10-11 01:05:22 +3923 3923 3924 392.3 784.6 3923 1980-09-28 2024-10-11 01:05:23.000 1980-09-28 2024-10-11 01:05:23 +3924 3924 3925 392.4 784.8000000000001 3924 1980-09-29 2024-10-11 01:05:24.000 1980-09-29 2024-10-11 01:05:24 +3925 3925 3926 392.5 785 3925 1980-09-30 2024-10-11 01:05:25.000 1980-09-30 2024-10-11 01:05:25 +3926 3926 3927 392.6 785.2 3926 1980-10-01 2024-10-11 01:05:26.000 1980-10-01 2024-10-11 01:05:26 +3927 3927 3928 392.7 785.4000000000001 3927 1980-10-02 2024-10-11 01:05:27.000 1980-10-02 2024-10-11 01:05:27 +3928 3928 3929 392.8 785.6 3928 1980-10-03 2024-10-11 01:05:28.000 1980-10-03 2024-10-11 01:05:28 +3929 3929 3930 392.9 785.8000000000001 3929 1980-10-04 2024-10-11 01:05:29.000 1980-10-04 2024-10-11 01:05:29 +3930 3930 3931 393 786 3930 1980-10-05 2024-10-11 01:05:30.000 1980-10-05 2024-10-11 01:05:30 +3931 3931 3932 393.1 786.2 3931 1980-10-06 2024-10-11 01:05:31.000 1980-10-06 2024-10-11 01:05:31 +3932 3932 3933 393.2 786.4000000000001 3932 1980-10-07 2024-10-11 01:05:32.000 1980-10-07 2024-10-11 01:05:32 +3933 3933 3934 393.3 786.6 3933 1980-10-08 2024-10-11 01:05:33.000 1980-10-08 2024-10-11 01:05:33 +3934 3934 3935 393.4 786.8000000000001 3934 1980-10-09 2024-10-11 01:05:34.000 1980-10-09 2024-10-11 01:05:34 +3935 3935 3936 393.5 787 3935 1980-10-10 2024-10-11 01:05:35.000 1980-10-10 2024-10-11 01:05:35 +3936 3936 3937 393.6 787.2 3936 1980-10-11 2024-10-11 01:05:36.000 1980-10-11 2024-10-11 01:05:36 +3937 3937 3938 393.7 787.4000000000001 3937 1980-10-12 2024-10-11 01:05:37.000 1980-10-12 2024-10-11 01:05:37 +3938 3938 3939 393.8 787.6 3938 1980-10-13 2024-10-11 01:05:38.000 1980-10-13 2024-10-11 01:05:38 +3939 3939 3940 393.9 787.8000000000001 3939 1980-10-14 2024-10-11 01:05:39.000 1980-10-14 2024-10-11 01:05:39 +3940 3940 3941 394 788 3940 1980-10-15 2024-10-11 01:05:40.000 1980-10-15 2024-10-11 01:05:40 +3941 3941 3942 394.1 788.2 3941 1980-10-16 2024-10-11 01:05:41.000 1980-10-16 2024-10-11 01:05:41 +3942 3942 3943 394.2 788.4000000000001 3942 1980-10-17 2024-10-11 01:05:42.000 1980-10-17 2024-10-11 01:05:42 +3943 3943 3944 394.3 788.6 3943 1980-10-18 2024-10-11 01:05:43.000 1980-10-18 2024-10-11 01:05:43 +3944 3944 3945 394.4 788.8000000000001 3944 1980-10-19 2024-10-11 01:05:44.000 1980-10-19 2024-10-11 01:05:44 +3945 3945 3946 394.5 789 3945 1980-10-20 2024-10-11 01:05:45.000 1980-10-20 2024-10-11 01:05:45 +3946 3946 3947 394.6 789.2 3946 1980-10-21 2024-10-11 01:05:46.000 1980-10-21 2024-10-11 01:05:46 +3947 3947 3948 394.7 789.4000000000001 3947 1980-10-22 2024-10-11 01:05:47.000 1980-10-22 2024-10-11 01:05:47 +3948 3948 3949 394.8 789.6 3948 1980-10-23 2024-10-11 01:05:48.000 1980-10-23 2024-10-11 01:05:48 +3949 3949 3950 394.9 789.8000000000001 3949 1980-10-24 2024-10-11 01:05:49.000 1980-10-24 2024-10-11 01:05:49 +3950 3950 3951 395 790 3950 1980-10-25 2024-10-11 01:05:50.000 1980-10-25 2024-10-11 01:05:50 +3951 3951 3952 395.1 790.2 3951 1980-10-26 2024-10-11 01:05:51.000 1980-10-26 2024-10-11 01:05:51 +3952 3952 3953 395.2 790.4000000000001 3952 1980-10-27 2024-10-11 01:05:52.000 1980-10-27 2024-10-11 01:05:52 +3953 3953 3954 395.3 790.6 3953 1980-10-28 2024-10-11 01:05:53.000 1980-10-28 2024-10-11 01:05:53 +3954 3954 3955 395.4 790.8000000000001 3954 1980-10-29 2024-10-11 01:05:54.000 1980-10-29 2024-10-11 01:05:54 +3955 3955 3956 395.5 791 3955 1980-10-30 2024-10-11 01:05:55.000 1980-10-30 2024-10-11 01:05:55 +3956 3956 3957 395.6 791.2 3956 1980-10-31 2024-10-11 01:05:56.000 1980-10-31 2024-10-11 01:05:56 +3957 3957 3958 395.7 791.4000000000001 3957 1980-11-01 2024-10-11 01:05:57.000 1980-11-01 2024-10-11 01:05:57 +3958 3958 3959 395.8 791.6 3958 1980-11-02 2024-10-11 01:05:58.000 1980-11-02 2024-10-11 01:05:58 +3959 3959 3960 395.9 791.8000000000001 3959 1980-11-03 2024-10-11 01:05:59.000 1980-11-03 2024-10-11 01:05:59 +3960 3960 3961 396 792 3960 1980-11-04 2024-10-11 01:06:00.000 1980-11-04 2024-10-11 01:06:00 +3961 3961 3962 396.1 792.2 3961 1980-11-05 2024-10-11 01:06:01.000 1980-11-05 2024-10-11 01:06:01 +3962 3962 3963 396.2 792.4000000000001 3962 1980-11-06 2024-10-11 01:06:02.000 1980-11-06 2024-10-11 01:06:02 +3963 3963 3964 396.3 792.6 3963 1980-11-07 2024-10-11 01:06:03.000 1980-11-07 2024-10-11 01:06:03 +3964 3964 3965 396.4 792.8000000000001 3964 1980-11-08 2024-10-11 01:06:04.000 1980-11-08 2024-10-11 01:06:04 +3965 3965 3966 396.5 793 3965 1980-11-09 2024-10-11 01:06:05.000 1980-11-09 2024-10-11 01:06:05 +3966 3966 3967 396.6 793.2 3966 1980-11-10 2024-10-11 01:06:06.000 1980-11-10 2024-10-11 01:06:06 +3967 3967 3968 396.7 793.4000000000001 3967 1980-11-11 2024-10-11 01:06:07.000 1980-11-11 2024-10-11 01:06:07 +3968 3968 3969 396.8 793.6 3968 1980-11-12 2024-10-11 01:06:08.000 1980-11-12 2024-10-11 01:06:08 +3969 3969 3970 396.9 793.8000000000001 3969 1980-11-13 2024-10-11 01:06:09.000 1980-11-13 2024-10-11 01:06:09 +3970 3970 3971 397 794 3970 1980-11-14 2024-10-11 01:06:10.000 1980-11-14 2024-10-11 01:06:10 +3971 3971 3972 397.1 794.2 3971 1980-11-15 2024-10-11 01:06:11.000 1980-11-15 2024-10-11 01:06:11 +3972 3972 3973 397.2 794.4000000000001 3972 1980-11-16 2024-10-11 01:06:12.000 1980-11-16 2024-10-11 01:06:12 +3973 3973 3974 397.3 794.6 3973 1980-11-17 2024-10-11 01:06:13.000 1980-11-17 2024-10-11 01:06:13 +3974 3974 3975 397.4 794.8000000000001 3974 1980-11-18 2024-10-11 01:06:14.000 1980-11-18 2024-10-11 01:06:14 +3975 3975 3976 397.5 795 3975 1980-11-19 2024-10-11 01:06:15.000 1980-11-19 2024-10-11 01:06:15 +3976 3976 3977 397.6 795.2 3976 1980-11-20 2024-10-11 01:06:16.000 1980-11-20 2024-10-11 01:06:16 +3977 3977 3978 397.7 795.4000000000001 3977 1980-11-21 2024-10-11 01:06:17.000 1980-11-21 2024-10-11 01:06:17 +3978 3978 3979 397.8 795.6 3978 1980-11-22 2024-10-11 01:06:18.000 1980-11-22 2024-10-11 01:06:18 +3979 3979 3980 397.9 795.8000000000001 3979 1980-11-23 2024-10-11 01:06:19.000 1980-11-23 2024-10-11 01:06:19 +3980 3980 3981 398 796 3980 1980-11-24 2024-10-11 01:06:20.000 1980-11-24 2024-10-11 01:06:20 +3981 3981 3982 398.1 796.2 3981 1980-11-25 2024-10-11 01:06:21.000 1980-11-25 2024-10-11 01:06:21 +3982 3982 3983 398.2 796.4000000000001 3982 1980-11-26 2024-10-11 01:06:22.000 1980-11-26 2024-10-11 01:06:22 +3983 3983 3984 398.3 796.6 3983 1980-11-27 2024-10-11 01:06:23.000 1980-11-27 2024-10-11 01:06:23 +3984 3984 3985 398.4 796.8000000000001 3984 1980-11-28 2024-10-11 01:06:24.000 1980-11-28 2024-10-11 01:06:24 +3985 3985 3986 398.5 797 3985 1980-11-29 2024-10-11 01:06:25.000 1980-11-29 2024-10-11 01:06:25 +3986 3986 3987 398.6 797.2 3986 1980-11-30 2024-10-11 01:06:26.000 1980-11-30 2024-10-11 01:06:26 +3987 3987 3988 398.7 797.4000000000001 3987 1980-12-01 2024-10-11 01:06:27.000 1980-12-01 2024-10-11 01:06:27 +3988 3988 3989 398.8 797.6 3988 1980-12-02 2024-10-11 01:06:28.000 1980-12-02 2024-10-11 01:06:28 +3989 3989 3990 398.9 797.8000000000001 3989 1980-12-03 2024-10-11 01:06:29.000 1980-12-03 2024-10-11 01:06:29 +3990 3990 3991 399 798 3990 1980-12-04 2024-10-11 01:06:30.000 1980-12-04 2024-10-11 01:06:30 +3991 3991 3992 399.1 798.2 3991 1980-12-05 2024-10-11 01:06:31.000 1980-12-05 2024-10-11 01:06:31 +3992 3992 3993 399.2 798.4000000000001 3992 1980-12-06 2024-10-11 01:06:32.000 1980-12-06 2024-10-11 01:06:32 +3993 3993 3994 399.3 798.6 3993 1980-12-07 2024-10-11 01:06:33.000 1980-12-07 2024-10-11 01:06:33 +3994 3994 3995 399.4 798.8000000000001 3994 1980-12-08 2024-10-11 01:06:34.000 1980-12-08 2024-10-11 01:06:34 +3995 3995 3996 399.5 799 3995 1980-12-09 2024-10-11 01:06:35.000 1980-12-09 2024-10-11 01:06:35 +3996 3996 3997 399.6 799.2 3996 1980-12-10 2024-10-11 01:06:36.000 1980-12-10 2024-10-11 01:06:36 +3997 3997 3998 399.7 799.4000000000001 3997 1980-12-11 2024-10-11 01:06:37.000 1980-12-11 2024-10-11 01:06:37 +3998 3998 3999 399.8 799.6 3998 1980-12-12 2024-10-11 01:06:38.000 1980-12-12 2024-10-11 01:06:38 +3999 3999 4000 399.9 799.8000000000001 3999 1980-12-13 2024-10-11 01:06:39.000 1980-12-13 2024-10-11 01:06:39 +4000 4000 4001 400 800 4000 1980-12-14 2024-10-11 01:06:40.000 1980-12-14 2024-10-11 01:06:40 +4001 4001 4002 400.1 800.2 4001 1980-12-15 2024-10-11 01:06:41.000 1980-12-15 2024-10-11 01:06:41 +4002 4002 4003 400.2 800.4000000000001 4002 1980-12-16 2024-10-11 01:06:42.000 1980-12-16 2024-10-11 01:06:42 +4003 4003 4004 400.3 800.6 4003 1980-12-17 2024-10-11 01:06:43.000 1980-12-17 2024-10-11 01:06:43 +4004 4004 4005 400.4 800.8000000000001 4004 1980-12-18 2024-10-11 01:06:44.000 1980-12-18 2024-10-11 01:06:44 +4005 4005 4006 400.5 801 4005 1980-12-19 2024-10-11 01:06:45.000 1980-12-19 2024-10-11 01:06:45 +4006 4006 4007 400.6 801.2 4006 1980-12-20 2024-10-11 01:06:46.000 1980-12-20 2024-10-11 01:06:46 +4007 4007 4008 400.7 801.4000000000001 4007 1980-12-21 2024-10-11 01:06:47.000 1980-12-21 2024-10-11 01:06:47 +4008 4008 4009 400.8 801.6 4008 1980-12-22 2024-10-11 01:06:48.000 1980-12-22 2024-10-11 01:06:48 +4009 4009 4010 400.9 801.8000000000001 4009 1980-12-23 2024-10-11 01:06:49.000 1980-12-23 2024-10-11 01:06:49 +4010 4010 4011 401 802 4010 1980-12-24 2024-10-11 01:06:50.000 1980-12-24 2024-10-11 01:06:50 +4011 4011 4012 401.1 802.2 4011 1980-12-25 2024-10-11 01:06:51.000 1980-12-25 2024-10-11 01:06:51 +4012 4012 4013 401.2 802.4000000000001 4012 1980-12-26 2024-10-11 01:06:52.000 1980-12-26 2024-10-11 01:06:52 +4013 4013 4014 401.3 802.6 4013 1980-12-27 2024-10-11 01:06:53.000 1980-12-27 2024-10-11 01:06:53 +4014 4014 4015 401.4 802.8000000000001 4014 1980-12-28 2024-10-11 01:06:54.000 1980-12-28 2024-10-11 01:06:54 +4015 4015 4016 401.5 803 4015 1980-12-29 2024-10-11 01:06:55.000 1980-12-29 2024-10-11 01:06:55 +4016 4016 4017 401.6 803.2 4016 1980-12-30 2024-10-11 01:06:56.000 1980-12-30 2024-10-11 01:06:56 +4017 4017 4018 401.7 803.4000000000001 4017 1980-12-31 2024-10-11 01:06:57.000 1980-12-31 2024-10-11 01:06:57 +4018 4018 4019 401.8 803.6 4018 1981-01-01 2024-10-11 01:06:58.000 1981-01-01 2024-10-11 01:06:58 +4019 4019 4020 401.9 803.8000000000001 4019 1981-01-02 2024-10-11 01:06:59.000 1981-01-02 2024-10-11 01:06:59 +4020 4020 4021 402 804 4020 1981-01-03 2024-10-11 01:07:00.000 1981-01-03 2024-10-11 01:07:00 +4021 4021 4022 402.1 804.2 4021 1981-01-04 2024-10-11 01:07:01.000 1981-01-04 2024-10-11 01:07:01 +4022 4022 4023 402.2 804.4000000000001 4022 1981-01-05 2024-10-11 01:07:02.000 1981-01-05 2024-10-11 01:07:02 +4023 4023 4024 402.3 804.6 4023 1981-01-06 2024-10-11 01:07:03.000 1981-01-06 2024-10-11 01:07:03 +4024 4024 4025 402.4 804.8000000000001 4024 1981-01-07 2024-10-11 01:07:04.000 1981-01-07 2024-10-11 01:07:04 +4025 4025 4026 402.5 805 4025 1981-01-08 2024-10-11 01:07:05.000 1981-01-08 2024-10-11 01:07:05 +4026 4026 4027 402.6 805.2 4026 1981-01-09 2024-10-11 01:07:06.000 1981-01-09 2024-10-11 01:07:06 +4027 4027 4028 402.7 805.4000000000001 4027 1981-01-10 2024-10-11 01:07:07.000 1981-01-10 2024-10-11 01:07:07 +4028 4028 4029 402.8 805.6 4028 1981-01-11 2024-10-11 01:07:08.000 1981-01-11 2024-10-11 01:07:08 +4029 4029 4030 402.9 805.8000000000001 4029 1981-01-12 2024-10-11 01:07:09.000 1981-01-12 2024-10-11 01:07:09 +4030 4030 4031 403 806 4030 1981-01-13 2024-10-11 01:07:10.000 1981-01-13 2024-10-11 01:07:10 +4031 4031 4032 403.1 806.2 4031 1981-01-14 2024-10-11 01:07:11.000 1981-01-14 2024-10-11 01:07:11 +4032 4032 4033 403.2 806.4000000000001 4032 1981-01-15 2024-10-11 01:07:12.000 1981-01-15 2024-10-11 01:07:12 +4033 4033 4034 403.3 806.6 4033 1981-01-16 2024-10-11 01:07:13.000 1981-01-16 2024-10-11 01:07:13 +4034 4034 4035 403.4 806.8000000000001 4034 1981-01-17 2024-10-11 01:07:14.000 1981-01-17 2024-10-11 01:07:14 +4035 4035 4036 403.5 807 4035 1981-01-18 2024-10-11 01:07:15.000 1981-01-18 2024-10-11 01:07:15 +4036 4036 4037 403.6 807.2 4036 1981-01-19 2024-10-11 01:07:16.000 1981-01-19 2024-10-11 01:07:16 +4037 4037 4038 403.7 807.4000000000001 4037 1981-01-20 2024-10-11 01:07:17.000 1981-01-20 2024-10-11 01:07:17 +4038 4038 4039 403.8 807.6 4038 1981-01-21 2024-10-11 01:07:18.000 1981-01-21 2024-10-11 01:07:18 +4039 4039 4040 403.9 807.8000000000001 4039 1981-01-22 2024-10-11 01:07:19.000 1981-01-22 2024-10-11 01:07:19 +4040 4040 4041 404 808 4040 1981-01-23 2024-10-11 01:07:20.000 1981-01-23 2024-10-11 01:07:20 +4041 4041 4042 404.1 808.2 4041 1981-01-24 2024-10-11 01:07:21.000 1981-01-24 2024-10-11 01:07:21 +4042 4042 4043 404.2 808.4000000000001 4042 1981-01-25 2024-10-11 01:07:22.000 1981-01-25 2024-10-11 01:07:22 +4043 4043 4044 404.3 808.6 4043 1981-01-26 2024-10-11 01:07:23.000 1981-01-26 2024-10-11 01:07:23 +4044 4044 4045 404.4 808.8000000000001 4044 1981-01-27 2024-10-11 01:07:24.000 1981-01-27 2024-10-11 01:07:24 +4045 4045 4046 404.5 809 4045 1981-01-28 2024-10-11 01:07:25.000 1981-01-28 2024-10-11 01:07:25 +4046 4046 4047 404.6 809.2 4046 1981-01-29 2024-10-11 01:07:26.000 1981-01-29 2024-10-11 01:07:26 +4047 4047 4048 404.7 809.4000000000001 4047 1981-01-30 2024-10-11 01:07:27.000 1981-01-30 2024-10-11 01:07:27 +4048 4048 4049 404.8 809.6 4048 1981-01-31 2024-10-11 01:07:28.000 1981-01-31 2024-10-11 01:07:28 +4049 4049 4050 404.9 809.8000000000001 4049 1981-02-01 2024-10-11 01:07:29.000 1981-02-01 2024-10-11 01:07:29 +4050 4050 4051 405 810 4050 1981-02-02 2024-10-11 01:07:30.000 1981-02-02 2024-10-11 01:07:30 +4051 4051 4052 405.1 810.2 4051 1981-02-03 2024-10-11 01:07:31.000 1981-02-03 2024-10-11 01:07:31 +4052 4052 4053 405.2 810.4000000000001 4052 1981-02-04 2024-10-11 01:07:32.000 1981-02-04 2024-10-11 01:07:32 +4053 4053 4054 405.3 810.6 4053 1981-02-05 2024-10-11 01:07:33.000 1981-02-05 2024-10-11 01:07:33 +4054 4054 4055 405.4 810.8000000000001 4054 1981-02-06 2024-10-11 01:07:34.000 1981-02-06 2024-10-11 01:07:34 +4055 4055 4056 405.5 811 4055 1981-02-07 2024-10-11 01:07:35.000 1981-02-07 2024-10-11 01:07:35 +4056 4056 4057 405.6 811.2 4056 1981-02-08 2024-10-11 01:07:36.000 1981-02-08 2024-10-11 01:07:36 +4057 4057 4058 405.7 811.4000000000001 4057 1981-02-09 2024-10-11 01:07:37.000 1981-02-09 2024-10-11 01:07:37 +4058 4058 4059 405.8 811.6 4058 1981-02-10 2024-10-11 01:07:38.000 1981-02-10 2024-10-11 01:07:38 +4059 4059 4060 405.9 811.8000000000001 4059 1981-02-11 2024-10-11 01:07:39.000 1981-02-11 2024-10-11 01:07:39 +4060 4060 4061 406 812 4060 1981-02-12 2024-10-11 01:07:40.000 1981-02-12 2024-10-11 01:07:40 +4061 4061 4062 406.1 812.2 4061 1981-02-13 2024-10-11 01:07:41.000 1981-02-13 2024-10-11 01:07:41 +4062 4062 4063 406.2 812.4000000000001 4062 1981-02-14 2024-10-11 01:07:42.000 1981-02-14 2024-10-11 01:07:42 +4063 4063 4064 406.3 812.6 4063 1981-02-15 2024-10-11 01:07:43.000 1981-02-15 2024-10-11 01:07:43 +4064 4064 4065 406.4 812.8000000000001 4064 1981-02-16 2024-10-11 01:07:44.000 1981-02-16 2024-10-11 01:07:44 +4065 4065 4066 406.5 813 4065 1981-02-17 2024-10-11 01:07:45.000 1981-02-17 2024-10-11 01:07:45 +4066 4066 4067 406.6 813.2 4066 1981-02-18 2024-10-11 01:07:46.000 1981-02-18 2024-10-11 01:07:46 +4067 4067 4068 406.7 813.4000000000001 4067 1981-02-19 2024-10-11 01:07:47.000 1981-02-19 2024-10-11 01:07:47 +4068 4068 4069 406.8 813.6 4068 1981-02-20 2024-10-11 01:07:48.000 1981-02-20 2024-10-11 01:07:48 +4069 4069 4070 406.9 813.8000000000001 4069 1981-02-21 2024-10-11 01:07:49.000 1981-02-21 2024-10-11 01:07:49 +4070 4070 4071 407 814 4070 1981-02-22 2024-10-11 01:07:50.000 1981-02-22 2024-10-11 01:07:50 +4071 4071 4072 407.1 814.2 4071 1981-02-23 2024-10-11 01:07:51.000 1981-02-23 2024-10-11 01:07:51 +4072 4072 4073 407.2 814.4000000000001 4072 1981-02-24 2024-10-11 01:07:52.000 1981-02-24 2024-10-11 01:07:52 +4073 4073 4074 407.3 814.6 4073 1981-02-25 2024-10-11 01:07:53.000 1981-02-25 2024-10-11 01:07:53 +4074 4074 4075 407.4 814.8000000000001 4074 1981-02-26 2024-10-11 01:07:54.000 1981-02-26 2024-10-11 01:07:54 +4075 4075 4076 407.5 815 4075 1981-02-27 2024-10-11 01:07:55.000 1981-02-27 2024-10-11 01:07:55 +4076 4076 4077 407.6 815.2 4076 1981-02-28 2024-10-11 01:07:56.000 1981-02-28 2024-10-11 01:07:56 +4077 4077 4078 407.7 815.4000000000001 4077 1981-03-01 2024-10-11 01:07:57.000 1981-03-01 2024-10-11 01:07:57 +4078 4078 4079 407.8 815.6 4078 1981-03-02 2024-10-11 01:07:58.000 1981-03-02 2024-10-11 01:07:58 +4079 4079 4080 407.9 815.8000000000001 4079 1981-03-03 2024-10-11 01:07:59.000 1981-03-03 2024-10-11 01:07:59 +4080 4080 4081 408 816 4080 1981-03-04 2024-10-11 01:08:00.000 1981-03-04 2024-10-11 01:08:00 +4081 4081 4082 408.1 816.2 4081 1981-03-05 2024-10-11 01:08:01.000 1981-03-05 2024-10-11 01:08:01 +4082 4082 4083 408.2 816.4000000000001 4082 1981-03-06 2024-10-11 01:08:02.000 1981-03-06 2024-10-11 01:08:02 +4083 4083 4084 408.3 816.6 4083 1981-03-07 2024-10-11 01:08:03.000 1981-03-07 2024-10-11 01:08:03 +4084 4084 4085 408.4 816.8000000000001 4084 1981-03-08 2024-10-11 01:08:04.000 1981-03-08 2024-10-11 01:08:04 +4085 4085 4086 408.5 817 4085 1981-03-09 2024-10-11 01:08:05.000 1981-03-09 2024-10-11 01:08:05 +4086 4086 4087 408.6 817.2 4086 1981-03-10 2024-10-11 01:08:06.000 1981-03-10 2024-10-11 01:08:06 +4087 4087 4088 408.7 817.4000000000001 4087 1981-03-11 2024-10-11 01:08:07.000 1981-03-11 2024-10-11 01:08:07 +4088 4088 4089 408.8 817.6 4088 1981-03-12 2024-10-11 01:08:08.000 1981-03-12 2024-10-11 01:08:08 +4089 4089 4090 408.9 817.8000000000001 4089 1981-03-13 2024-10-11 01:08:09.000 1981-03-13 2024-10-11 01:08:09 +4090 4090 4091 409 818 4090 1981-03-14 2024-10-11 01:08:10.000 1981-03-14 2024-10-11 01:08:10 +4091 4091 4092 409.1 818.2 4091 1981-03-15 2024-10-11 01:08:11.000 1981-03-15 2024-10-11 01:08:11 +4092 4092 4093 409.2 818.4000000000001 4092 1981-03-16 2024-10-11 01:08:12.000 1981-03-16 2024-10-11 01:08:12 +4093 4093 4094 409.3 818.6 4093 1981-03-17 2024-10-11 01:08:13.000 1981-03-17 2024-10-11 01:08:13 +4094 4094 4095 409.4 818.8000000000001 4094 1981-03-18 2024-10-11 01:08:14.000 1981-03-18 2024-10-11 01:08:14 +4095 4095 4096 409.5 819 4095 1981-03-19 2024-10-11 01:08:15.000 1981-03-19 2024-10-11 01:08:15 +4096 4096 4097 409.6 819.2 4096 1981-03-20 2024-10-11 01:08:16.000 1981-03-20 2024-10-11 01:08:16 +4097 4097 4098 409.7 819.4000000000001 4097 1981-03-21 2024-10-11 01:08:17.000 1981-03-21 2024-10-11 01:08:17 +4098 4098 4099 409.8 819.6 4098 1981-03-22 2024-10-11 01:08:18.000 1981-03-22 2024-10-11 01:08:18 +4099 4099 4100 409.9 819.8000000000001 4099 1981-03-23 2024-10-11 01:08:19.000 1981-03-23 2024-10-11 01:08:19 +4100 4100 4101 410 820 4100 1981-03-24 2024-10-11 01:08:20.000 1981-03-24 2024-10-11 01:08:20 +4101 4101 4102 410.1 820.2 4101 1981-03-25 2024-10-11 01:08:21.000 1981-03-25 2024-10-11 01:08:21 +4102 4102 4103 410.2 820.4000000000001 4102 1981-03-26 2024-10-11 01:08:22.000 1981-03-26 2024-10-11 01:08:22 +4103 4103 4104 410.3 820.6 4103 1981-03-27 2024-10-11 01:08:23.000 1981-03-27 2024-10-11 01:08:23 +4104 4104 4105 410.4 820.8000000000001 4104 1981-03-28 2024-10-11 01:08:24.000 1981-03-28 2024-10-11 01:08:24 +4105 4105 4106 410.5 821 4105 1981-03-29 2024-10-11 01:08:25.000 1981-03-29 2024-10-11 01:08:25 +4106 4106 4107 410.6 821.2 4106 1981-03-30 2024-10-11 01:08:26.000 1981-03-30 2024-10-11 01:08:26 +4107 4107 4108 410.7 821.4000000000001 4107 1981-03-31 2024-10-11 01:08:27.000 1981-03-31 2024-10-11 01:08:27 +4108 4108 4109 410.8 821.6 4108 1981-04-01 2024-10-11 01:08:28.000 1981-04-01 2024-10-11 01:08:28 +4109 4109 4110 410.9 821.8000000000001 4109 1981-04-02 2024-10-11 01:08:29.000 1981-04-02 2024-10-11 01:08:29 +4110 4110 4111 411 822 4110 1981-04-03 2024-10-11 01:08:30.000 1981-04-03 2024-10-11 01:08:30 +4111 4111 4112 411.1 822.2 4111 1981-04-04 2024-10-11 01:08:31.000 1981-04-04 2024-10-11 01:08:31 +4112 4112 4113 411.2 822.4000000000001 4112 1981-04-05 2024-10-11 01:08:32.000 1981-04-05 2024-10-11 01:08:32 +4113 4113 4114 411.3 822.6 4113 1981-04-06 2024-10-11 01:08:33.000 1981-04-06 2024-10-11 01:08:33 +4114 4114 4115 411.4 822.8000000000001 4114 1981-04-07 2024-10-11 01:08:34.000 1981-04-07 2024-10-11 01:08:34 +4115 4115 4116 411.5 823 4115 1981-04-08 2024-10-11 01:08:35.000 1981-04-08 2024-10-11 01:08:35 +4116 4116 4117 411.6 823.2 4116 1981-04-09 2024-10-11 01:08:36.000 1981-04-09 2024-10-11 01:08:36 +4117 4117 4118 411.7 823.4000000000001 4117 1981-04-10 2024-10-11 01:08:37.000 1981-04-10 2024-10-11 01:08:37 +4118 4118 4119 411.8 823.6 4118 1981-04-11 2024-10-11 01:08:38.000 1981-04-11 2024-10-11 01:08:38 +4119 4119 4120 411.9 823.8000000000001 4119 1981-04-12 2024-10-11 01:08:39.000 1981-04-12 2024-10-11 01:08:39 +4120 4120 4121 412 824 4120 1981-04-13 2024-10-11 01:08:40.000 1981-04-13 2024-10-11 01:08:40 +4121 4121 4122 412.1 824.2 4121 1981-04-14 2024-10-11 01:08:41.000 1981-04-14 2024-10-11 01:08:41 +4122 4122 4123 412.2 824.4000000000001 4122 1981-04-15 2024-10-11 01:08:42.000 1981-04-15 2024-10-11 01:08:42 +4123 4123 4124 412.3 824.6 4123 1981-04-16 2024-10-11 01:08:43.000 1981-04-16 2024-10-11 01:08:43 +4124 4124 4125 412.4 824.8000000000001 4124 1981-04-17 2024-10-11 01:08:44.000 1981-04-17 2024-10-11 01:08:44 +4125 4125 4126 412.5 825 4125 1981-04-18 2024-10-11 01:08:45.000 1981-04-18 2024-10-11 01:08:45 +4126 4126 4127 412.6 825.2 4126 1981-04-19 2024-10-11 01:08:46.000 1981-04-19 2024-10-11 01:08:46 +4127 4127 4128 412.7 825.4000000000001 4127 1981-04-20 2024-10-11 01:08:47.000 1981-04-20 2024-10-11 01:08:47 +4128 4128 4129 412.8 825.6 4128 1981-04-21 2024-10-11 01:08:48.000 1981-04-21 2024-10-11 01:08:48 +4129 4129 4130 412.9 825.8000000000001 4129 1981-04-22 2024-10-11 01:08:49.000 1981-04-22 2024-10-11 01:08:49 +4130 4130 4131 413 826 4130 1981-04-23 2024-10-11 01:08:50.000 1981-04-23 2024-10-11 01:08:50 +4131 4131 4132 413.1 826.2 4131 1981-04-24 2024-10-11 01:08:51.000 1981-04-24 2024-10-11 01:08:51 +4132 4132 4133 413.2 826.4000000000001 4132 1981-04-25 2024-10-11 01:08:52.000 1981-04-25 2024-10-11 01:08:52 +4133 4133 4134 413.3 826.6 4133 1981-04-26 2024-10-11 01:08:53.000 1981-04-26 2024-10-11 01:08:53 +4134 4134 4135 413.4 826.8000000000001 4134 1981-04-27 2024-10-11 01:08:54.000 1981-04-27 2024-10-11 01:08:54 +4135 4135 4136 413.5 827 4135 1981-04-28 2024-10-11 01:08:55.000 1981-04-28 2024-10-11 01:08:55 +4136 4136 4137 413.6 827.2 4136 1981-04-29 2024-10-11 01:08:56.000 1981-04-29 2024-10-11 01:08:56 +4137 4137 4138 413.7 827.4000000000001 4137 1981-04-30 2024-10-11 01:08:57.000 1981-04-30 2024-10-11 01:08:57 +4138 4138 4139 413.8 827.6 4138 1981-05-01 2024-10-11 01:08:58.000 1981-05-01 2024-10-11 01:08:58 +4139 4139 4140 413.9 827.8000000000001 4139 1981-05-02 2024-10-11 01:08:59.000 1981-05-02 2024-10-11 01:08:59 +4140 4140 4141 414 828 4140 1981-05-03 2024-10-11 01:09:00.000 1981-05-03 2024-10-11 01:09:00 +4141 4141 4142 414.1 828.2 4141 1981-05-04 2024-10-11 01:09:01.000 1981-05-04 2024-10-11 01:09:01 +4142 4142 4143 414.2 828.4000000000001 4142 1981-05-05 2024-10-11 01:09:02.000 1981-05-05 2024-10-11 01:09:02 +4143 4143 4144 414.3 828.6 4143 1981-05-06 2024-10-11 01:09:03.000 1981-05-06 2024-10-11 01:09:03 +4144 4144 4145 414.4 828.8000000000001 4144 1981-05-07 2024-10-11 01:09:04.000 1981-05-07 2024-10-11 01:09:04 +4145 4145 4146 414.5 829 4145 1981-05-08 2024-10-11 01:09:05.000 1981-05-08 2024-10-11 01:09:05 +4146 4146 4147 414.6 829.2 4146 1981-05-09 2024-10-11 01:09:06.000 1981-05-09 2024-10-11 01:09:06 +4147 4147 4148 414.7 829.4000000000001 4147 1981-05-10 2024-10-11 01:09:07.000 1981-05-10 2024-10-11 01:09:07 +4148 4148 4149 414.8 829.6 4148 1981-05-11 2024-10-11 01:09:08.000 1981-05-11 2024-10-11 01:09:08 +4149 4149 4150 414.9 829.8000000000001 4149 1981-05-12 2024-10-11 01:09:09.000 1981-05-12 2024-10-11 01:09:09 +4150 4150 4151 415 830 4150 1981-05-13 2024-10-11 01:09:10.000 1981-05-13 2024-10-11 01:09:10 +4151 4151 4152 415.1 830.2 4151 1981-05-14 2024-10-11 01:09:11.000 1981-05-14 2024-10-11 01:09:11 +4152 4152 4153 415.2 830.4000000000001 4152 1981-05-15 2024-10-11 01:09:12.000 1981-05-15 2024-10-11 01:09:12 +4153 4153 4154 415.3 830.6 4153 1981-05-16 2024-10-11 01:09:13.000 1981-05-16 2024-10-11 01:09:13 +4154 4154 4155 415.4 830.8000000000001 4154 1981-05-17 2024-10-11 01:09:14.000 1981-05-17 2024-10-11 01:09:14 +4155 4155 4156 415.5 831 4155 1981-05-18 2024-10-11 01:09:15.000 1981-05-18 2024-10-11 01:09:15 +4156 4156 4157 415.6 831.2 4156 1981-05-19 2024-10-11 01:09:16.000 1981-05-19 2024-10-11 01:09:16 +4157 4157 4158 415.7 831.4000000000001 4157 1981-05-20 2024-10-11 01:09:17.000 1981-05-20 2024-10-11 01:09:17 +4158 4158 4159 415.8 831.6 4158 1981-05-21 2024-10-11 01:09:18.000 1981-05-21 2024-10-11 01:09:18 +4159 4159 4160 415.9 831.8000000000001 4159 1981-05-22 2024-10-11 01:09:19.000 1981-05-22 2024-10-11 01:09:19 +4160 4160 4161 416 832 4160 1981-05-23 2024-10-11 01:09:20.000 1981-05-23 2024-10-11 01:09:20 +4161 4161 4162 416.1 832.2 4161 1981-05-24 2024-10-11 01:09:21.000 1981-05-24 2024-10-11 01:09:21 +4162 4162 4163 416.2 832.4000000000001 4162 1981-05-25 2024-10-11 01:09:22.000 1981-05-25 2024-10-11 01:09:22 +4163 4163 4164 416.3 832.6 4163 1981-05-26 2024-10-11 01:09:23.000 1981-05-26 2024-10-11 01:09:23 +4164 4164 4165 416.4 832.8000000000001 4164 1981-05-27 2024-10-11 01:09:24.000 1981-05-27 2024-10-11 01:09:24 +4165 4165 4166 416.5 833 4165 1981-05-28 2024-10-11 01:09:25.000 1981-05-28 2024-10-11 01:09:25 +4166 4166 4167 416.6 833.2 4166 1981-05-29 2024-10-11 01:09:26.000 1981-05-29 2024-10-11 01:09:26 +4167 4167 4168 416.7 833.4000000000001 4167 1981-05-30 2024-10-11 01:09:27.000 1981-05-30 2024-10-11 01:09:27 +4168 4168 4169 416.8 833.6 4168 1981-05-31 2024-10-11 01:09:28.000 1981-05-31 2024-10-11 01:09:28 +4169 4169 4170 416.9 833.8000000000001 4169 1981-06-01 2024-10-11 01:09:29.000 1981-06-01 2024-10-11 01:09:29 +4170 4170 4171 417 834 4170 1981-06-02 2024-10-11 01:09:30.000 1981-06-02 2024-10-11 01:09:30 +4171 4171 4172 417.1 834.2 4171 1981-06-03 2024-10-11 01:09:31.000 1981-06-03 2024-10-11 01:09:31 +4172 4172 4173 417.2 834.4000000000001 4172 1981-06-04 2024-10-11 01:09:32.000 1981-06-04 2024-10-11 01:09:32 +4173 4173 4174 417.3 834.6 4173 1981-06-05 2024-10-11 01:09:33.000 1981-06-05 2024-10-11 01:09:33 +4174 4174 4175 417.4 834.8000000000001 4174 1981-06-06 2024-10-11 01:09:34.000 1981-06-06 2024-10-11 01:09:34 +4175 4175 4176 417.5 835 4175 1981-06-07 2024-10-11 01:09:35.000 1981-06-07 2024-10-11 01:09:35 +4176 4176 4177 417.6 835.2 4176 1981-06-08 2024-10-11 01:09:36.000 1981-06-08 2024-10-11 01:09:36 +4177 4177 4178 417.7 835.4000000000001 4177 1981-06-09 2024-10-11 01:09:37.000 1981-06-09 2024-10-11 01:09:37 +4178 4178 4179 417.8 835.6 4178 1981-06-10 2024-10-11 01:09:38.000 1981-06-10 2024-10-11 01:09:38 +4179 4179 4180 417.9 835.8000000000001 4179 1981-06-11 2024-10-11 01:09:39.000 1981-06-11 2024-10-11 01:09:39 +4180 4180 4181 418 836 4180 1981-06-12 2024-10-11 01:09:40.000 1981-06-12 2024-10-11 01:09:40 +4181 4181 4182 418.1 836.2 4181 1981-06-13 2024-10-11 01:09:41.000 1981-06-13 2024-10-11 01:09:41 +4182 4182 4183 418.2 836.4000000000001 4182 1981-06-14 2024-10-11 01:09:42.000 1981-06-14 2024-10-11 01:09:42 +4183 4183 4184 418.3 836.6 4183 1981-06-15 2024-10-11 01:09:43.000 1981-06-15 2024-10-11 01:09:43 +4184 4184 4185 418.4 836.8000000000001 4184 1981-06-16 2024-10-11 01:09:44.000 1981-06-16 2024-10-11 01:09:44 +4185 4185 4186 418.5 837 4185 1981-06-17 2024-10-11 01:09:45.000 1981-06-17 2024-10-11 01:09:45 +4186 4186 4187 418.6 837.2 4186 1981-06-18 2024-10-11 01:09:46.000 1981-06-18 2024-10-11 01:09:46 +4187 4187 4188 418.7 837.4000000000001 4187 1981-06-19 2024-10-11 01:09:47.000 1981-06-19 2024-10-11 01:09:47 +4188 4188 4189 418.8 837.6 4188 1981-06-20 2024-10-11 01:09:48.000 1981-06-20 2024-10-11 01:09:48 +4189 4189 4190 418.9 837.8000000000001 4189 1981-06-21 2024-10-11 01:09:49.000 1981-06-21 2024-10-11 01:09:49 +4190 4190 4191 419 838 4190 1981-06-22 2024-10-11 01:09:50.000 1981-06-22 2024-10-11 01:09:50 +4191 4191 4192 419.1 838.2 4191 1981-06-23 2024-10-11 01:09:51.000 1981-06-23 2024-10-11 01:09:51 +4192 4192 4193 419.2 838.4000000000001 4192 1981-06-24 2024-10-11 01:09:52.000 1981-06-24 2024-10-11 01:09:52 +4193 4193 4194 419.3 838.6 4193 1981-06-25 2024-10-11 01:09:53.000 1981-06-25 2024-10-11 01:09:53 +4194 4194 4195 419.4 838.8000000000001 4194 1981-06-26 2024-10-11 01:09:54.000 1981-06-26 2024-10-11 01:09:54 +4195 4195 4196 419.5 839 4195 1981-06-27 2024-10-11 01:09:55.000 1981-06-27 2024-10-11 01:09:55 +4196 4196 4197 419.6 839.2 4196 1981-06-28 2024-10-11 01:09:56.000 1981-06-28 2024-10-11 01:09:56 +4197 4197 4198 419.7 839.4000000000001 4197 1981-06-29 2024-10-11 01:09:57.000 1981-06-29 2024-10-11 01:09:57 +4198 4198 4199 419.8 839.6 4198 1981-06-30 2024-10-11 01:09:58.000 1981-06-30 2024-10-11 01:09:58 +4199 4199 4200 419.9 839.8000000000001 4199 1981-07-01 2024-10-11 01:09:59.000 1981-07-01 2024-10-11 01:09:59 +4200 4200 4201 420 840 4200 1981-07-02 2024-10-11 01:10:00.000 1981-07-02 2024-10-11 01:10:00 +4201 4201 4202 420.1 840.2 4201 1981-07-03 2024-10-11 01:10:01.000 1981-07-03 2024-10-11 01:10:01 +4202 4202 4203 420.2 840.4000000000001 4202 1981-07-04 2024-10-11 01:10:02.000 1981-07-04 2024-10-11 01:10:02 +4203 4203 4204 420.3 840.6 4203 1981-07-05 2024-10-11 01:10:03.000 1981-07-05 2024-10-11 01:10:03 +4204 4204 4205 420.4 840.8000000000001 4204 1981-07-06 2024-10-11 01:10:04.000 1981-07-06 2024-10-11 01:10:04 +4205 4205 4206 420.5 841 4205 1981-07-07 2024-10-11 01:10:05.000 1981-07-07 2024-10-11 01:10:05 +4206 4206 4207 420.6 841.2 4206 1981-07-08 2024-10-11 01:10:06.000 1981-07-08 2024-10-11 01:10:06 +4207 4207 4208 420.7 841.4000000000001 4207 1981-07-09 2024-10-11 01:10:07.000 1981-07-09 2024-10-11 01:10:07 +4208 4208 4209 420.8 841.6 4208 1981-07-10 2024-10-11 01:10:08.000 1981-07-10 2024-10-11 01:10:08 +4209 4209 4210 420.9 841.8000000000001 4209 1981-07-11 2024-10-11 01:10:09.000 1981-07-11 2024-10-11 01:10:09 +4210 4210 4211 421 842 4210 1981-07-12 2024-10-11 01:10:10.000 1981-07-12 2024-10-11 01:10:10 +4211 4211 4212 421.1 842.2 4211 1981-07-13 2024-10-11 01:10:11.000 1981-07-13 2024-10-11 01:10:11 +4212 4212 4213 421.2 842.4000000000001 4212 1981-07-14 2024-10-11 01:10:12.000 1981-07-14 2024-10-11 01:10:12 +4213 4213 4214 421.3 842.6 4213 1981-07-15 2024-10-11 01:10:13.000 1981-07-15 2024-10-11 01:10:13 +4214 4214 4215 421.4 842.8000000000001 4214 1981-07-16 2024-10-11 01:10:14.000 1981-07-16 2024-10-11 01:10:14 +4215 4215 4216 421.5 843 4215 1981-07-17 2024-10-11 01:10:15.000 1981-07-17 2024-10-11 01:10:15 +4216 4216 4217 421.6 843.2 4216 1981-07-18 2024-10-11 01:10:16.000 1981-07-18 2024-10-11 01:10:16 +4217 4217 4218 421.7 843.4000000000001 4217 1981-07-19 2024-10-11 01:10:17.000 1981-07-19 2024-10-11 01:10:17 +4218 4218 4219 421.8 843.6 4218 1981-07-20 2024-10-11 01:10:18.000 1981-07-20 2024-10-11 01:10:18 +4219 4219 4220 421.9 843.8000000000001 4219 1981-07-21 2024-10-11 01:10:19.000 1981-07-21 2024-10-11 01:10:19 +4220 4220 4221 422 844 4220 1981-07-22 2024-10-11 01:10:20.000 1981-07-22 2024-10-11 01:10:20 +4221 4221 4222 422.1 844.2 4221 1981-07-23 2024-10-11 01:10:21.000 1981-07-23 2024-10-11 01:10:21 +4222 4222 4223 422.2 844.4000000000001 4222 1981-07-24 2024-10-11 01:10:22.000 1981-07-24 2024-10-11 01:10:22 +4223 4223 4224 422.3 844.6 4223 1981-07-25 2024-10-11 01:10:23.000 1981-07-25 2024-10-11 01:10:23 +4224 4224 4225 422.4 844.8000000000001 4224 1981-07-26 2024-10-11 01:10:24.000 1981-07-26 2024-10-11 01:10:24 +4225 4225 4226 422.5 845 4225 1981-07-27 2024-10-11 01:10:25.000 1981-07-27 2024-10-11 01:10:25 +4226 4226 4227 422.6 845.2 4226 1981-07-28 2024-10-11 01:10:26.000 1981-07-28 2024-10-11 01:10:26 +4227 4227 4228 422.7 845.4000000000001 4227 1981-07-29 2024-10-11 01:10:27.000 1981-07-29 2024-10-11 01:10:27 +4228 4228 4229 422.8 845.6 4228 1981-07-30 2024-10-11 01:10:28.000 1981-07-30 2024-10-11 01:10:28 +4229 4229 4230 422.9 845.8000000000001 4229 1981-07-31 2024-10-11 01:10:29.000 1981-07-31 2024-10-11 01:10:29 +4230 4230 4231 423 846 4230 1981-08-01 2024-10-11 01:10:30.000 1981-08-01 2024-10-11 01:10:30 +4231 4231 4232 423.1 846.2 4231 1981-08-02 2024-10-11 01:10:31.000 1981-08-02 2024-10-11 01:10:31 +4232 4232 4233 423.2 846.4000000000001 4232 1981-08-03 2024-10-11 01:10:32.000 1981-08-03 2024-10-11 01:10:32 +4233 4233 4234 423.3 846.6 4233 1981-08-04 2024-10-11 01:10:33.000 1981-08-04 2024-10-11 01:10:33 +4234 4234 4235 423.4 846.8000000000001 4234 1981-08-05 2024-10-11 01:10:34.000 1981-08-05 2024-10-11 01:10:34 +4235 4235 4236 423.5 847 4235 1981-08-06 2024-10-11 01:10:35.000 1981-08-06 2024-10-11 01:10:35 +4236 4236 4237 423.6 847.2 4236 1981-08-07 2024-10-11 01:10:36.000 1981-08-07 2024-10-11 01:10:36 +4237 4237 4238 423.7 847.4000000000001 4237 1981-08-08 2024-10-11 01:10:37.000 1981-08-08 2024-10-11 01:10:37 +4238 4238 4239 423.8 847.6 4238 1981-08-09 2024-10-11 01:10:38.000 1981-08-09 2024-10-11 01:10:38 +4239 4239 4240 423.9 847.8000000000001 4239 1981-08-10 2024-10-11 01:10:39.000 1981-08-10 2024-10-11 01:10:39 +4240 4240 4241 424 848 4240 1981-08-11 2024-10-11 01:10:40.000 1981-08-11 2024-10-11 01:10:40 +4241 4241 4242 424.1 848.2 4241 1981-08-12 2024-10-11 01:10:41.000 1981-08-12 2024-10-11 01:10:41 +4242 4242 4243 424.2 848.4000000000001 4242 1981-08-13 2024-10-11 01:10:42.000 1981-08-13 2024-10-11 01:10:42 +4243 4243 4244 424.3 848.6 4243 1981-08-14 2024-10-11 01:10:43.000 1981-08-14 2024-10-11 01:10:43 +4244 4244 4245 424.4 848.8000000000001 4244 1981-08-15 2024-10-11 01:10:44.000 1981-08-15 2024-10-11 01:10:44 +4245 4245 4246 424.5 849 4245 1981-08-16 2024-10-11 01:10:45.000 1981-08-16 2024-10-11 01:10:45 +4246 4246 4247 424.6 849.2 4246 1981-08-17 2024-10-11 01:10:46.000 1981-08-17 2024-10-11 01:10:46 +4247 4247 4248 424.7 849.4000000000001 4247 1981-08-18 2024-10-11 01:10:47.000 1981-08-18 2024-10-11 01:10:47 +4248 4248 4249 424.8 849.6 4248 1981-08-19 2024-10-11 01:10:48.000 1981-08-19 2024-10-11 01:10:48 +4249 4249 4250 424.9 849.8000000000001 4249 1981-08-20 2024-10-11 01:10:49.000 1981-08-20 2024-10-11 01:10:49 +4250 4250 4251 425 850 4250 1981-08-21 2024-10-11 01:10:50.000 1981-08-21 2024-10-11 01:10:50 +4251 4251 4252 425.1 850.2 4251 1981-08-22 2024-10-11 01:10:51.000 1981-08-22 2024-10-11 01:10:51 +4252 4252 4253 425.2 850.4000000000001 4252 1981-08-23 2024-10-11 01:10:52.000 1981-08-23 2024-10-11 01:10:52 +4253 4253 4254 425.3 850.6 4253 1981-08-24 2024-10-11 01:10:53.000 1981-08-24 2024-10-11 01:10:53 +4254 4254 4255 425.4 850.8000000000001 4254 1981-08-25 2024-10-11 01:10:54.000 1981-08-25 2024-10-11 01:10:54 +4255 4255 4256 425.5 851 4255 1981-08-26 2024-10-11 01:10:55.000 1981-08-26 2024-10-11 01:10:55 +4256 4256 4257 425.6 851.2 4256 1981-08-27 2024-10-11 01:10:56.000 1981-08-27 2024-10-11 01:10:56 +4257 4257 4258 425.7 851.4000000000001 4257 1981-08-28 2024-10-11 01:10:57.000 1981-08-28 2024-10-11 01:10:57 +4258 4258 4259 425.8 851.6 4258 1981-08-29 2024-10-11 01:10:58.000 1981-08-29 2024-10-11 01:10:58 +4259 4259 4260 425.9 851.8000000000001 4259 1981-08-30 2024-10-11 01:10:59.000 1981-08-30 2024-10-11 01:10:59 +4260 4260 4261 426 852 4260 1981-08-31 2024-10-11 01:11:00.000 1981-08-31 2024-10-11 01:11:00 +4261 4261 4262 426.1 852.2 4261 1981-09-01 2024-10-11 01:11:01.000 1981-09-01 2024-10-11 01:11:01 +4262 4262 4263 426.2 852.4000000000001 4262 1981-09-02 2024-10-11 01:11:02.000 1981-09-02 2024-10-11 01:11:02 +4263 4263 4264 426.3 852.6 4263 1981-09-03 2024-10-11 01:11:03.000 1981-09-03 2024-10-11 01:11:03 +4264 4264 4265 426.4 852.8000000000001 4264 1981-09-04 2024-10-11 01:11:04.000 1981-09-04 2024-10-11 01:11:04 +4265 4265 4266 426.5 853 4265 1981-09-05 2024-10-11 01:11:05.000 1981-09-05 2024-10-11 01:11:05 +4266 4266 4267 426.6 853.2 4266 1981-09-06 2024-10-11 01:11:06.000 1981-09-06 2024-10-11 01:11:06 +4267 4267 4268 426.7 853.4000000000001 4267 1981-09-07 2024-10-11 01:11:07.000 1981-09-07 2024-10-11 01:11:07 +4268 4268 4269 426.8 853.6 4268 1981-09-08 2024-10-11 01:11:08.000 1981-09-08 2024-10-11 01:11:08 +4269 4269 4270 426.9 853.8000000000001 4269 1981-09-09 2024-10-11 01:11:09.000 1981-09-09 2024-10-11 01:11:09 +4270 4270 4271 427 854 4270 1981-09-10 2024-10-11 01:11:10.000 1981-09-10 2024-10-11 01:11:10 +4271 4271 4272 427.1 854.2 4271 1981-09-11 2024-10-11 01:11:11.000 1981-09-11 2024-10-11 01:11:11 +4272 4272 4273 427.2 854.4000000000001 4272 1981-09-12 2024-10-11 01:11:12.000 1981-09-12 2024-10-11 01:11:12 +4273 4273 4274 427.3 854.6 4273 1981-09-13 2024-10-11 01:11:13.000 1981-09-13 2024-10-11 01:11:13 +4274 4274 4275 427.4 854.8000000000001 4274 1981-09-14 2024-10-11 01:11:14.000 1981-09-14 2024-10-11 01:11:14 +4275 4275 4276 427.5 855 4275 1981-09-15 2024-10-11 01:11:15.000 1981-09-15 2024-10-11 01:11:15 +4276 4276 4277 427.6 855.2 4276 1981-09-16 2024-10-11 01:11:16.000 1981-09-16 2024-10-11 01:11:16 +4277 4277 4278 427.7 855.4000000000001 4277 1981-09-17 2024-10-11 01:11:17.000 1981-09-17 2024-10-11 01:11:17 +4278 4278 4279 427.8 855.6 4278 1981-09-18 2024-10-11 01:11:18.000 1981-09-18 2024-10-11 01:11:18 +4279 4279 4280 427.9 855.8000000000001 4279 1981-09-19 2024-10-11 01:11:19.000 1981-09-19 2024-10-11 01:11:19 +4280 4280 4281 428 856 4280 1981-09-20 2024-10-11 01:11:20.000 1981-09-20 2024-10-11 01:11:20 +4281 4281 4282 428.1 856.2 4281 1981-09-21 2024-10-11 01:11:21.000 1981-09-21 2024-10-11 01:11:21 +4282 4282 4283 428.2 856.4000000000001 4282 1981-09-22 2024-10-11 01:11:22.000 1981-09-22 2024-10-11 01:11:22 +4283 4283 4284 428.3 856.6 4283 1981-09-23 2024-10-11 01:11:23.000 1981-09-23 2024-10-11 01:11:23 +4284 4284 4285 428.4 856.8000000000001 4284 1981-09-24 2024-10-11 01:11:24.000 1981-09-24 2024-10-11 01:11:24 +4285 4285 4286 428.5 857 4285 1981-09-25 2024-10-11 01:11:25.000 1981-09-25 2024-10-11 01:11:25 +4286 4286 4287 428.6 857.2 4286 1981-09-26 2024-10-11 01:11:26.000 1981-09-26 2024-10-11 01:11:26 +4287 4287 4288 428.7 857.4000000000001 4287 1981-09-27 2024-10-11 01:11:27.000 1981-09-27 2024-10-11 01:11:27 +4288 4288 4289 428.8 857.6 4288 1981-09-28 2024-10-11 01:11:28.000 1981-09-28 2024-10-11 01:11:28 +4289 4289 4290 428.9 857.8000000000001 4289 1981-09-29 2024-10-11 01:11:29.000 1981-09-29 2024-10-11 01:11:29 +4290 4290 4291 429 858 4290 1981-09-30 2024-10-11 01:11:30.000 1981-09-30 2024-10-11 01:11:30 +4291 4291 4292 429.1 858.2 4291 1981-10-01 2024-10-11 01:11:31.000 1981-10-01 2024-10-11 01:11:31 +4292 4292 4293 429.2 858.4000000000001 4292 1981-10-02 2024-10-11 01:11:32.000 1981-10-02 2024-10-11 01:11:32 +4293 4293 4294 429.3 858.6 4293 1981-10-03 2024-10-11 01:11:33.000 1981-10-03 2024-10-11 01:11:33 +4294 4294 4295 429.4 858.8000000000001 4294 1981-10-04 2024-10-11 01:11:34.000 1981-10-04 2024-10-11 01:11:34 +4295 4295 4296 429.5 859 4295 1981-10-05 2024-10-11 01:11:35.000 1981-10-05 2024-10-11 01:11:35 +4296 4296 4297 429.6 859.2 4296 1981-10-06 2024-10-11 01:11:36.000 1981-10-06 2024-10-11 01:11:36 +4297 4297 4298 429.7 859.4000000000001 4297 1981-10-07 2024-10-11 01:11:37.000 1981-10-07 2024-10-11 01:11:37 +4298 4298 4299 429.8 859.6 4298 1981-10-08 2024-10-11 01:11:38.000 1981-10-08 2024-10-11 01:11:38 +4299 4299 4300 429.9 859.8000000000001 4299 1981-10-09 2024-10-11 01:11:39.000 1981-10-09 2024-10-11 01:11:39 +4300 4300 4301 430 860 4300 1981-10-10 2024-10-11 01:11:40.000 1981-10-10 2024-10-11 01:11:40 +4301 4301 4302 430.1 860.2 4301 1981-10-11 2024-10-11 01:11:41.000 1981-10-11 2024-10-11 01:11:41 +4302 4302 4303 430.2 860.4000000000001 4302 1981-10-12 2024-10-11 01:11:42.000 1981-10-12 2024-10-11 01:11:42 +4303 4303 4304 430.3 860.6 4303 1981-10-13 2024-10-11 01:11:43.000 1981-10-13 2024-10-11 01:11:43 +4304 4304 4305 430.4 860.8000000000001 4304 1981-10-14 2024-10-11 01:11:44.000 1981-10-14 2024-10-11 01:11:44 +4305 4305 4306 430.5 861 4305 1981-10-15 2024-10-11 01:11:45.000 1981-10-15 2024-10-11 01:11:45 +4306 4306 4307 430.6 861.2 4306 1981-10-16 2024-10-11 01:11:46.000 1981-10-16 2024-10-11 01:11:46 +4307 4307 4308 430.7 861.4000000000001 4307 1981-10-17 2024-10-11 01:11:47.000 1981-10-17 2024-10-11 01:11:47 +4308 4308 4309 430.8 861.6 4308 1981-10-18 2024-10-11 01:11:48.000 1981-10-18 2024-10-11 01:11:48 +4309 4309 4310 430.9 861.8000000000001 4309 1981-10-19 2024-10-11 01:11:49.000 1981-10-19 2024-10-11 01:11:49 +4310 4310 4311 431 862 4310 1981-10-20 2024-10-11 01:11:50.000 1981-10-20 2024-10-11 01:11:50 +4311 4311 4312 431.1 862.2 4311 1981-10-21 2024-10-11 01:11:51.000 1981-10-21 2024-10-11 01:11:51 +4312 4312 4313 431.2 862.4000000000001 4312 1981-10-22 2024-10-11 01:11:52.000 1981-10-22 2024-10-11 01:11:52 +4313 4313 4314 431.3 862.6 4313 1981-10-23 2024-10-11 01:11:53.000 1981-10-23 2024-10-11 01:11:53 +4314 4314 4315 431.4 862.8000000000001 4314 1981-10-24 2024-10-11 01:11:54.000 1981-10-24 2024-10-11 01:11:54 +4315 4315 4316 431.5 863 4315 1981-10-25 2024-10-11 01:11:55.000 1981-10-25 2024-10-11 01:11:55 +4316 4316 4317 431.6 863.2 4316 1981-10-26 2024-10-11 01:11:56.000 1981-10-26 2024-10-11 01:11:56 +4317 4317 4318 431.7 863.4000000000001 4317 1981-10-27 2024-10-11 01:11:57.000 1981-10-27 2024-10-11 01:11:57 +4318 4318 4319 431.8 863.6 4318 1981-10-28 2024-10-11 01:11:58.000 1981-10-28 2024-10-11 01:11:58 +4319 4319 4320 431.9 863.8000000000001 4319 1981-10-29 2024-10-11 01:11:59.000 1981-10-29 2024-10-11 01:11:59 +4320 4320 4321 432 864 4320 1981-10-30 2024-10-11 01:12:00.000 1981-10-30 2024-10-11 01:12:00 +4321 4321 4322 432.1 864.2 4321 1981-10-31 2024-10-11 01:12:01.000 1981-10-31 2024-10-11 01:12:01 +4322 4322 4323 432.2 864.4000000000001 4322 1981-11-01 2024-10-11 01:12:02.000 1981-11-01 2024-10-11 01:12:02 +4323 4323 4324 432.3 864.6 4323 1981-11-02 2024-10-11 01:12:03.000 1981-11-02 2024-10-11 01:12:03 +4324 4324 4325 432.4 864.8000000000001 4324 1981-11-03 2024-10-11 01:12:04.000 1981-11-03 2024-10-11 01:12:04 +4325 4325 4326 432.5 865 4325 1981-11-04 2024-10-11 01:12:05.000 1981-11-04 2024-10-11 01:12:05 +4326 4326 4327 432.6 865.2 4326 1981-11-05 2024-10-11 01:12:06.000 1981-11-05 2024-10-11 01:12:06 +4327 4327 4328 432.7 865.4000000000001 4327 1981-11-06 2024-10-11 01:12:07.000 1981-11-06 2024-10-11 01:12:07 +4328 4328 4329 432.8 865.6 4328 1981-11-07 2024-10-11 01:12:08.000 1981-11-07 2024-10-11 01:12:08 +4329 4329 4330 432.9 865.8000000000001 4329 1981-11-08 2024-10-11 01:12:09.000 1981-11-08 2024-10-11 01:12:09 +4330 4330 4331 433 866 4330 1981-11-09 2024-10-11 01:12:10.000 1981-11-09 2024-10-11 01:12:10 +4331 4331 4332 433.1 866.2 4331 1981-11-10 2024-10-11 01:12:11.000 1981-11-10 2024-10-11 01:12:11 +4332 4332 4333 433.2 866.4000000000001 4332 1981-11-11 2024-10-11 01:12:12.000 1981-11-11 2024-10-11 01:12:12 +4333 4333 4334 433.3 866.6 4333 1981-11-12 2024-10-11 01:12:13.000 1981-11-12 2024-10-11 01:12:13 +4334 4334 4335 433.4 866.8000000000001 4334 1981-11-13 2024-10-11 01:12:14.000 1981-11-13 2024-10-11 01:12:14 +4335 4335 4336 433.5 867 4335 1981-11-14 2024-10-11 01:12:15.000 1981-11-14 2024-10-11 01:12:15 +4336 4336 4337 433.6 867.2 4336 1981-11-15 2024-10-11 01:12:16.000 1981-11-15 2024-10-11 01:12:16 +4337 4337 4338 433.7 867.4000000000001 4337 1981-11-16 2024-10-11 01:12:17.000 1981-11-16 2024-10-11 01:12:17 +4338 4338 4339 433.8 867.6 4338 1981-11-17 2024-10-11 01:12:18.000 1981-11-17 2024-10-11 01:12:18 +4339 4339 4340 433.9 867.8000000000001 4339 1981-11-18 2024-10-11 01:12:19.000 1981-11-18 2024-10-11 01:12:19 +4340 4340 4341 434 868 4340 1981-11-19 2024-10-11 01:12:20.000 1981-11-19 2024-10-11 01:12:20 +4341 4341 4342 434.1 868.2 4341 1981-11-20 2024-10-11 01:12:21.000 1981-11-20 2024-10-11 01:12:21 +4342 4342 4343 434.2 868.4000000000001 4342 1981-11-21 2024-10-11 01:12:22.000 1981-11-21 2024-10-11 01:12:22 +4343 4343 4344 434.3 868.6 4343 1981-11-22 2024-10-11 01:12:23.000 1981-11-22 2024-10-11 01:12:23 +4344 4344 4345 434.4 868.8000000000001 4344 1981-11-23 2024-10-11 01:12:24.000 1981-11-23 2024-10-11 01:12:24 +4345 4345 4346 434.5 869 4345 1981-11-24 2024-10-11 01:12:25.000 1981-11-24 2024-10-11 01:12:25 +4346 4346 4347 434.6 869.2 4346 1981-11-25 2024-10-11 01:12:26.000 1981-11-25 2024-10-11 01:12:26 +4347 4347 4348 434.7 869.4000000000001 4347 1981-11-26 2024-10-11 01:12:27.000 1981-11-26 2024-10-11 01:12:27 +4348 4348 4349 434.8 869.6 4348 1981-11-27 2024-10-11 01:12:28.000 1981-11-27 2024-10-11 01:12:28 +4349 4349 4350 434.9 869.8000000000001 4349 1981-11-28 2024-10-11 01:12:29.000 1981-11-28 2024-10-11 01:12:29 +4350 4350 4351 435 870 4350 1981-11-29 2024-10-11 01:12:30.000 1981-11-29 2024-10-11 01:12:30 +4351 4351 4352 435.1 870.2 4351 1981-11-30 2024-10-11 01:12:31.000 1981-11-30 2024-10-11 01:12:31 +4352 4352 4353 435.2 870.4000000000001 4352 1981-12-01 2024-10-11 01:12:32.000 1981-12-01 2024-10-11 01:12:32 +4353 4353 4354 435.3 870.6 4353 1981-12-02 2024-10-11 01:12:33.000 1981-12-02 2024-10-11 01:12:33 +4354 4354 4355 435.4 870.8000000000001 4354 1981-12-03 2024-10-11 01:12:34.000 1981-12-03 2024-10-11 01:12:34 +4355 4355 4356 435.5 871 4355 1981-12-04 2024-10-11 01:12:35.000 1981-12-04 2024-10-11 01:12:35 +4356 4356 4357 435.6 871.2 4356 1981-12-05 2024-10-11 01:12:36.000 1981-12-05 2024-10-11 01:12:36 +4357 4357 4358 435.7 871.4000000000001 4357 1981-12-06 2024-10-11 01:12:37.000 1981-12-06 2024-10-11 01:12:37 +4358 4358 4359 435.8 871.6 4358 1981-12-07 2024-10-11 01:12:38.000 1981-12-07 2024-10-11 01:12:38 +4359 4359 4360 435.9 871.8000000000001 4359 1981-12-08 2024-10-11 01:12:39.000 1981-12-08 2024-10-11 01:12:39 +4360 4360 4361 436 872 4360 1981-12-09 2024-10-11 01:12:40.000 1981-12-09 2024-10-11 01:12:40 +4361 4361 4362 436.1 872.2 4361 1981-12-10 2024-10-11 01:12:41.000 1981-12-10 2024-10-11 01:12:41 +4362 4362 4363 436.2 872.4000000000001 4362 1981-12-11 2024-10-11 01:12:42.000 1981-12-11 2024-10-11 01:12:42 +4363 4363 4364 436.3 872.6 4363 1981-12-12 2024-10-11 01:12:43.000 1981-12-12 2024-10-11 01:12:43 +4364 4364 4365 436.4 872.8000000000001 4364 1981-12-13 2024-10-11 01:12:44.000 1981-12-13 2024-10-11 01:12:44 +4365 4365 4366 436.5 873 4365 1981-12-14 2024-10-11 01:12:45.000 1981-12-14 2024-10-11 01:12:45 +4366 4366 4367 436.6 873.2 4366 1981-12-15 2024-10-11 01:12:46.000 1981-12-15 2024-10-11 01:12:46 +4367 4367 4368 436.7 873.4000000000001 4367 1981-12-16 2024-10-11 01:12:47.000 1981-12-16 2024-10-11 01:12:47 +4368 4368 4369 436.8 873.6 4368 1981-12-17 2024-10-11 01:12:48.000 1981-12-17 2024-10-11 01:12:48 +4369 4369 4370 436.9 873.8000000000001 4369 1981-12-18 2024-10-11 01:12:49.000 1981-12-18 2024-10-11 01:12:49 +4370 4370 4371 437 874 4370 1981-12-19 2024-10-11 01:12:50.000 1981-12-19 2024-10-11 01:12:50 +4371 4371 4372 437.1 874.2 4371 1981-12-20 2024-10-11 01:12:51.000 1981-12-20 2024-10-11 01:12:51 +4372 4372 4373 437.2 874.4000000000001 4372 1981-12-21 2024-10-11 01:12:52.000 1981-12-21 2024-10-11 01:12:52 +4373 4373 4374 437.3 874.6 4373 1981-12-22 2024-10-11 01:12:53.000 1981-12-22 2024-10-11 01:12:53 +4374 4374 4375 437.4 874.8000000000001 4374 1981-12-23 2024-10-11 01:12:54.000 1981-12-23 2024-10-11 01:12:54 +4375 4375 4376 437.5 875 4375 1981-12-24 2024-10-11 01:12:55.000 1981-12-24 2024-10-11 01:12:55 +4376 4376 4377 437.6 875.2 4376 1981-12-25 2024-10-11 01:12:56.000 1981-12-25 2024-10-11 01:12:56 +4377 4377 4378 437.7 875.4000000000001 4377 1981-12-26 2024-10-11 01:12:57.000 1981-12-26 2024-10-11 01:12:57 +4378 4378 4379 437.8 875.6 4378 1981-12-27 2024-10-11 01:12:58.000 1981-12-27 2024-10-11 01:12:58 +4379 4379 4380 437.9 875.8000000000001 4379 1981-12-28 2024-10-11 01:12:59.000 1981-12-28 2024-10-11 01:12:59 +4380 4380 4381 438 876 4380 1981-12-29 2024-10-11 01:13:00.000 1981-12-29 2024-10-11 01:13:00 +4381 4381 4382 438.1 876.2 4381 1981-12-30 2024-10-11 01:13:01.000 1981-12-30 2024-10-11 01:13:01 +4382 4382 4383 438.2 876.4000000000001 4382 1981-12-31 2024-10-11 01:13:02.000 1981-12-31 2024-10-11 01:13:02 +4383 4383 4384 438.3 876.6 4383 1982-01-01 2024-10-11 01:13:03.000 1982-01-01 2024-10-11 01:13:03 +4384 4384 4385 438.4 876.8000000000001 4384 1982-01-02 2024-10-11 01:13:04.000 1982-01-02 2024-10-11 01:13:04 +4385 4385 4386 438.5 877 4385 1982-01-03 2024-10-11 01:13:05.000 1982-01-03 2024-10-11 01:13:05 +4386 4386 4387 438.6 877.2 4386 1982-01-04 2024-10-11 01:13:06.000 1982-01-04 2024-10-11 01:13:06 +4387 4387 4388 438.7 877.4000000000001 4387 1982-01-05 2024-10-11 01:13:07.000 1982-01-05 2024-10-11 01:13:07 +4388 4388 4389 438.8 877.6 4388 1982-01-06 2024-10-11 01:13:08.000 1982-01-06 2024-10-11 01:13:08 +4389 4389 4390 438.9 877.8000000000001 4389 1982-01-07 2024-10-11 01:13:09.000 1982-01-07 2024-10-11 01:13:09 +4390 4390 4391 439 878 4390 1982-01-08 2024-10-11 01:13:10.000 1982-01-08 2024-10-11 01:13:10 +4391 4391 4392 439.1 878.2 4391 1982-01-09 2024-10-11 01:13:11.000 1982-01-09 2024-10-11 01:13:11 +4392 4392 4393 439.2 878.4000000000001 4392 1982-01-10 2024-10-11 01:13:12.000 1982-01-10 2024-10-11 01:13:12 +4393 4393 4394 439.3 878.6 4393 1982-01-11 2024-10-11 01:13:13.000 1982-01-11 2024-10-11 01:13:13 +4394 4394 4395 439.4 878.8000000000001 4394 1982-01-12 2024-10-11 01:13:14.000 1982-01-12 2024-10-11 01:13:14 +4395 4395 4396 439.5 879 4395 1982-01-13 2024-10-11 01:13:15.000 1982-01-13 2024-10-11 01:13:15 +4396 4396 4397 439.6 879.2 4396 1982-01-14 2024-10-11 01:13:16.000 1982-01-14 2024-10-11 01:13:16 +4397 4397 4398 439.7 879.4000000000001 4397 1982-01-15 2024-10-11 01:13:17.000 1982-01-15 2024-10-11 01:13:17 +4398 4398 4399 439.8 879.6 4398 1982-01-16 2024-10-11 01:13:18.000 1982-01-16 2024-10-11 01:13:18 +4399 4399 4400 439.9 879.8000000000001 4399 1982-01-17 2024-10-11 01:13:19.000 1982-01-17 2024-10-11 01:13:19 +4400 4400 4401 440 880 4400 1982-01-18 2024-10-11 01:13:20.000 1982-01-18 2024-10-11 01:13:20 +4401 4401 4402 440.1 880.2 4401 1982-01-19 2024-10-11 01:13:21.000 1982-01-19 2024-10-11 01:13:21 +4402 4402 4403 440.2 880.4000000000001 4402 1982-01-20 2024-10-11 01:13:22.000 1982-01-20 2024-10-11 01:13:22 +4403 4403 4404 440.3 880.6 4403 1982-01-21 2024-10-11 01:13:23.000 1982-01-21 2024-10-11 01:13:23 +4404 4404 4405 440.4 880.8000000000001 4404 1982-01-22 2024-10-11 01:13:24.000 1982-01-22 2024-10-11 01:13:24 +4405 4405 4406 440.5 881 4405 1982-01-23 2024-10-11 01:13:25.000 1982-01-23 2024-10-11 01:13:25 +4406 4406 4407 440.6 881.2 4406 1982-01-24 2024-10-11 01:13:26.000 1982-01-24 2024-10-11 01:13:26 +4407 4407 4408 440.7 881.4000000000001 4407 1982-01-25 2024-10-11 01:13:27.000 1982-01-25 2024-10-11 01:13:27 +4408 4408 4409 440.8 881.6 4408 1982-01-26 2024-10-11 01:13:28.000 1982-01-26 2024-10-11 01:13:28 +4409 4409 4410 440.9 881.8000000000001 4409 1982-01-27 2024-10-11 01:13:29.000 1982-01-27 2024-10-11 01:13:29 +4410 4410 4411 441 882 4410 1982-01-28 2024-10-11 01:13:30.000 1982-01-28 2024-10-11 01:13:30 +4411 4411 4412 441.1 882.2 4411 1982-01-29 2024-10-11 01:13:31.000 1982-01-29 2024-10-11 01:13:31 +4412 4412 4413 441.2 882.4000000000001 4412 1982-01-30 2024-10-11 01:13:32.000 1982-01-30 2024-10-11 01:13:32 +4413 4413 4414 441.3 882.6 4413 1982-01-31 2024-10-11 01:13:33.000 1982-01-31 2024-10-11 01:13:33 +4414 4414 4415 441.4 882.8000000000001 4414 1982-02-01 2024-10-11 01:13:34.000 1982-02-01 2024-10-11 01:13:34 +4415 4415 4416 441.5 883 4415 1982-02-02 2024-10-11 01:13:35.000 1982-02-02 2024-10-11 01:13:35 +4416 4416 4417 441.6 883.2 4416 1982-02-03 2024-10-11 01:13:36.000 1982-02-03 2024-10-11 01:13:36 +4417 4417 4418 441.7 883.4000000000001 4417 1982-02-04 2024-10-11 01:13:37.000 1982-02-04 2024-10-11 01:13:37 +4418 4418 4419 441.8 883.6 4418 1982-02-05 2024-10-11 01:13:38.000 1982-02-05 2024-10-11 01:13:38 +4419 4419 4420 441.9 883.8000000000001 4419 1982-02-06 2024-10-11 01:13:39.000 1982-02-06 2024-10-11 01:13:39 +4420 4420 4421 442 884 4420 1982-02-07 2024-10-11 01:13:40.000 1982-02-07 2024-10-11 01:13:40 +4421 4421 4422 442.1 884.2 4421 1982-02-08 2024-10-11 01:13:41.000 1982-02-08 2024-10-11 01:13:41 +4422 4422 4423 442.2 884.4000000000001 4422 1982-02-09 2024-10-11 01:13:42.000 1982-02-09 2024-10-11 01:13:42 +4423 4423 4424 442.3 884.6 4423 1982-02-10 2024-10-11 01:13:43.000 1982-02-10 2024-10-11 01:13:43 +4424 4424 4425 442.4 884.8000000000001 4424 1982-02-11 2024-10-11 01:13:44.000 1982-02-11 2024-10-11 01:13:44 +4425 4425 4426 442.5 885 4425 1982-02-12 2024-10-11 01:13:45.000 1982-02-12 2024-10-11 01:13:45 +4426 4426 4427 442.6 885.2 4426 1982-02-13 2024-10-11 01:13:46.000 1982-02-13 2024-10-11 01:13:46 +4427 4427 4428 442.7 885.4000000000001 4427 1982-02-14 2024-10-11 01:13:47.000 1982-02-14 2024-10-11 01:13:47 +4428 4428 4429 442.8 885.6 4428 1982-02-15 2024-10-11 01:13:48.000 1982-02-15 2024-10-11 01:13:48 +4429 4429 4430 442.9 885.8000000000001 4429 1982-02-16 2024-10-11 01:13:49.000 1982-02-16 2024-10-11 01:13:49 +4430 4430 4431 443 886 4430 1982-02-17 2024-10-11 01:13:50.000 1982-02-17 2024-10-11 01:13:50 +4431 4431 4432 443.1 886.2 4431 1982-02-18 2024-10-11 01:13:51.000 1982-02-18 2024-10-11 01:13:51 +4432 4432 4433 443.2 886.4000000000001 4432 1982-02-19 2024-10-11 01:13:52.000 1982-02-19 2024-10-11 01:13:52 +4433 4433 4434 443.3 886.6 4433 1982-02-20 2024-10-11 01:13:53.000 1982-02-20 2024-10-11 01:13:53 +4434 4434 4435 443.4 886.8000000000001 4434 1982-02-21 2024-10-11 01:13:54.000 1982-02-21 2024-10-11 01:13:54 +4435 4435 4436 443.5 887 4435 1982-02-22 2024-10-11 01:13:55.000 1982-02-22 2024-10-11 01:13:55 +4436 4436 4437 443.6 887.2 4436 1982-02-23 2024-10-11 01:13:56.000 1982-02-23 2024-10-11 01:13:56 +4437 4437 4438 443.7 887.4000000000001 4437 1982-02-24 2024-10-11 01:13:57.000 1982-02-24 2024-10-11 01:13:57 +4438 4438 4439 443.8 887.6 4438 1982-02-25 2024-10-11 01:13:58.000 1982-02-25 2024-10-11 01:13:58 +4439 4439 4440 443.9 887.8000000000001 4439 1982-02-26 2024-10-11 01:13:59.000 1982-02-26 2024-10-11 01:13:59 +4440 4440 4441 444 888 4440 1982-02-27 2024-10-11 01:14:00.000 1982-02-27 2024-10-11 01:14:00 +4441 4441 4442 444.1 888.2 4441 1982-02-28 2024-10-11 01:14:01.000 1982-02-28 2024-10-11 01:14:01 +4442 4442 4443 444.2 888.4000000000001 4442 1982-03-01 2024-10-11 01:14:02.000 1982-03-01 2024-10-11 01:14:02 +4443 4443 4444 444.3 888.6 4443 1982-03-02 2024-10-11 01:14:03.000 1982-03-02 2024-10-11 01:14:03 +4444 4444 4445 444.4 888.8000000000001 4444 1982-03-03 2024-10-11 01:14:04.000 1982-03-03 2024-10-11 01:14:04 +4445 4445 4446 444.5 889 4445 1982-03-04 2024-10-11 01:14:05.000 1982-03-04 2024-10-11 01:14:05 +4446 4446 4447 444.6 889.2 4446 1982-03-05 2024-10-11 01:14:06.000 1982-03-05 2024-10-11 01:14:06 +4447 4447 4448 444.7 889.4000000000001 4447 1982-03-06 2024-10-11 01:14:07.000 1982-03-06 2024-10-11 01:14:07 +4448 4448 4449 444.8 889.6 4448 1982-03-07 2024-10-11 01:14:08.000 1982-03-07 2024-10-11 01:14:08 +4449 4449 4450 444.9 889.8000000000001 4449 1982-03-08 2024-10-11 01:14:09.000 1982-03-08 2024-10-11 01:14:09 +4450 4450 4451 445 890 4450 1982-03-09 2024-10-11 01:14:10.000 1982-03-09 2024-10-11 01:14:10 +4451 4451 4452 445.1 890.2 4451 1982-03-10 2024-10-11 01:14:11.000 1982-03-10 2024-10-11 01:14:11 +4452 4452 4453 445.2 890.4000000000001 4452 1982-03-11 2024-10-11 01:14:12.000 1982-03-11 2024-10-11 01:14:12 +4453 4453 4454 445.3 890.6 4453 1982-03-12 2024-10-11 01:14:13.000 1982-03-12 2024-10-11 01:14:13 +4454 4454 4455 445.4 890.8000000000001 4454 1982-03-13 2024-10-11 01:14:14.000 1982-03-13 2024-10-11 01:14:14 +4455 4455 4456 445.5 891 4455 1982-03-14 2024-10-11 01:14:15.000 1982-03-14 2024-10-11 01:14:15 +4456 4456 4457 445.6 891.2 4456 1982-03-15 2024-10-11 01:14:16.000 1982-03-15 2024-10-11 01:14:16 +4457 4457 4458 445.7 891.4000000000001 4457 1982-03-16 2024-10-11 01:14:17.000 1982-03-16 2024-10-11 01:14:17 +4458 4458 4459 445.8 891.6 4458 1982-03-17 2024-10-11 01:14:18.000 1982-03-17 2024-10-11 01:14:18 +4459 4459 4460 445.9 891.8000000000001 4459 1982-03-18 2024-10-11 01:14:19.000 1982-03-18 2024-10-11 01:14:19 +4460 4460 4461 446 892 4460 1982-03-19 2024-10-11 01:14:20.000 1982-03-19 2024-10-11 01:14:20 +4461 4461 4462 446.1 892.2 4461 1982-03-20 2024-10-11 01:14:21.000 1982-03-20 2024-10-11 01:14:21 +4462 4462 4463 446.2 892.4000000000001 4462 1982-03-21 2024-10-11 01:14:22.000 1982-03-21 2024-10-11 01:14:22 +4463 4463 4464 446.3 892.6 4463 1982-03-22 2024-10-11 01:14:23.000 1982-03-22 2024-10-11 01:14:23 +4464 4464 4465 446.4 892.8000000000001 4464 1982-03-23 2024-10-11 01:14:24.000 1982-03-23 2024-10-11 01:14:24 +4465 4465 4466 446.5 893 4465 1982-03-24 2024-10-11 01:14:25.000 1982-03-24 2024-10-11 01:14:25 +4466 4466 4467 446.6 893.2 4466 1982-03-25 2024-10-11 01:14:26.000 1982-03-25 2024-10-11 01:14:26 +4467 4467 4468 446.7 893.4000000000001 4467 1982-03-26 2024-10-11 01:14:27.000 1982-03-26 2024-10-11 01:14:27 +4468 4468 4469 446.8 893.6 4468 1982-03-27 2024-10-11 01:14:28.000 1982-03-27 2024-10-11 01:14:28 +4469 4469 4470 446.9 893.8000000000001 4469 1982-03-28 2024-10-11 01:14:29.000 1982-03-28 2024-10-11 01:14:29 +4470 4470 4471 447 894 4470 1982-03-29 2024-10-11 01:14:30.000 1982-03-29 2024-10-11 01:14:30 +4471 4471 4472 447.1 894.2 4471 1982-03-30 2024-10-11 01:14:31.000 1982-03-30 2024-10-11 01:14:31 +4472 4472 4473 447.2 894.4000000000001 4472 1982-03-31 2024-10-11 01:14:32.000 1982-03-31 2024-10-11 01:14:32 +4473 4473 4474 447.3 894.6 4473 1982-04-01 2024-10-11 01:14:33.000 1982-04-01 2024-10-11 01:14:33 +4474 4474 4475 447.4 894.8000000000001 4474 1982-04-02 2024-10-11 01:14:34.000 1982-04-02 2024-10-11 01:14:34 +4475 4475 4476 447.5 895 4475 1982-04-03 2024-10-11 01:14:35.000 1982-04-03 2024-10-11 01:14:35 +4476 4476 4477 447.6 895.2 4476 1982-04-04 2024-10-11 01:14:36.000 1982-04-04 2024-10-11 01:14:36 +4477 4477 4478 447.7 895.4000000000001 4477 1982-04-05 2024-10-11 01:14:37.000 1982-04-05 2024-10-11 01:14:37 +4478 4478 4479 447.8 895.6 4478 1982-04-06 2024-10-11 01:14:38.000 1982-04-06 2024-10-11 01:14:38 +4479 4479 4480 447.9 895.8000000000001 4479 1982-04-07 2024-10-11 01:14:39.000 1982-04-07 2024-10-11 01:14:39 +4480 4480 4481 448 896 4480 1982-04-08 2024-10-11 01:14:40.000 1982-04-08 2024-10-11 01:14:40 +4481 4481 4482 448.1 896.2 4481 1982-04-09 2024-10-11 01:14:41.000 1982-04-09 2024-10-11 01:14:41 +4482 4482 4483 448.2 896.4000000000001 4482 1982-04-10 2024-10-11 01:14:42.000 1982-04-10 2024-10-11 01:14:42 +4483 4483 4484 448.3 896.6 4483 1982-04-11 2024-10-11 01:14:43.000 1982-04-11 2024-10-11 01:14:43 +4484 4484 4485 448.4 896.8000000000001 4484 1982-04-12 2024-10-11 01:14:44.000 1982-04-12 2024-10-11 01:14:44 +4485 4485 4486 448.5 897 4485 1982-04-13 2024-10-11 01:14:45.000 1982-04-13 2024-10-11 01:14:45 +4486 4486 4487 448.6 897.2 4486 1982-04-14 2024-10-11 01:14:46.000 1982-04-14 2024-10-11 01:14:46 +4487 4487 4488 448.7 897.4000000000001 4487 1982-04-15 2024-10-11 01:14:47.000 1982-04-15 2024-10-11 01:14:47 +4488 4488 4489 448.8 897.6 4488 1982-04-16 2024-10-11 01:14:48.000 1982-04-16 2024-10-11 01:14:48 +4489 4489 4490 448.9 897.8000000000001 4489 1982-04-17 2024-10-11 01:14:49.000 1982-04-17 2024-10-11 01:14:49 +4490 4490 4491 449 898 4490 1982-04-18 2024-10-11 01:14:50.000 1982-04-18 2024-10-11 01:14:50 +4491 4491 4492 449.1 898.2 4491 1982-04-19 2024-10-11 01:14:51.000 1982-04-19 2024-10-11 01:14:51 +4492 4492 4493 449.2 898.4000000000001 4492 1982-04-20 2024-10-11 01:14:52.000 1982-04-20 2024-10-11 01:14:52 +4493 4493 4494 449.3 898.6 4493 1982-04-21 2024-10-11 01:14:53.000 1982-04-21 2024-10-11 01:14:53 +4494 4494 4495 449.4 898.8000000000001 4494 1982-04-22 2024-10-11 01:14:54.000 1982-04-22 2024-10-11 01:14:54 +4495 4495 4496 449.5 899 4495 1982-04-23 2024-10-11 01:14:55.000 1982-04-23 2024-10-11 01:14:55 +4496 4496 4497 449.6 899.2 4496 1982-04-24 2024-10-11 01:14:56.000 1982-04-24 2024-10-11 01:14:56 +4497 4497 4498 449.7 899.4000000000001 4497 1982-04-25 2024-10-11 01:14:57.000 1982-04-25 2024-10-11 01:14:57 +4498 4498 4499 449.8 899.6 4498 1982-04-26 2024-10-11 01:14:58.000 1982-04-26 2024-10-11 01:14:58 +4499 4499 4500 449.9 899.8000000000001 4499 1982-04-27 2024-10-11 01:14:59.000 1982-04-27 2024-10-11 01:14:59 +4500 4500 4501 450 900 4500 1982-04-28 2024-10-11 01:15:00.000 1982-04-28 2024-10-11 01:15:00 +4501 4501 4502 450.1 900.2 4501 1982-04-29 2024-10-11 01:15:01.000 1982-04-29 2024-10-11 01:15:01 +4502 4502 4503 450.2 900.4000000000001 4502 1982-04-30 2024-10-11 01:15:02.000 1982-04-30 2024-10-11 01:15:02 +4503 4503 4504 450.3 900.6 4503 1982-05-01 2024-10-11 01:15:03.000 1982-05-01 2024-10-11 01:15:03 +4504 4504 4505 450.4 900.8000000000001 4504 1982-05-02 2024-10-11 01:15:04.000 1982-05-02 2024-10-11 01:15:04 +4505 4505 4506 450.5 901 4505 1982-05-03 2024-10-11 01:15:05.000 1982-05-03 2024-10-11 01:15:05 +4506 4506 4507 450.6 901.2 4506 1982-05-04 2024-10-11 01:15:06.000 1982-05-04 2024-10-11 01:15:06 +4507 4507 4508 450.7 901.4000000000001 4507 1982-05-05 2024-10-11 01:15:07.000 1982-05-05 2024-10-11 01:15:07 +4508 4508 4509 450.8 901.6 4508 1982-05-06 2024-10-11 01:15:08.000 1982-05-06 2024-10-11 01:15:08 +4509 4509 4510 450.9 901.8000000000001 4509 1982-05-07 2024-10-11 01:15:09.000 1982-05-07 2024-10-11 01:15:09 +4510 4510 4511 451 902 4510 1982-05-08 2024-10-11 01:15:10.000 1982-05-08 2024-10-11 01:15:10 +4511 4511 4512 451.1 902.2 4511 1982-05-09 2024-10-11 01:15:11.000 1982-05-09 2024-10-11 01:15:11 +4512 4512 4513 451.2 902.4000000000001 4512 1982-05-10 2024-10-11 01:15:12.000 1982-05-10 2024-10-11 01:15:12 +4513 4513 4514 451.3 902.6 4513 1982-05-11 2024-10-11 01:15:13.000 1982-05-11 2024-10-11 01:15:13 +4514 4514 4515 451.4 902.8000000000001 4514 1982-05-12 2024-10-11 01:15:14.000 1982-05-12 2024-10-11 01:15:14 +4515 4515 4516 451.5 903 4515 1982-05-13 2024-10-11 01:15:15.000 1982-05-13 2024-10-11 01:15:15 +4516 4516 4517 451.6 903.2 4516 1982-05-14 2024-10-11 01:15:16.000 1982-05-14 2024-10-11 01:15:16 +4517 4517 4518 451.7 903.4000000000001 4517 1982-05-15 2024-10-11 01:15:17.000 1982-05-15 2024-10-11 01:15:17 +4518 4518 4519 451.8 903.6 4518 1982-05-16 2024-10-11 01:15:18.000 1982-05-16 2024-10-11 01:15:18 +4519 4519 4520 451.9 903.8000000000001 4519 1982-05-17 2024-10-11 01:15:19.000 1982-05-17 2024-10-11 01:15:19 +4520 4520 4521 452 904 4520 1982-05-18 2024-10-11 01:15:20.000 1982-05-18 2024-10-11 01:15:20 +4521 4521 4522 452.1 904.2 4521 1982-05-19 2024-10-11 01:15:21.000 1982-05-19 2024-10-11 01:15:21 +4522 4522 4523 452.2 904.4000000000001 4522 1982-05-20 2024-10-11 01:15:22.000 1982-05-20 2024-10-11 01:15:22 +4523 4523 4524 452.3 904.6 4523 1982-05-21 2024-10-11 01:15:23.000 1982-05-21 2024-10-11 01:15:23 +4524 4524 4525 452.4 904.8000000000001 4524 1982-05-22 2024-10-11 01:15:24.000 1982-05-22 2024-10-11 01:15:24 +4525 4525 4526 452.5 905 4525 1982-05-23 2024-10-11 01:15:25.000 1982-05-23 2024-10-11 01:15:25 +4526 4526 4527 452.6 905.2 4526 1982-05-24 2024-10-11 01:15:26.000 1982-05-24 2024-10-11 01:15:26 +4527 4527 4528 452.7 905.4000000000001 4527 1982-05-25 2024-10-11 01:15:27.000 1982-05-25 2024-10-11 01:15:27 +4528 4528 4529 452.8 905.6 4528 1982-05-26 2024-10-11 01:15:28.000 1982-05-26 2024-10-11 01:15:28 +4529 4529 4530 452.9 905.8000000000001 4529 1982-05-27 2024-10-11 01:15:29.000 1982-05-27 2024-10-11 01:15:29 +4530 4530 4531 453 906 4530 1982-05-28 2024-10-11 01:15:30.000 1982-05-28 2024-10-11 01:15:30 +4531 4531 4532 453.1 906.2 4531 1982-05-29 2024-10-11 01:15:31.000 1982-05-29 2024-10-11 01:15:31 +4532 4532 4533 453.2 906.4000000000001 4532 1982-05-30 2024-10-11 01:15:32.000 1982-05-30 2024-10-11 01:15:32 +4533 4533 4534 453.3 906.6 4533 1982-05-31 2024-10-11 01:15:33.000 1982-05-31 2024-10-11 01:15:33 +4534 4534 4535 453.4 906.8000000000001 4534 1982-06-01 2024-10-11 01:15:34.000 1982-06-01 2024-10-11 01:15:34 +4535 4535 4536 453.5 907 4535 1982-06-02 2024-10-11 01:15:35.000 1982-06-02 2024-10-11 01:15:35 +4536 4536 4537 453.6 907.2 4536 1982-06-03 2024-10-11 01:15:36.000 1982-06-03 2024-10-11 01:15:36 +4537 4537 4538 453.7 907.4000000000001 4537 1982-06-04 2024-10-11 01:15:37.000 1982-06-04 2024-10-11 01:15:37 +4538 4538 4539 453.8 907.6 4538 1982-06-05 2024-10-11 01:15:38.000 1982-06-05 2024-10-11 01:15:38 +4539 4539 4540 453.9 907.8000000000001 4539 1982-06-06 2024-10-11 01:15:39.000 1982-06-06 2024-10-11 01:15:39 +4540 4540 4541 454 908 4540 1982-06-07 2024-10-11 01:15:40.000 1982-06-07 2024-10-11 01:15:40 +4541 4541 4542 454.1 908.2 4541 1982-06-08 2024-10-11 01:15:41.000 1982-06-08 2024-10-11 01:15:41 +4542 4542 4543 454.2 908.4000000000001 4542 1982-06-09 2024-10-11 01:15:42.000 1982-06-09 2024-10-11 01:15:42 +4543 4543 4544 454.3 908.6 4543 1982-06-10 2024-10-11 01:15:43.000 1982-06-10 2024-10-11 01:15:43 +4544 4544 4545 454.4 908.8000000000001 4544 1982-06-11 2024-10-11 01:15:44.000 1982-06-11 2024-10-11 01:15:44 +4545 4545 4546 454.5 909 4545 1982-06-12 2024-10-11 01:15:45.000 1982-06-12 2024-10-11 01:15:45 +4546 4546 4547 454.6 909.2 4546 1982-06-13 2024-10-11 01:15:46.000 1982-06-13 2024-10-11 01:15:46 +4547 4547 4548 454.7 909.4000000000001 4547 1982-06-14 2024-10-11 01:15:47.000 1982-06-14 2024-10-11 01:15:47 +4548 4548 4549 454.8 909.6 4548 1982-06-15 2024-10-11 01:15:48.000 1982-06-15 2024-10-11 01:15:48 +4549 4549 4550 454.9 909.8000000000001 4549 1982-06-16 2024-10-11 01:15:49.000 1982-06-16 2024-10-11 01:15:49 +4550 4550 4551 455 910 4550 1982-06-17 2024-10-11 01:15:50.000 1982-06-17 2024-10-11 01:15:50 +4551 4551 4552 455.1 910.2 4551 1982-06-18 2024-10-11 01:15:51.000 1982-06-18 2024-10-11 01:15:51 +4552 4552 4553 455.2 910.4000000000001 4552 1982-06-19 2024-10-11 01:15:52.000 1982-06-19 2024-10-11 01:15:52 +4553 4553 4554 455.3 910.6 4553 1982-06-20 2024-10-11 01:15:53.000 1982-06-20 2024-10-11 01:15:53 +4554 4554 4555 455.4 910.8000000000001 4554 1982-06-21 2024-10-11 01:15:54.000 1982-06-21 2024-10-11 01:15:54 +4555 4555 4556 455.5 911 4555 1982-06-22 2024-10-11 01:15:55.000 1982-06-22 2024-10-11 01:15:55 +4556 4556 4557 455.6 911.2 4556 1982-06-23 2024-10-11 01:15:56.000 1982-06-23 2024-10-11 01:15:56 +4557 4557 4558 455.7 911.4000000000001 4557 1982-06-24 2024-10-11 01:15:57.000 1982-06-24 2024-10-11 01:15:57 +4558 4558 4559 455.8 911.6 4558 1982-06-25 2024-10-11 01:15:58.000 1982-06-25 2024-10-11 01:15:58 +4559 4559 4560 455.9 911.8000000000001 4559 1982-06-26 2024-10-11 01:15:59.000 1982-06-26 2024-10-11 01:15:59 +4560 4560 4561 456 912 4560 1982-06-27 2024-10-11 01:16:00.000 1982-06-27 2024-10-11 01:16:00 +4561 4561 4562 456.1 912.2 4561 1982-06-28 2024-10-11 01:16:01.000 1982-06-28 2024-10-11 01:16:01 +4562 4562 4563 456.2 912.4000000000001 4562 1982-06-29 2024-10-11 01:16:02.000 1982-06-29 2024-10-11 01:16:02 +4563 4563 4564 456.3 912.6 4563 1982-06-30 2024-10-11 01:16:03.000 1982-06-30 2024-10-11 01:16:03 +4564 4564 4565 456.4 912.8000000000001 4564 1982-07-01 2024-10-11 01:16:04.000 1982-07-01 2024-10-11 01:16:04 +4565 4565 4566 456.5 913 4565 1982-07-02 2024-10-11 01:16:05.000 1982-07-02 2024-10-11 01:16:05 +4566 4566 4567 456.6 913.2 4566 1982-07-03 2024-10-11 01:16:06.000 1982-07-03 2024-10-11 01:16:06 +4567 4567 4568 456.7 913.4000000000001 4567 1982-07-04 2024-10-11 01:16:07.000 1982-07-04 2024-10-11 01:16:07 +4568 4568 4569 456.8 913.6 4568 1982-07-05 2024-10-11 01:16:08.000 1982-07-05 2024-10-11 01:16:08 +4569 4569 4570 456.9 913.8000000000001 4569 1982-07-06 2024-10-11 01:16:09.000 1982-07-06 2024-10-11 01:16:09 +4570 4570 4571 457 914 4570 1982-07-07 2024-10-11 01:16:10.000 1982-07-07 2024-10-11 01:16:10 +4571 4571 4572 457.1 914.2 4571 1982-07-08 2024-10-11 01:16:11.000 1982-07-08 2024-10-11 01:16:11 +4572 4572 4573 457.2 914.4000000000001 4572 1982-07-09 2024-10-11 01:16:12.000 1982-07-09 2024-10-11 01:16:12 +4573 4573 4574 457.3 914.6 4573 1982-07-10 2024-10-11 01:16:13.000 1982-07-10 2024-10-11 01:16:13 +4574 4574 4575 457.4 914.8000000000001 4574 1982-07-11 2024-10-11 01:16:14.000 1982-07-11 2024-10-11 01:16:14 +4575 4575 4576 457.5 915 4575 1982-07-12 2024-10-11 01:16:15.000 1982-07-12 2024-10-11 01:16:15 +4576 4576 4577 457.6 915.2 4576 1982-07-13 2024-10-11 01:16:16.000 1982-07-13 2024-10-11 01:16:16 +4577 4577 4578 457.7 915.4000000000001 4577 1982-07-14 2024-10-11 01:16:17.000 1982-07-14 2024-10-11 01:16:17 +4578 4578 4579 457.8 915.6 4578 1982-07-15 2024-10-11 01:16:18.000 1982-07-15 2024-10-11 01:16:18 +4579 4579 4580 457.9 915.8000000000001 4579 1982-07-16 2024-10-11 01:16:19.000 1982-07-16 2024-10-11 01:16:19 +4580 4580 4581 458 916 4580 1982-07-17 2024-10-11 01:16:20.000 1982-07-17 2024-10-11 01:16:20 +4581 4581 4582 458.1 916.2 4581 1982-07-18 2024-10-11 01:16:21.000 1982-07-18 2024-10-11 01:16:21 +4582 4582 4583 458.2 916.4000000000001 4582 1982-07-19 2024-10-11 01:16:22.000 1982-07-19 2024-10-11 01:16:22 +4583 4583 4584 458.3 916.6 4583 1982-07-20 2024-10-11 01:16:23.000 1982-07-20 2024-10-11 01:16:23 +4584 4584 4585 458.4 916.8000000000001 4584 1982-07-21 2024-10-11 01:16:24.000 1982-07-21 2024-10-11 01:16:24 +4585 4585 4586 458.5 917 4585 1982-07-22 2024-10-11 01:16:25.000 1982-07-22 2024-10-11 01:16:25 +4586 4586 4587 458.6 917.2 4586 1982-07-23 2024-10-11 01:16:26.000 1982-07-23 2024-10-11 01:16:26 +4587 4587 4588 458.7 917.4000000000001 4587 1982-07-24 2024-10-11 01:16:27.000 1982-07-24 2024-10-11 01:16:27 +4588 4588 4589 458.8 917.6 4588 1982-07-25 2024-10-11 01:16:28.000 1982-07-25 2024-10-11 01:16:28 +4589 4589 4590 458.9 917.8000000000001 4589 1982-07-26 2024-10-11 01:16:29.000 1982-07-26 2024-10-11 01:16:29 +4590 4590 4591 459 918 4590 1982-07-27 2024-10-11 01:16:30.000 1982-07-27 2024-10-11 01:16:30 +4591 4591 4592 459.1 918.2 4591 1982-07-28 2024-10-11 01:16:31.000 1982-07-28 2024-10-11 01:16:31 +4592 4592 4593 459.2 918.4000000000001 4592 1982-07-29 2024-10-11 01:16:32.000 1982-07-29 2024-10-11 01:16:32 +4593 4593 4594 459.3 918.6 4593 1982-07-30 2024-10-11 01:16:33.000 1982-07-30 2024-10-11 01:16:33 +4594 4594 4595 459.4 918.8000000000001 4594 1982-07-31 2024-10-11 01:16:34.000 1982-07-31 2024-10-11 01:16:34 +4595 4595 4596 459.5 919 4595 1982-08-01 2024-10-11 01:16:35.000 1982-08-01 2024-10-11 01:16:35 +4596 4596 4597 459.6 919.2 4596 1982-08-02 2024-10-11 01:16:36.000 1982-08-02 2024-10-11 01:16:36 +4597 4597 4598 459.7 919.4000000000001 4597 1982-08-03 2024-10-11 01:16:37.000 1982-08-03 2024-10-11 01:16:37 +4598 4598 4599 459.8 919.6 4598 1982-08-04 2024-10-11 01:16:38.000 1982-08-04 2024-10-11 01:16:38 +4599 4599 4600 459.9 919.8000000000001 4599 1982-08-05 2024-10-11 01:16:39.000 1982-08-05 2024-10-11 01:16:39 +4600 4600 4601 460 920 4600 1982-08-06 2024-10-11 01:16:40.000 1982-08-06 2024-10-11 01:16:40 +4601 4601 4602 460.1 920.2 4601 1982-08-07 2024-10-11 01:16:41.000 1982-08-07 2024-10-11 01:16:41 +4602 4602 4603 460.2 920.4000000000001 4602 1982-08-08 2024-10-11 01:16:42.000 1982-08-08 2024-10-11 01:16:42 +4603 4603 4604 460.3 920.6 4603 1982-08-09 2024-10-11 01:16:43.000 1982-08-09 2024-10-11 01:16:43 +4604 4604 4605 460.4 920.8000000000001 4604 1982-08-10 2024-10-11 01:16:44.000 1982-08-10 2024-10-11 01:16:44 +4605 4605 4606 460.5 921 4605 1982-08-11 2024-10-11 01:16:45.000 1982-08-11 2024-10-11 01:16:45 +4606 4606 4607 460.6 921.2 4606 1982-08-12 2024-10-11 01:16:46.000 1982-08-12 2024-10-11 01:16:46 +4607 4607 4608 460.7 921.4000000000001 4607 1982-08-13 2024-10-11 01:16:47.000 1982-08-13 2024-10-11 01:16:47 +4608 4608 4609 460.8 921.6 4608 1982-08-14 2024-10-11 01:16:48.000 1982-08-14 2024-10-11 01:16:48 +4609 4609 4610 460.9 921.8000000000001 4609 1982-08-15 2024-10-11 01:16:49.000 1982-08-15 2024-10-11 01:16:49 +4610 4610 4611 461 922 4610 1982-08-16 2024-10-11 01:16:50.000 1982-08-16 2024-10-11 01:16:50 +4611 4611 4612 461.1 922.2 4611 1982-08-17 2024-10-11 01:16:51.000 1982-08-17 2024-10-11 01:16:51 +4612 4612 4613 461.2 922.4000000000001 4612 1982-08-18 2024-10-11 01:16:52.000 1982-08-18 2024-10-11 01:16:52 +4613 4613 4614 461.3 922.6 4613 1982-08-19 2024-10-11 01:16:53.000 1982-08-19 2024-10-11 01:16:53 +4614 4614 4615 461.4 922.8000000000001 4614 1982-08-20 2024-10-11 01:16:54.000 1982-08-20 2024-10-11 01:16:54 +4615 4615 4616 461.5 923 4615 1982-08-21 2024-10-11 01:16:55.000 1982-08-21 2024-10-11 01:16:55 +4616 4616 4617 461.6 923.2 4616 1982-08-22 2024-10-11 01:16:56.000 1982-08-22 2024-10-11 01:16:56 +4617 4617 4618 461.7 923.4000000000001 4617 1982-08-23 2024-10-11 01:16:57.000 1982-08-23 2024-10-11 01:16:57 +4618 4618 4619 461.8 923.6 4618 1982-08-24 2024-10-11 01:16:58.000 1982-08-24 2024-10-11 01:16:58 +4619 4619 4620 461.9 923.8000000000001 4619 1982-08-25 2024-10-11 01:16:59.000 1982-08-25 2024-10-11 01:16:59 +4620 4620 4621 462 924 4620 1982-08-26 2024-10-11 01:17:00.000 1982-08-26 2024-10-11 01:17:00 +4621 4621 4622 462.1 924.2 4621 1982-08-27 2024-10-11 01:17:01.000 1982-08-27 2024-10-11 01:17:01 +4622 4622 4623 462.2 924.4000000000001 4622 1982-08-28 2024-10-11 01:17:02.000 1982-08-28 2024-10-11 01:17:02 +4623 4623 4624 462.3 924.6 4623 1982-08-29 2024-10-11 01:17:03.000 1982-08-29 2024-10-11 01:17:03 +4624 4624 4625 462.4 924.8000000000001 4624 1982-08-30 2024-10-11 01:17:04.000 1982-08-30 2024-10-11 01:17:04 +4625 4625 4626 462.5 925 4625 1982-08-31 2024-10-11 01:17:05.000 1982-08-31 2024-10-11 01:17:05 +4626 4626 4627 462.6 925.2 4626 1982-09-01 2024-10-11 01:17:06.000 1982-09-01 2024-10-11 01:17:06 +4627 4627 4628 462.7 925.4000000000001 4627 1982-09-02 2024-10-11 01:17:07.000 1982-09-02 2024-10-11 01:17:07 +4628 4628 4629 462.8 925.6 4628 1982-09-03 2024-10-11 01:17:08.000 1982-09-03 2024-10-11 01:17:08 +4629 4629 4630 462.9 925.8000000000001 4629 1982-09-04 2024-10-11 01:17:09.000 1982-09-04 2024-10-11 01:17:09 +4630 4630 4631 463 926 4630 1982-09-05 2024-10-11 01:17:10.000 1982-09-05 2024-10-11 01:17:10 +4631 4631 4632 463.1 926.2 4631 1982-09-06 2024-10-11 01:17:11.000 1982-09-06 2024-10-11 01:17:11 +4632 4632 4633 463.2 926.4000000000001 4632 1982-09-07 2024-10-11 01:17:12.000 1982-09-07 2024-10-11 01:17:12 +4633 4633 4634 463.3 926.6 4633 1982-09-08 2024-10-11 01:17:13.000 1982-09-08 2024-10-11 01:17:13 +4634 4634 4635 463.4 926.8000000000001 4634 1982-09-09 2024-10-11 01:17:14.000 1982-09-09 2024-10-11 01:17:14 +4635 4635 4636 463.5 927 4635 1982-09-10 2024-10-11 01:17:15.000 1982-09-10 2024-10-11 01:17:15 +4636 4636 4637 463.6 927.2 4636 1982-09-11 2024-10-11 01:17:16.000 1982-09-11 2024-10-11 01:17:16 +4637 4637 4638 463.7 927.4000000000001 4637 1982-09-12 2024-10-11 01:17:17.000 1982-09-12 2024-10-11 01:17:17 +4638 4638 4639 463.8 927.6 4638 1982-09-13 2024-10-11 01:17:18.000 1982-09-13 2024-10-11 01:17:18 +4639 4639 4640 463.9 927.8000000000001 4639 1982-09-14 2024-10-11 01:17:19.000 1982-09-14 2024-10-11 01:17:19 +4640 4640 4641 464 928 4640 1982-09-15 2024-10-11 01:17:20.000 1982-09-15 2024-10-11 01:17:20 +4641 4641 4642 464.1 928.2 4641 1982-09-16 2024-10-11 01:17:21.000 1982-09-16 2024-10-11 01:17:21 +4642 4642 4643 464.2 928.4000000000001 4642 1982-09-17 2024-10-11 01:17:22.000 1982-09-17 2024-10-11 01:17:22 +4643 4643 4644 464.3 928.6 4643 1982-09-18 2024-10-11 01:17:23.000 1982-09-18 2024-10-11 01:17:23 +4644 4644 4645 464.4 928.8000000000001 4644 1982-09-19 2024-10-11 01:17:24.000 1982-09-19 2024-10-11 01:17:24 +4645 4645 4646 464.5 929 4645 1982-09-20 2024-10-11 01:17:25.000 1982-09-20 2024-10-11 01:17:25 +4646 4646 4647 464.6 929.2 4646 1982-09-21 2024-10-11 01:17:26.000 1982-09-21 2024-10-11 01:17:26 +4647 4647 4648 464.7 929.4000000000001 4647 1982-09-22 2024-10-11 01:17:27.000 1982-09-22 2024-10-11 01:17:27 +4648 4648 4649 464.8 929.6 4648 1982-09-23 2024-10-11 01:17:28.000 1982-09-23 2024-10-11 01:17:28 +4649 4649 4650 464.9 929.8000000000001 4649 1982-09-24 2024-10-11 01:17:29.000 1982-09-24 2024-10-11 01:17:29 +4650 4650 4651 465 930 4650 1982-09-25 2024-10-11 01:17:30.000 1982-09-25 2024-10-11 01:17:30 +4651 4651 4652 465.1 930.2 4651 1982-09-26 2024-10-11 01:17:31.000 1982-09-26 2024-10-11 01:17:31 +4652 4652 4653 465.2 930.4000000000001 4652 1982-09-27 2024-10-11 01:17:32.000 1982-09-27 2024-10-11 01:17:32 +4653 4653 4654 465.3 930.6 4653 1982-09-28 2024-10-11 01:17:33.000 1982-09-28 2024-10-11 01:17:33 +4654 4654 4655 465.4 930.8000000000001 4654 1982-09-29 2024-10-11 01:17:34.000 1982-09-29 2024-10-11 01:17:34 +4655 4655 4656 465.5 931 4655 1982-09-30 2024-10-11 01:17:35.000 1982-09-30 2024-10-11 01:17:35 +4656 4656 4657 465.6 931.2 4656 1982-10-01 2024-10-11 01:17:36.000 1982-10-01 2024-10-11 01:17:36 +4657 4657 4658 465.7 931.4000000000001 4657 1982-10-02 2024-10-11 01:17:37.000 1982-10-02 2024-10-11 01:17:37 +4658 4658 4659 465.8 931.6 4658 1982-10-03 2024-10-11 01:17:38.000 1982-10-03 2024-10-11 01:17:38 +4659 4659 4660 465.9 931.8000000000001 4659 1982-10-04 2024-10-11 01:17:39.000 1982-10-04 2024-10-11 01:17:39 +4660 4660 4661 466 932 4660 1982-10-05 2024-10-11 01:17:40.000 1982-10-05 2024-10-11 01:17:40 +4661 4661 4662 466.1 932.2 4661 1982-10-06 2024-10-11 01:17:41.000 1982-10-06 2024-10-11 01:17:41 +4662 4662 4663 466.2 932.4000000000001 4662 1982-10-07 2024-10-11 01:17:42.000 1982-10-07 2024-10-11 01:17:42 +4663 4663 4664 466.3 932.6 4663 1982-10-08 2024-10-11 01:17:43.000 1982-10-08 2024-10-11 01:17:43 +4664 4664 4665 466.4 932.8000000000001 4664 1982-10-09 2024-10-11 01:17:44.000 1982-10-09 2024-10-11 01:17:44 +4665 4665 4666 466.5 933 4665 1982-10-10 2024-10-11 01:17:45.000 1982-10-10 2024-10-11 01:17:45 +4666 4666 4667 466.6 933.2 4666 1982-10-11 2024-10-11 01:17:46.000 1982-10-11 2024-10-11 01:17:46 +4667 4667 4668 466.7 933.4000000000001 4667 1982-10-12 2024-10-11 01:17:47.000 1982-10-12 2024-10-11 01:17:47 +4668 4668 4669 466.8 933.6 4668 1982-10-13 2024-10-11 01:17:48.000 1982-10-13 2024-10-11 01:17:48 +4669 4669 4670 466.9 933.8000000000001 4669 1982-10-14 2024-10-11 01:17:49.000 1982-10-14 2024-10-11 01:17:49 +4670 4670 4671 467 934 4670 1982-10-15 2024-10-11 01:17:50.000 1982-10-15 2024-10-11 01:17:50 +4671 4671 4672 467.1 934.2 4671 1982-10-16 2024-10-11 01:17:51.000 1982-10-16 2024-10-11 01:17:51 +4672 4672 4673 467.2 934.4000000000001 4672 1982-10-17 2024-10-11 01:17:52.000 1982-10-17 2024-10-11 01:17:52 +4673 4673 4674 467.3 934.6 4673 1982-10-18 2024-10-11 01:17:53.000 1982-10-18 2024-10-11 01:17:53 +4674 4674 4675 467.4 934.8000000000001 4674 1982-10-19 2024-10-11 01:17:54.000 1982-10-19 2024-10-11 01:17:54 +4675 4675 4676 467.5 935 4675 1982-10-20 2024-10-11 01:17:55.000 1982-10-20 2024-10-11 01:17:55 +4676 4676 4677 467.6 935.2 4676 1982-10-21 2024-10-11 01:17:56.000 1982-10-21 2024-10-11 01:17:56 +4677 4677 4678 467.7 935.4000000000001 4677 1982-10-22 2024-10-11 01:17:57.000 1982-10-22 2024-10-11 01:17:57 +4678 4678 4679 467.8 935.6 4678 1982-10-23 2024-10-11 01:17:58.000 1982-10-23 2024-10-11 01:17:58 +4679 4679 4680 467.9 935.8000000000001 4679 1982-10-24 2024-10-11 01:17:59.000 1982-10-24 2024-10-11 01:17:59 +4680 4680 4681 468 936 4680 1982-10-25 2024-10-11 01:18:00.000 1982-10-25 2024-10-11 01:18:00 +4681 4681 4682 468.1 936.2 4681 1982-10-26 2024-10-11 01:18:01.000 1982-10-26 2024-10-11 01:18:01 +4682 4682 4683 468.2 936.4000000000001 4682 1982-10-27 2024-10-11 01:18:02.000 1982-10-27 2024-10-11 01:18:02 +4683 4683 4684 468.3 936.6 4683 1982-10-28 2024-10-11 01:18:03.000 1982-10-28 2024-10-11 01:18:03 +4684 4684 4685 468.4 936.8000000000001 4684 1982-10-29 2024-10-11 01:18:04.000 1982-10-29 2024-10-11 01:18:04 +4685 4685 4686 468.5 937 4685 1982-10-30 2024-10-11 01:18:05.000 1982-10-30 2024-10-11 01:18:05 +4686 4686 4687 468.6 937.2 4686 1982-10-31 2024-10-11 01:18:06.000 1982-10-31 2024-10-11 01:18:06 +4687 4687 4688 468.7 937.4000000000001 4687 1982-11-01 2024-10-11 01:18:07.000 1982-11-01 2024-10-11 01:18:07 +4688 4688 4689 468.8 937.6 4688 1982-11-02 2024-10-11 01:18:08.000 1982-11-02 2024-10-11 01:18:08 +4689 4689 4690 468.9 937.8000000000001 4689 1982-11-03 2024-10-11 01:18:09.000 1982-11-03 2024-10-11 01:18:09 +4690 4690 4691 469 938 4690 1982-11-04 2024-10-11 01:18:10.000 1982-11-04 2024-10-11 01:18:10 +4691 4691 4692 469.1 938.2 4691 1982-11-05 2024-10-11 01:18:11.000 1982-11-05 2024-10-11 01:18:11 +4692 4692 4693 469.2 938.4000000000001 4692 1982-11-06 2024-10-11 01:18:12.000 1982-11-06 2024-10-11 01:18:12 +4693 4693 4694 469.3 938.6 4693 1982-11-07 2024-10-11 01:18:13.000 1982-11-07 2024-10-11 01:18:13 +4694 4694 4695 469.4 938.8000000000001 4694 1982-11-08 2024-10-11 01:18:14.000 1982-11-08 2024-10-11 01:18:14 +4695 4695 4696 469.5 939 4695 1982-11-09 2024-10-11 01:18:15.000 1982-11-09 2024-10-11 01:18:15 +4696 4696 4697 469.6 939.2 4696 1982-11-10 2024-10-11 01:18:16.000 1982-11-10 2024-10-11 01:18:16 +4697 4697 4698 469.7 939.4000000000001 4697 1982-11-11 2024-10-11 01:18:17.000 1982-11-11 2024-10-11 01:18:17 +4698 4698 4699 469.8 939.6 4698 1982-11-12 2024-10-11 01:18:18.000 1982-11-12 2024-10-11 01:18:18 +4699 4699 4700 469.9 939.8000000000001 4699 1982-11-13 2024-10-11 01:18:19.000 1982-11-13 2024-10-11 01:18:19 +4700 4700 4701 470 940 4700 1982-11-14 2024-10-11 01:18:20.000 1982-11-14 2024-10-11 01:18:20 +4701 4701 4702 470.1 940.2 4701 1982-11-15 2024-10-11 01:18:21.000 1982-11-15 2024-10-11 01:18:21 +4702 4702 4703 470.2 940.4000000000001 4702 1982-11-16 2024-10-11 01:18:22.000 1982-11-16 2024-10-11 01:18:22 +4703 4703 4704 470.3 940.6 4703 1982-11-17 2024-10-11 01:18:23.000 1982-11-17 2024-10-11 01:18:23 +4704 4704 4705 470.4 940.8000000000001 4704 1982-11-18 2024-10-11 01:18:24.000 1982-11-18 2024-10-11 01:18:24 +4705 4705 4706 470.5 941 4705 1982-11-19 2024-10-11 01:18:25.000 1982-11-19 2024-10-11 01:18:25 +4706 4706 4707 470.6 941.2 4706 1982-11-20 2024-10-11 01:18:26.000 1982-11-20 2024-10-11 01:18:26 +4707 4707 4708 470.7 941.4000000000001 4707 1982-11-21 2024-10-11 01:18:27.000 1982-11-21 2024-10-11 01:18:27 +4708 4708 4709 470.8 941.6 4708 1982-11-22 2024-10-11 01:18:28.000 1982-11-22 2024-10-11 01:18:28 +4709 4709 4710 470.9 941.8000000000001 4709 1982-11-23 2024-10-11 01:18:29.000 1982-11-23 2024-10-11 01:18:29 +4710 4710 4711 471 942 4710 1982-11-24 2024-10-11 01:18:30.000 1982-11-24 2024-10-11 01:18:30 +4711 4711 4712 471.1 942.2 4711 1982-11-25 2024-10-11 01:18:31.000 1982-11-25 2024-10-11 01:18:31 +4712 4712 4713 471.2 942.4000000000001 4712 1982-11-26 2024-10-11 01:18:32.000 1982-11-26 2024-10-11 01:18:32 +4713 4713 4714 471.3 942.6 4713 1982-11-27 2024-10-11 01:18:33.000 1982-11-27 2024-10-11 01:18:33 +4714 4714 4715 471.4 942.8000000000001 4714 1982-11-28 2024-10-11 01:18:34.000 1982-11-28 2024-10-11 01:18:34 +4715 4715 4716 471.5 943 4715 1982-11-29 2024-10-11 01:18:35.000 1982-11-29 2024-10-11 01:18:35 +4716 4716 4717 471.6 943.2 4716 1982-11-30 2024-10-11 01:18:36.000 1982-11-30 2024-10-11 01:18:36 +4717 4717 4718 471.7 943.4000000000001 4717 1982-12-01 2024-10-11 01:18:37.000 1982-12-01 2024-10-11 01:18:37 +4718 4718 4719 471.8 943.6 4718 1982-12-02 2024-10-11 01:18:38.000 1982-12-02 2024-10-11 01:18:38 +4719 4719 4720 471.9 943.8000000000001 4719 1982-12-03 2024-10-11 01:18:39.000 1982-12-03 2024-10-11 01:18:39 +4720 4720 4721 472 944 4720 1982-12-04 2024-10-11 01:18:40.000 1982-12-04 2024-10-11 01:18:40 +4721 4721 4722 472.1 944.2 4721 1982-12-05 2024-10-11 01:18:41.000 1982-12-05 2024-10-11 01:18:41 +4722 4722 4723 472.2 944.4000000000001 4722 1982-12-06 2024-10-11 01:18:42.000 1982-12-06 2024-10-11 01:18:42 +4723 4723 4724 472.3 944.6 4723 1982-12-07 2024-10-11 01:18:43.000 1982-12-07 2024-10-11 01:18:43 +4724 4724 4725 472.4 944.8000000000001 4724 1982-12-08 2024-10-11 01:18:44.000 1982-12-08 2024-10-11 01:18:44 +4725 4725 4726 472.5 945 4725 1982-12-09 2024-10-11 01:18:45.000 1982-12-09 2024-10-11 01:18:45 +4726 4726 4727 472.6 945.2 4726 1982-12-10 2024-10-11 01:18:46.000 1982-12-10 2024-10-11 01:18:46 +4727 4727 4728 472.7 945.4000000000001 4727 1982-12-11 2024-10-11 01:18:47.000 1982-12-11 2024-10-11 01:18:47 +4728 4728 4729 472.8 945.6 4728 1982-12-12 2024-10-11 01:18:48.000 1982-12-12 2024-10-11 01:18:48 +4729 4729 4730 472.9 945.8000000000001 4729 1982-12-13 2024-10-11 01:18:49.000 1982-12-13 2024-10-11 01:18:49 +4730 4730 4731 473 946 4730 1982-12-14 2024-10-11 01:18:50.000 1982-12-14 2024-10-11 01:18:50 +4731 4731 4732 473.1 946.2 4731 1982-12-15 2024-10-11 01:18:51.000 1982-12-15 2024-10-11 01:18:51 +4732 4732 4733 473.2 946.4000000000001 4732 1982-12-16 2024-10-11 01:18:52.000 1982-12-16 2024-10-11 01:18:52 +4733 4733 4734 473.3 946.6 4733 1982-12-17 2024-10-11 01:18:53.000 1982-12-17 2024-10-11 01:18:53 +4734 4734 4735 473.4 946.8000000000001 4734 1982-12-18 2024-10-11 01:18:54.000 1982-12-18 2024-10-11 01:18:54 +4735 4735 4736 473.5 947 4735 1982-12-19 2024-10-11 01:18:55.000 1982-12-19 2024-10-11 01:18:55 +4736 4736 4737 473.6 947.2 4736 1982-12-20 2024-10-11 01:18:56.000 1982-12-20 2024-10-11 01:18:56 +4737 4737 4738 473.7 947.4000000000001 4737 1982-12-21 2024-10-11 01:18:57.000 1982-12-21 2024-10-11 01:18:57 +4738 4738 4739 473.8 947.6 4738 1982-12-22 2024-10-11 01:18:58.000 1982-12-22 2024-10-11 01:18:58 +4739 4739 4740 473.9 947.8000000000001 4739 1982-12-23 2024-10-11 01:18:59.000 1982-12-23 2024-10-11 01:18:59 +4740 4740 4741 474 948 4740 1982-12-24 2024-10-11 01:19:00.000 1982-12-24 2024-10-11 01:19:00 +4741 4741 4742 474.1 948.2 4741 1982-12-25 2024-10-11 01:19:01.000 1982-12-25 2024-10-11 01:19:01 +4742 4742 4743 474.2 948.4000000000001 4742 1982-12-26 2024-10-11 01:19:02.000 1982-12-26 2024-10-11 01:19:02 +4743 4743 4744 474.3 948.6 4743 1982-12-27 2024-10-11 01:19:03.000 1982-12-27 2024-10-11 01:19:03 +4744 4744 4745 474.4 948.8000000000001 4744 1982-12-28 2024-10-11 01:19:04.000 1982-12-28 2024-10-11 01:19:04 +4745 4745 4746 474.5 949 4745 1982-12-29 2024-10-11 01:19:05.000 1982-12-29 2024-10-11 01:19:05 +4746 4746 4747 474.6 949.2 4746 1982-12-30 2024-10-11 01:19:06.000 1982-12-30 2024-10-11 01:19:06 +4747 4747 4748 474.7 949.4000000000001 4747 1982-12-31 2024-10-11 01:19:07.000 1982-12-31 2024-10-11 01:19:07 +4748 4748 4749 474.8 949.6 4748 1983-01-01 2024-10-11 01:19:08.000 1983-01-01 2024-10-11 01:19:08 +4749 4749 4750 474.9 949.8000000000001 4749 1983-01-02 2024-10-11 01:19:09.000 1983-01-02 2024-10-11 01:19:09 +4750 4750 4751 475 950 4750 1983-01-03 2024-10-11 01:19:10.000 1983-01-03 2024-10-11 01:19:10 +4751 4751 4752 475.1 950.2 4751 1983-01-04 2024-10-11 01:19:11.000 1983-01-04 2024-10-11 01:19:11 +4752 4752 4753 475.2 950.4000000000001 4752 1983-01-05 2024-10-11 01:19:12.000 1983-01-05 2024-10-11 01:19:12 +4753 4753 4754 475.3 950.6 4753 1983-01-06 2024-10-11 01:19:13.000 1983-01-06 2024-10-11 01:19:13 +4754 4754 4755 475.4 950.8000000000001 4754 1983-01-07 2024-10-11 01:19:14.000 1983-01-07 2024-10-11 01:19:14 +4755 4755 4756 475.5 951 4755 1983-01-08 2024-10-11 01:19:15.000 1983-01-08 2024-10-11 01:19:15 +4756 4756 4757 475.6 951.2 4756 1983-01-09 2024-10-11 01:19:16.000 1983-01-09 2024-10-11 01:19:16 +4757 4757 4758 475.7 951.4000000000001 4757 1983-01-10 2024-10-11 01:19:17.000 1983-01-10 2024-10-11 01:19:17 +4758 4758 4759 475.8 951.6 4758 1983-01-11 2024-10-11 01:19:18.000 1983-01-11 2024-10-11 01:19:18 +4759 4759 4760 475.9 951.8000000000001 4759 1983-01-12 2024-10-11 01:19:19.000 1983-01-12 2024-10-11 01:19:19 +4760 4760 4761 476 952 4760 1983-01-13 2024-10-11 01:19:20.000 1983-01-13 2024-10-11 01:19:20 +4761 4761 4762 476.1 952.2 4761 1983-01-14 2024-10-11 01:19:21.000 1983-01-14 2024-10-11 01:19:21 +4762 4762 4763 476.2 952.4000000000001 4762 1983-01-15 2024-10-11 01:19:22.000 1983-01-15 2024-10-11 01:19:22 +4763 4763 4764 476.3 952.6 4763 1983-01-16 2024-10-11 01:19:23.000 1983-01-16 2024-10-11 01:19:23 +4764 4764 4765 476.4 952.8000000000001 4764 1983-01-17 2024-10-11 01:19:24.000 1983-01-17 2024-10-11 01:19:24 +4765 4765 4766 476.5 953 4765 1983-01-18 2024-10-11 01:19:25.000 1983-01-18 2024-10-11 01:19:25 +4766 4766 4767 476.6 953.2 4766 1983-01-19 2024-10-11 01:19:26.000 1983-01-19 2024-10-11 01:19:26 +4767 4767 4768 476.7 953.4000000000001 4767 1983-01-20 2024-10-11 01:19:27.000 1983-01-20 2024-10-11 01:19:27 +4768 4768 4769 476.8 953.6 4768 1983-01-21 2024-10-11 01:19:28.000 1983-01-21 2024-10-11 01:19:28 +4769 4769 4770 476.9 953.8000000000001 4769 1983-01-22 2024-10-11 01:19:29.000 1983-01-22 2024-10-11 01:19:29 +4770 4770 4771 477 954 4770 1983-01-23 2024-10-11 01:19:30.000 1983-01-23 2024-10-11 01:19:30 +4771 4771 4772 477.1 954.2 4771 1983-01-24 2024-10-11 01:19:31.000 1983-01-24 2024-10-11 01:19:31 +4772 4772 4773 477.2 954.4000000000001 4772 1983-01-25 2024-10-11 01:19:32.000 1983-01-25 2024-10-11 01:19:32 +4773 4773 4774 477.3 954.6 4773 1983-01-26 2024-10-11 01:19:33.000 1983-01-26 2024-10-11 01:19:33 +4774 4774 4775 477.4 954.8000000000001 4774 1983-01-27 2024-10-11 01:19:34.000 1983-01-27 2024-10-11 01:19:34 +4775 4775 4776 477.5 955 4775 1983-01-28 2024-10-11 01:19:35.000 1983-01-28 2024-10-11 01:19:35 +4776 4776 4777 477.6 955.2 4776 1983-01-29 2024-10-11 01:19:36.000 1983-01-29 2024-10-11 01:19:36 +4777 4777 4778 477.7 955.4000000000001 4777 1983-01-30 2024-10-11 01:19:37.000 1983-01-30 2024-10-11 01:19:37 +4778 4778 4779 477.8 955.6 4778 1983-01-31 2024-10-11 01:19:38.000 1983-01-31 2024-10-11 01:19:38 +4779 4779 4780 477.9 955.8000000000001 4779 1983-02-01 2024-10-11 01:19:39.000 1983-02-01 2024-10-11 01:19:39 +4780 4780 4781 478 956 4780 1983-02-02 2024-10-11 01:19:40.000 1983-02-02 2024-10-11 01:19:40 +4781 4781 4782 478.1 956.2 4781 1983-02-03 2024-10-11 01:19:41.000 1983-02-03 2024-10-11 01:19:41 +4782 4782 4783 478.2 956.4000000000001 4782 1983-02-04 2024-10-11 01:19:42.000 1983-02-04 2024-10-11 01:19:42 +4783 4783 4784 478.3 956.6 4783 1983-02-05 2024-10-11 01:19:43.000 1983-02-05 2024-10-11 01:19:43 +4784 4784 4785 478.4 956.8000000000001 4784 1983-02-06 2024-10-11 01:19:44.000 1983-02-06 2024-10-11 01:19:44 +4785 4785 4786 478.5 957 4785 1983-02-07 2024-10-11 01:19:45.000 1983-02-07 2024-10-11 01:19:45 +4786 4786 4787 478.6 957.2 4786 1983-02-08 2024-10-11 01:19:46.000 1983-02-08 2024-10-11 01:19:46 +4787 4787 4788 478.7 957.4000000000001 4787 1983-02-09 2024-10-11 01:19:47.000 1983-02-09 2024-10-11 01:19:47 +4788 4788 4789 478.8 957.6 4788 1983-02-10 2024-10-11 01:19:48.000 1983-02-10 2024-10-11 01:19:48 +4789 4789 4790 478.9 957.8000000000001 4789 1983-02-11 2024-10-11 01:19:49.000 1983-02-11 2024-10-11 01:19:49 +4790 4790 4791 479 958 4790 1983-02-12 2024-10-11 01:19:50.000 1983-02-12 2024-10-11 01:19:50 +4791 4791 4792 479.1 958.2 4791 1983-02-13 2024-10-11 01:19:51.000 1983-02-13 2024-10-11 01:19:51 +4792 4792 4793 479.2 958.4000000000001 4792 1983-02-14 2024-10-11 01:19:52.000 1983-02-14 2024-10-11 01:19:52 +4793 4793 4794 479.3 958.6 4793 1983-02-15 2024-10-11 01:19:53.000 1983-02-15 2024-10-11 01:19:53 +4794 4794 4795 479.4 958.8000000000001 4794 1983-02-16 2024-10-11 01:19:54.000 1983-02-16 2024-10-11 01:19:54 +4795 4795 4796 479.5 959 4795 1983-02-17 2024-10-11 01:19:55.000 1983-02-17 2024-10-11 01:19:55 +4796 4796 4797 479.6 959.2 4796 1983-02-18 2024-10-11 01:19:56.000 1983-02-18 2024-10-11 01:19:56 +4797 4797 4798 479.7 959.4000000000001 4797 1983-02-19 2024-10-11 01:19:57.000 1983-02-19 2024-10-11 01:19:57 +4798 4798 4799 479.8 959.6 4798 1983-02-20 2024-10-11 01:19:58.000 1983-02-20 2024-10-11 01:19:58 +4799 4799 4800 479.9 959.8000000000001 4799 1983-02-21 2024-10-11 01:19:59.000 1983-02-21 2024-10-11 01:19:59 +4800 4800 4801 480 960 4800 1983-02-22 2024-10-11 01:20:00.000 1983-02-22 2024-10-11 01:20:00 +4801 4801 4802 480.1 960.2 4801 1983-02-23 2024-10-11 01:20:01.000 1983-02-23 2024-10-11 01:20:01 +4802 4802 4803 480.2 960.4000000000001 4802 1983-02-24 2024-10-11 01:20:02.000 1983-02-24 2024-10-11 01:20:02 +4803 4803 4804 480.3 960.6 4803 1983-02-25 2024-10-11 01:20:03.000 1983-02-25 2024-10-11 01:20:03 +4804 4804 4805 480.4 960.8000000000001 4804 1983-02-26 2024-10-11 01:20:04.000 1983-02-26 2024-10-11 01:20:04 +4805 4805 4806 480.5 961 4805 1983-02-27 2024-10-11 01:20:05.000 1983-02-27 2024-10-11 01:20:05 +4806 4806 4807 480.6 961.2 4806 1983-02-28 2024-10-11 01:20:06.000 1983-02-28 2024-10-11 01:20:06 +4807 4807 4808 480.7 961.4000000000001 4807 1983-03-01 2024-10-11 01:20:07.000 1983-03-01 2024-10-11 01:20:07 +4808 4808 4809 480.8 961.6 4808 1983-03-02 2024-10-11 01:20:08.000 1983-03-02 2024-10-11 01:20:08 +4809 4809 4810 480.9 961.8000000000001 4809 1983-03-03 2024-10-11 01:20:09.000 1983-03-03 2024-10-11 01:20:09 +4810 4810 4811 481 962 4810 1983-03-04 2024-10-11 01:20:10.000 1983-03-04 2024-10-11 01:20:10 +4811 4811 4812 481.1 962.2 4811 1983-03-05 2024-10-11 01:20:11.000 1983-03-05 2024-10-11 01:20:11 +4812 4812 4813 481.2 962.4000000000001 4812 1983-03-06 2024-10-11 01:20:12.000 1983-03-06 2024-10-11 01:20:12 +4813 4813 4814 481.3 962.6 4813 1983-03-07 2024-10-11 01:20:13.000 1983-03-07 2024-10-11 01:20:13 +4814 4814 4815 481.4 962.8000000000001 4814 1983-03-08 2024-10-11 01:20:14.000 1983-03-08 2024-10-11 01:20:14 +4815 4815 4816 481.5 963 4815 1983-03-09 2024-10-11 01:20:15.000 1983-03-09 2024-10-11 01:20:15 +4816 4816 4817 481.6 963.2 4816 1983-03-10 2024-10-11 01:20:16.000 1983-03-10 2024-10-11 01:20:16 +4817 4817 4818 481.7 963.4000000000001 4817 1983-03-11 2024-10-11 01:20:17.000 1983-03-11 2024-10-11 01:20:17 +4818 4818 4819 481.8 963.6 4818 1983-03-12 2024-10-11 01:20:18.000 1983-03-12 2024-10-11 01:20:18 +4819 4819 4820 481.9 963.8000000000001 4819 1983-03-13 2024-10-11 01:20:19.000 1983-03-13 2024-10-11 01:20:19 +4820 4820 4821 482 964 4820 1983-03-14 2024-10-11 01:20:20.000 1983-03-14 2024-10-11 01:20:20 +4821 4821 4822 482.1 964.2 4821 1983-03-15 2024-10-11 01:20:21.000 1983-03-15 2024-10-11 01:20:21 +4822 4822 4823 482.2 964.4000000000001 4822 1983-03-16 2024-10-11 01:20:22.000 1983-03-16 2024-10-11 01:20:22 +4823 4823 4824 482.3 964.6 4823 1983-03-17 2024-10-11 01:20:23.000 1983-03-17 2024-10-11 01:20:23 +4824 4824 4825 482.4 964.8000000000001 4824 1983-03-18 2024-10-11 01:20:24.000 1983-03-18 2024-10-11 01:20:24 +4825 4825 4826 482.5 965 4825 1983-03-19 2024-10-11 01:20:25.000 1983-03-19 2024-10-11 01:20:25 +4826 4826 4827 482.6 965.2 4826 1983-03-20 2024-10-11 01:20:26.000 1983-03-20 2024-10-11 01:20:26 +4827 4827 4828 482.7 965.4000000000001 4827 1983-03-21 2024-10-11 01:20:27.000 1983-03-21 2024-10-11 01:20:27 +4828 4828 4829 482.8 965.6 4828 1983-03-22 2024-10-11 01:20:28.000 1983-03-22 2024-10-11 01:20:28 +4829 4829 4830 482.9 965.8000000000001 4829 1983-03-23 2024-10-11 01:20:29.000 1983-03-23 2024-10-11 01:20:29 +4830 4830 4831 483 966 4830 1983-03-24 2024-10-11 01:20:30.000 1983-03-24 2024-10-11 01:20:30 +4831 4831 4832 483.1 966.2 4831 1983-03-25 2024-10-11 01:20:31.000 1983-03-25 2024-10-11 01:20:31 +4832 4832 4833 483.2 966.4000000000001 4832 1983-03-26 2024-10-11 01:20:32.000 1983-03-26 2024-10-11 01:20:32 +4833 4833 4834 483.3 966.6 4833 1983-03-27 2024-10-11 01:20:33.000 1983-03-27 2024-10-11 01:20:33 +4834 4834 4835 483.4 966.8000000000001 4834 1983-03-28 2024-10-11 01:20:34.000 1983-03-28 2024-10-11 01:20:34 +4835 4835 4836 483.5 967 4835 1983-03-29 2024-10-11 01:20:35.000 1983-03-29 2024-10-11 01:20:35 +4836 4836 4837 483.6 967.2 4836 1983-03-30 2024-10-11 01:20:36.000 1983-03-30 2024-10-11 01:20:36 +4837 4837 4838 483.7 967.4000000000001 4837 1983-03-31 2024-10-11 01:20:37.000 1983-03-31 2024-10-11 01:20:37 +4838 4838 4839 483.8 967.6 4838 1983-04-01 2024-10-11 01:20:38.000 1983-04-01 2024-10-11 01:20:38 +4839 4839 4840 483.9 967.8000000000001 4839 1983-04-02 2024-10-11 01:20:39.000 1983-04-02 2024-10-11 01:20:39 +4840 4840 4841 484 968 4840 1983-04-03 2024-10-11 01:20:40.000 1983-04-03 2024-10-11 01:20:40 +4841 4841 4842 484.1 968.2 4841 1983-04-04 2024-10-11 01:20:41.000 1983-04-04 2024-10-11 01:20:41 +4842 4842 4843 484.2 968.4000000000001 4842 1983-04-05 2024-10-11 01:20:42.000 1983-04-05 2024-10-11 01:20:42 +4843 4843 4844 484.3 968.6 4843 1983-04-06 2024-10-11 01:20:43.000 1983-04-06 2024-10-11 01:20:43 +4844 4844 4845 484.4 968.8000000000001 4844 1983-04-07 2024-10-11 01:20:44.000 1983-04-07 2024-10-11 01:20:44 +4845 4845 4846 484.5 969 4845 1983-04-08 2024-10-11 01:20:45.000 1983-04-08 2024-10-11 01:20:45 +4846 4846 4847 484.6 969.2 4846 1983-04-09 2024-10-11 01:20:46.000 1983-04-09 2024-10-11 01:20:46 +4847 4847 4848 484.7 969.4000000000001 4847 1983-04-10 2024-10-11 01:20:47.000 1983-04-10 2024-10-11 01:20:47 +4848 4848 4849 484.8 969.6 4848 1983-04-11 2024-10-11 01:20:48.000 1983-04-11 2024-10-11 01:20:48 +4849 4849 4850 484.9 969.8000000000001 4849 1983-04-12 2024-10-11 01:20:49.000 1983-04-12 2024-10-11 01:20:49 +4850 4850 4851 485 970 4850 1983-04-13 2024-10-11 01:20:50.000 1983-04-13 2024-10-11 01:20:50 +4851 4851 4852 485.1 970.2 4851 1983-04-14 2024-10-11 01:20:51.000 1983-04-14 2024-10-11 01:20:51 +4852 4852 4853 485.2 970.4000000000001 4852 1983-04-15 2024-10-11 01:20:52.000 1983-04-15 2024-10-11 01:20:52 +4853 4853 4854 485.3 970.6 4853 1983-04-16 2024-10-11 01:20:53.000 1983-04-16 2024-10-11 01:20:53 +4854 4854 4855 485.4 970.8000000000001 4854 1983-04-17 2024-10-11 01:20:54.000 1983-04-17 2024-10-11 01:20:54 +4855 4855 4856 485.5 971 4855 1983-04-18 2024-10-11 01:20:55.000 1983-04-18 2024-10-11 01:20:55 +4856 4856 4857 485.6 971.2 4856 1983-04-19 2024-10-11 01:20:56.000 1983-04-19 2024-10-11 01:20:56 +4857 4857 4858 485.7 971.4000000000001 4857 1983-04-20 2024-10-11 01:20:57.000 1983-04-20 2024-10-11 01:20:57 +4858 4858 4859 485.8 971.6 4858 1983-04-21 2024-10-11 01:20:58.000 1983-04-21 2024-10-11 01:20:58 +4859 4859 4860 485.9 971.8000000000001 4859 1983-04-22 2024-10-11 01:20:59.000 1983-04-22 2024-10-11 01:20:59 +4860 4860 4861 486 972 4860 1983-04-23 2024-10-11 01:21:00.000 1983-04-23 2024-10-11 01:21:00 +4861 4861 4862 486.1 972.2 4861 1983-04-24 2024-10-11 01:21:01.000 1983-04-24 2024-10-11 01:21:01 +4862 4862 4863 486.2 972.4000000000001 4862 1983-04-25 2024-10-11 01:21:02.000 1983-04-25 2024-10-11 01:21:02 +4863 4863 4864 486.3 972.6 4863 1983-04-26 2024-10-11 01:21:03.000 1983-04-26 2024-10-11 01:21:03 +4864 4864 4865 486.4 972.8000000000001 4864 1983-04-27 2024-10-11 01:21:04.000 1983-04-27 2024-10-11 01:21:04 +4865 4865 4866 486.5 973 4865 1983-04-28 2024-10-11 01:21:05.000 1983-04-28 2024-10-11 01:21:05 +4866 4866 4867 486.6 973.2 4866 1983-04-29 2024-10-11 01:21:06.000 1983-04-29 2024-10-11 01:21:06 +4867 4867 4868 486.7 973.4000000000001 4867 1983-04-30 2024-10-11 01:21:07.000 1983-04-30 2024-10-11 01:21:07 +4868 4868 4869 486.8 973.6 4868 1983-05-01 2024-10-11 01:21:08.000 1983-05-01 2024-10-11 01:21:08 +4869 4869 4870 486.9 973.8000000000001 4869 1983-05-02 2024-10-11 01:21:09.000 1983-05-02 2024-10-11 01:21:09 +4870 4870 4871 487 974 4870 1983-05-03 2024-10-11 01:21:10.000 1983-05-03 2024-10-11 01:21:10 +4871 4871 4872 487.1 974.2 4871 1983-05-04 2024-10-11 01:21:11.000 1983-05-04 2024-10-11 01:21:11 +4872 4872 4873 487.2 974.4000000000001 4872 1983-05-05 2024-10-11 01:21:12.000 1983-05-05 2024-10-11 01:21:12 +4873 4873 4874 487.3 974.6 4873 1983-05-06 2024-10-11 01:21:13.000 1983-05-06 2024-10-11 01:21:13 +4874 4874 4875 487.4 974.8000000000001 4874 1983-05-07 2024-10-11 01:21:14.000 1983-05-07 2024-10-11 01:21:14 +4875 4875 4876 487.5 975 4875 1983-05-08 2024-10-11 01:21:15.000 1983-05-08 2024-10-11 01:21:15 +4876 4876 4877 487.6 975.2 4876 1983-05-09 2024-10-11 01:21:16.000 1983-05-09 2024-10-11 01:21:16 +4877 4877 4878 487.7 975.4000000000001 4877 1983-05-10 2024-10-11 01:21:17.000 1983-05-10 2024-10-11 01:21:17 +4878 4878 4879 487.8 975.6 4878 1983-05-11 2024-10-11 01:21:18.000 1983-05-11 2024-10-11 01:21:18 +4879 4879 4880 487.9 975.8000000000001 4879 1983-05-12 2024-10-11 01:21:19.000 1983-05-12 2024-10-11 01:21:19 +4880 4880 4881 488 976 4880 1983-05-13 2024-10-11 01:21:20.000 1983-05-13 2024-10-11 01:21:20 +4881 4881 4882 488.1 976.2 4881 1983-05-14 2024-10-11 01:21:21.000 1983-05-14 2024-10-11 01:21:21 +4882 4882 4883 488.2 976.4000000000001 4882 1983-05-15 2024-10-11 01:21:22.000 1983-05-15 2024-10-11 01:21:22 +4883 4883 4884 488.3 976.6 4883 1983-05-16 2024-10-11 01:21:23.000 1983-05-16 2024-10-11 01:21:23 +4884 4884 4885 488.4 976.8000000000001 4884 1983-05-17 2024-10-11 01:21:24.000 1983-05-17 2024-10-11 01:21:24 +4885 4885 4886 488.5 977 4885 1983-05-18 2024-10-11 01:21:25.000 1983-05-18 2024-10-11 01:21:25 +4886 4886 4887 488.6 977.2 4886 1983-05-19 2024-10-11 01:21:26.000 1983-05-19 2024-10-11 01:21:26 +4887 4887 4888 488.7 977.4000000000001 4887 1983-05-20 2024-10-11 01:21:27.000 1983-05-20 2024-10-11 01:21:27 +4888 4888 4889 488.8 977.6 4888 1983-05-21 2024-10-11 01:21:28.000 1983-05-21 2024-10-11 01:21:28 +4889 4889 4890 488.9 977.8000000000001 4889 1983-05-22 2024-10-11 01:21:29.000 1983-05-22 2024-10-11 01:21:29 +4890 4890 4891 489 978 4890 1983-05-23 2024-10-11 01:21:30.000 1983-05-23 2024-10-11 01:21:30 +4891 4891 4892 489.1 978.2 4891 1983-05-24 2024-10-11 01:21:31.000 1983-05-24 2024-10-11 01:21:31 +4892 4892 4893 489.2 978.4000000000001 4892 1983-05-25 2024-10-11 01:21:32.000 1983-05-25 2024-10-11 01:21:32 +4893 4893 4894 489.3 978.6 4893 1983-05-26 2024-10-11 01:21:33.000 1983-05-26 2024-10-11 01:21:33 +4894 4894 4895 489.4 978.8000000000001 4894 1983-05-27 2024-10-11 01:21:34.000 1983-05-27 2024-10-11 01:21:34 +4895 4895 4896 489.5 979 4895 1983-05-28 2024-10-11 01:21:35.000 1983-05-28 2024-10-11 01:21:35 +4896 4896 4897 489.6 979.2 4896 1983-05-29 2024-10-11 01:21:36.000 1983-05-29 2024-10-11 01:21:36 +4897 4897 4898 489.7 979.4000000000001 4897 1983-05-30 2024-10-11 01:21:37.000 1983-05-30 2024-10-11 01:21:37 +4898 4898 4899 489.8 979.6 4898 1983-05-31 2024-10-11 01:21:38.000 1983-05-31 2024-10-11 01:21:38 +4899 4899 4900 489.9 979.8000000000001 4899 1983-06-01 2024-10-11 01:21:39.000 1983-06-01 2024-10-11 01:21:39 +4900 4900 4901 490 980 4900 1983-06-02 2024-10-11 01:21:40.000 1983-06-02 2024-10-11 01:21:40 +4901 4901 4902 490.1 980.2 4901 1983-06-03 2024-10-11 01:21:41.000 1983-06-03 2024-10-11 01:21:41 +4902 4902 4903 490.2 980.4000000000001 4902 1983-06-04 2024-10-11 01:21:42.000 1983-06-04 2024-10-11 01:21:42 +4903 4903 4904 490.3 980.6 4903 1983-06-05 2024-10-11 01:21:43.000 1983-06-05 2024-10-11 01:21:43 +4904 4904 4905 490.4 980.8000000000001 4904 1983-06-06 2024-10-11 01:21:44.000 1983-06-06 2024-10-11 01:21:44 +4905 4905 4906 490.5 981 4905 1983-06-07 2024-10-11 01:21:45.000 1983-06-07 2024-10-11 01:21:45 +4906 4906 4907 490.6 981.2 4906 1983-06-08 2024-10-11 01:21:46.000 1983-06-08 2024-10-11 01:21:46 +4907 4907 4908 490.7 981.4000000000001 4907 1983-06-09 2024-10-11 01:21:47.000 1983-06-09 2024-10-11 01:21:47 +4908 4908 4909 490.8 981.6 4908 1983-06-10 2024-10-11 01:21:48.000 1983-06-10 2024-10-11 01:21:48 +4909 4909 4910 490.9 981.8000000000001 4909 1983-06-11 2024-10-11 01:21:49.000 1983-06-11 2024-10-11 01:21:49 +4910 4910 4911 491 982 4910 1983-06-12 2024-10-11 01:21:50.000 1983-06-12 2024-10-11 01:21:50 +4911 4911 4912 491.1 982.2 4911 1983-06-13 2024-10-11 01:21:51.000 1983-06-13 2024-10-11 01:21:51 +4912 4912 4913 491.2 982.4000000000001 4912 1983-06-14 2024-10-11 01:21:52.000 1983-06-14 2024-10-11 01:21:52 +4913 4913 4914 491.3 982.6 4913 1983-06-15 2024-10-11 01:21:53.000 1983-06-15 2024-10-11 01:21:53 +4914 4914 4915 491.4 982.8000000000001 4914 1983-06-16 2024-10-11 01:21:54.000 1983-06-16 2024-10-11 01:21:54 +4915 4915 4916 491.5 983 4915 1983-06-17 2024-10-11 01:21:55.000 1983-06-17 2024-10-11 01:21:55 +4916 4916 4917 491.6 983.2 4916 1983-06-18 2024-10-11 01:21:56.000 1983-06-18 2024-10-11 01:21:56 +4917 4917 4918 491.7 983.4000000000001 4917 1983-06-19 2024-10-11 01:21:57.000 1983-06-19 2024-10-11 01:21:57 +4918 4918 4919 491.8 983.6 4918 1983-06-20 2024-10-11 01:21:58.000 1983-06-20 2024-10-11 01:21:58 +4919 4919 4920 491.9 983.8000000000001 4919 1983-06-21 2024-10-11 01:21:59.000 1983-06-21 2024-10-11 01:21:59 +4920 4920 4921 492 984 4920 1983-06-22 2024-10-11 01:22:00.000 1983-06-22 2024-10-11 01:22:00 +4921 4921 4922 492.1 984.2 4921 1983-06-23 2024-10-11 01:22:01.000 1983-06-23 2024-10-11 01:22:01 +4922 4922 4923 492.2 984.4000000000001 4922 1983-06-24 2024-10-11 01:22:02.000 1983-06-24 2024-10-11 01:22:02 +4923 4923 4924 492.3 984.6 4923 1983-06-25 2024-10-11 01:22:03.000 1983-06-25 2024-10-11 01:22:03 +4924 4924 4925 492.4 984.8000000000001 4924 1983-06-26 2024-10-11 01:22:04.000 1983-06-26 2024-10-11 01:22:04 +4925 4925 4926 492.5 985 4925 1983-06-27 2024-10-11 01:22:05.000 1983-06-27 2024-10-11 01:22:05 +4926 4926 4927 492.6 985.2 4926 1983-06-28 2024-10-11 01:22:06.000 1983-06-28 2024-10-11 01:22:06 +4927 4927 4928 492.7 985.4000000000001 4927 1983-06-29 2024-10-11 01:22:07.000 1983-06-29 2024-10-11 01:22:07 +4928 4928 4929 492.8 985.6 4928 1983-06-30 2024-10-11 01:22:08.000 1983-06-30 2024-10-11 01:22:08 +4929 4929 4930 492.9 985.8000000000001 4929 1983-07-01 2024-10-11 01:22:09.000 1983-07-01 2024-10-11 01:22:09 +4930 4930 4931 493 986 4930 1983-07-02 2024-10-11 01:22:10.000 1983-07-02 2024-10-11 01:22:10 +4931 4931 4932 493.1 986.2 4931 1983-07-03 2024-10-11 01:22:11.000 1983-07-03 2024-10-11 01:22:11 +4932 4932 4933 493.2 986.4000000000001 4932 1983-07-04 2024-10-11 01:22:12.000 1983-07-04 2024-10-11 01:22:12 +4933 4933 4934 493.3 986.6 4933 1983-07-05 2024-10-11 01:22:13.000 1983-07-05 2024-10-11 01:22:13 +4934 4934 4935 493.4 986.8000000000001 4934 1983-07-06 2024-10-11 01:22:14.000 1983-07-06 2024-10-11 01:22:14 +4935 4935 4936 493.5 987 4935 1983-07-07 2024-10-11 01:22:15.000 1983-07-07 2024-10-11 01:22:15 +4936 4936 4937 493.6 987.2 4936 1983-07-08 2024-10-11 01:22:16.000 1983-07-08 2024-10-11 01:22:16 +4937 4937 4938 493.7 987.4000000000001 4937 1983-07-09 2024-10-11 01:22:17.000 1983-07-09 2024-10-11 01:22:17 +4938 4938 4939 493.8 987.6 4938 1983-07-10 2024-10-11 01:22:18.000 1983-07-10 2024-10-11 01:22:18 +4939 4939 4940 493.9 987.8000000000001 4939 1983-07-11 2024-10-11 01:22:19.000 1983-07-11 2024-10-11 01:22:19 +4940 4940 4941 494 988 4940 1983-07-12 2024-10-11 01:22:20.000 1983-07-12 2024-10-11 01:22:20 +4941 4941 4942 494.1 988.2 4941 1983-07-13 2024-10-11 01:22:21.000 1983-07-13 2024-10-11 01:22:21 +4942 4942 4943 494.2 988.4000000000001 4942 1983-07-14 2024-10-11 01:22:22.000 1983-07-14 2024-10-11 01:22:22 +4943 4943 4944 494.3 988.6 4943 1983-07-15 2024-10-11 01:22:23.000 1983-07-15 2024-10-11 01:22:23 +4944 4944 4945 494.4 988.8000000000001 4944 1983-07-16 2024-10-11 01:22:24.000 1983-07-16 2024-10-11 01:22:24 +4945 4945 4946 494.5 989 4945 1983-07-17 2024-10-11 01:22:25.000 1983-07-17 2024-10-11 01:22:25 +4946 4946 4947 494.6 989.2 4946 1983-07-18 2024-10-11 01:22:26.000 1983-07-18 2024-10-11 01:22:26 +4947 4947 4948 494.7 989.4000000000001 4947 1983-07-19 2024-10-11 01:22:27.000 1983-07-19 2024-10-11 01:22:27 +4948 4948 4949 494.8 989.6 4948 1983-07-20 2024-10-11 01:22:28.000 1983-07-20 2024-10-11 01:22:28 +4949 4949 4950 494.9 989.8000000000001 4949 1983-07-21 2024-10-11 01:22:29.000 1983-07-21 2024-10-11 01:22:29 +4950 4950 4951 495 990 4950 1983-07-22 2024-10-11 01:22:30.000 1983-07-22 2024-10-11 01:22:30 +4951 4951 4952 495.1 990.2 4951 1983-07-23 2024-10-11 01:22:31.000 1983-07-23 2024-10-11 01:22:31 +4952 4952 4953 495.2 990.4000000000001 4952 1983-07-24 2024-10-11 01:22:32.000 1983-07-24 2024-10-11 01:22:32 +4953 4953 4954 495.3 990.6 4953 1983-07-25 2024-10-11 01:22:33.000 1983-07-25 2024-10-11 01:22:33 +4954 4954 4955 495.4 990.8000000000001 4954 1983-07-26 2024-10-11 01:22:34.000 1983-07-26 2024-10-11 01:22:34 +4955 4955 4956 495.5 991 4955 1983-07-27 2024-10-11 01:22:35.000 1983-07-27 2024-10-11 01:22:35 +4956 4956 4957 495.6 991.2 4956 1983-07-28 2024-10-11 01:22:36.000 1983-07-28 2024-10-11 01:22:36 +4957 4957 4958 495.7 991.4000000000001 4957 1983-07-29 2024-10-11 01:22:37.000 1983-07-29 2024-10-11 01:22:37 +4958 4958 4959 495.8 991.6 4958 1983-07-30 2024-10-11 01:22:38.000 1983-07-30 2024-10-11 01:22:38 +4959 4959 4960 495.9 991.8000000000001 4959 1983-07-31 2024-10-11 01:22:39.000 1983-07-31 2024-10-11 01:22:39 +4960 4960 4961 496 992 4960 1983-08-01 2024-10-11 01:22:40.000 1983-08-01 2024-10-11 01:22:40 +4961 4961 4962 496.1 992.2 4961 1983-08-02 2024-10-11 01:22:41.000 1983-08-02 2024-10-11 01:22:41 +4962 4962 4963 496.2 992.4000000000001 4962 1983-08-03 2024-10-11 01:22:42.000 1983-08-03 2024-10-11 01:22:42 +4963 4963 4964 496.3 992.6 4963 1983-08-04 2024-10-11 01:22:43.000 1983-08-04 2024-10-11 01:22:43 +4964 4964 4965 496.4 992.8000000000001 4964 1983-08-05 2024-10-11 01:22:44.000 1983-08-05 2024-10-11 01:22:44 +4965 4965 4966 496.5 993 4965 1983-08-06 2024-10-11 01:22:45.000 1983-08-06 2024-10-11 01:22:45 +4966 4966 4967 496.6 993.2 4966 1983-08-07 2024-10-11 01:22:46.000 1983-08-07 2024-10-11 01:22:46 +4967 4967 4968 496.7 993.4000000000001 4967 1983-08-08 2024-10-11 01:22:47.000 1983-08-08 2024-10-11 01:22:47 +4968 4968 4969 496.8 993.6 4968 1983-08-09 2024-10-11 01:22:48.000 1983-08-09 2024-10-11 01:22:48 +4969 4969 4970 496.9 993.8000000000001 4969 1983-08-10 2024-10-11 01:22:49.000 1983-08-10 2024-10-11 01:22:49 +4970 4970 4971 497 994 4970 1983-08-11 2024-10-11 01:22:50.000 1983-08-11 2024-10-11 01:22:50 +4971 4971 4972 497.1 994.2 4971 1983-08-12 2024-10-11 01:22:51.000 1983-08-12 2024-10-11 01:22:51 +4972 4972 4973 497.2 994.4000000000001 4972 1983-08-13 2024-10-11 01:22:52.000 1983-08-13 2024-10-11 01:22:52 +4973 4973 4974 497.3 994.6 4973 1983-08-14 2024-10-11 01:22:53.000 1983-08-14 2024-10-11 01:22:53 +4974 4974 4975 497.4 994.8000000000001 4974 1983-08-15 2024-10-11 01:22:54.000 1983-08-15 2024-10-11 01:22:54 +4975 4975 4976 497.5 995 4975 1983-08-16 2024-10-11 01:22:55.000 1983-08-16 2024-10-11 01:22:55 +4976 4976 4977 497.6 995.2 4976 1983-08-17 2024-10-11 01:22:56.000 1983-08-17 2024-10-11 01:22:56 +4977 4977 4978 497.7 995.4000000000001 4977 1983-08-18 2024-10-11 01:22:57.000 1983-08-18 2024-10-11 01:22:57 +4978 4978 4979 497.8 995.6 4978 1983-08-19 2024-10-11 01:22:58.000 1983-08-19 2024-10-11 01:22:58 +4979 4979 4980 497.9 995.8000000000001 4979 1983-08-20 2024-10-11 01:22:59.000 1983-08-20 2024-10-11 01:22:59 +4980 4980 4981 498 996 4980 1983-08-21 2024-10-11 01:23:00.000 1983-08-21 2024-10-11 01:23:00 +4981 4981 4982 498.1 996.2 4981 1983-08-22 2024-10-11 01:23:01.000 1983-08-22 2024-10-11 01:23:01 +4982 4982 4983 498.2 996.4000000000001 4982 1983-08-23 2024-10-11 01:23:02.000 1983-08-23 2024-10-11 01:23:02 +4983 4983 4984 498.3 996.6 4983 1983-08-24 2024-10-11 01:23:03.000 1983-08-24 2024-10-11 01:23:03 +4984 4984 4985 498.4 996.8000000000001 4984 1983-08-25 2024-10-11 01:23:04.000 1983-08-25 2024-10-11 01:23:04 +4985 4985 4986 498.5 997 4985 1983-08-26 2024-10-11 01:23:05.000 1983-08-26 2024-10-11 01:23:05 +4986 4986 4987 498.6 997.2 4986 1983-08-27 2024-10-11 01:23:06.000 1983-08-27 2024-10-11 01:23:06 +4987 4987 4988 498.7 997.4000000000001 4987 1983-08-28 2024-10-11 01:23:07.000 1983-08-28 2024-10-11 01:23:07 +4988 4988 4989 498.8 997.6 4988 1983-08-29 2024-10-11 01:23:08.000 1983-08-29 2024-10-11 01:23:08 +4989 4989 4990 498.9 997.8000000000001 4989 1983-08-30 2024-10-11 01:23:09.000 1983-08-30 2024-10-11 01:23:09 +4990 4990 4991 499 998 4990 1983-08-31 2024-10-11 01:23:10.000 1983-08-31 2024-10-11 01:23:10 +4991 4991 4992 499.1 998.2 4991 1983-09-01 2024-10-11 01:23:11.000 1983-09-01 2024-10-11 01:23:11 +4992 4992 4993 499.2 998.4000000000001 4992 1983-09-02 2024-10-11 01:23:12.000 1983-09-02 2024-10-11 01:23:12 +4993 4993 4994 499.3 998.6 4993 1983-09-03 2024-10-11 01:23:13.000 1983-09-03 2024-10-11 01:23:13 +4994 4994 4995 499.4 998.8000000000001 4994 1983-09-04 2024-10-11 01:23:14.000 1983-09-04 2024-10-11 01:23:14 +4995 4995 4996 499.5 999 4995 1983-09-05 2024-10-11 01:23:15.000 1983-09-05 2024-10-11 01:23:15 +4996 4996 4997 499.6 999.2 4996 1983-09-06 2024-10-11 01:23:16.000 1983-09-06 2024-10-11 01:23:16 +4997 4997 4998 499.7 999.4000000000001 4997 1983-09-07 2024-10-11 01:23:17.000 1983-09-07 2024-10-11 01:23:17 +4998 4998 4999 499.8 999.6 4998 1983-09-08 2024-10-11 01:23:18.000 1983-09-08 2024-10-11 01:23:18 +4999 4999 5000 499.9 999.8000000000001 4999 1983-09-09 2024-10-11 01:23:19.000 1983-09-09 2024-10-11 01:23:19 +5000 5000 5001 500 1000 5000 1983-09-10 2024-10-11 01:23:20.000 1983-09-10 2024-10-11 01:23:20 +5001 5001 5002 500.1 1000.2 5001 1983-09-11 2024-10-11 01:23:21.000 1983-09-11 2024-10-11 01:23:21 +5002 5002 5003 500.2 1000.4000000000001 5002 1983-09-12 2024-10-11 01:23:22.000 1983-09-12 2024-10-11 01:23:22 +5003 5003 5004 500.3 1000.6 5003 1983-09-13 2024-10-11 01:23:23.000 1983-09-13 2024-10-11 01:23:23 +5004 5004 5005 500.4 1000.8000000000001 5004 1983-09-14 2024-10-11 01:23:24.000 1983-09-14 2024-10-11 01:23:24 +5005 5005 5006 500.5 1001 5005 1983-09-15 2024-10-11 01:23:25.000 1983-09-15 2024-10-11 01:23:25 +5006 5006 5007 500.6 1001.2 5006 1983-09-16 2024-10-11 01:23:26.000 1983-09-16 2024-10-11 01:23:26 +5007 5007 5008 500.7 1001.4000000000001 5007 1983-09-17 2024-10-11 01:23:27.000 1983-09-17 2024-10-11 01:23:27 +5008 5008 5009 500.8 1001.6 5008 1983-09-18 2024-10-11 01:23:28.000 1983-09-18 2024-10-11 01:23:28 +5009 5009 5010 500.9 1001.8000000000001 5009 1983-09-19 2024-10-11 01:23:29.000 1983-09-19 2024-10-11 01:23:29 +5010 5010 5011 501 1002 5010 1983-09-20 2024-10-11 01:23:30.000 1983-09-20 2024-10-11 01:23:30 +5011 5011 5012 501.1 1002.2 5011 1983-09-21 2024-10-11 01:23:31.000 1983-09-21 2024-10-11 01:23:31 +5012 5012 5013 501.2 1002.4000000000001 5012 1983-09-22 2024-10-11 01:23:32.000 1983-09-22 2024-10-11 01:23:32 +5013 5013 5014 501.3 1002.6 5013 1983-09-23 2024-10-11 01:23:33.000 1983-09-23 2024-10-11 01:23:33 +5014 5014 5015 501.4 1002.8000000000001 5014 1983-09-24 2024-10-11 01:23:34.000 1983-09-24 2024-10-11 01:23:34 +5015 5015 5016 501.5 1003 5015 1983-09-25 2024-10-11 01:23:35.000 1983-09-25 2024-10-11 01:23:35 +5016 5016 5017 501.6 1003.2 5016 1983-09-26 2024-10-11 01:23:36.000 1983-09-26 2024-10-11 01:23:36 +5017 5017 5018 501.7 1003.4000000000001 5017 1983-09-27 2024-10-11 01:23:37.000 1983-09-27 2024-10-11 01:23:37 +5018 5018 5019 501.8 1003.6 5018 1983-09-28 2024-10-11 01:23:38.000 1983-09-28 2024-10-11 01:23:38 +5019 5019 5020 501.9 1003.8000000000001 5019 1983-09-29 2024-10-11 01:23:39.000 1983-09-29 2024-10-11 01:23:39 +5020 5020 5021 502 1004 5020 1983-09-30 2024-10-11 01:23:40.000 1983-09-30 2024-10-11 01:23:40 +5021 5021 5022 502.1 1004.2 5021 1983-10-01 2024-10-11 01:23:41.000 1983-10-01 2024-10-11 01:23:41 +5022 5022 5023 502.2 1004.4000000000001 5022 1983-10-02 2024-10-11 01:23:42.000 1983-10-02 2024-10-11 01:23:42 +5023 5023 5024 502.3 1004.6 5023 1983-10-03 2024-10-11 01:23:43.000 1983-10-03 2024-10-11 01:23:43 +5024 5024 5025 502.4 1004.8000000000001 5024 1983-10-04 2024-10-11 01:23:44.000 1983-10-04 2024-10-11 01:23:44 +5025 5025 5026 502.5 1005 5025 1983-10-05 2024-10-11 01:23:45.000 1983-10-05 2024-10-11 01:23:45 +5026 5026 5027 502.6 1005.2 5026 1983-10-06 2024-10-11 01:23:46.000 1983-10-06 2024-10-11 01:23:46 +5027 5027 5028 502.7 1005.4000000000001 5027 1983-10-07 2024-10-11 01:23:47.000 1983-10-07 2024-10-11 01:23:47 +5028 5028 5029 502.8 1005.6 5028 1983-10-08 2024-10-11 01:23:48.000 1983-10-08 2024-10-11 01:23:48 +5029 5029 5030 502.9 1005.8000000000001 5029 1983-10-09 2024-10-11 01:23:49.000 1983-10-09 2024-10-11 01:23:49 +5030 5030 5031 503 1006 5030 1983-10-10 2024-10-11 01:23:50.000 1983-10-10 2024-10-11 01:23:50 +5031 5031 5032 503.1 1006.2 5031 1983-10-11 2024-10-11 01:23:51.000 1983-10-11 2024-10-11 01:23:51 +5032 5032 5033 503.2 1006.4000000000001 5032 1983-10-12 2024-10-11 01:23:52.000 1983-10-12 2024-10-11 01:23:52 +5033 5033 5034 503.3 1006.6 5033 1983-10-13 2024-10-11 01:23:53.000 1983-10-13 2024-10-11 01:23:53 +5034 5034 5035 503.4 1006.8000000000001 5034 1983-10-14 2024-10-11 01:23:54.000 1983-10-14 2024-10-11 01:23:54 +5035 5035 5036 503.5 1007 5035 1983-10-15 2024-10-11 01:23:55.000 1983-10-15 2024-10-11 01:23:55 +5036 5036 5037 503.6 1007.2 5036 1983-10-16 2024-10-11 01:23:56.000 1983-10-16 2024-10-11 01:23:56 +5037 5037 5038 503.7 1007.4000000000001 5037 1983-10-17 2024-10-11 01:23:57.000 1983-10-17 2024-10-11 01:23:57 +5038 5038 5039 503.8 1007.6 5038 1983-10-18 2024-10-11 01:23:58.000 1983-10-18 2024-10-11 01:23:58 +5039 5039 5040 503.9 1007.8000000000001 5039 1983-10-19 2024-10-11 01:23:59.000 1983-10-19 2024-10-11 01:23:59 +5040 5040 5041 504 1008 5040 1983-10-20 2024-10-11 01:24:00.000 1983-10-20 2024-10-11 01:24:00 +5041 5041 5042 504.1 1008.2 5041 1983-10-21 2024-10-11 01:24:01.000 1983-10-21 2024-10-11 01:24:01 +5042 5042 5043 504.2 1008.4000000000001 5042 1983-10-22 2024-10-11 01:24:02.000 1983-10-22 2024-10-11 01:24:02 +5043 5043 5044 504.3 1008.6 5043 1983-10-23 2024-10-11 01:24:03.000 1983-10-23 2024-10-11 01:24:03 +5044 5044 5045 504.4 1008.8000000000001 5044 1983-10-24 2024-10-11 01:24:04.000 1983-10-24 2024-10-11 01:24:04 +5045 5045 5046 504.5 1009 5045 1983-10-25 2024-10-11 01:24:05.000 1983-10-25 2024-10-11 01:24:05 +5046 5046 5047 504.6 1009.2 5046 1983-10-26 2024-10-11 01:24:06.000 1983-10-26 2024-10-11 01:24:06 +5047 5047 5048 504.7 1009.4000000000001 5047 1983-10-27 2024-10-11 01:24:07.000 1983-10-27 2024-10-11 01:24:07 +5048 5048 5049 504.8 1009.6 5048 1983-10-28 2024-10-11 01:24:08.000 1983-10-28 2024-10-11 01:24:08 +5049 5049 5050 504.9 1009.8000000000001 5049 1983-10-29 2024-10-11 01:24:09.000 1983-10-29 2024-10-11 01:24:09 +5050 5050 5051 505 1010 5050 1983-10-30 2024-10-11 01:24:10.000 1983-10-30 2024-10-11 01:24:10 +5051 5051 5052 505.1 1010.2 5051 1983-10-31 2024-10-11 01:24:11.000 1983-10-31 2024-10-11 01:24:11 +5052 5052 5053 505.2 1010.4000000000001 5052 1983-11-01 2024-10-11 01:24:12.000 1983-11-01 2024-10-11 01:24:12 +5053 5053 5054 505.3 1010.6 5053 1983-11-02 2024-10-11 01:24:13.000 1983-11-02 2024-10-11 01:24:13 +5054 5054 5055 505.4 1010.8000000000001 5054 1983-11-03 2024-10-11 01:24:14.000 1983-11-03 2024-10-11 01:24:14 +5055 5055 5056 505.5 1011 5055 1983-11-04 2024-10-11 01:24:15.000 1983-11-04 2024-10-11 01:24:15 +5056 5056 5057 505.6 1011.2 5056 1983-11-05 2024-10-11 01:24:16.000 1983-11-05 2024-10-11 01:24:16 +5057 5057 5058 505.7 1011.4000000000001 5057 1983-11-06 2024-10-11 01:24:17.000 1983-11-06 2024-10-11 01:24:17 +5058 5058 5059 505.8 1011.6 5058 1983-11-07 2024-10-11 01:24:18.000 1983-11-07 2024-10-11 01:24:18 +5059 5059 5060 505.9 1011.8000000000001 5059 1983-11-08 2024-10-11 01:24:19.000 1983-11-08 2024-10-11 01:24:19 +5060 5060 5061 506 1012 5060 1983-11-09 2024-10-11 01:24:20.000 1983-11-09 2024-10-11 01:24:20 +5061 5061 5062 506.1 1012.2 5061 1983-11-10 2024-10-11 01:24:21.000 1983-11-10 2024-10-11 01:24:21 +5062 5062 5063 506.2 1012.4000000000001 5062 1983-11-11 2024-10-11 01:24:22.000 1983-11-11 2024-10-11 01:24:22 +5063 5063 5064 506.3 1012.6 5063 1983-11-12 2024-10-11 01:24:23.000 1983-11-12 2024-10-11 01:24:23 +5064 5064 5065 506.4 1012.8000000000001 5064 1983-11-13 2024-10-11 01:24:24.000 1983-11-13 2024-10-11 01:24:24 +5065 5065 5066 506.5 1013 5065 1983-11-14 2024-10-11 01:24:25.000 1983-11-14 2024-10-11 01:24:25 +5066 5066 5067 506.6 1013.2 5066 1983-11-15 2024-10-11 01:24:26.000 1983-11-15 2024-10-11 01:24:26 +5067 5067 5068 506.7 1013.4000000000001 5067 1983-11-16 2024-10-11 01:24:27.000 1983-11-16 2024-10-11 01:24:27 +5068 5068 5069 506.8 1013.6 5068 1983-11-17 2024-10-11 01:24:28.000 1983-11-17 2024-10-11 01:24:28 +5069 5069 5070 506.9 1013.8000000000001 5069 1983-11-18 2024-10-11 01:24:29.000 1983-11-18 2024-10-11 01:24:29 +5070 5070 5071 507 1014 5070 1983-11-19 2024-10-11 01:24:30.000 1983-11-19 2024-10-11 01:24:30 +5071 5071 5072 507.1 1014.2 5071 1983-11-20 2024-10-11 01:24:31.000 1983-11-20 2024-10-11 01:24:31 +5072 5072 5073 507.2 1014.4000000000001 5072 1983-11-21 2024-10-11 01:24:32.000 1983-11-21 2024-10-11 01:24:32 +5073 5073 5074 507.3 1014.6 5073 1983-11-22 2024-10-11 01:24:33.000 1983-11-22 2024-10-11 01:24:33 +5074 5074 5075 507.4 1014.8000000000001 5074 1983-11-23 2024-10-11 01:24:34.000 1983-11-23 2024-10-11 01:24:34 +5075 5075 5076 507.5 1015 5075 1983-11-24 2024-10-11 01:24:35.000 1983-11-24 2024-10-11 01:24:35 +5076 5076 5077 507.6 1015.2 5076 1983-11-25 2024-10-11 01:24:36.000 1983-11-25 2024-10-11 01:24:36 +5077 5077 5078 507.7 1015.4000000000001 5077 1983-11-26 2024-10-11 01:24:37.000 1983-11-26 2024-10-11 01:24:37 +5078 5078 5079 507.8 1015.6 5078 1983-11-27 2024-10-11 01:24:38.000 1983-11-27 2024-10-11 01:24:38 +5079 5079 5080 507.9 1015.8000000000001 5079 1983-11-28 2024-10-11 01:24:39.000 1983-11-28 2024-10-11 01:24:39 +5080 5080 5081 508 1016 5080 1983-11-29 2024-10-11 01:24:40.000 1983-11-29 2024-10-11 01:24:40 +5081 5081 5082 508.1 1016.2 5081 1983-11-30 2024-10-11 01:24:41.000 1983-11-30 2024-10-11 01:24:41 +5082 5082 5083 508.2 1016.4000000000001 5082 1983-12-01 2024-10-11 01:24:42.000 1983-12-01 2024-10-11 01:24:42 +5083 5083 5084 508.3 1016.6 5083 1983-12-02 2024-10-11 01:24:43.000 1983-12-02 2024-10-11 01:24:43 +5084 5084 5085 508.4 1016.8000000000001 5084 1983-12-03 2024-10-11 01:24:44.000 1983-12-03 2024-10-11 01:24:44 +5085 5085 5086 508.5 1017 5085 1983-12-04 2024-10-11 01:24:45.000 1983-12-04 2024-10-11 01:24:45 +5086 5086 5087 508.6 1017.2 5086 1983-12-05 2024-10-11 01:24:46.000 1983-12-05 2024-10-11 01:24:46 +5087 5087 5088 508.7 1017.4000000000001 5087 1983-12-06 2024-10-11 01:24:47.000 1983-12-06 2024-10-11 01:24:47 +5088 5088 5089 508.8 1017.6 5088 1983-12-07 2024-10-11 01:24:48.000 1983-12-07 2024-10-11 01:24:48 +5089 5089 5090 508.9 1017.8000000000001 5089 1983-12-08 2024-10-11 01:24:49.000 1983-12-08 2024-10-11 01:24:49 +5090 5090 5091 509 1018 5090 1983-12-09 2024-10-11 01:24:50.000 1983-12-09 2024-10-11 01:24:50 +5091 5091 5092 509.1 1018.2 5091 1983-12-10 2024-10-11 01:24:51.000 1983-12-10 2024-10-11 01:24:51 +5092 5092 5093 509.2 1018.4000000000001 5092 1983-12-11 2024-10-11 01:24:52.000 1983-12-11 2024-10-11 01:24:52 +5093 5093 5094 509.3 1018.6 5093 1983-12-12 2024-10-11 01:24:53.000 1983-12-12 2024-10-11 01:24:53 +5094 5094 5095 509.4 1018.8000000000001 5094 1983-12-13 2024-10-11 01:24:54.000 1983-12-13 2024-10-11 01:24:54 +5095 5095 5096 509.5 1019 5095 1983-12-14 2024-10-11 01:24:55.000 1983-12-14 2024-10-11 01:24:55 +5096 5096 5097 509.6 1019.2 5096 1983-12-15 2024-10-11 01:24:56.000 1983-12-15 2024-10-11 01:24:56 +5097 5097 5098 509.7 1019.4000000000001 5097 1983-12-16 2024-10-11 01:24:57.000 1983-12-16 2024-10-11 01:24:57 +5098 5098 5099 509.8 1019.6 5098 1983-12-17 2024-10-11 01:24:58.000 1983-12-17 2024-10-11 01:24:58 +5099 5099 5100 509.9 1019.8000000000001 5099 1983-12-18 2024-10-11 01:24:59.000 1983-12-18 2024-10-11 01:24:59 +5100 5100 5101 510 1020 5100 1983-12-19 2024-10-11 01:25:00.000 1983-12-19 2024-10-11 01:25:00 +5101 5101 5102 510.1 1020.2 5101 1983-12-20 2024-10-11 01:25:01.000 1983-12-20 2024-10-11 01:25:01 +5102 5102 5103 510.2 1020.4000000000001 5102 1983-12-21 2024-10-11 01:25:02.000 1983-12-21 2024-10-11 01:25:02 +5103 5103 5104 510.3 1020.6 5103 1983-12-22 2024-10-11 01:25:03.000 1983-12-22 2024-10-11 01:25:03 +5104 5104 5105 510.4 1020.8000000000001 5104 1983-12-23 2024-10-11 01:25:04.000 1983-12-23 2024-10-11 01:25:04 +5105 5105 5106 510.5 1021 5105 1983-12-24 2024-10-11 01:25:05.000 1983-12-24 2024-10-11 01:25:05 +5106 5106 5107 510.6 1021.2 5106 1983-12-25 2024-10-11 01:25:06.000 1983-12-25 2024-10-11 01:25:06 +5107 5107 5108 510.7 1021.4000000000001 5107 1983-12-26 2024-10-11 01:25:07.000 1983-12-26 2024-10-11 01:25:07 +5108 5108 5109 510.8 1021.6 5108 1983-12-27 2024-10-11 01:25:08.000 1983-12-27 2024-10-11 01:25:08 +5109 5109 5110 510.9 1021.8000000000001 5109 1983-12-28 2024-10-11 01:25:09.000 1983-12-28 2024-10-11 01:25:09 +5110 5110 5111 511 1022 5110 1983-12-29 2024-10-11 01:25:10.000 1983-12-29 2024-10-11 01:25:10 +5111 5111 5112 511.1 1022.2 5111 1983-12-30 2024-10-11 01:25:11.000 1983-12-30 2024-10-11 01:25:11 +5112 5112 5113 511.2 1022.4000000000001 5112 1983-12-31 2024-10-11 01:25:12.000 1983-12-31 2024-10-11 01:25:12 +5113 5113 5114 511.3 1022.6 5113 1984-01-01 2024-10-11 01:25:13.000 1984-01-01 2024-10-11 01:25:13 +5114 5114 5115 511.4 1022.8000000000001 5114 1984-01-02 2024-10-11 01:25:14.000 1984-01-02 2024-10-11 01:25:14 +5115 5115 5116 511.5 1023 5115 1984-01-03 2024-10-11 01:25:15.000 1984-01-03 2024-10-11 01:25:15 +5116 5116 5117 511.6 1023.2 5116 1984-01-04 2024-10-11 01:25:16.000 1984-01-04 2024-10-11 01:25:16 +5117 5117 5118 511.7 1023.4000000000001 5117 1984-01-05 2024-10-11 01:25:17.000 1984-01-05 2024-10-11 01:25:17 +5118 5118 5119 511.8 1023.6 5118 1984-01-06 2024-10-11 01:25:18.000 1984-01-06 2024-10-11 01:25:18 +5119 5119 5120 511.9 1023.8000000000001 5119 1984-01-07 2024-10-11 01:25:19.000 1984-01-07 2024-10-11 01:25:19 +5120 5120 5121 512 1024 5120 1984-01-08 2024-10-11 01:25:20.000 1984-01-08 2024-10-11 01:25:20 +5121 5121 5122 512.1 1024.2 5121 1984-01-09 2024-10-11 01:25:21.000 1984-01-09 2024-10-11 01:25:21 +5122 5122 5123 512.2 1024.4 5122 1984-01-10 2024-10-11 01:25:22.000 1984-01-10 2024-10-11 01:25:22 +5123 5123 5124 512.3 1024.6000000000001 5123 1984-01-11 2024-10-11 01:25:23.000 1984-01-11 2024-10-11 01:25:23 +5124 5124 5125 512.4 1024.8 5124 1984-01-12 2024-10-11 01:25:24.000 1984-01-12 2024-10-11 01:25:24 +5125 5125 5126 512.5 1025 5125 1984-01-13 2024-10-11 01:25:25.000 1984-01-13 2024-10-11 01:25:25 +5126 5126 5127 512.6 1025.2 5126 1984-01-14 2024-10-11 01:25:26.000 1984-01-14 2024-10-11 01:25:26 +5127 5127 5128 512.7 1025.4 5127 1984-01-15 2024-10-11 01:25:27.000 1984-01-15 2024-10-11 01:25:27 +5128 5128 5129 512.8 1025.6000000000001 5128 1984-01-16 2024-10-11 01:25:28.000 1984-01-16 2024-10-11 01:25:28 +5129 5129 5130 512.9 1025.8 5129 1984-01-17 2024-10-11 01:25:29.000 1984-01-17 2024-10-11 01:25:29 +5130 5130 5131 513 1026 5130 1984-01-18 2024-10-11 01:25:30.000 1984-01-18 2024-10-11 01:25:30 +5131 5131 5132 513.1 1026.2 5131 1984-01-19 2024-10-11 01:25:31.000 1984-01-19 2024-10-11 01:25:31 +5132 5132 5133 513.2 1026.4 5132 1984-01-20 2024-10-11 01:25:32.000 1984-01-20 2024-10-11 01:25:32 +5133 5133 5134 513.3 1026.6000000000001 5133 1984-01-21 2024-10-11 01:25:33.000 1984-01-21 2024-10-11 01:25:33 +5134 5134 5135 513.4 1026.8 5134 1984-01-22 2024-10-11 01:25:34.000 1984-01-22 2024-10-11 01:25:34 +5135 5135 5136 513.5 1027 5135 1984-01-23 2024-10-11 01:25:35.000 1984-01-23 2024-10-11 01:25:35 +5136 5136 5137 513.6 1027.2 5136 1984-01-24 2024-10-11 01:25:36.000 1984-01-24 2024-10-11 01:25:36 +5137 5137 5138 513.7 1027.4 5137 1984-01-25 2024-10-11 01:25:37.000 1984-01-25 2024-10-11 01:25:37 +5138 5138 5139 513.8 1027.6000000000001 5138 1984-01-26 2024-10-11 01:25:38.000 1984-01-26 2024-10-11 01:25:38 +5139 5139 5140 513.9 1027.8 5139 1984-01-27 2024-10-11 01:25:39.000 1984-01-27 2024-10-11 01:25:39 +5140 5140 5141 514 1028 5140 1984-01-28 2024-10-11 01:25:40.000 1984-01-28 2024-10-11 01:25:40 +5141 5141 5142 514.1 1028.2 5141 1984-01-29 2024-10-11 01:25:41.000 1984-01-29 2024-10-11 01:25:41 +5142 5142 5143 514.2 1028.4 5142 1984-01-30 2024-10-11 01:25:42.000 1984-01-30 2024-10-11 01:25:42 +5143 5143 5144 514.3 1028.6000000000001 5143 1984-01-31 2024-10-11 01:25:43.000 1984-01-31 2024-10-11 01:25:43 +5144 5144 5145 514.4 1028.8 5144 1984-02-01 2024-10-11 01:25:44.000 1984-02-01 2024-10-11 01:25:44 +5145 5145 5146 514.5 1029 5145 1984-02-02 2024-10-11 01:25:45.000 1984-02-02 2024-10-11 01:25:45 +5146 5146 5147 514.6 1029.2 5146 1984-02-03 2024-10-11 01:25:46.000 1984-02-03 2024-10-11 01:25:46 +5147 5147 5148 514.7 1029.4 5147 1984-02-04 2024-10-11 01:25:47.000 1984-02-04 2024-10-11 01:25:47 +5148 5148 5149 514.8 1029.6000000000001 5148 1984-02-05 2024-10-11 01:25:48.000 1984-02-05 2024-10-11 01:25:48 +5149 5149 5150 514.9 1029.8 5149 1984-02-06 2024-10-11 01:25:49.000 1984-02-06 2024-10-11 01:25:49 +5150 5150 5151 515 1030 5150 1984-02-07 2024-10-11 01:25:50.000 1984-02-07 2024-10-11 01:25:50 +5151 5151 5152 515.1 1030.2 5151 1984-02-08 2024-10-11 01:25:51.000 1984-02-08 2024-10-11 01:25:51 +5152 5152 5153 515.2 1030.4 5152 1984-02-09 2024-10-11 01:25:52.000 1984-02-09 2024-10-11 01:25:52 +5153 5153 5154 515.3 1030.6000000000001 5153 1984-02-10 2024-10-11 01:25:53.000 1984-02-10 2024-10-11 01:25:53 +5154 5154 5155 515.4 1030.8 5154 1984-02-11 2024-10-11 01:25:54.000 1984-02-11 2024-10-11 01:25:54 +5155 5155 5156 515.5 1031 5155 1984-02-12 2024-10-11 01:25:55.000 1984-02-12 2024-10-11 01:25:55 +5156 5156 5157 515.6 1031.2 5156 1984-02-13 2024-10-11 01:25:56.000 1984-02-13 2024-10-11 01:25:56 +5157 5157 5158 515.7 1031.4 5157 1984-02-14 2024-10-11 01:25:57.000 1984-02-14 2024-10-11 01:25:57 +5158 5158 5159 515.8 1031.6000000000001 5158 1984-02-15 2024-10-11 01:25:58.000 1984-02-15 2024-10-11 01:25:58 +5159 5159 5160 515.9 1031.8 5159 1984-02-16 2024-10-11 01:25:59.000 1984-02-16 2024-10-11 01:25:59 +5160 5160 5161 516 1032 5160 1984-02-17 2024-10-11 01:26:00.000 1984-02-17 2024-10-11 01:26:00 +5161 5161 5162 516.1 1032.2 5161 1984-02-18 2024-10-11 01:26:01.000 1984-02-18 2024-10-11 01:26:01 +5162 5162 5163 516.2 1032.4 5162 1984-02-19 2024-10-11 01:26:02.000 1984-02-19 2024-10-11 01:26:02 +5163 5163 5164 516.3 1032.6000000000001 5163 1984-02-20 2024-10-11 01:26:03.000 1984-02-20 2024-10-11 01:26:03 +5164 5164 5165 516.4 1032.8 5164 1984-02-21 2024-10-11 01:26:04.000 1984-02-21 2024-10-11 01:26:04 +5165 5165 5166 516.5 1033 5165 1984-02-22 2024-10-11 01:26:05.000 1984-02-22 2024-10-11 01:26:05 +5166 5166 5167 516.6 1033.2 5166 1984-02-23 2024-10-11 01:26:06.000 1984-02-23 2024-10-11 01:26:06 +5167 5167 5168 516.7 1033.4 5167 1984-02-24 2024-10-11 01:26:07.000 1984-02-24 2024-10-11 01:26:07 +5168 5168 5169 516.8 1033.6000000000001 5168 1984-02-25 2024-10-11 01:26:08.000 1984-02-25 2024-10-11 01:26:08 +5169 5169 5170 516.9 1033.8 5169 1984-02-26 2024-10-11 01:26:09.000 1984-02-26 2024-10-11 01:26:09 +5170 5170 5171 517 1034 5170 1984-02-27 2024-10-11 01:26:10.000 1984-02-27 2024-10-11 01:26:10 +5171 5171 5172 517.1 1034.2 5171 1984-02-28 2024-10-11 01:26:11.000 1984-02-28 2024-10-11 01:26:11 +5172 5172 5173 517.2 1034.4 5172 1984-02-29 2024-10-11 01:26:12.000 1984-02-29 2024-10-11 01:26:12 +5173 5173 5174 517.3 1034.6000000000001 5173 1984-03-01 2024-10-11 01:26:13.000 1984-03-01 2024-10-11 01:26:13 +5174 5174 5175 517.4 1034.8 5174 1984-03-02 2024-10-11 01:26:14.000 1984-03-02 2024-10-11 01:26:14 +5175 5175 5176 517.5 1035 5175 1984-03-03 2024-10-11 01:26:15.000 1984-03-03 2024-10-11 01:26:15 +5176 5176 5177 517.6 1035.2 5176 1984-03-04 2024-10-11 01:26:16.000 1984-03-04 2024-10-11 01:26:16 +5177 5177 5178 517.7 1035.4 5177 1984-03-05 2024-10-11 01:26:17.000 1984-03-05 2024-10-11 01:26:17 +5178 5178 5179 517.8 1035.6000000000001 5178 1984-03-06 2024-10-11 01:26:18.000 1984-03-06 2024-10-11 01:26:18 +5179 5179 5180 517.9 1035.8 5179 1984-03-07 2024-10-11 01:26:19.000 1984-03-07 2024-10-11 01:26:19 +5180 5180 5181 518 1036 5180 1984-03-08 2024-10-11 01:26:20.000 1984-03-08 2024-10-11 01:26:20 +5181 5181 5182 518.1 1036.2 5181 1984-03-09 2024-10-11 01:26:21.000 1984-03-09 2024-10-11 01:26:21 +5182 5182 5183 518.2 1036.4 5182 1984-03-10 2024-10-11 01:26:22.000 1984-03-10 2024-10-11 01:26:22 +5183 5183 5184 518.3 1036.6000000000001 5183 1984-03-11 2024-10-11 01:26:23.000 1984-03-11 2024-10-11 01:26:23 +5184 5184 5185 518.4 1036.8 5184 1984-03-12 2024-10-11 01:26:24.000 1984-03-12 2024-10-11 01:26:24 +5185 5185 5186 518.5 1037 5185 1984-03-13 2024-10-11 01:26:25.000 1984-03-13 2024-10-11 01:26:25 +5186 5186 5187 518.6 1037.2 5186 1984-03-14 2024-10-11 01:26:26.000 1984-03-14 2024-10-11 01:26:26 +5187 5187 5188 518.7 1037.4 5187 1984-03-15 2024-10-11 01:26:27.000 1984-03-15 2024-10-11 01:26:27 +5188 5188 5189 518.8 1037.6000000000001 5188 1984-03-16 2024-10-11 01:26:28.000 1984-03-16 2024-10-11 01:26:28 +5189 5189 5190 518.9 1037.8 5189 1984-03-17 2024-10-11 01:26:29.000 1984-03-17 2024-10-11 01:26:29 +5190 5190 5191 519 1038 5190 1984-03-18 2024-10-11 01:26:30.000 1984-03-18 2024-10-11 01:26:30 +5191 5191 5192 519.1 1038.2 5191 1984-03-19 2024-10-11 01:26:31.000 1984-03-19 2024-10-11 01:26:31 +5192 5192 5193 519.2 1038.4 5192 1984-03-20 2024-10-11 01:26:32.000 1984-03-20 2024-10-11 01:26:32 +5193 5193 5194 519.3 1038.6000000000001 5193 1984-03-21 2024-10-11 01:26:33.000 1984-03-21 2024-10-11 01:26:33 +5194 5194 5195 519.4 1038.8 5194 1984-03-22 2024-10-11 01:26:34.000 1984-03-22 2024-10-11 01:26:34 +5195 5195 5196 519.5 1039 5195 1984-03-23 2024-10-11 01:26:35.000 1984-03-23 2024-10-11 01:26:35 +5196 5196 5197 519.6 1039.2 5196 1984-03-24 2024-10-11 01:26:36.000 1984-03-24 2024-10-11 01:26:36 +5197 5197 5198 519.7 1039.4 5197 1984-03-25 2024-10-11 01:26:37.000 1984-03-25 2024-10-11 01:26:37 +5198 5198 5199 519.8 1039.6000000000001 5198 1984-03-26 2024-10-11 01:26:38.000 1984-03-26 2024-10-11 01:26:38 +5199 5199 5200 519.9 1039.8 5199 1984-03-27 2024-10-11 01:26:39.000 1984-03-27 2024-10-11 01:26:39 +5200 5200 5201 520 1040 5200 1984-03-28 2024-10-11 01:26:40.000 1984-03-28 2024-10-11 01:26:40 +5201 5201 5202 520.1 1040.2 5201 1984-03-29 2024-10-11 01:26:41.000 1984-03-29 2024-10-11 01:26:41 +5202 5202 5203 520.2 1040.4 5202 1984-03-30 2024-10-11 01:26:42.000 1984-03-30 2024-10-11 01:26:42 +5203 5203 5204 520.3 1040.6000000000001 5203 1984-03-31 2024-10-11 01:26:43.000 1984-03-31 2024-10-11 01:26:43 +5204 5204 5205 520.4 1040.8 5204 1984-04-01 2024-10-11 01:26:44.000 1984-04-01 2024-10-11 01:26:44 +5205 5205 5206 520.5 1041 5205 1984-04-02 2024-10-11 01:26:45.000 1984-04-02 2024-10-11 01:26:45 +5206 5206 5207 520.6 1041.2 5206 1984-04-03 2024-10-11 01:26:46.000 1984-04-03 2024-10-11 01:26:46 +5207 5207 5208 520.7 1041.4 5207 1984-04-04 2024-10-11 01:26:47.000 1984-04-04 2024-10-11 01:26:47 +5208 5208 5209 520.8 1041.6000000000001 5208 1984-04-05 2024-10-11 01:26:48.000 1984-04-05 2024-10-11 01:26:48 +5209 5209 5210 520.9 1041.8 5209 1984-04-06 2024-10-11 01:26:49.000 1984-04-06 2024-10-11 01:26:49 +5210 5210 5211 521 1042 5210 1984-04-07 2024-10-11 01:26:50.000 1984-04-07 2024-10-11 01:26:50 +5211 5211 5212 521.1 1042.2 5211 1984-04-08 2024-10-11 01:26:51.000 1984-04-08 2024-10-11 01:26:51 +5212 5212 5213 521.2 1042.4 5212 1984-04-09 2024-10-11 01:26:52.000 1984-04-09 2024-10-11 01:26:52 +5213 5213 5214 521.3 1042.6000000000001 5213 1984-04-10 2024-10-11 01:26:53.000 1984-04-10 2024-10-11 01:26:53 +5214 5214 5215 521.4 1042.8 5214 1984-04-11 2024-10-11 01:26:54.000 1984-04-11 2024-10-11 01:26:54 +5215 5215 5216 521.5 1043 5215 1984-04-12 2024-10-11 01:26:55.000 1984-04-12 2024-10-11 01:26:55 +5216 5216 5217 521.6 1043.2 5216 1984-04-13 2024-10-11 01:26:56.000 1984-04-13 2024-10-11 01:26:56 +5217 5217 5218 521.7 1043.4 5217 1984-04-14 2024-10-11 01:26:57.000 1984-04-14 2024-10-11 01:26:57 +5218 5218 5219 521.8 1043.6000000000001 5218 1984-04-15 2024-10-11 01:26:58.000 1984-04-15 2024-10-11 01:26:58 +5219 5219 5220 521.9 1043.8 5219 1984-04-16 2024-10-11 01:26:59.000 1984-04-16 2024-10-11 01:26:59 +5220 5220 5221 522 1044 5220 1984-04-17 2024-10-11 01:27:00.000 1984-04-17 2024-10-11 01:27:00 +5221 5221 5222 522.1 1044.2 5221 1984-04-18 2024-10-11 01:27:01.000 1984-04-18 2024-10-11 01:27:01 +5222 5222 5223 522.2 1044.4 5222 1984-04-19 2024-10-11 01:27:02.000 1984-04-19 2024-10-11 01:27:02 +5223 5223 5224 522.3 1044.6000000000001 5223 1984-04-20 2024-10-11 01:27:03.000 1984-04-20 2024-10-11 01:27:03 +5224 5224 5225 522.4 1044.8 5224 1984-04-21 2024-10-11 01:27:04.000 1984-04-21 2024-10-11 01:27:04 +5225 5225 5226 522.5 1045 5225 1984-04-22 2024-10-11 01:27:05.000 1984-04-22 2024-10-11 01:27:05 +5226 5226 5227 522.6 1045.2 5226 1984-04-23 2024-10-11 01:27:06.000 1984-04-23 2024-10-11 01:27:06 +5227 5227 5228 522.7 1045.4 5227 1984-04-24 2024-10-11 01:27:07.000 1984-04-24 2024-10-11 01:27:07 +5228 5228 5229 522.8 1045.6000000000001 5228 1984-04-25 2024-10-11 01:27:08.000 1984-04-25 2024-10-11 01:27:08 +5229 5229 5230 522.9 1045.8 5229 1984-04-26 2024-10-11 01:27:09.000 1984-04-26 2024-10-11 01:27:09 +5230 5230 5231 523 1046 5230 1984-04-27 2024-10-11 01:27:10.000 1984-04-27 2024-10-11 01:27:10 +5231 5231 5232 523.1 1046.2 5231 1984-04-28 2024-10-11 01:27:11.000 1984-04-28 2024-10-11 01:27:11 +5232 5232 5233 523.2 1046.4 5232 1984-04-29 2024-10-11 01:27:12.000 1984-04-29 2024-10-11 01:27:12 +5233 5233 5234 523.3 1046.6000000000001 5233 1984-04-30 2024-10-11 01:27:13.000 1984-04-30 2024-10-11 01:27:13 +5234 5234 5235 523.4 1046.8 5234 1984-05-01 2024-10-11 01:27:14.000 1984-05-01 2024-10-11 01:27:14 +5235 5235 5236 523.5 1047 5235 1984-05-02 2024-10-11 01:27:15.000 1984-05-02 2024-10-11 01:27:15 +5236 5236 5237 523.6 1047.2 5236 1984-05-03 2024-10-11 01:27:16.000 1984-05-03 2024-10-11 01:27:16 +5237 5237 5238 523.7 1047.4 5237 1984-05-04 2024-10-11 01:27:17.000 1984-05-04 2024-10-11 01:27:17 +5238 5238 5239 523.8 1047.6000000000001 5238 1984-05-05 2024-10-11 01:27:18.000 1984-05-05 2024-10-11 01:27:18 +5239 5239 5240 523.9 1047.8 5239 1984-05-06 2024-10-11 01:27:19.000 1984-05-06 2024-10-11 01:27:19 +5240 5240 5241 524 1048 5240 1984-05-07 2024-10-11 01:27:20.000 1984-05-07 2024-10-11 01:27:20 +5241 5241 5242 524.1 1048.2 5241 1984-05-08 2024-10-11 01:27:21.000 1984-05-08 2024-10-11 01:27:21 +5242 5242 5243 524.2 1048.4 5242 1984-05-09 2024-10-11 01:27:22.000 1984-05-09 2024-10-11 01:27:22 +5243 5243 5244 524.3 1048.6000000000001 5243 1984-05-10 2024-10-11 01:27:23.000 1984-05-10 2024-10-11 01:27:23 +5244 5244 5245 524.4 1048.8 5244 1984-05-11 2024-10-11 01:27:24.000 1984-05-11 2024-10-11 01:27:24 +5245 5245 5246 524.5 1049 5245 1984-05-12 2024-10-11 01:27:25.000 1984-05-12 2024-10-11 01:27:25 +5246 5246 5247 524.6 1049.2 5246 1984-05-13 2024-10-11 01:27:26.000 1984-05-13 2024-10-11 01:27:26 +5247 5247 5248 524.7 1049.4 5247 1984-05-14 2024-10-11 01:27:27.000 1984-05-14 2024-10-11 01:27:27 +5248 5248 5249 524.8 1049.6000000000001 5248 1984-05-15 2024-10-11 01:27:28.000 1984-05-15 2024-10-11 01:27:28 +5249 5249 5250 524.9 1049.8 5249 1984-05-16 2024-10-11 01:27:29.000 1984-05-16 2024-10-11 01:27:29 +5250 5250 5251 525 1050 5250 1984-05-17 2024-10-11 01:27:30.000 1984-05-17 2024-10-11 01:27:30 +5251 5251 5252 525.1 1050.2 5251 1984-05-18 2024-10-11 01:27:31.000 1984-05-18 2024-10-11 01:27:31 +5252 5252 5253 525.2 1050.4 5252 1984-05-19 2024-10-11 01:27:32.000 1984-05-19 2024-10-11 01:27:32 +5253 5253 5254 525.3 1050.6000000000001 5253 1984-05-20 2024-10-11 01:27:33.000 1984-05-20 2024-10-11 01:27:33 +5254 5254 5255 525.4 1050.8 5254 1984-05-21 2024-10-11 01:27:34.000 1984-05-21 2024-10-11 01:27:34 +5255 5255 5256 525.5 1051 5255 1984-05-22 2024-10-11 01:27:35.000 1984-05-22 2024-10-11 01:27:35 +5256 5256 5257 525.6 1051.2 5256 1984-05-23 2024-10-11 01:27:36.000 1984-05-23 2024-10-11 01:27:36 +5257 5257 5258 525.7 1051.4 5257 1984-05-24 2024-10-11 01:27:37.000 1984-05-24 2024-10-11 01:27:37 +5258 5258 5259 525.8 1051.6000000000001 5258 1984-05-25 2024-10-11 01:27:38.000 1984-05-25 2024-10-11 01:27:38 +5259 5259 5260 525.9 1051.8 5259 1984-05-26 2024-10-11 01:27:39.000 1984-05-26 2024-10-11 01:27:39 +5260 5260 5261 526 1052 5260 1984-05-27 2024-10-11 01:27:40.000 1984-05-27 2024-10-11 01:27:40 +5261 5261 5262 526.1 1052.2 5261 1984-05-28 2024-10-11 01:27:41.000 1984-05-28 2024-10-11 01:27:41 +5262 5262 5263 526.2 1052.4 5262 1984-05-29 2024-10-11 01:27:42.000 1984-05-29 2024-10-11 01:27:42 +5263 5263 5264 526.3 1052.6000000000001 5263 1984-05-30 2024-10-11 01:27:43.000 1984-05-30 2024-10-11 01:27:43 +5264 5264 5265 526.4 1052.8 5264 1984-05-31 2024-10-11 01:27:44.000 1984-05-31 2024-10-11 01:27:44 +5265 5265 5266 526.5 1053 5265 1984-06-01 2024-10-11 01:27:45.000 1984-06-01 2024-10-11 01:27:45 +5266 5266 5267 526.6 1053.2 5266 1984-06-02 2024-10-11 01:27:46.000 1984-06-02 2024-10-11 01:27:46 +5267 5267 5268 526.7 1053.4 5267 1984-06-03 2024-10-11 01:27:47.000 1984-06-03 2024-10-11 01:27:47 +5268 5268 5269 526.8 1053.6000000000001 5268 1984-06-04 2024-10-11 01:27:48.000 1984-06-04 2024-10-11 01:27:48 +5269 5269 5270 526.9 1053.8 5269 1984-06-05 2024-10-11 01:27:49.000 1984-06-05 2024-10-11 01:27:49 +5270 5270 5271 527 1054 5270 1984-06-06 2024-10-11 01:27:50.000 1984-06-06 2024-10-11 01:27:50 +5271 5271 5272 527.1 1054.2 5271 1984-06-07 2024-10-11 01:27:51.000 1984-06-07 2024-10-11 01:27:51 +5272 5272 5273 527.2 1054.4 5272 1984-06-08 2024-10-11 01:27:52.000 1984-06-08 2024-10-11 01:27:52 +5273 5273 5274 527.3 1054.6000000000001 5273 1984-06-09 2024-10-11 01:27:53.000 1984-06-09 2024-10-11 01:27:53 +5274 5274 5275 527.4 1054.8 5274 1984-06-10 2024-10-11 01:27:54.000 1984-06-10 2024-10-11 01:27:54 +5275 5275 5276 527.5 1055 5275 1984-06-11 2024-10-11 01:27:55.000 1984-06-11 2024-10-11 01:27:55 +5276 5276 5277 527.6 1055.2 5276 1984-06-12 2024-10-11 01:27:56.000 1984-06-12 2024-10-11 01:27:56 +5277 5277 5278 527.7 1055.4 5277 1984-06-13 2024-10-11 01:27:57.000 1984-06-13 2024-10-11 01:27:57 +5278 5278 5279 527.8 1055.6000000000001 5278 1984-06-14 2024-10-11 01:27:58.000 1984-06-14 2024-10-11 01:27:58 +5279 5279 5280 527.9 1055.8 5279 1984-06-15 2024-10-11 01:27:59.000 1984-06-15 2024-10-11 01:27:59 +5280 5280 5281 528 1056 5280 1984-06-16 2024-10-11 01:28:00.000 1984-06-16 2024-10-11 01:28:00 +5281 5281 5282 528.1 1056.2 5281 1984-06-17 2024-10-11 01:28:01.000 1984-06-17 2024-10-11 01:28:01 +5282 5282 5283 528.2 1056.4 5282 1984-06-18 2024-10-11 01:28:02.000 1984-06-18 2024-10-11 01:28:02 +5283 5283 5284 528.3 1056.6000000000001 5283 1984-06-19 2024-10-11 01:28:03.000 1984-06-19 2024-10-11 01:28:03 +5284 5284 5285 528.4 1056.8 5284 1984-06-20 2024-10-11 01:28:04.000 1984-06-20 2024-10-11 01:28:04 +5285 5285 5286 528.5 1057 5285 1984-06-21 2024-10-11 01:28:05.000 1984-06-21 2024-10-11 01:28:05 +5286 5286 5287 528.6 1057.2 5286 1984-06-22 2024-10-11 01:28:06.000 1984-06-22 2024-10-11 01:28:06 +5287 5287 5288 528.7 1057.4 5287 1984-06-23 2024-10-11 01:28:07.000 1984-06-23 2024-10-11 01:28:07 +5288 5288 5289 528.8 1057.6000000000001 5288 1984-06-24 2024-10-11 01:28:08.000 1984-06-24 2024-10-11 01:28:08 +5289 5289 5290 528.9 1057.8 5289 1984-06-25 2024-10-11 01:28:09.000 1984-06-25 2024-10-11 01:28:09 +5290 5290 5291 529 1058 5290 1984-06-26 2024-10-11 01:28:10.000 1984-06-26 2024-10-11 01:28:10 +5291 5291 5292 529.1 1058.2 5291 1984-06-27 2024-10-11 01:28:11.000 1984-06-27 2024-10-11 01:28:11 +5292 5292 5293 529.2 1058.4 5292 1984-06-28 2024-10-11 01:28:12.000 1984-06-28 2024-10-11 01:28:12 +5293 5293 5294 529.3 1058.6000000000001 5293 1984-06-29 2024-10-11 01:28:13.000 1984-06-29 2024-10-11 01:28:13 +5294 5294 5295 529.4 1058.8 5294 1984-06-30 2024-10-11 01:28:14.000 1984-06-30 2024-10-11 01:28:14 +5295 5295 5296 529.5 1059 5295 1984-07-01 2024-10-11 01:28:15.000 1984-07-01 2024-10-11 01:28:15 +5296 5296 5297 529.6 1059.2 5296 1984-07-02 2024-10-11 01:28:16.000 1984-07-02 2024-10-11 01:28:16 +5297 5297 5298 529.7 1059.4 5297 1984-07-03 2024-10-11 01:28:17.000 1984-07-03 2024-10-11 01:28:17 +5298 5298 5299 529.8 1059.6000000000001 5298 1984-07-04 2024-10-11 01:28:18.000 1984-07-04 2024-10-11 01:28:18 +5299 5299 5300 529.9 1059.8 5299 1984-07-05 2024-10-11 01:28:19.000 1984-07-05 2024-10-11 01:28:19 +5300 5300 5301 530 1060 5300 1984-07-06 2024-10-11 01:28:20.000 1984-07-06 2024-10-11 01:28:20 +5301 5301 5302 530.1 1060.2 5301 1984-07-07 2024-10-11 01:28:21.000 1984-07-07 2024-10-11 01:28:21 +5302 5302 5303 530.2 1060.4 5302 1984-07-08 2024-10-11 01:28:22.000 1984-07-08 2024-10-11 01:28:22 +5303 5303 5304 530.3 1060.6000000000001 5303 1984-07-09 2024-10-11 01:28:23.000 1984-07-09 2024-10-11 01:28:23 +5304 5304 5305 530.4 1060.8 5304 1984-07-10 2024-10-11 01:28:24.000 1984-07-10 2024-10-11 01:28:24 +5305 5305 5306 530.5 1061 5305 1984-07-11 2024-10-11 01:28:25.000 1984-07-11 2024-10-11 01:28:25 +5306 5306 5307 530.6 1061.2 5306 1984-07-12 2024-10-11 01:28:26.000 1984-07-12 2024-10-11 01:28:26 +5307 5307 5308 530.7 1061.4 5307 1984-07-13 2024-10-11 01:28:27.000 1984-07-13 2024-10-11 01:28:27 +5308 5308 5309 530.8 1061.6000000000001 5308 1984-07-14 2024-10-11 01:28:28.000 1984-07-14 2024-10-11 01:28:28 +5309 5309 5310 530.9 1061.8 5309 1984-07-15 2024-10-11 01:28:29.000 1984-07-15 2024-10-11 01:28:29 +5310 5310 5311 531 1062 5310 1984-07-16 2024-10-11 01:28:30.000 1984-07-16 2024-10-11 01:28:30 +5311 5311 5312 531.1 1062.2 5311 1984-07-17 2024-10-11 01:28:31.000 1984-07-17 2024-10-11 01:28:31 +5312 5312 5313 531.2 1062.4 5312 1984-07-18 2024-10-11 01:28:32.000 1984-07-18 2024-10-11 01:28:32 +5313 5313 5314 531.3 1062.6000000000001 5313 1984-07-19 2024-10-11 01:28:33.000 1984-07-19 2024-10-11 01:28:33 +5314 5314 5315 531.4 1062.8 5314 1984-07-20 2024-10-11 01:28:34.000 1984-07-20 2024-10-11 01:28:34 +5315 5315 5316 531.5 1063 5315 1984-07-21 2024-10-11 01:28:35.000 1984-07-21 2024-10-11 01:28:35 +5316 5316 5317 531.6 1063.2 5316 1984-07-22 2024-10-11 01:28:36.000 1984-07-22 2024-10-11 01:28:36 +5317 5317 5318 531.7 1063.4 5317 1984-07-23 2024-10-11 01:28:37.000 1984-07-23 2024-10-11 01:28:37 +5318 5318 5319 531.8 1063.6000000000001 5318 1984-07-24 2024-10-11 01:28:38.000 1984-07-24 2024-10-11 01:28:38 +5319 5319 5320 531.9 1063.8 5319 1984-07-25 2024-10-11 01:28:39.000 1984-07-25 2024-10-11 01:28:39 +5320 5320 5321 532 1064 5320 1984-07-26 2024-10-11 01:28:40.000 1984-07-26 2024-10-11 01:28:40 +5321 5321 5322 532.1 1064.2 5321 1984-07-27 2024-10-11 01:28:41.000 1984-07-27 2024-10-11 01:28:41 +5322 5322 5323 532.2 1064.4 5322 1984-07-28 2024-10-11 01:28:42.000 1984-07-28 2024-10-11 01:28:42 +5323 5323 5324 532.3 1064.6000000000001 5323 1984-07-29 2024-10-11 01:28:43.000 1984-07-29 2024-10-11 01:28:43 +5324 5324 5325 532.4 1064.8 5324 1984-07-30 2024-10-11 01:28:44.000 1984-07-30 2024-10-11 01:28:44 +5325 5325 5326 532.5 1065 5325 1984-07-31 2024-10-11 01:28:45.000 1984-07-31 2024-10-11 01:28:45 +5326 5326 5327 532.6 1065.2 5326 1984-08-01 2024-10-11 01:28:46.000 1984-08-01 2024-10-11 01:28:46 +5327 5327 5328 532.7 1065.4 5327 1984-08-02 2024-10-11 01:28:47.000 1984-08-02 2024-10-11 01:28:47 +5328 5328 5329 532.8 1065.6000000000001 5328 1984-08-03 2024-10-11 01:28:48.000 1984-08-03 2024-10-11 01:28:48 +5329 5329 5330 532.9 1065.8 5329 1984-08-04 2024-10-11 01:28:49.000 1984-08-04 2024-10-11 01:28:49 +5330 5330 5331 533 1066 5330 1984-08-05 2024-10-11 01:28:50.000 1984-08-05 2024-10-11 01:28:50 +5331 5331 5332 533.1 1066.2 5331 1984-08-06 2024-10-11 01:28:51.000 1984-08-06 2024-10-11 01:28:51 +5332 5332 5333 533.2 1066.4 5332 1984-08-07 2024-10-11 01:28:52.000 1984-08-07 2024-10-11 01:28:52 +5333 5333 5334 533.3 1066.6000000000001 5333 1984-08-08 2024-10-11 01:28:53.000 1984-08-08 2024-10-11 01:28:53 +5334 5334 5335 533.4 1066.8 5334 1984-08-09 2024-10-11 01:28:54.000 1984-08-09 2024-10-11 01:28:54 +5335 5335 5336 533.5 1067 5335 1984-08-10 2024-10-11 01:28:55.000 1984-08-10 2024-10-11 01:28:55 +5336 5336 5337 533.6 1067.2 5336 1984-08-11 2024-10-11 01:28:56.000 1984-08-11 2024-10-11 01:28:56 +5337 5337 5338 533.7 1067.4 5337 1984-08-12 2024-10-11 01:28:57.000 1984-08-12 2024-10-11 01:28:57 +5338 5338 5339 533.8 1067.6000000000001 5338 1984-08-13 2024-10-11 01:28:58.000 1984-08-13 2024-10-11 01:28:58 +5339 5339 5340 533.9 1067.8 5339 1984-08-14 2024-10-11 01:28:59.000 1984-08-14 2024-10-11 01:28:59 +5340 5340 5341 534 1068 5340 1984-08-15 2024-10-11 01:29:00.000 1984-08-15 2024-10-11 01:29:00 +5341 5341 5342 534.1 1068.2 5341 1984-08-16 2024-10-11 01:29:01.000 1984-08-16 2024-10-11 01:29:01 +5342 5342 5343 534.2 1068.4 5342 1984-08-17 2024-10-11 01:29:02.000 1984-08-17 2024-10-11 01:29:02 +5343 5343 5344 534.3 1068.6000000000001 5343 1984-08-18 2024-10-11 01:29:03.000 1984-08-18 2024-10-11 01:29:03 +5344 5344 5345 534.4 1068.8 5344 1984-08-19 2024-10-11 01:29:04.000 1984-08-19 2024-10-11 01:29:04 +5345 5345 5346 534.5 1069 5345 1984-08-20 2024-10-11 01:29:05.000 1984-08-20 2024-10-11 01:29:05 +5346 5346 5347 534.6 1069.2 5346 1984-08-21 2024-10-11 01:29:06.000 1984-08-21 2024-10-11 01:29:06 +5347 5347 5348 534.7 1069.4 5347 1984-08-22 2024-10-11 01:29:07.000 1984-08-22 2024-10-11 01:29:07 +5348 5348 5349 534.8 1069.6000000000001 5348 1984-08-23 2024-10-11 01:29:08.000 1984-08-23 2024-10-11 01:29:08 +5349 5349 5350 534.9 1069.8 5349 1984-08-24 2024-10-11 01:29:09.000 1984-08-24 2024-10-11 01:29:09 +5350 5350 5351 535 1070 5350 1984-08-25 2024-10-11 01:29:10.000 1984-08-25 2024-10-11 01:29:10 +5351 5351 5352 535.1 1070.2 5351 1984-08-26 2024-10-11 01:29:11.000 1984-08-26 2024-10-11 01:29:11 +5352 5352 5353 535.2 1070.4 5352 1984-08-27 2024-10-11 01:29:12.000 1984-08-27 2024-10-11 01:29:12 +5353 5353 5354 535.3 1070.6000000000001 5353 1984-08-28 2024-10-11 01:29:13.000 1984-08-28 2024-10-11 01:29:13 +5354 5354 5355 535.4 1070.8 5354 1984-08-29 2024-10-11 01:29:14.000 1984-08-29 2024-10-11 01:29:14 +5355 5355 5356 535.5 1071 5355 1984-08-30 2024-10-11 01:29:15.000 1984-08-30 2024-10-11 01:29:15 +5356 5356 5357 535.6 1071.2 5356 1984-08-31 2024-10-11 01:29:16.000 1984-08-31 2024-10-11 01:29:16 +5357 5357 5358 535.7 1071.4 5357 1984-09-01 2024-10-11 01:29:17.000 1984-09-01 2024-10-11 01:29:17 +5358 5358 5359 535.8 1071.6000000000001 5358 1984-09-02 2024-10-11 01:29:18.000 1984-09-02 2024-10-11 01:29:18 +5359 5359 5360 535.9 1071.8 5359 1984-09-03 2024-10-11 01:29:19.000 1984-09-03 2024-10-11 01:29:19 +5360 5360 5361 536 1072 5360 1984-09-04 2024-10-11 01:29:20.000 1984-09-04 2024-10-11 01:29:20 +5361 5361 5362 536.1 1072.2 5361 1984-09-05 2024-10-11 01:29:21.000 1984-09-05 2024-10-11 01:29:21 +5362 5362 5363 536.2 1072.4 5362 1984-09-06 2024-10-11 01:29:22.000 1984-09-06 2024-10-11 01:29:22 +5363 5363 5364 536.3 1072.6000000000001 5363 1984-09-07 2024-10-11 01:29:23.000 1984-09-07 2024-10-11 01:29:23 +5364 5364 5365 536.4 1072.8 5364 1984-09-08 2024-10-11 01:29:24.000 1984-09-08 2024-10-11 01:29:24 +5365 5365 5366 536.5 1073 5365 1984-09-09 2024-10-11 01:29:25.000 1984-09-09 2024-10-11 01:29:25 +5366 5366 5367 536.6 1073.2 5366 1984-09-10 2024-10-11 01:29:26.000 1984-09-10 2024-10-11 01:29:26 +5367 5367 5368 536.7 1073.4 5367 1984-09-11 2024-10-11 01:29:27.000 1984-09-11 2024-10-11 01:29:27 +5368 5368 5369 536.8 1073.6000000000001 5368 1984-09-12 2024-10-11 01:29:28.000 1984-09-12 2024-10-11 01:29:28 +5369 5369 5370 536.9 1073.8 5369 1984-09-13 2024-10-11 01:29:29.000 1984-09-13 2024-10-11 01:29:29 +5370 5370 5371 537 1074 5370 1984-09-14 2024-10-11 01:29:30.000 1984-09-14 2024-10-11 01:29:30 +5371 5371 5372 537.1 1074.2 5371 1984-09-15 2024-10-11 01:29:31.000 1984-09-15 2024-10-11 01:29:31 +5372 5372 5373 537.2 1074.4 5372 1984-09-16 2024-10-11 01:29:32.000 1984-09-16 2024-10-11 01:29:32 +5373 5373 5374 537.3 1074.6000000000001 5373 1984-09-17 2024-10-11 01:29:33.000 1984-09-17 2024-10-11 01:29:33 +5374 5374 5375 537.4 1074.8 5374 1984-09-18 2024-10-11 01:29:34.000 1984-09-18 2024-10-11 01:29:34 +5375 5375 5376 537.5 1075 5375 1984-09-19 2024-10-11 01:29:35.000 1984-09-19 2024-10-11 01:29:35 +5376 5376 5377 537.6 1075.2 5376 1984-09-20 2024-10-11 01:29:36.000 1984-09-20 2024-10-11 01:29:36 +5377 5377 5378 537.7 1075.4 5377 1984-09-21 2024-10-11 01:29:37.000 1984-09-21 2024-10-11 01:29:37 +5378 5378 5379 537.8 1075.6000000000001 5378 1984-09-22 2024-10-11 01:29:38.000 1984-09-22 2024-10-11 01:29:38 +5379 5379 5380 537.9 1075.8 5379 1984-09-23 2024-10-11 01:29:39.000 1984-09-23 2024-10-11 01:29:39 +5380 5380 5381 538 1076 5380 1984-09-24 2024-10-11 01:29:40.000 1984-09-24 2024-10-11 01:29:40 +5381 5381 5382 538.1 1076.2 5381 1984-09-25 2024-10-11 01:29:41.000 1984-09-25 2024-10-11 01:29:41 +5382 5382 5383 538.2 1076.4 5382 1984-09-26 2024-10-11 01:29:42.000 1984-09-26 2024-10-11 01:29:42 +5383 5383 5384 538.3 1076.6000000000001 5383 1984-09-27 2024-10-11 01:29:43.000 1984-09-27 2024-10-11 01:29:43 +5384 5384 5385 538.4 1076.8 5384 1984-09-28 2024-10-11 01:29:44.000 1984-09-28 2024-10-11 01:29:44 +5385 5385 5386 538.5 1077 5385 1984-09-29 2024-10-11 01:29:45.000 1984-09-29 2024-10-11 01:29:45 +5386 5386 5387 538.6 1077.2 5386 1984-09-30 2024-10-11 01:29:46.000 1984-09-30 2024-10-11 01:29:46 +5387 5387 5388 538.7 1077.4 5387 1984-10-01 2024-10-11 01:29:47.000 1984-10-01 2024-10-11 01:29:47 +5388 5388 5389 538.8 1077.6000000000001 5388 1984-10-02 2024-10-11 01:29:48.000 1984-10-02 2024-10-11 01:29:48 +5389 5389 5390 538.9 1077.8 5389 1984-10-03 2024-10-11 01:29:49.000 1984-10-03 2024-10-11 01:29:49 +5390 5390 5391 539 1078 5390 1984-10-04 2024-10-11 01:29:50.000 1984-10-04 2024-10-11 01:29:50 +5391 5391 5392 539.1 1078.2 5391 1984-10-05 2024-10-11 01:29:51.000 1984-10-05 2024-10-11 01:29:51 +5392 5392 5393 539.2 1078.4 5392 1984-10-06 2024-10-11 01:29:52.000 1984-10-06 2024-10-11 01:29:52 +5393 5393 5394 539.3 1078.6000000000001 5393 1984-10-07 2024-10-11 01:29:53.000 1984-10-07 2024-10-11 01:29:53 +5394 5394 5395 539.4 1078.8 5394 1984-10-08 2024-10-11 01:29:54.000 1984-10-08 2024-10-11 01:29:54 +5395 5395 5396 539.5 1079 5395 1984-10-09 2024-10-11 01:29:55.000 1984-10-09 2024-10-11 01:29:55 +5396 5396 5397 539.6 1079.2 5396 1984-10-10 2024-10-11 01:29:56.000 1984-10-10 2024-10-11 01:29:56 +5397 5397 5398 539.7 1079.4 5397 1984-10-11 2024-10-11 01:29:57.000 1984-10-11 2024-10-11 01:29:57 +5398 5398 5399 539.8 1079.6000000000001 5398 1984-10-12 2024-10-11 01:29:58.000 1984-10-12 2024-10-11 01:29:58 +5399 5399 5400 539.9 1079.8 5399 1984-10-13 2024-10-11 01:29:59.000 1984-10-13 2024-10-11 01:29:59 +5400 5400 5401 540 1080 5400 1984-10-14 2024-10-11 01:30:00.000 1984-10-14 2024-10-11 01:30:00 +5401 5401 5402 540.1 1080.2 5401 1984-10-15 2024-10-11 01:30:01.000 1984-10-15 2024-10-11 01:30:01 +5402 5402 5403 540.2 1080.4 5402 1984-10-16 2024-10-11 01:30:02.000 1984-10-16 2024-10-11 01:30:02 +5403 5403 5404 540.3 1080.6000000000001 5403 1984-10-17 2024-10-11 01:30:03.000 1984-10-17 2024-10-11 01:30:03 +5404 5404 5405 540.4 1080.8 5404 1984-10-18 2024-10-11 01:30:04.000 1984-10-18 2024-10-11 01:30:04 +5405 5405 5406 540.5 1081 5405 1984-10-19 2024-10-11 01:30:05.000 1984-10-19 2024-10-11 01:30:05 +5406 5406 5407 540.6 1081.2 5406 1984-10-20 2024-10-11 01:30:06.000 1984-10-20 2024-10-11 01:30:06 +5407 5407 5408 540.7 1081.4 5407 1984-10-21 2024-10-11 01:30:07.000 1984-10-21 2024-10-11 01:30:07 +5408 5408 5409 540.8 1081.6000000000001 5408 1984-10-22 2024-10-11 01:30:08.000 1984-10-22 2024-10-11 01:30:08 +5409 5409 5410 540.9 1081.8 5409 1984-10-23 2024-10-11 01:30:09.000 1984-10-23 2024-10-11 01:30:09 +5410 5410 5411 541 1082 5410 1984-10-24 2024-10-11 01:30:10.000 1984-10-24 2024-10-11 01:30:10 +5411 5411 5412 541.1 1082.2 5411 1984-10-25 2024-10-11 01:30:11.000 1984-10-25 2024-10-11 01:30:11 +5412 5412 5413 541.2 1082.4 5412 1984-10-26 2024-10-11 01:30:12.000 1984-10-26 2024-10-11 01:30:12 +5413 5413 5414 541.3 1082.6000000000001 5413 1984-10-27 2024-10-11 01:30:13.000 1984-10-27 2024-10-11 01:30:13 +5414 5414 5415 541.4 1082.8 5414 1984-10-28 2024-10-11 01:30:14.000 1984-10-28 2024-10-11 01:30:14 +5415 5415 5416 541.5 1083 5415 1984-10-29 2024-10-11 01:30:15.000 1984-10-29 2024-10-11 01:30:15 +5416 5416 5417 541.6 1083.2 5416 1984-10-30 2024-10-11 01:30:16.000 1984-10-30 2024-10-11 01:30:16 +5417 5417 5418 541.7 1083.4 5417 1984-10-31 2024-10-11 01:30:17.000 1984-10-31 2024-10-11 01:30:17 +5418 5418 5419 541.8 1083.6000000000001 5418 1984-11-01 2024-10-11 01:30:18.000 1984-11-01 2024-10-11 01:30:18 +5419 5419 5420 541.9 1083.8 5419 1984-11-02 2024-10-11 01:30:19.000 1984-11-02 2024-10-11 01:30:19 +5420 5420 5421 542 1084 5420 1984-11-03 2024-10-11 01:30:20.000 1984-11-03 2024-10-11 01:30:20 +5421 5421 5422 542.1 1084.2 5421 1984-11-04 2024-10-11 01:30:21.000 1984-11-04 2024-10-11 01:30:21 +5422 5422 5423 542.2 1084.4 5422 1984-11-05 2024-10-11 01:30:22.000 1984-11-05 2024-10-11 01:30:22 +5423 5423 5424 542.3 1084.6000000000001 5423 1984-11-06 2024-10-11 01:30:23.000 1984-11-06 2024-10-11 01:30:23 +5424 5424 5425 542.4 1084.8 5424 1984-11-07 2024-10-11 01:30:24.000 1984-11-07 2024-10-11 01:30:24 +5425 5425 5426 542.5 1085 5425 1984-11-08 2024-10-11 01:30:25.000 1984-11-08 2024-10-11 01:30:25 +5426 5426 5427 542.6 1085.2 5426 1984-11-09 2024-10-11 01:30:26.000 1984-11-09 2024-10-11 01:30:26 +5427 5427 5428 542.7 1085.4 5427 1984-11-10 2024-10-11 01:30:27.000 1984-11-10 2024-10-11 01:30:27 +5428 5428 5429 542.8 1085.6000000000001 5428 1984-11-11 2024-10-11 01:30:28.000 1984-11-11 2024-10-11 01:30:28 +5429 5429 5430 542.9 1085.8 5429 1984-11-12 2024-10-11 01:30:29.000 1984-11-12 2024-10-11 01:30:29 +5430 5430 5431 543 1086 5430 1984-11-13 2024-10-11 01:30:30.000 1984-11-13 2024-10-11 01:30:30 +5431 5431 5432 543.1 1086.2 5431 1984-11-14 2024-10-11 01:30:31.000 1984-11-14 2024-10-11 01:30:31 +5432 5432 5433 543.2 1086.4 5432 1984-11-15 2024-10-11 01:30:32.000 1984-11-15 2024-10-11 01:30:32 +5433 5433 5434 543.3 1086.6000000000001 5433 1984-11-16 2024-10-11 01:30:33.000 1984-11-16 2024-10-11 01:30:33 +5434 5434 5435 543.4 1086.8 5434 1984-11-17 2024-10-11 01:30:34.000 1984-11-17 2024-10-11 01:30:34 +5435 5435 5436 543.5 1087 5435 1984-11-18 2024-10-11 01:30:35.000 1984-11-18 2024-10-11 01:30:35 +5436 5436 5437 543.6 1087.2 5436 1984-11-19 2024-10-11 01:30:36.000 1984-11-19 2024-10-11 01:30:36 +5437 5437 5438 543.7 1087.4 5437 1984-11-20 2024-10-11 01:30:37.000 1984-11-20 2024-10-11 01:30:37 +5438 5438 5439 543.8 1087.6000000000001 5438 1984-11-21 2024-10-11 01:30:38.000 1984-11-21 2024-10-11 01:30:38 +5439 5439 5440 543.9 1087.8 5439 1984-11-22 2024-10-11 01:30:39.000 1984-11-22 2024-10-11 01:30:39 +5440 5440 5441 544 1088 5440 1984-11-23 2024-10-11 01:30:40.000 1984-11-23 2024-10-11 01:30:40 +5441 5441 5442 544.1 1088.2 5441 1984-11-24 2024-10-11 01:30:41.000 1984-11-24 2024-10-11 01:30:41 +5442 5442 5443 544.2 1088.4 5442 1984-11-25 2024-10-11 01:30:42.000 1984-11-25 2024-10-11 01:30:42 +5443 5443 5444 544.3 1088.6000000000001 5443 1984-11-26 2024-10-11 01:30:43.000 1984-11-26 2024-10-11 01:30:43 +5444 5444 5445 544.4 1088.8 5444 1984-11-27 2024-10-11 01:30:44.000 1984-11-27 2024-10-11 01:30:44 +5445 5445 5446 544.5 1089 5445 1984-11-28 2024-10-11 01:30:45.000 1984-11-28 2024-10-11 01:30:45 +5446 5446 5447 544.6 1089.2 5446 1984-11-29 2024-10-11 01:30:46.000 1984-11-29 2024-10-11 01:30:46 +5447 5447 5448 544.7 1089.4 5447 1984-11-30 2024-10-11 01:30:47.000 1984-11-30 2024-10-11 01:30:47 +5448 5448 5449 544.8 1089.6000000000001 5448 1984-12-01 2024-10-11 01:30:48.000 1984-12-01 2024-10-11 01:30:48 +5449 5449 5450 544.9 1089.8 5449 1984-12-02 2024-10-11 01:30:49.000 1984-12-02 2024-10-11 01:30:49 +5450 5450 5451 545 1090 5450 1984-12-03 2024-10-11 01:30:50.000 1984-12-03 2024-10-11 01:30:50 +5451 5451 5452 545.1 1090.2 5451 1984-12-04 2024-10-11 01:30:51.000 1984-12-04 2024-10-11 01:30:51 +5452 5452 5453 545.2 1090.4 5452 1984-12-05 2024-10-11 01:30:52.000 1984-12-05 2024-10-11 01:30:52 +5453 5453 5454 545.3 1090.6000000000001 5453 1984-12-06 2024-10-11 01:30:53.000 1984-12-06 2024-10-11 01:30:53 +5454 5454 5455 545.4 1090.8 5454 1984-12-07 2024-10-11 01:30:54.000 1984-12-07 2024-10-11 01:30:54 +5455 5455 5456 545.5 1091 5455 1984-12-08 2024-10-11 01:30:55.000 1984-12-08 2024-10-11 01:30:55 +5456 5456 5457 545.6 1091.2 5456 1984-12-09 2024-10-11 01:30:56.000 1984-12-09 2024-10-11 01:30:56 +5457 5457 5458 545.7 1091.4 5457 1984-12-10 2024-10-11 01:30:57.000 1984-12-10 2024-10-11 01:30:57 +5458 5458 5459 545.8 1091.6000000000001 5458 1984-12-11 2024-10-11 01:30:58.000 1984-12-11 2024-10-11 01:30:58 +5459 5459 5460 545.9 1091.8 5459 1984-12-12 2024-10-11 01:30:59.000 1984-12-12 2024-10-11 01:30:59 +5460 5460 5461 546 1092 5460 1984-12-13 2024-10-11 01:31:00.000 1984-12-13 2024-10-11 01:31:00 +5461 5461 5462 546.1 1092.2 5461 1984-12-14 2024-10-11 01:31:01.000 1984-12-14 2024-10-11 01:31:01 +5462 5462 5463 546.2 1092.4 5462 1984-12-15 2024-10-11 01:31:02.000 1984-12-15 2024-10-11 01:31:02 +5463 5463 5464 546.3 1092.6000000000001 5463 1984-12-16 2024-10-11 01:31:03.000 1984-12-16 2024-10-11 01:31:03 +5464 5464 5465 546.4 1092.8 5464 1984-12-17 2024-10-11 01:31:04.000 1984-12-17 2024-10-11 01:31:04 +5465 5465 5466 546.5 1093 5465 1984-12-18 2024-10-11 01:31:05.000 1984-12-18 2024-10-11 01:31:05 +5466 5466 5467 546.6 1093.2 5466 1984-12-19 2024-10-11 01:31:06.000 1984-12-19 2024-10-11 01:31:06 +5467 5467 5468 546.7 1093.4 5467 1984-12-20 2024-10-11 01:31:07.000 1984-12-20 2024-10-11 01:31:07 +5468 5468 5469 546.8 1093.6000000000001 5468 1984-12-21 2024-10-11 01:31:08.000 1984-12-21 2024-10-11 01:31:08 +5469 5469 5470 546.9 1093.8 5469 1984-12-22 2024-10-11 01:31:09.000 1984-12-22 2024-10-11 01:31:09 +5470 5470 5471 547 1094 5470 1984-12-23 2024-10-11 01:31:10.000 1984-12-23 2024-10-11 01:31:10 +5471 5471 5472 547.1 1094.2 5471 1984-12-24 2024-10-11 01:31:11.000 1984-12-24 2024-10-11 01:31:11 +5472 5472 5473 547.2 1094.4 5472 1984-12-25 2024-10-11 01:31:12.000 1984-12-25 2024-10-11 01:31:12 +5473 5473 5474 547.3 1094.6000000000001 5473 1984-12-26 2024-10-11 01:31:13.000 1984-12-26 2024-10-11 01:31:13 +5474 5474 5475 547.4 1094.8 5474 1984-12-27 2024-10-11 01:31:14.000 1984-12-27 2024-10-11 01:31:14 +5475 5475 5476 547.5 1095 5475 1984-12-28 2024-10-11 01:31:15.000 1984-12-28 2024-10-11 01:31:15 +5476 5476 5477 547.6 1095.2 5476 1984-12-29 2024-10-11 01:31:16.000 1984-12-29 2024-10-11 01:31:16 +5477 5477 5478 547.7 1095.4 5477 1984-12-30 2024-10-11 01:31:17.000 1984-12-30 2024-10-11 01:31:17 +5478 5478 5479 547.8 1095.6000000000001 5478 1984-12-31 2024-10-11 01:31:18.000 1984-12-31 2024-10-11 01:31:18 +5479 5479 5480 547.9 1095.8 5479 1985-01-01 2024-10-11 01:31:19.000 1985-01-01 2024-10-11 01:31:19 +5480 5480 5481 548 1096 5480 1985-01-02 2024-10-11 01:31:20.000 1985-01-02 2024-10-11 01:31:20 +5481 5481 5482 548.1 1096.2 5481 1985-01-03 2024-10-11 01:31:21.000 1985-01-03 2024-10-11 01:31:21 +5482 5482 5483 548.2 1096.4 5482 1985-01-04 2024-10-11 01:31:22.000 1985-01-04 2024-10-11 01:31:22 +5483 5483 5484 548.3 1096.6000000000001 5483 1985-01-05 2024-10-11 01:31:23.000 1985-01-05 2024-10-11 01:31:23 +5484 5484 5485 548.4 1096.8 5484 1985-01-06 2024-10-11 01:31:24.000 1985-01-06 2024-10-11 01:31:24 +5485 5485 5486 548.5 1097 5485 1985-01-07 2024-10-11 01:31:25.000 1985-01-07 2024-10-11 01:31:25 +5486 5486 5487 548.6 1097.2 5486 1985-01-08 2024-10-11 01:31:26.000 1985-01-08 2024-10-11 01:31:26 +5487 5487 5488 548.7 1097.4 5487 1985-01-09 2024-10-11 01:31:27.000 1985-01-09 2024-10-11 01:31:27 +5488 5488 5489 548.8 1097.6000000000001 5488 1985-01-10 2024-10-11 01:31:28.000 1985-01-10 2024-10-11 01:31:28 +5489 5489 5490 548.9 1097.8 5489 1985-01-11 2024-10-11 01:31:29.000 1985-01-11 2024-10-11 01:31:29 +5490 5490 5491 549 1098 5490 1985-01-12 2024-10-11 01:31:30.000 1985-01-12 2024-10-11 01:31:30 +5491 5491 5492 549.1 1098.2 5491 1985-01-13 2024-10-11 01:31:31.000 1985-01-13 2024-10-11 01:31:31 +5492 5492 5493 549.2 1098.4 5492 1985-01-14 2024-10-11 01:31:32.000 1985-01-14 2024-10-11 01:31:32 +5493 5493 5494 549.3 1098.6000000000001 5493 1985-01-15 2024-10-11 01:31:33.000 1985-01-15 2024-10-11 01:31:33 +5494 5494 5495 549.4 1098.8 5494 1985-01-16 2024-10-11 01:31:34.000 1985-01-16 2024-10-11 01:31:34 +5495 5495 5496 549.5 1099 5495 1985-01-17 2024-10-11 01:31:35.000 1985-01-17 2024-10-11 01:31:35 +5496 5496 5497 549.6 1099.2 5496 1985-01-18 2024-10-11 01:31:36.000 1985-01-18 2024-10-11 01:31:36 +5497 5497 5498 549.7 1099.4 5497 1985-01-19 2024-10-11 01:31:37.000 1985-01-19 2024-10-11 01:31:37 +5498 5498 5499 549.8 1099.6000000000001 5498 1985-01-20 2024-10-11 01:31:38.000 1985-01-20 2024-10-11 01:31:38 +5499 5499 5500 549.9 1099.8 5499 1985-01-21 2024-10-11 01:31:39.000 1985-01-21 2024-10-11 01:31:39 +5500 5500 5501 550 1100 5500 1985-01-22 2024-10-11 01:31:40.000 1985-01-22 2024-10-11 01:31:40 +5501 5501 5502 550.1 1100.2 5501 1985-01-23 2024-10-11 01:31:41.000 1985-01-23 2024-10-11 01:31:41 +5502 5502 5503 550.2 1100.4 5502 1985-01-24 2024-10-11 01:31:42.000 1985-01-24 2024-10-11 01:31:42 +5503 5503 5504 550.3 1100.6000000000001 5503 1985-01-25 2024-10-11 01:31:43.000 1985-01-25 2024-10-11 01:31:43 +5504 5504 5505 550.4 1100.8 5504 1985-01-26 2024-10-11 01:31:44.000 1985-01-26 2024-10-11 01:31:44 +5505 5505 5506 550.5 1101 5505 1985-01-27 2024-10-11 01:31:45.000 1985-01-27 2024-10-11 01:31:45 +5506 5506 5507 550.6 1101.2 5506 1985-01-28 2024-10-11 01:31:46.000 1985-01-28 2024-10-11 01:31:46 +5507 5507 5508 550.7 1101.4 5507 1985-01-29 2024-10-11 01:31:47.000 1985-01-29 2024-10-11 01:31:47 +5508 5508 5509 550.8 1101.6000000000001 5508 1985-01-30 2024-10-11 01:31:48.000 1985-01-30 2024-10-11 01:31:48 +5509 5509 5510 550.9 1101.8 5509 1985-01-31 2024-10-11 01:31:49.000 1985-01-31 2024-10-11 01:31:49 +5510 5510 5511 551 1102 5510 1985-02-01 2024-10-11 01:31:50.000 1985-02-01 2024-10-11 01:31:50 +5511 5511 5512 551.1 1102.2 5511 1985-02-02 2024-10-11 01:31:51.000 1985-02-02 2024-10-11 01:31:51 +5512 5512 5513 551.2 1102.4 5512 1985-02-03 2024-10-11 01:31:52.000 1985-02-03 2024-10-11 01:31:52 +5513 5513 5514 551.3 1102.6000000000001 5513 1985-02-04 2024-10-11 01:31:53.000 1985-02-04 2024-10-11 01:31:53 +5514 5514 5515 551.4 1102.8 5514 1985-02-05 2024-10-11 01:31:54.000 1985-02-05 2024-10-11 01:31:54 +5515 5515 5516 551.5 1103 5515 1985-02-06 2024-10-11 01:31:55.000 1985-02-06 2024-10-11 01:31:55 +5516 5516 5517 551.6 1103.2 5516 1985-02-07 2024-10-11 01:31:56.000 1985-02-07 2024-10-11 01:31:56 +5517 5517 5518 551.7 1103.4 5517 1985-02-08 2024-10-11 01:31:57.000 1985-02-08 2024-10-11 01:31:57 +5518 5518 5519 551.8 1103.6000000000001 5518 1985-02-09 2024-10-11 01:31:58.000 1985-02-09 2024-10-11 01:31:58 +5519 5519 5520 551.9 1103.8 5519 1985-02-10 2024-10-11 01:31:59.000 1985-02-10 2024-10-11 01:31:59 +5520 5520 5521 552 1104 5520 1985-02-11 2024-10-11 01:32:00.000 1985-02-11 2024-10-11 01:32:00 +5521 5521 5522 552.1 1104.2 5521 1985-02-12 2024-10-11 01:32:01.000 1985-02-12 2024-10-11 01:32:01 +5522 5522 5523 552.2 1104.4 5522 1985-02-13 2024-10-11 01:32:02.000 1985-02-13 2024-10-11 01:32:02 +5523 5523 5524 552.3 1104.6000000000001 5523 1985-02-14 2024-10-11 01:32:03.000 1985-02-14 2024-10-11 01:32:03 +5524 5524 5525 552.4 1104.8 5524 1985-02-15 2024-10-11 01:32:04.000 1985-02-15 2024-10-11 01:32:04 +5525 5525 5526 552.5 1105 5525 1985-02-16 2024-10-11 01:32:05.000 1985-02-16 2024-10-11 01:32:05 +5526 5526 5527 552.6 1105.2 5526 1985-02-17 2024-10-11 01:32:06.000 1985-02-17 2024-10-11 01:32:06 +5527 5527 5528 552.7 1105.4 5527 1985-02-18 2024-10-11 01:32:07.000 1985-02-18 2024-10-11 01:32:07 +5528 5528 5529 552.8 1105.6000000000001 5528 1985-02-19 2024-10-11 01:32:08.000 1985-02-19 2024-10-11 01:32:08 +5529 5529 5530 552.9 1105.8 5529 1985-02-20 2024-10-11 01:32:09.000 1985-02-20 2024-10-11 01:32:09 +5530 5530 5531 553 1106 5530 1985-02-21 2024-10-11 01:32:10.000 1985-02-21 2024-10-11 01:32:10 +5531 5531 5532 553.1 1106.2 5531 1985-02-22 2024-10-11 01:32:11.000 1985-02-22 2024-10-11 01:32:11 +5532 5532 5533 553.2 1106.4 5532 1985-02-23 2024-10-11 01:32:12.000 1985-02-23 2024-10-11 01:32:12 +5533 5533 5534 553.3 1106.6000000000001 5533 1985-02-24 2024-10-11 01:32:13.000 1985-02-24 2024-10-11 01:32:13 +5534 5534 5535 553.4 1106.8 5534 1985-02-25 2024-10-11 01:32:14.000 1985-02-25 2024-10-11 01:32:14 +5535 5535 5536 553.5 1107 5535 1985-02-26 2024-10-11 01:32:15.000 1985-02-26 2024-10-11 01:32:15 +5536 5536 5537 553.6 1107.2 5536 1985-02-27 2024-10-11 01:32:16.000 1985-02-27 2024-10-11 01:32:16 +5537 5537 5538 553.7 1107.4 5537 1985-02-28 2024-10-11 01:32:17.000 1985-02-28 2024-10-11 01:32:17 +5538 5538 5539 553.8 1107.6000000000001 5538 1985-03-01 2024-10-11 01:32:18.000 1985-03-01 2024-10-11 01:32:18 +5539 5539 5540 553.9 1107.8 5539 1985-03-02 2024-10-11 01:32:19.000 1985-03-02 2024-10-11 01:32:19 +5540 5540 5541 554 1108 5540 1985-03-03 2024-10-11 01:32:20.000 1985-03-03 2024-10-11 01:32:20 +5541 5541 5542 554.1 1108.2 5541 1985-03-04 2024-10-11 01:32:21.000 1985-03-04 2024-10-11 01:32:21 +5542 5542 5543 554.2 1108.4 5542 1985-03-05 2024-10-11 01:32:22.000 1985-03-05 2024-10-11 01:32:22 +5543 5543 5544 554.3 1108.6000000000001 5543 1985-03-06 2024-10-11 01:32:23.000 1985-03-06 2024-10-11 01:32:23 +5544 5544 5545 554.4 1108.8 5544 1985-03-07 2024-10-11 01:32:24.000 1985-03-07 2024-10-11 01:32:24 +5545 5545 5546 554.5 1109 5545 1985-03-08 2024-10-11 01:32:25.000 1985-03-08 2024-10-11 01:32:25 +5546 5546 5547 554.6 1109.2 5546 1985-03-09 2024-10-11 01:32:26.000 1985-03-09 2024-10-11 01:32:26 +5547 5547 5548 554.7 1109.4 5547 1985-03-10 2024-10-11 01:32:27.000 1985-03-10 2024-10-11 01:32:27 +5548 5548 5549 554.8 1109.6000000000001 5548 1985-03-11 2024-10-11 01:32:28.000 1985-03-11 2024-10-11 01:32:28 +5549 5549 5550 554.9 1109.8 5549 1985-03-12 2024-10-11 01:32:29.000 1985-03-12 2024-10-11 01:32:29 +5550 5550 5551 555 1110 5550 1985-03-13 2024-10-11 01:32:30.000 1985-03-13 2024-10-11 01:32:30 +5551 5551 5552 555.1 1110.2 5551 1985-03-14 2024-10-11 01:32:31.000 1985-03-14 2024-10-11 01:32:31 +5552 5552 5553 555.2 1110.4 5552 1985-03-15 2024-10-11 01:32:32.000 1985-03-15 2024-10-11 01:32:32 +5553 5553 5554 555.3 1110.6000000000001 5553 1985-03-16 2024-10-11 01:32:33.000 1985-03-16 2024-10-11 01:32:33 +5554 5554 5555 555.4 1110.8 5554 1985-03-17 2024-10-11 01:32:34.000 1985-03-17 2024-10-11 01:32:34 +5555 5555 5556 555.5 1111 5555 1985-03-18 2024-10-11 01:32:35.000 1985-03-18 2024-10-11 01:32:35 +5556 5556 5557 555.6 1111.2 5556 1985-03-19 2024-10-11 01:32:36.000 1985-03-19 2024-10-11 01:32:36 +5557 5557 5558 555.7 1111.4 5557 1985-03-20 2024-10-11 01:32:37.000 1985-03-20 2024-10-11 01:32:37 +5558 5558 5559 555.8 1111.6000000000001 5558 1985-03-21 2024-10-11 01:32:38.000 1985-03-21 2024-10-11 01:32:38 +5559 5559 5560 555.9 1111.8 5559 1985-03-22 2024-10-11 01:32:39.000 1985-03-22 2024-10-11 01:32:39 +5560 5560 5561 556 1112 5560 1985-03-23 2024-10-11 01:32:40.000 1985-03-23 2024-10-11 01:32:40 +5561 5561 5562 556.1 1112.2 5561 1985-03-24 2024-10-11 01:32:41.000 1985-03-24 2024-10-11 01:32:41 +5562 5562 5563 556.2 1112.4 5562 1985-03-25 2024-10-11 01:32:42.000 1985-03-25 2024-10-11 01:32:42 +5563 5563 5564 556.3 1112.6000000000001 5563 1985-03-26 2024-10-11 01:32:43.000 1985-03-26 2024-10-11 01:32:43 +5564 5564 5565 556.4 1112.8 5564 1985-03-27 2024-10-11 01:32:44.000 1985-03-27 2024-10-11 01:32:44 +5565 5565 5566 556.5 1113 5565 1985-03-28 2024-10-11 01:32:45.000 1985-03-28 2024-10-11 01:32:45 +5566 5566 5567 556.6 1113.2 5566 1985-03-29 2024-10-11 01:32:46.000 1985-03-29 2024-10-11 01:32:46 +5567 5567 5568 556.7 1113.4 5567 1985-03-30 2024-10-11 01:32:47.000 1985-03-30 2024-10-11 01:32:47 +5568 5568 5569 556.8 1113.6000000000001 5568 1985-03-31 2024-10-11 01:32:48.000 1985-03-31 2024-10-11 01:32:48 +5569 5569 5570 556.9 1113.8 5569 1985-04-01 2024-10-11 01:32:49.000 1985-04-01 2024-10-11 01:32:49 +5570 5570 5571 557 1114 5570 1985-04-02 2024-10-11 01:32:50.000 1985-04-02 2024-10-11 01:32:50 +5571 5571 5572 557.1 1114.2 5571 1985-04-03 2024-10-11 01:32:51.000 1985-04-03 2024-10-11 01:32:51 +5572 5572 5573 557.2 1114.4 5572 1985-04-04 2024-10-11 01:32:52.000 1985-04-04 2024-10-11 01:32:52 +5573 5573 5574 557.3 1114.6000000000001 5573 1985-04-05 2024-10-11 01:32:53.000 1985-04-05 2024-10-11 01:32:53 +5574 5574 5575 557.4 1114.8 5574 1985-04-06 2024-10-11 01:32:54.000 1985-04-06 2024-10-11 01:32:54 +5575 5575 5576 557.5 1115 5575 1985-04-07 2024-10-11 01:32:55.000 1985-04-07 2024-10-11 01:32:55 +5576 5576 5577 557.6 1115.2 5576 1985-04-08 2024-10-11 01:32:56.000 1985-04-08 2024-10-11 01:32:56 +5577 5577 5578 557.7 1115.4 5577 1985-04-09 2024-10-11 01:32:57.000 1985-04-09 2024-10-11 01:32:57 +5578 5578 5579 557.8 1115.6000000000001 5578 1985-04-10 2024-10-11 01:32:58.000 1985-04-10 2024-10-11 01:32:58 +5579 5579 5580 557.9 1115.8 5579 1985-04-11 2024-10-11 01:32:59.000 1985-04-11 2024-10-11 01:32:59 +5580 5580 5581 558 1116 5580 1985-04-12 2024-10-11 01:33:00.000 1985-04-12 2024-10-11 01:33:00 +5581 5581 5582 558.1 1116.2 5581 1985-04-13 2024-10-11 01:33:01.000 1985-04-13 2024-10-11 01:33:01 +5582 5582 5583 558.2 1116.4 5582 1985-04-14 2024-10-11 01:33:02.000 1985-04-14 2024-10-11 01:33:02 +5583 5583 5584 558.3 1116.6000000000001 5583 1985-04-15 2024-10-11 01:33:03.000 1985-04-15 2024-10-11 01:33:03 +5584 5584 5585 558.4 1116.8 5584 1985-04-16 2024-10-11 01:33:04.000 1985-04-16 2024-10-11 01:33:04 +5585 5585 5586 558.5 1117 5585 1985-04-17 2024-10-11 01:33:05.000 1985-04-17 2024-10-11 01:33:05 +5586 5586 5587 558.6 1117.2 5586 1985-04-18 2024-10-11 01:33:06.000 1985-04-18 2024-10-11 01:33:06 +5587 5587 5588 558.7 1117.4 5587 1985-04-19 2024-10-11 01:33:07.000 1985-04-19 2024-10-11 01:33:07 +5588 5588 5589 558.8 1117.6000000000001 5588 1985-04-20 2024-10-11 01:33:08.000 1985-04-20 2024-10-11 01:33:08 +5589 5589 5590 558.9 1117.8 5589 1985-04-21 2024-10-11 01:33:09.000 1985-04-21 2024-10-11 01:33:09 +5590 5590 5591 559 1118 5590 1985-04-22 2024-10-11 01:33:10.000 1985-04-22 2024-10-11 01:33:10 +5591 5591 5592 559.1 1118.2 5591 1985-04-23 2024-10-11 01:33:11.000 1985-04-23 2024-10-11 01:33:11 +5592 5592 5593 559.2 1118.4 5592 1985-04-24 2024-10-11 01:33:12.000 1985-04-24 2024-10-11 01:33:12 +5593 5593 5594 559.3 1118.6000000000001 5593 1985-04-25 2024-10-11 01:33:13.000 1985-04-25 2024-10-11 01:33:13 +5594 5594 5595 559.4 1118.8 5594 1985-04-26 2024-10-11 01:33:14.000 1985-04-26 2024-10-11 01:33:14 +5595 5595 5596 559.5 1119 5595 1985-04-27 2024-10-11 01:33:15.000 1985-04-27 2024-10-11 01:33:15 +5596 5596 5597 559.6 1119.2 5596 1985-04-28 2024-10-11 01:33:16.000 1985-04-28 2024-10-11 01:33:16 +5597 5597 5598 559.7 1119.4 5597 1985-04-29 2024-10-11 01:33:17.000 1985-04-29 2024-10-11 01:33:17 +5598 5598 5599 559.8 1119.6000000000001 5598 1985-04-30 2024-10-11 01:33:18.000 1985-04-30 2024-10-11 01:33:18 +5599 5599 5600 559.9 1119.8 5599 1985-05-01 2024-10-11 01:33:19.000 1985-05-01 2024-10-11 01:33:19 +5600 5600 5601 560 1120 5600 1985-05-02 2024-10-11 01:33:20.000 1985-05-02 2024-10-11 01:33:20 +5601 5601 5602 560.1 1120.2 5601 1985-05-03 2024-10-11 01:33:21.000 1985-05-03 2024-10-11 01:33:21 +5602 5602 5603 560.2 1120.4 5602 1985-05-04 2024-10-11 01:33:22.000 1985-05-04 2024-10-11 01:33:22 +5603 5603 5604 560.3 1120.6000000000001 5603 1985-05-05 2024-10-11 01:33:23.000 1985-05-05 2024-10-11 01:33:23 +5604 5604 5605 560.4 1120.8 5604 1985-05-06 2024-10-11 01:33:24.000 1985-05-06 2024-10-11 01:33:24 +5605 5605 5606 560.5 1121 5605 1985-05-07 2024-10-11 01:33:25.000 1985-05-07 2024-10-11 01:33:25 +5606 5606 5607 560.6 1121.2 5606 1985-05-08 2024-10-11 01:33:26.000 1985-05-08 2024-10-11 01:33:26 +5607 5607 5608 560.7 1121.4 5607 1985-05-09 2024-10-11 01:33:27.000 1985-05-09 2024-10-11 01:33:27 +5608 5608 5609 560.8 1121.6000000000001 5608 1985-05-10 2024-10-11 01:33:28.000 1985-05-10 2024-10-11 01:33:28 +5609 5609 5610 560.9 1121.8 5609 1985-05-11 2024-10-11 01:33:29.000 1985-05-11 2024-10-11 01:33:29 +5610 5610 5611 561 1122 5610 1985-05-12 2024-10-11 01:33:30.000 1985-05-12 2024-10-11 01:33:30 +5611 5611 5612 561.1 1122.2 5611 1985-05-13 2024-10-11 01:33:31.000 1985-05-13 2024-10-11 01:33:31 +5612 5612 5613 561.2 1122.4 5612 1985-05-14 2024-10-11 01:33:32.000 1985-05-14 2024-10-11 01:33:32 +5613 5613 5614 561.3 1122.6000000000001 5613 1985-05-15 2024-10-11 01:33:33.000 1985-05-15 2024-10-11 01:33:33 +5614 5614 5615 561.4 1122.8 5614 1985-05-16 2024-10-11 01:33:34.000 1985-05-16 2024-10-11 01:33:34 +5615 5615 5616 561.5 1123 5615 1985-05-17 2024-10-11 01:33:35.000 1985-05-17 2024-10-11 01:33:35 +5616 5616 5617 561.6 1123.2 5616 1985-05-18 2024-10-11 01:33:36.000 1985-05-18 2024-10-11 01:33:36 +5617 5617 5618 561.7 1123.4 5617 1985-05-19 2024-10-11 01:33:37.000 1985-05-19 2024-10-11 01:33:37 +5618 5618 5619 561.8 1123.6000000000001 5618 1985-05-20 2024-10-11 01:33:38.000 1985-05-20 2024-10-11 01:33:38 +5619 5619 5620 561.9 1123.8 5619 1985-05-21 2024-10-11 01:33:39.000 1985-05-21 2024-10-11 01:33:39 +5620 5620 5621 562 1124 5620 1985-05-22 2024-10-11 01:33:40.000 1985-05-22 2024-10-11 01:33:40 +5621 5621 5622 562.1 1124.2 5621 1985-05-23 2024-10-11 01:33:41.000 1985-05-23 2024-10-11 01:33:41 +5622 5622 5623 562.2 1124.4 5622 1985-05-24 2024-10-11 01:33:42.000 1985-05-24 2024-10-11 01:33:42 +5623 5623 5624 562.3 1124.6000000000001 5623 1985-05-25 2024-10-11 01:33:43.000 1985-05-25 2024-10-11 01:33:43 +5624 5624 5625 562.4 1124.8 5624 1985-05-26 2024-10-11 01:33:44.000 1985-05-26 2024-10-11 01:33:44 +5625 5625 5626 562.5 1125 5625 1985-05-27 2024-10-11 01:33:45.000 1985-05-27 2024-10-11 01:33:45 +5626 5626 5627 562.6 1125.2 5626 1985-05-28 2024-10-11 01:33:46.000 1985-05-28 2024-10-11 01:33:46 +5627 5627 5628 562.7 1125.4 5627 1985-05-29 2024-10-11 01:33:47.000 1985-05-29 2024-10-11 01:33:47 +5628 5628 5629 562.8 1125.6000000000001 5628 1985-05-30 2024-10-11 01:33:48.000 1985-05-30 2024-10-11 01:33:48 +5629 5629 5630 562.9 1125.8 5629 1985-05-31 2024-10-11 01:33:49.000 1985-05-31 2024-10-11 01:33:49 +5630 5630 5631 563 1126 5630 1985-06-01 2024-10-11 01:33:50.000 1985-06-01 2024-10-11 01:33:50 +5631 5631 5632 563.1 1126.2 5631 1985-06-02 2024-10-11 01:33:51.000 1985-06-02 2024-10-11 01:33:51 +5632 5632 5633 563.2 1126.4 5632 1985-06-03 2024-10-11 01:33:52.000 1985-06-03 2024-10-11 01:33:52 +5633 5633 5634 563.3 1126.6000000000001 5633 1985-06-04 2024-10-11 01:33:53.000 1985-06-04 2024-10-11 01:33:53 +5634 5634 5635 563.4 1126.8 5634 1985-06-05 2024-10-11 01:33:54.000 1985-06-05 2024-10-11 01:33:54 +5635 5635 5636 563.5 1127 5635 1985-06-06 2024-10-11 01:33:55.000 1985-06-06 2024-10-11 01:33:55 +5636 5636 5637 563.6 1127.2 5636 1985-06-07 2024-10-11 01:33:56.000 1985-06-07 2024-10-11 01:33:56 +5637 5637 5638 563.7 1127.4 5637 1985-06-08 2024-10-11 01:33:57.000 1985-06-08 2024-10-11 01:33:57 +5638 5638 5639 563.8 1127.6000000000001 5638 1985-06-09 2024-10-11 01:33:58.000 1985-06-09 2024-10-11 01:33:58 +5639 5639 5640 563.9 1127.8 5639 1985-06-10 2024-10-11 01:33:59.000 1985-06-10 2024-10-11 01:33:59 +5640 5640 5641 564 1128 5640 1985-06-11 2024-10-11 01:34:00.000 1985-06-11 2024-10-11 01:34:00 +5641 5641 5642 564.1 1128.2 5641 1985-06-12 2024-10-11 01:34:01.000 1985-06-12 2024-10-11 01:34:01 +5642 5642 5643 564.2 1128.4 5642 1985-06-13 2024-10-11 01:34:02.000 1985-06-13 2024-10-11 01:34:02 +5643 5643 5644 564.3 1128.6000000000001 5643 1985-06-14 2024-10-11 01:34:03.000 1985-06-14 2024-10-11 01:34:03 +5644 5644 5645 564.4 1128.8 5644 1985-06-15 2024-10-11 01:34:04.000 1985-06-15 2024-10-11 01:34:04 +5645 5645 5646 564.5 1129 5645 1985-06-16 2024-10-11 01:34:05.000 1985-06-16 2024-10-11 01:34:05 +5646 5646 5647 564.6 1129.2 5646 1985-06-17 2024-10-11 01:34:06.000 1985-06-17 2024-10-11 01:34:06 +5647 5647 5648 564.7 1129.4 5647 1985-06-18 2024-10-11 01:34:07.000 1985-06-18 2024-10-11 01:34:07 +5648 5648 5649 564.8 1129.6000000000001 5648 1985-06-19 2024-10-11 01:34:08.000 1985-06-19 2024-10-11 01:34:08 +5649 5649 5650 564.9 1129.8 5649 1985-06-20 2024-10-11 01:34:09.000 1985-06-20 2024-10-11 01:34:09 +5650 5650 5651 565 1130 5650 1985-06-21 2024-10-11 01:34:10.000 1985-06-21 2024-10-11 01:34:10 +5651 5651 5652 565.1 1130.2 5651 1985-06-22 2024-10-11 01:34:11.000 1985-06-22 2024-10-11 01:34:11 +5652 5652 5653 565.2 1130.4 5652 1985-06-23 2024-10-11 01:34:12.000 1985-06-23 2024-10-11 01:34:12 +5653 5653 5654 565.3 1130.6000000000001 5653 1985-06-24 2024-10-11 01:34:13.000 1985-06-24 2024-10-11 01:34:13 +5654 5654 5655 565.4 1130.8 5654 1985-06-25 2024-10-11 01:34:14.000 1985-06-25 2024-10-11 01:34:14 +5655 5655 5656 565.5 1131 5655 1985-06-26 2024-10-11 01:34:15.000 1985-06-26 2024-10-11 01:34:15 +5656 5656 5657 565.6 1131.2 5656 1985-06-27 2024-10-11 01:34:16.000 1985-06-27 2024-10-11 01:34:16 +5657 5657 5658 565.7 1131.4 5657 1985-06-28 2024-10-11 01:34:17.000 1985-06-28 2024-10-11 01:34:17 +5658 5658 5659 565.8 1131.6000000000001 5658 1985-06-29 2024-10-11 01:34:18.000 1985-06-29 2024-10-11 01:34:18 +5659 5659 5660 565.9 1131.8 5659 1985-06-30 2024-10-11 01:34:19.000 1985-06-30 2024-10-11 01:34:19 +5660 5660 5661 566 1132 5660 1985-07-01 2024-10-11 01:34:20.000 1985-07-01 2024-10-11 01:34:20 +5661 5661 5662 566.1 1132.2 5661 1985-07-02 2024-10-11 01:34:21.000 1985-07-02 2024-10-11 01:34:21 +5662 5662 5663 566.2 1132.4 5662 1985-07-03 2024-10-11 01:34:22.000 1985-07-03 2024-10-11 01:34:22 +5663 5663 5664 566.3 1132.6000000000001 5663 1985-07-04 2024-10-11 01:34:23.000 1985-07-04 2024-10-11 01:34:23 +5664 5664 5665 566.4 1132.8 5664 1985-07-05 2024-10-11 01:34:24.000 1985-07-05 2024-10-11 01:34:24 +5665 5665 5666 566.5 1133 5665 1985-07-06 2024-10-11 01:34:25.000 1985-07-06 2024-10-11 01:34:25 +5666 5666 5667 566.6 1133.2 5666 1985-07-07 2024-10-11 01:34:26.000 1985-07-07 2024-10-11 01:34:26 +5667 5667 5668 566.7 1133.4 5667 1985-07-08 2024-10-11 01:34:27.000 1985-07-08 2024-10-11 01:34:27 +5668 5668 5669 566.8 1133.6000000000001 5668 1985-07-09 2024-10-11 01:34:28.000 1985-07-09 2024-10-11 01:34:28 +5669 5669 5670 566.9 1133.8 5669 1985-07-10 2024-10-11 01:34:29.000 1985-07-10 2024-10-11 01:34:29 +5670 5670 5671 567 1134 5670 1985-07-11 2024-10-11 01:34:30.000 1985-07-11 2024-10-11 01:34:30 +5671 5671 5672 567.1 1134.2 5671 1985-07-12 2024-10-11 01:34:31.000 1985-07-12 2024-10-11 01:34:31 +5672 5672 5673 567.2 1134.4 5672 1985-07-13 2024-10-11 01:34:32.000 1985-07-13 2024-10-11 01:34:32 +5673 5673 5674 567.3 1134.6000000000001 5673 1985-07-14 2024-10-11 01:34:33.000 1985-07-14 2024-10-11 01:34:33 +5674 5674 5675 567.4 1134.8 5674 1985-07-15 2024-10-11 01:34:34.000 1985-07-15 2024-10-11 01:34:34 +5675 5675 5676 567.5 1135 5675 1985-07-16 2024-10-11 01:34:35.000 1985-07-16 2024-10-11 01:34:35 +5676 5676 5677 567.6 1135.2 5676 1985-07-17 2024-10-11 01:34:36.000 1985-07-17 2024-10-11 01:34:36 +5677 5677 5678 567.7 1135.4 5677 1985-07-18 2024-10-11 01:34:37.000 1985-07-18 2024-10-11 01:34:37 +5678 5678 5679 567.8 1135.6000000000001 5678 1985-07-19 2024-10-11 01:34:38.000 1985-07-19 2024-10-11 01:34:38 +5679 5679 5680 567.9 1135.8 5679 1985-07-20 2024-10-11 01:34:39.000 1985-07-20 2024-10-11 01:34:39 +5680 5680 5681 568 1136 5680 1985-07-21 2024-10-11 01:34:40.000 1985-07-21 2024-10-11 01:34:40 +5681 5681 5682 568.1 1136.2 5681 1985-07-22 2024-10-11 01:34:41.000 1985-07-22 2024-10-11 01:34:41 +5682 5682 5683 568.2 1136.4 5682 1985-07-23 2024-10-11 01:34:42.000 1985-07-23 2024-10-11 01:34:42 +5683 5683 5684 568.3 1136.6000000000001 5683 1985-07-24 2024-10-11 01:34:43.000 1985-07-24 2024-10-11 01:34:43 +5684 5684 5685 568.4 1136.8 5684 1985-07-25 2024-10-11 01:34:44.000 1985-07-25 2024-10-11 01:34:44 +5685 5685 5686 568.5 1137 5685 1985-07-26 2024-10-11 01:34:45.000 1985-07-26 2024-10-11 01:34:45 +5686 5686 5687 568.6 1137.2 5686 1985-07-27 2024-10-11 01:34:46.000 1985-07-27 2024-10-11 01:34:46 +5687 5687 5688 568.7 1137.4 5687 1985-07-28 2024-10-11 01:34:47.000 1985-07-28 2024-10-11 01:34:47 +5688 5688 5689 568.8 1137.6000000000001 5688 1985-07-29 2024-10-11 01:34:48.000 1985-07-29 2024-10-11 01:34:48 +5689 5689 5690 568.9 1137.8 5689 1985-07-30 2024-10-11 01:34:49.000 1985-07-30 2024-10-11 01:34:49 +5690 5690 5691 569 1138 5690 1985-07-31 2024-10-11 01:34:50.000 1985-07-31 2024-10-11 01:34:50 +5691 5691 5692 569.1 1138.2 5691 1985-08-01 2024-10-11 01:34:51.000 1985-08-01 2024-10-11 01:34:51 +5692 5692 5693 569.2 1138.4 5692 1985-08-02 2024-10-11 01:34:52.000 1985-08-02 2024-10-11 01:34:52 +5693 5693 5694 569.3 1138.6000000000001 5693 1985-08-03 2024-10-11 01:34:53.000 1985-08-03 2024-10-11 01:34:53 +5694 5694 5695 569.4 1138.8 5694 1985-08-04 2024-10-11 01:34:54.000 1985-08-04 2024-10-11 01:34:54 +5695 5695 5696 569.5 1139 5695 1985-08-05 2024-10-11 01:34:55.000 1985-08-05 2024-10-11 01:34:55 +5696 5696 5697 569.6 1139.2 5696 1985-08-06 2024-10-11 01:34:56.000 1985-08-06 2024-10-11 01:34:56 +5697 5697 5698 569.7 1139.4 5697 1985-08-07 2024-10-11 01:34:57.000 1985-08-07 2024-10-11 01:34:57 +5698 5698 5699 569.8 1139.6000000000001 5698 1985-08-08 2024-10-11 01:34:58.000 1985-08-08 2024-10-11 01:34:58 +5699 5699 5700 569.9 1139.8 5699 1985-08-09 2024-10-11 01:34:59.000 1985-08-09 2024-10-11 01:34:59 +5700 5700 5701 570 1140 5700 1985-08-10 2024-10-11 01:35:00.000 1985-08-10 2024-10-11 01:35:00 +5701 5701 5702 570.1 1140.2 5701 1985-08-11 2024-10-11 01:35:01.000 1985-08-11 2024-10-11 01:35:01 +5702 5702 5703 570.2 1140.4 5702 1985-08-12 2024-10-11 01:35:02.000 1985-08-12 2024-10-11 01:35:02 +5703 5703 5704 570.3 1140.6000000000001 5703 1985-08-13 2024-10-11 01:35:03.000 1985-08-13 2024-10-11 01:35:03 +5704 5704 5705 570.4 1140.8 5704 1985-08-14 2024-10-11 01:35:04.000 1985-08-14 2024-10-11 01:35:04 +5705 5705 5706 570.5 1141 5705 1985-08-15 2024-10-11 01:35:05.000 1985-08-15 2024-10-11 01:35:05 +5706 5706 5707 570.6 1141.2 5706 1985-08-16 2024-10-11 01:35:06.000 1985-08-16 2024-10-11 01:35:06 +5707 5707 5708 570.7 1141.4 5707 1985-08-17 2024-10-11 01:35:07.000 1985-08-17 2024-10-11 01:35:07 +5708 5708 5709 570.8 1141.6000000000001 5708 1985-08-18 2024-10-11 01:35:08.000 1985-08-18 2024-10-11 01:35:08 +5709 5709 5710 570.9 1141.8 5709 1985-08-19 2024-10-11 01:35:09.000 1985-08-19 2024-10-11 01:35:09 +5710 5710 5711 571 1142 5710 1985-08-20 2024-10-11 01:35:10.000 1985-08-20 2024-10-11 01:35:10 +5711 5711 5712 571.1 1142.2 5711 1985-08-21 2024-10-11 01:35:11.000 1985-08-21 2024-10-11 01:35:11 +5712 5712 5713 571.2 1142.4 5712 1985-08-22 2024-10-11 01:35:12.000 1985-08-22 2024-10-11 01:35:12 +5713 5713 5714 571.3 1142.6000000000001 5713 1985-08-23 2024-10-11 01:35:13.000 1985-08-23 2024-10-11 01:35:13 +5714 5714 5715 571.4 1142.8 5714 1985-08-24 2024-10-11 01:35:14.000 1985-08-24 2024-10-11 01:35:14 +5715 5715 5716 571.5 1143 5715 1985-08-25 2024-10-11 01:35:15.000 1985-08-25 2024-10-11 01:35:15 +5716 5716 5717 571.6 1143.2 5716 1985-08-26 2024-10-11 01:35:16.000 1985-08-26 2024-10-11 01:35:16 +5717 5717 5718 571.7 1143.4 5717 1985-08-27 2024-10-11 01:35:17.000 1985-08-27 2024-10-11 01:35:17 +5718 5718 5719 571.8 1143.6000000000001 5718 1985-08-28 2024-10-11 01:35:18.000 1985-08-28 2024-10-11 01:35:18 +5719 5719 5720 571.9 1143.8 5719 1985-08-29 2024-10-11 01:35:19.000 1985-08-29 2024-10-11 01:35:19 +5720 5720 5721 572 1144 5720 1985-08-30 2024-10-11 01:35:20.000 1985-08-30 2024-10-11 01:35:20 +5721 5721 5722 572.1 1144.2 5721 1985-08-31 2024-10-11 01:35:21.000 1985-08-31 2024-10-11 01:35:21 +5722 5722 5723 572.2 1144.4 5722 1985-09-01 2024-10-11 01:35:22.000 1985-09-01 2024-10-11 01:35:22 +5723 5723 5724 572.3 1144.6000000000001 5723 1985-09-02 2024-10-11 01:35:23.000 1985-09-02 2024-10-11 01:35:23 +5724 5724 5725 572.4 1144.8 5724 1985-09-03 2024-10-11 01:35:24.000 1985-09-03 2024-10-11 01:35:24 +5725 5725 5726 572.5 1145 5725 1985-09-04 2024-10-11 01:35:25.000 1985-09-04 2024-10-11 01:35:25 +5726 5726 5727 572.6 1145.2 5726 1985-09-05 2024-10-11 01:35:26.000 1985-09-05 2024-10-11 01:35:26 +5727 5727 5728 572.7 1145.4 5727 1985-09-06 2024-10-11 01:35:27.000 1985-09-06 2024-10-11 01:35:27 +5728 5728 5729 572.8 1145.6000000000001 5728 1985-09-07 2024-10-11 01:35:28.000 1985-09-07 2024-10-11 01:35:28 +5729 5729 5730 572.9 1145.8 5729 1985-09-08 2024-10-11 01:35:29.000 1985-09-08 2024-10-11 01:35:29 +5730 5730 5731 573 1146 5730 1985-09-09 2024-10-11 01:35:30.000 1985-09-09 2024-10-11 01:35:30 +5731 5731 5732 573.1 1146.2 5731 1985-09-10 2024-10-11 01:35:31.000 1985-09-10 2024-10-11 01:35:31 +5732 5732 5733 573.2 1146.4 5732 1985-09-11 2024-10-11 01:35:32.000 1985-09-11 2024-10-11 01:35:32 +5733 5733 5734 573.3 1146.6000000000001 5733 1985-09-12 2024-10-11 01:35:33.000 1985-09-12 2024-10-11 01:35:33 +5734 5734 5735 573.4 1146.8 5734 1985-09-13 2024-10-11 01:35:34.000 1985-09-13 2024-10-11 01:35:34 +5735 5735 5736 573.5 1147 5735 1985-09-14 2024-10-11 01:35:35.000 1985-09-14 2024-10-11 01:35:35 +5736 5736 5737 573.6 1147.2 5736 1985-09-15 2024-10-11 01:35:36.000 1985-09-15 2024-10-11 01:35:36 +5737 5737 5738 573.7 1147.4 5737 1985-09-16 2024-10-11 01:35:37.000 1985-09-16 2024-10-11 01:35:37 +5738 5738 5739 573.8 1147.6000000000001 5738 1985-09-17 2024-10-11 01:35:38.000 1985-09-17 2024-10-11 01:35:38 +5739 5739 5740 573.9 1147.8 5739 1985-09-18 2024-10-11 01:35:39.000 1985-09-18 2024-10-11 01:35:39 +5740 5740 5741 574 1148 5740 1985-09-19 2024-10-11 01:35:40.000 1985-09-19 2024-10-11 01:35:40 +5741 5741 5742 574.1 1148.2 5741 1985-09-20 2024-10-11 01:35:41.000 1985-09-20 2024-10-11 01:35:41 +5742 5742 5743 574.2 1148.4 5742 1985-09-21 2024-10-11 01:35:42.000 1985-09-21 2024-10-11 01:35:42 +5743 5743 5744 574.3 1148.6000000000001 5743 1985-09-22 2024-10-11 01:35:43.000 1985-09-22 2024-10-11 01:35:43 +5744 5744 5745 574.4 1148.8 5744 1985-09-23 2024-10-11 01:35:44.000 1985-09-23 2024-10-11 01:35:44 +5745 5745 5746 574.5 1149 5745 1985-09-24 2024-10-11 01:35:45.000 1985-09-24 2024-10-11 01:35:45 +5746 5746 5747 574.6 1149.2 5746 1985-09-25 2024-10-11 01:35:46.000 1985-09-25 2024-10-11 01:35:46 +5747 5747 5748 574.7 1149.4 5747 1985-09-26 2024-10-11 01:35:47.000 1985-09-26 2024-10-11 01:35:47 +5748 5748 5749 574.8 1149.6000000000001 5748 1985-09-27 2024-10-11 01:35:48.000 1985-09-27 2024-10-11 01:35:48 +5749 5749 5750 574.9 1149.8 5749 1985-09-28 2024-10-11 01:35:49.000 1985-09-28 2024-10-11 01:35:49 +5750 5750 5751 575 1150 5750 1985-09-29 2024-10-11 01:35:50.000 1985-09-29 2024-10-11 01:35:50 +5751 5751 5752 575.1 1150.2 5751 1985-09-30 2024-10-11 01:35:51.000 1985-09-30 2024-10-11 01:35:51 +5752 5752 5753 575.2 1150.4 5752 1985-10-01 2024-10-11 01:35:52.000 1985-10-01 2024-10-11 01:35:52 +5753 5753 5754 575.3 1150.6000000000001 5753 1985-10-02 2024-10-11 01:35:53.000 1985-10-02 2024-10-11 01:35:53 +5754 5754 5755 575.4 1150.8 5754 1985-10-03 2024-10-11 01:35:54.000 1985-10-03 2024-10-11 01:35:54 +5755 5755 5756 575.5 1151 5755 1985-10-04 2024-10-11 01:35:55.000 1985-10-04 2024-10-11 01:35:55 +5756 5756 5757 575.6 1151.2 5756 1985-10-05 2024-10-11 01:35:56.000 1985-10-05 2024-10-11 01:35:56 +5757 5757 5758 575.7 1151.4 5757 1985-10-06 2024-10-11 01:35:57.000 1985-10-06 2024-10-11 01:35:57 +5758 5758 5759 575.8 1151.6000000000001 5758 1985-10-07 2024-10-11 01:35:58.000 1985-10-07 2024-10-11 01:35:58 +5759 5759 5760 575.9 1151.8 5759 1985-10-08 2024-10-11 01:35:59.000 1985-10-08 2024-10-11 01:35:59 +5760 5760 5761 576 1152 5760 1985-10-09 2024-10-11 01:36:00.000 1985-10-09 2024-10-11 01:36:00 +5761 5761 5762 576.1 1152.2 5761 1985-10-10 2024-10-11 01:36:01.000 1985-10-10 2024-10-11 01:36:01 +5762 5762 5763 576.2 1152.4 5762 1985-10-11 2024-10-11 01:36:02.000 1985-10-11 2024-10-11 01:36:02 +5763 5763 5764 576.3 1152.6000000000001 5763 1985-10-12 2024-10-11 01:36:03.000 1985-10-12 2024-10-11 01:36:03 +5764 5764 5765 576.4 1152.8 5764 1985-10-13 2024-10-11 01:36:04.000 1985-10-13 2024-10-11 01:36:04 +5765 5765 5766 576.5 1153 5765 1985-10-14 2024-10-11 01:36:05.000 1985-10-14 2024-10-11 01:36:05 +5766 5766 5767 576.6 1153.2 5766 1985-10-15 2024-10-11 01:36:06.000 1985-10-15 2024-10-11 01:36:06 +5767 5767 5768 576.7 1153.4 5767 1985-10-16 2024-10-11 01:36:07.000 1985-10-16 2024-10-11 01:36:07 +5768 5768 5769 576.8 1153.6000000000001 5768 1985-10-17 2024-10-11 01:36:08.000 1985-10-17 2024-10-11 01:36:08 +5769 5769 5770 576.9 1153.8 5769 1985-10-18 2024-10-11 01:36:09.000 1985-10-18 2024-10-11 01:36:09 +5770 5770 5771 577 1154 5770 1985-10-19 2024-10-11 01:36:10.000 1985-10-19 2024-10-11 01:36:10 +5771 5771 5772 577.1 1154.2 5771 1985-10-20 2024-10-11 01:36:11.000 1985-10-20 2024-10-11 01:36:11 +5772 5772 5773 577.2 1154.4 5772 1985-10-21 2024-10-11 01:36:12.000 1985-10-21 2024-10-11 01:36:12 +5773 5773 5774 577.3 1154.6000000000001 5773 1985-10-22 2024-10-11 01:36:13.000 1985-10-22 2024-10-11 01:36:13 +5774 5774 5775 577.4 1154.8 5774 1985-10-23 2024-10-11 01:36:14.000 1985-10-23 2024-10-11 01:36:14 +5775 5775 5776 577.5 1155 5775 1985-10-24 2024-10-11 01:36:15.000 1985-10-24 2024-10-11 01:36:15 +5776 5776 5777 577.6 1155.2 5776 1985-10-25 2024-10-11 01:36:16.000 1985-10-25 2024-10-11 01:36:16 +5777 5777 5778 577.7 1155.4 5777 1985-10-26 2024-10-11 01:36:17.000 1985-10-26 2024-10-11 01:36:17 +5778 5778 5779 577.8 1155.6000000000001 5778 1985-10-27 2024-10-11 01:36:18.000 1985-10-27 2024-10-11 01:36:18 +5779 5779 5780 577.9 1155.8 5779 1985-10-28 2024-10-11 01:36:19.000 1985-10-28 2024-10-11 01:36:19 +5780 5780 5781 578 1156 5780 1985-10-29 2024-10-11 01:36:20.000 1985-10-29 2024-10-11 01:36:20 +5781 5781 5782 578.1 1156.2 5781 1985-10-30 2024-10-11 01:36:21.000 1985-10-30 2024-10-11 01:36:21 +5782 5782 5783 578.2 1156.4 5782 1985-10-31 2024-10-11 01:36:22.000 1985-10-31 2024-10-11 01:36:22 +5783 5783 5784 578.3 1156.6000000000001 5783 1985-11-01 2024-10-11 01:36:23.000 1985-11-01 2024-10-11 01:36:23 +5784 5784 5785 578.4 1156.8 5784 1985-11-02 2024-10-11 01:36:24.000 1985-11-02 2024-10-11 01:36:24 +5785 5785 5786 578.5 1157 5785 1985-11-03 2024-10-11 01:36:25.000 1985-11-03 2024-10-11 01:36:25 +5786 5786 5787 578.6 1157.2 5786 1985-11-04 2024-10-11 01:36:26.000 1985-11-04 2024-10-11 01:36:26 +5787 5787 5788 578.7 1157.4 5787 1985-11-05 2024-10-11 01:36:27.000 1985-11-05 2024-10-11 01:36:27 +5788 5788 5789 578.8 1157.6000000000001 5788 1985-11-06 2024-10-11 01:36:28.000 1985-11-06 2024-10-11 01:36:28 +5789 5789 5790 578.9 1157.8 5789 1985-11-07 2024-10-11 01:36:29.000 1985-11-07 2024-10-11 01:36:29 +5790 5790 5791 579 1158 5790 1985-11-08 2024-10-11 01:36:30.000 1985-11-08 2024-10-11 01:36:30 +5791 5791 5792 579.1 1158.2 5791 1985-11-09 2024-10-11 01:36:31.000 1985-11-09 2024-10-11 01:36:31 +5792 5792 5793 579.2 1158.4 5792 1985-11-10 2024-10-11 01:36:32.000 1985-11-10 2024-10-11 01:36:32 +5793 5793 5794 579.3 1158.6000000000001 5793 1985-11-11 2024-10-11 01:36:33.000 1985-11-11 2024-10-11 01:36:33 +5794 5794 5795 579.4 1158.8 5794 1985-11-12 2024-10-11 01:36:34.000 1985-11-12 2024-10-11 01:36:34 +5795 5795 5796 579.5 1159 5795 1985-11-13 2024-10-11 01:36:35.000 1985-11-13 2024-10-11 01:36:35 +5796 5796 5797 579.6 1159.2 5796 1985-11-14 2024-10-11 01:36:36.000 1985-11-14 2024-10-11 01:36:36 +5797 5797 5798 579.7 1159.4 5797 1985-11-15 2024-10-11 01:36:37.000 1985-11-15 2024-10-11 01:36:37 +5798 5798 5799 579.8 1159.6000000000001 5798 1985-11-16 2024-10-11 01:36:38.000 1985-11-16 2024-10-11 01:36:38 +5799 5799 5800 579.9 1159.8 5799 1985-11-17 2024-10-11 01:36:39.000 1985-11-17 2024-10-11 01:36:39 +5800 5800 5801 580 1160 5800 1985-11-18 2024-10-11 01:36:40.000 1985-11-18 2024-10-11 01:36:40 +5801 5801 5802 580.1 1160.2 5801 1985-11-19 2024-10-11 01:36:41.000 1985-11-19 2024-10-11 01:36:41 +5802 5802 5803 580.2 1160.4 5802 1985-11-20 2024-10-11 01:36:42.000 1985-11-20 2024-10-11 01:36:42 +5803 5803 5804 580.3 1160.6000000000001 5803 1985-11-21 2024-10-11 01:36:43.000 1985-11-21 2024-10-11 01:36:43 +5804 5804 5805 580.4 1160.8 5804 1985-11-22 2024-10-11 01:36:44.000 1985-11-22 2024-10-11 01:36:44 +5805 5805 5806 580.5 1161 5805 1985-11-23 2024-10-11 01:36:45.000 1985-11-23 2024-10-11 01:36:45 +5806 5806 5807 580.6 1161.2 5806 1985-11-24 2024-10-11 01:36:46.000 1985-11-24 2024-10-11 01:36:46 +5807 5807 5808 580.7 1161.4 5807 1985-11-25 2024-10-11 01:36:47.000 1985-11-25 2024-10-11 01:36:47 +5808 5808 5809 580.8 1161.6000000000001 5808 1985-11-26 2024-10-11 01:36:48.000 1985-11-26 2024-10-11 01:36:48 +5809 5809 5810 580.9 1161.8 5809 1985-11-27 2024-10-11 01:36:49.000 1985-11-27 2024-10-11 01:36:49 +5810 5810 5811 581 1162 5810 1985-11-28 2024-10-11 01:36:50.000 1985-11-28 2024-10-11 01:36:50 +5811 5811 5812 581.1 1162.2 5811 1985-11-29 2024-10-11 01:36:51.000 1985-11-29 2024-10-11 01:36:51 +5812 5812 5813 581.2 1162.4 5812 1985-11-30 2024-10-11 01:36:52.000 1985-11-30 2024-10-11 01:36:52 +5813 5813 5814 581.3 1162.6000000000001 5813 1985-12-01 2024-10-11 01:36:53.000 1985-12-01 2024-10-11 01:36:53 +5814 5814 5815 581.4 1162.8 5814 1985-12-02 2024-10-11 01:36:54.000 1985-12-02 2024-10-11 01:36:54 +5815 5815 5816 581.5 1163 5815 1985-12-03 2024-10-11 01:36:55.000 1985-12-03 2024-10-11 01:36:55 +5816 5816 5817 581.6 1163.2 5816 1985-12-04 2024-10-11 01:36:56.000 1985-12-04 2024-10-11 01:36:56 +5817 5817 5818 581.7 1163.4 5817 1985-12-05 2024-10-11 01:36:57.000 1985-12-05 2024-10-11 01:36:57 +5818 5818 5819 581.8 1163.6000000000001 5818 1985-12-06 2024-10-11 01:36:58.000 1985-12-06 2024-10-11 01:36:58 +5819 5819 5820 581.9 1163.8 5819 1985-12-07 2024-10-11 01:36:59.000 1985-12-07 2024-10-11 01:36:59 +5820 5820 5821 582 1164 5820 1985-12-08 2024-10-11 01:37:00.000 1985-12-08 2024-10-11 01:37:00 +5821 5821 5822 582.1 1164.2 5821 1985-12-09 2024-10-11 01:37:01.000 1985-12-09 2024-10-11 01:37:01 +5822 5822 5823 582.2 1164.4 5822 1985-12-10 2024-10-11 01:37:02.000 1985-12-10 2024-10-11 01:37:02 +5823 5823 5824 582.3 1164.6000000000001 5823 1985-12-11 2024-10-11 01:37:03.000 1985-12-11 2024-10-11 01:37:03 +5824 5824 5825 582.4 1164.8 5824 1985-12-12 2024-10-11 01:37:04.000 1985-12-12 2024-10-11 01:37:04 +5825 5825 5826 582.5 1165 5825 1985-12-13 2024-10-11 01:37:05.000 1985-12-13 2024-10-11 01:37:05 +5826 5826 5827 582.6 1165.2 5826 1985-12-14 2024-10-11 01:37:06.000 1985-12-14 2024-10-11 01:37:06 +5827 5827 5828 582.7 1165.4 5827 1985-12-15 2024-10-11 01:37:07.000 1985-12-15 2024-10-11 01:37:07 +5828 5828 5829 582.8 1165.6000000000001 5828 1985-12-16 2024-10-11 01:37:08.000 1985-12-16 2024-10-11 01:37:08 +5829 5829 5830 582.9 1165.8 5829 1985-12-17 2024-10-11 01:37:09.000 1985-12-17 2024-10-11 01:37:09 +5830 5830 5831 583 1166 5830 1985-12-18 2024-10-11 01:37:10.000 1985-12-18 2024-10-11 01:37:10 +5831 5831 5832 583.1 1166.2 5831 1985-12-19 2024-10-11 01:37:11.000 1985-12-19 2024-10-11 01:37:11 +5832 5832 5833 583.2 1166.4 5832 1985-12-20 2024-10-11 01:37:12.000 1985-12-20 2024-10-11 01:37:12 +5833 5833 5834 583.3 1166.6000000000001 5833 1985-12-21 2024-10-11 01:37:13.000 1985-12-21 2024-10-11 01:37:13 +5834 5834 5835 583.4 1166.8 5834 1985-12-22 2024-10-11 01:37:14.000 1985-12-22 2024-10-11 01:37:14 +5835 5835 5836 583.5 1167 5835 1985-12-23 2024-10-11 01:37:15.000 1985-12-23 2024-10-11 01:37:15 +5836 5836 5837 583.6 1167.2 5836 1985-12-24 2024-10-11 01:37:16.000 1985-12-24 2024-10-11 01:37:16 +5837 5837 5838 583.7 1167.4 5837 1985-12-25 2024-10-11 01:37:17.000 1985-12-25 2024-10-11 01:37:17 +5838 5838 5839 583.8 1167.6000000000001 5838 1985-12-26 2024-10-11 01:37:18.000 1985-12-26 2024-10-11 01:37:18 +5839 5839 5840 583.9 1167.8 5839 1985-12-27 2024-10-11 01:37:19.000 1985-12-27 2024-10-11 01:37:19 +5840 5840 5841 584 1168 5840 1985-12-28 2024-10-11 01:37:20.000 1985-12-28 2024-10-11 01:37:20 +5841 5841 5842 584.1 1168.2 5841 1985-12-29 2024-10-11 01:37:21.000 1985-12-29 2024-10-11 01:37:21 +5842 5842 5843 584.2 1168.4 5842 1985-12-30 2024-10-11 01:37:22.000 1985-12-30 2024-10-11 01:37:22 +5843 5843 5844 584.3 1168.6000000000001 5843 1985-12-31 2024-10-11 01:37:23.000 1985-12-31 2024-10-11 01:37:23 +5844 5844 5845 584.4 1168.8 5844 1986-01-01 2024-10-11 01:37:24.000 1986-01-01 2024-10-11 01:37:24 +5845 5845 5846 584.5 1169 5845 1986-01-02 2024-10-11 01:37:25.000 1986-01-02 2024-10-11 01:37:25 +5846 5846 5847 584.6 1169.2 5846 1986-01-03 2024-10-11 01:37:26.000 1986-01-03 2024-10-11 01:37:26 +5847 5847 5848 584.7 1169.4 5847 1986-01-04 2024-10-11 01:37:27.000 1986-01-04 2024-10-11 01:37:27 +5848 5848 5849 584.8 1169.6000000000001 5848 1986-01-05 2024-10-11 01:37:28.000 1986-01-05 2024-10-11 01:37:28 +5849 5849 5850 584.9 1169.8 5849 1986-01-06 2024-10-11 01:37:29.000 1986-01-06 2024-10-11 01:37:29 +5850 5850 5851 585 1170 5850 1986-01-07 2024-10-11 01:37:30.000 1986-01-07 2024-10-11 01:37:30 +5851 5851 5852 585.1 1170.2 5851 1986-01-08 2024-10-11 01:37:31.000 1986-01-08 2024-10-11 01:37:31 +5852 5852 5853 585.2 1170.4 5852 1986-01-09 2024-10-11 01:37:32.000 1986-01-09 2024-10-11 01:37:32 +5853 5853 5854 585.3 1170.6000000000001 5853 1986-01-10 2024-10-11 01:37:33.000 1986-01-10 2024-10-11 01:37:33 +5854 5854 5855 585.4 1170.8 5854 1986-01-11 2024-10-11 01:37:34.000 1986-01-11 2024-10-11 01:37:34 +5855 5855 5856 585.5 1171 5855 1986-01-12 2024-10-11 01:37:35.000 1986-01-12 2024-10-11 01:37:35 +5856 5856 5857 585.6 1171.2 5856 1986-01-13 2024-10-11 01:37:36.000 1986-01-13 2024-10-11 01:37:36 +5857 5857 5858 585.7 1171.4 5857 1986-01-14 2024-10-11 01:37:37.000 1986-01-14 2024-10-11 01:37:37 +5858 5858 5859 585.8 1171.6000000000001 5858 1986-01-15 2024-10-11 01:37:38.000 1986-01-15 2024-10-11 01:37:38 +5859 5859 5860 585.9 1171.8 5859 1986-01-16 2024-10-11 01:37:39.000 1986-01-16 2024-10-11 01:37:39 +5860 5860 5861 586 1172 5860 1986-01-17 2024-10-11 01:37:40.000 1986-01-17 2024-10-11 01:37:40 +5861 5861 5862 586.1 1172.2 5861 1986-01-18 2024-10-11 01:37:41.000 1986-01-18 2024-10-11 01:37:41 +5862 5862 5863 586.2 1172.4 5862 1986-01-19 2024-10-11 01:37:42.000 1986-01-19 2024-10-11 01:37:42 +5863 5863 5864 586.3 1172.6000000000001 5863 1986-01-20 2024-10-11 01:37:43.000 1986-01-20 2024-10-11 01:37:43 +5864 5864 5865 586.4 1172.8 5864 1986-01-21 2024-10-11 01:37:44.000 1986-01-21 2024-10-11 01:37:44 +5865 5865 5866 586.5 1173 5865 1986-01-22 2024-10-11 01:37:45.000 1986-01-22 2024-10-11 01:37:45 +5866 5866 5867 586.6 1173.2 5866 1986-01-23 2024-10-11 01:37:46.000 1986-01-23 2024-10-11 01:37:46 +5867 5867 5868 586.7 1173.4 5867 1986-01-24 2024-10-11 01:37:47.000 1986-01-24 2024-10-11 01:37:47 +5868 5868 5869 586.8 1173.6000000000001 5868 1986-01-25 2024-10-11 01:37:48.000 1986-01-25 2024-10-11 01:37:48 +5869 5869 5870 586.9 1173.8 5869 1986-01-26 2024-10-11 01:37:49.000 1986-01-26 2024-10-11 01:37:49 +5870 5870 5871 587 1174 5870 1986-01-27 2024-10-11 01:37:50.000 1986-01-27 2024-10-11 01:37:50 +5871 5871 5872 587.1 1174.2 5871 1986-01-28 2024-10-11 01:37:51.000 1986-01-28 2024-10-11 01:37:51 +5872 5872 5873 587.2 1174.4 5872 1986-01-29 2024-10-11 01:37:52.000 1986-01-29 2024-10-11 01:37:52 +5873 5873 5874 587.3 1174.6000000000001 5873 1986-01-30 2024-10-11 01:37:53.000 1986-01-30 2024-10-11 01:37:53 +5874 5874 5875 587.4 1174.8 5874 1986-01-31 2024-10-11 01:37:54.000 1986-01-31 2024-10-11 01:37:54 +5875 5875 5876 587.5 1175 5875 1986-02-01 2024-10-11 01:37:55.000 1986-02-01 2024-10-11 01:37:55 +5876 5876 5877 587.6 1175.2 5876 1986-02-02 2024-10-11 01:37:56.000 1986-02-02 2024-10-11 01:37:56 +5877 5877 5878 587.7 1175.4 5877 1986-02-03 2024-10-11 01:37:57.000 1986-02-03 2024-10-11 01:37:57 +5878 5878 5879 587.8 1175.6000000000001 5878 1986-02-04 2024-10-11 01:37:58.000 1986-02-04 2024-10-11 01:37:58 +5879 5879 5880 587.9 1175.8 5879 1986-02-05 2024-10-11 01:37:59.000 1986-02-05 2024-10-11 01:37:59 +5880 5880 5881 588 1176 5880 1986-02-06 2024-10-11 01:38:00.000 1986-02-06 2024-10-11 01:38:00 +5881 5881 5882 588.1 1176.2 5881 1986-02-07 2024-10-11 01:38:01.000 1986-02-07 2024-10-11 01:38:01 +5882 5882 5883 588.2 1176.4 5882 1986-02-08 2024-10-11 01:38:02.000 1986-02-08 2024-10-11 01:38:02 +5883 5883 5884 588.3 1176.6000000000001 5883 1986-02-09 2024-10-11 01:38:03.000 1986-02-09 2024-10-11 01:38:03 +5884 5884 5885 588.4 1176.8 5884 1986-02-10 2024-10-11 01:38:04.000 1986-02-10 2024-10-11 01:38:04 +5885 5885 5886 588.5 1177 5885 1986-02-11 2024-10-11 01:38:05.000 1986-02-11 2024-10-11 01:38:05 +5886 5886 5887 588.6 1177.2 5886 1986-02-12 2024-10-11 01:38:06.000 1986-02-12 2024-10-11 01:38:06 +5887 5887 5888 588.7 1177.4 5887 1986-02-13 2024-10-11 01:38:07.000 1986-02-13 2024-10-11 01:38:07 +5888 5888 5889 588.8 1177.6000000000001 5888 1986-02-14 2024-10-11 01:38:08.000 1986-02-14 2024-10-11 01:38:08 +5889 5889 5890 588.9 1177.8 5889 1986-02-15 2024-10-11 01:38:09.000 1986-02-15 2024-10-11 01:38:09 +5890 5890 5891 589 1178 5890 1986-02-16 2024-10-11 01:38:10.000 1986-02-16 2024-10-11 01:38:10 +5891 5891 5892 589.1 1178.2 5891 1986-02-17 2024-10-11 01:38:11.000 1986-02-17 2024-10-11 01:38:11 +5892 5892 5893 589.2 1178.4 5892 1986-02-18 2024-10-11 01:38:12.000 1986-02-18 2024-10-11 01:38:12 +5893 5893 5894 589.3 1178.6000000000001 5893 1986-02-19 2024-10-11 01:38:13.000 1986-02-19 2024-10-11 01:38:13 +5894 5894 5895 589.4 1178.8 5894 1986-02-20 2024-10-11 01:38:14.000 1986-02-20 2024-10-11 01:38:14 +5895 5895 5896 589.5 1179 5895 1986-02-21 2024-10-11 01:38:15.000 1986-02-21 2024-10-11 01:38:15 +5896 5896 5897 589.6 1179.2 5896 1986-02-22 2024-10-11 01:38:16.000 1986-02-22 2024-10-11 01:38:16 +5897 5897 5898 589.7 1179.4 5897 1986-02-23 2024-10-11 01:38:17.000 1986-02-23 2024-10-11 01:38:17 +5898 5898 5899 589.8 1179.6000000000001 5898 1986-02-24 2024-10-11 01:38:18.000 1986-02-24 2024-10-11 01:38:18 +5899 5899 5900 589.9 1179.8 5899 1986-02-25 2024-10-11 01:38:19.000 1986-02-25 2024-10-11 01:38:19 +5900 5900 5901 590 1180 5900 1986-02-26 2024-10-11 01:38:20.000 1986-02-26 2024-10-11 01:38:20 +5901 5901 5902 590.1 1180.2 5901 1986-02-27 2024-10-11 01:38:21.000 1986-02-27 2024-10-11 01:38:21 +5902 5902 5903 590.2 1180.4 5902 1986-02-28 2024-10-11 01:38:22.000 1986-02-28 2024-10-11 01:38:22 +5903 5903 5904 590.3 1180.6000000000001 5903 1986-03-01 2024-10-11 01:38:23.000 1986-03-01 2024-10-11 01:38:23 +5904 5904 5905 590.4 1180.8 5904 1986-03-02 2024-10-11 01:38:24.000 1986-03-02 2024-10-11 01:38:24 +5905 5905 5906 590.5 1181 5905 1986-03-03 2024-10-11 01:38:25.000 1986-03-03 2024-10-11 01:38:25 +5906 5906 5907 590.6 1181.2 5906 1986-03-04 2024-10-11 01:38:26.000 1986-03-04 2024-10-11 01:38:26 +5907 5907 5908 590.7 1181.4 5907 1986-03-05 2024-10-11 01:38:27.000 1986-03-05 2024-10-11 01:38:27 +5908 5908 5909 590.8 1181.6000000000001 5908 1986-03-06 2024-10-11 01:38:28.000 1986-03-06 2024-10-11 01:38:28 +5909 5909 5910 590.9 1181.8 5909 1986-03-07 2024-10-11 01:38:29.000 1986-03-07 2024-10-11 01:38:29 +5910 5910 5911 591 1182 5910 1986-03-08 2024-10-11 01:38:30.000 1986-03-08 2024-10-11 01:38:30 +5911 5911 5912 591.1 1182.2 5911 1986-03-09 2024-10-11 01:38:31.000 1986-03-09 2024-10-11 01:38:31 +5912 5912 5913 591.2 1182.4 5912 1986-03-10 2024-10-11 01:38:32.000 1986-03-10 2024-10-11 01:38:32 +5913 5913 5914 591.3 1182.6000000000001 5913 1986-03-11 2024-10-11 01:38:33.000 1986-03-11 2024-10-11 01:38:33 +5914 5914 5915 591.4 1182.8 5914 1986-03-12 2024-10-11 01:38:34.000 1986-03-12 2024-10-11 01:38:34 +5915 5915 5916 591.5 1183 5915 1986-03-13 2024-10-11 01:38:35.000 1986-03-13 2024-10-11 01:38:35 +5916 5916 5917 591.6 1183.2 5916 1986-03-14 2024-10-11 01:38:36.000 1986-03-14 2024-10-11 01:38:36 +5917 5917 5918 591.7 1183.4 5917 1986-03-15 2024-10-11 01:38:37.000 1986-03-15 2024-10-11 01:38:37 +5918 5918 5919 591.8 1183.6000000000001 5918 1986-03-16 2024-10-11 01:38:38.000 1986-03-16 2024-10-11 01:38:38 +5919 5919 5920 591.9 1183.8 5919 1986-03-17 2024-10-11 01:38:39.000 1986-03-17 2024-10-11 01:38:39 +5920 5920 5921 592 1184 5920 1986-03-18 2024-10-11 01:38:40.000 1986-03-18 2024-10-11 01:38:40 +5921 5921 5922 592.1 1184.2 5921 1986-03-19 2024-10-11 01:38:41.000 1986-03-19 2024-10-11 01:38:41 +5922 5922 5923 592.2 1184.4 5922 1986-03-20 2024-10-11 01:38:42.000 1986-03-20 2024-10-11 01:38:42 +5923 5923 5924 592.3 1184.6000000000001 5923 1986-03-21 2024-10-11 01:38:43.000 1986-03-21 2024-10-11 01:38:43 +5924 5924 5925 592.4 1184.8 5924 1986-03-22 2024-10-11 01:38:44.000 1986-03-22 2024-10-11 01:38:44 +5925 5925 5926 592.5 1185 5925 1986-03-23 2024-10-11 01:38:45.000 1986-03-23 2024-10-11 01:38:45 +5926 5926 5927 592.6 1185.2 5926 1986-03-24 2024-10-11 01:38:46.000 1986-03-24 2024-10-11 01:38:46 +5927 5927 5928 592.7 1185.4 5927 1986-03-25 2024-10-11 01:38:47.000 1986-03-25 2024-10-11 01:38:47 +5928 5928 5929 592.8 1185.6000000000001 5928 1986-03-26 2024-10-11 01:38:48.000 1986-03-26 2024-10-11 01:38:48 +5929 5929 5930 592.9 1185.8 5929 1986-03-27 2024-10-11 01:38:49.000 1986-03-27 2024-10-11 01:38:49 +5930 5930 5931 593 1186 5930 1986-03-28 2024-10-11 01:38:50.000 1986-03-28 2024-10-11 01:38:50 +5931 5931 5932 593.1 1186.2 5931 1986-03-29 2024-10-11 01:38:51.000 1986-03-29 2024-10-11 01:38:51 +5932 5932 5933 593.2 1186.4 5932 1986-03-30 2024-10-11 01:38:52.000 1986-03-30 2024-10-11 01:38:52 +5933 5933 5934 593.3 1186.6000000000001 5933 1986-03-31 2024-10-11 01:38:53.000 1986-03-31 2024-10-11 01:38:53 +5934 5934 5935 593.4 1186.8 5934 1986-04-01 2024-10-11 01:38:54.000 1986-04-01 2024-10-11 01:38:54 +5935 5935 5936 593.5 1187 5935 1986-04-02 2024-10-11 01:38:55.000 1986-04-02 2024-10-11 01:38:55 +5936 5936 5937 593.6 1187.2 5936 1986-04-03 2024-10-11 01:38:56.000 1986-04-03 2024-10-11 01:38:56 +5937 5937 5938 593.7 1187.4 5937 1986-04-04 2024-10-11 01:38:57.000 1986-04-04 2024-10-11 01:38:57 +5938 5938 5939 593.8 1187.6000000000001 5938 1986-04-05 2024-10-11 01:38:58.000 1986-04-05 2024-10-11 01:38:58 +5939 5939 5940 593.9 1187.8 5939 1986-04-06 2024-10-11 01:38:59.000 1986-04-06 2024-10-11 01:38:59 +5940 5940 5941 594 1188 5940 1986-04-07 2024-10-11 01:39:00.000 1986-04-07 2024-10-11 01:39:00 +5941 5941 5942 594.1 1188.2 5941 1986-04-08 2024-10-11 01:39:01.000 1986-04-08 2024-10-11 01:39:01 +5942 5942 5943 594.2 1188.4 5942 1986-04-09 2024-10-11 01:39:02.000 1986-04-09 2024-10-11 01:39:02 +5943 5943 5944 594.3 1188.6000000000001 5943 1986-04-10 2024-10-11 01:39:03.000 1986-04-10 2024-10-11 01:39:03 +5944 5944 5945 594.4 1188.8 5944 1986-04-11 2024-10-11 01:39:04.000 1986-04-11 2024-10-11 01:39:04 +5945 5945 5946 594.5 1189 5945 1986-04-12 2024-10-11 01:39:05.000 1986-04-12 2024-10-11 01:39:05 +5946 5946 5947 594.6 1189.2 5946 1986-04-13 2024-10-11 01:39:06.000 1986-04-13 2024-10-11 01:39:06 +5947 5947 5948 594.7 1189.4 5947 1986-04-14 2024-10-11 01:39:07.000 1986-04-14 2024-10-11 01:39:07 +5948 5948 5949 594.8 1189.6000000000001 5948 1986-04-15 2024-10-11 01:39:08.000 1986-04-15 2024-10-11 01:39:08 +5949 5949 5950 594.9 1189.8 5949 1986-04-16 2024-10-11 01:39:09.000 1986-04-16 2024-10-11 01:39:09 +5950 5950 5951 595 1190 5950 1986-04-17 2024-10-11 01:39:10.000 1986-04-17 2024-10-11 01:39:10 +5951 5951 5952 595.1 1190.2 5951 1986-04-18 2024-10-11 01:39:11.000 1986-04-18 2024-10-11 01:39:11 +5952 5952 5953 595.2 1190.4 5952 1986-04-19 2024-10-11 01:39:12.000 1986-04-19 2024-10-11 01:39:12 +5953 5953 5954 595.3 1190.6000000000001 5953 1986-04-20 2024-10-11 01:39:13.000 1986-04-20 2024-10-11 01:39:13 +5954 5954 5955 595.4 1190.8 5954 1986-04-21 2024-10-11 01:39:14.000 1986-04-21 2024-10-11 01:39:14 +5955 5955 5956 595.5 1191 5955 1986-04-22 2024-10-11 01:39:15.000 1986-04-22 2024-10-11 01:39:15 +5956 5956 5957 595.6 1191.2 5956 1986-04-23 2024-10-11 01:39:16.000 1986-04-23 2024-10-11 01:39:16 +5957 5957 5958 595.7 1191.4 5957 1986-04-24 2024-10-11 01:39:17.000 1986-04-24 2024-10-11 01:39:17 +5958 5958 5959 595.8 1191.6000000000001 5958 1986-04-25 2024-10-11 01:39:18.000 1986-04-25 2024-10-11 01:39:18 +5959 5959 5960 595.9 1191.8 5959 1986-04-26 2024-10-11 01:39:19.000 1986-04-26 2024-10-11 01:39:19 +5960 5960 5961 596 1192 5960 1986-04-27 2024-10-11 01:39:20.000 1986-04-27 2024-10-11 01:39:20 +5961 5961 5962 596.1 1192.2 5961 1986-04-28 2024-10-11 01:39:21.000 1986-04-28 2024-10-11 01:39:21 +5962 5962 5963 596.2 1192.4 5962 1986-04-29 2024-10-11 01:39:22.000 1986-04-29 2024-10-11 01:39:22 +5963 5963 5964 596.3 1192.6000000000001 5963 1986-04-30 2024-10-11 01:39:23.000 1986-04-30 2024-10-11 01:39:23 +5964 5964 5965 596.4 1192.8 5964 1986-05-01 2024-10-11 01:39:24.000 1986-05-01 2024-10-11 01:39:24 +5965 5965 5966 596.5 1193 5965 1986-05-02 2024-10-11 01:39:25.000 1986-05-02 2024-10-11 01:39:25 +5966 5966 5967 596.6 1193.2 5966 1986-05-03 2024-10-11 01:39:26.000 1986-05-03 2024-10-11 01:39:26 +5967 5967 5968 596.7 1193.4 5967 1986-05-04 2024-10-11 01:39:27.000 1986-05-04 2024-10-11 01:39:27 +5968 5968 5969 596.8 1193.6000000000001 5968 1986-05-05 2024-10-11 01:39:28.000 1986-05-05 2024-10-11 01:39:28 +5969 5969 5970 596.9 1193.8 5969 1986-05-06 2024-10-11 01:39:29.000 1986-05-06 2024-10-11 01:39:29 +5970 5970 5971 597 1194 5970 1986-05-07 2024-10-11 01:39:30.000 1986-05-07 2024-10-11 01:39:30 +5971 5971 5972 597.1 1194.2 5971 1986-05-08 2024-10-11 01:39:31.000 1986-05-08 2024-10-11 01:39:31 +5972 5972 5973 597.2 1194.4 5972 1986-05-09 2024-10-11 01:39:32.000 1986-05-09 2024-10-11 01:39:32 +5973 5973 5974 597.3 1194.6000000000001 5973 1986-05-10 2024-10-11 01:39:33.000 1986-05-10 2024-10-11 01:39:33 +5974 5974 5975 597.4 1194.8 5974 1986-05-11 2024-10-11 01:39:34.000 1986-05-11 2024-10-11 01:39:34 +5975 5975 5976 597.5 1195 5975 1986-05-12 2024-10-11 01:39:35.000 1986-05-12 2024-10-11 01:39:35 +5976 5976 5977 597.6 1195.2 5976 1986-05-13 2024-10-11 01:39:36.000 1986-05-13 2024-10-11 01:39:36 +5977 5977 5978 597.7 1195.4 5977 1986-05-14 2024-10-11 01:39:37.000 1986-05-14 2024-10-11 01:39:37 +5978 5978 5979 597.8 1195.6000000000001 5978 1986-05-15 2024-10-11 01:39:38.000 1986-05-15 2024-10-11 01:39:38 +5979 5979 5980 597.9 1195.8 5979 1986-05-16 2024-10-11 01:39:39.000 1986-05-16 2024-10-11 01:39:39 +5980 5980 5981 598 1196 5980 1986-05-17 2024-10-11 01:39:40.000 1986-05-17 2024-10-11 01:39:40 +5981 5981 5982 598.1 1196.2 5981 1986-05-18 2024-10-11 01:39:41.000 1986-05-18 2024-10-11 01:39:41 +5982 5982 5983 598.2 1196.4 5982 1986-05-19 2024-10-11 01:39:42.000 1986-05-19 2024-10-11 01:39:42 +5983 5983 5984 598.3 1196.6000000000001 5983 1986-05-20 2024-10-11 01:39:43.000 1986-05-20 2024-10-11 01:39:43 +5984 5984 5985 598.4 1196.8 5984 1986-05-21 2024-10-11 01:39:44.000 1986-05-21 2024-10-11 01:39:44 +5985 5985 5986 598.5 1197 5985 1986-05-22 2024-10-11 01:39:45.000 1986-05-22 2024-10-11 01:39:45 +5986 5986 5987 598.6 1197.2 5986 1986-05-23 2024-10-11 01:39:46.000 1986-05-23 2024-10-11 01:39:46 +5987 5987 5988 598.7 1197.4 5987 1986-05-24 2024-10-11 01:39:47.000 1986-05-24 2024-10-11 01:39:47 +5988 5988 5989 598.8 1197.6000000000001 5988 1986-05-25 2024-10-11 01:39:48.000 1986-05-25 2024-10-11 01:39:48 +5989 5989 5990 598.9 1197.8 5989 1986-05-26 2024-10-11 01:39:49.000 1986-05-26 2024-10-11 01:39:49 +5990 5990 5991 599 1198 5990 1986-05-27 2024-10-11 01:39:50.000 1986-05-27 2024-10-11 01:39:50 +5991 5991 5992 599.1 1198.2 5991 1986-05-28 2024-10-11 01:39:51.000 1986-05-28 2024-10-11 01:39:51 +5992 5992 5993 599.2 1198.4 5992 1986-05-29 2024-10-11 01:39:52.000 1986-05-29 2024-10-11 01:39:52 +5993 5993 5994 599.3 1198.6000000000001 5993 1986-05-30 2024-10-11 01:39:53.000 1986-05-30 2024-10-11 01:39:53 +5994 5994 5995 599.4 1198.8 5994 1986-05-31 2024-10-11 01:39:54.000 1986-05-31 2024-10-11 01:39:54 +5995 5995 5996 599.5 1199 5995 1986-06-01 2024-10-11 01:39:55.000 1986-06-01 2024-10-11 01:39:55 +5996 5996 5997 599.6 1199.2 5996 1986-06-02 2024-10-11 01:39:56.000 1986-06-02 2024-10-11 01:39:56 +5997 5997 5998 599.7 1199.4 5997 1986-06-03 2024-10-11 01:39:57.000 1986-06-03 2024-10-11 01:39:57 +5998 5998 5999 599.8 1199.6000000000001 5998 1986-06-04 2024-10-11 01:39:58.000 1986-06-04 2024-10-11 01:39:58 +5999 5999 6000 599.9 1199.8 5999 1986-06-05 2024-10-11 01:39:59.000 1986-06-05 2024-10-11 01:39:59 +6000 6000 6001 600 1200 6000 1986-06-06 2024-10-11 01:40:00.000 1986-06-06 2024-10-11 01:40:00 +6001 6001 6002 600.1 1200.2 6001 1986-06-07 2024-10-11 01:40:01.000 1986-06-07 2024-10-11 01:40:01 +6002 6002 6003 600.2 1200.4 6002 1986-06-08 2024-10-11 01:40:02.000 1986-06-08 2024-10-11 01:40:02 +6003 6003 6004 600.3 1200.6000000000001 6003 1986-06-09 2024-10-11 01:40:03.000 1986-06-09 2024-10-11 01:40:03 +6004 6004 6005 600.4 1200.8 6004 1986-06-10 2024-10-11 01:40:04.000 1986-06-10 2024-10-11 01:40:04 +6005 6005 6006 600.5 1201 6005 1986-06-11 2024-10-11 01:40:05.000 1986-06-11 2024-10-11 01:40:05 +6006 6006 6007 600.6 1201.2 6006 1986-06-12 2024-10-11 01:40:06.000 1986-06-12 2024-10-11 01:40:06 +6007 6007 6008 600.7 1201.4 6007 1986-06-13 2024-10-11 01:40:07.000 1986-06-13 2024-10-11 01:40:07 +6008 6008 6009 600.8 1201.6000000000001 6008 1986-06-14 2024-10-11 01:40:08.000 1986-06-14 2024-10-11 01:40:08 +6009 6009 6010 600.9 1201.8 6009 1986-06-15 2024-10-11 01:40:09.000 1986-06-15 2024-10-11 01:40:09 +6010 6010 6011 601 1202 6010 1986-06-16 2024-10-11 01:40:10.000 1986-06-16 2024-10-11 01:40:10 +6011 6011 6012 601.1 1202.2 6011 1986-06-17 2024-10-11 01:40:11.000 1986-06-17 2024-10-11 01:40:11 +6012 6012 6013 601.2 1202.4 6012 1986-06-18 2024-10-11 01:40:12.000 1986-06-18 2024-10-11 01:40:12 +6013 6013 6014 601.3 1202.6000000000001 6013 1986-06-19 2024-10-11 01:40:13.000 1986-06-19 2024-10-11 01:40:13 +6014 6014 6015 601.4 1202.8 6014 1986-06-20 2024-10-11 01:40:14.000 1986-06-20 2024-10-11 01:40:14 +6015 6015 6016 601.5 1203 6015 1986-06-21 2024-10-11 01:40:15.000 1986-06-21 2024-10-11 01:40:15 +6016 6016 6017 601.6 1203.2 6016 1986-06-22 2024-10-11 01:40:16.000 1986-06-22 2024-10-11 01:40:16 +6017 6017 6018 601.7 1203.4 6017 1986-06-23 2024-10-11 01:40:17.000 1986-06-23 2024-10-11 01:40:17 +6018 6018 6019 601.8 1203.6000000000001 6018 1986-06-24 2024-10-11 01:40:18.000 1986-06-24 2024-10-11 01:40:18 +6019 6019 6020 601.9 1203.8 6019 1986-06-25 2024-10-11 01:40:19.000 1986-06-25 2024-10-11 01:40:19 +6020 6020 6021 602 1204 6020 1986-06-26 2024-10-11 01:40:20.000 1986-06-26 2024-10-11 01:40:20 +6021 6021 6022 602.1 1204.2 6021 1986-06-27 2024-10-11 01:40:21.000 1986-06-27 2024-10-11 01:40:21 +6022 6022 6023 602.2 1204.4 6022 1986-06-28 2024-10-11 01:40:22.000 1986-06-28 2024-10-11 01:40:22 +6023 6023 6024 602.3 1204.6000000000001 6023 1986-06-29 2024-10-11 01:40:23.000 1986-06-29 2024-10-11 01:40:23 +6024 6024 6025 602.4 1204.8 6024 1986-06-30 2024-10-11 01:40:24.000 1986-06-30 2024-10-11 01:40:24 +6025 6025 6026 602.5 1205 6025 1986-07-01 2024-10-11 01:40:25.000 1986-07-01 2024-10-11 01:40:25 +6026 6026 6027 602.6 1205.2 6026 1986-07-02 2024-10-11 01:40:26.000 1986-07-02 2024-10-11 01:40:26 +6027 6027 6028 602.7 1205.4 6027 1986-07-03 2024-10-11 01:40:27.000 1986-07-03 2024-10-11 01:40:27 +6028 6028 6029 602.8 1205.6000000000001 6028 1986-07-04 2024-10-11 01:40:28.000 1986-07-04 2024-10-11 01:40:28 +6029 6029 6030 602.9 1205.8 6029 1986-07-05 2024-10-11 01:40:29.000 1986-07-05 2024-10-11 01:40:29 +6030 6030 6031 603 1206 6030 1986-07-06 2024-10-11 01:40:30.000 1986-07-06 2024-10-11 01:40:30 +6031 6031 6032 603.1 1206.2 6031 1986-07-07 2024-10-11 01:40:31.000 1986-07-07 2024-10-11 01:40:31 +6032 6032 6033 603.2 1206.4 6032 1986-07-08 2024-10-11 01:40:32.000 1986-07-08 2024-10-11 01:40:32 +6033 6033 6034 603.3 1206.6000000000001 6033 1986-07-09 2024-10-11 01:40:33.000 1986-07-09 2024-10-11 01:40:33 +6034 6034 6035 603.4 1206.8 6034 1986-07-10 2024-10-11 01:40:34.000 1986-07-10 2024-10-11 01:40:34 +6035 6035 6036 603.5 1207 6035 1986-07-11 2024-10-11 01:40:35.000 1986-07-11 2024-10-11 01:40:35 +6036 6036 6037 603.6 1207.2 6036 1986-07-12 2024-10-11 01:40:36.000 1986-07-12 2024-10-11 01:40:36 +6037 6037 6038 603.7 1207.4 6037 1986-07-13 2024-10-11 01:40:37.000 1986-07-13 2024-10-11 01:40:37 +6038 6038 6039 603.8 1207.6000000000001 6038 1986-07-14 2024-10-11 01:40:38.000 1986-07-14 2024-10-11 01:40:38 +6039 6039 6040 603.9 1207.8 6039 1986-07-15 2024-10-11 01:40:39.000 1986-07-15 2024-10-11 01:40:39 +6040 6040 6041 604 1208 6040 1986-07-16 2024-10-11 01:40:40.000 1986-07-16 2024-10-11 01:40:40 +6041 6041 6042 604.1 1208.2 6041 1986-07-17 2024-10-11 01:40:41.000 1986-07-17 2024-10-11 01:40:41 +6042 6042 6043 604.2 1208.4 6042 1986-07-18 2024-10-11 01:40:42.000 1986-07-18 2024-10-11 01:40:42 +6043 6043 6044 604.3 1208.6000000000001 6043 1986-07-19 2024-10-11 01:40:43.000 1986-07-19 2024-10-11 01:40:43 +6044 6044 6045 604.4 1208.8 6044 1986-07-20 2024-10-11 01:40:44.000 1986-07-20 2024-10-11 01:40:44 +6045 6045 6046 604.5 1209 6045 1986-07-21 2024-10-11 01:40:45.000 1986-07-21 2024-10-11 01:40:45 +6046 6046 6047 604.6 1209.2 6046 1986-07-22 2024-10-11 01:40:46.000 1986-07-22 2024-10-11 01:40:46 +6047 6047 6048 604.7 1209.4 6047 1986-07-23 2024-10-11 01:40:47.000 1986-07-23 2024-10-11 01:40:47 +6048 6048 6049 604.8 1209.6000000000001 6048 1986-07-24 2024-10-11 01:40:48.000 1986-07-24 2024-10-11 01:40:48 +6049 6049 6050 604.9 1209.8 6049 1986-07-25 2024-10-11 01:40:49.000 1986-07-25 2024-10-11 01:40:49 +6050 6050 6051 605 1210 6050 1986-07-26 2024-10-11 01:40:50.000 1986-07-26 2024-10-11 01:40:50 +6051 6051 6052 605.1 1210.2 6051 1986-07-27 2024-10-11 01:40:51.000 1986-07-27 2024-10-11 01:40:51 +6052 6052 6053 605.2 1210.4 6052 1986-07-28 2024-10-11 01:40:52.000 1986-07-28 2024-10-11 01:40:52 +6053 6053 6054 605.3 1210.6000000000001 6053 1986-07-29 2024-10-11 01:40:53.000 1986-07-29 2024-10-11 01:40:53 +6054 6054 6055 605.4 1210.8 6054 1986-07-30 2024-10-11 01:40:54.000 1986-07-30 2024-10-11 01:40:54 +6055 6055 6056 605.5 1211 6055 1986-07-31 2024-10-11 01:40:55.000 1986-07-31 2024-10-11 01:40:55 +6056 6056 6057 605.6 1211.2 6056 1986-08-01 2024-10-11 01:40:56.000 1986-08-01 2024-10-11 01:40:56 +6057 6057 6058 605.7 1211.4 6057 1986-08-02 2024-10-11 01:40:57.000 1986-08-02 2024-10-11 01:40:57 +6058 6058 6059 605.8 1211.6000000000001 6058 1986-08-03 2024-10-11 01:40:58.000 1986-08-03 2024-10-11 01:40:58 +6059 6059 6060 605.9 1211.8 6059 1986-08-04 2024-10-11 01:40:59.000 1986-08-04 2024-10-11 01:40:59 +6060 6060 6061 606 1212 6060 1986-08-05 2024-10-11 01:41:00.000 1986-08-05 2024-10-11 01:41:00 +6061 6061 6062 606.1 1212.2 6061 1986-08-06 2024-10-11 01:41:01.000 1986-08-06 2024-10-11 01:41:01 +6062 6062 6063 606.2 1212.4 6062 1986-08-07 2024-10-11 01:41:02.000 1986-08-07 2024-10-11 01:41:02 +6063 6063 6064 606.3 1212.6000000000001 6063 1986-08-08 2024-10-11 01:41:03.000 1986-08-08 2024-10-11 01:41:03 +6064 6064 6065 606.4 1212.8 6064 1986-08-09 2024-10-11 01:41:04.000 1986-08-09 2024-10-11 01:41:04 +6065 6065 6066 606.5 1213 6065 1986-08-10 2024-10-11 01:41:05.000 1986-08-10 2024-10-11 01:41:05 +6066 6066 6067 606.6 1213.2 6066 1986-08-11 2024-10-11 01:41:06.000 1986-08-11 2024-10-11 01:41:06 +6067 6067 6068 606.7 1213.4 6067 1986-08-12 2024-10-11 01:41:07.000 1986-08-12 2024-10-11 01:41:07 +6068 6068 6069 606.8 1213.6000000000001 6068 1986-08-13 2024-10-11 01:41:08.000 1986-08-13 2024-10-11 01:41:08 +6069 6069 6070 606.9 1213.8 6069 1986-08-14 2024-10-11 01:41:09.000 1986-08-14 2024-10-11 01:41:09 +6070 6070 6071 607 1214 6070 1986-08-15 2024-10-11 01:41:10.000 1986-08-15 2024-10-11 01:41:10 +6071 6071 6072 607.1 1214.2 6071 1986-08-16 2024-10-11 01:41:11.000 1986-08-16 2024-10-11 01:41:11 +6072 6072 6073 607.2 1214.4 6072 1986-08-17 2024-10-11 01:41:12.000 1986-08-17 2024-10-11 01:41:12 +6073 6073 6074 607.3 1214.6000000000001 6073 1986-08-18 2024-10-11 01:41:13.000 1986-08-18 2024-10-11 01:41:13 +6074 6074 6075 607.4 1214.8 6074 1986-08-19 2024-10-11 01:41:14.000 1986-08-19 2024-10-11 01:41:14 +6075 6075 6076 607.5 1215 6075 1986-08-20 2024-10-11 01:41:15.000 1986-08-20 2024-10-11 01:41:15 +6076 6076 6077 607.6 1215.2 6076 1986-08-21 2024-10-11 01:41:16.000 1986-08-21 2024-10-11 01:41:16 +6077 6077 6078 607.7 1215.4 6077 1986-08-22 2024-10-11 01:41:17.000 1986-08-22 2024-10-11 01:41:17 +6078 6078 6079 607.8 1215.6000000000001 6078 1986-08-23 2024-10-11 01:41:18.000 1986-08-23 2024-10-11 01:41:18 +6079 6079 6080 607.9 1215.8 6079 1986-08-24 2024-10-11 01:41:19.000 1986-08-24 2024-10-11 01:41:19 +6080 6080 6081 608 1216 6080 1986-08-25 2024-10-11 01:41:20.000 1986-08-25 2024-10-11 01:41:20 +6081 6081 6082 608.1 1216.2 6081 1986-08-26 2024-10-11 01:41:21.000 1986-08-26 2024-10-11 01:41:21 +6082 6082 6083 608.2 1216.4 6082 1986-08-27 2024-10-11 01:41:22.000 1986-08-27 2024-10-11 01:41:22 +6083 6083 6084 608.3 1216.6000000000001 6083 1986-08-28 2024-10-11 01:41:23.000 1986-08-28 2024-10-11 01:41:23 +6084 6084 6085 608.4 1216.8 6084 1986-08-29 2024-10-11 01:41:24.000 1986-08-29 2024-10-11 01:41:24 +6085 6085 6086 608.5 1217 6085 1986-08-30 2024-10-11 01:41:25.000 1986-08-30 2024-10-11 01:41:25 +6086 6086 6087 608.6 1217.2 6086 1986-08-31 2024-10-11 01:41:26.000 1986-08-31 2024-10-11 01:41:26 +6087 6087 6088 608.7 1217.4 6087 1986-09-01 2024-10-11 01:41:27.000 1986-09-01 2024-10-11 01:41:27 +6088 6088 6089 608.8 1217.6000000000001 6088 1986-09-02 2024-10-11 01:41:28.000 1986-09-02 2024-10-11 01:41:28 +6089 6089 6090 608.9 1217.8 6089 1986-09-03 2024-10-11 01:41:29.000 1986-09-03 2024-10-11 01:41:29 +6090 6090 6091 609 1218 6090 1986-09-04 2024-10-11 01:41:30.000 1986-09-04 2024-10-11 01:41:30 +6091 6091 6092 609.1 1218.2 6091 1986-09-05 2024-10-11 01:41:31.000 1986-09-05 2024-10-11 01:41:31 +6092 6092 6093 609.2 1218.4 6092 1986-09-06 2024-10-11 01:41:32.000 1986-09-06 2024-10-11 01:41:32 +6093 6093 6094 609.3 1218.6000000000001 6093 1986-09-07 2024-10-11 01:41:33.000 1986-09-07 2024-10-11 01:41:33 +6094 6094 6095 609.4 1218.8 6094 1986-09-08 2024-10-11 01:41:34.000 1986-09-08 2024-10-11 01:41:34 +6095 6095 6096 609.5 1219 6095 1986-09-09 2024-10-11 01:41:35.000 1986-09-09 2024-10-11 01:41:35 +6096 6096 6097 609.6 1219.2 6096 1986-09-10 2024-10-11 01:41:36.000 1986-09-10 2024-10-11 01:41:36 +6097 6097 6098 609.7 1219.4 6097 1986-09-11 2024-10-11 01:41:37.000 1986-09-11 2024-10-11 01:41:37 +6098 6098 6099 609.8 1219.6000000000001 6098 1986-09-12 2024-10-11 01:41:38.000 1986-09-12 2024-10-11 01:41:38 +6099 6099 6100 609.9 1219.8 6099 1986-09-13 2024-10-11 01:41:39.000 1986-09-13 2024-10-11 01:41:39 +6100 6100 6101 610 1220 6100 1986-09-14 2024-10-11 01:41:40.000 1986-09-14 2024-10-11 01:41:40 +6101 6101 6102 610.1 1220.2 6101 1986-09-15 2024-10-11 01:41:41.000 1986-09-15 2024-10-11 01:41:41 +6102 6102 6103 610.2 1220.4 6102 1986-09-16 2024-10-11 01:41:42.000 1986-09-16 2024-10-11 01:41:42 +6103 6103 6104 610.3 1220.6000000000001 6103 1986-09-17 2024-10-11 01:41:43.000 1986-09-17 2024-10-11 01:41:43 +6104 6104 6105 610.4 1220.8 6104 1986-09-18 2024-10-11 01:41:44.000 1986-09-18 2024-10-11 01:41:44 +6105 6105 6106 610.5 1221 6105 1986-09-19 2024-10-11 01:41:45.000 1986-09-19 2024-10-11 01:41:45 +6106 6106 6107 610.6 1221.2 6106 1986-09-20 2024-10-11 01:41:46.000 1986-09-20 2024-10-11 01:41:46 +6107 6107 6108 610.7 1221.4 6107 1986-09-21 2024-10-11 01:41:47.000 1986-09-21 2024-10-11 01:41:47 +6108 6108 6109 610.8 1221.6000000000001 6108 1986-09-22 2024-10-11 01:41:48.000 1986-09-22 2024-10-11 01:41:48 +6109 6109 6110 610.9 1221.8 6109 1986-09-23 2024-10-11 01:41:49.000 1986-09-23 2024-10-11 01:41:49 +6110 6110 6111 611 1222 6110 1986-09-24 2024-10-11 01:41:50.000 1986-09-24 2024-10-11 01:41:50 +6111 6111 6112 611.1 1222.2 6111 1986-09-25 2024-10-11 01:41:51.000 1986-09-25 2024-10-11 01:41:51 +6112 6112 6113 611.2 1222.4 6112 1986-09-26 2024-10-11 01:41:52.000 1986-09-26 2024-10-11 01:41:52 +6113 6113 6114 611.3 1222.6000000000001 6113 1986-09-27 2024-10-11 01:41:53.000 1986-09-27 2024-10-11 01:41:53 +6114 6114 6115 611.4 1222.8 6114 1986-09-28 2024-10-11 01:41:54.000 1986-09-28 2024-10-11 01:41:54 +6115 6115 6116 611.5 1223 6115 1986-09-29 2024-10-11 01:41:55.000 1986-09-29 2024-10-11 01:41:55 +6116 6116 6117 611.6 1223.2 6116 1986-09-30 2024-10-11 01:41:56.000 1986-09-30 2024-10-11 01:41:56 +6117 6117 6118 611.7 1223.4 6117 1986-10-01 2024-10-11 01:41:57.000 1986-10-01 2024-10-11 01:41:57 +6118 6118 6119 611.8 1223.6000000000001 6118 1986-10-02 2024-10-11 01:41:58.000 1986-10-02 2024-10-11 01:41:58 +6119 6119 6120 611.9 1223.8 6119 1986-10-03 2024-10-11 01:41:59.000 1986-10-03 2024-10-11 01:41:59 +6120 6120 6121 612 1224 6120 1986-10-04 2024-10-11 01:42:00.000 1986-10-04 2024-10-11 01:42:00 +6121 6121 6122 612.1 1224.2 6121 1986-10-05 2024-10-11 01:42:01.000 1986-10-05 2024-10-11 01:42:01 +6122 6122 6123 612.2 1224.4 6122 1986-10-06 2024-10-11 01:42:02.000 1986-10-06 2024-10-11 01:42:02 +6123 6123 6124 612.3 1224.6000000000001 6123 1986-10-07 2024-10-11 01:42:03.000 1986-10-07 2024-10-11 01:42:03 +6124 6124 6125 612.4 1224.8 6124 1986-10-08 2024-10-11 01:42:04.000 1986-10-08 2024-10-11 01:42:04 +6125 6125 6126 612.5 1225 6125 1986-10-09 2024-10-11 01:42:05.000 1986-10-09 2024-10-11 01:42:05 +6126 6126 6127 612.6 1225.2 6126 1986-10-10 2024-10-11 01:42:06.000 1986-10-10 2024-10-11 01:42:06 +6127 6127 6128 612.7 1225.4 6127 1986-10-11 2024-10-11 01:42:07.000 1986-10-11 2024-10-11 01:42:07 +6128 6128 6129 612.8 1225.6000000000001 6128 1986-10-12 2024-10-11 01:42:08.000 1986-10-12 2024-10-11 01:42:08 +6129 6129 6130 612.9 1225.8 6129 1986-10-13 2024-10-11 01:42:09.000 1986-10-13 2024-10-11 01:42:09 +6130 6130 6131 613 1226 6130 1986-10-14 2024-10-11 01:42:10.000 1986-10-14 2024-10-11 01:42:10 +6131 6131 6132 613.1 1226.2 6131 1986-10-15 2024-10-11 01:42:11.000 1986-10-15 2024-10-11 01:42:11 +6132 6132 6133 613.2 1226.4 6132 1986-10-16 2024-10-11 01:42:12.000 1986-10-16 2024-10-11 01:42:12 +6133 6133 6134 613.3 1226.6000000000001 6133 1986-10-17 2024-10-11 01:42:13.000 1986-10-17 2024-10-11 01:42:13 +6134 6134 6135 613.4 1226.8 6134 1986-10-18 2024-10-11 01:42:14.000 1986-10-18 2024-10-11 01:42:14 +6135 6135 6136 613.5 1227 6135 1986-10-19 2024-10-11 01:42:15.000 1986-10-19 2024-10-11 01:42:15 +6136 6136 6137 613.6 1227.2 6136 1986-10-20 2024-10-11 01:42:16.000 1986-10-20 2024-10-11 01:42:16 +6137 6137 6138 613.7 1227.4 6137 1986-10-21 2024-10-11 01:42:17.000 1986-10-21 2024-10-11 01:42:17 +6138 6138 6139 613.8 1227.6000000000001 6138 1986-10-22 2024-10-11 01:42:18.000 1986-10-22 2024-10-11 01:42:18 +6139 6139 6140 613.9 1227.8 6139 1986-10-23 2024-10-11 01:42:19.000 1986-10-23 2024-10-11 01:42:19 +6140 6140 6141 614 1228 6140 1986-10-24 2024-10-11 01:42:20.000 1986-10-24 2024-10-11 01:42:20 +6141 6141 6142 614.1 1228.2 6141 1986-10-25 2024-10-11 01:42:21.000 1986-10-25 2024-10-11 01:42:21 +6142 6142 6143 614.2 1228.4 6142 1986-10-26 2024-10-11 01:42:22.000 1986-10-26 2024-10-11 01:42:22 +6143 6143 6144 614.3 1228.6000000000001 6143 1986-10-27 2024-10-11 01:42:23.000 1986-10-27 2024-10-11 01:42:23 +6144 6144 6145 614.4 1228.8000000000002 6144 1986-10-28 2024-10-11 01:42:24.000 1986-10-28 2024-10-11 01:42:24 +6145 6145 6146 614.5 1229 6145 1986-10-29 2024-10-11 01:42:25.000 1986-10-29 2024-10-11 01:42:25 +6146 6146 6147 614.6 1229.2 6146 1986-10-30 2024-10-11 01:42:26.000 1986-10-30 2024-10-11 01:42:26 +6147 6147 6148 614.7 1229.4 6147 1986-10-31 2024-10-11 01:42:27.000 1986-10-31 2024-10-11 01:42:27 +6148 6148 6149 614.8 1229.6000000000001 6148 1986-11-01 2024-10-11 01:42:28.000 1986-11-01 2024-10-11 01:42:28 +6149 6149 6150 614.9 1229.8000000000002 6149 1986-11-02 2024-10-11 01:42:29.000 1986-11-02 2024-10-11 01:42:29 +6150 6150 6151 615 1230 6150 1986-11-03 2024-10-11 01:42:30.000 1986-11-03 2024-10-11 01:42:30 +6151 6151 6152 615.1 1230.2 6151 1986-11-04 2024-10-11 01:42:31.000 1986-11-04 2024-10-11 01:42:31 +6152 6152 6153 615.2 1230.4 6152 1986-11-05 2024-10-11 01:42:32.000 1986-11-05 2024-10-11 01:42:32 +6153 6153 6154 615.3 1230.6000000000001 6153 1986-11-06 2024-10-11 01:42:33.000 1986-11-06 2024-10-11 01:42:33 +6154 6154 6155 615.4 1230.8000000000002 6154 1986-11-07 2024-10-11 01:42:34.000 1986-11-07 2024-10-11 01:42:34 +6155 6155 6156 615.5 1231 6155 1986-11-08 2024-10-11 01:42:35.000 1986-11-08 2024-10-11 01:42:35 +6156 6156 6157 615.6 1231.2 6156 1986-11-09 2024-10-11 01:42:36.000 1986-11-09 2024-10-11 01:42:36 +6157 6157 6158 615.7 1231.4 6157 1986-11-10 2024-10-11 01:42:37.000 1986-11-10 2024-10-11 01:42:37 +6158 6158 6159 615.8 1231.6000000000001 6158 1986-11-11 2024-10-11 01:42:38.000 1986-11-11 2024-10-11 01:42:38 +6159 6159 6160 615.9 1231.8000000000002 6159 1986-11-12 2024-10-11 01:42:39.000 1986-11-12 2024-10-11 01:42:39 +6160 6160 6161 616 1232 6160 1986-11-13 2024-10-11 01:42:40.000 1986-11-13 2024-10-11 01:42:40 +6161 6161 6162 616.1 1232.2 6161 1986-11-14 2024-10-11 01:42:41.000 1986-11-14 2024-10-11 01:42:41 +6162 6162 6163 616.2 1232.4 6162 1986-11-15 2024-10-11 01:42:42.000 1986-11-15 2024-10-11 01:42:42 +6163 6163 6164 616.3 1232.6000000000001 6163 1986-11-16 2024-10-11 01:42:43.000 1986-11-16 2024-10-11 01:42:43 +6164 6164 6165 616.4 1232.8000000000002 6164 1986-11-17 2024-10-11 01:42:44.000 1986-11-17 2024-10-11 01:42:44 +6165 6165 6166 616.5 1233 6165 1986-11-18 2024-10-11 01:42:45.000 1986-11-18 2024-10-11 01:42:45 +6166 6166 6167 616.6 1233.2 6166 1986-11-19 2024-10-11 01:42:46.000 1986-11-19 2024-10-11 01:42:46 +6167 6167 6168 616.7 1233.4 6167 1986-11-20 2024-10-11 01:42:47.000 1986-11-20 2024-10-11 01:42:47 +6168 6168 6169 616.8 1233.6000000000001 6168 1986-11-21 2024-10-11 01:42:48.000 1986-11-21 2024-10-11 01:42:48 +6169 6169 6170 616.9 1233.8000000000002 6169 1986-11-22 2024-10-11 01:42:49.000 1986-11-22 2024-10-11 01:42:49 +6170 6170 6171 617 1234 6170 1986-11-23 2024-10-11 01:42:50.000 1986-11-23 2024-10-11 01:42:50 +6171 6171 6172 617.1 1234.2 6171 1986-11-24 2024-10-11 01:42:51.000 1986-11-24 2024-10-11 01:42:51 +6172 6172 6173 617.2 1234.4 6172 1986-11-25 2024-10-11 01:42:52.000 1986-11-25 2024-10-11 01:42:52 +6173 6173 6174 617.3 1234.6000000000001 6173 1986-11-26 2024-10-11 01:42:53.000 1986-11-26 2024-10-11 01:42:53 +6174 6174 6175 617.4 1234.8000000000002 6174 1986-11-27 2024-10-11 01:42:54.000 1986-11-27 2024-10-11 01:42:54 +6175 6175 6176 617.5 1235 6175 1986-11-28 2024-10-11 01:42:55.000 1986-11-28 2024-10-11 01:42:55 +6176 6176 6177 617.6 1235.2 6176 1986-11-29 2024-10-11 01:42:56.000 1986-11-29 2024-10-11 01:42:56 +6177 6177 6178 617.7 1235.4 6177 1986-11-30 2024-10-11 01:42:57.000 1986-11-30 2024-10-11 01:42:57 +6178 6178 6179 617.8 1235.6000000000001 6178 1986-12-01 2024-10-11 01:42:58.000 1986-12-01 2024-10-11 01:42:58 +6179 6179 6180 617.9 1235.8000000000002 6179 1986-12-02 2024-10-11 01:42:59.000 1986-12-02 2024-10-11 01:42:59 +6180 6180 6181 618 1236 6180 1986-12-03 2024-10-11 01:43:00.000 1986-12-03 2024-10-11 01:43:00 +6181 6181 6182 618.1 1236.2 6181 1986-12-04 2024-10-11 01:43:01.000 1986-12-04 2024-10-11 01:43:01 +6182 6182 6183 618.2 1236.4 6182 1986-12-05 2024-10-11 01:43:02.000 1986-12-05 2024-10-11 01:43:02 +6183 6183 6184 618.3 1236.6000000000001 6183 1986-12-06 2024-10-11 01:43:03.000 1986-12-06 2024-10-11 01:43:03 +6184 6184 6185 618.4 1236.8000000000002 6184 1986-12-07 2024-10-11 01:43:04.000 1986-12-07 2024-10-11 01:43:04 +6185 6185 6186 618.5 1237 6185 1986-12-08 2024-10-11 01:43:05.000 1986-12-08 2024-10-11 01:43:05 +6186 6186 6187 618.6 1237.2 6186 1986-12-09 2024-10-11 01:43:06.000 1986-12-09 2024-10-11 01:43:06 +6187 6187 6188 618.7 1237.4 6187 1986-12-10 2024-10-11 01:43:07.000 1986-12-10 2024-10-11 01:43:07 +6188 6188 6189 618.8 1237.6000000000001 6188 1986-12-11 2024-10-11 01:43:08.000 1986-12-11 2024-10-11 01:43:08 +6189 6189 6190 618.9 1237.8000000000002 6189 1986-12-12 2024-10-11 01:43:09.000 1986-12-12 2024-10-11 01:43:09 +6190 6190 6191 619 1238 6190 1986-12-13 2024-10-11 01:43:10.000 1986-12-13 2024-10-11 01:43:10 +6191 6191 6192 619.1 1238.2 6191 1986-12-14 2024-10-11 01:43:11.000 1986-12-14 2024-10-11 01:43:11 +6192 6192 6193 619.2 1238.4 6192 1986-12-15 2024-10-11 01:43:12.000 1986-12-15 2024-10-11 01:43:12 +6193 6193 6194 619.3 1238.6000000000001 6193 1986-12-16 2024-10-11 01:43:13.000 1986-12-16 2024-10-11 01:43:13 +6194 6194 6195 619.4 1238.8000000000002 6194 1986-12-17 2024-10-11 01:43:14.000 1986-12-17 2024-10-11 01:43:14 +6195 6195 6196 619.5 1239 6195 1986-12-18 2024-10-11 01:43:15.000 1986-12-18 2024-10-11 01:43:15 +6196 6196 6197 619.6 1239.2 6196 1986-12-19 2024-10-11 01:43:16.000 1986-12-19 2024-10-11 01:43:16 +6197 6197 6198 619.7 1239.4 6197 1986-12-20 2024-10-11 01:43:17.000 1986-12-20 2024-10-11 01:43:17 +6198 6198 6199 619.8 1239.6000000000001 6198 1986-12-21 2024-10-11 01:43:18.000 1986-12-21 2024-10-11 01:43:18 +6199 6199 6200 619.9 1239.8000000000002 6199 1986-12-22 2024-10-11 01:43:19.000 1986-12-22 2024-10-11 01:43:19 +6200 6200 6201 620 1240 6200 1986-12-23 2024-10-11 01:43:20.000 1986-12-23 2024-10-11 01:43:20 +6201 6201 6202 620.1 1240.2 6201 1986-12-24 2024-10-11 01:43:21.000 1986-12-24 2024-10-11 01:43:21 +6202 6202 6203 620.2 1240.4 6202 1986-12-25 2024-10-11 01:43:22.000 1986-12-25 2024-10-11 01:43:22 +6203 6203 6204 620.3 1240.6000000000001 6203 1986-12-26 2024-10-11 01:43:23.000 1986-12-26 2024-10-11 01:43:23 +6204 6204 6205 620.4 1240.8000000000002 6204 1986-12-27 2024-10-11 01:43:24.000 1986-12-27 2024-10-11 01:43:24 +6205 6205 6206 620.5 1241 6205 1986-12-28 2024-10-11 01:43:25.000 1986-12-28 2024-10-11 01:43:25 +6206 6206 6207 620.6 1241.2 6206 1986-12-29 2024-10-11 01:43:26.000 1986-12-29 2024-10-11 01:43:26 +6207 6207 6208 620.7 1241.4 6207 1986-12-30 2024-10-11 01:43:27.000 1986-12-30 2024-10-11 01:43:27 +6208 6208 6209 620.8 1241.6000000000001 6208 1986-12-31 2024-10-11 01:43:28.000 1986-12-31 2024-10-11 01:43:28 +6209 6209 6210 620.9 1241.8000000000002 6209 1987-01-01 2024-10-11 01:43:29.000 1987-01-01 2024-10-11 01:43:29 +6210 6210 6211 621 1242 6210 1987-01-02 2024-10-11 01:43:30.000 1987-01-02 2024-10-11 01:43:30 +6211 6211 6212 621.1 1242.2 6211 1987-01-03 2024-10-11 01:43:31.000 1987-01-03 2024-10-11 01:43:31 +6212 6212 6213 621.2 1242.4 6212 1987-01-04 2024-10-11 01:43:32.000 1987-01-04 2024-10-11 01:43:32 +6213 6213 6214 621.3 1242.6000000000001 6213 1987-01-05 2024-10-11 01:43:33.000 1987-01-05 2024-10-11 01:43:33 +6214 6214 6215 621.4 1242.8000000000002 6214 1987-01-06 2024-10-11 01:43:34.000 1987-01-06 2024-10-11 01:43:34 +6215 6215 6216 621.5 1243 6215 1987-01-07 2024-10-11 01:43:35.000 1987-01-07 2024-10-11 01:43:35 +6216 6216 6217 621.6 1243.2 6216 1987-01-08 2024-10-11 01:43:36.000 1987-01-08 2024-10-11 01:43:36 +6217 6217 6218 621.7 1243.4 6217 1987-01-09 2024-10-11 01:43:37.000 1987-01-09 2024-10-11 01:43:37 +6218 6218 6219 621.8 1243.6000000000001 6218 1987-01-10 2024-10-11 01:43:38.000 1987-01-10 2024-10-11 01:43:38 +6219 6219 6220 621.9 1243.8000000000002 6219 1987-01-11 2024-10-11 01:43:39.000 1987-01-11 2024-10-11 01:43:39 +6220 6220 6221 622 1244 6220 1987-01-12 2024-10-11 01:43:40.000 1987-01-12 2024-10-11 01:43:40 +6221 6221 6222 622.1 1244.2 6221 1987-01-13 2024-10-11 01:43:41.000 1987-01-13 2024-10-11 01:43:41 +6222 6222 6223 622.2 1244.4 6222 1987-01-14 2024-10-11 01:43:42.000 1987-01-14 2024-10-11 01:43:42 +6223 6223 6224 622.3 1244.6000000000001 6223 1987-01-15 2024-10-11 01:43:43.000 1987-01-15 2024-10-11 01:43:43 +6224 6224 6225 622.4 1244.8000000000002 6224 1987-01-16 2024-10-11 01:43:44.000 1987-01-16 2024-10-11 01:43:44 +6225 6225 6226 622.5 1245 6225 1987-01-17 2024-10-11 01:43:45.000 1987-01-17 2024-10-11 01:43:45 +6226 6226 6227 622.6 1245.2 6226 1987-01-18 2024-10-11 01:43:46.000 1987-01-18 2024-10-11 01:43:46 +6227 6227 6228 622.7 1245.4 6227 1987-01-19 2024-10-11 01:43:47.000 1987-01-19 2024-10-11 01:43:47 +6228 6228 6229 622.8 1245.6000000000001 6228 1987-01-20 2024-10-11 01:43:48.000 1987-01-20 2024-10-11 01:43:48 +6229 6229 6230 622.9 1245.8000000000002 6229 1987-01-21 2024-10-11 01:43:49.000 1987-01-21 2024-10-11 01:43:49 +6230 6230 6231 623 1246 6230 1987-01-22 2024-10-11 01:43:50.000 1987-01-22 2024-10-11 01:43:50 +6231 6231 6232 623.1 1246.2 6231 1987-01-23 2024-10-11 01:43:51.000 1987-01-23 2024-10-11 01:43:51 +6232 6232 6233 623.2 1246.4 6232 1987-01-24 2024-10-11 01:43:52.000 1987-01-24 2024-10-11 01:43:52 +6233 6233 6234 623.3 1246.6000000000001 6233 1987-01-25 2024-10-11 01:43:53.000 1987-01-25 2024-10-11 01:43:53 +6234 6234 6235 623.4 1246.8000000000002 6234 1987-01-26 2024-10-11 01:43:54.000 1987-01-26 2024-10-11 01:43:54 +6235 6235 6236 623.5 1247 6235 1987-01-27 2024-10-11 01:43:55.000 1987-01-27 2024-10-11 01:43:55 +6236 6236 6237 623.6 1247.2 6236 1987-01-28 2024-10-11 01:43:56.000 1987-01-28 2024-10-11 01:43:56 +6237 6237 6238 623.7 1247.4 6237 1987-01-29 2024-10-11 01:43:57.000 1987-01-29 2024-10-11 01:43:57 +6238 6238 6239 623.8 1247.6000000000001 6238 1987-01-30 2024-10-11 01:43:58.000 1987-01-30 2024-10-11 01:43:58 +6239 6239 6240 623.9 1247.8000000000002 6239 1987-01-31 2024-10-11 01:43:59.000 1987-01-31 2024-10-11 01:43:59 +6240 6240 6241 624 1248 6240 1987-02-01 2024-10-11 01:44:00.000 1987-02-01 2024-10-11 01:44:00 +6241 6241 6242 624.1 1248.2 6241 1987-02-02 2024-10-11 01:44:01.000 1987-02-02 2024-10-11 01:44:01 +6242 6242 6243 624.2 1248.4 6242 1987-02-03 2024-10-11 01:44:02.000 1987-02-03 2024-10-11 01:44:02 +6243 6243 6244 624.3 1248.6000000000001 6243 1987-02-04 2024-10-11 01:44:03.000 1987-02-04 2024-10-11 01:44:03 +6244 6244 6245 624.4 1248.8000000000002 6244 1987-02-05 2024-10-11 01:44:04.000 1987-02-05 2024-10-11 01:44:04 +6245 6245 6246 624.5 1249 6245 1987-02-06 2024-10-11 01:44:05.000 1987-02-06 2024-10-11 01:44:05 +6246 6246 6247 624.6 1249.2 6246 1987-02-07 2024-10-11 01:44:06.000 1987-02-07 2024-10-11 01:44:06 +6247 6247 6248 624.7 1249.4 6247 1987-02-08 2024-10-11 01:44:07.000 1987-02-08 2024-10-11 01:44:07 +6248 6248 6249 624.8 1249.6000000000001 6248 1987-02-09 2024-10-11 01:44:08.000 1987-02-09 2024-10-11 01:44:08 +6249 6249 6250 624.9 1249.8000000000002 6249 1987-02-10 2024-10-11 01:44:09.000 1987-02-10 2024-10-11 01:44:09 +6250 6250 6251 625 1250 6250 1987-02-11 2024-10-11 01:44:10.000 1987-02-11 2024-10-11 01:44:10 +6251 6251 6252 625.1 1250.2 6251 1987-02-12 2024-10-11 01:44:11.000 1987-02-12 2024-10-11 01:44:11 +6252 6252 6253 625.2 1250.4 6252 1987-02-13 2024-10-11 01:44:12.000 1987-02-13 2024-10-11 01:44:12 +6253 6253 6254 625.3 1250.6000000000001 6253 1987-02-14 2024-10-11 01:44:13.000 1987-02-14 2024-10-11 01:44:13 +6254 6254 6255 625.4 1250.8000000000002 6254 1987-02-15 2024-10-11 01:44:14.000 1987-02-15 2024-10-11 01:44:14 +6255 6255 6256 625.5 1251 6255 1987-02-16 2024-10-11 01:44:15.000 1987-02-16 2024-10-11 01:44:15 +6256 6256 6257 625.6 1251.2 6256 1987-02-17 2024-10-11 01:44:16.000 1987-02-17 2024-10-11 01:44:16 +6257 6257 6258 625.7 1251.4 6257 1987-02-18 2024-10-11 01:44:17.000 1987-02-18 2024-10-11 01:44:17 +6258 6258 6259 625.8 1251.6000000000001 6258 1987-02-19 2024-10-11 01:44:18.000 1987-02-19 2024-10-11 01:44:18 +6259 6259 6260 625.9 1251.8000000000002 6259 1987-02-20 2024-10-11 01:44:19.000 1987-02-20 2024-10-11 01:44:19 +6260 6260 6261 626 1252 6260 1987-02-21 2024-10-11 01:44:20.000 1987-02-21 2024-10-11 01:44:20 +6261 6261 6262 626.1 1252.2 6261 1987-02-22 2024-10-11 01:44:21.000 1987-02-22 2024-10-11 01:44:21 +6262 6262 6263 626.2 1252.4 6262 1987-02-23 2024-10-11 01:44:22.000 1987-02-23 2024-10-11 01:44:22 +6263 6263 6264 626.3 1252.6000000000001 6263 1987-02-24 2024-10-11 01:44:23.000 1987-02-24 2024-10-11 01:44:23 +6264 6264 6265 626.4 1252.8000000000002 6264 1987-02-25 2024-10-11 01:44:24.000 1987-02-25 2024-10-11 01:44:24 +6265 6265 6266 626.5 1253 6265 1987-02-26 2024-10-11 01:44:25.000 1987-02-26 2024-10-11 01:44:25 +6266 6266 6267 626.6 1253.2 6266 1987-02-27 2024-10-11 01:44:26.000 1987-02-27 2024-10-11 01:44:26 +6267 6267 6268 626.7 1253.4 6267 1987-02-28 2024-10-11 01:44:27.000 1987-02-28 2024-10-11 01:44:27 +6268 6268 6269 626.8 1253.6000000000001 6268 1987-03-01 2024-10-11 01:44:28.000 1987-03-01 2024-10-11 01:44:28 +6269 6269 6270 626.9 1253.8000000000002 6269 1987-03-02 2024-10-11 01:44:29.000 1987-03-02 2024-10-11 01:44:29 +6270 6270 6271 627 1254 6270 1987-03-03 2024-10-11 01:44:30.000 1987-03-03 2024-10-11 01:44:30 +6271 6271 6272 627.1 1254.2 6271 1987-03-04 2024-10-11 01:44:31.000 1987-03-04 2024-10-11 01:44:31 +6272 6272 6273 627.2 1254.4 6272 1987-03-05 2024-10-11 01:44:32.000 1987-03-05 2024-10-11 01:44:32 +6273 6273 6274 627.3 1254.6000000000001 6273 1987-03-06 2024-10-11 01:44:33.000 1987-03-06 2024-10-11 01:44:33 +6274 6274 6275 627.4 1254.8000000000002 6274 1987-03-07 2024-10-11 01:44:34.000 1987-03-07 2024-10-11 01:44:34 +6275 6275 6276 627.5 1255 6275 1987-03-08 2024-10-11 01:44:35.000 1987-03-08 2024-10-11 01:44:35 +6276 6276 6277 627.6 1255.2 6276 1987-03-09 2024-10-11 01:44:36.000 1987-03-09 2024-10-11 01:44:36 +6277 6277 6278 627.7 1255.4 6277 1987-03-10 2024-10-11 01:44:37.000 1987-03-10 2024-10-11 01:44:37 +6278 6278 6279 627.8 1255.6000000000001 6278 1987-03-11 2024-10-11 01:44:38.000 1987-03-11 2024-10-11 01:44:38 +6279 6279 6280 627.9 1255.8000000000002 6279 1987-03-12 2024-10-11 01:44:39.000 1987-03-12 2024-10-11 01:44:39 +6280 6280 6281 628 1256 6280 1987-03-13 2024-10-11 01:44:40.000 1987-03-13 2024-10-11 01:44:40 +6281 6281 6282 628.1 1256.2 6281 1987-03-14 2024-10-11 01:44:41.000 1987-03-14 2024-10-11 01:44:41 +6282 6282 6283 628.2 1256.4 6282 1987-03-15 2024-10-11 01:44:42.000 1987-03-15 2024-10-11 01:44:42 +6283 6283 6284 628.3 1256.6000000000001 6283 1987-03-16 2024-10-11 01:44:43.000 1987-03-16 2024-10-11 01:44:43 +6284 6284 6285 628.4 1256.8000000000002 6284 1987-03-17 2024-10-11 01:44:44.000 1987-03-17 2024-10-11 01:44:44 +6285 6285 6286 628.5 1257 6285 1987-03-18 2024-10-11 01:44:45.000 1987-03-18 2024-10-11 01:44:45 +6286 6286 6287 628.6 1257.2 6286 1987-03-19 2024-10-11 01:44:46.000 1987-03-19 2024-10-11 01:44:46 +6287 6287 6288 628.7 1257.4 6287 1987-03-20 2024-10-11 01:44:47.000 1987-03-20 2024-10-11 01:44:47 +6288 6288 6289 628.8 1257.6000000000001 6288 1987-03-21 2024-10-11 01:44:48.000 1987-03-21 2024-10-11 01:44:48 +6289 6289 6290 628.9 1257.8000000000002 6289 1987-03-22 2024-10-11 01:44:49.000 1987-03-22 2024-10-11 01:44:49 +6290 6290 6291 629 1258 6290 1987-03-23 2024-10-11 01:44:50.000 1987-03-23 2024-10-11 01:44:50 +6291 6291 6292 629.1 1258.2 6291 1987-03-24 2024-10-11 01:44:51.000 1987-03-24 2024-10-11 01:44:51 +6292 6292 6293 629.2 1258.4 6292 1987-03-25 2024-10-11 01:44:52.000 1987-03-25 2024-10-11 01:44:52 +6293 6293 6294 629.3 1258.6000000000001 6293 1987-03-26 2024-10-11 01:44:53.000 1987-03-26 2024-10-11 01:44:53 +6294 6294 6295 629.4 1258.8000000000002 6294 1987-03-27 2024-10-11 01:44:54.000 1987-03-27 2024-10-11 01:44:54 +6295 6295 6296 629.5 1259 6295 1987-03-28 2024-10-11 01:44:55.000 1987-03-28 2024-10-11 01:44:55 +6296 6296 6297 629.6 1259.2 6296 1987-03-29 2024-10-11 01:44:56.000 1987-03-29 2024-10-11 01:44:56 +6297 6297 6298 629.7 1259.4 6297 1987-03-30 2024-10-11 01:44:57.000 1987-03-30 2024-10-11 01:44:57 +6298 6298 6299 629.8 1259.6000000000001 6298 1987-03-31 2024-10-11 01:44:58.000 1987-03-31 2024-10-11 01:44:58 +6299 6299 6300 629.9 1259.8000000000002 6299 1987-04-01 2024-10-11 01:44:59.000 1987-04-01 2024-10-11 01:44:59 +6300 6300 6301 630 1260 6300 1987-04-02 2024-10-11 01:45:00.000 1987-04-02 2024-10-11 01:45:00 +6301 6301 6302 630.1 1260.2 6301 1987-04-03 2024-10-11 01:45:01.000 1987-04-03 2024-10-11 01:45:01 +6302 6302 6303 630.2 1260.4 6302 1987-04-04 2024-10-11 01:45:02.000 1987-04-04 2024-10-11 01:45:02 +6303 6303 6304 630.3 1260.6000000000001 6303 1987-04-05 2024-10-11 01:45:03.000 1987-04-05 2024-10-11 01:45:03 +6304 6304 6305 630.4 1260.8000000000002 6304 1987-04-06 2024-10-11 01:45:04.000 1987-04-06 2024-10-11 01:45:04 +6305 6305 6306 630.5 1261 6305 1987-04-07 2024-10-11 01:45:05.000 1987-04-07 2024-10-11 01:45:05 +6306 6306 6307 630.6 1261.2 6306 1987-04-08 2024-10-11 01:45:06.000 1987-04-08 2024-10-11 01:45:06 +6307 6307 6308 630.7 1261.4 6307 1987-04-09 2024-10-11 01:45:07.000 1987-04-09 2024-10-11 01:45:07 +6308 6308 6309 630.8 1261.6000000000001 6308 1987-04-10 2024-10-11 01:45:08.000 1987-04-10 2024-10-11 01:45:08 +6309 6309 6310 630.9 1261.8000000000002 6309 1987-04-11 2024-10-11 01:45:09.000 1987-04-11 2024-10-11 01:45:09 +6310 6310 6311 631 1262 6310 1987-04-12 2024-10-11 01:45:10.000 1987-04-12 2024-10-11 01:45:10 +6311 6311 6312 631.1 1262.2 6311 1987-04-13 2024-10-11 01:45:11.000 1987-04-13 2024-10-11 01:45:11 +6312 6312 6313 631.2 1262.4 6312 1987-04-14 2024-10-11 01:45:12.000 1987-04-14 2024-10-11 01:45:12 +6313 6313 6314 631.3 1262.6000000000001 6313 1987-04-15 2024-10-11 01:45:13.000 1987-04-15 2024-10-11 01:45:13 +6314 6314 6315 631.4 1262.8000000000002 6314 1987-04-16 2024-10-11 01:45:14.000 1987-04-16 2024-10-11 01:45:14 +6315 6315 6316 631.5 1263 6315 1987-04-17 2024-10-11 01:45:15.000 1987-04-17 2024-10-11 01:45:15 +6316 6316 6317 631.6 1263.2 6316 1987-04-18 2024-10-11 01:45:16.000 1987-04-18 2024-10-11 01:45:16 +6317 6317 6318 631.7 1263.4 6317 1987-04-19 2024-10-11 01:45:17.000 1987-04-19 2024-10-11 01:45:17 +6318 6318 6319 631.8 1263.6000000000001 6318 1987-04-20 2024-10-11 01:45:18.000 1987-04-20 2024-10-11 01:45:18 +6319 6319 6320 631.9 1263.8000000000002 6319 1987-04-21 2024-10-11 01:45:19.000 1987-04-21 2024-10-11 01:45:19 +6320 6320 6321 632 1264 6320 1987-04-22 2024-10-11 01:45:20.000 1987-04-22 2024-10-11 01:45:20 +6321 6321 6322 632.1 1264.2 6321 1987-04-23 2024-10-11 01:45:21.000 1987-04-23 2024-10-11 01:45:21 +6322 6322 6323 632.2 1264.4 6322 1987-04-24 2024-10-11 01:45:22.000 1987-04-24 2024-10-11 01:45:22 +6323 6323 6324 632.3 1264.6000000000001 6323 1987-04-25 2024-10-11 01:45:23.000 1987-04-25 2024-10-11 01:45:23 +6324 6324 6325 632.4 1264.8000000000002 6324 1987-04-26 2024-10-11 01:45:24.000 1987-04-26 2024-10-11 01:45:24 +6325 6325 6326 632.5 1265 6325 1987-04-27 2024-10-11 01:45:25.000 1987-04-27 2024-10-11 01:45:25 +6326 6326 6327 632.6 1265.2 6326 1987-04-28 2024-10-11 01:45:26.000 1987-04-28 2024-10-11 01:45:26 +6327 6327 6328 632.7 1265.4 6327 1987-04-29 2024-10-11 01:45:27.000 1987-04-29 2024-10-11 01:45:27 +6328 6328 6329 632.8 1265.6000000000001 6328 1987-04-30 2024-10-11 01:45:28.000 1987-04-30 2024-10-11 01:45:28 +6329 6329 6330 632.9 1265.8000000000002 6329 1987-05-01 2024-10-11 01:45:29.000 1987-05-01 2024-10-11 01:45:29 +6330 6330 6331 633 1266 6330 1987-05-02 2024-10-11 01:45:30.000 1987-05-02 2024-10-11 01:45:30 +6331 6331 6332 633.1 1266.2 6331 1987-05-03 2024-10-11 01:45:31.000 1987-05-03 2024-10-11 01:45:31 +6332 6332 6333 633.2 1266.4 6332 1987-05-04 2024-10-11 01:45:32.000 1987-05-04 2024-10-11 01:45:32 +6333 6333 6334 633.3 1266.6000000000001 6333 1987-05-05 2024-10-11 01:45:33.000 1987-05-05 2024-10-11 01:45:33 +6334 6334 6335 633.4 1266.8000000000002 6334 1987-05-06 2024-10-11 01:45:34.000 1987-05-06 2024-10-11 01:45:34 +6335 6335 6336 633.5 1267 6335 1987-05-07 2024-10-11 01:45:35.000 1987-05-07 2024-10-11 01:45:35 +6336 6336 6337 633.6 1267.2 6336 1987-05-08 2024-10-11 01:45:36.000 1987-05-08 2024-10-11 01:45:36 +6337 6337 6338 633.7 1267.4 6337 1987-05-09 2024-10-11 01:45:37.000 1987-05-09 2024-10-11 01:45:37 +6338 6338 6339 633.8 1267.6000000000001 6338 1987-05-10 2024-10-11 01:45:38.000 1987-05-10 2024-10-11 01:45:38 +6339 6339 6340 633.9 1267.8000000000002 6339 1987-05-11 2024-10-11 01:45:39.000 1987-05-11 2024-10-11 01:45:39 +6340 6340 6341 634 1268 6340 1987-05-12 2024-10-11 01:45:40.000 1987-05-12 2024-10-11 01:45:40 +6341 6341 6342 634.1 1268.2 6341 1987-05-13 2024-10-11 01:45:41.000 1987-05-13 2024-10-11 01:45:41 +6342 6342 6343 634.2 1268.4 6342 1987-05-14 2024-10-11 01:45:42.000 1987-05-14 2024-10-11 01:45:42 +6343 6343 6344 634.3 1268.6000000000001 6343 1987-05-15 2024-10-11 01:45:43.000 1987-05-15 2024-10-11 01:45:43 +6344 6344 6345 634.4 1268.8000000000002 6344 1987-05-16 2024-10-11 01:45:44.000 1987-05-16 2024-10-11 01:45:44 +6345 6345 6346 634.5 1269 6345 1987-05-17 2024-10-11 01:45:45.000 1987-05-17 2024-10-11 01:45:45 +6346 6346 6347 634.6 1269.2 6346 1987-05-18 2024-10-11 01:45:46.000 1987-05-18 2024-10-11 01:45:46 +6347 6347 6348 634.7 1269.4 6347 1987-05-19 2024-10-11 01:45:47.000 1987-05-19 2024-10-11 01:45:47 +6348 6348 6349 634.8 1269.6000000000001 6348 1987-05-20 2024-10-11 01:45:48.000 1987-05-20 2024-10-11 01:45:48 +6349 6349 6350 634.9 1269.8000000000002 6349 1987-05-21 2024-10-11 01:45:49.000 1987-05-21 2024-10-11 01:45:49 +6350 6350 6351 635 1270 6350 1987-05-22 2024-10-11 01:45:50.000 1987-05-22 2024-10-11 01:45:50 +6351 6351 6352 635.1 1270.2 6351 1987-05-23 2024-10-11 01:45:51.000 1987-05-23 2024-10-11 01:45:51 +6352 6352 6353 635.2 1270.4 6352 1987-05-24 2024-10-11 01:45:52.000 1987-05-24 2024-10-11 01:45:52 +6353 6353 6354 635.3 1270.6000000000001 6353 1987-05-25 2024-10-11 01:45:53.000 1987-05-25 2024-10-11 01:45:53 +6354 6354 6355 635.4 1270.8000000000002 6354 1987-05-26 2024-10-11 01:45:54.000 1987-05-26 2024-10-11 01:45:54 +6355 6355 6356 635.5 1271 6355 1987-05-27 2024-10-11 01:45:55.000 1987-05-27 2024-10-11 01:45:55 +6356 6356 6357 635.6 1271.2 6356 1987-05-28 2024-10-11 01:45:56.000 1987-05-28 2024-10-11 01:45:56 +6357 6357 6358 635.7 1271.4 6357 1987-05-29 2024-10-11 01:45:57.000 1987-05-29 2024-10-11 01:45:57 +6358 6358 6359 635.8 1271.6000000000001 6358 1987-05-30 2024-10-11 01:45:58.000 1987-05-30 2024-10-11 01:45:58 +6359 6359 6360 635.9 1271.8000000000002 6359 1987-05-31 2024-10-11 01:45:59.000 1987-05-31 2024-10-11 01:45:59 +6360 6360 6361 636 1272 6360 1987-06-01 2024-10-11 01:46:00.000 1987-06-01 2024-10-11 01:46:00 +6361 6361 6362 636.1 1272.2 6361 1987-06-02 2024-10-11 01:46:01.000 1987-06-02 2024-10-11 01:46:01 +6362 6362 6363 636.2 1272.4 6362 1987-06-03 2024-10-11 01:46:02.000 1987-06-03 2024-10-11 01:46:02 +6363 6363 6364 636.3 1272.6000000000001 6363 1987-06-04 2024-10-11 01:46:03.000 1987-06-04 2024-10-11 01:46:03 +6364 6364 6365 636.4 1272.8000000000002 6364 1987-06-05 2024-10-11 01:46:04.000 1987-06-05 2024-10-11 01:46:04 +6365 6365 6366 636.5 1273 6365 1987-06-06 2024-10-11 01:46:05.000 1987-06-06 2024-10-11 01:46:05 +6366 6366 6367 636.6 1273.2 6366 1987-06-07 2024-10-11 01:46:06.000 1987-06-07 2024-10-11 01:46:06 +6367 6367 6368 636.7 1273.4 6367 1987-06-08 2024-10-11 01:46:07.000 1987-06-08 2024-10-11 01:46:07 +6368 6368 6369 636.8 1273.6000000000001 6368 1987-06-09 2024-10-11 01:46:08.000 1987-06-09 2024-10-11 01:46:08 +6369 6369 6370 636.9 1273.8000000000002 6369 1987-06-10 2024-10-11 01:46:09.000 1987-06-10 2024-10-11 01:46:09 +6370 6370 6371 637 1274 6370 1987-06-11 2024-10-11 01:46:10.000 1987-06-11 2024-10-11 01:46:10 +6371 6371 6372 637.1 1274.2 6371 1987-06-12 2024-10-11 01:46:11.000 1987-06-12 2024-10-11 01:46:11 +6372 6372 6373 637.2 1274.4 6372 1987-06-13 2024-10-11 01:46:12.000 1987-06-13 2024-10-11 01:46:12 +6373 6373 6374 637.3 1274.6000000000001 6373 1987-06-14 2024-10-11 01:46:13.000 1987-06-14 2024-10-11 01:46:13 +6374 6374 6375 637.4 1274.8000000000002 6374 1987-06-15 2024-10-11 01:46:14.000 1987-06-15 2024-10-11 01:46:14 +6375 6375 6376 637.5 1275 6375 1987-06-16 2024-10-11 01:46:15.000 1987-06-16 2024-10-11 01:46:15 +6376 6376 6377 637.6 1275.2 6376 1987-06-17 2024-10-11 01:46:16.000 1987-06-17 2024-10-11 01:46:16 +6377 6377 6378 637.7 1275.4 6377 1987-06-18 2024-10-11 01:46:17.000 1987-06-18 2024-10-11 01:46:17 +6378 6378 6379 637.8 1275.6000000000001 6378 1987-06-19 2024-10-11 01:46:18.000 1987-06-19 2024-10-11 01:46:18 +6379 6379 6380 637.9 1275.8000000000002 6379 1987-06-20 2024-10-11 01:46:19.000 1987-06-20 2024-10-11 01:46:19 +6380 6380 6381 638 1276 6380 1987-06-21 2024-10-11 01:46:20.000 1987-06-21 2024-10-11 01:46:20 +6381 6381 6382 638.1 1276.2 6381 1987-06-22 2024-10-11 01:46:21.000 1987-06-22 2024-10-11 01:46:21 +6382 6382 6383 638.2 1276.4 6382 1987-06-23 2024-10-11 01:46:22.000 1987-06-23 2024-10-11 01:46:22 +6383 6383 6384 638.3 1276.6000000000001 6383 1987-06-24 2024-10-11 01:46:23.000 1987-06-24 2024-10-11 01:46:23 +6384 6384 6385 638.4 1276.8000000000002 6384 1987-06-25 2024-10-11 01:46:24.000 1987-06-25 2024-10-11 01:46:24 +6385 6385 6386 638.5 1277 6385 1987-06-26 2024-10-11 01:46:25.000 1987-06-26 2024-10-11 01:46:25 +6386 6386 6387 638.6 1277.2 6386 1987-06-27 2024-10-11 01:46:26.000 1987-06-27 2024-10-11 01:46:26 +6387 6387 6388 638.7 1277.4 6387 1987-06-28 2024-10-11 01:46:27.000 1987-06-28 2024-10-11 01:46:27 +6388 6388 6389 638.8 1277.6000000000001 6388 1987-06-29 2024-10-11 01:46:28.000 1987-06-29 2024-10-11 01:46:28 +6389 6389 6390 638.9 1277.8000000000002 6389 1987-06-30 2024-10-11 01:46:29.000 1987-06-30 2024-10-11 01:46:29 +6390 6390 6391 639 1278 6390 1987-07-01 2024-10-11 01:46:30.000 1987-07-01 2024-10-11 01:46:30 +6391 6391 6392 639.1 1278.2 6391 1987-07-02 2024-10-11 01:46:31.000 1987-07-02 2024-10-11 01:46:31 +6392 6392 6393 639.2 1278.4 6392 1987-07-03 2024-10-11 01:46:32.000 1987-07-03 2024-10-11 01:46:32 +6393 6393 6394 639.3 1278.6000000000001 6393 1987-07-04 2024-10-11 01:46:33.000 1987-07-04 2024-10-11 01:46:33 +6394 6394 6395 639.4 1278.8000000000002 6394 1987-07-05 2024-10-11 01:46:34.000 1987-07-05 2024-10-11 01:46:34 +6395 6395 6396 639.5 1279 6395 1987-07-06 2024-10-11 01:46:35.000 1987-07-06 2024-10-11 01:46:35 +6396 6396 6397 639.6 1279.2 6396 1987-07-07 2024-10-11 01:46:36.000 1987-07-07 2024-10-11 01:46:36 +6397 6397 6398 639.7 1279.4 6397 1987-07-08 2024-10-11 01:46:37.000 1987-07-08 2024-10-11 01:46:37 +6398 6398 6399 639.8 1279.6000000000001 6398 1987-07-09 2024-10-11 01:46:38.000 1987-07-09 2024-10-11 01:46:38 +6399 6399 6400 639.9 1279.8000000000002 6399 1987-07-10 2024-10-11 01:46:39.000 1987-07-10 2024-10-11 01:46:39 +6400 6400 6401 640 1280 6400 1987-07-11 2024-10-11 01:46:40.000 1987-07-11 2024-10-11 01:46:40 +6401 6401 6402 640.1 1280.2 6401 1987-07-12 2024-10-11 01:46:41.000 1987-07-12 2024-10-11 01:46:41 +6402 6402 6403 640.2 1280.4 6402 1987-07-13 2024-10-11 01:46:42.000 1987-07-13 2024-10-11 01:46:42 +6403 6403 6404 640.3 1280.6000000000001 6403 1987-07-14 2024-10-11 01:46:43.000 1987-07-14 2024-10-11 01:46:43 +6404 6404 6405 640.4 1280.8000000000002 6404 1987-07-15 2024-10-11 01:46:44.000 1987-07-15 2024-10-11 01:46:44 +6405 6405 6406 640.5 1281 6405 1987-07-16 2024-10-11 01:46:45.000 1987-07-16 2024-10-11 01:46:45 +6406 6406 6407 640.6 1281.2 6406 1987-07-17 2024-10-11 01:46:46.000 1987-07-17 2024-10-11 01:46:46 +6407 6407 6408 640.7 1281.4 6407 1987-07-18 2024-10-11 01:46:47.000 1987-07-18 2024-10-11 01:46:47 +6408 6408 6409 640.8 1281.6000000000001 6408 1987-07-19 2024-10-11 01:46:48.000 1987-07-19 2024-10-11 01:46:48 +6409 6409 6410 640.9 1281.8000000000002 6409 1987-07-20 2024-10-11 01:46:49.000 1987-07-20 2024-10-11 01:46:49 +6410 6410 6411 641 1282 6410 1987-07-21 2024-10-11 01:46:50.000 1987-07-21 2024-10-11 01:46:50 +6411 6411 6412 641.1 1282.2 6411 1987-07-22 2024-10-11 01:46:51.000 1987-07-22 2024-10-11 01:46:51 +6412 6412 6413 641.2 1282.4 6412 1987-07-23 2024-10-11 01:46:52.000 1987-07-23 2024-10-11 01:46:52 +6413 6413 6414 641.3 1282.6000000000001 6413 1987-07-24 2024-10-11 01:46:53.000 1987-07-24 2024-10-11 01:46:53 +6414 6414 6415 641.4 1282.8000000000002 6414 1987-07-25 2024-10-11 01:46:54.000 1987-07-25 2024-10-11 01:46:54 +6415 6415 6416 641.5 1283 6415 1987-07-26 2024-10-11 01:46:55.000 1987-07-26 2024-10-11 01:46:55 +6416 6416 6417 641.6 1283.2 6416 1987-07-27 2024-10-11 01:46:56.000 1987-07-27 2024-10-11 01:46:56 +6417 6417 6418 641.7 1283.4 6417 1987-07-28 2024-10-11 01:46:57.000 1987-07-28 2024-10-11 01:46:57 +6418 6418 6419 641.8 1283.6000000000001 6418 1987-07-29 2024-10-11 01:46:58.000 1987-07-29 2024-10-11 01:46:58 +6419 6419 6420 641.9 1283.8000000000002 6419 1987-07-30 2024-10-11 01:46:59.000 1987-07-30 2024-10-11 01:46:59 +6420 6420 6421 642 1284 6420 1987-07-31 2024-10-11 01:47:00.000 1987-07-31 2024-10-11 01:47:00 +6421 6421 6422 642.1 1284.2 6421 1987-08-01 2024-10-11 01:47:01.000 1987-08-01 2024-10-11 01:47:01 +6422 6422 6423 642.2 1284.4 6422 1987-08-02 2024-10-11 01:47:02.000 1987-08-02 2024-10-11 01:47:02 +6423 6423 6424 642.3 1284.6000000000001 6423 1987-08-03 2024-10-11 01:47:03.000 1987-08-03 2024-10-11 01:47:03 +6424 6424 6425 642.4 1284.8000000000002 6424 1987-08-04 2024-10-11 01:47:04.000 1987-08-04 2024-10-11 01:47:04 +6425 6425 6426 642.5 1285 6425 1987-08-05 2024-10-11 01:47:05.000 1987-08-05 2024-10-11 01:47:05 +6426 6426 6427 642.6 1285.2 6426 1987-08-06 2024-10-11 01:47:06.000 1987-08-06 2024-10-11 01:47:06 +6427 6427 6428 642.7 1285.4 6427 1987-08-07 2024-10-11 01:47:07.000 1987-08-07 2024-10-11 01:47:07 +6428 6428 6429 642.8 1285.6000000000001 6428 1987-08-08 2024-10-11 01:47:08.000 1987-08-08 2024-10-11 01:47:08 +6429 6429 6430 642.9 1285.8000000000002 6429 1987-08-09 2024-10-11 01:47:09.000 1987-08-09 2024-10-11 01:47:09 +6430 6430 6431 643 1286 6430 1987-08-10 2024-10-11 01:47:10.000 1987-08-10 2024-10-11 01:47:10 +6431 6431 6432 643.1 1286.2 6431 1987-08-11 2024-10-11 01:47:11.000 1987-08-11 2024-10-11 01:47:11 +6432 6432 6433 643.2 1286.4 6432 1987-08-12 2024-10-11 01:47:12.000 1987-08-12 2024-10-11 01:47:12 +6433 6433 6434 643.3 1286.6000000000001 6433 1987-08-13 2024-10-11 01:47:13.000 1987-08-13 2024-10-11 01:47:13 +6434 6434 6435 643.4 1286.8000000000002 6434 1987-08-14 2024-10-11 01:47:14.000 1987-08-14 2024-10-11 01:47:14 +6435 6435 6436 643.5 1287 6435 1987-08-15 2024-10-11 01:47:15.000 1987-08-15 2024-10-11 01:47:15 +6436 6436 6437 643.6 1287.2 6436 1987-08-16 2024-10-11 01:47:16.000 1987-08-16 2024-10-11 01:47:16 +6437 6437 6438 643.7 1287.4 6437 1987-08-17 2024-10-11 01:47:17.000 1987-08-17 2024-10-11 01:47:17 +6438 6438 6439 643.8 1287.6000000000001 6438 1987-08-18 2024-10-11 01:47:18.000 1987-08-18 2024-10-11 01:47:18 +6439 6439 6440 643.9 1287.8000000000002 6439 1987-08-19 2024-10-11 01:47:19.000 1987-08-19 2024-10-11 01:47:19 +6440 6440 6441 644 1288 6440 1987-08-20 2024-10-11 01:47:20.000 1987-08-20 2024-10-11 01:47:20 +6441 6441 6442 644.1 1288.2 6441 1987-08-21 2024-10-11 01:47:21.000 1987-08-21 2024-10-11 01:47:21 +6442 6442 6443 644.2 1288.4 6442 1987-08-22 2024-10-11 01:47:22.000 1987-08-22 2024-10-11 01:47:22 +6443 6443 6444 644.3 1288.6000000000001 6443 1987-08-23 2024-10-11 01:47:23.000 1987-08-23 2024-10-11 01:47:23 +6444 6444 6445 644.4 1288.8000000000002 6444 1987-08-24 2024-10-11 01:47:24.000 1987-08-24 2024-10-11 01:47:24 +6445 6445 6446 644.5 1289 6445 1987-08-25 2024-10-11 01:47:25.000 1987-08-25 2024-10-11 01:47:25 +6446 6446 6447 644.6 1289.2 6446 1987-08-26 2024-10-11 01:47:26.000 1987-08-26 2024-10-11 01:47:26 +6447 6447 6448 644.7 1289.4 6447 1987-08-27 2024-10-11 01:47:27.000 1987-08-27 2024-10-11 01:47:27 +6448 6448 6449 644.8 1289.6000000000001 6448 1987-08-28 2024-10-11 01:47:28.000 1987-08-28 2024-10-11 01:47:28 +6449 6449 6450 644.9 1289.8000000000002 6449 1987-08-29 2024-10-11 01:47:29.000 1987-08-29 2024-10-11 01:47:29 +6450 6450 6451 645 1290 6450 1987-08-30 2024-10-11 01:47:30.000 1987-08-30 2024-10-11 01:47:30 +6451 6451 6452 645.1 1290.2 6451 1987-08-31 2024-10-11 01:47:31.000 1987-08-31 2024-10-11 01:47:31 +6452 6452 6453 645.2 1290.4 6452 1987-09-01 2024-10-11 01:47:32.000 1987-09-01 2024-10-11 01:47:32 +6453 6453 6454 645.3 1290.6000000000001 6453 1987-09-02 2024-10-11 01:47:33.000 1987-09-02 2024-10-11 01:47:33 +6454 6454 6455 645.4 1290.8000000000002 6454 1987-09-03 2024-10-11 01:47:34.000 1987-09-03 2024-10-11 01:47:34 +6455 6455 6456 645.5 1291 6455 1987-09-04 2024-10-11 01:47:35.000 1987-09-04 2024-10-11 01:47:35 +6456 6456 6457 645.6 1291.2 6456 1987-09-05 2024-10-11 01:47:36.000 1987-09-05 2024-10-11 01:47:36 +6457 6457 6458 645.7 1291.4 6457 1987-09-06 2024-10-11 01:47:37.000 1987-09-06 2024-10-11 01:47:37 +6458 6458 6459 645.8 1291.6000000000001 6458 1987-09-07 2024-10-11 01:47:38.000 1987-09-07 2024-10-11 01:47:38 +6459 6459 6460 645.9 1291.8000000000002 6459 1987-09-08 2024-10-11 01:47:39.000 1987-09-08 2024-10-11 01:47:39 +6460 6460 6461 646 1292 6460 1987-09-09 2024-10-11 01:47:40.000 1987-09-09 2024-10-11 01:47:40 +6461 6461 6462 646.1 1292.2 6461 1987-09-10 2024-10-11 01:47:41.000 1987-09-10 2024-10-11 01:47:41 +6462 6462 6463 646.2 1292.4 6462 1987-09-11 2024-10-11 01:47:42.000 1987-09-11 2024-10-11 01:47:42 +6463 6463 6464 646.3 1292.6000000000001 6463 1987-09-12 2024-10-11 01:47:43.000 1987-09-12 2024-10-11 01:47:43 +6464 6464 6465 646.4 1292.8000000000002 6464 1987-09-13 2024-10-11 01:47:44.000 1987-09-13 2024-10-11 01:47:44 +6465 6465 6466 646.5 1293 6465 1987-09-14 2024-10-11 01:47:45.000 1987-09-14 2024-10-11 01:47:45 +6466 6466 6467 646.6 1293.2 6466 1987-09-15 2024-10-11 01:47:46.000 1987-09-15 2024-10-11 01:47:46 +6467 6467 6468 646.7 1293.4 6467 1987-09-16 2024-10-11 01:47:47.000 1987-09-16 2024-10-11 01:47:47 +6468 6468 6469 646.8 1293.6000000000001 6468 1987-09-17 2024-10-11 01:47:48.000 1987-09-17 2024-10-11 01:47:48 +6469 6469 6470 646.9 1293.8000000000002 6469 1987-09-18 2024-10-11 01:47:49.000 1987-09-18 2024-10-11 01:47:49 +6470 6470 6471 647 1294 6470 1987-09-19 2024-10-11 01:47:50.000 1987-09-19 2024-10-11 01:47:50 +6471 6471 6472 647.1 1294.2 6471 1987-09-20 2024-10-11 01:47:51.000 1987-09-20 2024-10-11 01:47:51 +6472 6472 6473 647.2 1294.4 6472 1987-09-21 2024-10-11 01:47:52.000 1987-09-21 2024-10-11 01:47:52 +6473 6473 6474 647.3 1294.6000000000001 6473 1987-09-22 2024-10-11 01:47:53.000 1987-09-22 2024-10-11 01:47:53 +6474 6474 6475 647.4 1294.8000000000002 6474 1987-09-23 2024-10-11 01:47:54.000 1987-09-23 2024-10-11 01:47:54 +6475 6475 6476 647.5 1295 6475 1987-09-24 2024-10-11 01:47:55.000 1987-09-24 2024-10-11 01:47:55 +6476 6476 6477 647.6 1295.2 6476 1987-09-25 2024-10-11 01:47:56.000 1987-09-25 2024-10-11 01:47:56 +6477 6477 6478 647.7 1295.4 6477 1987-09-26 2024-10-11 01:47:57.000 1987-09-26 2024-10-11 01:47:57 +6478 6478 6479 647.8 1295.6000000000001 6478 1987-09-27 2024-10-11 01:47:58.000 1987-09-27 2024-10-11 01:47:58 +6479 6479 6480 647.9 1295.8000000000002 6479 1987-09-28 2024-10-11 01:47:59.000 1987-09-28 2024-10-11 01:47:59 +6480 6480 6481 648 1296 6480 1987-09-29 2024-10-11 01:48:00.000 1987-09-29 2024-10-11 01:48:00 +6481 6481 6482 648.1 1296.2 6481 1987-09-30 2024-10-11 01:48:01.000 1987-09-30 2024-10-11 01:48:01 +6482 6482 6483 648.2 1296.4 6482 1987-10-01 2024-10-11 01:48:02.000 1987-10-01 2024-10-11 01:48:02 +6483 6483 6484 648.3 1296.6000000000001 6483 1987-10-02 2024-10-11 01:48:03.000 1987-10-02 2024-10-11 01:48:03 +6484 6484 6485 648.4 1296.8000000000002 6484 1987-10-03 2024-10-11 01:48:04.000 1987-10-03 2024-10-11 01:48:04 +6485 6485 6486 648.5 1297 6485 1987-10-04 2024-10-11 01:48:05.000 1987-10-04 2024-10-11 01:48:05 +6486 6486 6487 648.6 1297.2 6486 1987-10-05 2024-10-11 01:48:06.000 1987-10-05 2024-10-11 01:48:06 +6487 6487 6488 648.7 1297.4 6487 1987-10-06 2024-10-11 01:48:07.000 1987-10-06 2024-10-11 01:48:07 +6488 6488 6489 648.8 1297.6000000000001 6488 1987-10-07 2024-10-11 01:48:08.000 1987-10-07 2024-10-11 01:48:08 +6489 6489 6490 648.9 1297.8000000000002 6489 1987-10-08 2024-10-11 01:48:09.000 1987-10-08 2024-10-11 01:48:09 +6490 6490 6491 649 1298 6490 1987-10-09 2024-10-11 01:48:10.000 1987-10-09 2024-10-11 01:48:10 +6491 6491 6492 649.1 1298.2 6491 1987-10-10 2024-10-11 01:48:11.000 1987-10-10 2024-10-11 01:48:11 +6492 6492 6493 649.2 1298.4 6492 1987-10-11 2024-10-11 01:48:12.000 1987-10-11 2024-10-11 01:48:12 +6493 6493 6494 649.3 1298.6000000000001 6493 1987-10-12 2024-10-11 01:48:13.000 1987-10-12 2024-10-11 01:48:13 +6494 6494 6495 649.4 1298.8000000000002 6494 1987-10-13 2024-10-11 01:48:14.000 1987-10-13 2024-10-11 01:48:14 +6495 6495 6496 649.5 1299 6495 1987-10-14 2024-10-11 01:48:15.000 1987-10-14 2024-10-11 01:48:15 +6496 6496 6497 649.6 1299.2 6496 1987-10-15 2024-10-11 01:48:16.000 1987-10-15 2024-10-11 01:48:16 +6497 6497 6498 649.7 1299.4 6497 1987-10-16 2024-10-11 01:48:17.000 1987-10-16 2024-10-11 01:48:17 +6498 6498 6499 649.8 1299.6000000000001 6498 1987-10-17 2024-10-11 01:48:18.000 1987-10-17 2024-10-11 01:48:18 +6499 6499 6500 649.9 1299.8000000000002 6499 1987-10-18 2024-10-11 01:48:19.000 1987-10-18 2024-10-11 01:48:19 +6500 6500 6501 650 1300 6500 1987-10-19 2024-10-11 01:48:20.000 1987-10-19 2024-10-11 01:48:20 +6501 6501 6502 650.1 1300.2 6501 1987-10-20 2024-10-11 01:48:21.000 1987-10-20 2024-10-11 01:48:21 +6502 6502 6503 650.2 1300.4 6502 1987-10-21 2024-10-11 01:48:22.000 1987-10-21 2024-10-11 01:48:22 +6503 6503 6504 650.3 1300.6000000000001 6503 1987-10-22 2024-10-11 01:48:23.000 1987-10-22 2024-10-11 01:48:23 +6504 6504 6505 650.4 1300.8000000000002 6504 1987-10-23 2024-10-11 01:48:24.000 1987-10-23 2024-10-11 01:48:24 +6505 6505 6506 650.5 1301 6505 1987-10-24 2024-10-11 01:48:25.000 1987-10-24 2024-10-11 01:48:25 +6506 6506 6507 650.6 1301.2 6506 1987-10-25 2024-10-11 01:48:26.000 1987-10-25 2024-10-11 01:48:26 +6507 6507 6508 650.7 1301.4 6507 1987-10-26 2024-10-11 01:48:27.000 1987-10-26 2024-10-11 01:48:27 +6508 6508 6509 650.8 1301.6000000000001 6508 1987-10-27 2024-10-11 01:48:28.000 1987-10-27 2024-10-11 01:48:28 +6509 6509 6510 650.9 1301.8000000000002 6509 1987-10-28 2024-10-11 01:48:29.000 1987-10-28 2024-10-11 01:48:29 +6510 6510 6511 651 1302 6510 1987-10-29 2024-10-11 01:48:30.000 1987-10-29 2024-10-11 01:48:30 +6511 6511 6512 651.1 1302.2 6511 1987-10-30 2024-10-11 01:48:31.000 1987-10-30 2024-10-11 01:48:31 +6512 6512 6513 651.2 1302.4 6512 1987-10-31 2024-10-11 01:48:32.000 1987-10-31 2024-10-11 01:48:32 +6513 6513 6514 651.3 1302.6000000000001 6513 1987-11-01 2024-10-11 01:48:33.000 1987-11-01 2024-10-11 01:48:33 +6514 6514 6515 651.4 1302.8000000000002 6514 1987-11-02 2024-10-11 01:48:34.000 1987-11-02 2024-10-11 01:48:34 +6515 6515 6516 651.5 1303 6515 1987-11-03 2024-10-11 01:48:35.000 1987-11-03 2024-10-11 01:48:35 +6516 6516 6517 651.6 1303.2 6516 1987-11-04 2024-10-11 01:48:36.000 1987-11-04 2024-10-11 01:48:36 +6517 6517 6518 651.7 1303.4 6517 1987-11-05 2024-10-11 01:48:37.000 1987-11-05 2024-10-11 01:48:37 +6518 6518 6519 651.8 1303.6000000000001 6518 1987-11-06 2024-10-11 01:48:38.000 1987-11-06 2024-10-11 01:48:38 +6519 6519 6520 651.9 1303.8000000000002 6519 1987-11-07 2024-10-11 01:48:39.000 1987-11-07 2024-10-11 01:48:39 +6520 6520 6521 652 1304 6520 1987-11-08 2024-10-11 01:48:40.000 1987-11-08 2024-10-11 01:48:40 +6521 6521 6522 652.1 1304.2 6521 1987-11-09 2024-10-11 01:48:41.000 1987-11-09 2024-10-11 01:48:41 +6522 6522 6523 652.2 1304.4 6522 1987-11-10 2024-10-11 01:48:42.000 1987-11-10 2024-10-11 01:48:42 +6523 6523 6524 652.3 1304.6000000000001 6523 1987-11-11 2024-10-11 01:48:43.000 1987-11-11 2024-10-11 01:48:43 +6524 6524 6525 652.4 1304.8000000000002 6524 1987-11-12 2024-10-11 01:48:44.000 1987-11-12 2024-10-11 01:48:44 +6525 6525 6526 652.5 1305 6525 1987-11-13 2024-10-11 01:48:45.000 1987-11-13 2024-10-11 01:48:45 +6526 6526 6527 652.6 1305.2 6526 1987-11-14 2024-10-11 01:48:46.000 1987-11-14 2024-10-11 01:48:46 +6527 6527 6528 652.7 1305.4 6527 1987-11-15 2024-10-11 01:48:47.000 1987-11-15 2024-10-11 01:48:47 +6528 6528 6529 652.8 1305.6000000000001 6528 1987-11-16 2024-10-11 01:48:48.000 1987-11-16 2024-10-11 01:48:48 +6529 6529 6530 652.9 1305.8000000000002 6529 1987-11-17 2024-10-11 01:48:49.000 1987-11-17 2024-10-11 01:48:49 +6530 6530 6531 653 1306 6530 1987-11-18 2024-10-11 01:48:50.000 1987-11-18 2024-10-11 01:48:50 +6531 6531 6532 653.1 1306.2 6531 1987-11-19 2024-10-11 01:48:51.000 1987-11-19 2024-10-11 01:48:51 +6532 6532 6533 653.2 1306.4 6532 1987-11-20 2024-10-11 01:48:52.000 1987-11-20 2024-10-11 01:48:52 +6533 6533 6534 653.3 1306.6000000000001 6533 1987-11-21 2024-10-11 01:48:53.000 1987-11-21 2024-10-11 01:48:53 +6534 6534 6535 653.4 1306.8000000000002 6534 1987-11-22 2024-10-11 01:48:54.000 1987-11-22 2024-10-11 01:48:54 +6535 6535 6536 653.5 1307 6535 1987-11-23 2024-10-11 01:48:55.000 1987-11-23 2024-10-11 01:48:55 +6536 6536 6537 653.6 1307.2 6536 1987-11-24 2024-10-11 01:48:56.000 1987-11-24 2024-10-11 01:48:56 +6537 6537 6538 653.7 1307.4 6537 1987-11-25 2024-10-11 01:48:57.000 1987-11-25 2024-10-11 01:48:57 +6538 6538 6539 653.8 1307.6000000000001 6538 1987-11-26 2024-10-11 01:48:58.000 1987-11-26 2024-10-11 01:48:58 +6539 6539 6540 653.9 1307.8000000000002 6539 1987-11-27 2024-10-11 01:48:59.000 1987-11-27 2024-10-11 01:48:59 +6540 6540 6541 654 1308 6540 1987-11-28 2024-10-11 01:49:00.000 1987-11-28 2024-10-11 01:49:00 +6541 6541 6542 654.1 1308.2 6541 1987-11-29 2024-10-11 01:49:01.000 1987-11-29 2024-10-11 01:49:01 +6542 6542 6543 654.2 1308.4 6542 1987-11-30 2024-10-11 01:49:02.000 1987-11-30 2024-10-11 01:49:02 +6543 6543 6544 654.3 1308.6000000000001 6543 1987-12-01 2024-10-11 01:49:03.000 1987-12-01 2024-10-11 01:49:03 +6544 6544 6545 654.4 1308.8000000000002 6544 1987-12-02 2024-10-11 01:49:04.000 1987-12-02 2024-10-11 01:49:04 +6545 6545 6546 654.5 1309 6545 1987-12-03 2024-10-11 01:49:05.000 1987-12-03 2024-10-11 01:49:05 +6546 6546 6547 654.6 1309.2 6546 1987-12-04 2024-10-11 01:49:06.000 1987-12-04 2024-10-11 01:49:06 +6547 6547 6548 654.7 1309.4 6547 1987-12-05 2024-10-11 01:49:07.000 1987-12-05 2024-10-11 01:49:07 +6548 6548 6549 654.8 1309.6000000000001 6548 1987-12-06 2024-10-11 01:49:08.000 1987-12-06 2024-10-11 01:49:08 +6549 6549 6550 654.9 1309.8000000000002 6549 1987-12-07 2024-10-11 01:49:09.000 1987-12-07 2024-10-11 01:49:09 +6550 6550 6551 655 1310 6550 1987-12-08 2024-10-11 01:49:10.000 1987-12-08 2024-10-11 01:49:10 +6551 6551 6552 655.1 1310.2 6551 1987-12-09 2024-10-11 01:49:11.000 1987-12-09 2024-10-11 01:49:11 +6552 6552 6553 655.2 1310.4 6552 1987-12-10 2024-10-11 01:49:12.000 1987-12-10 2024-10-11 01:49:12 +6553 6553 6554 655.3 1310.6000000000001 6553 1987-12-11 2024-10-11 01:49:13.000 1987-12-11 2024-10-11 01:49:13 +6554 6554 6555 655.4 1310.8000000000002 6554 1987-12-12 2024-10-11 01:49:14.000 1987-12-12 2024-10-11 01:49:14 +6555 6555 6556 655.5 1311 6555 1987-12-13 2024-10-11 01:49:15.000 1987-12-13 2024-10-11 01:49:15 +6556 6556 6557 655.6 1311.2 6556 1987-12-14 2024-10-11 01:49:16.000 1987-12-14 2024-10-11 01:49:16 +6557 6557 6558 655.7 1311.4 6557 1987-12-15 2024-10-11 01:49:17.000 1987-12-15 2024-10-11 01:49:17 +6558 6558 6559 655.8 1311.6000000000001 6558 1987-12-16 2024-10-11 01:49:18.000 1987-12-16 2024-10-11 01:49:18 +6559 6559 6560 655.9 1311.8000000000002 6559 1987-12-17 2024-10-11 01:49:19.000 1987-12-17 2024-10-11 01:49:19 +6560 6560 6561 656 1312 6560 1987-12-18 2024-10-11 01:49:20.000 1987-12-18 2024-10-11 01:49:20 +6561 6561 6562 656.1 1312.2 6561 1987-12-19 2024-10-11 01:49:21.000 1987-12-19 2024-10-11 01:49:21 +6562 6562 6563 656.2 1312.4 6562 1987-12-20 2024-10-11 01:49:22.000 1987-12-20 2024-10-11 01:49:22 +6563 6563 6564 656.3 1312.6000000000001 6563 1987-12-21 2024-10-11 01:49:23.000 1987-12-21 2024-10-11 01:49:23 +6564 6564 6565 656.4 1312.8000000000002 6564 1987-12-22 2024-10-11 01:49:24.000 1987-12-22 2024-10-11 01:49:24 +6565 6565 6566 656.5 1313 6565 1987-12-23 2024-10-11 01:49:25.000 1987-12-23 2024-10-11 01:49:25 +6566 6566 6567 656.6 1313.2 6566 1987-12-24 2024-10-11 01:49:26.000 1987-12-24 2024-10-11 01:49:26 +6567 6567 6568 656.7 1313.4 6567 1987-12-25 2024-10-11 01:49:27.000 1987-12-25 2024-10-11 01:49:27 +6568 6568 6569 656.8 1313.6000000000001 6568 1987-12-26 2024-10-11 01:49:28.000 1987-12-26 2024-10-11 01:49:28 +6569 6569 6570 656.9 1313.8000000000002 6569 1987-12-27 2024-10-11 01:49:29.000 1987-12-27 2024-10-11 01:49:29 +6570 6570 6571 657 1314 6570 1987-12-28 2024-10-11 01:49:30.000 1987-12-28 2024-10-11 01:49:30 +6571 6571 6572 657.1 1314.2 6571 1987-12-29 2024-10-11 01:49:31.000 1987-12-29 2024-10-11 01:49:31 +6572 6572 6573 657.2 1314.4 6572 1987-12-30 2024-10-11 01:49:32.000 1987-12-30 2024-10-11 01:49:32 +6573 6573 6574 657.3 1314.6000000000001 6573 1987-12-31 2024-10-11 01:49:33.000 1987-12-31 2024-10-11 01:49:33 +6574 6574 6575 657.4 1314.8000000000002 6574 1988-01-01 2024-10-11 01:49:34.000 1988-01-01 2024-10-11 01:49:34 +6575 6575 6576 657.5 1315 6575 1988-01-02 2024-10-11 01:49:35.000 1988-01-02 2024-10-11 01:49:35 +6576 6576 6577 657.6 1315.2 6576 1988-01-03 2024-10-11 01:49:36.000 1988-01-03 2024-10-11 01:49:36 +6577 6577 6578 657.7 1315.4 6577 1988-01-04 2024-10-11 01:49:37.000 1988-01-04 2024-10-11 01:49:37 +6578 6578 6579 657.8 1315.6000000000001 6578 1988-01-05 2024-10-11 01:49:38.000 1988-01-05 2024-10-11 01:49:38 +6579 6579 6580 657.9 1315.8000000000002 6579 1988-01-06 2024-10-11 01:49:39.000 1988-01-06 2024-10-11 01:49:39 +6580 6580 6581 658 1316 6580 1988-01-07 2024-10-11 01:49:40.000 1988-01-07 2024-10-11 01:49:40 +6581 6581 6582 658.1 1316.2 6581 1988-01-08 2024-10-11 01:49:41.000 1988-01-08 2024-10-11 01:49:41 +6582 6582 6583 658.2 1316.4 6582 1988-01-09 2024-10-11 01:49:42.000 1988-01-09 2024-10-11 01:49:42 +6583 6583 6584 658.3 1316.6000000000001 6583 1988-01-10 2024-10-11 01:49:43.000 1988-01-10 2024-10-11 01:49:43 +6584 6584 6585 658.4 1316.8000000000002 6584 1988-01-11 2024-10-11 01:49:44.000 1988-01-11 2024-10-11 01:49:44 +6585 6585 6586 658.5 1317 6585 1988-01-12 2024-10-11 01:49:45.000 1988-01-12 2024-10-11 01:49:45 +6586 6586 6587 658.6 1317.2 6586 1988-01-13 2024-10-11 01:49:46.000 1988-01-13 2024-10-11 01:49:46 +6587 6587 6588 658.7 1317.4 6587 1988-01-14 2024-10-11 01:49:47.000 1988-01-14 2024-10-11 01:49:47 +6588 6588 6589 658.8 1317.6000000000001 6588 1988-01-15 2024-10-11 01:49:48.000 1988-01-15 2024-10-11 01:49:48 +6589 6589 6590 658.9 1317.8000000000002 6589 1988-01-16 2024-10-11 01:49:49.000 1988-01-16 2024-10-11 01:49:49 +6590 6590 6591 659 1318 6590 1988-01-17 2024-10-11 01:49:50.000 1988-01-17 2024-10-11 01:49:50 +6591 6591 6592 659.1 1318.2 6591 1988-01-18 2024-10-11 01:49:51.000 1988-01-18 2024-10-11 01:49:51 +6592 6592 6593 659.2 1318.4 6592 1988-01-19 2024-10-11 01:49:52.000 1988-01-19 2024-10-11 01:49:52 +6593 6593 6594 659.3 1318.6000000000001 6593 1988-01-20 2024-10-11 01:49:53.000 1988-01-20 2024-10-11 01:49:53 +6594 6594 6595 659.4 1318.8000000000002 6594 1988-01-21 2024-10-11 01:49:54.000 1988-01-21 2024-10-11 01:49:54 +6595 6595 6596 659.5 1319 6595 1988-01-22 2024-10-11 01:49:55.000 1988-01-22 2024-10-11 01:49:55 +6596 6596 6597 659.6 1319.2 6596 1988-01-23 2024-10-11 01:49:56.000 1988-01-23 2024-10-11 01:49:56 +6597 6597 6598 659.7 1319.4 6597 1988-01-24 2024-10-11 01:49:57.000 1988-01-24 2024-10-11 01:49:57 +6598 6598 6599 659.8 1319.6000000000001 6598 1988-01-25 2024-10-11 01:49:58.000 1988-01-25 2024-10-11 01:49:58 +6599 6599 6600 659.9 1319.8000000000002 6599 1988-01-26 2024-10-11 01:49:59.000 1988-01-26 2024-10-11 01:49:59 +6600 6600 6601 660 1320 6600 1988-01-27 2024-10-11 01:50:00.000 1988-01-27 2024-10-11 01:50:00 +6601 6601 6602 660.1 1320.2 6601 1988-01-28 2024-10-11 01:50:01.000 1988-01-28 2024-10-11 01:50:01 +6602 6602 6603 660.2 1320.4 6602 1988-01-29 2024-10-11 01:50:02.000 1988-01-29 2024-10-11 01:50:02 +6603 6603 6604 660.3 1320.6000000000001 6603 1988-01-30 2024-10-11 01:50:03.000 1988-01-30 2024-10-11 01:50:03 +6604 6604 6605 660.4 1320.8000000000002 6604 1988-01-31 2024-10-11 01:50:04.000 1988-01-31 2024-10-11 01:50:04 +6605 6605 6606 660.5 1321 6605 1988-02-01 2024-10-11 01:50:05.000 1988-02-01 2024-10-11 01:50:05 +6606 6606 6607 660.6 1321.2 6606 1988-02-02 2024-10-11 01:50:06.000 1988-02-02 2024-10-11 01:50:06 +6607 6607 6608 660.7 1321.4 6607 1988-02-03 2024-10-11 01:50:07.000 1988-02-03 2024-10-11 01:50:07 +6608 6608 6609 660.8 1321.6000000000001 6608 1988-02-04 2024-10-11 01:50:08.000 1988-02-04 2024-10-11 01:50:08 +6609 6609 6610 660.9 1321.8000000000002 6609 1988-02-05 2024-10-11 01:50:09.000 1988-02-05 2024-10-11 01:50:09 +6610 6610 6611 661 1322 6610 1988-02-06 2024-10-11 01:50:10.000 1988-02-06 2024-10-11 01:50:10 +6611 6611 6612 661.1 1322.2 6611 1988-02-07 2024-10-11 01:50:11.000 1988-02-07 2024-10-11 01:50:11 +6612 6612 6613 661.2 1322.4 6612 1988-02-08 2024-10-11 01:50:12.000 1988-02-08 2024-10-11 01:50:12 +6613 6613 6614 661.3 1322.6000000000001 6613 1988-02-09 2024-10-11 01:50:13.000 1988-02-09 2024-10-11 01:50:13 +6614 6614 6615 661.4 1322.8000000000002 6614 1988-02-10 2024-10-11 01:50:14.000 1988-02-10 2024-10-11 01:50:14 +6615 6615 6616 661.5 1323 6615 1988-02-11 2024-10-11 01:50:15.000 1988-02-11 2024-10-11 01:50:15 +6616 6616 6617 661.6 1323.2 6616 1988-02-12 2024-10-11 01:50:16.000 1988-02-12 2024-10-11 01:50:16 +6617 6617 6618 661.7 1323.4 6617 1988-02-13 2024-10-11 01:50:17.000 1988-02-13 2024-10-11 01:50:17 +6618 6618 6619 661.8 1323.6000000000001 6618 1988-02-14 2024-10-11 01:50:18.000 1988-02-14 2024-10-11 01:50:18 +6619 6619 6620 661.9 1323.8000000000002 6619 1988-02-15 2024-10-11 01:50:19.000 1988-02-15 2024-10-11 01:50:19 +6620 6620 6621 662 1324 6620 1988-02-16 2024-10-11 01:50:20.000 1988-02-16 2024-10-11 01:50:20 +6621 6621 6622 662.1 1324.2 6621 1988-02-17 2024-10-11 01:50:21.000 1988-02-17 2024-10-11 01:50:21 +6622 6622 6623 662.2 1324.4 6622 1988-02-18 2024-10-11 01:50:22.000 1988-02-18 2024-10-11 01:50:22 +6623 6623 6624 662.3 1324.6000000000001 6623 1988-02-19 2024-10-11 01:50:23.000 1988-02-19 2024-10-11 01:50:23 +6624 6624 6625 662.4 1324.8000000000002 6624 1988-02-20 2024-10-11 01:50:24.000 1988-02-20 2024-10-11 01:50:24 +6625 6625 6626 662.5 1325 6625 1988-02-21 2024-10-11 01:50:25.000 1988-02-21 2024-10-11 01:50:25 +6626 6626 6627 662.6 1325.2 6626 1988-02-22 2024-10-11 01:50:26.000 1988-02-22 2024-10-11 01:50:26 +6627 6627 6628 662.7 1325.4 6627 1988-02-23 2024-10-11 01:50:27.000 1988-02-23 2024-10-11 01:50:27 +6628 6628 6629 662.8 1325.6000000000001 6628 1988-02-24 2024-10-11 01:50:28.000 1988-02-24 2024-10-11 01:50:28 +6629 6629 6630 662.9 1325.8000000000002 6629 1988-02-25 2024-10-11 01:50:29.000 1988-02-25 2024-10-11 01:50:29 +6630 6630 6631 663 1326 6630 1988-02-26 2024-10-11 01:50:30.000 1988-02-26 2024-10-11 01:50:30 +6631 6631 6632 663.1 1326.2 6631 1988-02-27 2024-10-11 01:50:31.000 1988-02-27 2024-10-11 01:50:31 +6632 6632 6633 663.2 1326.4 6632 1988-02-28 2024-10-11 01:50:32.000 1988-02-28 2024-10-11 01:50:32 +6633 6633 6634 663.3 1326.6000000000001 6633 1988-02-29 2024-10-11 01:50:33.000 1988-02-29 2024-10-11 01:50:33 +6634 6634 6635 663.4 1326.8000000000002 6634 1988-03-01 2024-10-11 01:50:34.000 1988-03-01 2024-10-11 01:50:34 +6635 6635 6636 663.5 1327 6635 1988-03-02 2024-10-11 01:50:35.000 1988-03-02 2024-10-11 01:50:35 +6636 6636 6637 663.6 1327.2 6636 1988-03-03 2024-10-11 01:50:36.000 1988-03-03 2024-10-11 01:50:36 +6637 6637 6638 663.7 1327.4 6637 1988-03-04 2024-10-11 01:50:37.000 1988-03-04 2024-10-11 01:50:37 +6638 6638 6639 663.8 1327.6000000000001 6638 1988-03-05 2024-10-11 01:50:38.000 1988-03-05 2024-10-11 01:50:38 +6639 6639 6640 663.9 1327.8000000000002 6639 1988-03-06 2024-10-11 01:50:39.000 1988-03-06 2024-10-11 01:50:39 +6640 6640 6641 664 1328 6640 1988-03-07 2024-10-11 01:50:40.000 1988-03-07 2024-10-11 01:50:40 +6641 6641 6642 664.1 1328.2 6641 1988-03-08 2024-10-11 01:50:41.000 1988-03-08 2024-10-11 01:50:41 +6642 6642 6643 664.2 1328.4 6642 1988-03-09 2024-10-11 01:50:42.000 1988-03-09 2024-10-11 01:50:42 +6643 6643 6644 664.3 1328.6000000000001 6643 1988-03-10 2024-10-11 01:50:43.000 1988-03-10 2024-10-11 01:50:43 +6644 6644 6645 664.4 1328.8000000000002 6644 1988-03-11 2024-10-11 01:50:44.000 1988-03-11 2024-10-11 01:50:44 +6645 6645 6646 664.5 1329 6645 1988-03-12 2024-10-11 01:50:45.000 1988-03-12 2024-10-11 01:50:45 +6646 6646 6647 664.6 1329.2 6646 1988-03-13 2024-10-11 01:50:46.000 1988-03-13 2024-10-11 01:50:46 +6647 6647 6648 664.7 1329.4 6647 1988-03-14 2024-10-11 01:50:47.000 1988-03-14 2024-10-11 01:50:47 +6648 6648 6649 664.8 1329.6000000000001 6648 1988-03-15 2024-10-11 01:50:48.000 1988-03-15 2024-10-11 01:50:48 +6649 6649 6650 664.9 1329.8000000000002 6649 1988-03-16 2024-10-11 01:50:49.000 1988-03-16 2024-10-11 01:50:49 +6650 6650 6651 665 1330 6650 1988-03-17 2024-10-11 01:50:50.000 1988-03-17 2024-10-11 01:50:50 +6651 6651 6652 665.1 1330.2 6651 1988-03-18 2024-10-11 01:50:51.000 1988-03-18 2024-10-11 01:50:51 +6652 6652 6653 665.2 1330.4 6652 1988-03-19 2024-10-11 01:50:52.000 1988-03-19 2024-10-11 01:50:52 +6653 6653 6654 665.3 1330.6000000000001 6653 1988-03-20 2024-10-11 01:50:53.000 1988-03-20 2024-10-11 01:50:53 +6654 6654 6655 665.4 1330.8000000000002 6654 1988-03-21 2024-10-11 01:50:54.000 1988-03-21 2024-10-11 01:50:54 +6655 6655 6656 665.5 1331 6655 1988-03-22 2024-10-11 01:50:55.000 1988-03-22 2024-10-11 01:50:55 +6656 6656 6657 665.6 1331.2 6656 1988-03-23 2024-10-11 01:50:56.000 1988-03-23 2024-10-11 01:50:56 +6657 6657 6658 665.7 1331.4 6657 1988-03-24 2024-10-11 01:50:57.000 1988-03-24 2024-10-11 01:50:57 +6658 6658 6659 665.8 1331.6000000000001 6658 1988-03-25 2024-10-11 01:50:58.000 1988-03-25 2024-10-11 01:50:58 +6659 6659 6660 665.9 1331.8000000000002 6659 1988-03-26 2024-10-11 01:50:59.000 1988-03-26 2024-10-11 01:50:59 +6660 6660 6661 666 1332 6660 1988-03-27 2024-10-11 01:51:00.000 1988-03-27 2024-10-11 01:51:00 +6661 6661 6662 666.1 1332.2 6661 1988-03-28 2024-10-11 01:51:01.000 1988-03-28 2024-10-11 01:51:01 +6662 6662 6663 666.2 1332.4 6662 1988-03-29 2024-10-11 01:51:02.000 1988-03-29 2024-10-11 01:51:02 +6663 6663 6664 666.3 1332.6000000000001 6663 1988-03-30 2024-10-11 01:51:03.000 1988-03-30 2024-10-11 01:51:03 +6664 6664 6665 666.4 1332.8000000000002 6664 1988-03-31 2024-10-11 01:51:04.000 1988-03-31 2024-10-11 01:51:04 +6665 6665 6666 666.5 1333 6665 1988-04-01 2024-10-11 01:51:05.000 1988-04-01 2024-10-11 01:51:05 +6666 6666 6667 666.6 1333.2 6666 1988-04-02 2024-10-11 01:51:06.000 1988-04-02 2024-10-11 01:51:06 +6667 6667 6668 666.7 1333.4 6667 1988-04-03 2024-10-11 01:51:07.000 1988-04-03 2024-10-11 01:51:07 +6668 6668 6669 666.8 1333.6000000000001 6668 1988-04-04 2024-10-11 01:51:08.000 1988-04-04 2024-10-11 01:51:08 +6669 6669 6670 666.9 1333.8000000000002 6669 1988-04-05 2024-10-11 01:51:09.000 1988-04-05 2024-10-11 01:51:09 +6670 6670 6671 667 1334 6670 1988-04-06 2024-10-11 01:51:10.000 1988-04-06 2024-10-11 01:51:10 +6671 6671 6672 667.1 1334.2 6671 1988-04-07 2024-10-11 01:51:11.000 1988-04-07 2024-10-11 01:51:11 +6672 6672 6673 667.2 1334.4 6672 1988-04-08 2024-10-11 01:51:12.000 1988-04-08 2024-10-11 01:51:12 +6673 6673 6674 667.3 1334.6000000000001 6673 1988-04-09 2024-10-11 01:51:13.000 1988-04-09 2024-10-11 01:51:13 +6674 6674 6675 667.4 1334.8000000000002 6674 1988-04-10 2024-10-11 01:51:14.000 1988-04-10 2024-10-11 01:51:14 +6675 6675 6676 667.5 1335 6675 1988-04-11 2024-10-11 01:51:15.000 1988-04-11 2024-10-11 01:51:15 +6676 6676 6677 667.6 1335.2 6676 1988-04-12 2024-10-11 01:51:16.000 1988-04-12 2024-10-11 01:51:16 +6677 6677 6678 667.7 1335.4 6677 1988-04-13 2024-10-11 01:51:17.000 1988-04-13 2024-10-11 01:51:17 +6678 6678 6679 667.8 1335.6000000000001 6678 1988-04-14 2024-10-11 01:51:18.000 1988-04-14 2024-10-11 01:51:18 +6679 6679 6680 667.9 1335.8000000000002 6679 1988-04-15 2024-10-11 01:51:19.000 1988-04-15 2024-10-11 01:51:19 +6680 6680 6681 668 1336 6680 1988-04-16 2024-10-11 01:51:20.000 1988-04-16 2024-10-11 01:51:20 +6681 6681 6682 668.1 1336.2 6681 1988-04-17 2024-10-11 01:51:21.000 1988-04-17 2024-10-11 01:51:21 +6682 6682 6683 668.2 1336.4 6682 1988-04-18 2024-10-11 01:51:22.000 1988-04-18 2024-10-11 01:51:22 +6683 6683 6684 668.3 1336.6000000000001 6683 1988-04-19 2024-10-11 01:51:23.000 1988-04-19 2024-10-11 01:51:23 +6684 6684 6685 668.4 1336.8000000000002 6684 1988-04-20 2024-10-11 01:51:24.000 1988-04-20 2024-10-11 01:51:24 +6685 6685 6686 668.5 1337 6685 1988-04-21 2024-10-11 01:51:25.000 1988-04-21 2024-10-11 01:51:25 +6686 6686 6687 668.6 1337.2 6686 1988-04-22 2024-10-11 01:51:26.000 1988-04-22 2024-10-11 01:51:26 +6687 6687 6688 668.7 1337.4 6687 1988-04-23 2024-10-11 01:51:27.000 1988-04-23 2024-10-11 01:51:27 +6688 6688 6689 668.8 1337.6000000000001 6688 1988-04-24 2024-10-11 01:51:28.000 1988-04-24 2024-10-11 01:51:28 +6689 6689 6690 668.9 1337.8000000000002 6689 1988-04-25 2024-10-11 01:51:29.000 1988-04-25 2024-10-11 01:51:29 +6690 6690 6691 669 1338 6690 1988-04-26 2024-10-11 01:51:30.000 1988-04-26 2024-10-11 01:51:30 +6691 6691 6692 669.1 1338.2 6691 1988-04-27 2024-10-11 01:51:31.000 1988-04-27 2024-10-11 01:51:31 +6692 6692 6693 669.2 1338.4 6692 1988-04-28 2024-10-11 01:51:32.000 1988-04-28 2024-10-11 01:51:32 +6693 6693 6694 669.3 1338.6000000000001 6693 1988-04-29 2024-10-11 01:51:33.000 1988-04-29 2024-10-11 01:51:33 +6694 6694 6695 669.4 1338.8000000000002 6694 1988-04-30 2024-10-11 01:51:34.000 1988-04-30 2024-10-11 01:51:34 +6695 6695 6696 669.5 1339 6695 1988-05-01 2024-10-11 01:51:35.000 1988-05-01 2024-10-11 01:51:35 +6696 6696 6697 669.6 1339.2 6696 1988-05-02 2024-10-11 01:51:36.000 1988-05-02 2024-10-11 01:51:36 +6697 6697 6698 669.7 1339.4 6697 1988-05-03 2024-10-11 01:51:37.000 1988-05-03 2024-10-11 01:51:37 +6698 6698 6699 669.8 1339.6000000000001 6698 1988-05-04 2024-10-11 01:51:38.000 1988-05-04 2024-10-11 01:51:38 +6699 6699 6700 669.9 1339.8000000000002 6699 1988-05-05 2024-10-11 01:51:39.000 1988-05-05 2024-10-11 01:51:39 +6700 6700 6701 670 1340 6700 1988-05-06 2024-10-11 01:51:40.000 1988-05-06 2024-10-11 01:51:40 +6701 6701 6702 670.1 1340.2 6701 1988-05-07 2024-10-11 01:51:41.000 1988-05-07 2024-10-11 01:51:41 +6702 6702 6703 670.2 1340.4 6702 1988-05-08 2024-10-11 01:51:42.000 1988-05-08 2024-10-11 01:51:42 +6703 6703 6704 670.3 1340.6000000000001 6703 1988-05-09 2024-10-11 01:51:43.000 1988-05-09 2024-10-11 01:51:43 +6704 6704 6705 670.4 1340.8000000000002 6704 1988-05-10 2024-10-11 01:51:44.000 1988-05-10 2024-10-11 01:51:44 +6705 6705 6706 670.5 1341 6705 1988-05-11 2024-10-11 01:51:45.000 1988-05-11 2024-10-11 01:51:45 +6706 6706 6707 670.6 1341.2 6706 1988-05-12 2024-10-11 01:51:46.000 1988-05-12 2024-10-11 01:51:46 +6707 6707 6708 670.7 1341.4 6707 1988-05-13 2024-10-11 01:51:47.000 1988-05-13 2024-10-11 01:51:47 +6708 6708 6709 670.8 1341.6000000000001 6708 1988-05-14 2024-10-11 01:51:48.000 1988-05-14 2024-10-11 01:51:48 +6709 6709 6710 670.9 1341.8000000000002 6709 1988-05-15 2024-10-11 01:51:49.000 1988-05-15 2024-10-11 01:51:49 +6710 6710 6711 671 1342 6710 1988-05-16 2024-10-11 01:51:50.000 1988-05-16 2024-10-11 01:51:50 +6711 6711 6712 671.1 1342.2 6711 1988-05-17 2024-10-11 01:51:51.000 1988-05-17 2024-10-11 01:51:51 +6712 6712 6713 671.2 1342.4 6712 1988-05-18 2024-10-11 01:51:52.000 1988-05-18 2024-10-11 01:51:52 +6713 6713 6714 671.3 1342.6000000000001 6713 1988-05-19 2024-10-11 01:51:53.000 1988-05-19 2024-10-11 01:51:53 +6714 6714 6715 671.4 1342.8000000000002 6714 1988-05-20 2024-10-11 01:51:54.000 1988-05-20 2024-10-11 01:51:54 +6715 6715 6716 671.5 1343 6715 1988-05-21 2024-10-11 01:51:55.000 1988-05-21 2024-10-11 01:51:55 +6716 6716 6717 671.6 1343.2 6716 1988-05-22 2024-10-11 01:51:56.000 1988-05-22 2024-10-11 01:51:56 +6717 6717 6718 671.7 1343.4 6717 1988-05-23 2024-10-11 01:51:57.000 1988-05-23 2024-10-11 01:51:57 +6718 6718 6719 671.8 1343.6000000000001 6718 1988-05-24 2024-10-11 01:51:58.000 1988-05-24 2024-10-11 01:51:58 +6719 6719 6720 671.9 1343.8000000000002 6719 1988-05-25 2024-10-11 01:51:59.000 1988-05-25 2024-10-11 01:51:59 +6720 6720 6721 672 1344 6720 1988-05-26 2024-10-11 01:52:00.000 1988-05-26 2024-10-11 01:52:00 +6721 6721 6722 672.1 1344.2 6721 1988-05-27 2024-10-11 01:52:01.000 1988-05-27 2024-10-11 01:52:01 +6722 6722 6723 672.2 1344.4 6722 1988-05-28 2024-10-11 01:52:02.000 1988-05-28 2024-10-11 01:52:02 +6723 6723 6724 672.3 1344.6000000000001 6723 1988-05-29 2024-10-11 01:52:03.000 1988-05-29 2024-10-11 01:52:03 +6724 6724 6725 672.4 1344.8000000000002 6724 1988-05-30 2024-10-11 01:52:04.000 1988-05-30 2024-10-11 01:52:04 +6725 6725 6726 672.5 1345 6725 1988-05-31 2024-10-11 01:52:05.000 1988-05-31 2024-10-11 01:52:05 +6726 6726 6727 672.6 1345.2 6726 1988-06-01 2024-10-11 01:52:06.000 1988-06-01 2024-10-11 01:52:06 +6727 6727 6728 672.7 1345.4 6727 1988-06-02 2024-10-11 01:52:07.000 1988-06-02 2024-10-11 01:52:07 +6728 6728 6729 672.8 1345.6000000000001 6728 1988-06-03 2024-10-11 01:52:08.000 1988-06-03 2024-10-11 01:52:08 +6729 6729 6730 672.9 1345.8000000000002 6729 1988-06-04 2024-10-11 01:52:09.000 1988-06-04 2024-10-11 01:52:09 +6730 6730 6731 673 1346 6730 1988-06-05 2024-10-11 01:52:10.000 1988-06-05 2024-10-11 01:52:10 +6731 6731 6732 673.1 1346.2 6731 1988-06-06 2024-10-11 01:52:11.000 1988-06-06 2024-10-11 01:52:11 +6732 6732 6733 673.2 1346.4 6732 1988-06-07 2024-10-11 01:52:12.000 1988-06-07 2024-10-11 01:52:12 +6733 6733 6734 673.3 1346.6000000000001 6733 1988-06-08 2024-10-11 01:52:13.000 1988-06-08 2024-10-11 01:52:13 +6734 6734 6735 673.4 1346.8000000000002 6734 1988-06-09 2024-10-11 01:52:14.000 1988-06-09 2024-10-11 01:52:14 +6735 6735 6736 673.5 1347 6735 1988-06-10 2024-10-11 01:52:15.000 1988-06-10 2024-10-11 01:52:15 +6736 6736 6737 673.6 1347.2 6736 1988-06-11 2024-10-11 01:52:16.000 1988-06-11 2024-10-11 01:52:16 +6737 6737 6738 673.7 1347.4 6737 1988-06-12 2024-10-11 01:52:17.000 1988-06-12 2024-10-11 01:52:17 +6738 6738 6739 673.8 1347.6000000000001 6738 1988-06-13 2024-10-11 01:52:18.000 1988-06-13 2024-10-11 01:52:18 +6739 6739 6740 673.9 1347.8000000000002 6739 1988-06-14 2024-10-11 01:52:19.000 1988-06-14 2024-10-11 01:52:19 +6740 6740 6741 674 1348 6740 1988-06-15 2024-10-11 01:52:20.000 1988-06-15 2024-10-11 01:52:20 +6741 6741 6742 674.1 1348.2 6741 1988-06-16 2024-10-11 01:52:21.000 1988-06-16 2024-10-11 01:52:21 +6742 6742 6743 674.2 1348.4 6742 1988-06-17 2024-10-11 01:52:22.000 1988-06-17 2024-10-11 01:52:22 +6743 6743 6744 674.3 1348.6000000000001 6743 1988-06-18 2024-10-11 01:52:23.000 1988-06-18 2024-10-11 01:52:23 +6744 6744 6745 674.4 1348.8000000000002 6744 1988-06-19 2024-10-11 01:52:24.000 1988-06-19 2024-10-11 01:52:24 +6745 6745 6746 674.5 1349 6745 1988-06-20 2024-10-11 01:52:25.000 1988-06-20 2024-10-11 01:52:25 +6746 6746 6747 674.6 1349.2 6746 1988-06-21 2024-10-11 01:52:26.000 1988-06-21 2024-10-11 01:52:26 +6747 6747 6748 674.7 1349.4 6747 1988-06-22 2024-10-11 01:52:27.000 1988-06-22 2024-10-11 01:52:27 +6748 6748 6749 674.8 1349.6000000000001 6748 1988-06-23 2024-10-11 01:52:28.000 1988-06-23 2024-10-11 01:52:28 +6749 6749 6750 674.9 1349.8000000000002 6749 1988-06-24 2024-10-11 01:52:29.000 1988-06-24 2024-10-11 01:52:29 +6750 6750 6751 675 1350 6750 1988-06-25 2024-10-11 01:52:30.000 1988-06-25 2024-10-11 01:52:30 +6751 6751 6752 675.1 1350.2 6751 1988-06-26 2024-10-11 01:52:31.000 1988-06-26 2024-10-11 01:52:31 +6752 6752 6753 675.2 1350.4 6752 1988-06-27 2024-10-11 01:52:32.000 1988-06-27 2024-10-11 01:52:32 +6753 6753 6754 675.3 1350.6000000000001 6753 1988-06-28 2024-10-11 01:52:33.000 1988-06-28 2024-10-11 01:52:33 +6754 6754 6755 675.4 1350.8000000000002 6754 1988-06-29 2024-10-11 01:52:34.000 1988-06-29 2024-10-11 01:52:34 +6755 6755 6756 675.5 1351 6755 1988-06-30 2024-10-11 01:52:35.000 1988-06-30 2024-10-11 01:52:35 +6756 6756 6757 675.6 1351.2 6756 1988-07-01 2024-10-11 01:52:36.000 1988-07-01 2024-10-11 01:52:36 +6757 6757 6758 675.7 1351.4 6757 1988-07-02 2024-10-11 01:52:37.000 1988-07-02 2024-10-11 01:52:37 +6758 6758 6759 675.8 1351.6000000000001 6758 1988-07-03 2024-10-11 01:52:38.000 1988-07-03 2024-10-11 01:52:38 +6759 6759 6760 675.9 1351.8000000000002 6759 1988-07-04 2024-10-11 01:52:39.000 1988-07-04 2024-10-11 01:52:39 +6760 6760 6761 676 1352 6760 1988-07-05 2024-10-11 01:52:40.000 1988-07-05 2024-10-11 01:52:40 +6761 6761 6762 676.1 1352.2 6761 1988-07-06 2024-10-11 01:52:41.000 1988-07-06 2024-10-11 01:52:41 +6762 6762 6763 676.2 1352.4 6762 1988-07-07 2024-10-11 01:52:42.000 1988-07-07 2024-10-11 01:52:42 +6763 6763 6764 676.3 1352.6000000000001 6763 1988-07-08 2024-10-11 01:52:43.000 1988-07-08 2024-10-11 01:52:43 +6764 6764 6765 676.4 1352.8000000000002 6764 1988-07-09 2024-10-11 01:52:44.000 1988-07-09 2024-10-11 01:52:44 +6765 6765 6766 676.5 1353 6765 1988-07-10 2024-10-11 01:52:45.000 1988-07-10 2024-10-11 01:52:45 +6766 6766 6767 676.6 1353.2 6766 1988-07-11 2024-10-11 01:52:46.000 1988-07-11 2024-10-11 01:52:46 +6767 6767 6768 676.7 1353.4 6767 1988-07-12 2024-10-11 01:52:47.000 1988-07-12 2024-10-11 01:52:47 +6768 6768 6769 676.8 1353.6000000000001 6768 1988-07-13 2024-10-11 01:52:48.000 1988-07-13 2024-10-11 01:52:48 +6769 6769 6770 676.9 1353.8000000000002 6769 1988-07-14 2024-10-11 01:52:49.000 1988-07-14 2024-10-11 01:52:49 +6770 6770 6771 677 1354 6770 1988-07-15 2024-10-11 01:52:50.000 1988-07-15 2024-10-11 01:52:50 +6771 6771 6772 677.1 1354.2 6771 1988-07-16 2024-10-11 01:52:51.000 1988-07-16 2024-10-11 01:52:51 +6772 6772 6773 677.2 1354.4 6772 1988-07-17 2024-10-11 01:52:52.000 1988-07-17 2024-10-11 01:52:52 +6773 6773 6774 677.3 1354.6000000000001 6773 1988-07-18 2024-10-11 01:52:53.000 1988-07-18 2024-10-11 01:52:53 +6774 6774 6775 677.4 1354.8000000000002 6774 1988-07-19 2024-10-11 01:52:54.000 1988-07-19 2024-10-11 01:52:54 +6775 6775 6776 677.5 1355 6775 1988-07-20 2024-10-11 01:52:55.000 1988-07-20 2024-10-11 01:52:55 +6776 6776 6777 677.6 1355.2 6776 1988-07-21 2024-10-11 01:52:56.000 1988-07-21 2024-10-11 01:52:56 +6777 6777 6778 677.7 1355.4 6777 1988-07-22 2024-10-11 01:52:57.000 1988-07-22 2024-10-11 01:52:57 +6778 6778 6779 677.8 1355.6000000000001 6778 1988-07-23 2024-10-11 01:52:58.000 1988-07-23 2024-10-11 01:52:58 +6779 6779 6780 677.9 1355.8000000000002 6779 1988-07-24 2024-10-11 01:52:59.000 1988-07-24 2024-10-11 01:52:59 +6780 6780 6781 678 1356 6780 1988-07-25 2024-10-11 01:53:00.000 1988-07-25 2024-10-11 01:53:00 +6781 6781 6782 678.1 1356.2 6781 1988-07-26 2024-10-11 01:53:01.000 1988-07-26 2024-10-11 01:53:01 +6782 6782 6783 678.2 1356.4 6782 1988-07-27 2024-10-11 01:53:02.000 1988-07-27 2024-10-11 01:53:02 +6783 6783 6784 678.3 1356.6000000000001 6783 1988-07-28 2024-10-11 01:53:03.000 1988-07-28 2024-10-11 01:53:03 +6784 6784 6785 678.4 1356.8000000000002 6784 1988-07-29 2024-10-11 01:53:04.000 1988-07-29 2024-10-11 01:53:04 +6785 6785 6786 678.5 1357 6785 1988-07-30 2024-10-11 01:53:05.000 1988-07-30 2024-10-11 01:53:05 +6786 6786 6787 678.6 1357.2 6786 1988-07-31 2024-10-11 01:53:06.000 1988-07-31 2024-10-11 01:53:06 +6787 6787 6788 678.7 1357.4 6787 1988-08-01 2024-10-11 01:53:07.000 1988-08-01 2024-10-11 01:53:07 +6788 6788 6789 678.8 1357.6000000000001 6788 1988-08-02 2024-10-11 01:53:08.000 1988-08-02 2024-10-11 01:53:08 +6789 6789 6790 678.9 1357.8000000000002 6789 1988-08-03 2024-10-11 01:53:09.000 1988-08-03 2024-10-11 01:53:09 +6790 6790 6791 679 1358 6790 1988-08-04 2024-10-11 01:53:10.000 1988-08-04 2024-10-11 01:53:10 +6791 6791 6792 679.1 1358.2 6791 1988-08-05 2024-10-11 01:53:11.000 1988-08-05 2024-10-11 01:53:11 +6792 6792 6793 679.2 1358.4 6792 1988-08-06 2024-10-11 01:53:12.000 1988-08-06 2024-10-11 01:53:12 +6793 6793 6794 679.3 1358.6000000000001 6793 1988-08-07 2024-10-11 01:53:13.000 1988-08-07 2024-10-11 01:53:13 +6794 6794 6795 679.4 1358.8000000000002 6794 1988-08-08 2024-10-11 01:53:14.000 1988-08-08 2024-10-11 01:53:14 +6795 6795 6796 679.5 1359 6795 1988-08-09 2024-10-11 01:53:15.000 1988-08-09 2024-10-11 01:53:15 +6796 6796 6797 679.6 1359.2 6796 1988-08-10 2024-10-11 01:53:16.000 1988-08-10 2024-10-11 01:53:16 +6797 6797 6798 679.7 1359.4 6797 1988-08-11 2024-10-11 01:53:17.000 1988-08-11 2024-10-11 01:53:17 +6798 6798 6799 679.8 1359.6000000000001 6798 1988-08-12 2024-10-11 01:53:18.000 1988-08-12 2024-10-11 01:53:18 +6799 6799 6800 679.9 1359.8000000000002 6799 1988-08-13 2024-10-11 01:53:19.000 1988-08-13 2024-10-11 01:53:19 +6800 6800 6801 680 1360 6800 1988-08-14 2024-10-11 01:53:20.000 1988-08-14 2024-10-11 01:53:20 +6801 6801 6802 680.1 1360.2 6801 1988-08-15 2024-10-11 01:53:21.000 1988-08-15 2024-10-11 01:53:21 +6802 6802 6803 680.2 1360.4 6802 1988-08-16 2024-10-11 01:53:22.000 1988-08-16 2024-10-11 01:53:22 +6803 6803 6804 680.3 1360.6000000000001 6803 1988-08-17 2024-10-11 01:53:23.000 1988-08-17 2024-10-11 01:53:23 +6804 6804 6805 680.4 1360.8000000000002 6804 1988-08-18 2024-10-11 01:53:24.000 1988-08-18 2024-10-11 01:53:24 +6805 6805 6806 680.5 1361 6805 1988-08-19 2024-10-11 01:53:25.000 1988-08-19 2024-10-11 01:53:25 +6806 6806 6807 680.6 1361.2 6806 1988-08-20 2024-10-11 01:53:26.000 1988-08-20 2024-10-11 01:53:26 +6807 6807 6808 680.7 1361.4 6807 1988-08-21 2024-10-11 01:53:27.000 1988-08-21 2024-10-11 01:53:27 +6808 6808 6809 680.8 1361.6000000000001 6808 1988-08-22 2024-10-11 01:53:28.000 1988-08-22 2024-10-11 01:53:28 +6809 6809 6810 680.9 1361.8000000000002 6809 1988-08-23 2024-10-11 01:53:29.000 1988-08-23 2024-10-11 01:53:29 +6810 6810 6811 681 1362 6810 1988-08-24 2024-10-11 01:53:30.000 1988-08-24 2024-10-11 01:53:30 +6811 6811 6812 681.1 1362.2 6811 1988-08-25 2024-10-11 01:53:31.000 1988-08-25 2024-10-11 01:53:31 +6812 6812 6813 681.2 1362.4 6812 1988-08-26 2024-10-11 01:53:32.000 1988-08-26 2024-10-11 01:53:32 +6813 6813 6814 681.3 1362.6000000000001 6813 1988-08-27 2024-10-11 01:53:33.000 1988-08-27 2024-10-11 01:53:33 +6814 6814 6815 681.4 1362.8000000000002 6814 1988-08-28 2024-10-11 01:53:34.000 1988-08-28 2024-10-11 01:53:34 +6815 6815 6816 681.5 1363 6815 1988-08-29 2024-10-11 01:53:35.000 1988-08-29 2024-10-11 01:53:35 +6816 6816 6817 681.6 1363.2 6816 1988-08-30 2024-10-11 01:53:36.000 1988-08-30 2024-10-11 01:53:36 +6817 6817 6818 681.7 1363.4 6817 1988-08-31 2024-10-11 01:53:37.000 1988-08-31 2024-10-11 01:53:37 +6818 6818 6819 681.8 1363.6000000000001 6818 1988-09-01 2024-10-11 01:53:38.000 1988-09-01 2024-10-11 01:53:38 +6819 6819 6820 681.9 1363.8000000000002 6819 1988-09-02 2024-10-11 01:53:39.000 1988-09-02 2024-10-11 01:53:39 +6820 6820 6821 682 1364 6820 1988-09-03 2024-10-11 01:53:40.000 1988-09-03 2024-10-11 01:53:40 +6821 6821 6822 682.1 1364.2 6821 1988-09-04 2024-10-11 01:53:41.000 1988-09-04 2024-10-11 01:53:41 +6822 6822 6823 682.2 1364.4 6822 1988-09-05 2024-10-11 01:53:42.000 1988-09-05 2024-10-11 01:53:42 +6823 6823 6824 682.3 1364.6000000000001 6823 1988-09-06 2024-10-11 01:53:43.000 1988-09-06 2024-10-11 01:53:43 +6824 6824 6825 682.4 1364.8000000000002 6824 1988-09-07 2024-10-11 01:53:44.000 1988-09-07 2024-10-11 01:53:44 +6825 6825 6826 682.5 1365 6825 1988-09-08 2024-10-11 01:53:45.000 1988-09-08 2024-10-11 01:53:45 +6826 6826 6827 682.6 1365.2 6826 1988-09-09 2024-10-11 01:53:46.000 1988-09-09 2024-10-11 01:53:46 +6827 6827 6828 682.7 1365.4 6827 1988-09-10 2024-10-11 01:53:47.000 1988-09-10 2024-10-11 01:53:47 +6828 6828 6829 682.8 1365.6000000000001 6828 1988-09-11 2024-10-11 01:53:48.000 1988-09-11 2024-10-11 01:53:48 +6829 6829 6830 682.9 1365.8000000000002 6829 1988-09-12 2024-10-11 01:53:49.000 1988-09-12 2024-10-11 01:53:49 +6830 6830 6831 683 1366 6830 1988-09-13 2024-10-11 01:53:50.000 1988-09-13 2024-10-11 01:53:50 +6831 6831 6832 683.1 1366.2 6831 1988-09-14 2024-10-11 01:53:51.000 1988-09-14 2024-10-11 01:53:51 +6832 6832 6833 683.2 1366.4 6832 1988-09-15 2024-10-11 01:53:52.000 1988-09-15 2024-10-11 01:53:52 +6833 6833 6834 683.3 1366.6000000000001 6833 1988-09-16 2024-10-11 01:53:53.000 1988-09-16 2024-10-11 01:53:53 +6834 6834 6835 683.4 1366.8000000000002 6834 1988-09-17 2024-10-11 01:53:54.000 1988-09-17 2024-10-11 01:53:54 +6835 6835 6836 683.5 1367 6835 1988-09-18 2024-10-11 01:53:55.000 1988-09-18 2024-10-11 01:53:55 +6836 6836 6837 683.6 1367.2 6836 1988-09-19 2024-10-11 01:53:56.000 1988-09-19 2024-10-11 01:53:56 +6837 6837 6838 683.7 1367.4 6837 1988-09-20 2024-10-11 01:53:57.000 1988-09-20 2024-10-11 01:53:57 +6838 6838 6839 683.8 1367.6000000000001 6838 1988-09-21 2024-10-11 01:53:58.000 1988-09-21 2024-10-11 01:53:58 +6839 6839 6840 683.9 1367.8000000000002 6839 1988-09-22 2024-10-11 01:53:59.000 1988-09-22 2024-10-11 01:53:59 +6840 6840 6841 684 1368 6840 1988-09-23 2024-10-11 01:54:00.000 1988-09-23 2024-10-11 01:54:00 +6841 6841 6842 684.1 1368.2 6841 1988-09-24 2024-10-11 01:54:01.000 1988-09-24 2024-10-11 01:54:01 +6842 6842 6843 684.2 1368.4 6842 1988-09-25 2024-10-11 01:54:02.000 1988-09-25 2024-10-11 01:54:02 +6843 6843 6844 684.3 1368.6000000000001 6843 1988-09-26 2024-10-11 01:54:03.000 1988-09-26 2024-10-11 01:54:03 +6844 6844 6845 684.4 1368.8000000000002 6844 1988-09-27 2024-10-11 01:54:04.000 1988-09-27 2024-10-11 01:54:04 +6845 6845 6846 684.5 1369 6845 1988-09-28 2024-10-11 01:54:05.000 1988-09-28 2024-10-11 01:54:05 +6846 6846 6847 684.6 1369.2 6846 1988-09-29 2024-10-11 01:54:06.000 1988-09-29 2024-10-11 01:54:06 +6847 6847 6848 684.7 1369.4 6847 1988-09-30 2024-10-11 01:54:07.000 1988-09-30 2024-10-11 01:54:07 +6848 6848 6849 684.8 1369.6000000000001 6848 1988-10-01 2024-10-11 01:54:08.000 1988-10-01 2024-10-11 01:54:08 +6849 6849 6850 684.9 1369.8000000000002 6849 1988-10-02 2024-10-11 01:54:09.000 1988-10-02 2024-10-11 01:54:09 +6850 6850 6851 685 1370 6850 1988-10-03 2024-10-11 01:54:10.000 1988-10-03 2024-10-11 01:54:10 +6851 6851 6852 685.1 1370.2 6851 1988-10-04 2024-10-11 01:54:11.000 1988-10-04 2024-10-11 01:54:11 +6852 6852 6853 685.2 1370.4 6852 1988-10-05 2024-10-11 01:54:12.000 1988-10-05 2024-10-11 01:54:12 +6853 6853 6854 685.3 1370.6000000000001 6853 1988-10-06 2024-10-11 01:54:13.000 1988-10-06 2024-10-11 01:54:13 +6854 6854 6855 685.4 1370.8000000000002 6854 1988-10-07 2024-10-11 01:54:14.000 1988-10-07 2024-10-11 01:54:14 +6855 6855 6856 685.5 1371 6855 1988-10-08 2024-10-11 01:54:15.000 1988-10-08 2024-10-11 01:54:15 +6856 6856 6857 685.6 1371.2 6856 1988-10-09 2024-10-11 01:54:16.000 1988-10-09 2024-10-11 01:54:16 +6857 6857 6858 685.7 1371.4 6857 1988-10-10 2024-10-11 01:54:17.000 1988-10-10 2024-10-11 01:54:17 +6858 6858 6859 685.8 1371.6000000000001 6858 1988-10-11 2024-10-11 01:54:18.000 1988-10-11 2024-10-11 01:54:18 +6859 6859 6860 685.9 1371.8000000000002 6859 1988-10-12 2024-10-11 01:54:19.000 1988-10-12 2024-10-11 01:54:19 +6860 6860 6861 686 1372 6860 1988-10-13 2024-10-11 01:54:20.000 1988-10-13 2024-10-11 01:54:20 +6861 6861 6862 686.1 1372.2 6861 1988-10-14 2024-10-11 01:54:21.000 1988-10-14 2024-10-11 01:54:21 +6862 6862 6863 686.2 1372.4 6862 1988-10-15 2024-10-11 01:54:22.000 1988-10-15 2024-10-11 01:54:22 +6863 6863 6864 686.3 1372.6000000000001 6863 1988-10-16 2024-10-11 01:54:23.000 1988-10-16 2024-10-11 01:54:23 +6864 6864 6865 686.4 1372.8000000000002 6864 1988-10-17 2024-10-11 01:54:24.000 1988-10-17 2024-10-11 01:54:24 +6865 6865 6866 686.5 1373 6865 1988-10-18 2024-10-11 01:54:25.000 1988-10-18 2024-10-11 01:54:25 +6866 6866 6867 686.6 1373.2 6866 1988-10-19 2024-10-11 01:54:26.000 1988-10-19 2024-10-11 01:54:26 +6867 6867 6868 686.7 1373.4 6867 1988-10-20 2024-10-11 01:54:27.000 1988-10-20 2024-10-11 01:54:27 +6868 6868 6869 686.8 1373.6000000000001 6868 1988-10-21 2024-10-11 01:54:28.000 1988-10-21 2024-10-11 01:54:28 +6869 6869 6870 686.9 1373.8000000000002 6869 1988-10-22 2024-10-11 01:54:29.000 1988-10-22 2024-10-11 01:54:29 +6870 6870 6871 687 1374 6870 1988-10-23 2024-10-11 01:54:30.000 1988-10-23 2024-10-11 01:54:30 +6871 6871 6872 687.1 1374.2 6871 1988-10-24 2024-10-11 01:54:31.000 1988-10-24 2024-10-11 01:54:31 +6872 6872 6873 687.2 1374.4 6872 1988-10-25 2024-10-11 01:54:32.000 1988-10-25 2024-10-11 01:54:32 +6873 6873 6874 687.3 1374.6000000000001 6873 1988-10-26 2024-10-11 01:54:33.000 1988-10-26 2024-10-11 01:54:33 +6874 6874 6875 687.4 1374.8000000000002 6874 1988-10-27 2024-10-11 01:54:34.000 1988-10-27 2024-10-11 01:54:34 +6875 6875 6876 687.5 1375 6875 1988-10-28 2024-10-11 01:54:35.000 1988-10-28 2024-10-11 01:54:35 +6876 6876 6877 687.6 1375.2 6876 1988-10-29 2024-10-11 01:54:36.000 1988-10-29 2024-10-11 01:54:36 +6877 6877 6878 687.7 1375.4 6877 1988-10-30 2024-10-11 01:54:37.000 1988-10-30 2024-10-11 01:54:37 +6878 6878 6879 687.8 1375.6000000000001 6878 1988-10-31 2024-10-11 01:54:38.000 1988-10-31 2024-10-11 01:54:38 +6879 6879 6880 687.9 1375.8000000000002 6879 1988-11-01 2024-10-11 01:54:39.000 1988-11-01 2024-10-11 01:54:39 +6880 6880 6881 688 1376 6880 1988-11-02 2024-10-11 01:54:40.000 1988-11-02 2024-10-11 01:54:40 +6881 6881 6882 688.1 1376.2 6881 1988-11-03 2024-10-11 01:54:41.000 1988-11-03 2024-10-11 01:54:41 +6882 6882 6883 688.2 1376.4 6882 1988-11-04 2024-10-11 01:54:42.000 1988-11-04 2024-10-11 01:54:42 +6883 6883 6884 688.3 1376.6000000000001 6883 1988-11-05 2024-10-11 01:54:43.000 1988-11-05 2024-10-11 01:54:43 +6884 6884 6885 688.4 1376.8000000000002 6884 1988-11-06 2024-10-11 01:54:44.000 1988-11-06 2024-10-11 01:54:44 +6885 6885 6886 688.5 1377 6885 1988-11-07 2024-10-11 01:54:45.000 1988-11-07 2024-10-11 01:54:45 +6886 6886 6887 688.6 1377.2 6886 1988-11-08 2024-10-11 01:54:46.000 1988-11-08 2024-10-11 01:54:46 +6887 6887 6888 688.7 1377.4 6887 1988-11-09 2024-10-11 01:54:47.000 1988-11-09 2024-10-11 01:54:47 +6888 6888 6889 688.8 1377.6000000000001 6888 1988-11-10 2024-10-11 01:54:48.000 1988-11-10 2024-10-11 01:54:48 +6889 6889 6890 688.9 1377.8000000000002 6889 1988-11-11 2024-10-11 01:54:49.000 1988-11-11 2024-10-11 01:54:49 +6890 6890 6891 689 1378 6890 1988-11-12 2024-10-11 01:54:50.000 1988-11-12 2024-10-11 01:54:50 +6891 6891 6892 689.1 1378.2 6891 1988-11-13 2024-10-11 01:54:51.000 1988-11-13 2024-10-11 01:54:51 +6892 6892 6893 689.2 1378.4 6892 1988-11-14 2024-10-11 01:54:52.000 1988-11-14 2024-10-11 01:54:52 +6893 6893 6894 689.3 1378.6000000000001 6893 1988-11-15 2024-10-11 01:54:53.000 1988-11-15 2024-10-11 01:54:53 +6894 6894 6895 689.4 1378.8000000000002 6894 1988-11-16 2024-10-11 01:54:54.000 1988-11-16 2024-10-11 01:54:54 +6895 6895 6896 689.5 1379 6895 1988-11-17 2024-10-11 01:54:55.000 1988-11-17 2024-10-11 01:54:55 +6896 6896 6897 689.6 1379.2 6896 1988-11-18 2024-10-11 01:54:56.000 1988-11-18 2024-10-11 01:54:56 +6897 6897 6898 689.7 1379.4 6897 1988-11-19 2024-10-11 01:54:57.000 1988-11-19 2024-10-11 01:54:57 +6898 6898 6899 689.8 1379.6000000000001 6898 1988-11-20 2024-10-11 01:54:58.000 1988-11-20 2024-10-11 01:54:58 +6899 6899 6900 689.9 1379.8000000000002 6899 1988-11-21 2024-10-11 01:54:59.000 1988-11-21 2024-10-11 01:54:59 +6900 6900 6901 690 1380 6900 1988-11-22 2024-10-11 01:55:00.000 1988-11-22 2024-10-11 01:55:00 +6901 6901 6902 690.1 1380.2 6901 1988-11-23 2024-10-11 01:55:01.000 1988-11-23 2024-10-11 01:55:01 +6902 6902 6903 690.2 1380.4 6902 1988-11-24 2024-10-11 01:55:02.000 1988-11-24 2024-10-11 01:55:02 +6903 6903 6904 690.3 1380.6000000000001 6903 1988-11-25 2024-10-11 01:55:03.000 1988-11-25 2024-10-11 01:55:03 +6904 6904 6905 690.4 1380.8000000000002 6904 1988-11-26 2024-10-11 01:55:04.000 1988-11-26 2024-10-11 01:55:04 +6905 6905 6906 690.5 1381 6905 1988-11-27 2024-10-11 01:55:05.000 1988-11-27 2024-10-11 01:55:05 +6906 6906 6907 690.6 1381.2 6906 1988-11-28 2024-10-11 01:55:06.000 1988-11-28 2024-10-11 01:55:06 +6907 6907 6908 690.7 1381.4 6907 1988-11-29 2024-10-11 01:55:07.000 1988-11-29 2024-10-11 01:55:07 +6908 6908 6909 690.8 1381.6000000000001 6908 1988-11-30 2024-10-11 01:55:08.000 1988-11-30 2024-10-11 01:55:08 +6909 6909 6910 690.9 1381.8000000000002 6909 1988-12-01 2024-10-11 01:55:09.000 1988-12-01 2024-10-11 01:55:09 +6910 6910 6911 691 1382 6910 1988-12-02 2024-10-11 01:55:10.000 1988-12-02 2024-10-11 01:55:10 +6911 6911 6912 691.1 1382.2 6911 1988-12-03 2024-10-11 01:55:11.000 1988-12-03 2024-10-11 01:55:11 +6912 6912 6913 691.2 1382.4 6912 1988-12-04 2024-10-11 01:55:12.000 1988-12-04 2024-10-11 01:55:12 +6913 6913 6914 691.3 1382.6000000000001 6913 1988-12-05 2024-10-11 01:55:13.000 1988-12-05 2024-10-11 01:55:13 +6914 6914 6915 691.4 1382.8000000000002 6914 1988-12-06 2024-10-11 01:55:14.000 1988-12-06 2024-10-11 01:55:14 +6915 6915 6916 691.5 1383 6915 1988-12-07 2024-10-11 01:55:15.000 1988-12-07 2024-10-11 01:55:15 +6916 6916 6917 691.6 1383.2 6916 1988-12-08 2024-10-11 01:55:16.000 1988-12-08 2024-10-11 01:55:16 +6917 6917 6918 691.7 1383.4 6917 1988-12-09 2024-10-11 01:55:17.000 1988-12-09 2024-10-11 01:55:17 +6918 6918 6919 691.8 1383.6000000000001 6918 1988-12-10 2024-10-11 01:55:18.000 1988-12-10 2024-10-11 01:55:18 +6919 6919 6920 691.9 1383.8000000000002 6919 1988-12-11 2024-10-11 01:55:19.000 1988-12-11 2024-10-11 01:55:19 +6920 6920 6921 692 1384 6920 1988-12-12 2024-10-11 01:55:20.000 1988-12-12 2024-10-11 01:55:20 +6921 6921 6922 692.1 1384.2 6921 1988-12-13 2024-10-11 01:55:21.000 1988-12-13 2024-10-11 01:55:21 +6922 6922 6923 692.2 1384.4 6922 1988-12-14 2024-10-11 01:55:22.000 1988-12-14 2024-10-11 01:55:22 +6923 6923 6924 692.3 1384.6000000000001 6923 1988-12-15 2024-10-11 01:55:23.000 1988-12-15 2024-10-11 01:55:23 +6924 6924 6925 692.4 1384.8000000000002 6924 1988-12-16 2024-10-11 01:55:24.000 1988-12-16 2024-10-11 01:55:24 +6925 6925 6926 692.5 1385 6925 1988-12-17 2024-10-11 01:55:25.000 1988-12-17 2024-10-11 01:55:25 +6926 6926 6927 692.6 1385.2 6926 1988-12-18 2024-10-11 01:55:26.000 1988-12-18 2024-10-11 01:55:26 +6927 6927 6928 692.7 1385.4 6927 1988-12-19 2024-10-11 01:55:27.000 1988-12-19 2024-10-11 01:55:27 +6928 6928 6929 692.8 1385.6000000000001 6928 1988-12-20 2024-10-11 01:55:28.000 1988-12-20 2024-10-11 01:55:28 +6929 6929 6930 692.9 1385.8000000000002 6929 1988-12-21 2024-10-11 01:55:29.000 1988-12-21 2024-10-11 01:55:29 +6930 6930 6931 693 1386 6930 1988-12-22 2024-10-11 01:55:30.000 1988-12-22 2024-10-11 01:55:30 +6931 6931 6932 693.1 1386.2 6931 1988-12-23 2024-10-11 01:55:31.000 1988-12-23 2024-10-11 01:55:31 +6932 6932 6933 693.2 1386.4 6932 1988-12-24 2024-10-11 01:55:32.000 1988-12-24 2024-10-11 01:55:32 +6933 6933 6934 693.3 1386.6000000000001 6933 1988-12-25 2024-10-11 01:55:33.000 1988-12-25 2024-10-11 01:55:33 +6934 6934 6935 693.4 1386.8000000000002 6934 1988-12-26 2024-10-11 01:55:34.000 1988-12-26 2024-10-11 01:55:34 +6935 6935 6936 693.5 1387 6935 1988-12-27 2024-10-11 01:55:35.000 1988-12-27 2024-10-11 01:55:35 +6936 6936 6937 693.6 1387.2 6936 1988-12-28 2024-10-11 01:55:36.000 1988-12-28 2024-10-11 01:55:36 +6937 6937 6938 693.7 1387.4 6937 1988-12-29 2024-10-11 01:55:37.000 1988-12-29 2024-10-11 01:55:37 +6938 6938 6939 693.8 1387.6000000000001 6938 1988-12-30 2024-10-11 01:55:38.000 1988-12-30 2024-10-11 01:55:38 +6939 6939 6940 693.9 1387.8000000000002 6939 1988-12-31 2024-10-11 01:55:39.000 1988-12-31 2024-10-11 01:55:39 +6940 6940 6941 694 1388 6940 1989-01-01 2024-10-11 01:55:40.000 1989-01-01 2024-10-11 01:55:40 +6941 6941 6942 694.1 1388.2 6941 1989-01-02 2024-10-11 01:55:41.000 1989-01-02 2024-10-11 01:55:41 +6942 6942 6943 694.2 1388.4 6942 1989-01-03 2024-10-11 01:55:42.000 1989-01-03 2024-10-11 01:55:42 +6943 6943 6944 694.3 1388.6000000000001 6943 1989-01-04 2024-10-11 01:55:43.000 1989-01-04 2024-10-11 01:55:43 +6944 6944 6945 694.4 1388.8000000000002 6944 1989-01-05 2024-10-11 01:55:44.000 1989-01-05 2024-10-11 01:55:44 +6945 6945 6946 694.5 1389 6945 1989-01-06 2024-10-11 01:55:45.000 1989-01-06 2024-10-11 01:55:45 +6946 6946 6947 694.6 1389.2 6946 1989-01-07 2024-10-11 01:55:46.000 1989-01-07 2024-10-11 01:55:46 +6947 6947 6948 694.7 1389.4 6947 1989-01-08 2024-10-11 01:55:47.000 1989-01-08 2024-10-11 01:55:47 +6948 6948 6949 694.8 1389.6000000000001 6948 1989-01-09 2024-10-11 01:55:48.000 1989-01-09 2024-10-11 01:55:48 +6949 6949 6950 694.9 1389.8000000000002 6949 1989-01-10 2024-10-11 01:55:49.000 1989-01-10 2024-10-11 01:55:49 +6950 6950 6951 695 1390 6950 1989-01-11 2024-10-11 01:55:50.000 1989-01-11 2024-10-11 01:55:50 +6951 6951 6952 695.1 1390.2 6951 1989-01-12 2024-10-11 01:55:51.000 1989-01-12 2024-10-11 01:55:51 +6952 6952 6953 695.2 1390.4 6952 1989-01-13 2024-10-11 01:55:52.000 1989-01-13 2024-10-11 01:55:52 +6953 6953 6954 695.3 1390.6000000000001 6953 1989-01-14 2024-10-11 01:55:53.000 1989-01-14 2024-10-11 01:55:53 +6954 6954 6955 695.4 1390.8000000000002 6954 1989-01-15 2024-10-11 01:55:54.000 1989-01-15 2024-10-11 01:55:54 +6955 6955 6956 695.5 1391 6955 1989-01-16 2024-10-11 01:55:55.000 1989-01-16 2024-10-11 01:55:55 +6956 6956 6957 695.6 1391.2 6956 1989-01-17 2024-10-11 01:55:56.000 1989-01-17 2024-10-11 01:55:56 +6957 6957 6958 695.7 1391.4 6957 1989-01-18 2024-10-11 01:55:57.000 1989-01-18 2024-10-11 01:55:57 +6958 6958 6959 695.8 1391.6000000000001 6958 1989-01-19 2024-10-11 01:55:58.000 1989-01-19 2024-10-11 01:55:58 +6959 6959 6960 695.9 1391.8000000000002 6959 1989-01-20 2024-10-11 01:55:59.000 1989-01-20 2024-10-11 01:55:59 +6960 6960 6961 696 1392 6960 1989-01-21 2024-10-11 01:56:00.000 1989-01-21 2024-10-11 01:56:00 +6961 6961 6962 696.1 1392.2 6961 1989-01-22 2024-10-11 01:56:01.000 1989-01-22 2024-10-11 01:56:01 +6962 6962 6963 696.2 1392.4 6962 1989-01-23 2024-10-11 01:56:02.000 1989-01-23 2024-10-11 01:56:02 +6963 6963 6964 696.3 1392.6000000000001 6963 1989-01-24 2024-10-11 01:56:03.000 1989-01-24 2024-10-11 01:56:03 +6964 6964 6965 696.4 1392.8000000000002 6964 1989-01-25 2024-10-11 01:56:04.000 1989-01-25 2024-10-11 01:56:04 +6965 6965 6966 696.5 1393 6965 1989-01-26 2024-10-11 01:56:05.000 1989-01-26 2024-10-11 01:56:05 +6966 6966 6967 696.6 1393.2 6966 1989-01-27 2024-10-11 01:56:06.000 1989-01-27 2024-10-11 01:56:06 +6967 6967 6968 696.7 1393.4 6967 1989-01-28 2024-10-11 01:56:07.000 1989-01-28 2024-10-11 01:56:07 +6968 6968 6969 696.8 1393.6000000000001 6968 1989-01-29 2024-10-11 01:56:08.000 1989-01-29 2024-10-11 01:56:08 +6969 6969 6970 696.9 1393.8000000000002 6969 1989-01-30 2024-10-11 01:56:09.000 1989-01-30 2024-10-11 01:56:09 +6970 6970 6971 697 1394 6970 1989-01-31 2024-10-11 01:56:10.000 1989-01-31 2024-10-11 01:56:10 +6971 6971 6972 697.1 1394.2 6971 1989-02-01 2024-10-11 01:56:11.000 1989-02-01 2024-10-11 01:56:11 +6972 6972 6973 697.2 1394.4 6972 1989-02-02 2024-10-11 01:56:12.000 1989-02-02 2024-10-11 01:56:12 +6973 6973 6974 697.3 1394.6000000000001 6973 1989-02-03 2024-10-11 01:56:13.000 1989-02-03 2024-10-11 01:56:13 +6974 6974 6975 697.4 1394.8000000000002 6974 1989-02-04 2024-10-11 01:56:14.000 1989-02-04 2024-10-11 01:56:14 +6975 6975 6976 697.5 1395 6975 1989-02-05 2024-10-11 01:56:15.000 1989-02-05 2024-10-11 01:56:15 +6976 6976 6977 697.6 1395.2 6976 1989-02-06 2024-10-11 01:56:16.000 1989-02-06 2024-10-11 01:56:16 +6977 6977 6978 697.7 1395.4 6977 1989-02-07 2024-10-11 01:56:17.000 1989-02-07 2024-10-11 01:56:17 +6978 6978 6979 697.8 1395.6000000000001 6978 1989-02-08 2024-10-11 01:56:18.000 1989-02-08 2024-10-11 01:56:18 +6979 6979 6980 697.9 1395.8000000000002 6979 1989-02-09 2024-10-11 01:56:19.000 1989-02-09 2024-10-11 01:56:19 +6980 6980 6981 698 1396 6980 1989-02-10 2024-10-11 01:56:20.000 1989-02-10 2024-10-11 01:56:20 +6981 6981 6982 698.1 1396.2 6981 1989-02-11 2024-10-11 01:56:21.000 1989-02-11 2024-10-11 01:56:21 +6982 6982 6983 698.2 1396.4 6982 1989-02-12 2024-10-11 01:56:22.000 1989-02-12 2024-10-11 01:56:22 +6983 6983 6984 698.3 1396.6000000000001 6983 1989-02-13 2024-10-11 01:56:23.000 1989-02-13 2024-10-11 01:56:23 +6984 6984 6985 698.4 1396.8000000000002 6984 1989-02-14 2024-10-11 01:56:24.000 1989-02-14 2024-10-11 01:56:24 +6985 6985 6986 698.5 1397 6985 1989-02-15 2024-10-11 01:56:25.000 1989-02-15 2024-10-11 01:56:25 +6986 6986 6987 698.6 1397.2 6986 1989-02-16 2024-10-11 01:56:26.000 1989-02-16 2024-10-11 01:56:26 +6987 6987 6988 698.7 1397.4 6987 1989-02-17 2024-10-11 01:56:27.000 1989-02-17 2024-10-11 01:56:27 +6988 6988 6989 698.8 1397.6000000000001 6988 1989-02-18 2024-10-11 01:56:28.000 1989-02-18 2024-10-11 01:56:28 +6989 6989 6990 698.9 1397.8000000000002 6989 1989-02-19 2024-10-11 01:56:29.000 1989-02-19 2024-10-11 01:56:29 +6990 6990 6991 699 1398 6990 1989-02-20 2024-10-11 01:56:30.000 1989-02-20 2024-10-11 01:56:30 +6991 6991 6992 699.1 1398.2 6991 1989-02-21 2024-10-11 01:56:31.000 1989-02-21 2024-10-11 01:56:31 +6992 6992 6993 699.2 1398.4 6992 1989-02-22 2024-10-11 01:56:32.000 1989-02-22 2024-10-11 01:56:32 +6993 6993 6994 699.3 1398.6000000000001 6993 1989-02-23 2024-10-11 01:56:33.000 1989-02-23 2024-10-11 01:56:33 +6994 6994 6995 699.4 1398.8000000000002 6994 1989-02-24 2024-10-11 01:56:34.000 1989-02-24 2024-10-11 01:56:34 +6995 6995 6996 699.5 1399 6995 1989-02-25 2024-10-11 01:56:35.000 1989-02-25 2024-10-11 01:56:35 +6996 6996 6997 699.6 1399.2 6996 1989-02-26 2024-10-11 01:56:36.000 1989-02-26 2024-10-11 01:56:36 +6997 6997 6998 699.7 1399.4 6997 1989-02-27 2024-10-11 01:56:37.000 1989-02-27 2024-10-11 01:56:37 +6998 6998 6999 699.8 1399.6000000000001 6998 1989-02-28 2024-10-11 01:56:38.000 1989-02-28 2024-10-11 01:56:38 +6999 6999 7000 699.9 1399.8000000000002 6999 1989-03-01 2024-10-11 01:56:39.000 1989-03-01 2024-10-11 01:56:39 +7000 7000 7001 700 1400 7000 1989-03-02 2024-10-11 01:56:40.000 1989-03-02 2024-10-11 01:56:40 +7001 7001 7002 700.1 1400.2 7001 1989-03-03 2024-10-11 01:56:41.000 1989-03-03 2024-10-11 01:56:41 +7002 7002 7003 700.2 1400.4 7002 1989-03-04 2024-10-11 01:56:42.000 1989-03-04 2024-10-11 01:56:42 +7003 7003 7004 700.3 1400.6000000000001 7003 1989-03-05 2024-10-11 01:56:43.000 1989-03-05 2024-10-11 01:56:43 +7004 7004 7005 700.4 1400.8000000000002 7004 1989-03-06 2024-10-11 01:56:44.000 1989-03-06 2024-10-11 01:56:44 +7005 7005 7006 700.5 1401 7005 1989-03-07 2024-10-11 01:56:45.000 1989-03-07 2024-10-11 01:56:45 +7006 7006 7007 700.6 1401.2 7006 1989-03-08 2024-10-11 01:56:46.000 1989-03-08 2024-10-11 01:56:46 +7007 7007 7008 700.7 1401.4 7007 1989-03-09 2024-10-11 01:56:47.000 1989-03-09 2024-10-11 01:56:47 +7008 7008 7009 700.8 1401.6000000000001 7008 1989-03-10 2024-10-11 01:56:48.000 1989-03-10 2024-10-11 01:56:48 +7009 7009 7010 700.9 1401.8000000000002 7009 1989-03-11 2024-10-11 01:56:49.000 1989-03-11 2024-10-11 01:56:49 +7010 7010 7011 701 1402 7010 1989-03-12 2024-10-11 01:56:50.000 1989-03-12 2024-10-11 01:56:50 +7011 7011 7012 701.1 1402.2 7011 1989-03-13 2024-10-11 01:56:51.000 1989-03-13 2024-10-11 01:56:51 +7012 7012 7013 701.2 1402.4 7012 1989-03-14 2024-10-11 01:56:52.000 1989-03-14 2024-10-11 01:56:52 +7013 7013 7014 701.3 1402.6000000000001 7013 1989-03-15 2024-10-11 01:56:53.000 1989-03-15 2024-10-11 01:56:53 +7014 7014 7015 701.4 1402.8000000000002 7014 1989-03-16 2024-10-11 01:56:54.000 1989-03-16 2024-10-11 01:56:54 +7015 7015 7016 701.5 1403 7015 1989-03-17 2024-10-11 01:56:55.000 1989-03-17 2024-10-11 01:56:55 +7016 7016 7017 701.6 1403.2 7016 1989-03-18 2024-10-11 01:56:56.000 1989-03-18 2024-10-11 01:56:56 +7017 7017 7018 701.7 1403.4 7017 1989-03-19 2024-10-11 01:56:57.000 1989-03-19 2024-10-11 01:56:57 +7018 7018 7019 701.8 1403.6000000000001 7018 1989-03-20 2024-10-11 01:56:58.000 1989-03-20 2024-10-11 01:56:58 +7019 7019 7020 701.9 1403.8000000000002 7019 1989-03-21 2024-10-11 01:56:59.000 1989-03-21 2024-10-11 01:56:59 +7020 7020 7021 702 1404 7020 1989-03-22 2024-10-11 01:57:00.000 1989-03-22 2024-10-11 01:57:00 +7021 7021 7022 702.1 1404.2 7021 1989-03-23 2024-10-11 01:57:01.000 1989-03-23 2024-10-11 01:57:01 +7022 7022 7023 702.2 1404.4 7022 1989-03-24 2024-10-11 01:57:02.000 1989-03-24 2024-10-11 01:57:02 +7023 7023 7024 702.3 1404.6000000000001 7023 1989-03-25 2024-10-11 01:57:03.000 1989-03-25 2024-10-11 01:57:03 +7024 7024 7025 702.4 1404.8000000000002 7024 1989-03-26 2024-10-11 01:57:04.000 1989-03-26 2024-10-11 01:57:04 +7025 7025 7026 702.5 1405 7025 1989-03-27 2024-10-11 01:57:05.000 1989-03-27 2024-10-11 01:57:05 +7026 7026 7027 702.6 1405.2 7026 1989-03-28 2024-10-11 01:57:06.000 1989-03-28 2024-10-11 01:57:06 +7027 7027 7028 702.7 1405.4 7027 1989-03-29 2024-10-11 01:57:07.000 1989-03-29 2024-10-11 01:57:07 +7028 7028 7029 702.8 1405.6000000000001 7028 1989-03-30 2024-10-11 01:57:08.000 1989-03-30 2024-10-11 01:57:08 +7029 7029 7030 702.9 1405.8000000000002 7029 1989-03-31 2024-10-11 01:57:09.000 1989-03-31 2024-10-11 01:57:09 +7030 7030 7031 703 1406 7030 1989-04-01 2024-10-11 01:57:10.000 1989-04-01 2024-10-11 01:57:10 +7031 7031 7032 703.1 1406.2 7031 1989-04-02 2024-10-11 01:57:11.000 1989-04-02 2024-10-11 01:57:11 +7032 7032 7033 703.2 1406.4 7032 1989-04-03 2024-10-11 01:57:12.000 1989-04-03 2024-10-11 01:57:12 +7033 7033 7034 703.3 1406.6000000000001 7033 1989-04-04 2024-10-11 01:57:13.000 1989-04-04 2024-10-11 01:57:13 +7034 7034 7035 703.4 1406.8000000000002 7034 1989-04-05 2024-10-11 01:57:14.000 1989-04-05 2024-10-11 01:57:14 +7035 7035 7036 703.5 1407 7035 1989-04-06 2024-10-11 01:57:15.000 1989-04-06 2024-10-11 01:57:15 +7036 7036 7037 703.6 1407.2 7036 1989-04-07 2024-10-11 01:57:16.000 1989-04-07 2024-10-11 01:57:16 +7037 7037 7038 703.7 1407.4 7037 1989-04-08 2024-10-11 01:57:17.000 1989-04-08 2024-10-11 01:57:17 +7038 7038 7039 703.8 1407.6000000000001 7038 1989-04-09 2024-10-11 01:57:18.000 1989-04-09 2024-10-11 01:57:18 +7039 7039 7040 703.9 1407.8000000000002 7039 1989-04-10 2024-10-11 01:57:19.000 1989-04-10 2024-10-11 01:57:19 +7040 7040 7041 704 1408 7040 1989-04-11 2024-10-11 01:57:20.000 1989-04-11 2024-10-11 01:57:20 +7041 7041 7042 704.1 1408.2 7041 1989-04-12 2024-10-11 01:57:21.000 1989-04-12 2024-10-11 01:57:21 +7042 7042 7043 704.2 1408.4 7042 1989-04-13 2024-10-11 01:57:22.000 1989-04-13 2024-10-11 01:57:22 +7043 7043 7044 704.3 1408.6000000000001 7043 1989-04-14 2024-10-11 01:57:23.000 1989-04-14 2024-10-11 01:57:23 +7044 7044 7045 704.4 1408.8000000000002 7044 1989-04-15 2024-10-11 01:57:24.000 1989-04-15 2024-10-11 01:57:24 +7045 7045 7046 704.5 1409 7045 1989-04-16 2024-10-11 01:57:25.000 1989-04-16 2024-10-11 01:57:25 +7046 7046 7047 704.6 1409.2 7046 1989-04-17 2024-10-11 01:57:26.000 1989-04-17 2024-10-11 01:57:26 +7047 7047 7048 704.7 1409.4 7047 1989-04-18 2024-10-11 01:57:27.000 1989-04-18 2024-10-11 01:57:27 +7048 7048 7049 704.8 1409.6000000000001 7048 1989-04-19 2024-10-11 01:57:28.000 1989-04-19 2024-10-11 01:57:28 +7049 7049 7050 704.9 1409.8000000000002 7049 1989-04-20 2024-10-11 01:57:29.000 1989-04-20 2024-10-11 01:57:29 +7050 7050 7051 705 1410 7050 1989-04-21 2024-10-11 01:57:30.000 1989-04-21 2024-10-11 01:57:30 +7051 7051 7052 705.1 1410.2 7051 1989-04-22 2024-10-11 01:57:31.000 1989-04-22 2024-10-11 01:57:31 +7052 7052 7053 705.2 1410.4 7052 1989-04-23 2024-10-11 01:57:32.000 1989-04-23 2024-10-11 01:57:32 +7053 7053 7054 705.3 1410.6000000000001 7053 1989-04-24 2024-10-11 01:57:33.000 1989-04-24 2024-10-11 01:57:33 +7054 7054 7055 705.4 1410.8000000000002 7054 1989-04-25 2024-10-11 01:57:34.000 1989-04-25 2024-10-11 01:57:34 +7055 7055 7056 705.5 1411 7055 1989-04-26 2024-10-11 01:57:35.000 1989-04-26 2024-10-11 01:57:35 +7056 7056 7057 705.6 1411.2 7056 1989-04-27 2024-10-11 01:57:36.000 1989-04-27 2024-10-11 01:57:36 +7057 7057 7058 705.7 1411.4 7057 1989-04-28 2024-10-11 01:57:37.000 1989-04-28 2024-10-11 01:57:37 +7058 7058 7059 705.8 1411.6000000000001 7058 1989-04-29 2024-10-11 01:57:38.000 1989-04-29 2024-10-11 01:57:38 +7059 7059 7060 705.9 1411.8000000000002 7059 1989-04-30 2024-10-11 01:57:39.000 1989-04-30 2024-10-11 01:57:39 +7060 7060 7061 706 1412 7060 1989-05-01 2024-10-11 01:57:40.000 1989-05-01 2024-10-11 01:57:40 +7061 7061 7062 706.1 1412.2 7061 1989-05-02 2024-10-11 01:57:41.000 1989-05-02 2024-10-11 01:57:41 +7062 7062 7063 706.2 1412.4 7062 1989-05-03 2024-10-11 01:57:42.000 1989-05-03 2024-10-11 01:57:42 +7063 7063 7064 706.3 1412.6000000000001 7063 1989-05-04 2024-10-11 01:57:43.000 1989-05-04 2024-10-11 01:57:43 +7064 7064 7065 706.4 1412.8000000000002 7064 1989-05-05 2024-10-11 01:57:44.000 1989-05-05 2024-10-11 01:57:44 +7065 7065 7066 706.5 1413 7065 1989-05-06 2024-10-11 01:57:45.000 1989-05-06 2024-10-11 01:57:45 +7066 7066 7067 706.6 1413.2 7066 1989-05-07 2024-10-11 01:57:46.000 1989-05-07 2024-10-11 01:57:46 +7067 7067 7068 706.7 1413.4 7067 1989-05-08 2024-10-11 01:57:47.000 1989-05-08 2024-10-11 01:57:47 +7068 7068 7069 706.8 1413.6000000000001 7068 1989-05-09 2024-10-11 01:57:48.000 1989-05-09 2024-10-11 01:57:48 +7069 7069 7070 706.9 1413.8000000000002 7069 1989-05-10 2024-10-11 01:57:49.000 1989-05-10 2024-10-11 01:57:49 +7070 7070 7071 707 1414 7070 1989-05-11 2024-10-11 01:57:50.000 1989-05-11 2024-10-11 01:57:50 +7071 7071 7072 707.1 1414.2 7071 1989-05-12 2024-10-11 01:57:51.000 1989-05-12 2024-10-11 01:57:51 +7072 7072 7073 707.2 1414.4 7072 1989-05-13 2024-10-11 01:57:52.000 1989-05-13 2024-10-11 01:57:52 +7073 7073 7074 707.3 1414.6000000000001 7073 1989-05-14 2024-10-11 01:57:53.000 1989-05-14 2024-10-11 01:57:53 +7074 7074 7075 707.4 1414.8000000000002 7074 1989-05-15 2024-10-11 01:57:54.000 1989-05-15 2024-10-11 01:57:54 +7075 7075 7076 707.5 1415 7075 1989-05-16 2024-10-11 01:57:55.000 1989-05-16 2024-10-11 01:57:55 +7076 7076 7077 707.6 1415.2 7076 1989-05-17 2024-10-11 01:57:56.000 1989-05-17 2024-10-11 01:57:56 +7077 7077 7078 707.7 1415.4 7077 1989-05-18 2024-10-11 01:57:57.000 1989-05-18 2024-10-11 01:57:57 +7078 7078 7079 707.8 1415.6000000000001 7078 1989-05-19 2024-10-11 01:57:58.000 1989-05-19 2024-10-11 01:57:58 +7079 7079 7080 707.9 1415.8000000000002 7079 1989-05-20 2024-10-11 01:57:59.000 1989-05-20 2024-10-11 01:57:59 +7080 7080 7081 708 1416 7080 1989-05-21 2024-10-11 01:58:00.000 1989-05-21 2024-10-11 01:58:00 +7081 7081 7082 708.1 1416.2 7081 1989-05-22 2024-10-11 01:58:01.000 1989-05-22 2024-10-11 01:58:01 +7082 7082 7083 708.2 1416.4 7082 1989-05-23 2024-10-11 01:58:02.000 1989-05-23 2024-10-11 01:58:02 +7083 7083 7084 708.3 1416.6000000000001 7083 1989-05-24 2024-10-11 01:58:03.000 1989-05-24 2024-10-11 01:58:03 +7084 7084 7085 708.4 1416.8000000000002 7084 1989-05-25 2024-10-11 01:58:04.000 1989-05-25 2024-10-11 01:58:04 +7085 7085 7086 708.5 1417 7085 1989-05-26 2024-10-11 01:58:05.000 1989-05-26 2024-10-11 01:58:05 +7086 7086 7087 708.6 1417.2 7086 1989-05-27 2024-10-11 01:58:06.000 1989-05-27 2024-10-11 01:58:06 +7087 7087 7088 708.7 1417.4 7087 1989-05-28 2024-10-11 01:58:07.000 1989-05-28 2024-10-11 01:58:07 +7088 7088 7089 708.8 1417.6000000000001 7088 1989-05-29 2024-10-11 01:58:08.000 1989-05-29 2024-10-11 01:58:08 +7089 7089 7090 708.9 1417.8000000000002 7089 1989-05-30 2024-10-11 01:58:09.000 1989-05-30 2024-10-11 01:58:09 +7090 7090 7091 709 1418 7090 1989-05-31 2024-10-11 01:58:10.000 1989-05-31 2024-10-11 01:58:10 +7091 7091 7092 709.1 1418.2 7091 1989-06-01 2024-10-11 01:58:11.000 1989-06-01 2024-10-11 01:58:11 +7092 7092 7093 709.2 1418.4 7092 1989-06-02 2024-10-11 01:58:12.000 1989-06-02 2024-10-11 01:58:12 +7093 7093 7094 709.3 1418.6000000000001 7093 1989-06-03 2024-10-11 01:58:13.000 1989-06-03 2024-10-11 01:58:13 +7094 7094 7095 709.4 1418.8000000000002 7094 1989-06-04 2024-10-11 01:58:14.000 1989-06-04 2024-10-11 01:58:14 +7095 7095 7096 709.5 1419 7095 1989-06-05 2024-10-11 01:58:15.000 1989-06-05 2024-10-11 01:58:15 +7096 7096 7097 709.6 1419.2 7096 1989-06-06 2024-10-11 01:58:16.000 1989-06-06 2024-10-11 01:58:16 +7097 7097 7098 709.7 1419.4 7097 1989-06-07 2024-10-11 01:58:17.000 1989-06-07 2024-10-11 01:58:17 +7098 7098 7099 709.8 1419.6000000000001 7098 1989-06-08 2024-10-11 01:58:18.000 1989-06-08 2024-10-11 01:58:18 +7099 7099 7100 709.9 1419.8000000000002 7099 1989-06-09 2024-10-11 01:58:19.000 1989-06-09 2024-10-11 01:58:19 +7100 7100 7101 710 1420 7100 1989-06-10 2024-10-11 01:58:20.000 1989-06-10 2024-10-11 01:58:20 +7101 7101 7102 710.1 1420.2 7101 1989-06-11 2024-10-11 01:58:21.000 1989-06-11 2024-10-11 01:58:21 +7102 7102 7103 710.2 1420.4 7102 1989-06-12 2024-10-11 01:58:22.000 1989-06-12 2024-10-11 01:58:22 +7103 7103 7104 710.3 1420.6000000000001 7103 1989-06-13 2024-10-11 01:58:23.000 1989-06-13 2024-10-11 01:58:23 +7104 7104 7105 710.4 1420.8000000000002 7104 1989-06-14 2024-10-11 01:58:24.000 1989-06-14 2024-10-11 01:58:24 +7105 7105 7106 710.5 1421 7105 1989-06-15 2024-10-11 01:58:25.000 1989-06-15 2024-10-11 01:58:25 +7106 7106 7107 710.6 1421.2 7106 1989-06-16 2024-10-11 01:58:26.000 1989-06-16 2024-10-11 01:58:26 +7107 7107 7108 710.7 1421.4 7107 1989-06-17 2024-10-11 01:58:27.000 1989-06-17 2024-10-11 01:58:27 +7108 7108 7109 710.8 1421.6000000000001 7108 1989-06-18 2024-10-11 01:58:28.000 1989-06-18 2024-10-11 01:58:28 +7109 7109 7110 710.9 1421.8000000000002 7109 1989-06-19 2024-10-11 01:58:29.000 1989-06-19 2024-10-11 01:58:29 +7110 7110 7111 711 1422 7110 1989-06-20 2024-10-11 01:58:30.000 1989-06-20 2024-10-11 01:58:30 +7111 7111 7112 711.1 1422.2 7111 1989-06-21 2024-10-11 01:58:31.000 1989-06-21 2024-10-11 01:58:31 +7112 7112 7113 711.2 1422.4 7112 1989-06-22 2024-10-11 01:58:32.000 1989-06-22 2024-10-11 01:58:32 +7113 7113 7114 711.3 1422.6000000000001 7113 1989-06-23 2024-10-11 01:58:33.000 1989-06-23 2024-10-11 01:58:33 +7114 7114 7115 711.4 1422.8000000000002 7114 1989-06-24 2024-10-11 01:58:34.000 1989-06-24 2024-10-11 01:58:34 +7115 7115 7116 711.5 1423 7115 1989-06-25 2024-10-11 01:58:35.000 1989-06-25 2024-10-11 01:58:35 +7116 7116 7117 711.6 1423.2 7116 1989-06-26 2024-10-11 01:58:36.000 1989-06-26 2024-10-11 01:58:36 +7117 7117 7118 711.7 1423.4 7117 1989-06-27 2024-10-11 01:58:37.000 1989-06-27 2024-10-11 01:58:37 +7118 7118 7119 711.8 1423.6000000000001 7118 1989-06-28 2024-10-11 01:58:38.000 1989-06-28 2024-10-11 01:58:38 +7119 7119 7120 711.9 1423.8000000000002 7119 1989-06-29 2024-10-11 01:58:39.000 1989-06-29 2024-10-11 01:58:39 +7120 7120 7121 712 1424 7120 1989-06-30 2024-10-11 01:58:40.000 1989-06-30 2024-10-11 01:58:40 +7121 7121 7122 712.1 1424.2 7121 1989-07-01 2024-10-11 01:58:41.000 1989-07-01 2024-10-11 01:58:41 +7122 7122 7123 712.2 1424.4 7122 1989-07-02 2024-10-11 01:58:42.000 1989-07-02 2024-10-11 01:58:42 +7123 7123 7124 712.3 1424.6000000000001 7123 1989-07-03 2024-10-11 01:58:43.000 1989-07-03 2024-10-11 01:58:43 +7124 7124 7125 712.4 1424.8000000000002 7124 1989-07-04 2024-10-11 01:58:44.000 1989-07-04 2024-10-11 01:58:44 +7125 7125 7126 712.5 1425 7125 1989-07-05 2024-10-11 01:58:45.000 1989-07-05 2024-10-11 01:58:45 +7126 7126 7127 712.6 1425.2 7126 1989-07-06 2024-10-11 01:58:46.000 1989-07-06 2024-10-11 01:58:46 +7127 7127 7128 712.7 1425.4 7127 1989-07-07 2024-10-11 01:58:47.000 1989-07-07 2024-10-11 01:58:47 +7128 7128 7129 712.8 1425.6000000000001 7128 1989-07-08 2024-10-11 01:58:48.000 1989-07-08 2024-10-11 01:58:48 +7129 7129 7130 712.9 1425.8000000000002 7129 1989-07-09 2024-10-11 01:58:49.000 1989-07-09 2024-10-11 01:58:49 +7130 7130 7131 713 1426 7130 1989-07-10 2024-10-11 01:58:50.000 1989-07-10 2024-10-11 01:58:50 +7131 7131 7132 713.1 1426.2 7131 1989-07-11 2024-10-11 01:58:51.000 1989-07-11 2024-10-11 01:58:51 +7132 7132 7133 713.2 1426.4 7132 1989-07-12 2024-10-11 01:58:52.000 1989-07-12 2024-10-11 01:58:52 +7133 7133 7134 713.3 1426.6000000000001 7133 1989-07-13 2024-10-11 01:58:53.000 1989-07-13 2024-10-11 01:58:53 +7134 7134 7135 713.4 1426.8000000000002 7134 1989-07-14 2024-10-11 01:58:54.000 1989-07-14 2024-10-11 01:58:54 +7135 7135 7136 713.5 1427 7135 1989-07-15 2024-10-11 01:58:55.000 1989-07-15 2024-10-11 01:58:55 +7136 7136 7137 713.6 1427.2 7136 1989-07-16 2024-10-11 01:58:56.000 1989-07-16 2024-10-11 01:58:56 +7137 7137 7138 713.7 1427.4 7137 1989-07-17 2024-10-11 01:58:57.000 1989-07-17 2024-10-11 01:58:57 +7138 7138 7139 713.8 1427.6000000000001 7138 1989-07-18 2024-10-11 01:58:58.000 1989-07-18 2024-10-11 01:58:58 +7139 7139 7140 713.9 1427.8000000000002 7139 1989-07-19 2024-10-11 01:58:59.000 1989-07-19 2024-10-11 01:58:59 +7140 7140 7141 714 1428 7140 1989-07-20 2024-10-11 01:59:00.000 1989-07-20 2024-10-11 01:59:00 +7141 7141 7142 714.1 1428.2 7141 1989-07-21 2024-10-11 01:59:01.000 1989-07-21 2024-10-11 01:59:01 +7142 7142 7143 714.2 1428.4 7142 1989-07-22 2024-10-11 01:59:02.000 1989-07-22 2024-10-11 01:59:02 +7143 7143 7144 714.3 1428.6000000000001 7143 1989-07-23 2024-10-11 01:59:03.000 1989-07-23 2024-10-11 01:59:03 +7144 7144 7145 714.4 1428.8000000000002 7144 1989-07-24 2024-10-11 01:59:04.000 1989-07-24 2024-10-11 01:59:04 +7145 7145 7146 714.5 1429 7145 1989-07-25 2024-10-11 01:59:05.000 1989-07-25 2024-10-11 01:59:05 +7146 7146 7147 714.6 1429.2 7146 1989-07-26 2024-10-11 01:59:06.000 1989-07-26 2024-10-11 01:59:06 +7147 7147 7148 714.7 1429.4 7147 1989-07-27 2024-10-11 01:59:07.000 1989-07-27 2024-10-11 01:59:07 +7148 7148 7149 714.8 1429.6000000000001 7148 1989-07-28 2024-10-11 01:59:08.000 1989-07-28 2024-10-11 01:59:08 +7149 7149 7150 714.9 1429.8000000000002 7149 1989-07-29 2024-10-11 01:59:09.000 1989-07-29 2024-10-11 01:59:09 +7150 7150 7151 715 1430 7150 1989-07-30 2024-10-11 01:59:10.000 1989-07-30 2024-10-11 01:59:10 +7151 7151 7152 715.1 1430.2 7151 1989-07-31 2024-10-11 01:59:11.000 1989-07-31 2024-10-11 01:59:11 +7152 7152 7153 715.2 1430.4 7152 1989-08-01 2024-10-11 01:59:12.000 1989-08-01 2024-10-11 01:59:12 +7153 7153 7154 715.3 1430.6000000000001 7153 1989-08-02 2024-10-11 01:59:13.000 1989-08-02 2024-10-11 01:59:13 +7154 7154 7155 715.4 1430.8000000000002 7154 1989-08-03 2024-10-11 01:59:14.000 1989-08-03 2024-10-11 01:59:14 +7155 7155 7156 715.5 1431 7155 1989-08-04 2024-10-11 01:59:15.000 1989-08-04 2024-10-11 01:59:15 +7156 7156 7157 715.6 1431.2 7156 1989-08-05 2024-10-11 01:59:16.000 1989-08-05 2024-10-11 01:59:16 +7157 7157 7158 715.7 1431.4 7157 1989-08-06 2024-10-11 01:59:17.000 1989-08-06 2024-10-11 01:59:17 +7158 7158 7159 715.8 1431.6000000000001 7158 1989-08-07 2024-10-11 01:59:18.000 1989-08-07 2024-10-11 01:59:18 +7159 7159 7160 715.9 1431.8000000000002 7159 1989-08-08 2024-10-11 01:59:19.000 1989-08-08 2024-10-11 01:59:19 +7160 7160 7161 716 1432 7160 1989-08-09 2024-10-11 01:59:20.000 1989-08-09 2024-10-11 01:59:20 +7161 7161 7162 716.1 1432.2 7161 1989-08-10 2024-10-11 01:59:21.000 1989-08-10 2024-10-11 01:59:21 +7162 7162 7163 716.2 1432.4 7162 1989-08-11 2024-10-11 01:59:22.000 1989-08-11 2024-10-11 01:59:22 +7163 7163 7164 716.3 1432.6000000000001 7163 1989-08-12 2024-10-11 01:59:23.000 1989-08-12 2024-10-11 01:59:23 +7164 7164 7165 716.4 1432.8000000000002 7164 1989-08-13 2024-10-11 01:59:24.000 1989-08-13 2024-10-11 01:59:24 +7165 7165 7166 716.5 1433 7165 1989-08-14 2024-10-11 01:59:25.000 1989-08-14 2024-10-11 01:59:25 +7166 7166 7167 716.6 1433.2 7166 1989-08-15 2024-10-11 01:59:26.000 1989-08-15 2024-10-11 01:59:26 +7167 7167 7168 716.7 1433.4 7167 1989-08-16 2024-10-11 01:59:27.000 1989-08-16 2024-10-11 01:59:27 +7168 7168 7169 716.8 1433.6000000000001 7168 1989-08-17 2024-10-11 01:59:28.000 1989-08-17 2024-10-11 01:59:28 +7169 7169 7170 716.9 1433.8000000000002 7169 1989-08-18 2024-10-11 01:59:29.000 1989-08-18 2024-10-11 01:59:29 +7170 7170 7171 717 1434 7170 1989-08-19 2024-10-11 01:59:30.000 1989-08-19 2024-10-11 01:59:30 +7171 7171 7172 717.1 1434.2 7171 1989-08-20 2024-10-11 01:59:31.000 1989-08-20 2024-10-11 01:59:31 +7172 7172 7173 717.2 1434.4 7172 1989-08-21 2024-10-11 01:59:32.000 1989-08-21 2024-10-11 01:59:32 +7173 7173 7174 717.3 1434.6000000000001 7173 1989-08-22 2024-10-11 01:59:33.000 1989-08-22 2024-10-11 01:59:33 +7174 7174 7175 717.4 1434.8000000000002 7174 1989-08-23 2024-10-11 01:59:34.000 1989-08-23 2024-10-11 01:59:34 +7175 7175 7176 717.5 1435 7175 1989-08-24 2024-10-11 01:59:35.000 1989-08-24 2024-10-11 01:59:35 +7176 7176 7177 717.6 1435.2 7176 1989-08-25 2024-10-11 01:59:36.000 1989-08-25 2024-10-11 01:59:36 +7177 7177 7178 717.7 1435.4 7177 1989-08-26 2024-10-11 01:59:37.000 1989-08-26 2024-10-11 01:59:37 +7178 7178 7179 717.8 1435.6000000000001 7178 1989-08-27 2024-10-11 01:59:38.000 1989-08-27 2024-10-11 01:59:38 +7179 7179 7180 717.9 1435.8000000000002 7179 1989-08-28 2024-10-11 01:59:39.000 1989-08-28 2024-10-11 01:59:39 +7180 7180 7181 718 1436 7180 1989-08-29 2024-10-11 01:59:40.000 1989-08-29 2024-10-11 01:59:40 +7181 7181 7182 718.1 1436.2 7181 1989-08-30 2024-10-11 01:59:41.000 1989-08-30 2024-10-11 01:59:41 +7182 7182 7183 718.2 1436.4 7182 1989-08-31 2024-10-11 01:59:42.000 1989-08-31 2024-10-11 01:59:42 +7183 7183 7184 718.3 1436.6000000000001 7183 1989-09-01 2024-10-11 01:59:43.000 1989-09-01 2024-10-11 01:59:43 +7184 7184 7185 718.4 1436.8000000000002 7184 1989-09-02 2024-10-11 01:59:44.000 1989-09-02 2024-10-11 01:59:44 +7185 7185 7186 718.5 1437 7185 1989-09-03 2024-10-11 01:59:45.000 1989-09-03 2024-10-11 01:59:45 +7186 7186 7187 718.6 1437.2 7186 1989-09-04 2024-10-11 01:59:46.000 1989-09-04 2024-10-11 01:59:46 +7187 7187 7188 718.7 1437.4 7187 1989-09-05 2024-10-11 01:59:47.000 1989-09-05 2024-10-11 01:59:47 +7188 7188 7189 718.8 1437.6000000000001 7188 1989-09-06 2024-10-11 01:59:48.000 1989-09-06 2024-10-11 01:59:48 +7189 7189 7190 718.9 1437.8000000000002 7189 1989-09-07 2024-10-11 01:59:49.000 1989-09-07 2024-10-11 01:59:49 +7190 7190 7191 719 1438 7190 1989-09-08 2024-10-11 01:59:50.000 1989-09-08 2024-10-11 01:59:50 +7191 7191 7192 719.1 1438.2 7191 1989-09-09 2024-10-11 01:59:51.000 1989-09-09 2024-10-11 01:59:51 +7192 7192 7193 719.2 1438.4 7192 1989-09-10 2024-10-11 01:59:52.000 1989-09-10 2024-10-11 01:59:52 +7193 7193 7194 719.3 1438.6000000000001 7193 1989-09-11 2024-10-11 01:59:53.000 1989-09-11 2024-10-11 01:59:53 +7194 7194 7195 719.4 1438.8000000000002 7194 1989-09-12 2024-10-11 01:59:54.000 1989-09-12 2024-10-11 01:59:54 +7195 7195 7196 719.5 1439 7195 1989-09-13 2024-10-11 01:59:55.000 1989-09-13 2024-10-11 01:59:55 +7196 7196 7197 719.6 1439.2 7196 1989-09-14 2024-10-11 01:59:56.000 1989-09-14 2024-10-11 01:59:56 +7197 7197 7198 719.7 1439.4 7197 1989-09-15 2024-10-11 01:59:57.000 1989-09-15 2024-10-11 01:59:57 +7198 7198 7199 719.8 1439.6000000000001 7198 1989-09-16 2024-10-11 01:59:58.000 1989-09-16 2024-10-11 01:59:58 +7199 7199 7200 719.9 1439.8000000000002 7199 1989-09-17 2024-10-11 01:59:59.000 1989-09-17 2024-10-11 01:59:59 +7200 7200 7201 720 1440 7200 1989-09-18 2024-10-11 02:00:00.000 1989-09-18 2024-10-11 02:00:00 +7201 7201 7202 720.1 1440.2 7201 1989-09-19 2024-10-11 02:00:01.000 1989-09-19 2024-10-11 02:00:01 +7202 7202 7203 720.2 1440.4 7202 1989-09-20 2024-10-11 02:00:02.000 1989-09-20 2024-10-11 02:00:02 +7203 7203 7204 720.3 1440.6000000000001 7203 1989-09-21 2024-10-11 02:00:03.000 1989-09-21 2024-10-11 02:00:03 +7204 7204 7205 720.4 1440.8000000000002 7204 1989-09-22 2024-10-11 02:00:04.000 1989-09-22 2024-10-11 02:00:04 +7205 7205 7206 720.5 1441 7205 1989-09-23 2024-10-11 02:00:05.000 1989-09-23 2024-10-11 02:00:05 +7206 7206 7207 720.6 1441.2 7206 1989-09-24 2024-10-11 02:00:06.000 1989-09-24 2024-10-11 02:00:06 +7207 7207 7208 720.7 1441.4 7207 1989-09-25 2024-10-11 02:00:07.000 1989-09-25 2024-10-11 02:00:07 +7208 7208 7209 720.8 1441.6000000000001 7208 1989-09-26 2024-10-11 02:00:08.000 1989-09-26 2024-10-11 02:00:08 +7209 7209 7210 720.9 1441.8000000000002 7209 1989-09-27 2024-10-11 02:00:09.000 1989-09-27 2024-10-11 02:00:09 +7210 7210 7211 721 1442 7210 1989-09-28 2024-10-11 02:00:10.000 1989-09-28 2024-10-11 02:00:10 +7211 7211 7212 721.1 1442.2 7211 1989-09-29 2024-10-11 02:00:11.000 1989-09-29 2024-10-11 02:00:11 +7212 7212 7213 721.2 1442.4 7212 1989-09-30 2024-10-11 02:00:12.000 1989-09-30 2024-10-11 02:00:12 +7213 7213 7214 721.3 1442.6000000000001 7213 1989-10-01 2024-10-11 02:00:13.000 1989-10-01 2024-10-11 02:00:13 +7214 7214 7215 721.4 1442.8000000000002 7214 1989-10-02 2024-10-11 02:00:14.000 1989-10-02 2024-10-11 02:00:14 +7215 7215 7216 721.5 1443 7215 1989-10-03 2024-10-11 02:00:15.000 1989-10-03 2024-10-11 02:00:15 +7216 7216 7217 721.6 1443.2 7216 1989-10-04 2024-10-11 02:00:16.000 1989-10-04 2024-10-11 02:00:16 +7217 7217 7218 721.7 1443.4 7217 1989-10-05 2024-10-11 02:00:17.000 1989-10-05 2024-10-11 02:00:17 +7218 7218 7219 721.8 1443.6000000000001 7218 1989-10-06 2024-10-11 02:00:18.000 1989-10-06 2024-10-11 02:00:18 +7219 7219 7220 721.9 1443.8000000000002 7219 1989-10-07 2024-10-11 02:00:19.000 1989-10-07 2024-10-11 02:00:19 +7220 7220 7221 722 1444 7220 1989-10-08 2024-10-11 02:00:20.000 1989-10-08 2024-10-11 02:00:20 +7221 7221 7222 722.1 1444.2 7221 1989-10-09 2024-10-11 02:00:21.000 1989-10-09 2024-10-11 02:00:21 +7222 7222 7223 722.2 1444.4 7222 1989-10-10 2024-10-11 02:00:22.000 1989-10-10 2024-10-11 02:00:22 +7223 7223 7224 722.3 1444.6000000000001 7223 1989-10-11 2024-10-11 02:00:23.000 1989-10-11 2024-10-11 02:00:23 +7224 7224 7225 722.4 1444.8000000000002 7224 1989-10-12 2024-10-11 02:00:24.000 1989-10-12 2024-10-11 02:00:24 +7225 7225 7226 722.5 1445 7225 1989-10-13 2024-10-11 02:00:25.000 1989-10-13 2024-10-11 02:00:25 +7226 7226 7227 722.6 1445.2 7226 1989-10-14 2024-10-11 02:00:26.000 1989-10-14 2024-10-11 02:00:26 +7227 7227 7228 722.7 1445.4 7227 1989-10-15 2024-10-11 02:00:27.000 1989-10-15 2024-10-11 02:00:27 +7228 7228 7229 722.8 1445.6000000000001 7228 1989-10-16 2024-10-11 02:00:28.000 1989-10-16 2024-10-11 02:00:28 +7229 7229 7230 722.9 1445.8000000000002 7229 1989-10-17 2024-10-11 02:00:29.000 1989-10-17 2024-10-11 02:00:29 +7230 7230 7231 723 1446 7230 1989-10-18 2024-10-11 02:00:30.000 1989-10-18 2024-10-11 02:00:30 +7231 7231 7232 723.1 1446.2 7231 1989-10-19 2024-10-11 02:00:31.000 1989-10-19 2024-10-11 02:00:31 +7232 7232 7233 723.2 1446.4 7232 1989-10-20 2024-10-11 02:00:32.000 1989-10-20 2024-10-11 02:00:32 +7233 7233 7234 723.3 1446.6000000000001 7233 1989-10-21 2024-10-11 02:00:33.000 1989-10-21 2024-10-11 02:00:33 +7234 7234 7235 723.4 1446.8000000000002 7234 1989-10-22 2024-10-11 02:00:34.000 1989-10-22 2024-10-11 02:00:34 +7235 7235 7236 723.5 1447 7235 1989-10-23 2024-10-11 02:00:35.000 1989-10-23 2024-10-11 02:00:35 +7236 7236 7237 723.6 1447.2 7236 1989-10-24 2024-10-11 02:00:36.000 1989-10-24 2024-10-11 02:00:36 +7237 7237 7238 723.7 1447.4 7237 1989-10-25 2024-10-11 02:00:37.000 1989-10-25 2024-10-11 02:00:37 +7238 7238 7239 723.8 1447.6000000000001 7238 1989-10-26 2024-10-11 02:00:38.000 1989-10-26 2024-10-11 02:00:38 +7239 7239 7240 723.9 1447.8000000000002 7239 1989-10-27 2024-10-11 02:00:39.000 1989-10-27 2024-10-11 02:00:39 +7240 7240 7241 724 1448 7240 1989-10-28 2024-10-11 02:00:40.000 1989-10-28 2024-10-11 02:00:40 +7241 7241 7242 724.1 1448.2 7241 1989-10-29 2024-10-11 02:00:41.000 1989-10-29 2024-10-11 02:00:41 +7242 7242 7243 724.2 1448.4 7242 1989-10-30 2024-10-11 02:00:42.000 1989-10-30 2024-10-11 02:00:42 +7243 7243 7244 724.3 1448.6000000000001 7243 1989-10-31 2024-10-11 02:00:43.000 1989-10-31 2024-10-11 02:00:43 +7244 7244 7245 724.4 1448.8000000000002 7244 1989-11-01 2024-10-11 02:00:44.000 1989-11-01 2024-10-11 02:00:44 +7245 7245 7246 724.5 1449 7245 1989-11-02 2024-10-11 02:00:45.000 1989-11-02 2024-10-11 02:00:45 +7246 7246 7247 724.6 1449.2 7246 1989-11-03 2024-10-11 02:00:46.000 1989-11-03 2024-10-11 02:00:46 +7247 7247 7248 724.7 1449.4 7247 1989-11-04 2024-10-11 02:00:47.000 1989-11-04 2024-10-11 02:00:47 +7248 7248 7249 724.8 1449.6000000000001 7248 1989-11-05 2024-10-11 02:00:48.000 1989-11-05 2024-10-11 02:00:48 +7249 7249 7250 724.9 1449.8000000000002 7249 1989-11-06 2024-10-11 02:00:49.000 1989-11-06 2024-10-11 02:00:49 +7250 7250 7251 725 1450 7250 1989-11-07 2024-10-11 02:00:50.000 1989-11-07 2024-10-11 02:00:50 +7251 7251 7252 725.1 1450.2 7251 1989-11-08 2024-10-11 02:00:51.000 1989-11-08 2024-10-11 02:00:51 +7252 7252 7253 725.2 1450.4 7252 1989-11-09 2024-10-11 02:00:52.000 1989-11-09 2024-10-11 02:00:52 +7253 7253 7254 725.3 1450.6000000000001 7253 1989-11-10 2024-10-11 02:00:53.000 1989-11-10 2024-10-11 02:00:53 +7254 7254 7255 725.4 1450.8000000000002 7254 1989-11-11 2024-10-11 02:00:54.000 1989-11-11 2024-10-11 02:00:54 +7255 7255 7256 725.5 1451 7255 1989-11-12 2024-10-11 02:00:55.000 1989-11-12 2024-10-11 02:00:55 +7256 7256 7257 725.6 1451.2 7256 1989-11-13 2024-10-11 02:00:56.000 1989-11-13 2024-10-11 02:00:56 +7257 7257 7258 725.7 1451.4 7257 1989-11-14 2024-10-11 02:00:57.000 1989-11-14 2024-10-11 02:00:57 +7258 7258 7259 725.8 1451.6000000000001 7258 1989-11-15 2024-10-11 02:00:58.000 1989-11-15 2024-10-11 02:00:58 +7259 7259 7260 725.9 1451.8000000000002 7259 1989-11-16 2024-10-11 02:00:59.000 1989-11-16 2024-10-11 02:00:59 +7260 7260 7261 726 1452 7260 1989-11-17 2024-10-11 02:01:00.000 1989-11-17 2024-10-11 02:01:00 +7261 7261 7262 726.1 1452.2 7261 1989-11-18 2024-10-11 02:01:01.000 1989-11-18 2024-10-11 02:01:01 +7262 7262 7263 726.2 1452.4 7262 1989-11-19 2024-10-11 02:01:02.000 1989-11-19 2024-10-11 02:01:02 +7263 7263 7264 726.3 1452.6000000000001 7263 1989-11-20 2024-10-11 02:01:03.000 1989-11-20 2024-10-11 02:01:03 +7264 7264 7265 726.4 1452.8000000000002 7264 1989-11-21 2024-10-11 02:01:04.000 1989-11-21 2024-10-11 02:01:04 +7265 7265 7266 726.5 1453 7265 1989-11-22 2024-10-11 02:01:05.000 1989-11-22 2024-10-11 02:01:05 +7266 7266 7267 726.6 1453.2 7266 1989-11-23 2024-10-11 02:01:06.000 1989-11-23 2024-10-11 02:01:06 +7267 7267 7268 726.7 1453.4 7267 1989-11-24 2024-10-11 02:01:07.000 1989-11-24 2024-10-11 02:01:07 +7268 7268 7269 726.8 1453.6000000000001 7268 1989-11-25 2024-10-11 02:01:08.000 1989-11-25 2024-10-11 02:01:08 +7269 7269 7270 726.9 1453.8000000000002 7269 1989-11-26 2024-10-11 02:01:09.000 1989-11-26 2024-10-11 02:01:09 +7270 7270 7271 727 1454 7270 1989-11-27 2024-10-11 02:01:10.000 1989-11-27 2024-10-11 02:01:10 +7271 7271 7272 727.1 1454.2 7271 1989-11-28 2024-10-11 02:01:11.000 1989-11-28 2024-10-11 02:01:11 +7272 7272 7273 727.2 1454.4 7272 1989-11-29 2024-10-11 02:01:12.000 1989-11-29 2024-10-11 02:01:12 +7273 7273 7274 727.3 1454.6000000000001 7273 1989-11-30 2024-10-11 02:01:13.000 1989-11-30 2024-10-11 02:01:13 +7274 7274 7275 727.4 1454.8000000000002 7274 1989-12-01 2024-10-11 02:01:14.000 1989-12-01 2024-10-11 02:01:14 +7275 7275 7276 727.5 1455 7275 1989-12-02 2024-10-11 02:01:15.000 1989-12-02 2024-10-11 02:01:15 +7276 7276 7277 727.6 1455.2 7276 1989-12-03 2024-10-11 02:01:16.000 1989-12-03 2024-10-11 02:01:16 +7277 7277 7278 727.7 1455.4 7277 1989-12-04 2024-10-11 02:01:17.000 1989-12-04 2024-10-11 02:01:17 +7278 7278 7279 727.8 1455.6000000000001 7278 1989-12-05 2024-10-11 02:01:18.000 1989-12-05 2024-10-11 02:01:18 +7279 7279 7280 727.9 1455.8000000000002 7279 1989-12-06 2024-10-11 02:01:19.000 1989-12-06 2024-10-11 02:01:19 +7280 7280 7281 728 1456 7280 1989-12-07 2024-10-11 02:01:20.000 1989-12-07 2024-10-11 02:01:20 +7281 7281 7282 728.1 1456.2 7281 1989-12-08 2024-10-11 02:01:21.000 1989-12-08 2024-10-11 02:01:21 +7282 7282 7283 728.2 1456.4 7282 1989-12-09 2024-10-11 02:01:22.000 1989-12-09 2024-10-11 02:01:22 +7283 7283 7284 728.3 1456.6000000000001 7283 1989-12-10 2024-10-11 02:01:23.000 1989-12-10 2024-10-11 02:01:23 +7284 7284 7285 728.4 1456.8000000000002 7284 1989-12-11 2024-10-11 02:01:24.000 1989-12-11 2024-10-11 02:01:24 +7285 7285 7286 728.5 1457 7285 1989-12-12 2024-10-11 02:01:25.000 1989-12-12 2024-10-11 02:01:25 +7286 7286 7287 728.6 1457.2 7286 1989-12-13 2024-10-11 02:01:26.000 1989-12-13 2024-10-11 02:01:26 +7287 7287 7288 728.7 1457.4 7287 1989-12-14 2024-10-11 02:01:27.000 1989-12-14 2024-10-11 02:01:27 +7288 7288 7289 728.8 1457.6000000000001 7288 1989-12-15 2024-10-11 02:01:28.000 1989-12-15 2024-10-11 02:01:28 +7289 7289 7290 728.9 1457.8000000000002 7289 1989-12-16 2024-10-11 02:01:29.000 1989-12-16 2024-10-11 02:01:29 +7290 7290 7291 729 1458 7290 1989-12-17 2024-10-11 02:01:30.000 1989-12-17 2024-10-11 02:01:30 +7291 7291 7292 729.1 1458.2 7291 1989-12-18 2024-10-11 02:01:31.000 1989-12-18 2024-10-11 02:01:31 +7292 7292 7293 729.2 1458.4 7292 1989-12-19 2024-10-11 02:01:32.000 1989-12-19 2024-10-11 02:01:32 +7293 7293 7294 729.3 1458.6000000000001 7293 1989-12-20 2024-10-11 02:01:33.000 1989-12-20 2024-10-11 02:01:33 +7294 7294 7295 729.4 1458.8000000000002 7294 1989-12-21 2024-10-11 02:01:34.000 1989-12-21 2024-10-11 02:01:34 +7295 7295 7296 729.5 1459 7295 1989-12-22 2024-10-11 02:01:35.000 1989-12-22 2024-10-11 02:01:35 +7296 7296 7297 729.6 1459.2 7296 1989-12-23 2024-10-11 02:01:36.000 1989-12-23 2024-10-11 02:01:36 +7297 7297 7298 729.7 1459.4 7297 1989-12-24 2024-10-11 02:01:37.000 1989-12-24 2024-10-11 02:01:37 +7298 7298 7299 729.8 1459.6000000000001 7298 1989-12-25 2024-10-11 02:01:38.000 1989-12-25 2024-10-11 02:01:38 +7299 7299 7300 729.9 1459.8000000000002 7299 1989-12-26 2024-10-11 02:01:39.000 1989-12-26 2024-10-11 02:01:39 +7300 7300 7301 730 1460 7300 1989-12-27 2024-10-11 02:01:40.000 1989-12-27 2024-10-11 02:01:40 +7301 7301 7302 730.1 1460.2 7301 1989-12-28 2024-10-11 02:01:41.000 1989-12-28 2024-10-11 02:01:41 +7302 7302 7303 730.2 1460.4 7302 1989-12-29 2024-10-11 02:01:42.000 1989-12-29 2024-10-11 02:01:42 +7303 7303 7304 730.3 1460.6000000000001 7303 1989-12-30 2024-10-11 02:01:43.000 1989-12-30 2024-10-11 02:01:43 +7304 7304 7305 730.4 1460.8000000000002 7304 1989-12-31 2024-10-11 02:01:44.000 1989-12-31 2024-10-11 02:01:44 +7305 7305 7306 730.5 1461 7305 1990-01-01 2024-10-11 02:01:45.000 1990-01-01 2024-10-11 02:01:45 +7306 7306 7307 730.6 1461.2 7306 1990-01-02 2024-10-11 02:01:46.000 1990-01-02 2024-10-11 02:01:46 +7307 7307 7308 730.7 1461.4 7307 1990-01-03 2024-10-11 02:01:47.000 1990-01-03 2024-10-11 02:01:47 +7308 7308 7309 730.8 1461.6000000000001 7308 1990-01-04 2024-10-11 02:01:48.000 1990-01-04 2024-10-11 02:01:48 +7309 7309 7310 730.9 1461.8000000000002 7309 1990-01-05 2024-10-11 02:01:49.000 1990-01-05 2024-10-11 02:01:49 +7310 7310 7311 731 1462 7310 1990-01-06 2024-10-11 02:01:50.000 1990-01-06 2024-10-11 02:01:50 +7311 7311 7312 731.1 1462.2 7311 1990-01-07 2024-10-11 02:01:51.000 1990-01-07 2024-10-11 02:01:51 +7312 7312 7313 731.2 1462.4 7312 1990-01-08 2024-10-11 02:01:52.000 1990-01-08 2024-10-11 02:01:52 +7313 7313 7314 731.3 1462.6000000000001 7313 1990-01-09 2024-10-11 02:01:53.000 1990-01-09 2024-10-11 02:01:53 +7314 7314 7315 731.4 1462.8000000000002 7314 1990-01-10 2024-10-11 02:01:54.000 1990-01-10 2024-10-11 02:01:54 +7315 7315 7316 731.5 1463 7315 1990-01-11 2024-10-11 02:01:55.000 1990-01-11 2024-10-11 02:01:55 +7316 7316 7317 731.6 1463.2 7316 1990-01-12 2024-10-11 02:01:56.000 1990-01-12 2024-10-11 02:01:56 +7317 7317 7318 731.7 1463.4 7317 1990-01-13 2024-10-11 02:01:57.000 1990-01-13 2024-10-11 02:01:57 +7318 7318 7319 731.8 1463.6000000000001 7318 1990-01-14 2024-10-11 02:01:58.000 1990-01-14 2024-10-11 02:01:58 +7319 7319 7320 731.9 1463.8000000000002 7319 1990-01-15 2024-10-11 02:01:59.000 1990-01-15 2024-10-11 02:01:59 +7320 7320 7321 732 1464 7320 1990-01-16 2024-10-11 02:02:00.000 1990-01-16 2024-10-11 02:02:00 +7321 7321 7322 732.1 1464.2 7321 1990-01-17 2024-10-11 02:02:01.000 1990-01-17 2024-10-11 02:02:01 +7322 7322 7323 732.2 1464.4 7322 1990-01-18 2024-10-11 02:02:02.000 1990-01-18 2024-10-11 02:02:02 +7323 7323 7324 732.3 1464.6000000000001 7323 1990-01-19 2024-10-11 02:02:03.000 1990-01-19 2024-10-11 02:02:03 +7324 7324 7325 732.4 1464.8000000000002 7324 1990-01-20 2024-10-11 02:02:04.000 1990-01-20 2024-10-11 02:02:04 +7325 7325 7326 732.5 1465 7325 1990-01-21 2024-10-11 02:02:05.000 1990-01-21 2024-10-11 02:02:05 +7326 7326 7327 732.6 1465.2 7326 1990-01-22 2024-10-11 02:02:06.000 1990-01-22 2024-10-11 02:02:06 +7327 7327 7328 732.7 1465.4 7327 1990-01-23 2024-10-11 02:02:07.000 1990-01-23 2024-10-11 02:02:07 +7328 7328 7329 732.8 1465.6000000000001 7328 1990-01-24 2024-10-11 02:02:08.000 1990-01-24 2024-10-11 02:02:08 +7329 7329 7330 732.9 1465.8000000000002 7329 1990-01-25 2024-10-11 02:02:09.000 1990-01-25 2024-10-11 02:02:09 +7330 7330 7331 733 1466 7330 1990-01-26 2024-10-11 02:02:10.000 1990-01-26 2024-10-11 02:02:10 +7331 7331 7332 733.1 1466.2 7331 1990-01-27 2024-10-11 02:02:11.000 1990-01-27 2024-10-11 02:02:11 +7332 7332 7333 733.2 1466.4 7332 1990-01-28 2024-10-11 02:02:12.000 1990-01-28 2024-10-11 02:02:12 +7333 7333 7334 733.3 1466.6000000000001 7333 1990-01-29 2024-10-11 02:02:13.000 1990-01-29 2024-10-11 02:02:13 +7334 7334 7335 733.4 1466.8000000000002 7334 1990-01-30 2024-10-11 02:02:14.000 1990-01-30 2024-10-11 02:02:14 +7335 7335 7336 733.5 1467 7335 1990-01-31 2024-10-11 02:02:15.000 1990-01-31 2024-10-11 02:02:15 +7336 7336 7337 733.6 1467.2 7336 1990-02-01 2024-10-11 02:02:16.000 1990-02-01 2024-10-11 02:02:16 +7337 7337 7338 733.7 1467.4 7337 1990-02-02 2024-10-11 02:02:17.000 1990-02-02 2024-10-11 02:02:17 +7338 7338 7339 733.8 1467.6000000000001 7338 1990-02-03 2024-10-11 02:02:18.000 1990-02-03 2024-10-11 02:02:18 +7339 7339 7340 733.9 1467.8000000000002 7339 1990-02-04 2024-10-11 02:02:19.000 1990-02-04 2024-10-11 02:02:19 +7340 7340 7341 734 1468 7340 1990-02-05 2024-10-11 02:02:20.000 1990-02-05 2024-10-11 02:02:20 +7341 7341 7342 734.1 1468.2 7341 1990-02-06 2024-10-11 02:02:21.000 1990-02-06 2024-10-11 02:02:21 +7342 7342 7343 734.2 1468.4 7342 1990-02-07 2024-10-11 02:02:22.000 1990-02-07 2024-10-11 02:02:22 +7343 7343 7344 734.3 1468.6000000000001 7343 1990-02-08 2024-10-11 02:02:23.000 1990-02-08 2024-10-11 02:02:23 +7344 7344 7345 734.4 1468.8000000000002 7344 1990-02-09 2024-10-11 02:02:24.000 1990-02-09 2024-10-11 02:02:24 +7345 7345 7346 734.5 1469 7345 1990-02-10 2024-10-11 02:02:25.000 1990-02-10 2024-10-11 02:02:25 +7346 7346 7347 734.6 1469.2 7346 1990-02-11 2024-10-11 02:02:26.000 1990-02-11 2024-10-11 02:02:26 +7347 7347 7348 734.7 1469.4 7347 1990-02-12 2024-10-11 02:02:27.000 1990-02-12 2024-10-11 02:02:27 +7348 7348 7349 734.8 1469.6000000000001 7348 1990-02-13 2024-10-11 02:02:28.000 1990-02-13 2024-10-11 02:02:28 +7349 7349 7350 734.9 1469.8000000000002 7349 1990-02-14 2024-10-11 02:02:29.000 1990-02-14 2024-10-11 02:02:29 +7350 7350 7351 735 1470 7350 1990-02-15 2024-10-11 02:02:30.000 1990-02-15 2024-10-11 02:02:30 +7351 7351 7352 735.1 1470.2 7351 1990-02-16 2024-10-11 02:02:31.000 1990-02-16 2024-10-11 02:02:31 +7352 7352 7353 735.2 1470.4 7352 1990-02-17 2024-10-11 02:02:32.000 1990-02-17 2024-10-11 02:02:32 +7353 7353 7354 735.3 1470.6000000000001 7353 1990-02-18 2024-10-11 02:02:33.000 1990-02-18 2024-10-11 02:02:33 +7354 7354 7355 735.4 1470.8000000000002 7354 1990-02-19 2024-10-11 02:02:34.000 1990-02-19 2024-10-11 02:02:34 +7355 7355 7356 735.5 1471 7355 1990-02-20 2024-10-11 02:02:35.000 1990-02-20 2024-10-11 02:02:35 +7356 7356 7357 735.6 1471.2 7356 1990-02-21 2024-10-11 02:02:36.000 1990-02-21 2024-10-11 02:02:36 +7357 7357 7358 735.7 1471.4 7357 1990-02-22 2024-10-11 02:02:37.000 1990-02-22 2024-10-11 02:02:37 +7358 7358 7359 735.8 1471.6000000000001 7358 1990-02-23 2024-10-11 02:02:38.000 1990-02-23 2024-10-11 02:02:38 +7359 7359 7360 735.9 1471.8000000000002 7359 1990-02-24 2024-10-11 02:02:39.000 1990-02-24 2024-10-11 02:02:39 +7360 7360 7361 736 1472 7360 1990-02-25 2024-10-11 02:02:40.000 1990-02-25 2024-10-11 02:02:40 +7361 7361 7362 736.1 1472.2 7361 1990-02-26 2024-10-11 02:02:41.000 1990-02-26 2024-10-11 02:02:41 +7362 7362 7363 736.2 1472.4 7362 1990-02-27 2024-10-11 02:02:42.000 1990-02-27 2024-10-11 02:02:42 +7363 7363 7364 736.3 1472.6000000000001 7363 1990-02-28 2024-10-11 02:02:43.000 1990-02-28 2024-10-11 02:02:43 +7364 7364 7365 736.4 1472.8000000000002 7364 1990-03-01 2024-10-11 02:02:44.000 1990-03-01 2024-10-11 02:02:44 +7365 7365 7366 736.5 1473 7365 1990-03-02 2024-10-11 02:02:45.000 1990-03-02 2024-10-11 02:02:45 +7366 7366 7367 736.6 1473.2 7366 1990-03-03 2024-10-11 02:02:46.000 1990-03-03 2024-10-11 02:02:46 +7367 7367 7368 736.7 1473.4 7367 1990-03-04 2024-10-11 02:02:47.000 1990-03-04 2024-10-11 02:02:47 +7368 7368 7369 736.8 1473.6000000000001 7368 1990-03-05 2024-10-11 02:02:48.000 1990-03-05 2024-10-11 02:02:48 +7369 7369 7370 736.9 1473.8000000000002 7369 1990-03-06 2024-10-11 02:02:49.000 1990-03-06 2024-10-11 02:02:49 +7370 7370 7371 737 1474 7370 1990-03-07 2024-10-11 02:02:50.000 1990-03-07 2024-10-11 02:02:50 +7371 7371 7372 737.1 1474.2 7371 1990-03-08 2024-10-11 02:02:51.000 1990-03-08 2024-10-11 02:02:51 +7372 7372 7373 737.2 1474.4 7372 1990-03-09 2024-10-11 02:02:52.000 1990-03-09 2024-10-11 02:02:52 +7373 7373 7374 737.3 1474.6000000000001 7373 1990-03-10 2024-10-11 02:02:53.000 1990-03-10 2024-10-11 02:02:53 +7374 7374 7375 737.4 1474.8000000000002 7374 1990-03-11 2024-10-11 02:02:54.000 1990-03-11 2024-10-11 02:02:54 +7375 7375 7376 737.5 1475 7375 1990-03-12 2024-10-11 02:02:55.000 1990-03-12 2024-10-11 02:02:55 +7376 7376 7377 737.6 1475.2 7376 1990-03-13 2024-10-11 02:02:56.000 1990-03-13 2024-10-11 02:02:56 +7377 7377 7378 737.7 1475.4 7377 1990-03-14 2024-10-11 02:02:57.000 1990-03-14 2024-10-11 02:02:57 +7378 7378 7379 737.8 1475.6000000000001 7378 1990-03-15 2024-10-11 02:02:58.000 1990-03-15 2024-10-11 02:02:58 +7379 7379 7380 737.9 1475.8000000000002 7379 1990-03-16 2024-10-11 02:02:59.000 1990-03-16 2024-10-11 02:02:59 +7380 7380 7381 738 1476 7380 1990-03-17 2024-10-11 02:03:00.000 1990-03-17 2024-10-11 02:03:00 +7381 7381 7382 738.1 1476.2 7381 1990-03-18 2024-10-11 02:03:01.000 1990-03-18 2024-10-11 02:03:01 +7382 7382 7383 738.2 1476.4 7382 1990-03-19 2024-10-11 02:03:02.000 1990-03-19 2024-10-11 02:03:02 +7383 7383 7384 738.3 1476.6000000000001 7383 1990-03-20 2024-10-11 02:03:03.000 1990-03-20 2024-10-11 02:03:03 +7384 7384 7385 738.4 1476.8000000000002 7384 1990-03-21 2024-10-11 02:03:04.000 1990-03-21 2024-10-11 02:03:04 +7385 7385 7386 738.5 1477 7385 1990-03-22 2024-10-11 02:03:05.000 1990-03-22 2024-10-11 02:03:05 +7386 7386 7387 738.6 1477.2 7386 1990-03-23 2024-10-11 02:03:06.000 1990-03-23 2024-10-11 02:03:06 +7387 7387 7388 738.7 1477.4 7387 1990-03-24 2024-10-11 02:03:07.000 1990-03-24 2024-10-11 02:03:07 +7388 7388 7389 738.8 1477.6000000000001 7388 1990-03-25 2024-10-11 02:03:08.000 1990-03-25 2024-10-11 02:03:08 +7389 7389 7390 738.9 1477.8000000000002 7389 1990-03-26 2024-10-11 02:03:09.000 1990-03-26 2024-10-11 02:03:09 +7390 7390 7391 739 1478 7390 1990-03-27 2024-10-11 02:03:10.000 1990-03-27 2024-10-11 02:03:10 +7391 7391 7392 739.1 1478.2 7391 1990-03-28 2024-10-11 02:03:11.000 1990-03-28 2024-10-11 02:03:11 +7392 7392 7393 739.2 1478.4 7392 1990-03-29 2024-10-11 02:03:12.000 1990-03-29 2024-10-11 02:03:12 +7393 7393 7394 739.3 1478.6000000000001 7393 1990-03-30 2024-10-11 02:03:13.000 1990-03-30 2024-10-11 02:03:13 +7394 7394 7395 739.4 1478.8000000000002 7394 1990-03-31 2024-10-11 02:03:14.000 1990-03-31 2024-10-11 02:03:14 +7395 7395 7396 739.5 1479 7395 1990-04-01 2024-10-11 02:03:15.000 1990-04-01 2024-10-11 02:03:15 +7396 7396 7397 739.6 1479.2 7396 1990-04-02 2024-10-11 02:03:16.000 1990-04-02 2024-10-11 02:03:16 +7397 7397 7398 739.7 1479.4 7397 1990-04-03 2024-10-11 02:03:17.000 1990-04-03 2024-10-11 02:03:17 +7398 7398 7399 739.8 1479.6000000000001 7398 1990-04-04 2024-10-11 02:03:18.000 1990-04-04 2024-10-11 02:03:18 +7399 7399 7400 739.9 1479.8000000000002 7399 1990-04-05 2024-10-11 02:03:19.000 1990-04-05 2024-10-11 02:03:19 +7400 7400 7401 740 1480 7400 1990-04-06 2024-10-11 02:03:20.000 1990-04-06 2024-10-11 02:03:20 +7401 7401 7402 740.1 1480.2 7401 1990-04-07 2024-10-11 02:03:21.000 1990-04-07 2024-10-11 02:03:21 +7402 7402 7403 740.2 1480.4 7402 1990-04-08 2024-10-11 02:03:22.000 1990-04-08 2024-10-11 02:03:22 +7403 7403 7404 740.3 1480.6000000000001 7403 1990-04-09 2024-10-11 02:03:23.000 1990-04-09 2024-10-11 02:03:23 +7404 7404 7405 740.4 1480.8000000000002 7404 1990-04-10 2024-10-11 02:03:24.000 1990-04-10 2024-10-11 02:03:24 +7405 7405 7406 740.5 1481 7405 1990-04-11 2024-10-11 02:03:25.000 1990-04-11 2024-10-11 02:03:25 +7406 7406 7407 740.6 1481.2 7406 1990-04-12 2024-10-11 02:03:26.000 1990-04-12 2024-10-11 02:03:26 +7407 7407 7408 740.7 1481.4 7407 1990-04-13 2024-10-11 02:03:27.000 1990-04-13 2024-10-11 02:03:27 +7408 7408 7409 740.8 1481.6000000000001 7408 1990-04-14 2024-10-11 02:03:28.000 1990-04-14 2024-10-11 02:03:28 +7409 7409 7410 740.9 1481.8000000000002 7409 1990-04-15 2024-10-11 02:03:29.000 1990-04-15 2024-10-11 02:03:29 +7410 7410 7411 741 1482 7410 1990-04-16 2024-10-11 02:03:30.000 1990-04-16 2024-10-11 02:03:30 +7411 7411 7412 741.1 1482.2 7411 1990-04-17 2024-10-11 02:03:31.000 1990-04-17 2024-10-11 02:03:31 +7412 7412 7413 741.2 1482.4 7412 1990-04-18 2024-10-11 02:03:32.000 1990-04-18 2024-10-11 02:03:32 +7413 7413 7414 741.3 1482.6000000000001 7413 1990-04-19 2024-10-11 02:03:33.000 1990-04-19 2024-10-11 02:03:33 +7414 7414 7415 741.4 1482.8000000000002 7414 1990-04-20 2024-10-11 02:03:34.000 1990-04-20 2024-10-11 02:03:34 +7415 7415 7416 741.5 1483 7415 1990-04-21 2024-10-11 02:03:35.000 1990-04-21 2024-10-11 02:03:35 +7416 7416 7417 741.6 1483.2 7416 1990-04-22 2024-10-11 02:03:36.000 1990-04-22 2024-10-11 02:03:36 +7417 7417 7418 741.7 1483.4 7417 1990-04-23 2024-10-11 02:03:37.000 1990-04-23 2024-10-11 02:03:37 +7418 7418 7419 741.8 1483.6000000000001 7418 1990-04-24 2024-10-11 02:03:38.000 1990-04-24 2024-10-11 02:03:38 +7419 7419 7420 741.9 1483.8000000000002 7419 1990-04-25 2024-10-11 02:03:39.000 1990-04-25 2024-10-11 02:03:39 +7420 7420 7421 742 1484 7420 1990-04-26 2024-10-11 02:03:40.000 1990-04-26 2024-10-11 02:03:40 +7421 7421 7422 742.1 1484.2 7421 1990-04-27 2024-10-11 02:03:41.000 1990-04-27 2024-10-11 02:03:41 +7422 7422 7423 742.2 1484.4 7422 1990-04-28 2024-10-11 02:03:42.000 1990-04-28 2024-10-11 02:03:42 +7423 7423 7424 742.3 1484.6000000000001 7423 1990-04-29 2024-10-11 02:03:43.000 1990-04-29 2024-10-11 02:03:43 +7424 7424 7425 742.4 1484.8000000000002 7424 1990-04-30 2024-10-11 02:03:44.000 1990-04-30 2024-10-11 02:03:44 +7425 7425 7426 742.5 1485 7425 1990-05-01 2024-10-11 02:03:45.000 1990-05-01 2024-10-11 02:03:45 +7426 7426 7427 742.6 1485.2 7426 1990-05-02 2024-10-11 02:03:46.000 1990-05-02 2024-10-11 02:03:46 +7427 7427 7428 742.7 1485.4 7427 1990-05-03 2024-10-11 02:03:47.000 1990-05-03 2024-10-11 02:03:47 +7428 7428 7429 742.8 1485.6000000000001 7428 1990-05-04 2024-10-11 02:03:48.000 1990-05-04 2024-10-11 02:03:48 +7429 7429 7430 742.9 1485.8000000000002 7429 1990-05-05 2024-10-11 02:03:49.000 1990-05-05 2024-10-11 02:03:49 +7430 7430 7431 743 1486 7430 1990-05-06 2024-10-11 02:03:50.000 1990-05-06 2024-10-11 02:03:50 +7431 7431 7432 743.1 1486.2 7431 1990-05-07 2024-10-11 02:03:51.000 1990-05-07 2024-10-11 02:03:51 +7432 7432 7433 743.2 1486.4 7432 1990-05-08 2024-10-11 02:03:52.000 1990-05-08 2024-10-11 02:03:52 +7433 7433 7434 743.3 1486.6000000000001 7433 1990-05-09 2024-10-11 02:03:53.000 1990-05-09 2024-10-11 02:03:53 +7434 7434 7435 743.4 1486.8000000000002 7434 1990-05-10 2024-10-11 02:03:54.000 1990-05-10 2024-10-11 02:03:54 +7435 7435 7436 743.5 1487 7435 1990-05-11 2024-10-11 02:03:55.000 1990-05-11 2024-10-11 02:03:55 +7436 7436 7437 743.6 1487.2 7436 1990-05-12 2024-10-11 02:03:56.000 1990-05-12 2024-10-11 02:03:56 +7437 7437 7438 743.7 1487.4 7437 1990-05-13 2024-10-11 02:03:57.000 1990-05-13 2024-10-11 02:03:57 +7438 7438 7439 743.8 1487.6000000000001 7438 1990-05-14 2024-10-11 02:03:58.000 1990-05-14 2024-10-11 02:03:58 +7439 7439 7440 743.9 1487.8000000000002 7439 1990-05-15 2024-10-11 02:03:59.000 1990-05-15 2024-10-11 02:03:59 +7440 7440 7441 744 1488 7440 1990-05-16 2024-10-11 02:04:00.000 1990-05-16 2024-10-11 02:04:00 +7441 7441 7442 744.1 1488.2 7441 1990-05-17 2024-10-11 02:04:01.000 1990-05-17 2024-10-11 02:04:01 +7442 7442 7443 744.2 1488.4 7442 1990-05-18 2024-10-11 02:04:02.000 1990-05-18 2024-10-11 02:04:02 +7443 7443 7444 744.3 1488.6000000000001 7443 1990-05-19 2024-10-11 02:04:03.000 1990-05-19 2024-10-11 02:04:03 +7444 7444 7445 744.4 1488.8000000000002 7444 1990-05-20 2024-10-11 02:04:04.000 1990-05-20 2024-10-11 02:04:04 +7445 7445 7446 744.5 1489 7445 1990-05-21 2024-10-11 02:04:05.000 1990-05-21 2024-10-11 02:04:05 +7446 7446 7447 744.6 1489.2 7446 1990-05-22 2024-10-11 02:04:06.000 1990-05-22 2024-10-11 02:04:06 +7447 7447 7448 744.7 1489.4 7447 1990-05-23 2024-10-11 02:04:07.000 1990-05-23 2024-10-11 02:04:07 +7448 7448 7449 744.8 1489.6000000000001 7448 1990-05-24 2024-10-11 02:04:08.000 1990-05-24 2024-10-11 02:04:08 +7449 7449 7450 744.9 1489.8000000000002 7449 1990-05-25 2024-10-11 02:04:09.000 1990-05-25 2024-10-11 02:04:09 +7450 7450 7451 745 1490 7450 1990-05-26 2024-10-11 02:04:10.000 1990-05-26 2024-10-11 02:04:10 +7451 7451 7452 745.1 1490.2 7451 1990-05-27 2024-10-11 02:04:11.000 1990-05-27 2024-10-11 02:04:11 +7452 7452 7453 745.2 1490.4 7452 1990-05-28 2024-10-11 02:04:12.000 1990-05-28 2024-10-11 02:04:12 +7453 7453 7454 745.3 1490.6000000000001 7453 1990-05-29 2024-10-11 02:04:13.000 1990-05-29 2024-10-11 02:04:13 +7454 7454 7455 745.4 1490.8000000000002 7454 1990-05-30 2024-10-11 02:04:14.000 1990-05-30 2024-10-11 02:04:14 +7455 7455 7456 745.5 1491 7455 1990-05-31 2024-10-11 02:04:15.000 1990-05-31 2024-10-11 02:04:15 +7456 7456 7457 745.6 1491.2 7456 1990-06-01 2024-10-11 02:04:16.000 1990-06-01 2024-10-11 02:04:16 +7457 7457 7458 745.7 1491.4 7457 1990-06-02 2024-10-11 02:04:17.000 1990-06-02 2024-10-11 02:04:17 +7458 7458 7459 745.8 1491.6000000000001 7458 1990-06-03 2024-10-11 02:04:18.000 1990-06-03 2024-10-11 02:04:18 +7459 7459 7460 745.9 1491.8000000000002 7459 1990-06-04 2024-10-11 02:04:19.000 1990-06-04 2024-10-11 02:04:19 +7460 7460 7461 746 1492 7460 1990-06-05 2024-10-11 02:04:20.000 1990-06-05 2024-10-11 02:04:20 +7461 7461 7462 746.1 1492.2 7461 1990-06-06 2024-10-11 02:04:21.000 1990-06-06 2024-10-11 02:04:21 +7462 7462 7463 746.2 1492.4 7462 1990-06-07 2024-10-11 02:04:22.000 1990-06-07 2024-10-11 02:04:22 +7463 7463 7464 746.3 1492.6000000000001 7463 1990-06-08 2024-10-11 02:04:23.000 1990-06-08 2024-10-11 02:04:23 +7464 7464 7465 746.4 1492.8000000000002 7464 1990-06-09 2024-10-11 02:04:24.000 1990-06-09 2024-10-11 02:04:24 +7465 7465 7466 746.5 1493 7465 1990-06-10 2024-10-11 02:04:25.000 1990-06-10 2024-10-11 02:04:25 +7466 7466 7467 746.6 1493.2 7466 1990-06-11 2024-10-11 02:04:26.000 1990-06-11 2024-10-11 02:04:26 +7467 7467 7468 746.7 1493.4 7467 1990-06-12 2024-10-11 02:04:27.000 1990-06-12 2024-10-11 02:04:27 +7468 7468 7469 746.8 1493.6000000000001 7468 1990-06-13 2024-10-11 02:04:28.000 1990-06-13 2024-10-11 02:04:28 +7469 7469 7470 746.9 1493.8000000000002 7469 1990-06-14 2024-10-11 02:04:29.000 1990-06-14 2024-10-11 02:04:29 +7470 7470 7471 747 1494 7470 1990-06-15 2024-10-11 02:04:30.000 1990-06-15 2024-10-11 02:04:30 +7471 7471 7472 747.1 1494.2 7471 1990-06-16 2024-10-11 02:04:31.000 1990-06-16 2024-10-11 02:04:31 +7472 7472 7473 747.2 1494.4 7472 1990-06-17 2024-10-11 02:04:32.000 1990-06-17 2024-10-11 02:04:32 +7473 7473 7474 747.3 1494.6000000000001 7473 1990-06-18 2024-10-11 02:04:33.000 1990-06-18 2024-10-11 02:04:33 +7474 7474 7475 747.4 1494.8000000000002 7474 1990-06-19 2024-10-11 02:04:34.000 1990-06-19 2024-10-11 02:04:34 +7475 7475 7476 747.5 1495 7475 1990-06-20 2024-10-11 02:04:35.000 1990-06-20 2024-10-11 02:04:35 +7476 7476 7477 747.6 1495.2 7476 1990-06-21 2024-10-11 02:04:36.000 1990-06-21 2024-10-11 02:04:36 +7477 7477 7478 747.7 1495.4 7477 1990-06-22 2024-10-11 02:04:37.000 1990-06-22 2024-10-11 02:04:37 +7478 7478 7479 747.8 1495.6000000000001 7478 1990-06-23 2024-10-11 02:04:38.000 1990-06-23 2024-10-11 02:04:38 +7479 7479 7480 747.9 1495.8000000000002 7479 1990-06-24 2024-10-11 02:04:39.000 1990-06-24 2024-10-11 02:04:39 +7480 7480 7481 748 1496 7480 1990-06-25 2024-10-11 02:04:40.000 1990-06-25 2024-10-11 02:04:40 +7481 7481 7482 748.1 1496.2 7481 1990-06-26 2024-10-11 02:04:41.000 1990-06-26 2024-10-11 02:04:41 +7482 7482 7483 748.2 1496.4 7482 1990-06-27 2024-10-11 02:04:42.000 1990-06-27 2024-10-11 02:04:42 +7483 7483 7484 748.3 1496.6000000000001 7483 1990-06-28 2024-10-11 02:04:43.000 1990-06-28 2024-10-11 02:04:43 +7484 7484 7485 748.4 1496.8000000000002 7484 1990-06-29 2024-10-11 02:04:44.000 1990-06-29 2024-10-11 02:04:44 +7485 7485 7486 748.5 1497 7485 1990-06-30 2024-10-11 02:04:45.000 1990-06-30 2024-10-11 02:04:45 +7486 7486 7487 748.6 1497.2 7486 1990-07-01 2024-10-11 02:04:46.000 1990-07-01 2024-10-11 02:04:46 +7487 7487 7488 748.7 1497.4 7487 1990-07-02 2024-10-11 02:04:47.000 1990-07-02 2024-10-11 02:04:47 +7488 7488 7489 748.8 1497.6000000000001 7488 1990-07-03 2024-10-11 02:04:48.000 1990-07-03 2024-10-11 02:04:48 +7489 7489 7490 748.9 1497.8000000000002 7489 1990-07-04 2024-10-11 02:04:49.000 1990-07-04 2024-10-11 02:04:49 +7490 7490 7491 749 1498 7490 1990-07-05 2024-10-11 02:04:50.000 1990-07-05 2024-10-11 02:04:50 +7491 7491 7492 749.1 1498.2 7491 1990-07-06 2024-10-11 02:04:51.000 1990-07-06 2024-10-11 02:04:51 +7492 7492 7493 749.2 1498.4 7492 1990-07-07 2024-10-11 02:04:52.000 1990-07-07 2024-10-11 02:04:52 +7493 7493 7494 749.3 1498.6000000000001 7493 1990-07-08 2024-10-11 02:04:53.000 1990-07-08 2024-10-11 02:04:53 +7494 7494 7495 749.4 1498.8000000000002 7494 1990-07-09 2024-10-11 02:04:54.000 1990-07-09 2024-10-11 02:04:54 +7495 7495 7496 749.5 1499 7495 1990-07-10 2024-10-11 02:04:55.000 1990-07-10 2024-10-11 02:04:55 +7496 7496 7497 749.6 1499.2 7496 1990-07-11 2024-10-11 02:04:56.000 1990-07-11 2024-10-11 02:04:56 +7497 7497 7498 749.7 1499.4 7497 1990-07-12 2024-10-11 02:04:57.000 1990-07-12 2024-10-11 02:04:57 +7498 7498 7499 749.8 1499.6000000000001 7498 1990-07-13 2024-10-11 02:04:58.000 1990-07-13 2024-10-11 02:04:58 +7499 7499 7500 749.9 1499.8000000000002 7499 1990-07-14 2024-10-11 02:04:59.000 1990-07-14 2024-10-11 02:04:59 +7500 7500 7501 750 1500 7500 1990-07-15 2024-10-11 02:05:00.000 1990-07-15 2024-10-11 02:05:00 +7501 7501 7502 750.1 1500.2 7501 1990-07-16 2024-10-11 02:05:01.000 1990-07-16 2024-10-11 02:05:01 +7502 7502 7503 750.2 1500.4 7502 1990-07-17 2024-10-11 02:05:02.000 1990-07-17 2024-10-11 02:05:02 +7503 7503 7504 750.3 1500.6000000000001 7503 1990-07-18 2024-10-11 02:05:03.000 1990-07-18 2024-10-11 02:05:03 +7504 7504 7505 750.4 1500.8000000000002 7504 1990-07-19 2024-10-11 02:05:04.000 1990-07-19 2024-10-11 02:05:04 +7505 7505 7506 750.5 1501 7505 1990-07-20 2024-10-11 02:05:05.000 1990-07-20 2024-10-11 02:05:05 +7506 7506 7507 750.6 1501.2 7506 1990-07-21 2024-10-11 02:05:06.000 1990-07-21 2024-10-11 02:05:06 +7507 7507 7508 750.7 1501.4 7507 1990-07-22 2024-10-11 02:05:07.000 1990-07-22 2024-10-11 02:05:07 +7508 7508 7509 750.8 1501.6000000000001 7508 1990-07-23 2024-10-11 02:05:08.000 1990-07-23 2024-10-11 02:05:08 +7509 7509 7510 750.9 1501.8000000000002 7509 1990-07-24 2024-10-11 02:05:09.000 1990-07-24 2024-10-11 02:05:09 +7510 7510 7511 751 1502 7510 1990-07-25 2024-10-11 02:05:10.000 1990-07-25 2024-10-11 02:05:10 +7511 7511 7512 751.1 1502.2 7511 1990-07-26 2024-10-11 02:05:11.000 1990-07-26 2024-10-11 02:05:11 +7512 7512 7513 751.2 1502.4 7512 1990-07-27 2024-10-11 02:05:12.000 1990-07-27 2024-10-11 02:05:12 +7513 7513 7514 751.3 1502.6000000000001 7513 1990-07-28 2024-10-11 02:05:13.000 1990-07-28 2024-10-11 02:05:13 +7514 7514 7515 751.4 1502.8000000000002 7514 1990-07-29 2024-10-11 02:05:14.000 1990-07-29 2024-10-11 02:05:14 +7515 7515 7516 751.5 1503 7515 1990-07-30 2024-10-11 02:05:15.000 1990-07-30 2024-10-11 02:05:15 +7516 7516 7517 751.6 1503.2 7516 1990-07-31 2024-10-11 02:05:16.000 1990-07-31 2024-10-11 02:05:16 +7517 7517 7518 751.7 1503.4 7517 1990-08-01 2024-10-11 02:05:17.000 1990-08-01 2024-10-11 02:05:17 +7518 7518 7519 751.8 1503.6000000000001 7518 1990-08-02 2024-10-11 02:05:18.000 1990-08-02 2024-10-11 02:05:18 +7519 7519 7520 751.9 1503.8000000000002 7519 1990-08-03 2024-10-11 02:05:19.000 1990-08-03 2024-10-11 02:05:19 +7520 7520 7521 752 1504 7520 1990-08-04 2024-10-11 02:05:20.000 1990-08-04 2024-10-11 02:05:20 +7521 7521 7522 752.1 1504.2 7521 1990-08-05 2024-10-11 02:05:21.000 1990-08-05 2024-10-11 02:05:21 +7522 7522 7523 752.2 1504.4 7522 1990-08-06 2024-10-11 02:05:22.000 1990-08-06 2024-10-11 02:05:22 +7523 7523 7524 752.3 1504.6000000000001 7523 1990-08-07 2024-10-11 02:05:23.000 1990-08-07 2024-10-11 02:05:23 +7524 7524 7525 752.4 1504.8000000000002 7524 1990-08-08 2024-10-11 02:05:24.000 1990-08-08 2024-10-11 02:05:24 +7525 7525 7526 752.5 1505 7525 1990-08-09 2024-10-11 02:05:25.000 1990-08-09 2024-10-11 02:05:25 +7526 7526 7527 752.6 1505.2 7526 1990-08-10 2024-10-11 02:05:26.000 1990-08-10 2024-10-11 02:05:26 +7527 7527 7528 752.7 1505.4 7527 1990-08-11 2024-10-11 02:05:27.000 1990-08-11 2024-10-11 02:05:27 +7528 7528 7529 752.8 1505.6000000000001 7528 1990-08-12 2024-10-11 02:05:28.000 1990-08-12 2024-10-11 02:05:28 +7529 7529 7530 752.9 1505.8000000000002 7529 1990-08-13 2024-10-11 02:05:29.000 1990-08-13 2024-10-11 02:05:29 +7530 7530 7531 753 1506 7530 1990-08-14 2024-10-11 02:05:30.000 1990-08-14 2024-10-11 02:05:30 +7531 7531 7532 753.1 1506.2 7531 1990-08-15 2024-10-11 02:05:31.000 1990-08-15 2024-10-11 02:05:31 +7532 7532 7533 753.2 1506.4 7532 1990-08-16 2024-10-11 02:05:32.000 1990-08-16 2024-10-11 02:05:32 +7533 7533 7534 753.3 1506.6000000000001 7533 1990-08-17 2024-10-11 02:05:33.000 1990-08-17 2024-10-11 02:05:33 +7534 7534 7535 753.4 1506.8000000000002 7534 1990-08-18 2024-10-11 02:05:34.000 1990-08-18 2024-10-11 02:05:34 +7535 7535 7536 753.5 1507 7535 1990-08-19 2024-10-11 02:05:35.000 1990-08-19 2024-10-11 02:05:35 +7536 7536 7537 753.6 1507.2 7536 1990-08-20 2024-10-11 02:05:36.000 1990-08-20 2024-10-11 02:05:36 +7537 7537 7538 753.7 1507.4 7537 1990-08-21 2024-10-11 02:05:37.000 1990-08-21 2024-10-11 02:05:37 +7538 7538 7539 753.8 1507.6000000000001 7538 1990-08-22 2024-10-11 02:05:38.000 1990-08-22 2024-10-11 02:05:38 +7539 7539 7540 753.9 1507.8000000000002 7539 1990-08-23 2024-10-11 02:05:39.000 1990-08-23 2024-10-11 02:05:39 +7540 7540 7541 754 1508 7540 1990-08-24 2024-10-11 02:05:40.000 1990-08-24 2024-10-11 02:05:40 +7541 7541 7542 754.1 1508.2 7541 1990-08-25 2024-10-11 02:05:41.000 1990-08-25 2024-10-11 02:05:41 +7542 7542 7543 754.2 1508.4 7542 1990-08-26 2024-10-11 02:05:42.000 1990-08-26 2024-10-11 02:05:42 +7543 7543 7544 754.3 1508.6000000000001 7543 1990-08-27 2024-10-11 02:05:43.000 1990-08-27 2024-10-11 02:05:43 +7544 7544 7545 754.4 1508.8000000000002 7544 1990-08-28 2024-10-11 02:05:44.000 1990-08-28 2024-10-11 02:05:44 +7545 7545 7546 754.5 1509 7545 1990-08-29 2024-10-11 02:05:45.000 1990-08-29 2024-10-11 02:05:45 +7546 7546 7547 754.6 1509.2 7546 1990-08-30 2024-10-11 02:05:46.000 1990-08-30 2024-10-11 02:05:46 +7547 7547 7548 754.7 1509.4 7547 1990-08-31 2024-10-11 02:05:47.000 1990-08-31 2024-10-11 02:05:47 +7548 7548 7549 754.8 1509.6000000000001 7548 1990-09-01 2024-10-11 02:05:48.000 1990-09-01 2024-10-11 02:05:48 +7549 7549 7550 754.9 1509.8000000000002 7549 1990-09-02 2024-10-11 02:05:49.000 1990-09-02 2024-10-11 02:05:49 +7550 7550 7551 755 1510 7550 1990-09-03 2024-10-11 02:05:50.000 1990-09-03 2024-10-11 02:05:50 +7551 7551 7552 755.1 1510.2 7551 1990-09-04 2024-10-11 02:05:51.000 1990-09-04 2024-10-11 02:05:51 +7552 7552 7553 755.2 1510.4 7552 1990-09-05 2024-10-11 02:05:52.000 1990-09-05 2024-10-11 02:05:52 +7553 7553 7554 755.3 1510.6000000000001 7553 1990-09-06 2024-10-11 02:05:53.000 1990-09-06 2024-10-11 02:05:53 +7554 7554 7555 755.4 1510.8000000000002 7554 1990-09-07 2024-10-11 02:05:54.000 1990-09-07 2024-10-11 02:05:54 +7555 7555 7556 755.5 1511 7555 1990-09-08 2024-10-11 02:05:55.000 1990-09-08 2024-10-11 02:05:55 +7556 7556 7557 755.6 1511.2 7556 1990-09-09 2024-10-11 02:05:56.000 1990-09-09 2024-10-11 02:05:56 +7557 7557 7558 755.7 1511.4 7557 1990-09-10 2024-10-11 02:05:57.000 1990-09-10 2024-10-11 02:05:57 +7558 7558 7559 755.8 1511.6000000000001 7558 1990-09-11 2024-10-11 02:05:58.000 1990-09-11 2024-10-11 02:05:58 +7559 7559 7560 755.9 1511.8000000000002 7559 1990-09-12 2024-10-11 02:05:59.000 1990-09-12 2024-10-11 02:05:59 +7560 7560 7561 756 1512 7560 1990-09-13 2024-10-11 02:06:00.000 1990-09-13 2024-10-11 02:06:00 +7561 7561 7562 756.1 1512.2 7561 1990-09-14 2024-10-11 02:06:01.000 1990-09-14 2024-10-11 02:06:01 +7562 7562 7563 756.2 1512.4 7562 1990-09-15 2024-10-11 02:06:02.000 1990-09-15 2024-10-11 02:06:02 +7563 7563 7564 756.3 1512.6000000000001 7563 1990-09-16 2024-10-11 02:06:03.000 1990-09-16 2024-10-11 02:06:03 +7564 7564 7565 756.4 1512.8000000000002 7564 1990-09-17 2024-10-11 02:06:04.000 1990-09-17 2024-10-11 02:06:04 +7565 7565 7566 756.5 1513 7565 1990-09-18 2024-10-11 02:06:05.000 1990-09-18 2024-10-11 02:06:05 +7566 7566 7567 756.6 1513.2 7566 1990-09-19 2024-10-11 02:06:06.000 1990-09-19 2024-10-11 02:06:06 +7567 7567 7568 756.7 1513.4 7567 1990-09-20 2024-10-11 02:06:07.000 1990-09-20 2024-10-11 02:06:07 +7568 7568 7569 756.8 1513.6000000000001 7568 1990-09-21 2024-10-11 02:06:08.000 1990-09-21 2024-10-11 02:06:08 +7569 7569 7570 756.9 1513.8000000000002 7569 1990-09-22 2024-10-11 02:06:09.000 1990-09-22 2024-10-11 02:06:09 +7570 7570 7571 757 1514 7570 1990-09-23 2024-10-11 02:06:10.000 1990-09-23 2024-10-11 02:06:10 +7571 7571 7572 757.1 1514.2 7571 1990-09-24 2024-10-11 02:06:11.000 1990-09-24 2024-10-11 02:06:11 +7572 7572 7573 757.2 1514.4 7572 1990-09-25 2024-10-11 02:06:12.000 1990-09-25 2024-10-11 02:06:12 +7573 7573 7574 757.3 1514.6000000000001 7573 1990-09-26 2024-10-11 02:06:13.000 1990-09-26 2024-10-11 02:06:13 +7574 7574 7575 757.4 1514.8000000000002 7574 1990-09-27 2024-10-11 02:06:14.000 1990-09-27 2024-10-11 02:06:14 +7575 7575 7576 757.5 1515 7575 1990-09-28 2024-10-11 02:06:15.000 1990-09-28 2024-10-11 02:06:15 +7576 7576 7577 757.6 1515.2 7576 1990-09-29 2024-10-11 02:06:16.000 1990-09-29 2024-10-11 02:06:16 +7577 7577 7578 757.7 1515.4 7577 1990-09-30 2024-10-11 02:06:17.000 1990-09-30 2024-10-11 02:06:17 +7578 7578 7579 757.8 1515.6000000000001 7578 1990-10-01 2024-10-11 02:06:18.000 1990-10-01 2024-10-11 02:06:18 +7579 7579 7580 757.9 1515.8000000000002 7579 1990-10-02 2024-10-11 02:06:19.000 1990-10-02 2024-10-11 02:06:19 +7580 7580 7581 758 1516 7580 1990-10-03 2024-10-11 02:06:20.000 1990-10-03 2024-10-11 02:06:20 +7581 7581 7582 758.1 1516.2 7581 1990-10-04 2024-10-11 02:06:21.000 1990-10-04 2024-10-11 02:06:21 +7582 7582 7583 758.2 1516.4 7582 1990-10-05 2024-10-11 02:06:22.000 1990-10-05 2024-10-11 02:06:22 +7583 7583 7584 758.3 1516.6000000000001 7583 1990-10-06 2024-10-11 02:06:23.000 1990-10-06 2024-10-11 02:06:23 +7584 7584 7585 758.4 1516.8000000000002 7584 1990-10-07 2024-10-11 02:06:24.000 1990-10-07 2024-10-11 02:06:24 +7585 7585 7586 758.5 1517 7585 1990-10-08 2024-10-11 02:06:25.000 1990-10-08 2024-10-11 02:06:25 +7586 7586 7587 758.6 1517.2 7586 1990-10-09 2024-10-11 02:06:26.000 1990-10-09 2024-10-11 02:06:26 +7587 7587 7588 758.7 1517.4 7587 1990-10-10 2024-10-11 02:06:27.000 1990-10-10 2024-10-11 02:06:27 +7588 7588 7589 758.8 1517.6000000000001 7588 1990-10-11 2024-10-11 02:06:28.000 1990-10-11 2024-10-11 02:06:28 +7589 7589 7590 758.9 1517.8000000000002 7589 1990-10-12 2024-10-11 02:06:29.000 1990-10-12 2024-10-11 02:06:29 +7590 7590 7591 759 1518 7590 1990-10-13 2024-10-11 02:06:30.000 1990-10-13 2024-10-11 02:06:30 +7591 7591 7592 759.1 1518.2 7591 1990-10-14 2024-10-11 02:06:31.000 1990-10-14 2024-10-11 02:06:31 +7592 7592 7593 759.2 1518.4 7592 1990-10-15 2024-10-11 02:06:32.000 1990-10-15 2024-10-11 02:06:32 +7593 7593 7594 759.3 1518.6000000000001 7593 1990-10-16 2024-10-11 02:06:33.000 1990-10-16 2024-10-11 02:06:33 +7594 7594 7595 759.4 1518.8000000000002 7594 1990-10-17 2024-10-11 02:06:34.000 1990-10-17 2024-10-11 02:06:34 +7595 7595 7596 759.5 1519 7595 1990-10-18 2024-10-11 02:06:35.000 1990-10-18 2024-10-11 02:06:35 +7596 7596 7597 759.6 1519.2 7596 1990-10-19 2024-10-11 02:06:36.000 1990-10-19 2024-10-11 02:06:36 +7597 7597 7598 759.7 1519.4 7597 1990-10-20 2024-10-11 02:06:37.000 1990-10-20 2024-10-11 02:06:37 +7598 7598 7599 759.8 1519.6000000000001 7598 1990-10-21 2024-10-11 02:06:38.000 1990-10-21 2024-10-11 02:06:38 +7599 7599 7600 759.9 1519.8000000000002 7599 1990-10-22 2024-10-11 02:06:39.000 1990-10-22 2024-10-11 02:06:39 +7600 7600 7601 760 1520 7600 1990-10-23 2024-10-11 02:06:40.000 1990-10-23 2024-10-11 02:06:40 +7601 7601 7602 760.1 1520.2 7601 1990-10-24 2024-10-11 02:06:41.000 1990-10-24 2024-10-11 02:06:41 +7602 7602 7603 760.2 1520.4 7602 1990-10-25 2024-10-11 02:06:42.000 1990-10-25 2024-10-11 02:06:42 +7603 7603 7604 760.3 1520.6000000000001 7603 1990-10-26 2024-10-11 02:06:43.000 1990-10-26 2024-10-11 02:06:43 +7604 7604 7605 760.4 1520.8000000000002 7604 1990-10-27 2024-10-11 02:06:44.000 1990-10-27 2024-10-11 02:06:44 +7605 7605 7606 760.5 1521 7605 1990-10-28 2024-10-11 02:06:45.000 1990-10-28 2024-10-11 02:06:45 +7606 7606 7607 760.6 1521.2 7606 1990-10-29 2024-10-11 02:06:46.000 1990-10-29 2024-10-11 02:06:46 +7607 7607 7608 760.7 1521.4 7607 1990-10-30 2024-10-11 02:06:47.000 1990-10-30 2024-10-11 02:06:47 +7608 7608 7609 760.8 1521.6000000000001 7608 1990-10-31 2024-10-11 02:06:48.000 1990-10-31 2024-10-11 02:06:48 +7609 7609 7610 760.9 1521.8000000000002 7609 1990-11-01 2024-10-11 02:06:49.000 1990-11-01 2024-10-11 02:06:49 +7610 7610 7611 761 1522 7610 1990-11-02 2024-10-11 02:06:50.000 1990-11-02 2024-10-11 02:06:50 +7611 7611 7612 761.1 1522.2 7611 1990-11-03 2024-10-11 02:06:51.000 1990-11-03 2024-10-11 02:06:51 +7612 7612 7613 761.2 1522.4 7612 1990-11-04 2024-10-11 02:06:52.000 1990-11-04 2024-10-11 02:06:52 +7613 7613 7614 761.3 1522.6000000000001 7613 1990-11-05 2024-10-11 02:06:53.000 1990-11-05 2024-10-11 02:06:53 +7614 7614 7615 761.4 1522.8000000000002 7614 1990-11-06 2024-10-11 02:06:54.000 1990-11-06 2024-10-11 02:06:54 +7615 7615 7616 761.5 1523 7615 1990-11-07 2024-10-11 02:06:55.000 1990-11-07 2024-10-11 02:06:55 +7616 7616 7617 761.6 1523.2 7616 1990-11-08 2024-10-11 02:06:56.000 1990-11-08 2024-10-11 02:06:56 +7617 7617 7618 761.7 1523.4 7617 1990-11-09 2024-10-11 02:06:57.000 1990-11-09 2024-10-11 02:06:57 +7618 7618 7619 761.8 1523.6000000000001 7618 1990-11-10 2024-10-11 02:06:58.000 1990-11-10 2024-10-11 02:06:58 +7619 7619 7620 761.9 1523.8000000000002 7619 1990-11-11 2024-10-11 02:06:59.000 1990-11-11 2024-10-11 02:06:59 +7620 7620 7621 762 1524 7620 1990-11-12 2024-10-11 02:07:00.000 1990-11-12 2024-10-11 02:07:00 +7621 7621 7622 762.1 1524.2 7621 1990-11-13 2024-10-11 02:07:01.000 1990-11-13 2024-10-11 02:07:01 +7622 7622 7623 762.2 1524.4 7622 1990-11-14 2024-10-11 02:07:02.000 1990-11-14 2024-10-11 02:07:02 +7623 7623 7624 762.3 1524.6000000000001 7623 1990-11-15 2024-10-11 02:07:03.000 1990-11-15 2024-10-11 02:07:03 +7624 7624 7625 762.4 1524.8000000000002 7624 1990-11-16 2024-10-11 02:07:04.000 1990-11-16 2024-10-11 02:07:04 +7625 7625 7626 762.5 1525 7625 1990-11-17 2024-10-11 02:07:05.000 1990-11-17 2024-10-11 02:07:05 +7626 7626 7627 762.6 1525.2 7626 1990-11-18 2024-10-11 02:07:06.000 1990-11-18 2024-10-11 02:07:06 +7627 7627 7628 762.7 1525.4 7627 1990-11-19 2024-10-11 02:07:07.000 1990-11-19 2024-10-11 02:07:07 +7628 7628 7629 762.8 1525.6000000000001 7628 1990-11-20 2024-10-11 02:07:08.000 1990-11-20 2024-10-11 02:07:08 +7629 7629 7630 762.9 1525.8000000000002 7629 1990-11-21 2024-10-11 02:07:09.000 1990-11-21 2024-10-11 02:07:09 +7630 7630 7631 763 1526 7630 1990-11-22 2024-10-11 02:07:10.000 1990-11-22 2024-10-11 02:07:10 +7631 7631 7632 763.1 1526.2 7631 1990-11-23 2024-10-11 02:07:11.000 1990-11-23 2024-10-11 02:07:11 +7632 7632 7633 763.2 1526.4 7632 1990-11-24 2024-10-11 02:07:12.000 1990-11-24 2024-10-11 02:07:12 +7633 7633 7634 763.3 1526.6000000000001 7633 1990-11-25 2024-10-11 02:07:13.000 1990-11-25 2024-10-11 02:07:13 +7634 7634 7635 763.4 1526.8000000000002 7634 1990-11-26 2024-10-11 02:07:14.000 1990-11-26 2024-10-11 02:07:14 +7635 7635 7636 763.5 1527 7635 1990-11-27 2024-10-11 02:07:15.000 1990-11-27 2024-10-11 02:07:15 +7636 7636 7637 763.6 1527.2 7636 1990-11-28 2024-10-11 02:07:16.000 1990-11-28 2024-10-11 02:07:16 +7637 7637 7638 763.7 1527.4 7637 1990-11-29 2024-10-11 02:07:17.000 1990-11-29 2024-10-11 02:07:17 +7638 7638 7639 763.8 1527.6000000000001 7638 1990-11-30 2024-10-11 02:07:18.000 1990-11-30 2024-10-11 02:07:18 +7639 7639 7640 763.9 1527.8000000000002 7639 1990-12-01 2024-10-11 02:07:19.000 1990-12-01 2024-10-11 02:07:19 +7640 7640 7641 764 1528 7640 1990-12-02 2024-10-11 02:07:20.000 1990-12-02 2024-10-11 02:07:20 +7641 7641 7642 764.1 1528.2 7641 1990-12-03 2024-10-11 02:07:21.000 1990-12-03 2024-10-11 02:07:21 +7642 7642 7643 764.2 1528.4 7642 1990-12-04 2024-10-11 02:07:22.000 1990-12-04 2024-10-11 02:07:22 +7643 7643 7644 764.3 1528.6000000000001 7643 1990-12-05 2024-10-11 02:07:23.000 1990-12-05 2024-10-11 02:07:23 +7644 7644 7645 764.4 1528.8000000000002 7644 1990-12-06 2024-10-11 02:07:24.000 1990-12-06 2024-10-11 02:07:24 +7645 7645 7646 764.5 1529 7645 1990-12-07 2024-10-11 02:07:25.000 1990-12-07 2024-10-11 02:07:25 +7646 7646 7647 764.6 1529.2 7646 1990-12-08 2024-10-11 02:07:26.000 1990-12-08 2024-10-11 02:07:26 +7647 7647 7648 764.7 1529.4 7647 1990-12-09 2024-10-11 02:07:27.000 1990-12-09 2024-10-11 02:07:27 +7648 7648 7649 764.8 1529.6000000000001 7648 1990-12-10 2024-10-11 02:07:28.000 1990-12-10 2024-10-11 02:07:28 +7649 7649 7650 764.9 1529.8000000000002 7649 1990-12-11 2024-10-11 02:07:29.000 1990-12-11 2024-10-11 02:07:29 +7650 7650 7651 765 1530 7650 1990-12-12 2024-10-11 02:07:30.000 1990-12-12 2024-10-11 02:07:30 +7651 7651 7652 765.1 1530.2 7651 1990-12-13 2024-10-11 02:07:31.000 1990-12-13 2024-10-11 02:07:31 +7652 7652 7653 765.2 1530.4 7652 1990-12-14 2024-10-11 02:07:32.000 1990-12-14 2024-10-11 02:07:32 +7653 7653 7654 765.3 1530.6000000000001 7653 1990-12-15 2024-10-11 02:07:33.000 1990-12-15 2024-10-11 02:07:33 +7654 7654 7655 765.4 1530.8000000000002 7654 1990-12-16 2024-10-11 02:07:34.000 1990-12-16 2024-10-11 02:07:34 +7655 7655 7656 765.5 1531 7655 1990-12-17 2024-10-11 02:07:35.000 1990-12-17 2024-10-11 02:07:35 +7656 7656 7657 765.6 1531.2 7656 1990-12-18 2024-10-11 02:07:36.000 1990-12-18 2024-10-11 02:07:36 +7657 7657 7658 765.7 1531.4 7657 1990-12-19 2024-10-11 02:07:37.000 1990-12-19 2024-10-11 02:07:37 +7658 7658 7659 765.8 1531.6000000000001 7658 1990-12-20 2024-10-11 02:07:38.000 1990-12-20 2024-10-11 02:07:38 +7659 7659 7660 765.9 1531.8000000000002 7659 1990-12-21 2024-10-11 02:07:39.000 1990-12-21 2024-10-11 02:07:39 +7660 7660 7661 766 1532 7660 1990-12-22 2024-10-11 02:07:40.000 1990-12-22 2024-10-11 02:07:40 +7661 7661 7662 766.1 1532.2 7661 1990-12-23 2024-10-11 02:07:41.000 1990-12-23 2024-10-11 02:07:41 +7662 7662 7663 766.2 1532.4 7662 1990-12-24 2024-10-11 02:07:42.000 1990-12-24 2024-10-11 02:07:42 +7663 7663 7664 766.3 1532.6000000000001 7663 1990-12-25 2024-10-11 02:07:43.000 1990-12-25 2024-10-11 02:07:43 +7664 7664 7665 766.4 1532.8000000000002 7664 1990-12-26 2024-10-11 02:07:44.000 1990-12-26 2024-10-11 02:07:44 +7665 7665 7666 766.5 1533 7665 1990-12-27 2024-10-11 02:07:45.000 1990-12-27 2024-10-11 02:07:45 +7666 7666 7667 766.6 1533.2 7666 1990-12-28 2024-10-11 02:07:46.000 1990-12-28 2024-10-11 02:07:46 +7667 7667 7668 766.7 1533.4 7667 1990-12-29 2024-10-11 02:07:47.000 1990-12-29 2024-10-11 02:07:47 +7668 7668 7669 766.8 1533.6000000000001 7668 1990-12-30 2024-10-11 02:07:48.000 1990-12-30 2024-10-11 02:07:48 +7669 7669 7670 766.9 1533.8000000000002 7669 1990-12-31 2024-10-11 02:07:49.000 1990-12-31 2024-10-11 02:07:49 +7670 7670 7671 767 1534 7670 1991-01-01 2024-10-11 02:07:50.000 1991-01-01 2024-10-11 02:07:50 +7671 7671 7672 767.1 1534.2 7671 1991-01-02 2024-10-11 02:07:51.000 1991-01-02 2024-10-11 02:07:51 +7672 7672 7673 767.2 1534.4 7672 1991-01-03 2024-10-11 02:07:52.000 1991-01-03 2024-10-11 02:07:52 +7673 7673 7674 767.3 1534.6000000000001 7673 1991-01-04 2024-10-11 02:07:53.000 1991-01-04 2024-10-11 02:07:53 +7674 7674 7675 767.4 1534.8000000000002 7674 1991-01-05 2024-10-11 02:07:54.000 1991-01-05 2024-10-11 02:07:54 +7675 7675 7676 767.5 1535 7675 1991-01-06 2024-10-11 02:07:55.000 1991-01-06 2024-10-11 02:07:55 +7676 7676 7677 767.6 1535.2 7676 1991-01-07 2024-10-11 02:07:56.000 1991-01-07 2024-10-11 02:07:56 +7677 7677 7678 767.7 1535.4 7677 1991-01-08 2024-10-11 02:07:57.000 1991-01-08 2024-10-11 02:07:57 +7678 7678 7679 767.8 1535.6000000000001 7678 1991-01-09 2024-10-11 02:07:58.000 1991-01-09 2024-10-11 02:07:58 +7679 7679 7680 767.9 1535.8000000000002 7679 1991-01-10 2024-10-11 02:07:59.000 1991-01-10 2024-10-11 02:07:59 +7680 7680 7681 768 1536 7680 1991-01-11 2024-10-11 02:08:00.000 1991-01-11 2024-10-11 02:08:00 +7681 7681 7682 768.1 1536.2 7681 1991-01-12 2024-10-11 02:08:01.000 1991-01-12 2024-10-11 02:08:01 +7682 7682 7683 768.2 1536.4 7682 1991-01-13 2024-10-11 02:08:02.000 1991-01-13 2024-10-11 02:08:02 +7683 7683 7684 768.3 1536.6000000000001 7683 1991-01-14 2024-10-11 02:08:03.000 1991-01-14 2024-10-11 02:08:03 +7684 7684 7685 768.4 1536.8000000000002 7684 1991-01-15 2024-10-11 02:08:04.000 1991-01-15 2024-10-11 02:08:04 +7685 7685 7686 768.5 1537 7685 1991-01-16 2024-10-11 02:08:05.000 1991-01-16 2024-10-11 02:08:05 +7686 7686 7687 768.6 1537.2 7686 1991-01-17 2024-10-11 02:08:06.000 1991-01-17 2024-10-11 02:08:06 +7687 7687 7688 768.7 1537.4 7687 1991-01-18 2024-10-11 02:08:07.000 1991-01-18 2024-10-11 02:08:07 +7688 7688 7689 768.8 1537.6000000000001 7688 1991-01-19 2024-10-11 02:08:08.000 1991-01-19 2024-10-11 02:08:08 +7689 7689 7690 768.9 1537.8000000000002 7689 1991-01-20 2024-10-11 02:08:09.000 1991-01-20 2024-10-11 02:08:09 +7690 7690 7691 769 1538 7690 1991-01-21 2024-10-11 02:08:10.000 1991-01-21 2024-10-11 02:08:10 +7691 7691 7692 769.1 1538.2 7691 1991-01-22 2024-10-11 02:08:11.000 1991-01-22 2024-10-11 02:08:11 +7692 7692 7693 769.2 1538.4 7692 1991-01-23 2024-10-11 02:08:12.000 1991-01-23 2024-10-11 02:08:12 +7693 7693 7694 769.3 1538.6000000000001 7693 1991-01-24 2024-10-11 02:08:13.000 1991-01-24 2024-10-11 02:08:13 +7694 7694 7695 769.4 1538.8000000000002 7694 1991-01-25 2024-10-11 02:08:14.000 1991-01-25 2024-10-11 02:08:14 +7695 7695 7696 769.5 1539 7695 1991-01-26 2024-10-11 02:08:15.000 1991-01-26 2024-10-11 02:08:15 +7696 7696 7697 769.6 1539.2 7696 1991-01-27 2024-10-11 02:08:16.000 1991-01-27 2024-10-11 02:08:16 +7697 7697 7698 769.7 1539.4 7697 1991-01-28 2024-10-11 02:08:17.000 1991-01-28 2024-10-11 02:08:17 +7698 7698 7699 769.8 1539.6000000000001 7698 1991-01-29 2024-10-11 02:08:18.000 1991-01-29 2024-10-11 02:08:18 +7699 7699 7700 769.9 1539.8000000000002 7699 1991-01-30 2024-10-11 02:08:19.000 1991-01-30 2024-10-11 02:08:19 +7700 7700 7701 770 1540 7700 1991-01-31 2024-10-11 02:08:20.000 1991-01-31 2024-10-11 02:08:20 +7701 7701 7702 770.1 1540.2 7701 1991-02-01 2024-10-11 02:08:21.000 1991-02-01 2024-10-11 02:08:21 +7702 7702 7703 770.2 1540.4 7702 1991-02-02 2024-10-11 02:08:22.000 1991-02-02 2024-10-11 02:08:22 +7703 7703 7704 770.3 1540.6000000000001 7703 1991-02-03 2024-10-11 02:08:23.000 1991-02-03 2024-10-11 02:08:23 +7704 7704 7705 770.4 1540.8000000000002 7704 1991-02-04 2024-10-11 02:08:24.000 1991-02-04 2024-10-11 02:08:24 +7705 7705 7706 770.5 1541 7705 1991-02-05 2024-10-11 02:08:25.000 1991-02-05 2024-10-11 02:08:25 +7706 7706 7707 770.6 1541.2 7706 1991-02-06 2024-10-11 02:08:26.000 1991-02-06 2024-10-11 02:08:26 +7707 7707 7708 770.7 1541.4 7707 1991-02-07 2024-10-11 02:08:27.000 1991-02-07 2024-10-11 02:08:27 +7708 7708 7709 770.8 1541.6000000000001 7708 1991-02-08 2024-10-11 02:08:28.000 1991-02-08 2024-10-11 02:08:28 +7709 7709 7710 770.9 1541.8000000000002 7709 1991-02-09 2024-10-11 02:08:29.000 1991-02-09 2024-10-11 02:08:29 +7710 7710 7711 771 1542 7710 1991-02-10 2024-10-11 02:08:30.000 1991-02-10 2024-10-11 02:08:30 +7711 7711 7712 771.1 1542.2 7711 1991-02-11 2024-10-11 02:08:31.000 1991-02-11 2024-10-11 02:08:31 +7712 7712 7713 771.2 1542.4 7712 1991-02-12 2024-10-11 02:08:32.000 1991-02-12 2024-10-11 02:08:32 +7713 7713 7714 771.3 1542.6000000000001 7713 1991-02-13 2024-10-11 02:08:33.000 1991-02-13 2024-10-11 02:08:33 +7714 7714 7715 771.4 1542.8000000000002 7714 1991-02-14 2024-10-11 02:08:34.000 1991-02-14 2024-10-11 02:08:34 +7715 7715 7716 771.5 1543 7715 1991-02-15 2024-10-11 02:08:35.000 1991-02-15 2024-10-11 02:08:35 +7716 7716 7717 771.6 1543.2 7716 1991-02-16 2024-10-11 02:08:36.000 1991-02-16 2024-10-11 02:08:36 +7717 7717 7718 771.7 1543.4 7717 1991-02-17 2024-10-11 02:08:37.000 1991-02-17 2024-10-11 02:08:37 +7718 7718 7719 771.8 1543.6000000000001 7718 1991-02-18 2024-10-11 02:08:38.000 1991-02-18 2024-10-11 02:08:38 +7719 7719 7720 771.9 1543.8000000000002 7719 1991-02-19 2024-10-11 02:08:39.000 1991-02-19 2024-10-11 02:08:39 +7720 7720 7721 772 1544 7720 1991-02-20 2024-10-11 02:08:40.000 1991-02-20 2024-10-11 02:08:40 +7721 7721 7722 772.1 1544.2 7721 1991-02-21 2024-10-11 02:08:41.000 1991-02-21 2024-10-11 02:08:41 +7722 7722 7723 772.2 1544.4 7722 1991-02-22 2024-10-11 02:08:42.000 1991-02-22 2024-10-11 02:08:42 +7723 7723 7724 772.3 1544.6000000000001 7723 1991-02-23 2024-10-11 02:08:43.000 1991-02-23 2024-10-11 02:08:43 +7724 7724 7725 772.4 1544.8000000000002 7724 1991-02-24 2024-10-11 02:08:44.000 1991-02-24 2024-10-11 02:08:44 +7725 7725 7726 772.5 1545 7725 1991-02-25 2024-10-11 02:08:45.000 1991-02-25 2024-10-11 02:08:45 +7726 7726 7727 772.6 1545.2 7726 1991-02-26 2024-10-11 02:08:46.000 1991-02-26 2024-10-11 02:08:46 +7727 7727 7728 772.7 1545.4 7727 1991-02-27 2024-10-11 02:08:47.000 1991-02-27 2024-10-11 02:08:47 +7728 7728 7729 772.8 1545.6000000000001 7728 1991-02-28 2024-10-11 02:08:48.000 1991-02-28 2024-10-11 02:08:48 +7729 7729 7730 772.9 1545.8000000000002 7729 1991-03-01 2024-10-11 02:08:49.000 1991-03-01 2024-10-11 02:08:49 +7730 7730 7731 773 1546 7730 1991-03-02 2024-10-11 02:08:50.000 1991-03-02 2024-10-11 02:08:50 +7731 7731 7732 773.1 1546.2 7731 1991-03-03 2024-10-11 02:08:51.000 1991-03-03 2024-10-11 02:08:51 +7732 7732 7733 773.2 1546.4 7732 1991-03-04 2024-10-11 02:08:52.000 1991-03-04 2024-10-11 02:08:52 +7733 7733 7734 773.3 1546.6000000000001 7733 1991-03-05 2024-10-11 02:08:53.000 1991-03-05 2024-10-11 02:08:53 +7734 7734 7735 773.4 1546.8000000000002 7734 1991-03-06 2024-10-11 02:08:54.000 1991-03-06 2024-10-11 02:08:54 +7735 7735 7736 773.5 1547 7735 1991-03-07 2024-10-11 02:08:55.000 1991-03-07 2024-10-11 02:08:55 +7736 7736 7737 773.6 1547.2 7736 1991-03-08 2024-10-11 02:08:56.000 1991-03-08 2024-10-11 02:08:56 +7737 7737 7738 773.7 1547.4 7737 1991-03-09 2024-10-11 02:08:57.000 1991-03-09 2024-10-11 02:08:57 +7738 7738 7739 773.8 1547.6000000000001 7738 1991-03-10 2024-10-11 02:08:58.000 1991-03-10 2024-10-11 02:08:58 +7739 7739 7740 773.9 1547.8000000000002 7739 1991-03-11 2024-10-11 02:08:59.000 1991-03-11 2024-10-11 02:08:59 +7740 7740 7741 774 1548 7740 1991-03-12 2024-10-11 02:09:00.000 1991-03-12 2024-10-11 02:09:00 +7741 7741 7742 774.1 1548.2 7741 1991-03-13 2024-10-11 02:09:01.000 1991-03-13 2024-10-11 02:09:01 +7742 7742 7743 774.2 1548.4 7742 1991-03-14 2024-10-11 02:09:02.000 1991-03-14 2024-10-11 02:09:02 +7743 7743 7744 774.3 1548.6000000000001 7743 1991-03-15 2024-10-11 02:09:03.000 1991-03-15 2024-10-11 02:09:03 +7744 7744 7745 774.4 1548.8000000000002 7744 1991-03-16 2024-10-11 02:09:04.000 1991-03-16 2024-10-11 02:09:04 +7745 7745 7746 774.5 1549 7745 1991-03-17 2024-10-11 02:09:05.000 1991-03-17 2024-10-11 02:09:05 +7746 7746 7747 774.6 1549.2 7746 1991-03-18 2024-10-11 02:09:06.000 1991-03-18 2024-10-11 02:09:06 +7747 7747 7748 774.7 1549.4 7747 1991-03-19 2024-10-11 02:09:07.000 1991-03-19 2024-10-11 02:09:07 +7748 7748 7749 774.8 1549.6000000000001 7748 1991-03-20 2024-10-11 02:09:08.000 1991-03-20 2024-10-11 02:09:08 +7749 7749 7750 774.9 1549.8000000000002 7749 1991-03-21 2024-10-11 02:09:09.000 1991-03-21 2024-10-11 02:09:09 +7750 7750 7751 775 1550 7750 1991-03-22 2024-10-11 02:09:10.000 1991-03-22 2024-10-11 02:09:10 +7751 7751 7752 775.1 1550.2 7751 1991-03-23 2024-10-11 02:09:11.000 1991-03-23 2024-10-11 02:09:11 +7752 7752 7753 775.2 1550.4 7752 1991-03-24 2024-10-11 02:09:12.000 1991-03-24 2024-10-11 02:09:12 +7753 7753 7754 775.3 1550.6000000000001 7753 1991-03-25 2024-10-11 02:09:13.000 1991-03-25 2024-10-11 02:09:13 +7754 7754 7755 775.4 1550.8000000000002 7754 1991-03-26 2024-10-11 02:09:14.000 1991-03-26 2024-10-11 02:09:14 +7755 7755 7756 775.5 1551 7755 1991-03-27 2024-10-11 02:09:15.000 1991-03-27 2024-10-11 02:09:15 +7756 7756 7757 775.6 1551.2 7756 1991-03-28 2024-10-11 02:09:16.000 1991-03-28 2024-10-11 02:09:16 +7757 7757 7758 775.7 1551.4 7757 1991-03-29 2024-10-11 02:09:17.000 1991-03-29 2024-10-11 02:09:17 +7758 7758 7759 775.8 1551.6000000000001 7758 1991-03-30 2024-10-11 02:09:18.000 1991-03-30 2024-10-11 02:09:18 +7759 7759 7760 775.9 1551.8000000000002 7759 1991-03-31 2024-10-11 02:09:19.000 1991-03-31 2024-10-11 02:09:19 +7760 7760 7761 776 1552 7760 1991-04-01 2024-10-11 02:09:20.000 1991-04-01 2024-10-11 02:09:20 +7761 7761 7762 776.1 1552.2 7761 1991-04-02 2024-10-11 02:09:21.000 1991-04-02 2024-10-11 02:09:21 +7762 7762 7763 776.2 1552.4 7762 1991-04-03 2024-10-11 02:09:22.000 1991-04-03 2024-10-11 02:09:22 +7763 7763 7764 776.3 1552.6000000000001 7763 1991-04-04 2024-10-11 02:09:23.000 1991-04-04 2024-10-11 02:09:23 +7764 7764 7765 776.4 1552.8000000000002 7764 1991-04-05 2024-10-11 02:09:24.000 1991-04-05 2024-10-11 02:09:24 +7765 7765 7766 776.5 1553 7765 1991-04-06 2024-10-11 02:09:25.000 1991-04-06 2024-10-11 02:09:25 +7766 7766 7767 776.6 1553.2 7766 1991-04-07 2024-10-11 02:09:26.000 1991-04-07 2024-10-11 02:09:26 +7767 7767 7768 776.7 1553.4 7767 1991-04-08 2024-10-11 02:09:27.000 1991-04-08 2024-10-11 02:09:27 +7768 7768 7769 776.8 1553.6000000000001 7768 1991-04-09 2024-10-11 02:09:28.000 1991-04-09 2024-10-11 02:09:28 +7769 7769 7770 776.9 1553.8000000000002 7769 1991-04-10 2024-10-11 02:09:29.000 1991-04-10 2024-10-11 02:09:29 +7770 7770 7771 777 1554 7770 1991-04-11 2024-10-11 02:09:30.000 1991-04-11 2024-10-11 02:09:30 +7771 7771 7772 777.1 1554.2 7771 1991-04-12 2024-10-11 02:09:31.000 1991-04-12 2024-10-11 02:09:31 +7772 7772 7773 777.2 1554.4 7772 1991-04-13 2024-10-11 02:09:32.000 1991-04-13 2024-10-11 02:09:32 +7773 7773 7774 777.3 1554.6000000000001 7773 1991-04-14 2024-10-11 02:09:33.000 1991-04-14 2024-10-11 02:09:33 +7774 7774 7775 777.4 1554.8000000000002 7774 1991-04-15 2024-10-11 02:09:34.000 1991-04-15 2024-10-11 02:09:34 +7775 7775 7776 777.5 1555 7775 1991-04-16 2024-10-11 02:09:35.000 1991-04-16 2024-10-11 02:09:35 +7776 7776 7777 777.6 1555.2 7776 1991-04-17 2024-10-11 02:09:36.000 1991-04-17 2024-10-11 02:09:36 +7777 7777 7778 777.7 1555.4 7777 1991-04-18 2024-10-11 02:09:37.000 1991-04-18 2024-10-11 02:09:37 +7778 7778 7779 777.8 1555.6000000000001 7778 1991-04-19 2024-10-11 02:09:38.000 1991-04-19 2024-10-11 02:09:38 +7779 7779 7780 777.9 1555.8000000000002 7779 1991-04-20 2024-10-11 02:09:39.000 1991-04-20 2024-10-11 02:09:39 +7780 7780 7781 778 1556 7780 1991-04-21 2024-10-11 02:09:40.000 1991-04-21 2024-10-11 02:09:40 +7781 7781 7782 778.1 1556.2 7781 1991-04-22 2024-10-11 02:09:41.000 1991-04-22 2024-10-11 02:09:41 +7782 7782 7783 778.2 1556.4 7782 1991-04-23 2024-10-11 02:09:42.000 1991-04-23 2024-10-11 02:09:42 +7783 7783 7784 778.3 1556.6000000000001 7783 1991-04-24 2024-10-11 02:09:43.000 1991-04-24 2024-10-11 02:09:43 +7784 7784 7785 778.4 1556.8000000000002 7784 1991-04-25 2024-10-11 02:09:44.000 1991-04-25 2024-10-11 02:09:44 +7785 7785 7786 778.5 1557 7785 1991-04-26 2024-10-11 02:09:45.000 1991-04-26 2024-10-11 02:09:45 +7786 7786 7787 778.6 1557.2 7786 1991-04-27 2024-10-11 02:09:46.000 1991-04-27 2024-10-11 02:09:46 +7787 7787 7788 778.7 1557.4 7787 1991-04-28 2024-10-11 02:09:47.000 1991-04-28 2024-10-11 02:09:47 +7788 7788 7789 778.8 1557.6000000000001 7788 1991-04-29 2024-10-11 02:09:48.000 1991-04-29 2024-10-11 02:09:48 +7789 7789 7790 778.9 1557.8000000000002 7789 1991-04-30 2024-10-11 02:09:49.000 1991-04-30 2024-10-11 02:09:49 +7790 7790 7791 779 1558 7790 1991-05-01 2024-10-11 02:09:50.000 1991-05-01 2024-10-11 02:09:50 +7791 7791 7792 779.1 1558.2 7791 1991-05-02 2024-10-11 02:09:51.000 1991-05-02 2024-10-11 02:09:51 +7792 7792 7793 779.2 1558.4 7792 1991-05-03 2024-10-11 02:09:52.000 1991-05-03 2024-10-11 02:09:52 +7793 7793 7794 779.3 1558.6000000000001 7793 1991-05-04 2024-10-11 02:09:53.000 1991-05-04 2024-10-11 02:09:53 +7794 7794 7795 779.4 1558.8000000000002 7794 1991-05-05 2024-10-11 02:09:54.000 1991-05-05 2024-10-11 02:09:54 +7795 7795 7796 779.5 1559 7795 1991-05-06 2024-10-11 02:09:55.000 1991-05-06 2024-10-11 02:09:55 +7796 7796 7797 779.6 1559.2 7796 1991-05-07 2024-10-11 02:09:56.000 1991-05-07 2024-10-11 02:09:56 +7797 7797 7798 779.7 1559.4 7797 1991-05-08 2024-10-11 02:09:57.000 1991-05-08 2024-10-11 02:09:57 +7798 7798 7799 779.8 1559.6000000000001 7798 1991-05-09 2024-10-11 02:09:58.000 1991-05-09 2024-10-11 02:09:58 +7799 7799 7800 779.9 1559.8000000000002 7799 1991-05-10 2024-10-11 02:09:59.000 1991-05-10 2024-10-11 02:09:59 +7800 7800 7801 780 1560 7800 1991-05-11 2024-10-11 02:10:00.000 1991-05-11 2024-10-11 02:10:00 +7801 7801 7802 780.1 1560.2 7801 1991-05-12 2024-10-11 02:10:01.000 1991-05-12 2024-10-11 02:10:01 +7802 7802 7803 780.2 1560.4 7802 1991-05-13 2024-10-11 02:10:02.000 1991-05-13 2024-10-11 02:10:02 +7803 7803 7804 780.3 1560.6000000000001 7803 1991-05-14 2024-10-11 02:10:03.000 1991-05-14 2024-10-11 02:10:03 +7804 7804 7805 780.4 1560.8000000000002 7804 1991-05-15 2024-10-11 02:10:04.000 1991-05-15 2024-10-11 02:10:04 +7805 7805 7806 780.5 1561 7805 1991-05-16 2024-10-11 02:10:05.000 1991-05-16 2024-10-11 02:10:05 +7806 7806 7807 780.6 1561.2 7806 1991-05-17 2024-10-11 02:10:06.000 1991-05-17 2024-10-11 02:10:06 +7807 7807 7808 780.7 1561.4 7807 1991-05-18 2024-10-11 02:10:07.000 1991-05-18 2024-10-11 02:10:07 +7808 7808 7809 780.8 1561.6000000000001 7808 1991-05-19 2024-10-11 02:10:08.000 1991-05-19 2024-10-11 02:10:08 +7809 7809 7810 780.9 1561.8000000000002 7809 1991-05-20 2024-10-11 02:10:09.000 1991-05-20 2024-10-11 02:10:09 +7810 7810 7811 781 1562 7810 1991-05-21 2024-10-11 02:10:10.000 1991-05-21 2024-10-11 02:10:10 +7811 7811 7812 781.1 1562.2 7811 1991-05-22 2024-10-11 02:10:11.000 1991-05-22 2024-10-11 02:10:11 +7812 7812 7813 781.2 1562.4 7812 1991-05-23 2024-10-11 02:10:12.000 1991-05-23 2024-10-11 02:10:12 +7813 7813 7814 781.3 1562.6000000000001 7813 1991-05-24 2024-10-11 02:10:13.000 1991-05-24 2024-10-11 02:10:13 +7814 7814 7815 781.4 1562.8000000000002 7814 1991-05-25 2024-10-11 02:10:14.000 1991-05-25 2024-10-11 02:10:14 +7815 7815 7816 781.5 1563 7815 1991-05-26 2024-10-11 02:10:15.000 1991-05-26 2024-10-11 02:10:15 +7816 7816 7817 781.6 1563.2 7816 1991-05-27 2024-10-11 02:10:16.000 1991-05-27 2024-10-11 02:10:16 +7817 7817 7818 781.7 1563.4 7817 1991-05-28 2024-10-11 02:10:17.000 1991-05-28 2024-10-11 02:10:17 +7818 7818 7819 781.8 1563.6000000000001 7818 1991-05-29 2024-10-11 02:10:18.000 1991-05-29 2024-10-11 02:10:18 +7819 7819 7820 781.9 1563.8000000000002 7819 1991-05-30 2024-10-11 02:10:19.000 1991-05-30 2024-10-11 02:10:19 +7820 7820 7821 782 1564 7820 1991-05-31 2024-10-11 02:10:20.000 1991-05-31 2024-10-11 02:10:20 +7821 7821 7822 782.1 1564.2 7821 1991-06-01 2024-10-11 02:10:21.000 1991-06-01 2024-10-11 02:10:21 +7822 7822 7823 782.2 1564.4 7822 1991-06-02 2024-10-11 02:10:22.000 1991-06-02 2024-10-11 02:10:22 +7823 7823 7824 782.3 1564.6000000000001 7823 1991-06-03 2024-10-11 02:10:23.000 1991-06-03 2024-10-11 02:10:23 +7824 7824 7825 782.4 1564.8000000000002 7824 1991-06-04 2024-10-11 02:10:24.000 1991-06-04 2024-10-11 02:10:24 +7825 7825 7826 782.5 1565 7825 1991-06-05 2024-10-11 02:10:25.000 1991-06-05 2024-10-11 02:10:25 +7826 7826 7827 782.6 1565.2 7826 1991-06-06 2024-10-11 02:10:26.000 1991-06-06 2024-10-11 02:10:26 +7827 7827 7828 782.7 1565.4 7827 1991-06-07 2024-10-11 02:10:27.000 1991-06-07 2024-10-11 02:10:27 +7828 7828 7829 782.8 1565.6000000000001 7828 1991-06-08 2024-10-11 02:10:28.000 1991-06-08 2024-10-11 02:10:28 +7829 7829 7830 782.9 1565.8000000000002 7829 1991-06-09 2024-10-11 02:10:29.000 1991-06-09 2024-10-11 02:10:29 +7830 7830 7831 783 1566 7830 1991-06-10 2024-10-11 02:10:30.000 1991-06-10 2024-10-11 02:10:30 +7831 7831 7832 783.1 1566.2 7831 1991-06-11 2024-10-11 02:10:31.000 1991-06-11 2024-10-11 02:10:31 +7832 7832 7833 783.2 1566.4 7832 1991-06-12 2024-10-11 02:10:32.000 1991-06-12 2024-10-11 02:10:32 +7833 7833 7834 783.3 1566.6000000000001 7833 1991-06-13 2024-10-11 02:10:33.000 1991-06-13 2024-10-11 02:10:33 +7834 7834 7835 783.4 1566.8000000000002 7834 1991-06-14 2024-10-11 02:10:34.000 1991-06-14 2024-10-11 02:10:34 +7835 7835 7836 783.5 1567 7835 1991-06-15 2024-10-11 02:10:35.000 1991-06-15 2024-10-11 02:10:35 +7836 7836 7837 783.6 1567.2 7836 1991-06-16 2024-10-11 02:10:36.000 1991-06-16 2024-10-11 02:10:36 +7837 7837 7838 783.7 1567.4 7837 1991-06-17 2024-10-11 02:10:37.000 1991-06-17 2024-10-11 02:10:37 +7838 7838 7839 783.8 1567.6000000000001 7838 1991-06-18 2024-10-11 02:10:38.000 1991-06-18 2024-10-11 02:10:38 +7839 7839 7840 783.9 1567.8000000000002 7839 1991-06-19 2024-10-11 02:10:39.000 1991-06-19 2024-10-11 02:10:39 +7840 7840 7841 784 1568 7840 1991-06-20 2024-10-11 02:10:40.000 1991-06-20 2024-10-11 02:10:40 +7841 7841 7842 784.1 1568.2 7841 1991-06-21 2024-10-11 02:10:41.000 1991-06-21 2024-10-11 02:10:41 +7842 7842 7843 784.2 1568.4 7842 1991-06-22 2024-10-11 02:10:42.000 1991-06-22 2024-10-11 02:10:42 +7843 7843 7844 784.3 1568.6000000000001 7843 1991-06-23 2024-10-11 02:10:43.000 1991-06-23 2024-10-11 02:10:43 +7844 7844 7845 784.4 1568.8000000000002 7844 1991-06-24 2024-10-11 02:10:44.000 1991-06-24 2024-10-11 02:10:44 +7845 7845 7846 784.5 1569 7845 1991-06-25 2024-10-11 02:10:45.000 1991-06-25 2024-10-11 02:10:45 +7846 7846 7847 784.6 1569.2 7846 1991-06-26 2024-10-11 02:10:46.000 1991-06-26 2024-10-11 02:10:46 +7847 7847 7848 784.7 1569.4 7847 1991-06-27 2024-10-11 02:10:47.000 1991-06-27 2024-10-11 02:10:47 +7848 7848 7849 784.8 1569.6000000000001 7848 1991-06-28 2024-10-11 02:10:48.000 1991-06-28 2024-10-11 02:10:48 +7849 7849 7850 784.9 1569.8000000000002 7849 1991-06-29 2024-10-11 02:10:49.000 1991-06-29 2024-10-11 02:10:49 +7850 7850 7851 785 1570 7850 1991-06-30 2024-10-11 02:10:50.000 1991-06-30 2024-10-11 02:10:50 +7851 7851 7852 785.1 1570.2 7851 1991-07-01 2024-10-11 02:10:51.000 1991-07-01 2024-10-11 02:10:51 +7852 7852 7853 785.2 1570.4 7852 1991-07-02 2024-10-11 02:10:52.000 1991-07-02 2024-10-11 02:10:52 +7853 7853 7854 785.3 1570.6000000000001 7853 1991-07-03 2024-10-11 02:10:53.000 1991-07-03 2024-10-11 02:10:53 +7854 7854 7855 785.4 1570.8000000000002 7854 1991-07-04 2024-10-11 02:10:54.000 1991-07-04 2024-10-11 02:10:54 +7855 7855 7856 785.5 1571 7855 1991-07-05 2024-10-11 02:10:55.000 1991-07-05 2024-10-11 02:10:55 +7856 7856 7857 785.6 1571.2 7856 1991-07-06 2024-10-11 02:10:56.000 1991-07-06 2024-10-11 02:10:56 +7857 7857 7858 785.7 1571.4 7857 1991-07-07 2024-10-11 02:10:57.000 1991-07-07 2024-10-11 02:10:57 +7858 7858 7859 785.8 1571.6000000000001 7858 1991-07-08 2024-10-11 02:10:58.000 1991-07-08 2024-10-11 02:10:58 +7859 7859 7860 785.9 1571.8000000000002 7859 1991-07-09 2024-10-11 02:10:59.000 1991-07-09 2024-10-11 02:10:59 +7860 7860 7861 786 1572 7860 1991-07-10 2024-10-11 02:11:00.000 1991-07-10 2024-10-11 02:11:00 +7861 7861 7862 786.1 1572.2 7861 1991-07-11 2024-10-11 02:11:01.000 1991-07-11 2024-10-11 02:11:01 +7862 7862 7863 786.2 1572.4 7862 1991-07-12 2024-10-11 02:11:02.000 1991-07-12 2024-10-11 02:11:02 +7863 7863 7864 786.3 1572.6000000000001 7863 1991-07-13 2024-10-11 02:11:03.000 1991-07-13 2024-10-11 02:11:03 +7864 7864 7865 786.4 1572.8000000000002 7864 1991-07-14 2024-10-11 02:11:04.000 1991-07-14 2024-10-11 02:11:04 +7865 7865 7866 786.5 1573 7865 1991-07-15 2024-10-11 02:11:05.000 1991-07-15 2024-10-11 02:11:05 +7866 7866 7867 786.6 1573.2 7866 1991-07-16 2024-10-11 02:11:06.000 1991-07-16 2024-10-11 02:11:06 +7867 7867 7868 786.7 1573.4 7867 1991-07-17 2024-10-11 02:11:07.000 1991-07-17 2024-10-11 02:11:07 +7868 7868 7869 786.8 1573.6000000000001 7868 1991-07-18 2024-10-11 02:11:08.000 1991-07-18 2024-10-11 02:11:08 +7869 7869 7870 786.9 1573.8000000000002 7869 1991-07-19 2024-10-11 02:11:09.000 1991-07-19 2024-10-11 02:11:09 +7870 7870 7871 787 1574 7870 1991-07-20 2024-10-11 02:11:10.000 1991-07-20 2024-10-11 02:11:10 +7871 7871 7872 787.1 1574.2 7871 1991-07-21 2024-10-11 02:11:11.000 1991-07-21 2024-10-11 02:11:11 +7872 7872 7873 787.2 1574.4 7872 1991-07-22 2024-10-11 02:11:12.000 1991-07-22 2024-10-11 02:11:12 +7873 7873 7874 787.3 1574.6000000000001 7873 1991-07-23 2024-10-11 02:11:13.000 1991-07-23 2024-10-11 02:11:13 +7874 7874 7875 787.4 1574.8000000000002 7874 1991-07-24 2024-10-11 02:11:14.000 1991-07-24 2024-10-11 02:11:14 +7875 7875 7876 787.5 1575 7875 1991-07-25 2024-10-11 02:11:15.000 1991-07-25 2024-10-11 02:11:15 +7876 7876 7877 787.6 1575.2 7876 1991-07-26 2024-10-11 02:11:16.000 1991-07-26 2024-10-11 02:11:16 +7877 7877 7878 787.7 1575.4 7877 1991-07-27 2024-10-11 02:11:17.000 1991-07-27 2024-10-11 02:11:17 +7878 7878 7879 787.8 1575.6000000000001 7878 1991-07-28 2024-10-11 02:11:18.000 1991-07-28 2024-10-11 02:11:18 +7879 7879 7880 787.9 1575.8000000000002 7879 1991-07-29 2024-10-11 02:11:19.000 1991-07-29 2024-10-11 02:11:19 +7880 7880 7881 788 1576 7880 1991-07-30 2024-10-11 02:11:20.000 1991-07-30 2024-10-11 02:11:20 +7881 7881 7882 788.1 1576.2 7881 1991-07-31 2024-10-11 02:11:21.000 1991-07-31 2024-10-11 02:11:21 +7882 7882 7883 788.2 1576.4 7882 1991-08-01 2024-10-11 02:11:22.000 1991-08-01 2024-10-11 02:11:22 +7883 7883 7884 788.3 1576.6000000000001 7883 1991-08-02 2024-10-11 02:11:23.000 1991-08-02 2024-10-11 02:11:23 +7884 7884 7885 788.4 1576.8000000000002 7884 1991-08-03 2024-10-11 02:11:24.000 1991-08-03 2024-10-11 02:11:24 +7885 7885 7886 788.5 1577 7885 1991-08-04 2024-10-11 02:11:25.000 1991-08-04 2024-10-11 02:11:25 +7886 7886 7887 788.6 1577.2 7886 1991-08-05 2024-10-11 02:11:26.000 1991-08-05 2024-10-11 02:11:26 +7887 7887 7888 788.7 1577.4 7887 1991-08-06 2024-10-11 02:11:27.000 1991-08-06 2024-10-11 02:11:27 +7888 7888 7889 788.8 1577.6000000000001 7888 1991-08-07 2024-10-11 02:11:28.000 1991-08-07 2024-10-11 02:11:28 +7889 7889 7890 788.9 1577.8000000000002 7889 1991-08-08 2024-10-11 02:11:29.000 1991-08-08 2024-10-11 02:11:29 +7890 7890 7891 789 1578 7890 1991-08-09 2024-10-11 02:11:30.000 1991-08-09 2024-10-11 02:11:30 +7891 7891 7892 789.1 1578.2 7891 1991-08-10 2024-10-11 02:11:31.000 1991-08-10 2024-10-11 02:11:31 +7892 7892 7893 789.2 1578.4 7892 1991-08-11 2024-10-11 02:11:32.000 1991-08-11 2024-10-11 02:11:32 +7893 7893 7894 789.3 1578.6000000000001 7893 1991-08-12 2024-10-11 02:11:33.000 1991-08-12 2024-10-11 02:11:33 +7894 7894 7895 789.4 1578.8000000000002 7894 1991-08-13 2024-10-11 02:11:34.000 1991-08-13 2024-10-11 02:11:34 +7895 7895 7896 789.5 1579 7895 1991-08-14 2024-10-11 02:11:35.000 1991-08-14 2024-10-11 02:11:35 +7896 7896 7897 789.6 1579.2 7896 1991-08-15 2024-10-11 02:11:36.000 1991-08-15 2024-10-11 02:11:36 +7897 7897 7898 789.7 1579.4 7897 1991-08-16 2024-10-11 02:11:37.000 1991-08-16 2024-10-11 02:11:37 +7898 7898 7899 789.8 1579.6000000000001 7898 1991-08-17 2024-10-11 02:11:38.000 1991-08-17 2024-10-11 02:11:38 +7899 7899 7900 789.9 1579.8000000000002 7899 1991-08-18 2024-10-11 02:11:39.000 1991-08-18 2024-10-11 02:11:39 +7900 7900 7901 790 1580 7900 1991-08-19 2024-10-11 02:11:40.000 1991-08-19 2024-10-11 02:11:40 +7901 7901 7902 790.1 1580.2 7901 1991-08-20 2024-10-11 02:11:41.000 1991-08-20 2024-10-11 02:11:41 +7902 7902 7903 790.2 1580.4 7902 1991-08-21 2024-10-11 02:11:42.000 1991-08-21 2024-10-11 02:11:42 +7903 7903 7904 790.3 1580.6000000000001 7903 1991-08-22 2024-10-11 02:11:43.000 1991-08-22 2024-10-11 02:11:43 +7904 7904 7905 790.4 1580.8000000000002 7904 1991-08-23 2024-10-11 02:11:44.000 1991-08-23 2024-10-11 02:11:44 +7905 7905 7906 790.5 1581 7905 1991-08-24 2024-10-11 02:11:45.000 1991-08-24 2024-10-11 02:11:45 +7906 7906 7907 790.6 1581.2 7906 1991-08-25 2024-10-11 02:11:46.000 1991-08-25 2024-10-11 02:11:46 +7907 7907 7908 790.7 1581.4 7907 1991-08-26 2024-10-11 02:11:47.000 1991-08-26 2024-10-11 02:11:47 +7908 7908 7909 790.8 1581.6000000000001 7908 1991-08-27 2024-10-11 02:11:48.000 1991-08-27 2024-10-11 02:11:48 +7909 7909 7910 790.9 1581.8000000000002 7909 1991-08-28 2024-10-11 02:11:49.000 1991-08-28 2024-10-11 02:11:49 +7910 7910 7911 791 1582 7910 1991-08-29 2024-10-11 02:11:50.000 1991-08-29 2024-10-11 02:11:50 +7911 7911 7912 791.1 1582.2 7911 1991-08-30 2024-10-11 02:11:51.000 1991-08-30 2024-10-11 02:11:51 +7912 7912 7913 791.2 1582.4 7912 1991-08-31 2024-10-11 02:11:52.000 1991-08-31 2024-10-11 02:11:52 +7913 7913 7914 791.3 1582.6000000000001 7913 1991-09-01 2024-10-11 02:11:53.000 1991-09-01 2024-10-11 02:11:53 +7914 7914 7915 791.4 1582.8000000000002 7914 1991-09-02 2024-10-11 02:11:54.000 1991-09-02 2024-10-11 02:11:54 +7915 7915 7916 791.5 1583 7915 1991-09-03 2024-10-11 02:11:55.000 1991-09-03 2024-10-11 02:11:55 +7916 7916 7917 791.6 1583.2 7916 1991-09-04 2024-10-11 02:11:56.000 1991-09-04 2024-10-11 02:11:56 +7917 7917 7918 791.7 1583.4 7917 1991-09-05 2024-10-11 02:11:57.000 1991-09-05 2024-10-11 02:11:57 +7918 7918 7919 791.8 1583.6000000000001 7918 1991-09-06 2024-10-11 02:11:58.000 1991-09-06 2024-10-11 02:11:58 +7919 7919 7920 791.9 1583.8000000000002 7919 1991-09-07 2024-10-11 02:11:59.000 1991-09-07 2024-10-11 02:11:59 +7920 7920 7921 792 1584 7920 1991-09-08 2024-10-11 02:12:00.000 1991-09-08 2024-10-11 02:12:00 +7921 7921 7922 792.1 1584.2 7921 1991-09-09 2024-10-11 02:12:01.000 1991-09-09 2024-10-11 02:12:01 +7922 7922 7923 792.2 1584.4 7922 1991-09-10 2024-10-11 02:12:02.000 1991-09-10 2024-10-11 02:12:02 +7923 7923 7924 792.3 1584.6000000000001 7923 1991-09-11 2024-10-11 02:12:03.000 1991-09-11 2024-10-11 02:12:03 +7924 7924 7925 792.4 1584.8000000000002 7924 1991-09-12 2024-10-11 02:12:04.000 1991-09-12 2024-10-11 02:12:04 +7925 7925 7926 792.5 1585 7925 1991-09-13 2024-10-11 02:12:05.000 1991-09-13 2024-10-11 02:12:05 +7926 7926 7927 792.6 1585.2 7926 1991-09-14 2024-10-11 02:12:06.000 1991-09-14 2024-10-11 02:12:06 +7927 7927 7928 792.7 1585.4 7927 1991-09-15 2024-10-11 02:12:07.000 1991-09-15 2024-10-11 02:12:07 +7928 7928 7929 792.8 1585.6000000000001 7928 1991-09-16 2024-10-11 02:12:08.000 1991-09-16 2024-10-11 02:12:08 +7929 7929 7930 792.9 1585.8000000000002 7929 1991-09-17 2024-10-11 02:12:09.000 1991-09-17 2024-10-11 02:12:09 +7930 7930 7931 793 1586 7930 1991-09-18 2024-10-11 02:12:10.000 1991-09-18 2024-10-11 02:12:10 +7931 7931 7932 793.1 1586.2 7931 1991-09-19 2024-10-11 02:12:11.000 1991-09-19 2024-10-11 02:12:11 +7932 7932 7933 793.2 1586.4 7932 1991-09-20 2024-10-11 02:12:12.000 1991-09-20 2024-10-11 02:12:12 +7933 7933 7934 793.3 1586.6000000000001 7933 1991-09-21 2024-10-11 02:12:13.000 1991-09-21 2024-10-11 02:12:13 +7934 7934 7935 793.4 1586.8000000000002 7934 1991-09-22 2024-10-11 02:12:14.000 1991-09-22 2024-10-11 02:12:14 +7935 7935 7936 793.5 1587 7935 1991-09-23 2024-10-11 02:12:15.000 1991-09-23 2024-10-11 02:12:15 +7936 7936 7937 793.6 1587.2 7936 1991-09-24 2024-10-11 02:12:16.000 1991-09-24 2024-10-11 02:12:16 +7937 7937 7938 793.7 1587.4 7937 1991-09-25 2024-10-11 02:12:17.000 1991-09-25 2024-10-11 02:12:17 +7938 7938 7939 793.8 1587.6000000000001 7938 1991-09-26 2024-10-11 02:12:18.000 1991-09-26 2024-10-11 02:12:18 +7939 7939 7940 793.9 1587.8000000000002 7939 1991-09-27 2024-10-11 02:12:19.000 1991-09-27 2024-10-11 02:12:19 +7940 7940 7941 794 1588 7940 1991-09-28 2024-10-11 02:12:20.000 1991-09-28 2024-10-11 02:12:20 +7941 7941 7942 794.1 1588.2 7941 1991-09-29 2024-10-11 02:12:21.000 1991-09-29 2024-10-11 02:12:21 +7942 7942 7943 794.2 1588.4 7942 1991-09-30 2024-10-11 02:12:22.000 1991-09-30 2024-10-11 02:12:22 +7943 7943 7944 794.3 1588.6000000000001 7943 1991-10-01 2024-10-11 02:12:23.000 1991-10-01 2024-10-11 02:12:23 +7944 7944 7945 794.4 1588.8000000000002 7944 1991-10-02 2024-10-11 02:12:24.000 1991-10-02 2024-10-11 02:12:24 +7945 7945 7946 794.5 1589 7945 1991-10-03 2024-10-11 02:12:25.000 1991-10-03 2024-10-11 02:12:25 +7946 7946 7947 794.6 1589.2 7946 1991-10-04 2024-10-11 02:12:26.000 1991-10-04 2024-10-11 02:12:26 +7947 7947 7948 794.7 1589.4 7947 1991-10-05 2024-10-11 02:12:27.000 1991-10-05 2024-10-11 02:12:27 +7948 7948 7949 794.8 1589.6000000000001 7948 1991-10-06 2024-10-11 02:12:28.000 1991-10-06 2024-10-11 02:12:28 +7949 7949 7950 794.9 1589.8000000000002 7949 1991-10-07 2024-10-11 02:12:29.000 1991-10-07 2024-10-11 02:12:29 +7950 7950 7951 795 1590 7950 1991-10-08 2024-10-11 02:12:30.000 1991-10-08 2024-10-11 02:12:30 +7951 7951 7952 795.1 1590.2 7951 1991-10-09 2024-10-11 02:12:31.000 1991-10-09 2024-10-11 02:12:31 +7952 7952 7953 795.2 1590.4 7952 1991-10-10 2024-10-11 02:12:32.000 1991-10-10 2024-10-11 02:12:32 +7953 7953 7954 795.3 1590.6000000000001 7953 1991-10-11 2024-10-11 02:12:33.000 1991-10-11 2024-10-11 02:12:33 +7954 7954 7955 795.4 1590.8000000000002 7954 1991-10-12 2024-10-11 02:12:34.000 1991-10-12 2024-10-11 02:12:34 +7955 7955 7956 795.5 1591 7955 1991-10-13 2024-10-11 02:12:35.000 1991-10-13 2024-10-11 02:12:35 +7956 7956 7957 795.6 1591.2 7956 1991-10-14 2024-10-11 02:12:36.000 1991-10-14 2024-10-11 02:12:36 +7957 7957 7958 795.7 1591.4 7957 1991-10-15 2024-10-11 02:12:37.000 1991-10-15 2024-10-11 02:12:37 +7958 7958 7959 795.8 1591.6000000000001 7958 1991-10-16 2024-10-11 02:12:38.000 1991-10-16 2024-10-11 02:12:38 +7959 7959 7960 795.9 1591.8000000000002 7959 1991-10-17 2024-10-11 02:12:39.000 1991-10-17 2024-10-11 02:12:39 +7960 7960 7961 796 1592 7960 1991-10-18 2024-10-11 02:12:40.000 1991-10-18 2024-10-11 02:12:40 +7961 7961 7962 796.1 1592.2 7961 1991-10-19 2024-10-11 02:12:41.000 1991-10-19 2024-10-11 02:12:41 +7962 7962 7963 796.2 1592.4 7962 1991-10-20 2024-10-11 02:12:42.000 1991-10-20 2024-10-11 02:12:42 +7963 7963 7964 796.3 1592.6000000000001 7963 1991-10-21 2024-10-11 02:12:43.000 1991-10-21 2024-10-11 02:12:43 +7964 7964 7965 796.4 1592.8000000000002 7964 1991-10-22 2024-10-11 02:12:44.000 1991-10-22 2024-10-11 02:12:44 +7965 7965 7966 796.5 1593 7965 1991-10-23 2024-10-11 02:12:45.000 1991-10-23 2024-10-11 02:12:45 +7966 7966 7967 796.6 1593.2 7966 1991-10-24 2024-10-11 02:12:46.000 1991-10-24 2024-10-11 02:12:46 +7967 7967 7968 796.7 1593.4 7967 1991-10-25 2024-10-11 02:12:47.000 1991-10-25 2024-10-11 02:12:47 +7968 7968 7969 796.8 1593.6000000000001 7968 1991-10-26 2024-10-11 02:12:48.000 1991-10-26 2024-10-11 02:12:48 +7969 7969 7970 796.9 1593.8000000000002 7969 1991-10-27 2024-10-11 02:12:49.000 1991-10-27 2024-10-11 02:12:49 +7970 7970 7971 797 1594 7970 1991-10-28 2024-10-11 02:12:50.000 1991-10-28 2024-10-11 02:12:50 +7971 7971 7972 797.1 1594.2 7971 1991-10-29 2024-10-11 02:12:51.000 1991-10-29 2024-10-11 02:12:51 +7972 7972 7973 797.2 1594.4 7972 1991-10-30 2024-10-11 02:12:52.000 1991-10-30 2024-10-11 02:12:52 +7973 7973 7974 797.3 1594.6000000000001 7973 1991-10-31 2024-10-11 02:12:53.000 1991-10-31 2024-10-11 02:12:53 +7974 7974 7975 797.4 1594.8000000000002 7974 1991-11-01 2024-10-11 02:12:54.000 1991-11-01 2024-10-11 02:12:54 +7975 7975 7976 797.5 1595 7975 1991-11-02 2024-10-11 02:12:55.000 1991-11-02 2024-10-11 02:12:55 +7976 7976 7977 797.6 1595.2 7976 1991-11-03 2024-10-11 02:12:56.000 1991-11-03 2024-10-11 02:12:56 +7977 7977 7978 797.7 1595.4 7977 1991-11-04 2024-10-11 02:12:57.000 1991-11-04 2024-10-11 02:12:57 +7978 7978 7979 797.8 1595.6000000000001 7978 1991-11-05 2024-10-11 02:12:58.000 1991-11-05 2024-10-11 02:12:58 +7979 7979 7980 797.9 1595.8000000000002 7979 1991-11-06 2024-10-11 02:12:59.000 1991-11-06 2024-10-11 02:12:59 +7980 7980 7981 798 1596 7980 1991-11-07 2024-10-11 02:13:00.000 1991-11-07 2024-10-11 02:13:00 +7981 7981 7982 798.1 1596.2 7981 1991-11-08 2024-10-11 02:13:01.000 1991-11-08 2024-10-11 02:13:01 +7982 7982 7983 798.2 1596.4 7982 1991-11-09 2024-10-11 02:13:02.000 1991-11-09 2024-10-11 02:13:02 +7983 7983 7984 798.3 1596.6000000000001 7983 1991-11-10 2024-10-11 02:13:03.000 1991-11-10 2024-10-11 02:13:03 +7984 7984 7985 798.4 1596.8000000000002 7984 1991-11-11 2024-10-11 02:13:04.000 1991-11-11 2024-10-11 02:13:04 +7985 7985 7986 798.5 1597 7985 1991-11-12 2024-10-11 02:13:05.000 1991-11-12 2024-10-11 02:13:05 +7986 7986 7987 798.6 1597.2 7986 1991-11-13 2024-10-11 02:13:06.000 1991-11-13 2024-10-11 02:13:06 +7987 7987 7988 798.7 1597.4 7987 1991-11-14 2024-10-11 02:13:07.000 1991-11-14 2024-10-11 02:13:07 +7988 7988 7989 798.8 1597.6000000000001 7988 1991-11-15 2024-10-11 02:13:08.000 1991-11-15 2024-10-11 02:13:08 +7989 7989 7990 798.9 1597.8000000000002 7989 1991-11-16 2024-10-11 02:13:09.000 1991-11-16 2024-10-11 02:13:09 +7990 7990 7991 799 1598 7990 1991-11-17 2024-10-11 02:13:10.000 1991-11-17 2024-10-11 02:13:10 +7991 7991 7992 799.1 1598.2 7991 1991-11-18 2024-10-11 02:13:11.000 1991-11-18 2024-10-11 02:13:11 +7992 7992 7993 799.2 1598.4 7992 1991-11-19 2024-10-11 02:13:12.000 1991-11-19 2024-10-11 02:13:12 +7993 7993 7994 799.3 1598.6000000000001 7993 1991-11-20 2024-10-11 02:13:13.000 1991-11-20 2024-10-11 02:13:13 +7994 7994 7995 799.4 1598.8000000000002 7994 1991-11-21 2024-10-11 02:13:14.000 1991-11-21 2024-10-11 02:13:14 +7995 7995 7996 799.5 1599 7995 1991-11-22 2024-10-11 02:13:15.000 1991-11-22 2024-10-11 02:13:15 +7996 7996 7997 799.6 1599.2 7996 1991-11-23 2024-10-11 02:13:16.000 1991-11-23 2024-10-11 02:13:16 +7997 7997 7998 799.7 1599.4 7997 1991-11-24 2024-10-11 02:13:17.000 1991-11-24 2024-10-11 02:13:17 +7998 7998 7999 799.8 1599.6000000000001 7998 1991-11-25 2024-10-11 02:13:18.000 1991-11-25 2024-10-11 02:13:18 +7999 7999 8000 799.9 1599.8000000000002 7999 1991-11-26 2024-10-11 02:13:19.000 1991-11-26 2024-10-11 02:13:19 +8000 8000 8001 800 1600 8000 1991-11-27 2024-10-11 02:13:20.000 1991-11-27 2024-10-11 02:13:20 +8001 8001 8002 800.1 1600.2 8001 1991-11-28 2024-10-11 02:13:21.000 1991-11-28 2024-10-11 02:13:21 +8002 8002 8003 800.2 1600.4 8002 1991-11-29 2024-10-11 02:13:22.000 1991-11-29 2024-10-11 02:13:22 +8003 8003 8004 800.3 1600.6000000000001 8003 1991-11-30 2024-10-11 02:13:23.000 1991-11-30 2024-10-11 02:13:23 +8004 8004 8005 800.4 1600.8000000000002 8004 1991-12-01 2024-10-11 02:13:24.000 1991-12-01 2024-10-11 02:13:24 +8005 8005 8006 800.5 1601 8005 1991-12-02 2024-10-11 02:13:25.000 1991-12-02 2024-10-11 02:13:25 +8006 8006 8007 800.6 1601.2 8006 1991-12-03 2024-10-11 02:13:26.000 1991-12-03 2024-10-11 02:13:26 +8007 8007 8008 800.7 1601.4 8007 1991-12-04 2024-10-11 02:13:27.000 1991-12-04 2024-10-11 02:13:27 +8008 8008 8009 800.8 1601.6000000000001 8008 1991-12-05 2024-10-11 02:13:28.000 1991-12-05 2024-10-11 02:13:28 +8009 8009 8010 800.9 1601.8000000000002 8009 1991-12-06 2024-10-11 02:13:29.000 1991-12-06 2024-10-11 02:13:29 +8010 8010 8011 801 1602 8010 1991-12-07 2024-10-11 02:13:30.000 1991-12-07 2024-10-11 02:13:30 +8011 8011 8012 801.1 1602.2 8011 1991-12-08 2024-10-11 02:13:31.000 1991-12-08 2024-10-11 02:13:31 +8012 8012 8013 801.2 1602.4 8012 1991-12-09 2024-10-11 02:13:32.000 1991-12-09 2024-10-11 02:13:32 +8013 8013 8014 801.3 1602.6000000000001 8013 1991-12-10 2024-10-11 02:13:33.000 1991-12-10 2024-10-11 02:13:33 +8014 8014 8015 801.4 1602.8000000000002 8014 1991-12-11 2024-10-11 02:13:34.000 1991-12-11 2024-10-11 02:13:34 +8015 8015 8016 801.5 1603 8015 1991-12-12 2024-10-11 02:13:35.000 1991-12-12 2024-10-11 02:13:35 +8016 8016 8017 801.6 1603.2 8016 1991-12-13 2024-10-11 02:13:36.000 1991-12-13 2024-10-11 02:13:36 +8017 8017 8018 801.7 1603.4 8017 1991-12-14 2024-10-11 02:13:37.000 1991-12-14 2024-10-11 02:13:37 +8018 8018 8019 801.8 1603.6000000000001 8018 1991-12-15 2024-10-11 02:13:38.000 1991-12-15 2024-10-11 02:13:38 +8019 8019 8020 801.9 1603.8000000000002 8019 1991-12-16 2024-10-11 02:13:39.000 1991-12-16 2024-10-11 02:13:39 +8020 8020 8021 802 1604 8020 1991-12-17 2024-10-11 02:13:40.000 1991-12-17 2024-10-11 02:13:40 +8021 8021 8022 802.1 1604.2 8021 1991-12-18 2024-10-11 02:13:41.000 1991-12-18 2024-10-11 02:13:41 +8022 8022 8023 802.2 1604.4 8022 1991-12-19 2024-10-11 02:13:42.000 1991-12-19 2024-10-11 02:13:42 +8023 8023 8024 802.3 1604.6000000000001 8023 1991-12-20 2024-10-11 02:13:43.000 1991-12-20 2024-10-11 02:13:43 +8024 8024 8025 802.4 1604.8000000000002 8024 1991-12-21 2024-10-11 02:13:44.000 1991-12-21 2024-10-11 02:13:44 +8025 8025 8026 802.5 1605 8025 1991-12-22 2024-10-11 02:13:45.000 1991-12-22 2024-10-11 02:13:45 +8026 8026 8027 802.6 1605.2 8026 1991-12-23 2024-10-11 02:13:46.000 1991-12-23 2024-10-11 02:13:46 +8027 8027 8028 802.7 1605.4 8027 1991-12-24 2024-10-11 02:13:47.000 1991-12-24 2024-10-11 02:13:47 +8028 8028 8029 802.8 1605.6000000000001 8028 1991-12-25 2024-10-11 02:13:48.000 1991-12-25 2024-10-11 02:13:48 +8029 8029 8030 802.9 1605.8000000000002 8029 1991-12-26 2024-10-11 02:13:49.000 1991-12-26 2024-10-11 02:13:49 +8030 8030 8031 803 1606 8030 1991-12-27 2024-10-11 02:13:50.000 1991-12-27 2024-10-11 02:13:50 +8031 8031 8032 803.1 1606.2 8031 1991-12-28 2024-10-11 02:13:51.000 1991-12-28 2024-10-11 02:13:51 +8032 8032 8033 803.2 1606.4 8032 1991-12-29 2024-10-11 02:13:52.000 1991-12-29 2024-10-11 02:13:52 +8033 8033 8034 803.3 1606.6000000000001 8033 1991-12-30 2024-10-11 02:13:53.000 1991-12-30 2024-10-11 02:13:53 +8034 8034 8035 803.4 1606.8000000000002 8034 1991-12-31 2024-10-11 02:13:54.000 1991-12-31 2024-10-11 02:13:54 +8035 8035 8036 803.5 1607 8035 1992-01-01 2024-10-11 02:13:55.000 1992-01-01 2024-10-11 02:13:55 +8036 8036 8037 803.6 1607.2 8036 1992-01-02 2024-10-11 02:13:56.000 1992-01-02 2024-10-11 02:13:56 +8037 8037 8038 803.7 1607.4 8037 1992-01-03 2024-10-11 02:13:57.000 1992-01-03 2024-10-11 02:13:57 +8038 8038 8039 803.8 1607.6000000000001 8038 1992-01-04 2024-10-11 02:13:58.000 1992-01-04 2024-10-11 02:13:58 +8039 8039 8040 803.9 1607.8000000000002 8039 1992-01-05 2024-10-11 02:13:59.000 1992-01-05 2024-10-11 02:13:59 +8040 8040 8041 804 1608 8040 1992-01-06 2024-10-11 02:14:00.000 1992-01-06 2024-10-11 02:14:00 +8041 8041 8042 804.1 1608.2 8041 1992-01-07 2024-10-11 02:14:01.000 1992-01-07 2024-10-11 02:14:01 +8042 8042 8043 804.2 1608.4 8042 1992-01-08 2024-10-11 02:14:02.000 1992-01-08 2024-10-11 02:14:02 +8043 8043 8044 804.3 1608.6000000000001 8043 1992-01-09 2024-10-11 02:14:03.000 1992-01-09 2024-10-11 02:14:03 +8044 8044 8045 804.4 1608.8000000000002 8044 1992-01-10 2024-10-11 02:14:04.000 1992-01-10 2024-10-11 02:14:04 +8045 8045 8046 804.5 1609 8045 1992-01-11 2024-10-11 02:14:05.000 1992-01-11 2024-10-11 02:14:05 +8046 8046 8047 804.6 1609.2 8046 1992-01-12 2024-10-11 02:14:06.000 1992-01-12 2024-10-11 02:14:06 +8047 8047 8048 804.7 1609.4 8047 1992-01-13 2024-10-11 02:14:07.000 1992-01-13 2024-10-11 02:14:07 +8048 8048 8049 804.8 1609.6000000000001 8048 1992-01-14 2024-10-11 02:14:08.000 1992-01-14 2024-10-11 02:14:08 +8049 8049 8050 804.9 1609.8000000000002 8049 1992-01-15 2024-10-11 02:14:09.000 1992-01-15 2024-10-11 02:14:09 +8050 8050 8051 805 1610 8050 1992-01-16 2024-10-11 02:14:10.000 1992-01-16 2024-10-11 02:14:10 +8051 8051 8052 805.1 1610.2 8051 1992-01-17 2024-10-11 02:14:11.000 1992-01-17 2024-10-11 02:14:11 +8052 8052 8053 805.2 1610.4 8052 1992-01-18 2024-10-11 02:14:12.000 1992-01-18 2024-10-11 02:14:12 +8053 8053 8054 805.3 1610.6000000000001 8053 1992-01-19 2024-10-11 02:14:13.000 1992-01-19 2024-10-11 02:14:13 +8054 8054 8055 805.4 1610.8000000000002 8054 1992-01-20 2024-10-11 02:14:14.000 1992-01-20 2024-10-11 02:14:14 +8055 8055 8056 805.5 1611 8055 1992-01-21 2024-10-11 02:14:15.000 1992-01-21 2024-10-11 02:14:15 +8056 8056 8057 805.6 1611.2 8056 1992-01-22 2024-10-11 02:14:16.000 1992-01-22 2024-10-11 02:14:16 +8057 8057 8058 805.7 1611.4 8057 1992-01-23 2024-10-11 02:14:17.000 1992-01-23 2024-10-11 02:14:17 +8058 8058 8059 805.8 1611.6000000000001 8058 1992-01-24 2024-10-11 02:14:18.000 1992-01-24 2024-10-11 02:14:18 +8059 8059 8060 805.9 1611.8000000000002 8059 1992-01-25 2024-10-11 02:14:19.000 1992-01-25 2024-10-11 02:14:19 +8060 8060 8061 806 1612 8060 1992-01-26 2024-10-11 02:14:20.000 1992-01-26 2024-10-11 02:14:20 +8061 8061 8062 806.1 1612.2 8061 1992-01-27 2024-10-11 02:14:21.000 1992-01-27 2024-10-11 02:14:21 +8062 8062 8063 806.2 1612.4 8062 1992-01-28 2024-10-11 02:14:22.000 1992-01-28 2024-10-11 02:14:22 +8063 8063 8064 806.3 1612.6000000000001 8063 1992-01-29 2024-10-11 02:14:23.000 1992-01-29 2024-10-11 02:14:23 +8064 8064 8065 806.4 1612.8000000000002 8064 1992-01-30 2024-10-11 02:14:24.000 1992-01-30 2024-10-11 02:14:24 +8065 8065 8066 806.5 1613 8065 1992-01-31 2024-10-11 02:14:25.000 1992-01-31 2024-10-11 02:14:25 +8066 8066 8067 806.6 1613.2 8066 1992-02-01 2024-10-11 02:14:26.000 1992-02-01 2024-10-11 02:14:26 +8067 8067 8068 806.7 1613.4 8067 1992-02-02 2024-10-11 02:14:27.000 1992-02-02 2024-10-11 02:14:27 +8068 8068 8069 806.8 1613.6000000000001 8068 1992-02-03 2024-10-11 02:14:28.000 1992-02-03 2024-10-11 02:14:28 +8069 8069 8070 806.9 1613.8000000000002 8069 1992-02-04 2024-10-11 02:14:29.000 1992-02-04 2024-10-11 02:14:29 +8070 8070 8071 807 1614 8070 1992-02-05 2024-10-11 02:14:30.000 1992-02-05 2024-10-11 02:14:30 +8071 8071 8072 807.1 1614.2 8071 1992-02-06 2024-10-11 02:14:31.000 1992-02-06 2024-10-11 02:14:31 +8072 8072 8073 807.2 1614.4 8072 1992-02-07 2024-10-11 02:14:32.000 1992-02-07 2024-10-11 02:14:32 +8073 8073 8074 807.3 1614.6000000000001 8073 1992-02-08 2024-10-11 02:14:33.000 1992-02-08 2024-10-11 02:14:33 +8074 8074 8075 807.4 1614.8000000000002 8074 1992-02-09 2024-10-11 02:14:34.000 1992-02-09 2024-10-11 02:14:34 +8075 8075 8076 807.5 1615 8075 1992-02-10 2024-10-11 02:14:35.000 1992-02-10 2024-10-11 02:14:35 +8076 8076 8077 807.6 1615.2 8076 1992-02-11 2024-10-11 02:14:36.000 1992-02-11 2024-10-11 02:14:36 +8077 8077 8078 807.7 1615.4 8077 1992-02-12 2024-10-11 02:14:37.000 1992-02-12 2024-10-11 02:14:37 +8078 8078 8079 807.8 1615.6000000000001 8078 1992-02-13 2024-10-11 02:14:38.000 1992-02-13 2024-10-11 02:14:38 +8079 8079 8080 807.9 1615.8000000000002 8079 1992-02-14 2024-10-11 02:14:39.000 1992-02-14 2024-10-11 02:14:39 +8080 8080 8081 808 1616 8080 1992-02-15 2024-10-11 02:14:40.000 1992-02-15 2024-10-11 02:14:40 +8081 8081 8082 808.1 1616.2 8081 1992-02-16 2024-10-11 02:14:41.000 1992-02-16 2024-10-11 02:14:41 +8082 8082 8083 808.2 1616.4 8082 1992-02-17 2024-10-11 02:14:42.000 1992-02-17 2024-10-11 02:14:42 +8083 8083 8084 808.3 1616.6000000000001 8083 1992-02-18 2024-10-11 02:14:43.000 1992-02-18 2024-10-11 02:14:43 +8084 8084 8085 808.4 1616.8000000000002 8084 1992-02-19 2024-10-11 02:14:44.000 1992-02-19 2024-10-11 02:14:44 +8085 8085 8086 808.5 1617 8085 1992-02-20 2024-10-11 02:14:45.000 1992-02-20 2024-10-11 02:14:45 +8086 8086 8087 808.6 1617.2 8086 1992-02-21 2024-10-11 02:14:46.000 1992-02-21 2024-10-11 02:14:46 +8087 8087 8088 808.7 1617.4 8087 1992-02-22 2024-10-11 02:14:47.000 1992-02-22 2024-10-11 02:14:47 +8088 8088 8089 808.8 1617.6000000000001 8088 1992-02-23 2024-10-11 02:14:48.000 1992-02-23 2024-10-11 02:14:48 +8089 8089 8090 808.9 1617.8000000000002 8089 1992-02-24 2024-10-11 02:14:49.000 1992-02-24 2024-10-11 02:14:49 +8090 8090 8091 809 1618 8090 1992-02-25 2024-10-11 02:14:50.000 1992-02-25 2024-10-11 02:14:50 +8091 8091 8092 809.1 1618.2 8091 1992-02-26 2024-10-11 02:14:51.000 1992-02-26 2024-10-11 02:14:51 +8092 8092 8093 809.2 1618.4 8092 1992-02-27 2024-10-11 02:14:52.000 1992-02-27 2024-10-11 02:14:52 +8093 8093 8094 809.3 1618.6000000000001 8093 1992-02-28 2024-10-11 02:14:53.000 1992-02-28 2024-10-11 02:14:53 +8094 8094 8095 809.4 1618.8000000000002 8094 1992-02-29 2024-10-11 02:14:54.000 1992-02-29 2024-10-11 02:14:54 +8095 8095 8096 809.5 1619 8095 1992-03-01 2024-10-11 02:14:55.000 1992-03-01 2024-10-11 02:14:55 +8096 8096 8097 809.6 1619.2 8096 1992-03-02 2024-10-11 02:14:56.000 1992-03-02 2024-10-11 02:14:56 +8097 8097 8098 809.7 1619.4 8097 1992-03-03 2024-10-11 02:14:57.000 1992-03-03 2024-10-11 02:14:57 +8098 8098 8099 809.8 1619.6000000000001 8098 1992-03-04 2024-10-11 02:14:58.000 1992-03-04 2024-10-11 02:14:58 +8099 8099 8100 809.9 1619.8000000000002 8099 1992-03-05 2024-10-11 02:14:59.000 1992-03-05 2024-10-11 02:14:59 +8100 8100 8101 810 1620 8100 1992-03-06 2024-10-11 02:15:00.000 1992-03-06 2024-10-11 02:15:00 +8101 8101 8102 810.1 1620.2 8101 1992-03-07 2024-10-11 02:15:01.000 1992-03-07 2024-10-11 02:15:01 +8102 8102 8103 810.2 1620.4 8102 1992-03-08 2024-10-11 02:15:02.000 1992-03-08 2024-10-11 02:15:02 +8103 8103 8104 810.3 1620.6000000000001 8103 1992-03-09 2024-10-11 02:15:03.000 1992-03-09 2024-10-11 02:15:03 +8104 8104 8105 810.4 1620.8000000000002 8104 1992-03-10 2024-10-11 02:15:04.000 1992-03-10 2024-10-11 02:15:04 +8105 8105 8106 810.5 1621 8105 1992-03-11 2024-10-11 02:15:05.000 1992-03-11 2024-10-11 02:15:05 +8106 8106 8107 810.6 1621.2 8106 1992-03-12 2024-10-11 02:15:06.000 1992-03-12 2024-10-11 02:15:06 +8107 8107 8108 810.7 1621.4 8107 1992-03-13 2024-10-11 02:15:07.000 1992-03-13 2024-10-11 02:15:07 +8108 8108 8109 810.8 1621.6000000000001 8108 1992-03-14 2024-10-11 02:15:08.000 1992-03-14 2024-10-11 02:15:08 +8109 8109 8110 810.9 1621.8000000000002 8109 1992-03-15 2024-10-11 02:15:09.000 1992-03-15 2024-10-11 02:15:09 +8110 8110 8111 811 1622 8110 1992-03-16 2024-10-11 02:15:10.000 1992-03-16 2024-10-11 02:15:10 +8111 8111 8112 811.1 1622.2 8111 1992-03-17 2024-10-11 02:15:11.000 1992-03-17 2024-10-11 02:15:11 +8112 8112 8113 811.2 1622.4 8112 1992-03-18 2024-10-11 02:15:12.000 1992-03-18 2024-10-11 02:15:12 +8113 8113 8114 811.3 1622.6000000000001 8113 1992-03-19 2024-10-11 02:15:13.000 1992-03-19 2024-10-11 02:15:13 +8114 8114 8115 811.4 1622.8000000000002 8114 1992-03-20 2024-10-11 02:15:14.000 1992-03-20 2024-10-11 02:15:14 +8115 8115 8116 811.5 1623 8115 1992-03-21 2024-10-11 02:15:15.000 1992-03-21 2024-10-11 02:15:15 +8116 8116 8117 811.6 1623.2 8116 1992-03-22 2024-10-11 02:15:16.000 1992-03-22 2024-10-11 02:15:16 +8117 8117 8118 811.7 1623.4 8117 1992-03-23 2024-10-11 02:15:17.000 1992-03-23 2024-10-11 02:15:17 +8118 8118 8119 811.8 1623.6000000000001 8118 1992-03-24 2024-10-11 02:15:18.000 1992-03-24 2024-10-11 02:15:18 +8119 8119 8120 811.9 1623.8000000000002 8119 1992-03-25 2024-10-11 02:15:19.000 1992-03-25 2024-10-11 02:15:19 +8120 8120 8121 812 1624 8120 1992-03-26 2024-10-11 02:15:20.000 1992-03-26 2024-10-11 02:15:20 +8121 8121 8122 812.1 1624.2 8121 1992-03-27 2024-10-11 02:15:21.000 1992-03-27 2024-10-11 02:15:21 +8122 8122 8123 812.2 1624.4 8122 1992-03-28 2024-10-11 02:15:22.000 1992-03-28 2024-10-11 02:15:22 +8123 8123 8124 812.3 1624.6000000000001 8123 1992-03-29 2024-10-11 02:15:23.000 1992-03-29 2024-10-11 02:15:23 +8124 8124 8125 812.4 1624.8000000000002 8124 1992-03-30 2024-10-11 02:15:24.000 1992-03-30 2024-10-11 02:15:24 +8125 8125 8126 812.5 1625 8125 1992-03-31 2024-10-11 02:15:25.000 1992-03-31 2024-10-11 02:15:25 +8126 8126 8127 812.6 1625.2 8126 1992-04-01 2024-10-11 02:15:26.000 1992-04-01 2024-10-11 02:15:26 +8127 8127 8128 812.7 1625.4 8127 1992-04-02 2024-10-11 02:15:27.000 1992-04-02 2024-10-11 02:15:27 +8128 8128 8129 812.8 1625.6000000000001 8128 1992-04-03 2024-10-11 02:15:28.000 1992-04-03 2024-10-11 02:15:28 +8129 8129 8130 812.9 1625.8000000000002 8129 1992-04-04 2024-10-11 02:15:29.000 1992-04-04 2024-10-11 02:15:29 +8130 8130 8131 813 1626 8130 1992-04-05 2024-10-11 02:15:30.000 1992-04-05 2024-10-11 02:15:30 +8131 8131 8132 813.1 1626.2 8131 1992-04-06 2024-10-11 02:15:31.000 1992-04-06 2024-10-11 02:15:31 +8132 8132 8133 813.2 1626.4 8132 1992-04-07 2024-10-11 02:15:32.000 1992-04-07 2024-10-11 02:15:32 +8133 8133 8134 813.3 1626.6000000000001 8133 1992-04-08 2024-10-11 02:15:33.000 1992-04-08 2024-10-11 02:15:33 +8134 8134 8135 813.4 1626.8000000000002 8134 1992-04-09 2024-10-11 02:15:34.000 1992-04-09 2024-10-11 02:15:34 +8135 8135 8136 813.5 1627 8135 1992-04-10 2024-10-11 02:15:35.000 1992-04-10 2024-10-11 02:15:35 +8136 8136 8137 813.6 1627.2 8136 1992-04-11 2024-10-11 02:15:36.000 1992-04-11 2024-10-11 02:15:36 +8137 8137 8138 813.7 1627.4 8137 1992-04-12 2024-10-11 02:15:37.000 1992-04-12 2024-10-11 02:15:37 +8138 8138 8139 813.8 1627.6000000000001 8138 1992-04-13 2024-10-11 02:15:38.000 1992-04-13 2024-10-11 02:15:38 +8139 8139 8140 813.9 1627.8000000000002 8139 1992-04-14 2024-10-11 02:15:39.000 1992-04-14 2024-10-11 02:15:39 +8140 8140 8141 814 1628 8140 1992-04-15 2024-10-11 02:15:40.000 1992-04-15 2024-10-11 02:15:40 +8141 8141 8142 814.1 1628.2 8141 1992-04-16 2024-10-11 02:15:41.000 1992-04-16 2024-10-11 02:15:41 +8142 8142 8143 814.2 1628.4 8142 1992-04-17 2024-10-11 02:15:42.000 1992-04-17 2024-10-11 02:15:42 +8143 8143 8144 814.3 1628.6000000000001 8143 1992-04-18 2024-10-11 02:15:43.000 1992-04-18 2024-10-11 02:15:43 +8144 8144 8145 814.4 1628.8000000000002 8144 1992-04-19 2024-10-11 02:15:44.000 1992-04-19 2024-10-11 02:15:44 +8145 8145 8146 814.5 1629 8145 1992-04-20 2024-10-11 02:15:45.000 1992-04-20 2024-10-11 02:15:45 +8146 8146 8147 814.6 1629.2 8146 1992-04-21 2024-10-11 02:15:46.000 1992-04-21 2024-10-11 02:15:46 +8147 8147 8148 814.7 1629.4 8147 1992-04-22 2024-10-11 02:15:47.000 1992-04-22 2024-10-11 02:15:47 +8148 8148 8149 814.8 1629.6000000000001 8148 1992-04-23 2024-10-11 02:15:48.000 1992-04-23 2024-10-11 02:15:48 +8149 8149 8150 814.9 1629.8000000000002 8149 1992-04-24 2024-10-11 02:15:49.000 1992-04-24 2024-10-11 02:15:49 +8150 8150 8151 815 1630 8150 1992-04-25 2024-10-11 02:15:50.000 1992-04-25 2024-10-11 02:15:50 +8151 8151 8152 815.1 1630.2 8151 1992-04-26 2024-10-11 02:15:51.000 1992-04-26 2024-10-11 02:15:51 +8152 8152 8153 815.2 1630.4 8152 1992-04-27 2024-10-11 02:15:52.000 1992-04-27 2024-10-11 02:15:52 +8153 8153 8154 815.3 1630.6000000000001 8153 1992-04-28 2024-10-11 02:15:53.000 1992-04-28 2024-10-11 02:15:53 +8154 8154 8155 815.4 1630.8000000000002 8154 1992-04-29 2024-10-11 02:15:54.000 1992-04-29 2024-10-11 02:15:54 +8155 8155 8156 815.5 1631 8155 1992-04-30 2024-10-11 02:15:55.000 1992-04-30 2024-10-11 02:15:55 +8156 8156 8157 815.6 1631.2 8156 1992-05-01 2024-10-11 02:15:56.000 1992-05-01 2024-10-11 02:15:56 +8157 8157 8158 815.7 1631.4 8157 1992-05-02 2024-10-11 02:15:57.000 1992-05-02 2024-10-11 02:15:57 +8158 8158 8159 815.8 1631.6000000000001 8158 1992-05-03 2024-10-11 02:15:58.000 1992-05-03 2024-10-11 02:15:58 +8159 8159 8160 815.9 1631.8000000000002 8159 1992-05-04 2024-10-11 02:15:59.000 1992-05-04 2024-10-11 02:15:59 +8160 8160 8161 816 1632 8160 1992-05-05 2024-10-11 02:16:00.000 1992-05-05 2024-10-11 02:16:00 +8161 8161 8162 816.1 1632.2 8161 1992-05-06 2024-10-11 02:16:01.000 1992-05-06 2024-10-11 02:16:01 +8162 8162 8163 816.2 1632.4 8162 1992-05-07 2024-10-11 02:16:02.000 1992-05-07 2024-10-11 02:16:02 +8163 8163 8164 816.3 1632.6000000000001 8163 1992-05-08 2024-10-11 02:16:03.000 1992-05-08 2024-10-11 02:16:03 +8164 8164 8165 816.4 1632.8000000000002 8164 1992-05-09 2024-10-11 02:16:04.000 1992-05-09 2024-10-11 02:16:04 +8165 8165 8166 816.5 1633 8165 1992-05-10 2024-10-11 02:16:05.000 1992-05-10 2024-10-11 02:16:05 +8166 8166 8167 816.6 1633.2 8166 1992-05-11 2024-10-11 02:16:06.000 1992-05-11 2024-10-11 02:16:06 +8167 8167 8168 816.7 1633.4 8167 1992-05-12 2024-10-11 02:16:07.000 1992-05-12 2024-10-11 02:16:07 +8168 8168 8169 816.8 1633.6000000000001 8168 1992-05-13 2024-10-11 02:16:08.000 1992-05-13 2024-10-11 02:16:08 +8169 8169 8170 816.9 1633.8000000000002 8169 1992-05-14 2024-10-11 02:16:09.000 1992-05-14 2024-10-11 02:16:09 +8170 8170 8171 817 1634 8170 1992-05-15 2024-10-11 02:16:10.000 1992-05-15 2024-10-11 02:16:10 +8171 8171 8172 817.1 1634.2 8171 1992-05-16 2024-10-11 02:16:11.000 1992-05-16 2024-10-11 02:16:11 +8172 8172 8173 817.2 1634.4 8172 1992-05-17 2024-10-11 02:16:12.000 1992-05-17 2024-10-11 02:16:12 +8173 8173 8174 817.3 1634.6000000000001 8173 1992-05-18 2024-10-11 02:16:13.000 1992-05-18 2024-10-11 02:16:13 +8174 8174 8175 817.4 1634.8000000000002 8174 1992-05-19 2024-10-11 02:16:14.000 1992-05-19 2024-10-11 02:16:14 +8175 8175 8176 817.5 1635 8175 1992-05-20 2024-10-11 02:16:15.000 1992-05-20 2024-10-11 02:16:15 +8176 8176 8177 817.6 1635.2 8176 1992-05-21 2024-10-11 02:16:16.000 1992-05-21 2024-10-11 02:16:16 +8177 8177 8178 817.7 1635.4 8177 1992-05-22 2024-10-11 02:16:17.000 1992-05-22 2024-10-11 02:16:17 +8178 8178 8179 817.8 1635.6000000000001 8178 1992-05-23 2024-10-11 02:16:18.000 1992-05-23 2024-10-11 02:16:18 +8179 8179 8180 817.9 1635.8000000000002 8179 1992-05-24 2024-10-11 02:16:19.000 1992-05-24 2024-10-11 02:16:19 +8180 8180 8181 818 1636 8180 1992-05-25 2024-10-11 02:16:20.000 1992-05-25 2024-10-11 02:16:20 +8181 8181 8182 818.1 1636.2 8181 1992-05-26 2024-10-11 02:16:21.000 1992-05-26 2024-10-11 02:16:21 +8182 8182 8183 818.2 1636.4 8182 1992-05-27 2024-10-11 02:16:22.000 1992-05-27 2024-10-11 02:16:22 +8183 8183 8184 818.3 1636.6000000000001 8183 1992-05-28 2024-10-11 02:16:23.000 1992-05-28 2024-10-11 02:16:23 +8184 8184 8185 818.4 1636.8000000000002 8184 1992-05-29 2024-10-11 02:16:24.000 1992-05-29 2024-10-11 02:16:24 +8185 8185 8186 818.5 1637 8185 1992-05-30 2024-10-11 02:16:25.000 1992-05-30 2024-10-11 02:16:25 +8186 8186 8187 818.6 1637.2 8186 1992-05-31 2024-10-11 02:16:26.000 1992-05-31 2024-10-11 02:16:26 +8187 8187 8188 818.7 1637.4 8187 1992-06-01 2024-10-11 02:16:27.000 1992-06-01 2024-10-11 02:16:27 +8188 8188 8189 818.8 1637.6000000000001 8188 1992-06-02 2024-10-11 02:16:28.000 1992-06-02 2024-10-11 02:16:28 +8189 8189 8190 818.9 1637.8000000000002 8189 1992-06-03 2024-10-11 02:16:29.000 1992-06-03 2024-10-11 02:16:29 +8190 8190 8191 819 1638 8190 1992-06-04 2024-10-11 02:16:30.000 1992-06-04 2024-10-11 02:16:30 +8191 8191 8192 819.1 1638.2 8191 1992-06-05 2024-10-11 02:16:31.000 1992-06-05 2024-10-11 02:16:31 +8192 8192 8193 819.2 1638.4 8192 1992-06-06 2024-10-11 02:16:32.000 1992-06-06 2024-10-11 02:16:32 +8193 8193 8194 819.3 1638.6000000000001 8193 1992-06-07 2024-10-11 02:16:33.000 1992-06-07 2024-10-11 02:16:33 +8194 8194 8195 819.4 1638.8000000000002 8194 1992-06-08 2024-10-11 02:16:34.000 1992-06-08 2024-10-11 02:16:34 +8195 8195 8196 819.5 1639 8195 1992-06-09 2024-10-11 02:16:35.000 1992-06-09 2024-10-11 02:16:35 +8196 8196 8197 819.6 1639.2 8196 1992-06-10 2024-10-11 02:16:36.000 1992-06-10 2024-10-11 02:16:36 +8197 8197 8198 819.7 1639.4 8197 1992-06-11 2024-10-11 02:16:37.000 1992-06-11 2024-10-11 02:16:37 +8198 8198 8199 819.8 1639.6000000000001 8198 1992-06-12 2024-10-11 02:16:38.000 1992-06-12 2024-10-11 02:16:38 +8199 8199 8200 819.9 1639.8000000000002 8199 1992-06-13 2024-10-11 02:16:39.000 1992-06-13 2024-10-11 02:16:39 +8200 8200 8201 820 1640 8200 1992-06-14 2024-10-11 02:16:40.000 1992-06-14 2024-10-11 02:16:40 +8201 8201 8202 820.1 1640.2 8201 1992-06-15 2024-10-11 02:16:41.000 1992-06-15 2024-10-11 02:16:41 +8202 8202 8203 820.2 1640.4 8202 1992-06-16 2024-10-11 02:16:42.000 1992-06-16 2024-10-11 02:16:42 +8203 8203 8204 820.3 1640.6000000000001 8203 1992-06-17 2024-10-11 02:16:43.000 1992-06-17 2024-10-11 02:16:43 +8204 8204 8205 820.4 1640.8000000000002 8204 1992-06-18 2024-10-11 02:16:44.000 1992-06-18 2024-10-11 02:16:44 +8205 8205 8206 820.5 1641 8205 1992-06-19 2024-10-11 02:16:45.000 1992-06-19 2024-10-11 02:16:45 +8206 8206 8207 820.6 1641.2 8206 1992-06-20 2024-10-11 02:16:46.000 1992-06-20 2024-10-11 02:16:46 +8207 8207 8208 820.7 1641.4 8207 1992-06-21 2024-10-11 02:16:47.000 1992-06-21 2024-10-11 02:16:47 +8208 8208 8209 820.8 1641.6000000000001 8208 1992-06-22 2024-10-11 02:16:48.000 1992-06-22 2024-10-11 02:16:48 +8209 8209 8210 820.9 1641.8000000000002 8209 1992-06-23 2024-10-11 02:16:49.000 1992-06-23 2024-10-11 02:16:49 +8210 8210 8211 821 1642 8210 1992-06-24 2024-10-11 02:16:50.000 1992-06-24 2024-10-11 02:16:50 +8211 8211 8212 821.1 1642.2 8211 1992-06-25 2024-10-11 02:16:51.000 1992-06-25 2024-10-11 02:16:51 +8212 8212 8213 821.2 1642.4 8212 1992-06-26 2024-10-11 02:16:52.000 1992-06-26 2024-10-11 02:16:52 +8213 8213 8214 821.3 1642.6000000000001 8213 1992-06-27 2024-10-11 02:16:53.000 1992-06-27 2024-10-11 02:16:53 +8214 8214 8215 821.4 1642.8000000000002 8214 1992-06-28 2024-10-11 02:16:54.000 1992-06-28 2024-10-11 02:16:54 +8215 8215 8216 821.5 1643 8215 1992-06-29 2024-10-11 02:16:55.000 1992-06-29 2024-10-11 02:16:55 +8216 8216 8217 821.6 1643.2 8216 1992-06-30 2024-10-11 02:16:56.000 1992-06-30 2024-10-11 02:16:56 +8217 8217 8218 821.7 1643.4 8217 1992-07-01 2024-10-11 02:16:57.000 1992-07-01 2024-10-11 02:16:57 +8218 8218 8219 821.8 1643.6000000000001 8218 1992-07-02 2024-10-11 02:16:58.000 1992-07-02 2024-10-11 02:16:58 +8219 8219 8220 821.9 1643.8000000000002 8219 1992-07-03 2024-10-11 02:16:59.000 1992-07-03 2024-10-11 02:16:59 +8220 8220 8221 822 1644 8220 1992-07-04 2024-10-11 02:17:00.000 1992-07-04 2024-10-11 02:17:00 +8221 8221 8222 822.1 1644.2 8221 1992-07-05 2024-10-11 02:17:01.000 1992-07-05 2024-10-11 02:17:01 +8222 8222 8223 822.2 1644.4 8222 1992-07-06 2024-10-11 02:17:02.000 1992-07-06 2024-10-11 02:17:02 +8223 8223 8224 822.3 1644.6000000000001 8223 1992-07-07 2024-10-11 02:17:03.000 1992-07-07 2024-10-11 02:17:03 +8224 8224 8225 822.4 1644.8000000000002 8224 1992-07-08 2024-10-11 02:17:04.000 1992-07-08 2024-10-11 02:17:04 +8225 8225 8226 822.5 1645 8225 1992-07-09 2024-10-11 02:17:05.000 1992-07-09 2024-10-11 02:17:05 +8226 8226 8227 822.6 1645.2 8226 1992-07-10 2024-10-11 02:17:06.000 1992-07-10 2024-10-11 02:17:06 +8227 8227 8228 822.7 1645.4 8227 1992-07-11 2024-10-11 02:17:07.000 1992-07-11 2024-10-11 02:17:07 +8228 8228 8229 822.8 1645.6000000000001 8228 1992-07-12 2024-10-11 02:17:08.000 1992-07-12 2024-10-11 02:17:08 +8229 8229 8230 822.9 1645.8000000000002 8229 1992-07-13 2024-10-11 02:17:09.000 1992-07-13 2024-10-11 02:17:09 +8230 8230 8231 823 1646 8230 1992-07-14 2024-10-11 02:17:10.000 1992-07-14 2024-10-11 02:17:10 +8231 8231 8232 823.1 1646.2 8231 1992-07-15 2024-10-11 02:17:11.000 1992-07-15 2024-10-11 02:17:11 +8232 8232 8233 823.2 1646.4 8232 1992-07-16 2024-10-11 02:17:12.000 1992-07-16 2024-10-11 02:17:12 +8233 8233 8234 823.3 1646.6000000000001 8233 1992-07-17 2024-10-11 02:17:13.000 1992-07-17 2024-10-11 02:17:13 +8234 8234 8235 823.4 1646.8000000000002 8234 1992-07-18 2024-10-11 02:17:14.000 1992-07-18 2024-10-11 02:17:14 +8235 8235 8236 823.5 1647 8235 1992-07-19 2024-10-11 02:17:15.000 1992-07-19 2024-10-11 02:17:15 +8236 8236 8237 823.6 1647.2 8236 1992-07-20 2024-10-11 02:17:16.000 1992-07-20 2024-10-11 02:17:16 +8237 8237 8238 823.7 1647.4 8237 1992-07-21 2024-10-11 02:17:17.000 1992-07-21 2024-10-11 02:17:17 +8238 8238 8239 823.8 1647.6000000000001 8238 1992-07-22 2024-10-11 02:17:18.000 1992-07-22 2024-10-11 02:17:18 +8239 8239 8240 823.9 1647.8000000000002 8239 1992-07-23 2024-10-11 02:17:19.000 1992-07-23 2024-10-11 02:17:19 +8240 8240 8241 824 1648 8240 1992-07-24 2024-10-11 02:17:20.000 1992-07-24 2024-10-11 02:17:20 +8241 8241 8242 824.1 1648.2 8241 1992-07-25 2024-10-11 02:17:21.000 1992-07-25 2024-10-11 02:17:21 +8242 8242 8243 824.2 1648.4 8242 1992-07-26 2024-10-11 02:17:22.000 1992-07-26 2024-10-11 02:17:22 +8243 8243 8244 824.3 1648.6000000000001 8243 1992-07-27 2024-10-11 02:17:23.000 1992-07-27 2024-10-11 02:17:23 +8244 8244 8245 824.4 1648.8000000000002 8244 1992-07-28 2024-10-11 02:17:24.000 1992-07-28 2024-10-11 02:17:24 +8245 8245 8246 824.5 1649 8245 1992-07-29 2024-10-11 02:17:25.000 1992-07-29 2024-10-11 02:17:25 +8246 8246 8247 824.6 1649.2 8246 1992-07-30 2024-10-11 02:17:26.000 1992-07-30 2024-10-11 02:17:26 +8247 8247 8248 824.7 1649.4 8247 1992-07-31 2024-10-11 02:17:27.000 1992-07-31 2024-10-11 02:17:27 +8248 8248 8249 824.8 1649.6000000000001 8248 1992-08-01 2024-10-11 02:17:28.000 1992-08-01 2024-10-11 02:17:28 +8249 8249 8250 824.9 1649.8000000000002 8249 1992-08-02 2024-10-11 02:17:29.000 1992-08-02 2024-10-11 02:17:29 +8250 8250 8251 825 1650 8250 1992-08-03 2024-10-11 02:17:30.000 1992-08-03 2024-10-11 02:17:30 +8251 8251 8252 825.1 1650.2 8251 1992-08-04 2024-10-11 02:17:31.000 1992-08-04 2024-10-11 02:17:31 +8252 8252 8253 825.2 1650.4 8252 1992-08-05 2024-10-11 02:17:32.000 1992-08-05 2024-10-11 02:17:32 +8253 8253 8254 825.3 1650.6000000000001 8253 1992-08-06 2024-10-11 02:17:33.000 1992-08-06 2024-10-11 02:17:33 +8254 8254 8255 825.4 1650.8000000000002 8254 1992-08-07 2024-10-11 02:17:34.000 1992-08-07 2024-10-11 02:17:34 +8255 8255 8256 825.5 1651 8255 1992-08-08 2024-10-11 02:17:35.000 1992-08-08 2024-10-11 02:17:35 +8256 8256 8257 825.6 1651.2 8256 1992-08-09 2024-10-11 02:17:36.000 1992-08-09 2024-10-11 02:17:36 +8257 8257 8258 825.7 1651.4 8257 1992-08-10 2024-10-11 02:17:37.000 1992-08-10 2024-10-11 02:17:37 +8258 8258 8259 825.8 1651.6000000000001 8258 1992-08-11 2024-10-11 02:17:38.000 1992-08-11 2024-10-11 02:17:38 +8259 8259 8260 825.9 1651.8000000000002 8259 1992-08-12 2024-10-11 02:17:39.000 1992-08-12 2024-10-11 02:17:39 +8260 8260 8261 826 1652 8260 1992-08-13 2024-10-11 02:17:40.000 1992-08-13 2024-10-11 02:17:40 +8261 8261 8262 826.1 1652.2 8261 1992-08-14 2024-10-11 02:17:41.000 1992-08-14 2024-10-11 02:17:41 +8262 8262 8263 826.2 1652.4 8262 1992-08-15 2024-10-11 02:17:42.000 1992-08-15 2024-10-11 02:17:42 +8263 8263 8264 826.3 1652.6000000000001 8263 1992-08-16 2024-10-11 02:17:43.000 1992-08-16 2024-10-11 02:17:43 +8264 8264 8265 826.4 1652.8000000000002 8264 1992-08-17 2024-10-11 02:17:44.000 1992-08-17 2024-10-11 02:17:44 +8265 8265 8266 826.5 1653 8265 1992-08-18 2024-10-11 02:17:45.000 1992-08-18 2024-10-11 02:17:45 +8266 8266 8267 826.6 1653.2 8266 1992-08-19 2024-10-11 02:17:46.000 1992-08-19 2024-10-11 02:17:46 +8267 8267 8268 826.7 1653.4 8267 1992-08-20 2024-10-11 02:17:47.000 1992-08-20 2024-10-11 02:17:47 +8268 8268 8269 826.8 1653.6000000000001 8268 1992-08-21 2024-10-11 02:17:48.000 1992-08-21 2024-10-11 02:17:48 +8269 8269 8270 826.9 1653.8000000000002 8269 1992-08-22 2024-10-11 02:17:49.000 1992-08-22 2024-10-11 02:17:49 +8270 8270 8271 827 1654 8270 1992-08-23 2024-10-11 02:17:50.000 1992-08-23 2024-10-11 02:17:50 +8271 8271 8272 827.1 1654.2 8271 1992-08-24 2024-10-11 02:17:51.000 1992-08-24 2024-10-11 02:17:51 +8272 8272 8273 827.2 1654.4 8272 1992-08-25 2024-10-11 02:17:52.000 1992-08-25 2024-10-11 02:17:52 +8273 8273 8274 827.3 1654.6000000000001 8273 1992-08-26 2024-10-11 02:17:53.000 1992-08-26 2024-10-11 02:17:53 +8274 8274 8275 827.4 1654.8000000000002 8274 1992-08-27 2024-10-11 02:17:54.000 1992-08-27 2024-10-11 02:17:54 +8275 8275 8276 827.5 1655 8275 1992-08-28 2024-10-11 02:17:55.000 1992-08-28 2024-10-11 02:17:55 +8276 8276 8277 827.6 1655.2 8276 1992-08-29 2024-10-11 02:17:56.000 1992-08-29 2024-10-11 02:17:56 +8277 8277 8278 827.7 1655.4 8277 1992-08-30 2024-10-11 02:17:57.000 1992-08-30 2024-10-11 02:17:57 +8278 8278 8279 827.8 1655.6000000000001 8278 1992-08-31 2024-10-11 02:17:58.000 1992-08-31 2024-10-11 02:17:58 +8279 8279 8280 827.9 1655.8000000000002 8279 1992-09-01 2024-10-11 02:17:59.000 1992-09-01 2024-10-11 02:17:59 +8280 8280 8281 828 1656 8280 1992-09-02 2024-10-11 02:18:00.000 1992-09-02 2024-10-11 02:18:00 +8281 8281 8282 828.1 1656.2 8281 1992-09-03 2024-10-11 02:18:01.000 1992-09-03 2024-10-11 02:18:01 +8282 8282 8283 828.2 1656.4 8282 1992-09-04 2024-10-11 02:18:02.000 1992-09-04 2024-10-11 02:18:02 +8283 8283 8284 828.3 1656.6000000000001 8283 1992-09-05 2024-10-11 02:18:03.000 1992-09-05 2024-10-11 02:18:03 +8284 8284 8285 828.4 1656.8000000000002 8284 1992-09-06 2024-10-11 02:18:04.000 1992-09-06 2024-10-11 02:18:04 +8285 8285 8286 828.5 1657 8285 1992-09-07 2024-10-11 02:18:05.000 1992-09-07 2024-10-11 02:18:05 +8286 8286 8287 828.6 1657.2 8286 1992-09-08 2024-10-11 02:18:06.000 1992-09-08 2024-10-11 02:18:06 +8287 8287 8288 828.7 1657.4 8287 1992-09-09 2024-10-11 02:18:07.000 1992-09-09 2024-10-11 02:18:07 +8288 8288 8289 828.8 1657.6000000000001 8288 1992-09-10 2024-10-11 02:18:08.000 1992-09-10 2024-10-11 02:18:08 +8289 8289 8290 828.9 1657.8000000000002 8289 1992-09-11 2024-10-11 02:18:09.000 1992-09-11 2024-10-11 02:18:09 +8290 8290 8291 829 1658 8290 1992-09-12 2024-10-11 02:18:10.000 1992-09-12 2024-10-11 02:18:10 +8291 8291 8292 829.1 1658.2 8291 1992-09-13 2024-10-11 02:18:11.000 1992-09-13 2024-10-11 02:18:11 +8292 8292 8293 829.2 1658.4 8292 1992-09-14 2024-10-11 02:18:12.000 1992-09-14 2024-10-11 02:18:12 +8293 8293 8294 829.3 1658.6000000000001 8293 1992-09-15 2024-10-11 02:18:13.000 1992-09-15 2024-10-11 02:18:13 +8294 8294 8295 829.4 1658.8000000000002 8294 1992-09-16 2024-10-11 02:18:14.000 1992-09-16 2024-10-11 02:18:14 +8295 8295 8296 829.5 1659 8295 1992-09-17 2024-10-11 02:18:15.000 1992-09-17 2024-10-11 02:18:15 +8296 8296 8297 829.6 1659.2 8296 1992-09-18 2024-10-11 02:18:16.000 1992-09-18 2024-10-11 02:18:16 +8297 8297 8298 829.7 1659.4 8297 1992-09-19 2024-10-11 02:18:17.000 1992-09-19 2024-10-11 02:18:17 +8298 8298 8299 829.8 1659.6000000000001 8298 1992-09-20 2024-10-11 02:18:18.000 1992-09-20 2024-10-11 02:18:18 +8299 8299 8300 829.9 1659.8000000000002 8299 1992-09-21 2024-10-11 02:18:19.000 1992-09-21 2024-10-11 02:18:19 +8300 8300 8301 830 1660 8300 1992-09-22 2024-10-11 02:18:20.000 1992-09-22 2024-10-11 02:18:20 +8301 8301 8302 830.1 1660.2 8301 1992-09-23 2024-10-11 02:18:21.000 1992-09-23 2024-10-11 02:18:21 +8302 8302 8303 830.2 1660.4 8302 1992-09-24 2024-10-11 02:18:22.000 1992-09-24 2024-10-11 02:18:22 +8303 8303 8304 830.3 1660.6000000000001 8303 1992-09-25 2024-10-11 02:18:23.000 1992-09-25 2024-10-11 02:18:23 +8304 8304 8305 830.4 1660.8000000000002 8304 1992-09-26 2024-10-11 02:18:24.000 1992-09-26 2024-10-11 02:18:24 +8305 8305 8306 830.5 1661 8305 1992-09-27 2024-10-11 02:18:25.000 1992-09-27 2024-10-11 02:18:25 +8306 8306 8307 830.6 1661.2 8306 1992-09-28 2024-10-11 02:18:26.000 1992-09-28 2024-10-11 02:18:26 +8307 8307 8308 830.7 1661.4 8307 1992-09-29 2024-10-11 02:18:27.000 1992-09-29 2024-10-11 02:18:27 +8308 8308 8309 830.8 1661.6000000000001 8308 1992-09-30 2024-10-11 02:18:28.000 1992-09-30 2024-10-11 02:18:28 +8309 8309 8310 830.9 1661.8000000000002 8309 1992-10-01 2024-10-11 02:18:29.000 1992-10-01 2024-10-11 02:18:29 +8310 8310 8311 831 1662 8310 1992-10-02 2024-10-11 02:18:30.000 1992-10-02 2024-10-11 02:18:30 +8311 8311 8312 831.1 1662.2 8311 1992-10-03 2024-10-11 02:18:31.000 1992-10-03 2024-10-11 02:18:31 +8312 8312 8313 831.2 1662.4 8312 1992-10-04 2024-10-11 02:18:32.000 1992-10-04 2024-10-11 02:18:32 +8313 8313 8314 831.3 1662.6000000000001 8313 1992-10-05 2024-10-11 02:18:33.000 1992-10-05 2024-10-11 02:18:33 +8314 8314 8315 831.4 1662.8000000000002 8314 1992-10-06 2024-10-11 02:18:34.000 1992-10-06 2024-10-11 02:18:34 +8315 8315 8316 831.5 1663 8315 1992-10-07 2024-10-11 02:18:35.000 1992-10-07 2024-10-11 02:18:35 +8316 8316 8317 831.6 1663.2 8316 1992-10-08 2024-10-11 02:18:36.000 1992-10-08 2024-10-11 02:18:36 +8317 8317 8318 831.7 1663.4 8317 1992-10-09 2024-10-11 02:18:37.000 1992-10-09 2024-10-11 02:18:37 +8318 8318 8319 831.8 1663.6000000000001 8318 1992-10-10 2024-10-11 02:18:38.000 1992-10-10 2024-10-11 02:18:38 +8319 8319 8320 831.9 1663.8000000000002 8319 1992-10-11 2024-10-11 02:18:39.000 1992-10-11 2024-10-11 02:18:39 +8320 8320 8321 832 1664 8320 1992-10-12 2024-10-11 02:18:40.000 1992-10-12 2024-10-11 02:18:40 +8321 8321 8322 832.1 1664.2 8321 1992-10-13 2024-10-11 02:18:41.000 1992-10-13 2024-10-11 02:18:41 +8322 8322 8323 832.2 1664.4 8322 1992-10-14 2024-10-11 02:18:42.000 1992-10-14 2024-10-11 02:18:42 +8323 8323 8324 832.3 1664.6000000000001 8323 1992-10-15 2024-10-11 02:18:43.000 1992-10-15 2024-10-11 02:18:43 +8324 8324 8325 832.4 1664.8000000000002 8324 1992-10-16 2024-10-11 02:18:44.000 1992-10-16 2024-10-11 02:18:44 +8325 8325 8326 832.5 1665 8325 1992-10-17 2024-10-11 02:18:45.000 1992-10-17 2024-10-11 02:18:45 +8326 8326 8327 832.6 1665.2 8326 1992-10-18 2024-10-11 02:18:46.000 1992-10-18 2024-10-11 02:18:46 +8327 8327 8328 832.7 1665.4 8327 1992-10-19 2024-10-11 02:18:47.000 1992-10-19 2024-10-11 02:18:47 +8328 8328 8329 832.8 1665.6000000000001 8328 1992-10-20 2024-10-11 02:18:48.000 1992-10-20 2024-10-11 02:18:48 +8329 8329 8330 832.9 1665.8000000000002 8329 1992-10-21 2024-10-11 02:18:49.000 1992-10-21 2024-10-11 02:18:49 +8330 8330 8331 833 1666 8330 1992-10-22 2024-10-11 02:18:50.000 1992-10-22 2024-10-11 02:18:50 +8331 8331 8332 833.1 1666.2 8331 1992-10-23 2024-10-11 02:18:51.000 1992-10-23 2024-10-11 02:18:51 +8332 8332 8333 833.2 1666.4 8332 1992-10-24 2024-10-11 02:18:52.000 1992-10-24 2024-10-11 02:18:52 +8333 8333 8334 833.3 1666.6000000000001 8333 1992-10-25 2024-10-11 02:18:53.000 1992-10-25 2024-10-11 02:18:53 +8334 8334 8335 833.4 1666.8000000000002 8334 1992-10-26 2024-10-11 02:18:54.000 1992-10-26 2024-10-11 02:18:54 +8335 8335 8336 833.5 1667 8335 1992-10-27 2024-10-11 02:18:55.000 1992-10-27 2024-10-11 02:18:55 +8336 8336 8337 833.6 1667.2 8336 1992-10-28 2024-10-11 02:18:56.000 1992-10-28 2024-10-11 02:18:56 +8337 8337 8338 833.7 1667.4 8337 1992-10-29 2024-10-11 02:18:57.000 1992-10-29 2024-10-11 02:18:57 +8338 8338 8339 833.8 1667.6000000000001 8338 1992-10-30 2024-10-11 02:18:58.000 1992-10-30 2024-10-11 02:18:58 +8339 8339 8340 833.9 1667.8000000000002 8339 1992-10-31 2024-10-11 02:18:59.000 1992-10-31 2024-10-11 02:18:59 +8340 8340 8341 834 1668 8340 1992-11-01 2024-10-11 02:19:00.000 1992-11-01 2024-10-11 02:19:00 +8341 8341 8342 834.1 1668.2 8341 1992-11-02 2024-10-11 02:19:01.000 1992-11-02 2024-10-11 02:19:01 +8342 8342 8343 834.2 1668.4 8342 1992-11-03 2024-10-11 02:19:02.000 1992-11-03 2024-10-11 02:19:02 +8343 8343 8344 834.3 1668.6000000000001 8343 1992-11-04 2024-10-11 02:19:03.000 1992-11-04 2024-10-11 02:19:03 +8344 8344 8345 834.4 1668.8000000000002 8344 1992-11-05 2024-10-11 02:19:04.000 1992-11-05 2024-10-11 02:19:04 +8345 8345 8346 834.5 1669 8345 1992-11-06 2024-10-11 02:19:05.000 1992-11-06 2024-10-11 02:19:05 +8346 8346 8347 834.6 1669.2 8346 1992-11-07 2024-10-11 02:19:06.000 1992-11-07 2024-10-11 02:19:06 +8347 8347 8348 834.7 1669.4 8347 1992-11-08 2024-10-11 02:19:07.000 1992-11-08 2024-10-11 02:19:07 +8348 8348 8349 834.8 1669.6000000000001 8348 1992-11-09 2024-10-11 02:19:08.000 1992-11-09 2024-10-11 02:19:08 +8349 8349 8350 834.9 1669.8000000000002 8349 1992-11-10 2024-10-11 02:19:09.000 1992-11-10 2024-10-11 02:19:09 +8350 8350 8351 835 1670 8350 1992-11-11 2024-10-11 02:19:10.000 1992-11-11 2024-10-11 02:19:10 +8351 8351 8352 835.1 1670.2 8351 1992-11-12 2024-10-11 02:19:11.000 1992-11-12 2024-10-11 02:19:11 +8352 8352 8353 835.2 1670.4 8352 1992-11-13 2024-10-11 02:19:12.000 1992-11-13 2024-10-11 02:19:12 +8353 8353 8354 835.3 1670.6000000000001 8353 1992-11-14 2024-10-11 02:19:13.000 1992-11-14 2024-10-11 02:19:13 +8354 8354 8355 835.4 1670.8000000000002 8354 1992-11-15 2024-10-11 02:19:14.000 1992-11-15 2024-10-11 02:19:14 +8355 8355 8356 835.5 1671 8355 1992-11-16 2024-10-11 02:19:15.000 1992-11-16 2024-10-11 02:19:15 +8356 8356 8357 835.6 1671.2 8356 1992-11-17 2024-10-11 02:19:16.000 1992-11-17 2024-10-11 02:19:16 +8357 8357 8358 835.7 1671.4 8357 1992-11-18 2024-10-11 02:19:17.000 1992-11-18 2024-10-11 02:19:17 +8358 8358 8359 835.8 1671.6000000000001 8358 1992-11-19 2024-10-11 02:19:18.000 1992-11-19 2024-10-11 02:19:18 +8359 8359 8360 835.9 1671.8000000000002 8359 1992-11-20 2024-10-11 02:19:19.000 1992-11-20 2024-10-11 02:19:19 +8360 8360 8361 836 1672 8360 1992-11-21 2024-10-11 02:19:20.000 1992-11-21 2024-10-11 02:19:20 +8361 8361 8362 836.1 1672.2 8361 1992-11-22 2024-10-11 02:19:21.000 1992-11-22 2024-10-11 02:19:21 +8362 8362 8363 836.2 1672.4 8362 1992-11-23 2024-10-11 02:19:22.000 1992-11-23 2024-10-11 02:19:22 +8363 8363 8364 836.3 1672.6000000000001 8363 1992-11-24 2024-10-11 02:19:23.000 1992-11-24 2024-10-11 02:19:23 +8364 8364 8365 836.4 1672.8000000000002 8364 1992-11-25 2024-10-11 02:19:24.000 1992-11-25 2024-10-11 02:19:24 +8365 8365 8366 836.5 1673 8365 1992-11-26 2024-10-11 02:19:25.000 1992-11-26 2024-10-11 02:19:25 +8366 8366 8367 836.6 1673.2 8366 1992-11-27 2024-10-11 02:19:26.000 1992-11-27 2024-10-11 02:19:26 +8367 8367 8368 836.7 1673.4 8367 1992-11-28 2024-10-11 02:19:27.000 1992-11-28 2024-10-11 02:19:27 +8368 8368 8369 836.8 1673.6000000000001 8368 1992-11-29 2024-10-11 02:19:28.000 1992-11-29 2024-10-11 02:19:28 +8369 8369 8370 836.9 1673.8000000000002 8369 1992-11-30 2024-10-11 02:19:29.000 1992-11-30 2024-10-11 02:19:29 +8370 8370 8371 837 1674 8370 1992-12-01 2024-10-11 02:19:30.000 1992-12-01 2024-10-11 02:19:30 +8371 8371 8372 837.1 1674.2 8371 1992-12-02 2024-10-11 02:19:31.000 1992-12-02 2024-10-11 02:19:31 +8372 8372 8373 837.2 1674.4 8372 1992-12-03 2024-10-11 02:19:32.000 1992-12-03 2024-10-11 02:19:32 +8373 8373 8374 837.3 1674.6000000000001 8373 1992-12-04 2024-10-11 02:19:33.000 1992-12-04 2024-10-11 02:19:33 +8374 8374 8375 837.4 1674.8000000000002 8374 1992-12-05 2024-10-11 02:19:34.000 1992-12-05 2024-10-11 02:19:34 +8375 8375 8376 837.5 1675 8375 1992-12-06 2024-10-11 02:19:35.000 1992-12-06 2024-10-11 02:19:35 +8376 8376 8377 837.6 1675.2 8376 1992-12-07 2024-10-11 02:19:36.000 1992-12-07 2024-10-11 02:19:36 +8377 8377 8378 837.7 1675.4 8377 1992-12-08 2024-10-11 02:19:37.000 1992-12-08 2024-10-11 02:19:37 +8378 8378 8379 837.8 1675.6000000000001 8378 1992-12-09 2024-10-11 02:19:38.000 1992-12-09 2024-10-11 02:19:38 +8379 8379 8380 837.9 1675.8000000000002 8379 1992-12-10 2024-10-11 02:19:39.000 1992-12-10 2024-10-11 02:19:39 +8380 8380 8381 838 1676 8380 1992-12-11 2024-10-11 02:19:40.000 1992-12-11 2024-10-11 02:19:40 +8381 8381 8382 838.1 1676.2 8381 1992-12-12 2024-10-11 02:19:41.000 1992-12-12 2024-10-11 02:19:41 +8382 8382 8383 838.2 1676.4 8382 1992-12-13 2024-10-11 02:19:42.000 1992-12-13 2024-10-11 02:19:42 +8383 8383 8384 838.3 1676.6000000000001 8383 1992-12-14 2024-10-11 02:19:43.000 1992-12-14 2024-10-11 02:19:43 +8384 8384 8385 838.4 1676.8000000000002 8384 1992-12-15 2024-10-11 02:19:44.000 1992-12-15 2024-10-11 02:19:44 +8385 8385 8386 838.5 1677 8385 1992-12-16 2024-10-11 02:19:45.000 1992-12-16 2024-10-11 02:19:45 +8386 8386 8387 838.6 1677.2 8386 1992-12-17 2024-10-11 02:19:46.000 1992-12-17 2024-10-11 02:19:46 +8387 8387 8388 838.7 1677.4 8387 1992-12-18 2024-10-11 02:19:47.000 1992-12-18 2024-10-11 02:19:47 +8388 8388 8389 838.8 1677.6000000000001 8388 1992-12-19 2024-10-11 02:19:48.000 1992-12-19 2024-10-11 02:19:48 +8389 8389 8390 838.9 1677.8000000000002 8389 1992-12-20 2024-10-11 02:19:49.000 1992-12-20 2024-10-11 02:19:49 +8390 8390 8391 839 1678 8390 1992-12-21 2024-10-11 02:19:50.000 1992-12-21 2024-10-11 02:19:50 +8391 8391 8392 839.1 1678.2 8391 1992-12-22 2024-10-11 02:19:51.000 1992-12-22 2024-10-11 02:19:51 +8392 8392 8393 839.2 1678.4 8392 1992-12-23 2024-10-11 02:19:52.000 1992-12-23 2024-10-11 02:19:52 +8393 8393 8394 839.3 1678.6000000000001 8393 1992-12-24 2024-10-11 02:19:53.000 1992-12-24 2024-10-11 02:19:53 +8394 8394 8395 839.4 1678.8000000000002 8394 1992-12-25 2024-10-11 02:19:54.000 1992-12-25 2024-10-11 02:19:54 +8395 8395 8396 839.5 1679 8395 1992-12-26 2024-10-11 02:19:55.000 1992-12-26 2024-10-11 02:19:55 +8396 8396 8397 839.6 1679.2 8396 1992-12-27 2024-10-11 02:19:56.000 1992-12-27 2024-10-11 02:19:56 +8397 8397 8398 839.7 1679.4 8397 1992-12-28 2024-10-11 02:19:57.000 1992-12-28 2024-10-11 02:19:57 +8398 8398 8399 839.8 1679.6000000000001 8398 1992-12-29 2024-10-11 02:19:58.000 1992-12-29 2024-10-11 02:19:58 +8399 8399 8400 839.9 1679.8000000000002 8399 1992-12-30 2024-10-11 02:19:59.000 1992-12-30 2024-10-11 02:19:59 +8400 8400 8401 840 1680 8400 1992-12-31 2024-10-11 02:20:00.000 1992-12-31 2024-10-11 02:20:00 +8401 8401 8402 840.1 1680.2 8401 1993-01-01 2024-10-11 02:20:01.000 1993-01-01 2024-10-11 02:20:01 +8402 8402 8403 840.2 1680.4 8402 1993-01-02 2024-10-11 02:20:02.000 1993-01-02 2024-10-11 02:20:02 +8403 8403 8404 840.3 1680.6000000000001 8403 1993-01-03 2024-10-11 02:20:03.000 1993-01-03 2024-10-11 02:20:03 +8404 8404 8405 840.4 1680.8000000000002 8404 1993-01-04 2024-10-11 02:20:04.000 1993-01-04 2024-10-11 02:20:04 +8405 8405 8406 840.5 1681 8405 1993-01-05 2024-10-11 02:20:05.000 1993-01-05 2024-10-11 02:20:05 +8406 8406 8407 840.6 1681.2 8406 1993-01-06 2024-10-11 02:20:06.000 1993-01-06 2024-10-11 02:20:06 +8407 8407 8408 840.7 1681.4 8407 1993-01-07 2024-10-11 02:20:07.000 1993-01-07 2024-10-11 02:20:07 +8408 8408 8409 840.8 1681.6000000000001 8408 1993-01-08 2024-10-11 02:20:08.000 1993-01-08 2024-10-11 02:20:08 +8409 8409 8410 840.9 1681.8000000000002 8409 1993-01-09 2024-10-11 02:20:09.000 1993-01-09 2024-10-11 02:20:09 +8410 8410 8411 841 1682 8410 1993-01-10 2024-10-11 02:20:10.000 1993-01-10 2024-10-11 02:20:10 +8411 8411 8412 841.1 1682.2 8411 1993-01-11 2024-10-11 02:20:11.000 1993-01-11 2024-10-11 02:20:11 +8412 8412 8413 841.2 1682.4 8412 1993-01-12 2024-10-11 02:20:12.000 1993-01-12 2024-10-11 02:20:12 +8413 8413 8414 841.3 1682.6000000000001 8413 1993-01-13 2024-10-11 02:20:13.000 1993-01-13 2024-10-11 02:20:13 +8414 8414 8415 841.4 1682.8000000000002 8414 1993-01-14 2024-10-11 02:20:14.000 1993-01-14 2024-10-11 02:20:14 +8415 8415 8416 841.5 1683 8415 1993-01-15 2024-10-11 02:20:15.000 1993-01-15 2024-10-11 02:20:15 +8416 8416 8417 841.6 1683.2 8416 1993-01-16 2024-10-11 02:20:16.000 1993-01-16 2024-10-11 02:20:16 +8417 8417 8418 841.7 1683.4 8417 1993-01-17 2024-10-11 02:20:17.000 1993-01-17 2024-10-11 02:20:17 +8418 8418 8419 841.8 1683.6000000000001 8418 1993-01-18 2024-10-11 02:20:18.000 1993-01-18 2024-10-11 02:20:18 +8419 8419 8420 841.9 1683.8000000000002 8419 1993-01-19 2024-10-11 02:20:19.000 1993-01-19 2024-10-11 02:20:19 +8420 8420 8421 842 1684 8420 1993-01-20 2024-10-11 02:20:20.000 1993-01-20 2024-10-11 02:20:20 +8421 8421 8422 842.1 1684.2 8421 1993-01-21 2024-10-11 02:20:21.000 1993-01-21 2024-10-11 02:20:21 +8422 8422 8423 842.2 1684.4 8422 1993-01-22 2024-10-11 02:20:22.000 1993-01-22 2024-10-11 02:20:22 +8423 8423 8424 842.3 1684.6000000000001 8423 1993-01-23 2024-10-11 02:20:23.000 1993-01-23 2024-10-11 02:20:23 +8424 8424 8425 842.4 1684.8000000000002 8424 1993-01-24 2024-10-11 02:20:24.000 1993-01-24 2024-10-11 02:20:24 +8425 8425 8426 842.5 1685 8425 1993-01-25 2024-10-11 02:20:25.000 1993-01-25 2024-10-11 02:20:25 +8426 8426 8427 842.6 1685.2 8426 1993-01-26 2024-10-11 02:20:26.000 1993-01-26 2024-10-11 02:20:26 +8427 8427 8428 842.7 1685.4 8427 1993-01-27 2024-10-11 02:20:27.000 1993-01-27 2024-10-11 02:20:27 +8428 8428 8429 842.8 1685.6000000000001 8428 1993-01-28 2024-10-11 02:20:28.000 1993-01-28 2024-10-11 02:20:28 +8429 8429 8430 842.9 1685.8000000000002 8429 1993-01-29 2024-10-11 02:20:29.000 1993-01-29 2024-10-11 02:20:29 +8430 8430 8431 843 1686 8430 1993-01-30 2024-10-11 02:20:30.000 1993-01-30 2024-10-11 02:20:30 +8431 8431 8432 843.1 1686.2 8431 1993-01-31 2024-10-11 02:20:31.000 1993-01-31 2024-10-11 02:20:31 +8432 8432 8433 843.2 1686.4 8432 1993-02-01 2024-10-11 02:20:32.000 1993-02-01 2024-10-11 02:20:32 +8433 8433 8434 843.3 1686.6000000000001 8433 1993-02-02 2024-10-11 02:20:33.000 1993-02-02 2024-10-11 02:20:33 +8434 8434 8435 843.4 1686.8000000000002 8434 1993-02-03 2024-10-11 02:20:34.000 1993-02-03 2024-10-11 02:20:34 +8435 8435 8436 843.5 1687 8435 1993-02-04 2024-10-11 02:20:35.000 1993-02-04 2024-10-11 02:20:35 +8436 8436 8437 843.6 1687.2 8436 1993-02-05 2024-10-11 02:20:36.000 1993-02-05 2024-10-11 02:20:36 +8437 8437 8438 843.7 1687.4 8437 1993-02-06 2024-10-11 02:20:37.000 1993-02-06 2024-10-11 02:20:37 +8438 8438 8439 843.8 1687.6000000000001 8438 1993-02-07 2024-10-11 02:20:38.000 1993-02-07 2024-10-11 02:20:38 +8439 8439 8440 843.9 1687.8000000000002 8439 1993-02-08 2024-10-11 02:20:39.000 1993-02-08 2024-10-11 02:20:39 +8440 8440 8441 844 1688 8440 1993-02-09 2024-10-11 02:20:40.000 1993-02-09 2024-10-11 02:20:40 +8441 8441 8442 844.1 1688.2 8441 1993-02-10 2024-10-11 02:20:41.000 1993-02-10 2024-10-11 02:20:41 +8442 8442 8443 844.2 1688.4 8442 1993-02-11 2024-10-11 02:20:42.000 1993-02-11 2024-10-11 02:20:42 +8443 8443 8444 844.3 1688.6000000000001 8443 1993-02-12 2024-10-11 02:20:43.000 1993-02-12 2024-10-11 02:20:43 +8444 8444 8445 844.4 1688.8000000000002 8444 1993-02-13 2024-10-11 02:20:44.000 1993-02-13 2024-10-11 02:20:44 +8445 8445 8446 844.5 1689 8445 1993-02-14 2024-10-11 02:20:45.000 1993-02-14 2024-10-11 02:20:45 +8446 8446 8447 844.6 1689.2 8446 1993-02-15 2024-10-11 02:20:46.000 1993-02-15 2024-10-11 02:20:46 +8447 8447 8448 844.7 1689.4 8447 1993-02-16 2024-10-11 02:20:47.000 1993-02-16 2024-10-11 02:20:47 +8448 8448 8449 844.8 1689.6000000000001 8448 1993-02-17 2024-10-11 02:20:48.000 1993-02-17 2024-10-11 02:20:48 +8449 8449 8450 844.9 1689.8000000000002 8449 1993-02-18 2024-10-11 02:20:49.000 1993-02-18 2024-10-11 02:20:49 +8450 8450 8451 845 1690 8450 1993-02-19 2024-10-11 02:20:50.000 1993-02-19 2024-10-11 02:20:50 +8451 8451 8452 845.1 1690.2 8451 1993-02-20 2024-10-11 02:20:51.000 1993-02-20 2024-10-11 02:20:51 +8452 8452 8453 845.2 1690.4 8452 1993-02-21 2024-10-11 02:20:52.000 1993-02-21 2024-10-11 02:20:52 +8453 8453 8454 845.3 1690.6000000000001 8453 1993-02-22 2024-10-11 02:20:53.000 1993-02-22 2024-10-11 02:20:53 +8454 8454 8455 845.4 1690.8000000000002 8454 1993-02-23 2024-10-11 02:20:54.000 1993-02-23 2024-10-11 02:20:54 +8455 8455 8456 845.5 1691 8455 1993-02-24 2024-10-11 02:20:55.000 1993-02-24 2024-10-11 02:20:55 +8456 8456 8457 845.6 1691.2 8456 1993-02-25 2024-10-11 02:20:56.000 1993-02-25 2024-10-11 02:20:56 +8457 8457 8458 845.7 1691.4 8457 1993-02-26 2024-10-11 02:20:57.000 1993-02-26 2024-10-11 02:20:57 +8458 8458 8459 845.8 1691.6000000000001 8458 1993-02-27 2024-10-11 02:20:58.000 1993-02-27 2024-10-11 02:20:58 +8459 8459 8460 845.9 1691.8000000000002 8459 1993-02-28 2024-10-11 02:20:59.000 1993-02-28 2024-10-11 02:20:59 +8460 8460 8461 846 1692 8460 1993-03-01 2024-10-11 02:21:00.000 1993-03-01 2024-10-11 02:21:00 +8461 8461 8462 846.1 1692.2 8461 1993-03-02 2024-10-11 02:21:01.000 1993-03-02 2024-10-11 02:21:01 +8462 8462 8463 846.2 1692.4 8462 1993-03-03 2024-10-11 02:21:02.000 1993-03-03 2024-10-11 02:21:02 +8463 8463 8464 846.3 1692.6000000000001 8463 1993-03-04 2024-10-11 02:21:03.000 1993-03-04 2024-10-11 02:21:03 +8464 8464 8465 846.4 1692.8000000000002 8464 1993-03-05 2024-10-11 02:21:04.000 1993-03-05 2024-10-11 02:21:04 +8465 8465 8466 846.5 1693 8465 1993-03-06 2024-10-11 02:21:05.000 1993-03-06 2024-10-11 02:21:05 +8466 8466 8467 846.6 1693.2 8466 1993-03-07 2024-10-11 02:21:06.000 1993-03-07 2024-10-11 02:21:06 +8467 8467 8468 846.7 1693.4 8467 1993-03-08 2024-10-11 02:21:07.000 1993-03-08 2024-10-11 02:21:07 +8468 8468 8469 846.8 1693.6000000000001 8468 1993-03-09 2024-10-11 02:21:08.000 1993-03-09 2024-10-11 02:21:08 +8469 8469 8470 846.9 1693.8000000000002 8469 1993-03-10 2024-10-11 02:21:09.000 1993-03-10 2024-10-11 02:21:09 +8470 8470 8471 847 1694 8470 1993-03-11 2024-10-11 02:21:10.000 1993-03-11 2024-10-11 02:21:10 +8471 8471 8472 847.1 1694.2 8471 1993-03-12 2024-10-11 02:21:11.000 1993-03-12 2024-10-11 02:21:11 +8472 8472 8473 847.2 1694.4 8472 1993-03-13 2024-10-11 02:21:12.000 1993-03-13 2024-10-11 02:21:12 +8473 8473 8474 847.3 1694.6000000000001 8473 1993-03-14 2024-10-11 02:21:13.000 1993-03-14 2024-10-11 02:21:13 +8474 8474 8475 847.4 1694.8000000000002 8474 1993-03-15 2024-10-11 02:21:14.000 1993-03-15 2024-10-11 02:21:14 +8475 8475 8476 847.5 1695 8475 1993-03-16 2024-10-11 02:21:15.000 1993-03-16 2024-10-11 02:21:15 +8476 8476 8477 847.6 1695.2 8476 1993-03-17 2024-10-11 02:21:16.000 1993-03-17 2024-10-11 02:21:16 +8477 8477 8478 847.7 1695.4 8477 1993-03-18 2024-10-11 02:21:17.000 1993-03-18 2024-10-11 02:21:17 +8478 8478 8479 847.8 1695.6000000000001 8478 1993-03-19 2024-10-11 02:21:18.000 1993-03-19 2024-10-11 02:21:18 +8479 8479 8480 847.9 1695.8000000000002 8479 1993-03-20 2024-10-11 02:21:19.000 1993-03-20 2024-10-11 02:21:19 +8480 8480 8481 848 1696 8480 1993-03-21 2024-10-11 02:21:20.000 1993-03-21 2024-10-11 02:21:20 +8481 8481 8482 848.1 1696.2 8481 1993-03-22 2024-10-11 02:21:21.000 1993-03-22 2024-10-11 02:21:21 +8482 8482 8483 848.2 1696.4 8482 1993-03-23 2024-10-11 02:21:22.000 1993-03-23 2024-10-11 02:21:22 +8483 8483 8484 848.3 1696.6000000000001 8483 1993-03-24 2024-10-11 02:21:23.000 1993-03-24 2024-10-11 02:21:23 +8484 8484 8485 848.4 1696.8000000000002 8484 1993-03-25 2024-10-11 02:21:24.000 1993-03-25 2024-10-11 02:21:24 +8485 8485 8486 848.5 1697 8485 1993-03-26 2024-10-11 02:21:25.000 1993-03-26 2024-10-11 02:21:25 +8486 8486 8487 848.6 1697.2 8486 1993-03-27 2024-10-11 02:21:26.000 1993-03-27 2024-10-11 02:21:26 +8487 8487 8488 848.7 1697.4 8487 1993-03-28 2024-10-11 02:21:27.000 1993-03-28 2024-10-11 02:21:27 +8488 8488 8489 848.8 1697.6000000000001 8488 1993-03-29 2024-10-11 02:21:28.000 1993-03-29 2024-10-11 02:21:28 +8489 8489 8490 848.9 1697.8000000000002 8489 1993-03-30 2024-10-11 02:21:29.000 1993-03-30 2024-10-11 02:21:29 +8490 8490 8491 849 1698 8490 1993-03-31 2024-10-11 02:21:30.000 1993-03-31 2024-10-11 02:21:30 +8491 8491 8492 849.1 1698.2 8491 1993-04-01 2024-10-11 02:21:31.000 1993-04-01 2024-10-11 02:21:31 +8492 8492 8493 849.2 1698.4 8492 1993-04-02 2024-10-11 02:21:32.000 1993-04-02 2024-10-11 02:21:32 +8493 8493 8494 849.3 1698.6000000000001 8493 1993-04-03 2024-10-11 02:21:33.000 1993-04-03 2024-10-11 02:21:33 +8494 8494 8495 849.4 1698.8000000000002 8494 1993-04-04 2024-10-11 02:21:34.000 1993-04-04 2024-10-11 02:21:34 +8495 8495 8496 849.5 1699 8495 1993-04-05 2024-10-11 02:21:35.000 1993-04-05 2024-10-11 02:21:35 +8496 8496 8497 849.6 1699.2 8496 1993-04-06 2024-10-11 02:21:36.000 1993-04-06 2024-10-11 02:21:36 +8497 8497 8498 849.7 1699.4 8497 1993-04-07 2024-10-11 02:21:37.000 1993-04-07 2024-10-11 02:21:37 +8498 8498 8499 849.8 1699.6000000000001 8498 1993-04-08 2024-10-11 02:21:38.000 1993-04-08 2024-10-11 02:21:38 +8499 8499 8500 849.9 1699.8000000000002 8499 1993-04-09 2024-10-11 02:21:39.000 1993-04-09 2024-10-11 02:21:39 +8500 8500 8501 850 1700 8500 1993-04-10 2024-10-11 02:21:40.000 1993-04-10 2024-10-11 02:21:40 +8501 8501 8502 850.1 1700.2 8501 1993-04-11 2024-10-11 02:21:41.000 1993-04-11 2024-10-11 02:21:41 +8502 8502 8503 850.2 1700.4 8502 1993-04-12 2024-10-11 02:21:42.000 1993-04-12 2024-10-11 02:21:42 +8503 8503 8504 850.3 1700.6000000000001 8503 1993-04-13 2024-10-11 02:21:43.000 1993-04-13 2024-10-11 02:21:43 +8504 8504 8505 850.4 1700.8000000000002 8504 1993-04-14 2024-10-11 02:21:44.000 1993-04-14 2024-10-11 02:21:44 +8505 8505 8506 850.5 1701 8505 1993-04-15 2024-10-11 02:21:45.000 1993-04-15 2024-10-11 02:21:45 +8506 8506 8507 850.6 1701.2 8506 1993-04-16 2024-10-11 02:21:46.000 1993-04-16 2024-10-11 02:21:46 +8507 8507 8508 850.7 1701.4 8507 1993-04-17 2024-10-11 02:21:47.000 1993-04-17 2024-10-11 02:21:47 +8508 8508 8509 850.8 1701.6000000000001 8508 1993-04-18 2024-10-11 02:21:48.000 1993-04-18 2024-10-11 02:21:48 +8509 8509 8510 850.9 1701.8000000000002 8509 1993-04-19 2024-10-11 02:21:49.000 1993-04-19 2024-10-11 02:21:49 +8510 8510 8511 851 1702 8510 1993-04-20 2024-10-11 02:21:50.000 1993-04-20 2024-10-11 02:21:50 +8511 8511 8512 851.1 1702.2 8511 1993-04-21 2024-10-11 02:21:51.000 1993-04-21 2024-10-11 02:21:51 +8512 8512 8513 851.2 1702.4 8512 1993-04-22 2024-10-11 02:21:52.000 1993-04-22 2024-10-11 02:21:52 +8513 8513 8514 851.3 1702.6000000000001 8513 1993-04-23 2024-10-11 02:21:53.000 1993-04-23 2024-10-11 02:21:53 +8514 8514 8515 851.4 1702.8000000000002 8514 1993-04-24 2024-10-11 02:21:54.000 1993-04-24 2024-10-11 02:21:54 +8515 8515 8516 851.5 1703 8515 1993-04-25 2024-10-11 02:21:55.000 1993-04-25 2024-10-11 02:21:55 +8516 8516 8517 851.6 1703.2 8516 1993-04-26 2024-10-11 02:21:56.000 1993-04-26 2024-10-11 02:21:56 +8517 8517 8518 851.7 1703.4 8517 1993-04-27 2024-10-11 02:21:57.000 1993-04-27 2024-10-11 02:21:57 +8518 8518 8519 851.8 1703.6000000000001 8518 1993-04-28 2024-10-11 02:21:58.000 1993-04-28 2024-10-11 02:21:58 +8519 8519 8520 851.9 1703.8000000000002 8519 1993-04-29 2024-10-11 02:21:59.000 1993-04-29 2024-10-11 02:21:59 +8520 8520 8521 852 1704 8520 1993-04-30 2024-10-11 02:22:00.000 1993-04-30 2024-10-11 02:22:00 +8521 8521 8522 852.1 1704.2 8521 1993-05-01 2024-10-11 02:22:01.000 1993-05-01 2024-10-11 02:22:01 +8522 8522 8523 852.2 1704.4 8522 1993-05-02 2024-10-11 02:22:02.000 1993-05-02 2024-10-11 02:22:02 +8523 8523 8524 852.3 1704.6000000000001 8523 1993-05-03 2024-10-11 02:22:03.000 1993-05-03 2024-10-11 02:22:03 +8524 8524 8525 852.4 1704.8000000000002 8524 1993-05-04 2024-10-11 02:22:04.000 1993-05-04 2024-10-11 02:22:04 +8525 8525 8526 852.5 1705 8525 1993-05-05 2024-10-11 02:22:05.000 1993-05-05 2024-10-11 02:22:05 +8526 8526 8527 852.6 1705.2 8526 1993-05-06 2024-10-11 02:22:06.000 1993-05-06 2024-10-11 02:22:06 +8527 8527 8528 852.7 1705.4 8527 1993-05-07 2024-10-11 02:22:07.000 1993-05-07 2024-10-11 02:22:07 +8528 8528 8529 852.8 1705.6000000000001 8528 1993-05-08 2024-10-11 02:22:08.000 1993-05-08 2024-10-11 02:22:08 +8529 8529 8530 852.9 1705.8000000000002 8529 1993-05-09 2024-10-11 02:22:09.000 1993-05-09 2024-10-11 02:22:09 +8530 8530 8531 853 1706 8530 1993-05-10 2024-10-11 02:22:10.000 1993-05-10 2024-10-11 02:22:10 +8531 8531 8532 853.1 1706.2 8531 1993-05-11 2024-10-11 02:22:11.000 1993-05-11 2024-10-11 02:22:11 +8532 8532 8533 853.2 1706.4 8532 1993-05-12 2024-10-11 02:22:12.000 1993-05-12 2024-10-11 02:22:12 +8533 8533 8534 853.3 1706.6000000000001 8533 1993-05-13 2024-10-11 02:22:13.000 1993-05-13 2024-10-11 02:22:13 +8534 8534 8535 853.4 1706.8000000000002 8534 1993-05-14 2024-10-11 02:22:14.000 1993-05-14 2024-10-11 02:22:14 +8535 8535 8536 853.5 1707 8535 1993-05-15 2024-10-11 02:22:15.000 1993-05-15 2024-10-11 02:22:15 +8536 8536 8537 853.6 1707.2 8536 1993-05-16 2024-10-11 02:22:16.000 1993-05-16 2024-10-11 02:22:16 +8537 8537 8538 853.7 1707.4 8537 1993-05-17 2024-10-11 02:22:17.000 1993-05-17 2024-10-11 02:22:17 +8538 8538 8539 853.8 1707.6000000000001 8538 1993-05-18 2024-10-11 02:22:18.000 1993-05-18 2024-10-11 02:22:18 +8539 8539 8540 853.9 1707.8000000000002 8539 1993-05-19 2024-10-11 02:22:19.000 1993-05-19 2024-10-11 02:22:19 +8540 8540 8541 854 1708 8540 1993-05-20 2024-10-11 02:22:20.000 1993-05-20 2024-10-11 02:22:20 +8541 8541 8542 854.1 1708.2 8541 1993-05-21 2024-10-11 02:22:21.000 1993-05-21 2024-10-11 02:22:21 +8542 8542 8543 854.2 1708.4 8542 1993-05-22 2024-10-11 02:22:22.000 1993-05-22 2024-10-11 02:22:22 +8543 8543 8544 854.3 1708.6000000000001 8543 1993-05-23 2024-10-11 02:22:23.000 1993-05-23 2024-10-11 02:22:23 +8544 8544 8545 854.4 1708.8000000000002 8544 1993-05-24 2024-10-11 02:22:24.000 1993-05-24 2024-10-11 02:22:24 +8545 8545 8546 854.5 1709 8545 1993-05-25 2024-10-11 02:22:25.000 1993-05-25 2024-10-11 02:22:25 +8546 8546 8547 854.6 1709.2 8546 1993-05-26 2024-10-11 02:22:26.000 1993-05-26 2024-10-11 02:22:26 +8547 8547 8548 854.7 1709.4 8547 1993-05-27 2024-10-11 02:22:27.000 1993-05-27 2024-10-11 02:22:27 +8548 8548 8549 854.8 1709.6000000000001 8548 1993-05-28 2024-10-11 02:22:28.000 1993-05-28 2024-10-11 02:22:28 +8549 8549 8550 854.9 1709.8000000000002 8549 1993-05-29 2024-10-11 02:22:29.000 1993-05-29 2024-10-11 02:22:29 +8550 8550 8551 855 1710 8550 1993-05-30 2024-10-11 02:22:30.000 1993-05-30 2024-10-11 02:22:30 +8551 8551 8552 855.1 1710.2 8551 1993-05-31 2024-10-11 02:22:31.000 1993-05-31 2024-10-11 02:22:31 +8552 8552 8553 855.2 1710.4 8552 1993-06-01 2024-10-11 02:22:32.000 1993-06-01 2024-10-11 02:22:32 +8553 8553 8554 855.3 1710.6000000000001 8553 1993-06-02 2024-10-11 02:22:33.000 1993-06-02 2024-10-11 02:22:33 +8554 8554 8555 855.4 1710.8000000000002 8554 1993-06-03 2024-10-11 02:22:34.000 1993-06-03 2024-10-11 02:22:34 +8555 8555 8556 855.5 1711 8555 1993-06-04 2024-10-11 02:22:35.000 1993-06-04 2024-10-11 02:22:35 +8556 8556 8557 855.6 1711.2 8556 1993-06-05 2024-10-11 02:22:36.000 1993-06-05 2024-10-11 02:22:36 +8557 8557 8558 855.7 1711.4 8557 1993-06-06 2024-10-11 02:22:37.000 1993-06-06 2024-10-11 02:22:37 +8558 8558 8559 855.8 1711.6000000000001 8558 1993-06-07 2024-10-11 02:22:38.000 1993-06-07 2024-10-11 02:22:38 +8559 8559 8560 855.9 1711.8000000000002 8559 1993-06-08 2024-10-11 02:22:39.000 1993-06-08 2024-10-11 02:22:39 +8560 8560 8561 856 1712 8560 1993-06-09 2024-10-11 02:22:40.000 1993-06-09 2024-10-11 02:22:40 +8561 8561 8562 856.1 1712.2 8561 1993-06-10 2024-10-11 02:22:41.000 1993-06-10 2024-10-11 02:22:41 +8562 8562 8563 856.2 1712.4 8562 1993-06-11 2024-10-11 02:22:42.000 1993-06-11 2024-10-11 02:22:42 +8563 8563 8564 856.3 1712.6000000000001 8563 1993-06-12 2024-10-11 02:22:43.000 1993-06-12 2024-10-11 02:22:43 +8564 8564 8565 856.4 1712.8000000000002 8564 1993-06-13 2024-10-11 02:22:44.000 1993-06-13 2024-10-11 02:22:44 +8565 8565 8566 856.5 1713 8565 1993-06-14 2024-10-11 02:22:45.000 1993-06-14 2024-10-11 02:22:45 +8566 8566 8567 856.6 1713.2 8566 1993-06-15 2024-10-11 02:22:46.000 1993-06-15 2024-10-11 02:22:46 +8567 8567 8568 856.7 1713.4 8567 1993-06-16 2024-10-11 02:22:47.000 1993-06-16 2024-10-11 02:22:47 +8568 8568 8569 856.8 1713.6000000000001 8568 1993-06-17 2024-10-11 02:22:48.000 1993-06-17 2024-10-11 02:22:48 +8569 8569 8570 856.9 1713.8000000000002 8569 1993-06-18 2024-10-11 02:22:49.000 1993-06-18 2024-10-11 02:22:49 +8570 8570 8571 857 1714 8570 1993-06-19 2024-10-11 02:22:50.000 1993-06-19 2024-10-11 02:22:50 +8571 8571 8572 857.1 1714.2 8571 1993-06-20 2024-10-11 02:22:51.000 1993-06-20 2024-10-11 02:22:51 +8572 8572 8573 857.2 1714.4 8572 1993-06-21 2024-10-11 02:22:52.000 1993-06-21 2024-10-11 02:22:52 +8573 8573 8574 857.3 1714.6000000000001 8573 1993-06-22 2024-10-11 02:22:53.000 1993-06-22 2024-10-11 02:22:53 +8574 8574 8575 857.4 1714.8000000000002 8574 1993-06-23 2024-10-11 02:22:54.000 1993-06-23 2024-10-11 02:22:54 +8575 8575 8576 857.5 1715 8575 1993-06-24 2024-10-11 02:22:55.000 1993-06-24 2024-10-11 02:22:55 +8576 8576 8577 857.6 1715.2 8576 1993-06-25 2024-10-11 02:22:56.000 1993-06-25 2024-10-11 02:22:56 +8577 8577 8578 857.7 1715.4 8577 1993-06-26 2024-10-11 02:22:57.000 1993-06-26 2024-10-11 02:22:57 +8578 8578 8579 857.8 1715.6000000000001 8578 1993-06-27 2024-10-11 02:22:58.000 1993-06-27 2024-10-11 02:22:58 +8579 8579 8580 857.9 1715.8000000000002 8579 1993-06-28 2024-10-11 02:22:59.000 1993-06-28 2024-10-11 02:22:59 +8580 8580 8581 858 1716 8580 1993-06-29 2024-10-11 02:23:00.000 1993-06-29 2024-10-11 02:23:00 +8581 8581 8582 858.1 1716.2 8581 1993-06-30 2024-10-11 02:23:01.000 1993-06-30 2024-10-11 02:23:01 +8582 8582 8583 858.2 1716.4 8582 1993-07-01 2024-10-11 02:23:02.000 1993-07-01 2024-10-11 02:23:02 +8583 8583 8584 858.3 1716.6000000000001 8583 1993-07-02 2024-10-11 02:23:03.000 1993-07-02 2024-10-11 02:23:03 +8584 8584 8585 858.4 1716.8000000000002 8584 1993-07-03 2024-10-11 02:23:04.000 1993-07-03 2024-10-11 02:23:04 +8585 8585 8586 858.5 1717 8585 1993-07-04 2024-10-11 02:23:05.000 1993-07-04 2024-10-11 02:23:05 +8586 8586 8587 858.6 1717.2 8586 1993-07-05 2024-10-11 02:23:06.000 1993-07-05 2024-10-11 02:23:06 +8587 8587 8588 858.7 1717.4 8587 1993-07-06 2024-10-11 02:23:07.000 1993-07-06 2024-10-11 02:23:07 +8588 8588 8589 858.8 1717.6000000000001 8588 1993-07-07 2024-10-11 02:23:08.000 1993-07-07 2024-10-11 02:23:08 +8589 8589 8590 858.9 1717.8000000000002 8589 1993-07-08 2024-10-11 02:23:09.000 1993-07-08 2024-10-11 02:23:09 +8590 8590 8591 859 1718 8590 1993-07-09 2024-10-11 02:23:10.000 1993-07-09 2024-10-11 02:23:10 +8591 8591 8592 859.1 1718.2 8591 1993-07-10 2024-10-11 02:23:11.000 1993-07-10 2024-10-11 02:23:11 +8592 8592 8593 859.2 1718.4 8592 1993-07-11 2024-10-11 02:23:12.000 1993-07-11 2024-10-11 02:23:12 +8593 8593 8594 859.3 1718.6000000000001 8593 1993-07-12 2024-10-11 02:23:13.000 1993-07-12 2024-10-11 02:23:13 +8594 8594 8595 859.4 1718.8000000000002 8594 1993-07-13 2024-10-11 02:23:14.000 1993-07-13 2024-10-11 02:23:14 +8595 8595 8596 859.5 1719 8595 1993-07-14 2024-10-11 02:23:15.000 1993-07-14 2024-10-11 02:23:15 +8596 8596 8597 859.6 1719.2 8596 1993-07-15 2024-10-11 02:23:16.000 1993-07-15 2024-10-11 02:23:16 +8597 8597 8598 859.7 1719.4 8597 1993-07-16 2024-10-11 02:23:17.000 1993-07-16 2024-10-11 02:23:17 +8598 8598 8599 859.8 1719.6000000000001 8598 1993-07-17 2024-10-11 02:23:18.000 1993-07-17 2024-10-11 02:23:18 +8599 8599 8600 859.9 1719.8000000000002 8599 1993-07-18 2024-10-11 02:23:19.000 1993-07-18 2024-10-11 02:23:19 +8600 8600 8601 860 1720 8600 1993-07-19 2024-10-11 02:23:20.000 1993-07-19 2024-10-11 02:23:20 +8601 8601 8602 860.1 1720.2 8601 1993-07-20 2024-10-11 02:23:21.000 1993-07-20 2024-10-11 02:23:21 +8602 8602 8603 860.2 1720.4 8602 1993-07-21 2024-10-11 02:23:22.000 1993-07-21 2024-10-11 02:23:22 +8603 8603 8604 860.3 1720.6000000000001 8603 1993-07-22 2024-10-11 02:23:23.000 1993-07-22 2024-10-11 02:23:23 +8604 8604 8605 860.4 1720.8000000000002 8604 1993-07-23 2024-10-11 02:23:24.000 1993-07-23 2024-10-11 02:23:24 +8605 8605 8606 860.5 1721 8605 1993-07-24 2024-10-11 02:23:25.000 1993-07-24 2024-10-11 02:23:25 +8606 8606 8607 860.6 1721.2 8606 1993-07-25 2024-10-11 02:23:26.000 1993-07-25 2024-10-11 02:23:26 +8607 8607 8608 860.7 1721.4 8607 1993-07-26 2024-10-11 02:23:27.000 1993-07-26 2024-10-11 02:23:27 +8608 8608 8609 860.8 1721.6000000000001 8608 1993-07-27 2024-10-11 02:23:28.000 1993-07-27 2024-10-11 02:23:28 +8609 8609 8610 860.9 1721.8000000000002 8609 1993-07-28 2024-10-11 02:23:29.000 1993-07-28 2024-10-11 02:23:29 +8610 8610 8611 861 1722 8610 1993-07-29 2024-10-11 02:23:30.000 1993-07-29 2024-10-11 02:23:30 +8611 8611 8612 861.1 1722.2 8611 1993-07-30 2024-10-11 02:23:31.000 1993-07-30 2024-10-11 02:23:31 +8612 8612 8613 861.2 1722.4 8612 1993-07-31 2024-10-11 02:23:32.000 1993-07-31 2024-10-11 02:23:32 +8613 8613 8614 861.3 1722.6000000000001 8613 1993-08-01 2024-10-11 02:23:33.000 1993-08-01 2024-10-11 02:23:33 +8614 8614 8615 861.4 1722.8000000000002 8614 1993-08-02 2024-10-11 02:23:34.000 1993-08-02 2024-10-11 02:23:34 +8615 8615 8616 861.5 1723 8615 1993-08-03 2024-10-11 02:23:35.000 1993-08-03 2024-10-11 02:23:35 +8616 8616 8617 861.6 1723.2 8616 1993-08-04 2024-10-11 02:23:36.000 1993-08-04 2024-10-11 02:23:36 +8617 8617 8618 861.7 1723.4 8617 1993-08-05 2024-10-11 02:23:37.000 1993-08-05 2024-10-11 02:23:37 +8618 8618 8619 861.8 1723.6000000000001 8618 1993-08-06 2024-10-11 02:23:38.000 1993-08-06 2024-10-11 02:23:38 +8619 8619 8620 861.9 1723.8000000000002 8619 1993-08-07 2024-10-11 02:23:39.000 1993-08-07 2024-10-11 02:23:39 +8620 8620 8621 862 1724 8620 1993-08-08 2024-10-11 02:23:40.000 1993-08-08 2024-10-11 02:23:40 +8621 8621 8622 862.1 1724.2 8621 1993-08-09 2024-10-11 02:23:41.000 1993-08-09 2024-10-11 02:23:41 +8622 8622 8623 862.2 1724.4 8622 1993-08-10 2024-10-11 02:23:42.000 1993-08-10 2024-10-11 02:23:42 +8623 8623 8624 862.3 1724.6000000000001 8623 1993-08-11 2024-10-11 02:23:43.000 1993-08-11 2024-10-11 02:23:43 +8624 8624 8625 862.4 1724.8000000000002 8624 1993-08-12 2024-10-11 02:23:44.000 1993-08-12 2024-10-11 02:23:44 +8625 8625 8626 862.5 1725 8625 1993-08-13 2024-10-11 02:23:45.000 1993-08-13 2024-10-11 02:23:45 +8626 8626 8627 862.6 1725.2 8626 1993-08-14 2024-10-11 02:23:46.000 1993-08-14 2024-10-11 02:23:46 +8627 8627 8628 862.7 1725.4 8627 1993-08-15 2024-10-11 02:23:47.000 1993-08-15 2024-10-11 02:23:47 +8628 8628 8629 862.8 1725.6000000000001 8628 1993-08-16 2024-10-11 02:23:48.000 1993-08-16 2024-10-11 02:23:48 +8629 8629 8630 862.9 1725.8000000000002 8629 1993-08-17 2024-10-11 02:23:49.000 1993-08-17 2024-10-11 02:23:49 +8630 8630 8631 863 1726 8630 1993-08-18 2024-10-11 02:23:50.000 1993-08-18 2024-10-11 02:23:50 +8631 8631 8632 863.1 1726.2 8631 1993-08-19 2024-10-11 02:23:51.000 1993-08-19 2024-10-11 02:23:51 +8632 8632 8633 863.2 1726.4 8632 1993-08-20 2024-10-11 02:23:52.000 1993-08-20 2024-10-11 02:23:52 +8633 8633 8634 863.3 1726.6000000000001 8633 1993-08-21 2024-10-11 02:23:53.000 1993-08-21 2024-10-11 02:23:53 +8634 8634 8635 863.4 1726.8000000000002 8634 1993-08-22 2024-10-11 02:23:54.000 1993-08-22 2024-10-11 02:23:54 +8635 8635 8636 863.5 1727 8635 1993-08-23 2024-10-11 02:23:55.000 1993-08-23 2024-10-11 02:23:55 +8636 8636 8637 863.6 1727.2 8636 1993-08-24 2024-10-11 02:23:56.000 1993-08-24 2024-10-11 02:23:56 +8637 8637 8638 863.7 1727.4 8637 1993-08-25 2024-10-11 02:23:57.000 1993-08-25 2024-10-11 02:23:57 +8638 8638 8639 863.8 1727.6000000000001 8638 1993-08-26 2024-10-11 02:23:58.000 1993-08-26 2024-10-11 02:23:58 +8639 8639 8640 863.9 1727.8000000000002 8639 1993-08-27 2024-10-11 02:23:59.000 1993-08-27 2024-10-11 02:23:59 +8640 8640 8641 864 1728 8640 1993-08-28 2024-10-11 02:24:00.000 1993-08-28 2024-10-11 02:24:00 +8641 8641 8642 864.1 1728.2 8641 1993-08-29 2024-10-11 02:24:01.000 1993-08-29 2024-10-11 02:24:01 +8642 8642 8643 864.2 1728.4 8642 1993-08-30 2024-10-11 02:24:02.000 1993-08-30 2024-10-11 02:24:02 +8643 8643 8644 864.3 1728.6000000000001 8643 1993-08-31 2024-10-11 02:24:03.000 1993-08-31 2024-10-11 02:24:03 +8644 8644 8645 864.4 1728.8000000000002 8644 1993-09-01 2024-10-11 02:24:04.000 1993-09-01 2024-10-11 02:24:04 +8645 8645 8646 864.5 1729 8645 1993-09-02 2024-10-11 02:24:05.000 1993-09-02 2024-10-11 02:24:05 +8646 8646 8647 864.6 1729.2 8646 1993-09-03 2024-10-11 02:24:06.000 1993-09-03 2024-10-11 02:24:06 +8647 8647 8648 864.7 1729.4 8647 1993-09-04 2024-10-11 02:24:07.000 1993-09-04 2024-10-11 02:24:07 +8648 8648 8649 864.8 1729.6000000000001 8648 1993-09-05 2024-10-11 02:24:08.000 1993-09-05 2024-10-11 02:24:08 +8649 8649 8650 864.9 1729.8000000000002 8649 1993-09-06 2024-10-11 02:24:09.000 1993-09-06 2024-10-11 02:24:09 +8650 8650 8651 865 1730 8650 1993-09-07 2024-10-11 02:24:10.000 1993-09-07 2024-10-11 02:24:10 +8651 8651 8652 865.1 1730.2 8651 1993-09-08 2024-10-11 02:24:11.000 1993-09-08 2024-10-11 02:24:11 +8652 8652 8653 865.2 1730.4 8652 1993-09-09 2024-10-11 02:24:12.000 1993-09-09 2024-10-11 02:24:12 +8653 8653 8654 865.3 1730.6000000000001 8653 1993-09-10 2024-10-11 02:24:13.000 1993-09-10 2024-10-11 02:24:13 +8654 8654 8655 865.4 1730.8000000000002 8654 1993-09-11 2024-10-11 02:24:14.000 1993-09-11 2024-10-11 02:24:14 +8655 8655 8656 865.5 1731 8655 1993-09-12 2024-10-11 02:24:15.000 1993-09-12 2024-10-11 02:24:15 +8656 8656 8657 865.6 1731.2 8656 1993-09-13 2024-10-11 02:24:16.000 1993-09-13 2024-10-11 02:24:16 +8657 8657 8658 865.7 1731.4 8657 1993-09-14 2024-10-11 02:24:17.000 1993-09-14 2024-10-11 02:24:17 +8658 8658 8659 865.8 1731.6000000000001 8658 1993-09-15 2024-10-11 02:24:18.000 1993-09-15 2024-10-11 02:24:18 +8659 8659 8660 865.9 1731.8000000000002 8659 1993-09-16 2024-10-11 02:24:19.000 1993-09-16 2024-10-11 02:24:19 +8660 8660 8661 866 1732 8660 1993-09-17 2024-10-11 02:24:20.000 1993-09-17 2024-10-11 02:24:20 +8661 8661 8662 866.1 1732.2 8661 1993-09-18 2024-10-11 02:24:21.000 1993-09-18 2024-10-11 02:24:21 +8662 8662 8663 866.2 1732.4 8662 1993-09-19 2024-10-11 02:24:22.000 1993-09-19 2024-10-11 02:24:22 +8663 8663 8664 866.3 1732.6000000000001 8663 1993-09-20 2024-10-11 02:24:23.000 1993-09-20 2024-10-11 02:24:23 +8664 8664 8665 866.4 1732.8000000000002 8664 1993-09-21 2024-10-11 02:24:24.000 1993-09-21 2024-10-11 02:24:24 +8665 8665 8666 866.5 1733 8665 1993-09-22 2024-10-11 02:24:25.000 1993-09-22 2024-10-11 02:24:25 +8666 8666 8667 866.6 1733.2 8666 1993-09-23 2024-10-11 02:24:26.000 1993-09-23 2024-10-11 02:24:26 +8667 8667 8668 866.7 1733.4 8667 1993-09-24 2024-10-11 02:24:27.000 1993-09-24 2024-10-11 02:24:27 +8668 8668 8669 866.8 1733.6000000000001 8668 1993-09-25 2024-10-11 02:24:28.000 1993-09-25 2024-10-11 02:24:28 +8669 8669 8670 866.9 1733.8000000000002 8669 1993-09-26 2024-10-11 02:24:29.000 1993-09-26 2024-10-11 02:24:29 +8670 8670 8671 867 1734 8670 1993-09-27 2024-10-11 02:24:30.000 1993-09-27 2024-10-11 02:24:30 +8671 8671 8672 867.1 1734.2 8671 1993-09-28 2024-10-11 02:24:31.000 1993-09-28 2024-10-11 02:24:31 +8672 8672 8673 867.2 1734.4 8672 1993-09-29 2024-10-11 02:24:32.000 1993-09-29 2024-10-11 02:24:32 +8673 8673 8674 867.3 1734.6000000000001 8673 1993-09-30 2024-10-11 02:24:33.000 1993-09-30 2024-10-11 02:24:33 +8674 8674 8675 867.4 1734.8000000000002 8674 1993-10-01 2024-10-11 02:24:34.000 1993-10-01 2024-10-11 02:24:34 +8675 8675 8676 867.5 1735 8675 1993-10-02 2024-10-11 02:24:35.000 1993-10-02 2024-10-11 02:24:35 +8676 8676 8677 867.6 1735.2 8676 1993-10-03 2024-10-11 02:24:36.000 1993-10-03 2024-10-11 02:24:36 +8677 8677 8678 867.7 1735.4 8677 1993-10-04 2024-10-11 02:24:37.000 1993-10-04 2024-10-11 02:24:37 +8678 8678 8679 867.8 1735.6000000000001 8678 1993-10-05 2024-10-11 02:24:38.000 1993-10-05 2024-10-11 02:24:38 +8679 8679 8680 867.9 1735.8000000000002 8679 1993-10-06 2024-10-11 02:24:39.000 1993-10-06 2024-10-11 02:24:39 +8680 8680 8681 868 1736 8680 1993-10-07 2024-10-11 02:24:40.000 1993-10-07 2024-10-11 02:24:40 +8681 8681 8682 868.1 1736.2 8681 1993-10-08 2024-10-11 02:24:41.000 1993-10-08 2024-10-11 02:24:41 +8682 8682 8683 868.2 1736.4 8682 1993-10-09 2024-10-11 02:24:42.000 1993-10-09 2024-10-11 02:24:42 +8683 8683 8684 868.3 1736.6000000000001 8683 1993-10-10 2024-10-11 02:24:43.000 1993-10-10 2024-10-11 02:24:43 +8684 8684 8685 868.4 1736.8000000000002 8684 1993-10-11 2024-10-11 02:24:44.000 1993-10-11 2024-10-11 02:24:44 +8685 8685 8686 868.5 1737 8685 1993-10-12 2024-10-11 02:24:45.000 1993-10-12 2024-10-11 02:24:45 +8686 8686 8687 868.6 1737.2 8686 1993-10-13 2024-10-11 02:24:46.000 1993-10-13 2024-10-11 02:24:46 +8687 8687 8688 868.7 1737.4 8687 1993-10-14 2024-10-11 02:24:47.000 1993-10-14 2024-10-11 02:24:47 +8688 8688 8689 868.8 1737.6000000000001 8688 1993-10-15 2024-10-11 02:24:48.000 1993-10-15 2024-10-11 02:24:48 +8689 8689 8690 868.9 1737.8000000000002 8689 1993-10-16 2024-10-11 02:24:49.000 1993-10-16 2024-10-11 02:24:49 +8690 8690 8691 869 1738 8690 1993-10-17 2024-10-11 02:24:50.000 1993-10-17 2024-10-11 02:24:50 +8691 8691 8692 869.1 1738.2 8691 1993-10-18 2024-10-11 02:24:51.000 1993-10-18 2024-10-11 02:24:51 +8692 8692 8693 869.2 1738.4 8692 1993-10-19 2024-10-11 02:24:52.000 1993-10-19 2024-10-11 02:24:52 +8693 8693 8694 869.3 1738.6000000000001 8693 1993-10-20 2024-10-11 02:24:53.000 1993-10-20 2024-10-11 02:24:53 +8694 8694 8695 869.4 1738.8000000000002 8694 1993-10-21 2024-10-11 02:24:54.000 1993-10-21 2024-10-11 02:24:54 +8695 8695 8696 869.5 1739 8695 1993-10-22 2024-10-11 02:24:55.000 1993-10-22 2024-10-11 02:24:55 +8696 8696 8697 869.6 1739.2 8696 1993-10-23 2024-10-11 02:24:56.000 1993-10-23 2024-10-11 02:24:56 +8697 8697 8698 869.7 1739.4 8697 1993-10-24 2024-10-11 02:24:57.000 1993-10-24 2024-10-11 02:24:57 +8698 8698 8699 869.8 1739.6000000000001 8698 1993-10-25 2024-10-11 02:24:58.000 1993-10-25 2024-10-11 02:24:58 +8699 8699 8700 869.9 1739.8000000000002 8699 1993-10-26 2024-10-11 02:24:59.000 1993-10-26 2024-10-11 02:24:59 +8700 8700 8701 870 1740 8700 1993-10-27 2024-10-11 02:25:00.000 1993-10-27 2024-10-11 02:25:00 +8701 8701 8702 870.1 1740.2 8701 1993-10-28 2024-10-11 02:25:01.000 1993-10-28 2024-10-11 02:25:01 +8702 8702 8703 870.2 1740.4 8702 1993-10-29 2024-10-11 02:25:02.000 1993-10-29 2024-10-11 02:25:02 +8703 8703 8704 870.3 1740.6000000000001 8703 1993-10-30 2024-10-11 02:25:03.000 1993-10-30 2024-10-11 02:25:03 +8704 8704 8705 870.4 1740.8000000000002 8704 1993-10-31 2024-10-11 02:25:04.000 1993-10-31 2024-10-11 02:25:04 +8705 8705 8706 870.5 1741 8705 1993-11-01 2024-10-11 02:25:05.000 1993-11-01 2024-10-11 02:25:05 +8706 8706 8707 870.6 1741.2 8706 1993-11-02 2024-10-11 02:25:06.000 1993-11-02 2024-10-11 02:25:06 +8707 8707 8708 870.7 1741.4 8707 1993-11-03 2024-10-11 02:25:07.000 1993-11-03 2024-10-11 02:25:07 +8708 8708 8709 870.8 1741.6000000000001 8708 1993-11-04 2024-10-11 02:25:08.000 1993-11-04 2024-10-11 02:25:08 +8709 8709 8710 870.9 1741.8000000000002 8709 1993-11-05 2024-10-11 02:25:09.000 1993-11-05 2024-10-11 02:25:09 +8710 8710 8711 871 1742 8710 1993-11-06 2024-10-11 02:25:10.000 1993-11-06 2024-10-11 02:25:10 +8711 8711 8712 871.1 1742.2 8711 1993-11-07 2024-10-11 02:25:11.000 1993-11-07 2024-10-11 02:25:11 +8712 8712 8713 871.2 1742.4 8712 1993-11-08 2024-10-11 02:25:12.000 1993-11-08 2024-10-11 02:25:12 +8713 8713 8714 871.3 1742.6000000000001 8713 1993-11-09 2024-10-11 02:25:13.000 1993-11-09 2024-10-11 02:25:13 +8714 8714 8715 871.4 1742.8000000000002 8714 1993-11-10 2024-10-11 02:25:14.000 1993-11-10 2024-10-11 02:25:14 +8715 8715 8716 871.5 1743 8715 1993-11-11 2024-10-11 02:25:15.000 1993-11-11 2024-10-11 02:25:15 +8716 8716 8717 871.6 1743.2 8716 1993-11-12 2024-10-11 02:25:16.000 1993-11-12 2024-10-11 02:25:16 +8717 8717 8718 871.7 1743.4 8717 1993-11-13 2024-10-11 02:25:17.000 1993-11-13 2024-10-11 02:25:17 +8718 8718 8719 871.8 1743.6000000000001 8718 1993-11-14 2024-10-11 02:25:18.000 1993-11-14 2024-10-11 02:25:18 +8719 8719 8720 871.9 1743.8000000000002 8719 1993-11-15 2024-10-11 02:25:19.000 1993-11-15 2024-10-11 02:25:19 +8720 8720 8721 872 1744 8720 1993-11-16 2024-10-11 02:25:20.000 1993-11-16 2024-10-11 02:25:20 +8721 8721 8722 872.1 1744.2 8721 1993-11-17 2024-10-11 02:25:21.000 1993-11-17 2024-10-11 02:25:21 +8722 8722 8723 872.2 1744.4 8722 1993-11-18 2024-10-11 02:25:22.000 1993-11-18 2024-10-11 02:25:22 +8723 8723 8724 872.3 1744.6000000000001 8723 1993-11-19 2024-10-11 02:25:23.000 1993-11-19 2024-10-11 02:25:23 +8724 8724 8725 872.4 1744.8000000000002 8724 1993-11-20 2024-10-11 02:25:24.000 1993-11-20 2024-10-11 02:25:24 +8725 8725 8726 872.5 1745 8725 1993-11-21 2024-10-11 02:25:25.000 1993-11-21 2024-10-11 02:25:25 +8726 8726 8727 872.6 1745.2 8726 1993-11-22 2024-10-11 02:25:26.000 1993-11-22 2024-10-11 02:25:26 +8727 8727 8728 872.7 1745.4 8727 1993-11-23 2024-10-11 02:25:27.000 1993-11-23 2024-10-11 02:25:27 +8728 8728 8729 872.8 1745.6000000000001 8728 1993-11-24 2024-10-11 02:25:28.000 1993-11-24 2024-10-11 02:25:28 +8729 8729 8730 872.9 1745.8000000000002 8729 1993-11-25 2024-10-11 02:25:29.000 1993-11-25 2024-10-11 02:25:29 +8730 8730 8731 873 1746 8730 1993-11-26 2024-10-11 02:25:30.000 1993-11-26 2024-10-11 02:25:30 +8731 8731 8732 873.1 1746.2 8731 1993-11-27 2024-10-11 02:25:31.000 1993-11-27 2024-10-11 02:25:31 +8732 8732 8733 873.2 1746.4 8732 1993-11-28 2024-10-11 02:25:32.000 1993-11-28 2024-10-11 02:25:32 +8733 8733 8734 873.3 1746.6000000000001 8733 1993-11-29 2024-10-11 02:25:33.000 1993-11-29 2024-10-11 02:25:33 +8734 8734 8735 873.4 1746.8000000000002 8734 1993-11-30 2024-10-11 02:25:34.000 1993-11-30 2024-10-11 02:25:34 +8735 8735 8736 873.5 1747 8735 1993-12-01 2024-10-11 02:25:35.000 1993-12-01 2024-10-11 02:25:35 +8736 8736 8737 873.6 1747.2 8736 1993-12-02 2024-10-11 02:25:36.000 1993-12-02 2024-10-11 02:25:36 +8737 8737 8738 873.7 1747.4 8737 1993-12-03 2024-10-11 02:25:37.000 1993-12-03 2024-10-11 02:25:37 +8738 8738 8739 873.8 1747.6000000000001 8738 1993-12-04 2024-10-11 02:25:38.000 1993-12-04 2024-10-11 02:25:38 +8739 8739 8740 873.9 1747.8000000000002 8739 1993-12-05 2024-10-11 02:25:39.000 1993-12-05 2024-10-11 02:25:39 +8740 8740 8741 874 1748 8740 1993-12-06 2024-10-11 02:25:40.000 1993-12-06 2024-10-11 02:25:40 +8741 8741 8742 874.1 1748.2 8741 1993-12-07 2024-10-11 02:25:41.000 1993-12-07 2024-10-11 02:25:41 +8742 8742 8743 874.2 1748.4 8742 1993-12-08 2024-10-11 02:25:42.000 1993-12-08 2024-10-11 02:25:42 +8743 8743 8744 874.3 1748.6000000000001 8743 1993-12-09 2024-10-11 02:25:43.000 1993-12-09 2024-10-11 02:25:43 +8744 8744 8745 874.4 1748.8000000000002 8744 1993-12-10 2024-10-11 02:25:44.000 1993-12-10 2024-10-11 02:25:44 +8745 8745 8746 874.5 1749 8745 1993-12-11 2024-10-11 02:25:45.000 1993-12-11 2024-10-11 02:25:45 +8746 8746 8747 874.6 1749.2 8746 1993-12-12 2024-10-11 02:25:46.000 1993-12-12 2024-10-11 02:25:46 +8747 8747 8748 874.7 1749.4 8747 1993-12-13 2024-10-11 02:25:47.000 1993-12-13 2024-10-11 02:25:47 +8748 8748 8749 874.8 1749.6000000000001 8748 1993-12-14 2024-10-11 02:25:48.000 1993-12-14 2024-10-11 02:25:48 +8749 8749 8750 874.9 1749.8000000000002 8749 1993-12-15 2024-10-11 02:25:49.000 1993-12-15 2024-10-11 02:25:49 +8750 8750 8751 875 1750 8750 1993-12-16 2024-10-11 02:25:50.000 1993-12-16 2024-10-11 02:25:50 +8751 8751 8752 875.1 1750.2 8751 1993-12-17 2024-10-11 02:25:51.000 1993-12-17 2024-10-11 02:25:51 +8752 8752 8753 875.2 1750.4 8752 1993-12-18 2024-10-11 02:25:52.000 1993-12-18 2024-10-11 02:25:52 +8753 8753 8754 875.3 1750.6000000000001 8753 1993-12-19 2024-10-11 02:25:53.000 1993-12-19 2024-10-11 02:25:53 +8754 8754 8755 875.4 1750.8000000000002 8754 1993-12-20 2024-10-11 02:25:54.000 1993-12-20 2024-10-11 02:25:54 +8755 8755 8756 875.5 1751 8755 1993-12-21 2024-10-11 02:25:55.000 1993-12-21 2024-10-11 02:25:55 +8756 8756 8757 875.6 1751.2 8756 1993-12-22 2024-10-11 02:25:56.000 1993-12-22 2024-10-11 02:25:56 +8757 8757 8758 875.7 1751.4 8757 1993-12-23 2024-10-11 02:25:57.000 1993-12-23 2024-10-11 02:25:57 +8758 8758 8759 875.8 1751.6000000000001 8758 1993-12-24 2024-10-11 02:25:58.000 1993-12-24 2024-10-11 02:25:58 +8759 8759 8760 875.9 1751.8000000000002 8759 1993-12-25 2024-10-11 02:25:59.000 1993-12-25 2024-10-11 02:25:59 +8760 8760 8761 876 1752 8760 1993-12-26 2024-10-11 02:26:00.000 1993-12-26 2024-10-11 02:26:00 +8761 8761 8762 876.1 1752.2 8761 1993-12-27 2024-10-11 02:26:01.000 1993-12-27 2024-10-11 02:26:01 +8762 8762 8763 876.2 1752.4 8762 1993-12-28 2024-10-11 02:26:02.000 1993-12-28 2024-10-11 02:26:02 +8763 8763 8764 876.3 1752.6000000000001 8763 1993-12-29 2024-10-11 02:26:03.000 1993-12-29 2024-10-11 02:26:03 +8764 8764 8765 876.4 1752.8000000000002 8764 1993-12-30 2024-10-11 02:26:04.000 1993-12-30 2024-10-11 02:26:04 +8765 8765 8766 876.5 1753 8765 1993-12-31 2024-10-11 02:26:05.000 1993-12-31 2024-10-11 02:26:05 +8766 8766 8767 876.6 1753.2 8766 1994-01-01 2024-10-11 02:26:06.000 1994-01-01 2024-10-11 02:26:06 +8767 8767 8768 876.7 1753.4 8767 1994-01-02 2024-10-11 02:26:07.000 1994-01-02 2024-10-11 02:26:07 +8768 8768 8769 876.8 1753.6000000000001 8768 1994-01-03 2024-10-11 02:26:08.000 1994-01-03 2024-10-11 02:26:08 +8769 8769 8770 876.9 1753.8000000000002 8769 1994-01-04 2024-10-11 02:26:09.000 1994-01-04 2024-10-11 02:26:09 +8770 8770 8771 877 1754 8770 1994-01-05 2024-10-11 02:26:10.000 1994-01-05 2024-10-11 02:26:10 +8771 8771 8772 877.1 1754.2 8771 1994-01-06 2024-10-11 02:26:11.000 1994-01-06 2024-10-11 02:26:11 +8772 8772 8773 877.2 1754.4 8772 1994-01-07 2024-10-11 02:26:12.000 1994-01-07 2024-10-11 02:26:12 +8773 8773 8774 877.3 1754.6000000000001 8773 1994-01-08 2024-10-11 02:26:13.000 1994-01-08 2024-10-11 02:26:13 +8774 8774 8775 877.4 1754.8000000000002 8774 1994-01-09 2024-10-11 02:26:14.000 1994-01-09 2024-10-11 02:26:14 +8775 8775 8776 877.5 1755 8775 1994-01-10 2024-10-11 02:26:15.000 1994-01-10 2024-10-11 02:26:15 +8776 8776 8777 877.6 1755.2 8776 1994-01-11 2024-10-11 02:26:16.000 1994-01-11 2024-10-11 02:26:16 +8777 8777 8778 877.7 1755.4 8777 1994-01-12 2024-10-11 02:26:17.000 1994-01-12 2024-10-11 02:26:17 +8778 8778 8779 877.8 1755.6000000000001 8778 1994-01-13 2024-10-11 02:26:18.000 1994-01-13 2024-10-11 02:26:18 +8779 8779 8780 877.9 1755.8000000000002 8779 1994-01-14 2024-10-11 02:26:19.000 1994-01-14 2024-10-11 02:26:19 +8780 8780 8781 878 1756 8780 1994-01-15 2024-10-11 02:26:20.000 1994-01-15 2024-10-11 02:26:20 +8781 8781 8782 878.1 1756.2 8781 1994-01-16 2024-10-11 02:26:21.000 1994-01-16 2024-10-11 02:26:21 +8782 8782 8783 878.2 1756.4 8782 1994-01-17 2024-10-11 02:26:22.000 1994-01-17 2024-10-11 02:26:22 +8783 8783 8784 878.3 1756.6000000000001 8783 1994-01-18 2024-10-11 02:26:23.000 1994-01-18 2024-10-11 02:26:23 +8784 8784 8785 878.4 1756.8000000000002 8784 1994-01-19 2024-10-11 02:26:24.000 1994-01-19 2024-10-11 02:26:24 +8785 8785 8786 878.5 1757 8785 1994-01-20 2024-10-11 02:26:25.000 1994-01-20 2024-10-11 02:26:25 +8786 8786 8787 878.6 1757.2 8786 1994-01-21 2024-10-11 02:26:26.000 1994-01-21 2024-10-11 02:26:26 +8787 8787 8788 878.7 1757.4 8787 1994-01-22 2024-10-11 02:26:27.000 1994-01-22 2024-10-11 02:26:27 +8788 8788 8789 878.8 1757.6000000000001 8788 1994-01-23 2024-10-11 02:26:28.000 1994-01-23 2024-10-11 02:26:28 +8789 8789 8790 878.9 1757.8000000000002 8789 1994-01-24 2024-10-11 02:26:29.000 1994-01-24 2024-10-11 02:26:29 +8790 8790 8791 879 1758 8790 1994-01-25 2024-10-11 02:26:30.000 1994-01-25 2024-10-11 02:26:30 +8791 8791 8792 879.1 1758.2 8791 1994-01-26 2024-10-11 02:26:31.000 1994-01-26 2024-10-11 02:26:31 +8792 8792 8793 879.2 1758.4 8792 1994-01-27 2024-10-11 02:26:32.000 1994-01-27 2024-10-11 02:26:32 +8793 8793 8794 879.3 1758.6000000000001 8793 1994-01-28 2024-10-11 02:26:33.000 1994-01-28 2024-10-11 02:26:33 +8794 8794 8795 879.4 1758.8000000000002 8794 1994-01-29 2024-10-11 02:26:34.000 1994-01-29 2024-10-11 02:26:34 +8795 8795 8796 879.5 1759 8795 1994-01-30 2024-10-11 02:26:35.000 1994-01-30 2024-10-11 02:26:35 +8796 8796 8797 879.6 1759.2 8796 1994-01-31 2024-10-11 02:26:36.000 1994-01-31 2024-10-11 02:26:36 +8797 8797 8798 879.7 1759.4 8797 1994-02-01 2024-10-11 02:26:37.000 1994-02-01 2024-10-11 02:26:37 +8798 8798 8799 879.8 1759.6000000000001 8798 1994-02-02 2024-10-11 02:26:38.000 1994-02-02 2024-10-11 02:26:38 +8799 8799 8800 879.9 1759.8000000000002 8799 1994-02-03 2024-10-11 02:26:39.000 1994-02-03 2024-10-11 02:26:39 +8800 8800 8801 880 1760 8800 1994-02-04 2024-10-11 02:26:40.000 1994-02-04 2024-10-11 02:26:40 +8801 8801 8802 880.1 1760.2 8801 1994-02-05 2024-10-11 02:26:41.000 1994-02-05 2024-10-11 02:26:41 +8802 8802 8803 880.2 1760.4 8802 1994-02-06 2024-10-11 02:26:42.000 1994-02-06 2024-10-11 02:26:42 +8803 8803 8804 880.3 1760.6000000000001 8803 1994-02-07 2024-10-11 02:26:43.000 1994-02-07 2024-10-11 02:26:43 +8804 8804 8805 880.4 1760.8000000000002 8804 1994-02-08 2024-10-11 02:26:44.000 1994-02-08 2024-10-11 02:26:44 +8805 8805 8806 880.5 1761 8805 1994-02-09 2024-10-11 02:26:45.000 1994-02-09 2024-10-11 02:26:45 +8806 8806 8807 880.6 1761.2 8806 1994-02-10 2024-10-11 02:26:46.000 1994-02-10 2024-10-11 02:26:46 +8807 8807 8808 880.7 1761.4 8807 1994-02-11 2024-10-11 02:26:47.000 1994-02-11 2024-10-11 02:26:47 +8808 8808 8809 880.8 1761.6000000000001 8808 1994-02-12 2024-10-11 02:26:48.000 1994-02-12 2024-10-11 02:26:48 +8809 8809 8810 880.9 1761.8000000000002 8809 1994-02-13 2024-10-11 02:26:49.000 1994-02-13 2024-10-11 02:26:49 +8810 8810 8811 881 1762 8810 1994-02-14 2024-10-11 02:26:50.000 1994-02-14 2024-10-11 02:26:50 +8811 8811 8812 881.1 1762.2 8811 1994-02-15 2024-10-11 02:26:51.000 1994-02-15 2024-10-11 02:26:51 +8812 8812 8813 881.2 1762.4 8812 1994-02-16 2024-10-11 02:26:52.000 1994-02-16 2024-10-11 02:26:52 +8813 8813 8814 881.3 1762.6000000000001 8813 1994-02-17 2024-10-11 02:26:53.000 1994-02-17 2024-10-11 02:26:53 +8814 8814 8815 881.4 1762.8000000000002 8814 1994-02-18 2024-10-11 02:26:54.000 1994-02-18 2024-10-11 02:26:54 +8815 8815 8816 881.5 1763 8815 1994-02-19 2024-10-11 02:26:55.000 1994-02-19 2024-10-11 02:26:55 +8816 8816 8817 881.6 1763.2 8816 1994-02-20 2024-10-11 02:26:56.000 1994-02-20 2024-10-11 02:26:56 +8817 8817 8818 881.7 1763.4 8817 1994-02-21 2024-10-11 02:26:57.000 1994-02-21 2024-10-11 02:26:57 +8818 8818 8819 881.8 1763.6000000000001 8818 1994-02-22 2024-10-11 02:26:58.000 1994-02-22 2024-10-11 02:26:58 +8819 8819 8820 881.9 1763.8000000000002 8819 1994-02-23 2024-10-11 02:26:59.000 1994-02-23 2024-10-11 02:26:59 +8820 8820 8821 882 1764 8820 1994-02-24 2024-10-11 02:27:00.000 1994-02-24 2024-10-11 02:27:00 +8821 8821 8822 882.1 1764.2 8821 1994-02-25 2024-10-11 02:27:01.000 1994-02-25 2024-10-11 02:27:01 +8822 8822 8823 882.2 1764.4 8822 1994-02-26 2024-10-11 02:27:02.000 1994-02-26 2024-10-11 02:27:02 +8823 8823 8824 882.3 1764.6000000000001 8823 1994-02-27 2024-10-11 02:27:03.000 1994-02-27 2024-10-11 02:27:03 +8824 8824 8825 882.4 1764.8000000000002 8824 1994-02-28 2024-10-11 02:27:04.000 1994-02-28 2024-10-11 02:27:04 +8825 8825 8826 882.5 1765 8825 1994-03-01 2024-10-11 02:27:05.000 1994-03-01 2024-10-11 02:27:05 +8826 8826 8827 882.6 1765.2 8826 1994-03-02 2024-10-11 02:27:06.000 1994-03-02 2024-10-11 02:27:06 +8827 8827 8828 882.7 1765.4 8827 1994-03-03 2024-10-11 02:27:07.000 1994-03-03 2024-10-11 02:27:07 +8828 8828 8829 882.8 1765.6000000000001 8828 1994-03-04 2024-10-11 02:27:08.000 1994-03-04 2024-10-11 02:27:08 +8829 8829 8830 882.9 1765.8000000000002 8829 1994-03-05 2024-10-11 02:27:09.000 1994-03-05 2024-10-11 02:27:09 +8830 8830 8831 883 1766 8830 1994-03-06 2024-10-11 02:27:10.000 1994-03-06 2024-10-11 02:27:10 +8831 8831 8832 883.1 1766.2 8831 1994-03-07 2024-10-11 02:27:11.000 1994-03-07 2024-10-11 02:27:11 +8832 8832 8833 883.2 1766.4 8832 1994-03-08 2024-10-11 02:27:12.000 1994-03-08 2024-10-11 02:27:12 +8833 8833 8834 883.3 1766.6000000000001 8833 1994-03-09 2024-10-11 02:27:13.000 1994-03-09 2024-10-11 02:27:13 +8834 8834 8835 883.4 1766.8000000000002 8834 1994-03-10 2024-10-11 02:27:14.000 1994-03-10 2024-10-11 02:27:14 +8835 8835 8836 883.5 1767 8835 1994-03-11 2024-10-11 02:27:15.000 1994-03-11 2024-10-11 02:27:15 +8836 8836 8837 883.6 1767.2 8836 1994-03-12 2024-10-11 02:27:16.000 1994-03-12 2024-10-11 02:27:16 +8837 8837 8838 883.7 1767.4 8837 1994-03-13 2024-10-11 02:27:17.000 1994-03-13 2024-10-11 02:27:17 +8838 8838 8839 883.8 1767.6000000000001 8838 1994-03-14 2024-10-11 02:27:18.000 1994-03-14 2024-10-11 02:27:18 +8839 8839 8840 883.9 1767.8000000000002 8839 1994-03-15 2024-10-11 02:27:19.000 1994-03-15 2024-10-11 02:27:19 +8840 8840 8841 884 1768 8840 1994-03-16 2024-10-11 02:27:20.000 1994-03-16 2024-10-11 02:27:20 +8841 8841 8842 884.1 1768.2 8841 1994-03-17 2024-10-11 02:27:21.000 1994-03-17 2024-10-11 02:27:21 +8842 8842 8843 884.2 1768.4 8842 1994-03-18 2024-10-11 02:27:22.000 1994-03-18 2024-10-11 02:27:22 +8843 8843 8844 884.3 1768.6000000000001 8843 1994-03-19 2024-10-11 02:27:23.000 1994-03-19 2024-10-11 02:27:23 +8844 8844 8845 884.4 1768.8000000000002 8844 1994-03-20 2024-10-11 02:27:24.000 1994-03-20 2024-10-11 02:27:24 +8845 8845 8846 884.5 1769 8845 1994-03-21 2024-10-11 02:27:25.000 1994-03-21 2024-10-11 02:27:25 +8846 8846 8847 884.6 1769.2 8846 1994-03-22 2024-10-11 02:27:26.000 1994-03-22 2024-10-11 02:27:26 +8847 8847 8848 884.7 1769.4 8847 1994-03-23 2024-10-11 02:27:27.000 1994-03-23 2024-10-11 02:27:27 +8848 8848 8849 884.8 1769.6000000000001 8848 1994-03-24 2024-10-11 02:27:28.000 1994-03-24 2024-10-11 02:27:28 +8849 8849 8850 884.9 1769.8000000000002 8849 1994-03-25 2024-10-11 02:27:29.000 1994-03-25 2024-10-11 02:27:29 +8850 8850 8851 885 1770 8850 1994-03-26 2024-10-11 02:27:30.000 1994-03-26 2024-10-11 02:27:30 +8851 8851 8852 885.1 1770.2 8851 1994-03-27 2024-10-11 02:27:31.000 1994-03-27 2024-10-11 02:27:31 +8852 8852 8853 885.2 1770.4 8852 1994-03-28 2024-10-11 02:27:32.000 1994-03-28 2024-10-11 02:27:32 +8853 8853 8854 885.3 1770.6000000000001 8853 1994-03-29 2024-10-11 02:27:33.000 1994-03-29 2024-10-11 02:27:33 +8854 8854 8855 885.4 1770.8000000000002 8854 1994-03-30 2024-10-11 02:27:34.000 1994-03-30 2024-10-11 02:27:34 +8855 8855 8856 885.5 1771 8855 1994-03-31 2024-10-11 02:27:35.000 1994-03-31 2024-10-11 02:27:35 +8856 8856 8857 885.6 1771.2 8856 1994-04-01 2024-10-11 02:27:36.000 1994-04-01 2024-10-11 02:27:36 +8857 8857 8858 885.7 1771.4 8857 1994-04-02 2024-10-11 02:27:37.000 1994-04-02 2024-10-11 02:27:37 +8858 8858 8859 885.8 1771.6000000000001 8858 1994-04-03 2024-10-11 02:27:38.000 1994-04-03 2024-10-11 02:27:38 +8859 8859 8860 885.9 1771.8000000000002 8859 1994-04-04 2024-10-11 02:27:39.000 1994-04-04 2024-10-11 02:27:39 +8860 8860 8861 886 1772 8860 1994-04-05 2024-10-11 02:27:40.000 1994-04-05 2024-10-11 02:27:40 +8861 8861 8862 886.1 1772.2 8861 1994-04-06 2024-10-11 02:27:41.000 1994-04-06 2024-10-11 02:27:41 +8862 8862 8863 886.2 1772.4 8862 1994-04-07 2024-10-11 02:27:42.000 1994-04-07 2024-10-11 02:27:42 +8863 8863 8864 886.3 1772.6000000000001 8863 1994-04-08 2024-10-11 02:27:43.000 1994-04-08 2024-10-11 02:27:43 +8864 8864 8865 886.4 1772.8000000000002 8864 1994-04-09 2024-10-11 02:27:44.000 1994-04-09 2024-10-11 02:27:44 +8865 8865 8866 886.5 1773 8865 1994-04-10 2024-10-11 02:27:45.000 1994-04-10 2024-10-11 02:27:45 +8866 8866 8867 886.6 1773.2 8866 1994-04-11 2024-10-11 02:27:46.000 1994-04-11 2024-10-11 02:27:46 +8867 8867 8868 886.7 1773.4 8867 1994-04-12 2024-10-11 02:27:47.000 1994-04-12 2024-10-11 02:27:47 +8868 8868 8869 886.8 1773.6000000000001 8868 1994-04-13 2024-10-11 02:27:48.000 1994-04-13 2024-10-11 02:27:48 +8869 8869 8870 886.9 1773.8000000000002 8869 1994-04-14 2024-10-11 02:27:49.000 1994-04-14 2024-10-11 02:27:49 +8870 8870 8871 887 1774 8870 1994-04-15 2024-10-11 02:27:50.000 1994-04-15 2024-10-11 02:27:50 +8871 8871 8872 887.1 1774.2 8871 1994-04-16 2024-10-11 02:27:51.000 1994-04-16 2024-10-11 02:27:51 +8872 8872 8873 887.2 1774.4 8872 1994-04-17 2024-10-11 02:27:52.000 1994-04-17 2024-10-11 02:27:52 +8873 8873 8874 887.3 1774.6000000000001 8873 1994-04-18 2024-10-11 02:27:53.000 1994-04-18 2024-10-11 02:27:53 +8874 8874 8875 887.4 1774.8000000000002 8874 1994-04-19 2024-10-11 02:27:54.000 1994-04-19 2024-10-11 02:27:54 +8875 8875 8876 887.5 1775 8875 1994-04-20 2024-10-11 02:27:55.000 1994-04-20 2024-10-11 02:27:55 +8876 8876 8877 887.6 1775.2 8876 1994-04-21 2024-10-11 02:27:56.000 1994-04-21 2024-10-11 02:27:56 +8877 8877 8878 887.7 1775.4 8877 1994-04-22 2024-10-11 02:27:57.000 1994-04-22 2024-10-11 02:27:57 +8878 8878 8879 887.8 1775.6000000000001 8878 1994-04-23 2024-10-11 02:27:58.000 1994-04-23 2024-10-11 02:27:58 +8879 8879 8880 887.9 1775.8000000000002 8879 1994-04-24 2024-10-11 02:27:59.000 1994-04-24 2024-10-11 02:27:59 +8880 8880 8881 888 1776 8880 1994-04-25 2024-10-11 02:28:00.000 1994-04-25 2024-10-11 02:28:00 +8881 8881 8882 888.1 1776.2 8881 1994-04-26 2024-10-11 02:28:01.000 1994-04-26 2024-10-11 02:28:01 +8882 8882 8883 888.2 1776.4 8882 1994-04-27 2024-10-11 02:28:02.000 1994-04-27 2024-10-11 02:28:02 +8883 8883 8884 888.3 1776.6000000000001 8883 1994-04-28 2024-10-11 02:28:03.000 1994-04-28 2024-10-11 02:28:03 +8884 8884 8885 888.4 1776.8000000000002 8884 1994-04-29 2024-10-11 02:28:04.000 1994-04-29 2024-10-11 02:28:04 +8885 8885 8886 888.5 1777 8885 1994-04-30 2024-10-11 02:28:05.000 1994-04-30 2024-10-11 02:28:05 +8886 8886 8887 888.6 1777.2 8886 1994-05-01 2024-10-11 02:28:06.000 1994-05-01 2024-10-11 02:28:06 +8887 8887 8888 888.7 1777.4 8887 1994-05-02 2024-10-11 02:28:07.000 1994-05-02 2024-10-11 02:28:07 +8888 8888 8889 888.8 1777.6000000000001 8888 1994-05-03 2024-10-11 02:28:08.000 1994-05-03 2024-10-11 02:28:08 +8889 8889 8890 888.9 1777.8000000000002 8889 1994-05-04 2024-10-11 02:28:09.000 1994-05-04 2024-10-11 02:28:09 +8890 8890 8891 889 1778 8890 1994-05-05 2024-10-11 02:28:10.000 1994-05-05 2024-10-11 02:28:10 +8891 8891 8892 889.1 1778.2 8891 1994-05-06 2024-10-11 02:28:11.000 1994-05-06 2024-10-11 02:28:11 +8892 8892 8893 889.2 1778.4 8892 1994-05-07 2024-10-11 02:28:12.000 1994-05-07 2024-10-11 02:28:12 +8893 8893 8894 889.3 1778.6000000000001 8893 1994-05-08 2024-10-11 02:28:13.000 1994-05-08 2024-10-11 02:28:13 +8894 8894 8895 889.4 1778.8000000000002 8894 1994-05-09 2024-10-11 02:28:14.000 1994-05-09 2024-10-11 02:28:14 +8895 8895 8896 889.5 1779 8895 1994-05-10 2024-10-11 02:28:15.000 1994-05-10 2024-10-11 02:28:15 +8896 8896 8897 889.6 1779.2 8896 1994-05-11 2024-10-11 02:28:16.000 1994-05-11 2024-10-11 02:28:16 +8897 8897 8898 889.7 1779.4 8897 1994-05-12 2024-10-11 02:28:17.000 1994-05-12 2024-10-11 02:28:17 +8898 8898 8899 889.8 1779.6000000000001 8898 1994-05-13 2024-10-11 02:28:18.000 1994-05-13 2024-10-11 02:28:18 +8899 8899 8900 889.9 1779.8000000000002 8899 1994-05-14 2024-10-11 02:28:19.000 1994-05-14 2024-10-11 02:28:19 +8900 8900 8901 890 1780 8900 1994-05-15 2024-10-11 02:28:20.000 1994-05-15 2024-10-11 02:28:20 +8901 8901 8902 890.1 1780.2 8901 1994-05-16 2024-10-11 02:28:21.000 1994-05-16 2024-10-11 02:28:21 +8902 8902 8903 890.2 1780.4 8902 1994-05-17 2024-10-11 02:28:22.000 1994-05-17 2024-10-11 02:28:22 +8903 8903 8904 890.3 1780.6000000000001 8903 1994-05-18 2024-10-11 02:28:23.000 1994-05-18 2024-10-11 02:28:23 +8904 8904 8905 890.4 1780.8000000000002 8904 1994-05-19 2024-10-11 02:28:24.000 1994-05-19 2024-10-11 02:28:24 +8905 8905 8906 890.5 1781 8905 1994-05-20 2024-10-11 02:28:25.000 1994-05-20 2024-10-11 02:28:25 +8906 8906 8907 890.6 1781.2 8906 1994-05-21 2024-10-11 02:28:26.000 1994-05-21 2024-10-11 02:28:26 +8907 8907 8908 890.7 1781.4 8907 1994-05-22 2024-10-11 02:28:27.000 1994-05-22 2024-10-11 02:28:27 +8908 8908 8909 890.8 1781.6000000000001 8908 1994-05-23 2024-10-11 02:28:28.000 1994-05-23 2024-10-11 02:28:28 +8909 8909 8910 890.9 1781.8000000000002 8909 1994-05-24 2024-10-11 02:28:29.000 1994-05-24 2024-10-11 02:28:29 +8910 8910 8911 891 1782 8910 1994-05-25 2024-10-11 02:28:30.000 1994-05-25 2024-10-11 02:28:30 +8911 8911 8912 891.1 1782.2 8911 1994-05-26 2024-10-11 02:28:31.000 1994-05-26 2024-10-11 02:28:31 +8912 8912 8913 891.2 1782.4 8912 1994-05-27 2024-10-11 02:28:32.000 1994-05-27 2024-10-11 02:28:32 +8913 8913 8914 891.3 1782.6000000000001 8913 1994-05-28 2024-10-11 02:28:33.000 1994-05-28 2024-10-11 02:28:33 +8914 8914 8915 891.4 1782.8000000000002 8914 1994-05-29 2024-10-11 02:28:34.000 1994-05-29 2024-10-11 02:28:34 +8915 8915 8916 891.5 1783 8915 1994-05-30 2024-10-11 02:28:35.000 1994-05-30 2024-10-11 02:28:35 +8916 8916 8917 891.6 1783.2 8916 1994-05-31 2024-10-11 02:28:36.000 1994-05-31 2024-10-11 02:28:36 +8917 8917 8918 891.7 1783.4 8917 1994-06-01 2024-10-11 02:28:37.000 1994-06-01 2024-10-11 02:28:37 +8918 8918 8919 891.8 1783.6000000000001 8918 1994-06-02 2024-10-11 02:28:38.000 1994-06-02 2024-10-11 02:28:38 +8919 8919 8920 891.9 1783.8000000000002 8919 1994-06-03 2024-10-11 02:28:39.000 1994-06-03 2024-10-11 02:28:39 +8920 8920 8921 892 1784 8920 1994-06-04 2024-10-11 02:28:40.000 1994-06-04 2024-10-11 02:28:40 +8921 8921 8922 892.1 1784.2 8921 1994-06-05 2024-10-11 02:28:41.000 1994-06-05 2024-10-11 02:28:41 +8922 8922 8923 892.2 1784.4 8922 1994-06-06 2024-10-11 02:28:42.000 1994-06-06 2024-10-11 02:28:42 +8923 8923 8924 892.3 1784.6000000000001 8923 1994-06-07 2024-10-11 02:28:43.000 1994-06-07 2024-10-11 02:28:43 +8924 8924 8925 892.4 1784.8000000000002 8924 1994-06-08 2024-10-11 02:28:44.000 1994-06-08 2024-10-11 02:28:44 +8925 8925 8926 892.5 1785 8925 1994-06-09 2024-10-11 02:28:45.000 1994-06-09 2024-10-11 02:28:45 +8926 8926 8927 892.6 1785.2 8926 1994-06-10 2024-10-11 02:28:46.000 1994-06-10 2024-10-11 02:28:46 +8927 8927 8928 892.7 1785.4 8927 1994-06-11 2024-10-11 02:28:47.000 1994-06-11 2024-10-11 02:28:47 +8928 8928 8929 892.8 1785.6000000000001 8928 1994-06-12 2024-10-11 02:28:48.000 1994-06-12 2024-10-11 02:28:48 +8929 8929 8930 892.9 1785.8000000000002 8929 1994-06-13 2024-10-11 02:28:49.000 1994-06-13 2024-10-11 02:28:49 +8930 8930 8931 893 1786 8930 1994-06-14 2024-10-11 02:28:50.000 1994-06-14 2024-10-11 02:28:50 +8931 8931 8932 893.1 1786.2 8931 1994-06-15 2024-10-11 02:28:51.000 1994-06-15 2024-10-11 02:28:51 +8932 8932 8933 893.2 1786.4 8932 1994-06-16 2024-10-11 02:28:52.000 1994-06-16 2024-10-11 02:28:52 +8933 8933 8934 893.3 1786.6000000000001 8933 1994-06-17 2024-10-11 02:28:53.000 1994-06-17 2024-10-11 02:28:53 +8934 8934 8935 893.4 1786.8000000000002 8934 1994-06-18 2024-10-11 02:28:54.000 1994-06-18 2024-10-11 02:28:54 +8935 8935 8936 893.5 1787 8935 1994-06-19 2024-10-11 02:28:55.000 1994-06-19 2024-10-11 02:28:55 +8936 8936 8937 893.6 1787.2 8936 1994-06-20 2024-10-11 02:28:56.000 1994-06-20 2024-10-11 02:28:56 +8937 8937 8938 893.7 1787.4 8937 1994-06-21 2024-10-11 02:28:57.000 1994-06-21 2024-10-11 02:28:57 +8938 8938 8939 893.8 1787.6000000000001 8938 1994-06-22 2024-10-11 02:28:58.000 1994-06-22 2024-10-11 02:28:58 +8939 8939 8940 893.9 1787.8000000000002 8939 1994-06-23 2024-10-11 02:28:59.000 1994-06-23 2024-10-11 02:28:59 +8940 8940 8941 894 1788 8940 1994-06-24 2024-10-11 02:29:00.000 1994-06-24 2024-10-11 02:29:00 +8941 8941 8942 894.1 1788.2 8941 1994-06-25 2024-10-11 02:29:01.000 1994-06-25 2024-10-11 02:29:01 +8942 8942 8943 894.2 1788.4 8942 1994-06-26 2024-10-11 02:29:02.000 1994-06-26 2024-10-11 02:29:02 +8943 8943 8944 894.3 1788.6000000000001 8943 1994-06-27 2024-10-11 02:29:03.000 1994-06-27 2024-10-11 02:29:03 +8944 8944 8945 894.4 1788.8000000000002 8944 1994-06-28 2024-10-11 02:29:04.000 1994-06-28 2024-10-11 02:29:04 +8945 8945 8946 894.5 1789 8945 1994-06-29 2024-10-11 02:29:05.000 1994-06-29 2024-10-11 02:29:05 +8946 8946 8947 894.6 1789.2 8946 1994-06-30 2024-10-11 02:29:06.000 1994-06-30 2024-10-11 02:29:06 +8947 8947 8948 894.7 1789.4 8947 1994-07-01 2024-10-11 02:29:07.000 1994-07-01 2024-10-11 02:29:07 +8948 8948 8949 894.8 1789.6000000000001 8948 1994-07-02 2024-10-11 02:29:08.000 1994-07-02 2024-10-11 02:29:08 +8949 8949 8950 894.9 1789.8000000000002 8949 1994-07-03 2024-10-11 02:29:09.000 1994-07-03 2024-10-11 02:29:09 +8950 8950 8951 895 1790 8950 1994-07-04 2024-10-11 02:29:10.000 1994-07-04 2024-10-11 02:29:10 +8951 8951 8952 895.1 1790.2 8951 1994-07-05 2024-10-11 02:29:11.000 1994-07-05 2024-10-11 02:29:11 +8952 8952 8953 895.2 1790.4 8952 1994-07-06 2024-10-11 02:29:12.000 1994-07-06 2024-10-11 02:29:12 +8953 8953 8954 895.3 1790.6000000000001 8953 1994-07-07 2024-10-11 02:29:13.000 1994-07-07 2024-10-11 02:29:13 +8954 8954 8955 895.4 1790.8000000000002 8954 1994-07-08 2024-10-11 02:29:14.000 1994-07-08 2024-10-11 02:29:14 +8955 8955 8956 895.5 1791 8955 1994-07-09 2024-10-11 02:29:15.000 1994-07-09 2024-10-11 02:29:15 +8956 8956 8957 895.6 1791.2 8956 1994-07-10 2024-10-11 02:29:16.000 1994-07-10 2024-10-11 02:29:16 +8957 8957 8958 895.7 1791.4 8957 1994-07-11 2024-10-11 02:29:17.000 1994-07-11 2024-10-11 02:29:17 +8958 8958 8959 895.8 1791.6000000000001 8958 1994-07-12 2024-10-11 02:29:18.000 1994-07-12 2024-10-11 02:29:18 +8959 8959 8960 895.9 1791.8000000000002 8959 1994-07-13 2024-10-11 02:29:19.000 1994-07-13 2024-10-11 02:29:19 +8960 8960 8961 896 1792 8960 1994-07-14 2024-10-11 02:29:20.000 1994-07-14 2024-10-11 02:29:20 +8961 8961 8962 896.1 1792.2 8961 1994-07-15 2024-10-11 02:29:21.000 1994-07-15 2024-10-11 02:29:21 +8962 8962 8963 896.2 1792.4 8962 1994-07-16 2024-10-11 02:29:22.000 1994-07-16 2024-10-11 02:29:22 +8963 8963 8964 896.3 1792.6000000000001 8963 1994-07-17 2024-10-11 02:29:23.000 1994-07-17 2024-10-11 02:29:23 +8964 8964 8965 896.4 1792.8000000000002 8964 1994-07-18 2024-10-11 02:29:24.000 1994-07-18 2024-10-11 02:29:24 +8965 8965 8966 896.5 1793 8965 1994-07-19 2024-10-11 02:29:25.000 1994-07-19 2024-10-11 02:29:25 +8966 8966 8967 896.6 1793.2 8966 1994-07-20 2024-10-11 02:29:26.000 1994-07-20 2024-10-11 02:29:26 +8967 8967 8968 896.7 1793.4 8967 1994-07-21 2024-10-11 02:29:27.000 1994-07-21 2024-10-11 02:29:27 +8968 8968 8969 896.8 1793.6000000000001 8968 1994-07-22 2024-10-11 02:29:28.000 1994-07-22 2024-10-11 02:29:28 +8969 8969 8970 896.9 1793.8000000000002 8969 1994-07-23 2024-10-11 02:29:29.000 1994-07-23 2024-10-11 02:29:29 +8970 8970 8971 897 1794 8970 1994-07-24 2024-10-11 02:29:30.000 1994-07-24 2024-10-11 02:29:30 +8971 8971 8972 897.1 1794.2 8971 1994-07-25 2024-10-11 02:29:31.000 1994-07-25 2024-10-11 02:29:31 +8972 8972 8973 897.2 1794.4 8972 1994-07-26 2024-10-11 02:29:32.000 1994-07-26 2024-10-11 02:29:32 +8973 8973 8974 897.3 1794.6000000000001 8973 1994-07-27 2024-10-11 02:29:33.000 1994-07-27 2024-10-11 02:29:33 +8974 8974 8975 897.4 1794.8000000000002 8974 1994-07-28 2024-10-11 02:29:34.000 1994-07-28 2024-10-11 02:29:34 +8975 8975 8976 897.5 1795 8975 1994-07-29 2024-10-11 02:29:35.000 1994-07-29 2024-10-11 02:29:35 +8976 8976 8977 897.6 1795.2 8976 1994-07-30 2024-10-11 02:29:36.000 1994-07-30 2024-10-11 02:29:36 +8977 8977 8978 897.7 1795.4 8977 1994-07-31 2024-10-11 02:29:37.000 1994-07-31 2024-10-11 02:29:37 +8978 8978 8979 897.8 1795.6000000000001 8978 1994-08-01 2024-10-11 02:29:38.000 1994-08-01 2024-10-11 02:29:38 +8979 8979 8980 897.9 1795.8000000000002 8979 1994-08-02 2024-10-11 02:29:39.000 1994-08-02 2024-10-11 02:29:39 +8980 8980 8981 898 1796 8980 1994-08-03 2024-10-11 02:29:40.000 1994-08-03 2024-10-11 02:29:40 +8981 8981 8982 898.1 1796.2 8981 1994-08-04 2024-10-11 02:29:41.000 1994-08-04 2024-10-11 02:29:41 +8982 8982 8983 898.2 1796.4 8982 1994-08-05 2024-10-11 02:29:42.000 1994-08-05 2024-10-11 02:29:42 +8983 8983 8984 898.3 1796.6000000000001 8983 1994-08-06 2024-10-11 02:29:43.000 1994-08-06 2024-10-11 02:29:43 +8984 8984 8985 898.4 1796.8000000000002 8984 1994-08-07 2024-10-11 02:29:44.000 1994-08-07 2024-10-11 02:29:44 +8985 8985 8986 898.5 1797 8985 1994-08-08 2024-10-11 02:29:45.000 1994-08-08 2024-10-11 02:29:45 +8986 8986 8987 898.6 1797.2 8986 1994-08-09 2024-10-11 02:29:46.000 1994-08-09 2024-10-11 02:29:46 +8987 8987 8988 898.7 1797.4 8987 1994-08-10 2024-10-11 02:29:47.000 1994-08-10 2024-10-11 02:29:47 +8988 8988 8989 898.8 1797.6000000000001 8988 1994-08-11 2024-10-11 02:29:48.000 1994-08-11 2024-10-11 02:29:48 +8989 8989 8990 898.9 1797.8000000000002 8989 1994-08-12 2024-10-11 02:29:49.000 1994-08-12 2024-10-11 02:29:49 +8990 8990 8991 899 1798 8990 1994-08-13 2024-10-11 02:29:50.000 1994-08-13 2024-10-11 02:29:50 +8991 8991 8992 899.1 1798.2 8991 1994-08-14 2024-10-11 02:29:51.000 1994-08-14 2024-10-11 02:29:51 +8992 8992 8993 899.2 1798.4 8992 1994-08-15 2024-10-11 02:29:52.000 1994-08-15 2024-10-11 02:29:52 +8993 8993 8994 899.3 1798.6000000000001 8993 1994-08-16 2024-10-11 02:29:53.000 1994-08-16 2024-10-11 02:29:53 +8994 8994 8995 899.4 1798.8000000000002 8994 1994-08-17 2024-10-11 02:29:54.000 1994-08-17 2024-10-11 02:29:54 +8995 8995 8996 899.5 1799 8995 1994-08-18 2024-10-11 02:29:55.000 1994-08-18 2024-10-11 02:29:55 +8996 8996 8997 899.6 1799.2 8996 1994-08-19 2024-10-11 02:29:56.000 1994-08-19 2024-10-11 02:29:56 +8997 8997 8998 899.7 1799.4 8997 1994-08-20 2024-10-11 02:29:57.000 1994-08-20 2024-10-11 02:29:57 +8998 8998 8999 899.8 1799.6000000000001 8998 1994-08-21 2024-10-11 02:29:58.000 1994-08-21 2024-10-11 02:29:58 +8999 8999 9000 899.9 1799.8000000000002 8999 1994-08-22 2024-10-11 02:29:59.000 1994-08-22 2024-10-11 02:29:59 +9000 9000 9001 900 1800 9000 1994-08-23 2024-10-11 02:30:00.000 1994-08-23 2024-10-11 02:30:00 +9001 9001 9002 900.1 1800.2 9001 1994-08-24 2024-10-11 02:30:01.000 1994-08-24 2024-10-11 02:30:01 +9002 9002 9003 900.2 1800.4 9002 1994-08-25 2024-10-11 02:30:02.000 1994-08-25 2024-10-11 02:30:02 +9003 9003 9004 900.3 1800.6000000000001 9003 1994-08-26 2024-10-11 02:30:03.000 1994-08-26 2024-10-11 02:30:03 +9004 9004 9005 900.4 1800.8000000000002 9004 1994-08-27 2024-10-11 02:30:04.000 1994-08-27 2024-10-11 02:30:04 +9005 9005 9006 900.5 1801 9005 1994-08-28 2024-10-11 02:30:05.000 1994-08-28 2024-10-11 02:30:05 +9006 9006 9007 900.6 1801.2 9006 1994-08-29 2024-10-11 02:30:06.000 1994-08-29 2024-10-11 02:30:06 +9007 9007 9008 900.7 1801.4 9007 1994-08-30 2024-10-11 02:30:07.000 1994-08-30 2024-10-11 02:30:07 +9008 9008 9009 900.8 1801.6000000000001 9008 1994-08-31 2024-10-11 02:30:08.000 1994-08-31 2024-10-11 02:30:08 +9009 9009 9010 900.9 1801.8000000000002 9009 1994-09-01 2024-10-11 02:30:09.000 1994-09-01 2024-10-11 02:30:09 +9010 9010 9011 901 1802 9010 1994-09-02 2024-10-11 02:30:10.000 1994-09-02 2024-10-11 02:30:10 +9011 9011 9012 901.1 1802.2 9011 1994-09-03 2024-10-11 02:30:11.000 1994-09-03 2024-10-11 02:30:11 +9012 9012 9013 901.2 1802.4 9012 1994-09-04 2024-10-11 02:30:12.000 1994-09-04 2024-10-11 02:30:12 +9013 9013 9014 901.3 1802.6000000000001 9013 1994-09-05 2024-10-11 02:30:13.000 1994-09-05 2024-10-11 02:30:13 +9014 9014 9015 901.4 1802.8000000000002 9014 1994-09-06 2024-10-11 02:30:14.000 1994-09-06 2024-10-11 02:30:14 +9015 9015 9016 901.5 1803 9015 1994-09-07 2024-10-11 02:30:15.000 1994-09-07 2024-10-11 02:30:15 +9016 9016 9017 901.6 1803.2 9016 1994-09-08 2024-10-11 02:30:16.000 1994-09-08 2024-10-11 02:30:16 +9017 9017 9018 901.7 1803.4 9017 1994-09-09 2024-10-11 02:30:17.000 1994-09-09 2024-10-11 02:30:17 +9018 9018 9019 901.8 1803.6000000000001 9018 1994-09-10 2024-10-11 02:30:18.000 1994-09-10 2024-10-11 02:30:18 +9019 9019 9020 901.9 1803.8000000000002 9019 1994-09-11 2024-10-11 02:30:19.000 1994-09-11 2024-10-11 02:30:19 +9020 9020 9021 902 1804 9020 1994-09-12 2024-10-11 02:30:20.000 1994-09-12 2024-10-11 02:30:20 +9021 9021 9022 902.1 1804.2 9021 1994-09-13 2024-10-11 02:30:21.000 1994-09-13 2024-10-11 02:30:21 +9022 9022 9023 902.2 1804.4 9022 1994-09-14 2024-10-11 02:30:22.000 1994-09-14 2024-10-11 02:30:22 +9023 9023 9024 902.3 1804.6000000000001 9023 1994-09-15 2024-10-11 02:30:23.000 1994-09-15 2024-10-11 02:30:23 +9024 9024 9025 902.4 1804.8000000000002 9024 1994-09-16 2024-10-11 02:30:24.000 1994-09-16 2024-10-11 02:30:24 +9025 9025 9026 902.5 1805 9025 1994-09-17 2024-10-11 02:30:25.000 1994-09-17 2024-10-11 02:30:25 +9026 9026 9027 902.6 1805.2 9026 1994-09-18 2024-10-11 02:30:26.000 1994-09-18 2024-10-11 02:30:26 +9027 9027 9028 902.7 1805.4 9027 1994-09-19 2024-10-11 02:30:27.000 1994-09-19 2024-10-11 02:30:27 +9028 9028 9029 902.8 1805.6000000000001 9028 1994-09-20 2024-10-11 02:30:28.000 1994-09-20 2024-10-11 02:30:28 +9029 9029 9030 902.9 1805.8000000000002 9029 1994-09-21 2024-10-11 02:30:29.000 1994-09-21 2024-10-11 02:30:29 +9030 9030 9031 903 1806 9030 1994-09-22 2024-10-11 02:30:30.000 1994-09-22 2024-10-11 02:30:30 +9031 9031 9032 903.1 1806.2 9031 1994-09-23 2024-10-11 02:30:31.000 1994-09-23 2024-10-11 02:30:31 +9032 9032 9033 903.2 1806.4 9032 1994-09-24 2024-10-11 02:30:32.000 1994-09-24 2024-10-11 02:30:32 +9033 9033 9034 903.3 1806.6000000000001 9033 1994-09-25 2024-10-11 02:30:33.000 1994-09-25 2024-10-11 02:30:33 +9034 9034 9035 903.4 1806.8000000000002 9034 1994-09-26 2024-10-11 02:30:34.000 1994-09-26 2024-10-11 02:30:34 +9035 9035 9036 903.5 1807 9035 1994-09-27 2024-10-11 02:30:35.000 1994-09-27 2024-10-11 02:30:35 +9036 9036 9037 903.6 1807.2 9036 1994-09-28 2024-10-11 02:30:36.000 1994-09-28 2024-10-11 02:30:36 +9037 9037 9038 903.7 1807.4 9037 1994-09-29 2024-10-11 02:30:37.000 1994-09-29 2024-10-11 02:30:37 +9038 9038 9039 903.8 1807.6000000000001 9038 1994-09-30 2024-10-11 02:30:38.000 1994-09-30 2024-10-11 02:30:38 +9039 9039 9040 903.9 1807.8000000000002 9039 1994-10-01 2024-10-11 02:30:39.000 1994-10-01 2024-10-11 02:30:39 +9040 9040 9041 904 1808 9040 1994-10-02 2024-10-11 02:30:40.000 1994-10-02 2024-10-11 02:30:40 +9041 9041 9042 904.1 1808.2 9041 1994-10-03 2024-10-11 02:30:41.000 1994-10-03 2024-10-11 02:30:41 +9042 9042 9043 904.2 1808.4 9042 1994-10-04 2024-10-11 02:30:42.000 1994-10-04 2024-10-11 02:30:42 +9043 9043 9044 904.3 1808.6000000000001 9043 1994-10-05 2024-10-11 02:30:43.000 1994-10-05 2024-10-11 02:30:43 +9044 9044 9045 904.4 1808.8000000000002 9044 1994-10-06 2024-10-11 02:30:44.000 1994-10-06 2024-10-11 02:30:44 +9045 9045 9046 904.5 1809 9045 1994-10-07 2024-10-11 02:30:45.000 1994-10-07 2024-10-11 02:30:45 +9046 9046 9047 904.6 1809.2 9046 1994-10-08 2024-10-11 02:30:46.000 1994-10-08 2024-10-11 02:30:46 +9047 9047 9048 904.7 1809.4 9047 1994-10-09 2024-10-11 02:30:47.000 1994-10-09 2024-10-11 02:30:47 +9048 9048 9049 904.8 1809.6000000000001 9048 1994-10-10 2024-10-11 02:30:48.000 1994-10-10 2024-10-11 02:30:48 +9049 9049 9050 904.9 1809.8000000000002 9049 1994-10-11 2024-10-11 02:30:49.000 1994-10-11 2024-10-11 02:30:49 +9050 9050 9051 905 1810 9050 1994-10-12 2024-10-11 02:30:50.000 1994-10-12 2024-10-11 02:30:50 +9051 9051 9052 905.1 1810.2 9051 1994-10-13 2024-10-11 02:30:51.000 1994-10-13 2024-10-11 02:30:51 +9052 9052 9053 905.2 1810.4 9052 1994-10-14 2024-10-11 02:30:52.000 1994-10-14 2024-10-11 02:30:52 +9053 9053 9054 905.3 1810.6000000000001 9053 1994-10-15 2024-10-11 02:30:53.000 1994-10-15 2024-10-11 02:30:53 +9054 9054 9055 905.4 1810.8000000000002 9054 1994-10-16 2024-10-11 02:30:54.000 1994-10-16 2024-10-11 02:30:54 +9055 9055 9056 905.5 1811 9055 1994-10-17 2024-10-11 02:30:55.000 1994-10-17 2024-10-11 02:30:55 +9056 9056 9057 905.6 1811.2 9056 1994-10-18 2024-10-11 02:30:56.000 1994-10-18 2024-10-11 02:30:56 +9057 9057 9058 905.7 1811.4 9057 1994-10-19 2024-10-11 02:30:57.000 1994-10-19 2024-10-11 02:30:57 +9058 9058 9059 905.8 1811.6000000000001 9058 1994-10-20 2024-10-11 02:30:58.000 1994-10-20 2024-10-11 02:30:58 +9059 9059 9060 905.9 1811.8000000000002 9059 1994-10-21 2024-10-11 02:30:59.000 1994-10-21 2024-10-11 02:30:59 +9060 9060 9061 906 1812 9060 1994-10-22 2024-10-11 02:31:00.000 1994-10-22 2024-10-11 02:31:00 +9061 9061 9062 906.1 1812.2 9061 1994-10-23 2024-10-11 02:31:01.000 1994-10-23 2024-10-11 02:31:01 +9062 9062 9063 906.2 1812.4 9062 1994-10-24 2024-10-11 02:31:02.000 1994-10-24 2024-10-11 02:31:02 +9063 9063 9064 906.3 1812.6000000000001 9063 1994-10-25 2024-10-11 02:31:03.000 1994-10-25 2024-10-11 02:31:03 +9064 9064 9065 906.4 1812.8000000000002 9064 1994-10-26 2024-10-11 02:31:04.000 1994-10-26 2024-10-11 02:31:04 +9065 9065 9066 906.5 1813 9065 1994-10-27 2024-10-11 02:31:05.000 1994-10-27 2024-10-11 02:31:05 +9066 9066 9067 906.6 1813.2 9066 1994-10-28 2024-10-11 02:31:06.000 1994-10-28 2024-10-11 02:31:06 +9067 9067 9068 906.7 1813.4 9067 1994-10-29 2024-10-11 02:31:07.000 1994-10-29 2024-10-11 02:31:07 +9068 9068 9069 906.8 1813.6000000000001 9068 1994-10-30 2024-10-11 02:31:08.000 1994-10-30 2024-10-11 02:31:08 +9069 9069 9070 906.9 1813.8000000000002 9069 1994-10-31 2024-10-11 02:31:09.000 1994-10-31 2024-10-11 02:31:09 +9070 9070 9071 907 1814 9070 1994-11-01 2024-10-11 02:31:10.000 1994-11-01 2024-10-11 02:31:10 +9071 9071 9072 907.1 1814.2 9071 1994-11-02 2024-10-11 02:31:11.000 1994-11-02 2024-10-11 02:31:11 +9072 9072 9073 907.2 1814.4 9072 1994-11-03 2024-10-11 02:31:12.000 1994-11-03 2024-10-11 02:31:12 +9073 9073 9074 907.3 1814.6000000000001 9073 1994-11-04 2024-10-11 02:31:13.000 1994-11-04 2024-10-11 02:31:13 +9074 9074 9075 907.4 1814.8000000000002 9074 1994-11-05 2024-10-11 02:31:14.000 1994-11-05 2024-10-11 02:31:14 +9075 9075 9076 907.5 1815 9075 1994-11-06 2024-10-11 02:31:15.000 1994-11-06 2024-10-11 02:31:15 +9076 9076 9077 907.6 1815.2 9076 1994-11-07 2024-10-11 02:31:16.000 1994-11-07 2024-10-11 02:31:16 +9077 9077 9078 907.7 1815.4 9077 1994-11-08 2024-10-11 02:31:17.000 1994-11-08 2024-10-11 02:31:17 +9078 9078 9079 907.8 1815.6000000000001 9078 1994-11-09 2024-10-11 02:31:18.000 1994-11-09 2024-10-11 02:31:18 +9079 9079 9080 907.9 1815.8000000000002 9079 1994-11-10 2024-10-11 02:31:19.000 1994-11-10 2024-10-11 02:31:19 +9080 9080 9081 908 1816 9080 1994-11-11 2024-10-11 02:31:20.000 1994-11-11 2024-10-11 02:31:20 +9081 9081 9082 908.1 1816.2 9081 1994-11-12 2024-10-11 02:31:21.000 1994-11-12 2024-10-11 02:31:21 +9082 9082 9083 908.2 1816.4 9082 1994-11-13 2024-10-11 02:31:22.000 1994-11-13 2024-10-11 02:31:22 +9083 9083 9084 908.3 1816.6000000000001 9083 1994-11-14 2024-10-11 02:31:23.000 1994-11-14 2024-10-11 02:31:23 +9084 9084 9085 908.4 1816.8000000000002 9084 1994-11-15 2024-10-11 02:31:24.000 1994-11-15 2024-10-11 02:31:24 +9085 9085 9086 908.5 1817 9085 1994-11-16 2024-10-11 02:31:25.000 1994-11-16 2024-10-11 02:31:25 +9086 9086 9087 908.6 1817.2 9086 1994-11-17 2024-10-11 02:31:26.000 1994-11-17 2024-10-11 02:31:26 +9087 9087 9088 908.7 1817.4 9087 1994-11-18 2024-10-11 02:31:27.000 1994-11-18 2024-10-11 02:31:27 +9088 9088 9089 908.8 1817.6000000000001 9088 1994-11-19 2024-10-11 02:31:28.000 1994-11-19 2024-10-11 02:31:28 +9089 9089 9090 908.9 1817.8000000000002 9089 1994-11-20 2024-10-11 02:31:29.000 1994-11-20 2024-10-11 02:31:29 +9090 9090 9091 909 1818 9090 1994-11-21 2024-10-11 02:31:30.000 1994-11-21 2024-10-11 02:31:30 +9091 9091 9092 909.1 1818.2 9091 1994-11-22 2024-10-11 02:31:31.000 1994-11-22 2024-10-11 02:31:31 +9092 9092 9093 909.2 1818.4 9092 1994-11-23 2024-10-11 02:31:32.000 1994-11-23 2024-10-11 02:31:32 +9093 9093 9094 909.3 1818.6000000000001 9093 1994-11-24 2024-10-11 02:31:33.000 1994-11-24 2024-10-11 02:31:33 +9094 9094 9095 909.4 1818.8000000000002 9094 1994-11-25 2024-10-11 02:31:34.000 1994-11-25 2024-10-11 02:31:34 +9095 9095 9096 909.5 1819 9095 1994-11-26 2024-10-11 02:31:35.000 1994-11-26 2024-10-11 02:31:35 +9096 9096 9097 909.6 1819.2 9096 1994-11-27 2024-10-11 02:31:36.000 1994-11-27 2024-10-11 02:31:36 +9097 9097 9098 909.7 1819.4 9097 1994-11-28 2024-10-11 02:31:37.000 1994-11-28 2024-10-11 02:31:37 +9098 9098 9099 909.8 1819.6000000000001 9098 1994-11-29 2024-10-11 02:31:38.000 1994-11-29 2024-10-11 02:31:38 +9099 9099 9100 909.9 1819.8000000000002 9099 1994-11-30 2024-10-11 02:31:39.000 1994-11-30 2024-10-11 02:31:39 +9100 9100 9101 910 1820 9100 1994-12-01 2024-10-11 02:31:40.000 1994-12-01 2024-10-11 02:31:40 +9101 9101 9102 910.1 1820.2 9101 1994-12-02 2024-10-11 02:31:41.000 1994-12-02 2024-10-11 02:31:41 +9102 9102 9103 910.2 1820.4 9102 1994-12-03 2024-10-11 02:31:42.000 1994-12-03 2024-10-11 02:31:42 +9103 9103 9104 910.3 1820.6000000000001 9103 1994-12-04 2024-10-11 02:31:43.000 1994-12-04 2024-10-11 02:31:43 +9104 9104 9105 910.4 1820.8000000000002 9104 1994-12-05 2024-10-11 02:31:44.000 1994-12-05 2024-10-11 02:31:44 +9105 9105 9106 910.5 1821 9105 1994-12-06 2024-10-11 02:31:45.000 1994-12-06 2024-10-11 02:31:45 +9106 9106 9107 910.6 1821.2 9106 1994-12-07 2024-10-11 02:31:46.000 1994-12-07 2024-10-11 02:31:46 +9107 9107 9108 910.7 1821.4 9107 1994-12-08 2024-10-11 02:31:47.000 1994-12-08 2024-10-11 02:31:47 +9108 9108 9109 910.8 1821.6000000000001 9108 1994-12-09 2024-10-11 02:31:48.000 1994-12-09 2024-10-11 02:31:48 +9109 9109 9110 910.9 1821.8000000000002 9109 1994-12-10 2024-10-11 02:31:49.000 1994-12-10 2024-10-11 02:31:49 +9110 9110 9111 911 1822 9110 1994-12-11 2024-10-11 02:31:50.000 1994-12-11 2024-10-11 02:31:50 +9111 9111 9112 911.1 1822.2 9111 1994-12-12 2024-10-11 02:31:51.000 1994-12-12 2024-10-11 02:31:51 +9112 9112 9113 911.2 1822.4 9112 1994-12-13 2024-10-11 02:31:52.000 1994-12-13 2024-10-11 02:31:52 +9113 9113 9114 911.3 1822.6000000000001 9113 1994-12-14 2024-10-11 02:31:53.000 1994-12-14 2024-10-11 02:31:53 +9114 9114 9115 911.4 1822.8000000000002 9114 1994-12-15 2024-10-11 02:31:54.000 1994-12-15 2024-10-11 02:31:54 +9115 9115 9116 911.5 1823 9115 1994-12-16 2024-10-11 02:31:55.000 1994-12-16 2024-10-11 02:31:55 +9116 9116 9117 911.6 1823.2 9116 1994-12-17 2024-10-11 02:31:56.000 1994-12-17 2024-10-11 02:31:56 +9117 9117 9118 911.7 1823.4 9117 1994-12-18 2024-10-11 02:31:57.000 1994-12-18 2024-10-11 02:31:57 +9118 9118 9119 911.8 1823.6000000000001 9118 1994-12-19 2024-10-11 02:31:58.000 1994-12-19 2024-10-11 02:31:58 +9119 9119 9120 911.9 1823.8000000000002 9119 1994-12-20 2024-10-11 02:31:59.000 1994-12-20 2024-10-11 02:31:59 +9120 9120 9121 912 1824 9120 1994-12-21 2024-10-11 02:32:00.000 1994-12-21 2024-10-11 02:32:00 +9121 9121 9122 912.1 1824.2 9121 1994-12-22 2024-10-11 02:32:01.000 1994-12-22 2024-10-11 02:32:01 +9122 9122 9123 912.2 1824.4 9122 1994-12-23 2024-10-11 02:32:02.000 1994-12-23 2024-10-11 02:32:02 +9123 9123 9124 912.3 1824.6000000000001 9123 1994-12-24 2024-10-11 02:32:03.000 1994-12-24 2024-10-11 02:32:03 +9124 9124 9125 912.4 1824.8000000000002 9124 1994-12-25 2024-10-11 02:32:04.000 1994-12-25 2024-10-11 02:32:04 +9125 9125 9126 912.5 1825 9125 1994-12-26 2024-10-11 02:32:05.000 1994-12-26 2024-10-11 02:32:05 +9126 9126 9127 912.6 1825.2 9126 1994-12-27 2024-10-11 02:32:06.000 1994-12-27 2024-10-11 02:32:06 +9127 9127 9128 912.7 1825.4 9127 1994-12-28 2024-10-11 02:32:07.000 1994-12-28 2024-10-11 02:32:07 +9128 9128 9129 912.8 1825.6000000000001 9128 1994-12-29 2024-10-11 02:32:08.000 1994-12-29 2024-10-11 02:32:08 +9129 9129 9130 912.9 1825.8000000000002 9129 1994-12-30 2024-10-11 02:32:09.000 1994-12-30 2024-10-11 02:32:09 +9130 9130 9131 913 1826 9130 1994-12-31 2024-10-11 02:32:10.000 1994-12-31 2024-10-11 02:32:10 +9131 9131 9132 913.1 1826.2 9131 1995-01-01 2024-10-11 02:32:11.000 1995-01-01 2024-10-11 02:32:11 +9132 9132 9133 913.2 1826.4 9132 1995-01-02 2024-10-11 02:32:12.000 1995-01-02 2024-10-11 02:32:12 +9133 9133 9134 913.3 1826.6000000000001 9133 1995-01-03 2024-10-11 02:32:13.000 1995-01-03 2024-10-11 02:32:13 +9134 9134 9135 913.4 1826.8000000000002 9134 1995-01-04 2024-10-11 02:32:14.000 1995-01-04 2024-10-11 02:32:14 +9135 9135 9136 913.5 1827 9135 1995-01-05 2024-10-11 02:32:15.000 1995-01-05 2024-10-11 02:32:15 +9136 9136 9137 913.6 1827.2 9136 1995-01-06 2024-10-11 02:32:16.000 1995-01-06 2024-10-11 02:32:16 +9137 9137 9138 913.7 1827.4 9137 1995-01-07 2024-10-11 02:32:17.000 1995-01-07 2024-10-11 02:32:17 +9138 9138 9139 913.8 1827.6000000000001 9138 1995-01-08 2024-10-11 02:32:18.000 1995-01-08 2024-10-11 02:32:18 +9139 9139 9140 913.9 1827.8000000000002 9139 1995-01-09 2024-10-11 02:32:19.000 1995-01-09 2024-10-11 02:32:19 +9140 9140 9141 914 1828 9140 1995-01-10 2024-10-11 02:32:20.000 1995-01-10 2024-10-11 02:32:20 +9141 9141 9142 914.1 1828.2 9141 1995-01-11 2024-10-11 02:32:21.000 1995-01-11 2024-10-11 02:32:21 +9142 9142 9143 914.2 1828.4 9142 1995-01-12 2024-10-11 02:32:22.000 1995-01-12 2024-10-11 02:32:22 +9143 9143 9144 914.3 1828.6000000000001 9143 1995-01-13 2024-10-11 02:32:23.000 1995-01-13 2024-10-11 02:32:23 +9144 9144 9145 914.4 1828.8000000000002 9144 1995-01-14 2024-10-11 02:32:24.000 1995-01-14 2024-10-11 02:32:24 +9145 9145 9146 914.5 1829 9145 1995-01-15 2024-10-11 02:32:25.000 1995-01-15 2024-10-11 02:32:25 +9146 9146 9147 914.6 1829.2 9146 1995-01-16 2024-10-11 02:32:26.000 1995-01-16 2024-10-11 02:32:26 +9147 9147 9148 914.7 1829.4 9147 1995-01-17 2024-10-11 02:32:27.000 1995-01-17 2024-10-11 02:32:27 +9148 9148 9149 914.8 1829.6000000000001 9148 1995-01-18 2024-10-11 02:32:28.000 1995-01-18 2024-10-11 02:32:28 +9149 9149 9150 914.9 1829.8000000000002 9149 1995-01-19 2024-10-11 02:32:29.000 1995-01-19 2024-10-11 02:32:29 +9150 9150 9151 915 1830 9150 1995-01-20 2024-10-11 02:32:30.000 1995-01-20 2024-10-11 02:32:30 +9151 9151 9152 915.1 1830.2 9151 1995-01-21 2024-10-11 02:32:31.000 1995-01-21 2024-10-11 02:32:31 +9152 9152 9153 915.2 1830.4 9152 1995-01-22 2024-10-11 02:32:32.000 1995-01-22 2024-10-11 02:32:32 +9153 9153 9154 915.3 1830.6000000000001 9153 1995-01-23 2024-10-11 02:32:33.000 1995-01-23 2024-10-11 02:32:33 +9154 9154 9155 915.4 1830.8000000000002 9154 1995-01-24 2024-10-11 02:32:34.000 1995-01-24 2024-10-11 02:32:34 +9155 9155 9156 915.5 1831 9155 1995-01-25 2024-10-11 02:32:35.000 1995-01-25 2024-10-11 02:32:35 +9156 9156 9157 915.6 1831.2 9156 1995-01-26 2024-10-11 02:32:36.000 1995-01-26 2024-10-11 02:32:36 +9157 9157 9158 915.7 1831.4 9157 1995-01-27 2024-10-11 02:32:37.000 1995-01-27 2024-10-11 02:32:37 +9158 9158 9159 915.8 1831.6000000000001 9158 1995-01-28 2024-10-11 02:32:38.000 1995-01-28 2024-10-11 02:32:38 +9159 9159 9160 915.9 1831.8000000000002 9159 1995-01-29 2024-10-11 02:32:39.000 1995-01-29 2024-10-11 02:32:39 +9160 9160 9161 916 1832 9160 1995-01-30 2024-10-11 02:32:40.000 1995-01-30 2024-10-11 02:32:40 +9161 9161 9162 916.1 1832.2 9161 1995-01-31 2024-10-11 02:32:41.000 1995-01-31 2024-10-11 02:32:41 +9162 9162 9163 916.2 1832.4 9162 1995-02-01 2024-10-11 02:32:42.000 1995-02-01 2024-10-11 02:32:42 +9163 9163 9164 916.3 1832.6000000000001 9163 1995-02-02 2024-10-11 02:32:43.000 1995-02-02 2024-10-11 02:32:43 +9164 9164 9165 916.4 1832.8000000000002 9164 1995-02-03 2024-10-11 02:32:44.000 1995-02-03 2024-10-11 02:32:44 +9165 9165 9166 916.5 1833 9165 1995-02-04 2024-10-11 02:32:45.000 1995-02-04 2024-10-11 02:32:45 +9166 9166 9167 916.6 1833.2 9166 1995-02-05 2024-10-11 02:32:46.000 1995-02-05 2024-10-11 02:32:46 +9167 9167 9168 916.7 1833.4 9167 1995-02-06 2024-10-11 02:32:47.000 1995-02-06 2024-10-11 02:32:47 +9168 9168 9169 916.8 1833.6000000000001 9168 1995-02-07 2024-10-11 02:32:48.000 1995-02-07 2024-10-11 02:32:48 +9169 9169 9170 916.9 1833.8000000000002 9169 1995-02-08 2024-10-11 02:32:49.000 1995-02-08 2024-10-11 02:32:49 +9170 9170 9171 917 1834 9170 1995-02-09 2024-10-11 02:32:50.000 1995-02-09 2024-10-11 02:32:50 +9171 9171 9172 917.1 1834.2 9171 1995-02-10 2024-10-11 02:32:51.000 1995-02-10 2024-10-11 02:32:51 +9172 9172 9173 917.2 1834.4 9172 1995-02-11 2024-10-11 02:32:52.000 1995-02-11 2024-10-11 02:32:52 +9173 9173 9174 917.3 1834.6000000000001 9173 1995-02-12 2024-10-11 02:32:53.000 1995-02-12 2024-10-11 02:32:53 +9174 9174 9175 917.4 1834.8000000000002 9174 1995-02-13 2024-10-11 02:32:54.000 1995-02-13 2024-10-11 02:32:54 +9175 9175 9176 917.5 1835 9175 1995-02-14 2024-10-11 02:32:55.000 1995-02-14 2024-10-11 02:32:55 +9176 9176 9177 917.6 1835.2 9176 1995-02-15 2024-10-11 02:32:56.000 1995-02-15 2024-10-11 02:32:56 +9177 9177 9178 917.7 1835.4 9177 1995-02-16 2024-10-11 02:32:57.000 1995-02-16 2024-10-11 02:32:57 +9178 9178 9179 917.8 1835.6000000000001 9178 1995-02-17 2024-10-11 02:32:58.000 1995-02-17 2024-10-11 02:32:58 +9179 9179 9180 917.9 1835.8000000000002 9179 1995-02-18 2024-10-11 02:32:59.000 1995-02-18 2024-10-11 02:32:59 +9180 9180 9181 918 1836 9180 1995-02-19 2024-10-11 02:33:00.000 1995-02-19 2024-10-11 02:33:00 +9181 9181 9182 918.1 1836.2 9181 1995-02-20 2024-10-11 02:33:01.000 1995-02-20 2024-10-11 02:33:01 +9182 9182 9183 918.2 1836.4 9182 1995-02-21 2024-10-11 02:33:02.000 1995-02-21 2024-10-11 02:33:02 +9183 9183 9184 918.3 1836.6000000000001 9183 1995-02-22 2024-10-11 02:33:03.000 1995-02-22 2024-10-11 02:33:03 +9184 9184 9185 918.4 1836.8000000000002 9184 1995-02-23 2024-10-11 02:33:04.000 1995-02-23 2024-10-11 02:33:04 +9185 9185 9186 918.5 1837 9185 1995-02-24 2024-10-11 02:33:05.000 1995-02-24 2024-10-11 02:33:05 +9186 9186 9187 918.6 1837.2 9186 1995-02-25 2024-10-11 02:33:06.000 1995-02-25 2024-10-11 02:33:06 +9187 9187 9188 918.7 1837.4 9187 1995-02-26 2024-10-11 02:33:07.000 1995-02-26 2024-10-11 02:33:07 +9188 9188 9189 918.8 1837.6000000000001 9188 1995-02-27 2024-10-11 02:33:08.000 1995-02-27 2024-10-11 02:33:08 +9189 9189 9190 918.9 1837.8000000000002 9189 1995-02-28 2024-10-11 02:33:09.000 1995-02-28 2024-10-11 02:33:09 +9190 9190 9191 919 1838 9190 1995-03-01 2024-10-11 02:33:10.000 1995-03-01 2024-10-11 02:33:10 +9191 9191 9192 919.1 1838.2 9191 1995-03-02 2024-10-11 02:33:11.000 1995-03-02 2024-10-11 02:33:11 +9192 9192 9193 919.2 1838.4 9192 1995-03-03 2024-10-11 02:33:12.000 1995-03-03 2024-10-11 02:33:12 +9193 9193 9194 919.3 1838.6000000000001 9193 1995-03-04 2024-10-11 02:33:13.000 1995-03-04 2024-10-11 02:33:13 +9194 9194 9195 919.4 1838.8000000000002 9194 1995-03-05 2024-10-11 02:33:14.000 1995-03-05 2024-10-11 02:33:14 +9195 9195 9196 919.5 1839 9195 1995-03-06 2024-10-11 02:33:15.000 1995-03-06 2024-10-11 02:33:15 +9196 9196 9197 919.6 1839.2 9196 1995-03-07 2024-10-11 02:33:16.000 1995-03-07 2024-10-11 02:33:16 +9197 9197 9198 919.7 1839.4 9197 1995-03-08 2024-10-11 02:33:17.000 1995-03-08 2024-10-11 02:33:17 +9198 9198 9199 919.8 1839.6000000000001 9198 1995-03-09 2024-10-11 02:33:18.000 1995-03-09 2024-10-11 02:33:18 +9199 9199 9200 919.9 1839.8000000000002 9199 1995-03-10 2024-10-11 02:33:19.000 1995-03-10 2024-10-11 02:33:19 +9200 9200 9201 920 1840 9200 1995-03-11 2024-10-11 02:33:20.000 1995-03-11 2024-10-11 02:33:20 +9201 9201 9202 920.1 1840.2 9201 1995-03-12 2024-10-11 02:33:21.000 1995-03-12 2024-10-11 02:33:21 +9202 9202 9203 920.2 1840.4 9202 1995-03-13 2024-10-11 02:33:22.000 1995-03-13 2024-10-11 02:33:22 +9203 9203 9204 920.3 1840.6000000000001 9203 1995-03-14 2024-10-11 02:33:23.000 1995-03-14 2024-10-11 02:33:23 +9204 9204 9205 920.4 1840.8000000000002 9204 1995-03-15 2024-10-11 02:33:24.000 1995-03-15 2024-10-11 02:33:24 +9205 9205 9206 920.5 1841 9205 1995-03-16 2024-10-11 02:33:25.000 1995-03-16 2024-10-11 02:33:25 +9206 9206 9207 920.6 1841.2 9206 1995-03-17 2024-10-11 02:33:26.000 1995-03-17 2024-10-11 02:33:26 +9207 9207 9208 920.7 1841.4 9207 1995-03-18 2024-10-11 02:33:27.000 1995-03-18 2024-10-11 02:33:27 +9208 9208 9209 920.8 1841.6000000000001 9208 1995-03-19 2024-10-11 02:33:28.000 1995-03-19 2024-10-11 02:33:28 +9209 9209 9210 920.9 1841.8000000000002 9209 1995-03-20 2024-10-11 02:33:29.000 1995-03-20 2024-10-11 02:33:29 +9210 9210 9211 921 1842 9210 1995-03-21 2024-10-11 02:33:30.000 1995-03-21 2024-10-11 02:33:30 +9211 9211 9212 921.1 1842.2 9211 1995-03-22 2024-10-11 02:33:31.000 1995-03-22 2024-10-11 02:33:31 +9212 9212 9213 921.2 1842.4 9212 1995-03-23 2024-10-11 02:33:32.000 1995-03-23 2024-10-11 02:33:32 +9213 9213 9214 921.3 1842.6000000000001 9213 1995-03-24 2024-10-11 02:33:33.000 1995-03-24 2024-10-11 02:33:33 +9214 9214 9215 921.4 1842.8000000000002 9214 1995-03-25 2024-10-11 02:33:34.000 1995-03-25 2024-10-11 02:33:34 +9215 9215 9216 921.5 1843 9215 1995-03-26 2024-10-11 02:33:35.000 1995-03-26 2024-10-11 02:33:35 +9216 9216 9217 921.6 1843.2 9216 1995-03-27 2024-10-11 02:33:36.000 1995-03-27 2024-10-11 02:33:36 +9217 9217 9218 921.7 1843.4 9217 1995-03-28 2024-10-11 02:33:37.000 1995-03-28 2024-10-11 02:33:37 +9218 9218 9219 921.8 1843.6000000000001 9218 1995-03-29 2024-10-11 02:33:38.000 1995-03-29 2024-10-11 02:33:38 +9219 9219 9220 921.9 1843.8000000000002 9219 1995-03-30 2024-10-11 02:33:39.000 1995-03-30 2024-10-11 02:33:39 +9220 9220 9221 922 1844 9220 1995-03-31 2024-10-11 02:33:40.000 1995-03-31 2024-10-11 02:33:40 +9221 9221 9222 922.1 1844.2 9221 1995-04-01 2024-10-11 02:33:41.000 1995-04-01 2024-10-11 02:33:41 +9222 9222 9223 922.2 1844.4 9222 1995-04-02 2024-10-11 02:33:42.000 1995-04-02 2024-10-11 02:33:42 +9223 9223 9224 922.3 1844.6000000000001 9223 1995-04-03 2024-10-11 02:33:43.000 1995-04-03 2024-10-11 02:33:43 +9224 9224 9225 922.4 1844.8000000000002 9224 1995-04-04 2024-10-11 02:33:44.000 1995-04-04 2024-10-11 02:33:44 +9225 9225 9226 922.5 1845 9225 1995-04-05 2024-10-11 02:33:45.000 1995-04-05 2024-10-11 02:33:45 +9226 9226 9227 922.6 1845.2 9226 1995-04-06 2024-10-11 02:33:46.000 1995-04-06 2024-10-11 02:33:46 +9227 9227 9228 922.7 1845.4 9227 1995-04-07 2024-10-11 02:33:47.000 1995-04-07 2024-10-11 02:33:47 +9228 9228 9229 922.8 1845.6000000000001 9228 1995-04-08 2024-10-11 02:33:48.000 1995-04-08 2024-10-11 02:33:48 +9229 9229 9230 922.9 1845.8000000000002 9229 1995-04-09 2024-10-11 02:33:49.000 1995-04-09 2024-10-11 02:33:49 +9230 9230 9231 923 1846 9230 1995-04-10 2024-10-11 02:33:50.000 1995-04-10 2024-10-11 02:33:50 +9231 9231 9232 923.1 1846.2 9231 1995-04-11 2024-10-11 02:33:51.000 1995-04-11 2024-10-11 02:33:51 +9232 9232 9233 923.2 1846.4 9232 1995-04-12 2024-10-11 02:33:52.000 1995-04-12 2024-10-11 02:33:52 +9233 9233 9234 923.3 1846.6000000000001 9233 1995-04-13 2024-10-11 02:33:53.000 1995-04-13 2024-10-11 02:33:53 +9234 9234 9235 923.4 1846.8000000000002 9234 1995-04-14 2024-10-11 02:33:54.000 1995-04-14 2024-10-11 02:33:54 +9235 9235 9236 923.5 1847 9235 1995-04-15 2024-10-11 02:33:55.000 1995-04-15 2024-10-11 02:33:55 +9236 9236 9237 923.6 1847.2 9236 1995-04-16 2024-10-11 02:33:56.000 1995-04-16 2024-10-11 02:33:56 +9237 9237 9238 923.7 1847.4 9237 1995-04-17 2024-10-11 02:33:57.000 1995-04-17 2024-10-11 02:33:57 +9238 9238 9239 923.8 1847.6000000000001 9238 1995-04-18 2024-10-11 02:33:58.000 1995-04-18 2024-10-11 02:33:58 +9239 9239 9240 923.9 1847.8000000000002 9239 1995-04-19 2024-10-11 02:33:59.000 1995-04-19 2024-10-11 02:33:59 +9240 9240 9241 924 1848 9240 1995-04-20 2024-10-11 02:34:00.000 1995-04-20 2024-10-11 02:34:00 +9241 9241 9242 924.1 1848.2 9241 1995-04-21 2024-10-11 02:34:01.000 1995-04-21 2024-10-11 02:34:01 +9242 9242 9243 924.2 1848.4 9242 1995-04-22 2024-10-11 02:34:02.000 1995-04-22 2024-10-11 02:34:02 +9243 9243 9244 924.3 1848.6000000000001 9243 1995-04-23 2024-10-11 02:34:03.000 1995-04-23 2024-10-11 02:34:03 +9244 9244 9245 924.4 1848.8000000000002 9244 1995-04-24 2024-10-11 02:34:04.000 1995-04-24 2024-10-11 02:34:04 +9245 9245 9246 924.5 1849 9245 1995-04-25 2024-10-11 02:34:05.000 1995-04-25 2024-10-11 02:34:05 +9246 9246 9247 924.6 1849.2 9246 1995-04-26 2024-10-11 02:34:06.000 1995-04-26 2024-10-11 02:34:06 +9247 9247 9248 924.7 1849.4 9247 1995-04-27 2024-10-11 02:34:07.000 1995-04-27 2024-10-11 02:34:07 +9248 9248 9249 924.8 1849.6000000000001 9248 1995-04-28 2024-10-11 02:34:08.000 1995-04-28 2024-10-11 02:34:08 +9249 9249 9250 924.9 1849.8000000000002 9249 1995-04-29 2024-10-11 02:34:09.000 1995-04-29 2024-10-11 02:34:09 +9250 9250 9251 925 1850 9250 1995-04-30 2024-10-11 02:34:10.000 1995-04-30 2024-10-11 02:34:10 +9251 9251 9252 925.1 1850.2 9251 1995-05-01 2024-10-11 02:34:11.000 1995-05-01 2024-10-11 02:34:11 +9252 9252 9253 925.2 1850.4 9252 1995-05-02 2024-10-11 02:34:12.000 1995-05-02 2024-10-11 02:34:12 +9253 9253 9254 925.3 1850.6000000000001 9253 1995-05-03 2024-10-11 02:34:13.000 1995-05-03 2024-10-11 02:34:13 +9254 9254 9255 925.4 1850.8000000000002 9254 1995-05-04 2024-10-11 02:34:14.000 1995-05-04 2024-10-11 02:34:14 +9255 9255 9256 925.5 1851 9255 1995-05-05 2024-10-11 02:34:15.000 1995-05-05 2024-10-11 02:34:15 +9256 9256 9257 925.6 1851.2 9256 1995-05-06 2024-10-11 02:34:16.000 1995-05-06 2024-10-11 02:34:16 +9257 9257 9258 925.7 1851.4 9257 1995-05-07 2024-10-11 02:34:17.000 1995-05-07 2024-10-11 02:34:17 +9258 9258 9259 925.8 1851.6000000000001 9258 1995-05-08 2024-10-11 02:34:18.000 1995-05-08 2024-10-11 02:34:18 +9259 9259 9260 925.9 1851.8000000000002 9259 1995-05-09 2024-10-11 02:34:19.000 1995-05-09 2024-10-11 02:34:19 +9260 9260 9261 926 1852 9260 1995-05-10 2024-10-11 02:34:20.000 1995-05-10 2024-10-11 02:34:20 +9261 9261 9262 926.1 1852.2 9261 1995-05-11 2024-10-11 02:34:21.000 1995-05-11 2024-10-11 02:34:21 +9262 9262 9263 926.2 1852.4 9262 1995-05-12 2024-10-11 02:34:22.000 1995-05-12 2024-10-11 02:34:22 +9263 9263 9264 926.3 1852.6000000000001 9263 1995-05-13 2024-10-11 02:34:23.000 1995-05-13 2024-10-11 02:34:23 +9264 9264 9265 926.4 1852.8000000000002 9264 1995-05-14 2024-10-11 02:34:24.000 1995-05-14 2024-10-11 02:34:24 +9265 9265 9266 926.5 1853 9265 1995-05-15 2024-10-11 02:34:25.000 1995-05-15 2024-10-11 02:34:25 +9266 9266 9267 926.6 1853.2 9266 1995-05-16 2024-10-11 02:34:26.000 1995-05-16 2024-10-11 02:34:26 +9267 9267 9268 926.7 1853.4 9267 1995-05-17 2024-10-11 02:34:27.000 1995-05-17 2024-10-11 02:34:27 +9268 9268 9269 926.8 1853.6000000000001 9268 1995-05-18 2024-10-11 02:34:28.000 1995-05-18 2024-10-11 02:34:28 +9269 9269 9270 926.9 1853.8000000000002 9269 1995-05-19 2024-10-11 02:34:29.000 1995-05-19 2024-10-11 02:34:29 +9270 9270 9271 927 1854 9270 1995-05-20 2024-10-11 02:34:30.000 1995-05-20 2024-10-11 02:34:30 +9271 9271 9272 927.1 1854.2 9271 1995-05-21 2024-10-11 02:34:31.000 1995-05-21 2024-10-11 02:34:31 +9272 9272 9273 927.2 1854.4 9272 1995-05-22 2024-10-11 02:34:32.000 1995-05-22 2024-10-11 02:34:32 +9273 9273 9274 927.3 1854.6000000000001 9273 1995-05-23 2024-10-11 02:34:33.000 1995-05-23 2024-10-11 02:34:33 +9274 9274 9275 927.4 1854.8000000000002 9274 1995-05-24 2024-10-11 02:34:34.000 1995-05-24 2024-10-11 02:34:34 +9275 9275 9276 927.5 1855 9275 1995-05-25 2024-10-11 02:34:35.000 1995-05-25 2024-10-11 02:34:35 +9276 9276 9277 927.6 1855.2 9276 1995-05-26 2024-10-11 02:34:36.000 1995-05-26 2024-10-11 02:34:36 +9277 9277 9278 927.7 1855.4 9277 1995-05-27 2024-10-11 02:34:37.000 1995-05-27 2024-10-11 02:34:37 +9278 9278 9279 927.8 1855.6000000000001 9278 1995-05-28 2024-10-11 02:34:38.000 1995-05-28 2024-10-11 02:34:38 +9279 9279 9280 927.9 1855.8000000000002 9279 1995-05-29 2024-10-11 02:34:39.000 1995-05-29 2024-10-11 02:34:39 +9280 9280 9281 928 1856 9280 1995-05-30 2024-10-11 02:34:40.000 1995-05-30 2024-10-11 02:34:40 +9281 9281 9282 928.1 1856.2 9281 1995-05-31 2024-10-11 02:34:41.000 1995-05-31 2024-10-11 02:34:41 +9282 9282 9283 928.2 1856.4 9282 1995-06-01 2024-10-11 02:34:42.000 1995-06-01 2024-10-11 02:34:42 +9283 9283 9284 928.3 1856.6000000000001 9283 1995-06-02 2024-10-11 02:34:43.000 1995-06-02 2024-10-11 02:34:43 +9284 9284 9285 928.4 1856.8000000000002 9284 1995-06-03 2024-10-11 02:34:44.000 1995-06-03 2024-10-11 02:34:44 +9285 9285 9286 928.5 1857 9285 1995-06-04 2024-10-11 02:34:45.000 1995-06-04 2024-10-11 02:34:45 +9286 9286 9287 928.6 1857.2 9286 1995-06-05 2024-10-11 02:34:46.000 1995-06-05 2024-10-11 02:34:46 +9287 9287 9288 928.7 1857.4 9287 1995-06-06 2024-10-11 02:34:47.000 1995-06-06 2024-10-11 02:34:47 +9288 9288 9289 928.8 1857.6000000000001 9288 1995-06-07 2024-10-11 02:34:48.000 1995-06-07 2024-10-11 02:34:48 +9289 9289 9290 928.9 1857.8000000000002 9289 1995-06-08 2024-10-11 02:34:49.000 1995-06-08 2024-10-11 02:34:49 +9290 9290 9291 929 1858 9290 1995-06-09 2024-10-11 02:34:50.000 1995-06-09 2024-10-11 02:34:50 +9291 9291 9292 929.1 1858.2 9291 1995-06-10 2024-10-11 02:34:51.000 1995-06-10 2024-10-11 02:34:51 +9292 9292 9293 929.2 1858.4 9292 1995-06-11 2024-10-11 02:34:52.000 1995-06-11 2024-10-11 02:34:52 +9293 9293 9294 929.3 1858.6000000000001 9293 1995-06-12 2024-10-11 02:34:53.000 1995-06-12 2024-10-11 02:34:53 +9294 9294 9295 929.4 1858.8000000000002 9294 1995-06-13 2024-10-11 02:34:54.000 1995-06-13 2024-10-11 02:34:54 +9295 9295 9296 929.5 1859 9295 1995-06-14 2024-10-11 02:34:55.000 1995-06-14 2024-10-11 02:34:55 +9296 9296 9297 929.6 1859.2 9296 1995-06-15 2024-10-11 02:34:56.000 1995-06-15 2024-10-11 02:34:56 +9297 9297 9298 929.7 1859.4 9297 1995-06-16 2024-10-11 02:34:57.000 1995-06-16 2024-10-11 02:34:57 +9298 9298 9299 929.8 1859.6000000000001 9298 1995-06-17 2024-10-11 02:34:58.000 1995-06-17 2024-10-11 02:34:58 +9299 9299 9300 929.9 1859.8000000000002 9299 1995-06-18 2024-10-11 02:34:59.000 1995-06-18 2024-10-11 02:34:59 +9300 9300 9301 930 1860 9300 1995-06-19 2024-10-11 02:35:00.000 1995-06-19 2024-10-11 02:35:00 +9301 9301 9302 930.1 1860.2 9301 1995-06-20 2024-10-11 02:35:01.000 1995-06-20 2024-10-11 02:35:01 +9302 9302 9303 930.2 1860.4 9302 1995-06-21 2024-10-11 02:35:02.000 1995-06-21 2024-10-11 02:35:02 +9303 9303 9304 930.3 1860.6000000000001 9303 1995-06-22 2024-10-11 02:35:03.000 1995-06-22 2024-10-11 02:35:03 +9304 9304 9305 930.4 1860.8000000000002 9304 1995-06-23 2024-10-11 02:35:04.000 1995-06-23 2024-10-11 02:35:04 +9305 9305 9306 930.5 1861 9305 1995-06-24 2024-10-11 02:35:05.000 1995-06-24 2024-10-11 02:35:05 +9306 9306 9307 930.6 1861.2 9306 1995-06-25 2024-10-11 02:35:06.000 1995-06-25 2024-10-11 02:35:06 +9307 9307 9308 930.7 1861.4 9307 1995-06-26 2024-10-11 02:35:07.000 1995-06-26 2024-10-11 02:35:07 +9308 9308 9309 930.8 1861.6000000000001 9308 1995-06-27 2024-10-11 02:35:08.000 1995-06-27 2024-10-11 02:35:08 +9309 9309 9310 930.9 1861.8000000000002 9309 1995-06-28 2024-10-11 02:35:09.000 1995-06-28 2024-10-11 02:35:09 +9310 9310 9311 931 1862 9310 1995-06-29 2024-10-11 02:35:10.000 1995-06-29 2024-10-11 02:35:10 +9311 9311 9312 931.1 1862.2 9311 1995-06-30 2024-10-11 02:35:11.000 1995-06-30 2024-10-11 02:35:11 +9312 9312 9313 931.2 1862.4 9312 1995-07-01 2024-10-11 02:35:12.000 1995-07-01 2024-10-11 02:35:12 +9313 9313 9314 931.3 1862.6000000000001 9313 1995-07-02 2024-10-11 02:35:13.000 1995-07-02 2024-10-11 02:35:13 +9314 9314 9315 931.4 1862.8000000000002 9314 1995-07-03 2024-10-11 02:35:14.000 1995-07-03 2024-10-11 02:35:14 +9315 9315 9316 931.5 1863 9315 1995-07-04 2024-10-11 02:35:15.000 1995-07-04 2024-10-11 02:35:15 +9316 9316 9317 931.6 1863.2 9316 1995-07-05 2024-10-11 02:35:16.000 1995-07-05 2024-10-11 02:35:16 +9317 9317 9318 931.7 1863.4 9317 1995-07-06 2024-10-11 02:35:17.000 1995-07-06 2024-10-11 02:35:17 +9318 9318 9319 931.8 1863.6000000000001 9318 1995-07-07 2024-10-11 02:35:18.000 1995-07-07 2024-10-11 02:35:18 +9319 9319 9320 931.9 1863.8000000000002 9319 1995-07-08 2024-10-11 02:35:19.000 1995-07-08 2024-10-11 02:35:19 +9320 9320 9321 932 1864 9320 1995-07-09 2024-10-11 02:35:20.000 1995-07-09 2024-10-11 02:35:20 +9321 9321 9322 932.1 1864.2 9321 1995-07-10 2024-10-11 02:35:21.000 1995-07-10 2024-10-11 02:35:21 +9322 9322 9323 932.2 1864.4 9322 1995-07-11 2024-10-11 02:35:22.000 1995-07-11 2024-10-11 02:35:22 +9323 9323 9324 932.3 1864.6000000000001 9323 1995-07-12 2024-10-11 02:35:23.000 1995-07-12 2024-10-11 02:35:23 +9324 9324 9325 932.4 1864.8000000000002 9324 1995-07-13 2024-10-11 02:35:24.000 1995-07-13 2024-10-11 02:35:24 +9325 9325 9326 932.5 1865 9325 1995-07-14 2024-10-11 02:35:25.000 1995-07-14 2024-10-11 02:35:25 +9326 9326 9327 932.6 1865.2 9326 1995-07-15 2024-10-11 02:35:26.000 1995-07-15 2024-10-11 02:35:26 +9327 9327 9328 932.7 1865.4 9327 1995-07-16 2024-10-11 02:35:27.000 1995-07-16 2024-10-11 02:35:27 +9328 9328 9329 932.8 1865.6000000000001 9328 1995-07-17 2024-10-11 02:35:28.000 1995-07-17 2024-10-11 02:35:28 +9329 9329 9330 932.9 1865.8000000000002 9329 1995-07-18 2024-10-11 02:35:29.000 1995-07-18 2024-10-11 02:35:29 +9330 9330 9331 933 1866 9330 1995-07-19 2024-10-11 02:35:30.000 1995-07-19 2024-10-11 02:35:30 +9331 9331 9332 933.1 1866.2 9331 1995-07-20 2024-10-11 02:35:31.000 1995-07-20 2024-10-11 02:35:31 +9332 9332 9333 933.2 1866.4 9332 1995-07-21 2024-10-11 02:35:32.000 1995-07-21 2024-10-11 02:35:32 +9333 9333 9334 933.3 1866.6000000000001 9333 1995-07-22 2024-10-11 02:35:33.000 1995-07-22 2024-10-11 02:35:33 +9334 9334 9335 933.4 1866.8000000000002 9334 1995-07-23 2024-10-11 02:35:34.000 1995-07-23 2024-10-11 02:35:34 +9335 9335 9336 933.5 1867 9335 1995-07-24 2024-10-11 02:35:35.000 1995-07-24 2024-10-11 02:35:35 +9336 9336 9337 933.6 1867.2 9336 1995-07-25 2024-10-11 02:35:36.000 1995-07-25 2024-10-11 02:35:36 +9337 9337 9338 933.7 1867.4 9337 1995-07-26 2024-10-11 02:35:37.000 1995-07-26 2024-10-11 02:35:37 +9338 9338 9339 933.8 1867.6000000000001 9338 1995-07-27 2024-10-11 02:35:38.000 1995-07-27 2024-10-11 02:35:38 +9339 9339 9340 933.9 1867.8000000000002 9339 1995-07-28 2024-10-11 02:35:39.000 1995-07-28 2024-10-11 02:35:39 +9340 9340 9341 934 1868 9340 1995-07-29 2024-10-11 02:35:40.000 1995-07-29 2024-10-11 02:35:40 +9341 9341 9342 934.1 1868.2 9341 1995-07-30 2024-10-11 02:35:41.000 1995-07-30 2024-10-11 02:35:41 +9342 9342 9343 934.2 1868.4 9342 1995-07-31 2024-10-11 02:35:42.000 1995-07-31 2024-10-11 02:35:42 +9343 9343 9344 934.3 1868.6000000000001 9343 1995-08-01 2024-10-11 02:35:43.000 1995-08-01 2024-10-11 02:35:43 +9344 9344 9345 934.4 1868.8000000000002 9344 1995-08-02 2024-10-11 02:35:44.000 1995-08-02 2024-10-11 02:35:44 +9345 9345 9346 934.5 1869 9345 1995-08-03 2024-10-11 02:35:45.000 1995-08-03 2024-10-11 02:35:45 +9346 9346 9347 934.6 1869.2 9346 1995-08-04 2024-10-11 02:35:46.000 1995-08-04 2024-10-11 02:35:46 +9347 9347 9348 934.7 1869.4 9347 1995-08-05 2024-10-11 02:35:47.000 1995-08-05 2024-10-11 02:35:47 +9348 9348 9349 934.8 1869.6000000000001 9348 1995-08-06 2024-10-11 02:35:48.000 1995-08-06 2024-10-11 02:35:48 +9349 9349 9350 934.9 1869.8000000000002 9349 1995-08-07 2024-10-11 02:35:49.000 1995-08-07 2024-10-11 02:35:49 +9350 9350 9351 935 1870 9350 1995-08-08 2024-10-11 02:35:50.000 1995-08-08 2024-10-11 02:35:50 +9351 9351 9352 935.1 1870.2 9351 1995-08-09 2024-10-11 02:35:51.000 1995-08-09 2024-10-11 02:35:51 +9352 9352 9353 935.2 1870.4 9352 1995-08-10 2024-10-11 02:35:52.000 1995-08-10 2024-10-11 02:35:52 +9353 9353 9354 935.3 1870.6000000000001 9353 1995-08-11 2024-10-11 02:35:53.000 1995-08-11 2024-10-11 02:35:53 +9354 9354 9355 935.4 1870.8000000000002 9354 1995-08-12 2024-10-11 02:35:54.000 1995-08-12 2024-10-11 02:35:54 +9355 9355 9356 935.5 1871 9355 1995-08-13 2024-10-11 02:35:55.000 1995-08-13 2024-10-11 02:35:55 +9356 9356 9357 935.6 1871.2 9356 1995-08-14 2024-10-11 02:35:56.000 1995-08-14 2024-10-11 02:35:56 +9357 9357 9358 935.7 1871.4 9357 1995-08-15 2024-10-11 02:35:57.000 1995-08-15 2024-10-11 02:35:57 +9358 9358 9359 935.8 1871.6000000000001 9358 1995-08-16 2024-10-11 02:35:58.000 1995-08-16 2024-10-11 02:35:58 +9359 9359 9360 935.9 1871.8000000000002 9359 1995-08-17 2024-10-11 02:35:59.000 1995-08-17 2024-10-11 02:35:59 +9360 9360 9361 936 1872 9360 1995-08-18 2024-10-11 02:36:00.000 1995-08-18 2024-10-11 02:36:00 +9361 9361 9362 936.1 1872.2 9361 1995-08-19 2024-10-11 02:36:01.000 1995-08-19 2024-10-11 02:36:01 +9362 9362 9363 936.2 1872.4 9362 1995-08-20 2024-10-11 02:36:02.000 1995-08-20 2024-10-11 02:36:02 +9363 9363 9364 936.3 1872.6000000000001 9363 1995-08-21 2024-10-11 02:36:03.000 1995-08-21 2024-10-11 02:36:03 +9364 9364 9365 936.4 1872.8000000000002 9364 1995-08-22 2024-10-11 02:36:04.000 1995-08-22 2024-10-11 02:36:04 +9365 9365 9366 936.5 1873 9365 1995-08-23 2024-10-11 02:36:05.000 1995-08-23 2024-10-11 02:36:05 +9366 9366 9367 936.6 1873.2 9366 1995-08-24 2024-10-11 02:36:06.000 1995-08-24 2024-10-11 02:36:06 +9367 9367 9368 936.7 1873.4 9367 1995-08-25 2024-10-11 02:36:07.000 1995-08-25 2024-10-11 02:36:07 +9368 9368 9369 936.8 1873.6000000000001 9368 1995-08-26 2024-10-11 02:36:08.000 1995-08-26 2024-10-11 02:36:08 +9369 9369 9370 936.9 1873.8000000000002 9369 1995-08-27 2024-10-11 02:36:09.000 1995-08-27 2024-10-11 02:36:09 +9370 9370 9371 937 1874 9370 1995-08-28 2024-10-11 02:36:10.000 1995-08-28 2024-10-11 02:36:10 +9371 9371 9372 937.1 1874.2 9371 1995-08-29 2024-10-11 02:36:11.000 1995-08-29 2024-10-11 02:36:11 +9372 9372 9373 937.2 1874.4 9372 1995-08-30 2024-10-11 02:36:12.000 1995-08-30 2024-10-11 02:36:12 +9373 9373 9374 937.3 1874.6000000000001 9373 1995-08-31 2024-10-11 02:36:13.000 1995-08-31 2024-10-11 02:36:13 +9374 9374 9375 937.4 1874.8000000000002 9374 1995-09-01 2024-10-11 02:36:14.000 1995-09-01 2024-10-11 02:36:14 +9375 9375 9376 937.5 1875 9375 1995-09-02 2024-10-11 02:36:15.000 1995-09-02 2024-10-11 02:36:15 +9376 9376 9377 937.6 1875.2 9376 1995-09-03 2024-10-11 02:36:16.000 1995-09-03 2024-10-11 02:36:16 +9377 9377 9378 937.7 1875.4 9377 1995-09-04 2024-10-11 02:36:17.000 1995-09-04 2024-10-11 02:36:17 +9378 9378 9379 937.8 1875.6000000000001 9378 1995-09-05 2024-10-11 02:36:18.000 1995-09-05 2024-10-11 02:36:18 +9379 9379 9380 937.9 1875.8000000000002 9379 1995-09-06 2024-10-11 02:36:19.000 1995-09-06 2024-10-11 02:36:19 +9380 9380 9381 938 1876 9380 1995-09-07 2024-10-11 02:36:20.000 1995-09-07 2024-10-11 02:36:20 +9381 9381 9382 938.1 1876.2 9381 1995-09-08 2024-10-11 02:36:21.000 1995-09-08 2024-10-11 02:36:21 +9382 9382 9383 938.2 1876.4 9382 1995-09-09 2024-10-11 02:36:22.000 1995-09-09 2024-10-11 02:36:22 +9383 9383 9384 938.3 1876.6000000000001 9383 1995-09-10 2024-10-11 02:36:23.000 1995-09-10 2024-10-11 02:36:23 +9384 9384 9385 938.4 1876.8000000000002 9384 1995-09-11 2024-10-11 02:36:24.000 1995-09-11 2024-10-11 02:36:24 +9385 9385 9386 938.5 1877 9385 1995-09-12 2024-10-11 02:36:25.000 1995-09-12 2024-10-11 02:36:25 +9386 9386 9387 938.6 1877.2 9386 1995-09-13 2024-10-11 02:36:26.000 1995-09-13 2024-10-11 02:36:26 +9387 9387 9388 938.7 1877.4 9387 1995-09-14 2024-10-11 02:36:27.000 1995-09-14 2024-10-11 02:36:27 +9388 9388 9389 938.8 1877.6000000000001 9388 1995-09-15 2024-10-11 02:36:28.000 1995-09-15 2024-10-11 02:36:28 +9389 9389 9390 938.9 1877.8000000000002 9389 1995-09-16 2024-10-11 02:36:29.000 1995-09-16 2024-10-11 02:36:29 +9390 9390 9391 939 1878 9390 1995-09-17 2024-10-11 02:36:30.000 1995-09-17 2024-10-11 02:36:30 +9391 9391 9392 939.1 1878.2 9391 1995-09-18 2024-10-11 02:36:31.000 1995-09-18 2024-10-11 02:36:31 +9392 9392 9393 939.2 1878.4 9392 1995-09-19 2024-10-11 02:36:32.000 1995-09-19 2024-10-11 02:36:32 +9393 9393 9394 939.3 1878.6000000000001 9393 1995-09-20 2024-10-11 02:36:33.000 1995-09-20 2024-10-11 02:36:33 +9394 9394 9395 939.4 1878.8000000000002 9394 1995-09-21 2024-10-11 02:36:34.000 1995-09-21 2024-10-11 02:36:34 +9395 9395 9396 939.5 1879 9395 1995-09-22 2024-10-11 02:36:35.000 1995-09-22 2024-10-11 02:36:35 +9396 9396 9397 939.6 1879.2 9396 1995-09-23 2024-10-11 02:36:36.000 1995-09-23 2024-10-11 02:36:36 +9397 9397 9398 939.7 1879.4 9397 1995-09-24 2024-10-11 02:36:37.000 1995-09-24 2024-10-11 02:36:37 +9398 9398 9399 939.8 1879.6000000000001 9398 1995-09-25 2024-10-11 02:36:38.000 1995-09-25 2024-10-11 02:36:38 +9399 9399 9400 939.9 1879.8000000000002 9399 1995-09-26 2024-10-11 02:36:39.000 1995-09-26 2024-10-11 02:36:39 +9400 9400 9401 940 1880 9400 1995-09-27 2024-10-11 02:36:40.000 1995-09-27 2024-10-11 02:36:40 +9401 9401 9402 940.1 1880.2 9401 1995-09-28 2024-10-11 02:36:41.000 1995-09-28 2024-10-11 02:36:41 +9402 9402 9403 940.2 1880.4 9402 1995-09-29 2024-10-11 02:36:42.000 1995-09-29 2024-10-11 02:36:42 +9403 9403 9404 940.3 1880.6000000000001 9403 1995-09-30 2024-10-11 02:36:43.000 1995-09-30 2024-10-11 02:36:43 +9404 9404 9405 940.4 1880.8000000000002 9404 1995-10-01 2024-10-11 02:36:44.000 1995-10-01 2024-10-11 02:36:44 +9405 9405 9406 940.5 1881 9405 1995-10-02 2024-10-11 02:36:45.000 1995-10-02 2024-10-11 02:36:45 +9406 9406 9407 940.6 1881.2 9406 1995-10-03 2024-10-11 02:36:46.000 1995-10-03 2024-10-11 02:36:46 +9407 9407 9408 940.7 1881.4 9407 1995-10-04 2024-10-11 02:36:47.000 1995-10-04 2024-10-11 02:36:47 +9408 9408 9409 940.8 1881.6000000000001 9408 1995-10-05 2024-10-11 02:36:48.000 1995-10-05 2024-10-11 02:36:48 +9409 9409 9410 940.9 1881.8000000000002 9409 1995-10-06 2024-10-11 02:36:49.000 1995-10-06 2024-10-11 02:36:49 +9410 9410 9411 941 1882 9410 1995-10-07 2024-10-11 02:36:50.000 1995-10-07 2024-10-11 02:36:50 +9411 9411 9412 941.1 1882.2 9411 1995-10-08 2024-10-11 02:36:51.000 1995-10-08 2024-10-11 02:36:51 +9412 9412 9413 941.2 1882.4 9412 1995-10-09 2024-10-11 02:36:52.000 1995-10-09 2024-10-11 02:36:52 +9413 9413 9414 941.3 1882.6000000000001 9413 1995-10-10 2024-10-11 02:36:53.000 1995-10-10 2024-10-11 02:36:53 +9414 9414 9415 941.4 1882.8000000000002 9414 1995-10-11 2024-10-11 02:36:54.000 1995-10-11 2024-10-11 02:36:54 +9415 9415 9416 941.5 1883 9415 1995-10-12 2024-10-11 02:36:55.000 1995-10-12 2024-10-11 02:36:55 +9416 9416 9417 941.6 1883.2 9416 1995-10-13 2024-10-11 02:36:56.000 1995-10-13 2024-10-11 02:36:56 +9417 9417 9418 941.7 1883.4 9417 1995-10-14 2024-10-11 02:36:57.000 1995-10-14 2024-10-11 02:36:57 +9418 9418 9419 941.8 1883.6000000000001 9418 1995-10-15 2024-10-11 02:36:58.000 1995-10-15 2024-10-11 02:36:58 +9419 9419 9420 941.9 1883.8000000000002 9419 1995-10-16 2024-10-11 02:36:59.000 1995-10-16 2024-10-11 02:36:59 +9420 9420 9421 942 1884 9420 1995-10-17 2024-10-11 02:37:00.000 1995-10-17 2024-10-11 02:37:00 +9421 9421 9422 942.1 1884.2 9421 1995-10-18 2024-10-11 02:37:01.000 1995-10-18 2024-10-11 02:37:01 +9422 9422 9423 942.2 1884.4 9422 1995-10-19 2024-10-11 02:37:02.000 1995-10-19 2024-10-11 02:37:02 +9423 9423 9424 942.3 1884.6000000000001 9423 1995-10-20 2024-10-11 02:37:03.000 1995-10-20 2024-10-11 02:37:03 +9424 9424 9425 942.4 1884.8000000000002 9424 1995-10-21 2024-10-11 02:37:04.000 1995-10-21 2024-10-11 02:37:04 +9425 9425 9426 942.5 1885 9425 1995-10-22 2024-10-11 02:37:05.000 1995-10-22 2024-10-11 02:37:05 +9426 9426 9427 942.6 1885.2 9426 1995-10-23 2024-10-11 02:37:06.000 1995-10-23 2024-10-11 02:37:06 +9427 9427 9428 942.7 1885.4 9427 1995-10-24 2024-10-11 02:37:07.000 1995-10-24 2024-10-11 02:37:07 +9428 9428 9429 942.8 1885.6000000000001 9428 1995-10-25 2024-10-11 02:37:08.000 1995-10-25 2024-10-11 02:37:08 +9429 9429 9430 942.9 1885.8000000000002 9429 1995-10-26 2024-10-11 02:37:09.000 1995-10-26 2024-10-11 02:37:09 +9430 9430 9431 943 1886 9430 1995-10-27 2024-10-11 02:37:10.000 1995-10-27 2024-10-11 02:37:10 +9431 9431 9432 943.1 1886.2 9431 1995-10-28 2024-10-11 02:37:11.000 1995-10-28 2024-10-11 02:37:11 +9432 9432 9433 943.2 1886.4 9432 1995-10-29 2024-10-11 02:37:12.000 1995-10-29 2024-10-11 02:37:12 +9433 9433 9434 943.3 1886.6000000000001 9433 1995-10-30 2024-10-11 02:37:13.000 1995-10-30 2024-10-11 02:37:13 +9434 9434 9435 943.4 1886.8000000000002 9434 1995-10-31 2024-10-11 02:37:14.000 1995-10-31 2024-10-11 02:37:14 +9435 9435 9436 943.5 1887 9435 1995-11-01 2024-10-11 02:37:15.000 1995-11-01 2024-10-11 02:37:15 +9436 9436 9437 943.6 1887.2 9436 1995-11-02 2024-10-11 02:37:16.000 1995-11-02 2024-10-11 02:37:16 +9437 9437 9438 943.7 1887.4 9437 1995-11-03 2024-10-11 02:37:17.000 1995-11-03 2024-10-11 02:37:17 +9438 9438 9439 943.8 1887.6000000000001 9438 1995-11-04 2024-10-11 02:37:18.000 1995-11-04 2024-10-11 02:37:18 +9439 9439 9440 943.9 1887.8000000000002 9439 1995-11-05 2024-10-11 02:37:19.000 1995-11-05 2024-10-11 02:37:19 +9440 9440 9441 944 1888 9440 1995-11-06 2024-10-11 02:37:20.000 1995-11-06 2024-10-11 02:37:20 +9441 9441 9442 944.1 1888.2 9441 1995-11-07 2024-10-11 02:37:21.000 1995-11-07 2024-10-11 02:37:21 +9442 9442 9443 944.2 1888.4 9442 1995-11-08 2024-10-11 02:37:22.000 1995-11-08 2024-10-11 02:37:22 +9443 9443 9444 944.3 1888.6000000000001 9443 1995-11-09 2024-10-11 02:37:23.000 1995-11-09 2024-10-11 02:37:23 +9444 9444 9445 944.4 1888.8000000000002 9444 1995-11-10 2024-10-11 02:37:24.000 1995-11-10 2024-10-11 02:37:24 +9445 9445 9446 944.5 1889 9445 1995-11-11 2024-10-11 02:37:25.000 1995-11-11 2024-10-11 02:37:25 +9446 9446 9447 944.6 1889.2 9446 1995-11-12 2024-10-11 02:37:26.000 1995-11-12 2024-10-11 02:37:26 +9447 9447 9448 944.7 1889.4 9447 1995-11-13 2024-10-11 02:37:27.000 1995-11-13 2024-10-11 02:37:27 +9448 9448 9449 944.8 1889.6000000000001 9448 1995-11-14 2024-10-11 02:37:28.000 1995-11-14 2024-10-11 02:37:28 +9449 9449 9450 944.9 1889.8000000000002 9449 1995-11-15 2024-10-11 02:37:29.000 1995-11-15 2024-10-11 02:37:29 +9450 9450 9451 945 1890 9450 1995-11-16 2024-10-11 02:37:30.000 1995-11-16 2024-10-11 02:37:30 +9451 9451 9452 945.1 1890.2 9451 1995-11-17 2024-10-11 02:37:31.000 1995-11-17 2024-10-11 02:37:31 +9452 9452 9453 945.2 1890.4 9452 1995-11-18 2024-10-11 02:37:32.000 1995-11-18 2024-10-11 02:37:32 +9453 9453 9454 945.3 1890.6000000000001 9453 1995-11-19 2024-10-11 02:37:33.000 1995-11-19 2024-10-11 02:37:33 +9454 9454 9455 945.4 1890.8000000000002 9454 1995-11-20 2024-10-11 02:37:34.000 1995-11-20 2024-10-11 02:37:34 +9455 9455 9456 945.5 1891 9455 1995-11-21 2024-10-11 02:37:35.000 1995-11-21 2024-10-11 02:37:35 +9456 9456 9457 945.6 1891.2 9456 1995-11-22 2024-10-11 02:37:36.000 1995-11-22 2024-10-11 02:37:36 +9457 9457 9458 945.7 1891.4 9457 1995-11-23 2024-10-11 02:37:37.000 1995-11-23 2024-10-11 02:37:37 +9458 9458 9459 945.8 1891.6000000000001 9458 1995-11-24 2024-10-11 02:37:38.000 1995-11-24 2024-10-11 02:37:38 +9459 9459 9460 945.9 1891.8000000000002 9459 1995-11-25 2024-10-11 02:37:39.000 1995-11-25 2024-10-11 02:37:39 +9460 9460 9461 946 1892 9460 1995-11-26 2024-10-11 02:37:40.000 1995-11-26 2024-10-11 02:37:40 +9461 9461 9462 946.1 1892.2 9461 1995-11-27 2024-10-11 02:37:41.000 1995-11-27 2024-10-11 02:37:41 +9462 9462 9463 946.2 1892.4 9462 1995-11-28 2024-10-11 02:37:42.000 1995-11-28 2024-10-11 02:37:42 +9463 9463 9464 946.3 1892.6000000000001 9463 1995-11-29 2024-10-11 02:37:43.000 1995-11-29 2024-10-11 02:37:43 +9464 9464 9465 946.4 1892.8000000000002 9464 1995-11-30 2024-10-11 02:37:44.000 1995-11-30 2024-10-11 02:37:44 +9465 9465 9466 946.5 1893 9465 1995-12-01 2024-10-11 02:37:45.000 1995-12-01 2024-10-11 02:37:45 +9466 9466 9467 946.6 1893.2 9466 1995-12-02 2024-10-11 02:37:46.000 1995-12-02 2024-10-11 02:37:46 +9467 9467 9468 946.7 1893.4 9467 1995-12-03 2024-10-11 02:37:47.000 1995-12-03 2024-10-11 02:37:47 +9468 9468 9469 946.8 1893.6000000000001 9468 1995-12-04 2024-10-11 02:37:48.000 1995-12-04 2024-10-11 02:37:48 +9469 9469 9470 946.9 1893.8000000000002 9469 1995-12-05 2024-10-11 02:37:49.000 1995-12-05 2024-10-11 02:37:49 +9470 9470 9471 947 1894 9470 1995-12-06 2024-10-11 02:37:50.000 1995-12-06 2024-10-11 02:37:50 +9471 9471 9472 947.1 1894.2 9471 1995-12-07 2024-10-11 02:37:51.000 1995-12-07 2024-10-11 02:37:51 +9472 9472 9473 947.2 1894.4 9472 1995-12-08 2024-10-11 02:37:52.000 1995-12-08 2024-10-11 02:37:52 +9473 9473 9474 947.3 1894.6000000000001 9473 1995-12-09 2024-10-11 02:37:53.000 1995-12-09 2024-10-11 02:37:53 +9474 9474 9475 947.4 1894.8000000000002 9474 1995-12-10 2024-10-11 02:37:54.000 1995-12-10 2024-10-11 02:37:54 +9475 9475 9476 947.5 1895 9475 1995-12-11 2024-10-11 02:37:55.000 1995-12-11 2024-10-11 02:37:55 +9476 9476 9477 947.6 1895.2 9476 1995-12-12 2024-10-11 02:37:56.000 1995-12-12 2024-10-11 02:37:56 +9477 9477 9478 947.7 1895.4 9477 1995-12-13 2024-10-11 02:37:57.000 1995-12-13 2024-10-11 02:37:57 +9478 9478 9479 947.8 1895.6000000000001 9478 1995-12-14 2024-10-11 02:37:58.000 1995-12-14 2024-10-11 02:37:58 +9479 9479 9480 947.9 1895.8000000000002 9479 1995-12-15 2024-10-11 02:37:59.000 1995-12-15 2024-10-11 02:37:59 +9480 9480 9481 948 1896 9480 1995-12-16 2024-10-11 02:38:00.000 1995-12-16 2024-10-11 02:38:00 +9481 9481 9482 948.1 1896.2 9481 1995-12-17 2024-10-11 02:38:01.000 1995-12-17 2024-10-11 02:38:01 +9482 9482 9483 948.2 1896.4 9482 1995-12-18 2024-10-11 02:38:02.000 1995-12-18 2024-10-11 02:38:02 +9483 9483 9484 948.3 1896.6000000000001 9483 1995-12-19 2024-10-11 02:38:03.000 1995-12-19 2024-10-11 02:38:03 +9484 9484 9485 948.4 1896.8000000000002 9484 1995-12-20 2024-10-11 02:38:04.000 1995-12-20 2024-10-11 02:38:04 +9485 9485 9486 948.5 1897 9485 1995-12-21 2024-10-11 02:38:05.000 1995-12-21 2024-10-11 02:38:05 +9486 9486 9487 948.6 1897.2 9486 1995-12-22 2024-10-11 02:38:06.000 1995-12-22 2024-10-11 02:38:06 +9487 9487 9488 948.7 1897.4 9487 1995-12-23 2024-10-11 02:38:07.000 1995-12-23 2024-10-11 02:38:07 +9488 9488 9489 948.8 1897.6000000000001 9488 1995-12-24 2024-10-11 02:38:08.000 1995-12-24 2024-10-11 02:38:08 +9489 9489 9490 948.9 1897.8000000000002 9489 1995-12-25 2024-10-11 02:38:09.000 1995-12-25 2024-10-11 02:38:09 +9490 9490 9491 949 1898 9490 1995-12-26 2024-10-11 02:38:10.000 1995-12-26 2024-10-11 02:38:10 +9491 9491 9492 949.1 1898.2 9491 1995-12-27 2024-10-11 02:38:11.000 1995-12-27 2024-10-11 02:38:11 +9492 9492 9493 949.2 1898.4 9492 1995-12-28 2024-10-11 02:38:12.000 1995-12-28 2024-10-11 02:38:12 +9493 9493 9494 949.3 1898.6000000000001 9493 1995-12-29 2024-10-11 02:38:13.000 1995-12-29 2024-10-11 02:38:13 +9494 9494 9495 949.4 1898.8000000000002 9494 1995-12-30 2024-10-11 02:38:14.000 1995-12-30 2024-10-11 02:38:14 +9495 9495 9496 949.5 1899 9495 1995-12-31 2024-10-11 02:38:15.000 1995-12-31 2024-10-11 02:38:15 +9496 9496 9497 949.6 1899.2 9496 1996-01-01 2024-10-11 02:38:16.000 1996-01-01 2024-10-11 02:38:16 +9497 9497 9498 949.7 1899.4 9497 1996-01-02 2024-10-11 02:38:17.000 1996-01-02 2024-10-11 02:38:17 +9498 9498 9499 949.8 1899.6000000000001 9498 1996-01-03 2024-10-11 02:38:18.000 1996-01-03 2024-10-11 02:38:18 +9499 9499 9500 949.9 1899.8000000000002 9499 1996-01-04 2024-10-11 02:38:19.000 1996-01-04 2024-10-11 02:38:19 +9500 9500 9501 950 1900 9500 1996-01-05 2024-10-11 02:38:20.000 1996-01-05 2024-10-11 02:38:20 +9501 9501 9502 950.1 1900.2 9501 1996-01-06 2024-10-11 02:38:21.000 1996-01-06 2024-10-11 02:38:21 +9502 9502 9503 950.2 1900.4 9502 1996-01-07 2024-10-11 02:38:22.000 1996-01-07 2024-10-11 02:38:22 +9503 9503 9504 950.3 1900.6000000000001 9503 1996-01-08 2024-10-11 02:38:23.000 1996-01-08 2024-10-11 02:38:23 +9504 9504 9505 950.4 1900.8000000000002 9504 1996-01-09 2024-10-11 02:38:24.000 1996-01-09 2024-10-11 02:38:24 +9505 9505 9506 950.5 1901 9505 1996-01-10 2024-10-11 02:38:25.000 1996-01-10 2024-10-11 02:38:25 +9506 9506 9507 950.6 1901.2 9506 1996-01-11 2024-10-11 02:38:26.000 1996-01-11 2024-10-11 02:38:26 +9507 9507 9508 950.7 1901.4 9507 1996-01-12 2024-10-11 02:38:27.000 1996-01-12 2024-10-11 02:38:27 +9508 9508 9509 950.8 1901.6000000000001 9508 1996-01-13 2024-10-11 02:38:28.000 1996-01-13 2024-10-11 02:38:28 +9509 9509 9510 950.9 1901.8000000000002 9509 1996-01-14 2024-10-11 02:38:29.000 1996-01-14 2024-10-11 02:38:29 +9510 9510 9511 951 1902 9510 1996-01-15 2024-10-11 02:38:30.000 1996-01-15 2024-10-11 02:38:30 +9511 9511 9512 951.1 1902.2 9511 1996-01-16 2024-10-11 02:38:31.000 1996-01-16 2024-10-11 02:38:31 +9512 9512 9513 951.2 1902.4 9512 1996-01-17 2024-10-11 02:38:32.000 1996-01-17 2024-10-11 02:38:32 +9513 9513 9514 951.3 1902.6000000000001 9513 1996-01-18 2024-10-11 02:38:33.000 1996-01-18 2024-10-11 02:38:33 +9514 9514 9515 951.4 1902.8000000000002 9514 1996-01-19 2024-10-11 02:38:34.000 1996-01-19 2024-10-11 02:38:34 +9515 9515 9516 951.5 1903 9515 1996-01-20 2024-10-11 02:38:35.000 1996-01-20 2024-10-11 02:38:35 +9516 9516 9517 951.6 1903.2 9516 1996-01-21 2024-10-11 02:38:36.000 1996-01-21 2024-10-11 02:38:36 +9517 9517 9518 951.7 1903.4 9517 1996-01-22 2024-10-11 02:38:37.000 1996-01-22 2024-10-11 02:38:37 +9518 9518 9519 951.8 1903.6000000000001 9518 1996-01-23 2024-10-11 02:38:38.000 1996-01-23 2024-10-11 02:38:38 +9519 9519 9520 951.9 1903.8000000000002 9519 1996-01-24 2024-10-11 02:38:39.000 1996-01-24 2024-10-11 02:38:39 +9520 9520 9521 952 1904 9520 1996-01-25 2024-10-11 02:38:40.000 1996-01-25 2024-10-11 02:38:40 +9521 9521 9522 952.1 1904.2 9521 1996-01-26 2024-10-11 02:38:41.000 1996-01-26 2024-10-11 02:38:41 +9522 9522 9523 952.2 1904.4 9522 1996-01-27 2024-10-11 02:38:42.000 1996-01-27 2024-10-11 02:38:42 +9523 9523 9524 952.3 1904.6000000000001 9523 1996-01-28 2024-10-11 02:38:43.000 1996-01-28 2024-10-11 02:38:43 +9524 9524 9525 952.4 1904.8000000000002 9524 1996-01-29 2024-10-11 02:38:44.000 1996-01-29 2024-10-11 02:38:44 +9525 9525 9526 952.5 1905 9525 1996-01-30 2024-10-11 02:38:45.000 1996-01-30 2024-10-11 02:38:45 +9526 9526 9527 952.6 1905.2 9526 1996-01-31 2024-10-11 02:38:46.000 1996-01-31 2024-10-11 02:38:46 +9527 9527 9528 952.7 1905.4 9527 1996-02-01 2024-10-11 02:38:47.000 1996-02-01 2024-10-11 02:38:47 +9528 9528 9529 952.8 1905.6000000000001 9528 1996-02-02 2024-10-11 02:38:48.000 1996-02-02 2024-10-11 02:38:48 +9529 9529 9530 952.9 1905.8000000000002 9529 1996-02-03 2024-10-11 02:38:49.000 1996-02-03 2024-10-11 02:38:49 +9530 9530 9531 953 1906 9530 1996-02-04 2024-10-11 02:38:50.000 1996-02-04 2024-10-11 02:38:50 +9531 9531 9532 953.1 1906.2 9531 1996-02-05 2024-10-11 02:38:51.000 1996-02-05 2024-10-11 02:38:51 +9532 9532 9533 953.2 1906.4 9532 1996-02-06 2024-10-11 02:38:52.000 1996-02-06 2024-10-11 02:38:52 +9533 9533 9534 953.3 1906.6000000000001 9533 1996-02-07 2024-10-11 02:38:53.000 1996-02-07 2024-10-11 02:38:53 +9534 9534 9535 953.4 1906.8000000000002 9534 1996-02-08 2024-10-11 02:38:54.000 1996-02-08 2024-10-11 02:38:54 +9535 9535 9536 953.5 1907 9535 1996-02-09 2024-10-11 02:38:55.000 1996-02-09 2024-10-11 02:38:55 +9536 9536 9537 953.6 1907.2 9536 1996-02-10 2024-10-11 02:38:56.000 1996-02-10 2024-10-11 02:38:56 +9537 9537 9538 953.7 1907.4 9537 1996-02-11 2024-10-11 02:38:57.000 1996-02-11 2024-10-11 02:38:57 +9538 9538 9539 953.8 1907.6000000000001 9538 1996-02-12 2024-10-11 02:38:58.000 1996-02-12 2024-10-11 02:38:58 +9539 9539 9540 953.9 1907.8000000000002 9539 1996-02-13 2024-10-11 02:38:59.000 1996-02-13 2024-10-11 02:38:59 +9540 9540 9541 954 1908 9540 1996-02-14 2024-10-11 02:39:00.000 1996-02-14 2024-10-11 02:39:00 +9541 9541 9542 954.1 1908.2 9541 1996-02-15 2024-10-11 02:39:01.000 1996-02-15 2024-10-11 02:39:01 +9542 9542 9543 954.2 1908.4 9542 1996-02-16 2024-10-11 02:39:02.000 1996-02-16 2024-10-11 02:39:02 +9543 9543 9544 954.3 1908.6000000000001 9543 1996-02-17 2024-10-11 02:39:03.000 1996-02-17 2024-10-11 02:39:03 +9544 9544 9545 954.4 1908.8000000000002 9544 1996-02-18 2024-10-11 02:39:04.000 1996-02-18 2024-10-11 02:39:04 +9545 9545 9546 954.5 1909 9545 1996-02-19 2024-10-11 02:39:05.000 1996-02-19 2024-10-11 02:39:05 +9546 9546 9547 954.6 1909.2 9546 1996-02-20 2024-10-11 02:39:06.000 1996-02-20 2024-10-11 02:39:06 +9547 9547 9548 954.7 1909.4 9547 1996-02-21 2024-10-11 02:39:07.000 1996-02-21 2024-10-11 02:39:07 +9548 9548 9549 954.8 1909.6000000000001 9548 1996-02-22 2024-10-11 02:39:08.000 1996-02-22 2024-10-11 02:39:08 +9549 9549 9550 954.9 1909.8000000000002 9549 1996-02-23 2024-10-11 02:39:09.000 1996-02-23 2024-10-11 02:39:09 +9550 9550 9551 955 1910 9550 1996-02-24 2024-10-11 02:39:10.000 1996-02-24 2024-10-11 02:39:10 +9551 9551 9552 955.1 1910.2 9551 1996-02-25 2024-10-11 02:39:11.000 1996-02-25 2024-10-11 02:39:11 +9552 9552 9553 955.2 1910.4 9552 1996-02-26 2024-10-11 02:39:12.000 1996-02-26 2024-10-11 02:39:12 +9553 9553 9554 955.3 1910.6000000000001 9553 1996-02-27 2024-10-11 02:39:13.000 1996-02-27 2024-10-11 02:39:13 +9554 9554 9555 955.4 1910.8000000000002 9554 1996-02-28 2024-10-11 02:39:14.000 1996-02-28 2024-10-11 02:39:14 +9555 9555 9556 955.5 1911 9555 1996-02-29 2024-10-11 02:39:15.000 1996-02-29 2024-10-11 02:39:15 +9556 9556 9557 955.6 1911.2 9556 1996-03-01 2024-10-11 02:39:16.000 1996-03-01 2024-10-11 02:39:16 +9557 9557 9558 955.7 1911.4 9557 1996-03-02 2024-10-11 02:39:17.000 1996-03-02 2024-10-11 02:39:17 +9558 9558 9559 955.8 1911.6000000000001 9558 1996-03-03 2024-10-11 02:39:18.000 1996-03-03 2024-10-11 02:39:18 +9559 9559 9560 955.9 1911.8000000000002 9559 1996-03-04 2024-10-11 02:39:19.000 1996-03-04 2024-10-11 02:39:19 +9560 9560 9561 956 1912 9560 1996-03-05 2024-10-11 02:39:20.000 1996-03-05 2024-10-11 02:39:20 +9561 9561 9562 956.1 1912.2 9561 1996-03-06 2024-10-11 02:39:21.000 1996-03-06 2024-10-11 02:39:21 +9562 9562 9563 956.2 1912.4 9562 1996-03-07 2024-10-11 02:39:22.000 1996-03-07 2024-10-11 02:39:22 +9563 9563 9564 956.3 1912.6000000000001 9563 1996-03-08 2024-10-11 02:39:23.000 1996-03-08 2024-10-11 02:39:23 +9564 9564 9565 956.4 1912.8000000000002 9564 1996-03-09 2024-10-11 02:39:24.000 1996-03-09 2024-10-11 02:39:24 +9565 9565 9566 956.5 1913 9565 1996-03-10 2024-10-11 02:39:25.000 1996-03-10 2024-10-11 02:39:25 +9566 9566 9567 956.6 1913.2 9566 1996-03-11 2024-10-11 02:39:26.000 1996-03-11 2024-10-11 02:39:26 +9567 9567 9568 956.7 1913.4 9567 1996-03-12 2024-10-11 02:39:27.000 1996-03-12 2024-10-11 02:39:27 +9568 9568 9569 956.8 1913.6000000000001 9568 1996-03-13 2024-10-11 02:39:28.000 1996-03-13 2024-10-11 02:39:28 +9569 9569 9570 956.9 1913.8000000000002 9569 1996-03-14 2024-10-11 02:39:29.000 1996-03-14 2024-10-11 02:39:29 +9570 9570 9571 957 1914 9570 1996-03-15 2024-10-11 02:39:30.000 1996-03-15 2024-10-11 02:39:30 +9571 9571 9572 957.1 1914.2 9571 1996-03-16 2024-10-11 02:39:31.000 1996-03-16 2024-10-11 02:39:31 +9572 9572 9573 957.2 1914.4 9572 1996-03-17 2024-10-11 02:39:32.000 1996-03-17 2024-10-11 02:39:32 +9573 9573 9574 957.3 1914.6000000000001 9573 1996-03-18 2024-10-11 02:39:33.000 1996-03-18 2024-10-11 02:39:33 +9574 9574 9575 957.4 1914.8000000000002 9574 1996-03-19 2024-10-11 02:39:34.000 1996-03-19 2024-10-11 02:39:34 +9575 9575 9576 957.5 1915 9575 1996-03-20 2024-10-11 02:39:35.000 1996-03-20 2024-10-11 02:39:35 +9576 9576 9577 957.6 1915.2 9576 1996-03-21 2024-10-11 02:39:36.000 1996-03-21 2024-10-11 02:39:36 +9577 9577 9578 957.7 1915.4 9577 1996-03-22 2024-10-11 02:39:37.000 1996-03-22 2024-10-11 02:39:37 +9578 9578 9579 957.8 1915.6000000000001 9578 1996-03-23 2024-10-11 02:39:38.000 1996-03-23 2024-10-11 02:39:38 +9579 9579 9580 957.9 1915.8000000000002 9579 1996-03-24 2024-10-11 02:39:39.000 1996-03-24 2024-10-11 02:39:39 +9580 9580 9581 958 1916 9580 1996-03-25 2024-10-11 02:39:40.000 1996-03-25 2024-10-11 02:39:40 +9581 9581 9582 958.1 1916.2 9581 1996-03-26 2024-10-11 02:39:41.000 1996-03-26 2024-10-11 02:39:41 +9582 9582 9583 958.2 1916.4 9582 1996-03-27 2024-10-11 02:39:42.000 1996-03-27 2024-10-11 02:39:42 +9583 9583 9584 958.3 1916.6000000000001 9583 1996-03-28 2024-10-11 02:39:43.000 1996-03-28 2024-10-11 02:39:43 +9584 9584 9585 958.4 1916.8000000000002 9584 1996-03-29 2024-10-11 02:39:44.000 1996-03-29 2024-10-11 02:39:44 +9585 9585 9586 958.5 1917 9585 1996-03-30 2024-10-11 02:39:45.000 1996-03-30 2024-10-11 02:39:45 +9586 9586 9587 958.6 1917.2 9586 1996-03-31 2024-10-11 02:39:46.000 1996-03-31 2024-10-11 02:39:46 +9587 9587 9588 958.7 1917.4 9587 1996-04-01 2024-10-11 02:39:47.000 1996-04-01 2024-10-11 02:39:47 +9588 9588 9589 958.8 1917.6000000000001 9588 1996-04-02 2024-10-11 02:39:48.000 1996-04-02 2024-10-11 02:39:48 +9589 9589 9590 958.9 1917.8000000000002 9589 1996-04-03 2024-10-11 02:39:49.000 1996-04-03 2024-10-11 02:39:49 +9590 9590 9591 959 1918 9590 1996-04-04 2024-10-11 02:39:50.000 1996-04-04 2024-10-11 02:39:50 +9591 9591 9592 959.1 1918.2 9591 1996-04-05 2024-10-11 02:39:51.000 1996-04-05 2024-10-11 02:39:51 +9592 9592 9593 959.2 1918.4 9592 1996-04-06 2024-10-11 02:39:52.000 1996-04-06 2024-10-11 02:39:52 +9593 9593 9594 959.3 1918.6000000000001 9593 1996-04-07 2024-10-11 02:39:53.000 1996-04-07 2024-10-11 02:39:53 +9594 9594 9595 959.4 1918.8000000000002 9594 1996-04-08 2024-10-11 02:39:54.000 1996-04-08 2024-10-11 02:39:54 +9595 9595 9596 959.5 1919 9595 1996-04-09 2024-10-11 02:39:55.000 1996-04-09 2024-10-11 02:39:55 +9596 9596 9597 959.6 1919.2 9596 1996-04-10 2024-10-11 02:39:56.000 1996-04-10 2024-10-11 02:39:56 +9597 9597 9598 959.7 1919.4 9597 1996-04-11 2024-10-11 02:39:57.000 1996-04-11 2024-10-11 02:39:57 +9598 9598 9599 959.8 1919.6000000000001 9598 1996-04-12 2024-10-11 02:39:58.000 1996-04-12 2024-10-11 02:39:58 +9599 9599 9600 959.9 1919.8000000000002 9599 1996-04-13 2024-10-11 02:39:59.000 1996-04-13 2024-10-11 02:39:59 +9600 9600 9601 960 1920 9600 1996-04-14 2024-10-11 02:40:00.000 1996-04-14 2024-10-11 02:40:00 +9601 9601 9602 960.1 1920.2 9601 1996-04-15 2024-10-11 02:40:01.000 1996-04-15 2024-10-11 02:40:01 +9602 9602 9603 960.2 1920.4 9602 1996-04-16 2024-10-11 02:40:02.000 1996-04-16 2024-10-11 02:40:02 +9603 9603 9604 960.3 1920.6000000000001 9603 1996-04-17 2024-10-11 02:40:03.000 1996-04-17 2024-10-11 02:40:03 +9604 9604 9605 960.4 1920.8000000000002 9604 1996-04-18 2024-10-11 02:40:04.000 1996-04-18 2024-10-11 02:40:04 +9605 9605 9606 960.5 1921 9605 1996-04-19 2024-10-11 02:40:05.000 1996-04-19 2024-10-11 02:40:05 +9606 9606 9607 960.6 1921.2 9606 1996-04-20 2024-10-11 02:40:06.000 1996-04-20 2024-10-11 02:40:06 +9607 9607 9608 960.7 1921.4 9607 1996-04-21 2024-10-11 02:40:07.000 1996-04-21 2024-10-11 02:40:07 +9608 9608 9609 960.8 1921.6000000000001 9608 1996-04-22 2024-10-11 02:40:08.000 1996-04-22 2024-10-11 02:40:08 +9609 9609 9610 960.9 1921.8000000000002 9609 1996-04-23 2024-10-11 02:40:09.000 1996-04-23 2024-10-11 02:40:09 +9610 9610 9611 961 1922 9610 1996-04-24 2024-10-11 02:40:10.000 1996-04-24 2024-10-11 02:40:10 +9611 9611 9612 961.1 1922.2 9611 1996-04-25 2024-10-11 02:40:11.000 1996-04-25 2024-10-11 02:40:11 +9612 9612 9613 961.2 1922.4 9612 1996-04-26 2024-10-11 02:40:12.000 1996-04-26 2024-10-11 02:40:12 +9613 9613 9614 961.3 1922.6000000000001 9613 1996-04-27 2024-10-11 02:40:13.000 1996-04-27 2024-10-11 02:40:13 +9614 9614 9615 961.4 1922.8000000000002 9614 1996-04-28 2024-10-11 02:40:14.000 1996-04-28 2024-10-11 02:40:14 +9615 9615 9616 961.5 1923 9615 1996-04-29 2024-10-11 02:40:15.000 1996-04-29 2024-10-11 02:40:15 +9616 9616 9617 961.6 1923.2 9616 1996-04-30 2024-10-11 02:40:16.000 1996-04-30 2024-10-11 02:40:16 +9617 9617 9618 961.7 1923.4 9617 1996-05-01 2024-10-11 02:40:17.000 1996-05-01 2024-10-11 02:40:17 +9618 9618 9619 961.8 1923.6000000000001 9618 1996-05-02 2024-10-11 02:40:18.000 1996-05-02 2024-10-11 02:40:18 +9619 9619 9620 961.9 1923.8000000000002 9619 1996-05-03 2024-10-11 02:40:19.000 1996-05-03 2024-10-11 02:40:19 +9620 9620 9621 962 1924 9620 1996-05-04 2024-10-11 02:40:20.000 1996-05-04 2024-10-11 02:40:20 +9621 9621 9622 962.1 1924.2 9621 1996-05-05 2024-10-11 02:40:21.000 1996-05-05 2024-10-11 02:40:21 +9622 9622 9623 962.2 1924.4 9622 1996-05-06 2024-10-11 02:40:22.000 1996-05-06 2024-10-11 02:40:22 +9623 9623 9624 962.3 1924.6000000000001 9623 1996-05-07 2024-10-11 02:40:23.000 1996-05-07 2024-10-11 02:40:23 +9624 9624 9625 962.4 1924.8000000000002 9624 1996-05-08 2024-10-11 02:40:24.000 1996-05-08 2024-10-11 02:40:24 +9625 9625 9626 962.5 1925 9625 1996-05-09 2024-10-11 02:40:25.000 1996-05-09 2024-10-11 02:40:25 +9626 9626 9627 962.6 1925.2 9626 1996-05-10 2024-10-11 02:40:26.000 1996-05-10 2024-10-11 02:40:26 +9627 9627 9628 962.7 1925.4 9627 1996-05-11 2024-10-11 02:40:27.000 1996-05-11 2024-10-11 02:40:27 +9628 9628 9629 962.8 1925.6000000000001 9628 1996-05-12 2024-10-11 02:40:28.000 1996-05-12 2024-10-11 02:40:28 +9629 9629 9630 962.9 1925.8000000000002 9629 1996-05-13 2024-10-11 02:40:29.000 1996-05-13 2024-10-11 02:40:29 +9630 9630 9631 963 1926 9630 1996-05-14 2024-10-11 02:40:30.000 1996-05-14 2024-10-11 02:40:30 +9631 9631 9632 963.1 1926.2 9631 1996-05-15 2024-10-11 02:40:31.000 1996-05-15 2024-10-11 02:40:31 +9632 9632 9633 963.2 1926.4 9632 1996-05-16 2024-10-11 02:40:32.000 1996-05-16 2024-10-11 02:40:32 +9633 9633 9634 963.3 1926.6000000000001 9633 1996-05-17 2024-10-11 02:40:33.000 1996-05-17 2024-10-11 02:40:33 +9634 9634 9635 963.4 1926.8000000000002 9634 1996-05-18 2024-10-11 02:40:34.000 1996-05-18 2024-10-11 02:40:34 +9635 9635 9636 963.5 1927 9635 1996-05-19 2024-10-11 02:40:35.000 1996-05-19 2024-10-11 02:40:35 +9636 9636 9637 963.6 1927.2 9636 1996-05-20 2024-10-11 02:40:36.000 1996-05-20 2024-10-11 02:40:36 +9637 9637 9638 963.7 1927.4 9637 1996-05-21 2024-10-11 02:40:37.000 1996-05-21 2024-10-11 02:40:37 +9638 9638 9639 963.8 1927.6000000000001 9638 1996-05-22 2024-10-11 02:40:38.000 1996-05-22 2024-10-11 02:40:38 +9639 9639 9640 963.9 1927.8000000000002 9639 1996-05-23 2024-10-11 02:40:39.000 1996-05-23 2024-10-11 02:40:39 +9640 9640 9641 964 1928 9640 1996-05-24 2024-10-11 02:40:40.000 1996-05-24 2024-10-11 02:40:40 +9641 9641 9642 964.1 1928.2 9641 1996-05-25 2024-10-11 02:40:41.000 1996-05-25 2024-10-11 02:40:41 +9642 9642 9643 964.2 1928.4 9642 1996-05-26 2024-10-11 02:40:42.000 1996-05-26 2024-10-11 02:40:42 +9643 9643 9644 964.3 1928.6000000000001 9643 1996-05-27 2024-10-11 02:40:43.000 1996-05-27 2024-10-11 02:40:43 +9644 9644 9645 964.4 1928.8000000000002 9644 1996-05-28 2024-10-11 02:40:44.000 1996-05-28 2024-10-11 02:40:44 +9645 9645 9646 964.5 1929 9645 1996-05-29 2024-10-11 02:40:45.000 1996-05-29 2024-10-11 02:40:45 +9646 9646 9647 964.6 1929.2 9646 1996-05-30 2024-10-11 02:40:46.000 1996-05-30 2024-10-11 02:40:46 +9647 9647 9648 964.7 1929.4 9647 1996-05-31 2024-10-11 02:40:47.000 1996-05-31 2024-10-11 02:40:47 +9648 9648 9649 964.8 1929.6000000000001 9648 1996-06-01 2024-10-11 02:40:48.000 1996-06-01 2024-10-11 02:40:48 +9649 9649 9650 964.9 1929.8000000000002 9649 1996-06-02 2024-10-11 02:40:49.000 1996-06-02 2024-10-11 02:40:49 +9650 9650 9651 965 1930 9650 1996-06-03 2024-10-11 02:40:50.000 1996-06-03 2024-10-11 02:40:50 +9651 9651 9652 965.1 1930.2 9651 1996-06-04 2024-10-11 02:40:51.000 1996-06-04 2024-10-11 02:40:51 +9652 9652 9653 965.2 1930.4 9652 1996-06-05 2024-10-11 02:40:52.000 1996-06-05 2024-10-11 02:40:52 +9653 9653 9654 965.3 1930.6000000000001 9653 1996-06-06 2024-10-11 02:40:53.000 1996-06-06 2024-10-11 02:40:53 +9654 9654 9655 965.4 1930.8000000000002 9654 1996-06-07 2024-10-11 02:40:54.000 1996-06-07 2024-10-11 02:40:54 +9655 9655 9656 965.5 1931 9655 1996-06-08 2024-10-11 02:40:55.000 1996-06-08 2024-10-11 02:40:55 +9656 9656 9657 965.6 1931.2 9656 1996-06-09 2024-10-11 02:40:56.000 1996-06-09 2024-10-11 02:40:56 +9657 9657 9658 965.7 1931.4 9657 1996-06-10 2024-10-11 02:40:57.000 1996-06-10 2024-10-11 02:40:57 +9658 9658 9659 965.8 1931.6000000000001 9658 1996-06-11 2024-10-11 02:40:58.000 1996-06-11 2024-10-11 02:40:58 +9659 9659 9660 965.9 1931.8000000000002 9659 1996-06-12 2024-10-11 02:40:59.000 1996-06-12 2024-10-11 02:40:59 +9660 9660 9661 966 1932 9660 1996-06-13 2024-10-11 02:41:00.000 1996-06-13 2024-10-11 02:41:00 +9661 9661 9662 966.1 1932.2 9661 1996-06-14 2024-10-11 02:41:01.000 1996-06-14 2024-10-11 02:41:01 +9662 9662 9663 966.2 1932.4 9662 1996-06-15 2024-10-11 02:41:02.000 1996-06-15 2024-10-11 02:41:02 +9663 9663 9664 966.3 1932.6000000000001 9663 1996-06-16 2024-10-11 02:41:03.000 1996-06-16 2024-10-11 02:41:03 +9664 9664 9665 966.4 1932.8000000000002 9664 1996-06-17 2024-10-11 02:41:04.000 1996-06-17 2024-10-11 02:41:04 +9665 9665 9666 966.5 1933 9665 1996-06-18 2024-10-11 02:41:05.000 1996-06-18 2024-10-11 02:41:05 +9666 9666 9667 966.6 1933.2 9666 1996-06-19 2024-10-11 02:41:06.000 1996-06-19 2024-10-11 02:41:06 +9667 9667 9668 966.7 1933.4 9667 1996-06-20 2024-10-11 02:41:07.000 1996-06-20 2024-10-11 02:41:07 +9668 9668 9669 966.8 1933.6000000000001 9668 1996-06-21 2024-10-11 02:41:08.000 1996-06-21 2024-10-11 02:41:08 +9669 9669 9670 966.9 1933.8000000000002 9669 1996-06-22 2024-10-11 02:41:09.000 1996-06-22 2024-10-11 02:41:09 +9670 9670 9671 967 1934 9670 1996-06-23 2024-10-11 02:41:10.000 1996-06-23 2024-10-11 02:41:10 +9671 9671 9672 967.1 1934.2 9671 1996-06-24 2024-10-11 02:41:11.000 1996-06-24 2024-10-11 02:41:11 +9672 9672 9673 967.2 1934.4 9672 1996-06-25 2024-10-11 02:41:12.000 1996-06-25 2024-10-11 02:41:12 +9673 9673 9674 967.3 1934.6000000000001 9673 1996-06-26 2024-10-11 02:41:13.000 1996-06-26 2024-10-11 02:41:13 +9674 9674 9675 967.4 1934.8000000000002 9674 1996-06-27 2024-10-11 02:41:14.000 1996-06-27 2024-10-11 02:41:14 +9675 9675 9676 967.5 1935 9675 1996-06-28 2024-10-11 02:41:15.000 1996-06-28 2024-10-11 02:41:15 +9676 9676 9677 967.6 1935.2 9676 1996-06-29 2024-10-11 02:41:16.000 1996-06-29 2024-10-11 02:41:16 +9677 9677 9678 967.7 1935.4 9677 1996-06-30 2024-10-11 02:41:17.000 1996-06-30 2024-10-11 02:41:17 +9678 9678 9679 967.8 1935.6000000000001 9678 1996-07-01 2024-10-11 02:41:18.000 1996-07-01 2024-10-11 02:41:18 +9679 9679 9680 967.9 1935.8000000000002 9679 1996-07-02 2024-10-11 02:41:19.000 1996-07-02 2024-10-11 02:41:19 +9680 9680 9681 968 1936 9680 1996-07-03 2024-10-11 02:41:20.000 1996-07-03 2024-10-11 02:41:20 +9681 9681 9682 968.1 1936.2 9681 1996-07-04 2024-10-11 02:41:21.000 1996-07-04 2024-10-11 02:41:21 +9682 9682 9683 968.2 1936.4 9682 1996-07-05 2024-10-11 02:41:22.000 1996-07-05 2024-10-11 02:41:22 +9683 9683 9684 968.3 1936.6000000000001 9683 1996-07-06 2024-10-11 02:41:23.000 1996-07-06 2024-10-11 02:41:23 +9684 9684 9685 968.4 1936.8000000000002 9684 1996-07-07 2024-10-11 02:41:24.000 1996-07-07 2024-10-11 02:41:24 +9685 9685 9686 968.5 1937 9685 1996-07-08 2024-10-11 02:41:25.000 1996-07-08 2024-10-11 02:41:25 +9686 9686 9687 968.6 1937.2 9686 1996-07-09 2024-10-11 02:41:26.000 1996-07-09 2024-10-11 02:41:26 +9687 9687 9688 968.7 1937.4 9687 1996-07-10 2024-10-11 02:41:27.000 1996-07-10 2024-10-11 02:41:27 +9688 9688 9689 968.8 1937.6000000000001 9688 1996-07-11 2024-10-11 02:41:28.000 1996-07-11 2024-10-11 02:41:28 +9689 9689 9690 968.9 1937.8000000000002 9689 1996-07-12 2024-10-11 02:41:29.000 1996-07-12 2024-10-11 02:41:29 +9690 9690 9691 969 1938 9690 1996-07-13 2024-10-11 02:41:30.000 1996-07-13 2024-10-11 02:41:30 +9691 9691 9692 969.1 1938.2 9691 1996-07-14 2024-10-11 02:41:31.000 1996-07-14 2024-10-11 02:41:31 +9692 9692 9693 969.2 1938.4 9692 1996-07-15 2024-10-11 02:41:32.000 1996-07-15 2024-10-11 02:41:32 +9693 9693 9694 969.3 1938.6000000000001 9693 1996-07-16 2024-10-11 02:41:33.000 1996-07-16 2024-10-11 02:41:33 +9694 9694 9695 969.4 1938.8000000000002 9694 1996-07-17 2024-10-11 02:41:34.000 1996-07-17 2024-10-11 02:41:34 +9695 9695 9696 969.5 1939 9695 1996-07-18 2024-10-11 02:41:35.000 1996-07-18 2024-10-11 02:41:35 +9696 9696 9697 969.6 1939.2 9696 1996-07-19 2024-10-11 02:41:36.000 1996-07-19 2024-10-11 02:41:36 +9697 9697 9698 969.7 1939.4 9697 1996-07-20 2024-10-11 02:41:37.000 1996-07-20 2024-10-11 02:41:37 +9698 9698 9699 969.8 1939.6000000000001 9698 1996-07-21 2024-10-11 02:41:38.000 1996-07-21 2024-10-11 02:41:38 +9699 9699 9700 969.9 1939.8000000000002 9699 1996-07-22 2024-10-11 02:41:39.000 1996-07-22 2024-10-11 02:41:39 +9700 9700 9701 970 1940 9700 1996-07-23 2024-10-11 02:41:40.000 1996-07-23 2024-10-11 02:41:40 +9701 9701 9702 970.1 1940.2 9701 1996-07-24 2024-10-11 02:41:41.000 1996-07-24 2024-10-11 02:41:41 +9702 9702 9703 970.2 1940.4 9702 1996-07-25 2024-10-11 02:41:42.000 1996-07-25 2024-10-11 02:41:42 +9703 9703 9704 970.3 1940.6000000000001 9703 1996-07-26 2024-10-11 02:41:43.000 1996-07-26 2024-10-11 02:41:43 +9704 9704 9705 970.4 1940.8000000000002 9704 1996-07-27 2024-10-11 02:41:44.000 1996-07-27 2024-10-11 02:41:44 +9705 9705 9706 970.5 1941 9705 1996-07-28 2024-10-11 02:41:45.000 1996-07-28 2024-10-11 02:41:45 +9706 9706 9707 970.6 1941.2 9706 1996-07-29 2024-10-11 02:41:46.000 1996-07-29 2024-10-11 02:41:46 +9707 9707 9708 970.7 1941.4 9707 1996-07-30 2024-10-11 02:41:47.000 1996-07-30 2024-10-11 02:41:47 +9708 9708 9709 970.8 1941.6000000000001 9708 1996-07-31 2024-10-11 02:41:48.000 1996-07-31 2024-10-11 02:41:48 +9709 9709 9710 970.9 1941.8000000000002 9709 1996-08-01 2024-10-11 02:41:49.000 1996-08-01 2024-10-11 02:41:49 +9710 9710 9711 971 1942 9710 1996-08-02 2024-10-11 02:41:50.000 1996-08-02 2024-10-11 02:41:50 +9711 9711 9712 971.1 1942.2 9711 1996-08-03 2024-10-11 02:41:51.000 1996-08-03 2024-10-11 02:41:51 +9712 9712 9713 971.2 1942.4 9712 1996-08-04 2024-10-11 02:41:52.000 1996-08-04 2024-10-11 02:41:52 +9713 9713 9714 971.3 1942.6000000000001 9713 1996-08-05 2024-10-11 02:41:53.000 1996-08-05 2024-10-11 02:41:53 +9714 9714 9715 971.4 1942.8000000000002 9714 1996-08-06 2024-10-11 02:41:54.000 1996-08-06 2024-10-11 02:41:54 +9715 9715 9716 971.5 1943 9715 1996-08-07 2024-10-11 02:41:55.000 1996-08-07 2024-10-11 02:41:55 +9716 9716 9717 971.6 1943.2 9716 1996-08-08 2024-10-11 02:41:56.000 1996-08-08 2024-10-11 02:41:56 +9717 9717 9718 971.7 1943.4 9717 1996-08-09 2024-10-11 02:41:57.000 1996-08-09 2024-10-11 02:41:57 +9718 9718 9719 971.8 1943.6000000000001 9718 1996-08-10 2024-10-11 02:41:58.000 1996-08-10 2024-10-11 02:41:58 +9719 9719 9720 971.9 1943.8000000000002 9719 1996-08-11 2024-10-11 02:41:59.000 1996-08-11 2024-10-11 02:41:59 +9720 9720 9721 972 1944 9720 1996-08-12 2024-10-11 02:42:00.000 1996-08-12 2024-10-11 02:42:00 +9721 9721 9722 972.1 1944.2 9721 1996-08-13 2024-10-11 02:42:01.000 1996-08-13 2024-10-11 02:42:01 +9722 9722 9723 972.2 1944.4 9722 1996-08-14 2024-10-11 02:42:02.000 1996-08-14 2024-10-11 02:42:02 +9723 9723 9724 972.3 1944.6000000000001 9723 1996-08-15 2024-10-11 02:42:03.000 1996-08-15 2024-10-11 02:42:03 +9724 9724 9725 972.4 1944.8000000000002 9724 1996-08-16 2024-10-11 02:42:04.000 1996-08-16 2024-10-11 02:42:04 +9725 9725 9726 972.5 1945 9725 1996-08-17 2024-10-11 02:42:05.000 1996-08-17 2024-10-11 02:42:05 +9726 9726 9727 972.6 1945.2 9726 1996-08-18 2024-10-11 02:42:06.000 1996-08-18 2024-10-11 02:42:06 +9727 9727 9728 972.7 1945.4 9727 1996-08-19 2024-10-11 02:42:07.000 1996-08-19 2024-10-11 02:42:07 +9728 9728 9729 972.8 1945.6000000000001 9728 1996-08-20 2024-10-11 02:42:08.000 1996-08-20 2024-10-11 02:42:08 +9729 9729 9730 972.9 1945.8000000000002 9729 1996-08-21 2024-10-11 02:42:09.000 1996-08-21 2024-10-11 02:42:09 +9730 9730 9731 973 1946 9730 1996-08-22 2024-10-11 02:42:10.000 1996-08-22 2024-10-11 02:42:10 +9731 9731 9732 973.1 1946.2 9731 1996-08-23 2024-10-11 02:42:11.000 1996-08-23 2024-10-11 02:42:11 +9732 9732 9733 973.2 1946.4 9732 1996-08-24 2024-10-11 02:42:12.000 1996-08-24 2024-10-11 02:42:12 +9733 9733 9734 973.3 1946.6000000000001 9733 1996-08-25 2024-10-11 02:42:13.000 1996-08-25 2024-10-11 02:42:13 +9734 9734 9735 973.4 1946.8000000000002 9734 1996-08-26 2024-10-11 02:42:14.000 1996-08-26 2024-10-11 02:42:14 +9735 9735 9736 973.5 1947 9735 1996-08-27 2024-10-11 02:42:15.000 1996-08-27 2024-10-11 02:42:15 +9736 9736 9737 973.6 1947.2 9736 1996-08-28 2024-10-11 02:42:16.000 1996-08-28 2024-10-11 02:42:16 +9737 9737 9738 973.7 1947.4 9737 1996-08-29 2024-10-11 02:42:17.000 1996-08-29 2024-10-11 02:42:17 +9738 9738 9739 973.8 1947.6000000000001 9738 1996-08-30 2024-10-11 02:42:18.000 1996-08-30 2024-10-11 02:42:18 +9739 9739 9740 973.9 1947.8000000000002 9739 1996-08-31 2024-10-11 02:42:19.000 1996-08-31 2024-10-11 02:42:19 +9740 9740 9741 974 1948 9740 1996-09-01 2024-10-11 02:42:20.000 1996-09-01 2024-10-11 02:42:20 +9741 9741 9742 974.1 1948.2 9741 1996-09-02 2024-10-11 02:42:21.000 1996-09-02 2024-10-11 02:42:21 +9742 9742 9743 974.2 1948.4 9742 1996-09-03 2024-10-11 02:42:22.000 1996-09-03 2024-10-11 02:42:22 +9743 9743 9744 974.3 1948.6000000000001 9743 1996-09-04 2024-10-11 02:42:23.000 1996-09-04 2024-10-11 02:42:23 +9744 9744 9745 974.4 1948.8000000000002 9744 1996-09-05 2024-10-11 02:42:24.000 1996-09-05 2024-10-11 02:42:24 +9745 9745 9746 974.5 1949 9745 1996-09-06 2024-10-11 02:42:25.000 1996-09-06 2024-10-11 02:42:25 +9746 9746 9747 974.6 1949.2 9746 1996-09-07 2024-10-11 02:42:26.000 1996-09-07 2024-10-11 02:42:26 +9747 9747 9748 974.7 1949.4 9747 1996-09-08 2024-10-11 02:42:27.000 1996-09-08 2024-10-11 02:42:27 +9748 9748 9749 974.8 1949.6000000000001 9748 1996-09-09 2024-10-11 02:42:28.000 1996-09-09 2024-10-11 02:42:28 +9749 9749 9750 974.9 1949.8000000000002 9749 1996-09-10 2024-10-11 02:42:29.000 1996-09-10 2024-10-11 02:42:29 +9750 9750 9751 975 1950 9750 1996-09-11 2024-10-11 02:42:30.000 1996-09-11 2024-10-11 02:42:30 +9751 9751 9752 975.1 1950.2 9751 1996-09-12 2024-10-11 02:42:31.000 1996-09-12 2024-10-11 02:42:31 +9752 9752 9753 975.2 1950.4 9752 1996-09-13 2024-10-11 02:42:32.000 1996-09-13 2024-10-11 02:42:32 +9753 9753 9754 975.3 1950.6000000000001 9753 1996-09-14 2024-10-11 02:42:33.000 1996-09-14 2024-10-11 02:42:33 +9754 9754 9755 975.4 1950.8000000000002 9754 1996-09-15 2024-10-11 02:42:34.000 1996-09-15 2024-10-11 02:42:34 +9755 9755 9756 975.5 1951 9755 1996-09-16 2024-10-11 02:42:35.000 1996-09-16 2024-10-11 02:42:35 +9756 9756 9757 975.6 1951.2 9756 1996-09-17 2024-10-11 02:42:36.000 1996-09-17 2024-10-11 02:42:36 +9757 9757 9758 975.7 1951.4 9757 1996-09-18 2024-10-11 02:42:37.000 1996-09-18 2024-10-11 02:42:37 +9758 9758 9759 975.8 1951.6000000000001 9758 1996-09-19 2024-10-11 02:42:38.000 1996-09-19 2024-10-11 02:42:38 +9759 9759 9760 975.9 1951.8000000000002 9759 1996-09-20 2024-10-11 02:42:39.000 1996-09-20 2024-10-11 02:42:39 +9760 9760 9761 976 1952 9760 1996-09-21 2024-10-11 02:42:40.000 1996-09-21 2024-10-11 02:42:40 +9761 9761 9762 976.1 1952.2 9761 1996-09-22 2024-10-11 02:42:41.000 1996-09-22 2024-10-11 02:42:41 +9762 9762 9763 976.2 1952.4 9762 1996-09-23 2024-10-11 02:42:42.000 1996-09-23 2024-10-11 02:42:42 +9763 9763 9764 976.3 1952.6000000000001 9763 1996-09-24 2024-10-11 02:42:43.000 1996-09-24 2024-10-11 02:42:43 +9764 9764 9765 976.4 1952.8000000000002 9764 1996-09-25 2024-10-11 02:42:44.000 1996-09-25 2024-10-11 02:42:44 +9765 9765 9766 976.5 1953 9765 1996-09-26 2024-10-11 02:42:45.000 1996-09-26 2024-10-11 02:42:45 +9766 9766 9767 976.6 1953.2 9766 1996-09-27 2024-10-11 02:42:46.000 1996-09-27 2024-10-11 02:42:46 +9767 9767 9768 976.7 1953.4 9767 1996-09-28 2024-10-11 02:42:47.000 1996-09-28 2024-10-11 02:42:47 +9768 9768 9769 976.8 1953.6000000000001 9768 1996-09-29 2024-10-11 02:42:48.000 1996-09-29 2024-10-11 02:42:48 +9769 9769 9770 976.9 1953.8000000000002 9769 1996-09-30 2024-10-11 02:42:49.000 1996-09-30 2024-10-11 02:42:49 +9770 9770 9771 977 1954 9770 1996-10-01 2024-10-11 02:42:50.000 1996-10-01 2024-10-11 02:42:50 +9771 9771 9772 977.1 1954.2 9771 1996-10-02 2024-10-11 02:42:51.000 1996-10-02 2024-10-11 02:42:51 +9772 9772 9773 977.2 1954.4 9772 1996-10-03 2024-10-11 02:42:52.000 1996-10-03 2024-10-11 02:42:52 +9773 9773 9774 977.3 1954.6000000000001 9773 1996-10-04 2024-10-11 02:42:53.000 1996-10-04 2024-10-11 02:42:53 +9774 9774 9775 977.4 1954.8000000000002 9774 1996-10-05 2024-10-11 02:42:54.000 1996-10-05 2024-10-11 02:42:54 +9775 9775 9776 977.5 1955 9775 1996-10-06 2024-10-11 02:42:55.000 1996-10-06 2024-10-11 02:42:55 +9776 9776 9777 977.6 1955.2 9776 1996-10-07 2024-10-11 02:42:56.000 1996-10-07 2024-10-11 02:42:56 +9777 9777 9778 977.7 1955.4 9777 1996-10-08 2024-10-11 02:42:57.000 1996-10-08 2024-10-11 02:42:57 +9778 9778 9779 977.8 1955.6000000000001 9778 1996-10-09 2024-10-11 02:42:58.000 1996-10-09 2024-10-11 02:42:58 +9779 9779 9780 977.9 1955.8000000000002 9779 1996-10-10 2024-10-11 02:42:59.000 1996-10-10 2024-10-11 02:42:59 +9780 9780 9781 978 1956 9780 1996-10-11 2024-10-11 02:43:00.000 1996-10-11 2024-10-11 02:43:00 +9781 9781 9782 978.1 1956.2 9781 1996-10-12 2024-10-11 02:43:01.000 1996-10-12 2024-10-11 02:43:01 +9782 9782 9783 978.2 1956.4 9782 1996-10-13 2024-10-11 02:43:02.000 1996-10-13 2024-10-11 02:43:02 +9783 9783 9784 978.3 1956.6000000000001 9783 1996-10-14 2024-10-11 02:43:03.000 1996-10-14 2024-10-11 02:43:03 +9784 9784 9785 978.4 1956.8000000000002 9784 1996-10-15 2024-10-11 02:43:04.000 1996-10-15 2024-10-11 02:43:04 +9785 9785 9786 978.5 1957 9785 1996-10-16 2024-10-11 02:43:05.000 1996-10-16 2024-10-11 02:43:05 +9786 9786 9787 978.6 1957.2 9786 1996-10-17 2024-10-11 02:43:06.000 1996-10-17 2024-10-11 02:43:06 +9787 9787 9788 978.7 1957.4 9787 1996-10-18 2024-10-11 02:43:07.000 1996-10-18 2024-10-11 02:43:07 +9788 9788 9789 978.8 1957.6000000000001 9788 1996-10-19 2024-10-11 02:43:08.000 1996-10-19 2024-10-11 02:43:08 +9789 9789 9790 978.9 1957.8000000000002 9789 1996-10-20 2024-10-11 02:43:09.000 1996-10-20 2024-10-11 02:43:09 +9790 9790 9791 979 1958 9790 1996-10-21 2024-10-11 02:43:10.000 1996-10-21 2024-10-11 02:43:10 +9791 9791 9792 979.1 1958.2 9791 1996-10-22 2024-10-11 02:43:11.000 1996-10-22 2024-10-11 02:43:11 +9792 9792 9793 979.2 1958.4 9792 1996-10-23 2024-10-11 02:43:12.000 1996-10-23 2024-10-11 02:43:12 +9793 9793 9794 979.3 1958.6000000000001 9793 1996-10-24 2024-10-11 02:43:13.000 1996-10-24 2024-10-11 02:43:13 +9794 9794 9795 979.4 1958.8000000000002 9794 1996-10-25 2024-10-11 02:43:14.000 1996-10-25 2024-10-11 02:43:14 +9795 9795 9796 979.5 1959 9795 1996-10-26 2024-10-11 02:43:15.000 1996-10-26 2024-10-11 02:43:15 +9796 9796 9797 979.6 1959.2 9796 1996-10-27 2024-10-11 02:43:16.000 1996-10-27 2024-10-11 02:43:16 +9797 9797 9798 979.7 1959.4 9797 1996-10-28 2024-10-11 02:43:17.000 1996-10-28 2024-10-11 02:43:17 +9798 9798 9799 979.8 1959.6000000000001 9798 1996-10-29 2024-10-11 02:43:18.000 1996-10-29 2024-10-11 02:43:18 +9799 9799 9800 979.9 1959.8000000000002 9799 1996-10-30 2024-10-11 02:43:19.000 1996-10-30 2024-10-11 02:43:19 +9800 9800 9801 980 1960 9800 1996-10-31 2024-10-11 02:43:20.000 1996-10-31 2024-10-11 02:43:20 +9801 9801 9802 980.1 1960.2 9801 1996-11-01 2024-10-11 02:43:21.000 1996-11-01 2024-10-11 02:43:21 +9802 9802 9803 980.2 1960.4 9802 1996-11-02 2024-10-11 02:43:22.000 1996-11-02 2024-10-11 02:43:22 +9803 9803 9804 980.3 1960.6000000000001 9803 1996-11-03 2024-10-11 02:43:23.000 1996-11-03 2024-10-11 02:43:23 +9804 9804 9805 980.4 1960.8000000000002 9804 1996-11-04 2024-10-11 02:43:24.000 1996-11-04 2024-10-11 02:43:24 +9805 9805 9806 980.5 1961 9805 1996-11-05 2024-10-11 02:43:25.000 1996-11-05 2024-10-11 02:43:25 +9806 9806 9807 980.6 1961.2 9806 1996-11-06 2024-10-11 02:43:26.000 1996-11-06 2024-10-11 02:43:26 +9807 9807 9808 980.7 1961.4 9807 1996-11-07 2024-10-11 02:43:27.000 1996-11-07 2024-10-11 02:43:27 +9808 9808 9809 980.8 1961.6000000000001 9808 1996-11-08 2024-10-11 02:43:28.000 1996-11-08 2024-10-11 02:43:28 +9809 9809 9810 980.9 1961.8000000000002 9809 1996-11-09 2024-10-11 02:43:29.000 1996-11-09 2024-10-11 02:43:29 +9810 9810 9811 981 1962 9810 1996-11-10 2024-10-11 02:43:30.000 1996-11-10 2024-10-11 02:43:30 +9811 9811 9812 981.1 1962.2 9811 1996-11-11 2024-10-11 02:43:31.000 1996-11-11 2024-10-11 02:43:31 +9812 9812 9813 981.2 1962.4 9812 1996-11-12 2024-10-11 02:43:32.000 1996-11-12 2024-10-11 02:43:32 +9813 9813 9814 981.3 1962.6000000000001 9813 1996-11-13 2024-10-11 02:43:33.000 1996-11-13 2024-10-11 02:43:33 +9814 9814 9815 981.4 1962.8000000000002 9814 1996-11-14 2024-10-11 02:43:34.000 1996-11-14 2024-10-11 02:43:34 +9815 9815 9816 981.5 1963 9815 1996-11-15 2024-10-11 02:43:35.000 1996-11-15 2024-10-11 02:43:35 +9816 9816 9817 981.6 1963.2 9816 1996-11-16 2024-10-11 02:43:36.000 1996-11-16 2024-10-11 02:43:36 +9817 9817 9818 981.7 1963.4 9817 1996-11-17 2024-10-11 02:43:37.000 1996-11-17 2024-10-11 02:43:37 +9818 9818 9819 981.8 1963.6000000000001 9818 1996-11-18 2024-10-11 02:43:38.000 1996-11-18 2024-10-11 02:43:38 +9819 9819 9820 981.9 1963.8000000000002 9819 1996-11-19 2024-10-11 02:43:39.000 1996-11-19 2024-10-11 02:43:39 +9820 9820 9821 982 1964 9820 1996-11-20 2024-10-11 02:43:40.000 1996-11-20 2024-10-11 02:43:40 +9821 9821 9822 982.1 1964.2 9821 1996-11-21 2024-10-11 02:43:41.000 1996-11-21 2024-10-11 02:43:41 +9822 9822 9823 982.2 1964.4 9822 1996-11-22 2024-10-11 02:43:42.000 1996-11-22 2024-10-11 02:43:42 +9823 9823 9824 982.3 1964.6000000000001 9823 1996-11-23 2024-10-11 02:43:43.000 1996-11-23 2024-10-11 02:43:43 +9824 9824 9825 982.4 1964.8000000000002 9824 1996-11-24 2024-10-11 02:43:44.000 1996-11-24 2024-10-11 02:43:44 +9825 9825 9826 982.5 1965 9825 1996-11-25 2024-10-11 02:43:45.000 1996-11-25 2024-10-11 02:43:45 +9826 9826 9827 982.6 1965.2 9826 1996-11-26 2024-10-11 02:43:46.000 1996-11-26 2024-10-11 02:43:46 +9827 9827 9828 982.7 1965.4 9827 1996-11-27 2024-10-11 02:43:47.000 1996-11-27 2024-10-11 02:43:47 +9828 9828 9829 982.8 1965.6000000000001 9828 1996-11-28 2024-10-11 02:43:48.000 1996-11-28 2024-10-11 02:43:48 +9829 9829 9830 982.9 1965.8000000000002 9829 1996-11-29 2024-10-11 02:43:49.000 1996-11-29 2024-10-11 02:43:49 +9830 9830 9831 983 1966 9830 1996-11-30 2024-10-11 02:43:50.000 1996-11-30 2024-10-11 02:43:50 +9831 9831 9832 983.1 1966.2 9831 1996-12-01 2024-10-11 02:43:51.000 1996-12-01 2024-10-11 02:43:51 +9832 9832 9833 983.2 1966.4 9832 1996-12-02 2024-10-11 02:43:52.000 1996-12-02 2024-10-11 02:43:52 +9833 9833 9834 983.3 1966.6000000000001 9833 1996-12-03 2024-10-11 02:43:53.000 1996-12-03 2024-10-11 02:43:53 +9834 9834 9835 983.4 1966.8000000000002 9834 1996-12-04 2024-10-11 02:43:54.000 1996-12-04 2024-10-11 02:43:54 +9835 9835 9836 983.5 1967 9835 1996-12-05 2024-10-11 02:43:55.000 1996-12-05 2024-10-11 02:43:55 +9836 9836 9837 983.6 1967.2 9836 1996-12-06 2024-10-11 02:43:56.000 1996-12-06 2024-10-11 02:43:56 +9837 9837 9838 983.7 1967.4 9837 1996-12-07 2024-10-11 02:43:57.000 1996-12-07 2024-10-11 02:43:57 +9838 9838 9839 983.8 1967.6000000000001 9838 1996-12-08 2024-10-11 02:43:58.000 1996-12-08 2024-10-11 02:43:58 +9839 9839 9840 983.9 1967.8000000000002 9839 1996-12-09 2024-10-11 02:43:59.000 1996-12-09 2024-10-11 02:43:59 +9840 9840 9841 984 1968 9840 1996-12-10 2024-10-11 02:44:00.000 1996-12-10 2024-10-11 02:44:00 +9841 9841 9842 984.1 1968.2 9841 1996-12-11 2024-10-11 02:44:01.000 1996-12-11 2024-10-11 02:44:01 +9842 9842 9843 984.2 1968.4 9842 1996-12-12 2024-10-11 02:44:02.000 1996-12-12 2024-10-11 02:44:02 +9843 9843 9844 984.3 1968.6000000000001 9843 1996-12-13 2024-10-11 02:44:03.000 1996-12-13 2024-10-11 02:44:03 +9844 9844 9845 984.4 1968.8000000000002 9844 1996-12-14 2024-10-11 02:44:04.000 1996-12-14 2024-10-11 02:44:04 +9845 9845 9846 984.5 1969 9845 1996-12-15 2024-10-11 02:44:05.000 1996-12-15 2024-10-11 02:44:05 +9846 9846 9847 984.6 1969.2 9846 1996-12-16 2024-10-11 02:44:06.000 1996-12-16 2024-10-11 02:44:06 +9847 9847 9848 984.7 1969.4 9847 1996-12-17 2024-10-11 02:44:07.000 1996-12-17 2024-10-11 02:44:07 +9848 9848 9849 984.8 1969.6000000000001 9848 1996-12-18 2024-10-11 02:44:08.000 1996-12-18 2024-10-11 02:44:08 +9849 9849 9850 984.9 1969.8000000000002 9849 1996-12-19 2024-10-11 02:44:09.000 1996-12-19 2024-10-11 02:44:09 +9850 9850 9851 985 1970 9850 1996-12-20 2024-10-11 02:44:10.000 1996-12-20 2024-10-11 02:44:10 +9851 9851 9852 985.1 1970.2 9851 1996-12-21 2024-10-11 02:44:11.000 1996-12-21 2024-10-11 02:44:11 +9852 9852 9853 985.2 1970.4 9852 1996-12-22 2024-10-11 02:44:12.000 1996-12-22 2024-10-11 02:44:12 +9853 9853 9854 985.3 1970.6000000000001 9853 1996-12-23 2024-10-11 02:44:13.000 1996-12-23 2024-10-11 02:44:13 +9854 9854 9855 985.4 1970.8000000000002 9854 1996-12-24 2024-10-11 02:44:14.000 1996-12-24 2024-10-11 02:44:14 +9855 9855 9856 985.5 1971 9855 1996-12-25 2024-10-11 02:44:15.000 1996-12-25 2024-10-11 02:44:15 +9856 9856 9857 985.6 1971.2 9856 1996-12-26 2024-10-11 02:44:16.000 1996-12-26 2024-10-11 02:44:16 +9857 9857 9858 985.7 1971.4 9857 1996-12-27 2024-10-11 02:44:17.000 1996-12-27 2024-10-11 02:44:17 +9858 9858 9859 985.8 1971.6000000000001 9858 1996-12-28 2024-10-11 02:44:18.000 1996-12-28 2024-10-11 02:44:18 +9859 9859 9860 985.9 1971.8000000000002 9859 1996-12-29 2024-10-11 02:44:19.000 1996-12-29 2024-10-11 02:44:19 +9860 9860 9861 986 1972 9860 1996-12-30 2024-10-11 02:44:20.000 1996-12-30 2024-10-11 02:44:20 +9861 9861 9862 986.1 1972.2 9861 1996-12-31 2024-10-11 02:44:21.000 1996-12-31 2024-10-11 02:44:21 +9862 9862 9863 986.2 1972.4 9862 1997-01-01 2024-10-11 02:44:22.000 1997-01-01 2024-10-11 02:44:22 +9863 9863 9864 986.3 1972.6000000000001 9863 1997-01-02 2024-10-11 02:44:23.000 1997-01-02 2024-10-11 02:44:23 +9864 9864 9865 986.4 1972.8000000000002 9864 1997-01-03 2024-10-11 02:44:24.000 1997-01-03 2024-10-11 02:44:24 +9865 9865 9866 986.5 1973 9865 1997-01-04 2024-10-11 02:44:25.000 1997-01-04 2024-10-11 02:44:25 +9866 9866 9867 986.6 1973.2 9866 1997-01-05 2024-10-11 02:44:26.000 1997-01-05 2024-10-11 02:44:26 +9867 9867 9868 986.7 1973.4 9867 1997-01-06 2024-10-11 02:44:27.000 1997-01-06 2024-10-11 02:44:27 +9868 9868 9869 986.8 1973.6000000000001 9868 1997-01-07 2024-10-11 02:44:28.000 1997-01-07 2024-10-11 02:44:28 +9869 9869 9870 986.9 1973.8000000000002 9869 1997-01-08 2024-10-11 02:44:29.000 1997-01-08 2024-10-11 02:44:29 +9870 9870 9871 987 1974 9870 1997-01-09 2024-10-11 02:44:30.000 1997-01-09 2024-10-11 02:44:30 +9871 9871 9872 987.1 1974.2 9871 1997-01-10 2024-10-11 02:44:31.000 1997-01-10 2024-10-11 02:44:31 +9872 9872 9873 987.2 1974.4 9872 1997-01-11 2024-10-11 02:44:32.000 1997-01-11 2024-10-11 02:44:32 +9873 9873 9874 987.3 1974.6000000000001 9873 1997-01-12 2024-10-11 02:44:33.000 1997-01-12 2024-10-11 02:44:33 +9874 9874 9875 987.4 1974.8000000000002 9874 1997-01-13 2024-10-11 02:44:34.000 1997-01-13 2024-10-11 02:44:34 +9875 9875 9876 987.5 1975 9875 1997-01-14 2024-10-11 02:44:35.000 1997-01-14 2024-10-11 02:44:35 +9876 9876 9877 987.6 1975.2 9876 1997-01-15 2024-10-11 02:44:36.000 1997-01-15 2024-10-11 02:44:36 +9877 9877 9878 987.7 1975.4 9877 1997-01-16 2024-10-11 02:44:37.000 1997-01-16 2024-10-11 02:44:37 +9878 9878 9879 987.8 1975.6000000000001 9878 1997-01-17 2024-10-11 02:44:38.000 1997-01-17 2024-10-11 02:44:38 +9879 9879 9880 987.9 1975.8000000000002 9879 1997-01-18 2024-10-11 02:44:39.000 1997-01-18 2024-10-11 02:44:39 +9880 9880 9881 988 1976 9880 1997-01-19 2024-10-11 02:44:40.000 1997-01-19 2024-10-11 02:44:40 +9881 9881 9882 988.1 1976.2 9881 1997-01-20 2024-10-11 02:44:41.000 1997-01-20 2024-10-11 02:44:41 +9882 9882 9883 988.2 1976.4 9882 1997-01-21 2024-10-11 02:44:42.000 1997-01-21 2024-10-11 02:44:42 +9883 9883 9884 988.3 1976.6000000000001 9883 1997-01-22 2024-10-11 02:44:43.000 1997-01-22 2024-10-11 02:44:43 +9884 9884 9885 988.4 1976.8000000000002 9884 1997-01-23 2024-10-11 02:44:44.000 1997-01-23 2024-10-11 02:44:44 +9885 9885 9886 988.5 1977 9885 1997-01-24 2024-10-11 02:44:45.000 1997-01-24 2024-10-11 02:44:45 +9886 9886 9887 988.6 1977.2 9886 1997-01-25 2024-10-11 02:44:46.000 1997-01-25 2024-10-11 02:44:46 +9887 9887 9888 988.7 1977.4 9887 1997-01-26 2024-10-11 02:44:47.000 1997-01-26 2024-10-11 02:44:47 +9888 9888 9889 988.8 1977.6000000000001 9888 1997-01-27 2024-10-11 02:44:48.000 1997-01-27 2024-10-11 02:44:48 +9889 9889 9890 988.9 1977.8000000000002 9889 1997-01-28 2024-10-11 02:44:49.000 1997-01-28 2024-10-11 02:44:49 +9890 9890 9891 989 1978 9890 1997-01-29 2024-10-11 02:44:50.000 1997-01-29 2024-10-11 02:44:50 +9891 9891 9892 989.1 1978.2 9891 1997-01-30 2024-10-11 02:44:51.000 1997-01-30 2024-10-11 02:44:51 +9892 9892 9893 989.2 1978.4 9892 1997-01-31 2024-10-11 02:44:52.000 1997-01-31 2024-10-11 02:44:52 +9893 9893 9894 989.3 1978.6000000000001 9893 1997-02-01 2024-10-11 02:44:53.000 1997-02-01 2024-10-11 02:44:53 +9894 9894 9895 989.4 1978.8000000000002 9894 1997-02-02 2024-10-11 02:44:54.000 1997-02-02 2024-10-11 02:44:54 +9895 9895 9896 989.5 1979 9895 1997-02-03 2024-10-11 02:44:55.000 1997-02-03 2024-10-11 02:44:55 +9896 9896 9897 989.6 1979.2 9896 1997-02-04 2024-10-11 02:44:56.000 1997-02-04 2024-10-11 02:44:56 +9897 9897 9898 989.7 1979.4 9897 1997-02-05 2024-10-11 02:44:57.000 1997-02-05 2024-10-11 02:44:57 +9898 9898 9899 989.8 1979.6000000000001 9898 1997-02-06 2024-10-11 02:44:58.000 1997-02-06 2024-10-11 02:44:58 +9899 9899 9900 989.9 1979.8000000000002 9899 1997-02-07 2024-10-11 02:44:59.000 1997-02-07 2024-10-11 02:44:59 +9900 9900 9901 990 1980 9900 1997-02-08 2024-10-11 02:45:00.000 1997-02-08 2024-10-11 02:45:00 +9901 9901 9902 990.1 1980.2 9901 1997-02-09 2024-10-11 02:45:01.000 1997-02-09 2024-10-11 02:45:01 +9902 9902 9903 990.2 1980.4 9902 1997-02-10 2024-10-11 02:45:02.000 1997-02-10 2024-10-11 02:45:02 +9903 9903 9904 990.3 1980.6000000000001 9903 1997-02-11 2024-10-11 02:45:03.000 1997-02-11 2024-10-11 02:45:03 +9904 9904 9905 990.4 1980.8000000000002 9904 1997-02-12 2024-10-11 02:45:04.000 1997-02-12 2024-10-11 02:45:04 +9905 9905 9906 990.5 1981 9905 1997-02-13 2024-10-11 02:45:05.000 1997-02-13 2024-10-11 02:45:05 +9906 9906 9907 990.6 1981.2 9906 1997-02-14 2024-10-11 02:45:06.000 1997-02-14 2024-10-11 02:45:06 +9907 9907 9908 990.7 1981.4 9907 1997-02-15 2024-10-11 02:45:07.000 1997-02-15 2024-10-11 02:45:07 +9908 9908 9909 990.8 1981.6000000000001 9908 1997-02-16 2024-10-11 02:45:08.000 1997-02-16 2024-10-11 02:45:08 +9909 9909 9910 990.9 1981.8000000000002 9909 1997-02-17 2024-10-11 02:45:09.000 1997-02-17 2024-10-11 02:45:09 +9910 9910 9911 991 1982 9910 1997-02-18 2024-10-11 02:45:10.000 1997-02-18 2024-10-11 02:45:10 +9911 9911 9912 991.1 1982.2 9911 1997-02-19 2024-10-11 02:45:11.000 1997-02-19 2024-10-11 02:45:11 +9912 9912 9913 991.2 1982.4 9912 1997-02-20 2024-10-11 02:45:12.000 1997-02-20 2024-10-11 02:45:12 +9913 9913 9914 991.3 1982.6000000000001 9913 1997-02-21 2024-10-11 02:45:13.000 1997-02-21 2024-10-11 02:45:13 +9914 9914 9915 991.4 1982.8000000000002 9914 1997-02-22 2024-10-11 02:45:14.000 1997-02-22 2024-10-11 02:45:14 +9915 9915 9916 991.5 1983 9915 1997-02-23 2024-10-11 02:45:15.000 1997-02-23 2024-10-11 02:45:15 +9916 9916 9917 991.6 1983.2 9916 1997-02-24 2024-10-11 02:45:16.000 1997-02-24 2024-10-11 02:45:16 +9917 9917 9918 991.7 1983.4 9917 1997-02-25 2024-10-11 02:45:17.000 1997-02-25 2024-10-11 02:45:17 +9918 9918 9919 991.8 1983.6000000000001 9918 1997-02-26 2024-10-11 02:45:18.000 1997-02-26 2024-10-11 02:45:18 +9919 9919 9920 991.9 1983.8000000000002 9919 1997-02-27 2024-10-11 02:45:19.000 1997-02-27 2024-10-11 02:45:19 +9920 9920 9921 992 1984 9920 1997-02-28 2024-10-11 02:45:20.000 1997-02-28 2024-10-11 02:45:20 +9921 9921 9922 992.1 1984.2 9921 1997-03-01 2024-10-11 02:45:21.000 1997-03-01 2024-10-11 02:45:21 +9922 9922 9923 992.2 1984.4 9922 1997-03-02 2024-10-11 02:45:22.000 1997-03-02 2024-10-11 02:45:22 +9923 9923 9924 992.3 1984.6000000000001 9923 1997-03-03 2024-10-11 02:45:23.000 1997-03-03 2024-10-11 02:45:23 +9924 9924 9925 992.4 1984.8000000000002 9924 1997-03-04 2024-10-11 02:45:24.000 1997-03-04 2024-10-11 02:45:24 +9925 9925 9926 992.5 1985 9925 1997-03-05 2024-10-11 02:45:25.000 1997-03-05 2024-10-11 02:45:25 +9926 9926 9927 992.6 1985.2 9926 1997-03-06 2024-10-11 02:45:26.000 1997-03-06 2024-10-11 02:45:26 +9927 9927 9928 992.7 1985.4 9927 1997-03-07 2024-10-11 02:45:27.000 1997-03-07 2024-10-11 02:45:27 +9928 9928 9929 992.8 1985.6000000000001 9928 1997-03-08 2024-10-11 02:45:28.000 1997-03-08 2024-10-11 02:45:28 +9929 9929 9930 992.9 1985.8000000000002 9929 1997-03-09 2024-10-11 02:45:29.000 1997-03-09 2024-10-11 02:45:29 +9930 9930 9931 993 1986 9930 1997-03-10 2024-10-11 02:45:30.000 1997-03-10 2024-10-11 02:45:30 +9931 9931 9932 993.1 1986.2 9931 1997-03-11 2024-10-11 02:45:31.000 1997-03-11 2024-10-11 02:45:31 +9932 9932 9933 993.2 1986.4 9932 1997-03-12 2024-10-11 02:45:32.000 1997-03-12 2024-10-11 02:45:32 +9933 9933 9934 993.3 1986.6000000000001 9933 1997-03-13 2024-10-11 02:45:33.000 1997-03-13 2024-10-11 02:45:33 +9934 9934 9935 993.4 1986.8000000000002 9934 1997-03-14 2024-10-11 02:45:34.000 1997-03-14 2024-10-11 02:45:34 +9935 9935 9936 993.5 1987 9935 1997-03-15 2024-10-11 02:45:35.000 1997-03-15 2024-10-11 02:45:35 +9936 9936 9937 993.6 1987.2 9936 1997-03-16 2024-10-11 02:45:36.000 1997-03-16 2024-10-11 02:45:36 +9937 9937 9938 993.7 1987.4 9937 1997-03-17 2024-10-11 02:45:37.000 1997-03-17 2024-10-11 02:45:37 +9938 9938 9939 993.8 1987.6000000000001 9938 1997-03-18 2024-10-11 02:45:38.000 1997-03-18 2024-10-11 02:45:38 +9939 9939 9940 993.9 1987.8000000000002 9939 1997-03-19 2024-10-11 02:45:39.000 1997-03-19 2024-10-11 02:45:39 +9940 9940 9941 994 1988 9940 1997-03-20 2024-10-11 02:45:40.000 1997-03-20 2024-10-11 02:45:40 +9941 9941 9942 994.1 1988.2 9941 1997-03-21 2024-10-11 02:45:41.000 1997-03-21 2024-10-11 02:45:41 +9942 9942 9943 994.2 1988.4 9942 1997-03-22 2024-10-11 02:45:42.000 1997-03-22 2024-10-11 02:45:42 +9943 9943 9944 994.3 1988.6000000000001 9943 1997-03-23 2024-10-11 02:45:43.000 1997-03-23 2024-10-11 02:45:43 +9944 9944 9945 994.4 1988.8000000000002 9944 1997-03-24 2024-10-11 02:45:44.000 1997-03-24 2024-10-11 02:45:44 +9945 9945 9946 994.5 1989 9945 1997-03-25 2024-10-11 02:45:45.000 1997-03-25 2024-10-11 02:45:45 +9946 9946 9947 994.6 1989.2 9946 1997-03-26 2024-10-11 02:45:46.000 1997-03-26 2024-10-11 02:45:46 +9947 9947 9948 994.7 1989.4 9947 1997-03-27 2024-10-11 02:45:47.000 1997-03-27 2024-10-11 02:45:47 +9948 9948 9949 994.8 1989.6000000000001 9948 1997-03-28 2024-10-11 02:45:48.000 1997-03-28 2024-10-11 02:45:48 +9949 9949 9950 994.9 1989.8000000000002 9949 1997-03-29 2024-10-11 02:45:49.000 1997-03-29 2024-10-11 02:45:49 +9950 9950 9951 995 1990 9950 1997-03-30 2024-10-11 02:45:50.000 1997-03-30 2024-10-11 02:45:50 +9951 9951 9952 995.1 1990.2 9951 1997-03-31 2024-10-11 02:45:51.000 1997-03-31 2024-10-11 02:45:51 +9952 9952 9953 995.2 1990.4 9952 1997-04-01 2024-10-11 02:45:52.000 1997-04-01 2024-10-11 02:45:52 +9953 9953 9954 995.3 1990.6000000000001 9953 1997-04-02 2024-10-11 02:45:53.000 1997-04-02 2024-10-11 02:45:53 +9954 9954 9955 995.4 1990.8000000000002 9954 1997-04-03 2024-10-11 02:45:54.000 1997-04-03 2024-10-11 02:45:54 +9955 9955 9956 995.5 1991 9955 1997-04-04 2024-10-11 02:45:55.000 1997-04-04 2024-10-11 02:45:55 +9956 9956 9957 995.6 1991.2 9956 1997-04-05 2024-10-11 02:45:56.000 1997-04-05 2024-10-11 02:45:56 +9957 9957 9958 995.7 1991.4 9957 1997-04-06 2024-10-11 02:45:57.000 1997-04-06 2024-10-11 02:45:57 +9958 9958 9959 995.8 1991.6000000000001 9958 1997-04-07 2024-10-11 02:45:58.000 1997-04-07 2024-10-11 02:45:58 +9959 9959 9960 995.9 1991.8000000000002 9959 1997-04-08 2024-10-11 02:45:59.000 1997-04-08 2024-10-11 02:45:59 +9960 9960 9961 996 1992 9960 1997-04-09 2024-10-11 02:46:00.000 1997-04-09 2024-10-11 02:46:00 +9961 9961 9962 996.1 1992.2 9961 1997-04-10 2024-10-11 02:46:01.000 1997-04-10 2024-10-11 02:46:01 +9962 9962 9963 996.2 1992.4 9962 1997-04-11 2024-10-11 02:46:02.000 1997-04-11 2024-10-11 02:46:02 +9963 9963 9964 996.3 1992.6000000000001 9963 1997-04-12 2024-10-11 02:46:03.000 1997-04-12 2024-10-11 02:46:03 +9964 9964 9965 996.4 1992.8000000000002 9964 1997-04-13 2024-10-11 02:46:04.000 1997-04-13 2024-10-11 02:46:04 +9965 9965 9966 996.5 1993 9965 1997-04-14 2024-10-11 02:46:05.000 1997-04-14 2024-10-11 02:46:05 +9966 9966 9967 996.6 1993.2 9966 1997-04-15 2024-10-11 02:46:06.000 1997-04-15 2024-10-11 02:46:06 +9967 9967 9968 996.7 1993.4 9967 1997-04-16 2024-10-11 02:46:07.000 1997-04-16 2024-10-11 02:46:07 +9968 9968 9969 996.8 1993.6000000000001 9968 1997-04-17 2024-10-11 02:46:08.000 1997-04-17 2024-10-11 02:46:08 +9969 9969 9970 996.9 1993.8000000000002 9969 1997-04-18 2024-10-11 02:46:09.000 1997-04-18 2024-10-11 02:46:09 +9970 9970 9971 997 1994 9970 1997-04-19 2024-10-11 02:46:10.000 1997-04-19 2024-10-11 02:46:10 +9971 9971 9972 997.1 1994.2 9971 1997-04-20 2024-10-11 02:46:11.000 1997-04-20 2024-10-11 02:46:11 +9972 9972 9973 997.2 1994.4 9972 1997-04-21 2024-10-11 02:46:12.000 1997-04-21 2024-10-11 02:46:12 +9973 9973 9974 997.3 1994.6000000000001 9973 1997-04-22 2024-10-11 02:46:13.000 1997-04-22 2024-10-11 02:46:13 +9974 9974 9975 997.4 1994.8000000000002 9974 1997-04-23 2024-10-11 02:46:14.000 1997-04-23 2024-10-11 02:46:14 +9975 9975 9976 997.5 1995 9975 1997-04-24 2024-10-11 02:46:15.000 1997-04-24 2024-10-11 02:46:15 +9976 9976 9977 997.6 1995.2 9976 1997-04-25 2024-10-11 02:46:16.000 1997-04-25 2024-10-11 02:46:16 +9977 9977 9978 997.7 1995.4 9977 1997-04-26 2024-10-11 02:46:17.000 1997-04-26 2024-10-11 02:46:17 +9978 9978 9979 997.8 1995.6000000000001 9978 1997-04-27 2024-10-11 02:46:18.000 1997-04-27 2024-10-11 02:46:18 +9979 9979 9980 997.9 1995.8000000000002 9979 1997-04-28 2024-10-11 02:46:19.000 1997-04-28 2024-10-11 02:46:19 +9980 9980 9981 998 1996 9980 1997-04-29 2024-10-11 02:46:20.000 1997-04-29 2024-10-11 02:46:20 +9981 9981 9982 998.1 1996.2 9981 1997-04-30 2024-10-11 02:46:21.000 1997-04-30 2024-10-11 02:46:21 +9982 9982 9983 998.2 1996.4 9982 1997-05-01 2024-10-11 02:46:22.000 1997-05-01 2024-10-11 02:46:22 +9983 9983 9984 998.3 1996.6000000000001 9983 1997-05-02 2024-10-11 02:46:23.000 1997-05-02 2024-10-11 02:46:23 +9984 9984 9985 998.4 1996.8000000000002 9984 1997-05-03 2024-10-11 02:46:24.000 1997-05-03 2024-10-11 02:46:24 +9985 9985 9986 998.5 1997 9985 1997-05-04 2024-10-11 02:46:25.000 1997-05-04 2024-10-11 02:46:25 +9986 9986 9987 998.6 1997.2 9986 1997-05-05 2024-10-11 02:46:26.000 1997-05-05 2024-10-11 02:46:26 +9987 9987 9988 998.7 1997.4 9987 1997-05-06 2024-10-11 02:46:27.000 1997-05-06 2024-10-11 02:46:27 +9988 9988 9989 998.8 1997.6000000000001 9988 1997-05-07 2024-10-11 02:46:28.000 1997-05-07 2024-10-11 02:46:28 +9989 9989 9990 998.9 1997.8000000000002 9989 1997-05-08 2024-10-11 02:46:29.000 1997-05-08 2024-10-11 02:46:29 +9990 9990 9991 999 1998 9990 1997-05-09 2024-10-11 02:46:30.000 1997-05-09 2024-10-11 02:46:30 +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9995 9995 9996 999.5 1999 9995 1997-05-14 2024-10-11 02:46:35.000 1997-05-14 2024-10-11 02:46:35 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +-- test datetime +select max(time64) from test_native_parquet; +2024-10-11 02:46:39.000 +-- test String +select max(string) from test_native_parquet; +9999 +select * from test_native_parquet where string = '1'; +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +select * from test_native_parquet where string in ('1','2','3'); +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +-- test date +select max(date) from test_native_parquet; +1997-05-18 +select * from test_native_parquet where date < '1970-01-10'; +0 0 1 0 0 0 1970-01-01 2024-10-11 00:00:00.000 1970-01-01 2024-10-11 00:00:00 +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +5 5 6 0.5 1 5 1970-01-06 2024-10-11 00:00:05.000 1970-01-06 2024-10-11 00:00:05 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +select * from test_native_parquet where date <= '1970-01-10'; +0 0 1 0 0 0 1970-01-01 2024-10-11 00:00:00.000 1970-01-01 2024-10-11 00:00:00 +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +5 5 6 0.5 1 5 1970-01-06 2024-10-11 00:00:05.000 1970-01-06 2024-10-11 00:00:05 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +select * from test_native_parquet where date between '1970-01-10' and '1970-01-20'; +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +10 10 11 1 2 10 1970-01-11 2024-10-11 00:00:10.000 1970-01-11 2024-10-11 00:00:10 +11 11 12 1.1 2.2 11 1970-01-12 2024-10-11 00:00:11.000 1970-01-12 2024-10-11 00:00:11 +12 12 13 1.2 2.4000000000000004 12 1970-01-13 2024-10-11 00:00:12.000 1970-01-13 2024-10-11 00:00:12 +13 13 14 1.3 2.6 13 1970-01-14 2024-10-11 00:00:13.000 1970-01-14 2024-10-11 00:00:13 +14 14 15 1.4 2.8000000000000003 14 1970-01-15 2024-10-11 00:00:14.000 1970-01-15 2024-10-11 00:00:14 +15 15 16 1.5 3 15 1970-01-16 2024-10-11 00:00:15.000 1970-01-16 2024-10-11 00:00:15 +16 16 17 1.6 3.2 16 1970-01-17 2024-10-11 00:00:16.000 1970-01-17 2024-10-11 00:00:16 +17 17 18 1.7 3.4000000000000004 17 1970-01-18 2024-10-11 00:00:17.000 1970-01-18 2024-10-11 00:00:17 +18 18 19 1.8 3.6 18 1970-01-19 2024-10-11 00:00:18.000 1970-01-19 2024-10-11 00:00:18 +19 19 20 1.9 3.8000000000000003 19 1970-01-20 2024-10-11 00:00:19.000 1970-01-20 2024-10-11 00:00:19 +select * from test_native_parquet where date > '1970-01-10'; +10 10 11 1 2 10 1970-01-11 2024-10-11 00:00:10.000 1970-01-11 2024-10-11 00:00:10 +11 11 12 1.1 2.2 11 1970-01-12 2024-10-11 00:00:11.000 1970-01-12 2024-10-11 00:00:11 +12 12 13 1.2 2.4000000000000004 12 1970-01-13 2024-10-11 00:00:12.000 1970-01-13 2024-10-11 00:00:12 +13 13 14 1.3 2.6 13 1970-01-14 2024-10-11 00:00:13.000 1970-01-14 2024-10-11 00:00:13 +14 14 15 1.4 2.8000000000000003 14 1970-01-15 2024-10-11 00:00:14.000 1970-01-15 2024-10-11 00:00:14 +15 15 16 1.5 3 15 1970-01-16 2024-10-11 00:00:15.000 1970-01-16 2024-10-11 00:00:15 +16 16 17 1.6 3.2 16 1970-01-17 2024-10-11 00:00:16.000 1970-01-17 2024-10-11 00:00:16 +17 17 18 1.7 3.4000000000000004 17 1970-01-18 2024-10-11 00:00:17.000 1970-01-18 2024-10-11 00:00:17 +18 18 19 1.8 3.6 18 1970-01-19 2024-10-11 00:00:18.000 1970-01-19 2024-10-11 00:00:18 +19 19 20 1.9 3.8000000000000003 19 1970-01-20 2024-10-11 00:00:19.000 1970-01-20 2024-10-11 00:00:19 +20 20 21 2 4 20 1970-01-21 2024-10-11 00:00:20.000 1970-01-21 2024-10-11 00:00:20 +21 21 22 2.1 4.2 21 1970-01-22 2024-10-11 00:00:21.000 1970-01-22 2024-10-11 00:00:21 +22 22 23 2.2 4.4 22 1970-01-23 2024-10-11 00:00:22.000 1970-01-23 2024-10-11 00:00:22 +23 23 24 2.3 4.6000000000000005 23 1970-01-24 2024-10-11 00:00:23.000 1970-01-24 2024-10-11 00:00:23 +24 24 25 2.4 4.800000000000001 24 1970-01-25 2024-10-11 00:00:24.000 1970-01-25 2024-10-11 00:00:24 +25 25 26 2.5 5 25 1970-01-26 2024-10-11 00:00:25.000 1970-01-26 2024-10-11 00:00:25 +26 26 27 2.6 5.2 26 1970-01-27 2024-10-11 00:00:26.000 1970-01-27 2024-10-11 00:00:26 +27 27 28 2.7 5.4 27 1970-01-28 2024-10-11 00:00:27.000 1970-01-28 2024-10-11 00:00:27 +28 28 29 2.8 5.6000000000000005 28 1970-01-29 2024-10-11 00:00:28.000 1970-01-29 2024-10-11 00:00:28 +29 29 30 2.9 5.800000000000001 29 1970-01-30 2024-10-11 00:00:29.000 1970-01-30 2024-10-11 00:00:29 +30 30 31 3 6 30 1970-01-31 2024-10-11 00:00:30.000 1970-01-31 2024-10-11 00:00:30 +31 31 32 3.1 6.2 31 1970-02-01 2024-10-11 00:00:31.000 1970-02-01 2024-10-11 00:00:31 +32 32 33 3.2 6.4 32 1970-02-02 2024-10-11 00:00:32.000 1970-02-02 2024-10-11 00:00:32 +33 33 34 3.3 6.6000000000000005 33 1970-02-03 2024-10-11 00:00:33.000 1970-02-03 2024-10-11 00:00:33 +34 34 35 3.4 6.800000000000001 34 1970-02-04 2024-10-11 00:00:34.000 1970-02-04 2024-10-11 00:00:34 +35 35 36 3.5 7 35 1970-02-05 2024-10-11 00:00:35.000 1970-02-05 2024-10-11 00:00:35 +36 36 37 3.6 7.2 36 1970-02-06 2024-10-11 00:00:36.000 1970-02-06 2024-10-11 00:00:36 +37 37 38 3.7 7.4 37 1970-02-07 2024-10-11 00:00:37.000 1970-02-07 2024-10-11 00:00:37 +38 38 39 3.8 7.6000000000000005 38 1970-02-08 2024-10-11 00:00:38.000 1970-02-08 2024-10-11 00:00:38 +39 39 40 3.9 7.800000000000001 39 1970-02-09 2024-10-11 00:00:39.000 1970-02-09 2024-10-11 00:00:39 +40 40 41 4 8 40 1970-02-10 2024-10-11 00:00:40.000 1970-02-10 2024-10-11 00:00:40 +41 41 42 4.1 8.200000000000001 41 1970-02-11 2024-10-11 00:00:41.000 1970-02-11 2024-10-11 00:00:41 +42 42 43 4.2 8.4 42 1970-02-12 2024-10-11 00:00:42.000 1970-02-12 2024-10-11 00:00:42 +43 43 44 4.3 8.6 43 1970-02-13 2024-10-11 00:00:43.000 1970-02-13 2024-10-11 00:00:43 +44 44 45 4.4 8.8 44 1970-02-14 2024-10-11 00:00:44.000 1970-02-14 2024-10-11 00:00:44 +45 45 46 4.5 9 45 1970-02-15 2024-10-11 00:00:45.000 1970-02-15 2024-10-11 00:00:45 +46 46 47 4.6 9.200000000000001 46 1970-02-16 2024-10-11 00:00:46.000 1970-02-16 2024-10-11 00:00:46 +47 47 48 4.7 9.4 47 1970-02-17 2024-10-11 00:00:47.000 1970-02-17 2024-10-11 00:00:47 +48 48 49 4.8 9.600000000000001 48 1970-02-18 2024-10-11 00:00:48.000 1970-02-18 2024-10-11 00:00:48 +49 49 50 4.9 9.8 49 1970-02-19 2024-10-11 00:00:49.000 1970-02-19 2024-10-11 00:00:49 +50 50 51 5 10 50 1970-02-20 2024-10-11 00:00:50.000 1970-02-20 2024-10-11 00:00:50 +51 51 52 5.1 10.200000000000001 51 1970-02-21 2024-10-11 00:00:51.000 1970-02-21 2024-10-11 00:00:51 +52 52 53 5.2 10.4 52 1970-02-22 2024-10-11 00:00:52.000 1970-02-22 2024-10-11 00:00:52 +53 53 54 5.3 10.600000000000001 53 1970-02-23 2024-10-11 00:00:53.000 1970-02-23 2024-10-11 00:00:53 +54 54 55 5.4 10.8 54 1970-02-24 2024-10-11 00:00:54.000 1970-02-24 2024-10-11 00:00:54 +55 55 56 5.5 11 55 1970-02-25 2024-10-11 00:00:55.000 1970-02-25 2024-10-11 00:00:55 +56 56 57 5.6 11.200000000000001 56 1970-02-26 2024-10-11 00:00:56.000 1970-02-26 2024-10-11 00:00:56 +57 57 58 5.7 11.4 57 1970-02-27 2024-10-11 00:00:57.000 1970-02-27 2024-10-11 00:00:57 +58 58 59 5.8 11.600000000000001 58 1970-02-28 2024-10-11 00:00:58.000 1970-02-28 2024-10-11 00:00:58 +59 59 60 5.9 11.8 59 1970-03-01 2024-10-11 00:00:59.000 1970-03-01 2024-10-11 00:00:59 +60 60 61 6 12 60 1970-03-02 2024-10-11 00:01:00.000 1970-03-02 2024-10-11 00:01:00 +61 61 62 6.1 12.200000000000001 61 1970-03-03 2024-10-11 00:01:01.000 1970-03-03 2024-10-11 00:01:01 +62 62 63 6.2 12.4 62 1970-03-04 2024-10-11 00:01:02.000 1970-03-04 2024-10-11 00:01:02 +63 63 64 6.3 12.600000000000001 63 1970-03-05 2024-10-11 00:01:03.000 1970-03-05 2024-10-11 00:01:03 +64 64 65 6.4 12.8 64 1970-03-06 2024-10-11 00:01:04.000 1970-03-06 2024-10-11 00:01:04 +65 65 66 6.5 13 65 1970-03-07 2024-10-11 00:01:05.000 1970-03-07 2024-10-11 00:01:05 +66 66 67 6.6 13.200000000000001 66 1970-03-08 2024-10-11 00:01:06.000 1970-03-08 2024-10-11 00:01:06 +67 67 68 6.7 13.4 67 1970-03-09 2024-10-11 00:01:07.000 1970-03-09 2024-10-11 00:01:07 +68 68 69 6.8 13.600000000000001 68 1970-03-10 2024-10-11 00:01:08.000 1970-03-10 2024-10-11 00:01:08 +69 69 70 6.9 13.8 69 1970-03-11 2024-10-11 00:01:09.000 1970-03-11 2024-10-11 00:01:09 +70 70 71 7 14 70 1970-03-12 2024-10-11 00:01:10.000 1970-03-12 2024-10-11 00:01:10 +71 71 72 7.1 14.200000000000001 71 1970-03-13 2024-10-11 00:01:11.000 1970-03-13 2024-10-11 00:01:11 +72 72 73 7.2 14.4 72 1970-03-14 2024-10-11 00:01:12.000 1970-03-14 2024-10-11 00:01:12 +73 73 74 7.3 14.600000000000001 73 1970-03-15 2024-10-11 00:01:13.000 1970-03-15 2024-10-11 00:01:13 +74 74 75 7.4 14.8 74 1970-03-16 2024-10-11 00:01:14.000 1970-03-16 2024-10-11 00:01:14 +75 75 76 7.5 15 75 1970-03-17 2024-10-11 00:01:15.000 1970-03-17 2024-10-11 00:01:15 +76 76 77 7.6 15.200000000000001 76 1970-03-18 2024-10-11 00:01:16.000 1970-03-18 2024-10-11 00:01:16 +77 77 78 7.7 15.4 77 1970-03-19 2024-10-11 00:01:17.000 1970-03-19 2024-10-11 00:01:17 +78 78 79 7.8 15.600000000000001 78 1970-03-20 2024-10-11 00:01:18.000 1970-03-20 2024-10-11 00:01:18 +79 79 80 7.9 15.8 79 1970-03-21 2024-10-11 00:01:19.000 1970-03-21 2024-10-11 00:01:19 +80 80 81 8 16 80 1970-03-22 2024-10-11 00:01:20.000 1970-03-22 2024-10-11 00:01:20 +81 81 82 8.1 16.2 81 1970-03-23 2024-10-11 00:01:21.000 1970-03-23 2024-10-11 00:01:21 +82 82 83 8.2 16.400000000000002 82 1970-03-24 2024-10-11 00:01:22.000 1970-03-24 2024-10-11 00:01:22 +83 83 84 8.3 16.6 83 1970-03-25 2024-10-11 00:01:23.000 1970-03-25 2024-10-11 00:01:23 +84 84 85 8.4 16.8 84 1970-03-26 2024-10-11 00:01:24.000 1970-03-26 2024-10-11 00:01:24 +85 85 86 8.5 17 85 1970-03-27 2024-10-11 00:01:25.000 1970-03-27 2024-10-11 00:01:25 +86 86 87 8.6 17.2 86 1970-03-28 2024-10-11 00:01:26.000 1970-03-28 2024-10-11 00:01:26 +87 87 88 8.7 17.400000000000002 87 1970-03-29 2024-10-11 00:01:27.000 1970-03-29 2024-10-11 00:01:27 +88 88 89 8.8 17.6 88 1970-03-30 2024-10-11 00:01:28.000 1970-03-30 2024-10-11 00:01:28 +89 89 90 8.9 17.8 89 1970-03-31 2024-10-11 00:01:29.000 1970-03-31 2024-10-11 00:01:29 +90 90 91 9 18 90 1970-04-01 2024-10-11 00:01:30.000 1970-04-01 2024-10-11 00:01:30 +91 91 92 9.1 18.2 91 1970-04-02 2024-10-11 00:01:31.000 1970-04-02 2024-10-11 00:01:31 +92 92 93 9.2 18.400000000000002 92 1970-04-03 2024-10-11 00:01:32.000 1970-04-03 2024-10-11 00:01:32 +93 93 94 9.3 18.6 93 1970-04-04 2024-10-11 00:01:33.000 1970-04-04 2024-10-11 00:01:33 +94 94 95 9.4 18.8 94 1970-04-05 2024-10-11 00:01:34.000 1970-04-05 2024-10-11 00:01:34 +95 95 96 9.5 19 95 1970-04-06 2024-10-11 00:01:35.000 1970-04-06 2024-10-11 00:01:35 +96 96 97 9.6 19.200000000000003 96 1970-04-07 2024-10-11 00:01:36.000 1970-04-07 2024-10-11 00:01:36 +97 97 98 9.7 19.400000000000002 97 1970-04-08 2024-10-11 00:01:37.000 1970-04-08 2024-10-11 00:01:37 +98 98 99 9.8 19.6 98 1970-04-09 2024-10-11 00:01:38.000 1970-04-09 2024-10-11 00:01:38 +99 99 100 9.9 19.8 99 1970-04-10 2024-10-11 00:01:39.000 1970-04-10 2024-10-11 00:01:39 +100 100 101 10 20 100 1970-04-11 2024-10-11 00:01:40.000 1970-04-11 2024-10-11 00:01:40 +101 101 102 10.1 20.200000000000003 101 1970-04-12 2024-10-11 00:01:41.000 1970-04-12 2024-10-11 00:01:41 +102 102 103 10.2 20.400000000000002 102 1970-04-13 2024-10-11 00:01:42.000 1970-04-13 2024-10-11 00:01:42 +103 103 104 10.3 20.6 103 1970-04-14 2024-10-11 00:01:43.000 1970-04-14 2024-10-11 00:01:43 +104 104 105 10.4 20.8 104 1970-04-15 2024-10-11 00:01:44.000 1970-04-15 2024-10-11 00:01:44 +105 105 106 10.5 21 105 1970-04-16 2024-10-11 00:01:45.000 1970-04-16 2024-10-11 00:01:45 +106 106 107 10.6 21.200000000000003 106 1970-04-17 2024-10-11 00:01:46.000 1970-04-17 2024-10-11 00:01:46 +107 107 108 10.7 21.400000000000002 107 1970-04-18 2024-10-11 00:01:47.000 1970-04-18 2024-10-11 00:01:47 +108 108 109 10.8 21.6 108 1970-04-19 2024-10-11 00:01:48.000 1970-04-19 2024-10-11 00:01:48 +109 109 110 10.9 21.8 109 1970-04-20 2024-10-11 00:01:49.000 1970-04-20 2024-10-11 00:01:49 +110 110 111 11 22 110 1970-04-21 2024-10-11 00:01:50.000 1970-04-21 2024-10-11 00:01:50 +111 111 112 11.1 22.200000000000003 111 1970-04-22 2024-10-11 00:01:51.000 1970-04-22 2024-10-11 00:01:51 +112 112 113 11.2 22.400000000000002 112 1970-04-23 2024-10-11 00:01:52.000 1970-04-23 2024-10-11 00:01:52 +113 113 114 11.3 22.6 113 1970-04-24 2024-10-11 00:01:53.000 1970-04-24 2024-10-11 00:01:53 +114 114 115 11.4 22.8 114 1970-04-25 2024-10-11 00:01:54.000 1970-04-25 2024-10-11 00:01:54 +115 115 116 11.5 23 115 1970-04-26 2024-10-11 00:01:55.000 1970-04-26 2024-10-11 00:01:55 +116 116 117 11.6 23.200000000000003 116 1970-04-27 2024-10-11 00:01:56.000 1970-04-27 2024-10-11 00:01:56 +117 117 118 11.7 23.400000000000002 117 1970-04-28 2024-10-11 00:01:57.000 1970-04-28 2024-10-11 00:01:57 +118 118 119 11.8 23.6 118 1970-04-29 2024-10-11 00:01:58.000 1970-04-29 2024-10-11 00:01:58 +119 119 120 11.9 23.8 119 1970-04-30 2024-10-11 00:01:59.000 1970-04-30 2024-10-11 00:01:59 +120 120 121 12 24 120 1970-05-01 2024-10-11 00:02:00.000 1970-05-01 2024-10-11 00:02:00 +121 121 122 12.1 24.200000000000003 121 1970-05-02 2024-10-11 00:02:01.000 1970-05-02 2024-10-11 00:02:01 +122 122 123 12.2 24.400000000000002 122 1970-05-03 2024-10-11 00:02:02.000 1970-05-03 2024-10-11 00:02:02 +123 123 124 12.3 24.6 123 1970-05-04 2024-10-11 00:02:03.000 1970-05-04 2024-10-11 00:02:03 +124 124 125 12.4 24.8 124 1970-05-05 2024-10-11 00:02:04.000 1970-05-05 2024-10-11 00:02:04 +125 125 126 12.5 25 125 1970-05-06 2024-10-11 00:02:05.000 1970-05-06 2024-10-11 00:02:05 +126 126 127 12.6 25.200000000000003 126 1970-05-07 2024-10-11 00:02:06.000 1970-05-07 2024-10-11 00:02:06 +127 127 128 12.7 25.400000000000002 127 1970-05-08 2024-10-11 00:02:07.000 1970-05-08 2024-10-11 00:02:07 +128 128 129 12.8 25.6 128 1970-05-09 2024-10-11 00:02:08.000 1970-05-09 2024-10-11 00:02:08 +129 129 130 12.9 25.8 129 1970-05-10 2024-10-11 00:02:09.000 1970-05-10 2024-10-11 00:02:09 +130 130 131 13 26 130 1970-05-11 2024-10-11 00:02:10.000 1970-05-11 2024-10-11 00:02:10 +131 131 132 13.1 26.200000000000003 131 1970-05-12 2024-10-11 00:02:11.000 1970-05-12 2024-10-11 00:02:11 +132 132 133 13.2 26.400000000000002 132 1970-05-13 2024-10-11 00:02:12.000 1970-05-13 2024-10-11 00:02:12 +133 133 134 13.3 26.6 133 1970-05-14 2024-10-11 00:02:13.000 1970-05-14 2024-10-11 00:02:13 +134 134 135 13.4 26.8 134 1970-05-15 2024-10-11 00:02:14.000 1970-05-15 2024-10-11 00:02:14 +135 135 136 13.5 27 135 1970-05-16 2024-10-11 00:02:15.000 1970-05-16 2024-10-11 00:02:15 +136 136 137 13.6 27.200000000000003 136 1970-05-17 2024-10-11 00:02:16.000 1970-05-17 2024-10-11 00:02:16 +137 137 138 13.7 27.400000000000002 137 1970-05-18 2024-10-11 00:02:17.000 1970-05-18 2024-10-11 00:02:17 +138 138 139 13.8 27.6 138 1970-05-19 2024-10-11 00:02:18.000 1970-05-19 2024-10-11 00:02:18 +139 139 140 13.9 27.8 139 1970-05-20 2024-10-11 00:02:19.000 1970-05-20 2024-10-11 00:02:19 +140 140 141 14 28 140 1970-05-21 2024-10-11 00:02:20.000 1970-05-21 2024-10-11 00:02:20 +141 141 142 14.1 28.200000000000003 141 1970-05-22 2024-10-11 00:02:21.000 1970-05-22 2024-10-11 00:02:21 +142 142 143 14.2 28.400000000000002 142 1970-05-23 2024-10-11 00:02:22.000 1970-05-23 2024-10-11 00:02:22 +143 143 144 14.3 28.6 143 1970-05-24 2024-10-11 00:02:23.000 1970-05-24 2024-10-11 00:02:23 +144 144 145 14.4 28.8 144 1970-05-25 2024-10-11 00:02:24.000 1970-05-25 2024-10-11 00:02:24 +145 145 146 14.5 29 145 1970-05-26 2024-10-11 00:02:25.000 1970-05-26 2024-10-11 00:02:25 +146 146 147 14.6 29.200000000000003 146 1970-05-27 2024-10-11 00:02:26.000 1970-05-27 2024-10-11 00:02:26 +147 147 148 14.7 29.400000000000002 147 1970-05-28 2024-10-11 00:02:27.000 1970-05-28 2024-10-11 00:02:27 +148 148 149 14.8 29.6 148 1970-05-29 2024-10-11 00:02:28.000 1970-05-29 2024-10-11 00:02:28 +149 149 150 14.9 29.8 149 1970-05-30 2024-10-11 00:02:29.000 1970-05-30 2024-10-11 00:02:29 +150 150 151 15 30 150 1970-05-31 2024-10-11 00:02:30.000 1970-05-31 2024-10-11 00:02:30 +151 151 152 15.1 30.200000000000003 151 1970-06-01 2024-10-11 00:02:31.000 1970-06-01 2024-10-11 00:02:31 +152 152 153 15.2 30.400000000000002 152 1970-06-02 2024-10-11 00:02:32.000 1970-06-02 2024-10-11 00:02:32 +153 153 154 15.3 30.6 153 1970-06-03 2024-10-11 00:02:33.000 1970-06-03 2024-10-11 00:02:33 +154 154 155 15.4 30.8 154 1970-06-04 2024-10-11 00:02:34.000 1970-06-04 2024-10-11 00:02:34 +155 155 156 15.5 31 155 1970-06-05 2024-10-11 00:02:35.000 1970-06-05 2024-10-11 00:02:35 +156 156 157 15.6 31.200000000000003 156 1970-06-06 2024-10-11 00:02:36.000 1970-06-06 2024-10-11 00:02:36 +157 157 158 15.7 31.400000000000002 157 1970-06-07 2024-10-11 00:02:37.000 1970-06-07 2024-10-11 00:02:37 +158 158 159 15.8 31.6 158 1970-06-08 2024-10-11 00:02:38.000 1970-06-08 2024-10-11 00:02:38 +159 159 160 15.9 31.8 159 1970-06-09 2024-10-11 00:02:39.000 1970-06-09 2024-10-11 00:02:39 +160 160 161 16 32 160 1970-06-10 2024-10-11 00:02:40.000 1970-06-10 2024-10-11 00:02:40 +161 161 162 16.1 32.2 161 1970-06-11 2024-10-11 00:02:41.000 1970-06-11 2024-10-11 00:02:41 +162 162 163 16.2 32.4 162 1970-06-12 2024-10-11 00:02:42.000 1970-06-12 2024-10-11 00:02:42 +163 163 164 16.3 32.6 163 1970-06-13 2024-10-11 00:02:43.000 1970-06-13 2024-10-11 00:02:43 +164 164 165 16.4 32.800000000000004 164 1970-06-14 2024-10-11 00:02:44.000 1970-06-14 2024-10-11 00:02:44 +165 165 166 16.5 33 165 1970-06-15 2024-10-11 00:02:45.000 1970-06-15 2024-10-11 00:02:45 +166 166 167 16.6 33.2 166 1970-06-16 2024-10-11 00:02:46.000 1970-06-16 2024-10-11 00:02:46 +167 167 168 16.7 33.4 167 1970-06-17 2024-10-11 00:02:47.000 1970-06-17 2024-10-11 00:02:47 +168 168 169 16.8 33.6 168 1970-06-18 2024-10-11 00:02:48.000 1970-06-18 2024-10-11 00:02:48 +169 169 170 16.9 33.800000000000004 169 1970-06-19 2024-10-11 00:02:49.000 1970-06-19 2024-10-11 00:02:49 +170 170 171 17 34 170 1970-06-20 2024-10-11 00:02:50.000 1970-06-20 2024-10-11 00:02:50 +171 171 172 17.1 34.2 171 1970-06-21 2024-10-11 00:02:51.000 1970-06-21 2024-10-11 00:02:51 +172 172 173 17.2 34.4 172 1970-06-22 2024-10-11 00:02:52.000 1970-06-22 2024-10-11 00:02:52 +173 173 174 17.3 34.6 173 1970-06-23 2024-10-11 00:02:53.000 1970-06-23 2024-10-11 00:02:53 +174 174 175 17.4 34.800000000000004 174 1970-06-24 2024-10-11 00:02:54.000 1970-06-24 2024-10-11 00:02:54 +175 175 176 17.5 35 175 1970-06-25 2024-10-11 00:02:55.000 1970-06-25 2024-10-11 00:02:55 +176 176 177 17.6 35.2 176 1970-06-26 2024-10-11 00:02:56.000 1970-06-26 2024-10-11 00:02:56 +177 177 178 17.7 35.4 177 1970-06-27 2024-10-11 00:02:57.000 1970-06-27 2024-10-11 00:02:57 +178 178 179 17.8 35.6 178 1970-06-28 2024-10-11 00:02:58.000 1970-06-28 2024-10-11 00:02:58 +179 179 180 17.9 35.800000000000004 179 1970-06-29 2024-10-11 00:02:59.000 1970-06-29 2024-10-11 00:02:59 +180 180 181 18 36 180 1970-06-30 2024-10-11 00:03:00.000 1970-06-30 2024-10-11 00:03:00 +181 181 182 18.1 36.2 181 1970-07-01 2024-10-11 00:03:01.000 1970-07-01 2024-10-11 00:03:01 +182 182 183 18.2 36.4 182 1970-07-02 2024-10-11 00:03:02.000 1970-07-02 2024-10-11 00:03:02 +183 183 184 18.3 36.6 183 1970-07-03 2024-10-11 00:03:03.000 1970-07-03 2024-10-11 00:03:03 +184 184 185 18.4 36.800000000000004 184 1970-07-04 2024-10-11 00:03:04.000 1970-07-04 2024-10-11 00:03:04 +185 185 186 18.5 37 185 1970-07-05 2024-10-11 00:03:05.000 1970-07-05 2024-10-11 00:03:05 +186 186 187 18.6 37.2 186 1970-07-06 2024-10-11 00:03:06.000 1970-07-06 2024-10-11 00:03:06 +187 187 188 18.7 37.4 187 1970-07-07 2024-10-11 00:03:07.000 1970-07-07 2024-10-11 00:03:07 +188 188 189 18.8 37.6 188 1970-07-08 2024-10-11 00:03:08.000 1970-07-08 2024-10-11 00:03:08 +189 189 190 18.9 37.800000000000004 189 1970-07-09 2024-10-11 00:03:09.000 1970-07-09 2024-10-11 00:03:09 +190 190 191 19 38 190 1970-07-10 2024-10-11 00:03:10.000 1970-07-10 2024-10-11 00:03:10 +191 191 192 19.1 38.2 191 1970-07-11 2024-10-11 00:03:11.000 1970-07-11 2024-10-11 00:03:11 +192 192 193 19.2 38.400000000000006 192 1970-07-12 2024-10-11 00:03:12.000 1970-07-12 2024-10-11 00:03:12 +193 193 194 19.3 38.6 193 1970-07-13 2024-10-11 00:03:13.000 1970-07-13 2024-10-11 00:03:13 +194 194 195 19.4 38.800000000000004 194 1970-07-14 2024-10-11 00:03:14.000 1970-07-14 2024-10-11 00:03:14 +195 195 196 19.5 39 195 1970-07-15 2024-10-11 00:03:15.000 1970-07-15 2024-10-11 00:03:15 +196 196 197 19.6 39.2 196 1970-07-16 2024-10-11 00:03:16.000 1970-07-16 2024-10-11 00:03:16 +197 197 198 19.7 39.400000000000006 197 1970-07-17 2024-10-11 00:03:17.000 1970-07-17 2024-10-11 00:03:17 +198 198 199 19.8 39.6 198 1970-07-18 2024-10-11 00:03:18.000 1970-07-18 2024-10-11 00:03:18 +199 199 200 19.9 39.800000000000004 199 1970-07-19 2024-10-11 00:03:19.000 1970-07-19 2024-10-11 00:03:19 +200 200 201 20 40 200 1970-07-20 2024-10-11 00:03:20.000 1970-07-20 2024-10-11 00:03:20 +201 201 202 20.1 40.2 201 1970-07-21 2024-10-11 00:03:21.000 1970-07-21 2024-10-11 00:03:21 +202 202 203 20.2 40.400000000000006 202 1970-07-22 2024-10-11 00:03:22.000 1970-07-22 2024-10-11 00:03:22 +203 203 204 20.3 40.6 203 1970-07-23 2024-10-11 00:03:23.000 1970-07-23 2024-10-11 00:03:23 +204 204 205 20.4 40.800000000000004 204 1970-07-24 2024-10-11 00:03:24.000 1970-07-24 2024-10-11 00:03:24 +205 205 206 20.5 41 205 1970-07-25 2024-10-11 00:03:25.000 1970-07-25 2024-10-11 00:03:25 +206 206 207 20.6 41.2 206 1970-07-26 2024-10-11 00:03:26.000 1970-07-26 2024-10-11 00:03:26 +207 207 208 20.7 41.400000000000006 207 1970-07-27 2024-10-11 00:03:27.000 1970-07-27 2024-10-11 00:03:27 +208 208 209 20.8 41.6 208 1970-07-28 2024-10-11 00:03:28.000 1970-07-28 2024-10-11 00:03:28 +209 209 210 20.9 41.800000000000004 209 1970-07-29 2024-10-11 00:03:29.000 1970-07-29 2024-10-11 00:03:29 +210 210 211 21 42 210 1970-07-30 2024-10-11 00:03:30.000 1970-07-30 2024-10-11 00:03:30 +211 211 212 21.1 42.2 211 1970-07-31 2024-10-11 00:03:31.000 1970-07-31 2024-10-11 00:03:31 +212 212 213 21.2 42.400000000000006 212 1970-08-01 2024-10-11 00:03:32.000 1970-08-01 2024-10-11 00:03:32 +213 213 214 21.3 42.6 213 1970-08-02 2024-10-11 00:03:33.000 1970-08-02 2024-10-11 00:03:33 +214 214 215 21.4 42.800000000000004 214 1970-08-03 2024-10-11 00:03:34.000 1970-08-03 2024-10-11 00:03:34 +215 215 216 21.5 43 215 1970-08-04 2024-10-11 00:03:35.000 1970-08-04 2024-10-11 00:03:35 +216 216 217 21.6 43.2 216 1970-08-05 2024-10-11 00:03:36.000 1970-08-05 2024-10-11 00:03:36 +217 217 218 21.7 43.400000000000006 217 1970-08-06 2024-10-11 00:03:37.000 1970-08-06 2024-10-11 00:03:37 +218 218 219 21.8 43.6 218 1970-08-07 2024-10-11 00:03:38.000 1970-08-07 2024-10-11 00:03:38 +219 219 220 21.9 43.800000000000004 219 1970-08-08 2024-10-11 00:03:39.000 1970-08-08 2024-10-11 00:03:39 +220 220 221 22 44 220 1970-08-09 2024-10-11 00:03:40.000 1970-08-09 2024-10-11 00:03:40 +221 221 222 22.1 44.2 221 1970-08-10 2024-10-11 00:03:41.000 1970-08-10 2024-10-11 00:03:41 +222 222 223 22.2 44.400000000000006 222 1970-08-11 2024-10-11 00:03:42.000 1970-08-11 2024-10-11 00:03:42 +223 223 224 22.3 44.6 223 1970-08-12 2024-10-11 00:03:43.000 1970-08-12 2024-10-11 00:03:43 +224 224 225 22.4 44.800000000000004 224 1970-08-13 2024-10-11 00:03:44.000 1970-08-13 2024-10-11 00:03:44 +225 225 226 22.5 45 225 1970-08-14 2024-10-11 00:03:45.000 1970-08-14 2024-10-11 00:03:45 +226 226 227 22.6 45.2 226 1970-08-15 2024-10-11 00:03:46.000 1970-08-15 2024-10-11 00:03:46 +227 227 228 22.7 45.400000000000006 227 1970-08-16 2024-10-11 00:03:47.000 1970-08-16 2024-10-11 00:03:47 +228 228 229 22.8 45.6 228 1970-08-17 2024-10-11 00:03:48.000 1970-08-17 2024-10-11 00:03:48 +229 229 230 22.9 45.800000000000004 229 1970-08-18 2024-10-11 00:03:49.000 1970-08-18 2024-10-11 00:03:49 +230 230 231 23 46 230 1970-08-19 2024-10-11 00:03:50.000 1970-08-19 2024-10-11 00:03:50 +231 231 232 23.1 46.2 231 1970-08-20 2024-10-11 00:03:51.000 1970-08-20 2024-10-11 00:03:51 +232 232 233 23.2 46.400000000000006 232 1970-08-21 2024-10-11 00:03:52.000 1970-08-21 2024-10-11 00:03:52 +233 233 234 23.3 46.6 233 1970-08-22 2024-10-11 00:03:53.000 1970-08-22 2024-10-11 00:03:53 +234 234 235 23.4 46.800000000000004 234 1970-08-23 2024-10-11 00:03:54.000 1970-08-23 2024-10-11 00:03:54 +235 235 236 23.5 47 235 1970-08-24 2024-10-11 00:03:55.000 1970-08-24 2024-10-11 00:03:55 +236 236 237 23.6 47.2 236 1970-08-25 2024-10-11 00:03:56.000 1970-08-25 2024-10-11 00:03:56 +237 237 238 23.7 47.400000000000006 237 1970-08-26 2024-10-11 00:03:57.000 1970-08-26 2024-10-11 00:03:57 +238 238 239 23.8 47.6 238 1970-08-27 2024-10-11 00:03:58.000 1970-08-27 2024-10-11 00:03:58 +239 239 240 23.9 47.800000000000004 239 1970-08-28 2024-10-11 00:03:59.000 1970-08-28 2024-10-11 00:03:59 +240 240 241 24 48 240 1970-08-29 2024-10-11 00:04:00.000 1970-08-29 2024-10-11 00:04:00 +241 241 242 24.1 48.2 241 1970-08-30 2024-10-11 00:04:01.000 1970-08-30 2024-10-11 00:04:01 +242 242 243 24.2 48.400000000000006 242 1970-08-31 2024-10-11 00:04:02.000 1970-08-31 2024-10-11 00:04:02 +243 243 244 24.3 48.6 243 1970-09-01 2024-10-11 00:04:03.000 1970-09-01 2024-10-11 00:04:03 +244 244 245 24.4 48.800000000000004 244 1970-09-02 2024-10-11 00:04:04.000 1970-09-02 2024-10-11 00:04:04 +245 245 246 24.5 49 245 1970-09-03 2024-10-11 00:04:05.000 1970-09-03 2024-10-11 00:04:05 +246 246 247 24.6 49.2 246 1970-09-04 2024-10-11 00:04:06.000 1970-09-04 2024-10-11 00:04:06 +247 247 248 24.7 49.400000000000006 247 1970-09-05 2024-10-11 00:04:07.000 1970-09-05 2024-10-11 00:04:07 +248 248 249 24.8 49.6 248 1970-09-06 2024-10-11 00:04:08.000 1970-09-06 2024-10-11 00:04:08 +249 249 250 24.9 49.800000000000004 249 1970-09-07 2024-10-11 00:04:09.000 1970-09-07 2024-10-11 00:04:09 +250 250 251 25 50 250 1970-09-08 2024-10-11 00:04:10.000 1970-09-08 2024-10-11 00:04:10 +251 251 252 25.1 50.2 251 1970-09-09 2024-10-11 00:04:11.000 1970-09-09 2024-10-11 00:04:11 +252 252 253 25.2 50.400000000000006 252 1970-09-10 2024-10-11 00:04:12.000 1970-09-10 2024-10-11 00:04:12 +253 253 254 25.3 50.6 253 1970-09-11 2024-10-11 00:04:13.000 1970-09-11 2024-10-11 00:04:13 +254 254 255 25.4 50.800000000000004 254 1970-09-12 2024-10-11 00:04:14.000 1970-09-12 2024-10-11 00:04:14 +255 255 256 25.5 51 255 1970-09-13 2024-10-11 00:04:15.000 1970-09-13 2024-10-11 00:04:15 +256 256 257 25.6 51.2 256 1970-09-14 2024-10-11 00:04:16.000 1970-09-14 2024-10-11 00:04:16 +257 257 258 25.7 51.400000000000006 257 1970-09-15 2024-10-11 00:04:17.000 1970-09-15 2024-10-11 00:04:17 +258 258 259 25.8 51.6 258 1970-09-16 2024-10-11 00:04:18.000 1970-09-16 2024-10-11 00:04:18 +259 259 260 25.9 51.800000000000004 259 1970-09-17 2024-10-11 00:04:19.000 1970-09-17 2024-10-11 00:04:19 +260 260 261 26 52 260 1970-09-18 2024-10-11 00:04:20.000 1970-09-18 2024-10-11 00:04:20 +261 261 262 26.1 52.2 261 1970-09-19 2024-10-11 00:04:21.000 1970-09-19 2024-10-11 00:04:21 +262 262 263 26.2 52.400000000000006 262 1970-09-20 2024-10-11 00:04:22.000 1970-09-20 2024-10-11 00:04:22 +263 263 264 26.3 52.6 263 1970-09-21 2024-10-11 00:04:23.000 1970-09-21 2024-10-11 00:04:23 +264 264 265 26.4 52.800000000000004 264 1970-09-22 2024-10-11 00:04:24.000 1970-09-22 2024-10-11 00:04:24 +265 265 266 26.5 53 265 1970-09-23 2024-10-11 00:04:25.000 1970-09-23 2024-10-11 00:04:25 +266 266 267 26.6 53.2 266 1970-09-24 2024-10-11 00:04:26.000 1970-09-24 2024-10-11 00:04:26 +267 267 268 26.7 53.400000000000006 267 1970-09-25 2024-10-11 00:04:27.000 1970-09-25 2024-10-11 00:04:27 +268 268 269 26.8 53.6 268 1970-09-26 2024-10-11 00:04:28.000 1970-09-26 2024-10-11 00:04:28 +269 269 270 26.9 53.800000000000004 269 1970-09-27 2024-10-11 00:04:29.000 1970-09-27 2024-10-11 00:04:29 +270 270 271 27 54 270 1970-09-28 2024-10-11 00:04:30.000 1970-09-28 2024-10-11 00:04:30 +271 271 272 27.1 54.2 271 1970-09-29 2024-10-11 00:04:31.000 1970-09-29 2024-10-11 00:04:31 +272 272 273 27.2 54.400000000000006 272 1970-09-30 2024-10-11 00:04:32.000 1970-09-30 2024-10-11 00:04:32 +273 273 274 27.3 54.6 273 1970-10-01 2024-10-11 00:04:33.000 1970-10-01 2024-10-11 00:04:33 +274 274 275 27.4 54.800000000000004 274 1970-10-02 2024-10-11 00:04:34.000 1970-10-02 2024-10-11 00:04:34 +275 275 276 27.5 55 275 1970-10-03 2024-10-11 00:04:35.000 1970-10-03 2024-10-11 00:04:35 +276 276 277 27.6 55.2 276 1970-10-04 2024-10-11 00:04:36.000 1970-10-04 2024-10-11 00:04:36 +277 277 278 27.7 55.400000000000006 277 1970-10-05 2024-10-11 00:04:37.000 1970-10-05 2024-10-11 00:04:37 +278 278 279 27.8 55.6 278 1970-10-06 2024-10-11 00:04:38.000 1970-10-06 2024-10-11 00:04:38 +279 279 280 27.9 55.800000000000004 279 1970-10-07 2024-10-11 00:04:39.000 1970-10-07 2024-10-11 00:04:39 +280 280 281 28 56 280 1970-10-08 2024-10-11 00:04:40.000 1970-10-08 2024-10-11 00:04:40 +281 281 282 28.1 56.2 281 1970-10-09 2024-10-11 00:04:41.000 1970-10-09 2024-10-11 00:04:41 +282 282 283 28.2 56.400000000000006 282 1970-10-10 2024-10-11 00:04:42.000 1970-10-10 2024-10-11 00:04:42 +283 283 284 28.3 56.6 283 1970-10-11 2024-10-11 00:04:43.000 1970-10-11 2024-10-11 00:04:43 +284 284 285 28.4 56.800000000000004 284 1970-10-12 2024-10-11 00:04:44.000 1970-10-12 2024-10-11 00:04:44 +285 285 286 28.5 57 285 1970-10-13 2024-10-11 00:04:45.000 1970-10-13 2024-10-11 00:04:45 +286 286 287 28.6 57.2 286 1970-10-14 2024-10-11 00:04:46.000 1970-10-14 2024-10-11 00:04:46 +287 287 288 28.7 57.400000000000006 287 1970-10-15 2024-10-11 00:04:47.000 1970-10-15 2024-10-11 00:04:47 +288 288 289 28.8 57.6 288 1970-10-16 2024-10-11 00:04:48.000 1970-10-16 2024-10-11 00:04:48 +289 289 290 28.9 57.800000000000004 289 1970-10-17 2024-10-11 00:04:49.000 1970-10-17 2024-10-11 00:04:49 +290 290 291 29 58 290 1970-10-18 2024-10-11 00:04:50.000 1970-10-18 2024-10-11 00:04:50 +291 291 292 29.1 58.2 291 1970-10-19 2024-10-11 00:04:51.000 1970-10-19 2024-10-11 00:04:51 +292 292 293 29.2 58.400000000000006 292 1970-10-20 2024-10-11 00:04:52.000 1970-10-20 2024-10-11 00:04:52 +293 293 294 29.3 58.6 293 1970-10-21 2024-10-11 00:04:53.000 1970-10-21 2024-10-11 00:04:53 +294 294 295 29.4 58.800000000000004 294 1970-10-22 2024-10-11 00:04:54.000 1970-10-22 2024-10-11 00:04:54 +295 295 296 29.5 59 295 1970-10-23 2024-10-11 00:04:55.000 1970-10-23 2024-10-11 00:04:55 +296 296 297 29.6 59.2 296 1970-10-24 2024-10-11 00:04:56.000 1970-10-24 2024-10-11 00:04:56 +297 297 298 29.7 59.400000000000006 297 1970-10-25 2024-10-11 00:04:57.000 1970-10-25 2024-10-11 00:04:57 +298 298 299 29.8 59.6 298 1970-10-26 2024-10-11 00:04:58.000 1970-10-26 2024-10-11 00:04:58 +299 299 300 29.9 59.800000000000004 299 1970-10-27 2024-10-11 00:04:59.000 1970-10-27 2024-10-11 00:04:59 +300 300 301 30 60 300 1970-10-28 2024-10-11 00:05:00.000 1970-10-28 2024-10-11 00:05:00 +301 301 302 30.1 60.2 301 1970-10-29 2024-10-11 00:05:01.000 1970-10-29 2024-10-11 00:05:01 +302 302 303 30.2 60.400000000000006 302 1970-10-30 2024-10-11 00:05:02.000 1970-10-30 2024-10-11 00:05:02 +303 303 304 30.3 60.6 303 1970-10-31 2024-10-11 00:05:03.000 1970-10-31 2024-10-11 00:05:03 +304 304 305 30.4 60.800000000000004 304 1970-11-01 2024-10-11 00:05:04.000 1970-11-01 2024-10-11 00:05:04 +305 305 306 30.5 61 305 1970-11-02 2024-10-11 00:05:05.000 1970-11-02 2024-10-11 00:05:05 +306 306 307 30.6 61.2 306 1970-11-03 2024-10-11 00:05:06.000 1970-11-03 2024-10-11 00:05:06 +307 307 308 30.7 61.400000000000006 307 1970-11-04 2024-10-11 00:05:07.000 1970-11-04 2024-10-11 00:05:07 +308 308 309 30.8 61.6 308 1970-11-05 2024-10-11 00:05:08.000 1970-11-05 2024-10-11 00:05:08 +309 309 310 30.9 61.800000000000004 309 1970-11-06 2024-10-11 00:05:09.000 1970-11-06 2024-10-11 00:05:09 +310 310 311 31 62 310 1970-11-07 2024-10-11 00:05:10.000 1970-11-07 2024-10-11 00:05:10 +311 311 312 31.1 62.2 311 1970-11-08 2024-10-11 00:05:11.000 1970-11-08 2024-10-11 00:05:11 +312 312 313 31.2 62.400000000000006 312 1970-11-09 2024-10-11 00:05:12.000 1970-11-09 2024-10-11 00:05:12 +313 313 314 31.3 62.6 313 1970-11-10 2024-10-11 00:05:13.000 1970-11-10 2024-10-11 00:05:13 +314 314 315 31.4 62.800000000000004 314 1970-11-11 2024-10-11 00:05:14.000 1970-11-11 2024-10-11 00:05:14 +315 315 316 31.5 63 315 1970-11-12 2024-10-11 00:05:15.000 1970-11-12 2024-10-11 00:05:15 +316 316 317 31.6 63.2 316 1970-11-13 2024-10-11 00:05:16.000 1970-11-13 2024-10-11 00:05:16 +317 317 318 31.7 63.400000000000006 317 1970-11-14 2024-10-11 00:05:17.000 1970-11-14 2024-10-11 00:05:17 +318 318 319 31.8 63.6 318 1970-11-15 2024-10-11 00:05:18.000 1970-11-15 2024-10-11 00:05:18 +319 319 320 31.9 63.800000000000004 319 1970-11-16 2024-10-11 00:05:19.000 1970-11-16 2024-10-11 00:05:19 +320 320 321 32 64 320 1970-11-17 2024-10-11 00:05:20.000 1970-11-17 2024-10-11 00:05:20 +321 321 322 32.1 64.2 321 1970-11-18 2024-10-11 00:05:21.000 1970-11-18 2024-10-11 00:05:21 +322 322 323 32.2 64.4 322 1970-11-19 2024-10-11 00:05:22.000 1970-11-19 2024-10-11 00:05:22 +323 323 324 32.3 64.60000000000001 323 1970-11-20 2024-10-11 00:05:23.000 1970-11-20 2024-10-11 00:05:23 +324 324 325 32.4 64.8 324 1970-11-21 2024-10-11 00:05:24.000 1970-11-21 2024-10-11 00:05:24 +325 325 326 32.5 65 325 1970-11-22 2024-10-11 00:05:25.000 1970-11-22 2024-10-11 00:05:25 +326 326 327 32.6 65.2 326 1970-11-23 2024-10-11 00:05:26.000 1970-11-23 2024-10-11 00:05:26 +327 327 328 32.7 65.4 327 1970-11-24 2024-10-11 00:05:27.000 1970-11-24 2024-10-11 00:05:27 +328 328 329 32.8 65.60000000000001 328 1970-11-25 2024-10-11 00:05:28.000 1970-11-25 2024-10-11 00:05:28 +329 329 330 32.9 65.8 329 1970-11-26 2024-10-11 00:05:29.000 1970-11-26 2024-10-11 00:05:29 +330 330 331 33 66 330 1970-11-27 2024-10-11 00:05:30.000 1970-11-27 2024-10-11 00:05:30 +331 331 332 33.1 66.2 331 1970-11-28 2024-10-11 00:05:31.000 1970-11-28 2024-10-11 00:05:31 +332 332 333 33.2 66.4 332 1970-11-29 2024-10-11 00:05:32.000 1970-11-29 2024-10-11 00:05:32 +333 333 334 33.3 66.60000000000001 333 1970-11-30 2024-10-11 00:05:33.000 1970-11-30 2024-10-11 00:05:33 +334 334 335 33.4 66.8 334 1970-12-01 2024-10-11 00:05:34.000 1970-12-01 2024-10-11 00:05:34 +335 335 336 33.5 67 335 1970-12-02 2024-10-11 00:05:35.000 1970-12-02 2024-10-11 00:05:35 +336 336 337 33.6 67.2 336 1970-12-03 2024-10-11 00:05:36.000 1970-12-03 2024-10-11 00:05:36 +337 337 338 33.7 67.4 337 1970-12-04 2024-10-11 00:05:37.000 1970-12-04 2024-10-11 00:05:37 +338 338 339 33.8 67.60000000000001 338 1970-12-05 2024-10-11 00:05:38.000 1970-12-05 2024-10-11 00:05:38 +339 339 340 33.9 67.8 339 1970-12-06 2024-10-11 00:05:39.000 1970-12-06 2024-10-11 00:05:39 +340 340 341 34 68 340 1970-12-07 2024-10-11 00:05:40.000 1970-12-07 2024-10-11 00:05:40 +341 341 342 34.1 68.2 341 1970-12-08 2024-10-11 00:05:41.000 1970-12-08 2024-10-11 00:05:41 +342 342 343 34.2 68.4 342 1970-12-09 2024-10-11 00:05:42.000 1970-12-09 2024-10-11 00:05:42 +343 343 344 34.3 68.60000000000001 343 1970-12-10 2024-10-11 00:05:43.000 1970-12-10 2024-10-11 00:05:43 +344 344 345 34.4 68.8 344 1970-12-11 2024-10-11 00:05:44.000 1970-12-11 2024-10-11 00:05:44 +345 345 346 34.5 69 345 1970-12-12 2024-10-11 00:05:45.000 1970-12-12 2024-10-11 00:05:45 +346 346 347 34.6 69.2 346 1970-12-13 2024-10-11 00:05:46.000 1970-12-13 2024-10-11 00:05:46 +347 347 348 34.7 69.4 347 1970-12-14 2024-10-11 00:05:47.000 1970-12-14 2024-10-11 00:05:47 +348 348 349 34.8 69.60000000000001 348 1970-12-15 2024-10-11 00:05:48.000 1970-12-15 2024-10-11 00:05:48 +349 349 350 34.9 69.8 349 1970-12-16 2024-10-11 00:05:49.000 1970-12-16 2024-10-11 00:05:49 +350 350 351 35 70 350 1970-12-17 2024-10-11 00:05:50.000 1970-12-17 2024-10-11 00:05:50 +351 351 352 35.1 70.2 351 1970-12-18 2024-10-11 00:05:51.000 1970-12-18 2024-10-11 00:05:51 +352 352 353 35.2 70.4 352 1970-12-19 2024-10-11 00:05:52.000 1970-12-19 2024-10-11 00:05:52 +353 353 354 35.3 70.60000000000001 353 1970-12-20 2024-10-11 00:05:53.000 1970-12-20 2024-10-11 00:05:53 +354 354 355 35.4 70.8 354 1970-12-21 2024-10-11 00:05:54.000 1970-12-21 2024-10-11 00:05:54 +355 355 356 35.5 71 355 1970-12-22 2024-10-11 00:05:55.000 1970-12-22 2024-10-11 00:05:55 +356 356 357 35.6 71.2 356 1970-12-23 2024-10-11 00:05:56.000 1970-12-23 2024-10-11 00:05:56 +357 357 358 35.7 71.4 357 1970-12-24 2024-10-11 00:05:57.000 1970-12-24 2024-10-11 00:05:57 +358 358 359 35.8 71.60000000000001 358 1970-12-25 2024-10-11 00:05:58.000 1970-12-25 2024-10-11 00:05:58 +359 359 360 35.9 71.8 359 1970-12-26 2024-10-11 00:05:59.000 1970-12-26 2024-10-11 00:05:59 +360 360 361 36 72 360 1970-12-27 2024-10-11 00:06:00.000 1970-12-27 2024-10-11 00:06:00 +361 361 362 36.1 72.2 361 1970-12-28 2024-10-11 00:06:01.000 1970-12-28 2024-10-11 00:06:01 +362 362 363 36.2 72.4 362 1970-12-29 2024-10-11 00:06:02.000 1970-12-29 2024-10-11 00:06:02 +363 363 364 36.3 72.60000000000001 363 1970-12-30 2024-10-11 00:06:03.000 1970-12-30 2024-10-11 00:06:03 +364 364 365 36.4 72.8 364 1970-12-31 2024-10-11 00:06:04.000 1970-12-31 2024-10-11 00:06:04 +365 365 366 36.5 73 365 1971-01-01 2024-10-11 00:06:05.000 1971-01-01 2024-10-11 00:06:05 +366 366 367 36.6 73.2 366 1971-01-02 2024-10-11 00:06:06.000 1971-01-02 2024-10-11 00:06:06 +367 367 368 36.7 73.4 367 1971-01-03 2024-10-11 00:06:07.000 1971-01-03 2024-10-11 00:06:07 +368 368 369 36.8 73.60000000000001 368 1971-01-04 2024-10-11 00:06:08.000 1971-01-04 2024-10-11 00:06:08 +369 369 370 36.9 73.8 369 1971-01-05 2024-10-11 00:06:09.000 1971-01-05 2024-10-11 00:06:09 +370 370 371 37 74 370 1971-01-06 2024-10-11 00:06:10.000 1971-01-06 2024-10-11 00:06:10 +371 371 372 37.1 74.2 371 1971-01-07 2024-10-11 00:06:11.000 1971-01-07 2024-10-11 00:06:11 +372 372 373 37.2 74.4 372 1971-01-08 2024-10-11 00:06:12.000 1971-01-08 2024-10-11 00:06:12 +373 373 374 37.3 74.60000000000001 373 1971-01-09 2024-10-11 00:06:13.000 1971-01-09 2024-10-11 00:06:13 +374 374 375 37.4 74.8 374 1971-01-10 2024-10-11 00:06:14.000 1971-01-10 2024-10-11 00:06:14 +375 375 376 37.5 75 375 1971-01-11 2024-10-11 00:06:15.000 1971-01-11 2024-10-11 00:06:15 +376 376 377 37.6 75.2 376 1971-01-12 2024-10-11 00:06:16.000 1971-01-12 2024-10-11 00:06:16 +377 377 378 37.7 75.4 377 1971-01-13 2024-10-11 00:06:17.000 1971-01-13 2024-10-11 00:06:17 +378 378 379 37.8 75.60000000000001 378 1971-01-14 2024-10-11 00:06:18.000 1971-01-14 2024-10-11 00:06:18 +379 379 380 37.9 75.8 379 1971-01-15 2024-10-11 00:06:19.000 1971-01-15 2024-10-11 00:06:19 +380 380 381 38 76 380 1971-01-16 2024-10-11 00:06:20.000 1971-01-16 2024-10-11 00:06:20 +381 381 382 38.1 76.2 381 1971-01-17 2024-10-11 00:06:21.000 1971-01-17 2024-10-11 00:06:21 +382 382 383 38.2 76.4 382 1971-01-18 2024-10-11 00:06:22.000 1971-01-18 2024-10-11 00:06:22 +383 383 384 38.3 76.60000000000001 383 1971-01-19 2024-10-11 00:06:23.000 1971-01-19 2024-10-11 00:06:23 +384 384 385 38.4 76.80000000000001 384 1971-01-20 2024-10-11 00:06:24.000 1971-01-20 2024-10-11 00:06:24 +385 385 386 38.5 77 385 1971-01-21 2024-10-11 00:06:25.000 1971-01-21 2024-10-11 00:06:25 +386 386 387 38.6 77.2 386 1971-01-22 2024-10-11 00:06:26.000 1971-01-22 2024-10-11 00:06:26 +387 387 388 38.7 77.4 387 1971-01-23 2024-10-11 00:06:27.000 1971-01-23 2024-10-11 00:06:27 +388 388 389 38.8 77.60000000000001 388 1971-01-24 2024-10-11 00:06:28.000 1971-01-24 2024-10-11 00:06:28 +389 389 390 38.9 77.80000000000001 389 1971-01-25 2024-10-11 00:06:29.000 1971-01-25 2024-10-11 00:06:29 +390 390 391 39 78 390 1971-01-26 2024-10-11 00:06:30.000 1971-01-26 2024-10-11 00:06:30 +391 391 392 39.1 78.2 391 1971-01-27 2024-10-11 00:06:31.000 1971-01-27 2024-10-11 00:06:31 +392 392 393 39.2 78.4 392 1971-01-28 2024-10-11 00:06:32.000 1971-01-28 2024-10-11 00:06:32 +393 393 394 39.3 78.60000000000001 393 1971-01-29 2024-10-11 00:06:33.000 1971-01-29 2024-10-11 00:06:33 +394 394 395 39.4 78.80000000000001 394 1971-01-30 2024-10-11 00:06:34.000 1971-01-30 2024-10-11 00:06:34 +395 395 396 39.5 79 395 1971-01-31 2024-10-11 00:06:35.000 1971-01-31 2024-10-11 00:06:35 +396 396 397 39.6 79.2 396 1971-02-01 2024-10-11 00:06:36.000 1971-02-01 2024-10-11 00:06:36 +397 397 398 39.7 79.4 397 1971-02-02 2024-10-11 00:06:37.000 1971-02-02 2024-10-11 00:06:37 +398 398 399 39.8 79.60000000000001 398 1971-02-03 2024-10-11 00:06:38.000 1971-02-03 2024-10-11 00:06:38 +399 399 400 39.9 79.80000000000001 399 1971-02-04 2024-10-11 00:06:39.000 1971-02-04 2024-10-11 00:06:39 +400 400 401 40 80 400 1971-02-05 2024-10-11 00:06:40.000 1971-02-05 2024-10-11 00:06:40 +401 401 402 40.1 80.2 401 1971-02-06 2024-10-11 00:06:41.000 1971-02-06 2024-10-11 00:06:41 +402 402 403 40.2 80.4 402 1971-02-07 2024-10-11 00:06:42.000 1971-02-07 2024-10-11 00:06:42 +403 403 404 40.3 80.60000000000001 403 1971-02-08 2024-10-11 00:06:43.000 1971-02-08 2024-10-11 00:06:43 +404 404 405 40.4 80.80000000000001 404 1971-02-09 2024-10-11 00:06:44.000 1971-02-09 2024-10-11 00:06:44 +405 405 406 40.5 81 405 1971-02-10 2024-10-11 00:06:45.000 1971-02-10 2024-10-11 00:06:45 +406 406 407 40.6 81.2 406 1971-02-11 2024-10-11 00:06:46.000 1971-02-11 2024-10-11 00:06:46 +407 407 408 40.7 81.4 407 1971-02-12 2024-10-11 00:06:47.000 1971-02-12 2024-10-11 00:06:47 +408 408 409 40.8 81.60000000000001 408 1971-02-13 2024-10-11 00:06:48.000 1971-02-13 2024-10-11 00:06:48 +409 409 410 40.9 81.80000000000001 409 1971-02-14 2024-10-11 00:06:49.000 1971-02-14 2024-10-11 00:06:49 +410 410 411 41 82 410 1971-02-15 2024-10-11 00:06:50.000 1971-02-15 2024-10-11 00:06:50 +411 411 412 41.1 82.2 411 1971-02-16 2024-10-11 00:06:51.000 1971-02-16 2024-10-11 00:06:51 +412 412 413 41.2 82.4 412 1971-02-17 2024-10-11 00:06:52.000 1971-02-17 2024-10-11 00:06:52 +413 413 414 41.3 82.60000000000001 413 1971-02-18 2024-10-11 00:06:53.000 1971-02-18 2024-10-11 00:06:53 +414 414 415 41.4 82.80000000000001 414 1971-02-19 2024-10-11 00:06:54.000 1971-02-19 2024-10-11 00:06:54 +415 415 416 41.5 83 415 1971-02-20 2024-10-11 00:06:55.000 1971-02-20 2024-10-11 00:06:55 +416 416 417 41.6 83.2 416 1971-02-21 2024-10-11 00:06:56.000 1971-02-21 2024-10-11 00:06:56 +417 417 418 41.7 83.4 417 1971-02-22 2024-10-11 00:06:57.000 1971-02-22 2024-10-11 00:06:57 +418 418 419 41.8 83.60000000000001 418 1971-02-23 2024-10-11 00:06:58.000 1971-02-23 2024-10-11 00:06:58 +419 419 420 41.9 83.80000000000001 419 1971-02-24 2024-10-11 00:06:59.000 1971-02-24 2024-10-11 00:06:59 +420 420 421 42 84 420 1971-02-25 2024-10-11 00:07:00.000 1971-02-25 2024-10-11 00:07:00 +421 421 422 42.1 84.2 421 1971-02-26 2024-10-11 00:07:01.000 1971-02-26 2024-10-11 00:07:01 +422 422 423 42.2 84.4 422 1971-02-27 2024-10-11 00:07:02.000 1971-02-27 2024-10-11 00:07:02 +423 423 424 42.3 84.60000000000001 423 1971-02-28 2024-10-11 00:07:03.000 1971-02-28 2024-10-11 00:07:03 +424 424 425 42.4 84.80000000000001 424 1971-03-01 2024-10-11 00:07:04.000 1971-03-01 2024-10-11 00:07:04 +425 425 426 42.5 85 425 1971-03-02 2024-10-11 00:07:05.000 1971-03-02 2024-10-11 00:07:05 +426 426 427 42.6 85.2 426 1971-03-03 2024-10-11 00:07:06.000 1971-03-03 2024-10-11 00:07:06 +427 427 428 42.7 85.4 427 1971-03-04 2024-10-11 00:07:07.000 1971-03-04 2024-10-11 00:07:07 +428 428 429 42.8 85.60000000000001 428 1971-03-05 2024-10-11 00:07:08.000 1971-03-05 2024-10-11 00:07:08 +429 429 430 42.9 85.80000000000001 429 1971-03-06 2024-10-11 00:07:09.000 1971-03-06 2024-10-11 00:07:09 +430 430 431 43 86 430 1971-03-07 2024-10-11 00:07:10.000 1971-03-07 2024-10-11 00:07:10 +431 431 432 43.1 86.2 431 1971-03-08 2024-10-11 00:07:11.000 1971-03-08 2024-10-11 00:07:11 +432 432 433 43.2 86.4 432 1971-03-09 2024-10-11 00:07:12.000 1971-03-09 2024-10-11 00:07:12 +433 433 434 43.3 86.60000000000001 433 1971-03-10 2024-10-11 00:07:13.000 1971-03-10 2024-10-11 00:07:13 +434 434 435 43.4 86.80000000000001 434 1971-03-11 2024-10-11 00:07:14.000 1971-03-11 2024-10-11 00:07:14 +435 435 436 43.5 87 435 1971-03-12 2024-10-11 00:07:15.000 1971-03-12 2024-10-11 00:07:15 +436 436 437 43.6 87.2 436 1971-03-13 2024-10-11 00:07:16.000 1971-03-13 2024-10-11 00:07:16 +437 437 438 43.7 87.4 437 1971-03-14 2024-10-11 00:07:17.000 1971-03-14 2024-10-11 00:07:17 +438 438 439 43.8 87.60000000000001 438 1971-03-15 2024-10-11 00:07:18.000 1971-03-15 2024-10-11 00:07:18 +439 439 440 43.9 87.80000000000001 439 1971-03-16 2024-10-11 00:07:19.000 1971-03-16 2024-10-11 00:07:19 +440 440 441 44 88 440 1971-03-17 2024-10-11 00:07:20.000 1971-03-17 2024-10-11 00:07:20 +441 441 442 44.1 88.2 441 1971-03-18 2024-10-11 00:07:21.000 1971-03-18 2024-10-11 00:07:21 +442 442 443 44.2 88.4 442 1971-03-19 2024-10-11 00:07:22.000 1971-03-19 2024-10-11 00:07:22 +443 443 444 44.3 88.60000000000001 443 1971-03-20 2024-10-11 00:07:23.000 1971-03-20 2024-10-11 00:07:23 +444 444 445 44.4 88.80000000000001 444 1971-03-21 2024-10-11 00:07:24.000 1971-03-21 2024-10-11 00:07:24 +445 445 446 44.5 89 445 1971-03-22 2024-10-11 00:07:25.000 1971-03-22 2024-10-11 00:07:25 +446 446 447 44.6 89.2 446 1971-03-23 2024-10-11 00:07:26.000 1971-03-23 2024-10-11 00:07:26 +447 447 448 44.7 89.4 447 1971-03-24 2024-10-11 00:07:27.000 1971-03-24 2024-10-11 00:07:27 +448 448 449 44.8 89.60000000000001 448 1971-03-25 2024-10-11 00:07:28.000 1971-03-25 2024-10-11 00:07:28 +449 449 450 44.9 89.80000000000001 449 1971-03-26 2024-10-11 00:07:29.000 1971-03-26 2024-10-11 00:07:29 +450 450 451 45 90 450 1971-03-27 2024-10-11 00:07:30.000 1971-03-27 2024-10-11 00:07:30 +451 451 452 45.1 90.2 451 1971-03-28 2024-10-11 00:07:31.000 1971-03-28 2024-10-11 00:07:31 +452 452 453 45.2 90.4 452 1971-03-29 2024-10-11 00:07:32.000 1971-03-29 2024-10-11 00:07:32 +453 453 454 45.3 90.60000000000001 453 1971-03-30 2024-10-11 00:07:33.000 1971-03-30 2024-10-11 00:07:33 +454 454 455 45.4 90.80000000000001 454 1971-03-31 2024-10-11 00:07:34.000 1971-03-31 2024-10-11 00:07:34 +455 455 456 45.5 91 455 1971-04-01 2024-10-11 00:07:35.000 1971-04-01 2024-10-11 00:07:35 +456 456 457 45.6 91.2 456 1971-04-02 2024-10-11 00:07:36.000 1971-04-02 2024-10-11 00:07:36 +457 457 458 45.7 91.4 457 1971-04-03 2024-10-11 00:07:37.000 1971-04-03 2024-10-11 00:07:37 +458 458 459 45.8 91.60000000000001 458 1971-04-04 2024-10-11 00:07:38.000 1971-04-04 2024-10-11 00:07:38 +459 459 460 45.9 91.80000000000001 459 1971-04-05 2024-10-11 00:07:39.000 1971-04-05 2024-10-11 00:07:39 +460 460 461 46 92 460 1971-04-06 2024-10-11 00:07:40.000 1971-04-06 2024-10-11 00:07:40 +461 461 462 46.1 92.2 461 1971-04-07 2024-10-11 00:07:41.000 1971-04-07 2024-10-11 00:07:41 +462 462 463 46.2 92.4 462 1971-04-08 2024-10-11 00:07:42.000 1971-04-08 2024-10-11 00:07:42 +463 463 464 46.3 92.60000000000001 463 1971-04-09 2024-10-11 00:07:43.000 1971-04-09 2024-10-11 00:07:43 +464 464 465 46.4 92.80000000000001 464 1971-04-10 2024-10-11 00:07:44.000 1971-04-10 2024-10-11 00:07:44 +465 465 466 46.5 93 465 1971-04-11 2024-10-11 00:07:45.000 1971-04-11 2024-10-11 00:07:45 +466 466 467 46.6 93.2 466 1971-04-12 2024-10-11 00:07:46.000 1971-04-12 2024-10-11 00:07:46 +467 467 468 46.7 93.4 467 1971-04-13 2024-10-11 00:07:47.000 1971-04-13 2024-10-11 00:07:47 +468 468 469 46.8 93.60000000000001 468 1971-04-14 2024-10-11 00:07:48.000 1971-04-14 2024-10-11 00:07:48 +469 469 470 46.9 93.80000000000001 469 1971-04-15 2024-10-11 00:07:49.000 1971-04-15 2024-10-11 00:07:49 +470 470 471 47 94 470 1971-04-16 2024-10-11 00:07:50.000 1971-04-16 2024-10-11 00:07:50 +471 471 472 47.1 94.2 471 1971-04-17 2024-10-11 00:07:51.000 1971-04-17 2024-10-11 00:07:51 +472 472 473 47.2 94.4 472 1971-04-18 2024-10-11 00:07:52.000 1971-04-18 2024-10-11 00:07:52 +473 473 474 47.3 94.60000000000001 473 1971-04-19 2024-10-11 00:07:53.000 1971-04-19 2024-10-11 00:07:53 +474 474 475 47.4 94.80000000000001 474 1971-04-20 2024-10-11 00:07:54.000 1971-04-20 2024-10-11 00:07:54 +475 475 476 47.5 95 475 1971-04-21 2024-10-11 00:07:55.000 1971-04-21 2024-10-11 00:07:55 +476 476 477 47.6 95.2 476 1971-04-22 2024-10-11 00:07:56.000 1971-04-22 2024-10-11 00:07:56 +477 477 478 47.7 95.4 477 1971-04-23 2024-10-11 00:07:57.000 1971-04-23 2024-10-11 00:07:57 +478 478 479 47.8 95.60000000000001 478 1971-04-24 2024-10-11 00:07:58.000 1971-04-24 2024-10-11 00:07:58 +479 479 480 47.9 95.80000000000001 479 1971-04-25 2024-10-11 00:07:59.000 1971-04-25 2024-10-11 00:07:59 +480 480 481 48 96 480 1971-04-26 2024-10-11 00:08:00.000 1971-04-26 2024-10-11 00:08:00 +481 481 482 48.1 96.2 481 1971-04-27 2024-10-11 00:08:01.000 1971-04-27 2024-10-11 00:08:01 +482 482 483 48.2 96.4 482 1971-04-28 2024-10-11 00:08:02.000 1971-04-28 2024-10-11 00:08:02 +483 483 484 48.3 96.60000000000001 483 1971-04-29 2024-10-11 00:08:03.000 1971-04-29 2024-10-11 00:08:03 +484 484 485 48.4 96.80000000000001 484 1971-04-30 2024-10-11 00:08:04.000 1971-04-30 2024-10-11 00:08:04 +485 485 486 48.5 97 485 1971-05-01 2024-10-11 00:08:05.000 1971-05-01 2024-10-11 00:08:05 +486 486 487 48.6 97.2 486 1971-05-02 2024-10-11 00:08:06.000 1971-05-02 2024-10-11 00:08:06 +487 487 488 48.7 97.4 487 1971-05-03 2024-10-11 00:08:07.000 1971-05-03 2024-10-11 00:08:07 +488 488 489 48.8 97.60000000000001 488 1971-05-04 2024-10-11 00:08:08.000 1971-05-04 2024-10-11 00:08:08 +489 489 490 48.9 97.80000000000001 489 1971-05-05 2024-10-11 00:08:09.000 1971-05-05 2024-10-11 00:08:09 +490 490 491 49 98 490 1971-05-06 2024-10-11 00:08:10.000 1971-05-06 2024-10-11 00:08:10 +491 491 492 49.1 98.2 491 1971-05-07 2024-10-11 00:08:11.000 1971-05-07 2024-10-11 00:08:11 +492 492 493 49.2 98.4 492 1971-05-08 2024-10-11 00:08:12.000 1971-05-08 2024-10-11 00:08:12 +493 493 494 49.3 98.60000000000001 493 1971-05-09 2024-10-11 00:08:13.000 1971-05-09 2024-10-11 00:08:13 +494 494 495 49.4 98.80000000000001 494 1971-05-10 2024-10-11 00:08:14.000 1971-05-10 2024-10-11 00:08:14 +495 495 496 49.5 99 495 1971-05-11 2024-10-11 00:08:15.000 1971-05-11 2024-10-11 00:08:15 +496 496 497 49.6 99.2 496 1971-05-12 2024-10-11 00:08:16.000 1971-05-12 2024-10-11 00:08:16 +497 497 498 49.7 99.4 497 1971-05-13 2024-10-11 00:08:17.000 1971-05-13 2024-10-11 00:08:17 +498 498 499 49.8 99.60000000000001 498 1971-05-14 2024-10-11 00:08:18.000 1971-05-14 2024-10-11 00:08:18 +499 499 500 49.9 99.80000000000001 499 1971-05-15 2024-10-11 00:08:19.000 1971-05-15 2024-10-11 00:08:19 +500 500 501 50 100 500 1971-05-16 2024-10-11 00:08:20.000 1971-05-16 2024-10-11 00:08:20 +501 501 502 50.1 100.2 501 1971-05-17 2024-10-11 00:08:21.000 1971-05-17 2024-10-11 00:08:21 +502 502 503 50.2 100.4 502 1971-05-18 2024-10-11 00:08:22.000 1971-05-18 2024-10-11 00:08:22 +503 503 504 50.3 100.60000000000001 503 1971-05-19 2024-10-11 00:08:23.000 1971-05-19 2024-10-11 00:08:23 +504 504 505 50.4 100.80000000000001 504 1971-05-20 2024-10-11 00:08:24.000 1971-05-20 2024-10-11 00:08:24 +505 505 506 50.5 101 505 1971-05-21 2024-10-11 00:08:25.000 1971-05-21 2024-10-11 00:08:25 +506 506 507 50.6 101.2 506 1971-05-22 2024-10-11 00:08:26.000 1971-05-22 2024-10-11 00:08:26 +507 507 508 50.7 101.4 507 1971-05-23 2024-10-11 00:08:27.000 1971-05-23 2024-10-11 00:08:27 +508 508 509 50.8 101.60000000000001 508 1971-05-24 2024-10-11 00:08:28.000 1971-05-24 2024-10-11 00:08:28 +509 509 510 50.9 101.80000000000001 509 1971-05-25 2024-10-11 00:08:29.000 1971-05-25 2024-10-11 00:08:29 +510 510 511 51 102 510 1971-05-26 2024-10-11 00:08:30.000 1971-05-26 2024-10-11 00:08:30 +511 511 512 51.1 102.2 511 1971-05-27 2024-10-11 00:08:31.000 1971-05-27 2024-10-11 00:08:31 +512 512 513 51.2 102.4 512 1971-05-28 2024-10-11 00:08:32.000 1971-05-28 2024-10-11 00:08:32 +513 513 514 51.3 102.60000000000001 513 1971-05-29 2024-10-11 00:08:33.000 1971-05-29 2024-10-11 00:08:33 +514 514 515 51.4 102.80000000000001 514 1971-05-30 2024-10-11 00:08:34.000 1971-05-30 2024-10-11 00:08:34 +515 515 516 51.5 103 515 1971-05-31 2024-10-11 00:08:35.000 1971-05-31 2024-10-11 00:08:35 +516 516 517 51.6 103.2 516 1971-06-01 2024-10-11 00:08:36.000 1971-06-01 2024-10-11 00:08:36 +517 517 518 51.7 103.4 517 1971-06-02 2024-10-11 00:08:37.000 1971-06-02 2024-10-11 00:08:37 +518 518 519 51.8 103.60000000000001 518 1971-06-03 2024-10-11 00:08:38.000 1971-06-03 2024-10-11 00:08:38 +519 519 520 51.9 103.80000000000001 519 1971-06-04 2024-10-11 00:08:39.000 1971-06-04 2024-10-11 00:08:39 +520 520 521 52 104 520 1971-06-05 2024-10-11 00:08:40.000 1971-06-05 2024-10-11 00:08:40 +521 521 522 52.1 104.2 521 1971-06-06 2024-10-11 00:08:41.000 1971-06-06 2024-10-11 00:08:41 +522 522 523 52.2 104.4 522 1971-06-07 2024-10-11 00:08:42.000 1971-06-07 2024-10-11 00:08:42 +523 523 524 52.3 104.60000000000001 523 1971-06-08 2024-10-11 00:08:43.000 1971-06-08 2024-10-11 00:08:43 +524 524 525 52.4 104.80000000000001 524 1971-06-09 2024-10-11 00:08:44.000 1971-06-09 2024-10-11 00:08:44 +525 525 526 52.5 105 525 1971-06-10 2024-10-11 00:08:45.000 1971-06-10 2024-10-11 00:08:45 +526 526 527 52.6 105.2 526 1971-06-11 2024-10-11 00:08:46.000 1971-06-11 2024-10-11 00:08:46 +527 527 528 52.7 105.4 527 1971-06-12 2024-10-11 00:08:47.000 1971-06-12 2024-10-11 00:08:47 +528 528 529 52.8 105.60000000000001 528 1971-06-13 2024-10-11 00:08:48.000 1971-06-13 2024-10-11 00:08:48 +529 529 530 52.9 105.80000000000001 529 1971-06-14 2024-10-11 00:08:49.000 1971-06-14 2024-10-11 00:08:49 +530 530 531 53 106 530 1971-06-15 2024-10-11 00:08:50.000 1971-06-15 2024-10-11 00:08:50 +531 531 532 53.1 106.2 531 1971-06-16 2024-10-11 00:08:51.000 1971-06-16 2024-10-11 00:08:51 +532 532 533 53.2 106.4 532 1971-06-17 2024-10-11 00:08:52.000 1971-06-17 2024-10-11 00:08:52 +533 533 534 53.3 106.60000000000001 533 1971-06-18 2024-10-11 00:08:53.000 1971-06-18 2024-10-11 00:08:53 +534 534 535 53.4 106.80000000000001 534 1971-06-19 2024-10-11 00:08:54.000 1971-06-19 2024-10-11 00:08:54 +535 535 536 53.5 107 535 1971-06-20 2024-10-11 00:08:55.000 1971-06-20 2024-10-11 00:08:55 +536 536 537 53.6 107.2 536 1971-06-21 2024-10-11 00:08:56.000 1971-06-21 2024-10-11 00:08:56 +537 537 538 53.7 107.4 537 1971-06-22 2024-10-11 00:08:57.000 1971-06-22 2024-10-11 00:08:57 +538 538 539 53.8 107.60000000000001 538 1971-06-23 2024-10-11 00:08:58.000 1971-06-23 2024-10-11 00:08:58 +539 539 540 53.9 107.80000000000001 539 1971-06-24 2024-10-11 00:08:59.000 1971-06-24 2024-10-11 00:08:59 +540 540 541 54 108 540 1971-06-25 2024-10-11 00:09:00.000 1971-06-25 2024-10-11 00:09:00 +541 541 542 54.1 108.2 541 1971-06-26 2024-10-11 00:09:01.000 1971-06-26 2024-10-11 00:09:01 +542 542 543 54.2 108.4 542 1971-06-27 2024-10-11 00:09:02.000 1971-06-27 2024-10-11 00:09:02 +543 543 544 54.3 108.60000000000001 543 1971-06-28 2024-10-11 00:09:03.000 1971-06-28 2024-10-11 00:09:03 +544 544 545 54.4 108.80000000000001 544 1971-06-29 2024-10-11 00:09:04.000 1971-06-29 2024-10-11 00:09:04 +545 545 546 54.5 109 545 1971-06-30 2024-10-11 00:09:05.000 1971-06-30 2024-10-11 00:09:05 +546 546 547 54.6 109.2 546 1971-07-01 2024-10-11 00:09:06.000 1971-07-01 2024-10-11 00:09:06 +547 547 548 54.7 109.4 547 1971-07-02 2024-10-11 00:09:07.000 1971-07-02 2024-10-11 00:09:07 +548 548 549 54.8 109.60000000000001 548 1971-07-03 2024-10-11 00:09:08.000 1971-07-03 2024-10-11 00:09:08 +549 549 550 54.9 109.80000000000001 549 1971-07-04 2024-10-11 00:09:09.000 1971-07-04 2024-10-11 00:09:09 +550 550 551 55 110 550 1971-07-05 2024-10-11 00:09:10.000 1971-07-05 2024-10-11 00:09:10 +551 551 552 55.1 110.2 551 1971-07-06 2024-10-11 00:09:11.000 1971-07-06 2024-10-11 00:09:11 +552 552 553 55.2 110.4 552 1971-07-07 2024-10-11 00:09:12.000 1971-07-07 2024-10-11 00:09:12 +553 553 554 55.3 110.60000000000001 553 1971-07-08 2024-10-11 00:09:13.000 1971-07-08 2024-10-11 00:09:13 +554 554 555 55.4 110.80000000000001 554 1971-07-09 2024-10-11 00:09:14.000 1971-07-09 2024-10-11 00:09:14 +555 555 556 55.5 111 555 1971-07-10 2024-10-11 00:09:15.000 1971-07-10 2024-10-11 00:09:15 +556 556 557 55.6 111.2 556 1971-07-11 2024-10-11 00:09:16.000 1971-07-11 2024-10-11 00:09:16 +557 557 558 55.7 111.4 557 1971-07-12 2024-10-11 00:09:17.000 1971-07-12 2024-10-11 00:09:17 +558 558 559 55.8 111.60000000000001 558 1971-07-13 2024-10-11 00:09:18.000 1971-07-13 2024-10-11 00:09:18 +559 559 560 55.9 111.80000000000001 559 1971-07-14 2024-10-11 00:09:19.000 1971-07-14 2024-10-11 00:09:19 +560 560 561 56 112 560 1971-07-15 2024-10-11 00:09:20.000 1971-07-15 2024-10-11 00:09:20 +561 561 562 56.1 112.2 561 1971-07-16 2024-10-11 00:09:21.000 1971-07-16 2024-10-11 00:09:21 +562 562 563 56.2 112.4 562 1971-07-17 2024-10-11 00:09:22.000 1971-07-17 2024-10-11 00:09:22 +563 563 564 56.3 112.60000000000001 563 1971-07-18 2024-10-11 00:09:23.000 1971-07-18 2024-10-11 00:09:23 +564 564 565 56.4 112.80000000000001 564 1971-07-19 2024-10-11 00:09:24.000 1971-07-19 2024-10-11 00:09:24 +565 565 566 56.5 113 565 1971-07-20 2024-10-11 00:09:25.000 1971-07-20 2024-10-11 00:09:25 +566 566 567 56.6 113.2 566 1971-07-21 2024-10-11 00:09:26.000 1971-07-21 2024-10-11 00:09:26 +567 567 568 56.7 113.4 567 1971-07-22 2024-10-11 00:09:27.000 1971-07-22 2024-10-11 00:09:27 +568 568 569 56.8 113.60000000000001 568 1971-07-23 2024-10-11 00:09:28.000 1971-07-23 2024-10-11 00:09:28 +569 569 570 56.9 113.80000000000001 569 1971-07-24 2024-10-11 00:09:29.000 1971-07-24 2024-10-11 00:09:29 +570 570 571 57 114 570 1971-07-25 2024-10-11 00:09:30.000 1971-07-25 2024-10-11 00:09:30 +571 571 572 57.1 114.2 571 1971-07-26 2024-10-11 00:09:31.000 1971-07-26 2024-10-11 00:09:31 +572 572 573 57.2 114.4 572 1971-07-27 2024-10-11 00:09:32.000 1971-07-27 2024-10-11 00:09:32 +573 573 574 57.3 114.60000000000001 573 1971-07-28 2024-10-11 00:09:33.000 1971-07-28 2024-10-11 00:09:33 +574 574 575 57.4 114.80000000000001 574 1971-07-29 2024-10-11 00:09:34.000 1971-07-29 2024-10-11 00:09:34 +575 575 576 57.5 115 575 1971-07-30 2024-10-11 00:09:35.000 1971-07-30 2024-10-11 00:09:35 +576 576 577 57.6 115.2 576 1971-07-31 2024-10-11 00:09:36.000 1971-07-31 2024-10-11 00:09:36 +577 577 578 57.7 115.4 577 1971-08-01 2024-10-11 00:09:37.000 1971-08-01 2024-10-11 00:09:37 +578 578 579 57.8 115.60000000000001 578 1971-08-02 2024-10-11 00:09:38.000 1971-08-02 2024-10-11 00:09:38 +579 579 580 57.9 115.80000000000001 579 1971-08-03 2024-10-11 00:09:39.000 1971-08-03 2024-10-11 00:09:39 +580 580 581 58 116 580 1971-08-04 2024-10-11 00:09:40.000 1971-08-04 2024-10-11 00:09:40 +581 581 582 58.1 116.2 581 1971-08-05 2024-10-11 00:09:41.000 1971-08-05 2024-10-11 00:09:41 +582 582 583 58.2 116.4 582 1971-08-06 2024-10-11 00:09:42.000 1971-08-06 2024-10-11 00:09:42 +583 583 584 58.3 116.60000000000001 583 1971-08-07 2024-10-11 00:09:43.000 1971-08-07 2024-10-11 00:09:43 +584 584 585 58.4 116.80000000000001 584 1971-08-08 2024-10-11 00:09:44.000 1971-08-08 2024-10-11 00:09:44 +585 585 586 58.5 117 585 1971-08-09 2024-10-11 00:09:45.000 1971-08-09 2024-10-11 00:09:45 +586 586 587 58.6 117.2 586 1971-08-10 2024-10-11 00:09:46.000 1971-08-10 2024-10-11 00:09:46 +587 587 588 58.7 117.4 587 1971-08-11 2024-10-11 00:09:47.000 1971-08-11 2024-10-11 00:09:47 +588 588 589 58.8 117.60000000000001 588 1971-08-12 2024-10-11 00:09:48.000 1971-08-12 2024-10-11 00:09:48 +589 589 590 58.9 117.80000000000001 589 1971-08-13 2024-10-11 00:09:49.000 1971-08-13 2024-10-11 00:09:49 +590 590 591 59 118 590 1971-08-14 2024-10-11 00:09:50.000 1971-08-14 2024-10-11 00:09:50 +591 591 592 59.1 118.2 591 1971-08-15 2024-10-11 00:09:51.000 1971-08-15 2024-10-11 00:09:51 +592 592 593 59.2 118.4 592 1971-08-16 2024-10-11 00:09:52.000 1971-08-16 2024-10-11 00:09:52 +593 593 594 59.3 118.60000000000001 593 1971-08-17 2024-10-11 00:09:53.000 1971-08-17 2024-10-11 00:09:53 +594 594 595 59.4 118.80000000000001 594 1971-08-18 2024-10-11 00:09:54.000 1971-08-18 2024-10-11 00:09:54 +595 595 596 59.5 119 595 1971-08-19 2024-10-11 00:09:55.000 1971-08-19 2024-10-11 00:09:55 +596 596 597 59.6 119.2 596 1971-08-20 2024-10-11 00:09:56.000 1971-08-20 2024-10-11 00:09:56 +597 597 598 59.7 119.4 597 1971-08-21 2024-10-11 00:09:57.000 1971-08-21 2024-10-11 00:09:57 +598 598 599 59.8 119.60000000000001 598 1971-08-22 2024-10-11 00:09:58.000 1971-08-22 2024-10-11 00:09:58 +599 599 600 59.9 119.80000000000001 599 1971-08-23 2024-10-11 00:09:59.000 1971-08-23 2024-10-11 00:09:59 +600 600 601 60 120 600 1971-08-24 2024-10-11 00:10:00.000 1971-08-24 2024-10-11 00:10:00 +601 601 602 60.1 120.2 601 1971-08-25 2024-10-11 00:10:01.000 1971-08-25 2024-10-11 00:10:01 +602 602 603 60.2 120.4 602 1971-08-26 2024-10-11 00:10:02.000 1971-08-26 2024-10-11 00:10:02 +603 603 604 60.3 120.60000000000001 603 1971-08-27 2024-10-11 00:10:03.000 1971-08-27 2024-10-11 00:10:03 +604 604 605 60.4 120.80000000000001 604 1971-08-28 2024-10-11 00:10:04.000 1971-08-28 2024-10-11 00:10:04 +605 605 606 60.5 121 605 1971-08-29 2024-10-11 00:10:05.000 1971-08-29 2024-10-11 00:10:05 +606 606 607 60.6 121.2 606 1971-08-30 2024-10-11 00:10:06.000 1971-08-30 2024-10-11 00:10:06 +607 607 608 60.7 121.4 607 1971-08-31 2024-10-11 00:10:07.000 1971-08-31 2024-10-11 00:10:07 +608 608 609 60.8 121.60000000000001 608 1971-09-01 2024-10-11 00:10:08.000 1971-09-01 2024-10-11 00:10:08 +609 609 610 60.9 121.80000000000001 609 1971-09-02 2024-10-11 00:10:09.000 1971-09-02 2024-10-11 00:10:09 +610 610 611 61 122 610 1971-09-03 2024-10-11 00:10:10.000 1971-09-03 2024-10-11 00:10:10 +611 611 612 61.1 122.2 611 1971-09-04 2024-10-11 00:10:11.000 1971-09-04 2024-10-11 00:10:11 +612 612 613 61.2 122.4 612 1971-09-05 2024-10-11 00:10:12.000 1971-09-05 2024-10-11 00:10:12 +613 613 614 61.3 122.60000000000001 613 1971-09-06 2024-10-11 00:10:13.000 1971-09-06 2024-10-11 00:10:13 +614 614 615 61.4 122.80000000000001 614 1971-09-07 2024-10-11 00:10:14.000 1971-09-07 2024-10-11 00:10:14 +615 615 616 61.5 123 615 1971-09-08 2024-10-11 00:10:15.000 1971-09-08 2024-10-11 00:10:15 +616 616 617 61.6 123.2 616 1971-09-09 2024-10-11 00:10:16.000 1971-09-09 2024-10-11 00:10:16 +617 617 618 61.7 123.4 617 1971-09-10 2024-10-11 00:10:17.000 1971-09-10 2024-10-11 00:10:17 +618 618 619 61.8 123.60000000000001 618 1971-09-11 2024-10-11 00:10:18.000 1971-09-11 2024-10-11 00:10:18 +619 619 620 61.9 123.80000000000001 619 1971-09-12 2024-10-11 00:10:19.000 1971-09-12 2024-10-11 00:10:19 +620 620 621 62 124 620 1971-09-13 2024-10-11 00:10:20.000 1971-09-13 2024-10-11 00:10:20 +621 621 622 62.1 124.2 621 1971-09-14 2024-10-11 00:10:21.000 1971-09-14 2024-10-11 00:10:21 +622 622 623 62.2 124.4 622 1971-09-15 2024-10-11 00:10:22.000 1971-09-15 2024-10-11 00:10:22 +623 623 624 62.3 124.60000000000001 623 1971-09-16 2024-10-11 00:10:23.000 1971-09-16 2024-10-11 00:10:23 +624 624 625 62.4 124.80000000000001 624 1971-09-17 2024-10-11 00:10:24.000 1971-09-17 2024-10-11 00:10:24 +625 625 626 62.5 125 625 1971-09-18 2024-10-11 00:10:25.000 1971-09-18 2024-10-11 00:10:25 +626 626 627 62.6 125.2 626 1971-09-19 2024-10-11 00:10:26.000 1971-09-19 2024-10-11 00:10:26 +627 627 628 62.7 125.4 627 1971-09-20 2024-10-11 00:10:27.000 1971-09-20 2024-10-11 00:10:27 +628 628 629 62.8 125.60000000000001 628 1971-09-21 2024-10-11 00:10:28.000 1971-09-21 2024-10-11 00:10:28 +629 629 630 62.9 125.80000000000001 629 1971-09-22 2024-10-11 00:10:29.000 1971-09-22 2024-10-11 00:10:29 +630 630 631 63 126 630 1971-09-23 2024-10-11 00:10:30.000 1971-09-23 2024-10-11 00:10:30 +631 631 632 63.1 126.2 631 1971-09-24 2024-10-11 00:10:31.000 1971-09-24 2024-10-11 00:10:31 +632 632 633 63.2 126.4 632 1971-09-25 2024-10-11 00:10:32.000 1971-09-25 2024-10-11 00:10:32 +633 633 634 63.3 126.60000000000001 633 1971-09-26 2024-10-11 00:10:33.000 1971-09-26 2024-10-11 00:10:33 +634 634 635 63.4 126.80000000000001 634 1971-09-27 2024-10-11 00:10:34.000 1971-09-27 2024-10-11 00:10:34 +635 635 636 63.5 127 635 1971-09-28 2024-10-11 00:10:35.000 1971-09-28 2024-10-11 00:10:35 +636 636 637 63.6 127.2 636 1971-09-29 2024-10-11 00:10:36.000 1971-09-29 2024-10-11 00:10:36 +637 637 638 63.7 127.4 637 1971-09-30 2024-10-11 00:10:37.000 1971-09-30 2024-10-11 00:10:37 +638 638 639 63.8 127.60000000000001 638 1971-10-01 2024-10-11 00:10:38.000 1971-10-01 2024-10-11 00:10:38 +639 639 640 63.9 127.80000000000001 639 1971-10-02 2024-10-11 00:10:39.000 1971-10-02 2024-10-11 00:10:39 +640 640 641 64 128 640 1971-10-03 2024-10-11 00:10:40.000 1971-10-03 2024-10-11 00:10:40 +641 641 642 64.1 128.20000000000002 641 1971-10-04 2024-10-11 00:10:41.000 1971-10-04 2024-10-11 00:10:41 +642 642 643 64.2 128.4 642 1971-10-05 2024-10-11 00:10:42.000 1971-10-05 2024-10-11 00:10:42 +643 643 644 64.3 128.6 643 1971-10-06 2024-10-11 00:10:43.000 1971-10-06 2024-10-11 00:10:43 +644 644 645 64.4 128.8 644 1971-10-07 2024-10-11 00:10:44.000 1971-10-07 2024-10-11 00:10:44 +645 645 646 64.5 129 645 1971-10-08 2024-10-11 00:10:45.000 1971-10-08 2024-10-11 00:10:45 +646 646 647 64.6 129.20000000000002 646 1971-10-09 2024-10-11 00:10:46.000 1971-10-09 2024-10-11 00:10:46 +647 647 648 64.7 129.4 647 1971-10-10 2024-10-11 00:10:47.000 1971-10-10 2024-10-11 00:10:47 +648 648 649 64.8 129.6 648 1971-10-11 2024-10-11 00:10:48.000 1971-10-11 2024-10-11 00:10:48 +649 649 650 64.9 129.8 649 1971-10-12 2024-10-11 00:10:49.000 1971-10-12 2024-10-11 00:10:49 +650 650 651 65 130 650 1971-10-13 2024-10-11 00:10:50.000 1971-10-13 2024-10-11 00:10:50 +651 651 652 65.1 130.20000000000002 651 1971-10-14 2024-10-11 00:10:51.000 1971-10-14 2024-10-11 00:10:51 +652 652 653 65.2 130.4 652 1971-10-15 2024-10-11 00:10:52.000 1971-10-15 2024-10-11 00:10:52 +653 653 654 65.3 130.6 653 1971-10-16 2024-10-11 00:10:53.000 1971-10-16 2024-10-11 00:10:53 +654 654 655 65.4 130.8 654 1971-10-17 2024-10-11 00:10:54.000 1971-10-17 2024-10-11 00:10:54 +655 655 656 65.5 131 655 1971-10-18 2024-10-11 00:10:55.000 1971-10-18 2024-10-11 00:10:55 +656 656 657 65.6 131.20000000000002 656 1971-10-19 2024-10-11 00:10:56.000 1971-10-19 2024-10-11 00:10:56 +657 657 658 65.7 131.4 657 1971-10-20 2024-10-11 00:10:57.000 1971-10-20 2024-10-11 00:10:57 +658 658 659 65.8 131.6 658 1971-10-21 2024-10-11 00:10:58.000 1971-10-21 2024-10-11 00:10:58 +659 659 660 65.9 131.8 659 1971-10-22 2024-10-11 00:10:59.000 1971-10-22 2024-10-11 00:10:59 +660 660 661 66 132 660 1971-10-23 2024-10-11 00:11:00.000 1971-10-23 2024-10-11 00:11:00 +661 661 662 66.1 132.20000000000002 661 1971-10-24 2024-10-11 00:11:01.000 1971-10-24 2024-10-11 00:11:01 +662 662 663 66.2 132.4 662 1971-10-25 2024-10-11 00:11:02.000 1971-10-25 2024-10-11 00:11:02 +663 663 664 66.3 132.6 663 1971-10-26 2024-10-11 00:11:03.000 1971-10-26 2024-10-11 00:11:03 +664 664 665 66.4 132.8 664 1971-10-27 2024-10-11 00:11:04.000 1971-10-27 2024-10-11 00:11:04 +665 665 666 66.5 133 665 1971-10-28 2024-10-11 00:11:05.000 1971-10-28 2024-10-11 00:11:05 +666 666 667 66.6 133.20000000000002 666 1971-10-29 2024-10-11 00:11:06.000 1971-10-29 2024-10-11 00:11:06 +667 667 668 66.7 133.4 667 1971-10-30 2024-10-11 00:11:07.000 1971-10-30 2024-10-11 00:11:07 +668 668 669 66.8 133.6 668 1971-10-31 2024-10-11 00:11:08.000 1971-10-31 2024-10-11 00:11:08 +669 669 670 66.9 133.8 669 1971-11-01 2024-10-11 00:11:09.000 1971-11-01 2024-10-11 00:11:09 +670 670 671 67 134 670 1971-11-02 2024-10-11 00:11:10.000 1971-11-02 2024-10-11 00:11:10 +671 671 672 67.1 134.20000000000002 671 1971-11-03 2024-10-11 00:11:11.000 1971-11-03 2024-10-11 00:11:11 +672 672 673 67.2 134.4 672 1971-11-04 2024-10-11 00:11:12.000 1971-11-04 2024-10-11 00:11:12 +673 673 674 67.3 134.6 673 1971-11-05 2024-10-11 00:11:13.000 1971-11-05 2024-10-11 00:11:13 +674 674 675 67.4 134.8 674 1971-11-06 2024-10-11 00:11:14.000 1971-11-06 2024-10-11 00:11:14 +675 675 676 67.5 135 675 1971-11-07 2024-10-11 00:11:15.000 1971-11-07 2024-10-11 00:11:15 +676 676 677 67.6 135.20000000000002 676 1971-11-08 2024-10-11 00:11:16.000 1971-11-08 2024-10-11 00:11:16 +677 677 678 67.7 135.4 677 1971-11-09 2024-10-11 00:11:17.000 1971-11-09 2024-10-11 00:11:17 +678 678 679 67.8 135.6 678 1971-11-10 2024-10-11 00:11:18.000 1971-11-10 2024-10-11 00:11:18 +679 679 680 67.9 135.8 679 1971-11-11 2024-10-11 00:11:19.000 1971-11-11 2024-10-11 00:11:19 +680 680 681 68 136 680 1971-11-12 2024-10-11 00:11:20.000 1971-11-12 2024-10-11 00:11:20 +681 681 682 68.1 136.20000000000002 681 1971-11-13 2024-10-11 00:11:21.000 1971-11-13 2024-10-11 00:11:21 +682 682 683 68.2 136.4 682 1971-11-14 2024-10-11 00:11:22.000 1971-11-14 2024-10-11 00:11:22 +683 683 684 68.3 136.6 683 1971-11-15 2024-10-11 00:11:23.000 1971-11-15 2024-10-11 00:11:23 +684 684 685 68.4 136.8 684 1971-11-16 2024-10-11 00:11:24.000 1971-11-16 2024-10-11 00:11:24 +685 685 686 68.5 137 685 1971-11-17 2024-10-11 00:11:25.000 1971-11-17 2024-10-11 00:11:25 +686 686 687 68.6 137.20000000000002 686 1971-11-18 2024-10-11 00:11:26.000 1971-11-18 2024-10-11 00:11:26 +687 687 688 68.7 137.4 687 1971-11-19 2024-10-11 00:11:27.000 1971-11-19 2024-10-11 00:11:27 +688 688 689 68.8 137.6 688 1971-11-20 2024-10-11 00:11:28.000 1971-11-20 2024-10-11 00:11:28 +689 689 690 68.9 137.8 689 1971-11-21 2024-10-11 00:11:29.000 1971-11-21 2024-10-11 00:11:29 +690 690 691 69 138 690 1971-11-22 2024-10-11 00:11:30.000 1971-11-22 2024-10-11 00:11:30 +691 691 692 69.1 138.20000000000002 691 1971-11-23 2024-10-11 00:11:31.000 1971-11-23 2024-10-11 00:11:31 +692 692 693 69.2 138.4 692 1971-11-24 2024-10-11 00:11:32.000 1971-11-24 2024-10-11 00:11:32 +693 693 694 69.3 138.6 693 1971-11-25 2024-10-11 00:11:33.000 1971-11-25 2024-10-11 00:11:33 +694 694 695 69.4 138.8 694 1971-11-26 2024-10-11 00:11:34.000 1971-11-26 2024-10-11 00:11:34 +695 695 696 69.5 139 695 1971-11-27 2024-10-11 00:11:35.000 1971-11-27 2024-10-11 00:11:35 +696 696 697 69.6 139.20000000000002 696 1971-11-28 2024-10-11 00:11:36.000 1971-11-28 2024-10-11 00:11:36 +697 697 698 69.7 139.4 697 1971-11-29 2024-10-11 00:11:37.000 1971-11-29 2024-10-11 00:11:37 +698 698 699 69.8 139.6 698 1971-11-30 2024-10-11 00:11:38.000 1971-11-30 2024-10-11 00:11:38 +699 699 700 69.9 139.8 699 1971-12-01 2024-10-11 00:11:39.000 1971-12-01 2024-10-11 00:11:39 +700 700 701 70 140 700 1971-12-02 2024-10-11 00:11:40.000 1971-12-02 2024-10-11 00:11:40 +701 701 702 70.1 140.20000000000002 701 1971-12-03 2024-10-11 00:11:41.000 1971-12-03 2024-10-11 00:11:41 +702 702 703 70.2 140.4 702 1971-12-04 2024-10-11 00:11:42.000 1971-12-04 2024-10-11 00:11:42 +703 703 704 70.3 140.6 703 1971-12-05 2024-10-11 00:11:43.000 1971-12-05 2024-10-11 00:11:43 +704 704 705 70.4 140.8 704 1971-12-06 2024-10-11 00:11:44.000 1971-12-06 2024-10-11 00:11:44 +705 705 706 70.5 141 705 1971-12-07 2024-10-11 00:11:45.000 1971-12-07 2024-10-11 00:11:45 +706 706 707 70.6 141.20000000000002 706 1971-12-08 2024-10-11 00:11:46.000 1971-12-08 2024-10-11 00:11:46 +707 707 708 70.7 141.4 707 1971-12-09 2024-10-11 00:11:47.000 1971-12-09 2024-10-11 00:11:47 +708 708 709 70.8 141.6 708 1971-12-10 2024-10-11 00:11:48.000 1971-12-10 2024-10-11 00:11:48 +709 709 710 70.9 141.8 709 1971-12-11 2024-10-11 00:11:49.000 1971-12-11 2024-10-11 00:11:49 +710 710 711 71 142 710 1971-12-12 2024-10-11 00:11:50.000 1971-12-12 2024-10-11 00:11:50 +711 711 712 71.1 142.20000000000002 711 1971-12-13 2024-10-11 00:11:51.000 1971-12-13 2024-10-11 00:11:51 +712 712 713 71.2 142.4 712 1971-12-14 2024-10-11 00:11:52.000 1971-12-14 2024-10-11 00:11:52 +713 713 714 71.3 142.6 713 1971-12-15 2024-10-11 00:11:53.000 1971-12-15 2024-10-11 00:11:53 +714 714 715 71.4 142.8 714 1971-12-16 2024-10-11 00:11:54.000 1971-12-16 2024-10-11 00:11:54 +715 715 716 71.5 143 715 1971-12-17 2024-10-11 00:11:55.000 1971-12-17 2024-10-11 00:11:55 +716 716 717 71.6 143.20000000000002 716 1971-12-18 2024-10-11 00:11:56.000 1971-12-18 2024-10-11 00:11:56 +717 717 718 71.7 143.4 717 1971-12-19 2024-10-11 00:11:57.000 1971-12-19 2024-10-11 00:11:57 +718 718 719 71.8 143.6 718 1971-12-20 2024-10-11 00:11:58.000 1971-12-20 2024-10-11 00:11:58 +719 719 720 71.9 143.8 719 1971-12-21 2024-10-11 00:11:59.000 1971-12-21 2024-10-11 00:11:59 +720 720 721 72 144 720 1971-12-22 2024-10-11 00:12:00.000 1971-12-22 2024-10-11 00:12:00 +721 721 722 72.1 144.20000000000002 721 1971-12-23 2024-10-11 00:12:01.000 1971-12-23 2024-10-11 00:12:01 +722 722 723 72.2 144.4 722 1971-12-24 2024-10-11 00:12:02.000 1971-12-24 2024-10-11 00:12:02 +723 723 724 72.3 144.6 723 1971-12-25 2024-10-11 00:12:03.000 1971-12-25 2024-10-11 00:12:03 +724 724 725 72.4 144.8 724 1971-12-26 2024-10-11 00:12:04.000 1971-12-26 2024-10-11 00:12:04 +725 725 726 72.5 145 725 1971-12-27 2024-10-11 00:12:05.000 1971-12-27 2024-10-11 00:12:05 +726 726 727 72.6 145.20000000000002 726 1971-12-28 2024-10-11 00:12:06.000 1971-12-28 2024-10-11 00:12:06 +727 727 728 72.7 145.4 727 1971-12-29 2024-10-11 00:12:07.000 1971-12-29 2024-10-11 00:12:07 +728 728 729 72.8 145.6 728 1971-12-30 2024-10-11 00:12:08.000 1971-12-30 2024-10-11 00:12:08 +729 729 730 72.9 145.8 729 1971-12-31 2024-10-11 00:12:09.000 1971-12-31 2024-10-11 00:12:09 +730 730 731 73 146 730 1972-01-01 2024-10-11 00:12:10.000 1972-01-01 2024-10-11 00:12:10 +731 731 732 73.1 146.20000000000002 731 1972-01-02 2024-10-11 00:12:11.000 1972-01-02 2024-10-11 00:12:11 +732 732 733 73.2 146.4 732 1972-01-03 2024-10-11 00:12:12.000 1972-01-03 2024-10-11 00:12:12 +733 733 734 73.3 146.6 733 1972-01-04 2024-10-11 00:12:13.000 1972-01-04 2024-10-11 00:12:13 +734 734 735 73.4 146.8 734 1972-01-05 2024-10-11 00:12:14.000 1972-01-05 2024-10-11 00:12:14 +735 735 736 73.5 147 735 1972-01-06 2024-10-11 00:12:15.000 1972-01-06 2024-10-11 00:12:15 +736 736 737 73.6 147.20000000000002 736 1972-01-07 2024-10-11 00:12:16.000 1972-01-07 2024-10-11 00:12:16 +737 737 738 73.7 147.4 737 1972-01-08 2024-10-11 00:12:17.000 1972-01-08 2024-10-11 00:12:17 +738 738 739 73.8 147.6 738 1972-01-09 2024-10-11 00:12:18.000 1972-01-09 2024-10-11 00:12:18 +739 739 740 73.9 147.8 739 1972-01-10 2024-10-11 00:12:19.000 1972-01-10 2024-10-11 00:12:19 +740 740 741 74 148 740 1972-01-11 2024-10-11 00:12:20.000 1972-01-11 2024-10-11 00:12:20 +741 741 742 74.1 148.20000000000002 741 1972-01-12 2024-10-11 00:12:21.000 1972-01-12 2024-10-11 00:12:21 +742 742 743 74.2 148.4 742 1972-01-13 2024-10-11 00:12:22.000 1972-01-13 2024-10-11 00:12:22 +743 743 744 74.3 148.6 743 1972-01-14 2024-10-11 00:12:23.000 1972-01-14 2024-10-11 00:12:23 +744 744 745 74.4 148.8 744 1972-01-15 2024-10-11 00:12:24.000 1972-01-15 2024-10-11 00:12:24 +745 745 746 74.5 149 745 1972-01-16 2024-10-11 00:12:25.000 1972-01-16 2024-10-11 00:12:25 +746 746 747 74.6 149.20000000000002 746 1972-01-17 2024-10-11 00:12:26.000 1972-01-17 2024-10-11 00:12:26 +747 747 748 74.7 149.4 747 1972-01-18 2024-10-11 00:12:27.000 1972-01-18 2024-10-11 00:12:27 +748 748 749 74.8 149.6 748 1972-01-19 2024-10-11 00:12:28.000 1972-01-19 2024-10-11 00:12:28 +749 749 750 74.9 149.8 749 1972-01-20 2024-10-11 00:12:29.000 1972-01-20 2024-10-11 00:12:29 +750 750 751 75 150 750 1972-01-21 2024-10-11 00:12:30.000 1972-01-21 2024-10-11 00:12:30 +751 751 752 75.1 150.20000000000002 751 1972-01-22 2024-10-11 00:12:31.000 1972-01-22 2024-10-11 00:12:31 +752 752 753 75.2 150.4 752 1972-01-23 2024-10-11 00:12:32.000 1972-01-23 2024-10-11 00:12:32 +753 753 754 75.3 150.6 753 1972-01-24 2024-10-11 00:12:33.000 1972-01-24 2024-10-11 00:12:33 +754 754 755 75.4 150.8 754 1972-01-25 2024-10-11 00:12:34.000 1972-01-25 2024-10-11 00:12:34 +755 755 756 75.5 151 755 1972-01-26 2024-10-11 00:12:35.000 1972-01-26 2024-10-11 00:12:35 +756 756 757 75.6 151.20000000000002 756 1972-01-27 2024-10-11 00:12:36.000 1972-01-27 2024-10-11 00:12:36 +757 757 758 75.7 151.4 757 1972-01-28 2024-10-11 00:12:37.000 1972-01-28 2024-10-11 00:12:37 +758 758 759 75.8 151.6 758 1972-01-29 2024-10-11 00:12:38.000 1972-01-29 2024-10-11 00:12:38 +759 759 760 75.9 151.8 759 1972-01-30 2024-10-11 00:12:39.000 1972-01-30 2024-10-11 00:12:39 +760 760 761 76 152 760 1972-01-31 2024-10-11 00:12:40.000 1972-01-31 2024-10-11 00:12:40 +761 761 762 76.1 152.20000000000002 761 1972-02-01 2024-10-11 00:12:41.000 1972-02-01 2024-10-11 00:12:41 +762 762 763 76.2 152.4 762 1972-02-02 2024-10-11 00:12:42.000 1972-02-02 2024-10-11 00:12:42 +763 763 764 76.3 152.6 763 1972-02-03 2024-10-11 00:12:43.000 1972-02-03 2024-10-11 00:12:43 +764 764 765 76.4 152.8 764 1972-02-04 2024-10-11 00:12:44.000 1972-02-04 2024-10-11 00:12:44 +765 765 766 76.5 153 765 1972-02-05 2024-10-11 00:12:45.000 1972-02-05 2024-10-11 00:12:45 +766 766 767 76.6 153.20000000000002 766 1972-02-06 2024-10-11 00:12:46.000 1972-02-06 2024-10-11 00:12:46 +767 767 768 76.7 153.4 767 1972-02-07 2024-10-11 00:12:47.000 1972-02-07 2024-10-11 00:12:47 +768 768 769 76.8 153.60000000000002 768 1972-02-08 2024-10-11 00:12:48.000 1972-02-08 2024-10-11 00:12:48 +769 769 770 76.9 153.8 769 1972-02-09 2024-10-11 00:12:49.000 1972-02-09 2024-10-11 00:12:49 +770 770 771 77 154 770 1972-02-10 2024-10-11 00:12:50.000 1972-02-10 2024-10-11 00:12:50 +771 771 772 77.1 154.20000000000002 771 1972-02-11 2024-10-11 00:12:51.000 1972-02-11 2024-10-11 00:12:51 +772 772 773 77.2 154.4 772 1972-02-12 2024-10-11 00:12:52.000 1972-02-12 2024-10-11 00:12:52 +773 773 774 77.3 154.60000000000002 773 1972-02-13 2024-10-11 00:12:53.000 1972-02-13 2024-10-11 00:12:53 +774 774 775 77.4 154.8 774 1972-02-14 2024-10-11 00:12:54.000 1972-02-14 2024-10-11 00:12:54 +775 775 776 77.5 155 775 1972-02-15 2024-10-11 00:12:55.000 1972-02-15 2024-10-11 00:12:55 +776 776 777 77.6 155.20000000000002 776 1972-02-16 2024-10-11 00:12:56.000 1972-02-16 2024-10-11 00:12:56 +777 777 778 77.7 155.4 777 1972-02-17 2024-10-11 00:12:57.000 1972-02-17 2024-10-11 00:12:57 +778 778 779 77.8 155.60000000000002 778 1972-02-18 2024-10-11 00:12:58.000 1972-02-18 2024-10-11 00:12:58 +779 779 780 77.9 155.8 779 1972-02-19 2024-10-11 00:12:59.000 1972-02-19 2024-10-11 00:12:59 +780 780 781 78 156 780 1972-02-20 2024-10-11 00:13:00.000 1972-02-20 2024-10-11 00:13:00 +781 781 782 78.1 156.20000000000002 781 1972-02-21 2024-10-11 00:13:01.000 1972-02-21 2024-10-11 00:13:01 +782 782 783 78.2 156.4 782 1972-02-22 2024-10-11 00:13:02.000 1972-02-22 2024-10-11 00:13:02 +783 783 784 78.3 156.60000000000002 783 1972-02-23 2024-10-11 00:13:03.000 1972-02-23 2024-10-11 00:13:03 +784 784 785 78.4 156.8 784 1972-02-24 2024-10-11 00:13:04.000 1972-02-24 2024-10-11 00:13:04 +785 785 786 78.5 157 785 1972-02-25 2024-10-11 00:13:05.000 1972-02-25 2024-10-11 00:13:05 +786 786 787 78.6 157.20000000000002 786 1972-02-26 2024-10-11 00:13:06.000 1972-02-26 2024-10-11 00:13:06 +787 787 788 78.7 157.4 787 1972-02-27 2024-10-11 00:13:07.000 1972-02-27 2024-10-11 00:13:07 +788 788 789 78.8 157.60000000000002 788 1972-02-28 2024-10-11 00:13:08.000 1972-02-28 2024-10-11 00:13:08 +789 789 790 78.9 157.8 789 1972-02-29 2024-10-11 00:13:09.000 1972-02-29 2024-10-11 00:13:09 +790 790 791 79 158 790 1972-03-01 2024-10-11 00:13:10.000 1972-03-01 2024-10-11 00:13:10 +791 791 792 79.1 158.20000000000002 791 1972-03-02 2024-10-11 00:13:11.000 1972-03-02 2024-10-11 00:13:11 +792 792 793 79.2 158.4 792 1972-03-03 2024-10-11 00:13:12.000 1972-03-03 2024-10-11 00:13:12 +793 793 794 79.3 158.60000000000002 793 1972-03-04 2024-10-11 00:13:13.000 1972-03-04 2024-10-11 00:13:13 +794 794 795 79.4 158.8 794 1972-03-05 2024-10-11 00:13:14.000 1972-03-05 2024-10-11 00:13:14 +795 795 796 79.5 159 795 1972-03-06 2024-10-11 00:13:15.000 1972-03-06 2024-10-11 00:13:15 +796 796 797 79.6 159.20000000000002 796 1972-03-07 2024-10-11 00:13:16.000 1972-03-07 2024-10-11 00:13:16 +797 797 798 79.7 159.4 797 1972-03-08 2024-10-11 00:13:17.000 1972-03-08 2024-10-11 00:13:17 +798 798 799 79.8 159.60000000000002 798 1972-03-09 2024-10-11 00:13:18.000 1972-03-09 2024-10-11 00:13:18 +799 799 800 79.9 159.8 799 1972-03-10 2024-10-11 00:13:19.000 1972-03-10 2024-10-11 00:13:19 +800 800 801 80 160 800 1972-03-11 2024-10-11 00:13:20.000 1972-03-11 2024-10-11 00:13:20 +801 801 802 80.1 160.20000000000002 801 1972-03-12 2024-10-11 00:13:21.000 1972-03-12 2024-10-11 00:13:21 +802 802 803 80.2 160.4 802 1972-03-13 2024-10-11 00:13:22.000 1972-03-13 2024-10-11 00:13:22 +803 803 804 80.3 160.60000000000002 803 1972-03-14 2024-10-11 00:13:23.000 1972-03-14 2024-10-11 00:13:23 +804 804 805 80.4 160.8 804 1972-03-15 2024-10-11 00:13:24.000 1972-03-15 2024-10-11 00:13:24 +805 805 806 80.5 161 805 1972-03-16 2024-10-11 00:13:25.000 1972-03-16 2024-10-11 00:13:25 +806 806 807 80.6 161.20000000000002 806 1972-03-17 2024-10-11 00:13:26.000 1972-03-17 2024-10-11 00:13:26 +807 807 808 80.7 161.4 807 1972-03-18 2024-10-11 00:13:27.000 1972-03-18 2024-10-11 00:13:27 +808 808 809 80.8 161.60000000000002 808 1972-03-19 2024-10-11 00:13:28.000 1972-03-19 2024-10-11 00:13:28 +809 809 810 80.9 161.8 809 1972-03-20 2024-10-11 00:13:29.000 1972-03-20 2024-10-11 00:13:29 +810 810 811 81 162 810 1972-03-21 2024-10-11 00:13:30.000 1972-03-21 2024-10-11 00:13:30 +811 811 812 81.1 162.20000000000002 811 1972-03-22 2024-10-11 00:13:31.000 1972-03-22 2024-10-11 00:13:31 +812 812 813 81.2 162.4 812 1972-03-23 2024-10-11 00:13:32.000 1972-03-23 2024-10-11 00:13:32 +813 813 814 81.3 162.60000000000002 813 1972-03-24 2024-10-11 00:13:33.000 1972-03-24 2024-10-11 00:13:33 +814 814 815 81.4 162.8 814 1972-03-25 2024-10-11 00:13:34.000 1972-03-25 2024-10-11 00:13:34 +815 815 816 81.5 163 815 1972-03-26 2024-10-11 00:13:35.000 1972-03-26 2024-10-11 00:13:35 +816 816 817 81.6 163.20000000000002 816 1972-03-27 2024-10-11 00:13:36.000 1972-03-27 2024-10-11 00:13:36 +817 817 818 81.7 163.4 817 1972-03-28 2024-10-11 00:13:37.000 1972-03-28 2024-10-11 00:13:37 +818 818 819 81.8 163.60000000000002 818 1972-03-29 2024-10-11 00:13:38.000 1972-03-29 2024-10-11 00:13:38 +819 819 820 81.9 163.8 819 1972-03-30 2024-10-11 00:13:39.000 1972-03-30 2024-10-11 00:13:39 +820 820 821 82 164 820 1972-03-31 2024-10-11 00:13:40.000 1972-03-31 2024-10-11 00:13:40 +821 821 822 82.1 164.20000000000002 821 1972-04-01 2024-10-11 00:13:41.000 1972-04-01 2024-10-11 00:13:41 +822 822 823 82.2 164.4 822 1972-04-02 2024-10-11 00:13:42.000 1972-04-02 2024-10-11 00:13:42 +823 823 824 82.3 164.60000000000002 823 1972-04-03 2024-10-11 00:13:43.000 1972-04-03 2024-10-11 00:13:43 +824 824 825 82.4 164.8 824 1972-04-04 2024-10-11 00:13:44.000 1972-04-04 2024-10-11 00:13:44 +825 825 826 82.5 165 825 1972-04-05 2024-10-11 00:13:45.000 1972-04-05 2024-10-11 00:13:45 +826 826 827 82.6 165.20000000000002 826 1972-04-06 2024-10-11 00:13:46.000 1972-04-06 2024-10-11 00:13:46 +827 827 828 82.7 165.4 827 1972-04-07 2024-10-11 00:13:47.000 1972-04-07 2024-10-11 00:13:47 +828 828 829 82.8 165.60000000000002 828 1972-04-08 2024-10-11 00:13:48.000 1972-04-08 2024-10-11 00:13:48 +829 829 830 82.9 165.8 829 1972-04-09 2024-10-11 00:13:49.000 1972-04-09 2024-10-11 00:13:49 +830 830 831 83 166 830 1972-04-10 2024-10-11 00:13:50.000 1972-04-10 2024-10-11 00:13:50 +831 831 832 83.1 166.20000000000002 831 1972-04-11 2024-10-11 00:13:51.000 1972-04-11 2024-10-11 00:13:51 +832 832 833 83.2 166.4 832 1972-04-12 2024-10-11 00:13:52.000 1972-04-12 2024-10-11 00:13:52 +833 833 834 83.3 166.60000000000002 833 1972-04-13 2024-10-11 00:13:53.000 1972-04-13 2024-10-11 00:13:53 +834 834 835 83.4 166.8 834 1972-04-14 2024-10-11 00:13:54.000 1972-04-14 2024-10-11 00:13:54 +835 835 836 83.5 167 835 1972-04-15 2024-10-11 00:13:55.000 1972-04-15 2024-10-11 00:13:55 +836 836 837 83.6 167.20000000000002 836 1972-04-16 2024-10-11 00:13:56.000 1972-04-16 2024-10-11 00:13:56 +837 837 838 83.7 167.4 837 1972-04-17 2024-10-11 00:13:57.000 1972-04-17 2024-10-11 00:13:57 +838 838 839 83.8 167.60000000000002 838 1972-04-18 2024-10-11 00:13:58.000 1972-04-18 2024-10-11 00:13:58 +839 839 840 83.9 167.8 839 1972-04-19 2024-10-11 00:13:59.000 1972-04-19 2024-10-11 00:13:59 +840 840 841 84 168 840 1972-04-20 2024-10-11 00:14:00.000 1972-04-20 2024-10-11 00:14:00 +841 841 842 84.1 168.20000000000002 841 1972-04-21 2024-10-11 00:14:01.000 1972-04-21 2024-10-11 00:14:01 +842 842 843 84.2 168.4 842 1972-04-22 2024-10-11 00:14:02.000 1972-04-22 2024-10-11 00:14:02 +843 843 844 84.3 168.60000000000002 843 1972-04-23 2024-10-11 00:14:03.000 1972-04-23 2024-10-11 00:14:03 +844 844 845 84.4 168.8 844 1972-04-24 2024-10-11 00:14:04.000 1972-04-24 2024-10-11 00:14:04 +845 845 846 84.5 169 845 1972-04-25 2024-10-11 00:14:05.000 1972-04-25 2024-10-11 00:14:05 +846 846 847 84.6 169.20000000000002 846 1972-04-26 2024-10-11 00:14:06.000 1972-04-26 2024-10-11 00:14:06 +847 847 848 84.7 169.4 847 1972-04-27 2024-10-11 00:14:07.000 1972-04-27 2024-10-11 00:14:07 +848 848 849 84.8 169.60000000000002 848 1972-04-28 2024-10-11 00:14:08.000 1972-04-28 2024-10-11 00:14:08 +849 849 850 84.9 169.8 849 1972-04-29 2024-10-11 00:14:09.000 1972-04-29 2024-10-11 00:14:09 +850 850 851 85 170 850 1972-04-30 2024-10-11 00:14:10.000 1972-04-30 2024-10-11 00:14:10 +851 851 852 85.1 170.20000000000002 851 1972-05-01 2024-10-11 00:14:11.000 1972-05-01 2024-10-11 00:14:11 +852 852 853 85.2 170.4 852 1972-05-02 2024-10-11 00:14:12.000 1972-05-02 2024-10-11 00:14:12 +853 853 854 85.3 170.60000000000002 853 1972-05-03 2024-10-11 00:14:13.000 1972-05-03 2024-10-11 00:14:13 +854 854 855 85.4 170.8 854 1972-05-04 2024-10-11 00:14:14.000 1972-05-04 2024-10-11 00:14:14 +855 855 856 85.5 171 855 1972-05-05 2024-10-11 00:14:15.000 1972-05-05 2024-10-11 00:14:15 +856 856 857 85.6 171.20000000000002 856 1972-05-06 2024-10-11 00:14:16.000 1972-05-06 2024-10-11 00:14:16 +857 857 858 85.7 171.4 857 1972-05-07 2024-10-11 00:14:17.000 1972-05-07 2024-10-11 00:14:17 +858 858 859 85.8 171.60000000000002 858 1972-05-08 2024-10-11 00:14:18.000 1972-05-08 2024-10-11 00:14:18 +859 859 860 85.9 171.8 859 1972-05-09 2024-10-11 00:14:19.000 1972-05-09 2024-10-11 00:14:19 +860 860 861 86 172 860 1972-05-10 2024-10-11 00:14:20.000 1972-05-10 2024-10-11 00:14:20 +861 861 862 86.1 172.20000000000002 861 1972-05-11 2024-10-11 00:14:21.000 1972-05-11 2024-10-11 00:14:21 +862 862 863 86.2 172.4 862 1972-05-12 2024-10-11 00:14:22.000 1972-05-12 2024-10-11 00:14:22 +863 863 864 86.3 172.60000000000002 863 1972-05-13 2024-10-11 00:14:23.000 1972-05-13 2024-10-11 00:14:23 +864 864 865 86.4 172.8 864 1972-05-14 2024-10-11 00:14:24.000 1972-05-14 2024-10-11 00:14:24 +865 865 866 86.5 173 865 1972-05-15 2024-10-11 00:14:25.000 1972-05-15 2024-10-11 00:14:25 +866 866 867 86.6 173.20000000000002 866 1972-05-16 2024-10-11 00:14:26.000 1972-05-16 2024-10-11 00:14:26 +867 867 868 86.7 173.4 867 1972-05-17 2024-10-11 00:14:27.000 1972-05-17 2024-10-11 00:14:27 +868 868 869 86.8 173.60000000000002 868 1972-05-18 2024-10-11 00:14:28.000 1972-05-18 2024-10-11 00:14:28 +869 869 870 86.9 173.8 869 1972-05-19 2024-10-11 00:14:29.000 1972-05-19 2024-10-11 00:14:29 +870 870 871 87 174 870 1972-05-20 2024-10-11 00:14:30.000 1972-05-20 2024-10-11 00:14:30 +871 871 872 87.1 174.20000000000002 871 1972-05-21 2024-10-11 00:14:31.000 1972-05-21 2024-10-11 00:14:31 +872 872 873 87.2 174.4 872 1972-05-22 2024-10-11 00:14:32.000 1972-05-22 2024-10-11 00:14:32 +873 873 874 87.3 174.60000000000002 873 1972-05-23 2024-10-11 00:14:33.000 1972-05-23 2024-10-11 00:14:33 +874 874 875 87.4 174.8 874 1972-05-24 2024-10-11 00:14:34.000 1972-05-24 2024-10-11 00:14:34 +875 875 876 87.5 175 875 1972-05-25 2024-10-11 00:14:35.000 1972-05-25 2024-10-11 00:14:35 +876 876 877 87.6 175.20000000000002 876 1972-05-26 2024-10-11 00:14:36.000 1972-05-26 2024-10-11 00:14:36 +877 877 878 87.7 175.4 877 1972-05-27 2024-10-11 00:14:37.000 1972-05-27 2024-10-11 00:14:37 +878 878 879 87.8 175.60000000000002 878 1972-05-28 2024-10-11 00:14:38.000 1972-05-28 2024-10-11 00:14:38 +879 879 880 87.9 175.8 879 1972-05-29 2024-10-11 00:14:39.000 1972-05-29 2024-10-11 00:14:39 +880 880 881 88 176 880 1972-05-30 2024-10-11 00:14:40.000 1972-05-30 2024-10-11 00:14:40 +881 881 882 88.1 176.20000000000002 881 1972-05-31 2024-10-11 00:14:41.000 1972-05-31 2024-10-11 00:14:41 +882 882 883 88.2 176.4 882 1972-06-01 2024-10-11 00:14:42.000 1972-06-01 2024-10-11 00:14:42 +883 883 884 88.3 176.60000000000002 883 1972-06-02 2024-10-11 00:14:43.000 1972-06-02 2024-10-11 00:14:43 +884 884 885 88.4 176.8 884 1972-06-03 2024-10-11 00:14:44.000 1972-06-03 2024-10-11 00:14:44 +885 885 886 88.5 177 885 1972-06-04 2024-10-11 00:14:45.000 1972-06-04 2024-10-11 00:14:45 +886 886 887 88.6 177.20000000000002 886 1972-06-05 2024-10-11 00:14:46.000 1972-06-05 2024-10-11 00:14:46 +887 887 888 88.7 177.4 887 1972-06-06 2024-10-11 00:14:47.000 1972-06-06 2024-10-11 00:14:47 +888 888 889 88.8 177.60000000000002 888 1972-06-07 2024-10-11 00:14:48.000 1972-06-07 2024-10-11 00:14:48 +889 889 890 88.9 177.8 889 1972-06-08 2024-10-11 00:14:49.000 1972-06-08 2024-10-11 00:14:49 +890 890 891 89 178 890 1972-06-09 2024-10-11 00:14:50.000 1972-06-09 2024-10-11 00:14:50 +891 891 892 89.1 178.20000000000002 891 1972-06-10 2024-10-11 00:14:51.000 1972-06-10 2024-10-11 00:14:51 +892 892 893 89.2 178.4 892 1972-06-11 2024-10-11 00:14:52.000 1972-06-11 2024-10-11 00:14:52 +893 893 894 89.3 178.60000000000002 893 1972-06-12 2024-10-11 00:14:53.000 1972-06-12 2024-10-11 00:14:53 +894 894 895 89.4 178.8 894 1972-06-13 2024-10-11 00:14:54.000 1972-06-13 2024-10-11 00:14:54 +895 895 896 89.5 179 895 1972-06-14 2024-10-11 00:14:55.000 1972-06-14 2024-10-11 00:14:55 +896 896 897 89.6 179.20000000000002 896 1972-06-15 2024-10-11 00:14:56.000 1972-06-15 2024-10-11 00:14:56 +897 897 898 89.7 179.4 897 1972-06-16 2024-10-11 00:14:57.000 1972-06-16 2024-10-11 00:14:57 +898 898 899 89.8 179.60000000000002 898 1972-06-17 2024-10-11 00:14:58.000 1972-06-17 2024-10-11 00:14:58 +899 899 900 89.9 179.8 899 1972-06-18 2024-10-11 00:14:59.000 1972-06-18 2024-10-11 00:14:59 +900 900 901 90 180 900 1972-06-19 2024-10-11 00:15:00.000 1972-06-19 2024-10-11 00:15:00 +901 901 902 90.1 180.20000000000002 901 1972-06-20 2024-10-11 00:15:01.000 1972-06-20 2024-10-11 00:15:01 +902 902 903 90.2 180.4 902 1972-06-21 2024-10-11 00:15:02.000 1972-06-21 2024-10-11 00:15:02 +903 903 904 90.3 180.60000000000002 903 1972-06-22 2024-10-11 00:15:03.000 1972-06-22 2024-10-11 00:15:03 +904 904 905 90.4 180.8 904 1972-06-23 2024-10-11 00:15:04.000 1972-06-23 2024-10-11 00:15:04 +905 905 906 90.5 181 905 1972-06-24 2024-10-11 00:15:05.000 1972-06-24 2024-10-11 00:15:05 +906 906 907 90.6 181.20000000000002 906 1972-06-25 2024-10-11 00:15:06.000 1972-06-25 2024-10-11 00:15:06 +907 907 908 90.7 181.4 907 1972-06-26 2024-10-11 00:15:07.000 1972-06-26 2024-10-11 00:15:07 +908 908 909 90.8 181.60000000000002 908 1972-06-27 2024-10-11 00:15:08.000 1972-06-27 2024-10-11 00:15:08 +909 909 910 90.9 181.8 909 1972-06-28 2024-10-11 00:15:09.000 1972-06-28 2024-10-11 00:15:09 +910 910 911 91 182 910 1972-06-29 2024-10-11 00:15:10.000 1972-06-29 2024-10-11 00:15:10 +911 911 912 91.1 182.20000000000002 911 1972-06-30 2024-10-11 00:15:11.000 1972-06-30 2024-10-11 00:15:11 +912 912 913 91.2 182.4 912 1972-07-01 2024-10-11 00:15:12.000 1972-07-01 2024-10-11 00:15:12 +913 913 914 91.3 182.60000000000002 913 1972-07-02 2024-10-11 00:15:13.000 1972-07-02 2024-10-11 00:15:13 +914 914 915 91.4 182.8 914 1972-07-03 2024-10-11 00:15:14.000 1972-07-03 2024-10-11 00:15:14 +915 915 916 91.5 183 915 1972-07-04 2024-10-11 00:15:15.000 1972-07-04 2024-10-11 00:15:15 +916 916 917 91.6 183.20000000000002 916 1972-07-05 2024-10-11 00:15:16.000 1972-07-05 2024-10-11 00:15:16 +917 917 918 91.7 183.4 917 1972-07-06 2024-10-11 00:15:17.000 1972-07-06 2024-10-11 00:15:17 +918 918 919 91.8 183.60000000000002 918 1972-07-07 2024-10-11 00:15:18.000 1972-07-07 2024-10-11 00:15:18 +919 919 920 91.9 183.8 919 1972-07-08 2024-10-11 00:15:19.000 1972-07-08 2024-10-11 00:15:19 +920 920 921 92 184 920 1972-07-09 2024-10-11 00:15:20.000 1972-07-09 2024-10-11 00:15:20 +921 921 922 92.1 184.20000000000002 921 1972-07-10 2024-10-11 00:15:21.000 1972-07-10 2024-10-11 00:15:21 +922 922 923 92.2 184.4 922 1972-07-11 2024-10-11 00:15:22.000 1972-07-11 2024-10-11 00:15:22 +923 923 924 92.3 184.60000000000002 923 1972-07-12 2024-10-11 00:15:23.000 1972-07-12 2024-10-11 00:15:23 +924 924 925 92.4 184.8 924 1972-07-13 2024-10-11 00:15:24.000 1972-07-13 2024-10-11 00:15:24 +925 925 926 92.5 185 925 1972-07-14 2024-10-11 00:15:25.000 1972-07-14 2024-10-11 00:15:25 +926 926 927 92.6 185.20000000000002 926 1972-07-15 2024-10-11 00:15:26.000 1972-07-15 2024-10-11 00:15:26 +927 927 928 92.7 185.4 927 1972-07-16 2024-10-11 00:15:27.000 1972-07-16 2024-10-11 00:15:27 +928 928 929 92.8 185.60000000000002 928 1972-07-17 2024-10-11 00:15:28.000 1972-07-17 2024-10-11 00:15:28 +929 929 930 92.9 185.8 929 1972-07-18 2024-10-11 00:15:29.000 1972-07-18 2024-10-11 00:15:29 +930 930 931 93 186 930 1972-07-19 2024-10-11 00:15:30.000 1972-07-19 2024-10-11 00:15:30 +931 931 932 93.1 186.20000000000002 931 1972-07-20 2024-10-11 00:15:31.000 1972-07-20 2024-10-11 00:15:31 +932 932 933 93.2 186.4 932 1972-07-21 2024-10-11 00:15:32.000 1972-07-21 2024-10-11 00:15:32 +933 933 934 93.3 186.60000000000002 933 1972-07-22 2024-10-11 00:15:33.000 1972-07-22 2024-10-11 00:15:33 +934 934 935 93.4 186.8 934 1972-07-23 2024-10-11 00:15:34.000 1972-07-23 2024-10-11 00:15:34 +935 935 936 93.5 187 935 1972-07-24 2024-10-11 00:15:35.000 1972-07-24 2024-10-11 00:15:35 +936 936 937 93.6 187.20000000000002 936 1972-07-25 2024-10-11 00:15:36.000 1972-07-25 2024-10-11 00:15:36 +937 937 938 93.7 187.4 937 1972-07-26 2024-10-11 00:15:37.000 1972-07-26 2024-10-11 00:15:37 +938 938 939 93.8 187.60000000000002 938 1972-07-27 2024-10-11 00:15:38.000 1972-07-27 2024-10-11 00:15:38 +939 939 940 93.9 187.8 939 1972-07-28 2024-10-11 00:15:39.000 1972-07-28 2024-10-11 00:15:39 +940 940 941 94 188 940 1972-07-29 2024-10-11 00:15:40.000 1972-07-29 2024-10-11 00:15:40 +941 941 942 94.1 188.20000000000002 941 1972-07-30 2024-10-11 00:15:41.000 1972-07-30 2024-10-11 00:15:41 +942 942 943 94.2 188.4 942 1972-07-31 2024-10-11 00:15:42.000 1972-07-31 2024-10-11 00:15:42 +943 943 944 94.3 188.60000000000002 943 1972-08-01 2024-10-11 00:15:43.000 1972-08-01 2024-10-11 00:15:43 +944 944 945 94.4 188.8 944 1972-08-02 2024-10-11 00:15:44.000 1972-08-02 2024-10-11 00:15:44 +945 945 946 94.5 189 945 1972-08-03 2024-10-11 00:15:45.000 1972-08-03 2024-10-11 00:15:45 +946 946 947 94.6 189.20000000000002 946 1972-08-04 2024-10-11 00:15:46.000 1972-08-04 2024-10-11 00:15:46 +947 947 948 94.7 189.4 947 1972-08-05 2024-10-11 00:15:47.000 1972-08-05 2024-10-11 00:15:47 +948 948 949 94.8 189.60000000000002 948 1972-08-06 2024-10-11 00:15:48.000 1972-08-06 2024-10-11 00:15:48 +949 949 950 94.9 189.8 949 1972-08-07 2024-10-11 00:15:49.000 1972-08-07 2024-10-11 00:15:49 +950 950 951 95 190 950 1972-08-08 2024-10-11 00:15:50.000 1972-08-08 2024-10-11 00:15:50 +951 951 952 95.1 190.20000000000002 951 1972-08-09 2024-10-11 00:15:51.000 1972-08-09 2024-10-11 00:15:51 +952 952 953 95.2 190.4 952 1972-08-10 2024-10-11 00:15:52.000 1972-08-10 2024-10-11 00:15:52 +953 953 954 95.3 190.60000000000002 953 1972-08-11 2024-10-11 00:15:53.000 1972-08-11 2024-10-11 00:15:53 +954 954 955 95.4 190.8 954 1972-08-12 2024-10-11 00:15:54.000 1972-08-12 2024-10-11 00:15:54 +955 955 956 95.5 191 955 1972-08-13 2024-10-11 00:15:55.000 1972-08-13 2024-10-11 00:15:55 +956 956 957 95.6 191.20000000000002 956 1972-08-14 2024-10-11 00:15:56.000 1972-08-14 2024-10-11 00:15:56 +957 957 958 95.7 191.4 957 1972-08-15 2024-10-11 00:15:57.000 1972-08-15 2024-10-11 00:15:57 +958 958 959 95.8 191.60000000000002 958 1972-08-16 2024-10-11 00:15:58.000 1972-08-16 2024-10-11 00:15:58 +959 959 960 95.9 191.8 959 1972-08-17 2024-10-11 00:15:59.000 1972-08-17 2024-10-11 00:15:59 +960 960 961 96 192 960 1972-08-18 2024-10-11 00:16:00.000 1972-08-18 2024-10-11 00:16:00 +961 961 962 96.1 192.20000000000002 961 1972-08-19 2024-10-11 00:16:01.000 1972-08-19 2024-10-11 00:16:01 +962 962 963 96.2 192.4 962 1972-08-20 2024-10-11 00:16:02.000 1972-08-20 2024-10-11 00:16:02 +963 963 964 96.3 192.60000000000002 963 1972-08-21 2024-10-11 00:16:03.000 1972-08-21 2024-10-11 00:16:03 +964 964 965 96.4 192.8 964 1972-08-22 2024-10-11 00:16:04.000 1972-08-22 2024-10-11 00:16:04 +965 965 966 96.5 193 965 1972-08-23 2024-10-11 00:16:05.000 1972-08-23 2024-10-11 00:16:05 +966 966 967 96.6 193.20000000000002 966 1972-08-24 2024-10-11 00:16:06.000 1972-08-24 2024-10-11 00:16:06 +967 967 968 96.7 193.4 967 1972-08-25 2024-10-11 00:16:07.000 1972-08-25 2024-10-11 00:16:07 +968 968 969 96.8 193.60000000000002 968 1972-08-26 2024-10-11 00:16:08.000 1972-08-26 2024-10-11 00:16:08 +969 969 970 96.9 193.8 969 1972-08-27 2024-10-11 00:16:09.000 1972-08-27 2024-10-11 00:16:09 +970 970 971 97 194 970 1972-08-28 2024-10-11 00:16:10.000 1972-08-28 2024-10-11 00:16:10 +971 971 972 97.1 194.20000000000002 971 1972-08-29 2024-10-11 00:16:11.000 1972-08-29 2024-10-11 00:16:11 +972 972 973 97.2 194.4 972 1972-08-30 2024-10-11 00:16:12.000 1972-08-30 2024-10-11 00:16:12 +973 973 974 97.3 194.60000000000002 973 1972-08-31 2024-10-11 00:16:13.000 1972-08-31 2024-10-11 00:16:13 +974 974 975 97.4 194.8 974 1972-09-01 2024-10-11 00:16:14.000 1972-09-01 2024-10-11 00:16:14 +975 975 976 97.5 195 975 1972-09-02 2024-10-11 00:16:15.000 1972-09-02 2024-10-11 00:16:15 +976 976 977 97.6 195.20000000000002 976 1972-09-03 2024-10-11 00:16:16.000 1972-09-03 2024-10-11 00:16:16 +977 977 978 97.7 195.4 977 1972-09-04 2024-10-11 00:16:17.000 1972-09-04 2024-10-11 00:16:17 +978 978 979 97.8 195.60000000000002 978 1972-09-05 2024-10-11 00:16:18.000 1972-09-05 2024-10-11 00:16:18 +979 979 980 97.9 195.8 979 1972-09-06 2024-10-11 00:16:19.000 1972-09-06 2024-10-11 00:16:19 +980 980 981 98 196 980 1972-09-07 2024-10-11 00:16:20.000 1972-09-07 2024-10-11 00:16:20 +981 981 982 98.1 196.20000000000002 981 1972-09-08 2024-10-11 00:16:21.000 1972-09-08 2024-10-11 00:16:21 +982 982 983 98.2 196.4 982 1972-09-09 2024-10-11 00:16:22.000 1972-09-09 2024-10-11 00:16:22 +983 983 984 98.3 196.60000000000002 983 1972-09-10 2024-10-11 00:16:23.000 1972-09-10 2024-10-11 00:16:23 +984 984 985 98.4 196.8 984 1972-09-11 2024-10-11 00:16:24.000 1972-09-11 2024-10-11 00:16:24 +985 985 986 98.5 197 985 1972-09-12 2024-10-11 00:16:25.000 1972-09-12 2024-10-11 00:16:25 +986 986 987 98.6 197.20000000000002 986 1972-09-13 2024-10-11 00:16:26.000 1972-09-13 2024-10-11 00:16:26 +987 987 988 98.7 197.4 987 1972-09-14 2024-10-11 00:16:27.000 1972-09-14 2024-10-11 00:16:27 +988 988 989 98.8 197.60000000000002 988 1972-09-15 2024-10-11 00:16:28.000 1972-09-15 2024-10-11 00:16:28 +989 989 990 98.9 197.8 989 1972-09-16 2024-10-11 00:16:29.000 1972-09-16 2024-10-11 00:16:29 +990 990 991 99 198 990 1972-09-17 2024-10-11 00:16:30.000 1972-09-17 2024-10-11 00:16:30 +991 991 992 99.1 198.20000000000002 991 1972-09-18 2024-10-11 00:16:31.000 1972-09-18 2024-10-11 00:16:31 +992 992 993 99.2 198.4 992 1972-09-19 2024-10-11 00:16:32.000 1972-09-19 2024-10-11 00:16:32 +993 993 994 99.3 198.60000000000002 993 1972-09-20 2024-10-11 00:16:33.000 1972-09-20 2024-10-11 00:16:33 +994 994 995 99.4 198.8 994 1972-09-21 2024-10-11 00:16:34.000 1972-09-21 2024-10-11 00:16:34 +995 995 996 99.5 199 995 1972-09-22 2024-10-11 00:16:35.000 1972-09-22 2024-10-11 00:16:35 +996 996 997 99.6 199.20000000000002 996 1972-09-23 2024-10-11 00:16:36.000 1972-09-23 2024-10-11 00:16:36 +997 997 998 99.7 199.4 997 1972-09-24 2024-10-11 00:16:37.000 1972-09-24 2024-10-11 00:16:37 +998 998 999 99.8 199.60000000000002 998 1972-09-25 2024-10-11 00:16:38.000 1972-09-25 2024-10-11 00:16:38 +999 999 1000 99.9 199.8 999 1972-09-26 2024-10-11 00:16:39.000 1972-09-26 2024-10-11 00:16:39 +1000 1000 1001 100 200 1000 1972-09-27 2024-10-11 00:16:40.000 1972-09-27 2024-10-11 00:16:40 +1001 1001 1002 100.1 200.20000000000002 1001 1972-09-28 2024-10-11 00:16:41.000 1972-09-28 2024-10-11 00:16:41 +1002 1002 1003 100.2 200.4 1002 1972-09-29 2024-10-11 00:16:42.000 1972-09-29 2024-10-11 00:16:42 +1003 1003 1004 100.3 200.60000000000002 1003 1972-09-30 2024-10-11 00:16:43.000 1972-09-30 2024-10-11 00:16:43 +1004 1004 1005 100.4 200.8 1004 1972-10-01 2024-10-11 00:16:44.000 1972-10-01 2024-10-11 00:16:44 +1005 1005 1006 100.5 201 1005 1972-10-02 2024-10-11 00:16:45.000 1972-10-02 2024-10-11 00:16:45 +1006 1006 1007 100.6 201.20000000000002 1006 1972-10-03 2024-10-11 00:16:46.000 1972-10-03 2024-10-11 00:16:46 +1007 1007 1008 100.7 201.4 1007 1972-10-04 2024-10-11 00:16:47.000 1972-10-04 2024-10-11 00:16:47 +1008 1008 1009 100.8 201.60000000000002 1008 1972-10-05 2024-10-11 00:16:48.000 1972-10-05 2024-10-11 00:16:48 +1009 1009 1010 100.9 201.8 1009 1972-10-06 2024-10-11 00:16:49.000 1972-10-06 2024-10-11 00:16:49 +1010 1010 1011 101 202 1010 1972-10-07 2024-10-11 00:16:50.000 1972-10-07 2024-10-11 00:16:50 +1011 1011 1012 101.1 202.20000000000002 1011 1972-10-08 2024-10-11 00:16:51.000 1972-10-08 2024-10-11 00:16:51 +1012 1012 1013 101.2 202.4 1012 1972-10-09 2024-10-11 00:16:52.000 1972-10-09 2024-10-11 00:16:52 +1013 1013 1014 101.3 202.60000000000002 1013 1972-10-10 2024-10-11 00:16:53.000 1972-10-10 2024-10-11 00:16:53 +1014 1014 1015 101.4 202.8 1014 1972-10-11 2024-10-11 00:16:54.000 1972-10-11 2024-10-11 00:16:54 +1015 1015 1016 101.5 203 1015 1972-10-12 2024-10-11 00:16:55.000 1972-10-12 2024-10-11 00:16:55 +1016 1016 1017 101.6 203.20000000000002 1016 1972-10-13 2024-10-11 00:16:56.000 1972-10-13 2024-10-11 00:16:56 +1017 1017 1018 101.7 203.4 1017 1972-10-14 2024-10-11 00:16:57.000 1972-10-14 2024-10-11 00:16:57 +1018 1018 1019 101.8 203.60000000000002 1018 1972-10-15 2024-10-11 00:16:58.000 1972-10-15 2024-10-11 00:16:58 +1019 1019 1020 101.9 203.8 1019 1972-10-16 2024-10-11 00:16:59.000 1972-10-16 2024-10-11 00:16:59 +1020 1020 1021 102 204 1020 1972-10-17 2024-10-11 00:17:00.000 1972-10-17 2024-10-11 00:17:00 +1021 1021 1022 102.1 204.20000000000002 1021 1972-10-18 2024-10-11 00:17:01.000 1972-10-18 2024-10-11 00:17:01 +1022 1022 1023 102.2 204.4 1022 1972-10-19 2024-10-11 00:17:02.000 1972-10-19 2024-10-11 00:17:02 +1023 1023 1024 102.3 204.60000000000002 1023 1972-10-20 2024-10-11 00:17:03.000 1972-10-20 2024-10-11 00:17:03 +1024 1024 1025 102.4 204.8 1024 1972-10-21 2024-10-11 00:17:04.000 1972-10-21 2024-10-11 00:17:04 +1025 1025 1026 102.5 205 1025 1972-10-22 2024-10-11 00:17:05.000 1972-10-22 2024-10-11 00:17:05 +1026 1026 1027 102.6 205.20000000000002 1026 1972-10-23 2024-10-11 00:17:06.000 1972-10-23 2024-10-11 00:17:06 +1027 1027 1028 102.7 205.4 1027 1972-10-24 2024-10-11 00:17:07.000 1972-10-24 2024-10-11 00:17:07 +1028 1028 1029 102.8 205.60000000000002 1028 1972-10-25 2024-10-11 00:17:08.000 1972-10-25 2024-10-11 00:17:08 +1029 1029 1030 102.9 205.8 1029 1972-10-26 2024-10-11 00:17:09.000 1972-10-26 2024-10-11 00:17:09 +1030 1030 1031 103 206 1030 1972-10-27 2024-10-11 00:17:10.000 1972-10-27 2024-10-11 00:17:10 +1031 1031 1032 103.1 206.20000000000002 1031 1972-10-28 2024-10-11 00:17:11.000 1972-10-28 2024-10-11 00:17:11 +1032 1032 1033 103.2 206.4 1032 1972-10-29 2024-10-11 00:17:12.000 1972-10-29 2024-10-11 00:17:12 +1033 1033 1034 103.3 206.60000000000002 1033 1972-10-30 2024-10-11 00:17:13.000 1972-10-30 2024-10-11 00:17:13 +1034 1034 1035 103.4 206.8 1034 1972-10-31 2024-10-11 00:17:14.000 1972-10-31 2024-10-11 00:17:14 +1035 1035 1036 103.5 207 1035 1972-11-01 2024-10-11 00:17:15.000 1972-11-01 2024-10-11 00:17:15 +1036 1036 1037 103.6 207.20000000000002 1036 1972-11-02 2024-10-11 00:17:16.000 1972-11-02 2024-10-11 00:17:16 +1037 1037 1038 103.7 207.4 1037 1972-11-03 2024-10-11 00:17:17.000 1972-11-03 2024-10-11 00:17:17 +1038 1038 1039 103.8 207.60000000000002 1038 1972-11-04 2024-10-11 00:17:18.000 1972-11-04 2024-10-11 00:17:18 +1039 1039 1040 103.9 207.8 1039 1972-11-05 2024-10-11 00:17:19.000 1972-11-05 2024-10-11 00:17:19 +1040 1040 1041 104 208 1040 1972-11-06 2024-10-11 00:17:20.000 1972-11-06 2024-10-11 00:17:20 +1041 1041 1042 104.1 208.20000000000002 1041 1972-11-07 2024-10-11 00:17:21.000 1972-11-07 2024-10-11 00:17:21 +1042 1042 1043 104.2 208.4 1042 1972-11-08 2024-10-11 00:17:22.000 1972-11-08 2024-10-11 00:17:22 +1043 1043 1044 104.3 208.60000000000002 1043 1972-11-09 2024-10-11 00:17:23.000 1972-11-09 2024-10-11 00:17:23 +1044 1044 1045 104.4 208.8 1044 1972-11-10 2024-10-11 00:17:24.000 1972-11-10 2024-10-11 00:17:24 +1045 1045 1046 104.5 209 1045 1972-11-11 2024-10-11 00:17:25.000 1972-11-11 2024-10-11 00:17:25 +1046 1046 1047 104.6 209.20000000000002 1046 1972-11-12 2024-10-11 00:17:26.000 1972-11-12 2024-10-11 00:17:26 +1047 1047 1048 104.7 209.4 1047 1972-11-13 2024-10-11 00:17:27.000 1972-11-13 2024-10-11 00:17:27 +1048 1048 1049 104.8 209.60000000000002 1048 1972-11-14 2024-10-11 00:17:28.000 1972-11-14 2024-10-11 00:17:28 +1049 1049 1050 104.9 209.8 1049 1972-11-15 2024-10-11 00:17:29.000 1972-11-15 2024-10-11 00:17:29 +1050 1050 1051 105 210 1050 1972-11-16 2024-10-11 00:17:30.000 1972-11-16 2024-10-11 00:17:30 +1051 1051 1052 105.1 210.20000000000002 1051 1972-11-17 2024-10-11 00:17:31.000 1972-11-17 2024-10-11 00:17:31 +1052 1052 1053 105.2 210.4 1052 1972-11-18 2024-10-11 00:17:32.000 1972-11-18 2024-10-11 00:17:32 +1053 1053 1054 105.3 210.60000000000002 1053 1972-11-19 2024-10-11 00:17:33.000 1972-11-19 2024-10-11 00:17:33 +1054 1054 1055 105.4 210.8 1054 1972-11-20 2024-10-11 00:17:34.000 1972-11-20 2024-10-11 00:17:34 +1055 1055 1056 105.5 211 1055 1972-11-21 2024-10-11 00:17:35.000 1972-11-21 2024-10-11 00:17:35 +1056 1056 1057 105.6 211.20000000000002 1056 1972-11-22 2024-10-11 00:17:36.000 1972-11-22 2024-10-11 00:17:36 +1057 1057 1058 105.7 211.4 1057 1972-11-23 2024-10-11 00:17:37.000 1972-11-23 2024-10-11 00:17:37 +1058 1058 1059 105.8 211.60000000000002 1058 1972-11-24 2024-10-11 00:17:38.000 1972-11-24 2024-10-11 00:17:38 +1059 1059 1060 105.9 211.8 1059 1972-11-25 2024-10-11 00:17:39.000 1972-11-25 2024-10-11 00:17:39 +1060 1060 1061 106 212 1060 1972-11-26 2024-10-11 00:17:40.000 1972-11-26 2024-10-11 00:17:40 +1061 1061 1062 106.1 212.20000000000002 1061 1972-11-27 2024-10-11 00:17:41.000 1972-11-27 2024-10-11 00:17:41 +1062 1062 1063 106.2 212.4 1062 1972-11-28 2024-10-11 00:17:42.000 1972-11-28 2024-10-11 00:17:42 +1063 1063 1064 106.3 212.60000000000002 1063 1972-11-29 2024-10-11 00:17:43.000 1972-11-29 2024-10-11 00:17:43 +1064 1064 1065 106.4 212.8 1064 1972-11-30 2024-10-11 00:17:44.000 1972-11-30 2024-10-11 00:17:44 +1065 1065 1066 106.5 213 1065 1972-12-01 2024-10-11 00:17:45.000 1972-12-01 2024-10-11 00:17:45 +1066 1066 1067 106.6 213.20000000000002 1066 1972-12-02 2024-10-11 00:17:46.000 1972-12-02 2024-10-11 00:17:46 +1067 1067 1068 106.7 213.4 1067 1972-12-03 2024-10-11 00:17:47.000 1972-12-03 2024-10-11 00:17:47 +1068 1068 1069 106.8 213.60000000000002 1068 1972-12-04 2024-10-11 00:17:48.000 1972-12-04 2024-10-11 00:17:48 +1069 1069 1070 106.9 213.8 1069 1972-12-05 2024-10-11 00:17:49.000 1972-12-05 2024-10-11 00:17:49 +1070 1070 1071 107 214 1070 1972-12-06 2024-10-11 00:17:50.000 1972-12-06 2024-10-11 00:17:50 +1071 1071 1072 107.1 214.20000000000002 1071 1972-12-07 2024-10-11 00:17:51.000 1972-12-07 2024-10-11 00:17:51 +1072 1072 1073 107.2 214.4 1072 1972-12-08 2024-10-11 00:17:52.000 1972-12-08 2024-10-11 00:17:52 +1073 1073 1074 107.3 214.60000000000002 1073 1972-12-09 2024-10-11 00:17:53.000 1972-12-09 2024-10-11 00:17:53 +1074 1074 1075 107.4 214.8 1074 1972-12-10 2024-10-11 00:17:54.000 1972-12-10 2024-10-11 00:17:54 +1075 1075 1076 107.5 215 1075 1972-12-11 2024-10-11 00:17:55.000 1972-12-11 2024-10-11 00:17:55 +1076 1076 1077 107.6 215.20000000000002 1076 1972-12-12 2024-10-11 00:17:56.000 1972-12-12 2024-10-11 00:17:56 +1077 1077 1078 107.7 215.4 1077 1972-12-13 2024-10-11 00:17:57.000 1972-12-13 2024-10-11 00:17:57 +1078 1078 1079 107.8 215.60000000000002 1078 1972-12-14 2024-10-11 00:17:58.000 1972-12-14 2024-10-11 00:17:58 +1079 1079 1080 107.9 215.8 1079 1972-12-15 2024-10-11 00:17:59.000 1972-12-15 2024-10-11 00:17:59 +1080 1080 1081 108 216 1080 1972-12-16 2024-10-11 00:18:00.000 1972-12-16 2024-10-11 00:18:00 +1081 1081 1082 108.1 216.20000000000002 1081 1972-12-17 2024-10-11 00:18:01.000 1972-12-17 2024-10-11 00:18:01 +1082 1082 1083 108.2 216.4 1082 1972-12-18 2024-10-11 00:18:02.000 1972-12-18 2024-10-11 00:18:02 +1083 1083 1084 108.3 216.60000000000002 1083 1972-12-19 2024-10-11 00:18:03.000 1972-12-19 2024-10-11 00:18:03 +1084 1084 1085 108.4 216.8 1084 1972-12-20 2024-10-11 00:18:04.000 1972-12-20 2024-10-11 00:18:04 +1085 1085 1086 108.5 217 1085 1972-12-21 2024-10-11 00:18:05.000 1972-12-21 2024-10-11 00:18:05 +1086 1086 1087 108.6 217.20000000000002 1086 1972-12-22 2024-10-11 00:18:06.000 1972-12-22 2024-10-11 00:18:06 +1087 1087 1088 108.7 217.4 1087 1972-12-23 2024-10-11 00:18:07.000 1972-12-23 2024-10-11 00:18:07 +1088 1088 1089 108.8 217.60000000000002 1088 1972-12-24 2024-10-11 00:18:08.000 1972-12-24 2024-10-11 00:18:08 +1089 1089 1090 108.9 217.8 1089 1972-12-25 2024-10-11 00:18:09.000 1972-12-25 2024-10-11 00:18:09 +1090 1090 1091 109 218 1090 1972-12-26 2024-10-11 00:18:10.000 1972-12-26 2024-10-11 00:18:10 +1091 1091 1092 109.1 218.20000000000002 1091 1972-12-27 2024-10-11 00:18:11.000 1972-12-27 2024-10-11 00:18:11 +1092 1092 1093 109.2 218.4 1092 1972-12-28 2024-10-11 00:18:12.000 1972-12-28 2024-10-11 00:18:12 +1093 1093 1094 109.3 218.60000000000002 1093 1972-12-29 2024-10-11 00:18:13.000 1972-12-29 2024-10-11 00:18:13 +1094 1094 1095 109.4 218.8 1094 1972-12-30 2024-10-11 00:18:14.000 1972-12-30 2024-10-11 00:18:14 +1095 1095 1096 109.5 219 1095 1972-12-31 2024-10-11 00:18:15.000 1972-12-31 2024-10-11 00:18:15 +1096 1096 1097 109.6 219.20000000000002 1096 1973-01-01 2024-10-11 00:18:16.000 1973-01-01 2024-10-11 00:18:16 +1097 1097 1098 109.7 219.4 1097 1973-01-02 2024-10-11 00:18:17.000 1973-01-02 2024-10-11 00:18:17 +1098 1098 1099 109.8 219.60000000000002 1098 1973-01-03 2024-10-11 00:18:18.000 1973-01-03 2024-10-11 00:18:18 +1099 1099 1100 109.9 219.8 1099 1973-01-04 2024-10-11 00:18:19.000 1973-01-04 2024-10-11 00:18:19 +1100 1100 1101 110 220 1100 1973-01-05 2024-10-11 00:18:20.000 1973-01-05 2024-10-11 00:18:20 +1101 1101 1102 110.1 220.20000000000002 1101 1973-01-06 2024-10-11 00:18:21.000 1973-01-06 2024-10-11 00:18:21 +1102 1102 1103 110.2 220.4 1102 1973-01-07 2024-10-11 00:18:22.000 1973-01-07 2024-10-11 00:18:22 +1103 1103 1104 110.3 220.60000000000002 1103 1973-01-08 2024-10-11 00:18:23.000 1973-01-08 2024-10-11 00:18:23 +1104 1104 1105 110.4 220.8 1104 1973-01-09 2024-10-11 00:18:24.000 1973-01-09 2024-10-11 00:18:24 +1105 1105 1106 110.5 221 1105 1973-01-10 2024-10-11 00:18:25.000 1973-01-10 2024-10-11 00:18:25 +1106 1106 1107 110.6 221.20000000000002 1106 1973-01-11 2024-10-11 00:18:26.000 1973-01-11 2024-10-11 00:18:26 +1107 1107 1108 110.7 221.4 1107 1973-01-12 2024-10-11 00:18:27.000 1973-01-12 2024-10-11 00:18:27 +1108 1108 1109 110.8 221.60000000000002 1108 1973-01-13 2024-10-11 00:18:28.000 1973-01-13 2024-10-11 00:18:28 +1109 1109 1110 110.9 221.8 1109 1973-01-14 2024-10-11 00:18:29.000 1973-01-14 2024-10-11 00:18:29 +1110 1110 1111 111 222 1110 1973-01-15 2024-10-11 00:18:30.000 1973-01-15 2024-10-11 00:18:30 +1111 1111 1112 111.1 222.20000000000002 1111 1973-01-16 2024-10-11 00:18:31.000 1973-01-16 2024-10-11 00:18:31 +1112 1112 1113 111.2 222.4 1112 1973-01-17 2024-10-11 00:18:32.000 1973-01-17 2024-10-11 00:18:32 +1113 1113 1114 111.3 222.60000000000002 1113 1973-01-18 2024-10-11 00:18:33.000 1973-01-18 2024-10-11 00:18:33 +1114 1114 1115 111.4 222.8 1114 1973-01-19 2024-10-11 00:18:34.000 1973-01-19 2024-10-11 00:18:34 +1115 1115 1116 111.5 223 1115 1973-01-20 2024-10-11 00:18:35.000 1973-01-20 2024-10-11 00:18:35 +1116 1116 1117 111.6 223.20000000000002 1116 1973-01-21 2024-10-11 00:18:36.000 1973-01-21 2024-10-11 00:18:36 +1117 1117 1118 111.7 223.4 1117 1973-01-22 2024-10-11 00:18:37.000 1973-01-22 2024-10-11 00:18:37 +1118 1118 1119 111.8 223.60000000000002 1118 1973-01-23 2024-10-11 00:18:38.000 1973-01-23 2024-10-11 00:18:38 +1119 1119 1120 111.9 223.8 1119 1973-01-24 2024-10-11 00:18:39.000 1973-01-24 2024-10-11 00:18:39 +1120 1120 1121 112 224 1120 1973-01-25 2024-10-11 00:18:40.000 1973-01-25 2024-10-11 00:18:40 +1121 1121 1122 112.1 224.20000000000002 1121 1973-01-26 2024-10-11 00:18:41.000 1973-01-26 2024-10-11 00:18:41 +1122 1122 1123 112.2 224.4 1122 1973-01-27 2024-10-11 00:18:42.000 1973-01-27 2024-10-11 00:18:42 +1123 1123 1124 112.3 224.60000000000002 1123 1973-01-28 2024-10-11 00:18:43.000 1973-01-28 2024-10-11 00:18:43 +1124 1124 1125 112.4 224.8 1124 1973-01-29 2024-10-11 00:18:44.000 1973-01-29 2024-10-11 00:18:44 +1125 1125 1126 112.5 225 1125 1973-01-30 2024-10-11 00:18:45.000 1973-01-30 2024-10-11 00:18:45 +1126 1126 1127 112.6 225.20000000000002 1126 1973-01-31 2024-10-11 00:18:46.000 1973-01-31 2024-10-11 00:18:46 +1127 1127 1128 112.7 225.4 1127 1973-02-01 2024-10-11 00:18:47.000 1973-02-01 2024-10-11 00:18:47 +1128 1128 1129 112.8 225.60000000000002 1128 1973-02-02 2024-10-11 00:18:48.000 1973-02-02 2024-10-11 00:18:48 +1129 1129 1130 112.9 225.8 1129 1973-02-03 2024-10-11 00:18:49.000 1973-02-03 2024-10-11 00:18:49 +1130 1130 1131 113 226 1130 1973-02-04 2024-10-11 00:18:50.000 1973-02-04 2024-10-11 00:18:50 +1131 1131 1132 113.1 226.20000000000002 1131 1973-02-05 2024-10-11 00:18:51.000 1973-02-05 2024-10-11 00:18:51 +1132 1132 1133 113.2 226.4 1132 1973-02-06 2024-10-11 00:18:52.000 1973-02-06 2024-10-11 00:18:52 +1133 1133 1134 113.3 226.60000000000002 1133 1973-02-07 2024-10-11 00:18:53.000 1973-02-07 2024-10-11 00:18:53 +1134 1134 1135 113.4 226.8 1134 1973-02-08 2024-10-11 00:18:54.000 1973-02-08 2024-10-11 00:18:54 +1135 1135 1136 113.5 227 1135 1973-02-09 2024-10-11 00:18:55.000 1973-02-09 2024-10-11 00:18:55 +1136 1136 1137 113.6 227.20000000000002 1136 1973-02-10 2024-10-11 00:18:56.000 1973-02-10 2024-10-11 00:18:56 +1137 1137 1138 113.7 227.4 1137 1973-02-11 2024-10-11 00:18:57.000 1973-02-11 2024-10-11 00:18:57 +1138 1138 1139 113.8 227.60000000000002 1138 1973-02-12 2024-10-11 00:18:58.000 1973-02-12 2024-10-11 00:18:58 +1139 1139 1140 113.9 227.8 1139 1973-02-13 2024-10-11 00:18:59.000 1973-02-13 2024-10-11 00:18:59 +1140 1140 1141 114 228 1140 1973-02-14 2024-10-11 00:19:00.000 1973-02-14 2024-10-11 00:19:00 +1141 1141 1142 114.1 228.20000000000002 1141 1973-02-15 2024-10-11 00:19:01.000 1973-02-15 2024-10-11 00:19:01 +1142 1142 1143 114.2 228.4 1142 1973-02-16 2024-10-11 00:19:02.000 1973-02-16 2024-10-11 00:19:02 +1143 1143 1144 114.3 228.60000000000002 1143 1973-02-17 2024-10-11 00:19:03.000 1973-02-17 2024-10-11 00:19:03 +1144 1144 1145 114.4 228.8 1144 1973-02-18 2024-10-11 00:19:04.000 1973-02-18 2024-10-11 00:19:04 +1145 1145 1146 114.5 229 1145 1973-02-19 2024-10-11 00:19:05.000 1973-02-19 2024-10-11 00:19:05 +1146 1146 1147 114.6 229.20000000000002 1146 1973-02-20 2024-10-11 00:19:06.000 1973-02-20 2024-10-11 00:19:06 +1147 1147 1148 114.7 229.4 1147 1973-02-21 2024-10-11 00:19:07.000 1973-02-21 2024-10-11 00:19:07 +1148 1148 1149 114.8 229.60000000000002 1148 1973-02-22 2024-10-11 00:19:08.000 1973-02-22 2024-10-11 00:19:08 +1149 1149 1150 114.9 229.8 1149 1973-02-23 2024-10-11 00:19:09.000 1973-02-23 2024-10-11 00:19:09 +1150 1150 1151 115 230 1150 1973-02-24 2024-10-11 00:19:10.000 1973-02-24 2024-10-11 00:19:10 +1151 1151 1152 115.1 230.20000000000002 1151 1973-02-25 2024-10-11 00:19:11.000 1973-02-25 2024-10-11 00:19:11 +1152 1152 1153 115.2 230.4 1152 1973-02-26 2024-10-11 00:19:12.000 1973-02-26 2024-10-11 00:19:12 +1153 1153 1154 115.3 230.60000000000002 1153 1973-02-27 2024-10-11 00:19:13.000 1973-02-27 2024-10-11 00:19:13 +1154 1154 1155 115.4 230.8 1154 1973-02-28 2024-10-11 00:19:14.000 1973-02-28 2024-10-11 00:19:14 +1155 1155 1156 115.5 231 1155 1973-03-01 2024-10-11 00:19:15.000 1973-03-01 2024-10-11 00:19:15 +1156 1156 1157 115.6 231.20000000000002 1156 1973-03-02 2024-10-11 00:19:16.000 1973-03-02 2024-10-11 00:19:16 +1157 1157 1158 115.7 231.4 1157 1973-03-03 2024-10-11 00:19:17.000 1973-03-03 2024-10-11 00:19:17 +1158 1158 1159 115.8 231.60000000000002 1158 1973-03-04 2024-10-11 00:19:18.000 1973-03-04 2024-10-11 00:19:18 +1159 1159 1160 115.9 231.8 1159 1973-03-05 2024-10-11 00:19:19.000 1973-03-05 2024-10-11 00:19:19 +1160 1160 1161 116 232 1160 1973-03-06 2024-10-11 00:19:20.000 1973-03-06 2024-10-11 00:19:20 +1161 1161 1162 116.1 232.20000000000002 1161 1973-03-07 2024-10-11 00:19:21.000 1973-03-07 2024-10-11 00:19:21 +1162 1162 1163 116.2 232.4 1162 1973-03-08 2024-10-11 00:19:22.000 1973-03-08 2024-10-11 00:19:22 +1163 1163 1164 116.3 232.60000000000002 1163 1973-03-09 2024-10-11 00:19:23.000 1973-03-09 2024-10-11 00:19:23 +1164 1164 1165 116.4 232.8 1164 1973-03-10 2024-10-11 00:19:24.000 1973-03-10 2024-10-11 00:19:24 +1165 1165 1166 116.5 233 1165 1973-03-11 2024-10-11 00:19:25.000 1973-03-11 2024-10-11 00:19:25 +1166 1166 1167 116.6 233.20000000000002 1166 1973-03-12 2024-10-11 00:19:26.000 1973-03-12 2024-10-11 00:19:26 +1167 1167 1168 116.7 233.4 1167 1973-03-13 2024-10-11 00:19:27.000 1973-03-13 2024-10-11 00:19:27 +1168 1168 1169 116.8 233.60000000000002 1168 1973-03-14 2024-10-11 00:19:28.000 1973-03-14 2024-10-11 00:19:28 +1169 1169 1170 116.9 233.8 1169 1973-03-15 2024-10-11 00:19:29.000 1973-03-15 2024-10-11 00:19:29 +1170 1170 1171 117 234 1170 1973-03-16 2024-10-11 00:19:30.000 1973-03-16 2024-10-11 00:19:30 +1171 1171 1172 117.1 234.20000000000002 1171 1973-03-17 2024-10-11 00:19:31.000 1973-03-17 2024-10-11 00:19:31 +1172 1172 1173 117.2 234.4 1172 1973-03-18 2024-10-11 00:19:32.000 1973-03-18 2024-10-11 00:19:32 +1173 1173 1174 117.3 234.60000000000002 1173 1973-03-19 2024-10-11 00:19:33.000 1973-03-19 2024-10-11 00:19:33 +1174 1174 1175 117.4 234.8 1174 1973-03-20 2024-10-11 00:19:34.000 1973-03-20 2024-10-11 00:19:34 +1175 1175 1176 117.5 235 1175 1973-03-21 2024-10-11 00:19:35.000 1973-03-21 2024-10-11 00:19:35 +1176 1176 1177 117.6 235.20000000000002 1176 1973-03-22 2024-10-11 00:19:36.000 1973-03-22 2024-10-11 00:19:36 +1177 1177 1178 117.7 235.4 1177 1973-03-23 2024-10-11 00:19:37.000 1973-03-23 2024-10-11 00:19:37 +1178 1178 1179 117.8 235.60000000000002 1178 1973-03-24 2024-10-11 00:19:38.000 1973-03-24 2024-10-11 00:19:38 +1179 1179 1180 117.9 235.8 1179 1973-03-25 2024-10-11 00:19:39.000 1973-03-25 2024-10-11 00:19:39 +1180 1180 1181 118 236 1180 1973-03-26 2024-10-11 00:19:40.000 1973-03-26 2024-10-11 00:19:40 +1181 1181 1182 118.1 236.20000000000002 1181 1973-03-27 2024-10-11 00:19:41.000 1973-03-27 2024-10-11 00:19:41 +1182 1182 1183 118.2 236.4 1182 1973-03-28 2024-10-11 00:19:42.000 1973-03-28 2024-10-11 00:19:42 +1183 1183 1184 118.3 236.60000000000002 1183 1973-03-29 2024-10-11 00:19:43.000 1973-03-29 2024-10-11 00:19:43 +1184 1184 1185 118.4 236.8 1184 1973-03-30 2024-10-11 00:19:44.000 1973-03-30 2024-10-11 00:19:44 +1185 1185 1186 118.5 237 1185 1973-03-31 2024-10-11 00:19:45.000 1973-03-31 2024-10-11 00:19:45 +1186 1186 1187 118.6 237.20000000000002 1186 1973-04-01 2024-10-11 00:19:46.000 1973-04-01 2024-10-11 00:19:46 +1187 1187 1188 118.7 237.4 1187 1973-04-02 2024-10-11 00:19:47.000 1973-04-02 2024-10-11 00:19:47 +1188 1188 1189 118.8 237.60000000000002 1188 1973-04-03 2024-10-11 00:19:48.000 1973-04-03 2024-10-11 00:19:48 +1189 1189 1190 118.9 237.8 1189 1973-04-04 2024-10-11 00:19:49.000 1973-04-04 2024-10-11 00:19:49 +1190 1190 1191 119 238 1190 1973-04-05 2024-10-11 00:19:50.000 1973-04-05 2024-10-11 00:19:50 +1191 1191 1192 119.1 238.20000000000002 1191 1973-04-06 2024-10-11 00:19:51.000 1973-04-06 2024-10-11 00:19:51 +1192 1192 1193 119.2 238.4 1192 1973-04-07 2024-10-11 00:19:52.000 1973-04-07 2024-10-11 00:19:52 +1193 1193 1194 119.3 238.60000000000002 1193 1973-04-08 2024-10-11 00:19:53.000 1973-04-08 2024-10-11 00:19:53 +1194 1194 1195 119.4 238.8 1194 1973-04-09 2024-10-11 00:19:54.000 1973-04-09 2024-10-11 00:19:54 +1195 1195 1196 119.5 239 1195 1973-04-10 2024-10-11 00:19:55.000 1973-04-10 2024-10-11 00:19:55 +1196 1196 1197 119.6 239.20000000000002 1196 1973-04-11 2024-10-11 00:19:56.000 1973-04-11 2024-10-11 00:19:56 +1197 1197 1198 119.7 239.4 1197 1973-04-12 2024-10-11 00:19:57.000 1973-04-12 2024-10-11 00:19:57 +1198 1198 1199 119.8 239.60000000000002 1198 1973-04-13 2024-10-11 00:19:58.000 1973-04-13 2024-10-11 00:19:58 +1199 1199 1200 119.9 239.8 1199 1973-04-14 2024-10-11 00:19:59.000 1973-04-14 2024-10-11 00:19:59 +1200 1200 1201 120 240 1200 1973-04-15 2024-10-11 00:20:00.000 1973-04-15 2024-10-11 00:20:00 +1201 1201 1202 120.1 240.20000000000002 1201 1973-04-16 2024-10-11 00:20:01.000 1973-04-16 2024-10-11 00:20:01 +1202 1202 1203 120.2 240.4 1202 1973-04-17 2024-10-11 00:20:02.000 1973-04-17 2024-10-11 00:20:02 +1203 1203 1204 120.3 240.60000000000002 1203 1973-04-18 2024-10-11 00:20:03.000 1973-04-18 2024-10-11 00:20:03 +1204 1204 1205 120.4 240.8 1204 1973-04-19 2024-10-11 00:20:04.000 1973-04-19 2024-10-11 00:20:04 +1205 1205 1206 120.5 241 1205 1973-04-20 2024-10-11 00:20:05.000 1973-04-20 2024-10-11 00:20:05 +1206 1206 1207 120.6 241.20000000000002 1206 1973-04-21 2024-10-11 00:20:06.000 1973-04-21 2024-10-11 00:20:06 +1207 1207 1208 120.7 241.4 1207 1973-04-22 2024-10-11 00:20:07.000 1973-04-22 2024-10-11 00:20:07 +1208 1208 1209 120.8 241.60000000000002 1208 1973-04-23 2024-10-11 00:20:08.000 1973-04-23 2024-10-11 00:20:08 +1209 1209 1210 120.9 241.8 1209 1973-04-24 2024-10-11 00:20:09.000 1973-04-24 2024-10-11 00:20:09 +1210 1210 1211 121 242 1210 1973-04-25 2024-10-11 00:20:10.000 1973-04-25 2024-10-11 00:20:10 +1211 1211 1212 121.1 242.20000000000002 1211 1973-04-26 2024-10-11 00:20:11.000 1973-04-26 2024-10-11 00:20:11 +1212 1212 1213 121.2 242.4 1212 1973-04-27 2024-10-11 00:20:12.000 1973-04-27 2024-10-11 00:20:12 +1213 1213 1214 121.3 242.60000000000002 1213 1973-04-28 2024-10-11 00:20:13.000 1973-04-28 2024-10-11 00:20:13 +1214 1214 1215 121.4 242.8 1214 1973-04-29 2024-10-11 00:20:14.000 1973-04-29 2024-10-11 00:20:14 +1215 1215 1216 121.5 243 1215 1973-04-30 2024-10-11 00:20:15.000 1973-04-30 2024-10-11 00:20:15 +1216 1216 1217 121.6 243.20000000000002 1216 1973-05-01 2024-10-11 00:20:16.000 1973-05-01 2024-10-11 00:20:16 +1217 1217 1218 121.7 243.4 1217 1973-05-02 2024-10-11 00:20:17.000 1973-05-02 2024-10-11 00:20:17 +1218 1218 1219 121.8 243.60000000000002 1218 1973-05-03 2024-10-11 00:20:18.000 1973-05-03 2024-10-11 00:20:18 +1219 1219 1220 121.9 243.8 1219 1973-05-04 2024-10-11 00:20:19.000 1973-05-04 2024-10-11 00:20:19 +1220 1220 1221 122 244 1220 1973-05-05 2024-10-11 00:20:20.000 1973-05-05 2024-10-11 00:20:20 +1221 1221 1222 122.1 244.20000000000002 1221 1973-05-06 2024-10-11 00:20:21.000 1973-05-06 2024-10-11 00:20:21 +1222 1222 1223 122.2 244.4 1222 1973-05-07 2024-10-11 00:20:22.000 1973-05-07 2024-10-11 00:20:22 +1223 1223 1224 122.3 244.60000000000002 1223 1973-05-08 2024-10-11 00:20:23.000 1973-05-08 2024-10-11 00:20:23 +1224 1224 1225 122.4 244.8 1224 1973-05-09 2024-10-11 00:20:24.000 1973-05-09 2024-10-11 00:20:24 +1225 1225 1226 122.5 245 1225 1973-05-10 2024-10-11 00:20:25.000 1973-05-10 2024-10-11 00:20:25 +1226 1226 1227 122.6 245.20000000000002 1226 1973-05-11 2024-10-11 00:20:26.000 1973-05-11 2024-10-11 00:20:26 +1227 1227 1228 122.7 245.4 1227 1973-05-12 2024-10-11 00:20:27.000 1973-05-12 2024-10-11 00:20:27 +1228 1228 1229 122.8 245.60000000000002 1228 1973-05-13 2024-10-11 00:20:28.000 1973-05-13 2024-10-11 00:20:28 +1229 1229 1230 122.9 245.8 1229 1973-05-14 2024-10-11 00:20:29.000 1973-05-14 2024-10-11 00:20:29 +1230 1230 1231 123 246 1230 1973-05-15 2024-10-11 00:20:30.000 1973-05-15 2024-10-11 00:20:30 +1231 1231 1232 123.1 246.20000000000002 1231 1973-05-16 2024-10-11 00:20:31.000 1973-05-16 2024-10-11 00:20:31 +1232 1232 1233 123.2 246.4 1232 1973-05-17 2024-10-11 00:20:32.000 1973-05-17 2024-10-11 00:20:32 +1233 1233 1234 123.3 246.60000000000002 1233 1973-05-18 2024-10-11 00:20:33.000 1973-05-18 2024-10-11 00:20:33 +1234 1234 1235 123.4 246.8 1234 1973-05-19 2024-10-11 00:20:34.000 1973-05-19 2024-10-11 00:20:34 +1235 1235 1236 123.5 247 1235 1973-05-20 2024-10-11 00:20:35.000 1973-05-20 2024-10-11 00:20:35 +1236 1236 1237 123.6 247.20000000000002 1236 1973-05-21 2024-10-11 00:20:36.000 1973-05-21 2024-10-11 00:20:36 +1237 1237 1238 123.7 247.4 1237 1973-05-22 2024-10-11 00:20:37.000 1973-05-22 2024-10-11 00:20:37 +1238 1238 1239 123.8 247.60000000000002 1238 1973-05-23 2024-10-11 00:20:38.000 1973-05-23 2024-10-11 00:20:38 +1239 1239 1240 123.9 247.8 1239 1973-05-24 2024-10-11 00:20:39.000 1973-05-24 2024-10-11 00:20:39 +1240 1240 1241 124 248 1240 1973-05-25 2024-10-11 00:20:40.000 1973-05-25 2024-10-11 00:20:40 +1241 1241 1242 124.1 248.20000000000002 1241 1973-05-26 2024-10-11 00:20:41.000 1973-05-26 2024-10-11 00:20:41 +1242 1242 1243 124.2 248.4 1242 1973-05-27 2024-10-11 00:20:42.000 1973-05-27 2024-10-11 00:20:42 +1243 1243 1244 124.3 248.60000000000002 1243 1973-05-28 2024-10-11 00:20:43.000 1973-05-28 2024-10-11 00:20:43 +1244 1244 1245 124.4 248.8 1244 1973-05-29 2024-10-11 00:20:44.000 1973-05-29 2024-10-11 00:20:44 +1245 1245 1246 124.5 249 1245 1973-05-30 2024-10-11 00:20:45.000 1973-05-30 2024-10-11 00:20:45 +1246 1246 1247 124.6 249.20000000000002 1246 1973-05-31 2024-10-11 00:20:46.000 1973-05-31 2024-10-11 00:20:46 +1247 1247 1248 124.7 249.4 1247 1973-06-01 2024-10-11 00:20:47.000 1973-06-01 2024-10-11 00:20:47 +1248 1248 1249 124.8 249.60000000000002 1248 1973-06-02 2024-10-11 00:20:48.000 1973-06-02 2024-10-11 00:20:48 +1249 1249 1250 124.9 249.8 1249 1973-06-03 2024-10-11 00:20:49.000 1973-06-03 2024-10-11 00:20:49 +1250 1250 1251 125 250 1250 1973-06-04 2024-10-11 00:20:50.000 1973-06-04 2024-10-11 00:20:50 +1251 1251 1252 125.1 250.20000000000002 1251 1973-06-05 2024-10-11 00:20:51.000 1973-06-05 2024-10-11 00:20:51 +1252 1252 1253 125.2 250.4 1252 1973-06-06 2024-10-11 00:20:52.000 1973-06-06 2024-10-11 00:20:52 +1253 1253 1254 125.3 250.60000000000002 1253 1973-06-07 2024-10-11 00:20:53.000 1973-06-07 2024-10-11 00:20:53 +1254 1254 1255 125.4 250.8 1254 1973-06-08 2024-10-11 00:20:54.000 1973-06-08 2024-10-11 00:20:54 +1255 1255 1256 125.5 251 1255 1973-06-09 2024-10-11 00:20:55.000 1973-06-09 2024-10-11 00:20:55 +1256 1256 1257 125.6 251.20000000000002 1256 1973-06-10 2024-10-11 00:20:56.000 1973-06-10 2024-10-11 00:20:56 +1257 1257 1258 125.7 251.4 1257 1973-06-11 2024-10-11 00:20:57.000 1973-06-11 2024-10-11 00:20:57 +1258 1258 1259 125.8 251.60000000000002 1258 1973-06-12 2024-10-11 00:20:58.000 1973-06-12 2024-10-11 00:20:58 +1259 1259 1260 125.9 251.8 1259 1973-06-13 2024-10-11 00:20:59.000 1973-06-13 2024-10-11 00:20:59 +1260 1260 1261 126 252 1260 1973-06-14 2024-10-11 00:21:00.000 1973-06-14 2024-10-11 00:21:00 +1261 1261 1262 126.1 252.20000000000002 1261 1973-06-15 2024-10-11 00:21:01.000 1973-06-15 2024-10-11 00:21:01 +1262 1262 1263 126.2 252.4 1262 1973-06-16 2024-10-11 00:21:02.000 1973-06-16 2024-10-11 00:21:02 +1263 1263 1264 126.3 252.60000000000002 1263 1973-06-17 2024-10-11 00:21:03.000 1973-06-17 2024-10-11 00:21:03 +1264 1264 1265 126.4 252.8 1264 1973-06-18 2024-10-11 00:21:04.000 1973-06-18 2024-10-11 00:21:04 +1265 1265 1266 126.5 253 1265 1973-06-19 2024-10-11 00:21:05.000 1973-06-19 2024-10-11 00:21:05 +1266 1266 1267 126.6 253.20000000000002 1266 1973-06-20 2024-10-11 00:21:06.000 1973-06-20 2024-10-11 00:21:06 +1267 1267 1268 126.7 253.4 1267 1973-06-21 2024-10-11 00:21:07.000 1973-06-21 2024-10-11 00:21:07 +1268 1268 1269 126.8 253.60000000000002 1268 1973-06-22 2024-10-11 00:21:08.000 1973-06-22 2024-10-11 00:21:08 +1269 1269 1270 126.9 253.8 1269 1973-06-23 2024-10-11 00:21:09.000 1973-06-23 2024-10-11 00:21:09 +1270 1270 1271 127 254 1270 1973-06-24 2024-10-11 00:21:10.000 1973-06-24 2024-10-11 00:21:10 +1271 1271 1272 127.1 254.20000000000002 1271 1973-06-25 2024-10-11 00:21:11.000 1973-06-25 2024-10-11 00:21:11 +1272 1272 1273 127.2 254.4 1272 1973-06-26 2024-10-11 00:21:12.000 1973-06-26 2024-10-11 00:21:12 +1273 1273 1274 127.3 254.60000000000002 1273 1973-06-27 2024-10-11 00:21:13.000 1973-06-27 2024-10-11 00:21:13 +1274 1274 1275 127.4 254.8 1274 1973-06-28 2024-10-11 00:21:14.000 1973-06-28 2024-10-11 00:21:14 +1275 1275 1276 127.5 255 1275 1973-06-29 2024-10-11 00:21:15.000 1973-06-29 2024-10-11 00:21:15 +1276 1276 1277 127.6 255.20000000000002 1276 1973-06-30 2024-10-11 00:21:16.000 1973-06-30 2024-10-11 00:21:16 +1277 1277 1278 127.7 255.4 1277 1973-07-01 2024-10-11 00:21:17.000 1973-07-01 2024-10-11 00:21:17 +1278 1278 1279 127.8 255.60000000000002 1278 1973-07-02 2024-10-11 00:21:18.000 1973-07-02 2024-10-11 00:21:18 +1279 1279 1280 127.9 255.8 1279 1973-07-03 2024-10-11 00:21:19.000 1973-07-03 2024-10-11 00:21:19 +1280 1280 1281 128 256 1280 1973-07-04 2024-10-11 00:21:20.000 1973-07-04 2024-10-11 00:21:20 +1281 1281 1282 128.1 256.2 1281 1973-07-05 2024-10-11 00:21:21.000 1973-07-05 2024-10-11 00:21:21 +1282 1282 1283 128.2 256.40000000000003 1282 1973-07-06 2024-10-11 00:21:22.000 1973-07-06 2024-10-11 00:21:22 +1283 1283 1284 128.3 256.6 1283 1973-07-07 2024-10-11 00:21:23.000 1973-07-07 2024-10-11 00:21:23 +1284 1284 1285 128.4 256.8 1284 1973-07-08 2024-10-11 00:21:24.000 1973-07-08 2024-10-11 00:21:24 +1285 1285 1286 128.5 257 1285 1973-07-09 2024-10-11 00:21:25.000 1973-07-09 2024-10-11 00:21:25 +1286 1286 1287 128.6 257.2 1286 1973-07-10 2024-10-11 00:21:26.000 1973-07-10 2024-10-11 00:21:26 +1287 1287 1288 128.7 257.40000000000003 1287 1973-07-11 2024-10-11 00:21:27.000 1973-07-11 2024-10-11 00:21:27 +1288 1288 1289 128.8 257.6 1288 1973-07-12 2024-10-11 00:21:28.000 1973-07-12 2024-10-11 00:21:28 +1289 1289 1290 128.9 257.8 1289 1973-07-13 2024-10-11 00:21:29.000 1973-07-13 2024-10-11 00:21:29 +1290 1290 1291 129 258 1290 1973-07-14 2024-10-11 00:21:30.000 1973-07-14 2024-10-11 00:21:30 +1291 1291 1292 129.1 258.2 1291 1973-07-15 2024-10-11 00:21:31.000 1973-07-15 2024-10-11 00:21:31 +1292 1292 1293 129.2 258.40000000000003 1292 1973-07-16 2024-10-11 00:21:32.000 1973-07-16 2024-10-11 00:21:32 +1293 1293 1294 129.3 258.6 1293 1973-07-17 2024-10-11 00:21:33.000 1973-07-17 2024-10-11 00:21:33 +1294 1294 1295 129.4 258.8 1294 1973-07-18 2024-10-11 00:21:34.000 1973-07-18 2024-10-11 00:21:34 +1295 1295 1296 129.5 259 1295 1973-07-19 2024-10-11 00:21:35.000 1973-07-19 2024-10-11 00:21:35 +1296 1296 1297 129.6 259.2 1296 1973-07-20 2024-10-11 00:21:36.000 1973-07-20 2024-10-11 00:21:36 +1297 1297 1298 129.7 259.40000000000003 1297 1973-07-21 2024-10-11 00:21:37.000 1973-07-21 2024-10-11 00:21:37 +1298 1298 1299 129.8 259.6 1298 1973-07-22 2024-10-11 00:21:38.000 1973-07-22 2024-10-11 00:21:38 +1299 1299 1300 129.9 259.8 1299 1973-07-23 2024-10-11 00:21:39.000 1973-07-23 2024-10-11 00:21:39 +1300 1300 1301 130 260 1300 1973-07-24 2024-10-11 00:21:40.000 1973-07-24 2024-10-11 00:21:40 +1301 1301 1302 130.1 260.2 1301 1973-07-25 2024-10-11 00:21:41.000 1973-07-25 2024-10-11 00:21:41 +1302 1302 1303 130.2 260.40000000000003 1302 1973-07-26 2024-10-11 00:21:42.000 1973-07-26 2024-10-11 00:21:42 +1303 1303 1304 130.3 260.6 1303 1973-07-27 2024-10-11 00:21:43.000 1973-07-27 2024-10-11 00:21:43 +1304 1304 1305 130.4 260.8 1304 1973-07-28 2024-10-11 00:21:44.000 1973-07-28 2024-10-11 00:21:44 +1305 1305 1306 130.5 261 1305 1973-07-29 2024-10-11 00:21:45.000 1973-07-29 2024-10-11 00:21:45 +1306 1306 1307 130.6 261.2 1306 1973-07-30 2024-10-11 00:21:46.000 1973-07-30 2024-10-11 00:21:46 +1307 1307 1308 130.7 261.40000000000003 1307 1973-07-31 2024-10-11 00:21:47.000 1973-07-31 2024-10-11 00:21:47 +1308 1308 1309 130.8 261.6 1308 1973-08-01 2024-10-11 00:21:48.000 1973-08-01 2024-10-11 00:21:48 +1309 1309 1310 130.9 261.8 1309 1973-08-02 2024-10-11 00:21:49.000 1973-08-02 2024-10-11 00:21:49 +1310 1310 1311 131 262 1310 1973-08-03 2024-10-11 00:21:50.000 1973-08-03 2024-10-11 00:21:50 +1311 1311 1312 131.1 262.2 1311 1973-08-04 2024-10-11 00:21:51.000 1973-08-04 2024-10-11 00:21:51 +1312 1312 1313 131.2 262.40000000000003 1312 1973-08-05 2024-10-11 00:21:52.000 1973-08-05 2024-10-11 00:21:52 +1313 1313 1314 131.3 262.6 1313 1973-08-06 2024-10-11 00:21:53.000 1973-08-06 2024-10-11 00:21:53 +1314 1314 1315 131.4 262.8 1314 1973-08-07 2024-10-11 00:21:54.000 1973-08-07 2024-10-11 00:21:54 +1315 1315 1316 131.5 263 1315 1973-08-08 2024-10-11 00:21:55.000 1973-08-08 2024-10-11 00:21:55 +1316 1316 1317 131.6 263.2 1316 1973-08-09 2024-10-11 00:21:56.000 1973-08-09 2024-10-11 00:21:56 +1317 1317 1318 131.7 263.40000000000003 1317 1973-08-10 2024-10-11 00:21:57.000 1973-08-10 2024-10-11 00:21:57 +1318 1318 1319 131.8 263.6 1318 1973-08-11 2024-10-11 00:21:58.000 1973-08-11 2024-10-11 00:21:58 +1319 1319 1320 131.9 263.8 1319 1973-08-12 2024-10-11 00:21:59.000 1973-08-12 2024-10-11 00:21:59 +1320 1320 1321 132 264 1320 1973-08-13 2024-10-11 00:22:00.000 1973-08-13 2024-10-11 00:22:00 +1321 1321 1322 132.1 264.2 1321 1973-08-14 2024-10-11 00:22:01.000 1973-08-14 2024-10-11 00:22:01 +1322 1322 1323 132.2 264.40000000000003 1322 1973-08-15 2024-10-11 00:22:02.000 1973-08-15 2024-10-11 00:22:02 +1323 1323 1324 132.3 264.6 1323 1973-08-16 2024-10-11 00:22:03.000 1973-08-16 2024-10-11 00:22:03 +1324 1324 1325 132.4 264.8 1324 1973-08-17 2024-10-11 00:22:04.000 1973-08-17 2024-10-11 00:22:04 +1325 1325 1326 132.5 265 1325 1973-08-18 2024-10-11 00:22:05.000 1973-08-18 2024-10-11 00:22:05 +1326 1326 1327 132.6 265.2 1326 1973-08-19 2024-10-11 00:22:06.000 1973-08-19 2024-10-11 00:22:06 +1327 1327 1328 132.7 265.40000000000003 1327 1973-08-20 2024-10-11 00:22:07.000 1973-08-20 2024-10-11 00:22:07 +1328 1328 1329 132.8 265.6 1328 1973-08-21 2024-10-11 00:22:08.000 1973-08-21 2024-10-11 00:22:08 +1329 1329 1330 132.9 265.8 1329 1973-08-22 2024-10-11 00:22:09.000 1973-08-22 2024-10-11 00:22:09 +1330 1330 1331 133 266 1330 1973-08-23 2024-10-11 00:22:10.000 1973-08-23 2024-10-11 00:22:10 +1331 1331 1332 133.1 266.2 1331 1973-08-24 2024-10-11 00:22:11.000 1973-08-24 2024-10-11 00:22:11 +1332 1332 1333 133.2 266.40000000000003 1332 1973-08-25 2024-10-11 00:22:12.000 1973-08-25 2024-10-11 00:22:12 +1333 1333 1334 133.3 266.6 1333 1973-08-26 2024-10-11 00:22:13.000 1973-08-26 2024-10-11 00:22:13 +1334 1334 1335 133.4 266.8 1334 1973-08-27 2024-10-11 00:22:14.000 1973-08-27 2024-10-11 00:22:14 +1335 1335 1336 133.5 267 1335 1973-08-28 2024-10-11 00:22:15.000 1973-08-28 2024-10-11 00:22:15 +1336 1336 1337 133.6 267.2 1336 1973-08-29 2024-10-11 00:22:16.000 1973-08-29 2024-10-11 00:22:16 +1337 1337 1338 133.7 267.40000000000003 1337 1973-08-30 2024-10-11 00:22:17.000 1973-08-30 2024-10-11 00:22:17 +1338 1338 1339 133.8 267.6 1338 1973-08-31 2024-10-11 00:22:18.000 1973-08-31 2024-10-11 00:22:18 +1339 1339 1340 133.9 267.8 1339 1973-09-01 2024-10-11 00:22:19.000 1973-09-01 2024-10-11 00:22:19 +1340 1340 1341 134 268 1340 1973-09-02 2024-10-11 00:22:20.000 1973-09-02 2024-10-11 00:22:20 +1341 1341 1342 134.1 268.2 1341 1973-09-03 2024-10-11 00:22:21.000 1973-09-03 2024-10-11 00:22:21 +1342 1342 1343 134.2 268.40000000000003 1342 1973-09-04 2024-10-11 00:22:22.000 1973-09-04 2024-10-11 00:22:22 +1343 1343 1344 134.3 268.6 1343 1973-09-05 2024-10-11 00:22:23.000 1973-09-05 2024-10-11 00:22:23 +1344 1344 1345 134.4 268.8 1344 1973-09-06 2024-10-11 00:22:24.000 1973-09-06 2024-10-11 00:22:24 +1345 1345 1346 134.5 269 1345 1973-09-07 2024-10-11 00:22:25.000 1973-09-07 2024-10-11 00:22:25 +1346 1346 1347 134.6 269.2 1346 1973-09-08 2024-10-11 00:22:26.000 1973-09-08 2024-10-11 00:22:26 +1347 1347 1348 134.7 269.40000000000003 1347 1973-09-09 2024-10-11 00:22:27.000 1973-09-09 2024-10-11 00:22:27 +1348 1348 1349 134.8 269.6 1348 1973-09-10 2024-10-11 00:22:28.000 1973-09-10 2024-10-11 00:22:28 +1349 1349 1350 134.9 269.8 1349 1973-09-11 2024-10-11 00:22:29.000 1973-09-11 2024-10-11 00:22:29 +1350 1350 1351 135 270 1350 1973-09-12 2024-10-11 00:22:30.000 1973-09-12 2024-10-11 00:22:30 +1351 1351 1352 135.1 270.2 1351 1973-09-13 2024-10-11 00:22:31.000 1973-09-13 2024-10-11 00:22:31 +1352 1352 1353 135.2 270.40000000000003 1352 1973-09-14 2024-10-11 00:22:32.000 1973-09-14 2024-10-11 00:22:32 +1353 1353 1354 135.3 270.6 1353 1973-09-15 2024-10-11 00:22:33.000 1973-09-15 2024-10-11 00:22:33 +1354 1354 1355 135.4 270.8 1354 1973-09-16 2024-10-11 00:22:34.000 1973-09-16 2024-10-11 00:22:34 +1355 1355 1356 135.5 271 1355 1973-09-17 2024-10-11 00:22:35.000 1973-09-17 2024-10-11 00:22:35 +1356 1356 1357 135.6 271.2 1356 1973-09-18 2024-10-11 00:22:36.000 1973-09-18 2024-10-11 00:22:36 +1357 1357 1358 135.7 271.40000000000003 1357 1973-09-19 2024-10-11 00:22:37.000 1973-09-19 2024-10-11 00:22:37 +1358 1358 1359 135.8 271.6 1358 1973-09-20 2024-10-11 00:22:38.000 1973-09-20 2024-10-11 00:22:38 +1359 1359 1360 135.9 271.8 1359 1973-09-21 2024-10-11 00:22:39.000 1973-09-21 2024-10-11 00:22:39 +1360 1360 1361 136 272 1360 1973-09-22 2024-10-11 00:22:40.000 1973-09-22 2024-10-11 00:22:40 +1361 1361 1362 136.1 272.2 1361 1973-09-23 2024-10-11 00:22:41.000 1973-09-23 2024-10-11 00:22:41 +1362 1362 1363 136.2 272.40000000000003 1362 1973-09-24 2024-10-11 00:22:42.000 1973-09-24 2024-10-11 00:22:42 +1363 1363 1364 136.3 272.6 1363 1973-09-25 2024-10-11 00:22:43.000 1973-09-25 2024-10-11 00:22:43 +1364 1364 1365 136.4 272.8 1364 1973-09-26 2024-10-11 00:22:44.000 1973-09-26 2024-10-11 00:22:44 +1365 1365 1366 136.5 273 1365 1973-09-27 2024-10-11 00:22:45.000 1973-09-27 2024-10-11 00:22:45 +1366 1366 1367 136.6 273.2 1366 1973-09-28 2024-10-11 00:22:46.000 1973-09-28 2024-10-11 00:22:46 +1367 1367 1368 136.7 273.40000000000003 1367 1973-09-29 2024-10-11 00:22:47.000 1973-09-29 2024-10-11 00:22:47 +1368 1368 1369 136.8 273.6 1368 1973-09-30 2024-10-11 00:22:48.000 1973-09-30 2024-10-11 00:22:48 +1369 1369 1370 136.9 273.8 1369 1973-10-01 2024-10-11 00:22:49.000 1973-10-01 2024-10-11 00:22:49 +1370 1370 1371 137 274 1370 1973-10-02 2024-10-11 00:22:50.000 1973-10-02 2024-10-11 00:22:50 +1371 1371 1372 137.1 274.2 1371 1973-10-03 2024-10-11 00:22:51.000 1973-10-03 2024-10-11 00:22:51 +1372 1372 1373 137.2 274.40000000000003 1372 1973-10-04 2024-10-11 00:22:52.000 1973-10-04 2024-10-11 00:22:52 +1373 1373 1374 137.3 274.6 1373 1973-10-05 2024-10-11 00:22:53.000 1973-10-05 2024-10-11 00:22:53 +1374 1374 1375 137.4 274.8 1374 1973-10-06 2024-10-11 00:22:54.000 1973-10-06 2024-10-11 00:22:54 +1375 1375 1376 137.5 275 1375 1973-10-07 2024-10-11 00:22:55.000 1973-10-07 2024-10-11 00:22:55 +1376 1376 1377 137.6 275.2 1376 1973-10-08 2024-10-11 00:22:56.000 1973-10-08 2024-10-11 00:22:56 +1377 1377 1378 137.7 275.40000000000003 1377 1973-10-09 2024-10-11 00:22:57.000 1973-10-09 2024-10-11 00:22:57 +1378 1378 1379 137.8 275.6 1378 1973-10-10 2024-10-11 00:22:58.000 1973-10-10 2024-10-11 00:22:58 +1379 1379 1380 137.9 275.8 1379 1973-10-11 2024-10-11 00:22:59.000 1973-10-11 2024-10-11 00:22:59 +1380 1380 1381 138 276 1380 1973-10-12 2024-10-11 00:23:00.000 1973-10-12 2024-10-11 00:23:00 +1381 1381 1382 138.1 276.2 1381 1973-10-13 2024-10-11 00:23:01.000 1973-10-13 2024-10-11 00:23:01 +1382 1382 1383 138.2 276.40000000000003 1382 1973-10-14 2024-10-11 00:23:02.000 1973-10-14 2024-10-11 00:23:02 +1383 1383 1384 138.3 276.6 1383 1973-10-15 2024-10-11 00:23:03.000 1973-10-15 2024-10-11 00:23:03 +1384 1384 1385 138.4 276.8 1384 1973-10-16 2024-10-11 00:23:04.000 1973-10-16 2024-10-11 00:23:04 +1385 1385 1386 138.5 277 1385 1973-10-17 2024-10-11 00:23:05.000 1973-10-17 2024-10-11 00:23:05 +1386 1386 1387 138.6 277.2 1386 1973-10-18 2024-10-11 00:23:06.000 1973-10-18 2024-10-11 00:23:06 +1387 1387 1388 138.7 277.40000000000003 1387 1973-10-19 2024-10-11 00:23:07.000 1973-10-19 2024-10-11 00:23:07 +1388 1388 1389 138.8 277.6 1388 1973-10-20 2024-10-11 00:23:08.000 1973-10-20 2024-10-11 00:23:08 +1389 1389 1390 138.9 277.8 1389 1973-10-21 2024-10-11 00:23:09.000 1973-10-21 2024-10-11 00:23:09 +1390 1390 1391 139 278 1390 1973-10-22 2024-10-11 00:23:10.000 1973-10-22 2024-10-11 00:23:10 +1391 1391 1392 139.1 278.2 1391 1973-10-23 2024-10-11 00:23:11.000 1973-10-23 2024-10-11 00:23:11 +1392 1392 1393 139.2 278.40000000000003 1392 1973-10-24 2024-10-11 00:23:12.000 1973-10-24 2024-10-11 00:23:12 +1393 1393 1394 139.3 278.6 1393 1973-10-25 2024-10-11 00:23:13.000 1973-10-25 2024-10-11 00:23:13 +1394 1394 1395 139.4 278.8 1394 1973-10-26 2024-10-11 00:23:14.000 1973-10-26 2024-10-11 00:23:14 +1395 1395 1396 139.5 279 1395 1973-10-27 2024-10-11 00:23:15.000 1973-10-27 2024-10-11 00:23:15 +1396 1396 1397 139.6 279.2 1396 1973-10-28 2024-10-11 00:23:16.000 1973-10-28 2024-10-11 00:23:16 +1397 1397 1398 139.7 279.40000000000003 1397 1973-10-29 2024-10-11 00:23:17.000 1973-10-29 2024-10-11 00:23:17 +1398 1398 1399 139.8 279.6 1398 1973-10-30 2024-10-11 00:23:18.000 1973-10-30 2024-10-11 00:23:18 +1399 1399 1400 139.9 279.8 1399 1973-10-31 2024-10-11 00:23:19.000 1973-10-31 2024-10-11 00:23:19 +1400 1400 1401 140 280 1400 1973-11-01 2024-10-11 00:23:20.000 1973-11-01 2024-10-11 00:23:20 +1401 1401 1402 140.1 280.2 1401 1973-11-02 2024-10-11 00:23:21.000 1973-11-02 2024-10-11 00:23:21 +1402 1402 1403 140.2 280.40000000000003 1402 1973-11-03 2024-10-11 00:23:22.000 1973-11-03 2024-10-11 00:23:22 +1403 1403 1404 140.3 280.6 1403 1973-11-04 2024-10-11 00:23:23.000 1973-11-04 2024-10-11 00:23:23 +1404 1404 1405 140.4 280.8 1404 1973-11-05 2024-10-11 00:23:24.000 1973-11-05 2024-10-11 00:23:24 +1405 1405 1406 140.5 281 1405 1973-11-06 2024-10-11 00:23:25.000 1973-11-06 2024-10-11 00:23:25 +1406 1406 1407 140.6 281.2 1406 1973-11-07 2024-10-11 00:23:26.000 1973-11-07 2024-10-11 00:23:26 +1407 1407 1408 140.7 281.40000000000003 1407 1973-11-08 2024-10-11 00:23:27.000 1973-11-08 2024-10-11 00:23:27 +1408 1408 1409 140.8 281.6 1408 1973-11-09 2024-10-11 00:23:28.000 1973-11-09 2024-10-11 00:23:28 +1409 1409 1410 140.9 281.8 1409 1973-11-10 2024-10-11 00:23:29.000 1973-11-10 2024-10-11 00:23:29 +1410 1410 1411 141 282 1410 1973-11-11 2024-10-11 00:23:30.000 1973-11-11 2024-10-11 00:23:30 +1411 1411 1412 141.1 282.2 1411 1973-11-12 2024-10-11 00:23:31.000 1973-11-12 2024-10-11 00:23:31 +1412 1412 1413 141.2 282.40000000000003 1412 1973-11-13 2024-10-11 00:23:32.000 1973-11-13 2024-10-11 00:23:32 +1413 1413 1414 141.3 282.6 1413 1973-11-14 2024-10-11 00:23:33.000 1973-11-14 2024-10-11 00:23:33 +1414 1414 1415 141.4 282.8 1414 1973-11-15 2024-10-11 00:23:34.000 1973-11-15 2024-10-11 00:23:34 +1415 1415 1416 141.5 283 1415 1973-11-16 2024-10-11 00:23:35.000 1973-11-16 2024-10-11 00:23:35 +1416 1416 1417 141.6 283.2 1416 1973-11-17 2024-10-11 00:23:36.000 1973-11-17 2024-10-11 00:23:36 +1417 1417 1418 141.7 283.40000000000003 1417 1973-11-18 2024-10-11 00:23:37.000 1973-11-18 2024-10-11 00:23:37 +1418 1418 1419 141.8 283.6 1418 1973-11-19 2024-10-11 00:23:38.000 1973-11-19 2024-10-11 00:23:38 +1419 1419 1420 141.9 283.8 1419 1973-11-20 2024-10-11 00:23:39.000 1973-11-20 2024-10-11 00:23:39 +1420 1420 1421 142 284 1420 1973-11-21 2024-10-11 00:23:40.000 1973-11-21 2024-10-11 00:23:40 +1421 1421 1422 142.1 284.2 1421 1973-11-22 2024-10-11 00:23:41.000 1973-11-22 2024-10-11 00:23:41 +1422 1422 1423 142.2 284.40000000000003 1422 1973-11-23 2024-10-11 00:23:42.000 1973-11-23 2024-10-11 00:23:42 +1423 1423 1424 142.3 284.6 1423 1973-11-24 2024-10-11 00:23:43.000 1973-11-24 2024-10-11 00:23:43 +1424 1424 1425 142.4 284.8 1424 1973-11-25 2024-10-11 00:23:44.000 1973-11-25 2024-10-11 00:23:44 +1425 1425 1426 142.5 285 1425 1973-11-26 2024-10-11 00:23:45.000 1973-11-26 2024-10-11 00:23:45 +1426 1426 1427 142.6 285.2 1426 1973-11-27 2024-10-11 00:23:46.000 1973-11-27 2024-10-11 00:23:46 +1427 1427 1428 142.7 285.40000000000003 1427 1973-11-28 2024-10-11 00:23:47.000 1973-11-28 2024-10-11 00:23:47 +1428 1428 1429 142.8 285.6 1428 1973-11-29 2024-10-11 00:23:48.000 1973-11-29 2024-10-11 00:23:48 +1429 1429 1430 142.9 285.8 1429 1973-11-30 2024-10-11 00:23:49.000 1973-11-30 2024-10-11 00:23:49 +1430 1430 1431 143 286 1430 1973-12-01 2024-10-11 00:23:50.000 1973-12-01 2024-10-11 00:23:50 +1431 1431 1432 143.1 286.2 1431 1973-12-02 2024-10-11 00:23:51.000 1973-12-02 2024-10-11 00:23:51 +1432 1432 1433 143.2 286.40000000000003 1432 1973-12-03 2024-10-11 00:23:52.000 1973-12-03 2024-10-11 00:23:52 +1433 1433 1434 143.3 286.6 1433 1973-12-04 2024-10-11 00:23:53.000 1973-12-04 2024-10-11 00:23:53 +1434 1434 1435 143.4 286.8 1434 1973-12-05 2024-10-11 00:23:54.000 1973-12-05 2024-10-11 00:23:54 +1435 1435 1436 143.5 287 1435 1973-12-06 2024-10-11 00:23:55.000 1973-12-06 2024-10-11 00:23:55 +1436 1436 1437 143.6 287.2 1436 1973-12-07 2024-10-11 00:23:56.000 1973-12-07 2024-10-11 00:23:56 +1437 1437 1438 143.7 287.40000000000003 1437 1973-12-08 2024-10-11 00:23:57.000 1973-12-08 2024-10-11 00:23:57 +1438 1438 1439 143.8 287.6 1438 1973-12-09 2024-10-11 00:23:58.000 1973-12-09 2024-10-11 00:23:58 +1439 1439 1440 143.9 287.8 1439 1973-12-10 2024-10-11 00:23:59.000 1973-12-10 2024-10-11 00:23:59 +1440 1440 1441 144 288 1440 1973-12-11 2024-10-11 00:24:00.000 1973-12-11 2024-10-11 00:24:00 +1441 1441 1442 144.1 288.2 1441 1973-12-12 2024-10-11 00:24:01.000 1973-12-12 2024-10-11 00:24:01 +1442 1442 1443 144.2 288.40000000000003 1442 1973-12-13 2024-10-11 00:24:02.000 1973-12-13 2024-10-11 00:24:02 +1443 1443 1444 144.3 288.6 1443 1973-12-14 2024-10-11 00:24:03.000 1973-12-14 2024-10-11 00:24:03 +1444 1444 1445 144.4 288.8 1444 1973-12-15 2024-10-11 00:24:04.000 1973-12-15 2024-10-11 00:24:04 +1445 1445 1446 144.5 289 1445 1973-12-16 2024-10-11 00:24:05.000 1973-12-16 2024-10-11 00:24:05 +1446 1446 1447 144.6 289.2 1446 1973-12-17 2024-10-11 00:24:06.000 1973-12-17 2024-10-11 00:24:06 +1447 1447 1448 144.7 289.40000000000003 1447 1973-12-18 2024-10-11 00:24:07.000 1973-12-18 2024-10-11 00:24:07 +1448 1448 1449 144.8 289.6 1448 1973-12-19 2024-10-11 00:24:08.000 1973-12-19 2024-10-11 00:24:08 +1449 1449 1450 144.9 289.8 1449 1973-12-20 2024-10-11 00:24:09.000 1973-12-20 2024-10-11 00:24:09 +1450 1450 1451 145 290 1450 1973-12-21 2024-10-11 00:24:10.000 1973-12-21 2024-10-11 00:24:10 +1451 1451 1452 145.1 290.2 1451 1973-12-22 2024-10-11 00:24:11.000 1973-12-22 2024-10-11 00:24:11 +1452 1452 1453 145.2 290.40000000000003 1452 1973-12-23 2024-10-11 00:24:12.000 1973-12-23 2024-10-11 00:24:12 +1453 1453 1454 145.3 290.6 1453 1973-12-24 2024-10-11 00:24:13.000 1973-12-24 2024-10-11 00:24:13 +1454 1454 1455 145.4 290.8 1454 1973-12-25 2024-10-11 00:24:14.000 1973-12-25 2024-10-11 00:24:14 +1455 1455 1456 145.5 291 1455 1973-12-26 2024-10-11 00:24:15.000 1973-12-26 2024-10-11 00:24:15 +1456 1456 1457 145.6 291.2 1456 1973-12-27 2024-10-11 00:24:16.000 1973-12-27 2024-10-11 00:24:16 +1457 1457 1458 145.7 291.40000000000003 1457 1973-12-28 2024-10-11 00:24:17.000 1973-12-28 2024-10-11 00:24:17 +1458 1458 1459 145.8 291.6 1458 1973-12-29 2024-10-11 00:24:18.000 1973-12-29 2024-10-11 00:24:18 +1459 1459 1460 145.9 291.8 1459 1973-12-30 2024-10-11 00:24:19.000 1973-12-30 2024-10-11 00:24:19 +1460 1460 1461 146 292 1460 1973-12-31 2024-10-11 00:24:20.000 1973-12-31 2024-10-11 00:24:20 +1461 1461 1462 146.1 292.2 1461 1974-01-01 2024-10-11 00:24:21.000 1974-01-01 2024-10-11 00:24:21 +1462 1462 1463 146.2 292.40000000000003 1462 1974-01-02 2024-10-11 00:24:22.000 1974-01-02 2024-10-11 00:24:22 +1463 1463 1464 146.3 292.6 1463 1974-01-03 2024-10-11 00:24:23.000 1974-01-03 2024-10-11 00:24:23 +1464 1464 1465 146.4 292.8 1464 1974-01-04 2024-10-11 00:24:24.000 1974-01-04 2024-10-11 00:24:24 +1465 1465 1466 146.5 293 1465 1974-01-05 2024-10-11 00:24:25.000 1974-01-05 2024-10-11 00:24:25 +1466 1466 1467 146.6 293.2 1466 1974-01-06 2024-10-11 00:24:26.000 1974-01-06 2024-10-11 00:24:26 +1467 1467 1468 146.7 293.40000000000003 1467 1974-01-07 2024-10-11 00:24:27.000 1974-01-07 2024-10-11 00:24:27 +1468 1468 1469 146.8 293.6 1468 1974-01-08 2024-10-11 00:24:28.000 1974-01-08 2024-10-11 00:24:28 +1469 1469 1470 146.9 293.8 1469 1974-01-09 2024-10-11 00:24:29.000 1974-01-09 2024-10-11 00:24:29 +1470 1470 1471 147 294 1470 1974-01-10 2024-10-11 00:24:30.000 1974-01-10 2024-10-11 00:24:30 +1471 1471 1472 147.1 294.2 1471 1974-01-11 2024-10-11 00:24:31.000 1974-01-11 2024-10-11 00:24:31 +1472 1472 1473 147.2 294.40000000000003 1472 1974-01-12 2024-10-11 00:24:32.000 1974-01-12 2024-10-11 00:24:32 +1473 1473 1474 147.3 294.6 1473 1974-01-13 2024-10-11 00:24:33.000 1974-01-13 2024-10-11 00:24:33 +1474 1474 1475 147.4 294.8 1474 1974-01-14 2024-10-11 00:24:34.000 1974-01-14 2024-10-11 00:24:34 +1475 1475 1476 147.5 295 1475 1974-01-15 2024-10-11 00:24:35.000 1974-01-15 2024-10-11 00:24:35 +1476 1476 1477 147.6 295.2 1476 1974-01-16 2024-10-11 00:24:36.000 1974-01-16 2024-10-11 00:24:36 +1477 1477 1478 147.7 295.40000000000003 1477 1974-01-17 2024-10-11 00:24:37.000 1974-01-17 2024-10-11 00:24:37 +1478 1478 1479 147.8 295.6 1478 1974-01-18 2024-10-11 00:24:38.000 1974-01-18 2024-10-11 00:24:38 +1479 1479 1480 147.9 295.8 1479 1974-01-19 2024-10-11 00:24:39.000 1974-01-19 2024-10-11 00:24:39 +1480 1480 1481 148 296 1480 1974-01-20 2024-10-11 00:24:40.000 1974-01-20 2024-10-11 00:24:40 +1481 1481 1482 148.1 296.2 1481 1974-01-21 2024-10-11 00:24:41.000 1974-01-21 2024-10-11 00:24:41 +1482 1482 1483 148.2 296.40000000000003 1482 1974-01-22 2024-10-11 00:24:42.000 1974-01-22 2024-10-11 00:24:42 +1483 1483 1484 148.3 296.6 1483 1974-01-23 2024-10-11 00:24:43.000 1974-01-23 2024-10-11 00:24:43 +1484 1484 1485 148.4 296.8 1484 1974-01-24 2024-10-11 00:24:44.000 1974-01-24 2024-10-11 00:24:44 +1485 1485 1486 148.5 297 1485 1974-01-25 2024-10-11 00:24:45.000 1974-01-25 2024-10-11 00:24:45 +1486 1486 1487 148.6 297.2 1486 1974-01-26 2024-10-11 00:24:46.000 1974-01-26 2024-10-11 00:24:46 +1487 1487 1488 148.7 297.40000000000003 1487 1974-01-27 2024-10-11 00:24:47.000 1974-01-27 2024-10-11 00:24:47 +1488 1488 1489 148.8 297.6 1488 1974-01-28 2024-10-11 00:24:48.000 1974-01-28 2024-10-11 00:24:48 +1489 1489 1490 148.9 297.8 1489 1974-01-29 2024-10-11 00:24:49.000 1974-01-29 2024-10-11 00:24:49 +1490 1490 1491 149 298 1490 1974-01-30 2024-10-11 00:24:50.000 1974-01-30 2024-10-11 00:24:50 +1491 1491 1492 149.1 298.2 1491 1974-01-31 2024-10-11 00:24:51.000 1974-01-31 2024-10-11 00:24:51 +1492 1492 1493 149.2 298.40000000000003 1492 1974-02-01 2024-10-11 00:24:52.000 1974-02-01 2024-10-11 00:24:52 +1493 1493 1494 149.3 298.6 1493 1974-02-02 2024-10-11 00:24:53.000 1974-02-02 2024-10-11 00:24:53 +1494 1494 1495 149.4 298.8 1494 1974-02-03 2024-10-11 00:24:54.000 1974-02-03 2024-10-11 00:24:54 +1495 1495 1496 149.5 299 1495 1974-02-04 2024-10-11 00:24:55.000 1974-02-04 2024-10-11 00:24:55 +1496 1496 1497 149.6 299.2 1496 1974-02-05 2024-10-11 00:24:56.000 1974-02-05 2024-10-11 00:24:56 +1497 1497 1498 149.7 299.40000000000003 1497 1974-02-06 2024-10-11 00:24:57.000 1974-02-06 2024-10-11 00:24:57 +1498 1498 1499 149.8 299.6 1498 1974-02-07 2024-10-11 00:24:58.000 1974-02-07 2024-10-11 00:24:58 +1499 1499 1500 149.9 299.8 1499 1974-02-08 2024-10-11 00:24:59.000 1974-02-08 2024-10-11 00:24:59 +1500 1500 1501 150 300 1500 1974-02-09 2024-10-11 00:25:00.000 1974-02-09 2024-10-11 00:25:00 +1501 1501 1502 150.1 300.2 1501 1974-02-10 2024-10-11 00:25:01.000 1974-02-10 2024-10-11 00:25:01 +1502 1502 1503 150.2 300.40000000000003 1502 1974-02-11 2024-10-11 00:25:02.000 1974-02-11 2024-10-11 00:25:02 +1503 1503 1504 150.3 300.6 1503 1974-02-12 2024-10-11 00:25:03.000 1974-02-12 2024-10-11 00:25:03 +1504 1504 1505 150.4 300.8 1504 1974-02-13 2024-10-11 00:25:04.000 1974-02-13 2024-10-11 00:25:04 +1505 1505 1506 150.5 301 1505 1974-02-14 2024-10-11 00:25:05.000 1974-02-14 2024-10-11 00:25:05 +1506 1506 1507 150.6 301.2 1506 1974-02-15 2024-10-11 00:25:06.000 1974-02-15 2024-10-11 00:25:06 +1507 1507 1508 150.7 301.40000000000003 1507 1974-02-16 2024-10-11 00:25:07.000 1974-02-16 2024-10-11 00:25:07 +1508 1508 1509 150.8 301.6 1508 1974-02-17 2024-10-11 00:25:08.000 1974-02-17 2024-10-11 00:25:08 +1509 1509 1510 150.9 301.8 1509 1974-02-18 2024-10-11 00:25:09.000 1974-02-18 2024-10-11 00:25:09 +1510 1510 1511 151 302 1510 1974-02-19 2024-10-11 00:25:10.000 1974-02-19 2024-10-11 00:25:10 +1511 1511 1512 151.1 302.2 1511 1974-02-20 2024-10-11 00:25:11.000 1974-02-20 2024-10-11 00:25:11 +1512 1512 1513 151.2 302.40000000000003 1512 1974-02-21 2024-10-11 00:25:12.000 1974-02-21 2024-10-11 00:25:12 +1513 1513 1514 151.3 302.6 1513 1974-02-22 2024-10-11 00:25:13.000 1974-02-22 2024-10-11 00:25:13 +1514 1514 1515 151.4 302.8 1514 1974-02-23 2024-10-11 00:25:14.000 1974-02-23 2024-10-11 00:25:14 +1515 1515 1516 151.5 303 1515 1974-02-24 2024-10-11 00:25:15.000 1974-02-24 2024-10-11 00:25:15 +1516 1516 1517 151.6 303.2 1516 1974-02-25 2024-10-11 00:25:16.000 1974-02-25 2024-10-11 00:25:16 +1517 1517 1518 151.7 303.40000000000003 1517 1974-02-26 2024-10-11 00:25:17.000 1974-02-26 2024-10-11 00:25:17 +1518 1518 1519 151.8 303.6 1518 1974-02-27 2024-10-11 00:25:18.000 1974-02-27 2024-10-11 00:25:18 +1519 1519 1520 151.9 303.8 1519 1974-02-28 2024-10-11 00:25:19.000 1974-02-28 2024-10-11 00:25:19 +1520 1520 1521 152 304 1520 1974-03-01 2024-10-11 00:25:20.000 1974-03-01 2024-10-11 00:25:20 +1521 1521 1522 152.1 304.2 1521 1974-03-02 2024-10-11 00:25:21.000 1974-03-02 2024-10-11 00:25:21 +1522 1522 1523 152.2 304.40000000000003 1522 1974-03-03 2024-10-11 00:25:22.000 1974-03-03 2024-10-11 00:25:22 +1523 1523 1524 152.3 304.6 1523 1974-03-04 2024-10-11 00:25:23.000 1974-03-04 2024-10-11 00:25:23 +1524 1524 1525 152.4 304.8 1524 1974-03-05 2024-10-11 00:25:24.000 1974-03-05 2024-10-11 00:25:24 +1525 1525 1526 152.5 305 1525 1974-03-06 2024-10-11 00:25:25.000 1974-03-06 2024-10-11 00:25:25 +1526 1526 1527 152.6 305.2 1526 1974-03-07 2024-10-11 00:25:26.000 1974-03-07 2024-10-11 00:25:26 +1527 1527 1528 152.7 305.40000000000003 1527 1974-03-08 2024-10-11 00:25:27.000 1974-03-08 2024-10-11 00:25:27 +1528 1528 1529 152.8 305.6 1528 1974-03-09 2024-10-11 00:25:28.000 1974-03-09 2024-10-11 00:25:28 +1529 1529 1530 152.9 305.8 1529 1974-03-10 2024-10-11 00:25:29.000 1974-03-10 2024-10-11 00:25:29 +1530 1530 1531 153 306 1530 1974-03-11 2024-10-11 00:25:30.000 1974-03-11 2024-10-11 00:25:30 +1531 1531 1532 153.1 306.2 1531 1974-03-12 2024-10-11 00:25:31.000 1974-03-12 2024-10-11 00:25:31 +1532 1532 1533 153.2 306.40000000000003 1532 1974-03-13 2024-10-11 00:25:32.000 1974-03-13 2024-10-11 00:25:32 +1533 1533 1534 153.3 306.6 1533 1974-03-14 2024-10-11 00:25:33.000 1974-03-14 2024-10-11 00:25:33 +1534 1534 1535 153.4 306.8 1534 1974-03-15 2024-10-11 00:25:34.000 1974-03-15 2024-10-11 00:25:34 +1535 1535 1536 153.5 307 1535 1974-03-16 2024-10-11 00:25:35.000 1974-03-16 2024-10-11 00:25:35 +1536 1536 1537 153.6 307.20000000000005 1536 1974-03-17 2024-10-11 00:25:36.000 1974-03-17 2024-10-11 00:25:36 +1537 1537 1538 153.7 307.40000000000003 1537 1974-03-18 2024-10-11 00:25:37.000 1974-03-18 2024-10-11 00:25:37 +1538 1538 1539 153.8 307.6 1538 1974-03-19 2024-10-11 00:25:38.000 1974-03-19 2024-10-11 00:25:38 +1539 1539 1540 153.9 307.8 1539 1974-03-20 2024-10-11 00:25:39.000 1974-03-20 2024-10-11 00:25:39 +1540 1540 1541 154 308 1540 1974-03-21 2024-10-11 00:25:40.000 1974-03-21 2024-10-11 00:25:40 +1541 1541 1542 154.1 308.20000000000005 1541 1974-03-22 2024-10-11 00:25:41.000 1974-03-22 2024-10-11 00:25:41 +1542 1542 1543 154.2 308.40000000000003 1542 1974-03-23 2024-10-11 00:25:42.000 1974-03-23 2024-10-11 00:25:42 +1543 1543 1544 154.3 308.6 1543 1974-03-24 2024-10-11 00:25:43.000 1974-03-24 2024-10-11 00:25:43 +1544 1544 1545 154.4 308.8 1544 1974-03-25 2024-10-11 00:25:44.000 1974-03-25 2024-10-11 00:25:44 +1545 1545 1546 154.5 309 1545 1974-03-26 2024-10-11 00:25:45.000 1974-03-26 2024-10-11 00:25:45 +1546 1546 1547 154.6 309.20000000000005 1546 1974-03-27 2024-10-11 00:25:46.000 1974-03-27 2024-10-11 00:25:46 +1547 1547 1548 154.7 309.40000000000003 1547 1974-03-28 2024-10-11 00:25:47.000 1974-03-28 2024-10-11 00:25:47 +1548 1548 1549 154.8 309.6 1548 1974-03-29 2024-10-11 00:25:48.000 1974-03-29 2024-10-11 00:25:48 +1549 1549 1550 154.9 309.8 1549 1974-03-30 2024-10-11 00:25:49.000 1974-03-30 2024-10-11 00:25:49 +1550 1550 1551 155 310 1550 1974-03-31 2024-10-11 00:25:50.000 1974-03-31 2024-10-11 00:25:50 +1551 1551 1552 155.1 310.20000000000005 1551 1974-04-01 2024-10-11 00:25:51.000 1974-04-01 2024-10-11 00:25:51 +1552 1552 1553 155.2 310.40000000000003 1552 1974-04-02 2024-10-11 00:25:52.000 1974-04-02 2024-10-11 00:25:52 +1553 1553 1554 155.3 310.6 1553 1974-04-03 2024-10-11 00:25:53.000 1974-04-03 2024-10-11 00:25:53 +1554 1554 1555 155.4 310.8 1554 1974-04-04 2024-10-11 00:25:54.000 1974-04-04 2024-10-11 00:25:54 +1555 1555 1556 155.5 311 1555 1974-04-05 2024-10-11 00:25:55.000 1974-04-05 2024-10-11 00:25:55 +1556 1556 1557 155.6 311.20000000000005 1556 1974-04-06 2024-10-11 00:25:56.000 1974-04-06 2024-10-11 00:25:56 +1557 1557 1558 155.7 311.40000000000003 1557 1974-04-07 2024-10-11 00:25:57.000 1974-04-07 2024-10-11 00:25:57 +1558 1558 1559 155.8 311.6 1558 1974-04-08 2024-10-11 00:25:58.000 1974-04-08 2024-10-11 00:25:58 +1559 1559 1560 155.9 311.8 1559 1974-04-09 2024-10-11 00:25:59.000 1974-04-09 2024-10-11 00:25:59 +1560 1560 1561 156 312 1560 1974-04-10 2024-10-11 00:26:00.000 1974-04-10 2024-10-11 00:26:00 +1561 1561 1562 156.1 312.20000000000005 1561 1974-04-11 2024-10-11 00:26:01.000 1974-04-11 2024-10-11 00:26:01 +1562 1562 1563 156.2 312.40000000000003 1562 1974-04-12 2024-10-11 00:26:02.000 1974-04-12 2024-10-11 00:26:02 +1563 1563 1564 156.3 312.6 1563 1974-04-13 2024-10-11 00:26:03.000 1974-04-13 2024-10-11 00:26:03 +1564 1564 1565 156.4 312.8 1564 1974-04-14 2024-10-11 00:26:04.000 1974-04-14 2024-10-11 00:26:04 +1565 1565 1566 156.5 313 1565 1974-04-15 2024-10-11 00:26:05.000 1974-04-15 2024-10-11 00:26:05 +1566 1566 1567 156.6 313.20000000000005 1566 1974-04-16 2024-10-11 00:26:06.000 1974-04-16 2024-10-11 00:26:06 +1567 1567 1568 156.7 313.40000000000003 1567 1974-04-17 2024-10-11 00:26:07.000 1974-04-17 2024-10-11 00:26:07 +1568 1568 1569 156.8 313.6 1568 1974-04-18 2024-10-11 00:26:08.000 1974-04-18 2024-10-11 00:26:08 +1569 1569 1570 156.9 313.8 1569 1974-04-19 2024-10-11 00:26:09.000 1974-04-19 2024-10-11 00:26:09 +1570 1570 1571 157 314 1570 1974-04-20 2024-10-11 00:26:10.000 1974-04-20 2024-10-11 00:26:10 +1571 1571 1572 157.1 314.20000000000005 1571 1974-04-21 2024-10-11 00:26:11.000 1974-04-21 2024-10-11 00:26:11 +1572 1572 1573 157.2 314.40000000000003 1572 1974-04-22 2024-10-11 00:26:12.000 1974-04-22 2024-10-11 00:26:12 +1573 1573 1574 157.3 314.6 1573 1974-04-23 2024-10-11 00:26:13.000 1974-04-23 2024-10-11 00:26:13 +1574 1574 1575 157.4 314.8 1574 1974-04-24 2024-10-11 00:26:14.000 1974-04-24 2024-10-11 00:26:14 +1575 1575 1576 157.5 315 1575 1974-04-25 2024-10-11 00:26:15.000 1974-04-25 2024-10-11 00:26:15 +1576 1576 1577 157.6 315.20000000000005 1576 1974-04-26 2024-10-11 00:26:16.000 1974-04-26 2024-10-11 00:26:16 +1577 1577 1578 157.7 315.40000000000003 1577 1974-04-27 2024-10-11 00:26:17.000 1974-04-27 2024-10-11 00:26:17 +1578 1578 1579 157.8 315.6 1578 1974-04-28 2024-10-11 00:26:18.000 1974-04-28 2024-10-11 00:26:18 +1579 1579 1580 157.9 315.8 1579 1974-04-29 2024-10-11 00:26:19.000 1974-04-29 2024-10-11 00:26:19 +1580 1580 1581 158 316 1580 1974-04-30 2024-10-11 00:26:20.000 1974-04-30 2024-10-11 00:26:20 +1581 1581 1582 158.1 316.20000000000005 1581 1974-05-01 2024-10-11 00:26:21.000 1974-05-01 2024-10-11 00:26:21 +1582 1582 1583 158.2 316.40000000000003 1582 1974-05-02 2024-10-11 00:26:22.000 1974-05-02 2024-10-11 00:26:22 +1583 1583 1584 158.3 316.6 1583 1974-05-03 2024-10-11 00:26:23.000 1974-05-03 2024-10-11 00:26:23 +1584 1584 1585 158.4 316.8 1584 1974-05-04 2024-10-11 00:26:24.000 1974-05-04 2024-10-11 00:26:24 +1585 1585 1586 158.5 317 1585 1974-05-05 2024-10-11 00:26:25.000 1974-05-05 2024-10-11 00:26:25 +1586 1586 1587 158.6 317.20000000000005 1586 1974-05-06 2024-10-11 00:26:26.000 1974-05-06 2024-10-11 00:26:26 +1587 1587 1588 158.7 317.40000000000003 1587 1974-05-07 2024-10-11 00:26:27.000 1974-05-07 2024-10-11 00:26:27 +1588 1588 1589 158.8 317.6 1588 1974-05-08 2024-10-11 00:26:28.000 1974-05-08 2024-10-11 00:26:28 +1589 1589 1590 158.9 317.8 1589 1974-05-09 2024-10-11 00:26:29.000 1974-05-09 2024-10-11 00:26:29 +1590 1590 1591 159 318 1590 1974-05-10 2024-10-11 00:26:30.000 1974-05-10 2024-10-11 00:26:30 +1591 1591 1592 159.1 318.20000000000005 1591 1974-05-11 2024-10-11 00:26:31.000 1974-05-11 2024-10-11 00:26:31 +1592 1592 1593 159.2 318.40000000000003 1592 1974-05-12 2024-10-11 00:26:32.000 1974-05-12 2024-10-11 00:26:32 +1593 1593 1594 159.3 318.6 1593 1974-05-13 2024-10-11 00:26:33.000 1974-05-13 2024-10-11 00:26:33 +1594 1594 1595 159.4 318.8 1594 1974-05-14 2024-10-11 00:26:34.000 1974-05-14 2024-10-11 00:26:34 +1595 1595 1596 159.5 319 1595 1974-05-15 2024-10-11 00:26:35.000 1974-05-15 2024-10-11 00:26:35 +1596 1596 1597 159.6 319.20000000000005 1596 1974-05-16 2024-10-11 00:26:36.000 1974-05-16 2024-10-11 00:26:36 +1597 1597 1598 159.7 319.40000000000003 1597 1974-05-17 2024-10-11 00:26:37.000 1974-05-17 2024-10-11 00:26:37 +1598 1598 1599 159.8 319.6 1598 1974-05-18 2024-10-11 00:26:38.000 1974-05-18 2024-10-11 00:26:38 +1599 1599 1600 159.9 319.8 1599 1974-05-19 2024-10-11 00:26:39.000 1974-05-19 2024-10-11 00:26:39 +1600 1600 1601 160 320 1600 1974-05-20 2024-10-11 00:26:40.000 1974-05-20 2024-10-11 00:26:40 +1601 1601 1602 160.1 320.20000000000005 1601 1974-05-21 2024-10-11 00:26:41.000 1974-05-21 2024-10-11 00:26:41 +1602 1602 1603 160.2 320.40000000000003 1602 1974-05-22 2024-10-11 00:26:42.000 1974-05-22 2024-10-11 00:26:42 +1603 1603 1604 160.3 320.6 1603 1974-05-23 2024-10-11 00:26:43.000 1974-05-23 2024-10-11 00:26:43 +1604 1604 1605 160.4 320.8 1604 1974-05-24 2024-10-11 00:26:44.000 1974-05-24 2024-10-11 00:26:44 +1605 1605 1606 160.5 321 1605 1974-05-25 2024-10-11 00:26:45.000 1974-05-25 2024-10-11 00:26:45 +1606 1606 1607 160.6 321.20000000000005 1606 1974-05-26 2024-10-11 00:26:46.000 1974-05-26 2024-10-11 00:26:46 +1607 1607 1608 160.7 321.40000000000003 1607 1974-05-27 2024-10-11 00:26:47.000 1974-05-27 2024-10-11 00:26:47 +1608 1608 1609 160.8 321.6 1608 1974-05-28 2024-10-11 00:26:48.000 1974-05-28 2024-10-11 00:26:48 +1609 1609 1610 160.9 321.8 1609 1974-05-29 2024-10-11 00:26:49.000 1974-05-29 2024-10-11 00:26:49 +1610 1610 1611 161 322 1610 1974-05-30 2024-10-11 00:26:50.000 1974-05-30 2024-10-11 00:26:50 +1611 1611 1612 161.1 322.20000000000005 1611 1974-05-31 2024-10-11 00:26:51.000 1974-05-31 2024-10-11 00:26:51 +1612 1612 1613 161.2 322.40000000000003 1612 1974-06-01 2024-10-11 00:26:52.000 1974-06-01 2024-10-11 00:26:52 +1613 1613 1614 161.3 322.6 1613 1974-06-02 2024-10-11 00:26:53.000 1974-06-02 2024-10-11 00:26:53 +1614 1614 1615 161.4 322.8 1614 1974-06-03 2024-10-11 00:26:54.000 1974-06-03 2024-10-11 00:26:54 +1615 1615 1616 161.5 323 1615 1974-06-04 2024-10-11 00:26:55.000 1974-06-04 2024-10-11 00:26:55 +1616 1616 1617 161.6 323.20000000000005 1616 1974-06-05 2024-10-11 00:26:56.000 1974-06-05 2024-10-11 00:26:56 +1617 1617 1618 161.7 323.40000000000003 1617 1974-06-06 2024-10-11 00:26:57.000 1974-06-06 2024-10-11 00:26:57 +1618 1618 1619 161.8 323.6 1618 1974-06-07 2024-10-11 00:26:58.000 1974-06-07 2024-10-11 00:26:58 +1619 1619 1620 161.9 323.8 1619 1974-06-08 2024-10-11 00:26:59.000 1974-06-08 2024-10-11 00:26:59 +1620 1620 1621 162 324 1620 1974-06-09 2024-10-11 00:27:00.000 1974-06-09 2024-10-11 00:27:00 +1621 1621 1622 162.1 324.20000000000005 1621 1974-06-10 2024-10-11 00:27:01.000 1974-06-10 2024-10-11 00:27:01 +1622 1622 1623 162.2 324.40000000000003 1622 1974-06-11 2024-10-11 00:27:02.000 1974-06-11 2024-10-11 00:27:02 +1623 1623 1624 162.3 324.6 1623 1974-06-12 2024-10-11 00:27:03.000 1974-06-12 2024-10-11 00:27:03 +1624 1624 1625 162.4 324.8 1624 1974-06-13 2024-10-11 00:27:04.000 1974-06-13 2024-10-11 00:27:04 +1625 1625 1626 162.5 325 1625 1974-06-14 2024-10-11 00:27:05.000 1974-06-14 2024-10-11 00:27:05 +1626 1626 1627 162.6 325.20000000000005 1626 1974-06-15 2024-10-11 00:27:06.000 1974-06-15 2024-10-11 00:27:06 +1627 1627 1628 162.7 325.40000000000003 1627 1974-06-16 2024-10-11 00:27:07.000 1974-06-16 2024-10-11 00:27:07 +1628 1628 1629 162.8 325.6 1628 1974-06-17 2024-10-11 00:27:08.000 1974-06-17 2024-10-11 00:27:08 +1629 1629 1630 162.9 325.8 1629 1974-06-18 2024-10-11 00:27:09.000 1974-06-18 2024-10-11 00:27:09 +1630 1630 1631 163 326 1630 1974-06-19 2024-10-11 00:27:10.000 1974-06-19 2024-10-11 00:27:10 +1631 1631 1632 163.1 326.20000000000005 1631 1974-06-20 2024-10-11 00:27:11.000 1974-06-20 2024-10-11 00:27:11 +1632 1632 1633 163.2 326.40000000000003 1632 1974-06-21 2024-10-11 00:27:12.000 1974-06-21 2024-10-11 00:27:12 +1633 1633 1634 163.3 326.6 1633 1974-06-22 2024-10-11 00:27:13.000 1974-06-22 2024-10-11 00:27:13 +1634 1634 1635 163.4 326.8 1634 1974-06-23 2024-10-11 00:27:14.000 1974-06-23 2024-10-11 00:27:14 +1635 1635 1636 163.5 327 1635 1974-06-24 2024-10-11 00:27:15.000 1974-06-24 2024-10-11 00:27:15 +1636 1636 1637 163.6 327.20000000000005 1636 1974-06-25 2024-10-11 00:27:16.000 1974-06-25 2024-10-11 00:27:16 +1637 1637 1638 163.7 327.40000000000003 1637 1974-06-26 2024-10-11 00:27:17.000 1974-06-26 2024-10-11 00:27:17 +1638 1638 1639 163.8 327.6 1638 1974-06-27 2024-10-11 00:27:18.000 1974-06-27 2024-10-11 00:27:18 +1639 1639 1640 163.9 327.8 1639 1974-06-28 2024-10-11 00:27:19.000 1974-06-28 2024-10-11 00:27:19 +1640 1640 1641 164 328 1640 1974-06-29 2024-10-11 00:27:20.000 1974-06-29 2024-10-11 00:27:20 +1641 1641 1642 164.1 328.20000000000005 1641 1974-06-30 2024-10-11 00:27:21.000 1974-06-30 2024-10-11 00:27:21 +1642 1642 1643 164.2 328.40000000000003 1642 1974-07-01 2024-10-11 00:27:22.000 1974-07-01 2024-10-11 00:27:22 +1643 1643 1644 164.3 328.6 1643 1974-07-02 2024-10-11 00:27:23.000 1974-07-02 2024-10-11 00:27:23 +1644 1644 1645 164.4 328.8 1644 1974-07-03 2024-10-11 00:27:24.000 1974-07-03 2024-10-11 00:27:24 +1645 1645 1646 164.5 329 1645 1974-07-04 2024-10-11 00:27:25.000 1974-07-04 2024-10-11 00:27:25 +1646 1646 1647 164.6 329.20000000000005 1646 1974-07-05 2024-10-11 00:27:26.000 1974-07-05 2024-10-11 00:27:26 +1647 1647 1648 164.7 329.40000000000003 1647 1974-07-06 2024-10-11 00:27:27.000 1974-07-06 2024-10-11 00:27:27 +1648 1648 1649 164.8 329.6 1648 1974-07-07 2024-10-11 00:27:28.000 1974-07-07 2024-10-11 00:27:28 +1649 1649 1650 164.9 329.8 1649 1974-07-08 2024-10-11 00:27:29.000 1974-07-08 2024-10-11 00:27:29 +1650 1650 1651 165 330 1650 1974-07-09 2024-10-11 00:27:30.000 1974-07-09 2024-10-11 00:27:30 +1651 1651 1652 165.1 330.20000000000005 1651 1974-07-10 2024-10-11 00:27:31.000 1974-07-10 2024-10-11 00:27:31 +1652 1652 1653 165.2 330.40000000000003 1652 1974-07-11 2024-10-11 00:27:32.000 1974-07-11 2024-10-11 00:27:32 +1653 1653 1654 165.3 330.6 1653 1974-07-12 2024-10-11 00:27:33.000 1974-07-12 2024-10-11 00:27:33 +1654 1654 1655 165.4 330.8 1654 1974-07-13 2024-10-11 00:27:34.000 1974-07-13 2024-10-11 00:27:34 +1655 1655 1656 165.5 331 1655 1974-07-14 2024-10-11 00:27:35.000 1974-07-14 2024-10-11 00:27:35 +1656 1656 1657 165.6 331.20000000000005 1656 1974-07-15 2024-10-11 00:27:36.000 1974-07-15 2024-10-11 00:27:36 +1657 1657 1658 165.7 331.40000000000003 1657 1974-07-16 2024-10-11 00:27:37.000 1974-07-16 2024-10-11 00:27:37 +1658 1658 1659 165.8 331.6 1658 1974-07-17 2024-10-11 00:27:38.000 1974-07-17 2024-10-11 00:27:38 +1659 1659 1660 165.9 331.8 1659 1974-07-18 2024-10-11 00:27:39.000 1974-07-18 2024-10-11 00:27:39 +1660 1660 1661 166 332 1660 1974-07-19 2024-10-11 00:27:40.000 1974-07-19 2024-10-11 00:27:40 +1661 1661 1662 166.1 332.20000000000005 1661 1974-07-20 2024-10-11 00:27:41.000 1974-07-20 2024-10-11 00:27:41 +1662 1662 1663 166.2 332.40000000000003 1662 1974-07-21 2024-10-11 00:27:42.000 1974-07-21 2024-10-11 00:27:42 +1663 1663 1664 166.3 332.6 1663 1974-07-22 2024-10-11 00:27:43.000 1974-07-22 2024-10-11 00:27:43 +1664 1664 1665 166.4 332.8 1664 1974-07-23 2024-10-11 00:27:44.000 1974-07-23 2024-10-11 00:27:44 +1665 1665 1666 166.5 333 1665 1974-07-24 2024-10-11 00:27:45.000 1974-07-24 2024-10-11 00:27:45 +1666 1666 1667 166.6 333.20000000000005 1666 1974-07-25 2024-10-11 00:27:46.000 1974-07-25 2024-10-11 00:27:46 +1667 1667 1668 166.7 333.40000000000003 1667 1974-07-26 2024-10-11 00:27:47.000 1974-07-26 2024-10-11 00:27:47 +1668 1668 1669 166.8 333.6 1668 1974-07-27 2024-10-11 00:27:48.000 1974-07-27 2024-10-11 00:27:48 +1669 1669 1670 166.9 333.8 1669 1974-07-28 2024-10-11 00:27:49.000 1974-07-28 2024-10-11 00:27:49 +1670 1670 1671 167 334 1670 1974-07-29 2024-10-11 00:27:50.000 1974-07-29 2024-10-11 00:27:50 +1671 1671 1672 167.1 334.20000000000005 1671 1974-07-30 2024-10-11 00:27:51.000 1974-07-30 2024-10-11 00:27:51 +1672 1672 1673 167.2 334.40000000000003 1672 1974-07-31 2024-10-11 00:27:52.000 1974-07-31 2024-10-11 00:27:52 +1673 1673 1674 167.3 334.6 1673 1974-08-01 2024-10-11 00:27:53.000 1974-08-01 2024-10-11 00:27:53 +1674 1674 1675 167.4 334.8 1674 1974-08-02 2024-10-11 00:27:54.000 1974-08-02 2024-10-11 00:27:54 +1675 1675 1676 167.5 335 1675 1974-08-03 2024-10-11 00:27:55.000 1974-08-03 2024-10-11 00:27:55 +1676 1676 1677 167.6 335.20000000000005 1676 1974-08-04 2024-10-11 00:27:56.000 1974-08-04 2024-10-11 00:27:56 +1677 1677 1678 167.7 335.40000000000003 1677 1974-08-05 2024-10-11 00:27:57.000 1974-08-05 2024-10-11 00:27:57 +1678 1678 1679 167.8 335.6 1678 1974-08-06 2024-10-11 00:27:58.000 1974-08-06 2024-10-11 00:27:58 +1679 1679 1680 167.9 335.8 1679 1974-08-07 2024-10-11 00:27:59.000 1974-08-07 2024-10-11 00:27:59 +1680 1680 1681 168 336 1680 1974-08-08 2024-10-11 00:28:00.000 1974-08-08 2024-10-11 00:28:00 +1681 1681 1682 168.1 336.20000000000005 1681 1974-08-09 2024-10-11 00:28:01.000 1974-08-09 2024-10-11 00:28:01 +1682 1682 1683 168.2 336.40000000000003 1682 1974-08-10 2024-10-11 00:28:02.000 1974-08-10 2024-10-11 00:28:02 +1683 1683 1684 168.3 336.6 1683 1974-08-11 2024-10-11 00:28:03.000 1974-08-11 2024-10-11 00:28:03 +1684 1684 1685 168.4 336.8 1684 1974-08-12 2024-10-11 00:28:04.000 1974-08-12 2024-10-11 00:28:04 +1685 1685 1686 168.5 337 1685 1974-08-13 2024-10-11 00:28:05.000 1974-08-13 2024-10-11 00:28:05 +1686 1686 1687 168.6 337.20000000000005 1686 1974-08-14 2024-10-11 00:28:06.000 1974-08-14 2024-10-11 00:28:06 +1687 1687 1688 168.7 337.40000000000003 1687 1974-08-15 2024-10-11 00:28:07.000 1974-08-15 2024-10-11 00:28:07 +1688 1688 1689 168.8 337.6 1688 1974-08-16 2024-10-11 00:28:08.000 1974-08-16 2024-10-11 00:28:08 +1689 1689 1690 168.9 337.8 1689 1974-08-17 2024-10-11 00:28:09.000 1974-08-17 2024-10-11 00:28:09 +1690 1690 1691 169 338 1690 1974-08-18 2024-10-11 00:28:10.000 1974-08-18 2024-10-11 00:28:10 +1691 1691 1692 169.1 338.20000000000005 1691 1974-08-19 2024-10-11 00:28:11.000 1974-08-19 2024-10-11 00:28:11 +1692 1692 1693 169.2 338.40000000000003 1692 1974-08-20 2024-10-11 00:28:12.000 1974-08-20 2024-10-11 00:28:12 +1693 1693 1694 169.3 338.6 1693 1974-08-21 2024-10-11 00:28:13.000 1974-08-21 2024-10-11 00:28:13 +1694 1694 1695 169.4 338.8 1694 1974-08-22 2024-10-11 00:28:14.000 1974-08-22 2024-10-11 00:28:14 +1695 1695 1696 169.5 339 1695 1974-08-23 2024-10-11 00:28:15.000 1974-08-23 2024-10-11 00:28:15 +1696 1696 1697 169.6 339.20000000000005 1696 1974-08-24 2024-10-11 00:28:16.000 1974-08-24 2024-10-11 00:28:16 +1697 1697 1698 169.7 339.40000000000003 1697 1974-08-25 2024-10-11 00:28:17.000 1974-08-25 2024-10-11 00:28:17 +1698 1698 1699 169.8 339.6 1698 1974-08-26 2024-10-11 00:28:18.000 1974-08-26 2024-10-11 00:28:18 +1699 1699 1700 169.9 339.8 1699 1974-08-27 2024-10-11 00:28:19.000 1974-08-27 2024-10-11 00:28:19 +1700 1700 1701 170 340 1700 1974-08-28 2024-10-11 00:28:20.000 1974-08-28 2024-10-11 00:28:20 +1701 1701 1702 170.1 340.20000000000005 1701 1974-08-29 2024-10-11 00:28:21.000 1974-08-29 2024-10-11 00:28:21 +1702 1702 1703 170.2 340.40000000000003 1702 1974-08-30 2024-10-11 00:28:22.000 1974-08-30 2024-10-11 00:28:22 +1703 1703 1704 170.3 340.6 1703 1974-08-31 2024-10-11 00:28:23.000 1974-08-31 2024-10-11 00:28:23 +1704 1704 1705 170.4 340.8 1704 1974-09-01 2024-10-11 00:28:24.000 1974-09-01 2024-10-11 00:28:24 +1705 1705 1706 170.5 341 1705 1974-09-02 2024-10-11 00:28:25.000 1974-09-02 2024-10-11 00:28:25 +1706 1706 1707 170.6 341.20000000000005 1706 1974-09-03 2024-10-11 00:28:26.000 1974-09-03 2024-10-11 00:28:26 +1707 1707 1708 170.7 341.40000000000003 1707 1974-09-04 2024-10-11 00:28:27.000 1974-09-04 2024-10-11 00:28:27 +1708 1708 1709 170.8 341.6 1708 1974-09-05 2024-10-11 00:28:28.000 1974-09-05 2024-10-11 00:28:28 +1709 1709 1710 170.9 341.8 1709 1974-09-06 2024-10-11 00:28:29.000 1974-09-06 2024-10-11 00:28:29 +1710 1710 1711 171 342 1710 1974-09-07 2024-10-11 00:28:30.000 1974-09-07 2024-10-11 00:28:30 +1711 1711 1712 171.1 342.20000000000005 1711 1974-09-08 2024-10-11 00:28:31.000 1974-09-08 2024-10-11 00:28:31 +1712 1712 1713 171.2 342.40000000000003 1712 1974-09-09 2024-10-11 00:28:32.000 1974-09-09 2024-10-11 00:28:32 +1713 1713 1714 171.3 342.6 1713 1974-09-10 2024-10-11 00:28:33.000 1974-09-10 2024-10-11 00:28:33 +1714 1714 1715 171.4 342.8 1714 1974-09-11 2024-10-11 00:28:34.000 1974-09-11 2024-10-11 00:28:34 +1715 1715 1716 171.5 343 1715 1974-09-12 2024-10-11 00:28:35.000 1974-09-12 2024-10-11 00:28:35 +1716 1716 1717 171.6 343.20000000000005 1716 1974-09-13 2024-10-11 00:28:36.000 1974-09-13 2024-10-11 00:28:36 +1717 1717 1718 171.7 343.40000000000003 1717 1974-09-14 2024-10-11 00:28:37.000 1974-09-14 2024-10-11 00:28:37 +1718 1718 1719 171.8 343.6 1718 1974-09-15 2024-10-11 00:28:38.000 1974-09-15 2024-10-11 00:28:38 +1719 1719 1720 171.9 343.8 1719 1974-09-16 2024-10-11 00:28:39.000 1974-09-16 2024-10-11 00:28:39 +1720 1720 1721 172 344 1720 1974-09-17 2024-10-11 00:28:40.000 1974-09-17 2024-10-11 00:28:40 +1721 1721 1722 172.1 344.20000000000005 1721 1974-09-18 2024-10-11 00:28:41.000 1974-09-18 2024-10-11 00:28:41 +1722 1722 1723 172.2 344.40000000000003 1722 1974-09-19 2024-10-11 00:28:42.000 1974-09-19 2024-10-11 00:28:42 +1723 1723 1724 172.3 344.6 1723 1974-09-20 2024-10-11 00:28:43.000 1974-09-20 2024-10-11 00:28:43 +1724 1724 1725 172.4 344.8 1724 1974-09-21 2024-10-11 00:28:44.000 1974-09-21 2024-10-11 00:28:44 +1725 1725 1726 172.5 345 1725 1974-09-22 2024-10-11 00:28:45.000 1974-09-22 2024-10-11 00:28:45 +1726 1726 1727 172.6 345.20000000000005 1726 1974-09-23 2024-10-11 00:28:46.000 1974-09-23 2024-10-11 00:28:46 +1727 1727 1728 172.7 345.40000000000003 1727 1974-09-24 2024-10-11 00:28:47.000 1974-09-24 2024-10-11 00:28:47 +1728 1728 1729 172.8 345.6 1728 1974-09-25 2024-10-11 00:28:48.000 1974-09-25 2024-10-11 00:28:48 +1729 1729 1730 172.9 345.8 1729 1974-09-26 2024-10-11 00:28:49.000 1974-09-26 2024-10-11 00:28:49 +1730 1730 1731 173 346 1730 1974-09-27 2024-10-11 00:28:50.000 1974-09-27 2024-10-11 00:28:50 +1731 1731 1732 173.1 346.20000000000005 1731 1974-09-28 2024-10-11 00:28:51.000 1974-09-28 2024-10-11 00:28:51 +1732 1732 1733 173.2 346.40000000000003 1732 1974-09-29 2024-10-11 00:28:52.000 1974-09-29 2024-10-11 00:28:52 +1733 1733 1734 173.3 346.6 1733 1974-09-30 2024-10-11 00:28:53.000 1974-09-30 2024-10-11 00:28:53 +1734 1734 1735 173.4 346.8 1734 1974-10-01 2024-10-11 00:28:54.000 1974-10-01 2024-10-11 00:28:54 +1735 1735 1736 173.5 347 1735 1974-10-02 2024-10-11 00:28:55.000 1974-10-02 2024-10-11 00:28:55 +1736 1736 1737 173.6 347.20000000000005 1736 1974-10-03 2024-10-11 00:28:56.000 1974-10-03 2024-10-11 00:28:56 +1737 1737 1738 173.7 347.40000000000003 1737 1974-10-04 2024-10-11 00:28:57.000 1974-10-04 2024-10-11 00:28:57 +1738 1738 1739 173.8 347.6 1738 1974-10-05 2024-10-11 00:28:58.000 1974-10-05 2024-10-11 00:28:58 +1739 1739 1740 173.9 347.8 1739 1974-10-06 2024-10-11 00:28:59.000 1974-10-06 2024-10-11 00:28:59 +1740 1740 1741 174 348 1740 1974-10-07 2024-10-11 00:29:00.000 1974-10-07 2024-10-11 00:29:00 +1741 1741 1742 174.1 348.20000000000005 1741 1974-10-08 2024-10-11 00:29:01.000 1974-10-08 2024-10-11 00:29:01 +1742 1742 1743 174.2 348.40000000000003 1742 1974-10-09 2024-10-11 00:29:02.000 1974-10-09 2024-10-11 00:29:02 +1743 1743 1744 174.3 348.6 1743 1974-10-10 2024-10-11 00:29:03.000 1974-10-10 2024-10-11 00:29:03 +1744 1744 1745 174.4 348.8 1744 1974-10-11 2024-10-11 00:29:04.000 1974-10-11 2024-10-11 00:29:04 +1745 1745 1746 174.5 349 1745 1974-10-12 2024-10-11 00:29:05.000 1974-10-12 2024-10-11 00:29:05 +1746 1746 1747 174.6 349.20000000000005 1746 1974-10-13 2024-10-11 00:29:06.000 1974-10-13 2024-10-11 00:29:06 +1747 1747 1748 174.7 349.40000000000003 1747 1974-10-14 2024-10-11 00:29:07.000 1974-10-14 2024-10-11 00:29:07 +1748 1748 1749 174.8 349.6 1748 1974-10-15 2024-10-11 00:29:08.000 1974-10-15 2024-10-11 00:29:08 +1749 1749 1750 174.9 349.8 1749 1974-10-16 2024-10-11 00:29:09.000 1974-10-16 2024-10-11 00:29:09 +1750 1750 1751 175 350 1750 1974-10-17 2024-10-11 00:29:10.000 1974-10-17 2024-10-11 00:29:10 +1751 1751 1752 175.1 350.20000000000005 1751 1974-10-18 2024-10-11 00:29:11.000 1974-10-18 2024-10-11 00:29:11 +1752 1752 1753 175.2 350.40000000000003 1752 1974-10-19 2024-10-11 00:29:12.000 1974-10-19 2024-10-11 00:29:12 +1753 1753 1754 175.3 350.6 1753 1974-10-20 2024-10-11 00:29:13.000 1974-10-20 2024-10-11 00:29:13 +1754 1754 1755 175.4 350.8 1754 1974-10-21 2024-10-11 00:29:14.000 1974-10-21 2024-10-11 00:29:14 +1755 1755 1756 175.5 351 1755 1974-10-22 2024-10-11 00:29:15.000 1974-10-22 2024-10-11 00:29:15 +1756 1756 1757 175.6 351.20000000000005 1756 1974-10-23 2024-10-11 00:29:16.000 1974-10-23 2024-10-11 00:29:16 +1757 1757 1758 175.7 351.40000000000003 1757 1974-10-24 2024-10-11 00:29:17.000 1974-10-24 2024-10-11 00:29:17 +1758 1758 1759 175.8 351.6 1758 1974-10-25 2024-10-11 00:29:18.000 1974-10-25 2024-10-11 00:29:18 +1759 1759 1760 175.9 351.8 1759 1974-10-26 2024-10-11 00:29:19.000 1974-10-26 2024-10-11 00:29:19 +1760 1760 1761 176 352 1760 1974-10-27 2024-10-11 00:29:20.000 1974-10-27 2024-10-11 00:29:20 +1761 1761 1762 176.1 352.20000000000005 1761 1974-10-28 2024-10-11 00:29:21.000 1974-10-28 2024-10-11 00:29:21 +1762 1762 1763 176.2 352.40000000000003 1762 1974-10-29 2024-10-11 00:29:22.000 1974-10-29 2024-10-11 00:29:22 +1763 1763 1764 176.3 352.6 1763 1974-10-30 2024-10-11 00:29:23.000 1974-10-30 2024-10-11 00:29:23 +1764 1764 1765 176.4 352.8 1764 1974-10-31 2024-10-11 00:29:24.000 1974-10-31 2024-10-11 00:29:24 +1765 1765 1766 176.5 353 1765 1974-11-01 2024-10-11 00:29:25.000 1974-11-01 2024-10-11 00:29:25 +1766 1766 1767 176.6 353.20000000000005 1766 1974-11-02 2024-10-11 00:29:26.000 1974-11-02 2024-10-11 00:29:26 +1767 1767 1768 176.7 353.40000000000003 1767 1974-11-03 2024-10-11 00:29:27.000 1974-11-03 2024-10-11 00:29:27 +1768 1768 1769 176.8 353.6 1768 1974-11-04 2024-10-11 00:29:28.000 1974-11-04 2024-10-11 00:29:28 +1769 1769 1770 176.9 353.8 1769 1974-11-05 2024-10-11 00:29:29.000 1974-11-05 2024-10-11 00:29:29 +1770 1770 1771 177 354 1770 1974-11-06 2024-10-11 00:29:30.000 1974-11-06 2024-10-11 00:29:30 +1771 1771 1772 177.1 354.20000000000005 1771 1974-11-07 2024-10-11 00:29:31.000 1974-11-07 2024-10-11 00:29:31 +1772 1772 1773 177.2 354.40000000000003 1772 1974-11-08 2024-10-11 00:29:32.000 1974-11-08 2024-10-11 00:29:32 +1773 1773 1774 177.3 354.6 1773 1974-11-09 2024-10-11 00:29:33.000 1974-11-09 2024-10-11 00:29:33 +1774 1774 1775 177.4 354.8 1774 1974-11-10 2024-10-11 00:29:34.000 1974-11-10 2024-10-11 00:29:34 +1775 1775 1776 177.5 355 1775 1974-11-11 2024-10-11 00:29:35.000 1974-11-11 2024-10-11 00:29:35 +1776 1776 1777 177.6 355.20000000000005 1776 1974-11-12 2024-10-11 00:29:36.000 1974-11-12 2024-10-11 00:29:36 +1777 1777 1778 177.7 355.40000000000003 1777 1974-11-13 2024-10-11 00:29:37.000 1974-11-13 2024-10-11 00:29:37 +1778 1778 1779 177.8 355.6 1778 1974-11-14 2024-10-11 00:29:38.000 1974-11-14 2024-10-11 00:29:38 +1779 1779 1780 177.9 355.8 1779 1974-11-15 2024-10-11 00:29:39.000 1974-11-15 2024-10-11 00:29:39 +1780 1780 1781 178 356 1780 1974-11-16 2024-10-11 00:29:40.000 1974-11-16 2024-10-11 00:29:40 +1781 1781 1782 178.1 356.20000000000005 1781 1974-11-17 2024-10-11 00:29:41.000 1974-11-17 2024-10-11 00:29:41 +1782 1782 1783 178.2 356.40000000000003 1782 1974-11-18 2024-10-11 00:29:42.000 1974-11-18 2024-10-11 00:29:42 +1783 1783 1784 178.3 356.6 1783 1974-11-19 2024-10-11 00:29:43.000 1974-11-19 2024-10-11 00:29:43 +1784 1784 1785 178.4 356.8 1784 1974-11-20 2024-10-11 00:29:44.000 1974-11-20 2024-10-11 00:29:44 +1785 1785 1786 178.5 357 1785 1974-11-21 2024-10-11 00:29:45.000 1974-11-21 2024-10-11 00:29:45 +1786 1786 1787 178.6 357.20000000000005 1786 1974-11-22 2024-10-11 00:29:46.000 1974-11-22 2024-10-11 00:29:46 +1787 1787 1788 178.7 357.40000000000003 1787 1974-11-23 2024-10-11 00:29:47.000 1974-11-23 2024-10-11 00:29:47 +1788 1788 1789 178.8 357.6 1788 1974-11-24 2024-10-11 00:29:48.000 1974-11-24 2024-10-11 00:29:48 +1789 1789 1790 178.9 357.8 1789 1974-11-25 2024-10-11 00:29:49.000 1974-11-25 2024-10-11 00:29:49 +1790 1790 1791 179 358 1790 1974-11-26 2024-10-11 00:29:50.000 1974-11-26 2024-10-11 00:29:50 +1791 1791 1792 179.1 358.20000000000005 1791 1974-11-27 2024-10-11 00:29:51.000 1974-11-27 2024-10-11 00:29:51 +1792 1792 1793 179.2 358.40000000000003 1792 1974-11-28 2024-10-11 00:29:52.000 1974-11-28 2024-10-11 00:29:52 +1793 1793 1794 179.3 358.6 1793 1974-11-29 2024-10-11 00:29:53.000 1974-11-29 2024-10-11 00:29:53 +1794 1794 1795 179.4 358.8 1794 1974-11-30 2024-10-11 00:29:54.000 1974-11-30 2024-10-11 00:29:54 +1795 1795 1796 179.5 359 1795 1974-12-01 2024-10-11 00:29:55.000 1974-12-01 2024-10-11 00:29:55 +1796 1796 1797 179.6 359.20000000000005 1796 1974-12-02 2024-10-11 00:29:56.000 1974-12-02 2024-10-11 00:29:56 +1797 1797 1798 179.7 359.40000000000003 1797 1974-12-03 2024-10-11 00:29:57.000 1974-12-03 2024-10-11 00:29:57 +1798 1798 1799 179.8 359.6 1798 1974-12-04 2024-10-11 00:29:58.000 1974-12-04 2024-10-11 00:29:58 +1799 1799 1800 179.9 359.8 1799 1974-12-05 2024-10-11 00:29:59.000 1974-12-05 2024-10-11 00:29:59 +1800 1800 1801 180 360 1800 1974-12-06 2024-10-11 00:30:00.000 1974-12-06 2024-10-11 00:30:00 +1801 1801 1802 180.1 360.20000000000005 1801 1974-12-07 2024-10-11 00:30:01.000 1974-12-07 2024-10-11 00:30:01 +1802 1802 1803 180.2 360.40000000000003 1802 1974-12-08 2024-10-11 00:30:02.000 1974-12-08 2024-10-11 00:30:02 +1803 1803 1804 180.3 360.6 1803 1974-12-09 2024-10-11 00:30:03.000 1974-12-09 2024-10-11 00:30:03 +1804 1804 1805 180.4 360.8 1804 1974-12-10 2024-10-11 00:30:04.000 1974-12-10 2024-10-11 00:30:04 +1805 1805 1806 180.5 361 1805 1974-12-11 2024-10-11 00:30:05.000 1974-12-11 2024-10-11 00:30:05 +1806 1806 1807 180.6 361.20000000000005 1806 1974-12-12 2024-10-11 00:30:06.000 1974-12-12 2024-10-11 00:30:06 +1807 1807 1808 180.7 361.40000000000003 1807 1974-12-13 2024-10-11 00:30:07.000 1974-12-13 2024-10-11 00:30:07 +1808 1808 1809 180.8 361.6 1808 1974-12-14 2024-10-11 00:30:08.000 1974-12-14 2024-10-11 00:30:08 +1809 1809 1810 180.9 361.8 1809 1974-12-15 2024-10-11 00:30:09.000 1974-12-15 2024-10-11 00:30:09 +1810 1810 1811 181 362 1810 1974-12-16 2024-10-11 00:30:10.000 1974-12-16 2024-10-11 00:30:10 +1811 1811 1812 181.1 362.20000000000005 1811 1974-12-17 2024-10-11 00:30:11.000 1974-12-17 2024-10-11 00:30:11 +1812 1812 1813 181.2 362.40000000000003 1812 1974-12-18 2024-10-11 00:30:12.000 1974-12-18 2024-10-11 00:30:12 +1813 1813 1814 181.3 362.6 1813 1974-12-19 2024-10-11 00:30:13.000 1974-12-19 2024-10-11 00:30:13 +1814 1814 1815 181.4 362.8 1814 1974-12-20 2024-10-11 00:30:14.000 1974-12-20 2024-10-11 00:30:14 +1815 1815 1816 181.5 363 1815 1974-12-21 2024-10-11 00:30:15.000 1974-12-21 2024-10-11 00:30:15 +1816 1816 1817 181.6 363.20000000000005 1816 1974-12-22 2024-10-11 00:30:16.000 1974-12-22 2024-10-11 00:30:16 +1817 1817 1818 181.7 363.40000000000003 1817 1974-12-23 2024-10-11 00:30:17.000 1974-12-23 2024-10-11 00:30:17 +1818 1818 1819 181.8 363.6 1818 1974-12-24 2024-10-11 00:30:18.000 1974-12-24 2024-10-11 00:30:18 +1819 1819 1820 181.9 363.8 1819 1974-12-25 2024-10-11 00:30:19.000 1974-12-25 2024-10-11 00:30:19 +1820 1820 1821 182 364 1820 1974-12-26 2024-10-11 00:30:20.000 1974-12-26 2024-10-11 00:30:20 +1821 1821 1822 182.1 364.20000000000005 1821 1974-12-27 2024-10-11 00:30:21.000 1974-12-27 2024-10-11 00:30:21 +1822 1822 1823 182.2 364.40000000000003 1822 1974-12-28 2024-10-11 00:30:22.000 1974-12-28 2024-10-11 00:30:22 +1823 1823 1824 182.3 364.6 1823 1974-12-29 2024-10-11 00:30:23.000 1974-12-29 2024-10-11 00:30:23 +1824 1824 1825 182.4 364.8 1824 1974-12-30 2024-10-11 00:30:24.000 1974-12-30 2024-10-11 00:30:24 +1825 1825 1826 182.5 365 1825 1974-12-31 2024-10-11 00:30:25.000 1974-12-31 2024-10-11 00:30:25 +1826 1826 1827 182.6 365.20000000000005 1826 1975-01-01 2024-10-11 00:30:26.000 1975-01-01 2024-10-11 00:30:26 +1827 1827 1828 182.7 365.40000000000003 1827 1975-01-02 2024-10-11 00:30:27.000 1975-01-02 2024-10-11 00:30:27 +1828 1828 1829 182.8 365.6 1828 1975-01-03 2024-10-11 00:30:28.000 1975-01-03 2024-10-11 00:30:28 +1829 1829 1830 182.9 365.8 1829 1975-01-04 2024-10-11 00:30:29.000 1975-01-04 2024-10-11 00:30:29 +1830 1830 1831 183 366 1830 1975-01-05 2024-10-11 00:30:30.000 1975-01-05 2024-10-11 00:30:30 +1831 1831 1832 183.1 366.20000000000005 1831 1975-01-06 2024-10-11 00:30:31.000 1975-01-06 2024-10-11 00:30:31 +1832 1832 1833 183.2 366.40000000000003 1832 1975-01-07 2024-10-11 00:30:32.000 1975-01-07 2024-10-11 00:30:32 +1833 1833 1834 183.3 366.6 1833 1975-01-08 2024-10-11 00:30:33.000 1975-01-08 2024-10-11 00:30:33 +1834 1834 1835 183.4 366.8 1834 1975-01-09 2024-10-11 00:30:34.000 1975-01-09 2024-10-11 00:30:34 +1835 1835 1836 183.5 367 1835 1975-01-10 2024-10-11 00:30:35.000 1975-01-10 2024-10-11 00:30:35 +1836 1836 1837 183.6 367.20000000000005 1836 1975-01-11 2024-10-11 00:30:36.000 1975-01-11 2024-10-11 00:30:36 +1837 1837 1838 183.7 367.40000000000003 1837 1975-01-12 2024-10-11 00:30:37.000 1975-01-12 2024-10-11 00:30:37 +1838 1838 1839 183.8 367.6 1838 1975-01-13 2024-10-11 00:30:38.000 1975-01-13 2024-10-11 00:30:38 +1839 1839 1840 183.9 367.8 1839 1975-01-14 2024-10-11 00:30:39.000 1975-01-14 2024-10-11 00:30:39 +1840 1840 1841 184 368 1840 1975-01-15 2024-10-11 00:30:40.000 1975-01-15 2024-10-11 00:30:40 +1841 1841 1842 184.1 368.20000000000005 1841 1975-01-16 2024-10-11 00:30:41.000 1975-01-16 2024-10-11 00:30:41 +1842 1842 1843 184.2 368.40000000000003 1842 1975-01-17 2024-10-11 00:30:42.000 1975-01-17 2024-10-11 00:30:42 +1843 1843 1844 184.3 368.6 1843 1975-01-18 2024-10-11 00:30:43.000 1975-01-18 2024-10-11 00:30:43 +1844 1844 1845 184.4 368.8 1844 1975-01-19 2024-10-11 00:30:44.000 1975-01-19 2024-10-11 00:30:44 +1845 1845 1846 184.5 369 1845 1975-01-20 2024-10-11 00:30:45.000 1975-01-20 2024-10-11 00:30:45 +1846 1846 1847 184.6 369.20000000000005 1846 1975-01-21 2024-10-11 00:30:46.000 1975-01-21 2024-10-11 00:30:46 +1847 1847 1848 184.7 369.40000000000003 1847 1975-01-22 2024-10-11 00:30:47.000 1975-01-22 2024-10-11 00:30:47 +1848 1848 1849 184.8 369.6 1848 1975-01-23 2024-10-11 00:30:48.000 1975-01-23 2024-10-11 00:30:48 +1849 1849 1850 184.9 369.8 1849 1975-01-24 2024-10-11 00:30:49.000 1975-01-24 2024-10-11 00:30:49 +1850 1850 1851 185 370 1850 1975-01-25 2024-10-11 00:30:50.000 1975-01-25 2024-10-11 00:30:50 +1851 1851 1852 185.1 370.20000000000005 1851 1975-01-26 2024-10-11 00:30:51.000 1975-01-26 2024-10-11 00:30:51 +1852 1852 1853 185.2 370.40000000000003 1852 1975-01-27 2024-10-11 00:30:52.000 1975-01-27 2024-10-11 00:30:52 +1853 1853 1854 185.3 370.6 1853 1975-01-28 2024-10-11 00:30:53.000 1975-01-28 2024-10-11 00:30:53 +1854 1854 1855 185.4 370.8 1854 1975-01-29 2024-10-11 00:30:54.000 1975-01-29 2024-10-11 00:30:54 +1855 1855 1856 185.5 371 1855 1975-01-30 2024-10-11 00:30:55.000 1975-01-30 2024-10-11 00:30:55 +1856 1856 1857 185.6 371.20000000000005 1856 1975-01-31 2024-10-11 00:30:56.000 1975-01-31 2024-10-11 00:30:56 +1857 1857 1858 185.7 371.40000000000003 1857 1975-02-01 2024-10-11 00:30:57.000 1975-02-01 2024-10-11 00:30:57 +1858 1858 1859 185.8 371.6 1858 1975-02-02 2024-10-11 00:30:58.000 1975-02-02 2024-10-11 00:30:58 +1859 1859 1860 185.9 371.8 1859 1975-02-03 2024-10-11 00:30:59.000 1975-02-03 2024-10-11 00:30:59 +1860 1860 1861 186 372 1860 1975-02-04 2024-10-11 00:31:00.000 1975-02-04 2024-10-11 00:31:00 +1861 1861 1862 186.1 372.20000000000005 1861 1975-02-05 2024-10-11 00:31:01.000 1975-02-05 2024-10-11 00:31:01 +1862 1862 1863 186.2 372.40000000000003 1862 1975-02-06 2024-10-11 00:31:02.000 1975-02-06 2024-10-11 00:31:02 +1863 1863 1864 186.3 372.6 1863 1975-02-07 2024-10-11 00:31:03.000 1975-02-07 2024-10-11 00:31:03 +1864 1864 1865 186.4 372.8 1864 1975-02-08 2024-10-11 00:31:04.000 1975-02-08 2024-10-11 00:31:04 +1865 1865 1866 186.5 373 1865 1975-02-09 2024-10-11 00:31:05.000 1975-02-09 2024-10-11 00:31:05 +1866 1866 1867 186.6 373.20000000000005 1866 1975-02-10 2024-10-11 00:31:06.000 1975-02-10 2024-10-11 00:31:06 +1867 1867 1868 186.7 373.40000000000003 1867 1975-02-11 2024-10-11 00:31:07.000 1975-02-11 2024-10-11 00:31:07 +1868 1868 1869 186.8 373.6 1868 1975-02-12 2024-10-11 00:31:08.000 1975-02-12 2024-10-11 00:31:08 +1869 1869 1870 186.9 373.8 1869 1975-02-13 2024-10-11 00:31:09.000 1975-02-13 2024-10-11 00:31:09 +1870 1870 1871 187 374 1870 1975-02-14 2024-10-11 00:31:10.000 1975-02-14 2024-10-11 00:31:10 +1871 1871 1872 187.1 374.20000000000005 1871 1975-02-15 2024-10-11 00:31:11.000 1975-02-15 2024-10-11 00:31:11 +1872 1872 1873 187.2 374.40000000000003 1872 1975-02-16 2024-10-11 00:31:12.000 1975-02-16 2024-10-11 00:31:12 +1873 1873 1874 187.3 374.6 1873 1975-02-17 2024-10-11 00:31:13.000 1975-02-17 2024-10-11 00:31:13 +1874 1874 1875 187.4 374.8 1874 1975-02-18 2024-10-11 00:31:14.000 1975-02-18 2024-10-11 00:31:14 +1875 1875 1876 187.5 375 1875 1975-02-19 2024-10-11 00:31:15.000 1975-02-19 2024-10-11 00:31:15 +1876 1876 1877 187.6 375.20000000000005 1876 1975-02-20 2024-10-11 00:31:16.000 1975-02-20 2024-10-11 00:31:16 +1877 1877 1878 187.7 375.40000000000003 1877 1975-02-21 2024-10-11 00:31:17.000 1975-02-21 2024-10-11 00:31:17 +1878 1878 1879 187.8 375.6 1878 1975-02-22 2024-10-11 00:31:18.000 1975-02-22 2024-10-11 00:31:18 +1879 1879 1880 187.9 375.8 1879 1975-02-23 2024-10-11 00:31:19.000 1975-02-23 2024-10-11 00:31:19 +1880 1880 1881 188 376 1880 1975-02-24 2024-10-11 00:31:20.000 1975-02-24 2024-10-11 00:31:20 +1881 1881 1882 188.1 376.20000000000005 1881 1975-02-25 2024-10-11 00:31:21.000 1975-02-25 2024-10-11 00:31:21 +1882 1882 1883 188.2 376.40000000000003 1882 1975-02-26 2024-10-11 00:31:22.000 1975-02-26 2024-10-11 00:31:22 +1883 1883 1884 188.3 376.6 1883 1975-02-27 2024-10-11 00:31:23.000 1975-02-27 2024-10-11 00:31:23 +1884 1884 1885 188.4 376.8 1884 1975-02-28 2024-10-11 00:31:24.000 1975-02-28 2024-10-11 00:31:24 +1885 1885 1886 188.5 377 1885 1975-03-01 2024-10-11 00:31:25.000 1975-03-01 2024-10-11 00:31:25 +1886 1886 1887 188.6 377.20000000000005 1886 1975-03-02 2024-10-11 00:31:26.000 1975-03-02 2024-10-11 00:31:26 +1887 1887 1888 188.7 377.40000000000003 1887 1975-03-03 2024-10-11 00:31:27.000 1975-03-03 2024-10-11 00:31:27 +1888 1888 1889 188.8 377.6 1888 1975-03-04 2024-10-11 00:31:28.000 1975-03-04 2024-10-11 00:31:28 +1889 1889 1890 188.9 377.8 1889 1975-03-05 2024-10-11 00:31:29.000 1975-03-05 2024-10-11 00:31:29 +1890 1890 1891 189 378 1890 1975-03-06 2024-10-11 00:31:30.000 1975-03-06 2024-10-11 00:31:30 +1891 1891 1892 189.1 378.20000000000005 1891 1975-03-07 2024-10-11 00:31:31.000 1975-03-07 2024-10-11 00:31:31 +1892 1892 1893 189.2 378.40000000000003 1892 1975-03-08 2024-10-11 00:31:32.000 1975-03-08 2024-10-11 00:31:32 +1893 1893 1894 189.3 378.6 1893 1975-03-09 2024-10-11 00:31:33.000 1975-03-09 2024-10-11 00:31:33 +1894 1894 1895 189.4 378.8 1894 1975-03-10 2024-10-11 00:31:34.000 1975-03-10 2024-10-11 00:31:34 +1895 1895 1896 189.5 379 1895 1975-03-11 2024-10-11 00:31:35.000 1975-03-11 2024-10-11 00:31:35 +1896 1896 1897 189.6 379.20000000000005 1896 1975-03-12 2024-10-11 00:31:36.000 1975-03-12 2024-10-11 00:31:36 +1897 1897 1898 189.7 379.40000000000003 1897 1975-03-13 2024-10-11 00:31:37.000 1975-03-13 2024-10-11 00:31:37 +1898 1898 1899 189.8 379.6 1898 1975-03-14 2024-10-11 00:31:38.000 1975-03-14 2024-10-11 00:31:38 +1899 1899 1900 189.9 379.8 1899 1975-03-15 2024-10-11 00:31:39.000 1975-03-15 2024-10-11 00:31:39 +1900 1900 1901 190 380 1900 1975-03-16 2024-10-11 00:31:40.000 1975-03-16 2024-10-11 00:31:40 +1901 1901 1902 190.1 380.20000000000005 1901 1975-03-17 2024-10-11 00:31:41.000 1975-03-17 2024-10-11 00:31:41 +1902 1902 1903 190.2 380.40000000000003 1902 1975-03-18 2024-10-11 00:31:42.000 1975-03-18 2024-10-11 00:31:42 +1903 1903 1904 190.3 380.6 1903 1975-03-19 2024-10-11 00:31:43.000 1975-03-19 2024-10-11 00:31:43 +1904 1904 1905 190.4 380.8 1904 1975-03-20 2024-10-11 00:31:44.000 1975-03-20 2024-10-11 00:31:44 +1905 1905 1906 190.5 381 1905 1975-03-21 2024-10-11 00:31:45.000 1975-03-21 2024-10-11 00:31:45 +1906 1906 1907 190.6 381.20000000000005 1906 1975-03-22 2024-10-11 00:31:46.000 1975-03-22 2024-10-11 00:31:46 +1907 1907 1908 190.7 381.40000000000003 1907 1975-03-23 2024-10-11 00:31:47.000 1975-03-23 2024-10-11 00:31:47 +1908 1908 1909 190.8 381.6 1908 1975-03-24 2024-10-11 00:31:48.000 1975-03-24 2024-10-11 00:31:48 +1909 1909 1910 190.9 381.8 1909 1975-03-25 2024-10-11 00:31:49.000 1975-03-25 2024-10-11 00:31:49 +1910 1910 1911 191 382 1910 1975-03-26 2024-10-11 00:31:50.000 1975-03-26 2024-10-11 00:31:50 +1911 1911 1912 191.1 382.20000000000005 1911 1975-03-27 2024-10-11 00:31:51.000 1975-03-27 2024-10-11 00:31:51 +1912 1912 1913 191.2 382.40000000000003 1912 1975-03-28 2024-10-11 00:31:52.000 1975-03-28 2024-10-11 00:31:52 +1913 1913 1914 191.3 382.6 1913 1975-03-29 2024-10-11 00:31:53.000 1975-03-29 2024-10-11 00:31:53 +1914 1914 1915 191.4 382.8 1914 1975-03-30 2024-10-11 00:31:54.000 1975-03-30 2024-10-11 00:31:54 +1915 1915 1916 191.5 383 1915 1975-03-31 2024-10-11 00:31:55.000 1975-03-31 2024-10-11 00:31:55 +1916 1916 1917 191.6 383.20000000000005 1916 1975-04-01 2024-10-11 00:31:56.000 1975-04-01 2024-10-11 00:31:56 +1917 1917 1918 191.7 383.40000000000003 1917 1975-04-02 2024-10-11 00:31:57.000 1975-04-02 2024-10-11 00:31:57 +1918 1918 1919 191.8 383.6 1918 1975-04-03 2024-10-11 00:31:58.000 1975-04-03 2024-10-11 00:31:58 +1919 1919 1920 191.9 383.8 1919 1975-04-04 2024-10-11 00:31:59.000 1975-04-04 2024-10-11 00:31:59 +1920 1920 1921 192 384 1920 1975-04-05 2024-10-11 00:32:00.000 1975-04-05 2024-10-11 00:32:00 +1921 1921 1922 192.1 384.20000000000005 1921 1975-04-06 2024-10-11 00:32:01.000 1975-04-06 2024-10-11 00:32:01 +1922 1922 1923 192.2 384.40000000000003 1922 1975-04-07 2024-10-11 00:32:02.000 1975-04-07 2024-10-11 00:32:02 +1923 1923 1924 192.3 384.6 1923 1975-04-08 2024-10-11 00:32:03.000 1975-04-08 2024-10-11 00:32:03 +1924 1924 1925 192.4 384.8 1924 1975-04-09 2024-10-11 00:32:04.000 1975-04-09 2024-10-11 00:32:04 +1925 1925 1926 192.5 385 1925 1975-04-10 2024-10-11 00:32:05.000 1975-04-10 2024-10-11 00:32:05 +1926 1926 1927 192.6 385.20000000000005 1926 1975-04-11 2024-10-11 00:32:06.000 1975-04-11 2024-10-11 00:32:06 +1927 1927 1928 192.7 385.40000000000003 1927 1975-04-12 2024-10-11 00:32:07.000 1975-04-12 2024-10-11 00:32:07 +1928 1928 1929 192.8 385.6 1928 1975-04-13 2024-10-11 00:32:08.000 1975-04-13 2024-10-11 00:32:08 +1929 1929 1930 192.9 385.8 1929 1975-04-14 2024-10-11 00:32:09.000 1975-04-14 2024-10-11 00:32:09 +1930 1930 1931 193 386 1930 1975-04-15 2024-10-11 00:32:10.000 1975-04-15 2024-10-11 00:32:10 +1931 1931 1932 193.1 386.20000000000005 1931 1975-04-16 2024-10-11 00:32:11.000 1975-04-16 2024-10-11 00:32:11 +1932 1932 1933 193.2 386.40000000000003 1932 1975-04-17 2024-10-11 00:32:12.000 1975-04-17 2024-10-11 00:32:12 +1933 1933 1934 193.3 386.6 1933 1975-04-18 2024-10-11 00:32:13.000 1975-04-18 2024-10-11 00:32:13 +1934 1934 1935 193.4 386.8 1934 1975-04-19 2024-10-11 00:32:14.000 1975-04-19 2024-10-11 00:32:14 +1935 1935 1936 193.5 387 1935 1975-04-20 2024-10-11 00:32:15.000 1975-04-20 2024-10-11 00:32:15 +1936 1936 1937 193.6 387.20000000000005 1936 1975-04-21 2024-10-11 00:32:16.000 1975-04-21 2024-10-11 00:32:16 +1937 1937 1938 193.7 387.40000000000003 1937 1975-04-22 2024-10-11 00:32:17.000 1975-04-22 2024-10-11 00:32:17 +1938 1938 1939 193.8 387.6 1938 1975-04-23 2024-10-11 00:32:18.000 1975-04-23 2024-10-11 00:32:18 +1939 1939 1940 193.9 387.8 1939 1975-04-24 2024-10-11 00:32:19.000 1975-04-24 2024-10-11 00:32:19 +1940 1940 1941 194 388 1940 1975-04-25 2024-10-11 00:32:20.000 1975-04-25 2024-10-11 00:32:20 +1941 1941 1942 194.1 388.20000000000005 1941 1975-04-26 2024-10-11 00:32:21.000 1975-04-26 2024-10-11 00:32:21 +1942 1942 1943 194.2 388.40000000000003 1942 1975-04-27 2024-10-11 00:32:22.000 1975-04-27 2024-10-11 00:32:22 +1943 1943 1944 194.3 388.6 1943 1975-04-28 2024-10-11 00:32:23.000 1975-04-28 2024-10-11 00:32:23 +1944 1944 1945 194.4 388.8 1944 1975-04-29 2024-10-11 00:32:24.000 1975-04-29 2024-10-11 00:32:24 +1945 1945 1946 194.5 389 1945 1975-04-30 2024-10-11 00:32:25.000 1975-04-30 2024-10-11 00:32:25 +1946 1946 1947 194.6 389.20000000000005 1946 1975-05-01 2024-10-11 00:32:26.000 1975-05-01 2024-10-11 00:32:26 +1947 1947 1948 194.7 389.40000000000003 1947 1975-05-02 2024-10-11 00:32:27.000 1975-05-02 2024-10-11 00:32:27 +1948 1948 1949 194.8 389.6 1948 1975-05-03 2024-10-11 00:32:28.000 1975-05-03 2024-10-11 00:32:28 +1949 1949 1950 194.9 389.8 1949 1975-05-04 2024-10-11 00:32:29.000 1975-05-04 2024-10-11 00:32:29 +1950 1950 1951 195 390 1950 1975-05-05 2024-10-11 00:32:30.000 1975-05-05 2024-10-11 00:32:30 +1951 1951 1952 195.1 390.20000000000005 1951 1975-05-06 2024-10-11 00:32:31.000 1975-05-06 2024-10-11 00:32:31 +1952 1952 1953 195.2 390.40000000000003 1952 1975-05-07 2024-10-11 00:32:32.000 1975-05-07 2024-10-11 00:32:32 +1953 1953 1954 195.3 390.6 1953 1975-05-08 2024-10-11 00:32:33.000 1975-05-08 2024-10-11 00:32:33 +1954 1954 1955 195.4 390.8 1954 1975-05-09 2024-10-11 00:32:34.000 1975-05-09 2024-10-11 00:32:34 +1955 1955 1956 195.5 391 1955 1975-05-10 2024-10-11 00:32:35.000 1975-05-10 2024-10-11 00:32:35 +1956 1956 1957 195.6 391.20000000000005 1956 1975-05-11 2024-10-11 00:32:36.000 1975-05-11 2024-10-11 00:32:36 +1957 1957 1958 195.7 391.40000000000003 1957 1975-05-12 2024-10-11 00:32:37.000 1975-05-12 2024-10-11 00:32:37 +1958 1958 1959 195.8 391.6 1958 1975-05-13 2024-10-11 00:32:38.000 1975-05-13 2024-10-11 00:32:38 +1959 1959 1960 195.9 391.8 1959 1975-05-14 2024-10-11 00:32:39.000 1975-05-14 2024-10-11 00:32:39 +1960 1960 1961 196 392 1960 1975-05-15 2024-10-11 00:32:40.000 1975-05-15 2024-10-11 00:32:40 +1961 1961 1962 196.1 392.20000000000005 1961 1975-05-16 2024-10-11 00:32:41.000 1975-05-16 2024-10-11 00:32:41 +1962 1962 1963 196.2 392.40000000000003 1962 1975-05-17 2024-10-11 00:32:42.000 1975-05-17 2024-10-11 00:32:42 +1963 1963 1964 196.3 392.6 1963 1975-05-18 2024-10-11 00:32:43.000 1975-05-18 2024-10-11 00:32:43 +1964 1964 1965 196.4 392.8 1964 1975-05-19 2024-10-11 00:32:44.000 1975-05-19 2024-10-11 00:32:44 +1965 1965 1966 196.5 393 1965 1975-05-20 2024-10-11 00:32:45.000 1975-05-20 2024-10-11 00:32:45 +1966 1966 1967 196.6 393.20000000000005 1966 1975-05-21 2024-10-11 00:32:46.000 1975-05-21 2024-10-11 00:32:46 +1967 1967 1968 196.7 393.40000000000003 1967 1975-05-22 2024-10-11 00:32:47.000 1975-05-22 2024-10-11 00:32:47 +1968 1968 1969 196.8 393.6 1968 1975-05-23 2024-10-11 00:32:48.000 1975-05-23 2024-10-11 00:32:48 +1969 1969 1970 196.9 393.8 1969 1975-05-24 2024-10-11 00:32:49.000 1975-05-24 2024-10-11 00:32:49 +1970 1970 1971 197 394 1970 1975-05-25 2024-10-11 00:32:50.000 1975-05-25 2024-10-11 00:32:50 +1971 1971 1972 197.1 394.20000000000005 1971 1975-05-26 2024-10-11 00:32:51.000 1975-05-26 2024-10-11 00:32:51 +1972 1972 1973 197.2 394.40000000000003 1972 1975-05-27 2024-10-11 00:32:52.000 1975-05-27 2024-10-11 00:32:52 +1973 1973 1974 197.3 394.6 1973 1975-05-28 2024-10-11 00:32:53.000 1975-05-28 2024-10-11 00:32:53 +1974 1974 1975 197.4 394.8 1974 1975-05-29 2024-10-11 00:32:54.000 1975-05-29 2024-10-11 00:32:54 +1975 1975 1976 197.5 395 1975 1975-05-30 2024-10-11 00:32:55.000 1975-05-30 2024-10-11 00:32:55 +1976 1976 1977 197.6 395.20000000000005 1976 1975-05-31 2024-10-11 00:32:56.000 1975-05-31 2024-10-11 00:32:56 +1977 1977 1978 197.7 395.40000000000003 1977 1975-06-01 2024-10-11 00:32:57.000 1975-06-01 2024-10-11 00:32:57 +1978 1978 1979 197.8 395.6 1978 1975-06-02 2024-10-11 00:32:58.000 1975-06-02 2024-10-11 00:32:58 +1979 1979 1980 197.9 395.8 1979 1975-06-03 2024-10-11 00:32:59.000 1975-06-03 2024-10-11 00:32:59 +1980 1980 1981 198 396 1980 1975-06-04 2024-10-11 00:33:00.000 1975-06-04 2024-10-11 00:33:00 +1981 1981 1982 198.1 396.20000000000005 1981 1975-06-05 2024-10-11 00:33:01.000 1975-06-05 2024-10-11 00:33:01 +1982 1982 1983 198.2 396.40000000000003 1982 1975-06-06 2024-10-11 00:33:02.000 1975-06-06 2024-10-11 00:33:02 +1983 1983 1984 198.3 396.6 1983 1975-06-07 2024-10-11 00:33:03.000 1975-06-07 2024-10-11 00:33:03 +1984 1984 1985 198.4 396.8 1984 1975-06-08 2024-10-11 00:33:04.000 1975-06-08 2024-10-11 00:33:04 +1985 1985 1986 198.5 397 1985 1975-06-09 2024-10-11 00:33:05.000 1975-06-09 2024-10-11 00:33:05 +1986 1986 1987 198.6 397.20000000000005 1986 1975-06-10 2024-10-11 00:33:06.000 1975-06-10 2024-10-11 00:33:06 +1987 1987 1988 198.7 397.40000000000003 1987 1975-06-11 2024-10-11 00:33:07.000 1975-06-11 2024-10-11 00:33:07 +1988 1988 1989 198.8 397.6 1988 1975-06-12 2024-10-11 00:33:08.000 1975-06-12 2024-10-11 00:33:08 +1989 1989 1990 198.9 397.8 1989 1975-06-13 2024-10-11 00:33:09.000 1975-06-13 2024-10-11 00:33:09 +1990 1990 1991 199 398 1990 1975-06-14 2024-10-11 00:33:10.000 1975-06-14 2024-10-11 00:33:10 +1991 1991 1992 199.1 398.20000000000005 1991 1975-06-15 2024-10-11 00:33:11.000 1975-06-15 2024-10-11 00:33:11 +1992 1992 1993 199.2 398.40000000000003 1992 1975-06-16 2024-10-11 00:33:12.000 1975-06-16 2024-10-11 00:33:12 +1993 1993 1994 199.3 398.6 1993 1975-06-17 2024-10-11 00:33:13.000 1975-06-17 2024-10-11 00:33:13 +1994 1994 1995 199.4 398.8 1994 1975-06-18 2024-10-11 00:33:14.000 1975-06-18 2024-10-11 00:33:14 +1995 1995 1996 199.5 399 1995 1975-06-19 2024-10-11 00:33:15.000 1975-06-19 2024-10-11 00:33:15 +1996 1996 1997 199.6 399.20000000000005 1996 1975-06-20 2024-10-11 00:33:16.000 1975-06-20 2024-10-11 00:33:16 +1997 1997 1998 199.7 399.40000000000003 1997 1975-06-21 2024-10-11 00:33:17.000 1975-06-21 2024-10-11 00:33:17 +1998 1998 1999 199.8 399.6 1998 1975-06-22 2024-10-11 00:33:18.000 1975-06-22 2024-10-11 00:33:18 +1999 1999 2000 199.9 399.8 1999 1975-06-23 2024-10-11 00:33:19.000 1975-06-23 2024-10-11 00:33:19 +2000 2000 2001 200 400 2000 1975-06-24 2024-10-11 00:33:20.000 1975-06-24 2024-10-11 00:33:20 +2001 2001 2002 200.1 400.20000000000005 2001 1975-06-25 2024-10-11 00:33:21.000 1975-06-25 2024-10-11 00:33:21 +2002 2002 2003 200.2 400.40000000000003 2002 1975-06-26 2024-10-11 00:33:22.000 1975-06-26 2024-10-11 00:33:22 +2003 2003 2004 200.3 400.6 2003 1975-06-27 2024-10-11 00:33:23.000 1975-06-27 2024-10-11 00:33:23 +2004 2004 2005 200.4 400.8 2004 1975-06-28 2024-10-11 00:33:24.000 1975-06-28 2024-10-11 00:33:24 +2005 2005 2006 200.5 401 2005 1975-06-29 2024-10-11 00:33:25.000 1975-06-29 2024-10-11 00:33:25 +2006 2006 2007 200.6 401.20000000000005 2006 1975-06-30 2024-10-11 00:33:26.000 1975-06-30 2024-10-11 00:33:26 +2007 2007 2008 200.7 401.40000000000003 2007 1975-07-01 2024-10-11 00:33:27.000 1975-07-01 2024-10-11 00:33:27 +2008 2008 2009 200.8 401.6 2008 1975-07-02 2024-10-11 00:33:28.000 1975-07-02 2024-10-11 00:33:28 +2009 2009 2010 200.9 401.8 2009 1975-07-03 2024-10-11 00:33:29.000 1975-07-03 2024-10-11 00:33:29 +2010 2010 2011 201 402 2010 1975-07-04 2024-10-11 00:33:30.000 1975-07-04 2024-10-11 00:33:30 +2011 2011 2012 201.1 402.20000000000005 2011 1975-07-05 2024-10-11 00:33:31.000 1975-07-05 2024-10-11 00:33:31 +2012 2012 2013 201.2 402.40000000000003 2012 1975-07-06 2024-10-11 00:33:32.000 1975-07-06 2024-10-11 00:33:32 +2013 2013 2014 201.3 402.6 2013 1975-07-07 2024-10-11 00:33:33.000 1975-07-07 2024-10-11 00:33:33 +2014 2014 2015 201.4 402.8 2014 1975-07-08 2024-10-11 00:33:34.000 1975-07-08 2024-10-11 00:33:34 +2015 2015 2016 201.5 403 2015 1975-07-09 2024-10-11 00:33:35.000 1975-07-09 2024-10-11 00:33:35 +2016 2016 2017 201.6 403.20000000000005 2016 1975-07-10 2024-10-11 00:33:36.000 1975-07-10 2024-10-11 00:33:36 +2017 2017 2018 201.7 403.40000000000003 2017 1975-07-11 2024-10-11 00:33:37.000 1975-07-11 2024-10-11 00:33:37 +2018 2018 2019 201.8 403.6 2018 1975-07-12 2024-10-11 00:33:38.000 1975-07-12 2024-10-11 00:33:38 +2019 2019 2020 201.9 403.8 2019 1975-07-13 2024-10-11 00:33:39.000 1975-07-13 2024-10-11 00:33:39 +2020 2020 2021 202 404 2020 1975-07-14 2024-10-11 00:33:40.000 1975-07-14 2024-10-11 00:33:40 +2021 2021 2022 202.1 404.20000000000005 2021 1975-07-15 2024-10-11 00:33:41.000 1975-07-15 2024-10-11 00:33:41 +2022 2022 2023 202.2 404.40000000000003 2022 1975-07-16 2024-10-11 00:33:42.000 1975-07-16 2024-10-11 00:33:42 +2023 2023 2024 202.3 404.6 2023 1975-07-17 2024-10-11 00:33:43.000 1975-07-17 2024-10-11 00:33:43 +2024 2024 2025 202.4 404.8 2024 1975-07-18 2024-10-11 00:33:44.000 1975-07-18 2024-10-11 00:33:44 +2025 2025 2026 202.5 405 2025 1975-07-19 2024-10-11 00:33:45.000 1975-07-19 2024-10-11 00:33:45 +2026 2026 2027 202.6 405.20000000000005 2026 1975-07-20 2024-10-11 00:33:46.000 1975-07-20 2024-10-11 00:33:46 +2027 2027 2028 202.7 405.40000000000003 2027 1975-07-21 2024-10-11 00:33:47.000 1975-07-21 2024-10-11 00:33:47 +2028 2028 2029 202.8 405.6 2028 1975-07-22 2024-10-11 00:33:48.000 1975-07-22 2024-10-11 00:33:48 +2029 2029 2030 202.9 405.8 2029 1975-07-23 2024-10-11 00:33:49.000 1975-07-23 2024-10-11 00:33:49 +2030 2030 2031 203 406 2030 1975-07-24 2024-10-11 00:33:50.000 1975-07-24 2024-10-11 00:33:50 +2031 2031 2032 203.1 406.20000000000005 2031 1975-07-25 2024-10-11 00:33:51.000 1975-07-25 2024-10-11 00:33:51 +2032 2032 2033 203.2 406.40000000000003 2032 1975-07-26 2024-10-11 00:33:52.000 1975-07-26 2024-10-11 00:33:52 +2033 2033 2034 203.3 406.6 2033 1975-07-27 2024-10-11 00:33:53.000 1975-07-27 2024-10-11 00:33:53 +2034 2034 2035 203.4 406.8 2034 1975-07-28 2024-10-11 00:33:54.000 1975-07-28 2024-10-11 00:33:54 +2035 2035 2036 203.5 407 2035 1975-07-29 2024-10-11 00:33:55.000 1975-07-29 2024-10-11 00:33:55 +2036 2036 2037 203.6 407.20000000000005 2036 1975-07-30 2024-10-11 00:33:56.000 1975-07-30 2024-10-11 00:33:56 +2037 2037 2038 203.7 407.40000000000003 2037 1975-07-31 2024-10-11 00:33:57.000 1975-07-31 2024-10-11 00:33:57 +2038 2038 2039 203.8 407.6 2038 1975-08-01 2024-10-11 00:33:58.000 1975-08-01 2024-10-11 00:33:58 +2039 2039 2040 203.9 407.8 2039 1975-08-02 2024-10-11 00:33:59.000 1975-08-02 2024-10-11 00:33:59 +2040 2040 2041 204 408 2040 1975-08-03 2024-10-11 00:34:00.000 1975-08-03 2024-10-11 00:34:00 +2041 2041 2042 204.1 408.20000000000005 2041 1975-08-04 2024-10-11 00:34:01.000 1975-08-04 2024-10-11 00:34:01 +2042 2042 2043 204.2 408.40000000000003 2042 1975-08-05 2024-10-11 00:34:02.000 1975-08-05 2024-10-11 00:34:02 +2043 2043 2044 204.3 408.6 2043 1975-08-06 2024-10-11 00:34:03.000 1975-08-06 2024-10-11 00:34:03 +2044 2044 2045 204.4 408.8 2044 1975-08-07 2024-10-11 00:34:04.000 1975-08-07 2024-10-11 00:34:04 +2045 2045 2046 204.5 409 2045 1975-08-08 2024-10-11 00:34:05.000 1975-08-08 2024-10-11 00:34:05 +2046 2046 2047 204.6 409.20000000000005 2046 1975-08-09 2024-10-11 00:34:06.000 1975-08-09 2024-10-11 00:34:06 +2047 2047 2048 204.7 409.40000000000003 2047 1975-08-10 2024-10-11 00:34:07.000 1975-08-10 2024-10-11 00:34:07 +2048 2048 2049 204.8 409.6 2048 1975-08-11 2024-10-11 00:34:08.000 1975-08-11 2024-10-11 00:34:08 +2049 2049 2050 204.9 409.8 2049 1975-08-12 2024-10-11 00:34:09.000 1975-08-12 2024-10-11 00:34:09 +2050 2050 2051 205 410 2050 1975-08-13 2024-10-11 00:34:10.000 1975-08-13 2024-10-11 00:34:10 +2051 2051 2052 205.1 410.20000000000005 2051 1975-08-14 2024-10-11 00:34:11.000 1975-08-14 2024-10-11 00:34:11 +2052 2052 2053 205.2 410.40000000000003 2052 1975-08-15 2024-10-11 00:34:12.000 1975-08-15 2024-10-11 00:34:12 +2053 2053 2054 205.3 410.6 2053 1975-08-16 2024-10-11 00:34:13.000 1975-08-16 2024-10-11 00:34:13 +2054 2054 2055 205.4 410.8 2054 1975-08-17 2024-10-11 00:34:14.000 1975-08-17 2024-10-11 00:34:14 +2055 2055 2056 205.5 411 2055 1975-08-18 2024-10-11 00:34:15.000 1975-08-18 2024-10-11 00:34:15 +2056 2056 2057 205.6 411.20000000000005 2056 1975-08-19 2024-10-11 00:34:16.000 1975-08-19 2024-10-11 00:34:16 +2057 2057 2058 205.7 411.40000000000003 2057 1975-08-20 2024-10-11 00:34:17.000 1975-08-20 2024-10-11 00:34:17 +2058 2058 2059 205.8 411.6 2058 1975-08-21 2024-10-11 00:34:18.000 1975-08-21 2024-10-11 00:34:18 +2059 2059 2060 205.9 411.8 2059 1975-08-22 2024-10-11 00:34:19.000 1975-08-22 2024-10-11 00:34:19 +2060 2060 2061 206 412 2060 1975-08-23 2024-10-11 00:34:20.000 1975-08-23 2024-10-11 00:34:20 +2061 2061 2062 206.1 412.20000000000005 2061 1975-08-24 2024-10-11 00:34:21.000 1975-08-24 2024-10-11 00:34:21 +2062 2062 2063 206.2 412.40000000000003 2062 1975-08-25 2024-10-11 00:34:22.000 1975-08-25 2024-10-11 00:34:22 +2063 2063 2064 206.3 412.6 2063 1975-08-26 2024-10-11 00:34:23.000 1975-08-26 2024-10-11 00:34:23 +2064 2064 2065 206.4 412.8 2064 1975-08-27 2024-10-11 00:34:24.000 1975-08-27 2024-10-11 00:34:24 +2065 2065 2066 206.5 413 2065 1975-08-28 2024-10-11 00:34:25.000 1975-08-28 2024-10-11 00:34:25 +2066 2066 2067 206.6 413.20000000000005 2066 1975-08-29 2024-10-11 00:34:26.000 1975-08-29 2024-10-11 00:34:26 +2067 2067 2068 206.7 413.40000000000003 2067 1975-08-30 2024-10-11 00:34:27.000 1975-08-30 2024-10-11 00:34:27 +2068 2068 2069 206.8 413.6 2068 1975-08-31 2024-10-11 00:34:28.000 1975-08-31 2024-10-11 00:34:28 +2069 2069 2070 206.9 413.8 2069 1975-09-01 2024-10-11 00:34:29.000 1975-09-01 2024-10-11 00:34:29 +2070 2070 2071 207 414 2070 1975-09-02 2024-10-11 00:34:30.000 1975-09-02 2024-10-11 00:34:30 +2071 2071 2072 207.1 414.20000000000005 2071 1975-09-03 2024-10-11 00:34:31.000 1975-09-03 2024-10-11 00:34:31 +2072 2072 2073 207.2 414.40000000000003 2072 1975-09-04 2024-10-11 00:34:32.000 1975-09-04 2024-10-11 00:34:32 +2073 2073 2074 207.3 414.6 2073 1975-09-05 2024-10-11 00:34:33.000 1975-09-05 2024-10-11 00:34:33 +2074 2074 2075 207.4 414.8 2074 1975-09-06 2024-10-11 00:34:34.000 1975-09-06 2024-10-11 00:34:34 +2075 2075 2076 207.5 415 2075 1975-09-07 2024-10-11 00:34:35.000 1975-09-07 2024-10-11 00:34:35 +2076 2076 2077 207.6 415.20000000000005 2076 1975-09-08 2024-10-11 00:34:36.000 1975-09-08 2024-10-11 00:34:36 +2077 2077 2078 207.7 415.40000000000003 2077 1975-09-09 2024-10-11 00:34:37.000 1975-09-09 2024-10-11 00:34:37 +2078 2078 2079 207.8 415.6 2078 1975-09-10 2024-10-11 00:34:38.000 1975-09-10 2024-10-11 00:34:38 +2079 2079 2080 207.9 415.8 2079 1975-09-11 2024-10-11 00:34:39.000 1975-09-11 2024-10-11 00:34:39 +2080 2080 2081 208 416 2080 1975-09-12 2024-10-11 00:34:40.000 1975-09-12 2024-10-11 00:34:40 +2081 2081 2082 208.1 416.20000000000005 2081 1975-09-13 2024-10-11 00:34:41.000 1975-09-13 2024-10-11 00:34:41 +2082 2082 2083 208.2 416.40000000000003 2082 1975-09-14 2024-10-11 00:34:42.000 1975-09-14 2024-10-11 00:34:42 +2083 2083 2084 208.3 416.6 2083 1975-09-15 2024-10-11 00:34:43.000 1975-09-15 2024-10-11 00:34:43 +2084 2084 2085 208.4 416.8 2084 1975-09-16 2024-10-11 00:34:44.000 1975-09-16 2024-10-11 00:34:44 +2085 2085 2086 208.5 417 2085 1975-09-17 2024-10-11 00:34:45.000 1975-09-17 2024-10-11 00:34:45 +2086 2086 2087 208.6 417.20000000000005 2086 1975-09-18 2024-10-11 00:34:46.000 1975-09-18 2024-10-11 00:34:46 +2087 2087 2088 208.7 417.40000000000003 2087 1975-09-19 2024-10-11 00:34:47.000 1975-09-19 2024-10-11 00:34:47 +2088 2088 2089 208.8 417.6 2088 1975-09-20 2024-10-11 00:34:48.000 1975-09-20 2024-10-11 00:34:48 +2089 2089 2090 208.9 417.8 2089 1975-09-21 2024-10-11 00:34:49.000 1975-09-21 2024-10-11 00:34:49 +2090 2090 2091 209 418 2090 1975-09-22 2024-10-11 00:34:50.000 1975-09-22 2024-10-11 00:34:50 +2091 2091 2092 209.1 418.20000000000005 2091 1975-09-23 2024-10-11 00:34:51.000 1975-09-23 2024-10-11 00:34:51 +2092 2092 2093 209.2 418.40000000000003 2092 1975-09-24 2024-10-11 00:34:52.000 1975-09-24 2024-10-11 00:34:52 +2093 2093 2094 209.3 418.6 2093 1975-09-25 2024-10-11 00:34:53.000 1975-09-25 2024-10-11 00:34:53 +2094 2094 2095 209.4 418.8 2094 1975-09-26 2024-10-11 00:34:54.000 1975-09-26 2024-10-11 00:34:54 +2095 2095 2096 209.5 419 2095 1975-09-27 2024-10-11 00:34:55.000 1975-09-27 2024-10-11 00:34:55 +2096 2096 2097 209.6 419.20000000000005 2096 1975-09-28 2024-10-11 00:34:56.000 1975-09-28 2024-10-11 00:34:56 +2097 2097 2098 209.7 419.40000000000003 2097 1975-09-29 2024-10-11 00:34:57.000 1975-09-29 2024-10-11 00:34:57 +2098 2098 2099 209.8 419.6 2098 1975-09-30 2024-10-11 00:34:58.000 1975-09-30 2024-10-11 00:34:58 +2099 2099 2100 209.9 419.8 2099 1975-10-01 2024-10-11 00:34:59.000 1975-10-01 2024-10-11 00:34:59 +2100 2100 2101 210 420 2100 1975-10-02 2024-10-11 00:35:00.000 1975-10-02 2024-10-11 00:35:00 +2101 2101 2102 210.1 420.20000000000005 2101 1975-10-03 2024-10-11 00:35:01.000 1975-10-03 2024-10-11 00:35:01 +2102 2102 2103 210.2 420.40000000000003 2102 1975-10-04 2024-10-11 00:35:02.000 1975-10-04 2024-10-11 00:35:02 +2103 2103 2104 210.3 420.6 2103 1975-10-05 2024-10-11 00:35:03.000 1975-10-05 2024-10-11 00:35:03 +2104 2104 2105 210.4 420.8 2104 1975-10-06 2024-10-11 00:35:04.000 1975-10-06 2024-10-11 00:35:04 +2105 2105 2106 210.5 421 2105 1975-10-07 2024-10-11 00:35:05.000 1975-10-07 2024-10-11 00:35:05 +2106 2106 2107 210.6 421.20000000000005 2106 1975-10-08 2024-10-11 00:35:06.000 1975-10-08 2024-10-11 00:35:06 +2107 2107 2108 210.7 421.40000000000003 2107 1975-10-09 2024-10-11 00:35:07.000 1975-10-09 2024-10-11 00:35:07 +2108 2108 2109 210.8 421.6 2108 1975-10-10 2024-10-11 00:35:08.000 1975-10-10 2024-10-11 00:35:08 +2109 2109 2110 210.9 421.8 2109 1975-10-11 2024-10-11 00:35:09.000 1975-10-11 2024-10-11 00:35:09 +2110 2110 2111 211 422 2110 1975-10-12 2024-10-11 00:35:10.000 1975-10-12 2024-10-11 00:35:10 +2111 2111 2112 211.1 422.20000000000005 2111 1975-10-13 2024-10-11 00:35:11.000 1975-10-13 2024-10-11 00:35:11 +2112 2112 2113 211.2 422.40000000000003 2112 1975-10-14 2024-10-11 00:35:12.000 1975-10-14 2024-10-11 00:35:12 +2113 2113 2114 211.3 422.6 2113 1975-10-15 2024-10-11 00:35:13.000 1975-10-15 2024-10-11 00:35:13 +2114 2114 2115 211.4 422.8 2114 1975-10-16 2024-10-11 00:35:14.000 1975-10-16 2024-10-11 00:35:14 +2115 2115 2116 211.5 423 2115 1975-10-17 2024-10-11 00:35:15.000 1975-10-17 2024-10-11 00:35:15 +2116 2116 2117 211.6 423.20000000000005 2116 1975-10-18 2024-10-11 00:35:16.000 1975-10-18 2024-10-11 00:35:16 +2117 2117 2118 211.7 423.40000000000003 2117 1975-10-19 2024-10-11 00:35:17.000 1975-10-19 2024-10-11 00:35:17 +2118 2118 2119 211.8 423.6 2118 1975-10-20 2024-10-11 00:35:18.000 1975-10-20 2024-10-11 00:35:18 +2119 2119 2120 211.9 423.8 2119 1975-10-21 2024-10-11 00:35:19.000 1975-10-21 2024-10-11 00:35:19 +2120 2120 2121 212 424 2120 1975-10-22 2024-10-11 00:35:20.000 1975-10-22 2024-10-11 00:35:20 +2121 2121 2122 212.1 424.20000000000005 2121 1975-10-23 2024-10-11 00:35:21.000 1975-10-23 2024-10-11 00:35:21 +2122 2122 2123 212.2 424.40000000000003 2122 1975-10-24 2024-10-11 00:35:22.000 1975-10-24 2024-10-11 00:35:22 +2123 2123 2124 212.3 424.6 2123 1975-10-25 2024-10-11 00:35:23.000 1975-10-25 2024-10-11 00:35:23 +2124 2124 2125 212.4 424.8 2124 1975-10-26 2024-10-11 00:35:24.000 1975-10-26 2024-10-11 00:35:24 +2125 2125 2126 212.5 425 2125 1975-10-27 2024-10-11 00:35:25.000 1975-10-27 2024-10-11 00:35:25 +2126 2126 2127 212.6 425.20000000000005 2126 1975-10-28 2024-10-11 00:35:26.000 1975-10-28 2024-10-11 00:35:26 +2127 2127 2128 212.7 425.40000000000003 2127 1975-10-29 2024-10-11 00:35:27.000 1975-10-29 2024-10-11 00:35:27 +2128 2128 2129 212.8 425.6 2128 1975-10-30 2024-10-11 00:35:28.000 1975-10-30 2024-10-11 00:35:28 +2129 2129 2130 212.9 425.8 2129 1975-10-31 2024-10-11 00:35:29.000 1975-10-31 2024-10-11 00:35:29 +2130 2130 2131 213 426 2130 1975-11-01 2024-10-11 00:35:30.000 1975-11-01 2024-10-11 00:35:30 +2131 2131 2132 213.1 426.20000000000005 2131 1975-11-02 2024-10-11 00:35:31.000 1975-11-02 2024-10-11 00:35:31 +2132 2132 2133 213.2 426.40000000000003 2132 1975-11-03 2024-10-11 00:35:32.000 1975-11-03 2024-10-11 00:35:32 +2133 2133 2134 213.3 426.6 2133 1975-11-04 2024-10-11 00:35:33.000 1975-11-04 2024-10-11 00:35:33 +2134 2134 2135 213.4 426.8 2134 1975-11-05 2024-10-11 00:35:34.000 1975-11-05 2024-10-11 00:35:34 +2135 2135 2136 213.5 427 2135 1975-11-06 2024-10-11 00:35:35.000 1975-11-06 2024-10-11 00:35:35 +2136 2136 2137 213.6 427.20000000000005 2136 1975-11-07 2024-10-11 00:35:36.000 1975-11-07 2024-10-11 00:35:36 +2137 2137 2138 213.7 427.40000000000003 2137 1975-11-08 2024-10-11 00:35:37.000 1975-11-08 2024-10-11 00:35:37 +2138 2138 2139 213.8 427.6 2138 1975-11-09 2024-10-11 00:35:38.000 1975-11-09 2024-10-11 00:35:38 +2139 2139 2140 213.9 427.8 2139 1975-11-10 2024-10-11 00:35:39.000 1975-11-10 2024-10-11 00:35:39 +2140 2140 2141 214 428 2140 1975-11-11 2024-10-11 00:35:40.000 1975-11-11 2024-10-11 00:35:40 +2141 2141 2142 214.1 428.20000000000005 2141 1975-11-12 2024-10-11 00:35:41.000 1975-11-12 2024-10-11 00:35:41 +2142 2142 2143 214.2 428.40000000000003 2142 1975-11-13 2024-10-11 00:35:42.000 1975-11-13 2024-10-11 00:35:42 +2143 2143 2144 214.3 428.6 2143 1975-11-14 2024-10-11 00:35:43.000 1975-11-14 2024-10-11 00:35:43 +2144 2144 2145 214.4 428.8 2144 1975-11-15 2024-10-11 00:35:44.000 1975-11-15 2024-10-11 00:35:44 +2145 2145 2146 214.5 429 2145 1975-11-16 2024-10-11 00:35:45.000 1975-11-16 2024-10-11 00:35:45 +2146 2146 2147 214.6 429.20000000000005 2146 1975-11-17 2024-10-11 00:35:46.000 1975-11-17 2024-10-11 00:35:46 +2147 2147 2148 214.7 429.40000000000003 2147 1975-11-18 2024-10-11 00:35:47.000 1975-11-18 2024-10-11 00:35:47 +2148 2148 2149 214.8 429.6 2148 1975-11-19 2024-10-11 00:35:48.000 1975-11-19 2024-10-11 00:35:48 +2149 2149 2150 214.9 429.8 2149 1975-11-20 2024-10-11 00:35:49.000 1975-11-20 2024-10-11 00:35:49 +2150 2150 2151 215 430 2150 1975-11-21 2024-10-11 00:35:50.000 1975-11-21 2024-10-11 00:35:50 +2151 2151 2152 215.1 430.20000000000005 2151 1975-11-22 2024-10-11 00:35:51.000 1975-11-22 2024-10-11 00:35:51 +2152 2152 2153 215.2 430.40000000000003 2152 1975-11-23 2024-10-11 00:35:52.000 1975-11-23 2024-10-11 00:35:52 +2153 2153 2154 215.3 430.6 2153 1975-11-24 2024-10-11 00:35:53.000 1975-11-24 2024-10-11 00:35:53 +2154 2154 2155 215.4 430.8 2154 1975-11-25 2024-10-11 00:35:54.000 1975-11-25 2024-10-11 00:35:54 +2155 2155 2156 215.5 431 2155 1975-11-26 2024-10-11 00:35:55.000 1975-11-26 2024-10-11 00:35:55 +2156 2156 2157 215.6 431.20000000000005 2156 1975-11-27 2024-10-11 00:35:56.000 1975-11-27 2024-10-11 00:35:56 +2157 2157 2158 215.7 431.40000000000003 2157 1975-11-28 2024-10-11 00:35:57.000 1975-11-28 2024-10-11 00:35:57 +2158 2158 2159 215.8 431.6 2158 1975-11-29 2024-10-11 00:35:58.000 1975-11-29 2024-10-11 00:35:58 +2159 2159 2160 215.9 431.8 2159 1975-11-30 2024-10-11 00:35:59.000 1975-11-30 2024-10-11 00:35:59 +2160 2160 2161 216 432 2160 1975-12-01 2024-10-11 00:36:00.000 1975-12-01 2024-10-11 00:36:00 +2161 2161 2162 216.1 432.20000000000005 2161 1975-12-02 2024-10-11 00:36:01.000 1975-12-02 2024-10-11 00:36:01 +2162 2162 2163 216.2 432.40000000000003 2162 1975-12-03 2024-10-11 00:36:02.000 1975-12-03 2024-10-11 00:36:02 +2163 2163 2164 216.3 432.6 2163 1975-12-04 2024-10-11 00:36:03.000 1975-12-04 2024-10-11 00:36:03 +2164 2164 2165 216.4 432.8 2164 1975-12-05 2024-10-11 00:36:04.000 1975-12-05 2024-10-11 00:36:04 +2165 2165 2166 216.5 433 2165 1975-12-06 2024-10-11 00:36:05.000 1975-12-06 2024-10-11 00:36:05 +2166 2166 2167 216.6 433.20000000000005 2166 1975-12-07 2024-10-11 00:36:06.000 1975-12-07 2024-10-11 00:36:06 +2167 2167 2168 216.7 433.40000000000003 2167 1975-12-08 2024-10-11 00:36:07.000 1975-12-08 2024-10-11 00:36:07 +2168 2168 2169 216.8 433.6 2168 1975-12-09 2024-10-11 00:36:08.000 1975-12-09 2024-10-11 00:36:08 +2169 2169 2170 216.9 433.8 2169 1975-12-10 2024-10-11 00:36:09.000 1975-12-10 2024-10-11 00:36:09 +2170 2170 2171 217 434 2170 1975-12-11 2024-10-11 00:36:10.000 1975-12-11 2024-10-11 00:36:10 +2171 2171 2172 217.1 434.20000000000005 2171 1975-12-12 2024-10-11 00:36:11.000 1975-12-12 2024-10-11 00:36:11 +2172 2172 2173 217.2 434.40000000000003 2172 1975-12-13 2024-10-11 00:36:12.000 1975-12-13 2024-10-11 00:36:12 +2173 2173 2174 217.3 434.6 2173 1975-12-14 2024-10-11 00:36:13.000 1975-12-14 2024-10-11 00:36:13 +2174 2174 2175 217.4 434.8 2174 1975-12-15 2024-10-11 00:36:14.000 1975-12-15 2024-10-11 00:36:14 +2175 2175 2176 217.5 435 2175 1975-12-16 2024-10-11 00:36:15.000 1975-12-16 2024-10-11 00:36:15 +2176 2176 2177 217.6 435.20000000000005 2176 1975-12-17 2024-10-11 00:36:16.000 1975-12-17 2024-10-11 00:36:16 +2177 2177 2178 217.7 435.40000000000003 2177 1975-12-18 2024-10-11 00:36:17.000 1975-12-18 2024-10-11 00:36:17 +2178 2178 2179 217.8 435.6 2178 1975-12-19 2024-10-11 00:36:18.000 1975-12-19 2024-10-11 00:36:18 +2179 2179 2180 217.9 435.8 2179 1975-12-20 2024-10-11 00:36:19.000 1975-12-20 2024-10-11 00:36:19 +2180 2180 2181 218 436 2180 1975-12-21 2024-10-11 00:36:20.000 1975-12-21 2024-10-11 00:36:20 +2181 2181 2182 218.1 436.20000000000005 2181 1975-12-22 2024-10-11 00:36:21.000 1975-12-22 2024-10-11 00:36:21 +2182 2182 2183 218.2 436.40000000000003 2182 1975-12-23 2024-10-11 00:36:22.000 1975-12-23 2024-10-11 00:36:22 +2183 2183 2184 218.3 436.6 2183 1975-12-24 2024-10-11 00:36:23.000 1975-12-24 2024-10-11 00:36:23 +2184 2184 2185 218.4 436.8 2184 1975-12-25 2024-10-11 00:36:24.000 1975-12-25 2024-10-11 00:36:24 +2185 2185 2186 218.5 437 2185 1975-12-26 2024-10-11 00:36:25.000 1975-12-26 2024-10-11 00:36:25 +2186 2186 2187 218.6 437.20000000000005 2186 1975-12-27 2024-10-11 00:36:26.000 1975-12-27 2024-10-11 00:36:26 +2187 2187 2188 218.7 437.40000000000003 2187 1975-12-28 2024-10-11 00:36:27.000 1975-12-28 2024-10-11 00:36:27 +2188 2188 2189 218.8 437.6 2188 1975-12-29 2024-10-11 00:36:28.000 1975-12-29 2024-10-11 00:36:28 +2189 2189 2190 218.9 437.8 2189 1975-12-30 2024-10-11 00:36:29.000 1975-12-30 2024-10-11 00:36:29 +2190 2190 2191 219 438 2190 1975-12-31 2024-10-11 00:36:30.000 1975-12-31 2024-10-11 00:36:30 +2191 2191 2192 219.1 438.20000000000005 2191 1976-01-01 2024-10-11 00:36:31.000 1976-01-01 2024-10-11 00:36:31 +2192 2192 2193 219.2 438.40000000000003 2192 1976-01-02 2024-10-11 00:36:32.000 1976-01-02 2024-10-11 00:36:32 +2193 2193 2194 219.3 438.6 2193 1976-01-03 2024-10-11 00:36:33.000 1976-01-03 2024-10-11 00:36:33 +2194 2194 2195 219.4 438.8 2194 1976-01-04 2024-10-11 00:36:34.000 1976-01-04 2024-10-11 00:36:34 +2195 2195 2196 219.5 439 2195 1976-01-05 2024-10-11 00:36:35.000 1976-01-05 2024-10-11 00:36:35 +2196 2196 2197 219.6 439.20000000000005 2196 1976-01-06 2024-10-11 00:36:36.000 1976-01-06 2024-10-11 00:36:36 +2197 2197 2198 219.7 439.40000000000003 2197 1976-01-07 2024-10-11 00:36:37.000 1976-01-07 2024-10-11 00:36:37 +2198 2198 2199 219.8 439.6 2198 1976-01-08 2024-10-11 00:36:38.000 1976-01-08 2024-10-11 00:36:38 +2199 2199 2200 219.9 439.8 2199 1976-01-09 2024-10-11 00:36:39.000 1976-01-09 2024-10-11 00:36:39 +2200 2200 2201 220 440 2200 1976-01-10 2024-10-11 00:36:40.000 1976-01-10 2024-10-11 00:36:40 +2201 2201 2202 220.1 440.20000000000005 2201 1976-01-11 2024-10-11 00:36:41.000 1976-01-11 2024-10-11 00:36:41 +2202 2202 2203 220.2 440.40000000000003 2202 1976-01-12 2024-10-11 00:36:42.000 1976-01-12 2024-10-11 00:36:42 +2203 2203 2204 220.3 440.6 2203 1976-01-13 2024-10-11 00:36:43.000 1976-01-13 2024-10-11 00:36:43 +2204 2204 2205 220.4 440.8 2204 1976-01-14 2024-10-11 00:36:44.000 1976-01-14 2024-10-11 00:36:44 +2205 2205 2206 220.5 441 2205 1976-01-15 2024-10-11 00:36:45.000 1976-01-15 2024-10-11 00:36:45 +2206 2206 2207 220.6 441.20000000000005 2206 1976-01-16 2024-10-11 00:36:46.000 1976-01-16 2024-10-11 00:36:46 +2207 2207 2208 220.7 441.40000000000003 2207 1976-01-17 2024-10-11 00:36:47.000 1976-01-17 2024-10-11 00:36:47 +2208 2208 2209 220.8 441.6 2208 1976-01-18 2024-10-11 00:36:48.000 1976-01-18 2024-10-11 00:36:48 +2209 2209 2210 220.9 441.8 2209 1976-01-19 2024-10-11 00:36:49.000 1976-01-19 2024-10-11 00:36:49 +2210 2210 2211 221 442 2210 1976-01-20 2024-10-11 00:36:50.000 1976-01-20 2024-10-11 00:36:50 +2211 2211 2212 221.1 442.20000000000005 2211 1976-01-21 2024-10-11 00:36:51.000 1976-01-21 2024-10-11 00:36:51 +2212 2212 2213 221.2 442.40000000000003 2212 1976-01-22 2024-10-11 00:36:52.000 1976-01-22 2024-10-11 00:36:52 +2213 2213 2214 221.3 442.6 2213 1976-01-23 2024-10-11 00:36:53.000 1976-01-23 2024-10-11 00:36:53 +2214 2214 2215 221.4 442.8 2214 1976-01-24 2024-10-11 00:36:54.000 1976-01-24 2024-10-11 00:36:54 +2215 2215 2216 221.5 443 2215 1976-01-25 2024-10-11 00:36:55.000 1976-01-25 2024-10-11 00:36:55 +2216 2216 2217 221.6 443.20000000000005 2216 1976-01-26 2024-10-11 00:36:56.000 1976-01-26 2024-10-11 00:36:56 +2217 2217 2218 221.7 443.40000000000003 2217 1976-01-27 2024-10-11 00:36:57.000 1976-01-27 2024-10-11 00:36:57 +2218 2218 2219 221.8 443.6 2218 1976-01-28 2024-10-11 00:36:58.000 1976-01-28 2024-10-11 00:36:58 +2219 2219 2220 221.9 443.8 2219 1976-01-29 2024-10-11 00:36:59.000 1976-01-29 2024-10-11 00:36:59 +2220 2220 2221 222 444 2220 1976-01-30 2024-10-11 00:37:00.000 1976-01-30 2024-10-11 00:37:00 +2221 2221 2222 222.1 444.20000000000005 2221 1976-01-31 2024-10-11 00:37:01.000 1976-01-31 2024-10-11 00:37:01 +2222 2222 2223 222.2 444.40000000000003 2222 1976-02-01 2024-10-11 00:37:02.000 1976-02-01 2024-10-11 00:37:02 +2223 2223 2224 222.3 444.6 2223 1976-02-02 2024-10-11 00:37:03.000 1976-02-02 2024-10-11 00:37:03 +2224 2224 2225 222.4 444.8 2224 1976-02-03 2024-10-11 00:37:04.000 1976-02-03 2024-10-11 00:37:04 +2225 2225 2226 222.5 445 2225 1976-02-04 2024-10-11 00:37:05.000 1976-02-04 2024-10-11 00:37:05 +2226 2226 2227 222.6 445.20000000000005 2226 1976-02-05 2024-10-11 00:37:06.000 1976-02-05 2024-10-11 00:37:06 +2227 2227 2228 222.7 445.40000000000003 2227 1976-02-06 2024-10-11 00:37:07.000 1976-02-06 2024-10-11 00:37:07 +2228 2228 2229 222.8 445.6 2228 1976-02-07 2024-10-11 00:37:08.000 1976-02-07 2024-10-11 00:37:08 +2229 2229 2230 222.9 445.8 2229 1976-02-08 2024-10-11 00:37:09.000 1976-02-08 2024-10-11 00:37:09 +2230 2230 2231 223 446 2230 1976-02-09 2024-10-11 00:37:10.000 1976-02-09 2024-10-11 00:37:10 +2231 2231 2232 223.1 446.20000000000005 2231 1976-02-10 2024-10-11 00:37:11.000 1976-02-10 2024-10-11 00:37:11 +2232 2232 2233 223.2 446.40000000000003 2232 1976-02-11 2024-10-11 00:37:12.000 1976-02-11 2024-10-11 00:37:12 +2233 2233 2234 223.3 446.6 2233 1976-02-12 2024-10-11 00:37:13.000 1976-02-12 2024-10-11 00:37:13 +2234 2234 2235 223.4 446.8 2234 1976-02-13 2024-10-11 00:37:14.000 1976-02-13 2024-10-11 00:37:14 +2235 2235 2236 223.5 447 2235 1976-02-14 2024-10-11 00:37:15.000 1976-02-14 2024-10-11 00:37:15 +2236 2236 2237 223.6 447.20000000000005 2236 1976-02-15 2024-10-11 00:37:16.000 1976-02-15 2024-10-11 00:37:16 +2237 2237 2238 223.7 447.40000000000003 2237 1976-02-16 2024-10-11 00:37:17.000 1976-02-16 2024-10-11 00:37:17 +2238 2238 2239 223.8 447.6 2238 1976-02-17 2024-10-11 00:37:18.000 1976-02-17 2024-10-11 00:37:18 +2239 2239 2240 223.9 447.8 2239 1976-02-18 2024-10-11 00:37:19.000 1976-02-18 2024-10-11 00:37:19 +2240 2240 2241 224 448 2240 1976-02-19 2024-10-11 00:37:20.000 1976-02-19 2024-10-11 00:37:20 +2241 2241 2242 224.1 448.20000000000005 2241 1976-02-20 2024-10-11 00:37:21.000 1976-02-20 2024-10-11 00:37:21 +2242 2242 2243 224.2 448.40000000000003 2242 1976-02-21 2024-10-11 00:37:22.000 1976-02-21 2024-10-11 00:37:22 +2243 2243 2244 224.3 448.6 2243 1976-02-22 2024-10-11 00:37:23.000 1976-02-22 2024-10-11 00:37:23 +2244 2244 2245 224.4 448.8 2244 1976-02-23 2024-10-11 00:37:24.000 1976-02-23 2024-10-11 00:37:24 +2245 2245 2246 224.5 449 2245 1976-02-24 2024-10-11 00:37:25.000 1976-02-24 2024-10-11 00:37:25 +2246 2246 2247 224.6 449.20000000000005 2246 1976-02-25 2024-10-11 00:37:26.000 1976-02-25 2024-10-11 00:37:26 +2247 2247 2248 224.7 449.40000000000003 2247 1976-02-26 2024-10-11 00:37:27.000 1976-02-26 2024-10-11 00:37:27 +2248 2248 2249 224.8 449.6 2248 1976-02-27 2024-10-11 00:37:28.000 1976-02-27 2024-10-11 00:37:28 +2249 2249 2250 224.9 449.8 2249 1976-02-28 2024-10-11 00:37:29.000 1976-02-28 2024-10-11 00:37:29 +2250 2250 2251 225 450 2250 1976-02-29 2024-10-11 00:37:30.000 1976-02-29 2024-10-11 00:37:30 +2251 2251 2252 225.1 450.20000000000005 2251 1976-03-01 2024-10-11 00:37:31.000 1976-03-01 2024-10-11 00:37:31 +2252 2252 2253 225.2 450.40000000000003 2252 1976-03-02 2024-10-11 00:37:32.000 1976-03-02 2024-10-11 00:37:32 +2253 2253 2254 225.3 450.6 2253 1976-03-03 2024-10-11 00:37:33.000 1976-03-03 2024-10-11 00:37:33 +2254 2254 2255 225.4 450.8 2254 1976-03-04 2024-10-11 00:37:34.000 1976-03-04 2024-10-11 00:37:34 +2255 2255 2256 225.5 451 2255 1976-03-05 2024-10-11 00:37:35.000 1976-03-05 2024-10-11 00:37:35 +2256 2256 2257 225.6 451.20000000000005 2256 1976-03-06 2024-10-11 00:37:36.000 1976-03-06 2024-10-11 00:37:36 +2257 2257 2258 225.7 451.40000000000003 2257 1976-03-07 2024-10-11 00:37:37.000 1976-03-07 2024-10-11 00:37:37 +2258 2258 2259 225.8 451.6 2258 1976-03-08 2024-10-11 00:37:38.000 1976-03-08 2024-10-11 00:37:38 +2259 2259 2260 225.9 451.8 2259 1976-03-09 2024-10-11 00:37:39.000 1976-03-09 2024-10-11 00:37:39 +2260 2260 2261 226 452 2260 1976-03-10 2024-10-11 00:37:40.000 1976-03-10 2024-10-11 00:37:40 +2261 2261 2262 226.1 452.20000000000005 2261 1976-03-11 2024-10-11 00:37:41.000 1976-03-11 2024-10-11 00:37:41 +2262 2262 2263 226.2 452.40000000000003 2262 1976-03-12 2024-10-11 00:37:42.000 1976-03-12 2024-10-11 00:37:42 +2263 2263 2264 226.3 452.6 2263 1976-03-13 2024-10-11 00:37:43.000 1976-03-13 2024-10-11 00:37:43 +2264 2264 2265 226.4 452.8 2264 1976-03-14 2024-10-11 00:37:44.000 1976-03-14 2024-10-11 00:37:44 +2265 2265 2266 226.5 453 2265 1976-03-15 2024-10-11 00:37:45.000 1976-03-15 2024-10-11 00:37:45 +2266 2266 2267 226.6 453.20000000000005 2266 1976-03-16 2024-10-11 00:37:46.000 1976-03-16 2024-10-11 00:37:46 +2267 2267 2268 226.7 453.40000000000003 2267 1976-03-17 2024-10-11 00:37:47.000 1976-03-17 2024-10-11 00:37:47 +2268 2268 2269 226.8 453.6 2268 1976-03-18 2024-10-11 00:37:48.000 1976-03-18 2024-10-11 00:37:48 +2269 2269 2270 226.9 453.8 2269 1976-03-19 2024-10-11 00:37:49.000 1976-03-19 2024-10-11 00:37:49 +2270 2270 2271 227 454 2270 1976-03-20 2024-10-11 00:37:50.000 1976-03-20 2024-10-11 00:37:50 +2271 2271 2272 227.1 454.20000000000005 2271 1976-03-21 2024-10-11 00:37:51.000 1976-03-21 2024-10-11 00:37:51 +2272 2272 2273 227.2 454.40000000000003 2272 1976-03-22 2024-10-11 00:37:52.000 1976-03-22 2024-10-11 00:37:52 +2273 2273 2274 227.3 454.6 2273 1976-03-23 2024-10-11 00:37:53.000 1976-03-23 2024-10-11 00:37:53 +2274 2274 2275 227.4 454.8 2274 1976-03-24 2024-10-11 00:37:54.000 1976-03-24 2024-10-11 00:37:54 +2275 2275 2276 227.5 455 2275 1976-03-25 2024-10-11 00:37:55.000 1976-03-25 2024-10-11 00:37:55 +2276 2276 2277 227.6 455.20000000000005 2276 1976-03-26 2024-10-11 00:37:56.000 1976-03-26 2024-10-11 00:37:56 +2277 2277 2278 227.7 455.40000000000003 2277 1976-03-27 2024-10-11 00:37:57.000 1976-03-27 2024-10-11 00:37:57 +2278 2278 2279 227.8 455.6 2278 1976-03-28 2024-10-11 00:37:58.000 1976-03-28 2024-10-11 00:37:58 +2279 2279 2280 227.9 455.8 2279 1976-03-29 2024-10-11 00:37:59.000 1976-03-29 2024-10-11 00:37:59 +2280 2280 2281 228 456 2280 1976-03-30 2024-10-11 00:38:00.000 1976-03-30 2024-10-11 00:38:00 +2281 2281 2282 228.1 456.20000000000005 2281 1976-03-31 2024-10-11 00:38:01.000 1976-03-31 2024-10-11 00:38:01 +2282 2282 2283 228.2 456.40000000000003 2282 1976-04-01 2024-10-11 00:38:02.000 1976-04-01 2024-10-11 00:38:02 +2283 2283 2284 228.3 456.6 2283 1976-04-02 2024-10-11 00:38:03.000 1976-04-02 2024-10-11 00:38:03 +2284 2284 2285 228.4 456.8 2284 1976-04-03 2024-10-11 00:38:04.000 1976-04-03 2024-10-11 00:38:04 +2285 2285 2286 228.5 457 2285 1976-04-04 2024-10-11 00:38:05.000 1976-04-04 2024-10-11 00:38:05 +2286 2286 2287 228.6 457.20000000000005 2286 1976-04-05 2024-10-11 00:38:06.000 1976-04-05 2024-10-11 00:38:06 +2287 2287 2288 228.7 457.40000000000003 2287 1976-04-06 2024-10-11 00:38:07.000 1976-04-06 2024-10-11 00:38:07 +2288 2288 2289 228.8 457.6 2288 1976-04-07 2024-10-11 00:38:08.000 1976-04-07 2024-10-11 00:38:08 +2289 2289 2290 228.9 457.8 2289 1976-04-08 2024-10-11 00:38:09.000 1976-04-08 2024-10-11 00:38:09 +2290 2290 2291 229 458 2290 1976-04-09 2024-10-11 00:38:10.000 1976-04-09 2024-10-11 00:38:10 +2291 2291 2292 229.1 458.20000000000005 2291 1976-04-10 2024-10-11 00:38:11.000 1976-04-10 2024-10-11 00:38:11 +2292 2292 2293 229.2 458.40000000000003 2292 1976-04-11 2024-10-11 00:38:12.000 1976-04-11 2024-10-11 00:38:12 +2293 2293 2294 229.3 458.6 2293 1976-04-12 2024-10-11 00:38:13.000 1976-04-12 2024-10-11 00:38:13 +2294 2294 2295 229.4 458.8 2294 1976-04-13 2024-10-11 00:38:14.000 1976-04-13 2024-10-11 00:38:14 +2295 2295 2296 229.5 459 2295 1976-04-14 2024-10-11 00:38:15.000 1976-04-14 2024-10-11 00:38:15 +2296 2296 2297 229.6 459.20000000000005 2296 1976-04-15 2024-10-11 00:38:16.000 1976-04-15 2024-10-11 00:38:16 +2297 2297 2298 229.7 459.40000000000003 2297 1976-04-16 2024-10-11 00:38:17.000 1976-04-16 2024-10-11 00:38:17 +2298 2298 2299 229.8 459.6 2298 1976-04-17 2024-10-11 00:38:18.000 1976-04-17 2024-10-11 00:38:18 +2299 2299 2300 229.9 459.8 2299 1976-04-18 2024-10-11 00:38:19.000 1976-04-18 2024-10-11 00:38:19 +2300 2300 2301 230 460 2300 1976-04-19 2024-10-11 00:38:20.000 1976-04-19 2024-10-11 00:38:20 +2301 2301 2302 230.1 460.20000000000005 2301 1976-04-20 2024-10-11 00:38:21.000 1976-04-20 2024-10-11 00:38:21 +2302 2302 2303 230.2 460.40000000000003 2302 1976-04-21 2024-10-11 00:38:22.000 1976-04-21 2024-10-11 00:38:22 +2303 2303 2304 230.3 460.6 2303 1976-04-22 2024-10-11 00:38:23.000 1976-04-22 2024-10-11 00:38:23 +2304 2304 2305 230.4 460.8 2304 1976-04-23 2024-10-11 00:38:24.000 1976-04-23 2024-10-11 00:38:24 +2305 2305 2306 230.5 461 2305 1976-04-24 2024-10-11 00:38:25.000 1976-04-24 2024-10-11 00:38:25 +2306 2306 2307 230.6 461.20000000000005 2306 1976-04-25 2024-10-11 00:38:26.000 1976-04-25 2024-10-11 00:38:26 +2307 2307 2308 230.7 461.40000000000003 2307 1976-04-26 2024-10-11 00:38:27.000 1976-04-26 2024-10-11 00:38:27 +2308 2308 2309 230.8 461.6 2308 1976-04-27 2024-10-11 00:38:28.000 1976-04-27 2024-10-11 00:38:28 +2309 2309 2310 230.9 461.8 2309 1976-04-28 2024-10-11 00:38:29.000 1976-04-28 2024-10-11 00:38:29 +2310 2310 2311 231 462 2310 1976-04-29 2024-10-11 00:38:30.000 1976-04-29 2024-10-11 00:38:30 +2311 2311 2312 231.1 462.20000000000005 2311 1976-04-30 2024-10-11 00:38:31.000 1976-04-30 2024-10-11 00:38:31 +2312 2312 2313 231.2 462.40000000000003 2312 1976-05-01 2024-10-11 00:38:32.000 1976-05-01 2024-10-11 00:38:32 +2313 2313 2314 231.3 462.6 2313 1976-05-02 2024-10-11 00:38:33.000 1976-05-02 2024-10-11 00:38:33 +2314 2314 2315 231.4 462.8 2314 1976-05-03 2024-10-11 00:38:34.000 1976-05-03 2024-10-11 00:38:34 +2315 2315 2316 231.5 463 2315 1976-05-04 2024-10-11 00:38:35.000 1976-05-04 2024-10-11 00:38:35 +2316 2316 2317 231.6 463.20000000000005 2316 1976-05-05 2024-10-11 00:38:36.000 1976-05-05 2024-10-11 00:38:36 +2317 2317 2318 231.7 463.40000000000003 2317 1976-05-06 2024-10-11 00:38:37.000 1976-05-06 2024-10-11 00:38:37 +2318 2318 2319 231.8 463.6 2318 1976-05-07 2024-10-11 00:38:38.000 1976-05-07 2024-10-11 00:38:38 +2319 2319 2320 231.9 463.8 2319 1976-05-08 2024-10-11 00:38:39.000 1976-05-08 2024-10-11 00:38:39 +2320 2320 2321 232 464 2320 1976-05-09 2024-10-11 00:38:40.000 1976-05-09 2024-10-11 00:38:40 +2321 2321 2322 232.1 464.20000000000005 2321 1976-05-10 2024-10-11 00:38:41.000 1976-05-10 2024-10-11 00:38:41 +2322 2322 2323 232.2 464.40000000000003 2322 1976-05-11 2024-10-11 00:38:42.000 1976-05-11 2024-10-11 00:38:42 +2323 2323 2324 232.3 464.6 2323 1976-05-12 2024-10-11 00:38:43.000 1976-05-12 2024-10-11 00:38:43 +2324 2324 2325 232.4 464.8 2324 1976-05-13 2024-10-11 00:38:44.000 1976-05-13 2024-10-11 00:38:44 +2325 2325 2326 232.5 465 2325 1976-05-14 2024-10-11 00:38:45.000 1976-05-14 2024-10-11 00:38:45 +2326 2326 2327 232.6 465.20000000000005 2326 1976-05-15 2024-10-11 00:38:46.000 1976-05-15 2024-10-11 00:38:46 +2327 2327 2328 232.7 465.40000000000003 2327 1976-05-16 2024-10-11 00:38:47.000 1976-05-16 2024-10-11 00:38:47 +2328 2328 2329 232.8 465.6 2328 1976-05-17 2024-10-11 00:38:48.000 1976-05-17 2024-10-11 00:38:48 +2329 2329 2330 232.9 465.8 2329 1976-05-18 2024-10-11 00:38:49.000 1976-05-18 2024-10-11 00:38:49 +2330 2330 2331 233 466 2330 1976-05-19 2024-10-11 00:38:50.000 1976-05-19 2024-10-11 00:38:50 +2331 2331 2332 233.1 466.20000000000005 2331 1976-05-20 2024-10-11 00:38:51.000 1976-05-20 2024-10-11 00:38:51 +2332 2332 2333 233.2 466.40000000000003 2332 1976-05-21 2024-10-11 00:38:52.000 1976-05-21 2024-10-11 00:38:52 +2333 2333 2334 233.3 466.6 2333 1976-05-22 2024-10-11 00:38:53.000 1976-05-22 2024-10-11 00:38:53 +2334 2334 2335 233.4 466.8 2334 1976-05-23 2024-10-11 00:38:54.000 1976-05-23 2024-10-11 00:38:54 +2335 2335 2336 233.5 467 2335 1976-05-24 2024-10-11 00:38:55.000 1976-05-24 2024-10-11 00:38:55 +2336 2336 2337 233.6 467.20000000000005 2336 1976-05-25 2024-10-11 00:38:56.000 1976-05-25 2024-10-11 00:38:56 +2337 2337 2338 233.7 467.40000000000003 2337 1976-05-26 2024-10-11 00:38:57.000 1976-05-26 2024-10-11 00:38:57 +2338 2338 2339 233.8 467.6 2338 1976-05-27 2024-10-11 00:38:58.000 1976-05-27 2024-10-11 00:38:58 +2339 2339 2340 233.9 467.8 2339 1976-05-28 2024-10-11 00:38:59.000 1976-05-28 2024-10-11 00:38:59 +2340 2340 2341 234 468 2340 1976-05-29 2024-10-11 00:39:00.000 1976-05-29 2024-10-11 00:39:00 +2341 2341 2342 234.1 468.20000000000005 2341 1976-05-30 2024-10-11 00:39:01.000 1976-05-30 2024-10-11 00:39:01 +2342 2342 2343 234.2 468.40000000000003 2342 1976-05-31 2024-10-11 00:39:02.000 1976-05-31 2024-10-11 00:39:02 +2343 2343 2344 234.3 468.6 2343 1976-06-01 2024-10-11 00:39:03.000 1976-06-01 2024-10-11 00:39:03 +2344 2344 2345 234.4 468.8 2344 1976-06-02 2024-10-11 00:39:04.000 1976-06-02 2024-10-11 00:39:04 +2345 2345 2346 234.5 469 2345 1976-06-03 2024-10-11 00:39:05.000 1976-06-03 2024-10-11 00:39:05 +2346 2346 2347 234.6 469.20000000000005 2346 1976-06-04 2024-10-11 00:39:06.000 1976-06-04 2024-10-11 00:39:06 +2347 2347 2348 234.7 469.40000000000003 2347 1976-06-05 2024-10-11 00:39:07.000 1976-06-05 2024-10-11 00:39:07 +2348 2348 2349 234.8 469.6 2348 1976-06-06 2024-10-11 00:39:08.000 1976-06-06 2024-10-11 00:39:08 +2349 2349 2350 234.9 469.8 2349 1976-06-07 2024-10-11 00:39:09.000 1976-06-07 2024-10-11 00:39:09 +2350 2350 2351 235 470 2350 1976-06-08 2024-10-11 00:39:10.000 1976-06-08 2024-10-11 00:39:10 +2351 2351 2352 235.1 470.20000000000005 2351 1976-06-09 2024-10-11 00:39:11.000 1976-06-09 2024-10-11 00:39:11 +2352 2352 2353 235.2 470.40000000000003 2352 1976-06-10 2024-10-11 00:39:12.000 1976-06-10 2024-10-11 00:39:12 +2353 2353 2354 235.3 470.6 2353 1976-06-11 2024-10-11 00:39:13.000 1976-06-11 2024-10-11 00:39:13 +2354 2354 2355 235.4 470.8 2354 1976-06-12 2024-10-11 00:39:14.000 1976-06-12 2024-10-11 00:39:14 +2355 2355 2356 235.5 471 2355 1976-06-13 2024-10-11 00:39:15.000 1976-06-13 2024-10-11 00:39:15 +2356 2356 2357 235.6 471.20000000000005 2356 1976-06-14 2024-10-11 00:39:16.000 1976-06-14 2024-10-11 00:39:16 +2357 2357 2358 235.7 471.40000000000003 2357 1976-06-15 2024-10-11 00:39:17.000 1976-06-15 2024-10-11 00:39:17 +2358 2358 2359 235.8 471.6 2358 1976-06-16 2024-10-11 00:39:18.000 1976-06-16 2024-10-11 00:39:18 +2359 2359 2360 235.9 471.8 2359 1976-06-17 2024-10-11 00:39:19.000 1976-06-17 2024-10-11 00:39:19 +2360 2360 2361 236 472 2360 1976-06-18 2024-10-11 00:39:20.000 1976-06-18 2024-10-11 00:39:20 +2361 2361 2362 236.1 472.20000000000005 2361 1976-06-19 2024-10-11 00:39:21.000 1976-06-19 2024-10-11 00:39:21 +2362 2362 2363 236.2 472.40000000000003 2362 1976-06-20 2024-10-11 00:39:22.000 1976-06-20 2024-10-11 00:39:22 +2363 2363 2364 236.3 472.6 2363 1976-06-21 2024-10-11 00:39:23.000 1976-06-21 2024-10-11 00:39:23 +2364 2364 2365 236.4 472.8 2364 1976-06-22 2024-10-11 00:39:24.000 1976-06-22 2024-10-11 00:39:24 +2365 2365 2366 236.5 473 2365 1976-06-23 2024-10-11 00:39:25.000 1976-06-23 2024-10-11 00:39:25 +2366 2366 2367 236.6 473.20000000000005 2366 1976-06-24 2024-10-11 00:39:26.000 1976-06-24 2024-10-11 00:39:26 +2367 2367 2368 236.7 473.40000000000003 2367 1976-06-25 2024-10-11 00:39:27.000 1976-06-25 2024-10-11 00:39:27 +2368 2368 2369 236.8 473.6 2368 1976-06-26 2024-10-11 00:39:28.000 1976-06-26 2024-10-11 00:39:28 +2369 2369 2370 236.9 473.8 2369 1976-06-27 2024-10-11 00:39:29.000 1976-06-27 2024-10-11 00:39:29 +2370 2370 2371 237 474 2370 1976-06-28 2024-10-11 00:39:30.000 1976-06-28 2024-10-11 00:39:30 +2371 2371 2372 237.1 474.20000000000005 2371 1976-06-29 2024-10-11 00:39:31.000 1976-06-29 2024-10-11 00:39:31 +2372 2372 2373 237.2 474.40000000000003 2372 1976-06-30 2024-10-11 00:39:32.000 1976-06-30 2024-10-11 00:39:32 +2373 2373 2374 237.3 474.6 2373 1976-07-01 2024-10-11 00:39:33.000 1976-07-01 2024-10-11 00:39:33 +2374 2374 2375 237.4 474.8 2374 1976-07-02 2024-10-11 00:39:34.000 1976-07-02 2024-10-11 00:39:34 +2375 2375 2376 237.5 475 2375 1976-07-03 2024-10-11 00:39:35.000 1976-07-03 2024-10-11 00:39:35 +2376 2376 2377 237.6 475.20000000000005 2376 1976-07-04 2024-10-11 00:39:36.000 1976-07-04 2024-10-11 00:39:36 +2377 2377 2378 237.7 475.40000000000003 2377 1976-07-05 2024-10-11 00:39:37.000 1976-07-05 2024-10-11 00:39:37 +2378 2378 2379 237.8 475.6 2378 1976-07-06 2024-10-11 00:39:38.000 1976-07-06 2024-10-11 00:39:38 +2379 2379 2380 237.9 475.8 2379 1976-07-07 2024-10-11 00:39:39.000 1976-07-07 2024-10-11 00:39:39 +2380 2380 2381 238 476 2380 1976-07-08 2024-10-11 00:39:40.000 1976-07-08 2024-10-11 00:39:40 +2381 2381 2382 238.1 476.20000000000005 2381 1976-07-09 2024-10-11 00:39:41.000 1976-07-09 2024-10-11 00:39:41 +2382 2382 2383 238.2 476.40000000000003 2382 1976-07-10 2024-10-11 00:39:42.000 1976-07-10 2024-10-11 00:39:42 +2383 2383 2384 238.3 476.6 2383 1976-07-11 2024-10-11 00:39:43.000 1976-07-11 2024-10-11 00:39:43 +2384 2384 2385 238.4 476.8 2384 1976-07-12 2024-10-11 00:39:44.000 1976-07-12 2024-10-11 00:39:44 +2385 2385 2386 238.5 477 2385 1976-07-13 2024-10-11 00:39:45.000 1976-07-13 2024-10-11 00:39:45 +2386 2386 2387 238.6 477.20000000000005 2386 1976-07-14 2024-10-11 00:39:46.000 1976-07-14 2024-10-11 00:39:46 +2387 2387 2388 238.7 477.40000000000003 2387 1976-07-15 2024-10-11 00:39:47.000 1976-07-15 2024-10-11 00:39:47 +2388 2388 2389 238.8 477.6 2388 1976-07-16 2024-10-11 00:39:48.000 1976-07-16 2024-10-11 00:39:48 +2389 2389 2390 238.9 477.8 2389 1976-07-17 2024-10-11 00:39:49.000 1976-07-17 2024-10-11 00:39:49 +2390 2390 2391 239 478 2390 1976-07-18 2024-10-11 00:39:50.000 1976-07-18 2024-10-11 00:39:50 +2391 2391 2392 239.1 478.20000000000005 2391 1976-07-19 2024-10-11 00:39:51.000 1976-07-19 2024-10-11 00:39:51 +2392 2392 2393 239.2 478.40000000000003 2392 1976-07-20 2024-10-11 00:39:52.000 1976-07-20 2024-10-11 00:39:52 +2393 2393 2394 239.3 478.6 2393 1976-07-21 2024-10-11 00:39:53.000 1976-07-21 2024-10-11 00:39:53 +2394 2394 2395 239.4 478.8 2394 1976-07-22 2024-10-11 00:39:54.000 1976-07-22 2024-10-11 00:39:54 +2395 2395 2396 239.5 479 2395 1976-07-23 2024-10-11 00:39:55.000 1976-07-23 2024-10-11 00:39:55 +2396 2396 2397 239.6 479.20000000000005 2396 1976-07-24 2024-10-11 00:39:56.000 1976-07-24 2024-10-11 00:39:56 +2397 2397 2398 239.7 479.40000000000003 2397 1976-07-25 2024-10-11 00:39:57.000 1976-07-25 2024-10-11 00:39:57 +2398 2398 2399 239.8 479.6 2398 1976-07-26 2024-10-11 00:39:58.000 1976-07-26 2024-10-11 00:39:58 +2399 2399 2400 239.9 479.8 2399 1976-07-27 2024-10-11 00:39:59.000 1976-07-27 2024-10-11 00:39:59 +2400 2400 2401 240 480 2400 1976-07-28 2024-10-11 00:40:00.000 1976-07-28 2024-10-11 00:40:00 +2401 2401 2402 240.1 480.20000000000005 2401 1976-07-29 2024-10-11 00:40:01.000 1976-07-29 2024-10-11 00:40:01 +2402 2402 2403 240.2 480.40000000000003 2402 1976-07-30 2024-10-11 00:40:02.000 1976-07-30 2024-10-11 00:40:02 +2403 2403 2404 240.3 480.6 2403 1976-07-31 2024-10-11 00:40:03.000 1976-07-31 2024-10-11 00:40:03 +2404 2404 2405 240.4 480.8 2404 1976-08-01 2024-10-11 00:40:04.000 1976-08-01 2024-10-11 00:40:04 +2405 2405 2406 240.5 481 2405 1976-08-02 2024-10-11 00:40:05.000 1976-08-02 2024-10-11 00:40:05 +2406 2406 2407 240.6 481.20000000000005 2406 1976-08-03 2024-10-11 00:40:06.000 1976-08-03 2024-10-11 00:40:06 +2407 2407 2408 240.7 481.40000000000003 2407 1976-08-04 2024-10-11 00:40:07.000 1976-08-04 2024-10-11 00:40:07 +2408 2408 2409 240.8 481.6 2408 1976-08-05 2024-10-11 00:40:08.000 1976-08-05 2024-10-11 00:40:08 +2409 2409 2410 240.9 481.8 2409 1976-08-06 2024-10-11 00:40:09.000 1976-08-06 2024-10-11 00:40:09 +2410 2410 2411 241 482 2410 1976-08-07 2024-10-11 00:40:10.000 1976-08-07 2024-10-11 00:40:10 +2411 2411 2412 241.1 482.20000000000005 2411 1976-08-08 2024-10-11 00:40:11.000 1976-08-08 2024-10-11 00:40:11 +2412 2412 2413 241.2 482.40000000000003 2412 1976-08-09 2024-10-11 00:40:12.000 1976-08-09 2024-10-11 00:40:12 +2413 2413 2414 241.3 482.6 2413 1976-08-10 2024-10-11 00:40:13.000 1976-08-10 2024-10-11 00:40:13 +2414 2414 2415 241.4 482.8 2414 1976-08-11 2024-10-11 00:40:14.000 1976-08-11 2024-10-11 00:40:14 +2415 2415 2416 241.5 483 2415 1976-08-12 2024-10-11 00:40:15.000 1976-08-12 2024-10-11 00:40:15 +2416 2416 2417 241.6 483.20000000000005 2416 1976-08-13 2024-10-11 00:40:16.000 1976-08-13 2024-10-11 00:40:16 +2417 2417 2418 241.7 483.40000000000003 2417 1976-08-14 2024-10-11 00:40:17.000 1976-08-14 2024-10-11 00:40:17 +2418 2418 2419 241.8 483.6 2418 1976-08-15 2024-10-11 00:40:18.000 1976-08-15 2024-10-11 00:40:18 +2419 2419 2420 241.9 483.8 2419 1976-08-16 2024-10-11 00:40:19.000 1976-08-16 2024-10-11 00:40:19 +2420 2420 2421 242 484 2420 1976-08-17 2024-10-11 00:40:20.000 1976-08-17 2024-10-11 00:40:20 +2421 2421 2422 242.1 484.20000000000005 2421 1976-08-18 2024-10-11 00:40:21.000 1976-08-18 2024-10-11 00:40:21 +2422 2422 2423 242.2 484.40000000000003 2422 1976-08-19 2024-10-11 00:40:22.000 1976-08-19 2024-10-11 00:40:22 +2423 2423 2424 242.3 484.6 2423 1976-08-20 2024-10-11 00:40:23.000 1976-08-20 2024-10-11 00:40:23 +2424 2424 2425 242.4 484.8 2424 1976-08-21 2024-10-11 00:40:24.000 1976-08-21 2024-10-11 00:40:24 +2425 2425 2426 242.5 485 2425 1976-08-22 2024-10-11 00:40:25.000 1976-08-22 2024-10-11 00:40:25 +2426 2426 2427 242.6 485.20000000000005 2426 1976-08-23 2024-10-11 00:40:26.000 1976-08-23 2024-10-11 00:40:26 +2427 2427 2428 242.7 485.40000000000003 2427 1976-08-24 2024-10-11 00:40:27.000 1976-08-24 2024-10-11 00:40:27 +2428 2428 2429 242.8 485.6 2428 1976-08-25 2024-10-11 00:40:28.000 1976-08-25 2024-10-11 00:40:28 +2429 2429 2430 242.9 485.8 2429 1976-08-26 2024-10-11 00:40:29.000 1976-08-26 2024-10-11 00:40:29 +2430 2430 2431 243 486 2430 1976-08-27 2024-10-11 00:40:30.000 1976-08-27 2024-10-11 00:40:30 +2431 2431 2432 243.1 486.20000000000005 2431 1976-08-28 2024-10-11 00:40:31.000 1976-08-28 2024-10-11 00:40:31 +2432 2432 2433 243.2 486.40000000000003 2432 1976-08-29 2024-10-11 00:40:32.000 1976-08-29 2024-10-11 00:40:32 +2433 2433 2434 243.3 486.6 2433 1976-08-30 2024-10-11 00:40:33.000 1976-08-30 2024-10-11 00:40:33 +2434 2434 2435 243.4 486.8 2434 1976-08-31 2024-10-11 00:40:34.000 1976-08-31 2024-10-11 00:40:34 +2435 2435 2436 243.5 487 2435 1976-09-01 2024-10-11 00:40:35.000 1976-09-01 2024-10-11 00:40:35 +2436 2436 2437 243.6 487.20000000000005 2436 1976-09-02 2024-10-11 00:40:36.000 1976-09-02 2024-10-11 00:40:36 +2437 2437 2438 243.7 487.40000000000003 2437 1976-09-03 2024-10-11 00:40:37.000 1976-09-03 2024-10-11 00:40:37 +2438 2438 2439 243.8 487.6 2438 1976-09-04 2024-10-11 00:40:38.000 1976-09-04 2024-10-11 00:40:38 +2439 2439 2440 243.9 487.8 2439 1976-09-05 2024-10-11 00:40:39.000 1976-09-05 2024-10-11 00:40:39 +2440 2440 2441 244 488 2440 1976-09-06 2024-10-11 00:40:40.000 1976-09-06 2024-10-11 00:40:40 +2441 2441 2442 244.1 488.20000000000005 2441 1976-09-07 2024-10-11 00:40:41.000 1976-09-07 2024-10-11 00:40:41 +2442 2442 2443 244.2 488.40000000000003 2442 1976-09-08 2024-10-11 00:40:42.000 1976-09-08 2024-10-11 00:40:42 +2443 2443 2444 244.3 488.6 2443 1976-09-09 2024-10-11 00:40:43.000 1976-09-09 2024-10-11 00:40:43 +2444 2444 2445 244.4 488.8 2444 1976-09-10 2024-10-11 00:40:44.000 1976-09-10 2024-10-11 00:40:44 +2445 2445 2446 244.5 489 2445 1976-09-11 2024-10-11 00:40:45.000 1976-09-11 2024-10-11 00:40:45 +2446 2446 2447 244.6 489.20000000000005 2446 1976-09-12 2024-10-11 00:40:46.000 1976-09-12 2024-10-11 00:40:46 +2447 2447 2448 244.7 489.40000000000003 2447 1976-09-13 2024-10-11 00:40:47.000 1976-09-13 2024-10-11 00:40:47 +2448 2448 2449 244.8 489.6 2448 1976-09-14 2024-10-11 00:40:48.000 1976-09-14 2024-10-11 00:40:48 +2449 2449 2450 244.9 489.8 2449 1976-09-15 2024-10-11 00:40:49.000 1976-09-15 2024-10-11 00:40:49 +2450 2450 2451 245 490 2450 1976-09-16 2024-10-11 00:40:50.000 1976-09-16 2024-10-11 00:40:50 +2451 2451 2452 245.1 490.20000000000005 2451 1976-09-17 2024-10-11 00:40:51.000 1976-09-17 2024-10-11 00:40:51 +2452 2452 2453 245.2 490.40000000000003 2452 1976-09-18 2024-10-11 00:40:52.000 1976-09-18 2024-10-11 00:40:52 +2453 2453 2454 245.3 490.6 2453 1976-09-19 2024-10-11 00:40:53.000 1976-09-19 2024-10-11 00:40:53 +2454 2454 2455 245.4 490.8 2454 1976-09-20 2024-10-11 00:40:54.000 1976-09-20 2024-10-11 00:40:54 +2455 2455 2456 245.5 491 2455 1976-09-21 2024-10-11 00:40:55.000 1976-09-21 2024-10-11 00:40:55 +2456 2456 2457 245.6 491.20000000000005 2456 1976-09-22 2024-10-11 00:40:56.000 1976-09-22 2024-10-11 00:40:56 +2457 2457 2458 245.7 491.40000000000003 2457 1976-09-23 2024-10-11 00:40:57.000 1976-09-23 2024-10-11 00:40:57 +2458 2458 2459 245.8 491.6 2458 1976-09-24 2024-10-11 00:40:58.000 1976-09-24 2024-10-11 00:40:58 +2459 2459 2460 245.9 491.8 2459 1976-09-25 2024-10-11 00:40:59.000 1976-09-25 2024-10-11 00:40:59 +2460 2460 2461 246 492 2460 1976-09-26 2024-10-11 00:41:00.000 1976-09-26 2024-10-11 00:41:00 +2461 2461 2462 246.1 492.20000000000005 2461 1976-09-27 2024-10-11 00:41:01.000 1976-09-27 2024-10-11 00:41:01 +2462 2462 2463 246.2 492.40000000000003 2462 1976-09-28 2024-10-11 00:41:02.000 1976-09-28 2024-10-11 00:41:02 +2463 2463 2464 246.3 492.6 2463 1976-09-29 2024-10-11 00:41:03.000 1976-09-29 2024-10-11 00:41:03 +2464 2464 2465 246.4 492.8 2464 1976-09-30 2024-10-11 00:41:04.000 1976-09-30 2024-10-11 00:41:04 +2465 2465 2466 246.5 493 2465 1976-10-01 2024-10-11 00:41:05.000 1976-10-01 2024-10-11 00:41:05 +2466 2466 2467 246.6 493.20000000000005 2466 1976-10-02 2024-10-11 00:41:06.000 1976-10-02 2024-10-11 00:41:06 +2467 2467 2468 246.7 493.40000000000003 2467 1976-10-03 2024-10-11 00:41:07.000 1976-10-03 2024-10-11 00:41:07 +2468 2468 2469 246.8 493.6 2468 1976-10-04 2024-10-11 00:41:08.000 1976-10-04 2024-10-11 00:41:08 +2469 2469 2470 246.9 493.8 2469 1976-10-05 2024-10-11 00:41:09.000 1976-10-05 2024-10-11 00:41:09 +2470 2470 2471 247 494 2470 1976-10-06 2024-10-11 00:41:10.000 1976-10-06 2024-10-11 00:41:10 +2471 2471 2472 247.1 494.20000000000005 2471 1976-10-07 2024-10-11 00:41:11.000 1976-10-07 2024-10-11 00:41:11 +2472 2472 2473 247.2 494.40000000000003 2472 1976-10-08 2024-10-11 00:41:12.000 1976-10-08 2024-10-11 00:41:12 +2473 2473 2474 247.3 494.6 2473 1976-10-09 2024-10-11 00:41:13.000 1976-10-09 2024-10-11 00:41:13 +2474 2474 2475 247.4 494.8 2474 1976-10-10 2024-10-11 00:41:14.000 1976-10-10 2024-10-11 00:41:14 +2475 2475 2476 247.5 495 2475 1976-10-11 2024-10-11 00:41:15.000 1976-10-11 2024-10-11 00:41:15 +2476 2476 2477 247.6 495.20000000000005 2476 1976-10-12 2024-10-11 00:41:16.000 1976-10-12 2024-10-11 00:41:16 +2477 2477 2478 247.7 495.40000000000003 2477 1976-10-13 2024-10-11 00:41:17.000 1976-10-13 2024-10-11 00:41:17 +2478 2478 2479 247.8 495.6 2478 1976-10-14 2024-10-11 00:41:18.000 1976-10-14 2024-10-11 00:41:18 +2479 2479 2480 247.9 495.8 2479 1976-10-15 2024-10-11 00:41:19.000 1976-10-15 2024-10-11 00:41:19 +2480 2480 2481 248 496 2480 1976-10-16 2024-10-11 00:41:20.000 1976-10-16 2024-10-11 00:41:20 +2481 2481 2482 248.1 496.20000000000005 2481 1976-10-17 2024-10-11 00:41:21.000 1976-10-17 2024-10-11 00:41:21 +2482 2482 2483 248.2 496.40000000000003 2482 1976-10-18 2024-10-11 00:41:22.000 1976-10-18 2024-10-11 00:41:22 +2483 2483 2484 248.3 496.6 2483 1976-10-19 2024-10-11 00:41:23.000 1976-10-19 2024-10-11 00:41:23 +2484 2484 2485 248.4 496.8 2484 1976-10-20 2024-10-11 00:41:24.000 1976-10-20 2024-10-11 00:41:24 +2485 2485 2486 248.5 497 2485 1976-10-21 2024-10-11 00:41:25.000 1976-10-21 2024-10-11 00:41:25 +2486 2486 2487 248.6 497.20000000000005 2486 1976-10-22 2024-10-11 00:41:26.000 1976-10-22 2024-10-11 00:41:26 +2487 2487 2488 248.7 497.40000000000003 2487 1976-10-23 2024-10-11 00:41:27.000 1976-10-23 2024-10-11 00:41:27 +2488 2488 2489 248.8 497.6 2488 1976-10-24 2024-10-11 00:41:28.000 1976-10-24 2024-10-11 00:41:28 +2489 2489 2490 248.9 497.8 2489 1976-10-25 2024-10-11 00:41:29.000 1976-10-25 2024-10-11 00:41:29 +2490 2490 2491 249 498 2490 1976-10-26 2024-10-11 00:41:30.000 1976-10-26 2024-10-11 00:41:30 +2491 2491 2492 249.1 498.20000000000005 2491 1976-10-27 2024-10-11 00:41:31.000 1976-10-27 2024-10-11 00:41:31 +2492 2492 2493 249.2 498.40000000000003 2492 1976-10-28 2024-10-11 00:41:32.000 1976-10-28 2024-10-11 00:41:32 +2493 2493 2494 249.3 498.6 2493 1976-10-29 2024-10-11 00:41:33.000 1976-10-29 2024-10-11 00:41:33 +2494 2494 2495 249.4 498.8 2494 1976-10-30 2024-10-11 00:41:34.000 1976-10-30 2024-10-11 00:41:34 +2495 2495 2496 249.5 499 2495 1976-10-31 2024-10-11 00:41:35.000 1976-10-31 2024-10-11 00:41:35 +2496 2496 2497 249.6 499.20000000000005 2496 1976-11-01 2024-10-11 00:41:36.000 1976-11-01 2024-10-11 00:41:36 +2497 2497 2498 249.7 499.40000000000003 2497 1976-11-02 2024-10-11 00:41:37.000 1976-11-02 2024-10-11 00:41:37 +2498 2498 2499 249.8 499.6 2498 1976-11-03 2024-10-11 00:41:38.000 1976-11-03 2024-10-11 00:41:38 +2499 2499 2500 249.9 499.8 2499 1976-11-04 2024-10-11 00:41:39.000 1976-11-04 2024-10-11 00:41:39 +2500 2500 2501 250 500 2500 1976-11-05 2024-10-11 00:41:40.000 1976-11-05 2024-10-11 00:41:40 +2501 2501 2502 250.1 500.20000000000005 2501 1976-11-06 2024-10-11 00:41:41.000 1976-11-06 2024-10-11 00:41:41 +2502 2502 2503 250.2 500.40000000000003 2502 1976-11-07 2024-10-11 00:41:42.000 1976-11-07 2024-10-11 00:41:42 +2503 2503 2504 250.3 500.6 2503 1976-11-08 2024-10-11 00:41:43.000 1976-11-08 2024-10-11 00:41:43 +2504 2504 2505 250.4 500.8 2504 1976-11-09 2024-10-11 00:41:44.000 1976-11-09 2024-10-11 00:41:44 +2505 2505 2506 250.5 501 2505 1976-11-10 2024-10-11 00:41:45.000 1976-11-10 2024-10-11 00:41:45 +2506 2506 2507 250.6 501.20000000000005 2506 1976-11-11 2024-10-11 00:41:46.000 1976-11-11 2024-10-11 00:41:46 +2507 2507 2508 250.7 501.40000000000003 2507 1976-11-12 2024-10-11 00:41:47.000 1976-11-12 2024-10-11 00:41:47 +2508 2508 2509 250.8 501.6 2508 1976-11-13 2024-10-11 00:41:48.000 1976-11-13 2024-10-11 00:41:48 +2509 2509 2510 250.9 501.8 2509 1976-11-14 2024-10-11 00:41:49.000 1976-11-14 2024-10-11 00:41:49 +2510 2510 2511 251 502 2510 1976-11-15 2024-10-11 00:41:50.000 1976-11-15 2024-10-11 00:41:50 +2511 2511 2512 251.1 502.20000000000005 2511 1976-11-16 2024-10-11 00:41:51.000 1976-11-16 2024-10-11 00:41:51 +2512 2512 2513 251.2 502.40000000000003 2512 1976-11-17 2024-10-11 00:41:52.000 1976-11-17 2024-10-11 00:41:52 +2513 2513 2514 251.3 502.6 2513 1976-11-18 2024-10-11 00:41:53.000 1976-11-18 2024-10-11 00:41:53 +2514 2514 2515 251.4 502.8 2514 1976-11-19 2024-10-11 00:41:54.000 1976-11-19 2024-10-11 00:41:54 +2515 2515 2516 251.5 503 2515 1976-11-20 2024-10-11 00:41:55.000 1976-11-20 2024-10-11 00:41:55 +2516 2516 2517 251.6 503.20000000000005 2516 1976-11-21 2024-10-11 00:41:56.000 1976-11-21 2024-10-11 00:41:56 +2517 2517 2518 251.7 503.40000000000003 2517 1976-11-22 2024-10-11 00:41:57.000 1976-11-22 2024-10-11 00:41:57 +2518 2518 2519 251.8 503.6 2518 1976-11-23 2024-10-11 00:41:58.000 1976-11-23 2024-10-11 00:41:58 +2519 2519 2520 251.9 503.8 2519 1976-11-24 2024-10-11 00:41:59.000 1976-11-24 2024-10-11 00:41:59 +2520 2520 2521 252 504 2520 1976-11-25 2024-10-11 00:42:00.000 1976-11-25 2024-10-11 00:42:00 +2521 2521 2522 252.1 504.20000000000005 2521 1976-11-26 2024-10-11 00:42:01.000 1976-11-26 2024-10-11 00:42:01 +2522 2522 2523 252.2 504.40000000000003 2522 1976-11-27 2024-10-11 00:42:02.000 1976-11-27 2024-10-11 00:42:02 +2523 2523 2524 252.3 504.6 2523 1976-11-28 2024-10-11 00:42:03.000 1976-11-28 2024-10-11 00:42:03 +2524 2524 2525 252.4 504.8 2524 1976-11-29 2024-10-11 00:42:04.000 1976-11-29 2024-10-11 00:42:04 +2525 2525 2526 252.5 505 2525 1976-11-30 2024-10-11 00:42:05.000 1976-11-30 2024-10-11 00:42:05 +2526 2526 2527 252.6 505.20000000000005 2526 1976-12-01 2024-10-11 00:42:06.000 1976-12-01 2024-10-11 00:42:06 +2527 2527 2528 252.7 505.40000000000003 2527 1976-12-02 2024-10-11 00:42:07.000 1976-12-02 2024-10-11 00:42:07 +2528 2528 2529 252.8 505.6 2528 1976-12-03 2024-10-11 00:42:08.000 1976-12-03 2024-10-11 00:42:08 +2529 2529 2530 252.9 505.8 2529 1976-12-04 2024-10-11 00:42:09.000 1976-12-04 2024-10-11 00:42:09 +2530 2530 2531 253 506 2530 1976-12-05 2024-10-11 00:42:10.000 1976-12-05 2024-10-11 00:42:10 +2531 2531 2532 253.1 506.20000000000005 2531 1976-12-06 2024-10-11 00:42:11.000 1976-12-06 2024-10-11 00:42:11 +2532 2532 2533 253.2 506.40000000000003 2532 1976-12-07 2024-10-11 00:42:12.000 1976-12-07 2024-10-11 00:42:12 +2533 2533 2534 253.3 506.6 2533 1976-12-08 2024-10-11 00:42:13.000 1976-12-08 2024-10-11 00:42:13 +2534 2534 2535 253.4 506.8 2534 1976-12-09 2024-10-11 00:42:14.000 1976-12-09 2024-10-11 00:42:14 +2535 2535 2536 253.5 507 2535 1976-12-10 2024-10-11 00:42:15.000 1976-12-10 2024-10-11 00:42:15 +2536 2536 2537 253.6 507.20000000000005 2536 1976-12-11 2024-10-11 00:42:16.000 1976-12-11 2024-10-11 00:42:16 +2537 2537 2538 253.7 507.40000000000003 2537 1976-12-12 2024-10-11 00:42:17.000 1976-12-12 2024-10-11 00:42:17 +2538 2538 2539 253.8 507.6 2538 1976-12-13 2024-10-11 00:42:18.000 1976-12-13 2024-10-11 00:42:18 +2539 2539 2540 253.9 507.8 2539 1976-12-14 2024-10-11 00:42:19.000 1976-12-14 2024-10-11 00:42:19 +2540 2540 2541 254 508 2540 1976-12-15 2024-10-11 00:42:20.000 1976-12-15 2024-10-11 00:42:20 +2541 2541 2542 254.1 508.20000000000005 2541 1976-12-16 2024-10-11 00:42:21.000 1976-12-16 2024-10-11 00:42:21 +2542 2542 2543 254.2 508.40000000000003 2542 1976-12-17 2024-10-11 00:42:22.000 1976-12-17 2024-10-11 00:42:22 +2543 2543 2544 254.3 508.6 2543 1976-12-18 2024-10-11 00:42:23.000 1976-12-18 2024-10-11 00:42:23 +2544 2544 2545 254.4 508.8 2544 1976-12-19 2024-10-11 00:42:24.000 1976-12-19 2024-10-11 00:42:24 +2545 2545 2546 254.5 509 2545 1976-12-20 2024-10-11 00:42:25.000 1976-12-20 2024-10-11 00:42:25 +2546 2546 2547 254.6 509.20000000000005 2546 1976-12-21 2024-10-11 00:42:26.000 1976-12-21 2024-10-11 00:42:26 +2547 2547 2548 254.7 509.40000000000003 2547 1976-12-22 2024-10-11 00:42:27.000 1976-12-22 2024-10-11 00:42:27 +2548 2548 2549 254.8 509.6 2548 1976-12-23 2024-10-11 00:42:28.000 1976-12-23 2024-10-11 00:42:28 +2549 2549 2550 254.9 509.8 2549 1976-12-24 2024-10-11 00:42:29.000 1976-12-24 2024-10-11 00:42:29 +2550 2550 2551 255 510 2550 1976-12-25 2024-10-11 00:42:30.000 1976-12-25 2024-10-11 00:42:30 +2551 2551 2552 255.1 510.20000000000005 2551 1976-12-26 2024-10-11 00:42:31.000 1976-12-26 2024-10-11 00:42:31 +2552 2552 2553 255.2 510.40000000000003 2552 1976-12-27 2024-10-11 00:42:32.000 1976-12-27 2024-10-11 00:42:32 +2553 2553 2554 255.3 510.6 2553 1976-12-28 2024-10-11 00:42:33.000 1976-12-28 2024-10-11 00:42:33 +2554 2554 2555 255.4 510.8 2554 1976-12-29 2024-10-11 00:42:34.000 1976-12-29 2024-10-11 00:42:34 +2555 2555 2556 255.5 511 2555 1976-12-30 2024-10-11 00:42:35.000 1976-12-30 2024-10-11 00:42:35 +2556 2556 2557 255.6 511.20000000000005 2556 1976-12-31 2024-10-11 00:42:36.000 1976-12-31 2024-10-11 00:42:36 +2557 2557 2558 255.7 511.40000000000003 2557 1977-01-01 2024-10-11 00:42:37.000 1977-01-01 2024-10-11 00:42:37 +2558 2558 2559 255.8 511.6 2558 1977-01-02 2024-10-11 00:42:38.000 1977-01-02 2024-10-11 00:42:38 +2559 2559 2560 255.9 511.8 2559 1977-01-03 2024-10-11 00:42:39.000 1977-01-03 2024-10-11 00:42:39 +2560 2560 2561 256 512 2560 1977-01-04 2024-10-11 00:42:40.000 1977-01-04 2024-10-11 00:42:40 +2561 2561 2562 256.1 512.2 2561 1977-01-05 2024-10-11 00:42:41.000 1977-01-05 2024-10-11 00:42:41 +2562 2562 2563 256.2 512.4 2562 1977-01-06 2024-10-11 00:42:42.000 1977-01-06 2024-10-11 00:42:42 +2563 2563 2564 256.3 512.6 2563 1977-01-07 2024-10-11 00:42:43.000 1977-01-07 2024-10-11 00:42:43 +2564 2564 2565 256.4 512.8000000000001 2564 1977-01-08 2024-10-11 00:42:44.000 1977-01-08 2024-10-11 00:42:44 +2565 2565 2566 256.5 513 2565 1977-01-09 2024-10-11 00:42:45.000 1977-01-09 2024-10-11 00:42:45 +2566 2566 2567 256.6 513.2 2566 1977-01-10 2024-10-11 00:42:46.000 1977-01-10 2024-10-11 00:42:46 +2567 2567 2568 256.7 513.4 2567 1977-01-11 2024-10-11 00:42:47.000 1977-01-11 2024-10-11 00:42:47 +2568 2568 2569 256.8 513.6 2568 1977-01-12 2024-10-11 00:42:48.000 1977-01-12 2024-10-11 00:42:48 +2569 2569 2570 256.9 513.8000000000001 2569 1977-01-13 2024-10-11 00:42:49.000 1977-01-13 2024-10-11 00:42:49 +2570 2570 2571 257 514 2570 1977-01-14 2024-10-11 00:42:50.000 1977-01-14 2024-10-11 00:42:50 +2571 2571 2572 257.1 514.2 2571 1977-01-15 2024-10-11 00:42:51.000 1977-01-15 2024-10-11 00:42:51 +2572 2572 2573 257.2 514.4 2572 1977-01-16 2024-10-11 00:42:52.000 1977-01-16 2024-10-11 00:42:52 +2573 2573 2574 257.3 514.6 2573 1977-01-17 2024-10-11 00:42:53.000 1977-01-17 2024-10-11 00:42:53 +2574 2574 2575 257.4 514.8000000000001 2574 1977-01-18 2024-10-11 00:42:54.000 1977-01-18 2024-10-11 00:42:54 +2575 2575 2576 257.5 515 2575 1977-01-19 2024-10-11 00:42:55.000 1977-01-19 2024-10-11 00:42:55 +2576 2576 2577 257.6 515.2 2576 1977-01-20 2024-10-11 00:42:56.000 1977-01-20 2024-10-11 00:42:56 +2577 2577 2578 257.7 515.4 2577 1977-01-21 2024-10-11 00:42:57.000 1977-01-21 2024-10-11 00:42:57 +2578 2578 2579 257.8 515.6 2578 1977-01-22 2024-10-11 00:42:58.000 1977-01-22 2024-10-11 00:42:58 +2579 2579 2580 257.9 515.8000000000001 2579 1977-01-23 2024-10-11 00:42:59.000 1977-01-23 2024-10-11 00:42:59 +2580 2580 2581 258 516 2580 1977-01-24 2024-10-11 00:43:00.000 1977-01-24 2024-10-11 00:43:00 +2581 2581 2582 258.1 516.2 2581 1977-01-25 2024-10-11 00:43:01.000 1977-01-25 2024-10-11 00:43:01 +2582 2582 2583 258.2 516.4 2582 1977-01-26 2024-10-11 00:43:02.000 1977-01-26 2024-10-11 00:43:02 +2583 2583 2584 258.3 516.6 2583 1977-01-27 2024-10-11 00:43:03.000 1977-01-27 2024-10-11 00:43:03 +2584 2584 2585 258.4 516.8000000000001 2584 1977-01-28 2024-10-11 00:43:04.000 1977-01-28 2024-10-11 00:43:04 +2585 2585 2586 258.5 517 2585 1977-01-29 2024-10-11 00:43:05.000 1977-01-29 2024-10-11 00:43:05 +2586 2586 2587 258.6 517.2 2586 1977-01-30 2024-10-11 00:43:06.000 1977-01-30 2024-10-11 00:43:06 +2587 2587 2588 258.7 517.4 2587 1977-01-31 2024-10-11 00:43:07.000 1977-01-31 2024-10-11 00:43:07 +2588 2588 2589 258.8 517.6 2588 1977-02-01 2024-10-11 00:43:08.000 1977-02-01 2024-10-11 00:43:08 +2589 2589 2590 258.9 517.8000000000001 2589 1977-02-02 2024-10-11 00:43:09.000 1977-02-02 2024-10-11 00:43:09 +2590 2590 2591 259 518 2590 1977-02-03 2024-10-11 00:43:10.000 1977-02-03 2024-10-11 00:43:10 +2591 2591 2592 259.1 518.2 2591 1977-02-04 2024-10-11 00:43:11.000 1977-02-04 2024-10-11 00:43:11 +2592 2592 2593 259.2 518.4 2592 1977-02-05 2024-10-11 00:43:12.000 1977-02-05 2024-10-11 00:43:12 +2593 2593 2594 259.3 518.6 2593 1977-02-06 2024-10-11 00:43:13.000 1977-02-06 2024-10-11 00:43:13 +2594 2594 2595 259.4 518.8000000000001 2594 1977-02-07 2024-10-11 00:43:14.000 1977-02-07 2024-10-11 00:43:14 +2595 2595 2596 259.5 519 2595 1977-02-08 2024-10-11 00:43:15.000 1977-02-08 2024-10-11 00:43:15 +2596 2596 2597 259.6 519.2 2596 1977-02-09 2024-10-11 00:43:16.000 1977-02-09 2024-10-11 00:43:16 +2597 2597 2598 259.7 519.4 2597 1977-02-10 2024-10-11 00:43:17.000 1977-02-10 2024-10-11 00:43:17 +2598 2598 2599 259.8 519.6 2598 1977-02-11 2024-10-11 00:43:18.000 1977-02-11 2024-10-11 00:43:18 +2599 2599 2600 259.9 519.8000000000001 2599 1977-02-12 2024-10-11 00:43:19.000 1977-02-12 2024-10-11 00:43:19 +2600 2600 2601 260 520 2600 1977-02-13 2024-10-11 00:43:20.000 1977-02-13 2024-10-11 00:43:20 +2601 2601 2602 260.1 520.2 2601 1977-02-14 2024-10-11 00:43:21.000 1977-02-14 2024-10-11 00:43:21 +2602 2602 2603 260.2 520.4 2602 1977-02-15 2024-10-11 00:43:22.000 1977-02-15 2024-10-11 00:43:22 +2603 2603 2604 260.3 520.6 2603 1977-02-16 2024-10-11 00:43:23.000 1977-02-16 2024-10-11 00:43:23 +2604 2604 2605 260.4 520.8000000000001 2604 1977-02-17 2024-10-11 00:43:24.000 1977-02-17 2024-10-11 00:43:24 +2605 2605 2606 260.5 521 2605 1977-02-18 2024-10-11 00:43:25.000 1977-02-18 2024-10-11 00:43:25 +2606 2606 2607 260.6 521.2 2606 1977-02-19 2024-10-11 00:43:26.000 1977-02-19 2024-10-11 00:43:26 +2607 2607 2608 260.7 521.4 2607 1977-02-20 2024-10-11 00:43:27.000 1977-02-20 2024-10-11 00:43:27 +2608 2608 2609 260.8 521.6 2608 1977-02-21 2024-10-11 00:43:28.000 1977-02-21 2024-10-11 00:43:28 +2609 2609 2610 260.9 521.8000000000001 2609 1977-02-22 2024-10-11 00:43:29.000 1977-02-22 2024-10-11 00:43:29 +2610 2610 2611 261 522 2610 1977-02-23 2024-10-11 00:43:30.000 1977-02-23 2024-10-11 00:43:30 +2611 2611 2612 261.1 522.2 2611 1977-02-24 2024-10-11 00:43:31.000 1977-02-24 2024-10-11 00:43:31 +2612 2612 2613 261.2 522.4 2612 1977-02-25 2024-10-11 00:43:32.000 1977-02-25 2024-10-11 00:43:32 +2613 2613 2614 261.3 522.6 2613 1977-02-26 2024-10-11 00:43:33.000 1977-02-26 2024-10-11 00:43:33 +2614 2614 2615 261.4 522.8000000000001 2614 1977-02-27 2024-10-11 00:43:34.000 1977-02-27 2024-10-11 00:43:34 +2615 2615 2616 261.5 523 2615 1977-02-28 2024-10-11 00:43:35.000 1977-02-28 2024-10-11 00:43:35 +2616 2616 2617 261.6 523.2 2616 1977-03-01 2024-10-11 00:43:36.000 1977-03-01 2024-10-11 00:43:36 +2617 2617 2618 261.7 523.4 2617 1977-03-02 2024-10-11 00:43:37.000 1977-03-02 2024-10-11 00:43:37 +2618 2618 2619 261.8 523.6 2618 1977-03-03 2024-10-11 00:43:38.000 1977-03-03 2024-10-11 00:43:38 +2619 2619 2620 261.9 523.8000000000001 2619 1977-03-04 2024-10-11 00:43:39.000 1977-03-04 2024-10-11 00:43:39 +2620 2620 2621 262 524 2620 1977-03-05 2024-10-11 00:43:40.000 1977-03-05 2024-10-11 00:43:40 +2621 2621 2622 262.1 524.2 2621 1977-03-06 2024-10-11 00:43:41.000 1977-03-06 2024-10-11 00:43:41 +2622 2622 2623 262.2 524.4 2622 1977-03-07 2024-10-11 00:43:42.000 1977-03-07 2024-10-11 00:43:42 +2623 2623 2624 262.3 524.6 2623 1977-03-08 2024-10-11 00:43:43.000 1977-03-08 2024-10-11 00:43:43 +2624 2624 2625 262.4 524.8000000000001 2624 1977-03-09 2024-10-11 00:43:44.000 1977-03-09 2024-10-11 00:43:44 +2625 2625 2626 262.5 525 2625 1977-03-10 2024-10-11 00:43:45.000 1977-03-10 2024-10-11 00:43:45 +2626 2626 2627 262.6 525.2 2626 1977-03-11 2024-10-11 00:43:46.000 1977-03-11 2024-10-11 00:43:46 +2627 2627 2628 262.7 525.4 2627 1977-03-12 2024-10-11 00:43:47.000 1977-03-12 2024-10-11 00:43:47 +2628 2628 2629 262.8 525.6 2628 1977-03-13 2024-10-11 00:43:48.000 1977-03-13 2024-10-11 00:43:48 +2629 2629 2630 262.9 525.8000000000001 2629 1977-03-14 2024-10-11 00:43:49.000 1977-03-14 2024-10-11 00:43:49 +2630 2630 2631 263 526 2630 1977-03-15 2024-10-11 00:43:50.000 1977-03-15 2024-10-11 00:43:50 +2631 2631 2632 263.1 526.2 2631 1977-03-16 2024-10-11 00:43:51.000 1977-03-16 2024-10-11 00:43:51 +2632 2632 2633 263.2 526.4 2632 1977-03-17 2024-10-11 00:43:52.000 1977-03-17 2024-10-11 00:43:52 +2633 2633 2634 263.3 526.6 2633 1977-03-18 2024-10-11 00:43:53.000 1977-03-18 2024-10-11 00:43:53 +2634 2634 2635 263.4 526.8000000000001 2634 1977-03-19 2024-10-11 00:43:54.000 1977-03-19 2024-10-11 00:43:54 +2635 2635 2636 263.5 527 2635 1977-03-20 2024-10-11 00:43:55.000 1977-03-20 2024-10-11 00:43:55 +2636 2636 2637 263.6 527.2 2636 1977-03-21 2024-10-11 00:43:56.000 1977-03-21 2024-10-11 00:43:56 +2637 2637 2638 263.7 527.4 2637 1977-03-22 2024-10-11 00:43:57.000 1977-03-22 2024-10-11 00:43:57 +2638 2638 2639 263.8 527.6 2638 1977-03-23 2024-10-11 00:43:58.000 1977-03-23 2024-10-11 00:43:58 +2639 2639 2640 263.9 527.8000000000001 2639 1977-03-24 2024-10-11 00:43:59.000 1977-03-24 2024-10-11 00:43:59 +2640 2640 2641 264 528 2640 1977-03-25 2024-10-11 00:44:00.000 1977-03-25 2024-10-11 00:44:00 +2641 2641 2642 264.1 528.2 2641 1977-03-26 2024-10-11 00:44:01.000 1977-03-26 2024-10-11 00:44:01 +2642 2642 2643 264.2 528.4 2642 1977-03-27 2024-10-11 00:44:02.000 1977-03-27 2024-10-11 00:44:02 +2643 2643 2644 264.3 528.6 2643 1977-03-28 2024-10-11 00:44:03.000 1977-03-28 2024-10-11 00:44:03 +2644 2644 2645 264.4 528.8000000000001 2644 1977-03-29 2024-10-11 00:44:04.000 1977-03-29 2024-10-11 00:44:04 +2645 2645 2646 264.5 529 2645 1977-03-30 2024-10-11 00:44:05.000 1977-03-30 2024-10-11 00:44:05 +2646 2646 2647 264.6 529.2 2646 1977-03-31 2024-10-11 00:44:06.000 1977-03-31 2024-10-11 00:44:06 +2647 2647 2648 264.7 529.4 2647 1977-04-01 2024-10-11 00:44:07.000 1977-04-01 2024-10-11 00:44:07 +2648 2648 2649 264.8 529.6 2648 1977-04-02 2024-10-11 00:44:08.000 1977-04-02 2024-10-11 00:44:08 +2649 2649 2650 264.9 529.8000000000001 2649 1977-04-03 2024-10-11 00:44:09.000 1977-04-03 2024-10-11 00:44:09 +2650 2650 2651 265 530 2650 1977-04-04 2024-10-11 00:44:10.000 1977-04-04 2024-10-11 00:44:10 +2651 2651 2652 265.1 530.2 2651 1977-04-05 2024-10-11 00:44:11.000 1977-04-05 2024-10-11 00:44:11 +2652 2652 2653 265.2 530.4 2652 1977-04-06 2024-10-11 00:44:12.000 1977-04-06 2024-10-11 00:44:12 +2653 2653 2654 265.3 530.6 2653 1977-04-07 2024-10-11 00:44:13.000 1977-04-07 2024-10-11 00:44:13 +2654 2654 2655 265.4 530.8000000000001 2654 1977-04-08 2024-10-11 00:44:14.000 1977-04-08 2024-10-11 00:44:14 +2655 2655 2656 265.5 531 2655 1977-04-09 2024-10-11 00:44:15.000 1977-04-09 2024-10-11 00:44:15 +2656 2656 2657 265.6 531.2 2656 1977-04-10 2024-10-11 00:44:16.000 1977-04-10 2024-10-11 00:44:16 +2657 2657 2658 265.7 531.4 2657 1977-04-11 2024-10-11 00:44:17.000 1977-04-11 2024-10-11 00:44:17 +2658 2658 2659 265.8 531.6 2658 1977-04-12 2024-10-11 00:44:18.000 1977-04-12 2024-10-11 00:44:18 +2659 2659 2660 265.9 531.8000000000001 2659 1977-04-13 2024-10-11 00:44:19.000 1977-04-13 2024-10-11 00:44:19 +2660 2660 2661 266 532 2660 1977-04-14 2024-10-11 00:44:20.000 1977-04-14 2024-10-11 00:44:20 +2661 2661 2662 266.1 532.2 2661 1977-04-15 2024-10-11 00:44:21.000 1977-04-15 2024-10-11 00:44:21 +2662 2662 2663 266.2 532.4 2662 1977-04-16 2024-10-11 00:44:22.000 1977-04-16 2024-10-11 00:44:22 +2663 2663 2664 266.3 532.6 2663 1977-04-17 2024-10-11 00:44:23.000 1977-04-17 2024-10-11 00:44:23 +2664 2664 2665 266.4 532.8000000000001 2664 1977-04-18 2024-10-11 00:44:24.000 1977-04-18 2024-10-11 00:44:24 +2665 2665 2666 266.5 533 2665 1977-04-19 2024-10-11 00:44:25.000 1977-04-19 2024-10-11 00:44:25 +2666 2666 2667 266.6 533.2 2666 1977-04-20 2024-10-11 00:44:26.000 1977-04-20 2024-10-11 00:44:26 +2667 2667 2668 266.7 533.4 2667 1977-04-21 2024-10-11 00:44:27.000 1977-04-21 2024-10-11 00:44:27 +2668 2668 2669 266.8 533.6 2668 1977-04-22 2024-10-11 00:44:28.000 1977-04-22 2024-10-11 00:44:28 +2669 2669 2670 266.9 533.8000000000001 2669 1977-04-23 2024-10-11 00:44:29.000 1977-04-23 2024-10-11 00:44:29 +2670 2670 2671 267 534 2670 1977-04-24 2024-10-11 00:44:30.000 1977-04-24 2024-10-11 00:44:30 +2671 2671 2672 267.1 534.2 2671 1977-04-25 2024-10-11 00:44:31.000 1977-04-25 2024-10-11 00:44:31 +2672 2672 2673 267.2 534.4 2672 1977-04-26 2024-10-11 00:44:32.000 1977-04-26 2024-10-11 00:44:32 +2673 2673 2674 267.3 534.6 2673 1977-04-27 2024-10-11 00:44:33.000 1977-04-27 2024-10-11 00:44:33 +2674 2674 2675 267.4 534.8000000000001 2674 1977-04-28 2024-10-11 00:44:34.000 1977-04-28 2024-10-11 00:44:34 +2675 2675 2676 267.5 535 2675 1977-04-29 2024-10-11 00:44:35.000 1977-04-29 2024-10-11 00:44:35 +2676 2676 2677 267.6 535.2 2676 1977-04-30 2024-10-11 00:44:36.000 1977-04-30 2024-10-11 00:44:36 +2677 2677 2678 267.7 535.4 2677 1977-05-01 2024-10-11 00:44:37.000 1977-05-01 2024-10-11 00:44:37 +2678 2678 2679 267.8 535.6 2678 1977-05-02 2024-10-11 00:44:38.000 1977-05-02 2024-10-11 00:44:38 +2679 2679 2680 267.9 535.8000000000001 2679 1977-05-03 2024-10-11 00:44:39.000 1977-05-03 2024-10-11 00:44:39 +2680 2680 2681 268 536 2680 1977-05-04 2024-10-11 00:44:40.000 1977-05-04 2024-10-11 00:44:40 +2681 2681 2682 268.1 536.2 2681 1977-05-05 2024-10-11 00:44:41.000 1977-05-05 2024-10-11 00:44:41 +2682 2682 2683 268.2 536.4 2682 1977-05-06 2024-10-11 00:44:42.000 1977-05-06 2024-10-11 00:44:42 +2683 2683 2684 268.3 536.6 2683 1977-05-07 2024-10-11 00:44:43.000 1977-05-07 2024-10-11 00:44:43 +2684 2684 2685 268.4 536.8000000000001 2684 1977-05-08 2024-10-11 00:44:44.000 1977-05-08 2024-10-11 00:44:44 +2685 2685 2686 268.5 537 2685 1977-05-09 2024-10-11 00:44:45.000 1977-05-09 2024-10-11 00:44:45 +2686 2686 2687 268.6 537.2 2686 1977-05-10 2024-10-11 00:44:46.000 1977-05-10 2024-10-11 00:44:46 +2687 2687 2688 268.7 537.4 2687 1977-05-11 2024-10-11 00:44:47.000 1977-05-11 2024-10-11 00:44:47 +2688 2688 2689 268.8 537.6 2688 1977-05-12 2024-10-11 00:44:48.000 1977-05-12 2024-10-11 00:44:48 +2689 2689 2690 268.9 537.8000000000001 2689 1977-05-13 2024-10-11 00:44:49.000 1977-05-13 2024-10-11 00:44:49 +2690 2690 2691 269 538 2690 1977-05-14 2024-10-11 00:44:50.000 1977-05-14 2024-10-11 00:44:50 +2691 2691 2692 269.1 538.2 2691 1977-05-15 2024-10-11 00:44:51.000 1977-05-15 2024-10-11 00:44:51 +2692 2692 2693 269.2 538.4 2692 1977-05-16 2024-10-11 00:44:52.000 1977-05-16 2024-10-11 00:44:52 +2693 2693 2694 269.3 538.6 2693 1977-05-17 2024-10-11 00:44:53.000 1977-05-17 2024-10-11 00:44:53 +2694 2694 2695 269.4 538.8000000000001 2694 1977-05-18 2024-10-11 00:44:54.000 1977-05-18 2024-10-11 00:44:54 +2695 2695 2696 269.5 539 2695 1977-05-19 2024-10-11 00:44:55.000 1977-05-19 2024-10-11 00:44:55 +2696 2696 2697 269.6 539.2 2696 1977-05-20 2024-10-11 00:44:56.000 1977-05-20 2024-10-11 00:44:56 +2697 2697 2698 269.7 539.4 2697 1977-05-21 2024-10-11 00:44:57.000 1977-05-21 2024-10-11 00:44:57 +2698 2698 2699 269.8 539.6 2698 1977-05-22 2024-10-11 00:44:58.000 1977-05-22 2024-10-11 00:44:58 +2699 2699 2700 269.9 539.8000000000001 2699 1977-05-23 2024-10-11 00:44:59.000 1977-05-23 2024-10-11 00:44:59 +2700 2700 2701 270 540 2700 1977-05-24 2024-10-11 00:45:00.000 1977-05-24 2024-10-11 00:45:00 +2701 2701 2702 270.1 540.2 2701 1977-05-25 2024-10-11 00:45:01.000 1977-05-25 2024-10-11 00:45:01 +2702 2702 2703 270.2 540.4 2702 1977-05-26 2024-10-11 00:45:02.000 1977-05-26 2024-10-11 00:45:02 +2703 2703 2704 270.3 540.6 2703 1977-05-27 2024-10-11 00:45:03.000 1977-05-27 2024-10-11 00:45:03 +2704 2704 2705 270.4 540.8000000000001 2704 1977-05-28 2024-10-11 00:45:04.000 1977-05-28 2024-10-11 00:45:04 +2705 2705 2706 270.5 541 2705 1977-05-29 2024-10-11 00:45:05.000 1977-05-29 2024-10-11 00:45:05 +2706 2706 2707 270.6 541.2 2706 1977-05-30 2024-10-11 00:45:06.000 1977-05-30 2024-10-11 00:45:06 +2707 2707 2708 270.7 541.4 2707 1977-05-31 2024-10-11 00:45:07.000 1977-05-31 2024-10-11 00:45:07 +2708 2708 2709 270.8 541.6 2708 1977-06-01 2024-10-11 00:45:08.000 1977-06-01 2024-10-11 00:45:08 +2709 2709 2710 270.9 541.8000000000001 2709 1977-06-02 2024-10-11 00:45:09.000 1977-06-02 2024-10-11 00:45:09 +2710 2710 2711 271 542 2710 1977-06-03 2024-10-11 00:45:10.000 1977-06-03 2024-10-11 00:45:10 +2711 2711 2712 271.1 542.2 2711 1977-06-04 2024-10-11 00:45:11.000 1977-06-04 2024-10-11 00:45:11 +2712 2712 2713 271.2 542.4 2712 1977-06-05 2024-10-11 00:45:12.000 1977-06-05 2024-10-11 00:45:12 +2713 2713 2714 271.3 542.6 2713 1977-06-06 2024-10-11 00:45:13.000 1977-06-06 2024-10-11 00:45:13 +2714 2714 2715 271.4 542.8000000000001 2714 1977-06-07 2024-10-11 00:45:14.000 1977-06-07 2024-10-11 00:45:14 +2715 2715 2716 271.5 543 2715 1977-06-08 2024-10-11 00:45:15.000 1977-06-08 2024-10-11 00:45:15 +2716 2716 2717 271.6 543.2 2716 1977-06-09 2024-10-11 00:45:16.000 1977-06-09 2024-10-11 00:45:16 +2717 2717 2718 271.7 543.4 2717 1977-06-10 2024-10-11 00:45:17.000 1977-06-10 2024-10-11 00:45:17 +2718 2718 2719 271.8 543.6 2718 1977-06-11 2024-10-11 00:45:18.000 1977-06-11 2024-10-11 00:45:18 +2719 2719 2720 271.9 543.8000000000001 2719 1977-06-12 2024-10-11 00:45:19.000 1977-06-12 2024-10-11 00:45:19 +2720 2720 2721 272 544 2720 1977-06-13 2024-10-11 00:45:20.000 1977-06-13 2024-10-11 00:45:20 +2721 2721 2722 272.1 544.2 2721 1977-06-14 2024-10-11 00:45:21.000 1977-06-14 2024-10-11 00:45:21 +2722 2722 2723 272.2 544.4 2722 1977-06-15 2024-10-11 00:45:22.000 1977-06-15 2024-10-11 00:45:22 +2723 2723 2724 272.3 544.6 2723 1977-06-16 2024-10-11 00:45:23.000 1977-06-16 2024-10-11 00:45:23 +2724 2724 2725 272.4 544.8000000000001 2724 1977-06-17 2024-10-11 00:45:24.000 1977-06-17 2024-10-11 00:45:24 +2725 2725 2726 272.5 545 2725 1977-06-18 2024-10-11 00:45:25.000 1977-06-18 2024-10-11 00:45:25 +2726 2726 2727 272.6 545.2 2726 1977-06-19 2024-10-11 00:45:26.000 1977-06-19 2024-10-11 00:45:26 +2727 2727 2728 272.7 545.4 2727 1977-06-20 2024-10-11 00:45:27.000 1977-06-20 2024-10-11 00:45:27 +2728 2728 2729 272.8 545.6 2728 1977-06-21 2024-10-11 00:45:28.000 1977-06-21 2024-10-11 00:45:28 +2729 2729 2730 272.9 545.8000000000001 2729 1977-06-22 2024-10-11 00:45:29.000 1977-06-22 2024-10-11 00:45:29 +2730 2730 2731 273 546 2730 1977-06-23 2024-10-11 00:45:30.000 1977-06-23 2024-10-11 00:45:30 +2731 2731 2732 273.1 546.2 2731 1977-06-24 2024-10-11 00:45:31.000 1977-06-24 2024-10-11 00:45:31 +2732 2732 2733 273.2 546.4 2732 1977-06-25 2024-10-11 00:45:32.000 1977-06-25 2024-10-11 00:45:32 +2733 2733 2734 273.3 546.6 2733 1977-06-26 2024-10-11 00:45:33.000 1977-06-26 2024-10-11 00:45:33 +2734 2734 2735 273.4 546.8000000000001 2734 1977-06-27 2024-10-11 00:45:34.000 1977-06-27 2024-10-11 00:45:34 +2735 2735 2736 273.5 547 2735 1977-06-28 2024-10-11 00:45:35.000 1977-06-28 2024-10-11 00:45:35 +2736 2736 2737 273.6 547.2 2736 1977-06-29 2024-10-11 00:45:36.000 1977-06-29 2024-10-11 00:45:36 +2737 2737 2738 273.7 547.4 2737 1977-06-30 2024-10-11 00:45:37.000 1977-06-30 2024-10-11 00:45:37 +2738 2738 2739 273.8 547.6 2738 1977-07-01 2024-10-11 00:45:38.000 1977-07-01 2024-10-11 00:45:38 +2739 2739 2740 273.9 547.8000000000001 2739 1977-07-02 2024-10-11 00:45:39.000 1977-07-02 2024-10-11 00:45:39 +2740 2740 2741 274 548 2740 1977-07-03 2024-10-11 00:45:40.000 1977-07-03 2024-10-11 00:45:40 +2741 2741 2742 274.1 548.2 2741 1977-07-04 2024-10-11 00:45:41.000 1977-07-04 2024-10-11 00:45:41 +2742 2742 2743 274.2 548.4 2742 1977-07-05 2024-10-11 00:45:42.000 1977-07-05 2024-10-11 00:45:42 +2743 2743 2744 274.3 548.6 2743 1977-07-06 2024-10-11 00:45:43.000 1977-07-06 2024-10-11 00:45:43 +2744 2744 2745 274.4 548.8000000000001 2744 1977-07-07 2024-10-11 00:45:44.000 1977-07-07 2024-10-11 00:45:44 +2745 2745 2746 274.5 549 2745 1977-07-08 2024-10-11 00:45:45.000 1977-07-08 2024-10-11 00:45:45 +2746 2746 2747 274.6 549.2 2746 1977-07-09 2024-10-11 00:45:46.000 1977-07-09 2024-10-11 00:45:46 +2747 2747 2748 274.7 549.4 2747 1977-07-10 2024-10-11 00:45:47.000 1977-07-10 2024-10-11 00:45:47 +2748 2748 2749 274.8 549.6 2748 1977-07-11 2024-10-11 00:45:48.000 1977-07-11 2024-10-11 00:45:48 +2749 2749 2750 274.9 549.8000000000001 2749 1977-07-12 2024-10-11 00:45:49.000 1977-07-12 2024-10-11 00:45:49 +2750 2750 2751 275 550 2750 1977-07-13 2024-10-11 00:45:50.000 1977-07-13 2024-10-11 00:45:50 +2751 2751 2752 275.1 550.2 2751 1977-07-14 2024-10-11 00:45:51.000 1977-07-14 2024-10-11 00:45:51 +2752 2752 2753 275.2 550.4 2752 1977-07-15 2024-10-11 00:45:52.000 1977-07-15 2024-10-11 00:45:52 +2753 2753 2754 275.3 550.6 2753 1977-07-16 2024-10-11 00:45:53.000 1977-07-16 2024-10-11 00:45:53 +2754 2754 2755 275.4 550.8000000000001 2754 1977-07-17 2024-10-11 00:45:54.000 1977-07-17 2024-10-11 00:45:54 +2755 2755 2756 275.5 551 2755 1977-07-18 2024-10-11 00:45:55.000 1977-07-18 2024-10-11 00:45:55 +2756 2756 2757 275.6 551.2 2756 1977-07-19 2024-10-11 00:45:56.000 1977-07-19 2024-10-11 00:45:56 +2757 2757 2758 275.7 551.4 2757 1977-07-20 2024-10-11 00:45:57.000 1977-07-20 2024-10-11 00:45:57 +2758 2758 2759 275.8 551.6 2758 1977-07-21 2024-10-11 00:45:58.000 1977-07-21 2024-10-11 00:45:58 +2759 2759 2760 275.9 551.8000000000001 2759 1977-07-22 2024-10-11 00:45:59.000 1977-07-22 2024-10-11 00:45:59 +2760 2760 2761 276 552 2760 1977-07-23 2024-10-11 00:46:00.000 1977-07-23 2024-10-11 00:46:00 +2761 2761 2762 276.1 552.2 2761 1977-07-24 2024-10-11 00:46:01.000 1977-07-24 2024-10-11 00:46:01 +2762 2762 2763 276.2 552.4 2762 1977-07-25 2024-10-11 00:46:02.000 1977-07-25 2024-10-11 00:46:02 +2763 2763 2764 276.3 552.6 2763 1977-07-26 2024-10-11 00:46:03.000 1977-07-26 2024-10-11 00:46:03 +2764 2764 2765 276.4 552.8000000000001 2764 1977-07-27 2024-10-11 00:46:04.000 1977-07-27 2024-10-11 00:46:04 +2765 2765 2766 276.5 553 2765 1977-07-28 2024-10-11 00:46:05.000 1977-07-28 2024-10-11 00:46:05 +2766 2766 2767 276.6 553.2 2766 1977-07-29 2024-10-11 00:46:06.000 1977-07-29 2024-10-11 00:46:06 +2767 2767 2768 276.7 553.4 2767 1977-07-30 2024-10-11 00:46:07.000 1977-07-30 2024-10-11 00:46:07 +2768 2768 2769 276.8 553.6 2768 1977-07-31 2024-10-11 00:46:08.000 1977-07-31 2024-10-11 00:46:08 +2769 2769 2770 276.9 553.8000000000001 2769 1977-08-01 2024-10-11 00:46:09.000 1977-08-01 2024-10-11 00:46:09 +2770 2770 2771 277 554 2770 1977-08-02 2024-10-11 00:46:10.000 1977-08-02 2024-10-11 00:46:10 +2771 2771 2772 277.1 554.2 2771 1977-08-03 2024-10-11 00:46:11.000 1977-08-03 2024-10-11 00:46:11 +2772 2772 2773 277.2 554.4 2772 1977-08-04 2024-10-11 00:46:12.000 1977-08-04 2024-10-11 00:46:12 +2773 2773 2774 277.3 554.6 2773 1977-08-05 2024-10-11 00:46:13.000 1977-08-05 2024-10-11 00:46:13 +2774 2774 2775 277.4 554.8000000000001 2774 1977-08-06 2024-10-11 00:46:14.000 1977-08-06 2024-10-11 00:46:14 +2775 2775 2776 277.5 555 2775 1977-08-07 2024-10-11 00:46:15.000 1977-08-07 2024-10-11 00:46:15 +2776 2776 2777 277.6 555.2 2776 1977-08-08 2024-10-11 00:46:16.000 1977-08-08 2024-10-11 00:46:16 +2777 2777 2778 277.7 555.4 2777 1977-08-09 2024-10-11 00:46:17.000 1977-08-09 2024-10-11 00:46:17 +2778 2778 2779 277.8 555.6 2778 1977-08-10 2024-10-11 00:46:18.000 1977-08-10 2024-10-11 00:46:18 +2779 2779 2780 277.9 555.8000000000001 2779 1977-08-11 2024-10-11 00:46:19.000 1977-08-11 2024-10-11 00:46:19 +2780 2780 2781 278 556 2780 1977-08-12 2024-10-11 00:46:20.000 1977-08-12 2024-10-11 00:46:20 +2781 2781 2782 278.1 556.2 2781 1977-08-13 2024-10-11 00:46:21.000 1977-08-13 2024-10-11 00:46:21 +2782 2782 2783 278.2 556.4 2782 1977-08-14 2024-10-11 00:46:22.000 1977-08-14 2024-10-11 00:46:22 +2783 2783 2784 278.3 556.6 2783 1977-08-15 2024-10-11 00:46:23.000 1977-08-15 2024-10-11 00:46:23 +2784 2784 2785 278.4 556.8000000000001 2784 1977-08-16 2024-10-11 00:46:24.000 1977-08-16 2024-10-11 00:46:24 +2785 2785 2786 278.5 557 2785 1977-08-17 2024-10-11 00:46:25.000 1977-08-17 2024-10-11 00:46:25 +2786 2786 2787 278.6 557.2 2786 1977-08-18 2024-10-11 00:46:26.000 1977-08-18 2024-10-11 00:46:26 +2787 2787 2788 278.7 557.4 2787 1977-08-19 2024-10-11 00:46:27.000 1977-08-19 2024-10-11 00:46:27 +2788 2788 2789 278.8 557.6 2788 1977-08-20 2024-10-11 00:46:28.000 1977-08-20 2024-10-11 00:46:28 +2789 2789 2790 278.9 557.8000000000001 2789 1977-08-21 2024-10-11 00:46:29.000 1977-08-21 2024-10-11 00:46:29 +2790 2790 2791 279 558 2790 1977-08-22 2024-10-11 00:46:30.000 1977-08-22 2024-10-11 00:46:30 +2791 2791 2792 279.1 558.2 2791 1977-08-23 2024-10-11 00:46:31.000 1977-08-23 2024-10-11 00:46:31 +2792 2792 2793 279.2 558.4 2792 1977-08-24 2024-10-11 00:46:32.000 1977-08-24 2024-10-11 00:46:32 +2793 2793 2794 279.3 558.6 2793 1977-08-25 2024-10-11 00:46:33.000 1977-08-25 2024-10-11 00:46:33 +2794 2794 2795 279.4 558.8000000000001 2794 1977-08-26 2024-10-11 00:46:34.000 1977-08-26 2024-10-11 00:46:34 +2795 2795 2796 279.5 559 2795 1977-08-27 2024-10-11 00:46:35.000 1977-08-27 2024-10-11 00:46:35 +2796 2796 2797 279.6 559.2 2796 1977-08-28 2024-10-11 00:46:36.000 1977-08-28 2024-10-11 00:46:36 +2797 2797 2798 279.7 559.4 2797 1977-08-29 2024-10-11 00:46:37.000 1977-08-29 2024-10-11 00:46:37 +2798 2798 2799 279.8 559.6 2798 1977-08-30 2024-10-11 00:46:38.000 1977-08-30 2024-10-11 00:46:38 +2799 2799 2800 279.9 559.8000000000001 2799 1977-08-31 2024-10-11 00:46:39.000 1977-08-31 2024-10-11 00:46:39 +2800 2800 2801 280 560 2800 1977-09-01 2024-10-11 00:46:40.000 1977-09-01 2024-10-11 00:46:40 +2801 2801 2802 280.1 560.2 2801 1977-09-02 2024-10-11 00:46:41.000 1977-09-02 2024-10-11 00:46:41 +2802 2802 2803 280.2 560.4 2802 1977-09-03 2024-10-11 00:46:42.000 1977-09-03 2024-10-11 00:46:42 +2803 2803 2804 280.3 560.6 2803 1977-09-04 2024-10-11 00:46:43.000 1977-09-04 2024-10-11 00:46:43 +2804 2804 2805 280.4 560.8000000000001 2804 1977-09-05 2024-10-11 00:46:44.000 1977-09-05 2024-10-11 00:46:44 +2805 2805 2806 280.5 561 2805 1977-09-06 2024-10-11 00:46:45.000 1977-09-06 2024-10-11 00:46:45 +2806 2806 2807 280.6 561.2 2806 1977-09-07 2024-10-11 00:46:46.000 1977-09-07 2024-10-11 00:46:46 +2807 2807 2808 280.7 561.4 2807 1977-09-08 2024-10-11 00:46:47.000 1977-09-08 2024-10-11 00:46:47 +2808 2808 2809 280.8 561.6 2808 1977-09-09 2024-10-11 00:46:48.000 1977-09-09 2024-10-11 00:46:48 +2809 2809 2810 280.9 561.8000000000001 2809 1977-09-10 2024-10-11 00:46:49.000 1977-09-10 2024-10-11 00:46:49 +2810 2810 2811 281 562 2810 1977-09-11 2024-10-11 00:46:50.000 1977-09-11 2024-10-11 00:46:50 +2811 2811 2812 281.1 562.2 2811 1977-09-12 2024-10-11 00:46:51.000 1977-09-12 2024-10-11 00:46:51 +2812 2812 2813 281.2 562.4 2812 1977-09-13 2024-10-11 00:46:52.000 1977-09-13 2024-10-11 00:46:52 +2813 2813 2814 281.3 562.6 2813 1977-09-14 2024-10-11 00:46:53.000 1977-09-14 2024-10-11 00:46:53 +2814 2814 2815 281.4 562.8000000000001 2814 1977-09-15 2024-10-11 00:46:54.000 1977-09-15 2024-10-11 00:46:54 +2815 2815 2816 281.5 563 2815 1977-09-16 2024-10-11 00:46:55.000 1977-09-16 2024-10-11 00:46:55 +2816 2816 2817 281.6 563.2 2816 1977-09-17 2024-10-11 00:46:56.000 1977-09-17 2024-10-11 00:46:56 +2817 2817 2818 281.7 563.4 2817 1977-09-18 2024-10-11 00:46:57.000 1977-09-18 2024-10-11 00:46:57 +2818 2818 2819 281.8 563.6 2818 1977-09-19 2024-10-11 00:46:58.000 1977-09-19 2024-10-11 00:46:58 +2819 2819 2820 281.9 563.8000000000001 2819 1977-09-20 2024-10-11 00:46:59.000 1977-09-20 2024-10-11 00:46:59 +2820 2820 2821 282 564 2820 1977-09-21 2024-10-11 00:47:00.000 1977-09-21 2024-10-11 00:47:00 +2821 2821 2822 282.1 564.2 2821 1977-09-22 2024-10-11 00:47:01.000 1977-09-22 2024-10-11 00:47:01 +2822 2822 2823 282.2 564.4 2822 1977-09-23 2024-10-11 00:47:02.000 1977-09-23 2024-10-11 00:47:02 +2823 2823 2824 282.3 564.6 2823 1977-09-24 2024-10-11 00:47:03.000 1977-09-24 2024-10-11 00:47:03 +2824 2824 2825 282.4 564.8000000000001 2824 1977-09-25 2024-10-11 00:47:04.000 1977-09-25 2024-10-11 00:47:04 +2825 2825 2826 282.5 565 2825 1977-09-26 2024-10-11 00:47:05.000 1977-09-26 2024-10-11 00:47:05 +2826 2826 2827 282.6 565.2 2826 1977-09-27 2024-10-11 00:47:06.000 1977-09-27 2024-10-11 00:47:06 +2827 2827 2828 282.7 565.4 2827 1977-09-28 2024-10-11 00:47:07.000 1977-09-28 2024-10-11 00:47:07 +2828 2828 2829 282.8 565.6 2828 1977-09-29 2024-10-11 00:47:08.000 1977-09-29 2024-10-11 00:47:08 +2829 2829 2830 282.9 565.8000000000001 2829 1977-09-30 2024-10-11 00:47:09.000 1977-09-30 2024-10-11 00:47:09 +2830 2830 2831 283 566 2830 1977-10-01 2024-10-11 00:47:10.000 1977-10-01 2024-10-11 00:47:10 +2831 2831 2832 283.1 566.2 2831 1977-10-02 2024-10-11 00:47:11.000 1977-10-02 2024-10-11 00:47:11 +2832 2832 2833 283.2 566.4 2832 1977-10-03 2024-10-11 00:47:12.000 1977-10-03 2024-10-11 00:47:12 +2833 2833 2834 283.3 566.6 2833 1977-10-04 2024-10-11 00:47:13.000 1977-10-04 2024-10-11 00:47:13 +2834 2834 2835 283.4 566.8000000000001 2834 1977-10-05 2024-10-11 00:47:14.000 1977-10-05 2024-10-11 00:47:14 +2835 2835 2836 283.5 567 2835 1977-10-06 2024-10-11 00:47:15.000 1977-10-06 2024-10-11 00:47:15 +2836 2836 2837 283.6 567.2 2836 1977-10-07 2024-10-11 00:47:16.000 1977-10-07 2024-10-11 00:47:16 +2837 2837 2838 283.7 567.4 2837 1977-10-08 2024-10-11 00:47:17.000 1977-10-08 2024-10-11 00:47:17 +2838 2838 2839 283.8 567.6 2838 1977-10-09 2024-10-11 00:47:18.000 1977-10-09 2024-10-11 00:47:18 +2839 2839 2840 283.9 567.8000000000001 2839 1977-10-10 2024-10-11 00:47:19.000 1977-10-10 2024-10-11 00:47:19 +2840 2840 2841 284 568 2840 1977-10-11 2024-10-11 00:47:20.000 1977-10-11 2024-10-11 00:47:20 +2841 2841 2842 284.1 568.2 2841 1977-10-12 2024-10-11 00:47:21.000 1977-10-12 2024-10-11 00:47:21 +2842 2842 2843 284.2 568.4 2842 1977-10-13 2024-10-11 00:47:22.000 1977-10-13 2024-10-11 00:47:22 +2843 2843 2844 284.3 568.6 2843 1977-10-14 2024-10-11 00:47:23.000 1977-10-14 2024-10-11 00:47:23 +2844 2844 2845 284.4 568.8000000000001 2844 1977-10-15 2024-10-11 00:47:24.000 1977-10-15 2024-10-11 00:47:24 +2845 2845 2846 284.5 569 2845 1977-10-16 2024-10-11 00:47:25.000 1977-10-16 2024-10-11 00:47:25 +2846 2846 2847 284.6 569.2 2846 1977-10-17 2024-10-11 00:47:26.000 1977-10-17 2024-10-11 00:47:26 +2847 2847 2848 284.7 569.4 2847 1977-10-18 2024-10-11 00:47:27.000 1977-10-18 2024-10-11 00:47:27 +2848 2848 2849 284.8 569.6 2848 1977-10-19 2024-10-11 00:47:28.000 1977-10-19 2024-10-11 00:47:28 +2849 2849 2850 284.9 569.8000000000001 2849 1977-10-20 2024-10-11 00:47:29.000 1977-10-20 2024-10-11 00:47:29 +2850 2850 2851 285 570 2850 1977-10-21 2024-10-11 00:47:30.000 1977-10-21 2024-10-11 00:47:30 +2851 2851 2852 285.1 570.2 2851 1977-10-22 2024-10-11 00:47:31.000 1977-10-22 2024-10-11 00:47:31 +2852 2852 2853 285.2 570.4 2852 1977-10-23 2024-10-11 00:47:32.000 1977-10-23 2024-10-11 00:47:32 +2853 2853 2854 285.3 570.6 2853 1977-10-24 2024-10-11 00:47:33.000 1977-10-24 2024-10-11 00:47:33 +2854 2854 2855 285.4 570.8000000000001 2854 1977-10-25 2024-10-11 00:47:34.000 1977-10-25 2024-10-11 00:47:34 +2855 2855 2856 285.5 571 2855 1977-10-26 2024-10-11 00:47:35.000 1977-10-26 2024-10-11 00:47:35 +2856 2856 2857 285.6 571.2 2856 1977-10-27 2024-10-11 00:47:36.000 1977-10-27 2024-10-11 00:47:36 +2857 2857 2858 285.7 571.4 2857 1977-10-28 2024-10-11 00:47:37.000 1977-10-28 2024-10-11 00:47:37 +2858 2858 2859 285.8 571.6 2858 1977-10-29 2024-10-11 00:47:38.000 1977-10-29 2024-10-11 00:47:38 +2859 2859 2860 285.9 571.8000000000001 2859 1977-10-30 2024-10-11 00:47:39.000 1977-10-30 2024-10-11 00:47:39 +2860 2860 2861 286 572 2860 1977-10-31 2024-10-11 00:47:40.000 1977-10-31 2024-10-11 00:47:40 +2861 2861 2862 286.1 572.2 2861 1977-11-01 2024-10-11 00:47:41.000 1977-11-01 2024-10-11 00:47:41 +2862 2862 2863 286.2 572.4 2862 1977-11-02 2024-10-11 00:47:42.000 1977-11-02 2024-10-11 00:47:42 +2863 2863 2864 286.3 572.6 2863 1977-11-03 2024-10-11 00:47:43.000 1977-11-03 2024-10-11 00:47:43 +2864 2864 2865 286.4 572.8000000000001 2864 1977-11-04 2024-10-11 00:47:44.000 1977-11-04 2024-10-11 00:47:44 +2865 2865 2866 286.5 573 2865 1977-11-05 2024-10-11 00:47:45.000 1977-11-05 2024-10-11 00:47:45 +2866 2866 2867 286.6 573.2 2866 1977-11-06 2024-10-11 00:47:46.000 1977-11-06 2024-10-11 00:47:46 +2867 2867 2868 286.7 573.4 2867 1977-11-07 2024-10-11 00:47:47.000 1977-11-07 2024-10-11 00:47:47 +2868 2868 2869 286.8 573.6 2868 1977-11-08 2024-10-11 00:47:48.000 1977-11-08 2024-10-11 00:47:48 +2869 2869 2870 286.9 573.8000000000001 2869 1977-11-09 2024-10-11 00:47:49.000 1977-11-09 2024-10-11 00:47:49 +2870 2870 2871 287 574 2870 1977-11-10 2024-10-11 00:47:50.000 1977-11-10 2024-10-11 00:47:50 +2871 2871 2872 287.1 574.2 2871 1977-11-11 2024-10-11 00:47:51.000 1977-11-11 2024-10-11 00:47:51 +2872 2872 2873 287.2 574.4 2872 1977-11-12 2024-10-11 00:47:52.000 1977-11-12 2024-10-11 00:47:52 +2873 2873 2874 287.3 574.6 2873 1977-11-13 2024-10-11 00:47:53.000 1977-11-13 2024-10-11 00:47:53 +2874 2874 2875 287.4 574.8000000000001 2874 1977-11-14 2024-10-11 00:47:54.000 1977-11-14 2024-10-11 00:47:54 +2875 2875 2876 287.5 575 2875 1977-11-15 2024-10-11 00:47:55.000 1977-11-15 2024-10-11 00:47:55 +2876 2876 2877 287.6 575.2 2876 1977-11-16 2024-10-11 00:47:56.000 1977-11-16 2024-10-11 00:47:56 +2877 2877 2878 287.7 575.4 2877 1977-11-17 2024-10-11 00:47:57.000 1977-11-17 2024-10-11 00:47:57 +2878 2878 2879 287.8 575.6 2878 1977-11-18 2024-10-11 00:47:58.000 1977-11-18 2024-10-11 00:47:58 +2879 2879 2880 287.9 575.8000000000001 2879 1977-11-19 2024-10-11 00:47:59.000 1977-11-19 2024-10-11 00:47:59 +2880 2880 2881 288 576 2880 1977-11-20 2024-10-11 00:48:00.000 1977-11-20 2024-10-11 00:48:00 +2881 2881 2882 288.1 576.2 2881 1977-11-21 2024-10-11 00:48:01.000 1977-11-21 2024-10-11 00:48:01 +2882 2882 2883 288.2 576.4 2882 1977-11-22 2024-10-11 00:48:02.000 1977-11-22 2024-10-11 00:48:02 +2883 2883 2884 288.3 576.6 2883 1977-11-23 2024-10-11 00:48:03.000 1977-11-23 2024-10-11 00:48:03 +2884 2884 2885 288.4 576.8000000000001 2884 1977-11-24 2024-10-11 00:48:04.000 1977-11-24 2024-10-11 00:48:04 +2885 2885 2886 288.5 577 2885 1977-11-25 2024-10-11 00:48:05.000 1977-11-25 2024-10-11 00:48:05 +2886 2886 2887 288.6 577.2 2886 1977-11-26 2024-10-11 00:48:06.000 1977-11-26 2024-10-11 00:48:06 +2887 2887 2888 288.7 577.4 2887 1977-11-27 2024-10-11 00:48:07.000 1977-11-27 2024-10-11 00:48:07 +2888 2888 2889 288.8 577.6 2888 1977-11-28 2024-10-11 00:48:08.000 1977-11-28 2024-10-11 00:48:08 +2889 2889 2890 288.9 577.8000000000001 2889 1977-11-29 2024-10-11 00:48:09.000 1977-11-29 2024-10-11 00:48:09 +2890 2890 2891 289 578 2890 1977-11-30 2024-10-11 00:48:10.000 1977-11-30 2024-10-11 00:48:10 +2891 2891 2892 289.1 578.2 2891 1977-12-01 2024-10-11 00:48:11.000 1977-12-01 2024-10-11 00:48:11 +2892 2892 2893 289.2 578.4 2892 1977-12-02 2024-10-11 00:48:12.000 1977-12-02 2024-10-11 00:48:12 +2893 2893 2894 289.3 578.6 2893 1977-12-03 2024-10-11 00:48:13.000 1977-12-03 2024-10-11 00:48:13 +2894 2894 2895 289.4 578.8000000000001 2894 1977-12-04 2024-10-11 00:48:14.000 1977-12-04 2024-10-11 00:48:14 +2895 2895 2896 289.5 579 2895 1977-12-05 2024-10-11 00:48:15.000 1977-12-05 2024-10-11 00:48:15 +2896 2896 2897 289.6 579.2 2896 1977-12-06 2024-10-11 00:48:16.000 1977-12-06 2024-10-11 00:48:16 +2897 2897 2898 289.7 579.4 2897 1977-12-07 2024-10-11 00:48:17.000 1977-12-07 2024-10-11 00:48:17 +2898 2898 2899 289.8 579.6 2898 1977-12-08 2024-10-11 00:48:18.000 1977-12-08 2024-10-11 00:48:18 +2899 2899 2900 289.9 579.8000000000001 2899 1977-12-09 2024-10-11 00:48:19.000 1977-12-09 2024-10-11 00:48:19 +2900 2900 2901 290 580 2900 1977-12-10 2024-10-11 00:48:20.000 1977-12-10 2024-10-11 00:48:20 +2901 2901 2902 290.1 580.2 2901 1977-12-11 2024-10-11 00:48:21.000 1977-12-11 2024-10-11 00:48:21 +2902 2902 2903 290.2 580.4 2902 1977-12-12 2024-10-11 00:48:22.000 1977-12-12 2024-10-11 00:48:22 +2903 2903 2904 290.3 580.6 2903 1977-12-13 2024-10-11 00:48:23.000 1977-12-13 2024-10-11 00:48:23 +2904 2904 2905 290.4 580.8000000000001 2904 1977-12-14 2024-10-11 00:48:24.000 1977-12-14 2024-10-11 00:48:24 +2905 2905 2906 290.5 581 2905 1977-12-15 2024-10-11 00:48:25.000 1977-12-15 2024-10-11 00:48:25 +2906 2906 2907 290.6 581.2 2906 1977-12-16 2024-10-11 00:48:26.000 1977-12-16 2024-10-11 00:48:26 +2907 2907 2908 290.7 581.4 2907 1977-12-17 2024-10-11 00:48:27.000 1977-12-17 2024-10-11 00:48:27 +2908 2908 2909 290.8 581.6 2908 1977-12-18 2024-10-11 00:48:28.000 1977-12-18 2024-10-11 00:48:28 +2909 2909 2910 290.9 581.8000000000001 2909 1977-12-19 2024-10-11 00:48:29.000 1977-12-19 2024-10-11 00:48:29 +2910 2910 2911 291 582 2910 1977-12-20 2024-10-11 00:48:30.000 1977-12-20 2024-10-11 00:48:30 +2911 2911 2912 291.1 582.2 2911 1977-12-21 2024-10-11 00:48:31.000 1977-12-21 2024-10-11 00:48:31 +2912 2912 2913 291.2 582.4 2912 1977-12-22 2024-10-11 00:48:32.000 1977-12-22 2024-10-11 00:48:32 +2913 2913 2914 291.3 582.6 2913 1977-12-23 2024-10-11 00:48:33.000 1977-12-23 2024-10-11 00:48:33 +2914 2914 2915 291.4 582.8000000000001 2914 1977-12-24 2024-10-11 00:48:34.000 1977-12-24 2024-10-11 00:48:34 +2915 2915 2916 291.5 583 2915 1977-12-25 2024-10-11 00:48:35.000 1977-12-25 2024-10-11 00:48:35 +2916 2916 2917 291.6 583.2 2916 1977-12-26 2024-10-11 00:48:36.000 1977-12-26 2024-10-11 00:48:36 +2917 2917 2918 291.7 583.4 2917 1977-12-27 2024-10-11 00:48:37.000 1977-12-27 2024-10-11 00:48:37 +2918 2918 2919 291.8 583.6 2918 1977-12-28 2024-10-11 00:48:38.000 1977-12-28 2024-10-11 00:48:38 +2919 2919 2920 291.9 583.8000000000001 2919 1977-12-29 2024-10-11 00:48:39.000 1977-12-29 2024-10-11 00:48:39 +2920 2920 2921 292 584 2920 1977-12-30 2024-10-11 00:48:40.000 1977-12-30 2024-10-11 00:48:40 +2921 2921 2922 292.1 584.2 2921 1977-12-31 2024-10-11 00:48:41.000 1977-12-31 2024-10-11 00:48:41 +2922 2922 2923 292.2 584.4 2922 1978-01-01 2024-10-11 00:48:42.000 1978-01-01 2024-10-11 00:48:42 +2923 2923 2924 292.3 584.6 2923 1978-01-02 2024-10-11 00:48:43.000 1978-01-02 2024-10-11 00:48:43 +2924 2924 2925 292.4 584.8000000000001 2924 1978-01-03 2024-10-11 00:48:44.000 1978-01-03 2024-10-11 00:48:44 +2925 2925 2926 292.5 585 2925 1978-01-04 2024-10-11 00:48:45.000 1978-01-04 2024-10-11 00:48:45 +2926 2926 2927 292.6 585.2 2926 1978-01-05 2024-10-11 00:48:46.000 1978-01-05 2024-10-11 00:48:46 +2927 2927 2928 292.7 585.4 2927 1978-01-06 2024-10-11 00:48:47.000 1978-01-06 2024-10-11 00:48:47 +2928 2928 2929 292.8 585.6 2928 1978-01-07 2024-10-11 00:48:48.000 1978-01-07 2024-10-11 00:48:48 +2929 2929 2930 292.9 585.8000000000001 2929 1978-01-08 2024-10-11 00:48:49.000 1978-01-08 2024-10-11 00:48:49 +2930 2930 2931 293 586 2930 1978-01-09 2024-10-11 00:48:50.000 1978-01-09 2024-10-11 00:48:50 +2931 2931 2932 293.1 586.2 2931 1978-01-10 2024-10-11 00:48:51.000 1978-01-10 2024-10-11 00:48:51 +2932 2932 2933 293.2 586.4 2932 1978-01-11 2024-10-11 00:48:52.000 1978-01-11 2024-10-11 00:48:52 +2933 2933 2934 293.3 586.6 2933 1978-01-12 2024-10-11 00:48:53.000 1978-01-12 2024-10-11 00:48:53 +2934 2934 2935 293.4 586.8000000000001 2934 1978-01-13 2024-10-11 00:48:54.000 1978-01-13 2024-10-11 00:48:54 +2935 2935 2936 293.5 587 2935 1978-01-14 2024-10-11 00:48:55.000 1978-01-14 2024-10-11 00:48:55 +2936 2936 2937 293.6 587.2 2936 1978-01-15 2024-10-11 00:48:56.000 1978-01-15 2024-10-11 00:48:56 +2937 2937 2938 293.7 587.4 2937 1978-01-16 2024-10-11 00:48:57.000 1978-01-16 2024-10-11 00:48:57 +2938 2938 2939 293.8 587.6 2938 1978-01-17 2024-10-11 00:48:58.000 1978-01-17 2024-10-11 00:48:58 +2939 2939 2940 293.9 587.8000000000001 2939 1978-01-18 2024-10-11 00:48:59.000 1978-01-18 2024-10-11 00:48:59 +2940 2940 2941 294 588 2940 1978-01-19 2024-10-11 00:49:00.000 1978-01-19 2024-10-11 00:49:00 +2941 2941 2942 294.1 588.2 2941 1978-01-20 2024-10-11 00:49:01.000 1978-01-20 2024-10-11 00:49:01 +2942 2942 2943 294.2 588.4 2942 1978-01-21 2024-10-11 00:49:02.000 1978-01-21 2024-10-11 00:49:02 +2943 2943 2944 294.3 588.6 2943 1978-01-22 2024-10-11 00:49:03.000 1978-01-22 2024-10-11 00:49:03 +2944 2944 2945 294.4 588.8000000000001 2944 1978-01-23 2024-10-11 00:49:04.000 1978-01-23 2024-10-11 00:49:04 +2945 2945 2946 294.5 589 2945 1978-01-24 2024-10-11 00:49:05.000 1978-01-24 2024-10-11 00:49:05 +2946 2946 2947 294.6 589.2 2946 1978-01-25 2024-10-11 00:49:06.000 1978-01-25 2024-10-11 00:49:06 +2947 2947 2948 294.7 589.4 2947 1978-01-26 2024-10-11 00:49:07.000 1978-01-26 2024-10-11 00:49:07 +2948 2948 2949 294.8 589.6 2948 1978-01-27 2024-10-11 00:49:08.000 1978-01-27 2024-10-11 00:49:08 +2949 2949 2950 294.9 589.8000000000001 2949 1978-01-28 2024-10-11 00:49:09.000 1978-01-28 2024-10-11 00:49:09 +2950 2950 2951 295 590 2950 1978-01-29 2024-10-11 00:49:10.000 1978-01-29 2024-10-11 00:49:10 +2951 2951 2952 295.1 590.2 2951 1978-01-30 2024-10-11 00:49:11.000 1978-01-30 2024-10-11 00:49:11 +2952 2952 2953 295.2 590.4 2952 1978-01-31 2024-10-11 00:49:12.000 1978-01-31 2024-10-11 00:49:12 +2953 2953 2954 295.3 590.6 2953 1978-02-01 2024-10-11 00:49:13.000 1978-02-01 2024-10-11 00:49:13 +2954 2954 2955 295.4 590.8000000000001 2954 1978-02-02 2024-10-11 00:49:14.000 1978-02-02 2024-10-11 00:49:14 +2955 2955 2956 295.5 591 2955 1978-02-03 2024-10-11 00:49:15.000 1978-02-03 2024-10-11 00:49:15 +2956 2956 2957 295.6 591.2 2956 1978-02-04 2024-10-11 00:49:16.000 1978-02-04 2024-10-11 00:49:16 +2957 2957 2958 295.7 591.4 2957 1978-02-05 2024-10-11 00:49:17.000 1978-02-05 2024-10-11 00:49:17 +2958 2958 2959 295.8 591.6 2958 1978-02-06 2024-10-11 00:49:18.000 1978-02-06 2024-10-11 00:49:18 +2959 2959 2960 295.9 591.8000000000001 2959 1978-02-07 2024-10-11 00:49:19.000 1978-02-07 2024-10-11 00:49:19 +2960 2960 2961 296 592 2960 1978-02-08 2024-10-11 00:49:20.000 1978-02-08 2024-10-11 00:49:20 +2961 2961 2962 296.1 592.2 2961 1978-02-09 2024-10-11 00:49:21.000 1978-02-09 2024-10-11 00:49:21 +2962 2962 2963 296.2 592.4 2962 1978-02-10 2024-10-11 00:49:22.000 1978-02-10 2024-10-11 00:49:22 +2963 2963 2964 296.3 592.6 2963 1978-02-11 2024-10-11 00:49:23.000 1978-02-11 2024-10-11 00:49:23 +2964 2964 2965 296.4 592.8000000000001 2964 1978-02-12 2024-10-11 00:49:24.000 1978-02-12 2024-10-11 00:49:24 +2965 2965 2966 296.5 593 2965 1978-02-13 2024-10-11 00:49:25.000 1978-02-13 2024-10-11 00:49:25 +2966 2966 2967 296.6 593.2 2966 1978-02-14 2024-10-11 00:49:26.000 1978-02-14 2024-10-11 00:49:26 +2967 2967 2968 296.7 593.4 2967 1978-02-15 2024-10-11 00:49:27.000 1978-02-15 2024-10-11 00:49:27 +2968 2968 2969 296.8 593.6 2968 1978-02-16 2024-10-11 00:49:28.000 1978-02-16 2024-10-11 00:49:28 +2969 2969 2970 296.9 593.8000000000001 2969 1978-02-17 2024-10-11 00:49:29.000 1978-02-17 2024-10-11 00:49:29 +2970 2970 2971 297 594 2970 1978-02-18 2024-10-11 00:49:30.000 1978-02-18 2024-10-11 00:49:30 +2971 2971 2972 297.1 594.2 2971 1978-02-19 2024-10-11 00:49:31.000 1978-02-19 2024-10-11 00:49:31 +2972 2972 2973 297.2 594.4 2972 1978-02-20 2024-10-11 00:49:32.000 1978-02-20 2024-10-11 00:49:32 +2973 2973 2974 297.3 594.6 2973 1978-02-21 2024-10-11 00:49:33.000 1978-02-21 2024-10-11 00:49:33 +2974 2974 2975 297.4 594.8000000000001 2974 1978-02-22 2024-10-11 00:49:34.000 1978-02-22 2024-10-11 00:49:34 +2975 2975 2976 297.5 595 2975 1978-02-23 2024-10-11 00:49:35.000 1978-02-23 2024-10-11 00:49:35 +2976 2976 2977 297.6 595.2 2976 1978-02-24 2024-10-11 00:49:36.000 1978-02-24 2024-10-11 00:49:36 +2977 2977 2978 297.7 595.4 2977 1978-02-25 2024-10-11 00:49:37.000 1978-02-25 2024-10-11 00:49:37 +2978 2978 2979 297.8 595.6 2978 1978-02-26 2024-10-11 00:49:38.000 1978-02-26 2024-10-11 00:49:38 +2979 2979 2980 297.9 595.8000000000001 2979 1978-02-27 2024-10-11 00:49:39.000 1978-02-27 2024-10-11 00:49:39 +2980 2980 2981 298 596 2980 1978-02-28 2024-10-11 00:49:40.000 1978-02-28 2024-10-11 00:49:40 +2981 2981 2982 298.1 596.2 2981 1978-03-01 2024-10-11 00:49:41.000 1978-03-01 2024-10-11 00:49:41 +2982 2982 2983 298.2 596.4 2982 1978-03-02 2024-10-11 00:49:42.000 1978-03-02 2024-10-11 00:49:42 +2983 2983 2984 298.3 596.6 2983 1978-03-03 2024-10-11 00:49:43.000 1978-03-03 2024-10-11 00:49:43 +2984 2984 2985 298.4 596.8000000000001 2984 1978-03-04 2024-10-11 00:49:44.000 1978-03-04 2024-10-11 00:49:44 +2985 2985 2986 298.5 597 2985 1978-03-05 2024-10-11 00:49:45.000 1978-03-05 2024-10-11 00:49:45 +2986 2986 2987 298.6 597.2 2986 1978-03-06 2024-10-11 00:49:46.000 1978-03-06 2024-10-11 00:49:46 +2987 2987 2988 298.7 597.4 2987 1978-03-07 2024-10-11 00:49:47.000 1978-03-07 2024-10-11 00:49:47 +2988 2988 2989 298.8 597.6 2988 1978-03-08 2024-10-11 00:49:48.000 1978-03-08 2024-10-11 00:49:48 +2989 2989 2990 298.9 597.8000000000001 2989 1978-03-09 2024-10-11 00:49:49.000 1978-03-09 2024-10-11 00:49:49 +2990 2990 2991 299 598 2990 1978-03-10 2024-10-11 00:49:50.000 1978-03-10 2024-10-11 00:49:50 +2991 2991 2992 299.1 598.2 2991 1978-03-11 2024-10-11 00:49:51.000 1978-03-11 2024-10-11 00:49:51 +2992 2992 2993 299.2 598.4 2992 1978-03-12 2024-10-11 00:49:52.000 1978-03-12 2024-10-11 00:49:52 +2993 2993 2994 299.3 598.6 2993 1978-03-13 2024-10-11 00:49:53.000 1978-03-13 2024-10-11 00:49:53 +2994 2994 2995 299.4 598.8000000000001 2994 1978-03-14 2024-10-11 00:49:54.000 1978-03-14 2024-10-11 00:49:54 +2995 2995 2996 299.5 599 2995 1978-03-15 2024-10-11 00:49:55.000 1978-03-15 2024-10-11 00:49:55 +2996 2996 2997 299.6 599.2 2996 1978-03-16 2024-10-11 00:49:56.000 1978-03-16 2024-10-11 00:49:56 +2997 2997 2998 299.7 599.4 2997 1978-03-17 2024-10-11 00:49:57.000 1978-03-17 2024-10-11 00:49:57 +2998 2998 2999 299.8 599.6 2998 1978-03-18 2024-10-11 00:49:58.000 1978-03-18 2024-10-11 00:49:58 +2999 2999 3000 299.9 599.8000000000001 2999 1978-03-19 2024-10-11 00:49:59.000 1978-03-19 2024-10-11 00:49:59 +3000 3000 3001 300 600 3000 1978-03-20 2024-10-11 00:50:00.000 1978-03-20 2024-10-11 00:50:00 +3001 3001 3002 300.1 600.2 3001 1978-03-21 2024-10-11 00:50:01.000 1978-03-21 2024-10-11 00:50:01 +3002 3002 3003 300.2 600.4 3002 1978-03-22 2024-10-11 00:50:02.000 1978-03-22 2024-10-11 00:50:02 +3003 3003 3004 300.3 600.6 3003 1978-03-23 2024-10-11 00:50:03.000 1978-03-23 2024-10-11 00:50:03 +3004 3004 3005 300.4 600.8000000000001 3004 1978-03-24 2024-10-11 00:50:04.000 1978-03-24 2024-10-11 00:50:04 +3005 3005 3006 300.5 601 3005 1978-03-25 2024-10-11 00:50:05.000 1978-03-25 2024-10-11 00:50:05 +3006 3006 3007 300.6 601.2 3006 1978-03-26 2024-10-11 00:50:06.000 1978-03-26 2024-10-11 00:50:06 +3007 3007 3008 300.7 601.4 3007 1978-03-27 2024-10-11 00:50:07.000 1978-03-27 2024-10-11 00:50:07 +3008 3008 3009 300.8 601.6 3008 1978-03-28 2024-10-11 00:50:08.000 1978-03-28 2024-10-11 00:50:08 +3009 3009 3010 300.9 601.8000000000001 3009 1978-03-29 2024-10-11 00:50:09.000 1978-03-29 2024-10-11 00:50:09 +3010 3010 3011 301 602 3010 1978-03-30 2024-10-11 00:50:10.000 1978-03-30 2024-10-11 00:50:10 +3011 3011 3012 301.1 602.2 3011 1978-03-31 2024-10-11 00:50:11.000 1978-03-31 2024-10-11 00:50:11 +3012 3012 3013 301.2 602.4 3012 1978-04-01 2024-10-11 00:50:12.000 1978-04-01 2024-10-11 00:50:12 +3013 3013 3014 301.3 602.6 3013 1978-04-02 2024-10-11 00:50:13.000 1978-04-02 2024-10-11 00:50:13 +3014 3014 3015 301.4 602.8000000000001 3014 1978-04-03 2024-10-11 00:50:14.000 1978-04-03 2024-10-11 00:50:14 +3015 3015 3016 301.5 603 3015 1978-04-04 2024-10-11 00:50:15.000 1978-04-04 2024-10-11 00:50:15 +3016 3016 3017 301.6 603.2 3016 1978-04-05 2024-10-11 00:50:16.000 1978-04-05 2024-10-11 00:50:16 +3017 3017 3018 301.7 603.4 3017 1978-04-06 2024-10-11 00:50:17.000 1978-04-06 2024-10-11 00:50:17 +3018 3018 3019 301.8 603.6 3018 1978-04-07 2024-10-11 00:50:18.000 1978-04-07 2024-10-11 00:50:18 +3019 3019 3020 301.9 603.8000000000001 3019 1978-04-08 2024-10-11 00:50:19.000 1978-04-08 2024-10-11 00:50:19 +3020 3020 3021 302 604 3020 1978-04-09 2024-10-11 00:50:20.000 1978-04-09 2024-10-11 00:50:20 +3021 3021 3022 302.1 604.2 3021 1978-04-10 2024-10-11 00:50:21.000 1978-04-10 2024-10-11 00:50:21 +3022 3022 3023 302.2 604.4 3022 1978-04-11 2024-10-11 00:50:22.000 1978-04-11 2024-10-11 00:50:22 +3023 3023 3024 302.3 604.6 3023 1978-04-12 2024-10-11 00:50:23.000 1978-04-12 2024-10-11 00:50:23 +3024 3024 3025 302.4 604.8000000000001 3024 1978-04-13 2024-10-11 00:50:24.000 1978-04-13 2024-10-11 00:50:24 +3025 3025 3026 302.5 605 3025 1978-04-14 2024-10-11 00:50:25.000 1978-04-14 2024-10-11 00:50:25 +3026 3026 3027 302.6 605.2 3026 1978-04-15 2024-10-11 00:50:26.000 1978-04-15 2024-10-11 00:50:26 +3027 3027 3028 302.7 605.4 3027 1978-04-16 2024-10-11 00:50:27.000 1978-04-16 2024-10-11 00:50:27 +3028 3028 3029 302.8 605.6 3028 1978-04-17 2024-10-11 00:50:28.000 1978-04-17 2024-10-11 00:50:28 +3029 3029 3030 302.9 605.8000000000001 3029 1978-04-18 2024-10-11 00:50:29.000 1978-04-18 2024-10-11 00:50:29 +3030 3030 3031 303 606 3030 1978-04-19 2024-10-11 00:50:30.000 1978-04-19 2024-10-11 00:50:30 +3031 3031 3032 303.1 606.2 3031 1978-04-20 2024-10-11 00:50:31.000 1978-04-20 2024-10-11 00:50:31 +3032 3032 3033 303.2 606.4 3032 1978-04-21 2024-10-11 00:50:32.000 1978-04-21 2024-10-11 00:50:32 +3033 3033 3034 303.3 606.6 3033 1978-04-22 2024-10-11 00:50:33.000 1978-04-22 2024-10-11 00:50:33 +3034 3034 3035 303.4 606.8000000000001 3034 1978-04-23 2024-10-11 00:50:34.000 1978-04-23 2024-10-11 00:50:34 +3035 3035 3036 303.5 607 3035 1978-04-24 2024-10-11 00:50:35.000 1978-04-24 2024-10-11 00:50:35 +3036 3036 3037 303.6 607.2 3036 1978-04-25 2024-10-11 00:50:36.000 1978-04-25 2024-10-11 00:50:36 +3037 3037 3038 303.7 607.4 3037 1978-04-26 2024-10-11 00:50:37.000 1978-04-26 2024-10-11 00:50:37 +3038 3038 3039 303.8 607.6 3038 1978-04-27 2024-10-11 00:50:38.000 1978-04-27 2024-10-11 00:50:38 +3039 3039 3040 303.9 607.8000000000001 3039 1978-04-28 2024-10-11 00:50:39.000 1978-04-28 2024-10-11 00:50:39 +3040 3040 3041 304 608 3040 1978-04-29 2024-10-11 00:50:40.000 1978-04-29 2024-10-11 00:50:40 +3041 3041 3042 304.1 608.2 3041 1978-04-30 2024-10-11 00:50:41.000 1978-04-30 2024-10-11 00:50:41 +3042 3042 3043 304.2 608.4 3042 1978-05-01 2024-10-11 00:50:42.000 1978-05-01 2024-10-11 00:50:42 +3043 3043 3044 304.3 608.6 3043 1978-05-02 2024-10-11 00:50:43.000 1978-05-02 2024-10-11 00:50:43 +3044 3044 3045 304.4 608.8000000000001 3044 1978-05-03 2024-10-11 00:50:44.000 1978-05-03 2024-10-11 00:50:44 +3045 3045 3046 304.5 609 3045 1978-05-04 2024-10-11 00:50:45.000 1978-05-04 2024-10-11 00:50:45 +3046 3046 3047 304.6 609.2 3046 1978-05-05 2024-10-11 00:50:46.000 1978-05-05 2024-10-11 00:50:46 +3047 3047 3048 304.7 609.4 3047 1978-05-06 2024-10-11 00:50:47.000 1978-05-06 2024-10-11 00:50:47 +3048 3048 3049 304.8 609.6 3048 1978-05-07 2024-10-11 00:50:48.000 1978-05-07 2024-10-11 00:50:48 +3049 3049 3050 304.9 609.8000000000001 3049 1978-05-08 2024-10-11 00:50:49.000 1978-05-08 2024-10-11 00:50:49 +3050 3050 3051 305 610 3050 1978-05-09 2024-10-11 00:50:50.000 1978-05-09 2024-10-11 00:50:50 +3051 3051 3052 305.1 610.2 3051 1978-05-10 2024-10-11 00:50:51.000 1978-05-10 2024-10-11 00:50:51 +3052 3052 3053 305.2 610.4 3052 1978-05-11 2024-10-11 00:50:52.000 1978-05-11 2024-10-11 00:50:52 +3053 3053 3054 305.3 610.6 3053 1978-05-12 2024-10-11 00:50:53.000 1978-05-12 2024-10-11 00:50:53 +3054 3054 3055 305.4 610.8000000000001 3054 1978-05-13 2024-10-11 00:50:54.000 1978-05-13 2024-10-11 00:50:54 +3055 3055 3056 305.5 611 3055 1978-05-14 2024-10-11 00:50:55.000 1978-05-14 2024-10-11 00:50:55 +3056 3056 3057 305.6 611.2 3056 1978-05-15 2024-10-11 00:50:56.000 1978-05-15 2024-10-11 00:50:56 +3057 3057 3058 305.7 611.4 3057 1978-05-16 2024-10-11 00:50:57.000 1978-05-16 2024-10-11 00:50:57 +3058 3058 3059 305.8 611.6 3058 1978-05-17 2024-10-11 00:50:58.000 1978-05-17 2024-10-11 00:50:58 +3059 3059 3060 305.9 611.8000000000001 3059 1978-05-18 2024-10-11 00:50:59.000 1978-05-18 2024-10-11 00:50:59 +3060 3060 3061 306 612 3060 1978-05-19 2024-10-11 00:51:00.000 1978-05-19 2024-10-11 00:51:00 +3061 3061 3062 306.1 612.2 3061 1978-05-20 2024-10-11 00:51:01.000 1978-05-20 2024-10-11 00:51:01 +3062 3062 3063 306.2 612.4 3062 1978-05-21 2024-10-11 00:51:02.000 1978-05-21 2024-10-11 00:51:02 +3063 3063 3064 306.3 612.6 3063 1978-05-22 2024-10-11 00:51:03.000 1978-05-22 2024-10-11 00:51:03 +3064 3064 3065 306.4 612.8000000000001 3064 1978-05-23 2024-10-11 00:51:04.000 1978-05-23 2024-10-11 00:51:04 +3065 3065 3066 306.5 613 3065 1978-05-24 2024-10-11 00:51:05.000 1978-05-24 2024-10-11 00:51:05 +3066 3066 3067 306.6 613.2 3066 1978-05-25 2024-10-11 00:51:06.000 1978-05-25 2024-10-11 00:51:06 +3067 3067 3068 306.7 613.4 3067 1978-05-26 2024-10-11 00:51:07.000 1978-05-26 2024-10-11 00:51:07 +3068 3068 3069 306.8 613.6 3068 1978-05-27 2024-10-11 00:51:08.000 1978-05-27 2024-10-11 00:51:08 +3069 3069 3070 306.9 613.8000000000001 3069 1978-05-28 2024-10-11 00:51:09.000 1978-05-28 2024-10-11 00:51:09 +3070 3070 3071 307 614 3070 1978-05-29 2024-10-11 00:51:10.000 1978-05-29 2024-10-11 00:51:10 +3071 3071 3072 307.1 614.2 3071 1978-05-30 2024-10-11 00:51:11.000 1978-05-30 2024-10-11 00:51:11 +3072 3072 3073 307.2 614.4000000000001 3072 1978-05-31 2024-10-11 00:51:12.000 1978-05-31 2024-10-11 00:51:12 +3073 3073 3074 307.3 614.6 3073 1978-06-01 2024-10-11 00:51:13.000 1978-06-01 2024-10-11 00:51:13 +3074 3074 3075 307.4 614.8000000000001 3074 1978-06-02 2024-10-11 00:51:14.000 1978-06-02 2024-10-11 00:51:14 +3075 3075 3076 307.5 615 3075 1978-06-03 2024-10-11 00:51:15.000 1978-06-03 2024-10-11 00:51:15 +3076 3076 3077 307.6 615.2 3076 1978-06-04 2024-10-11 00:51:16.000 1978-06-04 2024-10-11 00:51:16 +3077 3077 3078 307.7 615.4000000000001 3077 1978-06-05 2024-10-11 00:51:17.000 1978-06-05 2024-10-11 00:51:17 +3078 3078 3079 307.8 615.6 3078 1978-06-06 2024-10-11 00:51:18.000 1978-06-06 2024-10-11 00:51:18 +3079 3079 3080 307.9 615.8000000000001 3079 1978-06-07 2024-10-11 00:51:19.000 1978-06-07 2024-10-11 00:51:19 +3080 3080 3081 308 616 3080 1978-06-08 2024-10-11 00:51:20.000 1978-06-08 2024-10-11 00:51:20 +3081 3081 3082 308.1 616.2 3081 1978-06-09 2024-10-11 00:51:21.000 1978-06-09 2024-10-11 00:51:21 +3082 3082 3083 308.2 616.4000000000001 3082 1978-06-10 2024-10-11 00:51:22.000 1978-06-10 2024-10-11 00:51:22 +3083 3083 3084 308.3 616.6 3083 1978-06-11 2024-10-11 00:51:23.000 1978-06-11 2024-10-11 00:51:23 +3084 3084 3085 308.4 616.8000000000001 3084 1978-06-12 2024-10-11 00:51:24.000 1978-06-12 2024-10-11 00:51:24 +3085 3085 3086 308.5 617 3085 1978-06-13 2024-10-11 00:51:25.000 1978-06-13 2024-10-11 00:51:25 +3086 3086 3087 308.6 617.2 3086 1978-06-14 2024-10-11 00:51:26.000 1978-06-14 2024-10-11 00:51:26 +3087 3087 3088 308.7 617.4000000000001 3087 1978-06-15 2024-10-11 00:51:27.000 1978-06-15 2024-10-11 00:51:27 +3088 3088 3089 308.8 617.6 3088 1978-06-16 2024-10-11 00:51:28.000 1978-06-16 2024-10-11 00:51:28 +3089 3089 3090 308.9 617.8000000000001 3089 1978-06-17 2024-10-11 00:51:29.000 1978-06-17 2024-10-11 00:51:29 +3090 3090 3091 309 618 3090 1978-06-18 2024-10-11 00:51:30.000 1978-06-18 2024-10-11 00:51:30 +3091 3091 3092 309.1 618.2 3091 1978-06-19 2024-10-11 00:51:31.000 1978-06-19 2024-10-11 00:51:31 +3092 3092 3093 309.2 618.4000000000001 3092 1978-06-20 2024-10-11 00:51:32.000 1978-06-20 2024-10-11 00:51:32 +3093 3093 3094 309.3 618.6 3093 1978-06-21 2024-10-11 00:51:33.000 1978-06-21 2024-10-11 00:51:33 +3094 3094 3095 309.4 618.8000000000001 3094 1978-06-22 2024-10-11 00:51:34.000 1978-06-22 2024-10-11 00:51:34 +3095 3095 3096 309.5 619 3095 1978-06-23 2024-10-11 00:51:35.000 1978-06-23 2024-10-11 00:51:35 +3096 3096 3097 309.6 619.2 3096 1978-06-24 2024-10-11 00:51:36.000 1978-06-24 2024-10-11 00:51:36 +3097 3097 3098 309.7 619.4000000000001 3097 1978-06-25 2024-10-11 00:51:37.000 1978-06-25 2024-10-11 00:51:37 +3098 3098 3099 309.8 619.6 3098 1978-06-26 2024-10-11 00:51:38.000 1978-06-26 2024-10-11 00:51:38 +3099 3099 3100 309.9 619.8000000000001 3099 1978-06-27 2024-10-11 00:51:39.000 1978-06-27 2024-10-11 00:51:39 +3100 3100 3101 310 620 3100 1978-06-28 2024-10-11 00:51:40.000 1978-06-28 2024-10-11 00:51:40 +3101 3101 3102 310.1 620.2 3101 1978-06-29 2024-10-11 00:51:41.000 1978-06-29 2024-10-11 00:51:41 +3102 3102 3103 310.2 620.4000000000001 3102 1978-06-30 2024-10-11 00:51:42.000 1978-06-30 2024-10-11 00:51:42 +3103 3103 3104 310.3 620.6 3103 1978-07-01 2024-10-11 00:51:43.000 1978-07-01 2024-10-11 00:51:43 +3104 3104 3105 310.4 620.8000000000001 3104 1978-07-02 2024-10-11 00:51:44.000 1978-07-02 2024-10-11 00:51:44 +3105 3105 3106 310.5 621 3105 1978-07-03 2024-10-11 00:51:45.000 1978-07-03 2024-10-11 00:51:45 +3106 3106 3107 310.6 621.2 3106 1978-07-04 2024-10-11 00:51:46.000 1978-07-04 2024-10-11 00:51:46 +3107 3107 3108 310.7 621.4000000000001 3107 1978-07-05 2024-10-11 00:51:47.000 1978-07-05 2024-10-11 00:51:47 +3108 3108 3109 310.8 621.6 3108 1978-07-06 2024-10-11 00:51:48.000 1978-07-06 2024-10-11 00:51:48 +3109 3109 3110 310.9 621.8000000000001 3109 1978-07-07 2024-10-11 00:51:49.000 1978-07-07 2024-10-11 00:51:49 +3110 3110 3111 311 622 3110 1978-07-08 2024-10-11 00:51:50.000 1978-07-08 2024-10-11 00:51:50 +3111 3111 3112 311.1 622.2 3111 1978-07-09 2024-10-11 00:51:51.000 1978-07-09 2024-10-11 00:51:51 +3112 3112 3113 311.2 622.4000000000001 3112 1978-07-10 2024-10-11 00:51:52.000 1978-07-10 2024-10-11 00:51:52 +3113 3113 3114 311.3 622.6 3113 1978-07-11 2024-10-11 00:51:53.000 1978-07-11 2024-10-11 00:51:53 +3114 3114 3115 311.4 622.8000000000001 3114 1978-07-12 2024-10-11 00:51:54.000 1978-07-12 2024-10-11 00:51:54 +3115 3115 3116 311.5 623 3115 1978-07-13 2024-10-11 00:51:55.000 1978-07-13 2024-10-11 00:51:55 +3116 3116 3117 311.6 623.2 3116 1978-07-14 2024-10-11 00:51:56.000 1978-07-14 2024-10-11 00:51:56 +3117 3117 3118 311.7 623.4000000000001 3117 1978-07-15 2024-10-11 00:51:57.000 1978-07-15 2024-10-11 00:51:57 +3118 3118 3119 311.8 623.6 3118 1978-07-16 2024-10-11 00:51:58.000 1978-07-16 2024-10-11 00:51:58 +3119 3119 3120 311.9 623.8000000000001 3119 1978-07-17 2024-10-11 00:51:59.000 1978-07-17 2024-10-11 00:51:59 +3120 3120 3121 312 624 3120 1978-07-18 2024-10-11 00:52:00.000 1978-07-18 2024-10-11 00:52:00 +3121 3121 3122 312.1 624.2 3121 1978-07-19 2024-10-11 00:52:01.000 1978-07-19 2024-10-11 00:52:01 +3122 3122 3123 312.2 624.4000000000001 3122 1978-07-20 2024-10-11 00:52:02.000 1978-07-20 2024-10-11 00:52:02 +3123 3123 3124 312.3 624.6 3123 1978-07-21 2024-10-11 00:52:03.000 1978-07-21 2024-10-11 00:52:03 +3124 3124 3125 312.4 624.8000000000001 3124 1978-07-22 2024-10-11 00:52:04.000 1978-07-22 2024-10-11 00:52:04 +3125 3125 3126 312.5 625 3125 1978-07-23 2024-10-11 00:52:05.000 1978-07-23 2024-10-11 00:52:05 +3126 3126 3127 312.6 625.2 3126 1978-07-24 2024-10-11 00:52:06.000 1978-07-24 2024-10-11 00:52:06 +3127 3127 3128 312.7 625.4000000000001 3127 1978-07-25 2024-10-11 00:52:07.000 1978-07-25 2024-10-11 00:52:07 +3128 3128 3129 312.8 625.6 3128 1978-07-26 2024-10-11 00:52:08.000 1978-07-26 2024-10-11 00:52:08 +3129 3129 3130 312.9 625.8000000000001 3129 1978-07-27 2024-10-11 00:52:09.000 1978-07-27 2024-10-11 00:52:09 +3130 3130 3131 313 626 3130 1978-07-28 2024-10-11 00:52:10.000 1978-07-28 2024-10-11 00:52:10 +3131 3131 3132 313.1 626.2 3131 1978-07-29 2024-10-11 00:52:11.000 1978-07-29 2024-10-11 00:52:11 +3132 3132 3133 313.2 626.4000000000001 3132 1978-07-30 2024-10-11 00:52:12.000 1978-07-30 2024-10-11 00:52:12 +3133 3133 3134 313.3 626.6 3133 1978-07-31 2024-10-11 00:52:13.000 1978-07-31 2024-10-11 00:52:13 +3134 3134 3135 313.4 626.8000000000001 3134 1978-08-01 2024-10-11 00:52:14.000 1978-08-01 2024-10-11 00:52:14 +3135 3135 3136 313.5 627 3135 1978-08-02 2024-10-11 00:52:15.000 1978-08-02 2024-10-11 00:52:15 +3136 3136 3137 313.6 627.2 3136 1978-08-03 2024-10-11 00:52:16.000 1978-08-03 2024-10-11 00:52:16 +3137 3137 3138 313.7 627.4000000000001 3137 1978-08-04 2024-10-11 00:52:17.000 1978-08-04 2024-10-11 00:52:17 +3138 3138 3139 313.8 627.6 3138 1978-08-05 2024-10-11 00:52:18.000 1978-08-05 2024-10-11 00:52:18 +3139 3139 3140 313.9 627.8000000000001 3139 1978-08-06 2024-10-11 00:52:19.000 1978-08-06 2024-10-11 00:52:19 +3140 3140 3141 314 628 3140 1978-08-07 2024-10-11 00:52:20.000 1978-08-07 2024-10-11 00:52:20 +3141 3141 3142 314.1 628.2 3141 1978-08-08 2024-10-11 00:52:21.000 1978-08-08 2024-10-11 00:52:21 +3142 3142 3143 314.2 628.4000000000001 3142 1978-08-09 2024-10-11 00:52:22.000 1978-08-09 2024-10-11 00:52:22 +3143 3143 3144 314.3 628.6 3143 1978-08-10 2024-10-11 00:52:23.000 1978-08-10 2024-10-11 00:52:23 +3144 3144 3145 314.4 628.8000000000001 3144 1978-08-11 2024-10-11 00:52:24.000 1978-08-11 2024-10-11 00:52:24 +3145 3145 3146 314.5 629 3145 1978-08-12 2024-10-11 00:52:25.000 1978-08-12 2024-10-11 00:52:25 +3146 3146 3147 314.6 629.2 3146 1978-08-13 2024-10-11 00:52:26.000 1978-08-13 2024-10-11 00:52:26 +3147 3147 3148 314.7 629.4000000000001 3147 1978-08-14 2024-10-11 00:52:27.000 1978-08-14 2024-10-11 00:52:27 +3148 3148 3149 314.8 629.6 3148 1978-08-15 2024-10-11 00:52:28.000 1978-08-15 2024-10-11 00:52:28 +3149 3149 3150 314.9 629.8000000000001 3149 1978-08-16 2024-10-11 00:52:29.000 1978-08-16 2024-10-11 00:52:29 +3150 3150 3151 315 630 3150 1978-08-17 2024-10-11 00:52:30.000 1978-08-17 2024-10-11 00:52:30 +3151 3151 3152 315.1 630.2 3151 1978-08-18 2024-10-11 00:52:31.000 1978-08-18 2024-10-11 00:52:31 +3152 3152 3153 315.2 630.4000000000001 3152 1978-08-19 2024-10-11 00:52:32.000 1978-08-19 2024-10-11 00:52:32 +3153 3153 3154 315.3 630.6 3153 1978-08-20 2024-10-11 00:52:33.000 1978-08-20 2024-10-11 00:52:33 +3154 3154 3155 315.4 630.8000000000001 3154 1978-08-21 2024-10-11 00:52:34.000 1978-08-21 2024-10-11 00:52:34 +3155 3155 3156 315.5 631 3155 1978-08-22 2024-10-11 00:52:35.000 1978-08-22 2024-10-11 00:52:35 +3156 3156 3157 315.6 631.2 3156 1978-08-23 2024-10-11 00:52:36.000 1978-08-23 2024-10-11 00:52:36 +3157 3157 3158 315.7 631.4000000000001 3157 1978-08-24 2024-10-11 00:52:37.000 1978-08-24 2024-10-11 00:52:37 +3158 3158 3159 315.8 631.6 3158 1978-08-25 2024-10-11 00:52:38.000 1978-08-25 2024-10-11 00:52:38 +3159 3159 3160 315.9 631.8000000000001 3159 1978-08-26 2024-10-11 00:52:39.000 1978-08-26 2024-10-11 00:52:39 +3160 3160 3161 316 632 3160 1978-08-27 2024-10-11 00:52:40.000 1978-08-27 2024-10-11 00:52:40 +3161 3161 3162 316.1 632.2 3161 1978-08-28 2024-10-11 00:52:41.000 1978-08-28 2024-10-11 00:52:41 +3162 3162 3163 316.2 632.4000000000001 3162 1978-08-29 2024-10-11 00:52:42.000 1978-08-29 2024-10-11 00:52:42 +3163 3163 3164 316.3 632.6 3163 1978-08-30 2024-10-11 00:52:43.000 1978-08-30 2024-10-11 00:52:43 +3164 3164 3165 316.4 632.8000000000001 3164 1978-08-31 2024-10-11 00:52:44.000 1978-08-31 2024-10-11 00:52:44 +3165 3165 3166 316.5 633 3165 1978-09-01 2024-10-11 00:52:45.000 1978-09-01 2024-10-11 00:52:45 +3166 3166 3167 316.6 633.2 3166 1978-09-02 2024-10-11 00:52:46.000 1978-09-02 2024-10-11 00:52:46 +3167 3167 3168 316.7 633.4000000000001 3167 1978-09-03 2024-10-11 00:52:47.000 1978-09-03 2024-10-11 00:52:47 +3168 3168 3169 316.8 633.6 3168 1978-09-04 2024-10-11 00:52:48.000 1978-09-04 2024-10-11 00:52:48 +3169 3169 3170 316.9 633.8000000000001 3169 1978-09-05 2024-10-11 00:52:49.000 1978-09-05 2024-10-11 00:52:49 +3170 3170 3171 317 634 3170 1978-09-06 2024-10-11 00:52:50.000 1978-09-06 2024-10-11 00:52:50 +3171 3171 3172 317.1 634.2 3171 1978-09-07 2024-10-11 00:52:51.000 1978-09-07 2024-10-11 00:52:51 +3172 3172 3173 317.2 634.4000000000001 3172 1978-09-08 2024-10-11 00:52:52.000 1978-09-08 2024-10-11 00:52:52 +3173 3173 3174 317.3 634.6 3173 1978-09-09 2024-10-11 00:52:53.000 1978-09-09 2024-10-11 00:52:53 +3174 3174 3175 317.4 634.8000000000001 3174 1978-09-10 2024-10-11 00:52:54.000 1978-09-10 2024-10-11 00:52:54 +3175 3175 3176 317.5 635 3175 1978-09-11 2024-10-11 00:52:55.000 1978-09-11 2024-10-11 00:52:55 +3176 3176 3177 317.6 635.2 3176 1978-09-12 2024-10-11 00:52:56.000 1978-09-12 2024-10-11 00:52:56 +3177 3177 3178 317.7 635.4000000000001 3177 1978-09-13 2024-10-11 00:52:57.000 1978-09-13 2024-10-11 00:52:57 +3178 3178 3179 317.8 635.6 3178 1978-09-14 2024-10-11 00:52:58.000 1978-09-14 2024-10-11 00:52:58 +3179 3179 3180 317.9 635.8000000000001 3179 1978-09-15 2024-10-11 00:52:59.000 1978-09-15 2024-10-11 00:52:59 +3180 3180 3181 318 636 3180 1978-09-16 2024-10-11 00:53:00.000 1978-09-16 2024-10-11 00:53:00 +3181 3181 3182 318.1 636.2 3181 1978-09-17 2024-10-11 00:53:01.000 1978-09-17 2024-10-11 00:53:01 +3182 3182 3183 318.2 636.4000000000001 3182 1978-09-18 2024-10-11 00:53:02.000 1978-09-18 2024-10-11 00:53:02 +3183 3183 3184 318.3 636.6 3183 1978-09-19 2024-10-11 00:53:03.000 1978-09-19 2024-10-11 00:53:03 +3184 3184 3185 318.4 636.8000000000001 3184 1978-09-20 2024-10-11 00:53:04.000 1978-09-20 2024-10-11 00:53:04 +3185 3185 3186 318.5 637 3185 1978-09-21 2024-10-11 00:53:05.000 1978-09-21 2024-10-11 00:53:05 +3186 3186 3187 318.6 637.2 3186 1978-09-22 2024-10-11 00:53:06.000 1978-09-22 2024-10-11 00:53:06 +3187 3187 3188 318.7 637.4000000000001 3187 1978-09-23 2024-10-11 00:53:07.000 1978-09-23 2024-10-11 00:53:07 +3188 3188 3189 318.8 637.6 3188 1978-09-24 2024-10-11 00:53:08.000 1978-09-24 2024-10-11 00:53:08 +3189 3189 3190 318.9 637.8000000000001 3189 1978-09-25 2024-10-11 00:53:09.000 1978-09-25 2024-10-11 00:53:09 +3190 3190 3191 319 638 3190 1978-09-26 2024-10-11 00:53:10.000 1978-09-26 2024-10-11 00:53:10 +3191 3191 3192 319.1 638.2 3191 1978-09-27 2024-10-11 00:53:11.000 1978-09-27 2024-10-11 00:53:11 +3192 3192 3193 319.2 638.4000000000001 3192 1978-09-28 2024-10-11 00:53:12.000 1978-09-28 2024-10-11 00:53:12 +3193 3193 3194 319.3 638.6 3193 1978-09-29 2024-10-11 00:53:13.000 1978-09-29 2024-10-11 00:53:13 +3194 3194 3195 319.4 638.8000000000001 3194 1978-09-30 2024-10-11 00:53:14.000 1978-09-30 2024-10-11 00:53:14 +3195 3195 3196 319.5 639 3195 1978-10-01 2024-10-11 00:53:15.000 1978-10-01 2024-10-11 00:53:15 +3196 3196 3197 319.6 639.2 3196 1978-10-02 2024-10-11 00:53:16.000 1978-10-02 2024-10-11 00:53:16 +3197 3197 3198 319.7 639.4000000000001 3197 1978-10-03 2024-10-11 00:53:17.000 1978-10-03 2024-10-11 00:53:17 +3198 3198 3199 319.8 639.6 3198 1978-10-04 2024-10-11 00:53:18.000 1978-10-04 2024-10-11 00:53:18 +3199 3199 3200 319.9 639.8000000000001 3199 1978-10-05 2024-10-11 00:53:19.000 1978-10-05 2024-10-11 00:53:19 +3200 3200 3201 320 640 3200 1978-10-06 2024-10-11 00:53:20.000 1978-10-06 2024-10-11 00:53:20 +3201 3201 3202 320.1 640.2 3201 1978-10-07 2024-10-11 00:53:21.000 1978-10-07 2024-10-11 00:53:21 +3202 3202 3203 320.2 640.4000000000001 3202 1978-10-08 2024-10-11 00:53:22.000 1978-10-08 2024-10-11 00:53:22 +3203 3203 3204 320.3 640.6 3203 1978-10-09 2024-10-11 00:53:23.000 1978-10-09 2024-10-11 00:53:23 +3204 3204 3205 320.4 640.8000000000001 3204 1978-10-10 2024-10-11 00:53:24.000 1978-10-10 2024-10-11 00:53:24 +3205 3205 3206 320.5 641 3205 1978-10-11 2024-10-11 00:53:25.000 1978-10-11 2024-10-11 00:53:25 +3206 3206 3207 320.6 641.2 3206 1978-10-12 2024-10-11 00:53:26.000 1978-10-12 2024-10-11 00:53:26 +3207 3207 3208 320.7 641.4000000000001 3207 1978-10-13 2024-10-11 00:53:27.000 1978-10-13 2024-10-11 00:53:27 +3208 3208 3209 320.8 641.6 3208 1978-10-14 2024-10-11 00:53:28.000 1978-10-14 2024-10-11 00:53:28 +3209 3209 3210 320.9 641.8000000000001 3209 1978-10-15 2024-10-11 00:53:29.000 1978-10-15 2024-10-11 00:53:29 +3210 3210 3211 321 642 3210 1978-10-16 2024-10-11 00:53:30.000 1978-10-16 2024-10-11 00:53:30 +3211 3211 3212 321.1 642.2 3211 1978-10-17 2024-10-11 00:53:31.000 1978-10-17 2024-10-11 00:53:31 +3212 3212 3213 321.2 642.4000000000001 3212 1978-10-18 2024-10-11 00:53:32.000 1978-10-18 2024-10-11 00:53:32 +3213 3213 3214 321.3 642.6 3213 1978-10-19 2024-10-11 00:53:33.000 1978-10-19 2024-10-11 00:53:33 +3214 3214 3215 321.4 642.8000000000001 3214 1978-10-20 2024-10-11 00:53:34.000 1978-10-20 2024-10-11 00:53:34 +3215 3215 3216 321.5 643 3215 1978-10-21 2024-10-11 00:53:35.000 1978-10-21 2024-10-11 00:53:35 +3216 3216 3217 321.6 643.2 3216 1978-10-22 2024-10-11 00:53:36.000 1978-10-22 2024-10-11 00:53:36 +3217 3217 3218 321.7 643.4000000000001 3217 1978-10-23 2024-10-11 00:53:37.000 1978-10-23 2024-10-11 00:53:37 +3218 3218 3219 321.8 643.6 3218 1978-10-24 2024-10-11 00:53:38.000 1978-10-24 2024-10-11 00:53:38 +3219 3219 3220 321.9 643.8000000000001 3219 1978-10-25 2024-10-11 00:53:39.000 1978-10-25 2024-10-11 00:53:39 +3220 3220 3221 322 644 3220 1978-10-26 2024-10-11 00:53:40.000 1978-10-26 2024-10-11 00:53:40 +3221 3221 3222 322.1 644.2 3221 1978-10-27 2024-10-11 00:53:41.000 1978-10-27 2024-10-11 00:53:41 +3222 3222 3223 322.2 644.4000000000001 3222 1978-10-28 2024-10-11 00:53:42.000 1978-10-28 2024-10-11 00:53:42 +3223 3223 3224 322.3 644.6 3223 1978-10-29 2024-10-11 00:53:43.000 1978-10-29 2024-10-11 00:53:43 +3224 3224 3225 322.4 644.8000000000001 3224 1978-10-30 2024-10-11 00:53:44.000 1978-10-30 2024-10-11 00:53:44 +3225 3225 3226 322.5 645 3225 1978-10-31 2024-10-11 00:53:45.000 1978-10-31 2024-10-11 00:53:45 +3226 3226 3227 322.6 645.2 3226 1978-11-01 2024-10-11 00:53:46.000 1978-11-01 2024-10-11 00:53:46 +3227 3227 3228 322.7 645.4000000000001 3227 1978-11-02 2024-10-11 00:53:47.000 1978-11-02 2024-10-11 00:53:47 +3228 3228 3229 322.8 645.6 3228 1978-11-03 2024-10-11 00:53:48.000 1978-11-03 2024-10-11 00:53:48 +3229 3229 3230 322.9 645.8000000000001 3229 1978-11-04 2024-10-11 00:53:49.000 1978-11-04 2024-10-11 00:53:49 +3230 3230 3231 323 646 3230 1978-11-05 2024-10-11 00:53:50.000 1978-11-05 2024-10-11 00:53:50 +3231 3231 3232 323.1 646.2 3231 1978-11-06 2024-10-11 00:53:51.000 1978-11-06 2024-10-11 00:53:51 +3232 3232 3233 323.2 646.4000000000001 3232 1978-11-07 2024-10-11 00:53:52.000 1978-11-07 2024-10-11 00:53:52 +3233 3233 3234 323.3 646.6 3233 1978-11-08 2024-10-11 00:53:53.000 1978-11-08 2024-10-11 00:53:53 +3234 3234 3235 323.4 646.8000000000001 3234 1978-11-09 2024-10-11 00:53:54.000 1978-11-09 2024-10-11 00:53:54 +3235 3235 3236 323.5 647 3235 1978-11-10 2024-10-11 00:53:55.000 1978-11-10 2024-10-11 00:53:55 +3236 3236 3237 323.6 647.2 3236 1978-11-11 2024-10-11 00:53:56.000 1978-11-11 2024-10-11 00:53:56 +3237 3237 3238 323.7 647.4000000000001 3237 1978-11-12 2024-10-11 00:53:57.000 1978-11-12 2024-10-11 00:53:57 +3238 3238 3239 323.8 647.6 3238 1978-11-13 2024-10-11 00:53:58.000 1978-11-13 2024-10-11 00:53:58 +3239 3239 3240 323.9 647.8000000000001 3239 1978-11-14 2024-10-11 00:53:59.000 1978-11-14 2024-10-11 00:53:59 +3240 3240 3241 324 648 3240 1978-11-15 2024-10-11 00:54:00.000 1978-11-15 2024-10-11 00:54:00 +3241 3241 3242 324.1 648.2 3241 1978-11-16 2024-10-11 00:54:01.000 1978-11-16 2024-10-11 00:54:01 +3242 3242 3243 324.2 648.4000000000001 3242 1978-11-17 2024-10-11 00:54:02.000 1978-11-17 2024-10-11 00:54:02 +3243 3243 3244 324.3 648.6 3243 1978-11-18 2024-10-11 00:54:03.000 1978-11-18 2024-10-11 00:54:03 +3244 3244 3245 324.4 648.8000000000001 3244 1978-11-19 2024-10-11 00:54:04.000 1978-11-19 2024-10-11 00:54:04 +3245 3245 3246 324.5 649 3245 1978-11-20 2024-10-11 00:54:05.000 1978-11-20 2024-10-11 00:54:05 +3246 3246 3247 324.6 649.2 3246 1978-11-21 2024-10-11 00:54:06.000 1978-11-21 2024-10-11 00:54:06 +3247 3247 3248 324.7 649.4000000000001 3247 1978-11-22 2024-10-11 00:54:07.000 1978-11-22 2024-10-11 00:54:07 +3248 3248 3249 324.8 649.6 3248 1978-11-23 2024-10-11 00:54:08.000 1978-11-23 2024-10-11 00:54:08 +3249 3249 3250 324.9 649.8000000000001 3249 1978-11-24 2024-10-11 00:54:09.000 1978-11-24 2024-10-11 00:54:09 +3250 3250 3251 325 650 3250 1978-11-25 2024-10-11 00:54:10.000 1978-11-25 2024-10-11 00:54:10 +3251 3251 3252 325.1 650.2 3251 1978-11-26 2024-10-11 00:54:11.000 1978-11-26 2024-10-11 00:54:11 +3252 3252 3253 325.2 650.4000000000001 3252 1978-11-27 2024-10-11 00:54:12.000 1978-11-27 2024-10-11 00:54:12 +3253 3253 3254 325.3 650.6 3253 1978-11-28 2024-10-11 00:54:13.000 1978-11-28 2024-10-11 00:54:13 +3254 3254 3255 325.4 650.8000000000001 3254 1978-11-29 2024-10-11 00:54:14.000 1978-11-29 2024-10-11 00:54:14 +3255 3255 3256 325.5 651 3255 1978-11-30 2024-10-11 00:54:15.000 1978-11-30 2024-10-11 00:54:15 +3256 3256 3257 325.6 651.2 3256 1978-12-01 2024-10-11 00:54:16.000 1978-12-01 2024-10-11 00:54:16 +3257 3257 3258 325.7 651.4000000000001 3257 1978-12-02 2024-10-11 00:54:17.000 1978-12-02 2024-10-11 00:54:17 +3258 3258 3259 325.8 651.6 3258 1978-12-03 2024-10-11 00:54:18.000 1978-12-03 2024-10-11 00:54:18 +3259 3259 3260 325.9 651.8000000000001 3259 1978-12-04 2024-10-11 00:54:19.000 1978-12-04 2024-10-11 00:54:19 +3260 3260 3261 326 652 3260 1978-12-05 2024-10-11 00:54:20.000 1978-12-05 2024-10-11 00:54:20 +3261 3261 3262 326.1 652.2 3261 1978-12-06 2024-10-11 00:54:21.000 1978-12-06 2024-10-11 00:54:21 +3262 3262 3263 326.2 652.4000000000001 3262 1978-12-07 2024-10-11 00:54:22.000 1978-12-07 2024-10-11 00:54:22 +3263 3263 3264 326.3 652.6 3263 1978-12-08 2024-10-11 00:54:23.000 1978-12-08 2024-10-11 00:54:23 +3264 3264 3265 326.4 652.8000000000001 3264 1978-12-09 2024-10-11 00:54:24.000 1978-12-09 2024-10-11 00:54:24 +3265 3265 3266 326.5 653 3265 1978-12-10 2024-10-11 00:54:25.000 1978-12-10 2024-10-11 00:54:25 +3266 3266 3267 326.6 653.2 3266 1978-12-11 2024-10-11 00:54:26.000 1978-12-11 2024-10-11 00:54:26 +3267 3267 3268 326.7 653.4000000000001 3267 1978-12-12 2024-10-11 00:54:27.000 1978-12-12 2024-10-11 00:54:27 +3268 3268 3269 326.8 653.6 3268 1978-12-13 2024-10-11 00:54:28.000 1978-12-13 2024-10-11 00:54:28 +3269 3269 3270 326.9 653.8000000000001 3269 1978-12-14 2024-10-11 00:54:29.000 1978-12-14 2024-10-11 00:54:29 +3270 3270 3271 327 654 3270 1978-12-15 2024-10-11 00:54:30.000 1978-12-15 2024-10-11 00:54:30 +3271 3271 3272 327.1 654.2 3271 1978-12-16 2024-10-11 00:54:31.000 1978-12-16 2024-10-11 00:54:31 +3272 3272 3273 327.2 654.4000000000001 3272 1978-12-17 2024-10-11 00:54:32.000 1978-12-17 2024-10-11 00:54:32 +3273 3273 3274 327.3 654.6 3273 1978-12-18 2024-10-11 00:54:33.000 1978-12-18 2024-10-11 00:54:33 +3274 3274 3275 327.4 654.8000000000001 3274 1978-12-19 2024-10-11 00:54:34.000 1978-12-19 2024-10-11 00:54:34 +3275 3275 3276 327.5 655 3275 1978-12-20 2024-10-11 00:54:35.000 1978-12-20 2024-10-11 00:54:35 +3276 3276 3277 327.6 655.2 3276 1978-12-21 2024-10-11 00:54:36.000 1978-12-21 2024-10-11 00:54:36 +3277 3277 3278 327.7 655.4000000000001 3277 1978-12-22 2024-10-11 00:54:37.000 1978-12-22 2024-10-11 00:54:37 +3278 3278 3279 327.8 655.6 3278 1978-12-23 2024-10-11 00:54:38.000 1978-12-23 2024-10-11 00:54:38 +3279 3279 3280 327.9 655.8000000000001 3279 1978-12-24 2024-10-11 00:54:39.000 1978-12-24 2024-10-11 00:54:39 +3280 3280 3281 328 656 3280 1978-12-25 2024-10-11 00:54:40.000 1978-12-25 2024-10-11 00:54:40 +3281 3281 3282 328.1 656.2 3281 1978-12-26 2024-10-11 00:54:41.000 1978-12-26 2024-10-11 00:54:41 +3282 3282 3283 328.2 656.4000000000001 3282 1978-12-27 2024-10-11 00:54:42.000 1978-12-27 2024-10-11 00:54:42 +3283 3283 3284 328.3 656.6 3283 1978-12-28 2024-10-11 00:54:43.000 1978-12-28 2024-10-11 00:54:43 +3284 3284 3285 328.4 656.8000000000001 3284 1978-12-29 2024-10-11 00:54:44.000 1978-12-29 2024-10-11 00:54:44 +3285 3285 3286 328.5 657 3285 1978-12-30 2024-10-11 00:54:45.000 1978-12-30 2024-10-11 00:54:45 +3286 3286 3287 328.6 657.2 3286 1978-12-31 2024-10-11 00:54:46.000 1978-12-31 2024-10-11 00:54:46 +3287 3287 3288 328.7 657.4000000000001 3287 1979-01-01 2024-10-11 00:54:47.000 1979-01-01 2024-10-11 00:54:47 +3288 3288 3289 328.8 657.6 3288 1979-01-02 2024-10-11 00:54:48.000 1979-01-02 2024-10-11 00:54:48 +3289 3289 3290 328.9 657.8000000000001 3289 1979-01-03 2024-10-11 00:54:49.000 1979-01-03 2024-10-11 00:54:49 +3290 3290 3291 329 658 3290 1979-01-04 2024-10-11 00:54:50.000 1979-01-04 2024-10-11 00:54:50 +3291 3291 3292 329.1 658.2 3291 1979-01-05 2024-10-11 00:54:51.000 1979-01-05 2024-10-11 00:54:51 +3292 3292 3293 329.2 658.4000000000001 3292 1979-01-06 2024-10-11 00:54:52.000 1979-01-06 2024-10-11 00:54:52 +3293 3293 3294 329.3 658.6 3293 1979-01-07 2024-10-11 00:54:53.000 1979-01-07 2024-10-11 00:54:53 +3294 3294 3295 329.4 658.8000000000001 3294 1979-01-08 2024-10-11 00:54:54.000 1979-01-08 2024-10-11 00:54:54 +3295 3295 3296 329.5 659 3295 1979-01-09 2024-10-11 00:54:55.000 1979-01-09 2024-10-11 00:54:55 +3296 3296 3297 329.6 659.2 3296 1979-01-10 2024-10-11 00:54:56.000 1979-01-10 2024-10-11 00:54:56 +3297 3297 3298 329.7 659.4000000000001 3297 1979-01-11 2024-10-11 00:54:57.000 1979-01-11 2024-10-11 00:54:57 +3298 3298 3299 329.8 659.6 3298 1979-01-12 2024-10-11 00:54:58.000 1979-01-12 2024-10-11 00:54:58 +3299 3299 3300 329.9 659.8000000000001 3299 1979-01-13 2024-10-11 00:54:59.000 1979-01-13 2024-10-11 00:54:59 +3300 3300 3301 330 660 3300 1979-01-14 2024-10-11 00:55:00.000 1979-01-14 2024-10-11 00:55:00 +3301 3301 3302 330.1 660.2 3301 1979-01-15 2024-10-11 00:55:01.000 1979-01-15 2024-10-11 00:55:01 +3302 3302 3303 330.2 660.4000000000001 3302 1979-01-16 2024-10-11 00:55:02.000 1979-01-16 2024-10-11 00:55:02 +3303 3303 3304 330.3 660.6 3303 1979-01-17 2024-10-11 00:55:03.000 1979-01-17 2024-10-11 00:55:03 +3304 3304 3305 330.4 660.8000000000001 3304 1979-01-18 2024-10-11 00:55:04.000 1979-01-18 2024-10-11 00:55:04 +3305 3305 3306 330.5 661 3305 1979-01-19 2024-10-11 00:55:05.000 1979-01-19 2024-10-11 00:55:05 +3306 3306 3307 330.6 661.2 3306 1979-01-20 2024-10-11 00:55:06.000 1979-01-20 2024-10-11 00:55:06 +3307 3307 3308 330.7 661.4000000000001 3307 1979-01-21 2024-10-11 00:55:07.000 1979-01-21 2024-10-11 00:55:07 +3308 3308 3309 330.8 661.6 3308 1979-01-22 2024-10-11 00:55:08.000 1979-01-22 2024-10-11 00:55:08 +3309 3309 3310 330.9 661.8000000000001 3309 1979-01-23 2024-10-11 00:55:09.000 1979-01-23 2024-10-11 00:55:09 +3310 3310 3311 331 662 3310 1979-01-24 2024-10-11 00:55:10.000 1979-01-24 2024-10-11 00:55:10 +3311 3311 3312 331.1 662.2 3311 1979-01-25 2024-10-11 00:55:11.000 1979-01-25 2024-10-11 00:55:11 +3312 3312 3313 331.2 662.4000000000001 3312 1979-01-26 2024-10-11 00:55:12.000 1979-01-26 2024-10-11 00:55:12 +3313 3313 3314 331.3 662.6 3313 1979-01-27 2024-10-11 00:55:13.000 1979-01-27 2024-10-11 00:55:13 +3314 3314 3315 331.4 662.8000000000001 3314 1979-01-28 2024-10-11 00:55:14.000 1979-01-28 2024-10-11 00:55:14 +3315 3315 3316 331.5 663 3315 1979-01-29 2024-10-11 00:55:15.000 1979-01-29 2024-10-11 00:55:15 +3316 3316 3317 331.6 663.2 3316 1979-01-30 2024-10-11 00:55:16.000 1979-01-30 2024-10-11 00:55:16 +3317 3317 3318 331.7 663.4000000000001 3317 1979-01-31 2024-10-11 00:55:17.000 1979-01-31 2024-10-11 00:55:17 +3318 3318 3319 331.8 663.6 3318 1979-02-01 2024-10-11 00:55:18.000 1979-02-01 2024-10-11 00:55:18 +3319 3319 3320 331.9 663.8000000000001 3319 1979-02-02 2024-10-11 00:55:19.000 1979-02-02 2024-10-11 00:55:19 +3320 3320 3321 332 664 3320 1979-02-03 2024-10-11 00:55:20.000 1979-02-03 2024-10-11 00:55:20 +3321 3321 3322 332.1 664.2 3321 1979-02-04 2024-10-11 00:55:21.000 1979-02-04 2024-10-11 00:55:21 +3322 3322 3323 332.2 664.4000000000001 3322 1979-02-05 2024-10-11 00:55:22.000 1979-02-05 2024-10-11 00:55:22 +3323 3323 3324 332.3 664.6 3323 1979-02-06 2024-10-11 00:55:23.000 1979-02-06 2024-10-11 00:55:23 +3324 3324 3325 332.4 664.8000000000001 3324 1979-02-07 2024-10-11 00:55:24.000 1979-02-07 2024-10-11 00:55:24 +3325 3325 3326 332.5 665 3325 1979-02-08 2024-10-11 00:55:25.000 1979-02-08 2024-10-11 00:55:25 +3326 3326 3327 332.6 665.2 3326 1979-02-09 2024-10-11 00:55:26.000 1979-02-09 2024-10-11 00:55:26 +3327 3327 3328 332.7 665.4000000000001 3327 1979-02-10 2024-10-11 00:55:27.000 1979-02-10 2024-10-11 00:55:27 +3328 3328 3329 332.8 665.6 3328 1979-02-11 2024-10-11 00:55:28.000 1979-02-11 2024-10-11 00:55:28 +3329 3329 3330 332.9 665.8000000000001 3329 1979-02-12 2024-10-11 00:55:29.000 1979-02-12 2024-10-11 00:55:29 +3330 3330 3331 333 666 3330 1979-02-13 2024-10-11 00:55:30.000 1979-02-13 2024-10-11 00:55:30 +3331 3331 3332 333.1 666.2 3331 1979-02-14 2024-10-11 00:55:31.000 1979-02-14 2024-10-11 00:55:31 +3332 3332 3333 333.2 666.4000000000001 3332 1979-02-15 2024-10-11 00:55:32.000 1979-02-15 2024-10-11 00:55:32 +3333 3333 3334 333.3 666.6 3333 1979-02-16 2024-10-11 00:55:33.000 1979-02-16 2024-10-11 00:55:33 +3334 3334 3335 333.4 666.8000000000001 3334 1979-02-17 2024-10-11 00:55:34.000 1979-02-17 2024-10-11 00:55:34 +3335 3335 3336 333.5 667 3335 1979-02-18 2024-10-11 00:55:35.000 1979-02-18 2024-10-11 00:55:35 +3336 3336 3337 333.6 667.2 3336 1979-02-19 2024-10-11 00:55:36.000 1979-02-19 2024-10-11 00:55:36 +3337 3337 3338 333.7 667.4000000000001 3337 1979-02-20 2024-10-11 00:55:37.000 1979-02-20 2024-10-11 00:55:37 +3338 3338 3339 333.8 667.6 3338 1979-02-21 2024-10-11 00:55:38.000 1979-02-21 2024-10-11 00:55:38 +3339 3339 3340 333.9 667.8000000000001 3339 1979-02-22 2024-10-11 00:55:39.000 1979-02-22 2024-10-11 00:55:39 +3340 3340 3341 334 668 3340 1979-02-23 2024-10-11 00:55:40.000 1979-02-23 2024-10-11 00:55:40 +3341 3341 3342 334.1 668.2 3341 1979-02-24 2024-10-11 00:55:41.000 1979-02-24 2024-10-11 00:55:41 +3342 3342 3343 334.2 668.4000000000001 3342 1979-02-25 2024-10-11 00:55:42.000 1979-02-25 2024-10-11 00:55:42 +3343 3343 3344 334.3 668.6 3343 1979-02-26 2024-10-11 00:55:43.000 1979-02-26 2024-10-11 00:55:43 +3344 3344 3345 334.4 668.8000000000001 3344 1979-02-27 2024-10-11 00:55:44.000 1979-02-27 2024-10-11 00:55:44 +3345 3345 3346 334.5 669 3345 1979-02-28 2024-10-11 00:55:45.000 1979-02-28 2024-10-11 00:55:45 +3346 3346 3347 334.6 669.2 3346 1979-03-01 2024-10-11 00:55:46.000 1979-03-01 2024-10-11 00:55:46 +3347 3347 3348 334.7 669.4000000000001 3347 1979-03-02 2024-10-11 00:55:47.000 1979-03-02 2024-10-11 00:55:47 +3348 3348 3349 334.8 669.6 3348 1979-03-03 2024-10-11 00:55:48.000 1979-03-03 2024-10-11 00:55:48 +3349 3349 3350 334.9 669.8000000000001 3349 1979-03-04 2024-10-11 00:55:49.000 1979-03-04 2024-10-11 00:55:49 +3350 3350 3351 335 670 3350 1979-03-05 2024-10-11 00:55:50.000 1979-03-05 2024-10-11 00:55:50 +3351 3351 3352 335.1 670.2 3351 1979-03-06 2024-10-11 00:55:51.000 1979-03-06 2024-10-11 00:55:51 +3352 3352 3353 335.2 670.4000000000001 3352 1979-03-07 2024-10-11 00:55:52.000 1979-03-07 2024-10-11 00:55:52 +3353 3353 3354 335.3 670.6 3353 1979-03-08 2024-10-11 00:55:53.000 1979-03-08 2024-10-11 00:55:53 +3354 3354 3355 335.4 670.8000000000001 3354 1979-03-09 2024-10-11 00:55:54.000 1979-03-09 2024-10-11 00:55:54 +3355 3355 3356 335.5 671 3355 1979-03-10 2024-10-11 00:55:55.000 1979-03-10 2024-10-11 00:55:55 +3356 3356 3357 335.6 671.2 3356 1979-03-11 2024-10-11 00:55:56.000 1979-03-11 2024-10-11 00:55:56 +3357 3357 3358 335.7 671.4000000000001 3357 1979-03-12 2024-10-11 00:55:57.000 1979-03-12 2024-10-11 00:55:57 +3358 3358 3359 335.8 671.6 3358 1979-03-13 2024-10-11 00:55:58.000 1979-03-13 2024-10-11 00:55:58 +3359 3359 3360 335.9 671.8000000000001 3359 1979-03-14 2024-10-11 00:55:59.000 1979-03-14 2024-10-11 00:55:59 +3360 3360 3361 336 672 3360 1979-03-15 2024-10-11 00:56:00.000 1979-03-15 2024-10-11 00:56:00 +3361 3361 3362 336.1 672.2 3361 1979-03-16 2024-10-11 00:56:01.000 1979-03-16 2024-10-11 00:56:01 +3362 3362 3363 336.2 672.4000000000001 3362 1979-03-17 2024-10-11 00:56:02.000 1979-03-17 2024-10-11 00:56:02 +3363 3363 3364 336.3 672.6 3363 1979-03-18 2024-10-11 00:56:03.000 1979-03-18 2024-10-11 00:56:03 +3364 3364 3365 336.4 672.8000000000001 3364 1979-03-19 2024-10-11 00:56:04.000 1979-03-19 2024-10-11 00:56:04 +3365 3365 3366 336.5 673 3365 1979-03-20 2024-10-11 00:56:05.000 1979-03-20 2024-10-11 00:56:05 +3366 3366 3367 336.6 673.2 3366 1979-03-21 2024-10-11 00:56:06.000 1979-03-21 2024-10-11 00:56:06 +3367 3367 3368 336.7 673.4000000000001 3367 1979-03-22 2024-10-11 00:56:07.000 1979-03-22 2024-10-11 00:56:07 +3368 3368 3369 336.8 673.6 3368 1979-03-23 2024-10-11 00:56:08.000 1979-03-23 2024-10-11 00:56:08 +3369 3369 3370 336.9 673.8000000000001 3369 1979-03-24 2024-10-11 00:56:09.000 1979-03-24 2024-10-11 00:56:09 +3370 3370 3371 337 674 3370 1979-03-25 2024-10-11 00:56:10.000 1979-03-25 2024-10-11 00:56:10 +3371 3371 3372 337.1 674.2 3371 1979-03-26 2024-10-11 00:56:11.000 1979-03-26 2024-10-11 00:56:11 +3372 3372 3373 337.2 674.4000000000001 3372 1979-03-27 2024-10-11 00:56:12.000 1979-03-27 2024-10-11 00:56:12 +3373 3373 3374 337.3 674.6 3373 1979-03-28 2024-10-11 00:56:13.000 1979-03-28 2024-10-11 00:56:13 +3374 3374 3375 337.4 674.8000000000001 3374 1979-03-29 2024-10-11 00:56:14.000 1979-03-29 2024-10-11 00:56:14 +3375 3375 3376 337.5 675 3375 1979-03-30 2024-10-11 00:56:15.000 1979-03-30 2024-10-11 00:56:15 +3376 3376 3377 337.6 675.2 3376 1979-03-31 2024-10-11 00:56:16.000 1979-03-31 2024-10-11 00:56:16 +3377 3377 3378 337.7 675.4000000000001 3377 1979-04-01 2024-10-11 00:56:17.000 1979-04-01 2024-10-11 00:56:17 +3378 3378 3379 337.8 675.6 3378 1979-04-02 2024-10-11 00:56:18.000 1979-04-02 2024-10-11 00:56:18 +3379 3379 3380 337.9 675.8000000000001 3379 1979-04-03 2024-10-11 00:56:19.000 1979-04-03 2024-10-11 00:56:19 +3380 3380 3381 338 676 3380 1979-04-04 2024-10-11 00:56:20.000 1979-04-04 2024-10-11 00:56:20 +3381 3381 3382 338.1 676.2 3381 1979-04-05 2024-10-11 00:56:21.000 1979-04-05 2024-10-11 00:56:21 +3382 3382 3383 338.2 676.4000000000001 3382 1979-04-06 2024-10-11 00:56:22.000 1979-04-06 2024-10-11 00:56:22 +3383 3383 3384 338.3 676.6 3383 1979-04-07 2024-10-11 00:56:23.000 1979-04-07 2024-10-11 00:56:23 +3384 3384 3385 338.4 676.8000000000001 3384 1979-04-08 2024-10-11 00:56:24.000 1979-04-08 2024-10-11 00:56:24 +3385 3385 3386 338.5 677 3385 1979-04-09 2024-10-11 00:56:25.000 1979-04-09 2024-10-11 00:56:25 +3386 3386 3387 338.6 677.2 3386 1979-04-10 2024-10-11 00:56:26.000 1979-04-10 2024-10-11 00:56:26 +3387 3387 3388 338.7 677.4000000000001 3387 1979-04-11 2024-10-11 00:56:27.000 1979-04-11 2024-10-11 00:56:27 +3388 3388 3389 338.8 677.6 3388 1979-04-12 2024-10-11 00:56:28.000 1979-04-12 2024-10-11 00:56:28 +3389 3389 3390 338.9 677.8000000000001 3389 1979-04-13 2024-10-11 00:56:29.000 1979-04-13 2024-10-11 00:56:29 +3390 3390 3391 339 678 3390 1979-04-14 2024-10-11 00:56:30.000 1979-04-14 2024-10-11 00:56:30 +3391 3391 3392 339.1 678.2 3391 1979-04-15 2024-10-11 00:56:31.000 1979-04-15 2024-10-11 00:56:31 +3392 3392 3393 339.2 678.4000000000001 3392 1979-04-16 2024-10-11 00:56:32.000 1979-04-16 2024-10-11 00:56:32 +3393 3393 3394 339.3 678.6 3393 1979-04-17 2024-10-11 00:56:33.000 1979-04-17 2024-10-11 00:56:33 +3394 3394 3395 339.4 678.8000000000001 3394 1979-04-18 2024-10-11 00:56:34.000 1979-04-18 2024-10-11 00:56:34 +3395 3395 3396 339.5 679 3395 1979-04-19 2024-10-11 00:56:35.000 1979-04-19 2024-10-11 00:56:35 +3396 3396 3397 339.6 679.2 3396 1979-04-20 2024-10-11 00:56:36.000 1979-04-20 2024-10-11 00:56:36 +3397 3397 3398 339.7 679.4000000000001 3397 1979-04-21 2024-10-11 00:56:37.000 1979-04-21 2024-10-11 00:56:37 +3398 3398 3399 339.8 679.6 3398 1979-04-22 2024-10-11 00:56:38.000 1979-04-22 2024-10-11 00:56:38 +3399 3399 3400 339.9 679.8000000000001 3399 1979-04-23 2024-10-11 00:56:39.000 1979-04-23 2024-10-11 00:56:39 +3400 3400 3401 340 680 3400 1979-04-24 2024-10-11 00:56:40.000 1979-04-24 2024-10-11 00:56:40 +3401 3401 3402 340.1 680.2 3401 1979-04-25 2024-10-11 00:56:41.000 1979-04-25 2024-10-11 00:56:41 +3402 3402 3403 340.2 680.4000000000001 3402 1979-04-26 2024-10-11 00:56:42.000 1979-04-26 2024-10-11 00:56:42 +3403 3403 3404 340.3 680.6 3403 1979-04-27 2024-10-11 00:56:43.000 1979-04-27 2024-10-11 00:56:43 +3404 3404 3405 340.4 680.8000000000001 3404 1979-04-28 2024-10-11 00:56:44.000 1979-04-28 2024-10-11 00:56:44 +3405 3405 3406 340.5 681 3405 1979-04-29 2024-10-11 00:56:45.000 1979-04-29 2024-10-11 00:56:45 +3406 3406 3407 340.6 681.2 3406 1979-04-30 2024-10-11 00:56:46.000 1979-04-30 2024-10-11 00:56:46 +3407 3407 3408 340.7 681.4000000000001 3407 1979-05-01 2024-10-11 00:56:47.000 1979-05-01 2024-10-11 00:56:47 +3408 3408 3409 340.8 681.6 3408 1979-05-02 2024-10-11 00:56:48.000 1979-05-02 2024-10-11 00:56:48 +3409 3409 3410 340.9 681.8000000000001 3409 1979-05-03 2024-10-11 00:56:49.000 1979-05-03 2024-10-11 00:56:49 +3410 3410 3411 341 682 3410 1979-05-04 2024-10-11 00:56:50.000 1979-05-04 2024-10-11 00:56:50 +3411 3411 3412 341.1 682.2 3411 1979-05-05 2024-10-11 00:56:51.000 1979-05-05 2024-10-11 00:56:51 +3412 3412 3413 341.2 682.4000000000001 3412 1979-05-06 2024-10-11 00:56:52.000 1979-05-06 2024-10-11 00:56:52 +3413 3413 3414 341.3 682.6 3413 1979-05-07 2024-10-11 00:56:53.000 1979-05-07 2024-10-11 00:56:53 +3414 3414 3415 341.4 682.8000000000001 3414 1979-05-08 2024-10-11 00:56:54.000 1979-05-08 2024-10-11 00:56:54 +3415 3415 3416 341.5 683 3415 1979-05-09 2024-10-11 00:56:55.000 1979-05-09 2024-10-11 00:56:55 +3416 3416 3417 341.6 683.2 3416 1979-05-10 2024-10-11 00:56:56.000 1979-05-10 2024-10-11 00:56:56 +3417 3417 3418 341.7 683.4000000000001 3417 1979-05-11 2024-10-11 00:56:57.000 1979-05-11 2024-10-11 00:56:57 +3418 3418 3419 341.8 683.6 3418 1979-05-12 2024-10-11 00:56:58.000 1979-05-12 2024-10-11 00:56:58 +3419 3419 3420 341.9 683.8000000000001 3419 1979-05-13 2024-10-11 00:56:59.000 1979-05-13 2024-10-11 00:56:59 +3420 3420 3421 342 684 3420 1979-05-14 2024-10-11 00:57:00.000 1979-05-14 2024-10-11 00:57:00 +3421 3421 3422 342.1 684.2 3421 1979-05-15 2024-10-11 00:57:01.000 1979-05-15 2024-10-11 00:57:01 +3422 3422 3423 342.2 684.4000000000001 3422 1979-05-16 2024-10-11 00:57:02.000 1979-05-16 2024-10-11 00:57:02 +3423 3423 3424 342.3 684.6 3423 1979-05-17 2024-10-11 00:57:03.000 1979-05-17 2024-10-11 00:57:03 +3424 3424 3425 342.4 684.8000000000001 3424 1979-05-18 2024-10-11 00:57:04.000 1979-05-18 2024-10-11 00:57:04 +3425 3425 3426 342.5 685 3425 1979-05-19 2024-10-11 00:57:05.000 1979-05-19 2024-10-11 00:57:05 +3426 3426 3427 342.6 685.2 3426 1979-05-20 2024-10-11 00:57:06.000 1979-05-20 2024-10-11 00:57:06 +3427 3427 3428 342.7 685.4000000000001 3427 1979-05-21 2024-10-11 00:57:07.000 1979-05-21 2024-10-11 00:57:07 +3428 3428 3429 342.8 685.6 3428 1979-05-22 2024-10-11 00:57:08.000 1979-05-22 2024-10-11 00:57:08 +3429 3429 3430 342.9 685.8000000000001 3429 1979-05-23 2024-10-11 00:57:09.000 1979-05-23 2024-10-11 00:57:09 +3430 3430 3431 343 686 3430 1979-05-24 2024-10-11 00:57:10.000 1979-05-24 2024-10-11 00:57:10 +3431 3431 3432 343.1 686.2 3431 1979-05-25 2024-10-11 00:57:11.000 1979-05-25 2024-10-11 00:57:11 +3432 3432 3433 343.2 686.4000000000001 3432 1979-05-26 2024-10-11 00:57:12.000 1979-05-26 2024-10-11 00:57:12 +3433 3433 3434 343.3 686.6 3433 1979-05-27 2024-10-11 00:57:13.000 1979-05-27 2024-10-11 00:57:13 +3434 3434 3435 343.4 686.8000000000001 3434 1979-05-28 2024-10-11 00:57:14.000 1979-05-28 2024-10-11 00:57:14 +3435 3435 3436 343.5 687 3435 1979-05-29 2024-10-11 00:57:15.000 1979-05-29 2024-10-11 00:57:15 +3436 3436 3437 343.6 687.2 3436 1979-05-30 2024-10-11 00:57:16.000 1979-05-30 2024-10-11 00:57:16 +3437 3437 3438 343.7 687.4000000000001 3437 1979-05-31 2024-10-11 00:57:17.000 1979-05-31 2024-10-11 00:57:17 +3438 3438 3439 343.8 687.6 3438 1979-06-01 2024-10-11 00:57:18.000 1979-06-01 2024-10-11 00:57:18 +3439 3439 3440 343.9 687.8000000000001 3439 1979-06-02 2024-10-11 00:57:19.000 1979-06-02 2024-10-11 00:57:19 +3440 3440 3441 344 688 3440 1979-06-03 2024-10-11 00:57:20.000 1979-06-03 2024-10-11 00:57:20 +3441 3441 3442 344.1 688.2 3441 1979-06-04 2024-10-11 00:57:21.000 1979-06-04 2024-10-11 00:57:21 +3442 3442 3443 344.2 688.4000000000001 3442 1979-06-05 2024-10-11 00:57:22.000 1979-06-05 2024-10-11 00:57:22 +3443 3443 3444 344.3 688.6 3443 1979-06-06 2024-10-11 00:57:23.000 1979-06-06 2024-10-11 00:57:23 +3444 3444 3445 344.4 688.8000000000001 3444 1979-06-07 2024-10-11 00:57:24.000 1979-06-07 2024-10-11 00:57:24 +3445 3445 3446 344.5 689 3445 1979-06-08 2024-10-11 00:57:25.000 1979-06-08 2024-10-11 00:57:25 +3446 3446 3447 344.6 689.2 3446 1979-06-09 2024-10-11 00:57:26.000 1979-06-09 2024-10-11 00:57:26 +3447 3447 3448 344.7 689.4000000000001 3447 1979-06-10 2024-10-11 00:57:27.000 1979-06-10 2024-10-11 00:57:27 +3448 3448 3449 344.8 689.6 3448 1979-06-11 2024-10-11 00:57:28.000 1979-06-11 2024-10-11 00:57:28 +3449 3449 3450 344.9 689.8000000000001 3449 1979-06-12 2024-10-11 00:57:29.000 1979-06-12 2024-10-11 00:57:29 +3450 3450 3451 345 690 3450 1979-06-13 2024-10-11 00:57:30.000 1979-06-13 2024-10-11 00:57:30 +3451 3451 3452 345.1 690.2 3451 1979-06-14 2024-10-11 00:57:31.000 1979-06-14 2024-10-11 00:57:31 +3452 3452 3453 345.2 690.4000000000001 3452 1979-06-15 2024-10-11 00:57:32.000 1979-06-15 2024-10-11 00:57:32 +3453 3453 3454 345.3 690.6 3453 1979-06-16 2024-10-11 00:57:33.000 1979-06-16 2024-10-11 00:57:33 +3454 3454 3455 345.4 690.8000000000001 3454 1979-06-17 2024-10-11 00:57:34.000 1979-06-17 2024-10-11 00:57:34 +3455 3455 3456 345.5 691 3455 1979-06-18 2024-10-11 00:57:35.000 1979-06-18 2024-10-11 00:57:35 +3456 3456 3457 345.6 691.2 3456 1979-06-19 2024-10-11 00:57:36.000 1979-06-19 2024-10-11 00:57:36 +3457 3457 3458 345.7 691.4000000000001 3457 1979-06-20 2024-10-11 00:57:37.000 1979-06-20 2024-10-11 00:57:37 +3458 3458 3459 345.8 691.6 3458 1979-06-21 2024-10-11 00:57:38.000 1979-06-21 2024-10-11 00:57:38 +3459 3459 3460 345.9 691.8000000000001 3459 1979-06-22 2024-10-11 00:57:39.000 1979-06-22 2024-10-11 00:57:39 +3460 3460 3461 346 692 3460 1979-06-23 2024-10-11 00:57:40.000 1979-06-23 2024-10-11 00:57:40 +3461 3461 3462 346.1 692.2 3461 1979-06-24 2024-10-11 00:57:41.000 1979-06-24 2024-10-11 00:57:41 +3462 3462 3463 346.2 692.4000000000001 3462 1979-06-25 2024-10-11 00:57:42.000 1979-06-25 2024-10-11 00:57:42 +3463 3463 3464 346.3 692.6 3463 1979-06-26 2024-10-11 00:57:43.000 1979-06-26 2024-10-11 00:57:43 +3464 3464 3465 346.4 692.8000000000001 3464 1979-06-27 2024-10-11 00:57:44.000 1979-06-27 2024-10-11 00:57:44 +3465 3465 3466 346.5 693 3465 1979-06-28 2024-10-11 00:57:45.000 1979-06-28 2024-10-11 00:57:45 +3466 3466 3467 346.6 693.2 3466 1979-06-29 2024-10-11 00:57:46.000 1979-06-29 2024-10-11 00:57:46 +3467 3467 3468 346.7 693.4000000000001 3467 1979-06-30 2024-10-11 00:57:47.000 1979-06-30 2024-10-11 00:57:47 +3468 3468 3469 346.8 693.6 3468 1979-07-01 2024-10-11 00:57:48.000 1979-07-01 2024-10-11 00:57:48 +3469 3469 3470 346.9 693.8000000000001 3469 1979-07-02 2024-10-11 00:57:49.000 1979-07-02 2024-10-11 00:57:49 +3470 3470 3471 347 694 3470 1979-07-03 2024-10-11 00:57:50.000 1979-07-03 2024-10-11 00:57:50 +3471 3471 3472 347.1 694.2 3471 1979-07-04 2024-10-11 00:57:51.000 1979-07-04 2024-10-11 00:57:51 +3472 3472 3473 347.2 694.4000000000001 3472 1979-07-05 2024-10-11 00:57:52.000 1979-07-05 2024-10-11 00:57:52 +3473 3473 3474 347.3 694.6 3473 1979-07-06 2024-10-11 00:57:53.000 1979-07-06 2024-10-11 00:57:53 +3474 3474 3475 347.4 694.8000000000001 3474 1979-07-07 2024-10-11 00:57:54.000 1979-07-07 2024-10-11 00:57:54 +3475 3475 3476 347.5 695 3475 1979-07-08 2024-10-11 00:57:55.000 1979-07-08 2024-10-11 00:57:55 +3476 3476 3477 347.6 695.2 3476 1979-07-09 2024-10-11 00:57:56.000 1979-07-09 2024-10-11 00:57:56 +3477 3477 3478 347.7 695.4000000000001 3477 1979-07-10 2024-10-11 00:57:57.000 1979-07-10 2024-10-11 00:57:57 +3478 3478 3479 347.8 695.6 3478 1979-07-11 2024-10-11 00:57:58.000 1979-07-11 2024-10-11 00:57:58 +3479 3479 3480 347.9 695.8000000000001 3479 1979-07-12 2024-10-11 00:57:59.000 1979-07-12 2024-10-11 00:57:59 +3480 3480 3481 348 696 3480 1979-07-13 2024-10-11 00:58:00.000 1979-07-13 2024-10-11 00:58:00 +3481 3481 3482 348.1 696.2 3481 1979-07-14 2024-10-11 00:58:01.000 1979-07-14 2024-10-11 00:58:01 +3482 3482 3483 348.2 696.4000000000001 3482 1979-07-15 2024-10-11 00:58:02.000 1979-07-15 2024-10-11 00:58:02 +3483 3483 3484 348.3 696.6 3483 1979-07-16 2024-10-11 00:58:03.000 1979-07-16 2024-10-11 00:58:03 +3484 3484 3485 348.4 696.8000000000001 3484 1979-07-17 2024-10-11 00:58:04.000 1979-07-17 2024-10-11 00:58:04 +3485 3485 3486 348.5 697 3485 1979-07-18 2024-10-11 00:58:05.000 1979-07-18 2024-10-11 00:58:05 +3486 3486 3487 348.6 697.2 3486 1979-07-19 2024-10-11 00:58:06.000 1979-07-19 2024-10-11 00:58:06 +3487 3487 3488 348.7 697.4000000000001 3487 1979-07-20 2024-10-11 00:58:07.000 1979-07-20 2024-10-11 00:58:07 +3488 3488 3489 348.8 697.6 3488 1979-07-21 2024-10-11 00:58:08.000 1979-07-21 2024-10-11 00:58:08 +3489 3489 3490 348.9 697.8000000000001 3489 1979-07-22 2024-10-11 00:58:09.000 1979-07-22 2024-10-11 00:58:09 +3490 3490 3491 349 698 3490 1979-07-23 2024-10-11 00:58:10.000 1979-07-23 2024-10-11 00:58:10 +3491 3491 3492 349.1 698.2 3491 1979-07-24 2024-10-11 00:58:11.000 1979-07-24 2024-10-11 00:58:11 +3492 3492 3493 349.2 698.4000000000001 3492 1979-07-25 2024-10-11 00:58:12.000 1979-07-25 2024-10-11 00:58:12 +3493 3493 3494 349.3 698.6 3493 1979-07-26 2024-10-11 00:58:13.000 1979-07-26 2024-10-11 00:58:13 +3494 3494 3495 349.4 698.8000000000001 3494 1979-07-27 2024-10-11 00:58:14.000 1979-07-27 2024-10-11 00:58:14 +3495 3495 3496 349.5 699 3495 1979-07-28 2024-10-11 00:58:15.000 1979-07-28 2024-10-11 00:58:15 +3496 3496 3497 349.6 699.2 3496 1979-07-29 2024-10-11 00:58:16.000 1979-07-29 2024-10-11 00:58:16 +3497 3497 3498 349.7 699.4000000000001 3497 1979-07-30 2024-10-11 00:58:17.000 1979-07-30 2024-10-11 00:58:17 +3498 3498 3499 349.8 699.6 3498 1979-07-31 2024-10-11 00:58:18.000 1979-07-31 2024-10-11 00:58:18 +3499 3499 3500 349.9 699.8000000000001 3499 1979-08-01 2024-10-11 00:58:19.000 1979-08-01 2024-10-11 00:58:19 +3500 3500 3501 350 700 3500 1979-08-02 2024-10-11 00:58:20.000 1979-08-02 2024-10-11 00:58:20 +3501 3501 3502 350.1 700.2 3501 1979-08-03 2024-10-11 00:58:21.000 1979-08-03 2024-10-11 00:58:21 +3502 3502 3503 350.2 700.4000000000001 3502 1979-08-04 2024-10-11 00:58:22.000 1979-08-04 2024-10-11 00:58:22 +3503 3503 3504 350.3 700.6 3503 1979-08-05 2024-10-11 00:58:23.000 1979-08-05 2024-10-11 00:58:23 +3504 3504 3505 350.4 700.8000000000001 3504 1979-08-06 2024-10-11 00:58:24.000 1979-08-06 2024-10-11 00:58:24 +3505 3505 3506 350.5 701 3505 1979-08-07 2024-10-11 00:58:25.000 1979-08-07 2024-10-11 00:58:25 +3506 3506 3507 350.6 701.2 3506 1979-08-08 2024-10-11 00:58:26.000 1979-08-08 2024-10-11 00:58:26 +3507 3507 3508 350.7 701.4000000000001 3507 1979-08-09 2024-10-11 00:58:27.000 1979-08-09 2024-10-11 00:58:27 +3508 3508 3509 350.8 701.6 3508 1979-08-10 2024-10-11 00:58:28.000 1979-08-10 2024-10-11 00:58:28 +3509 3509 3510 350.9 701.8000000000001 3509 1979-08-11 2024-10-11 00:58:29.000 1979-08-11 2024-10-11 00:58:29 +3510 3510 3511 351 702 3510 1979-08-12 2024-10-11 00:58:30.000 1979-08-12 2024-10-11 00:58:30 +3511 3511 3512 351.1 702.2 3511 1979-08-13 2024-10-11 00:58:31.000 1979-08-13 2024-10-11 00:58:31 +3512 3512 3513 351.2 702.4000000000001 3512 1979-08-14 2024-10-11 00:58:32.000 1979-08-14 2024-10-11 00:58:32 +3513 3513 3514 351.3 702.6 3513 1979-08-15 2024-10-11 00:58:33.000 1979-08-15 2024-10-11 00:58:33 +3514 3514 3515 351.4 702.8000000000001 3514 1979-08-16 2024-10-11 00:58:34.000 1979-08-16 2024-10-11 00:58:34 +3515 3515 3516 351.5 703 3515 1979-08-17 2024-10-11 00:58:35.000 1979-08-17 2024-10-11 00:58:35 +3516 3516 3517 351.6 703.2 3516 1979-08-18 2024-10-11 00:58:36.000 1979-08-18 2024-10-11 00:58:36 +3517 3517 3518 351.7 703.4000000000001 3517 1979-08-19 2024-10-11 00:58:37.000 1979-08-19 2024-10-11 00:58:37 +3518 3518 3519 351.8 703.6 3518 1979-08-20 2024-10-11 00:58:38.000 1979-08-20 2024-10-11 00:58:38 +3519 3519 3520 351.9 703.8000000000001 3519 1979-08-21 2024-10-11 00:58:39.000 1979-08-21 2024-10-11 00:58:39 +3520 3520 3521 352 704 3520 1979-08-22 2024-10-11 00:58:40.000 1979-08-22 2024-10-11 00:58:40 +3521 3521 3522 352.1 704.2 3521 1979-08-23 2024-10-11 00:58:41.000 1979-08-23 2024-10-11 00:58:41 +3522 3522 3523 352.2 704.4000000000001 3522 1979-08-24 2024-10-11 00:58:42.000 1979-08-24 2024-10-11 00:58:42 +3523 3523 3524 352.3 704.6 3523 1979-08-25 2024-10-11 00:58:43.000 1979-08-25 2024-10-11 00:58:43 +3524 3524 3525 352.4 704.8000000000001 3524 1979-08-26 2024-10-11 00:58:44.000 1979-08-26 2024-10-11 00:58:44 +3525 3525 3526 352.5 705 3525 1979-08-27 2024-10-11 00:58:45.000 1979-08-27 2024-10-11 00:58:45 +3526 3526 3527 352.6 705.2 3526 1979-08-28 2024-10-11 00:58:46.000 1979-08-28 2024-10-11 00:58:46 +3527 3527 3528 352.7 705.4000000000001 3527 1979-08-29 2024-10-11 00:58:47.000 1979-08-29 2024-10-11 00:58:47 +3528 3528 3529 352.8 705.6 3528 1979-08-30 2024-10-11 00:58:48.000 1979-08-30 2024-10-11 00:58:48 +3529 3529 3530 352.9 705.8000000000001 3529 1979-08-31 2024-10-11 00:58:49.000 1979-08-31 2024-10-11 00:58:49 +3530 3530 3531 353 706 3530 1979-09-01 2024-10-11 00:58:50.000 1979-09-01 2024-10-11 00:58:50 +3531 3531 3532 353.1 706.2 3531 1979-09-02 2024-10-11 00:58:51.000 1979-09-02 2024-10-11 00:58:51 +3532 3532 3533 353.2 706.4000000000001 3532 1979-09-03 2024-10-11 00:58:52.000 1979-09-03 2024-10-11 00:58:52 +3533 3533 3534 353.3 706.6 3533 1979-09-04 2024-10-11 00:58:53.000 1979-09-04 2024-10-11 00:58:53 +3534 3534 3535 353.4 706.8000000000001 3534 1979-09-05 2024-10-11 00:58:54.000 1979-09-05 2024-10-11 00:58:54 +3535 3535 3536 353.5 707 3535 1979-09-06 2024-10-11 00:58:55.000 1979-09-06 2024-10-11 00:58:55 +3536 3536 3537 353.6 707.2 3536 1979-09-07 2024-10-11 00:58:56.000 1979-09-07 2024-10-11 00:58:56 +3537 3537 3538 353.7 707.4000000000001 3537 1979-09-08 2024-10-11 00:58:57.000 1979-09-08 2024-10-11 00:58:57 +3538 3538 3539 353.8 707.6 3538 1979-09-09 2024-10-11 00:58:58.000 1979-09-09 2024-10-11 00:58:58 +3539 3539 3540 353.9 707.8000000000001 3539 1979-09-10 2024-10-11 00:58:59.000 1979-09-10 2024-10-11 00:58:59 +3540 3540 3541 354 708 3540 1979-09-11 2024-10-11 00:59:00.000 1979-09-11 2024-10-11 00:59:00 +3541 3541 3542 354.1 708.2 3541 1979-09-12 2024-10-11 00:59:01.000 1979-09-12 2024-10-11 00:59:01 +3542 3542 3543 354.2 708.4000000000001 3542 1979-09-13 2024-10-11 00:59:02.000 1979-09-13 2024-10-11 00:59:02 +3543 3543 3544 354.3 708.6 3543 1979-09-14 2024-10-11 00:59:03.000 1979-09-14 2024-10-11 00:59:03 +3544 3544 3545 354.4 708.8000000000001 3544 1979-09-15 2024-10-11 00:59:04.000 1979-09-15 2024-10-11 00:59:04 +3545 3545 3546 354.5 709 3545 1979-09-16 2024-10-11 00:59:05.000 1979-09-16 2024-10-11 00:59:05 +3546 3546 3547 354.6 709.2 3546 1979-09-17 2024-10-11 00:59:06.000 1979-09-17 2024-10-11 00:59:06 +3547 3547 3548 354.7 709.4000000000001 3547 1979-09-18 2024-10-11 00:59:07.000 1979-09-18 2024-10-11 00:59:07 +3548 3548 3549 354.8 709.6 3548 1979-09-19 2024-10-11 00:59:08.000 1979-09-19 2024-10-11 00:59:08 +3549 3549 3550 354.9 709.8000000000001 3549 1979-09-20 2024-10-11 00:59:09.000 1979-09-20 2024-10-11 00:59:09 +3550 3550 3551 355 710 3550 1979-09-21 2024-10-11 00:59:10.000 1979-09-21 2024-10-11 00:59:10 +3551 3551 3552 355.1 710.2 3551 1979-09-22 2024-10-11 00:59:11.000 1979-09-22 2024-10-11 00:59:11 +3552 3552 3553 355.2 710.4000000000001 3552 1979-09-23 2024-10-11 00:59:12.000 1979-09-23 2024-10-11 00:59:12 +3553 3553 3554 355.3 710.6 3553 1979-09-24 2024-10-11 00:59:13.000 1979-09-24 2024-10-11 00:59:13 +3554 3554 3555 355.4 710.8000000000001 3554 1979-09-25 2024-10-11 00:59:14.000 1979-09-25 2024-10-11 00:59:14 +3555 3555 3556 355.5 711 3555 1979-09-26 2024-10-11 00:59:15.000 1979-09-26 2024-10-11 00:59:15 +3556 3556 3557 355.6 711.2 3556 1979-09-27 2024-10-11 00:59:16.000 1979-09-27 2024-10-11 00:59:16 +3557 3557 3558 355.7 711.4000000000001 3557 1979-09-28 2024-10-11 00:59:17.000 1979-09-28 2024-10-11 00:59:17 +3558 3558 3559 355.8 711.6 3558 1979-09-29 2024-10-11 00:59:18.000 1979-09-29 2024-10-11 00:59:18 +3559 3559 3560 355.9 711.8000000000001 3559 1979-09-30 2024-10-11 00:59:19.000 1979-09-30 2024-10-11 00:59:19 +3560 3560 3561 356 712 3560 1979-10-01 2024-10-11 00:59:20.000 1979-10-01 2024-10-11 00:59:20 +3561 3561 3562 356.1 712.2 3561 1979-10-02 2024-10-11 00:59:21.000 1979-10-02 2024-10-11 00:59:21 +3562 3562 3563 356.2 712.4000000000001 3562 1979-10-03 2024-10-11 00:59:22.000 1979-10-03 2024-10-11 00:59:22 +3563 3563 3564 356.3 712.6 3563 1979-10-04 2024-10-11 00:59:23.000 1979-10-04 2024-10-11 00:59:23 +3564 3564 3565 356.4 712.8000000000001 3564 1979-10-05 2024-10-11 00:59:24.000 1979-10-05 2024-10-11 00:59:24 +3565 3565 3566 356.5 713 3565 1979-10-06 2024-10-11 00:59:25.000 1979-10-06 2024-10-11 00:59:25 +3566 3566 3567 356.6 713.2 3566 1979-10-07 2024-10-11 00:59:26.000 1979-10-07 2024-10-11 00:59:26 +3567 3567 3568 356.7 713.4000000000001 3567 1979-10-08 2024-10-11 00:59:27.000 1979-10-08 2024-10-11 00:59:27 +3568 3568 3569 356.8 713.6 3568 1979-10-09 2024-10-11 00:59:28.000 1979-10-09 2024-10-11 00:59:28 +3569 3569 3570 356.9 713.8000000000001 3569 1979-10-10 2024-10-11 00:59:29.000 1979-10-10 2024-10-11 00:59:29 +3570 3570 3571 357 714 3570 1979-10-11 2024-10-11 00:59:30.000 1979-10-11 2024-10-11 00:59:30 +3571 3571 3572 357.1 714.2 3571 1979-10-12 2024-10-11 00:59:31.000 1979-10-12 2024-10-11 00:59:31 +3572 3572 3573 357.2 714.4000000000001 3572 1979-10-13 2024-10-11 00:59:32.000 1979-10-13 2024-10-11 00:59:32 +3573 3573 3574 357.3 714.6 3573 1979-10-14 2024-10-11 00:59:33.000 1979-10-14 2024-10-11 00:59:33 +3574 3574 3575 357.4 714.8000000000001 3574 1979-10-15 2024-10-11 00:59:34.000 1979-10-15 2024-10-11 00:59:34 +3575 3575 3576 357.5 715 3575 1979-10-16 2024-10-11 00:59:35.000 1979-10-16 2024-10-11 00:59:35 +3576 3576 3577 357.6 715.2 3576 1979-10-17 2024-10-11 00:59:36.000 1979-10-17 2024-10-11 00:59:36 +3577 3577 3578 357.7 715.4000000000001 3577 1979-10-18 2024-10-11 00:59:37.000 1979-10-18 2024-10-11 00:59:37 +3578 3578 3579 357.8 715.6 3578 1979-10-19 2024-10-11 00:59:38.000 1979-10-19 2024-10-11 00:59:38 +3579 3579 3580 357.9 715.8000000000001 3579 1979-10-20 2024-10-11 00:59:39.000 1979-10-20 2024-10-11 00:59:39 +3580 3580 3581 358 716 3580 1979-10-21 2024-10-11 00:59:40.000 1979-10-21 2024-10-11 00:59:40 +3581 3581 3582 358.1 716.2 3581 1979-10-22 2024-10-11 00:59:41.000 1979-10-22 2024-10-11 00:59:41 +3582 3582 3583 358.2 716.4000000000001 3582 1979-10-23 2024-10-11 00:59:42.000 1979-10-23 2024-10-11 00:59:42 +3583 3583 3584 358.3 716.6 3583 1979-10-24 2024-10-11 00:59:43.000 1979-10-24 2024-10-11 00:59:43 +3584 3584 3585 358.4 716.8000000000001 3584 1979-10-25 2024-10-11 00:59:44.000 1979-10-25 2024-10-11 00:59:44 +3585 3585 3586 358.5 717 3585 1979-10-26 2024-10-11 00:59:45.000 1979-10-26 2024-10-11 00:59:45 +3586 3586 3587 358.6 717.2 3586 1979-10-27 2024-10-11 00:59:46.000 1979-10-27 2024-10-11 00:59:46 +3587 3587 3588 358.7 717.4000000000001 3587 1979-10-28 2024-10-11 00:59:47.000 1979-10-28 2024-10-11 00:59:47 +3588 3588 3589 358.8 717.6 3588 1979-10-29 2024-10-11 00:59:48.000 1979-10-29 2024-10-11 00:59:48 +3589 3589 3590 358.9 717.8000000000001 3589 1979-10-30 2024-10-11 00:59:49.000 1979-10-30 2024-10-11 00:59:49 +3590 3590 3591 359 718 3590 1979-10-31 2024-10-11 00:59:50.000 1979-10-31 2024-10-11 00:59:50 +3591 3591 3592 359.1 718.2 3591 1979-11-01 2024-10-11 00:59:51.000 1979-11-01 2024-10-11 00:59:51 +3592 3592 3593 359.2 718.4000000000001 3592 1979-11-02 2024-10-11 00:59:52.000 1979-11-02 2024-10-11 00:59:52 +3593 3593 3594 359.3 718.6 3593 1979-11-03 2024-10-11 00:59:53.000 1979-11-03 2024-10-11 00:59:53 +3594 3594 3595 359.4 718.8000000000001 3594 1979-11-04 2024-10-11 00:59:54.000 1979-11-04 2024-10-11 00:59:54 +3595 3595 3596 359.5 719 3595 1979-11-05 2024-10-11 00:59:55.000 1979-11-05 2024-10-11 00:59:55 +3596 3596 3597 359.6 719.2 3596 1979-11-06 2024-10-11 00:59:56.000 1979-11-06 2024-10-11 00:59:56 +3597 3597 3598 359.7 719.4000000000001 3597 1979-11-07 2024-10-11 00:59:57.000 1979-11-07 2024-10-11 00:59:57 +3598 3598 3599 359.8 719.6 3598 1979-11-08 2024-10-11 00:59:58.000 1979-11-08 2024-10-11 00:59:58 +3599 3599 3600 359.9 719.8000000000001 3599 1979-11-09 2024-10-11 00:59:59.000 1979-11-09 2024-10-11 00:59:59 +3600 3600 3601 360 720 3600 1979-11-10 2024-10-11 01:00:00.000 1979-11-10 2024-10-11 01:00:00 +3601 3601 3602 360.1 720.2 3601 1979-11-11 2024-10-11 01:00:01.000 1979-11-11 2024-10-11 01:00:01 +3602 3602 3603 360.2 720.4000000000001 3602 1979-11-12 2024-10-11 01:00:02.000 1979-11-12 2024-10-11 01:00:02 +3603 3603 3604 360.3 720.6 3603 1979-11-13 2024-10-11 01:00:03.000 1979-11-13 2024-10-11 01:00:03 +3604 3604 3605 360.4 720.8000000000001 3604 1979-11-14 2024-10-11 01:00:04.000 1979-11-14 2024-10-11 01:00:04 +3605 3605 3606 360.5 721 3605 1979-11-15 2024-10-11 01:00:05.000 1979-11-15 2024-10-11 01:00:05 +3606 3606 3607 360.6 721.2 3606 1979-11-16 2024-10-11 01:00:06.000 1979-11-16 2024-10-11 01:00:06 +3607 3607 3608 360.7 721.4000000000001 3607 1979-11-17 2024-10-11 01:00:07.000 1979-11-17 2024-10-11 01:00:07 +3608 3608 3609 360.8 721.6 3608 1979-11-18 2024-10-11 01:00:08.000 1979-11-18 2024-10-11 01:00:08 +3609 3609 3610 360.9 721.8000000000001 3609 1979-11-19 2024-10-11 01:00:09.000 1979-11-19 2024-10-11 01:00:09 +3610 3610 3611 361 722 3610 1979-11-20 2024-10-11 01:00:10.000 1979-11-20 2024-10-11 01:00:10 +3611 3611 3612 361.1 722.2 3611 1979-11-21 2024-10-11 01:00:11.000 1979-11-21 2024-10-11 01:00:11 +3612 3612 3613 361.2 722.4000000000001 3612 1979-11-22 2024-10-11 01:00:12.000 1979-11-22 2024-10-11 01:00:12 +3613 3613 3614 361.3 722.6 3613 1979-11-23 2024-10-11 01:00:13.000 1979-11-23 2024-10-11 01:00:13 +3614 3614 3615 361.4 722.8000000000001 3614 1979-11-24 2024-10-11 01:00:14.000 1979-11-24 2024-10-11 01:00:14 +3615 3615 3616 361.5 723 3615 1979-11-25 2024-10-11 01:00:15.000 1979-11-25 2024-10-11 01:00:15 +3616 3616 3617 361.6 723.2 3616 1979-11-26 2024-10-11 01:00:16.000 1979-11-26 2024-10-11 01:00:16 +3617 3617 3618 361.7 723.4000000000001 3617 1979-11-27 2024-10-11 01:00:17.000 1979-11-27 2024-10-11 01:00:17 +3618 3618 3619 361.8 723.6 3618 1979-11-28 2024-10-11 01:00:18.000 1979-11-28 2024-10-11 01:00:18 +3619 3619 3620 361.9 723.8000000000001 3619 1979-11-29 2024-10-11 01:00:19.000 1979-11-29 2024-10-11 01:00:19 +3620 3620 3621 362 724 3620 1979-11-30 2024-10-11 01:00:20.000 1979-11-30 2024-10-11 01:00:20 +3621 3621 3622 362.1 724.2 3621 1979-12-01 2024-10-11 01:00:21.000 1979-12-01 2024-10-11 01:00:21 +3622 3622 3623 362.2 724.4000000000001 3622 1979-12-02 2024-10-11 01:00:22.000 1979-12-02 2024-10-11 01:00:22 +3623 3623 3624 362.3 724.6 3623 1979-12-03 2024-10-11 01:00:23.000 1979-12-03 2024-10-11 01:00:23 +3624 3624 3625 362.4 724.8000000000001 3624 1979-12-04 2024-10-11 01:00:24.000 1979-12-04 2024-10-11 01:00:24 +3625 3625 3626 362.5 725 3625 1979-12-05 2024-10-11 01:00:25.000 1979-12-05 2024-10-11 01:00:25 +3626 3626 3627 362.6 725.2 3626 1979-12-06 2024-10-11 01:00:26.000 1979-12-06 2024-10-11 01:00:26 +3627 3627 3628 362.7 725.4000000000001 3627 1979-12-07 2024-10-11 01:00:27.000 1979-12-07 2024-10-11 01:00:27 +3628 3628 3629 362.8 725.6 3628 1979-12-08 2024-10-11 01:00:28.000 1979-12-08 2024-10-11 01:00:28 +3629 3629 3630 362.9 725.8000000000001 3629 1979-12-09 2024-10-11 01:00:29.000 1979-12-09 2024-10-11 01:00:29 +3630 3630 3631 363 726 3630 1979-12-10 2024-10-11 01:00:30.000 1979-12-10 2024-10-11 01:00:30 +3631 3631 3632 363.1 726.2 3631 1979-12-11 2024-10-11 01:00:31.000 1979-12-11 2024-10-11 01:00:31 +3632 3632 3633 363.2 726.4000000000001 3632 1979-12-12 2024-10-11 01:00:32.000 1979-12-12 2024-10-11 01:00:32 +3633 3633 3634 363.3 726.6 3633 1979-12-13 2024-10-11 01:00:33.000 1979-12-13 2024-10-11 01:00:33 +3634 3634 3635 363.4 726.8000000000001 3634 1979-12-14 2024-10-11 01:00:34.000 1979-12-14 2024-10-11 01:00:34 +3635 3635 3636 363.5 727 3635 1979-12-15 2024-10-11 01:00:35.000 1979-12-15 2024-10-11 01:00:35 +3636 3636 3637 363.6 727.2 3636 1979-12-16 2024-10-11 01:00:36.000 1979-12-16 2024-10-11 01:00:36 +3637 3637 3638 363.7 727.4000000000001 3637 1979-12-17 2024-10-11 01:00:37.000 1979-12-17 2024-10-11 01:00:37 +3638 3638 3639 363.8 727.6 3638 1979-12-18 2024-10-11 01:00:38.000 1979-12-18 2024-10-11 01:00:38 +3639 3639 3640 363.9 727.8000000000001 3639 1979-12-19 2024-10-11 01:00:39.000 1979-12-19 2024-10-11 01:00:39 +3640 3640 3641 364 728 3640 1979-12-20 2024-10-11 01:00:40.000 1979-12-20 2024-10-11 01:00:40 +3641 3641 3642 364.1 728.2 3641 1979-12-21 2024-10-11 01:00:41.000 1979-12-21 2024-10-11 01:00:41 +3642 3642 3643 364.2 728.4000000000001 3642 1979-12-22 2024-10-11 01:00:42.000 1979-12-22 2024-10-11 01:00:42 +3643 3643 3644 364.3 728.6 3643 1979-12-23 2024-10-11 01:00:43.000 1979-12-23 2024-10-11 01:00:43 +3644 3644 3645 364.4 728.8000000000001 3644 1979-12-24 2024-10-11 01:00:44.000 1979-12-24 2024-10-11 01:00:44 +3645 3645 3646 364.5 729 3645 1979-12-25 2024-10-11 01:00:45.000 1979-12-25 2024-10-11 01:00:45 +3646 3646 3647 364.6 729.2 3646 1979-12-26 2024-10-11 01:00:46.000 1979-12-26 2024-10-11 01:00:46 +3647 3647 3648 364.7 729.4000000000001 3647 1979-12-27 2024-10-11 01:00:47.000 1979-12-27 2024-10-11 01:00:47 +3648 3648 3649 364.8 729.6 3648 1979-12-28 2024-10-11 01:00:48.000 1979-12-28 2024-10-11 01:00:48 +3649 3649 3650 364.9 729.8000000000001 3649 1979-12-29 2024-10-11 01:00:49.000 1979-12-29 2024-10-11 01:00:49 +3650 3650 3651 365 730 3650 1979-12-30 2024-10-11 01:00:50.000 1979-12-30 2024-10-11 01:00:50 +3651 3651 3652 365.1 730.2 3651 1979-12-31 2024-10-11 01:00:51.000 1979-12-31 2024-10-11 01:00:51 +3652 3652 3653 365.2 730.4000000000001 3652 1980-01-01 2024-10-11 01:00:52.000 1980-01-01 2024-10-11 01:00:52 +3653 3653 3654 365.3 730.6 3653 1980-01-02 2024-10-11 01:00:53.000 1980-01-02 2024-10-11 01:00:53 +3654 3654 3655 365.4 730.8000000000001 3654 1980-01-03 2024-10-11 01:00:54.000 1980-01-03 2024-10-11 01:00:54 +3655 3655 3656 365.5 731 3655 1980-01-04 2024-10-11 01:00:55.000 1980-01-04 2024-10-11 01:00:55 +3656 3656 3657 365.6 731.2 3656 1980-01-05 2024-10-11 01:00:56.000 1980-01-05 2024-10-11 01:00:56 +3657 3657 3658 365.7 731.4000000000001 3657 1980-01-06 2024-10-11 01:00:57.000 1980-01-06 2024-10-11 01:00:57 +3658 3658 3659 365.8 731.6 3658 1980-01-07 2024-10-11 01:00:58.000 1980-01-07 2024-10-11 01:00:58 +3659 3659 3660 365.9 731.8000000000001 3659 1980-01-08 2024-10-11 01:00:59.000 1980-01-08 2024-10-11 01:00:59 +3660 3660 3661 366 732 3660 1980-01-09 2024-10-11 01:01:00.000 1980-01-09 2024-10-11 01:01:00 +3661 3661 3662 366.1 732.2 3661 1980-01-10 2024-10-11 01:01:01.000 1980-01-10 2024-10-11 01:01:01 +3662 3662 3663 366.2 732.4000000000001 3662 1980-01-11 2024-10-11 01:01:02.000 1980-01-11 2024-10-11 01:01:02 +3663 3663 3664 366.3 732.6 3663 1980-01-12 2024-10-11 01:01:03.000 1980-01-12 2024-10-11 01:01:03 +3664 3664 3665 366.4 732.8000000000001 3664 1980-01-13 2024-10-11 01:01:04.000 1980-01-13 2024-10-11 01:01:04 +3665 3665 3666 366.5 733 3665 1980-01-14 2024-10-11 01:01:05.000 1980-01-14 2024-10-11 01:01:05 +3666 3666 3667 366.6 733.2 3666 1980-01-15 2024-10-11 01:01:06.000 1980-01-15 2024-10-11 01:01:06 +3667 3667 3668 366.7 733.4000000000001 3667 1980-01-16 2024-10-11 01:01:07.000 1980-01-16 2024-10-11 01:01:07 +3668 3668 3669 366.8 733.6 3668 1980-01-17 2024-10-11 01:01:08.000 1980-01-17 2024-10-11 01:01:08 +3669 3669 3670 366.9 733.8000000000001 3669 1980-01-18 2024-10-11 01:01:09.000 1980-01-18 2024-10-11 01:01:09 +3670 3670 3671 367 734 3670 1980-01-19 2024-10-11 01:01:10.000 1980-01-19 2024-10-11 01:01:10 +3671 3671 3672 367.1 734.2 3671 1980-01-20 2024-10-11 01:01:11.000 1980-01-20 2024-10-11 01:01:11 +3672 3672 3673 367.2 734.4000000000001 3672 1980-01-21 2024-10-11 01:01:12.000 1980-01-21 2024-10-11 01:01:12 +3673 3673 3674 367.3 734.6 3673 1980-01-22 2024-10-11 01:01:13.000 1980-01-22 2024-10-11 01:01:13 +3674 3674 3675 367.4 734.8000000000001 3674 1980-01-23 2024-10-11 01:01:14.000 1980-01-23 2024-10-11 01:01:14 +3675 3675 3676 367.5 735 3675 1980-01-24 2024-10-11 01:01:15.000 1980-01-24 2024-10-11 01:01:15 +3676 3676 3677 367.6 735.2 3676 1980-01-25 2024-10-11 01:01:16.000 1980-01-25 2024-10-11 01:01:16 +3677 3677 3678 367.7 735.4000000000001 3677 1980-01-26 2024-10-11 01:01:17.000 1980-01-26 2024-10-11 01:01:17 +3678 3678 3679 367.8 735.6 3678 1980-01-27 2024-10-11 01:01:18.000 1980-01-27 2024-10-11 01:01:18 +3679 3679 3680 367.9 735.8000000000001 3679 1980-01-28 2024-10-11 01:01:19.000 1980-01-28 2024-10-11 01:01:19 +3680 3680 3681 368 736 3680 1980-01-29 2024-10-11 01:01:20.000 1980-01-29 2024-10-11 01:01:20 +3681 3681 3682 368.1 736.2 3681 1980-01-30 2024-10-11 01:01:21.000 1980-01-30 2024-10-11 01:01:21 +3682 3682 3683 368.2 736.4000000000001 3682 1980-01-31 2024-10-11 01:01:22.000 1980-01-31 2024-10-11 01:01:22 +3683 3683 3684 368.3 736.6 3683 1980-02-01 2024-10-11 01:01:23.000 1980-02-01 2024-10-11 01:01:23 +3684 3684 3685 368.4 736.8000000000001 3684 1980-02-02 2024-10-11 01:01:24.000 1980-02-02 2024-10-11 01:01:24 +3685 3685 3686 368.5 737 3685 1980-02-03 2024-10-11 01:01:25.000 1980-02-03 2024-10-11 01:01:25 +3686 3686 3687 368.6 737.2 3686 1980-02-04 2024-10-11 01:01:26.000 1980-02-04 2024-10-11 01:01:26 +3687 3687 3688 368.7 737.4000000000001 3687 1980-02-05 2024-10-11 01:01:27.000 1980-02-05 2024-10-11 01:01:27 +3688 3688 3689 368.8 737.6 3688 1980-02-06 2024-10-11 01:01:28.000 1980-02-06 2024-10-11 01:01:28 +3689 3689 3690 368.9 737.8000000000001 3689 1980-02-07 2024-10-11 01:01:29.000 1980-02-07 2024-10-11 01:01:29 +3690 3690 3691 369 738 3690 1980-02-08 2024-10-11 01:01:30.000 1980-02-08 2024-10-11 01:01:30 +3691 3691 3692 369.1 738.2 3691 1980-02-09 2024-10-11 01:01:31.000 1980-02-09 2024-10-11 01:01:31 +3692 3692 3693 369.2 738.4000000000001 3692 1980-02-10 2024-10-11 01:01:32.000 1980-02-10 2024-10-11 01:01:32 +3693 3693 3694 369.3 738.6 3693 1980-02-11 2024-10-11 01:01:33.000 1980-02-11 2024-10-11 01:01:33 +3694 3694 3695 369.4 738.8000000000001 3694 1980-02-12 2024-10-11 01:01:34.000 1980-02-12 2024-10-11 01:01:34 +3695 3695 3696 369.5 739 3695 1980-02-13 2024-10-11 01:01:35.000 1980-02-13 2024-10-11 01:01:35 +3696 3696 3697 369.6 739.2 3696 1980-02-14 2024-10-11 01:01:36.000 1980-02-14 2024-10-11 01:01:36 +3697 3697 3698 369.7 739.4000000000001 3697 1980-02-15 2024-10-11 01:01:37.000 1980-02-15 2024-10-11 01:01:37 +3698 3698 3699 369.8 739.6 3698 1980-02-16 2024-10-11 01:01:38.000 1980-02-16 2024-10-11 01:01:38 +3699 3699 3700 369.9 739.8000000000001 3699 1980-02-17 2024-10-11 01:01:39.000 1980-02-17 2024-10-11 01:01:39 +3700 3700 3701 370 740 3700 1980-02-18 2024-10-11 01:01:40.000 1980-02-18 2024-10-11 01:01:40 +3701 3701 3702 370.1 740.2 3701 1980-02-19 2024-10-11 01:01:41.000 1980-02-19 2024-10-11 01:01:41 +3702 3702 3703 370.2 740.4000000000001 3702 1980-02-20 2024-10-11 01:01:42.000 1980-02-20 2024-10-11 01:01:42 +3703 3703 3704 370.3 740.6 3703 1980-02-21 2024-10-11 01:01:43.000 1980-02-21 2024-10-11 01:01:43 +3704 3704 3705 370.4 740.8000000000001 3704 1980-02-22 2024-10-11 01:01:44.000 1980-02-22 2024-10-11 01:01:44 +3705 3705 3706 370.5 741 3705 1980-02-23 2024-10-11 01:01:45.000 1980-02-23 2024-10-11 01:01:45 +3706 3706 3707 370.6 741.2 3706 1980-02-24 2024-10-11 01:01:46.000 1980-02-24 2024-10-11 01:01:46 +3707 3707 3708 370.7 741.4000000000001 3707 1980-02-25 2024-10-11 01:01:47.000 1980-02-25 2024-10-11 01:01:47 +3708 3708 3709 370.8 741.6 3708 1980-02-26 2024-10-11 01:01:48.000 1980-02-26 2024-10-11 01:01:48 +3709 3709 3710 370.9 741.8000000000001 3709 1980-02-27 2024-10-11 01:01:49.000 1980-02-27 2024-10-11 01:01:49 +3710 3710 3711 371 742 3710 1980-02-28 2024-10-11 01:01:50.000 1980-02-28 2024-10-11 01:01:50 +3711 3711 3712 371.1 742.2 3711 1980-02-29 2024-10-11 01:01:51.000 1980-02-29 2024-10-11 01:01:51 +3712 3712 3713 371.2 742.4000000000001 3712 1980-03-01 2024-10-11 01:01:52.000 1980-03-01 2024-10-11 01:01:52 +3713 3713 3714 371.3 742.6 3713 1980-03-02 2024-10-11 01:01:53.000 1980-03-02 2024-10-11 01:01:53 +3714 3714 3715 371.4 742.8000000000001 3714 1980-03-03 2024-10-11 01:01:54.000 1980-03-03 2024-10-11 01:01:54 +3715 3715 3716 371.5 743 3715 1980-03-04 2024-10-11 01:01:55.000 1980-03-04 2024-10-11 01:01:55 +3716 3716 3717 371.6 743.2 3716 1980-03-05 2024-10-11 01:01:56.000 1980-03-05 2024-10-11 01:01:56 +3717 3717 3718 371.7 743.4000000000001 3717 1980-03-06 2024-10-11 01:01:57.000 1980-03-06 2024-10-11 01:01:57 +3718 3718 3719 371.8 743.6 3718 1980-03-07 2024-10-11 01:01:58.000 1980-03-07 2024-10-11 01:01:58 +3719 3719 3720 371.9 743.8000000000001 3719 1980-03-08 2024-10-11 01:01:59.000 1980-03-08 2024-10-11 01:01:59 +3720 3720 3721 372 744 3720 1980-03-09 2024-10-11 01:02:00.000 1980-03-09 2024-10-11 01:02:00 +3721 3721 3722 372.1 744.2 3721 1980-03-10 2024-10-11 01:02:01.000 1980-03-10 2024-10-11 01:02:01 +3722 3722 3723 372.2 744.4000000000001 3722 1980-03-11 2024-10-11 01:02:02.000 1980-03-11 2024-10-11 01:02:02 +3723 3723 3724 372.3 744.6 3723 1980-03-12 2024-10-11 01:02:03.000 1980-03-12 2024-10-11 01:02:03 +3724 3724 3725 372.4 744.8000000000001 3724 1980-03-13 2024-10-11 01:02:04.000 1980-03-13 2024-10-11 01:02:04 +3725 3725 3726 372.5 745 3725 1980-03-14 2024-10-11 01:02:05.000 1980-03-14 2024-10-11 01:02:05 +3726 3726 3727 372.6 745.2 3726 1980-03-15 2024-10-11 01:02:06.000 1980-03-15 2024-10-11 01:02:06 +3727 3727 3728 372.7 745.4000000000001 3727 1980-03-16 2024-10-11 01:02:07.000 1980-03-16 2024-10-11 01:02:07 +3728 3728 3729 372.8 745.6 3728 1980-03-17 2024-10-11 01:02:08.000 1980-03-17 2024-10-11 01:02:08 +3729 3729 3730 372.9 745.8000000000001 3729 1980-03-18 2024-10-11 01:02:09.000 1980-03-18 2024-10-11 01:02:09 +3730 3730 3731 373 746 3730 1980-03-19 2024-10-11 01:02:10.000 1980-03-19 2024-10-11 01:02:10 +3731 3731 3732 373.1 746.2 3731 1980-03-20 2024-10-11 01:02:11.000 1980-03-20 2024-10-11 01:02:11 +3732 3732 3733 373.2 746.4000000000001 3732 1980-03-21 2024-10-11 01:02:12.000 1980-03-21 2024-10-11 01:02:12 +3733 3733 3734 373.3 746.6 3733 1980-03-22 2024-10-11 01:02:13.000 1980-03-22 2024-10-11 01:02:13 +3734 3734 3735 373.4 746.8000000000001 3734 1980-03-23 2024-10-11 01:02:14.000 1980-03-23 2024-10-11 01:02:14 +3735 3735 3736 373.5 747 3735 1980-03-24 2024-10-11 01:02:15.000 1980-03-24 2024-10-11 01:02:15 +3736 3736 3737 373.6 747.2 3736 1980-03-25 2024-10-11 01:02:16.000 1980-03-25 2024-10-11 01:02:16 +3737 3737 3738 373.7 747.4000000000001 3737 1980-03-26 2024-10-11 01:02:17.000 1980-03-26 2024-10-11 01:02:17 +3738 3738 3739 373.8 747.6 3738 1980-03-27 2024-10-11 01:02:18.000 1980-03-27 2024-10-11 01:02:18 +3739 3739 3740 373.9 747.8000000000001 3739 1980-03-28 2024-10-11 01:02:19.000 1980-03-28 2024-10-11 01:02:19 +3740 3740 3741 374 748 3740 1980-03-29 2024-10-11 01:02:20.000 1980-03-29 2024-10-11 01:02:20 +3741 3741 3742 374.1 748.2 3741 1980-03-30 2024-10-11 01:02:21.000 1980-03-30 2024-10-11 01:02:21 +3742 3742 3743 374.2 748.4000000000001 3742 1980-03-31 2024-10-11 01:02:22.000 1980-03-31 2024-10-11 01:02:22 +3743 3743 3744 374.3 748.6 3743 1980-04-01 2024-10-11 01:02:23.000 1980-04-01 2024-10-11 01:02:23 +3744 3744 3745 374.4 748.8000000000001 3744 1980-04-02 2024-10-11 01:02:24.000 1980-04-02 2024-10-11 01:02:24 +3745 3745 3746 374.5 749 3745 1980-04-03 2024-10-11 01:02:25.000 1980-04-03 2024-10-11 01:02:25 +3746 3746 3747 374.6 749.2 3746 1980-04-04 2024-10-11 01:02:26.000 1980-04-04 2024-10-11 01:02:26 +3747 3747 3748 374.7 749.4000000000001 3747 1980-04-05 2024-10-11 01:02:27.000 1980-04-05 2024-10-11 01:02:27 +3748 3748 3749 374.8 749.6 3748 1980-04-06 2024-10-11 01:02:28.000 1980-04-06 2024-10-11 01:02:28 +3749 3749 3750 374.9 749.8000000000001 3749 1980-04-07 2024-10-11 01:02:29.000 1980-04-07 2024-10-11 01:02:29 +3750 3750 3751 375 750 3750 1980-04-08 2024-10-11 01:02:30.000 1980-04-08 2024-10-11 01:02:30 +3751 3751 3752 375.1 750.2 3751 1980-04-09 2024-10-11 01:02:31.000 1980-04-09 2024-10-11 01:02:31 +3752 3752 3753 375.2 750.4000000000001 3752 1980-04-10 2024-10-11 01:02:32.000 1980-04-10 2024-10-11 01:02:32 +3753 3753 3754 375.3 750.6 3753 1980-04-11 2024-10-11 01:02:33.000 1980-04-11 2024-10-11 01:02:33 +3754 3754 3755 375.4 750.8000000000001 3754 1980-04-12 2024-10-11 01:02:34.000 1980-04-12 2024-10-11 01:02:34 +3755 3755 3756 375.5 751 3755 1980-04-13 2024-10-11 01:02:35.000 1980-04-13 2024-10-11 01:02:35 +3756 3756 3757 375.6 751.2 3756 1980-04-14 2024-10-11 01:02:36.000 1980-04-14 2024-10-11 01:02:36 +3757 3757 3758 375.7 751.4000000000001 3757 1980-04-15 2024-10-11 01:02:37.000 1980-04-15 2024-10-11 01:02:37 +3758 3758 3759 375.8 751.6 3758 1980-04-16 2024-10-11 01:02:38.000 1980-04-16 2024-10-11 01:02:38 +3759 3759 3760 375.9 751.8000000000001 3759 1980-04-17 2024-10-11 01:02:39.000 1980-04-17 2024-10-11 01:02:39 +3760 3760 3761 376 752 3760 1980-04-18 2024-10-11 01:02:40.000 1980-04-18 2024-10-11 01:02:40 +3761 3761 3762 376.1 752.2 3761 1980-04-19 2024-10-11 01:02:41.000 1980-04-19 2024-10-11 01:02:41 +3762 3762 3763 376.2 752.4000000000001 3762 1980-04-20 2024-10-11 01:02:42.000 1980-04-20 2024-10-11 01:02:42 +3763 3763 3764 376.3 752.6 3763 1980-04-21 2024-10-11 01:02:43.000 1980-04-21 2024-10-11 01:02:43 +3764 3764 3765 376.4 752.8000000000001 3764 1980-04-22 2024-10-11 01:02:44.000 1980-04-22 2024-10-11 01:02:44 +3765 3765 3766 376.5 753 3765 1980-04-23 2024-10-11 01:02:45.000 1980-04-23 2024-10-11 01:02:45 +3766 3766 3767 376.6 753.2 3766 1980-04-24 2024-10-11 01:02:46.000 1980-04-24 2024-10-11 01:02:46 +3767 3767 3768 376.7 753.4000000000001 3767 1980-04-25 2024-10-11 01:02:47.000 1980-04-25 2024-10-11 01:02:47 +3768 3768 3769 376.8 753.6 3768 1980-04-26 2024-10-11 01:02:48.000 1980-04-26 2024-10-11 01:02:48 +3769 3769 3770 376.9 753.8000000000001 3769 1980-04-27 2024-10-11 01:02:49.000 1980-04-27 2024-10-11 01:02:49 +3770 3770 3771 377 754 3770 1980-04-28 2024-10-11 01:02:50.000 1980-04-28 2024-10-11 01:02:50 +3771 3771 3772 377.1 754.2 3771 1980-04-29 2024-10-11 01:02:51.000 1980-04-29 2024-10-11 01:02:51 +3772 3772 3773 377.2 754.4000000000001 3772 1980-04-30 2024-10-11 01:02:52.000 1980-04-30 2024-10-11 01:02:52 +3773 3773 3774 377.3 754.6 3773 1980-05-01 2024-10-11 01:02:53.000 1980-05-01 2024-10-11 01:02:53 +3774 3774 3775 377.4 754.8000000000001 3774 1980-05-02 2024-10-11 01:02:54.000 1980-05-02 2024-10-11 01:02:54 +3775 3775 3776 377.5 755 3775 1980-05-03 2024-10-11 01:02:55.000 1980-05-03 2024-10-11 01:02:55 +3776 3776 3777 377.6 755.2 3776 1980-05-04 2024-10-11 01:02:56.000 1980-05-04 2024-10-11 01:02:56 +3777 3777 3778 377.7 755.4000000000001 3777 1980-05-05 2024-10-11 01:02:57.000 1980-05-05 2024-10-11 01:02:57 +3778 3778 3779 377.8 755.6 3778 1980-05-06 2024-10-11 01:02:58.000 1980-05-06 2024-10-11 01:02:58 +3779 3779 3780 377.9 755.8000000000001 3779 1980-05-07 2024-10-11 01:02:59.000 1980-05-07 2024-10-11 01:02:59 +3780 3780 3781 378 756 3780 1980-05-08 2024-10-11 01:03:00.000 1980-05-08 2024-10-11 01:03:00 +3781 3781 3782 378.1 756.2 3781 1980-05-09 2024-10-11 01:03:01.000 1980-05-09 2024-10-11 01:03:01 +3782 3782 3783 378.2 756.4000000000001 3782 1980-05-10 2024-10-11 01:03:02.000 1980-05-10 2024-10-11 01:03:02 +3783 3783 3784 378.3 756.6 3783 1980-05-11 2024-10-11 01:03:03.000 1980-05-11 2024-10-11 01:03:03 +3784 3784 3785 378.4 756.8000000000001 3784 1980-05-12 2024-10-11 01:03:04.000 1980-05-12 2024-10-11 01:03:04 +3785 3785 3786 378.5 757 3785 1980-05-13 2024-10-11 01:03:05.000 1980-05-13 2024-10-11 01:03:05 +3786 3786 3787 378.6 757.2 3786 1980-05-14 2024-10-11 01:03:06.000 1980-05-14 2024-10-11 01:03:06 +3787 3787 3788 378.7 757.4000000000001 3787 1980-05-15 2024-10-11 01:03:07.000 1980-05-15 2024-10-11 01:03:07 +3788 3788 3789 378.8 757.6 3788 1980-05-16 2024-10-11 01:03:08.000 1980-05-16 2024-10-11 01:03:08 +3789 3789 3790 378.9 757.8000000000001 3789 1980-05-17 2024-10-11 01:03:09.000 1980-05-17 2024-10-11 01:03:09 +3790 3790 3791 379 758 3790 1980-05-18 2024-10-11 01:03:10.000 1980-05-18 2024-10-11 01:03:10 +3791 3791 3792 379.1 758.2 3791 1980-05-19 2024-10-11 01:03:11.000 1980-05-19 2024-10-11 01:03:11 +3792 3792 3793 379.2 758.4000000000001 3792 1980-05-20 2024-10-11 01:03:12.000 1980-05-20 2024-10-11 01:03:12 +3793 3793 3794 379.3 758.6 3793 1980-05-21 2024-10-11 01:03:13.000 1980-05-21 2024-10-11 01:03:13 +3794 3794 3795 379.4 758.8000000000001 3794 1980-05-22 2024-10-11 01:03:14.000 1980-05-22 2024-10-11 01:03:14 +3795 3795 3796 379.5 759 3795 1980-05-23 2024-10-11 01:03:15.000 1980-05-23 2024-10-11 01:03:15 +3796 3796 3797 379.6 759.2 3796 1980-05-24 2024-10-11 01:03:16.000 1980-05-24 2024-10-11 01:03:16 +3797 3797 3798 379.7 759.4000000000001 3797 1980-05-25 2024-10-11 01:03:17.000 1980-05-25 2024-10-11 01:03:17 +3798 3798 3799 379.8 759.6 3798 1980-05-26 2024-10-11 01:03:18.000 1980-05-26 2024-10-11 01:03:18 +3799 3799 3800 379.9 759.8000000000001 3799 1980-05-27 2024-10-11 01:03:19.000 1980-05-27 2024-10-11 01:03:19 +3800 3800 3801 380 760 3800 1980-05-28 2024-10-11 01:03:20.000 1980-05-28 2024-10-11 01:03:20 +3801 3801 3802 380.1 760.2 3801 1980-05-29 2024-10-11 01:03:21.000 1980-05-29 2024-10-11 01:03:21 +3802 3802 3803 380.2 760.4000000000001 3802 1980-05-30 2024-10-11 01:03:22.000 1980-05-30 2024-10-11 01:03:22 +3803 3803 3804 380.3 760.6 3803 1980-05-31 2024-10-11 01:03:23.000 1980-05-31 2024-10-11 01:03:23 +3804 3804 3805 380.4 760.8000000000001 3804 1980-06-01 2024-10-11 01:03:24.000 1980-06-01 2024-10-11 01:03:24 +3805 3805 3806 380.5 761 3805 1980-06-02 2024-10-11 01:03:25.000 1980-06-02 2024-10-11 01:03:25 +3806 3806 3807 380.6 761.2 3806 1980-06-03 2024-10-11 01:03:26.000 1980-06-03 2024-10-11 01:03:26 +3807 3807 3808 380.7 761.4000000000001 3807 1980-06-04 2024-10-11 01:03:27.000 1980-06-04 2024-10-11 01:03:27 +3808 3808 3809 380.8 761.6 3808 1980-06-05 2024-10-11 01:03:28.000 1980-06-05 2024-10-11 01:03:28 +3809 3809 3810 380.9 761.8000000000001 3809 1980-06-06 2024-10-11 01:03:29.000 1980-06-06 2024-10-11 01:03:29 +3810 3810 3811 381 762 3810 1980-06-07 2024-10-11 01:03:30.000 1980-06-07 2024-10-11 01:03:30 +3811 3811 3812 381.1 762.2 3811 1980-06-08 2024-10-11 01:03:31.000 1980-06-08 2024-10-11 01:03:31 +3812 3812 3813 381.2 762.4000000000001 3812 1980-06-09 2024-10-11 01:03:32.000 1980-06-09 2024-10-11 01:03:32 +3813 3813 3814 381.3 762.6 3813 1980-06-10 2024-10-11 01:03:33.000 1980-06-10 2024-10-11 01:03:33 +3814 3814 3815 381.4 762.8000000000001 3814 1980-06-11 2024-10-11 01:03:34.000 1980-06-11 2024-10-11 01:03:34 +3815 3815 3816 381.5 763 3815 1980-06-12 2024-10-11 01:03:35.000 1980-06-12 2024-10-11 01:03:35 +3816 3816 3817 381.6 763.2 3816 1980-06-13 2024-10-11 01:03:36.000 1980-06-13 2024-10-11 01:03:36 +3817 3817 3818 381.7 763.4000000000001 3817 1980-06-14 2024-10-11 01:03:37.000 1980-06-14 2024-10-11 01:03:37 +3818 3818 3819 381.8 763.6 3818 1980-06-15 2024-10-11 01:03:38.000 1980-06-15 2024-10-11 01:03:38 +3819 3819 3820 381.9 763.8000000000001 3819 1980-06-16 2024-10-11 01:03:39.000 1980-06-16 2024-10-11 01:03:39 +3820 3820 3821 382 764 3820 1980-06-17 2024-10-11 01:03:40.000 1980-06-17 2024-10-11 01:03:40 +3821 3821 3822 382.1 764.2 3821 1980-06-18 2024-10-11 01:03:41.000 1980-06-18 2024-10-11 01:03:41 +3822 3822 3823 382.2 764.4000000000001 3822 1980-06-19 2024-10-11 01:03:42.000 1980-06-19 2024-10-11 01:03:42 +3823 3823 3824 382.3 764.6 3823 1980-06-20 2024-10-11 01:03:43.000 1980-06-20 2024-10-11 01:03:43 +3824 3824 3825 382.4 764.8000000000001 3824 1980-06-21 2024-10-11 01:03:44.000 1980-06-21 2024-10-11 01:03:44 +3825 3825 3826 382.5 765 3825 1980-06-22 2024-10-11 01:03:45.000 1980-06-22 2024-10-11 01:03:45 +3826 3826 3827 382.6 765.2 3826 1980-06-23 2024-10-11 01:03:46.000 1980-06-23 2024-10-11 01:03:46 +3827 3827 3828 382.7 765.4000000000001 3827 1980-06-24 2024-10-11 01:03:47.000 1980-06-24 2024-10-11 01:03:47 +3828 3828 3829 382.8 765.6 3828 1980-06-25 2024-10-11 01:03:48.000 1980-06-25 2024-10-11 01:03:48 +3829 3829 3830 382.9 765.8000000000001 3829 1980-06-26 2024-10-11 01:03:49.000 1980-06-26 2024-10-11 01:03:49 +3830 3830 3831 383 766 3830 1980-06-27 2024-10-11 01:03:50.000 1980-06-27 2024-10-11 01:03:50 +3831 3831 3832 383.1 766.2 3831 1980-06-28 2024-10-11 01:03:51.000 1980-06-28 2024-10-11 01:03:51 +3832 3832 3833 383.2 766.4000000000001 3832 1980-06-29 2024-10-11 01:03:52.000 1980-06-29 2024-10-11 01:03:52 +3833 3833 3834 383.3 766.6 3833 1980-06-30 2024-10-11 01:03:53.000 1980-06-30 2024-10-11 01:03:53 +3834 3834 3835 383.4 766.8000000000001 3834 1980-07-01 2024-10-11 01:03:54.000 1980-07-01 2024-10-11 01:03:54 +3835 3835 3836 383.5 767 3835 1980-07-02 2024-10-11 01:03:55.000 1980-07-02 2024-10-11 01:03:55 +3836 3836 3837 383.6 767.2 3836 1980-07-03 2024-10-11 01:03:56.000 1980-07-03 2024-10-11 01:03:56 +3837 3837 3838 383.7 767.4000000000001 3837 1980-07-04 2024-10-11 01:03:57.000 1980-07-04 2024-10-11 01:03:57 +3838 3838 3839 383.8 767.6 3838 1980-07-05 2024-10-11 01:03:58.000 1980-07-05 2024-10-11 01:03:58 +3839 3839 3840 383.9 767.8000000000001 3839 1980-07-06 2024-10-11 01:03:59.000 1980-07-06 2024-10-11 01:03:59 +3840 3840 3841 384 768 3840 1980-07-07 2024-10-11 01:04:00.000 1980-07-07 2024-10-11 01:04:00 +3841 3841 3842 384.1 768.2 3841 1980-07-08 2024-10-11 01:04:01.000 1980-07-08 2024-10-11 01:04:01 +3842 3842 3843 384.2 768.4000000000001 3842 1980-07-09 2024-10-11 01:04:02.000 1980-07-09 2024-10-11 01:04:02 +3843 3843 3844 384.3 768.6 3843 1980-07-10 2024-10-11 01:04:03.000 1980-07-10 2024-10-11 01:04:03 +3844 3844 3845 384.4 768.8000000000001 3844 1980-07-11 2024-10-11 01:04:04.000 1980-07-11 2024-10-11 01:04:04 +3845 3845 3846 384.5 769 3845 1980-07-12 2024-10-11 01:04:05.000 1980-07-12 2024-10-11 01:04:05 +3846 3846 3847 384.6 769.2 3846 1980-07-13 2024-10-11 01:04:06.000 1980-07-13 2024-10-11 01:04:06 +3847 3847 3848 384.7 769.4000000000001 3847 1980-07-14 2024-10-11 01:04:07.000 1980-07-14 2024-10-11 01:04:07 +3848 3848 3849 384.8 769.6 3848 1980-07-15 2024-10-11 01:04:08.000 1980-07-15 2024-10-11 01:04:08 +3849 3849 3850 384.9 769.8000000000001 3849 1980-07-16 2024-10-11 01:04:09.000 1980-07-16 2024-10-11 01:04:09 +3850 3850 3851 385 770 3850 1980-07-17 2024-10-11 01:04:10.000 1980-07-17 2024-10-11 01:04:10 +3851 3851 3852 385.1 770.2 3851 1980-07-18 2024-10-11 01:04:11.000 1980-07-18 2024-10-11 01:04:11 +3852 3852 3853 385.2 770.4000000000001 3852 1980-07-19 2024-10-11 01:04:12.000 1980-07-19 2024-10-11 01:04:12 +3853 3853 3854 385.3 770.6 3853 1980-07-20 2024-10-11 01:04:13.000 1980-07-20 2024-10-11 01:04:13 +3854 3854 3855 385.4 770.8000000000001 3854 1980-07-21 2024-10-11 01:04:14.000 1980-07-21 2024-10-11 01:04:14 +3855 3855 3856 385.5 771 3855 1980-07-22 2024-10-11 01:04:15.000 1980-07-22 2024-10-11 01:04:15 +3856 3856 3857 385.6 771.2 3856 1980-07-23 2024-10-11 01:04:16.000 1980-07-23 2024-10-11 01:04:16 +3857 3857 3858 385.7 771.4000000000001 3857 1980-07-24 2024-10-11 01:04:17.000 1980-07-24 2024-10-11 01:04:17 +3858 3858 3859 385.8 771.6 3858 1980-07-25 2024-10-11 01:04:18.000 1980-07-25 2024-10-11 01:04:18 +3859 3859 3860 385.9 771.8000000000001 3859 1980-07-26 2024-10-11 01:04:19.000 1980-07-26 2024-10-11 01:04:19 +3860 3860 3861 386 772 3860 1980-07-27 2024-10-11 01:04:20.000 1980-07-27 2024-10-11 01:04:20 +3861 3861 3862 386.1 772.2 3861 1980-07-28 2024-10-11 01:04:21.000 1980-07-28 2024-10-11 01:04:21 +3862 3862 3863 386.2 772.4000000000001 3862 1980-07-29 2024-10-11 01:04:22.000 1980-07-29 2024-10-11 01:04:22 +3863 3863 3864 386.3 772.6 3863 1980-07-30 2024-10-11 01:04:23.000 1980-07-30 2024-10-11 01:04:23 +3864 3864 3865 386.4 772.8000000000001 3864 1980-07-31 2024-10-11 01:04:24.000 1980-07-31 2024-10-11 01:04:24 +3865 3865 3866 386.5 773 3865 1980-08-01 2024-10-11 01:04:25.000 1980-08-01 2024-10-11 01:04:25 +3866 3866 3867 386.6 773.2 3866 1980-08-02 2024-10-11 01:04:26.000 1980-08-02 2024-10-11 01:04:26 +3867 3867 3868 386.7 773.4000000000001 3867 1980-08-03 2024-10-11 01:04:27.000 1980-08-03 2024-10-11 01:04:27 +3868 3868 3869 386.8 773.6 3868 1980-08-04 2024-10-11 01:04:28.000 1980-08-04 2024-10-11 01:04:28 +3869 3869 3870 386.9 773.8000000000001 3869 1980-08-05 2024-10-11 01:04:29.000 1980-08-05 2024-10-11 01:04:29 +3870 3870 3871 387 774 3870 1980-08-06 2024-10-11 01:04:30.000 1980-08-06 2024-10-11 01:04:30 +3871 3871 3872 387.1 774.2 3871 1980-08-07 2024-10-11 01:04:31.000 1980-08-07 2024-10-11 01:04:31 +3872 3872 3873 387.2 774.4000000000001 3872 1980-08-08 2024-10-11 01:04:32.000 1980-08-08 2024-10-11 01:04:32 +3873 3873 3874 387.3 774.6 3873 1980-08-09 2024-10-11 01:04:33.000 1980-08-09 2024-10-11 01:04:33 +3874 3874 3875 387.4 774.8000000000001 3874 1980-08-10 2024-10-11 01:04:34.000 1980-08-10 2024-10-11 01:04:34 +3875 3875 3876 387.5 775 3875 1980-08-11 2024-10-11 01:04:35.000 1980-08-11 2024-10-11 01:04:35 +3876 3876 3877 387.6 775.2 3876 1980-08-12 2024-10-11 01:04:36.000 1980-08-12 2024-10-11 01:04:36 +3877 3877 3878 387.7 775.4000000000001 3877 1980-08-13 2024-10-11 01:04:37.000 1980-08-13 2024-10-11 01:04:37 +3878 3878 3879 387.8 775.6 3878 1980-08-14 2024-10-11 01:04:38.000 1980-08-14 2024-10-11 01:04:38 +3879 3879 3880 387.9 775.8000000000001 3879 1980-08-15 2024-10-11 01:04:39.000 1980-08-15 2024-10-11 01:04:39 +3880 3880 3881 388 776 3880 1980-08-16 2024-10-11 01:04:40.000 1980-08-16 2024-10-11 01:04:40 +3881 3881 3882 388.1 776.2 3881 1980-08-17 2024-10-11 01:04:41.000 1980-08-17 2024-10-11 01:04:41 +3882 3882 3883 388.2 776.4000000000001 3882 1980-08-18 2024-10-11 01:04:42.000 1980-08-18 2024-10-11 01:04:42 +3883 3883 3884 388.3 776.6 3883 1980-08-19 2024-10-11 01:04:43.000 1980-08-19 2024-10-11 01:04:43 +3884 3884 3885 388.4 776.8000000000001 3884 1980-08-20 2024-10-11 01:04:44.000 1980-08-20 2024-10-11 01:04:44 +3885 3885 3886 388.5 777 3885 1980-08-21 2024-10-11 01:04:45.000 1980-08-21 2024-10-11 01:04:45 +3886 3886 3887 388.6 777.2 3886 1980-08-22 2024-10-11 01:04:46.000 1980-08-22 2024-10-11 01:04:46 +3887 3887 3888 388.7 777.4000000000001 3887 1980-08-23 2024-10-11 01:04:47.000 1980-08-23 2024-10-11 01:04:47 +3888 3888 3889 388.8 777.6 3888 1980-08-24 2024-10-11 01:04:48.000 1980-08-24 2024-10-11 01:04:48 +3889 3889 3890 388.9 777.8000000000001 3889 1980-08-25 2024-10-11 01:04:49.000 1980-08-25 2024-10-11 01:04:49 +3890 3890 3891 389 778 3890 1980-08-26 2024-10-11 01:04:50.000 1980-08-26 2024-10-11 01:04:50 +3891 3891 3892 389.1 778.2 3891 1980-08-27 2024-10-11 01:04:51.000 1980-08-27 2024-10-11 01:04:51 +3892 3892 3893 389.2 778.4000000000001 3892 1980-08-28 2024-10-11 01:04:52.000 1980-08-28 2024-10-11 01:04:52 +3893 3893 3894 389.3 778.6 3893 1980-08-29 2024-10-11 01:04:53.000 1980-08-29 2024-10-11 01:04:53 +3894 3894 3895 389.4 778.8000000000001 3894 1980-08-30 2024-10-11 01:04:54.000 1980-08-30 2024-10-11 01:04:54 +3895 3895 3896 389.5 779 3895 1980-08-31 2024-10-11 01:04:55.000 1980-08-31 2024-10-11 01:04:55 +3896 3896 3897 389.6 779.2 3896 1980-09-01 2024-10-11 01:04:56.000 1980-09-01 2024-10-11 01:04:56 +3897 3897 3898 389.7 779.4000000000001 3897 1980-09-02 2024-10-11 01:04:57.000 1980-09-02 2024-10-11 01:04:57 +3898 3898 3899 389.8 779.6 3898 1980-09-03 2024-10-11 01:04:58.000 1980-09-03 2024-10-11 01:04:58 +3899 3899 3900 389.9 779.8000000000001 3899 1980-09-04 2024-10-11 01:04:59.000 1980-09-04 2024-10-11 01:04:59 +3900 3900 3901 390 780 3900 1980-09-05 2024-10-11 01:05:00.000 1980-09-05 2024-10-11 01:05:00 +3901 3901 3902 390.1 780.2 3901 1980-09-06 2024-10-11 01:05:01.000 1980-09-06 2024-10-11 01:05:01 +3902 3902 3903 390.2 780.4000000000001 3902 1980-09-07 2024-10-11 01:05:02.000 1980-09-07 2024-10-11 01:05:02 +3903 3903 3904 390.3 780.6 3903 1980-09-08 2024-10-11 01:05:03.000 1980-09-08 2024-10-11 01:05:03 +3904 3904 3905 390.4 780.8000000000001 3904 1980-09-09 2024-10-11 01:05:04.000 1980-09-09 2024-10-11 01:05:04 +3905 3905 3906 390.5 781 3905 1980-09-10 2024-10-11 01:05:05.000 1980-09-10 2024-10-11 01:05:05 +3906 3906 3907 390.6 781.2 3906 1980-09-11 2024-10-11 01:05:06.000 1980-09-11 2024-10-11 01:05:06 +3907 3907 3908 390.7 781.4000000000001 3907 1980-09-12 2024-10-11 01:05:07.000 1980-09-12 2024-10-11 01:05:07 +3908 3908 3909 390.8 781.6 3908 1980-09-13 2024-10-11 01:05:08.000 1980-09-13 2024-10-11 01:05:08 +3909 3909 3910 390.9 781.8000000000001 3909 1980-09-14 2024-10-11 01:05:09.000 1980-09-14 2024-10-11 01:05:09 +3910 3910 3911 391 782 3910 1980-09-15 2024-10-11 01:05:10.000 1980-09-15 2024-10-11 01:05:10 +3911 3911 3912 391.1 782.2 3911 1980-09-16 2024-10-11 01:05:11.000 1980-09-16 2024-10-11 01:05:11 +3912 3912 3913 391.2 782.4000000000001 3912 1980-09-17 2024-10-11 01:05:12.000 1980-09-17 2024-10-11 01:05:12 +3913 3913 3914 391.3 782.6 3913 1980-09-18 2024-10-11 01:05:13.000 1980-09-18 2024-10-11 01:05:13 +3914 3914 3915 391.4 782.8000000000001 3914 1980-09-19 2024-10-11 01:05:14.000 1980-09-19 2024-10-11 01:05:14 +3915 3915 3916 391.5 783 3915 1980-09-20 2024-10-11 01:05:15.000 1980-09-20 2024-10-11 01:05:15 +3916 3916 3917 391.6 783.2 3916 1980-09-21 2024-10-11 01:05:16.000 1980-09-21 2024-10-11 01:05:16 +3917 3917 3918 391.7 783.4000000000001 3917 1980-09-22 2024-10-11 01:05:17.000 1980-09-22 2024-10-11 01:05:17 +3918 3918 3919 391.8 783.6 3918 1980-09-23 2024-10-11 01:05:18.000 1980-09-23 2024-10-11 01:05:18 +3919 3919 3920 391.9 783.8000000000001 3919 1980-09-24 2024-10-11 01:05:19.000 1980-09-24 2024-10-11 01:05:19 +3920 3920 3921 392 784 3920 1980-09-25 2024-10-11 01:05:20.000 1980-09-25 2024-10-11 01:05:20 +3921 3921 3922 392.1 784.2 3921 1980-09-26 2024-10-11 01:05:21.000 1980-09-26 2024-10-11 01:05:21 +3922 3922 3923 392.2 784.4000000000001 3922 1980-09-27 2024-10-11 01:05:22.000 1980-09-27 2024-10-11 01:05:22 +3923 3923 3924 392.3 784.6 3923 1980-09-28 2024-10-11 01:05:23.000 1980-09-28 2024-10-11 01:05:23 +3924 3924 3925 392.4 784.8000000000001 3924 1980-09-29 2024-10-11 01:05:24.000 1980-09-29 2024-10-11 01:05:24 +3925 3925 3926 392.5 785 3925 1980-09-30 2024-10-11 01:05:25.000 1980-09-30 2024-10-11 01:05:25 +3926 3926 3927 392.6 785.2 3926 1980-10-01 2024-10-11 01:05:26.000 1980-10-01 2024-10-11 01:05:26 +3927 3927 3928 392.7 785.4000000000001 3927 1980-10-02 2024-10-11 01:05:27.000 1980-10-02 2024-10-11 01:05:27 +3928 3928 3929 392.8 785.6 3928 1980-10-03 2024-10-11 01:05:28.000 1980-10-03 2024-10-11 01:05:28 +3929 3929 3930 392.9 785.8000000000001 3929 1980-10-04 2024-10-11 01:05:29.000 1980-10-04 2024-10-11 01:05:29 +3930 3930 3931 393 786 3930 1980-10-05 2024-10-11 01:05:30.000 1980-10-05 2024-10-11 01:05:30 +3931 3931 3932 393.1 786.2 3931 1980-10-06 2024-10-11 01:05:31.000 1980-10-06 2024-10-11 01:05:31 +3932 3932 3933 393.2 786.4000000000001 3932 1980-10-07 2024-10-11 01:05:32.000 1980-10-07 2024-10-11 01:05:32 +3933 3933 3934 393.3 786.6 3933 1980-10-08 2024-10-11 01:05:33.000 1980-10-08 2024-10-11 01:05:33 +3934 3934 3935 393.4 786.8000000000001 3934 1980-10-09 2024-10-11 01:05:34.000 1980-10-09 2024-10-11 01:05:34 +3935 3935 3936 393.5 787 3935 1980-10-10 2024-10-11 01:05:35.000 1980-10-10 2024-10-11 01:05:35 +3936 3936 3937 393.6 787.2 3936 1980-10-11 2024-10-11 01:05:36.000 1980-10-11 2024-10-11 01:05:36 +3937 3937 3938 393.7 787.4000000000001 3937 1980-10-12 2024-10-11 01:05:37.000 1980-10-12 2024-10-11 01:05:37 +3938 3938 3939 393.8 787.6 3938 1980-10-13 2024-10-11 01:05:38.000 1980-10-13 2024-10-11 01:05:38 +3939 3939 3940 393.9 787.8000000000001 3939 1980-10-14 2024-10-11 01:05:39.000 1980-10-14 2024-10-11 01:05:39 +3940 3940 3941 394 788 3940 1980-10-15 2024-10-11 01:05:40.000 1980-10-15 2024-10-11 01:05:40 +3941 3941 3942 394.1 788.2 3941 1980-10-16 2024-10-11 01:05:41.000 1980-10-16 2024-10-11 01:05:41 +3942 3942 3943 394.2 788.4000000000001 3942 1980-10-17 2024-10-11 01:05:42.000 1980-10-17 2024-10-11 01:05:42 +3943 3943 3944 394.3 788.6 3943 1980-10-18 2024-10-11 01:05:43.000 1980-10-18 2024-10-11 01:05:43 +3944 3944 3945 394.4 788.8000000000001 3944 1980-10-19 2024-10-11 01:05:44.000 1980-10-19 2024-10-11 01:05:44 +3945 3945 3946 394.5 789 3945 1980-10-20 2024-10-11 01:05:45.000 1980-10-20 2024-10-11 01:05:45 +3946 3946 3947 394.6 789.2 3946 1980-10-21 2024-10-11 01:05:46.000 1980-10-21 2024-10-11 01:05:46 +3947 3947 3948 394.7 789.4000000000001 3947 1980-10-22 2024-10-11 01:05:47.000 1980-10-22 2024-10-11 01:05:47 +3948 3948 3949 394.8 789.6 3948 1980-10-23 2024-10-11 01:05:48.000 1980-10-23 2024-10-11 01:05:48 +3949 3949 3950 394.9 789.8000000000001 3949 1980-10-24 2024-10-11 01:05:49.000 1980-10-24 2024-10-11 01:05:49 +3950 3950 3951 395 790 3950 1980-10-25 2024-10-11 01:05:50.000 1980-10-25 2024-10-11 01:05:50 +3951 3951 3952 395.1 790.2 3951 1980-10-26 2024-10-11 01:05:51.000 1980-10-26 2024-10-11 01:05:51 +3952 3952 3953 395.2 790.4000000000001 3952 1980-10-27 2024-10-11 01:05:52.000 1980-10-27 2024-10-11 01:05:52 +3953 3953 3954 395.3 790.6 3953 1980-10-28 2024-10-11 01:05:53.000 1980-10-28 2024-10-11 01:05:53 +3954 3954 3955 395.4 790.8000000000001 3954 1980-10-29 2024-10-11 01:05:54.000 1980-10-29 2024-10-11 01:05:54 +3955 3955 3956 395.5 791 3955 1980-10-30 2024-10-11 01:05:55.000 1980-10-30 2024-10-11 01:05:55 +3956 3956 3957 395.6 791.2 3956 1980-10-31 2024-10-11 01:05:56.000 1980-10-31 2024-10-11 01:05:56 +3957 3957 3958 395.7 791.4000000000001 3957 1980-11-01 2024-10-11 01:05:57.000 1980-11-01 2024-10-11 01:05:57 +3958 3958 3959 395.8 791.6 3958 1980-11-02 2024-10-11 01:05:58.000 1980-11-02 2024-10-11 01:05:58 +3959 3959 3960 395.9 791.8000000000001 3959 1980-11-03 2024-10-11 01:05:59.000 1980-11-03 2024-10-11 01:05:59 +3960 3960 3961 396 792 3960 1980-11-04 2024-10-11 01:06:00.000 1980-11-04 2024-10-11 01:06:00 +3961 3961 3962 396.1 792.2 3961 1980-11-05 2024-10-11 01:06:01.000 1980-11-05 2024-10-11 01:06:01 +3962 3962 3963 396.2 792.4000000000001 3962 1980-11-06 2024-10-11 01:06:02.000 1980-11-06 2024-10-11 01:06:02 +3963 3963 3964 396.3 792.6 3963 1980-11-07 2024-10-11 01:06:03.000 1980-11-07 2024-10-11 01:06:03 +3964 3964 3965 396.4 792.8000000000001 3964 1980-11-08 2024-10-11 01:06:04.000 1980-11-08 2024-10-11 01:06:04 +3965 3965 3966 396.5 793 3965 1980-11-09 2024-10-11 01:06:05.000 1980-11-09 2024-10-11 01:06:05 +3966 3966 3967 396.6 793.2 3966 1980-11-10 2024-10-11 01:06:06.000 1980-11-10 2024-10-11 01:06:06 +3967 3967 3968 396.7 793.4000000000001 3967 1980-11-11 2024-10-11 01:06:07.000 1980-11-11 2024-10-11 01:06:07 +3968 3968 3969 396.8 793.6 3968 1980-11-12 2024-10-11 01:06:08.000 1980-11-12 2024-10-11 01:06:08 +3969 3969 3970 396.9 793.8000000000001 3969 1980-11-13 2024-10-11 01:06:09.000 1980-11-13 2024-10-11 01:06:09 +3970 3970 3971 397 794 3970 1980-11-14 2024-10-11 01:06:10.000 1980-11-14 2024-10-11 01:06:10 +3971 3971 3972 397.1 794.2 3971 1980-11-15 2024-10-11 01:06:11.000 1980-11-15 2024-10-11 01:06:11 +3972 3972 3973 397.2 794.4000000000001 3972 1980-11-16 2024-10-11 01:06:12.000 1980-11-16 2024-10-11 01:06:12 +3973 3973 3974 397.3 794.6 3973 1980-11-17 2024-10-11 01:06:13.000 1980-11-17 2024-10-11 01:06:13 +3974 3974 3975 397.4 794.8000000000001 3974 1980-11-18 2024-10-11 01:06:14.000 1980-11-18 2024-10-11 01:06:14 +3975 3975 3976 397.5 795 3975 1980-11-19 2024-10-11 01:06:15.000 1980-11-19 2024-10-11 01:06:15 +3976 3976 3977 397.6 795.2 3976 1980-11-20 2024-10-11 01:06:16.000 1980-11-20 2024-10-11 01:06:16 +3977 3977 3978 397.7 795.4000000000001 3977 1980-11-21 2024-10-11 01:06:17.000 1980-11-21 2024-10-11 01:06:17 +3978 3978 3979 397.8 795.6 3978 1980-11-22 2024-10-11 01:06:18.000 1980-11-22 2024-10-11 01:06:18 +3979 3979 3980 397.9 795.8000000000001 3979 1980-11-23 2024-10-11 01:06:19.000 1980-11-23 2024-10-11 01:06:19 +3980 3980 3981 398 796 3980 1980-11-24 2024-10-11 01:06:20.000 1980-11-24 2024-10-11 01:06:20 +3981 3981 3982 398.1 796.2 3981 1980-11-25 2024-10-11 01:06:21.000 1980-11-25 2024-10-11 01:06:21 +3982 3982 3983 398.2 796.4000000000001 3982 1980-11-26 2024-10-11 01:06:22.000 1980-11-26 2024-10-11 01:06:22 +3983 3983 3984 398.3 796.6 3983 1980-11-27 2024-10-11 01:06:23.000 1980-11-27 2024-10-11 01:06:23 +3984 3984 3985 398.4 796.8000000000001 3984 1980-11-28 2024-10-11 01:06:24.000 1980-11-28 2024-10-11 01:06:24 +3985 3985 3986 398.5 797 3985 1980-11-29 2024-10-11 01:06:25.000 1980-11-29 2024-10-11 01:06:25 +3986 3986 3987 398.6 797.2 3986 1980-11-30 2024-10-11 01:06:26.000 1980-11-30 2024-10-11 01:06:26 +3987 3987 3988 398.7 797.4000000000001 3987 1980-12-01 2024-10-11 01:06:27.000 1980-12-01 2024-10-11 01:06:27 +3988 3988 3989 398.8 797.6 3988 1980-12-02 2024-10-11 01:06:28.000 1980-12-02 2024-10-11 01:06:28 +3989 3989 3990 398.9 797.8000000000001 3989 1980-12-03 2024-10-11 01:06:29.000 1980-12-03 2024-10-11 01:06:29 +3990 3990 3991 399 798 3990 1980-12-04 2024-10-11 01:06:30.000 1980-12-04 2024-10-11 01:06:30 +3991 3991 3992 399.1 798.2 3991 1980-12-05 2024-10-11 01:06:31.000 1980-12-05 2024-10-11 01:06:31 +3992 3992 3993 399.2 798.4000000000001 3992 1980-12-06 2024-10-11 01:06:32.000 1980-12-06 2024-10-11 01:06:32 +3993 3993 3994 399.3 798.6 3993 1980-12-07 2024-10-11 01:06:33.000 1980-12-07 2024-10-11 01:06:33 +3994 3994 3995 399.4 798.8000000000001 3994 1980-12-08 2024-10-11 01:06:34.000 1980-12-08 2024-10-11 01:06:34 +3995 3995 3996 399.5 799 3995 1980-12-09 2024-10-11 01:06:35.000 1980-12-09 2024-10-11 01:06:35 +3996 3996 3997 399.6 799.2 3996 1980-12-10 2024-10-11 01:06:36.000 1980-12-10 2024-10-11 01:06:36 +3997 3997 3998 399.7 799.4000000000001 3997 1980-12-11 2024-10-11 01:06:37.000 1980-12-11 2024-10-11 01:06:37 +3998 3998 3999 399.8 799.6 3998 1980-12-12 2024-10-11 01:06:38.000 1980-12-12 2024-10-11 01:06:38 +3999 3999 4000 399.9 799.8000000000001 3999 1980-12-13 2024-10-11 01:06:39.000 1980-12-13 2024-10-11 01:06:39 +4000 4000 4001 400 800 4000 1980-12-14 2024-10-11 01:06:40.000 1980-12-14 2024-10-11 01:06:40 +4001 4001 4002 400.1 800.2 4001 1980-12-15 2024-10-11 01:06:41.000 1980-12-15 2024-10-11 01:06:41 +4002 4002 4003 400.2 800.4000000000001 4002 1980-12-16 2024-10-11 01:06:42.000 1980-12-16 2024-10-11 01:06:42 +4003 4003 4004 400.3 800.6 4003 1980-12-17 2024-10-11 01:06:43.000 1980-12-17 2024-10-11 01:06:43 +4004 4004 4005 400.4 800.8000000000001 4004 1980-12-18 2024-10-11 01:06:44.000 1980-12-18 2024-10-11 01:06:44 +4005 4005 4006 400.5 801 4005 1980-12-19 2024-10-11 01:06:45.000 1980-12-19 2024-10-11 01:06:45 +4006 4006 4007 400.6 801.2 4006 1980-12-20 2024-10-11 01:06:46.000 1980-12-20 2024-10-11 01:06:46 +4007 4007 4008 400.7 801.4000000000001 4007 1980-12-21 2024-10-11 01:06:47.000 1980-12-21 2024-10-11 01:06:47 +4008 4008 4009 400.8 801.6 4008 1980-12-22 2024-10-11 01:06:48.000 1980-12-22 2024-10-11 01:06:48 +4009 4009 4010 400.9 801.8000000000001 4009 1980-12-23 2024-10-11 01:06:49.000 1980-12-23 2024-10-11 01:06:49 +4010 4010 4011 401 802 4010 1980-12-24 2024-10-11 01:06:50.000 1980-12-24 2024-10-11 01:06:50 +4011 4011 4012 401.1 802.2 4011 1980-12-25 2024-10-11 01:06:51.000 1980-12-25 2024-10-11 01:06:51 +4012 4012 4013 401.2 802.4000000000001 4012 1980-12-26 2024-10-11 01:06:52.000 1980-12-26 2024-10-11 01:06:52 +4013 4013 4014 401.3 802.6 4013 1980-12-27 2024-10-11 01:06:53.000 1980-12-27 2024-10-11 01:06:53 +4014 4014 4015 401.4 802.8000000000001 4014 1980-12-28 2024-10-11 01:06:54.000 1980-12-28 2024-10-11 01:06:54 +4015 4015 4016 401.5 803 4015 1980-12-29 2024-10-11 01:06:55.000 1980-12-29 2024-10-11 01:06:55 +4016 4016 4017 401.6 803.2 4016 1980-12-30 2024-10-11 01:06:56.000 1980-12-30 2024-10-11 01:06:56 +4017 4017 4018 401.7 803.4000000000001 4017 1980-12-31 2024-10-11 01:06:57.000 1980-12-31 2024-10-11 01:06:57 +4018 4018 4019 401.8 803.6 4018 1981-01-01 2024-10-11 01:06:58.000 1981-01-01 2024-10-11 01:06:58 +4019 4019 4020 401.9 803.8000000000001 4019 1981-01-02 2024-10-11 01:06:59.000 1981-01-02 2024-10-11 01:06:59 +4020 4020 4021 402 804 4020 1981-01-03 2024-10-11 01:07:00.000 1981-01-03 2024-10-11 01:07:00 +4021 4021 4022 402.1 804.2 4021 1981-01-04 2024-10-11 01:07:01.000 1981-01-04 2024-10-11 01:07:01 +4022 4022 4023 402.2 804.4000000000001 4022 1981-01-05 2024-10-11 01:07:02.000 1981-01-05 2024-10-11 01:07:02 +4023 4023 4024 402.3 804.6 4023 1981-01-06 2024-10-11 01:07:03.000 1981-01-06 2024-10-11 01:07:03 +4024 4024 4025 402.4 804.8000000000001 4024 1981-01-07 2024-10-11 01:07:04.000 1981-01-07 2024-10-11 01:07:04 +4025 4025 4026 402.5 805 4025 1981-01-08 2024-10-11 01:07:05.000 1981-01-08 2024-10-11 01:07:05 +4026 4026 4027 402.6 805.2 4026 1981-01-09 2024-10-11 01:07:06.000 1981-01-09 2024-10-11 01:07:06 +4027 4027 4028 402.7 805.4000000000001 4027 1981-01-10 2024-10-11 01:07:07.000 1981-01-10 2024-10-11 01:07:07 +4028 4028 4029 402.8 805.6 4028 1981-01-11 2024-10-11 01:07:08.000 1981-01-11 2024-10-11 01:07:08 +4029 4029 4030 402.9 805.8000000000001 4029 1981-01-12 2024-10-11 01:07:09.000 1981-01-12 2024-10-11 01:07:09 +4030 4030 4031 403 806 4030 1981-01-13 2024-10-11 01:07:10.000 1981-01-13 2024-10-11 01:07:10 +4031 4031 4032 403.1 806.2 4031 1981-01-14 2024-10-11 01:07:11.000 1981-01-14 2024-10-11 01:07:11 +4032 4032 4033 403.2 806.4000000000001 4032 1981-01-15 2024-10-11 01:07:12.000 1981-01-15 2024-10-11 01:07:12 +4033 4033 4034 403.3 806.6 4033 1981-01-16 2024-10-11 01:07:13.000 1981-01-16 2024-10-11 01:07:13 +4034 4034 4035 403.4 806.8000000000001 4034 1981-01-17 2024-10-11 01:07:14.000 1981-01-17 2024-10-11 01:07:14 +4035 4035 4036 403.5 807 4035 1981-01-18 2024-10-11 01:07:15.000 1981-01-18 2024-10-11 01:07:15 +4036 4036 4037 403.6 807.2 4036 1981-01-19 2024-10-11 01:07:16.000 1981-01-19 2024-10-11 01:07:16 +4037 4037 4038 403.7 807.4000000000001 4037 1981-01-20 2024-10-11 01:07:17.000 1981-01-20 2024-10-11 01:07:17 +4038 4038 4039 403.8 807.6 4038 1981-01-21 2024-10-11 01:07:18.000 1981-01-21 2024-10-11 01:07:18 +4039 4039 4040 403.9 807.8000000000001 4039 1981-01-22 2024-10-11 01:07:19.000 1981-01-22 2024-10-11 01:07:19 +4040 4040 4041 404 808 4040 1981-01-23 2024-10-11 01:07:20.000 1981-01-23 2024-10-11 01:07:20 +4041 4041 4042 404.1 808.2 4041 1981-01-24 2024-10-11 01:07:21.000 1981-01-24 2024-10-11 01:07:21 +4042 4042 4043 404.2 808.4000000000001 4042 1981-01-25 2024-10-11 01:07:22.000 1981-01-25 2024-10-11 01:07:22 +4043 4043 4044 404.3 808.6 4043 1981-01-26 2024-10-11 01:07:23.000 1981-01-26 2024-10-11 01:07:23 +4044 4044 4045 404.4 808.8000000000001 4044 1981-01-27 2024-10-11 01:07:24.000 1981-01-27 2024-10-11 01:07:24 +4045 4045 4046 404.5 809 4045 1981-01-28 2024-10-11 01:07:25.000 1981-01-28 2024-10-11 01:07:25 +4046 4046 4047 404.6 809.2 4046 1981-01-29 2024-10-11 01:07:26.000 1981-01-29 2024-10-11 01:07:26 +4047 4047 4048 404.7 809.4000000000001 4047 1981-01-30 2024-10-11 01:07:27.000 1981-01-30 2024-10-11 01:07:27 +4048 4048 4049 404.8 809.6 4048 1981-01-31 2024-10-11 01:07:28.000 1981-01-31 2024-10-11 01:07:28 +4049 4049 4050 404.9 809.8000000000001 4049 1981-02-01 2024-10-11 01:07:29.000 1981-02-01 2024-10-11 01:07:29 +4050 4050 4051 405 810 4050 1981-02-02 2024-10-11 01:07:30.000 1981-02-02 2024-10-11 01:07:30 +4051 4051 4052 405.1 810.2 4051 1981-02-03 2024-10-11 01:07:31.000 1981-02-03 2024-10-11 01:07:31 +4052 4052 4053 405.2 810.4000000000001 4052 1981-02-04 2024-10-11 01:07:32.000 1981-02-04 2024-10-11 01:07:32 +4053 4053 4054 405.3 810.6 4053 1981-02-05 2024-10-11 01:07:33.000 1981-02-05 2024-10-11 01:07:33 +4054 4054 4055 405.4 810.8000000000001 4054 1981-02-06 2024-10-11 01:07:34.000 1981-02-06 2024-10-11 01:07:34 +4055 4055 4056 405.5 811 4055 1981-02-07 2024-10-11 01:07:35.000 1981-02-07 2024-10-11 01:07:35 +4056 4056 4057 405.6 811.2 4056 1981-02-08 2024-10-11 01:07:36.000 1981-02-08 2024-10-11 01:07:36 +4057 4057 4058 405.7 811.4000000000001 4057 1981-02-09 2024-10-11 01:07:37.000 1981-02-09 2024-10-11 01:07:37 +4058 4058 4059 405.8 811.6 4058 1981-02-10 2024-10-11 01:07:38.000 1981-02-10 2024-10-11 01:07:38 +4059 4059 4060 405.9 811.8000000000001 4059 1981-02-11 2024-10-11 01:07:39.000 1981-02-11 2024-10-11 01:07:39 +4060 4060 4061 406 812 4060 1981-02-12 2024-10-11 01:07:40.000 1981-02-12 2024-10-11 01:07:40 +4061 4061 4062 406.1 812.2 4061 1981-02-13 2024-10-11 01:07:41.000 1981-02-13 2024-10-11 01:07:41 +4062 4062 4063 406.2 812.4000000000001 4062 1981-02-14 2024-10-11 01:07:42.000 1981-02-14 2024-10-11 01:07:42 +4063 4063 4064 406.3 812.6 4063 1981-02-15 2024-10-11 01:07:43.000 1981-02-15 2024-10-11 01:07:43 +4064 4064 4065 406.4 812.8000000000001 4064 1981-02-16 2024-10-11 01:07:44.000 1981-02-16 2024-10-11 01:07:44 +4065 4065 4066 406.5 813 4065 1981-02-17 2024-10-11 01:07:45.000 1981-02-17 2024-10-11 01:07:45 +4066 4066 4067 406.6 813.2 4066 1981-02-18 2024-10-11 01:07:46.000 1981-02-18 2024-10-11 01:07:46 +4067 4067 4068 406.7 813.4000000000001 4067 1981-02-19 2024-10-11 01:07:47.000 1981-02-19 2024-10-11 01:07:47 +4068 4068 4069 406.8 813.6 4068 1981-02-20 2024-10-11 01:07:48.000 1981-02-20 2024-10-11 01:07:48 +4069 4069 4070 406.9 813.8000000000001 4069 1981-02-21 2024-10-11 01:07:49.000 1981-02-21 2024-10-11 01:07:49 +4070 4070 4071 407 814 4070 1981-02-22 2024-10-11 01:07:50.000 1981-02-22 2024-10-11 01:07:50 +4071 4071 4072 407.1 814.2 4071 1981-02-23 2024-10-11 01:07:51.000 1981-02-23 2024-10-11 01:07:51 +4072 4072 4073 407.2 814.4000000000001 4072 1981-02-24 2024-10-11 01:07:52.000 1981-02-24 2024-10-11 01:07:52 +4073 4073 4074 407.3 814.6 4073 1981-02-25 2024-10-11 01:07:53.000 1981-02-25 2024-10-11 01:07:53 +4074 4074 4075 407.4 814.8000000000001 4074 1981-02-26 2024-10-11 01:07:54.000 1981-02-26 2024-10-11 01:07:54 +4075 4075 4076 407.5 815 4075 1981-02-27 2024-10-11 01:07:55.000 1981-02-27 2024-10-11 01:07:55 +4076 4076 4077 407.6 815.2 4076 1981-02-28 2024-10-11 01:07:56.000 1981-02-28 2024-10-11 01:07:56 +4077 4077 4078 407.7 815.4000000000001 4077 1981-03-01 2024-10-11 01:07:57.000 1981-03-01 2024-10-11 01:07:57 +4078 4078 4079 407.8 815.6 4078 1981-03-02 2024-10-11 01:07:58.000 1981-03-02 2024-10-11 01:07:58 +4079 4079 4080 407.9 815.8000000000001 4079 1981-03-03 2024-10-11 01:07:59.000 1981-03-03 2024-10-11 01:07:59 +4080 4080 4081 408 816 4080 1981-03-04 2024-10-11 01:08:00.000 1981-03-04 2024-10-11 01:08:00 +4081 4081 4082 408.1 816.2 4081 1981-03-05 2024-10-11 01:08:01.000 1981-03-05 2024-10-11 01:08:01 +4082 4082 4083 408.2 816.4000000000001 4082 1981-03-06 2024-10-11 01:08:02.000 1981-03-06 2024-10-11 01:08:02 +4083 4083 4084 408.3 816.6 4083 1981-03-07 2024-10-11 01:08:03.000 1981-03-07 2024-10-11 01:08:03 +4084 4084 4085 408.4 816.8000000000001 4084 1981-03-08 2024-10-11 01:08:04.000 1981-03-08 2024-10-11 01:08:04 +4085 4085 4086 408.5 817 4085 1981-03-09 2024-10-11 01:08:05.000 1981-03-09 2024-10-11 01:08:05 +4086 4086 4087 408.6 817.2 4086 1981-03-10 2024-10-11 01:08:06.000 1981-03-10 2024-10-11 01:08:06 +4087 4087 4088 408.7 817.4000000000001 4087 1981-03-11 2024-10-11 01:08:07.000 1981-03-11 2024-10-11 01:08:07 +4088 4088 4089 408.8 817.6 4088 1981-03-12 2024-10-11 01:08:08.000 1981-03-12 2024-10-11 01:08:08 +4089 4089 4090 408.9 817.8000000000001 4089 1981-03-13 2024-10-11 01:08:09.000 1981-03-13 2024-10-11 01:08:09 +4090 4090 4091 409 818 4090 1981-03-14 2024-10-11 01:08:10.000 1981-03-14 2024-10-11 01:08:10 +4091 4091 4092 409.1 818.2 4091 1981-03-15 2024-10-11 01:08:11.000 1981-03-15 2024-10-11 01:08:11 +4092 4092 4093 409.2 818.4000000000001 4092 1981-03-16 2024-10-11 01:08:12.000 1981-03-16 2024-10-11 01:08:12 +4093 4093 4094 409.3 818.6 4093 1981-03-17 2024-10-11 01:08:13.000 1981-03-17 2024-10-11 01:08:13 +4094 4094 4095 409.4 818.8000000000001 4094 1981-03-18 2024-10-11 01:08:14.000 1981-03-18 2024-10-11 01:08:14 +4095 4095 4096 409.5 819 4095 1981-03-19 2024-10-11 01:08:15.000 1981-03-19 2024-10-11 01:08:15 +4096 4096 4097 409.6 819.2 4096 1981-03-20 2024-10-11 01:08:16.000 1981-03-20 2024-10-11 01:08:16 +4097 4097 4098 409.7 819.4000000000001 4097 1981-03-21 2024-10-11 01:08:17.000 1981-03-21 2024-10-11 01:08:17 +4098 4098 4099 409.8 819.6 4098 1981-03-22 2024-10-11 01:08:18.000 1981-03-22 2024-10-11 01:08:18 +4099 4099 4100 409.9 819.8000000000001 4099 1981-03-23 2024-10-11 01:08:19.000 1981-03-23 2024-10-11 01:08:19 +4100 4100 4101 410 820 4100 1981-03-24 2024-10-11 01:08:20.000 1981-03-24 2024-10-11 01:08:20 +4101 4101 4102 410.1 820.2 4101 1981-03-25 2024-10-11 01:08:21.000 1981-03-25 2024-10-11 01:08:21 +4102 4102 4103 410.2 820.4000000000001 4102 1981-03-26 2024-10-11 01:08:22.000 1981-03-26 2024-10-11 01:08:22 +4103 4103 4104 410.3 820.6 4103 1981-03-27 2024-10-11 01:08:23.000 1981-03-27 2024-10-11 01:08:23 +4104 4104 4105 410.4 820.8000000000001 4104 1981-03-28 2024-10-11 01:08:24.000 1981-03-28 2024-10-11 01:08:24 +4105 4105 4106 410.5 821 4105 1981-03-29 2024-10-11 01:08:25.000 1981-03-29 2024-10-11 01:08:25 +4106 4106 4107 410.6 821.2 4106 1981-03-30 2024-10-11 01:08:26.000 1981-03-30 2024-10-11 01:08:26 +4107 4107 4108 410.7 821.4000000000001 4107 1981-03-31 2024-10-11 01:08:27.000 1981-03-31 2024-10-11 01:08:27 +4108 4108 4109 410.8 821.6 4108 1981-04-01 2024-10-11 01:08:28.000 1981-04-01 2024-10-11 01:08:28 +4109 4109 4110 410.9 821.8000000000001 4109 1981-04-02 2024-10-11 01:08:29.000 1981-04-02 2024-10-11 01:08:29 +4110 4110 4111 411 822 4110 1981-04-03 2024-10-11 01:08:30.000 1981-04-03 2024-10-11 01:08:30 +4111 4111 4112 411.1 822.2 4111 1981-04-04 2024-10-11 01:08:31.000 1981-04-04 2024-10-11 01:08:31 +4112 4112 4113 411.2 822.4000000000001 4112 1981-04-05 2024-10-11 01:08:32.000 1981-04-05 2024-10-11 01:08:32 +4113 4113 4114 411.3 822.6 4113 1981-04-06 2024-10-11 01:08:33.000 1981-04-06 2024-10-11 01:08:33 +4114 4114 4115 411.4 822.8000000000001 4114 1981-04-07 2024-10-11 01:08:34.000 1981-04-07 2024-10-11 01:08:34 +4115 4115 4116 411.5 823 4115 1981-04-08 2024-10-11 01:08:35.000 1981-04-08 2024-10-11 01:08:35 +4116 4116 4117 411.6 823.2 4116 1981-04-09 2024-10-11 01:08:36.000 1981-04-09 2024-10-11 01:08:36 +4117 4117 4118 411.7 823.4000000000001 4117 1981-04-10 2024-10-11 01:08:37.000 1981-04-10 2024-10-11 01:08:37 +4118 4118 4119 411.8 823.6 4118 1981-04-11 2024-10-11 01:08:38.000 1981-04-11 2024-10-11 01:08:38 +4119 4119 4120 411.9 823.8000000000001 4119 1981-04-12 2024-10-11 01:08:39.000 1981-04-12 2024-10-11 01:08:39 +4120 4120 4121 412 824 4120 1981-04-13 2024-10-11 01:08:40.000 1981-04-13 2024-10-11 01:08:40 +4121 4121 4122 412.1 824.2 4121 1981-04-14 2024-10-11 01:08:41.000 1981-04-14 2024-10-11 01:08:41 +4122 4122 4123 412.2 824.4000000000001 4122 1981-04-15 2024-10-11 01:08:42.000 1981-04-15 2024-10-11 01:08:42 +4123 4123 4124 412.3 824.6 4123 1981-04-16 2024-10-11 01:08:43.000 1981-04-16 2024-10-11 01:08:43 +4124 4124 4125 412.4 824.8000000000001 4124 1981-04-17 2024-10-11 01:08:44.000 1981-04-17 2024-10-11 01:08:44 +4125 4125 4126 412.5 825 4125 1981-04-18 2024-10-11 01:08:45.000 1981-04-18 2024-10-11 01:08:45 +4126 4126 4127 412.6 825.2 4126 1981-04-19 2024-10-11 01:08:46.000 1981-04-19 2024-10-11 01:08:46 +4127 4127 4128 412.7 825.4000000000001 4127 1981-04-20 2024-10-11 01:08:47.000 1981-04-20 2024-10-11 01:08:47 +4128 4128 4129 412.8 825.6 4128 1981-04-21 2024-10-11 01:08:48.000 1981-04-21 2024-10-11 01:08:48 +4129 4129 4130 412.9 825.8000000000001 4129 1981-04-22 2024-10-11 01:08:49.000 1981-04-22 2024-10-11 01:08:49 +4130 4130 4131 413 826 4130 1981-04-23 2024-10-11 01:08:50.000 1981-04-23 2024-10-11 01:08:50 +4131 4131 4132 413.1 826.2 4131 1981-04-24 2024-10-11 01:08:51.000 1981-04-24 2024-10-11 01:08:51 +4132 4132 4133 413.2 826.4000000000001 4132 1981-04-25 2024-10-11 01:08:52.000 1981-04-25 2024-10-11 01:08:52 +4133 4133 4134 413.3 826.6 4133 1981-04-26 2024-10-11 01:08:53.000 1981-04-26 2024-10-11 01:08:53 +4134 4134 4135 413.4 826.8000000000001 4134 1981-04-27 2024-10-11 01:08:54.000 1981-04-27 2024-10-11 01:08:54 +4135 4135 4136 413.5 827 4135 1981-04-28 2024-10-11 01:08:55.000 1981-04-28 2024-10-11 01:08:55 +4136 4136 4137 413.6 827.2 4136 1981-04-29 2024-10-11 01:08:56.000 1981-04-29 2024-10-11 01:08:56 +4137 4137 4138 413.7 827.4000000000001 4137 1981-04-30 2024-10-11 01:08:57.000 1981-04-30 2024-10-11 01:08:57 +4138 4138 4139 413.8 827.6 4138 1981-05-01 2024-10-11 01:08:58.000 1981-05-01 2024-10-11 01:08:58 +4139 4139 4140 413.9 827.8000000000001 4139 1981-05-02 2024-10-11 01:08:59.000 1981-05-02 2024-10-11 01:08:59 +4140 4140 4141 414 828 4140 1981-05-03 2024-10-11 01:09:00.000 1981-05-03 2024-10-11 01:09:00 +4141 4141 4142 414.1 828.2 4141 1981-05-04 2024-10-11 01:09:01.000 1981-05-04 2024-10-11 01:09:01 +4142 4142 4143 414.2 828.4000000000001 4142 1981-05-05 2024-10-11 01:09:02.000 1981-05-05 2024-10-11 01:09:02 +4143 4143 4144 414.3 828.6 4143 1981-05-06 2024-10-11 01:09:03.000 1981-05-06 2024-10-11 01:09:03 +4144 4144 4145 414.4 828.8000000000001 4144 1981-05-07 2024-10-11 01:09:04.000 1981-05-07 2024-10-11 01:09:04 +4145 4145 4146 414.5 829 4145 1981-05-08 2024-10-11 01:09:05.000 1981-05-08 2024-10-11 01:09:05 +4146 4146 4147 414.6 829.2 4146 1981-05-09 2024-10-11 01:09:06.000 1981-05-09 2024-10-11 01:09:06 +4147 4147 4148 414.7 829.4000000000001 4147 1981-05-10 2024-10-11 01:09:07.000 1981-05-10 2024-10-11 01:09:07 +4148 4148 4149 414.8 829.6 4148 1981-05-11 2024-10-11 01:09:08.000 1981-05-11 2024-10-11 01:09:08 +4149 4149 4150 414.9 829.8000000000001 4149 1981-05-12 2024-10-11 01:09:09.000 1981-05-12 2024-10-11 01:09:09 +4150 4150 4151 415 830 4150 1981-05-13 2024-10-11 01:09:10.000 1981-05-13 2024-10-11 01:09:10 +4151 4151 4152 415.1 830.2 4151 1981-05-14 2024-10-11 01:09:11.000 1981-05-14 2024-10-11 01:09:11 +4152 4152 4153 415.2 830.4000000000001 4152 1981-05-15 2024-10-11 01:09:12.000 1981-05-15 2024-10-11 01:09:12 +4153 4153 4154 415.3 830.6 4153 1981-05-16 2024-10-11 01:09:13.000 1981-05-16 2024-10-11 01:09:13 +4154 4154 4155 415.4 830.8000000000001 4154 1981-05-17 2024-10-11 01:09:14.000 1981-05-17 2024-10-11 01:09:14 +4155 4155 4156 415.5 831 4155 1981-05-18 2024-10-11 01:09:15.000 1981-05-18 2024-10-11 01:09:15 +4156 4156 4157 415.6 831.2 4156 1981-05-19 2024-10-11 01:09:16.000 1981-05-19 2024-10-11 01:09:16 +4157 4157 4158 415.7 831.4000000000001 4157 1981-05-20 2024-10-11 01:09:17.000 1981-05-20 2024-10-11 01:09:17 +4158 4158 4159 415.8 831.6 4158 1981-05-21 2024-10-11 01:09:18.000 1981-05-21 2024-10-11 01:09:18 +4159 4159 4160 415.9 831.8000000000001 4159 1981-05-22 2024-10-11 01:09:19.000 1981-05-22 2024-10-11 01:09:19 +4160 4160 4161 416 832 4160 1981-05-23 2024-10-11 01:09:20.000 1981-05-23 2024-10-11 01:09:20 +4161 4161 4162 416.1 832.2 4161 1981-05-24 2024-10-11 01:09:21.000 1981-05-24 2024-10-11 01:09:21 +4162 4162 4163 416.2 832.4000000000001 4162 1981-05-25 2024-10-11 01:09:22.000 1981-05-25 2024-10-11 01:09:22 +4163 4163 4164 416.3 832.6 4163 1981-05-26 2024-10-11 01:09:23.000 1981-05-26 2024-10-11 01:09:23 +4164 4164 4165 416.4 832.8000000000001 4164 1981-05-27 2024-10-11 01:09:24.000 1981-05-27 2024-10-11 01:09:24 +4165 4165 4166 416.5 833 4165 1981-05-28 2024-10-11 01:09:25.000 1981-05-28 2024-10-11 01:09:25 +4166 4166 4167 416.6 833.2 4166 1981-05-29 2024-10-11 01:09:26.000 1981-05-29 2024-10-11 01:09:26 +4167 4167 4168 416.7 833.4000000000001 4167 1981-05-30 2024-10-11 01:09:27.000 1981-05-30 2024-10-11 01:09:27 +4168 4168 4169 416.8 833.6 4168 1981-05-31 2024-10-11 01:09:28.000 1981-05-31 2024-10-11 01:09:28 +4169 4169 4170 416.9 833.8000000000001 4169 1981-06-01 2024-10-11 01:09:29.000 1981-06-01 2024-10-11 01:09:29 +4170 4170 4171 417 834 4170 1981-06-02 2024-10-11 01:09:30.000 1981-06-02 2024-10-11 01:09:30 +4171 4171 4172 417.1 834.2 4171 1981-06-03 2024-10-11 01:09:31.000 1981-06-03 2024-10-11 01:09:31 +4172 4172 4173 417.2 834.4000000000001 4172 1981-06-04 2024-10-11 01:09:32.000 1981-06-04 2024-10-11 01:09:32 +4173 4173 4174 417.3 834.6 4173 1981-06-05 2024-10-11 01:09:33.000 1981-06-05 2024-10-11 01:09:33 +4174 4174 4175 417.4 834.8000000000001 4174 1981-06-06 2024-10-11 01:09:34.000 1981-06-06 2024-10-11 01:09:34 +4175 4175 4176 417.5 835 4175 1981-06-07 2024-10-11 01:09:35.000 1981-06-07 2024-10-11 01:09:35 +4176 4176 4177 417.6 835.2 4176 1981-06-08 2024-10-11 01:09:36.000 1981-06-08 2024-10-11 01:09:36 +4177 4177 4178 417.7 835.4000000000001 4177 1981-06-09 2024-10-11 01:09:37.000 1981-06-09 2024-10-11 01:09:37 +4178 4178 4179 417.8 835.6 4178 1981-06-10 2024-10-11 01:09:38.000 1981-06-10 2024-10-11 01:09:38 +4179 4179 4180 417.9 835.8000000000001 4179 1981-06-11 2024-10-11 01:09:39.000 1981-06-11 2024-10-11 01:09:39 +4180 4180 4181 418 836 4180 1981-06-12 2024-10-11 01:09:40.000 1981-06-12 2024-10-11 01:09:40 +4181 4181 4182 418.1 836.2 4181 1981-06-13 2024-10-11 01:09:41.000 1981-06-13 2024-10-11 01:09:41 +4182 4182 4183 418.2 836.4000000000001 4182 1981-06-14 2024-10-11 01:09:42.000 1981-06-14 2024-10-11 01:09:42 +4183 4183 4184 418.3 836.6 4183 1981-06-15 2024-10-11 01:09:43.000 1981-06-15 2024-10-11 01:09:43 +4184 4184 4185 418.4 836.8000000000001 4184 1981-06-16 2024-10-11 01:09:44.000 1981-06-16 2024-10-11 01:09:44 +4185 4185 4186 418.5 837 4185 1981-06-17 2024-10-11 01:09:45.000 1981-06-17 2024-10-11 01:09:45 +4186 4186 4187 418.6 837.2 4186 1981-06-18 2024-10-11 01:09:46.000 1981-06-18 2024-10-11 01:09:46 +4187 4187 4188 418.7 837.4000000000001 4187 1981-06-19 2024-10-11 01:09:47.000 1981-06-19 2024-10-11 01:09:47 +4188 4188 4189 418.8 837.6 4188 1981-06-20 2024-10-11 01:09:48.000 1981-06-20 2024-10-11 01:09:48 +4189 4189 4190 418.9 837.8000000000001 4189 1981-06-21 2024-10-11 01:09:49.000 1981-06-21 2024-10-11 01:09:49 +4190 4190 4191 419 838 4190 1981-06-22 2024-10-11 01:09:50.000 1981-06-22 2024-10-11 01:09:50 +4191 4191 4192 419.1 838.2 4191 1981-06-23 2024-10-11 01:09:51.000 1981-06-23 2024-10-11 01:09:51 +4192 4192 4193 419.2 838.4000000000001 4192 1981-06-24 2024-10-11 01:09:52.000 1981-06-24 2024-10-11 01:09:52 +4193 4193 4194 419.3 838.6 4193 1981-06-25 2024-10-11 01:09:53.000 1981-06-25 2024-10-11 01:09:53 +4194 4194 4195 419.4 838.8000000000001 4194 1981-06-26 2024-10-11 01:09:54.000 1981-06-26 2024-10-11 01:09:54 +4195 4195 4196 419.5 839 4195 1981-06-27 2024-10-11 01:09:55.000 1981-06-27 2024-10-11 01:09:55 +4196 4196 4197 419.6 839.2 4196 1981-06-28 2024-10-11 01:09:56.000 1981-06-28 2024-10-11 01:09:56 +4197 4197 4198 419.7 839.4000000000001 4197 1981-06-29 2024-10-11 01:09:57.000 1981-06-29 2024-10-11 01:09:57 +4198 4198 4199 419.8 839.6 4198 1981-06-30 2024-10-11 01:09:58.000 1981-06-30 2024-10-11 01:09:58 +4199 4199 4200 419.9 839.8000000000001 4199 1981-07-01 2024-10-11 01:09:59.000 1981-07-01 2024-10-11 01:09:59 +4200 4200 4201 420 840 4200 1981-07-02 2024-10-11 01:10:00.000 1981-07-02 2024-10-11 01:10:00 +4201 4201 4202 420.1 840.2 4201 1981-07-03 2024-10-11 01:10:01.000 1981-07-03 2024-10-11 01:10:01 +4202 4202 4203 420.2 840.4000000000001 4202 1981-07-04 2024-10-11 01:10:02.000 1981-07-04 2024-10-11 01:10:02 +4203 4203 4204 420.3 840.6 4203 1981-07-05 2024-10-11 01:10:03.000 1981-07-05 2024-10-11 01:10:03 +4204 4204 4205 420.4 840.8000000000001 4204 1981-07-06 2024-10-11 01:10:04.000 1981-07-06 2024-10-11 01:10:04 +4205 4205 4206 420.5 841 4205 1981-07-07 2024-10-11 01:10:05.000 1981-07-07 2024-10-11 01:10:05 +4206 4206 4207 420.6 841.2 4206 1981-07-08 2024-10-11 01:10:06.000 1981-07-08 2024-10-11 01:10:06 +4207 4207 4208 420.7 841.4000000000001 4207 1981-07-09 2024-10-11 01:10:07.000 1981-07-09 2024-10-11 01:10:07 +4208 4208 4209 420.8 841.6 4208 1981-07-10 2024-10-11 01:10:08.000 1981-07-10 2024-10-11 01:10:08 +4209 4209 4210 420.9 841.8000000000001 4209 1981-07-11 2024-10-11 01:10:09.000 1981-07-11 2024-10-11 01:10:09 +4210 4210 4211 421 842 4210 1981-07-12 2024-10-11 01:10:10.000 1981-07-12 2024-10-11 01:10:10 +4211 4211 4212 421.1 842.2 4211 1981-07-13 2024-10-11 01:10:11.000 1981-07-13 2024-10-11 01:10:11 +4212 4212 4213 421.2 842.4000000000001 4212 1981-07-14 2024-10-11 01:10:12.000 1981-07-14 2024-10-11 01:10:12 +4213 4213 4214 421.3 842.6 4213 1981-07-15 2024-10-11 01:10:13.000 1981-07-15 2024-10-11 01:10:13 +4214 4214 4215 421.4 842.8000000000001 4214 1981-07-16 2024-10-11 01:10:14.000 1981-07-16 2024-10-11 01:10:14 +4215 4215 4216 421.5 843 4215 1981-07-17 2024-10-11 01:10:15.000 1981-07-17 2024-10-11 01:10:15 +4216 4216 4217 421.6 843.2 4216 1981-07-18 2024-10-11 01:10:16.000 1981-07-18 2024-10-11 01:10:16 +4217 4217 4218 421.7 843.4000000000001 4217 1981-07-19 2024-10-11 01:10:17.000 1981-07-19 2024-10-11 01:10:17 +4218 4218 4219 421.8 843.6 4218 1981-07-20 2024-10-11 01:10:18.000 1981-07-20 2024-10-11 01:10:18 +4219 4219 4220 421.9 843.8000000000001 4219 1981-07-21 2024-10-11 01:10:19.000 1981-07-21 2024-10-11 01:10:19 +4220 4220 4221 422 844 4220 1981-07-22 2024-10-11 01:10:20.000 1981-07-22 2024-10-11 01:10:20 +4221 4221 4222 422.1 844.2 4221 1981-07-23 2024-10-11 01:10:21.000 1981-07-23 2024-10-11 01:10:21 +4222 4222 4223 422.2 844.4000000000001 4222 1981-07-24 2024-10-11 01:10:22.000 1981-07-24 2024-10-11 01:10:22 +4223 4223 4224 422.3 844.6 4223 1981-07-25 2024-10-11 01:10:23.000 1981-07-25 2024-10-11 01:10:23 +4224 4224 4225 422.4 844.8000000000001 4224 1981-07-26 2024-10-11 01:10:24.000 1981-07-26 2024-10-11 01:10:24 +4225 4225 4226 422.5 845 4225 1981-07-27 2024-10-11 01:10:25.000 1981-07-27 2024-10-11 01:10:25 +4226 4226 4227 422.6 845.2 4226 1981-07-28 2024-10-11 01:10:26.000 1981-07-28 2024-10-11 01:10:26 +4227 4227 4228 422.7 845.4000000000001 4227 1981-07-29 2024-10-11 01:10:27.000 1981-07-29 2024-10-11 01:10:27 +4228 4228 4229 422.8 845.6 4228 1981-07-30 2024-10-11 01:10:28.000 1981-07-30 2024-10-11 01:10:28 +4229 4229 4230 422.9 845.8000000000001 4229 1981-07-31 2024-10-11 01:10:29.000 1981-07-31 2024-10-11 01:10:29 +4230 4230 4231 423 846 4230 1981-08-01 2024-10-11 01:10:30.000 1981-08-01 2024-10-11 01:10:30 +4231 4231 4232 423.1 846.2 4231 1981-08-02 2024-10-11 01:10:31.000 1981-08-02 2024-10-11 01:10:31 +4232 4232 4233 423.2 846.4000000000001 4232 1981-08-03 2024-10-11 01:10:32.000 1981-08-03 2024-10-11 01:10:32 +4233 4233 4234 423.3 846.6 4233 1981-08-04 2024-10-11 01:10:33.000 1981-08-04 2024-10-11 01:10:33 +4234 4234 4235 423.4 846.8000000000001 4234 1981-08-05 2024-10-11 01:10:34.000 1981-08-05 2024-10-11 01:10:34 +4235 4235 4236 423.5 847 4235 1981-08-06 2024-10-11 01:10:35.000 1981-08-06 2024-10-11 01:10:35 +4236 4236 4237 423.6 847.2 4236 1981-08-07 2024-10-11 01:10:36.000 1981-08-07 2024-10-11 01:10:36 +4237 4237 4238 423.7 847.4000000000001 4237 1981-08-08 2024-10-11 01:10:37.000 1981-08-08 2024-10-11 01:10:37 +4238 4238 4239 423.8 847.6 4238 1981-08-09 2024-10-11 01:10:38.000 1981-08-09 2024-10-11 01:10:38 +4239 4239 4240 423.9 847.8000000000001 4239 1981-08-10 2024-10-11 01:10:39.000 1981-08-10 2024-10-11 01:10:39 +4240 4240 4241 424 848 4240 1981-08-11 2024-10-11 01:10:40.000 1981-08-11 2024-10-11 01:10:40 +4241 4241 4242 424.1 848.2 4241 1981-08-12 2024-10-11 01:10:41.000 1981-08-12 2024-10-11 01:10:41 +4242 4242 4243 424.2 848.4000000000001 4242 1981-08-13 2024-10-11 01:10:42.000 1981-08-13 2024-10-11 01:10:42 +4243 4243 4244 424.3 848.6 4243 1981-08-14 2024-10-11 01:10:43.000 1981-08-14 2024-10-11 01:10:43 +4244 4244 4245 424.4 848.8000000000001 4244 1981-08-15 2024-10-11 01:10:44.000 1981-08-15 2024-10-11 01:10:44 +4245 4245 4246 424.5 849 4245 1981-08-16 2024-10-11 01:10:45.000 1981-08-16 2024-10-11 01:10:45 +4246 4246 4247 424.6 849.2 4246 1981-08-17 2024-10-11 01:10:46.000 1981-08-17 2024-10-11 01:10:46 +4247 4247 4248 424.7 849.4000000000001 4247 1981-08-18 2024-10-11 01:10:47.000 1981-08-18 2024-10-11 01:10:47 +4248 4248 4249 424.8 849.6 4248 1981-08-19 2024-10-11 01:10:48.000 1981-08-19 2024-10-11 01:10:48 +4249 4249 4250 424.9 849.8000000000001 4249 1981-08-20 2024-10-11 01:10:49.000 1981-08-20 2024-10-11 01:10:49 +4250 4250 4251 425 850 4250 1981-08-21 2024-10-11 01:10:50.000 1981-08-21 2024-10-11 01:10:50 +4251 4251 4252 425.1 850.2 4251 1981-08-22 2024-10-11 01:10:51.000 1981-08-22 2024-10-11 01:10:51 +4252 4252 4253 425.2 850.4000000000001 4252 1981-08-23 2024-10-11 01:10:52.000 1981-08-23 2024-10-11 01:10:52 +4253 4253 4254 425.3 850.6 4253 1981-08-24 2024-10-11 01:10:53.000 1981-08-24 2024-10-11 01:10:53 +4254 4254 4255 425.4 850.8000000000001 4254 1981-08-25 2024-10-11 01:10:54.000 1981-08-25 2024-10-11 01:10:54 +4255 4255 4256 425.5 851 4255 1981-08-26 2024-10-11 01:10:55.000 1981-08-26 2024-10-11 01:10:55 +4256 4256 4257 425.6 851.2 4256 1981-08-27 2024-10-11 01:10:56.000 1981-08-27 2024-10-11 01:10:56 +4257 4257 4258 425.7 851.4000000000001 4257 1981-08-28 2024-10-11 01:10:57.000 1981-08-28 2024-10-11 01:10:57 +4258 4258 4259 425.8 851.6 4258 1981-08-29 2024-10-11 01:10:58.000 1981-08-29 2024-10-11 01:10:58 +4259 4259 4260 425.9 851.8000000000001 4259 1981-08-30 2024-10-11 01:10:59.000 1981-08-30 2024-10-11 01:10:59 +4260 4260 4261 426 852 4260 1981-08-31 2024-10-11 01:11:00.000 1981-08-31 2024-10-11 01:11:00 +4261 4261 4262 426.1 852.2 4261 1981-09-01 2024-10-11 01:11:01.000 1981-09-01 2024-10-11 01:11:01 +4262 4262 4263 426.2 852.4000000000001 4262 1981-09-02 2024-10-11 01:11:02.000 1981-09-02 2024-10-11 01:11:02 +4263 4263 4264 426.3 852.6 4263 1981-09-03 2024-10-11 01:11:03.000 1981-09-03 2024-10-11 01:11:03 +4264 4264 4265 426.4 852.8000000000001 4264 1981-09-04 2024-10-11 01:11:04.000 1981-09-04 2024-10-11 01:11:04 +4265 4265 4266 426.5 853 4265 1981-09-05 2024-10-11 01:11:05.000 1981-09-05 2024-10-11 01:11:05 +4266 4266 4267 426.6 853.2 4266 1981-09-06 2024-10-11 01:11:06.000 1981-09-06 2024-10-11 01:11:06 +4267 4267 4268 426.7 853.4000000000001 4267 1981-09-07 2024-10-11 01:11:07.000 1981-09-07 2024-10-11 01:11:07 +4268 4268 4269 426.8 853.6 4268 1981-09-08 2024-10-11 01:11:08.000 1981-09-08 2024-10-11 01:11:08 +4269 4269 4270 426.9 853.8000000000001 4269 1981-09-09 2024-10-11 01:11:09.000 1981-09-09 2024-10-11 01:11:09 +4270 4270 4271 427 854 4270 1981-09-10 2024-10-11 01:11:10.000 1981-09-10 2024-10-11 01:11:10 +4271 4271 4272 427.1 854.2 4271 1981-09-11 2024-10-11 01:11:11.000 1981-09-11 2024-10-11 01:11:11 +4272 4272 4273 427.2 854.4000000000001 4272 1981-09-12 2024-10-11 01:11:12.000 1981-09-12 2024-10-11 01:11:12 +4273 4273 4274 427.3 854.6 4273 1981-09-13 2024-10-11 01:11:13.000 1981-09-13 2024-10-11 01:11:13 +4274 4274 4275 427.4 854.8000000000001 4274 1981-09-14 2024-10-11 01:11:14.000 1981-09-14 2024-10-11 01:11:14 +4275 4275 4276 427.5 855 4275 1981-09-15 2024-10-11 01:11:15.000 1981-09-15 2024-10-11 01:11:15 +4276 4276 4277 427.6 855.2 4276 1981-09-16 2024-10-11 01:11:16.000 1981-09-16 2024-10-11 01:11:16 +4277 4277 4278 427.7 855.4000000000001 4277 1981-09-17 2024-10-11 01:11:17.000 1981-09-17 2024-10-11 01:11:17 +4278 4278 4279 427.8 855.6 4278 1981-09-18 2024-10-11 01:11:18.000 1981-09-18 2024-10-11 01:11:18 +4279 4279 4280 427.9 855.8000000000001 4279 1981-09-19 2024-10-11 01:11:19.000 1981-09-19 2024-10-11 01:11:19 +4280 4280 4281 428 856 4280 1981-09-20 2024-10-11 01:11:20.000 1981-09-20 2024-10-11 01:11:20 +4281 4281 4282 428.1 856.2 4281 1981-09-21 2024-10-11 01:11:21.000 1981-09-21 2024-10-11 01:11:21 +4282 4282 4283 428.2 856.4000000000001 4282 1981-09-22 2024-10-11 01:11:22.000 1981-09-22 2024-10-11 01:11:22 +4283 4283 4284 428.3 856.6 4283 1981-09-23 2024-10-11 01:11:23.000 1981-09-23 2024-10-11 01:11:23 +4284 4284 4285 428.4 856.8000000000001 4284 1981-09-24 2024-10-11 01:11:24.000 1981-09-24 2024-10-11 01:11:24 +4285 4285 4286 428.5 857 4285 1981-09-25 2024-10-11 01:11:25.000 1981-09-25 2024-10-11 01:11:25 +4286 4286 4287 428.6 857.2 4286 1981-09-26 2024-10-11 01:11:26.000 1981-09-26 2024-10-11 01:11:26 +4287 4287 4288 428.7 857.4000000000001 4287 1981-09-27 2024-10-11 01:11:27.000 1981-09-27 2024-10-11 01:11:27 +4288 4288 4289 428.8 857.6 4288 1981-09-28 2024-10-11 01:11:28.000 1981-09-28 2024-10-11 01:11:28 +4289 4289 4290 428.9 857.8000000000001 4289 1981-09-29 2024-10-11 01:11:29.000 1981-09-29 2024-10-11 01:11:29 +4290 4290 4291 429 858 4290 1981-09-30 2024-10-11 01:11:30.000 1981-09-30 2024-10-11 01:11:30 +4291 4291 4292 429.1 858.2 4291 1981-10-01 2024-10-11 01:11:31.000 1981-10-01 2024-10-11 01:11:31 +4292 4292 4293 429.2 858.4000000000001 4292 1981-10-02 2024-10-11 01:11:32.000 1981-10-02 2024-10-11 01:11:32 +4293 4293 4294 429.3 858.6 4293 1981-10-03 2024-10-11 01:11:33.000 1981-10-03 2024-10-11 01:11:33 +4294 4294 4295 429.4 858.8000000000001 4294 1981-10-04 2024-10-11 01:11:34.000 1981-10-04 2024-10-11 01:11:34 +4295 4295 4296 429.5 859 4295 1981-10-05 2024-10-11 01:11:35.000 1981-10-05 2024-10-11 01:11:35 +4296 4296 4297 429.6 859.2 4296 1981-10-06 2024-10-11 01:11:36.000 1981-10-06 2024-10-11 01:11:36 +4297 4297 4298 429.7 859.4000000000001 4297 1981-10-07 2024-10-11 01:11:37.000 1981-10-07 2024-10-11 01:11:37 +4298 4298 4299 429.8 859.6 4298 1981-10-08 2024-10-11 01:11:38.000 1981-10-08 2024-10-11 01:11:38 +4299 4299 4300 429.9 859.8000000000001 4299 1981-10-09 2024-10-11 01:11:39.000 1981-10-09 2024-10-11 01:11:39 +4300 4300 4301 430 860 4300 1981-10-10 2024-10-11 01:11:40.000 1981-10-10 2024-10-11 01:11:40 +4301 4301 4302 430.1 860.2 4301 1981-10-11 2024-10-11 01:11:41.000 1981-10-11 2024-10-11 01:11:41 +4302 4302 4303 430.2 860.4000000000001 4302 1981-10-12 2024-10-11 01:11:42.000 1981-10-12 2024-10-11 01:11:42 +4303 4303 4304 430.3 860.6 4303 1981-10-13 2024-10-11 01:11:43.000 1981-10-13 2024-10-11 01:11:43 +4304 4304 4305 430.4 860.8000000000001 4304 1981-10-14 2024-10-11 01:11:44.000 1981-10-14 2024-10-11 01:11:44 +4305 4305 4306 430.5 861 4305 1981-10-15 2024-10-11 01:11:45.000 1981-10-15 2024-10-11 01:11:45 +4306 4306 4307 430.6 861.2 4306 1981-10-16 2024-10-11 01:11:46.000 1981-10-16 2024-10-11 01:11:46 +4307 4307 4308 430.7 861.4000000000001 4307 1981-10-17 2024-10-11 01:11:47.000 1981-10-17 2024-10-11 01:11:47 +4308 4308 4309 430.8 861.6 4308 1981-10-18 2024-10-11 01:11:48.000 1981-10-18 2024-10-11 01:11:48 +4309 4309 4310 430.9 861.8000000000001 4309 1981-10-19 2024-10-11 01:11:49.000 1981-10-19 2024-10-11 01:11:49 +4310 4310 4311 431 862 4310 1981-10-20 2024-10-11 01:11:50.000 1981-10-20 2024-10-11 01:11:50 +4311 4311 4312 431.1 862.2 4311 1981-10-21 2024-10-11 01:11:51.000 1981-10-21 2024-10-11 01:11:51 +4312 4312 4313 431.2 862.4000000000001 4312 1981-10-22 2024-10-11 01:11:52.000 1981-10-22 2024-10-11 01:11:52 +4313 4313 4314 431.3 862.6 4313 1981-10-23 2024-10-11 01:11:53.000 1981-10-23 2024-10-11 01:11:53 +4314 4314 4315 431.4 862.8000000000001 4314 1981-10-24 2024-10-11 01:11:54.000 1981-10-24 2024-10-11 01:11:54 +4315 4315 4316 431.5 863 4315 1981-10-25 2024-10-11 01:11:55.000 1981-10-25 2024-10-11 01:11:55 +4316 4316 4317 431.6 863.2 4316 1981-10-26 2024-10-11 01:11:56.000 1981-10-26 2024-10-11 01:11:56 +4317 4317 4318 431.7 863.4000000000001 4317 1981-10-27 2024-10-11 01:11:57.000 1981-10-27 2024-10-11 01:11:57 +4318 4318 4319 431.8 863.6 4318 1981-10-28 2024-10-11 01:11:58.000 1981-10-28 2024-10-11 01:11:58 +4319 4319 4320 431.9 863.8000000000001 4319 1981-10-29 2024-10-11 01:11:59.000 1981-10-29 2024-10-11 01:11:59 +4320 4320 4321 432 864 4320 1981-10-30 2024-10-11 01:12:00.000 1981-10-30 2024-10-11 01:12:00 +4321 4321 4322 432.1 864.2 4321 1981-10-31 2024-10-11 01:12:01.000 1981-10-31 2024-10-11 01:12:01 +4322 4322 4323 432.2 864.4000000000001 4322 1981-11-01 2024-10-11 01:12:02.000 1981-11-01 2024-10-11 01:12:02 +4323 4323 4324 432.3 864.6 4323 1981-11-02 2024-10-11 01:12:03.000 1981-11-02 2024-10-11 01:12:03 +4324 4324 4325 432.4 864.8000000000001 4324 1981-11-03 2024-10-11 01:12:04.000 1981-11-03 2024-10-11 01:12:04 +4325 4325 4326 432.5 865 4325 1981-11-04 2024-10-11 01:12:05.000 1981-11-04 2024-10-11 01:12:05 +4326 4326 4327 432.6 865.2 4326 1981-11-05 2024-10-11 01:12:06.000 1981-11-05 2024-10-11 01:12:06 +4327 4327 4328 432.7 865.4000000000001 4327 1981-11-06 2024-10-11 01:12:07.000 1981-11-06 2024-10-11 01:12:07 +4328 4328 4329 432.8 865.6 4328 1981-11-07 2024-10-11 01:12:08.000 1981-11-07 2024-10-11 01:12:08 +4329 4329 4330 432.9 865.8000000000001 4329 1981-11-08 2024-10-11 01:12:09.000 1981-11-08 2024-10-11 01:12:09 +4330 4330 4331 433 866 4330 1981-11-09 2024-10-11 01:12:10.000 1981-11-09 2024-10-11 01:12:10 +4331 4331 4332 433.1 866.2 4331 1981-11-10 2024-10-11 01:12:11.000 1981-11-10 2024-10-11 01:12:11 +4332 4332 4333 433.2 866.4000000000001 4332 1981-11-11 2024-10-11 01:12:12.000 1981-11-11 2024-10-11 01:12:12 +4333 4333 4334 433.3 866.6 4333 1981-11-12 2024-10-11 01:12:13.000 1981-11-12 2024-10-11 01:12:13 +4334 4334 4335 433.4 866.8000000000001 4334 1981-11-13 2024-10-11 01:12:14.000 1981-11-13 2024-10-11 01:12:14 +4335 4335 4336 433.5 867 4335 1981-11-14 2024-10-11 01:12:15.000 1981-11-14 2024-10-11 01:12:15 +4336 4336 4337 433.6 867.2 4336 1981-11-15 2024-10-11 01:12:16.000 1981-11-15 2024-10-11 01:12:16 +4337 4337 4338 433.7 867.4000000000001 4337 1981-11-16 2024-10-11 01:12:17.000 1981-11-16 2024-10-11 01:12:17 +4338 4338 4339 433.8 867.6 4338 1981-11-17 2024-10-11 01:12:18.000 1981-11-17 2024-10-11 01:12:18 +4339 4339 4340 433.9 867.8000000000001 4339 1981-11-18 2024-10-11 01:12:19.000 1981-11-18 2024-10-11 01:12:19 +4340 4340 4341 434 868 4340 1981-11-19 2024-10-11 01:12:20.000 1981-11-19 2024-10-11 01:12:20 +4341 4341 4342 434.1 868.2 4341 1981-11-20 2024-10-11 01:12:21.000 1981-11-20 2024-10-11 01:12:21 +4342 4342 4343 434.2 868.4000000000001 4342 1981-11-21 2024-10-11 01:12:22.000 1981-11-21 2024-10-11 01:12:22 +4343 4343 4344 434.3 868.6 4343 1981-11-22 2024-10-11 01:12:23.000 1981-11-22 2024-10-11 01:12:23 +4344 4344 4345 434.4 868.8000000000001 4344 1981-11-23 2024-10-11 01:12:24.000 1981-11-23 2024-10-11 01:12:24 +4345 4345 4346 434.5 869 4345 1981-11-24 2024-10-11 01:12:25.000 1981-11-24 2024-10-11 01:12:25 +4346 4346 4347 434.6 869.2 4346 1981-11-25 2024-10-11 01:12:26.000 1981-11-25 2024-10-11 01:12:26 +4347 4347 4348 434.7 869.4000000000001 4347 1981-11-26 2024-10-11 01:12:27.000 1981-11-26 2024-10-11 01:12:27 +4348 4348 4349 434.8 869.6 4348 1981-11-27 2024-10-11 01:12:28.000 1981-11-27 2024-10-11 01:12:28 +4349 4349 4350 434.9 869.8000000000001 4349 1981-11-28 2024-10-11 01:12:29.000 1981-11-28 2024-10-11 01:12:29 +4350 4350 4351 435 870 4350 1981-11-29 2024-10-11 01:12:30.000 1981-11-29 2024-10-11 01:12:30 +4351 4351 4352 435.1 870.2 4351 1981-11-30 2024-10-11 01:12:31.000 1981-11-30 2024-10-11 01:12:31 +4352 4352 4353 435.2 870.4000000000001 4352 1981-12-01 2024-10-11 01:12:32.000 1981-12-01 2024-10-11 01:12:32 +4353 4353 4354 435.3 870.6 4353 1981-12-02 2024-10-11 01:12:33.000 1981-12-02 2024-10-11 01:12:33 +4354 4354 4355 435.4 870.8000000000001 4354 1981-12-03 2024-10-11 01:12:34.000 1981-12-03 2024-10-11 01:12:34 +4355 4355 4356 435.5 871 4355 1981-12-04 2024-10-11 01:12:35.000 1981-12-04 2024-10-11 01:12:35 +4356 4356 4357 435.6 871.2 4356 1981-12-05 2024-10-11 01:12:36.000 1981-12-05 2024-10-11 01:12:36 +4357 4357 4358 435.7 871.4000000000001 4357 1981-12-06 2024-10-11 01:12:37.000 1981-12-06 2024-10-11 01:12:37 +4358 4358 4359 435.8 871.6 4358 1981-12-07 2024-10-11 01:12:38.000 1981-12-07 2024-10-11 01:12:38 +4359 4359 4360 435.9 871.8000000000001 4359 1981-12-08 2024-10-11 01:12:39.000 1981-12-08 2024-10-11 01:12:39 +4360 4360 4361 436 872 4360 1981-12-09 2024-10-11 01:12:40.000 1981-12-09 2024-10-11 01:12:40 +4361 4361 4362 436.1 872.2 4361 1981-12-10 2024-10-11 01:12:41.000 1981-12-10 2024-10-11 01:12:41 +4362 4362 4363 436.2 872.4000000000001 4362 1981-12-11 2024-10-11 01:12:42.000 1981-12-11 2024-10-11 01:12:42 +4363 4363 4364 436.3 872.6 4363 1981-12-12 2024-10-11 01:12:43.000 1981-12-12 2024-10-11 01:12:43 +4364 4364 4365 436.4 872.8000000000001 4364 1981-12-13 2024-10-11 01:12:44.000 1981-12-13 2024-10-11 01:12:44 +4365 4365 4366 436.5 873 4365 1981-12-14 2024-10-11 01:12:45.000 1981-12-14 2024-10-11 01:12:45 +4366 4366 4367 436.6 873.2 4366 1981-12-15 2024-10-11 01:12:46.000 1981-12-15 2024-10-11 01:12:46 +4367 4367 4368 436.7 873.4000000000001 4367 1981-12-16 2024-10-11 01:12:47.000 1981-12-16 2024-10-11 01:12:47 +4368 4368 4369 436.8 873.6 4368 1981-12-17 2024-10-11 01:12:48.000 1981-12-17 2024-10-11 01:12:48 +4369 4369 4370 436.9 873.8000000000001 4369 1981-12-18 2024-10-11 01:12:49.000 1981-12-18 2024-10-11 01:12:49 +4370 4370 4371 437 874 4370 1981-12-19 2024-10-11 01:12:50.000 1981-12-19 2024-10-11 01:12:50 +4371 4371 4372 437.1 874.2 4371 1981-12-20 2024-10-11 01:12:51.000 1981-12-20 2024-10-11 01:12:51 +4372 4372 4373 437.2 874.4000000000001 4372 1981-12-21 2024-10-11 01:12:52.000 1981-12-21 2024-10-11 01:12:52 +4373 4373 4374 437.3 874.6 4373 1981-12-22 2024-10-11 01:12:53.000 1981-12-22 2024-10-11 01:12:53 +4374 4374 4375 437.4 874.8000000000001 4374 1981-12-23 2024-10-11 01:12:54.000 1981-12-23 2024-10-11 01:12:54 +4375 4375 4376 437.5 875 4375 1981-12-24 2024-10-11 01:12:55.000 1981-12-24 2024-10-11 01:12:55 +4376 4376 4377 437.6 875.2 4376 1981-12-25 2024-10-11 01:12:56.000 1981-12-25 2024-10-11 01:12:56 +4377 4377 4378 437.7 875.4000000000001 4377 1981-12-26 2024-10-11 01:12:57.000 1981-12-26 2024-10-11 01:12:57 +4378 4378 4379 437.8 875.6 4378 1981-12-27 2024-10-11 01:12:58.000 1981-12-27 2024-10-11 01:12:58 +4379 4379 4380 437.9 875.8000000000001 4379 1981-12-28 2024-10-11 01:12:59.000 1981-12-28 2024-10-11 01:12:59 +4380 4380 4381 438 876 4380 1981-12-29 2024-10-11 01:13:00.000 1981-12-29 2024-10-11 01:13:00 +4381 4381 4382 438.1 876.2 4381 1981-12-30 2024-10-11 01:13:01.000 1981-12-30 2024-10-11 01:13:01 +4382 4382 4383 438.2 876.4000000000001 4382 1981-12-31 2024-10-11 01:13:02.000 1981-12-31 2024-10-11 01:13:02 +4383 4383 4384 438.3 876.6 4383 1982-01-01 2024-10-11 01:13:03.000 1982-01-01 2024-10-11 01:13:03 +4384 4384 4385 438.4 876.8000000000001 4384 1982-01-02 2024-10-11 01:13:04.000 1982-01-02 2024-10-11 01:13:04 +4385 4385 4386 438.5 877 4385 1982-01-03 2024-10-11 01:13:05.000 1982-01-03 2024-10-11 01:13:05 +4386 4386 4387 438.6 877.2 4386 1982-01-04 2024-10-11 01:13:06.000 1982-01-04 2024-10-11 01:13:06 +4387 4387 4388 438.7 877.4000000000001 4387 1982-01-05 2024-10-11 01:13:07.000 1982-01-05 2024-10-11 01:13:07 +4388 4388 4389 438.8 877.6 4388 1982-01-06 2024-10-11 01:13:08.000 1982-01-06 2024-10-11 01:13:08 +4389 4389 4390 438.9 877.8000000000001 4389 1982-01-07 2024-10-11 01:13:09.000 1982-01-07 2024-10-11 01:13:09 +4390 4390 4391 439 878 4390 1982-01-08 2024-10-11 01:13:10.000 1982-01-08 2024-10-11 01:13:10 +4391 4391 4392 439.1 878.2 4391 1982-01-09 2024-10-11 01:13:11.000 1982-01-09 2024-10-11 01:13:11 +4392 4392 4393 439.2 878.4000000000001 4392 1982-01-10 2024-10-11 01:13:12.000 1982-01-10 2024-10-11 01:13:12 +4393 4393 4394 439.3 878.6 4393 1982-01-11 2024-10-11 01:13:13.000 1982-01-11 2024-10-11 01:13:13 +4394 4394 4395 439.4 878.8000000000001 4394 1982-01-12 2024-10-11 01:13:14.000 1982-01-12 2024-10-11 01:13:14 +4395 4395 4396 439.5 879 4395 1982-01-13 2024-10-11 01:13:15.000 1982-01-13 2024-10-11 01:13:15 +4396 4396 4397 439.6 879.2 4396 1982-01-14 2024-10-11 01:13:16.000 1982-01-14 2024-10-11 01:13:16 +4397 4397 4398 439.7 879.4000000000001 4397 1982-01-15 2024-10-11 01:13:17.000 1982-01-15 2024-10-11 01:13:17 +4398 4398 4399 439.8 879.6 4398 1982-01-16 2024-10-11 01:13:18.000 1982-01-16 2024-10-11 01:13:18 +4399 4399 4400 439.9 879.8000000000001 4399 1982-01-17 2024-10-11 01:13:19.000 1982-01-17 2024-10-11 01:13:19 +4400 4400 4401 440 880 4400 1982-01-18 2024-10-11 01:13:20.000 1982-01-18 2024-10-11 01:13:20 +4401 4401 4402 440.1 880.2 4401 1982-01-19 2024-10-11 01:13:21.000 1982-01-19 2024-10-11 01:13:21 +4402 4402 4403 440.2 880.4000000000001 4402 1982-01-20 2024-10-11 01:13:22.000 1982-01-20 2024-10-11 01:13:22 +4403 4403 4404 440.3 880.6 4403 1982-01-21 2024-10-11 01:13:23.000 1982-01-21 2024-10-11 01:13:23 +4404 4404 4405 440.4 880.8000000000001 4404 1982-01-22 2024-10-11 01:13:24.000 1982-01-22 2024-10-11 01:13:24 +4405 4405 4406 440.5 881 4405 1982-01-23 2024-10-11 01:13:25.000 1982-01-23 2024-10-11 01:13:25 +4406 4406 4407 440.6 881.2 4406 1982-01-24 2024-10-11 01:13:26.000 1982-01-24 2024-10-11 01:13:26 +4407 4407 4408 440.7 881.4000000000001 4407 1982-01-25 2024-10-11 01:13:27.000 1982-01-25 2024-10-11 01:13:27 +4408 4408 4409 440.8 881.6 4408 1982-01-26 2024-10-11 01:13:28.000 1982-01-26 2024-10-11 01:13:28 +4409 4409 4410 440.9 881.8000000000001 4409 1982-01-27 2024-10-11 01:13:29.000 1982-01-27 2024-10-11 01:13:29 +4410 4410 4411 441 882 4410 1982-01-28 2024-10-11 01:13:30.000 1982-01-28 2024-10-11 01:13:30 +4411 4411 4412 441.1 882.2 4411 1982-01-29 2024-10-11 01:13:31.000 1982-01-29 2024-10-11 01:13:31 +4412 4412 4413 441.2 882.4000000000001 4412 1982-01-30 2024-10-11 01:13:32.000 1982-01-30 2024-10-11 01:13:32 +4413 4413 4414 441.3 882.6 4413 1982-01-31 2024-10-11 01:13:33.000 1982-01-31 2024-10-11 01:13:33 +4414 4414 4415 441.4 882.8000000000001 4414 1982-02-01 2024-10-11 01:13:34.000 1982-02-01 2024-10-11 01:13:34 +4415 4415 4416 441.5 883 4415 1982-02-02 2024-10-11 01:13:35.000 1982-02-02 2024-10-11 01:13:35 +4416 4416 4417 441.6 883.2 4416 1982-02-03 2024-10-11 01:13:36.000 1982-02-03 2024-10-11 01:13:36 +4417 4417 4418 441.7 883.4000000000001 4417 1982-02-04 2024-10-11 01:13:37.000 1982-02-04 2024-10-11 01:13:37 +4418 4418 4419 441.8 883.6 4418 1982-02-05 2024-10-11 01:13:38.000 1982-02-05 2024-10-11 01:13:38 +4419 4419 4420 441.9 883.8000000000001 4419 1982-02-06 2024-10-11 01:13:39.000 1982-02-06 2024-10-11 01:13:39 +4420 4420 4421 442 884 4420 1982-02-07 2024-10-11 01:13:40.000 1982-02-07 2024-10-11 01:13:40 +4421 4421 4422 442.1 884.2 4421 1982-02-08 2024-10-11 01:13:41.000 1982-02-08 2024-10-11 01:13:41 +4422 4422 4423 442.2 884.4000000000001 4422 1982-02-09 2024-10-11 01:13:42.000 1982-02-09 2024-10-11 01:13:42 +4423 4423 4424 442.3 884.6 4423 1982-02-10 2024-10-11 01:13:43.000 1982-02-10 2024-10-11 01:13:43 +4424 4424 4425 442.4 884.8000000000001 4424 1982-02-11 2024-10-11 01:13:44.000 1982-02-11 2024-10-11 01:13:44 +4425 4425 4426 442.5 885 4425 1982-02-12 2024-10-11 01:13:45.000 1982-02-12 2024-10-11 01:13:45 +4426 4426 4427 442.6 885.2 4426 1982-02-13 2024-10-11 01:13:46.000 1982-02-13 2024-10-11 01:13:46 +4427 4427 4428 442.7 885.4000000000001 4427 1982-02-14 2024-10-11 01:13:47.000 1982-02-14 2024-10-11 01:13:47 +4428 4428 4429 442.8 885.6 4428 1982-02-15 2024-10-11 01:13:48.000 1982-02-15 2024-10-11 01:13:48 +4429 4429 4430 442.9 885.8000000000001 4429 1982-02-16 2024-10-11 01:13:49.000 1982-02-16 2024-10-11 01:13:49 +4430 4430 4431 443 886 4430 1982-02-17 2024-10-11 01:13:50.000 1982-02-17 2024-10-11 01:13:50 +4431 4431 4432 443.1 886.2 4431 1982-02-18 2024-10-11 01:13:51.000 1982-02-18 2024-10-11 01:13:51 +4432 4432 4433 443.2 886.4000000000001 4432 1982-02-19 2024-10-11 01:13:52.000 1982-02-19 2024-10-11 01:13:52 +4433 4433 4434 443.3 886.6 4433 1982-02-20 2024-10-11 01:13:53.000 1982-02-20 2024-10-11 01:13:53 +4434 4434 4435 443.4 886.8000000000001 4434 1982-02-21 2024-10-11 01:13:54.000 1982-02-21 2024-10-11 01:13:54 +4435 4435 4436 443.5 887 4435 1982-02-22 2024-10-11 01:13:55.000 1982-02-22 2024-10-11 01:13:55 +4436 4436 4437 443.6 887.2 4436 1982-02-23 2024-10-11 01:13:56.000 1982-02-23 2024-10-11 01:13:56 +4437 4437 4438 443.7 887.4000000000001 4437 1982-02-24 2024-10-11 01:13:57.000 1982-02-24 2024-10-11 01:13:57 +4438 4438 4439 443.8 887.6 4438 1982-02-25 2024-10-11 01:13:58.000 1982-02-25 2024-10-11 01:13:58 +4439 4439 4440 443.9 887.8000000000001 4439 1982-02-26 2024-10-11 01:13:59.000 1982-02-26 2024-10-11 01:13:59 +4440 4440 4441 444 888 4440 1982-02-27 2024-10-11 01:14:00.000 1982-02-27 2024-10-11 01:14:00 +4441 4441 4442 444.1 888.2 4441 1982-02-28 2024-10-11 01:14:01.000 1982-02-28 2024-10-11 01:14:01 +4442 4442 4443 444.2 888.4000000000001 4442 1982-03-01 2024-10-11 01:14:02.000 1982-03-01 2024-10-11 01:14:02 +4443 4443 4444 444.3 888.6 4443 1982-03-02 2024-10-11 01:14:03.000 1982-03-02 2024-10-11 01:14:03 +4444 4444 4445 444.4 888.8000000000001 4444 1982-03-03 2024-10-11 01:14:04.000 1982-03-03 2024-10-11 01:14:04 +4445 4445 4446 444.5 889 4445 1982-03-04 2024-10-11 01:14:05.000 1982-03-04 2024-10-11 01:14:05 +4446 4446 4447 444.6 889.2 4446 1982-03-05 2024-10-11 01:14:06.000 1982-03-05 2024-10-11 01:14:06 +4447 4447 4448 444.7 889.4000000000001 4447 1982-03-06 2024-10-11 01:14:07.000 1982-03-06 2024-10-11 01:14:07 +4448 4448 4449 444.8 889.6 4448 1982-03-07 2024-10-11 01:14:08.000 1982-03-07 2024-10-11 01:14:08 +4449 4449 4450 444.9 889.8000000000001 4449 1982-03-08 2024-10-11 01:14:09.000 1982-03-08 2024-10-11 01:14:09 +4450 4450 4451 445 890 4450 1982-03-09 2024-10-11 01:14:10.000 1982-03-09 2024-10-11 01:14:10 +4451 4451 4452 445.1 890.2 4451 1982-03-10 2024-10-11 01:14:11.000 1982-03-10 2024-10-11 01:14:11 +4452 4452 4453 445.2 890.4000000000001 4452 1982-03-11 2024-10-11 01:14:12.000 1982-03-11 2024-10-11 01:14:12 +4453 4453 4454 445.3 890.6 4453 1982-03-12 2024-10-11 01:14:13.000 1982-03-12 2024-10-11 01:14:13 +4454 4454 4455 445.4 890.8000000000001 4454 1982-03-13 2024-10-11 01:14:14.000 1982-03-13 2024-10-11 01:14:14 +4455 4455 4456 445.5 891 4455 1982-03-14 2024-10-11 01:14:15.000 1982-03-14 2024-10-11 01:14:15 +4456 4456 4457 445.6 891.2 4456 1982-03-15 2024-10-11 01:14:16.000 1982-03-15 2024-10-11 01:14:16 +4457 4457 4458 445.7 891.4000000000001 4457 1982-03-16 2024-10-11 01:14:17.000 1982-03-16 2024-10-11 01:14:17 +4458 4458 4459 445.8 891.6 4458 1982-03-17 2024-10-11 01:14:18.000 1982-03-17 2024-10-11 01:14:18 +4459 4459 4460 445.9 891.8000000000001 4459 1982-03-18 2024-10-11 01:14:19.000 1982-03-18 2024-10-11 01:14:19 +4460 4460 4461 446 892 4460 1982-03-19 2024-10-11 01:14:20.000 1982-03-19 2024-10-11 01:14:20 +4461 4461 4462 446.1 892.2 4461 1982-03-20 2024-10-11 01:14:21.000 1982-03-20 2024-10-11 01:14:21 +4462 4462 4463 446.2 892.4000000000001 4462 1982-03-21 2024-10-11 01:14:22.000 1982-03-21 2024-10-11 01:14:22 +4463 4463 4464 446.3 892.6 4463 1982-03-22 2024-10-11 01:14:23.000 1982-03-22 2024-10-11 01:14:23 +4464 4464 4465 446.4 892.8000000000001 4464 1982-03-23 2024-10-11 01:14:24.000 1982-03-23 2024-10-11 01:14:24 +4465 4465 4466 446.5 893 4465 1982-03-24 2024-10-11 01:14:25.000 1982-03-24 2024-10-11 01:14:25 +4466 4466 4467 446.6 893.2 4466 1982-03-25 2024-10-11 01:14:26.000 1982-03-25 2024-10-11 01:14:26 +4467 4467 4468 446.7 893.4000000000001 4467 1982-03-26 2024-10-11 01:14:27.000 1982-03-26 2024-10-11 01:14:27 +4468 4468 4469 446.8 893.6 4468 1982-03-27 2024-10-11 01:14:28.000 1982-03-27 2024-10-11 01:14:28 +4469 4469 4470 446.9 893.8000000000001 4469 1982-03-28 2024-10-11 01:14:29.000 1982-03-28 2024-10-11 01:14:29 +4470 4470 4471 447 894 4470 1982-03-29 2024-10-11 01:14:30.000 1982-03-29 2024-10-11 01:14:30 +4471 4471 4472 447.1 894.2 4471 1982-03-30 2024-10-11 01:14:31.000 1982-03-30 2024-10-11 01:14:31 +4472 4472 4473 447.2 894.4000000000001 4472 1982-03-31 2024-10-11 01:14:32.000 1982-03-31 2024-10-11 01:14:32 +4473 4473 4474 447.3 894.6 4473 1982-04-01 2024-10-11 01:14:33.000 1982-04-01 2024-10-11 01:14:33 +4474 4474 4475 447.4 894.8000000000001 4474 1982-04-02 2024-10-11 01:14:34.000 1982-04-02 2024-10-11 01:14:34 +4475 4475 4476 447.5 895 4475 1982-04-03 2024-10-11 01:14:35.000 1982-04-03 2024-10-11 01:14:35 +4476 4476 4477 447.6 895.2 4476 1982-04-04 2024-10-11 01:14:36.000 1982-04-04 2024-10-11 01:14:36 +4477 4477 4478 447.7 895.4000000000001 4477 1982-04-05 2024-10-11 01:14:37.000 1982-04-05 2024-10-11 01:14:37 +4478 4478 4479 447.8 895.6 4478 1982-04-06 2024-10-11 01:14:38.000 1982-04-06 2024-10-11 01:14:38 +4479 4479 4480 447.9 895.8000000000001 4479 1982-04-07 2024-10-11 01:14:39.000 1982-04-07 2024-10-11 01:14:39 +4480 4480 4481 448 896 4480 1982-04-08 2024-10-11 01:14:40.000 1982-04-08 2024-10-11 01:14:40 +4481 4481 4482 448.1 896.2 4481 1982-04-09 2024-10-11 01:14:41.000 1982-04-09 2024-10-11 01:14:41 +4482 4482 4483 448.2 896.4000000000001 4482 1982-04-10 2024-10-11 01:14:42.000 1982-04-10 2024-10-11 01:14:42 +4483 4483 4484 448.3 896.6 4483 1982-04-11 2024-10-11 01:14:43.000 1982-04-11 2024-10-11 01:14:43 +4484 4484 4485 448.4 896.8000000000001 4484 1982-04-12 2024-10-11 01:14:44.000 1982-04-12 2024-10-11 01:14:44 +4485 4485 4486 448.5 897 4485 1982-04-13 2024-10-11 01:14:45.000 1982-04-13 2024-10-11 01:14:45 +4486 4486 4487 448.6 897.2 4486 1982-04-14 2024-10-11 01:14:46.000 1982-04-14 2024-10-11 01:14:46 +4487 4487 4488 448.7 897.4000000000001 4487 1982-04-15 2024-10-11 01:14:47.000 1982-04-15 2024-10-11 01:14:47 +4488 4488 4489 448.8 897.6 4488 1982-04-16 2024-10-11 01:14:48.000 1982-04-16 2024-10-11 01:14:48 +4489 4489 4490 448.9 897.8000000000001 4489 1982-04-17 2024-10-11 01:14:49.000 1982-04-17 2024-10-11 01:14:49 +4490 4490 4491 449 898 4490 1982-04-18 2024-10-11 01:14:50.000 1982-04-18 2024-10-11 01:14:50 +4491 4491 4492 449.1 898.2 4491 1982-04-19 2024-10-11 01:14:51.000 1982-04-19 2024-10-11 01:14:51 +4492 4492 4493 449.2 898.4000000000001 4492 1982-04-20 2024-10-11 01:14:52.000 1982-04-20 2024-10-11 01:14:52 +4493 4493 4494 449.3 898.6 4493 1982-04-21 2024-10-11 01:14:53.000 1982-04-21 2024-10-11 01:14:53 +4494 4494 4495 449.4 898.8000000000001 4494 1982-04-22 2024-10-11 01:14:54.000 1982-04-22 2024-10-11 01:14:54 +4495 4495 4496 449.5 899 4495 1982-04-23 2024-10-11 01:14:55.000 1982-04-23 2024-10-11 01:14:55 +4496 4496 4497 449.6 899.2 4496 1982-04-24 2024-10-11 01:14:56.000 1982-04-24 2024-10-11 01:14:56 +4497 4497 4498 449.7 899.4000000000001 4497 1982-04-25 2024-10-11 01:14:57.000 1982-04-25 2024-10-11 01:14:57 +4498 4498 4499 449.8 899.6 4498 1982-04-26 2024-10-11 01:14:58.000 1982-04-26 2024-10-11 01:14:58 +4499 4499 4500 449.9 899.8000000000001 4499 1982-04-27 2024-10-11 01:14:59.000 1982-04-27 2024-10-11 01:14:59 +4500 4500 4501 450 900 4500 1982-04-28 2024-10-11 01:15:00.000 1982-04-28 2024-10-11 01:15:00 +4501 4501 4502 450.1 900.2 4501 1982-04-29 2024-10-11 01:15:01.000 1982-04-29 2024-10-11 01:15:01 +4502 4502 4503 450.2 900.4000000000001 4502 1982-04-30 2024-10-11 01:15:02.000 1982-04-30 2024-10-11 01:15:02 +4503 4503 4504 450.3 900.6 4503 1982-05-01 2024-10-11 01:15:03.000 1982-05-01 2024-10-11 01:15:03 +4504 4504 4505 450.4 900.8000000000001 4504 1982-05-02 2024-10-11 01:15:04.000 1982-05-02 2024-10-11 01:15:04 +4505 4505 4506 450.5 901 4505 1982-05-03 2024-10-11 01:15:05.000 1982-05-03 2024-10-11 01:15:05 +4506 4506 4507 450.6 901.2 4506 1982-05-04 2024-10-11 01:15:06.000 1982-05-04 2024-10-11 01:15:06 +4507 4507 4508 450.7 901.4000000000001 4507 1982-05-05 2024-10-11 01:15:07.000 1982-05-05 2024-10-11 01:15:07 +4508 4508 4509 450.8 901.6 4508 1982-05-06 2024-10-11 01:15:08.000 1982-05-06 2024-10-11 01:15:08 +4509 4509 4510 450.9 901.8000000000001 4509 1982-05-07 2024-10-11 01:15:09.000 1982-05-07 2024-10-11 01:15:09 +4510 4510 4511 451 902 4510 1982-05-08 2024-10-11 01:15:10.000 1982-05-08 2024-10-11 01:15:10 +4511 4511 4512 451.1 902.2 4511 1982-05-09 2024-10-11 01:15:11.000 1982-05-09 2024-10-11 01:15:11 +4512 4512 4513 451.2 902.4000000000001 4512 1982-05-10 2024-10-11 01:15:12.000 1982-05-10 2024-10-11 01:15:12 +4513 4513 4514 451.3 902.6 4513 1982-05-11 2024-10-11 01:15:13.000 1982-05-11 2024-10-11 01:15:13 +4514 4514 4515 451.4 902.8000000000001 4514 1982-05-12 2024-10-11 01:15:14.000 1982-05-12 2024-10-11 01:15:14 +4515 4515 4516 451.5 903 4515 1982-05-13 2024-10-11 01:15:15.000 1982-05-13 2024-10-11 01:15:15 +4516 4516 4517 451.6 903.2 4516 1982-05-14 2024-10-11 01:15:16.000 1982-05-14 2024-10-11 01:15:16 +4517 4517 4518 451.7 903.4000000000001 4517 1982-05-15 2024-10-11 01:15:17.000 1982-05-15 2024-10-11 01:15:17 +4518 4518 4519 451.8 903.6 4518 1982-05-16 2024-10-11 01:15:18.000 1982-05-16 2024-10-11 01:15:18 +4519 4519 4520 451.9 903.8000000000001 4519 1982-05-17 2024-10-11 01:15:19.000 1982-05-17 2024-10-11 01:15:19 +4520 4520 4521 452 904 4520 1982-05-18 2024-10-11 01:15:20.000 1982-05-18 2024-10-11 01:15:20 +4521 4521 4522 452.1 904.2 4521 1982-05-19 2024-10-11 01:15:21.000 1982-05-19 2024-10-11 01:15:21 +4522 4522 4523 452.2 904.4000000000001 4522 1982-05-20 2024-10-11 01:15:22.000 1982-05-20 2024-10-11 01:15:22 +4523 4523 4524 452.3 904.6 4523 1982-05-21 2024-10-11 01:15:23.000 1982-05-21 2024-10-11 01:15:23 +4524 4524 4525 452.4 904.8000000000001 4524 1982-05-22 2024-10-11 01:15:24.000 1982-05-22 2024-10-11 01:15:24 +4525 4525 4526 452.5 905 4525 1982-05-23 2024-10-11 01:15:25.000 1982-05-23 2024-10-11 01:15:25 +4526 4526 4527 452.6 905.2 4526 1982-05-24 2024-10-11 01:15:26.000 1982-05-24 2024-10-11 01:15:26 +4527 4527 4528 452.7 905.4000000000001 4527 1982-05-25 2024-10-11 01:15:27.000 1982-05-25 2024-10-11 01:15:27 +4528 4528 4529 452.8 905.6 4528 1982-05-26 2024-10-11 01:15:28.000 1982-05-26 2024-10-11 01:15:28 +4529 4529 4530 452.9 905.8000000000001 4529 1982-05-27 2024-10-11 01:15:29.000 1982-05-27 2024-10-11 01:15:29 +4530 4530 4531 453 906 4530 1982-05-28 2024-10-11 01:15:30.000 1982-05-28 2024-10-11 01:15:30 +4531 4531 4532 453.1 906.2 4531 1982-05-29 2024-10-11 01:15:31.000 1982-05-29 2024-10-11 01:15:31 +4532 4532 4533 453.2 906.4000000000001 4532 1982-05-30 2024-10-11 01:15:32.000 1982-05-30 2024-10-11 01:15:32 +4533 4533 4534 453.3 906.6 4533 1982-05-31 2024-10-11 01:15:33.000 1982-05-31 2024-10-11 01:15:33 +4534 4534 4535 453.4 906.8000000000001 4534 1982-06-01 2024-10-11 01:15:34.000 1982-06-01 2024-10-11 01:15:34 +4535 4535 4536 453.5 907 4535 1982-06-02 2024-10-11 01:15:35.000 1982-06-02 2024-10-11 01:15:35 +4536 4536 4537 453.6 907.2 4536 1982-06-03 2024-10-11 01:15:36.000 1982-06-03 2024-10-11 01:15:36 +4537 4537 4538 453.7 907.4000000000001 4537 1982-06-04 2024-10-11 01:15:37.000 1982-06-04 2024-10-11 01:15:37 +4538 4538 4539 453.8 907.6 4538 1982-06-05 2024-10-11 01:15:38.000 1982-06-05 2024-10-11 01:15:38 +4539 4539 4540 453.9 907.8000000000001 4539 1982-06-06 2024-10-11 01:15:39.000 1982-06-06 2024-10-11 01:15:39 +4540 4540 4541 454 908 4540 1982-06-07 2024-10-11 01:15:40.000 1982-06-07 2024-10-11 01:15:40 +4541 4541 4542 454.1 908.2 4541 1982-06-08 2024-10-11 01:15:41.000 1982-06-08 2024-10-11 01:15:41 +4542 4542 4543 454.2 908.4000000000001 4542 1982-06-09 2024-10-11 01:15:42.000 1982-06-09 2024-10-11 01:15:42 +4543 4543 4544 454.3 908.6 4543 1982-06-10 2024-10-11 01:15:43.000 1982-06-10 2024-10-11 01:15:43 +4544 4544 4545 454.4 908.8000000000001 4544 1982-06-11 2024-10-11 01:15:44.000 1982-06-11 2024-10-11 01:15:44 +4545 4545 4546 454.5 909 4545 1982-06-12 2024-10-11 01:15:45.000 1982-06-12 2024-10-11 01:15:45 +4546 4546 4547 454.6 909.2 4546 1982-06-13 2024-10-11 01:15:46.000 1982-06-13 2024-10-11 01:15:46 +4547 4547 4548 454.7 909.4000000000001 4547 1982-06-14 2024-10-11 01:15:47.000 1982-06-14 2024-10-11 01:15:47 +4548 4548 4549 454.8 909.6 4548 1982-06-15 2024-10-11 01:15:48.000 1982-06-15 2024-10-11 01:15:48 +4549 4549 4550 454.9 909.8000000000001 4549 1982-06-16 2024-10-11 01:15:49.000 1982-06-16 2024-10-11 01:15:49 +4550 4550 4551 455 910 4550 1982-06-17 2024-10-11 01:15:50.000 1982-06-17 2024-10-11 01:15:50 +4551 4551 4552 455.1 910.2 4551 1982-06-18 2024-10-11 01:15:51.000 1982-06-18 2024-10-11 01:15:51 +4552 4552 4553 455.2 910.4000000000001 4552 1982-06-19 2024-10-11 01:15:52.000 1982-06-19 2024-10-11 01:15:52 +4553 4553 4554 455.3 910.6 4553 1982-06-20 2024-10-11 01:15:53.000 1982-06-20 2024-10-11 01:15:53 +4554 4554 4555 455.4 910.8000000000001 4554 1982-06-21 2024-10-11 01:15:54.000 1982-06-21 2024-10-11 01:15:54 +4555 4555 4556 455.5 911 4555 1982-06-22 2024-10-11 01:15:55.000 1982-06-22 2024-10-11 01:15:55 +4556 4556 4557 455.6 911.2 4556 1982-06-23 2024-10-11 01:15:56.000 1982-06-23 2024-10-11 01:15:56 +4557 4557 4558 455.7 911.4000000000001 4557 1982-06-24 2024-10-11 01:15:57.000 1982-06-24 2024-10-11 01:15:57 +4558 4558 4559 455.8 911.6 4558 1982-06-25 2024-10-11 01:15:58.000 1982-06-25 2024-10-11 01:15:58 +4559 4559 4560 455.9 911.8000000000001 4559 1982-06-26 2024-10-11 01:15:59.000 1982-06-26 2024-10-11 01:15:59 +4560 4560 4561 456 912 4560 1982-06-27 2024-10-11 01:16:00.000 1982-06-27 2024-10-11 01:16:00 +4561 4561 4562 456.1 912.2 4561 1982-06-28 2024-10-11 01:16:01.000 1982-06-28 2024-10-11 01:16:01 +4562 4562 4563 456.2 912.4000000000001 4562 1982-06-29 2024-10-11 01:16:02.000 1982-06-29 2024-10-11 01:16:02 +4563 4563 4564 456.3 912.6 4563 1982-06-30 2024-10-11 01:16:03.000 1982-06-30 2024-10-11 01:16:03 +4564 4564 4565 456.4 912.8000000000001 4564 1982-07-01 2024-10-11 01:16:04.000 1982-07-01 2024-10-11 01:16:04 +4565 4565 4566 456.5 913 4565 1982-07-02 2024-10-11 01:16:05.000 1982-07-02 2024-10-11 01:16:05 +4566 4566 4567 456.6 913.2 4566 1982-07-03 2024-10-11 01:16:06.000 1982-07-03 2024-10-11 01:16:06 +4567 4567 4568 456.7 913.4000000000001 4567 1982-07-04 2024-10-11 01:16:07.000 1982-07-04 2024-10-11 01:16:07 +4568 4568 4569 456.8 913.6 4568 1982-07-05 2024-10-11 01:16:08.000 1982-07-05 2024-10-11 01:16:08 +4569 4569 4570 456.9 913.8000000000001 4569 1982-07-06 2024-10-11 01:16:09.000 1982-07-06 2024-10-11 01:16:09 +4570 4570 4571 457 914 4570 1982-07-07 2024-10-11 01:16:10.000 1982-07-07 2024-10-11 01:16:10 +4571 4571 4572 457.1 914.2 4571 1982-07-08 2024-10-11 01:16:11.000 1982-07-08 2024-10-11 01:16:11 +4572 4572 4573 457.2 914.4000000000001 4572 1982-07-09 2024-10-11 01:16:12.000 1982-07-09 2024-10-11 01:16:12 +4573 4573 4574 457.3 914.6 4573 1982-07-10 2024-10-11 01:16:13.000 1982-07-10 2024-10-11 01:16:13 +4574 4574 4575 457.4 914.8000000000001 4574 1982-07-11 2024-10-11 01:16:14.000 1982-07-11 2024-10-11 01:16:14 +4575 4575 4576 457.5 915 4575 1982-07-12 2024-10-11 01:16:15.000 1982-07-12 2024-10-11 01:16:15 +4576 4576 4577 457.6 915.2 4576 1982-07-13 2024-10-11 01:16:16.000 1982-07-13 2024-10-11 01:16:16 +4577 4577 4578 457.7 915.4000000000001 4577 1982-07-14 2024-10-11 01:16:17.000 1982-07-14 2024-10-11 01:16:17 +4578 4578 4579 457.8 915.6 4578 1982-07-15 2024-10-11 01:16:18.000 1982-07-15 2024-10-11 01:16:18 +4579 4579 4580 457.9 915.8000000000001 4579 1982-07-16 2024-10-11 01:16:19.000 1982-07-16 2024-10-11 01:16:19 +4580 4580 4581 458 916 4580 1982-07-17 2024-10-11 01:16:20.000 1982-07-17 2024-10-11 01:16:20 +4581 4581 4582 458.1 916.2 4581 1982-07-18 2024-10-11 01:16:21.000 1982-07-18 2024-10-11 01:16:21 +4582 4582 4583 458.2 916.4000000000001 4582 1982-07-19 2024-10-11 01:16:22.000 1982-07-19 2024-10-11 01:16:22 +4583 4583 4584 458.3 916.6 4583 1982-07-20 2024-10-11 01:16:23.000 1982-07-20 2024-10-11 01:16:23 +4584 4584 4585 458.4 916.8000000000001 4584 1982-07-21 2024-10-11 01:16:24.000 1982-07-21 2024-10-11 01:16:24 +4585 4585 4586 458.5 917 4585 1982-07-22 2024-10-11 01:16:25.000 1982-07-22 2024-10-11 01:16:25 +4586 4586 4587 458.6 917.2 4586 1982-07-23 2024-10-11 01:16:26.000 1982-07-23 2024-10-11 01:16:26 +4587 4587 4588 458.7 917.4000000000001 4587 1982-07-24 2024-10-11 01:16:27.000 1982-07-24 2024-10-11 01:16:27 +4588 4588 4589 458.8 917.6 4588 1982-07-25 2024-10-11 01:16:28.000 1982-07-25 2024-10-11 01:16:28 +4589 4589 4590 458.9 917.8000000000001 4589 1982-07-26 2024-10-11 01:16:29.000 1982-07-26 2024-10-11 01:16:29 +4590 4590 4591 459 918 4590 1982-07-27 2024-10-11 01:16:30.000 1982-07-27 2024-10-11 01:16:30 +4591 4591 4592 459.1 918.2 4591 1982-07-28 2024-10-11 01:16:31.000 1982-07-28 2024-10-11 01:16:31 +4592 4592 4593 459.2 918.4000000000001 4592 1982-07-29 2024-10-11 01:16:32.000 1982-07-29 2024-10-11 01:16:32 +4593 4593 4594 459.3 918.6 4593 1982-07-30 2024-10-11 01:16:33.000 1982-07-30 2024-10-11 01:16:33 +4594 4594 4595 459.4 918.8000000000001 4594 1982-07-31 2024-10-11 01:16:34.000 1982-07-31 2024-10-11 01:16:34 +4595 4595 4596 459.5 919 4595 1982-08-01 2024-10-11 01:16:35.000 1982-08-01 2024-10-11 01:16:35 +4596 4596 4597 459.6 919.2 4596 1982-08-02 2024-10-11 01:16:36.000 1982-08-02 2024-10-11 01:16:36 +4597 4597 4598 459.7 919.4000000000001 4597 1982-08-03 2024-10-11 01:16:37.000 1982-08-03 2024-10-11 01:16:37 +4598 4598 4599 459.8 919.6 4598 1982-08-04 2024-10-11 01:16:38.000 1982-08-04 2024-10-11 01:16:38 +4599 4599 4600 459.9 919.8000000000001 4599 1982-08-05 2024-10-11 01:16:39.000 1982-08-05 2024-10-11 01:16:39 +4600 4600 4601 460 920 4600 1982-08-06 2024-10-11 01:16:40.000 1982-08-06 2024-10-11 01:16:40 +4601 4601 4602 460.1 920.2 4601 1982-08-07 2024-10-11 01:16:41.000 1982-08-07 2024-10-11 01:16:41 +4602 4602 4603 460.2 920.4000000000001 4602 1982-08-08 2024-10-11 01:16:42.000 1982-08-08 2024-10-11 01:16:42 +4603 4603 4604 460.3 920.6 4603 1982-08-09 2024-10-11 01:16:43.000 1982-08-09 2024-10-11 01:16:43 +4604 4604 4605 460.4 920.8000000000001 4604 1982-08-10 2024-10-11 01:16:44.000 1982-08-10 2024-10-11 01:16:44 +4605 4605 4606 460.5 921 4605 1982-08-11 2024-10-11 01:16:45.000 1982-08-11 2024-10-11 01:16:45 +4606 4606 4607 460.6 921.2 4606 1982-08-12 2024-10-11 01:16:46.000 1982-08-12 2024-10-11 01:16:46 +4607 4607 4608 460.7 921.4000000000001 4607 1982-08-13 2024-10-11 01:16:47.000 1982-08-13 2024-10-11 01:16:47 +4608 4608 4609 460.8 921.6 4608 1982-08-14 2024-10-11 01:16:48.000 1982-08-14 2024-10-11 01:16:48 +4609 4609 4610 460.9 921.8000000000001 4609 1982-08-15 2024-10-11 01:16:49.000 1982-08-15 2024-10-11 01:16:49 +4610 4610 4611 461 922 4610 1982-08-16 2024-10-11 01:16:50.000 1982-08-16 2024-10-11 01:16:50 +4611 4611 4612 461.1 922.2 4611 1982-08-17 2024-10-11 01:16:51.000 1982-08-17 2024-10-11 01:16:51 +4612 4612 4613 461.2 922.4000000000001 4612 1982-08-18 2024-10-11 01:16:52.000 1982-08-18 2024-10-11 01:16:52 +4613 4613 4614 461.3 922.6 4613 1982-08-19 2024-10-11 01:16:53.000 1982-08-19 2024-10-11 01:16:53 +4614 4614 4615 461.4 922.8000000000001 4614 1982-08-20 2024-10-11 01:16:54.000 1982-08-20 2024-10-11 01:16:54 +4615 4615 4616 461.5 923 4615 1982-08-21 2024-10-11 01:16:55.000 1982-08-21 2024-10-11 01:16:55 +4616 4616 4617 461.6 923.2 4616 1982-08-22 2024-10-11 01:16:56.000 1982-08-22 2024-10-11 01:16:56 +4617 4617 4618 461.7 923.4000000000001 4617 1982-08-23 2024-10-11 01:16:57.000 1982-08-23 2024-10-11 01:16:57 +4618 4618 4619 461.8 923.6 4618 1982-08-24 2024-10-11 01:16:58.000 1982-08-24 2024-10-11 01:16:58 +4619 4619 4620 461.9 923.8000000000001 4619 1982-08-25 2024-10-11 01:16:59.000 1982-08-25 2024-10-11 01:16:59 +4620 4620 4621 462 924 4620 1982-08-26 2024-10-11 01:17:00.000 1982-08-26 2024-10-11 01:17:00 +4621 4621 4622 462.1 924.2 4621 1982-08-27 2024-10-11 01:17:01.000 1982-08-27 2024-10-11 01:17:01 +4622 4622 4623 462.2 924.4000000000001 4622 1982-08-28 2024-10-11 01:17:02.000 1982-08-28 2024-10-11 01:17:02 +4623 4623 4624 462.3 924.6 4623 1982-08-29 2024-10-11 01:17:03.000 1982-08-29 2024-10-11 01:17:03 +4624 4624 4625 462.4 924.8000000000001 4624 1982-08-30 2024-10-11 01:17:04.000 1982-08-30 2024-10-11 01:17:04 +4625 4625 4626 462.5 925 4625 1982-08-31 2024-10-11 01:17:05.000 1982-08-31 2024-10-11 01:17:05 +4626 4626 4627 462.6 925.2 4626 1982-09-01 2024-10-11 01:17:06.000 1982-09-01 2024-10-11 01:17:06 +4627 4627 4628 462.7 925.4000000000001 4627 1982-09-02 2024-10-11 01:17:07.000 1982-09-02 2024-10-11 01:17:07 +4628 4628 4629 462.8 925.6 4628 1982-09-03 2024-10-11 01:17:08.000 1982-09-03 2024-10-11 01:17:08 +4629 4629 4630 462.9 925.8000000000001 4629 1982-09-04 2024-10-11 01:17:09.000 1982-09-04 2024-10-11 01:17:09 +4630 4630 4631 463 926 4630 1982-09-05 2024-10-11 01:17:10.000 1982-09-05 2024-10-11 01:17:10 +4631 4631 4632 463.1 926.2 4631 1982-09-06 2024-10-11 01:17:11.000 1982-09-06 2024-10-11 01:17:11 +4632 4632 4633 463.2 926.4000000000001 4632 1982-09-07 2024-10-11 01:17:12.000 1982-09-07 2024-10-11 01:17:12 +4633 4633 4634 463.3 926.6 4633 1982-09-08 2024-10-11 01:17:13.000 1982-09-08 2024-10-11 01:17:13 +4634 4634 4635 463.4 926.8000000000001 4634 1982-09-09 2024-10-11 01:17:14.000 1982-09-09 2024-10-11 01:17:14 +4635 4635 4636 463.5 927 4635 1982-09-10 2024-10-11 01:17:15.000 1982-09-10 2024-10-11 01:17:15 +4636 4636 4637 463.6 927.2 4636 1982-09-11 2024-10-11 01:17:16.000 1982-09-11 2024-10-11 01:17:16 +4637 4637 4638 463.7 927.4000000000001 4637 1982-09-12 2024-10-11 01:17:17.000 1982-09-12 2024-10-11 01:17:17 +4638 4638 4639 463.8 927.6 4638 1982-09-13 2024-10-11 01:17:18.000 1982-09-13 2024-10-11 01:17:18 +4639 4639 4640 463.9 927.8000000000001 4639 1982-09-14 2024-10-11 01:17:19.000 1982-09-14 2024-10-11 01:17:19 +4640 4640 4641 464 928 4640 1982-09-15 2024-10-11 01:17:20.000 1982-09-15 2024-10-11 01:17:20 +4641 4641 4642 464.1 928.2 4641 1982-09-16 2024-10-11 01:17:21.000 1982-09-16 2024-10-11 01:17:21 +4642 4642 4643 464.2 928.4000000000001 4642 1982-09-17 2024-10-11 01:17:22.000 1982-09-17 2024-10-11 01:17:22 +4643 4643 4644 464.3 928.6 4643 1982-09-18 2024-10-11 01:17:23.000 1982-09-18 2024-10-11 01:17:23 +4644 4644 4645 464.4 928.8000000000001 4644 1982-09-19 2024-10-11 01:17:24.000 1982-09-19 2024-10-11 01:17:24 +4645 4645 4646 464.5 929 4645 1982-09-20 2024-10-11 01:17:25.000 1982-09-20 2024-10-11 01:17:25 +4646 4646 4647 464.6 929.2 4646 1982-09-21 2024-10-11 01:17:26.000 1982-09-21 2024-10-11 01:17:26 +4647 4647 4648 464.7 929.4000000000001 4647 1982-09-22 2024-10-11 01:17:27.000 1982-09-22 2024-10-11 01:17:27 +4648 4648 4649 464.8 929.6 4648 1982-09-23 2024-10-11 01:17:28.000 1982-09-23 2024-10-11 01:17:28 +4649 4649 4650 464.9 929.8000000000001 4649 1982-09-24 2024-10-11 01:17:29.000 1982-09-24 2024-10-11 01:17:29 +4650 4650 4651 465 930 4650 1982-09-25 2024-10-11 01:17:30.000 1982-09-25 2024-10-11 01:17:30 +4651 4651 4652 465.1 930.2 4651 1982-09-26 2024-10-11 01:17:31.000 1982-09-26 2024-10-11 01:17:31 +4652 4652 4653 465.2 930.4000000000001 4652 1982-09-27 2024-10-11 01:17:32.000 1982-09-27 2024-10-11 01:17:32 +4653 4653 4654 465.3 930.6 4653 1982-09-28 2024-10-11 01:17:33.000 1982-09-28 2024-10-11 01:17:33 +4654 4654 4655 465.4 930.8000000000001 4654 1982-09-29 2024-10-11 01:17:34.000 1982-09-29 2024-10-11 01:17:34 +4655 4655 4656 465.5 931 4655 1982-09-30 2024-10-11 01:17:35.000 1982-09-30 2024-10-11 01:17:35 +4656 4656 4657 465.6 931.2 4656 1982-10-01 2024-10-11 01:17:36.000 1982-10-01 2024-10-11 01:17:36 +4657 4657 4658 465.7 931.4000000000001 4657 1982-10-02 2024-10-11 01:17:37.000 1982-10-02 2024-10-11 01:17:37 +4658 4658 4659 465.8 931.6 4658 1982-10-03 2024-10-11 01:17:38.000 1982-10-03 2024-10-11 01:17:38 +4659 4659 4660 465.9 931.8000000000001 4659 1982-10-04 2024-10-11 01:17:39.000 1982-10-04 2024-10-11 01:17:39 +4660 4660 4661 466 932 4660 1982-10-05 2024-10-11 01:17:40.000 1982-10-05 2024-10-11 01:17:40 +4661 4661 4662 466.1 932.2 4661 1982-10-06 2024-10-11 01:17:41.000 1982-10-06 2024-10-11 01:17:41 +4662 4662 4663 466.2 932.4000000000001 4662 1982-10-07 2024-10-11 01:17:42.000 1982-10-07 2024-10-11 01:17:42 +4663 4663 4664 466.3 932.6 4663 1982-10-08 2024-10-11 01:17:43.000 1982-10-08 2024-10-11 01:17:43 +4664 4664 4665 466.4 932.8000000000001 4664 1982-10-09 2024-10-11 01:17:44.000 1982-10-09 2024-10-11 01:17:44 +4665 4665 4666 466.5 933 4665 1982-10-10 2024-10-11 01:17:45.000 1982-10-10 2024-10-11 01:17:45 +4666 4666 4667 466.6 933.2 4666 1982-10-11 2024-10-11 01:17:46.000 1982-10-11 2024-10-11 01:17:46 +4667 4667 4668 466.7 933.4000000000001 4667 1982-10-12 2024-10-11 01:17:47.000 1982-10-12 2024-10-11 01:17:47 +4668 4668 4669 466.8 933.6 4668 1982-10-13 2024-10-11 01:17:48.000 1982-10-13 2024-10-11 01:17:48 +4669 4669 4670 466.9 933.8000000000001 4669 1982-10-14 2024-10-11 01:17:49.000 1982-10-14 2024-10-11 01:17:49 +4670 4670 4671 467 934 4670 1982-10-15 2024-10-11 01:17:50.000 1982-10-15 2024-10-11 01:17:50 +4671 4671 4672 467.1 934.2 4671 1982-10-16 2024-10-11 01:17:51.000 1982-10-16 2024-10-11 01:17:51 +4672 4672 4673 467.2 934.4000000000001 4672 1982-10-17 2024-10-11 01:17:52.000 1982-10-17 2024-10-11 01:17:52 +4673 4673 4674 467.3 934.6 4673 1982-10-18 2024-10-11 01:17:53.000 1982-10-18 2024-10-11 01:17:53 +4674 4674 4675 467.4 934.8000000000001 4674 1982-10-19 2024-10-11 01:17:54.000 1982-10-19 2024-10-11 01:17:54 +4675 4675 4676 467.5 935 4675 1982-10-20 2024-10-11 01:17:55.000 1982-10-20 2024-10-11 01:17:55 +4676 4676 4677 467.6 935.2 4676 1982-10-21 2024-10-11 01:17:56.000 1982-10-21 2024-10-11 01:17:56 +4677 4677 4678 467.7 935.4000000000001 4677 1982-10-22 2024-10-11 01:17:57.000 1982-10-22 2024-10-11 01:17:57 +4678 4678 4679 467.8 935.6 4678 1982-10-23 2024-10-11 01:17:58.000 1982-10-23 2024-10-11 01:17:58 +4679 4679 4680 467.9 935.8000000000001 4679 1982-10-24 2024-10-11 01:17:59.000 1982-10-24 2024-10-11 01:17:59 +4680 4680 4681 468 936 4680 1982-10-25 2024-10-11 01:18:00.000 1982-10-25 2024-10-11 01:18:00 +4681 4681 4682 468.1 936.2 4681 1982-10-26 2024-10-11 01:18:01.000 1982-10-26 2024-10-11 01:18:01 +4682 4682 4683 468.2 936.4000000000001 4682 1982-10-27 2024-10-11 01:18:02.000 1982-10-27 2024-10-11 01:18:02 +4683 4683 4684 468.3 936.6 4683 1982-10-28 2024-10-11 01:18:03.000 1982-10-28 2024-10-11 01:18:03 +4684 4684 4685 468.4 936.8000000000001 4684 1982-10-29 2024-10-11 01:18:04.000 1982-10-29 2024-10-11 01:18:04 +4685 4685 4686 468.5 937 4685 1982-10-30 2024-10-11 01:18:05.000 1982-10-30 2024-10-11 01:18:05 +4686 4686 4687 468.6 937.2 4686 1982-10-31 2024-10-11 01:18:06.000 1982-10-31 2024-10-11 01:18:06 +4687 4687 4688 468.7 937.4000000000001 4687 1982-11-01 2024-10-11 01:18:07.000 1982-11-01 2024-10-11 01:18:07 +4688 4688 4689 468.8 937.6 4688 1982-11-02 2024-10-11 01:18:08.000 1982-11-02 2024-10-11 01:18:08 +4689 4689 4690 468.9 937.8000000000001 4689 1982-11-03 2024-10-11 01:18:09.000 1982-11-03 2024-10-11 01:18:09 +4690 4690 4691 469 938 4690 1982-11-04 2024-10-11 01:18:10.000 1982-11-04 2024-10-11 01:18:10 +4691 4691 4692 469.1 938.2 4691 1982-11-05 2024-10-11 01:18:11.000 1982-11-05 2024-10-11 01:18:11 +4692 4692 4693 469.2 938.4000000000001 4692 1982-11-06 2024-10-11 01:18:12.000 1982-11-06 2024-10-11 01:18:12 +4693 4693 4694 469.3 938.6 4693 1982-11-07 2024-10-11 01:18:13.000 1982-11-07 2024-10-11 01:18:13 +4694 4694 4695 469.4 938.8000000000001 4694 1982-11-08 2024-10-11 01:18:14.000 1982-11-08 2024-10-11 01:18:14 +4695 4695 4696 469.5 939 4695 1982-11-09 2024-10-11 01:18:15.000 1982-11-09 2024-10-11 01:18:15 +4696 4696 4697 469.6 939.2 4696 1982-11-10 2024-10-11 01:18:16.000 1982-11-10 2024-10-11 01:18:16 +4697 4697 4698 469.7 939.4000000000001 4697 1982-11-11 2024-10-11 01:18:17.000 1982-11-11 2024-10-11 01:18:17 +4698 4698 4699 469.8 939.6 4698 1982-11-12 2024-10-11 01:18:18.000 1982-11-12 2024-10-11 01:18:18 +4699 4699 4700 469.9 939.8000000000001 4699 1982-11-13 2024-10-11 01:18:19.000 1982-11-13 2024-10-11 01:18:19 +4700 4700 4701 470 940 4700 1982-11-14 2024-10-11 01:18:20.000 1982-11-14 2024-10-11 01:18:20 +4701 4701 4702 470.1 940.2 4701 1982-11-15 2024-10-11 01:18:21.000 1982-11-15 2024-10-11 01:18:21 +4702 4702 4703 470.2 940.4000000000001 4702 1982-11-16 2024-10-11 01:18:22.000 1982-11-16 2024-10-11 01:18:22 +4703 4703 4704 470.3 940.6 4703 1982-11-17 2024-10-11 01:18:23.000 1982-11-17 2024-10-11 01:18:23 +4704 4704 4705 470.4 940.8000000000001 4704 1982-11-18 2024-10-11 01:18:24.000 1982-11-18 2024-10-11 01:18:24 +4705 4705 4706 470.5 941 4705 1982-11-19 2024-10-11 01:18:25.000 1982-11-19 2024-10-11 01:18:25 +4706 4706 4707 470.6 941.2 4706 1982-11-20 2024-10-11 01:18:26.000 1982-11-20 2024-10-11 01:18:26 +4707 4707 4708 470.7 941.4000000000001 4707 1982-11-21 2024-10-11 01:18:27.000 1982-11-21 2024-10-11 01:18:27 +4708 4708 4709 470.8 941.6 4708 1982-11-22 2024-10-11 01:18:28.000 1982-11-22 2024-10-11 01:18:28 +4709 4709 4710 470.9 941.8000000000001 4709 1982-11-23 2024-10-11 01:18:29.000 1982-11-23 2024-10-11 01:18:29 +4710 4710 4711 471 942 4710 1982-11-24 2024-10-11 01:18:30.000 1982-11-24 2024-10-11 01:18:30 +4711 4711 4712 471.1 942.2 4711 1982-11-25 2024-10-11 01:18:31.000 1982-11-25 2024-10-11 01:18:31 +4712 4712 4713 471.2 942.4000000000001 4712 1982-11-26 2024-10-11 01:18:32.000 1982-11-26 2024-10-11 01:18:32 +4713 4713 4714 471.3 942.6 4713 1982-11-27 2024-10-11 01:18:33.000 1982-11-27 2024-10-11 01:18:33 +4714 4714 4715 471.4 942.8000000000001 4714 1982-11-28 2024-10-11 01:18:34.000 1982-11-28 2024-10-11 01:18:34 +4715 4715 4716 471.5 943 4715 1982-11-29 2024-10-11 01:18:35.000 1982-11-29 2024-10-11 01:18:35 +4716 4716 4717 471.6 943.2 4716 1982-11-30 2024-10-11 01:18:36.000 1982-11-30 2024-10-11 01:18:36 +4717 4717 4718 471.7 943.4000000000001 4717 1982-12-01 2024-10-11 01:18:37.000 1982-12-01 2024-10-11 01:18:37 +4718 4718 4719 471.8 943.6 4718 1982-12-02 2024-10-11 01:18:38.000 1982-12-02 2024-10-11 01:18:38 +4719 4719 4720 471.9 943.8000000000001 4719 1982-12-03 2024-10-11 01:18:39.000 1982-12-03 2024-10-11 01:18:39 +4720 4720 4721 472 944 4720 1982-12-04 2024-10-11 01:18:40.000 1982-12-04 2024-10-11 01:18:40 +4721 4721 4722 472.1 944.2 4721 1982-12-05 2024-10-11 01:18:41.000 1982-12-05 2024-10-11 01:18:41 +4722 4722 4723 472.2 944.4000000000001 4722 1982-12-06 2024-10-11 01:18:42.000 1982-12-06 2024-10-11 01:18:42 +4723 4723 4724 472.3 944.6 4723 1982-12-07 2024-10-11 01:18:43.000 1982-12-07 2024-10-11 01:18:43 +4724 4724 4725 472.4 944.8000000000001 4724 1982-12-08 2024-10-11 01:18:44.000 1982-12-08 2024-10-11 01:18:44 +4725 4725 4726 472.5 945 4725 1982-12-09 2024-10-11 01:18:45.000 1982-12-09 2024-10-11 01:18:45 +4726 4726 4727 472.6 945.2 4726 1982-12-10 2024-10-11 01:18:46.000 1982-12-10 2024-10-11 01:18:46 +4727 4727 4728 472.7 945.4000000000001 4727 1982-12-11 2024-10-11 01:18:47.000 1982-12-11 2024-10-11 01:18:47 +4728 4728 4729 472.8 945.6 4728 1982-12-12 2024-10-11 01:18:48.000 1982-12-12 2024-10-11 01:18:48 +4729 4729 4730 472.9 945.8000000000001 4729 1982-12-13 2024-10-11 01:18:49.000 1982-12-13 2024-10-11 01:18:49 +4730 4730 4731 473 946 4730 1982-12-14 2024-10-11 01:18:50.000 1982-12-14 2024-10-11 01:18:50 +4731 4731 4732 473.1 946.2 4731 1982-12-15 2024-10-11 01:18:51.000 1982-12-15 2024-10-11 01:18:51 +4732 4732 4733 473.2 946.4000000000001 4732 1982-12-16 2024-10-11 01:18:52.000 1982-12-16 2024-10-11 01:18:52 +4733 4733 4734 473.3 946.6 4733 1982-12-17 2024-10-11 01:18:53.000 1982-12-17 2024-10-11 01:18:53 +4734 4734 4735 473.4 946.8000000000001 4734 1982-12-18 2024-10-11 01:18:54.000 1982-12-18 2024-10-11 01:18:54 +4735 4735 4736 473.5 947 4735 1982-12-19 2024-10-11 01:18:55.000 1982-12-19 2024-10-11 01:18:55 +4736 4736 4737 473.6 947.2 4736 1982-12-20 2024-10-11 01:18:56.000 1982-12-20 2024-10-11 01:18:56 +4737 4737 4738 473.7 947.4000000000001 4737 1982-12-21 2024-10-11 01:18:57.000 1982-12-21 2024-10-11 01:18:57 +4738 4738 4739 473.8 947.6 4738 1982-12-22 2024-10-11 01:18:58.000 1982-12-22 2024-10-11 01:18:58 +4739 4739 4740 473.9 947.8000000000001 4739 1982-12-23 2024-10-11 01:18:59.000 1982-12-23 2024-10-11 01:18:59 +4740 4740 4741 474 948 4740 1982-12-24 2024-10-11 01:19:00.000 1982-12-24 2024-10-11 01:19:00 +4741 4741 4742 474.1 948.2 4741 1982-12-25 2024-10-11 01:19:01.000 1982-12-25 2024-10-11 01:19:01 +4742 4742 4743 474.2 948.4000000000001 4742 1982-12-26 2024-10-11 01:19:02.000 1982-12-26 2024-10-11 01:19:02 +4743 4743 4744 474.3 948.6 4743 1982-12-27 2024-10-11 01:19:03.000 1982-12-27 2024-10-11 01:19:03 +4744 4744 4745 474.4 948.8000000000001 4744 1982-12-28 2024-10-11 01:19:04.000 1982-12-28 2024-10-11 01:19:04 +4745 4745 4746 474.5 949 4745 1982-12-29 2024-10-11 01:19:05.000 1982-12-29 2024-10-11 01:19:05 +4746 4746 4747 474.6 949.2 4746 1982-12-30 2024-10-11 01:19:06.000 1982-12-30 2024-10-11 01:19:06 +4747 4747 4748 474.7 949.4000000000001 4747 1982-12-31 2024-10-11 01:19:07.000 1982-12-31 2024-10-11 01:19:07 +4748 4748 4749 474.8 949.6 4748 1983-01-01 2024-10-11 01:19:08.000 1983-01-01 2024-10-11 01:19:08 +4749 4749 4750 474.9 949.8000000000001 4749 1983-01-02 2024-10-11 01:19:09.000 1983-01-02 2024-10-11 01:19:09 +4750 4750 4751 475 950 4750 1983-01-03 2024-10-11 01:19:10.000 1983-01-03 2024-10-11 01:19:10 +4751 4751 4752 475.1 950.2 4751 1983-01-04 2024-10-11 01:19:11.000 1983-01-04 2024-10-11 01:19:11 +4752 4752 4753 475.2 950.4000000000001 4752 1983-01-05 2024-10-11 01:19:12.000 1983-01-05 2024-10-11 01:19:12 +4753 4753 4754 475.3 950.6 4753 1983-01-06 2024-10-11 01:19:13.000 1983-01-06 2024-10-11 01:19:13 +4754 4754 4755 475.4 950.8000000000001 4754 1983-01-07 2024-10-11 01:19:14.000 1983-01-07 2024-10-11 01:19:14 +4755 4755 4756 475.5 951 4755 1983-01-08 2024-10-11 01:19:15.000 1983-01-08 2024-10-11 01:19:15 +4756 4756 4757 475.6 951.2 4756 1983-01-09 2024-10-11 01:19:16.000 1983-01-09 2024-10-11 01:19:16 +4757 4757 4758 475.7 951.4000000000001 4757 1983-01-10 2024-10-11 01:19:17.000 1983-01-10 2024-10-11 01:19:17 +4758 4758 4759 475.8 951.6 4758 1983-01-11 2024-10-11 01:19:18.000 1983-01-11 2024-10-11 01:19:18 +4759 4759 4760 475.9 951.8000000000001 4759 1983-01-12 2024-10-11 01:19:19.000 1983-01-12 2024-10-11 01:19:19 +4760 4760 4761 476 952 4760 1983-01-13 2024-10-11 01:19:20.000 1983-01-13 2024-10-11 01:19:20 +4761 4761 4762 476.1 952.2 4761 1983-01-14 2024-10-11 01:19:21.000 1983-01-14 2024-10-11 01:19:21 +4762 4762 4763 476.2 952.4000000000001 4762 1983-01-15 2024-10-11 01:19:22.000 1983-01-15 2024-10-11 01:19:22 +4763 4763 4764 476.3 952.6 4763 1983-01-16 2024-10-11 01:19:23.000 1983-01-16 2024-10-11 01:19:23 +4764 4764 4765 476.4 952.8000000000001 4764 1983-01-17 2024-10-11 01:19:24.000 1983-01-17 2024-10-11 01:19:24 +4765 4765 4766 476.5 953 4765 1983-01-18 2024-10-11 01:19:25.000 1983-01-18 2024-10-11 01:19:25 +4766 4766 4767 476.6 953.2 4766 1983-01-19 2024-10-11 01:19:26.000 1983-01-19 2024-10-11 01:19:26 +4767 4767 4768 476.7 953.4000000000001 4767 1983-01-20 2024-10-11 01:19:27.000 1983-01-20 2024-10-11 01:19:27 +4768 4768 4769 476.8 953.6 4768 1983-01-21 2024-10-11 01:19:28.000 1983-01-21 2024-10-11 01:19:28 +4769 4769 4770 476.9 953.8000000000001 4769 1983-01-22 2024-10-11 01:19:29.000 1983-01-22 2024-10-11 01:19:29 +4770 4770 4771 477 954 4770 1983-01-23 2024-10-11 01:19:30.000 1983-01-23 2024-10-11 01:19:30 +4771 4771 4772 477.1 954.2 4771 1983-01-24 2024-10-11 01:19:31.000 1983-01-24 2024-10-11 01:19:31 +4772 4772 4773 477.2 954.4000000000001 4772 1983-01-25 2024-10-11 01:19:32.000 1983-01-25 2024-10-11 01:19:32 +4773 4773 4774 477.3 954.6 4773 1983-01-26 2024-10-11 01:19:33.000 1983-01-26 2024-10-11 01:19:33 +4774 4774 4775 477.4 954.8000000000001 4774 1983-01-27 2024-10-11 01:19:34.000 1983-01-27 2024-10-11 01:19:34 +4775 4775 4776 477.5 955 4775 1983-01-28 2024-10-11 01:19:35.000 1983-01-28 2024-10-11 01:19:35 +4776 4776 4777 477.6 955.2 4776 1983-01-29 2024-10-11 01:19:36.000 1983-01-29 2024-10-11 01:19:36 +4777 4777 4778 477.7 955.4000000000001 4777 1983-01-30 2024-10-11 01:19:37.000 1983-01-30 2024-10-11 01:19:37 +4778 4778 4779 477.8 955.6 4778 1983-01-31 2024-10-11 01:19:38.000 1983-01-31 2024-10-11 01:19:38 +4779 4779 4780 477.9 955.8000000000001 4779 1983-02-01 2024-10-11 01:19:39.000 1983-02-01 2024-10-11 01:19:39 +4780 4780 4781 478 956 4780 1983-02-02 2024-10-11 01:19:40.000 1983-02-02 2024-10-11 01:19:40 +4781 4781 4782 478.1 956.2 4781 1983-02-03 2024-10-11 01:19:41.000 1983-02-03 2024-10-11 01:19:41 +4782 4782 4783 478.2 956.4000000000001 4782 1983-02-04 2024-10-11 01:19:42.000 1983-02-04 2024-10-11 01:19:42 +4783 4783 4784 478.3 956.6 4783 1983-02-05 2024-10-11 01:19:43.000 1983-02-05 2024-10-11 01:19:43 +4784 4784 4785 478.4 956.8000000000001 4784 1983-02-06 2024-10-11 01:19:44.000 1983-02-06 2024-10-11 01:19:44 +4785 4785 4786 478.5 957 4785 1983-02-07 2024-10-11 01:19:45.000 1983-02-07 2024-10-11 01:19:45 +4786 4786 4787 478.6 957.2 4786 1983-02-08 2024-10-11 01:19:46.000 1983-02-08 2024-10-11 01:19:46 +4787 4787 4788 478.7 957.4000000000001 4787 1983-02-09 2024-10-11 01:19:47.000 1983-02-09 2024-10-11 01:19:47 +4788 4788 4789 478.8 957.6 4788 1983-02-10 2024-10-11 01:19:48.000 1983-02-10 2024-10-11 01:19:48 +4789 4789 4790 478.9 957.8000000000001 4789 1983-02-11 2024-10-11 01:19:49.000 1983-02-11 2024-10-11 01:19:49 +4790 4790 4791 479 958 4790 1983-02-12 2024-10-11 01:19:50.000 1983-02-12 2024-10-11 01:19:50 +4791 4791 4792 479.1 958.2 4791 1983-02-13 2024-10-11 01:19:51.000 1983-02-13 2024-10-11 01:19:51 +4792 4792 4793 479.2 958.4000000000001 4792 1983-02-14 2024-10-11 01:19:52.000 1983-02-14 2024-10-11 01:19:52 +4793 4793 4794 479.3 958.6 4793 1983-02-15 2024-10-11 01:19:53.000 1983-02-15 2024-10-11 01:19:53 +4794 4794 4795 479.4 958.8000000000001 4794 1983-02-16 2024-10-11 01:19:54.000 1983-02-16 2024-10-11 01:19:54 +4795 4795 4796 479.5 959 4795 1983-02-17 2024-10-11 01:19:55.000 1983-02-17 2024-10-11 01:19:55 +4796 4796 4797 479.6 959.2 4796 1983-02-18 2024-10-11 01:19:56.000 1983-02-18 2024-10-11 01:19:56 +4797 4797 4798 479.7 959.4000000000001 4797 1983-02-19 2024-10-11 01:19:57.000 1983-02-19 2024-10-11 01:19:57 +4798 4798 4799 479.8 959.6 4798 1983-02-20 2024-10-11 01:19:58.000 1983-02-20 2024-10-11 01:19:58 +4799 4799 4800 479.9 959.8000000000001 4799 1983-02-21 2024-10-11 01:19:59.000 1983-02-21 2024-10-11 01:19:59 +4800 4800 4801 480 960 4800 1983-02-22 2024-10-11 01:20:00.000 1983-02-22 2024-10-11 01:20:00 +4801 4801 4802 480.1 960.2 4801 1983-02-23 2024-10-11 01:20:01.000 1983-02-23 2024-10-11 01:20:01 +4802 4802 4803 480.2 960.4000000000001 4802 1983-02-24 2024-10-11 01:20:02.000 1983-02-24 2024-10-11 01:20:02 +4803 4803 4804 480.3 960.6 4803 1983-02-25 2024-10-11 01:20:03.000 1983-02-25 2024-10-11 01:20:03 +4804 4804 4805 480.4 960.8000000000001 4804 1983-02-26 2024-10-11 01:20:04.000 1983-02-26 2024-10-11 01:20:04 +4805 4805 4806 480.5 961 4805 1983-02-27 2024-10-11 01:20:05.000 1983-02-27 2024-10-11 01:20:05 +4806 4806 4807 480.6 961.2 4806 1983-02-28 2024-10-11 01:20:06.000 1983-02-28 2024-10-11 01:20:06 +4807 4807 4808 480.7 961.4000000000001 4807 1983-03-01 2024-10-11 01:20:07.000 1983-03-01 2024-10-11 01:20:07 +4808 4808 4809 480.8 961.6 4808 1983-03-02 2024-10-11 01:20:08.000 1983-03-02 2024-10-11 01:20:08 +4809 4809 4810 480.9 961.8000000000001 4809 1983-03-03 2024-10-11 01:20:09.000 1983-03-03 2024-10-11 01:20:09 +4810 4810 4811 481 962 4810 1983-03-04 2024-10-11 01:20:10.000 1983-03-04 2024-10-11 01:20:10 +4811 4811 4812 481.1 962.2 4811 1983-03-05 2024-10-11 01:20:11.000 1983-03-05 2024-10-11 01:20:11 +4812 4812 4813 481.2 962.4000000000001 4812 1983-03-06 2024-10-11 01:20:12.000 1983-03-06 2024-10-11 01:20:12 +4813 4813 4814 481.3 962.6 4813 1983-03-07 2024-10-11 01:20:13.000 1983-03-07 2024-10-11 01:20:13 +4814 4814 4815 481.4 962.8000000000001 4814 1983-03-08 2024-10-11 01:20:14.000 1983-03-08 2024-10-11 01:20:14 +4815 4815 4816 481.5 963 4815 1983-03-09 2024-10-11 01:20:15.000 1983-03-09 2024-10-11 01:20:15 +4816 4816 4817 481.6 963.2 4816 1983-03-10 2024-10-11 01:20:16.000 1983-03-10 2024-10-11 01:20:16 +4817 4817 4818 481.7 963.4000000000001 4817 1983-03-11 2024-10-11 01:20:17.000 1983-03-11 2024-10-11 01:20:17 +4818 4818 4819 481.8 963.6 4818 1983-03-12 2024-10-11 01:20:18.000 1983-03-12 2024-10-11 01:20:18 +4819 4819 4820 481.9 963.8000000000001 4819 1983-03-13 2024-10-11 01:20:19.000 1983-03-13 2024-10-11 01:20:19 +4820 4820 4821 482 964 4820 1983-03-14 2024-10-11 01:20:20.000 1983-03-14 2024-10-11 01:20:20 +4821 4821 4822 482.1 964.2 4821 1983-03-15 2024-10-11 01:20:21.000 1983-03-15 2024-10-11 01:20:21 +4822 4822 4823 482.2 964.4000000000001 4822 1983-03-16 2024-10-11 01:20:22.000 1983-03-16 2024-10-11 01:20:22 +4823 4823 4824 482.3 964.6 4823 1983-03-17 2024-10-11 01:20:23.000 1983-03-17 2024-10-11 01:20:23 +4824 4824 4825 482.4 964.8000000000001 4824 1983-03-18 2024-10-11 01:20:24.000 1983-03-18 2024-10-11 01:20:24 +4825 4825 4826 482.5 965 4825 1983-03-19 2024-10-11 01:20:25.000 1983-03-19 2024-10-11 01:20:25 +4826 4826 4827 482.6 965.2 4826 1983-03-20 2024-10-11 01:20:26.000 1983-03-20 2024-10-11 01:20:26 +4827 4827 4828 482.7 965.4000000000001 4827 1983-03-21 2024-10-11 01:20:27.000 1983-03-21 2024-10-11 01:20:27 +4828 4828 4829 482.8 965.6 4828 1983-03-22 2024-10-11 01:20:28.000 1983-03-22 2024-10-11 01:20:28 +4829 4829 4830 482.9 965.8000000000001 4829 1983-03-23 2024-10-11 01:20:29.000 1983-03-23 2024-10-11 01:20:29 +4830 4830 4831 483 966 4830 1983-03-24 2024-10-11 01:20:30.000 1983-03-24 2024-10-11 01:20:30 +4831 4831 4832 483.1 966.2 4831 1983-03-25 2024-10-11 01:20:31.000 1983-03-25 2024-10-11 01:20:31 +4832 4832 4833 483.2 966.4000000000001 4832 1983-03-26 2024-10-11 01:20:32.000 1983-03-26 2024-10-11 01:20:32 +4833 4833 4834 483.3 966.6 4833 1983-03-27 2024-10-11 01:20:33.000 1983-03-27 2024-10-11 01:20:33 +4834 4834 4835 483.4 966.8000000000001 4834 1983-03-28 2024-10-11 01:20:34.000 1983-03-28 2024-10-11 01:20:34 +4835 4835 4836 483.5 967 4835 1983-03-29 2024-10-11 01:20:35.000 1983-03-29 2024-10-11 01:20:35 +4836 4836 4837 483.6 967.2 4836 1983-03-30 2024-10-11 01:20:36.000 1983-03-30 2024-10-11 01:20:36 +4837 4837 4838 483.7 967.4000000000001 4837 1983-03-31 2024-10-11 01:20:37.000 1983-03-31 2024-10-11 01:20:37 +4838 4838 4839 483.8 967.6 4838 1983-04-01 2024-10-11 01:20:38.000 1983-04-01 2024-10-11 01:20:38 +4839 4839 4840 483.9 967.8000000000001 4839 1983-04-02 2024-10-11 01:20:39.000 1983-04-02 2024-10-11 01:20:39 +4840 4840 4841 484 968 4840 1983-04-03 2024-10-11 01:20:40.000 1983-04-03 2024-10-11 01:20:40 +4841 4841 4842 484.1 968.2 4841 1983-04-04 2024-10-11 01:20:41.000 1983-04-04 2024-10-11 01:20:41 +4842 4842 4843 484.2 968.4000000000001 4842 1983-04-05 2024-10-11 01:20:42.000 1983-04-05 2024-10-11 01:20:42 +4843 4843 4844 484.3 968.6 4843 1983-04-06 2024-10-11 01:20:43.000 1983-04-06 2024-10-11 01:20:43 +4844 4844 4845 484.4 968.8000000000001 4844 1983-04-07 2024-10-11 01:20:44.000 1983-04-07 2024-10-11 01:20:44 +4845 4845 4846 484.5 969 4845 1983-04-08 2024-10-11 01:20:45.000 1983-04-08 2024-10-11 01:20:45 +4846 4846 4847 484.6 969.2 4846 1983-04-09 2024-10-11 01:20:46.000 1983-04-09 2024-10-11 01:20:46 +4847 4847 4848 484.7 969.4000000000001 4847 1983-04-10 2024-10-11 01:20:47.000 1983-04-10 2024-10-11 01:20:47 +4848 4848 4849 484.8 969.6 4848 1983-04-11 2024-10-11 01:20:48.000 1983-04-11 2024-10-11 01:20:48 +4849 4849 4850 484.9 969.8000000000001 4849 1983-04-12 2024-10-11 01:20:49.000 1983-04-12 2024-10-11 01:20:49 +4850 4850 4851 485 970 4850 1983-04-13 2024-10-11 01:20:50.000 1983-04-13 2024-10-11 01:20:50 +4851 4851 4852 485.1 970.2 4851 1983-04-14 2024-10-11 01:20:51.000 1983-04-14 2024-10-11 01:20:51 +4852 4852 4853 485.2 970.4000000000001 4852 1983-04-15 2024-10-11 01:20:52.000 1983-04-15 2024-10-11 01:20:52 +4853 4853 4854 485.3 970.6 4853 1983-04-16 2024-10-11 01:20:53.000 1983-04-16 2024-10-11 01:20:53 +4854 4854 4855 485.4 970.8000000000001 4854 1983-04-17 2024-10-11 01:20:54.000 1983-04-17 2024-10-11 01:20:54 +4855 4855 4856 485.5 971 4855 1983-04-18 2024-10-11 01:20:55.000 1983-04-18 2024-10-11 01:20:55 +4856 4856 4857 485.6 971.2 4856 1983-04-19 2024-10-11 01:20:56.000 1983-04-19 2024-10-11 01:20:56 +4857 4857 4858 485.7 971.4000000000001 4857 1983-04-20 2024-10-11 01:20:57.000 1983-04-20 2024-10-11 01:20:57 +4858 4858 4859 485.8 971.6 4858 1983-04-21 2024-10-11 01:20:58.000 1983-04-21 2024-10-11 01:20:58 +4859 4859 4860 485.9 971.8000000000001 4859 1983-04-22 2024-10-11 01:20:59.000 1983-04-22 2024-10-11 01:20:59 +4860 4860 4861 486 972 4860 1983-04-23 2024-10-11 01:21:00.000 1983-04-23 2024-10-11 01:21:00 +4861 4861 4862 486.1 972.2 4861 1983-04-24 2024-10-11 01:21:01.000 1983-04-24 2024-10-11 01:21:01 +4862 4862 4863 486.2 972.4000000000001 4862 1983-04-25 2024-10-11 01:21:02.000 1983-04-25 2024-10-11 01:21:02 +4863 4863 4864 486.3 972.6 4863 1983-04-26 2024-10-11 01:21:03.000 1983-04-26 2024-10-11 01:21:03 +4864 4864 4865 486.4 972.8000000000001 4864 1983-04-27 2024-10-11 01:21:04.000 1983-04-27 2024-10-11 01:21:04 +4865 4865 4866 486.5 973 4865 1983-04-28 2024-10-11 01:21:05.000 1983-04-28 2024-10-11 01:21:05 +4866 4866 4867 486.6 973.2 4866 1983-04-29 2024-10-11 01:21:06.000 1983-04-29 2024-10-11 01:21:06 +4867 4867 4868 486.7 973.4000000000001 4867 1983-04-30 2024-10-11 01:21:07.000 1983-04-30 2024-10-11 01:21:07 +4868 4868 4869 486.8 973.6 4868 1983-05-01 2024-10-11 01:21:08.000 1983-05-01 2024-10-11 01:21:08 +4869 4869 4870 486.9 973.8000000000001 4869 1983-05-02 2024-10-11 01:21:09.000 1983-05-02 2024-10-11 01:21:09 +4870 4870 4871 487 974 4870 1983-05-03 2024-10-11 01:21:10.000 1983-05-03 2024-10-11 01:21:10 +4871 4871 4872 487.1 974.2 4871 1983-05-04 2024-10-11 01:21:11.000 1983-05-04 2024-10-11 01:21:11 +4872 4872 4873 487.2 974.4000000000001 4872 1983-05-05 2024-10-11 01:21:12.000 1983-05-05 2024-10-11 01:21:12 +4873 4873 4874 487.3 974.6 4873 1983-05-06 2024-10-11 01:21:13.000 1983-05-06 2024-10-11 01:21:13 +4874 4874 4875 487.4 974.8000000000001 4874 1983-05-07 2024-10-11 01:21:14.000 1983-05-07 2024-10-11 01:21:14 +4875 4875 4876 487.5 975 4875 1983-05-08 2024-10-11 01:21:15.000 1983-05-08 2024-10-11 01:21:15 +4876 4876 4877 487.6 975.2 4876 1983-05-09 2024-10-11 01:21:16.000 1983-05-09 2024-10-11 01:21:16 +4877 4877 4878 487.7 975.4000000000001 4877 1983-05-10 2024-10-11 01:21:17.000 1983-05-10 2024-10-11 01:21:17 +4878 4878 4879 487.8 975.6 4878 1983-05-11 2024-10-11 01:21:18.000 1983-05-11 2024-10-11 01:21:18 +4879 4879 4880 487.9 975.8000000000001 4879 1983-05-12 2024-10-11 01:21:19.000 1983-05-12 2024-10-11 01:21:19 +4880 4880 4881 488 976 4880 1983-05-13 2024-10-11 01:21:20.000 1983-05-13 2024-10-11 01:21:20 +4881 4881 4882 488.1 976.2 4881 1983-05-14 2024-10-11 01:21:21.000 1983-05-14 2024-10-11 01:21:21 +4882 4882 4883 488.2 976.4000000000001 4882 1983-05-15 2024-10-11 01:21:22.000 1983-05-15 2024-10-11 01:21:22 +4883 4883 4884 488.3 976.6 4883 1983-05-16 2024-10-11 01:21:23.000 1983-05-16 2024-10-11 01:21:23 +4884 4884 4885 488.4 976.8000000000001 4884 1983-05-17 2024-10-11 01:21:24.000 1983-05-17 2024-10-11 01:21:24 +4885 4885 4886 488.5 977 4885 1983-05-18 2024-10-11 01:21:25.000 1983-05-18 2024-10-11 01:21:25 +4886 4886 4887 488.6 977.2 4886 1983-05-19 2024-10-11 01:21:26.000 1983-05-19 2024-10-11 01:21:26 +4887 4887 4888 488.7 977.4000000000001 4887 1983-05-20 2024-10-11 01:21:27.000 1983-05-20 2024-10-11 01:21:27 +4888 4888 4889 488.8 977.6 4888 1983-05-21 2024-10-11 01:21:28.000 1983-05-21 2024-10-11 01:21:28 +4889 4889 4890 488.9 977.8000000000001 4889 1983-05-22 2024-10-11 01:21:29.000 1983-05-22 2024-10-11 01:21:29 +4890 4890 4891 489 978 4890 1983-05-23 2024-10-11 01:21:30.000 1983-05-23 2024-10-11 01:21:30 +4891 4891 4892 489.1 978.2 4891 1983-05-24 2024-10-11 01:21:31.000 1983-05-24 2024-10-11 01:21:31 +4892 4892 4893 489.2 978.4000000000001 4892 1983-05-25 2024-10-11 01:21:32.000 1983-05-25 2024-10-11 01:21:32 +4893 4893 4894 489.3 978.6 4893 1983-05-26 2024-10-11 01:21:33.000 1983-05-26 2024-10-11 01:21:33 +4894 4894 4895 489.4 978.8000000000001 4894 1983-05-27 2024-10-11 01:21:34.000 1983-05-27 2024-10-11 01:21:34 +4895 4895 4896 489.5 979 4895 1983-05-28 2024-10-11 01:21:35.000 1983-05-28 2024-10-11 01:21:35 +4896 4896 4897 489.6 979.2 4896 1983-05-29 2024-10-11 01:21:36.000 1983-05-29 2024-10-11 01:21:36 +4897 4897 4898 489.7 979.4000000000001 4897 1983-05-30 2024-10-11 01:21:37.000 1983-05-30 2024-10-11 01:21:37 +4898 4898 4899 489.8 979.6 4898 1983-05-31 2024-10-11 01:21:38.000 1983-05-31 2024-10-11 01:21:38 +4899 4899 4900 489.9 979.8000000000001 4899 1983-06-01 2024-10-11 01:21:39.000 1983-06-01 2024-10-11 01:21:39 +4900 4900 4901 490 980 4900 1983-06-02 2024-10-11 01:21:40.000 1983-06-02 2024-10-11 01:21:40 +4901 4901 4902 490.1 980.2 4901 1983-06-03 2024-10-11 01:21:41.000 1983-06-03 2024-10-11 01:21:41 +4902 4902 4903 490.2 980.4000000000001 4902 1983-06-04 2024-10-11 01:21:42.000 1983-06-04 2024-10-11 01:21:42 +4903 4903 4904 490.3 980.6 4903 1983-06-05 2024-10-11 01:21:43.000 1983-06-05 2024-10-11 01:21:43 +4904 4904 4905 490.4 980.8000000000001 4904 1983-06-06 2024-10-11 01:21:44.000 1983-06-06 2024-10-11 01:21:44 +4905 4905 4906 490.5 981 4905 1983-06-07 2024-10-11 01:21:45.000 1983-06-07 2024-10-11 01:21:45 +4906 4906 4907 490.6 981.2 4906 1983-06-08 2024-10-11 01:21:46.000 1983-06-08 2024-10-11 01:21:46 +4907 4907 4908 490.7 981.4000000000001 4907 1983-06-09 2024-10-11 01:21:47.000 1983-06-09 2024-10-11 01:21:47 +4908 4908 4909 490.8 981.6 4908 1983-06-10 2024-10-11 01:21:48.000 1983-06-10 2024-10-11 01:21:48 +4909 4909 4910 490.9 981.8000000000001 4909 1983-06-11 2024-10-11 01:21:49.000 1983-06-11 2024-10-11 01:21:49 +4910 4910 4911 491 982 4910 1983-06-12 2024-10-11 01:21:50.000 1983-06-12 2024-10-11 01:21:50 +4911 4911 4912 491.1 982.2 4911 1983-06-13 2024-10-11 01:21:51.000 1983-06-13 2024-10-11 01:21:51 +4912 4912 4913 491.2 982.4000000000001 4912 1983-06-14 2024-10-11 01:21:52.000 1983-06-14 2024-10-11 01:21:52 +4913 4913 4914 491.3 982.6 4913 1983-06-15 2024-10-11 01:21:53.000 1983-06-15 2024-10-11 01:21:53 +4914 4914 4915 491.4 982.8000000000001 4914 1983-06-16 2024-10-11 01:21:54.000 1983-06-16 2024-10-11 01:21:54 +4915 4915 4916 491.5 983 4915 1983-06-17 2024-10-11 01:21:55.000 1983-06-17 2024-10-11 01:21:55 +4916 4916 4917 491.6 983.2 4916 1983-06-18 2024-10-11 01:21:56.000 1983-06-18 2024-10-11 01:21:56 +4917 4917 4918 491.7 983.4000000000001 4917 1983-06-19 2024-10-11 01:21:57.000 1983-06-19 2024-10-11 01:21:57 +4918 4918 4919 491.8 983.6 4918 1983-06-20 2024-10-11 01:21:58.000 1983-06-20 2024-10-11 01:21:58 +4919 4919 4920 491.9 983.8000000000001 4919 1983-06-21 2024-10-11 01:21:59.000 1983-06-21 2024-10-11 01:21:59 +4920 4920 4921 492 984 4920 1983-06-22 2024-10-11 01:22:00.000 1983-06-22 2024-10-11 01:22:00 +4921 4921 4922 492.1 984.2 4921 1983-06-23 2024-10-11 01:22:01.000 1983-06-23 2024-10-11 01:22:01 +4922 4922 4923 492.2 984.4000000000001 4922 1983-06-24 2024-10-11 01:22:02.000 1983-06-24 2024-10-11 01:22:02 +4923 4923 4924 492.3 984.6 4923 1983-06-25 2024-10-11 01:22:03.000 1983-06-25 2024-10-11 01:22:03 +4924 4924 4925 492.4 984.8000000000001 4924 1983-06-26 2024-10-11 01:22:04.000 1983-06-26 2024-10-11 01:22:04 +4925 4925 4926 492.5 985 4925 1983-06-27 2024-10-11 01:22:05.000 1983-06-27 2024-10-11 01:22:05 +4926 4926 4927 492.6 985.2 4926 1983-06-28 2024-10-11 01:22:06.000 1983-06-28 2024-10-11 01:22:06 +4927 4927 4928 492.7 985.4000000000001 4927 1983-06-29 2024-10-11 01:22:07.000 1983-06-29 2024-10-11 01:22:07 +4928 4928 4929 492.8 985.6 4928 1983-06-30 2024-10-11 01:22:08.000 1983-06-30 2024-10-11 01:22:08 +4929 4929 4930 492.9 985.8000000000001 4929 1983-07-01 2024-10-11 01:22:09.000 1983-07-01 2024-10-11 01:22:09 +4930 4930 4931 493 986 4930 1983-07-02 2024-10-11 01:22:10.000 1983-07-02 2024-10-11 01:22:10 +4931 4931 4932 493.1 986.2 4931 1983-07-03 2024-10-11 01:22:11.000 1983-07-03 2024-10-11 01:22:11 +4932 4932 4933 493.2 986.4000000000001 4932 1983-07-04 2024-10-11 01:22:12.000 1983-07-04 2024-10-11 01:22:12 +4933 4933 4934 493.3 986.6 4933 1983-07-05 2024-10-11 01:22:13.000 1983-07-05 2024-10-11 01:22:13 +4934 4934 4935 493.4 986.8000000000001 4934 1983-07-06 2024-10-11 01:22:14.000 1983-07-06 2024-10-11 01:22:14 +4935 4935 4936 493.5 987 4935 1983-07-07 2024-10-11 01:22:15.000 1983-07-07 2024-10-11 01:22:15 +4936 4936 4937 493.6 987.2 4936 1983-07-08 2024-10-11 01:22:16.000 1983-07-08 2024-10-11 01:22:16 +4937 4937 4938 493.7 987.4000000000001 4937 1983-07-09 2024-10-11 01:22:17.000 1983-07-09 2024-10-11 01:22:17 +4938 4938 4939 493.8 987.6 4938 1983-07-10 2024-10-11 01:22:18.000 1983-07-10 2024-10-11 01:22:18 +4939 4939 4940 493.9 987.8000000000001 4939 1983-07-11 2024-10-11 01:22:19.000 1983-07-11 2024-10-11 01:22:19 +4940 4940 4941 494 988 4940 1983-07-12 2024-10-11 01:22:20.000 1983-07-12 2024-10-11 01:22:20 +4941 4941 4942 494.1 988.2 4941 1983-07-13 2024-10-11 01:22:21.000 1983-07-13 2024-10-11 01:22:21 +4942 4942 4943 494.2 988.4000000000001 4942 1983-07-14 2024-10-11 01:22:22.000 1983-07-14 2024-10-11 01:22:22 +4943 4943 4944 494.3 988.6 4943 1983-07-15 2024-10-11 01:22:23.000 1983-07-15 2024-10-11 01:22:23 +4944 4944 4945 494.4 988.8000000000001 4944 1983-07-16 2024-10-11 01:22:24.000 1983-07-16 2024-10-11 01:22:24 +4945 4945 4946 494.5 989 4945 1983-07-17 2024-10-11 01:22:25.000 1983-07-17 2024-10-11 01:22:25 +4946 4946 4947 494.6 989.2 4946 1983-07-18 2024-10-11 01:22:26.000 1983-07-18 2024-10-11 01:22:26 +4947 4947 4948 494.7 989.4000000000001 4947 1983-07-19 2024-10-11 01:22:27.000 1983-07-19 2024-10-11 01:22:27 +4948 4948 4949 494.8 989.6 4948 1983-07-20 2024-10-11 01:22:28.000 1983-07-20 2024-10-11 01:22:28 +4949 4949 4950 494.9 989.8000000000001 4949 1983-07-21 2024-10-11 01:22:29.000 1983-07-21 2024-10-11 01:22:29 +4950 4950 4951 495 990 4950 1983-07-22 2024-10-11 01:22:30.000 1983-07-22 2024-10-11 01:22:30 +4951 4951 4952 495.1 990.2 4951 1983-07-23 2024-10-11 01:22:31.000 1983-07-23 2024-10-11 01:22:31 +4952 4952 4953 495.2 990.4000000000001 4952 1983-07-24 2024-10-11 01:22:32.000 1983-07-24 2024-10-11 01:22:32 +4953 4953 4954 495.3 990.6 4953 1983-07-25 2024-10-11 01:22:33.000 1983-07-25 2024-10-11 01:22:33 +4954 4954 4955 495.4 990.8000000000001 4954 1983-07-26 2024-10-11 01:22:34.000 1983-07-26 2024-10-11 01:22:34 +4955 4955 4956 495.5 991 4955 1983-07-27 2024-10-11 01:22:35.000 1983-07-27 2024-10-11 01:22:35 +4956 4956 4957 495.6 991.2 4956 1983-07-28 2024-10-11 01:22:36.000 1983-07-28 2024-10-11 01:22:36 +4957 4957 4958 495.7 991.4000000000001 4957 1983-07-29 2024-10-11 01:22:37.000 1983-07-29 2024-10-11 01:22:37 +4958 4958 4959 495.8 991.6 4958 1983-07-30 2024-10-11 01:22:38.000 1983-07-30 2024-10-11 01:22:38 +4959 4959 4960 495.9 991.8000000000001 4959 1983-07-31 2024-10-11 01:22:39.000 1983-07-31 2024-10-11 01:22:39 +4960 4960 4961 496 992 4960 1983-08-01 2024-10-11 01:22:40.000 1983-08-01 2024-10-11 01:22:40 +4961 4961 4962 496.1 992.2 4961 1983-08-02 2024-10-11 01:22:41.000 1983-08-02 2024-10-11 01:22:41 +4962 4962 4963 496.2 992.4000000000001 4962 1983-08-03 2024-10-11 01:22:42.000 1983-08-03 2024-10-11 01:22:42 +4963 4963 4964 496.3 992.6 4963 1983-08-04 2024-10-11 01:22:43.000 1983-08-04 2024-10-11 01:22:43 +4964 4964 4965 496.4 992.8000000000001 4964 1983-08-05 2024-10-11 01:22:44.000 1983-08-05 2024-10-11 01:22:44 +4965 4965 4966 496.5 993 4965 1983-08-06 2024-10-11 01:22:45.000 1983-08-06 2024-10-11 01:22:45 +4966 4966 4967 496.6 993.2 4966 1983-08-07 2024-10-11 01:22:46.000 1983-08-07 2024-10-11 01:22:46 +4967 4967 4968 496.7 993.4000000000001 4967 1983-08-08 2024-10-11 01:22:47.000 1983-08-08 2024-10-11 01:22:47 +4968 4968 4969 496.8 993.6 4968 1983-08-09 2024-10-11 01:22:48.000 1983-08-09 2024-10-11 01:22:48 +4969 4969 4970 496.9 993.8000000000001 4969 1983-08-10 2024-10-11 01:22:49.000 1983-08-10 2024-10-11 01:22:49 +4970 4970 4971 497 994 4970 1983-08-11 2024-10-11 01:22:50.000 1983-08-11 2024-10-11 01:22:50 +4971 4971 4972 497.1 994.2 4971 1983-08-12 2024-10-11 01:22:51.000 1983-08-12 2024-10-11 01:22:51 +4972 4972 4973 497.2 994.4000000000001 4972 1983-08-13 2024-10-11 01:22:52.000 1983-08-13 2024-10-11 01:22:52 +4973 4973 4974 497.3 994.6 4973 1983-08-14 2024-10-11 01:22:53.000 1983-08-14 2024-10-11 01:22:53 +4974 4974 4975 497.4 994.8000000000001 4974 1983-08-15 2024-10-11 01:22:54.000 1983-08-15 2024-10-11 01:22:54 +4975 4975 4976 497.5 995 4975 1983-08-16 2024-10-11 01:22:55.000 1983-08-16 2024-10-11 01:22:55 +4976 4976 4977 497.6 995.2 4976 1983-08-17 2024-10-11 01:22:56.000 1983-08-17 2024-10-11 01:22:56 +4977 4977 4978 497.7 995.4000000000001 4977 1983-08-18 2024-10-11 01:22:57.000 1983-08-18 2024-10-11 01:22:57 +4978 4978 4979 497.8 995.6 4978 1983-08-19 2024-10-11 01:22:58.000 1983-08-19 2024-10-11 01:22:58 +4979 4979 4980 497.9 995.8000000000001 4979 1983-08-20 2024-10-11 01:22:59.000 1983-08-20 2024-10-11 01:22:59 +4980 4980 4981 498 996 4980 1983-08-21 2024-10-11 01:23:00.000 1983-08-21 2024-10-11 01:23:00 +4981 4981 4982 498.1 996.2 4981 1983-08-22 2024-10-11 01:23:01.000 1983-08-22 2024-10-11 01:23:01 +4982 4982 4983 498.2 996.4000000000001 4982 1983-08-23 2024-10-11 01:23:02.000 1983-08-23 2024-10-11 01:23:02 +4983 4983 4984 498.3 996.6 4983 1983-08-24 2024-10-11 01:23:03.000 1983-08-24 2024-10-11 01:23:03 +4984 4984 4985 498.4 996.8000000000001 4984 1983-08-25 2024-10-11 01:23:04.000 1983-08-25 2024-10-11 01:23:04 +4985 4985 4986 498.5 997 4985 1983-08-26 2024-10-11 01:23:05.000 1983-08-26 2024-10-11 01:23:05 +4986 4986 4987 498.6 997.2 4986 1983-08-27 2024-10-11 01:23:06.000 1983-08-27 2024-10-11 01:23:06 +4987 4987 4988 498.7 997.4000000000001 4987 1983-08-28 2024-10-11 01:23:07.000 1983-08-28 2024-10-11 01:23:07 +4988 4988 4989 498.8 997.6 4988 1983-08-29 2024-10-11 01:23:08.000 1983-08-29 2024-10-11 01:23:08 +4989 4989 4990 498.9 997.8000000000001 4989 1983-08-30 2024-10-11 01:23:09.000 1983-08-30 2024-10-11 01:23:09 +4990 4990 4991 499 998 4990 1983-08-31 2024-10-11 01:23:10.000 1983-08-31 2024-10-11 01:23:10 +4991 4991 4992 499.1 998.2 4991 1983-09-01 2024-10-11 01:23:11.000 1983-09-01 2024-10-11 01:23:11 +4992 4992 4993 499.2 998.4000000000001 4992 1983-09-02 2024-10-11 01:23:12.000 1983-09-02 2024-10-11 01:23:12 +4993 4993 4994 499.3 998.6 4993 1983-09-03 2024-10-11 01:23:13.000 1983-09-03 2024-10-11 01:23:13 +4994 4994 4995 499.4 998.8000000000001 4994 1983-09-04 2024-10-11 01:23:14.000 1983-09-04 2024-10-11 01:23:14 +4995 4995 4996 499.5 999 4995 1983-09-05 2024-10-11 01:23:15.000 1983-09-05 2024-10-11 01:23:15 +4996 4996 4997 499.6 999.2 4996 1983-09-06 2024-10-11 01:23:16.000 1983-09-06 2024-10-11 01:23:16 +4997 4997 4998 499.7 999.4000000000001 4997 1983-09-07 2024-10-11 01:23:17.000 1983-09-07 2024-10-11 01:23:17 +4998 4998 4999 499.8 999.6 4998 1983-09-08 2024-10-11 01:23:18.000 1983-09-08 2024-10-11 01:23:18 +4999 4999 5000 499.9 999.8000000000001 4999 1983-09-09 2024-10-11 01:23:19.000 1983-09-09 2024-10-11 01:23:19 +5000 5000 5001 500 1000 5000 1983-09-10 2024-10-11 01:23:20.000 1983-09-10 2024-10-11 01:23:20 +5001 5001 5002 500.1 1000.2 5001 1983-09-11 2024-10-11 01:23:21.000 1983-09-11 2024-10-11 01:23:21 +5002 5002 5003 500.2 1000.4000000000001 5002 1983-09-12 2024-10-11 01:23:22.000 1983-09-12 2024-10-11 01:23:22 +5003 5003 5004 500.3 1000.6 5003 1983-09-13 2024-10-11 01:23:23.000 1983-09-13 2024-10-11 01:23:23 +5004 5004 5005 500.4 1000.8000000000001 5004 1983-09-14 2024-10-11 01:23:24.000 1983-09-14 2024-10-11 01:23:24 +5005 5005 5006 500.5 1001 5005 1983-09-15 2024-10-11 01:23:25.000 1983-09-15 2024-10-11 01:23:25 +5006 5006 5007 500.6 1001.2 5006 1983-09-16 2024-10-11 01:23:26.000 1983-09-16 2024-10-11 01:23:26 +5007 5007 5008 500.7 1001.4000000000001 5007 1983-09-17 2024-10-11 01:23:27.000 1983-09-17 2024-10-11 01:23:27 +5008 5008 5009 500.8 1001.6 5008 1983-09-18 2024-10-11 01:23:28.000 1983-09-18 2024-10-11 01:23:28 +5009 5009 5010 500.9 1001.8000000000001 5009 1983-09-19 2024-10-11 01:23:29.000 1983-09-19 2024-10-11 01:23:29 +5010 5010 5011 501 1002 5010 1983-09-20 2024-10-11 01:23:30.000 1983-09-20 2024-10-11 01:23:30 +5011 5011 5012 501.1 1002.2 5011 1983-09-21 2024-10-11 01:23:31.000 1983-09-21 2024-10-11 01:23:31 +5012 5012 5013 501.2 1002.4000000000001 5012 1983-09-22 2024-10-11 01:23:32.000 1983-09-22 2024-10-11 01:23:32 +5013 5013 5014 501.3 1002.6 5013 1983-09-23 2024-10-11 01:23:33.000 1983-09-23 2024-10-11 01:23:33 +5014 5014 5015 501.4 1002.8000000000001 5014 1983-09-24 2024-10-11 01:23:34.000 1983-09-24 2024-10-11 01:23:34 +5015 5015 5016 501.5 1003 5015 1983-09-25 2024-10-11 01:23:35.000 1983-09-25 2024-10-11 01:23:35 +5016 5016 5017 501.6 1003.2 5016 1983-09-26 2024-10-11 01:23:36.000 1983-09-26 2024-10-11 01:23:36 +5017 5017 5018 501.7 1003.4000000000001 5017 1983-09-27 2024-10-11 01:23:37.000 1983-09-27 2024-10-11 01:23:37 +5018 5018 5019 501.8 1003.6 5018 1983-09-28 2024-10-11 01:23:38.000 1983-09-28 2024-10-11 01:23:38 +5019 5019 5020 501.9 1003.8000000000001 5019 1983-09-29 2024-10-11 01:23:39.000 1983-09-29 2024-10-11 01:23:39 +5020 5020 5021 502 1004 5020 1983-09-30 2024-10-11 01:23:40.000 1983-09-30 2024-10-11 01:23:40 +5021 5021 5022 502.1 1004.2 5021 1983-10-01 2024-10-11 01:23:41.000 1983-10-01 2024-10-11 01:23:41 +5022 5022 5023 502.2 1004.4000000000001 5022 1983-10-02 2024-10-11 01:23:42.000 1983-10-02 2024-10-11 01:23:42 +5023 5023 5024 502.3 1004.6 5023 1983-10-03 2024-10-11 01:23:43.000 1983-10-03 2024-10-11 01:23:43 +5024 5024 5025 502.4 1004.8000000000001 5024 1983-10-04 2024-10-11 01:23:44.000 1983-10-04 2024-10-11 01:23:44 +5025 5025 5026 502.5 1005 5025 1983-10-05 2024-10-11 01:23:45.000 1983-10-05 2024-10-11 01:23:45 +5026 5026 5027 502.6 1005.2 5026 1983-10-06 2024-10-11 01:23:46.000 1983-10-06 2024-10-11 01:23:46 +5027 5027 5028 502.7 1005.4000000000001 5027 1983-10-07 2024-10-11 01:23:47.000 1983-10-07 2024-10-11 01:23:47 +5028 5028 5029 502.8 1005.6 5028 1983-10-08 2024-10-11 01:23:48.000 1983-10-08 2024-10-11 01:23:48 +5029 5029 5030 502.9 1005.8000000000001 5029 1983-10-09 2024-10-11 01:23:49.000 1983-10-09 2024-10-11 01:23:49 +5030 5030 5031 503 1006 5030 1983-10-10 2024-10-11 01:23:50.000 1983-10-10 2024-10-11 01:23:50 +5031 5031 5032 503.1 1006.2 5031 1983-10-11 2024-10-11 01:23:51.000 1983-10-11 2024-10-11 01:23:51 +5032 5032 5033 503.2 1006.4000000000001 5032 1983-10-12 2024-10-11 01:23:52.000 1983-10-12 2024-10-11 01:23:52 +5033 5033 5034 503.3 1006.6 5033 1983-10-13 2024-10-11 01:23:53.000 1983-10-13 2024-10-11 01:23:53 +5034 5034 5035 503.4 1006.8000000000001 5034 1983-10-14 2024-10-11 01:23:54.000 1983-10-14 2024-10-11 01:23:54 +5035 5035 5036 503.5 1007 5035 1983-10-15 2024-10-11 01:23:55.000 1983-10-15 2024-10-11 01:23:55 +5036 5036 5037 503.6 1007.2 5036 1983-10-16 2024-10-11 01:23:56.000 1983-10-16 2024-10-11 01:23:56 +5037 5037 5038 503.7 1007.4000000000001 5037 1983-10-17 2024-10-11 01:23:57.000 1983-10-17 2024-10-11 01:23:57 +5038 5038 5039 503.8 1007.6 5038 1983-10-18 2024-10-11 01:23:58.000 1983-10-18 2024-10-11 01:23:58 +5039 5039 5040 503.9 1007.8000000000001 5039 1983-10-19 2024-10-11 01:23:59.000 1983-10-19 2024-10-11 01:23:59 +5040 5040 5041 504 1008 5040 1983-10-20 2024-10-11 01:24:00.000 1983-10-20 2024-10-11 01:24:00 +5041 5041 5042 504.1 1008.2 5041 1983-10-21 2024-10-11 01:24:01.000 1983-10-21 2024-10-11 01:24:01 +5042 5042 5043 504.2 1008.4000000000001 5042 1983-10-22 2024-10-11 01:24:02.000 1983-10-22 2024-10-11 01:24:02 +5043 5043 5044 504.3 1008.6 5043 1983-10-23 2024-10-11 01:24:03.000 1983-10-23 2024-10-11 01:24:03 +5044 5044 5045 504.4 1008.8000000000001 5044 1983-10-24 2024-10-11 01:24:04.000 1983-10-24 2024-10-11 01:24:04 +5045 5045 5046 504.5 1009 5045 1983-10-25 2024-10-11 01:24:05.000 1983-10-25 2024-10-11 01:24:05 +5046 5046 5047 504.6 1009.2 5046 1983-10-26 2024-10-11 01:24:06.000 1983-10-26 2024-10-11 01:24:06 +5047 5047 5048 504.7 1009.4000000000001 5047 1983-10-27 2024-10-11 01:24:07.000 1983-10-27 2024-10-11 01:24:07 +5048 5048 5049 504.8 1009.6 5048 1983-10-28 2024-10-11 01:24:08.000 1983-10-28 2024-10-11 01:24:08 +5049 5049 5050 504.9 1009.8000000000001 5049 1983-10-29 2024-10-11 01:24:09.000 1983-10-29 2024-10-11 01:24:09 +5050 5050 5051 505 1010 5050 1983-10-30 2024-10-11 01:24:10.000 1983-10-30 2024-10-11 01:24:10 +5051 5051 5052 505.1 1010.2 5051 1983-10-31 2024-10-11 01:24:11.000 1983-10-31 2024-10-11 01:24:11 +5052 5052 5053 505.2 1010.4000000000001 5052 1983-11-01 2024-10-11 01:24:12.000 1983-11-01 2024-10-11 01:24:12 +5053 5053 5054 505.3 1010.6 5053 1983-11-02 2024-10-11 01:24:13.000 1983-11-02 2024-10-11 01:24:13 +5054 5054 5055 505.4 1010.8000000000001 5054 1983-11-03 2024-10-11 01:24:14.000 1983-11-03 2024-10-11 01:24:14 +5055 5055 5056 505.5 1011 5055 1983-11-04 2024-10-11 01:24:15.000 1983-11-04 2024-10-11 01:24:15 +5056 5056 5057 505.6 1011.2 5056 1983-11-05 2024-10-11 01:24:16.000 1983-11-05 2024-10-11 01:24:16 +5057 5057 5058 505.7 1011.4000000000001 5057 1983-11-06 2024-10-11 01:24:17.000 1983-11-06 2024-10-11 01:24:17 +5058 5058 5059 505.8 1011.6 5058 1983-11-07 2024-10-11 01:24:18.000 1983-11-07 2024-10-11 01:24:18 +5059 5059 5060 505.9 1011.8000000000001 5059 1983-11-08 2024-10-11 01:24:19.000 1983-11-08 2024-10-11 01:24:19 +5060 5060 5061 506 1012 5060 1983-11-09 2024-10-11 01:24:20.000 1983-11-09 2024-10-11 01:24:20 +5061 5061 5062 506.1 1012.2 5061 1983-11-10 2024-10-11 01:24:21.000 1983-11-10 2024-10-11 01:24:21 +5062 5062 5063 506.2 1012.4000000000001 5062 1983-11-11 2024-10-11 01:24:22.000 1983-11-11 2024-10-11 01:24:22 +5063 5063 5064 506.3 1012.6 5063 1983-11-12 2024-10-11 01:24:23.000 1983-11-12 2024-10-11 01:24:23 +5064 5064 5065 506.4 1012.8000000000001 5064 1983-11-13 2024-10-11 01:24:24.000 1983-11-13 2024-10-11 01:24:24 +5065 5065 5066 506.5 1013 5065 1983-11-14 2024-10-11 01:24:25.000 1983-11-14 2024-10-11 01:24:25 +5066 5066 5067 506.6 1013.2 5066 1983-11-15 2024-10-11 01:24:26.000 1983-11-15 2024-10-11 01:24:26 +5067 5067 5068 506.7 1013.4000000000001 5067 1983-11-16 2024-10-11 01:24:27.000 1983-11-16 2024-10-11 01:24:27 +5068 5068 5069 506.8 1013.6 5068 1983-11-17 2024-10-11 01:24:28.000 1983-11-17 2024-10-11 01:24:28 +5069 5069 5070 506.9 1013.8000000000001 5069 1983-11-18 2024-10-11 01:24:29.000 1983-11-18 2024-10-11 01:24:29 +5070 5070 5071 507 1014 5070 1983-11-19 2024-10-11 01:24:30.000 1983-11-19 2024-10-11 01:24:30 +5071 5071 5072 507.1 1014.2 5071 1983-11-20 2024-10-11 01:24:31.000 1983-11-20 2024-10-11 01:24:31 +5072 5072 5073 507.2 1014.4000000000001 5072 1983-11-21 2024-10-11 01:24:32.000 1983-11-21 2024-10-11 01:24:32 +5073 5073 5074 507.3 1014.6 5073 1983-11-22 2024-10-11 01:24:33.000 1983-11-22 2024-10-11 01:24:33 +5074 5074 5075 507.4 1014.8000000000001 5074 1983-11-23 2024-10-11 01:24:34.000 1983-11-23 2024-10-11 01:24:34 +5075 5075 5076 507.5 1015 5075 1983-11-24 2024-10-11 01:24:35.000 1983-11-24 2024-10-11 01:24:35 +5076 5076 5077 507.6 1015.2 5076 1983-11-25 2024-10-11 01:24:36.000 1983-11-25 2024-10-11 01:24:36 +5077 5077 5078 507.7 1015.4000000000001 5077 1983-11-26 2024-10-11 01:24:37.000 1983-11-26 2024-10-11 01:24:37 +5078 5078 5079 507.8 1015.6 5078 1983-11-27 2024-10-11 01:24:38.000 1983-11-27 2024-10-11 01:24:38 +5079 5079 5080 507.9 1015.8000000000001 5079 1983-11-28 2024-10-11 01:24:39.000 1983-11-28 2024-10-11 01:24:39 +5080 5080 5081 508 1016 5080 1983-11-29 2024-10-11 01:24:40.000 1983-11-29 2024-10-11 01:24:40 +5081 5081 5082 508.1 1016.2 5081 1983-11-30 2024-10-11 01:24:41.000 1983-11-30 2024-10-11 01:24:41 +5082 5082 5083 508.2 1016.4000000000001 5082 1983-12-01 2024-10-11 01:24:42.000 1983-12-01 2024-10-11 01:24:42 +5083 5083 5084 508.3 1016.6 5083 1983-12-02 2024-10-11 01:24:43.000 1983-12-02 2024-10-11 01:24:43 +5084 5084 5085 508.4 1016.8000000000001 5084 1983-12-03 2024-10-11 01:24:44.000 1983-12-03 2024-10-11 01:24:44 +5085 5085 5086 508.5 1017 5085 1983-12-04 2024-10-11 01:24:45.000 1983-12-04 2024-10-11 01:24:45 +5086 5086 5087 508.6 1017.2 5086 1983-12-05 2024-10-11 01:24:46.000 1983-12-05 2024-10-11 01:24:46 +5087 5087 5088 508.7 1017.4000000000001 5087 1983-12-06 2024-10-11 01:24:47.000 1983-12-06 2024-10-11 01:24:47 +5088 5088 5089 508.8 1017.6 5088 1983-12-07 2024-10-11 01:24:48.000 1983-12-07 2024-10-11 01:24:48 +5089 5089 5090 508.9 1017.8000000000001 5089 1983-12-08 2024-10-11 01:24:49.000 1983-12-08 2024-10-11 01:24:49 +5090 5090 5091 509 1018 5090 1983-12-09 2024-10-11 01:24:50.000 1983-12-09 2024-10-11 01:24:50 +5091 5091 5092 509.1 1018.2 5091 1983-12-10 2024-10-11 01:24:51.000 1983-12-10 2024-10-11 01:24:51 +5092 5092 5093 509.2 1018.4000000000001 5092 1983-12-11 2024-10-11 01:24:52.000 1983-12-11 2024-10-11 01:24:52 +5093 5093 5094 509.3 1018.6 5093 1983-12-12 2024-10-11 01:24:53.000 1983-12-12 2024-10-11 01:24:53 +5094 5094 5095 509.4 1018.8000000000001 5094 1983-12-13 2024-10-11 01:24:54.000 1983-12-13 2024-10-11 01:24:54 +5095 5095 5096 509.5 1019 5095 1983-12-14 2024-10-11 01:24:55.000 1983-12-14 2024-10-11 01:24:55 +5096 5096 5097 509.6 1019.2 5096 1983-12-15 2024-10-11 01:24:56.000 1983-12-15 2024-10-11 01:24:56 +5097 5097 5098 509.7 1019.4000000000001 5097 1983-12-16 2024-10-11 01:24:57.000 1983-12-16 2024-10-11 01:24:57 +5098 5098 5099 509.8 1019.6 5098 1983-12-17 2024-10-11 01:24:58.000 1983-12-17 2024-10-11 01:24:58 +5099 5099 5100 509.9 1019.8000000000001 5099 1983-12-18 2024-10-11 01:24:59.000 1983-12-18 2024-10-11 01:24:59 +5100 5100 5101 510 1020 5100 1983-12-19 2024-10-11 01:25:00.000 1983-12-19 2024-10-11 01:25:00 +5101 5101 5102 510.1 1020.2 5101 1983-12-20 2024-10-11 01:25:01.000 1983-12-20 2024-10-11 01:25:01 +5102 5102 5103 510.2 1020.4000000000001 5102 1983-12-21 2024-10-11 01:25:02.000 1983-12-21 2024-10-11 01:25:02 +5103 5103 5104 510.3 1020.6 5103 1983-12-22 2024-10-11 01:25:03.000 1983-12-22 2024-10-11 01:25:03 +5104 5104 5105 510.4 1020.8000000000001 5104 1983-12-23 2024-10-11 01:25:04.000 1983-12-23 2024-10-11 01:25:04 +5105 5105 5106 510.5 1021 5105 1983-12-24 2024-10-11 01:25:05.000 1983-12-24 2024-10-11 01:25:05 +5106 5106 5107 510.6 1021.2 5106 1983-12-25 2024-10-11 01:25:06.000 1983-12-25 2024-10-11 01:25:06 +5107 5107 5108 510.7 1021.4000000000001 5107 1983-12-26 2024-10-11 01:25:07.000 1983-12-26 2024-10-11 01:25:07 +5108 5108 5109 510.8 1021.6 5108 1983-12-27 2024-10-11 01:25:08.000 1983-12-27 2024-10-11 01:25:08 +5109 5109 5110 510.9 1021.8000000000001 5109 1983-12-28 2024-10-11 01:25:09.000 1983-12-28 2024-10-11 01:25:09 +5110 5110 5111 511 1022 5110 1983-12-29 2024-10-11 01:25:10.000 1983-12-29 2024-10-11 01:25:10 +5111 5111 5112 511.1 1022.2 5111 1983-12-30 2024-10-11 01:25:11.000 1983-12-30 2024-10-11 01:25:11 +5112 5112 5113 511.2 1022.4000000000001 5112 1983-12-31 2024-10-11 01:25:12.000 1983-12-31 2024-10-11 01:25:12 +5113 5113 5114 511.3 1022.6 5113 1984-01-01 2024-10-11 01:25:13.000 1984-01-01 2024-10-11 01:25:13 +5114 5114 5115 511.4 1022.8000000000001 5114 1984-01-02 2024-10-11 01:25:14.000 1984-01-02 2024-10-11 01:25:14 +5115 5115 5116 511.5 1023 5115 1984-01-03 2024-10-11 01:25:15.000 1984-01-03 2024-10-11 01:25:15 +5116 5116 5117 511.6 1023.2 5116 1984-01-04 2024-10-11 01:25:16.000 1984-01-04 2024-10-11 01:25:16 +5117 5117 5118 511.7 1023.4000000000001 5117 1984-01-05 2024-10-11 01:25:17.000 1984-01-05 2024-10-11 01:25:17 +5118 5118 5119 511.8 1023.6 5118 1984-01-06 2024-10-11 01:25:18.000 1984-01-06 2024-10-11 01:25:18 +5119 5119 5120 511.9 1023.8000000000001 5119 1984-01-07 2024-10-11 01:25:19.000 1984-01-07 2024-10-11 01:25:19 +5120 5120 5121 512 1024 5120 1984-01-08 2024-10-11 01:25:20.000 1984-01-08 2024-10-11 01:25:20 +5121 5121 5122 512.1 1024.2 5121 1984-01-09 2024-10-11 01:25:21.000 1984-01-09 2024-10-11 01:25:21 +5122 5122 5123 512.2 1024.4 5122 1984-01-10 2024-10-11 01:25:22.000 1984-01-10 2024-10-11 01:25:22 +5123 5123 5124 512.3 1024.6000000000001 5123 1984-01-11 2024-10-11 01:25:23.000 1984-01-11 2024-10-11 01:25:23 +5124 5124 5125 512.4 1024.8 5124 1984-01-12 2024-10-11 01:25:24.000 1984-01-12 2024-10-11 01:25:24 +5125 5125 5126 512.5 1025 5125 1984-01-13 2024-10-11 01:25:25.000 1984-01-13 2024-10-11 01:25:25 +5126 5126 5127 512.6 1025.2 5126 1984-01-14 2024-10-11 01:25:26.000 1984-01-14 2024-10-11 01:25:26 +5127 5127 5128 512.7 1025.4 5127 1984-01-15 2024-10-11 01:25:27.000 1984-01-15 2024-10-11 01:25:27 +5128 5128 5129 512.8 1025.6000000000001 5128 1984-01-16 2024-10-11 01:25:28.000 1984-01-16 2024-10-11 01:25:28 +5129 5129 5130 512.9 1025.8 5129 1984-01-17 2024-10-11 01:25:29.000 1984-01-17 2024-10-11 01:25:29 +5130 5130 5131 513 1026 5130 1984-01-18 2024-10-11 01:25:30.000 1984-01-18 2024-10-11 01:25:30 +5131 5131 5132 513.1 1026.2 5131 1984-01-19 2024-10-11 01:25:31.000 1984-01-19 2024-10-11 01:25:31 +5132 5132 5133 513.2 1026.4 5132 1984-01-20 2024-10-11 01:25:32.000 1984-01-20 2024-10-11 01:25:32 +5133 5133 5134 513.3 1026.6000000000001 5133 1984-01-21 2024-10-11 01:25:33.000 1984-01-21 2024-10-11 01:25:33 +5134 5134 5135 513.4 1026.8 5134 1984-01-22 2024-10-11 01:25:34.000 1984-01-22 2024-10-11 01:25:34 +5135 5135 5136 513.5 1027 5135 1984-01-23 2024-10-11 01:25:35.000 1984-01-23 2024-10-11 01:25:35 +5136 5136 5137 513.6 1027.2 5136 1984-01-24 2024-10-11 01:25:36.000 1984-01-24 2024-10-11 01:25:36 +5137 5137 5138 513.7 1027.4 5137 1984-01-25 2024-10-11 01:25:37.000 1984-01-25 2024-10-11 01:25:37 +5138 5138 5139 513.8 1027.6000000000001 5138 1984-01-26 2024-10-11 01:25:38.000 1984-01-26 2024-10-11 01:25:38 +5139 5139 5140 513.9 1027.8 5139 1984-01-27 2024-10-11 01:25:39.000 1984-01-27 2024-10-11 01:25:39 +5140 5140 5141 514 1028 5140 1984-01-28 2024-10-11 01:25:40.000 1984-01-28 2024-10-11 01:25:40 +5141 5141 5142 514.1 1028.2 5141 1984-01-29 2024-10-11 01:25:41.000 1984-01-29 2024-10-11 01:25:41 +5142 5142 5143 514.2 1028.4 5142 1984-01-30 2024-10-11 01:25:42.000 1984-01-30 2024-10-11 01:25:42 +5143 5143 5144 514.3 1028.6000000000001 5143 1984-01-31 2024-10-11 01:25:43.000 1984-01-31 2024-10-11 01:25:43 +5144 5144 5145 514.4 1028.8 5144 1984-02-01 2024-10-11 01:25:44.000 1984-02-01 2024-10-11 01:25:44 +5145 5145 5146 514.5 1029 5145 1984-02-02 2024-10-11 01:25:45.000 1984-02-02 2024-10-11 01:25:45 +5146 5146 5147 514.6 1029.2 5146 1984-02-03 2024-10-11 01:25:46.000 1984-02-03 2024-10-11 01:25:46 +5147 5147 5148 514.7 1029.4 5147 1984-02-04 2024-10-11 01:25:47.000 1984-02-04 2024-10-11 01:25:47 +5148 5148 5149 514.8 1029.6000000000001 5148 1984-02-05 2024-10-11 01:25:48.000 1984-02-05 2024-10-11 01:25:48 +5149 5149 5150 514.9 1029.8 5149 1984-02-06 2024-10-11 01:25:49.000 1984-02-06 2024-10-11 01:25:49 +5150 5150 5151 515 1030 5150 1984-02-07 2024-10-11 01:25:50.000 1984-02-07 2024-10-11 01:25:50 +5151 5151 5152 515.1 1030.2 5151 1984-02-08 2024-10-11 01:25:51.000 1984-02-08 2024-10-11 01:25:51 +5152 5152 5153 515.2 1030.4 5152 1984-02-09 2024-10-11 01:25:52.000 1984-02-09 2024-10-11 01:25:52 +5153 5153 5154 515.3 1030.6000000000001 5153 1984-02-10 2024-10-11 01:25:53.000 1984-02-10 2024-10-11 01:25:53 +5154 5154 5155 515.4 1030.8 5154 1984-02-11 2024-10-11 01:25:54.000 1984-02-11 2024-10-11 01:25:54 +5155 5155 5156 515.5 1031 5155 1984-02-12 2024-10-11 01:25:55.000 1984-02-12 2024-10-11 01:25:55 +5156 5156 5157 515.6 1031.2 5156 1984-02-13 2024-10-11 01:25:56.000 1984-02-13 2024-10-11 01:25:56 +5157 5157 5158 515.7 1031.4 5157 1984-02-14 2024-10-11 01:25:57.000 1984-02-14 2024-10-11 01:25:57 +5158 5158 5159 515.8 1031.6000000000001 5158 1984-02-15 2024-10-11 01:25:58.000 1984-02-15 2024-10-11 01:25:58 +5159 5159 5160 515.9 1031.8 5159 1984-02-16 2024-10-11 01:25:59.000 1984-02-16 2024-10-11 01:25:59 +5160 5160 5161 516 1032 5160 1984-02-17 2024-10-11 01:26:00.000 1984-02-17 2024-10-11 01:26:00 +5161 5161 5162 516.1 1032.2 5161 1984-02-18 2024-10-11 01:26:01.000 1984-02-18 2024-10-11 01:26:01 +5162 5162 5163 516.2 1032.4 5162 1984-02-19 2024-10-11 01:26:02.000 1984-02-19 2024-10-11 01:26:02 +5163 5163 5164 516.3 1032.6000000000001 5163 1984-02-20 2024-10-11 01:26:03.000 1984-02-20 2024-10-11 01:26:03 +5164 5164 5165 516.4 1032.8 5164 1984-02-21 2024-10-11 01:26:04.000 1984-02-21 2024-10-11 01:26:04 +5165 5165 5166 516.5 1033 5165 1984-02-22 2024-10-11 01:26:05.000 1984-02-22 2024-10-11 01:26:05 +5166 5166 5167 516.6 1033.2 5166 1984-02-23 2024-10-11 01:26:06.000 1984-02-23 2024-10-11 01:26:06 +5167 5167 5168 516.7 1033.4 5167 1984-02-24 2024-10-11 01:26:07.000 1984-02-24 2024-10-11 01:26:07 +5168 5168 5169 516.8 1033.6000000000001 5168 1984-02-25 2024-10-11 01:26:08.000 1984-02-25 2024-10-11 01:26:08 +5169 5169 5170 516.9 1033.8 5169 1984-02-26 2024-10-11 01:26:09.000 1984-02-26 2024-10-11 01:26:09 +5170 5170 5171 517 1034 5170 1984-02-27 2024-10-11 01:26:10.000 1984-02-27 2024-10-11 01:26:10 +5171 5171 5172 517.1 1034.2 5171 1984-02-28 2024-10-11 01:26:11.000 1984-02-28 2024-10-11 01:26:11 +5172 5172 5173 517.2 1034.4 5172 1984-02-29 2024-10-11 01:26:12.000 1984-02-29 2024-10-11 01:26:12 +5173 5173 5174 517.3 1034.6000000000001 5173 1984-03-01 2024-10-11 01:26:13.000 1984-03-01 2024-10-11 01:26:13 +5174 5174 5175 517.4 1034.8 5174 1984-03-02 2024-10-11 01:26:14.000 1984-03-02 2024-10-11 01:26:14 +5175 5175 5176 517.5 1035 5175 1984-03-03 2024-10-11 01:26:15.000 1984-03-03 2024-10-11 01:26:15 +5176 5176 5177 517.6 1035.2 5176 1984-03-04 2024-10-11 01:26:16.000 1984-03-04 2024-10-11 01:26:16 +5177 5177 5178 517.7 1035.4 5177 1984-03-05 2024-10-11 01:26:17.000 1984-03-05 2024-10-11 01:26:17 +5178 5178 5179 517.8 1035.6000000000001 5178 1984-03-06 2024-10-11 01:26:18.000 1984-03-06 2024-10-11 01:26:18 +5179 5179 5180 517.9 1035.8 5179 1984-03-07 2024-10-11 01:26:19.000 1984-03-07 2024-10-11 01:26:19 +5180 5180 5181 518 1036 5180 1984-03-08 2024-10-11 01:26:20.000 1984-03-08 2024-10-11 01:26:20 +5181 5181 5182 518.1 1036.2 5181 1984-03-09 2024-10-11 01:26:21.000 1984-03-09 2024-10-11 01:26:21 +5182 5182 5183 518.2 1036.4 5182 1984-03-10 2024-10-11 01:26:22.000 1984-03-10 2024-10-11 01:26:22 +5183 5183 5184 518.3 1036.6000000000001 5183 1984-03-11 2024-10-11 01:26:23.000 1984-03-11 2024-10-11 01:26:23 +5184 5184 5185 518.4 1036.8 5184 1984-03-12 2024-10-11 01:26:24.000 1984-03-12 2024-10-11 01:26:24 +5185 5185 5186 518.5 1037 5185 1984-03-13 2024-10-11 01:26:25.000 1984-03-13 2024-10-11 01:26:25 +5186 5186 5187 518.6 1037.2 5186 1984-03-14 2024-10-11 01:26:26.000 1984-03-14 2024-10-11 01:26:26 +5187 5187 5188 518.7 1037.4 5187 1984-03-15 2024-10-11 01:26:27.000 1984-03-15 2024-10-11 01:26:27 +5188 5188 5189 518.8 1037.6000000000001 5188 1984-03-16 2024-10-11 01:26:28.000 1984-03-16 2024-10-11 01:26:28 +5189 5189 5190 518.9 1037.8 5189 1984-03-17 2024-10-11 01:26:29.000 1984-03-17 2024-10-11 01:26:29 +5190 5190 5191 519 1038 5190 1984-03-18 2024-10-11 01:26:30.000 1984-03-18 2024-10-11 01:26:30 +5191 5191 5192 519.1 1038.2 5191 1984-03-19 2024-10-11 01:26:31.000 1984-03-19 2024-10-11 01:26:31 +5192 5192 5193 519.2 1038.4 5192 1984-03-20 2024-10-11 01:26:32.000 1984-03-20 2024-10-11 01:26:32 +5193 5193 5194 519.3 1038.6000000000001 5193 1984-03-21 2024-10-11 01:26:33.000 1984-03-21 2024-10-11 01:26:33 +5194 5194 5195 519.4 1038.8 5194 1984-03-22 2024-10-11 01:26:34.000 1984-03-22 2024-10-11 01:26:34 +5195 5195 5196 519.5 1039 5195 1984-03-23 2024-10-11 01:26:35.000 1984-03-23 2024-10-11 01:26:35 +5196 5196 5197 519.6 1039.2 5196 1984-03-24 2024-10-11 01:26:36.000 1984-03-24 2024-10-11 01:26:36 +5197 5197 5198 519.7 1039.4 5197 1984-03-25 2024-10-11 01:26:37.000 1984-03-25 2024-10-11 01:26:37 +5198 5198 5199 519.8 1039.6000000000001 5198 1984-03-26 2024-10-11 01:26:38.000 1984-03-26 2024-10-11 01:26:38 +5199 5199 5200 519.9 1039.8 5199 1984-03-27 2024-10-11 01:26:39.000 1984-03-27 2024-10-11 01:26:39 +5200 5200 5201 520 1040 5200 1984-03-28 2024-10-11 01:26:40.000 1984-03-28 2024-10-11 01:26:40 +5201 5201 5202 520.1 1040.2 5201 1984-03-29 2024-10-11 01:26:41.000 1984-03-29 2024-10-11 01:26:41 +5202 5202 5203 520.2 1040.4 5202 1984-03-30 2024-10-11 01:26:42.000 1984-03-30 2024-10-11 01:26:42 +5203 5203 5204 520.3 1040.6000000000001 5203 1984-03-31 2024-10-11 01:26:43.000 1984-03-31 2024-10-11 01:26:43 +5204 5204 5205 520.4 1040.8 5204 1984-04-01 2024-10-11 01:26:44.000 1984-04-01 2024-10-11 01:26:44 +5205 5205 5206 520.5 1041 5205 1984-04-02 2024-10-11 01:26:45.000 1984-04-02 2024-10-11 01:26:45 +5206 5206 5207 520.6 1041.2 5206 1984-04-03 2024-10-11 01:26:46.000 1984-04-03 2024-10-11 01:26:46 +5207 5207 5208 520.7 1041.4 5207 1984-04-04 2024-10-11 01:26:47.000 1984-04-04 2024-10-11 01:26:47 +5208 5208 5209 520.8 1041.6000000000001 5208 1984-04-05 2024-10-11 01:26:48.000 1984-04-05 2024-10-11 01:26:48 +5209 5209 5210 520.9 1041.8 5209 1984-04-06 2024-10-11 01:26:49.000 1984-04-06 2024-10-11 01:26:49 +5210 5210 5211 521 1042 5210 1984-04-07 2024-10-11 01:26:50.000 1984-04-07 2024-10-11 01:26:50 +5211 5211 5212 521.1 1042.2 5211 1984-04-08 2024-10-11 01:26:51.000 1984-04-08 2024-10-11 01:26:51 +5212 5212 5213 521.2 1042.4 5212 1984-04-09 2024-10-11 01:26:52.000 1984-04-09 2024-10-11 01:26:52 +5213 5213 5214 521.3 1042.6000000000001 5213 1984-04-10 2024-10-11 01:26:53.000 1984-04-10 2024-10-11 01:26:53 +5214 5214 5215 521.4 1042.8 5214 1984-04-11 2024-10-11 01:26:54.000 1984-04-11 2024-10-11 01:26:54 +5215 5215 5216 521.5 1043 5215 1984-04-12 2024-10-11 01:26:55.000 1984-04-12 2024-10-11 01:26:55 +5216 5216 5217 521.6 1043.2 5216 1984-04-13 2024-10-11 01:26:56.000 1984-04-13 2024-10-11 01:26:56 +5217 5217 5218 521.7 1043.4 5217 1984-04-14 2024-10-11 01:26:57.000 1984-04-14 2024-10-11 01:26:57 +5218 5218 5219 521.8 1043.6000000000001 5218 1984-04-15 2024-10-11 01:26:58.000 1984-04-15 2024-10-11 01:26:58 +5219 5219 5220 521.9 1043.8 5219 1984-04-16 2024-10-11 01:26:59.000 1984-04-16 2024-10-11 01:26:59 +5220 5220 5221 522 1044 5220 1984-04-17 2024-10-11 01:27:00.000 1984-04-17 2024-10-11 01:27:00 +5221 5221 5222 522.1 1044.2 5221 1984-04-18 2024-10-11 01:27:01.000 1984-04-18 2024-10-11 01:27:01 +5222 5222 5223 522.2 1044.4 5222 1984-04-19 2024-10-11 01:27:02.000 1984-04-19 2024-10-11 01:27:02 +5223 5223 5224 522.3 1044.6000000000001 5223 1984-04-20 2024-10-11 01:27:03.000 1984-04-20 2024-10-11 01:27:03 +5224 5224 5225 522.4 1044.8 5224 1984-04-21 2024-10-11 01:27:04.000 1984-04-21 2024-10-11 01:27:04 +5225 5225 5226 522.5 1045 5225 1984-04-22 2024-10-11 01:27:05.000 1984-04-22 2024-10-11 01:27:05 +5226 5226 5227 522.6 1045.2 5226 1984-04-23 2024-10-11 01:27:06.000 1984-04-23 2024-10-11 01:27:06 +5227 5227 5228 522.7 1045.4 5227 1984-04-24 2024-10-11 01:27:07.000 1984-04-24 2024-10-11 01:27:07 +5228 5228 5229 522.8 1045.6000000000001 5228 1984-04-25 2024-10-11 01:27:08.000 1984-04-25 2024-10-11 01:27:08 +5229 5229 5230 522.9 1045.8 5229 1984-04-26 2024-10-11 01:27:09.000 1984-04-26 2024-10-11 01:27:09 +5230 5230 5231 523 1046 5230 1984-04-27 2024-10-11 01:27:10.000 1984-04-27 2024-10-11 01:27:10 +5231 5231 5232 523.1 1046.2 5231 1984-04-28 2024-10-11 01:27:11.000 1984-04-28 2024-10-11 01:27:11 +5232 5232 5233 523.2 1046.4 5232 1984-04-29 2024-10-11 01:27:12.000 1984-04-29 2024-10-11 01:27:12 +5233 5233 5234 523.3 1046.6000000000001 5233 1984-04-30 2024-10-11 01:27:13.000 1984-04-30 2024-10-11 01:27:13 +5234 5234 5235 523.4 1046.8 5234 1984-05-01 2024-10-11 01:27:14.000 1984-05-01 2024-10-11 01:27:14 +5235 5235 5236 523.5 1047 5235 1984-05-02 2024-10-11 01:27:15.000 1984-05-02 2024-10-11 01:27:15 +5236 5236 5237 523.6 1047.2 5236 1984-05-03 2024-10-11 01:27:16.000 1984-05-03 2024-10-11 01:27:16 +5237 5237 5238 523.7 1047.4 5237 1984-05-04 2024-10-11 01:27:17.000 1984-05-04 2024-10-11 01:27:17 +5238 5238 5239 523.8 1047.6000000000001 5238 1984-05-05 2024-10-11 01:27:18.000 1984-05-05 2024-10-11 01:27:18 +5239 5239 5240 523.9 1047.8 5239 1984-05-06 2024-10-11 01:27:19.000 1984-05-06 2024-10-11 01:27:19 +5240 5240 5241 524 1048 5240 1984-05-07 2024-10-11 01:27:20.000 1984-05-07 2024-10-11 01:27:20 +5241 5241 5242 524.1 1048.2 5241 1984-05-08 2024-10-11 01:27:21.000 1984-05-08 2024-10-11 01:27:21 +5242 5242 5243 524.2 1048.4 5242 1984-05-09 2024-10-11 01:27:22.000 1984-05-09 2024-10-11 01:27:22 +5243 5243 5244 524.3 1048.6000000000001 5243 1984-05-10 2024-10-11 01:27:23.000 1984-05-10 2024-10-11 01:27:23 +5244 5244 5245 524.4 1048.8 5244 1984-05-11 2024-10-11 01:27:24.000 1984-05-11 2024-10-11 01:27:24 +5245 5245 5246 524.5 1049 5245 1984-05-12 2024-10-11 01:27:25.000 1984-05-12 2024-10-11 01:27:25 +5246 5246 5247 524.6 1049.2 5246 1984-05-13 2024-10-11 01:27:26.000 1984-05-13 2024-10-11 01:27:26 +5247 5247 5248 524.7 1049.4 5247 1984-05-14 2024-10-11 01:27:27.000 1984-05-14 2024-10-11 01:27:27 +5248 5248 5249 524.8 1049.6000000000001 5248 1984-05-15 2024-10-11 01:27:28.000 1984-05-15 2024-10-11 01:27:28 +5249 5249 5250 524.9 1049.8 5249 1984-05-16 2024-10-11 01:27:29.000 1984-05-16 2024-10-11 01:27:29 +5250 5250 5251 525 1050 5250 1984-05-17 2024-10-11 01:27:30.000 1984-05-17 2024-10-11 01:27:30 +5251 5251 5252 525.1 1050.2 5251 1984-05-18 2024-10-11 01:27:31.000 1984-05-18 2024-10-11 01:27:31 +5252 5252 5253 525.2 1050.4 5252 1984-05-19 2024-10-11 01:27:32.000 1984-05-19 2024-10-11 01:27:32 +5253 5253 5254 525.3 1050.6000000000001 5253 1984-05-20 2024-10-11 01:27:33.000 1984-05-20 2024-10-11 01:27:33 +5254 5254 5255 525.4 1050.8 5254 1984-05-21 2024-10-11 01:27:34.000 1984-05-21 2024-10-11 01:27:34 +5255 5255 5256 525.5 1051 5255 1984-05-22 2024-10-11 01:27:35.000 1984-05-22 2024-10-11 01:27:35 +5256 5256 5257 525.6 1051.2 5256 1984-05-23 2024-10-11 01:27:36.000 1984-05-23 2024-10-11 01:27:36 +5257 5257 5258 525.7 1051.4 5257 1984-05-24 2024-10-11 01:27:37.000 1984-05-24 2024-10-11 01:27:37 +5258 5258 5259 525.8 1051.6000000000001 5258 1984-05-25 2024-10-11 01:27:38.000 1984-05-25 2024-10-11 01:27:38 +5259 5259 5260 525.9 1051.8 5259 1984-05-26 2024-10-11 01:27:39.000 1984-05-26 2024-10-11 01:27:39 +5260 5260 5261 526 1052 5260 1984-05-27 2024-10-11 01:27:40.000 1984-05-27 2024-10-11 01:27:40 +5261 5261 5262 526.1 1052.2 5261 1984-05-28 2024-10-11 01:27:41.000 1984-05-28 2024-10-11 01:27:41 +5262 5262 5263 526.2 1052.4 5262 1984-05-29 2024-10-11 01:27:42.000 1984-05-29 2024-10-11 01:27:42 +5263 5263 5264 526.3 1052.6000000000001 5263 1984-05-30 2024-10-11 01:27:43.000 1984-05-30 2024-10-11 01:27:43 +5264 5264 5265 526.4 1052.8 5264 1984-05-31 2024-10-11 01:27:44.000 1984-05-31 2024-10-11 01:27:44 +5265 5265 5266 526.5 1053 5265 1984-06-01 2024-10-11 01:27:45.000 1984-06-01 2024-10-11 01:27:45 +5266 5266 5267 526.6 1053.2 5266 1984-06-02 2024-10-11 01:27:46.000 1984-06-02 2024-10-11 01:27:46 +5267 5267 5268 526.7 1053.4 5267 1984-06-03 2024-10-11 01:27:47.000 1984-06-03 2024-10-11 01:27:47 +5268 5268 5269 526.8 1053.6000000000001 5268 1984-06-04 2024-10-11 01:27:48.000 1984-06-04 2024-10-11 01:27:48 +5269 5269 5270 526.9 1053.8 5269 1984-06-05 2024-10-11 01:27:49.000 1984-06-05 2024-10-11 01:27:49 +5270 5270 5271 527 1054 5270 1984-06-06 2024-10-11 01:27:50.000 1984-06-06 2024-10-11 01:27:50 +5271 5271 5272 527.1 1054.2 5271 1984-06-07 2024-10-11 01:27:51.000 1984-06-07 2024-10-11 01:27:51 +5272 5272 5273 527.2 1054.4 5272 1984-06-08 2024-10-11 01:27:52.000 1984-06-08 2024-10-11 01:27:52 +5273 5273 5274 527.3 1054.6000000000001 5273 1984-06-09 2024-10-11 01:27:53.000 1984-06-09 2024-10-11 01:27:53 +5274 5274 5275 527.4 1054.8 5274 1984-06-10 2024-10-11 01:27:54.000 1984-06-10 2024-10-11 01:27:54 +5275 5275 5276 527.5 1055 5275 1984-06-11 2024-10-11 01:27:55.000 1984-06-11 2024-10-11 01:27:55 +5276 5276 5277 527.6 1055.2 5276 1984-06-12 2024-10-11 01:27:56.000 1984-06-12 2024-10-11 01:27:56 +5277 5277 5278 527.7 1055.4 5277 1984-06-13 2024-10-11 01:27:57.000 1984-06-13 2024-10-11 01:27:57 +5278 5278 5279 527.8 1055.6000000000001 5278 1984-06-14 2024-10-11 01:27:58.000 1984-06-14 2024-10-11 01:27:58 +5279 5279 5280 527.9 1055.8 5279 1984-06-15 2024-10-11 01:27:59.000 1984-06-15 2024-10-11 01:27:59 +5280 5280 5281 528 1056 5280 1984-06-16 2024-10-11 01:28:00.000 1984-06-16 2024-10-11 01:28:00 +5281 5281 5282 528.1 1056.2 5281 1984-06-17 2024-10-11 01:28:01.000 1984-06-17 2024-10-11 01:28:01 +5282 5282 5283 528.2 1056.4 5282 1984-06-18 2024-10-11 01:28:02.000 1984-06-18 2024-10-11 01:28:02 +5283 5283 5284 528.3 1056.6000000000001 5283 1984-06-19 2024-10-11 01:28:03.000 1984-06-19 2024-10-11 01:28:03 +5284 5284 5285 528.4 1056.8 5284 1984-06-20 2024-10-11 01:28:04.000 1984-06-20 2024-10-11 01:28:04 +5285 5285 5286 528.5 1057 5285 1984-06-21 2024-10-11 01:28:05.000 1984-06-21 2024-10-11 01:28:05 +5286 5286 5287 528.6 1057.2 5286 1984-06-22 2024-10-11 01:28:06.000 1984-06-22 2024-10-11 01:28:06 +5287 5287 5288 528.7 1057.4 5287 1984-06-23 2024-10-11 01:28:07.000 1984-06-23 2024-10-11 01:28:07 +5288 5288 5289 528.8 1057.6000000000001 5288 1984-06-24 2024-10-11 01:28:08.000 1984-06-24 2024-10-11 01:28:08 +5289 5289 5290 528.9 1057.8 5289 1984-06-25 2024-10-11 01:28:09.000 1984-06-25 2024-10-11 01:28:09 +5290 5290 5291 529 1058 5290 1984-06-26 2024-10-11 01:28:10.000 1984-06-26 2024-10-11 01:28:10 +5291 5291 5292 529.1 1058.2 5291 1984-06-27 2024-10-11 01:28:11.000 1984-06-27 2024-10-11 01:28:11 +5292 5292 5293 529.2 1058.4 5292 1984-06-28 2024-10-11 01:28:12.000 1984-06-28 2024-10-11 01:28:12 +5293 5293 5294 529.3 1058.6000000000001 5293 1984-06-29 2024-10-11 01:28:13.000 1984-06-29 2024-10-11 01:28:13 +5294 5294 5295 529.4 1058.8 5294 1984-06-30 2024-10-11 01:28:14.000 1984-06-30 2024-10-11 01:28:14 +5295 5295 5296 529.5 1059 5295 1984-07-01 2024-10-11 01:28:15.000 1984-07-01 2024-10-11 01:28:15 +5296 5296 5297 529.6 1059.2 5296 1984-07-02 2024-10-11 01:28:16.000 1984-07-02 2024-10-11 01:28:16 +5297 5297 5298 529.7 1059.4 5297 1984-07-03 2024-10-11 01:28:17.000 1984-07-03 2024-10-11 01:28:17 +5298 5298 5299 529.8 1059.6000000000001 5298 1984-07-04 2024-10-11 01:28:18.000 1984-07-04 2024-10-11 01:28:18 +5299 5299 5300 529.9 1059.8 5299 1984-07-05 2024-10-11 01:28:19.000 1984-07-05 2024-10-11 01:28:19 +5300 5300 5301 530 1060 5300 1984-07-06 2024-10-11 01:28:20.000 1984-07-06 2024-10-11 01:28:20 +5301 5301 5302 530.1 1060.2 5301 1984-07-07 2024-10-11 01:28:21.000 1984-07-07 2024-10-11 01:28:21 +5302 5302 5303 530.2 1060.4 5302 1984-07-08 2024-10-11 01:28:22.000 1984-07-08 2024-10-11 01:28:22 +5303 5303 5304 530.3 1060.6000000000001 5303 1984-07-09 2024-10-11 01:28:23.000 1984-07-09 2024-10-11 01:28:23 +5304 5304 5305 530.4 1060.8 5304 1984-07-10 2024-10-11 01:28:24.000 1984-07-10 2024-10-11 01:28:24 +5305 5305 5306 530.5 1061 5305 1984-07-11 2024-10-11 01:28:25.000 1984-07-11 2024-10-11 01:28:25 +5306 5306 5307 530.6 1061.2 5306 1984-07-12 2024-10-11 01:28:26.000 1984-07-12 2024-10-11 01:28:26 +5307 5307 5308 530.7 1061.4 5307 1984-07-13 2024-10-11 01:28:27.000 1984-07-13 2024-10-11 01:28:27 +5308 5308 5309 530.8 1061.6000000000001 5308 1984-07-14 2024-10-11 01:28:28.000 1984-07-14 2024-10-11 01:28:28 +5309 5309 5310 530.9 1061.8 5309 1984-07-15 2024-10-11 01:28:29.000 1984-07-15 2024-10-11 01:28:29 +5310 5310 5311 531 1062 5310 1984-07-16 2024-10-11 01:28:30.000 1984-07-16 2024-10-11 01:28:30 +5311 5311 5312 531.1 1062.2 5311 1984-07-17 2024-10-11 01:28:31.000 1984-07-17 2024-10-11 01:28:31 +5312 5312 5313 531.2 1062.4 5312 1984-07-18 2024-10-11 01:28:32.000 1984-07-18 2024-10-11 01:28:32 +5313 5313 5314 531.3 1062.6000000000001 5313 1984-07-19 2024-10-11 01:28:33.000 1984-07-19 2024-10-11 01:28:33 +5314 5314 5315 531.4 1062.8 5314 1984-07-20 2024-10-11 01:28:34.000 1984-07-20 2024-10-11 01:28:34 +5315 5315 5316 531.5 1063 5315 1984-07-21 2024-10-11 01:28:35.000 1984-07-21 2024-10-11 01:28:35 +5316 5316 5317 531.6 1063.2 5316 1984-07-22 2024-10-11 01:28:36.000 1984-07-22 2024-10-11 01:28:36 +5317 5317 5318 531.7 1063.4 5317 1984-07-23 2024-10-11 01:28:37.000 1984-07-23 2024-10-11 01:28:37 +5318 5318 5319 531.8 1063.6000000000001 5318 1984-07-24 2024-10-11 01:28:38.000 1984-07-24 2024-10-11 01:28:38 +5319 5319 5320 531.9 1063.8 5319 1984-07-25 2024-10-11 01:28:39.000 1984-07-25 2024-10-11 01:28:39 +5320 5320 5321 532 1064 5320 1984-07-26 2024-10-11 01:28:40.000 1984-07-26 2024-10-11 01:28:40 +5321 5321 5322 532.1 1064.2 5321 1984-07-27 2024-10-11 01:28:41.000 1984-07-27 2024-10-11 01:28:41 +5322 5322 5323 532.2 1064.4 5322 1984-07-28 2024-10-11 01:28:42.000 1984-07-28 2024-10-11 01:28:42 +5323 5323 5324 532.3 1064.6000000000001 5323 1984-07-29 2024-10-11 01:28:43.000 1984-07-29 2024-10-11 01:28:43 +5324 5324 5325 532.4 1064.8 5324 1984-07-30 2024-10-11 01:28:44.000 1984-07-30 2024-10-11 01:28:44 +5325 5325 5326 532.5 1065 5325 1984-07-31 2024-10-11 01:28:45.000 1984-07-31 2024-10-11 01:28:45 +5326 5326 5327 532.6 1065.2 5326 1984-08-01 2024-10-11 01:28:46.000 1984-08-01 2024-10-11 01:28:46 +5327 5327 5328 532.7 1065.4 5327 1984-08-02 2024-10-11 01:28:47.000 1984-08-02 2024-10-11 01:28:47 +5328 5328 5329 532.8 1065.6000000000001 5328 1984-08-03 2024-10-11 01:28:48.000 1984-08-03 2024-10-11 01:28:48 +5329 5329 5330 532.9 1065.8 5329 1984-08-04 2024-10-11 01:28:49.000 1984-08-04 2024-10-11 01:28:49 +5330 5330 5331 533 1066 5330 1984-08-05 2024-10-11 01:28:50.000 1984-08-05 2024-10-11 01:28:50 +5331 5331 5332 533.1 1066.2 5331 1984-08-06 2024-10-11 01:28:51.000 1984-08-06 2024-10-11 01:28:51 +5332 5332 5333 533.2 1066.4 5332 1984-08-07 2024-10-11 01:28:52.000 1984-08-07 2024-10-11 01:28:52 +5333 5333 5334 533.3 1066.6000000000001 5333 1984-08-08 2024-10-11 01:28:53.000 1984-08-08 2024-10-11 01:28:53 +5334 5334 5335 533.4 1066.8 5334 1984-08-09 2024-10-11 01:28:54.000 1984-08-09 2024-10-11 01:28:54 +5335 5335 5336 533.5 1067 5335 1984-08-10 2024-10-11 01:28:55.000 1984-08-10 2024-10-11 01:28:55 +5336 5336 5337 533.6 1067.2 5336 1984-08-11 2024-10-11 01:28:56.000 1984-08-11 2024-10-11 01:28:56 +5337 5337 5338 533.7 1067.4 5337 1984-08-12 2024-10-11 01:28:57.000 1984-08-12 2024-10-11 01:28:57 +5338 5338 5339 533.8 1067.6000000000001 5338 1984-08-13 2024-10-11 01:28:58.000 1984-08-13 2024-10-11 01:28:58 +5339 5339 5340 533.9 1067.8 5339 1984-08-14 2024-10-11 01:28:59.000 1984-08-14 2024-10-11 01:28:59 +5340 5340 5341 534 1068 5340 1984-08-15 2024-10-11 01:29:00.000 1984-08-15 2024-10-11 01:29:00 +5341 5341 5342 534.1 1068.2 5341 1984-08-16 2024-10-11 01:29:01.000 1984-08-16 2024-10-11 01:29:01 +5342 5342 5343 534.2 1068.4 5342 1984-08-17 2024-10-11 01:29:02.000 1984-08-17 2024-10-11 01:29:02 +5343 5343 5344 534.3 1068.6000000000001 5343 1984-08-18 2024-10-11 01:29:03.000 1984-08-18 2024-10-11 01:29:03 +5344 5344 5345 534.4 1068.8 5344 1984-08-19 2024-10-11 01:29:04.000 1984-08-19 2024-10-11 01:29:04 +5345 5345 5346 534.5 1069 5345 1984-08-20 2024-10-11 01:29:05.000 1984-08-20 2024-10-11 01:29:05 +5346 5346 5347 534.6 1069.2 5346 1984-08-21 2024-10-11 01:29:06.000 1984-08-21 2024-10-11 01:29:06 +5347 5347 5348 534.7 1069.4 5347 1984-08-22 2024-10-11 01:29:07.000 1984-08-22 2024-10-11 01:29:07 +5348 5348 5349 534.8 1069.6000000000001 5348 1984-08-23 2024-10-11 01:29:08.000 1984-08-23 2024-10-11 01:29:08 +5349 5349 5350 534.9 1069.8 5349 1984-08-24 2024-10-11 01:29:09.000 1984-08-24 2024-10-11 01:29:09 +5350 5350 5351 535 1070 5350 1984-08-25 2024-10-11 01:29:10.000 1984-08-25 2024-10-11 01:29:10 +5351 5351 5352 535.1 1070.2 5351 1984-08-26 2024-10-11 01:29:11.000 1984-08-26 2024-10-11 01:29:11 +5352 5352 5353 535.2 1070.4 5352 1984-08-27 2024-10-11 01:29:12.000 1984-08-27 2024-10-11 01:29:12 +5353 5353 5354 535.3 1070.6000000000001 5353 1984-08-28 2024-10-11 01:29:13.000 1984-08-28 2024-10-11 01:29:13 +5354 5354 5355 535.4 1070.8 5354 1984-08-29 2024-10-11 01:29:14.000 1984-08-29 2024-10-11 01:29:14 +5355 5355 5356 535.5 1071 5355 1984-08-30 2024-10-11 01:29:15.000 1984-08-30 2024-10-11 01:29:15 +5356 5356 5357 535.6 1071.2 5356 1984-08-31 2024-10-11 01:29:16.000 1984-08-31 2024-10-11 01:29:16 +5357 5357 5358 535.7 1071.4 5357 1984-09-01 2024-10-11 01:29:17.000 1984-09-01 2024-10-11 01:29:17 +5358 5358 5359 535.8 1071.6000000000001 5358 1984-09-02 2024-10-11 01:29:18.000 1984-09-02 2024-10-11 01:29:18 +5359 5359 5360 535.9 1071.8 5359 1984-09-03 2024-10-11 01:29:19.000 1984-09-03 2024-10-11 01:29:19 +5360 5360 5361 536 1072 5360 1984-09-04 2024-10-11 01:29:20.000 1984-09-04 2024-10-11 01:29:20 +5361 5361 5362 536.1 1072.2 5361 1984-09-05 2024-10-11 01:29:21.000 1984-09-05 2024-10-11 01:29:21 +5362 5362 5363 536.2 1072.4 5362 1984-09-06 2024-10-11 01:29:22.000 1984-09-06 2024-10-11 01:29:22 +5363 5363 5364 536.3 1072.6000000000001 5363 1984-09-07 2024-10-11 01:29:23.000 1984-09-07 2024-10-11 01:29:23 +5364 5364 5365 536.4 1072.8 5364 1984-09-08 2024-10-11 01:29:24.000 1984-09-08 2024-10-11 01:29:24 +5365 5365 5366 536.5 1073 5365 1984-09-09 2024-10-11 01:29:25.000 1984-09-09 2024-10-11 01:29:25 +5366 5366 5367 536.6 1073.2 5366 1984-09-10 2024-10-11 01:29:26.000 1984-09-10 2024-10-11 01:29:26 +5367 5367 5368 536.7 1073.4 5367 1984-09-11 2024-10-11 01:29:27.000 1984-09-11 2024-10-11 01:29:27 +5368 5368 5369 536.8 1073.6000000000001 5368 1984-09-12 2024-10-11 01:29:28.000 1984-09-12 2024-10-11 01:29:28 +5369 5369 5370 536.9 1073.8 5369 1984-09-13 2024-10-11 01:29:29.000 1984-09-13 2024-10-11 01:29:29 +5370 5370 5371 537 1074 5370 1984-09-14 2024-10-11 01:29:30.000 1984-09-14 2024-10-11 01:29:30 +5371 5371 5372 537.1 1074.2 5371 1984-09-15 2024-10-11 01:29:31.000 1984-09-15 2024-10-11 01:29:31 +5372 5372 5373 537.2 1074.4 5372 1984-09-16 2024-10-11 01:29:32.000 1984-09-16 2024-10-11 01:29:32 +5373 5373 5374 537.3 1074.6000000000001 5373 1984-09-17 2024-10-11 01:29:33.000 1984-09-17 2024-10-11 01:29:33 +5374 5374 5375 537.4 1074.8 5374 1984-09-18 2024-10-11 01:29:34.000 1984-09-18 2024-10-11 01:29:34 +5375 5375 5376 537.5 1075 5375 1984-09-19 2024-10-11 01:29:35.000 1984-09-19 2024-10-11 01:29:35 +5376 5376 5377 537.6 1075.2 5376 1984-09-20 2024-10-11 01:29:36.000 1984-09-20 2024-10-11 01:29:36 +5377 5377 5378 537.7 1075.4 5377 1984-09-21 2024-10-11 01:29:37.000 1984-09-21 2024-10-11 01:29:37 +5378 5378 5379 537.8 1075.6000000000001 5378 1984-09-22 2024-10-11 01:29:38.000 1984-09-22 2024-10-11 01:29:38 +5379 5379 5380 537.9 1075.8 5379 1984-09-23 2024-10-11 01:29:39.000 1984-09-23 2024-10-11 01:29:39 +5380 5380 5381 538 1076 5380 1984-09-24 2024-10-11 01:29:40.000 1984-09-24 2024-10-11 01:29:40 +5381 5381 5382 538.1 1076.2 5381 1984-09-25 2024-10-11 01:29:41.000 1984-09-25 2024-10-11 01:29:41 +5382 5382 5383 538.2 1076.4 5382 1984-09-26 2024-10-11 01:29:42.000 1984-09-26 2024-10-11 01:29:42 +5383 5383 5384 538.3 1076.6000000000001 5383 1984-09-27 2024-10-11 01:29:43.000 1984-09-27 2024-10-11 01:29:43 +5384 5384 5385 538.4 1076.8 5384 1984-09-28 2024-10-11 01:29:44.000 1984-09-28 2024-10-11 01:29:44 +5385 5385 5386 538.5 1077 5385 1984-09-29 2024-10-11 01:29:45.000 1984-09-29 2024-10-11 01:29:45 +5386 5386 5387 538.6 1077.2 5386 1984-09-30 2024-10-11 01:29:46.000 1984-09-30 2024-10-11 01:29:46 +5387 5387 5388 538.7 1077.4 5387 1984-10-01 2024-10-11 01:29:47.000 1984-10-01 2024-10-11 01:29:47 +5388 5388 5389 538.8 1077.6000000000001 5388 1984-10-02 2024-10-11 01:29:48.000 1984-10-02 2024-10-11 01:29:48 +5389 5389 5390 538.9 1077.8 5389 1984-10-03 2024-10-11 01:29:49.000 1984-10-03 2024-10-11 01:29:49 +5390 5390 5391 539 1078 5390 1984-10-04 2024-10-11 01:29:50.000 1984-10-04 2024-10-11 01:29:50 +5391 5391 5392 539.1 1078.2 5391 1984-10-05 2024-10-11 01:29:51.000 1984-10-05 2024-10-11 01:29:51 +5392 5392 5393 539.2 1078.4 5392 1984-10-06 2024-10-11 01:29:52.000 1984-10-06 2024-10-11 01:29:52 +5393 5393 5394 539.3 1078.6000000000001 5393 1984-10-07 2024-10-11 01:29:53.000 1984-10-07 2024-10-11 01:29:53 +5394 5394 5395 539.4 1078.8 5394 1984-10-08 2024-10-11 01:29:54.000 1984-10-08 2024-10-11 01:29:54 +5395 5395 5396 539.5 1079 5395 1984-10-09 2024-10-11 01:29:55.000 1984-10-09 2024-10-11 01:29:55 +5396 5396 5397 539.6 1079.2 5396 1984-10-10 2024-10-11 01:29:56.000 1984-10-10 2024-10-11 01:29:56 +5397 5397 5398 539.7 1079.4 5397 1984-10-11 2024-10-11 01:29:57.000 1984-10-11 2024-10-11 01:29:57 +5398 5398 5399 539.8 1079.6000000000001 5398 1984-10-12 2024-10-11 01:29:58.000 1984-10-12 2024-10-11 01:29:58 +5399 5399 5400 539.9 1079.8 5399 1984-10-13 2024-10-11 01:29:59.000 1984-10-13 2024-10-11 01:29:59 +5400 5400 5401 540 1080 5400 1984-10-14 2024-10-11 01:30:00.000 1984-10-14 2024-10-11 01:30:00 +5401 5401 5402 540.1 1080.2 5401 1984-10-15 2024-10-11 01:30:01.000 1984-10-15 2024-10-11 01:30:01 +5402 5402 5403 540.2 1080.4 5402 1984-10-16 2024-10-11 01:30:02.000 1984-10-16 2024-10-11 01:30:02 +5403 5403 5404 540.3 1080.6000000000001 5403 1984-10-17 2024-10-11 01:30:03.000 1984-10-17 2024-10-11 01:30:03 +5404 5404 5405 540.4 1080.8 5404 1984-10-18 2024-10-11 01:30:04.000 1984-10-18 2024-10-11 01:30:04 +5405 5405 5406 540.5 1081 5405 1984-10-19 2024-10-11 01:30:05.000 1984-10-19 2024-10-11 01:30:05 +5406 5406 5407 540.6 1081.2 5406 1984-10-20 2024-10-11 01:30:06.000 1984-10-20 2024-10-11 01:30:06 +5407 5407 5408 540.7 1081.4 5407 1984-10-21 2024-10-11 01:30:07.000 1984-10-21 2024-10-11 01:30:07 +5408 5408 5409 540.8 1081.6000000000001 5408 1984-10-22 2024-10-11 01:30:08.000 1984-10-22 2024-10-11 01:30:08 +5409 5409 5410 540.9 1081.8 5409 1984-10-23 2024-10-11 01:30:09.000 1984-10-23 2024-10-11 01:30:09 +5410 5410 5411 541 1082 5410 1984-10-24 2024-10-11 01:30:10.000 1984-10-24 2024-10-11 01:30:10 +5411 5411 5412 541.1 1082.2 5411 1984-10-25 2024-10-11 01:30:11.000 1984-10-25 2024-10-11 01:30:11 +5412 5412 5413 541.2 1082.4 5412 1984-10-26 2024-10-11 01:30:12.000 1984-10-26 2024-10-11 01:30:12 +5413 5413 5414 541.3 1082.6000000000001 5413 1984-10-27 2024-10-11 01:30:13.000 1984-10-27 2024-10-11 01:30:13 +5414 5414 5415 541.4 1082.8 5414 1984-10-28 2024-10-11 01:30:14.000 1984-10-28 2024-10-11 01:30:14 +5415 5415 5416 541.5 1083 5415 1984-10-29 2024-10-11 01:30:15.000 1984-10-29 2024-10-11 01:30:15 +5416 5416 5417 541.6 1083.2 5416 1984-10-30 2024-10-11 01:30:16.000 1984-10-30 2024-10-11 01:30:16 +5417 5417 5418 541.7 1083.4 5417 1984-10-31 2024-10-11 01:30:17.000 1984-10-31 2024-10-11 01:30:17 +5418 5418 5419 541.8 1083.6000000000001 5418 1984-11-01 2024-10-11 01:30:18.000 1984-11-01 2024-10-11 01:30:18 +5419 5419 5420 541.9 1083.8 5419 1984-11-02 2024-10-11 01:30:19.000 1984-11-02 2024-10-11 01:30:19 +5420 5420 5421 542 1084 5420 1984-11-03 2024-10-11 01:30:20.000 1984-11-03 2024-10-11 01:30:20 +5421 5421 5422 542.1 1084.2 5421 1984-11-04 2024-10-11 01:30:21.000 1984-11-04 2024-10-11 01:30:21 +5422 5422 5423 542.2 1084.4 5422 1984-11-05 2024-10-11 01:30:22.000 1984-11-05 2024-10-11 01:30:22 +5423 5423 5424 542.3 1084.6000000000001 5423 1984-11-06 2024-10-11 01:30:23.000 1984-11-06 2024-10-11 01:30:23 +5424 5424 5425 542.4 1084.8 5424 1984-11-07 2024-10-11 01:30:24.000 1984-11-07 2024-10-11 01:30:24 +5425 5425 5426 542.5 1085 5425 1984-11-08 2024-10-11 01:30:25.000 1984-11-08 2024-10-11 01:30:25 +5426 5426 5427 542.6 1085.2 5426 1984-11-09 2024-10-11 01:30:26.000 1984-11-09 2024-10-11 01:30:26 +5427 5427 5428 542.7 1085.4 5427 1984-11-10 2024-10-11 01:30:27.000 1984-11-10 2024-10-11 01:30:27 +5428 5428 5429 542.8 1085.6000000000001 5428 1984-11-11 2024-10-11 01:30:28.000 1984-11-11 2024-10-11 01:30:28 +5429 5429 5430 542.9 1085.8 5429 1984-11-12 2024-10-11 01:30:29.000 1984-11-12 2024-10-11 01:30:29 +5430 5430 5431 543 1086 5430 1984-11-13 2024-10-11 01:30:30.000 1984-11-13 2024-10-11 01:30:30 +5431 5431 5432 543.1 1086.2 5431 1984-11-14 2024-10-11 01:30:31.000 1984-11-14 2024-10-11 01:30:31 +5432 5432 5433 543.2 1086.4 5432 1984-11-15 2024-10-11 01:30:32.000 1984-11-15 2024-10-11 01:30:32 +5433 5433 5434 543.3 1086.6000000000001 5433 1984-11-16 2024-10-11 01:30:33.000 1984-11-16 2024-10-11 01:30:33 +5434 5434 5435 543.4 1086.8 5434 1984-11-17 2024-10-11 01:30:34.000 1984-11-17 2024-10-11 01:30:34 +5435 5435 5436 543.5 1087 5435 1984-11-18 2024-10-11 01:30:35.000 1984-11-18 2024-10-11 01:30:35 +5436 5436 5437 543.6 1087.2 5436 1984-11-19 2024-10-11 01:30:36.000 1984-11-19 2024-10-11 01:30:36 +5437 5437 5438 543.7 1087.4 5437 1984-11-20 2024-10-11 01:30:37.000 1984-11-20 2024-10-11 01:30:37 +5438 5438 5439 543.8 1087.6000000000001 5438 1984-11-21 2024-10-11 01:30:38.000 1984-11-21 2024-10-11 01:30:38 +5439 5439 5440 543.9 1087.8 5439 1984-11-22 2024-10-11 01:30:39.000 1984-11-22 2024-10-11 01:30:39 +5440 5440 5441 544 1088 5440 1984-11-23 2024-10-11 01:30:40.000 1984-11-23 2024-10-11 01:30:40 +5441 5441 5442 544.1 1088.2 5441 1984-11-24 2024-10-11 01:30:41.000 1984-11-24 2024-10-11 01:30:41 +5442 5442 5443 544.2 1088.4 5442 1984-11-25 2024-10-11 01:30:42.000 1984-11-25 2024-10-11 01:30:42 +5443 5443 5444 544.3 1088.6000000000001 5443 1984-11-26 2024-10-11 01:30:43.000 1984-11-26 2024-10-11 01:30:43 +5444 5444 5445 544.4 1088.8 5444 1984-11-27 2024-10-11 01:30:44.000 1984-11-27 2024-10-11 01:30:44 +5445 5445 5446 544.5 1089 5445 1984-11-28 2024-10-11 01:30:45.000 1984-11-28 2024-10-11 01:30:45 +5446 5446 5447 544.6 1089.2 5446 1984-11-29 2024-10-11 01:30:46.000 1984-11-29 2024-10-11 01:30:46 +5447 5447 5448 544.7 1089.4 5447 1984-11-30 2024-10-11 01:30:47.000 1984-11-30 2024-10-11 01:30:47 +5448 5448 5449 544.8 1089.6000000000001 5448 1984-12-01 2024-10-11 01:30:48.000 1984-12-01 2024-10-11 01:30:48 +5449 5449 5450 544.9 1089.8 5449 1984-12-02 2024-10-11 01:30:49.000 1984-12-02 2024-10-11 01:30:49 +5450 5450 5451 545 1090 5450 1984-12-03 2024-10-11 01:30:50.000 1984-12-03 2024-10-11 01:30:50 +5451 5451 5452 545.1 1090.2 5451 1984-12-04 2024-10-11 01:30:51.000 1984-12-04 2024-10-11 01:30:51 +5452 5452 5453 545.2 1090.4 5452 1984-12-05 2024-10-11 01:30:52.000 1984-12-05 2024-10-11 01:30:52 +5453 5453 5454 545.3 1090.6000000000001 5453 1984-12-06 2024-10-11 01:30:53.000 1984-12-06 2024-10-11 01:30:53 +5454 5454 5455 545.4 1090.8 5454 1984-12-07 2024-10-11 01:30:54.000 1984-12-07 2024-10-11 01:30:54 +5455 5455 5456 545.5 1091 5455 1984-12-08 2024-10-11 01:30:55.000 1984-12-08 2024-10-11 01:30:55 +5456 5456 5457 545.6 1091.2 5456 1984-12-09 2024-10-11 01:30:56.000 1984-12-09 2024-10-11 01:30:56 +5457 5457 5458 545.7 1091.4 5457 1984-12-10 2024-10-11 01:30:57.000 1984-12-10 2024-10-11 01:30:57 +5458 5458 5459 545.8 1091.6000000000001 5458 1984-12-11 2024-10-11 01:30:58.000 1984-12-11 2024-10-11 01:30:58 +5459 5459 5460 545.9 1091.8 5459 1984-12-12 2024-10-11 01:30:59.000 1984-12-12 2024-10-11 01:30:59 +5460 5460 5461 546 1092 5460 1984-12-13 2024-10-11 01:31:00.000 1984-12-13 2024-10-11 01:31:00 +5461 5461 5462 546.1 1092.2 5461 1984-12-14 2024-10-11 01:31:01.000 1984-12-14 2024-10-11 01:31:01 +5462 5462 5463 546.2 1092.4 5462 1984-12-15 2024-10-11 01:31:02.000 1984-12-15 2024-10-11 01:31:02 +5463 5463 5464 546.3 1092.6000000000001 5463 1984-12-16 2024-10-11 01:31:03.000 1984-12-16 2024-10-11 01:31:03 +5464 5464 5465 546.4 1092.8 5464 1984-12-17 2024-10-11 01:31:04.000 1984-12-17 2024-10-11 01:31:04 +5465 5465 5466 546.5 1093 5465 1984-12-18 2024-10-11 01:31:05.000 1984-12-18 2024-10-11 01:31:05 +5466 5466 5467 546.6 1093.2 5466 1984-12-19 2024-10-11 01:31:06.000 1984-12-19 2024-10-11 01:31:06 +5467 5467 5468 546.7 1093.4 5467 1984-12-20 2024-10-11 01:31:07.000 1984-12-20 2024-10-11 01:31:07 +5468 5468 5469 546.8 1093.6000000000001 5468 1984-12-21 2024-10-11 01:31:08.000 1984-12-21 2024-10-11 01:31:08 +5469 5469 5470 546.9 1093.8 5469 1984-12-22 2024-10-11 01:31:09.000 1984-12-22 2024-10-11 01:31:09 +5470 5470 5471 547 1094 5470 1984-12-23 2024-10-11 01:31:10.000 1984-12-23 2024-10-11 01:31:10 +5471 5471 5472 547.1 1094.2 5471 1984-12-24 2024-10-11 01:31:11.000 1984-12-24 2024-10-11 01:31:11 +5472 5472 5473 547.2 1094.4 5472 1984-12-25 2024-10-11 01:31:12.000 1984-12-25 2024-10-11 01:31:12 +5473 5473 5474 547.3 1094.6000000000001 5473 1984-12-26 2024-10-11 01:31:13.000 1984-12-26 2024-10-11 01:31:13 +5474 5474 5475 547.4 1094.8 5474 1984-12-27 2024-10-11 01:31:14.000 1984-12-27 2024-10-11 01:31:14 +5475 5475 5476 547.5 1095 5475 1984-12-28 2024-10-11 01:31:15.000 1984-12-28 2024-10-11 01:31:15 +5476 5476 5477 547.6 1095.2 5476 1984-12-29 2024-10-11 01:31:16.000 1984-12-29 2024-10-11 01:31:16 +5477 5477 5478 547.7 1095.4 5477 1984-12-30 2024-10-11 01:31:17.000 1984-12-30 2024-10-11 01:31:17 +5478 5478 5479 547.8 1095.6000000000001 5478 1984-12-31 2024-10-11 01:31:18.000 1984-12-31 2024-10-11 01:31:18 +5479 5479 5480 547.9 1095.8 5479 1985-01-01 2024-10-11 01:31:19.000 1985-01-01 2024-10-11 01:31:19 +5480 5480 5481 548 1096 5480 1985-01-02 2024-10-11 01:31:20.000 1985-01-02 2024-10-11 01:31:20 +5481 5481 5482 548.1 1096.2 5481 1985-01-03 2024-10-11 01:31:21.000 1985-01-03 2024-10-11 01:31:21 +5482 5482 5483 548.2 1096.4 5482 1985-01-04 2024-10-11 01:31:22.000 1985-01-04 2024-10-11 01:31:22 +5483 5483 5484 548.3 1096.6000000000001 5483 1985-01-05 2024-10-11 01:31:23.000 1985-01-05 2024-10-11 01:31:23 +5484 5484 5485 548.4 1096.8 5484 1985-01-06 2024-10-11 01:31:24.000 1985-01-06 2024-10-11 01:31:24 +5485 5485 5486 548.5 1097 5485 1985-01-07 2024-10-11 01:31:25.000 1985-01-07 2024-10-11 01:31:25 +5486 5486 5487 548.6 1097.2 5486 1985-01-08 2024-10-11 01:31:26.000 1985-01-08 2024-10-11 01:31:26 +5487 5487 5488 548.7 1097.4 5487 1985-01-09 2024-10-11 01:31:27.000 1985-01-09 2024-10-11 01:31:27 +5488 5488 5489 548.8 1097.6000000000001 5488 1985-01-10 2024-10-11 01:31:28.000 1985-01-10 2024-10-11 01:31:28 +5489 5489 5490 548.9 1097.8 5489 1985-01-11 2024-10-11 01:31:29.000 1985-01-11 2024-10-11 01:31:29 +5490 5490 5491 549 1098 5490 1985-01-12 2024-10-11 01:31:30.000 1985-01-12 2024-10-11 01:31:30 +5491 5491 5492 549.1 1098.2 5491 1985-01-13 2024-10-11 01:31:31.000 1985-01-13 2024-10-11 01:31:31 +5492 5492 5493 549.2 1098.4 5492 1985-01-14 2024-10-11 01:31:32.000 1985-01-14 2024-10-11 01:31:32 +5493 5493 5494 549.3 1098.6000000000001 5493 1985-01-15 2024-10-11 01:31:33.000 1985-01-15 2024-10-11 01:31:33 +5494 5494 5495 549.4 1098.8 5494 1985-01-16 2024-10-11 01:31:34.000 1985-01-16 2024-10-11 01:31:34 +5495 5495 5496 549.5 1099 5495 1985-01-17 2024-10-11 01:31:35.000 1985-01-17 2024-10-11 01:31:35 +5496 5496 5497 549.6 1099.2 5496 1985-01-18 2024-10-11 01:31:36.000 1985-01-18 2024-10-11 01:31:36 +5497 5497 5498 549.7 1099.4 5497 1985-01-19 2024-10-11 01:31:37.000 1985-01-19 2024-10-11 01:31:37 +5498 5498 5499 549.8 1099.6000000000001 5498 1985-01-20 2024-10-11 01:31:38.000 1985-01-20 2024-10-11 01:31:38 +5499 5499 5500 549.9 1099.8 5499 1985-01-21 2024-10-11 01:31:39.000 1985-01-21 2024-10-11 01:31:39 +5500 5500 5501 550 1100 5500 1985-01-22 2024-10-11 01:31:40.000 1985-01-22 2024-10-11 01:31:40 +5501 5501 5502 550.1 1100.2 5501 1985-01-23 2024-10-11 01:31:41.000 1985-01-23 2024-10-11 01:31:41 +5502 5502 5503 550.2 1100.4 5502 1985-01-24 2024-10-11 01:31:42.000 1985-01-24 2024-10-11 01:31:42 +5503 5503 5504 550.3 1100.6000000000001 5503 1985-01-25 2024-10-11 01:31:43.000 1985-01-25 2024-10-11 01:31:43 +5504 5504 5505 550.4 1100.8 5504 1985-01-26 2024-10-11 01:31:44.000 1985-01-26 2024-10-11 01:31:44 +5505 5505 5506 550.5 1101 5505 1985-01-27 2024-10-11 01:31:45.000 1985-01-27 2024-10-11 01:31:45 +5506 5506 5507 550.6 1101.2 5506 1985-01-28 2024-10-11 01:31:46.000 1985-01-28 2024-10-11 01:31:46 +5507 5507 5508 550.7 1101.4 5507 1985-01-29 2024-10-11 01:31:47.000 1985-01-29 2024-10-11 01:31:47 +5508 5508 5509 550.8 1101.6000000000001 5508 1985-01-30 2024-10-11 01:31:48.000 1985-01-30 2024-10-11 01:31:48 +5509 5509 5510 550.9 1101.8 5509 1985-01-31 2024-10-11 01:31:49.000 1985-01-31 2024-10-11 01:31:49 +5510 5510 5511 551 1102 5510 1985-02-01 2024-10-11 01:31:50.000 1985-02-01 2024-10-11 01:31:50 +5511 5511 5512 551.1 1102.2 5511 1985-02-02 2024-10-11 01:31:51.000 1985-02-02 2024-10-11 01:31:51 +5512 5512 5513 551.2 1102.4 5512 1985-02-03 2024-10-11 01:31:52.000 1985-02-03 2024-10-11 01:31:52 +5513 5513 5514 551.3 1102.6000000000001 5513 1985-02-04 2024-10-11 01:31:53.000 1985-02-04 2024-10-11 01:31:53 +5514 5514 5515 551.4 1102.8 5514 1985-02-05 2024-10-11 01:31:54.000 1985-02-05 2024-10-11 01:31:54 +5515 5515 5516 551.5 1103 5515 1985-02-06 2024-10-11 01:31:55.000 1985-02-06 2024-10-11 01:31:55 +5516 5516 5517 551.6 1103.2 5516 1985-02-07 2024-10-11 01:31:56.000 1985-02-07 2024-10-11 01:31:56 +5517 5517 5518 551.7 1103.4 5517 1985-02-08 2024-10-11 01:31:57.000 1985-02-08 2024-10-11 01:31:57 +5518 5518 5519 551.8 1103.6000000000001 5518 1985-02-09 2024-10-11 01:31:58.000 1985-02-09 2024-10-11 01:31:58 +5519 5519 5520 551.9 1103.8 5519 1985-02-10 2024-10-11 01:31:59.000 1985-02-10 2024-10-11 01:31:59 +5520 5520 5521 552 1104 5520 1985-02-11 2024-10-11 01:32:00.000 1985-02-11 2024-10-11 01:32:00 +5521 5521 5522 552.1 1104.2 5521 1985-02-12 2024-10-11 01:32:01.000 1985-02-12 2024-10-11 01:32:01 +5522 5522 5523 552.2 1104.4 5522 1985-02-13 2024-10-11 01:32:02.000 1985-02-13 2024-10-11 01:32:02 +5523 5523 5524 552.3 1104.6000000000001 5523 1985-02-14 2024-10-11 01:32:03.000 1985-02-14 2024-10-11 01:32:03 +5524 5524 5525 552.4 1104.8 5524 1985-02-15 2024-10-11 01:32:04.000 1985-02-15 2024-10-11 01:32:04 +5525 5525 5526 552.5 1105 5525 1985-02-16 2024-10-11 01:32:05.000 1985-02-16 2024-10-11 01:32:05 +5526 5526 5527 552.6 1105.2 5526 1985-02-17 2024-10-11 01:32:06.000 1985-02-17 2024-10-11 01:32:06 +5527 5527 5528 552.7 1105.4 5527 1985-02-18 2024-10-11 01:32:07.000 1985-02-18 2024-10-11 01:32:07 +5528 5528 5529 552.8 1105.6000000000001 5528 1985-02-19 2024-10-11 01:32:08.000 1985-02-19 2024-10-11 01:32:08 +5529 5529 5530 552.9 1105.8 5529 1985-02-20 2024-10-11 01:32:09.000 1985-02-20 2024-10-11 01:32:09 +5530 5530 5531 553 1106 5530 1985-02-21 2024-10-11 01:32:10.000 1985-02-21 2024-10-11 01:32:10 +5531 5531 5532 553.1 1106.2 5531 1985-02-22 2024-10-11 01:32:11.000 1985-02-22 2024-10-11 01:32:11 +5532 5532 5533 553.2 1106.4 5532 1985-02-23 2024-10-11 01:32:12.000 1985-02-23 2024-10-11 01:32:12 +5533 5533 5534 553.3 1106.6000000000001 5533 1985-02-24 2024-10-11 01:32:13.000 1985-02-24 2024-10-11 01:32:13 +5534 5534 5535 553.4 1106.8 5534 1985-02-25 2024-10-11 01:32:14.000 1985-02-25 2024-10-11 01:32:14 +5535 5535 5536 553.5 1107 5535 1985-02-26 2024-10-11 01:32:15.000 1985-02-26 2024-10-11 01:32:15 +5536 5536 5537 553.6 1107.2 5536 1985-02-27 2024-10-11 01:32:16.000 1985-02-27 2024-10-11 01:32:16 +5537 5537 5538 553.7 1107.4 5537 1985-02-28 2024-10-11 01:32:17.000 1985-02-28 2024-10-11 01:32:17 +5538 5538 5539 553.8 1107.6000000000001 5538 1985-03-01 2024-10-11 01:32:18.000 1985-03-01 2024-10-11 01:32:18 +5539 5539 5540 553.9 1107.8 5539 1985-03-02 2024-10-11 01:32:19.000 1985-03-02 2024-10-11 01:32:19 +5540 5540 5541 554 1108 5540 1985-03-03 2024-10-11 01:32:20.000 1985-03-03 2024-10-11 01:32:20 +5541 5541 5542 554.1 1108.2 5541 1985-03-04 2024-10-11 01:32:21.000 1985-03-04 2024-10-11 01:32:21 +5542 5542 5543 554.2 1108.4 5542 1985-03-05 2024-10-11 01:32:22.000 1985-03-05 2024-10-11 01:32:22 +5543 5543 5544 554.3 1108.6000000000001 5543 1985-03-06 2024-10-11 01:32:23.000 1985-03-06 2024-10-11 01:32:23 +5544 5544 5545 554.4 1108.8 5544 1985-03-07 2024-10-11 01:32:24.000 1985-03-07 2024-10-11 01:32:24 +5545 5545 5546 554.5 1109 5545 1985-03-08 2024-10-11 01:32:25.000 1985-03-08 2024-10-11 01:32:25 +5546 5546 5547 554.6 1109.2 5546 1985-03-09 2024-10-11 01:32:26.000 1985-03-09 2024-10-11 01:32:26 +5547 5547 5548 554.7 1109.4 5547 1985-03-10 2024-10-11 01:32:27.000 1985-03-10 2024-10-11 01:32:27 +5548 5548 5549 554.8 1109.6000000000001 5548 1985-03-11 2024-10-11 01:32:28.000 1985-03-11 2024-10-11 01:32:28 +5549 5549 5550 554.9 1109.8 5549 1985-03-12 2024-10-11 01:32:29.000 1985-03-12 2024-10-11 01:32:29 +5550 5550 5551 555 1110 5550 1985-03-13 2024-10-11 01:32:30.000 1985-03-13 2024-10-11 01:32:30 +5551 5551 5552 555.1 1110.2 5551 1985-03-14 2024-10-11 01:32:31.000 1985-03-14 2024-10-11 01:32:31 +5552 5552 5553 555.2 1110.4 5552 1985-03-15 2024-10-11 01:32:32.000 1985-03-15 2024-10-11 01:32:32 +5553 5553 5554 555.3 1110.6000000000001 5553 1985-03-16 2024-10-11 01:32:33.000 1985-03-16 2024-10-11 01:32:33 +5554 5554 5555 555.4 1110.8 5554 1985-03-17 2024-10-11 01:32:34.000 1985-03-17 2024-10-11 01:32:34 +5555 5555 5556 555.5 1111 5555 1985-03-18 2024-10-11 01:32:35.000 1985-03-18 2024-10-11 01:32:35 +5556 5556 5557 555.6 1111.2 5556 1985-03-19 2024-10-11 01:32:36.000 1985-03-19 2024-10-11 01:32:36 +5557 5557 5558 555.7 1111.4 5557 1985-03-20 2024-10-11 01:32:37.000 1985-03-20 2024-10-11 01:32:37 +5558 5558 5559 555.8 1111.6000000000001 5558 1985-03-21 2024-10-11 01:32:38.000 1985-03-21 2024-10-11 01:32:38 +5559 5559 5560 555.9 1111.8 5559 1985-03-22 2024-10-11 01:32:39.000 1985-03-22 2024-10-11 01:32:39 +5560 5560 5561 556 1112 5560 1985-03-23 2024-10-11 01:32:40.000 1985-03-23 2024-10-11 01:32:40 +5561 5561 5562 556.1 1112.2 5561 1985-03-24 2024-10-11 01:32:41.000 1985-03-24 2024-10-11 01:32:41 +5562 5562 5563 556.2 1112.4 5562 1985-03-25 2024-10-11 01:32:42.000 1985-03-25 2024-10-11 01:32:42 +5563 5563 5564 556.3 1112.6000000000001 5563 1985-03-26 2024-10-11 01:32:43.000 1985-03-26 2024-10-11 01:32:43 +5564 5564 5565 556.4 1112.8 5564 1985-03-27 2024-10-11 01:32:44.000 1985-03-27 2024-10-11 01:32:44 +5565 5565 5566 556.5 1113 5565 1985-03-28 2024-10-11 01:32:45.000 1985-03-28 2024-10-11 01:32:45 +5566 5566 5567 556.6 1113.2 5566 1985-03-29 2024-10-11 01:32:46.000 1985-03-29 2024-10-11 01:32:46 +5567 5567 5568 556.7 1113.4 5567 1985-03-30 2024-10-11 01:32:47.000 1985-03-30 2024-10-11 01:32:47 +5568 5568 5569 556.8 1113.6000000000001 5568 1985-03-31 2024-10-11 01:32:48.000 1985-03-31 2024-10-11 01:32:48 +5569 5569 5570 556.9 1113.8 5569 1985-04-01 2024-10-11 01:32:49.000 1985-04-01 2024-10-11 01:32:49 +5570 5570 5571 557 1114 5570 1985-04-02 2024-10-11 01:32:50.000 1985-04-02 2024-10-11 01:32:50 +5571 5571 5572 557.1 1114.2 5571 1985-04-03 2024-10-11 01:32:51.000 1985-04-03 2024-10-11 01:32:51 +5572 5572 5573 557.2 1114.4 5572 1985-04-04 2024-10-11 01:32:52.000 1985-04-04 2024-10-11 01:32:52 +5573 5573 5574 557.3 1114.6000000000001 5573 1985-04-05 2024-10-11 01:32:53.000 1985-04-05 2024-10-11 01:32:53 +5574 5574 5575 557.4 1114.8 5574 1985-04-06 2024-10-11 01:32:54.000 1985-04-06 2024-10-11 01:32:54 +5575 5575 5576 557.5 1115 5575 1985-04-07 2024-10-11 01:32:55.000 1985-04-07 2024-10-11 01:32:55 +5576 5576 5577 557.6 1115.2 5576 1985-04-08 2024-10-11 01:32:56.000 1985-04-08 2024-10-11 01:32:56 +5577 5577 5578 557.7 1115.4 5577 1985-04-09 2024-10-11 01:32:57.000 1985-04-09 2024-10-11 01:32:57 +5578 5578 5579 557.8 1115.6000000000001 5578 1985-04-10 2024-10-11 01:32:58.000 1985-04-10 2024-10-11 01:32:58 +5579 5579 5580 557.9 1115.8 5579 1985-04-11 2024-10-11 01:32:59.000 1985-04-11 2024-10-11 01:32:59 +5580 5580 5581 558 1116 5580 1985-04-12 2024-10-11 01:33:00.000 1985-04-12 2024-10-11 01:33:00 +5581 5581 5582 558.1 1116.2 5581 1985-04-13 2024-10-11 01:33:01.000 1985-04-13 2024-10-11 01:33:01 +5582 5582 5583 558.2 1116.4 5582 1985-04-14 2024-10-11 01:33:02.000 1985-04-14 2024-10-11 01:33:02 +5583 5583 5584 558.3 1116.6000000000001 5583 1985-04-15 2024-10-11 01:33:03.000 1985-04-15 2024-10-11 01:33:03 +5584 5584 5585 558.4 1116.8 5584 1985-04-16 2024-10-11 01:33:04.000 1985-04-16 2024-10-11 01:33:04 +5585 5585 5586 558.5 1117 5585 1985-04-17 2024-10-11 01:33:05.000 1985-04-17 2024-10-11 01:33:05 +5586 5586 5587 558.6 1117.2 5586 1985-04-18 2024-10-11 01:33:06.000 1985-04-18 2024-10-11 01:33:06 +5587 5587 5588 558.7 1117.4 5587 1985-04-19 2024-10-11 01:33:07.000 1985-04-19 2024-10-11 01:33:07 +5588 5588 5589 558.8 1117.6000000000001 5588 1985-04-20 2024-10-11 01:33:08.000 1985-04-20 2024-10-11 01:33:08 +5589 5589 5590 558.9 1117.8 5589 1985-04-21 2024-10-11 01:33:09.000 1985-04-21 2024-10-11 01:33:09 +5590 5590 5591 559 1118 5590 1985-04-22 2024-10-11 01:33:10.000 1985-04-22 2024-10-11 01:33:10 +5591 5591 5592 559.1 1118.2 5591 1985-04-23 2024-10-11 01:33:11.000 1985-04-23 2024-10-11 01:33:11 +5592 5592 5593 559.2 1118.4 5592 1985-04-24 2024-10-11 01:33:12.000 1985-04-24 2024-10-11 01:33:12 +5593 5593 5594 559.3 1118.6000000000001 5593 1985-04-25 2024-10-11 01:33:13.000 1985-04-25 2024-10-11 01:33:13 +5594 5594 5595 559.4 1118.8 5594 1985-04-26 2024-10-11 01:33:14.000 1985-04-26 2024-10-11 01:33:14 +5595 5595 5596 559.5 1119 5595 1985-04-27 2024-10-11 01:33:15.000 1985-04-27 2024-10-11 01:33:15 +5596 5596 5597 559.6 1119.2 5596 1985-04-28 2024-10-11 01:33:16.000 1985-04-28 2024-10-11 01:33:16 +5597 5597 5598 559.7 1119.4 5597 1985-04-29 2024-10-11 01:33:17.000 1985-04-29 2024-10-11 01:33:17 +5598 5598 5599 559.8 1119.6000000000001 5598 1985-04-30 2024-10-11 01:33:18.000 1985-04-30 2024-10-11 01:33:18 +5599 5599 5600 559.9 1119.8 5599 1985-05-01 2024-10-11 01:33:19.000 1985-05-01 2024-10-11 01:33:19 +5600 5600 5601 560 1120 5600 1985-05-02 2024-10-11 01:33:20.000 1985-05-02 2024-10-11 01:33:20 +5601 5601 5602 560.1 1120.2 5601 1985-05-03 2024-10-11 01:33:21.000 1985-05-03 2024-10-11 01:33:21 +5602 5602 5603 560.2 1120.4 5602 1985-05-04 2024-10-11 01:33:22.000 1985-05-04 2024-10-11 01:33:22 +5603 5603 5604 560.3 1120.6000000000001 5603 1985-05-05 2024-10-11 01:33:23.000 1985-05-05 2024-10-11 01:33:23 +5604 5604 5605 560.4 1120.8 5604 1985-05-06 2024-10-11 01:33:24.000 1985-05-06 2024-10-11 01:33:24 +5605 5605 5606 560.5 1121 5605 1985-05-07 2024-10-11 01:33:25.000 1985-05-07 2024-10-11 01:33:25 +5606 5606 5607 560.6 1121.2 5606 1985-05-08 2024-10-11 01:33:26.000 1985-05-08 2024-10-11 01:33:26 +5607 5607 5608 560.7 1121.4 5607 1985-05-09 2024-10-11 01:33:27.000 1985-05-09 2024-10-11 01:33:27 +5608 5608 5609 560.8 1121.6000000000001 5608 1985-05-10 2024-10-11 01:33:28.000 1985-05-10 2024-10-11 01:33:28 +5609 5609 5610 560.9 1121.8 5609 1985-05-11 2024-10-11 01:33:29.000 1985-05-11 2024-10-11 01:33:29 +5610 5610 5611 561 1122 5610 1985-05-12 2024-10-11 01:33:30.000 1985-05-12 2024-10-11 01:33:30 +5611 5611 5612 561.1 1122.2 5611 1985-05-13 2024-10-11 01:33:31.000 1985-05-13 2024-10-11 01:33:31 +5612 5612 5613 561.2 1122.4 5612 1985-05-14 2024-10-11 01:33:32.000 1985-05-14 2024-10-11 01:33:32 +5613 5613 5614 561.3 1122.6000000000001 5613 1985-05-15 2024-10-11 01:33:33.000 1985-05-15 2024-10-11 01:33:33 +5614 5614 5615 561.4 1122.8 5614 1985-05-16 2024-10-11 01:33:34.000 1985-05-16 2024-10-11 01:33:34 +5615 5615 5616 561.5 1123 5615 1985-05-17 2024-10-11 01:33:35.000 1985-05-17 2024-10-11 01:33:35 +5616 5616 5617 561.6 1123.2 5616 1985-05-18 2024-10-11 01:33:36.000 1985-05-18 2024-10-11 01:33:36 +5617 5617 5618 561.7 1123.4 5617 1985-05-19 2024-10-11 01:33:37.000 1985-05-19 2024-10-11 01:33:37 +5618 5618 5619 561.8 1123.6000000000001 5618 1985-05-20 2024-10-11 01:33:38.000 1985-05-20 2024-10-11 01:33:38 +5619 5619 5620 561.9 1123.8 5619 1985-05-21 2024-10-11 01:33:39.000 1985-05-21 2024-10-11 01:33:39 +5620 5620 5621 562 1124 5620 1985-05-22 2024-10-11 01:33:40.000 1985-05-22 2024-10-11 01:33:40 +5621 5621 5622 562.1 1124.2 5621 1985-05-23 2024-10-11 01:33:41.000 1985-05-23 2024-10-11 01:33:41 +5622 5622 5623 562.2 1124.4 5622 1985-05-24 2024-10-11 01:33:42.000 1985-05-24 2024-10-11 01:33:42 +5623 5623 5624 562.3 1124.6000000000001 5623 1985-05-25 2024-10-11 01:33:43.000 1985-05-25 2024-10-11 01:33:43 +5624 5624 5625 562.4 1124.8 5624 1985-05-26 2024-10-11 01:33:44.000 1985-05-26 2024-10-11 01:33:44 +5625 5625 5626 562.5 1125 5625 1985-05-27 2024-10-11 01:33:45.000 1985-05-27 2024-10-11 01:33:45 +5626 5626 5627 562.6 1125.2 5626 1985-05-28 2024-10-11 01:33:46.000 1985-05-28 2024-10-11 01:33:46 +5627 5627 5628 562.7 1125.4 5627 1985-05-29 2024-10-11 01:33:47.000 1985-05-29 2024-10-11 01:33:47 +5628 5628 5629 562.8 1125.6000000000001 5628 1985-05-30 2024-10-11 01:33:48.000 1985-05-30 2024-10-11 01:33:48 +5629 5629 5630 562.9 1125.8 5629 1985-05-31 2024-10-11 01:33:49.000 1985-05-31 2024-10-11 01:33:49 +5630 5630 5631 563 1126 5630 1985-06-01 2024-10-11 01:33:50.000 1985-06-01 2024-10-11 01:33:50 +5631 5631 5632 563.1 1126.2 5631 1985-06-02 2024-10-11 01:33:51.000 1985-06-02 2024-10-11 01:33:51 +5632 5632 5633 563.2 1126.4 5632 1985-06-03 2024-10-11 01:33:52.000 1985-06-03 2024-10-11 01:33:52 +5633 5633 5634 563.3 1126.6000000000001 5633 1985-06-04 2024-10-11 01:33:53.000 1985-06-04 2024-10-11 01:33:53 +5634 5634 5635 563.4 1126.8 5634 1985-06-05 2024-10-11 01:33:54.000 1985-06-05 2024-10-11 01:33:54 +5635 5635 5636 563.5 1127 5635 1985-06-06 2024-10-11 01:33:55.000 1985-06-06 2024-10-11 01:33:55 +5636 5636 5637 563.6 1127.2 5636 1985-06-07 2024-10-11 01:33:56.000 1985-06-07 2024-10-11 01:33:56 +5637 5637 5638 563.7 1127.4 5637 1985-06-08 2024-10-11 01:33:57.000 1985-06-08 2024-10-11 01:33:57 +5638 5638 5639 563.8 1127.6000000000001 5638 1985-06-09 2024-10-11 01:33:58.000 1985-06-09 2024-10-11 01:33:58 +5639 5639 5640 563.9 1127.8 5639 1985-06-10 2024-10-11 01:33:59.000 1985-06-10 2024-10-11 01:33:59 +5640 5640 5641 564 1128 5640 1985-06-11 2024-10-11 01:34:00.000 1985-06-11 2024-10-11 01:34:00 +5641 5641 5642 564.1 1128.2 5641 1985-06-12 2024-10-11 01:34:01.000 1985-06-12 2024-10-11 01:34:01 +5642 5642 5643 564.2 1128.4 5642 1985-06-13 2024-10-11 01:34:02.000 1985-06-13 2024-10-11 01:34:02 +5643 5643 5644 564.3 1128.6000000000001 5643 1985-06-14 2024-10-11 01:34:03.000 1985-06-14 2024-10-11 01:34:03 +5644 5644 5645 564.4 1128.8 5644 1985-06-15 2024-10-11 01:34:04.000 1985-06-15 2024-10-11 01:34:04 +5645 5645 5646 564.5 1129 5645 1985-06-16 2024-10-11 01:34:05.000 1985-06-16 2024-10-11 01:34:05 +5646 5646 5647 564.6 1129.2 5646 1985-06-17 2024-10-11 01:34:06.000 1985-06-17 2024-10-11 01:34:06 +5647 5647 5648 564.7 1129.4 5647 1985-06-18 2024-10-11 01:34:07.000 1985-06-18 2024-10-11 01:34:07 +5648 5648 5649 564.8 1129.6000000000001 5648 1985-06-19 2024-10-11 01:34:08.000 1985-06-19 2024-10-11 01:34:08 +5649 5649 5650 564.9 1129.8 5649 1985-06-20 2024-10-11 01:34:09.000 1985-06-20 2024-10-11 01:34:09 +5650 5650 5651 565 1130 5650 1985-06-21 2024-10-11 01:34:10.000 1985-06-21 2024-10-11 01:34:10 +5651 5651 5652 565.1 1130.2 5651 1985-06-22 2024-10-11 01:34:11.000 1985-06-22 2024-10-11 01:34:11 +5652 5652 5653 565.2 1130.4 5652 1985-06-23 2024-10-11 01:34:12.000 1985-06-23 2024-10-11 01:34:12 +5653 5653 5654 565.3 1130.6000000000001 5653 1985-06-24 2024-10-11 01:34:13.000 1985-06-24 2024-10-11 01:34:13 +5654 5654 5655 565.4 1130.8 5654 1985-06-25 2024-10-11 01:34:14.000 1985-06-25 2024-10-11 01:34:14 +5655 5655 5656 565.5 1131 5655 1985-06-26 2024-10-11 01:34:15.000 1985-06-26 2024-10-11 01:34:15 +5656 5656 5657 565.6 1131.2 5656 1985-06-27 2024-10-11 01:34:16.000 1985-06-27 2024-10-11 01:34:16 +5657 5657 5658 565.7 1131.4 5657 1985-06-28 2024-10-11 01:34:17.000 1985-06-28 2024-10-11 01:34:17 +5658 5658 5659 565.8 1131.6000000000001 5658 1985-06-29 2024-10-11 01:34:18.000 1985-06-29 2024-10-11 01:34:18 +5659 5659 5660 565.9 1131.8 5659 1985-06-30 2024-10-11 01:34:19.000 1985-06-30 2024-10-11 01:34:19 +5660 5660 5661 566 1132 5660 1985-07-01 2024-10-11 01:34:20.000 1985-07-01 2024-10-11 01:34:20 +5661 5661 5662 566.1 1132.2 5661 1985-07-02 2024-10-11 01:34:21.000 1985-07-02 2024-10-11 01:34:21 +5662 5662 5663 566.2 1132.4 5662 1985-07-03 2024-10-11 01:34:22.000 1985-07-03 2024-10-11 01:34:22 +5663 5663 5664 566.3 1132.6000000000001 5663 1985-07-04 2024-10-11 01:34:23.000 1985-07-04 2024-10-11 01:34:23 +5664 5664 5665 566.4 1132.8 5664 1985-07-05 2024-10-11 01:34:24.000 1985-07-05 2024-10-11 01:34:24 +5665 5665 5666 566.5 1133 5665 1985-07-06 2024-10-11 01:34:25.000 1985-07-06 2024-10-11 01:34:25 +5666 5666 5667 566.6 1133.2 5666 1985-07-07 2024-10-11 01:34:26.000 1985-07-07 2024-10-11 01:34:26 +5667 5667 5668 566.7 1133.4 5667 1985-07-08 2024-10-11 01:34:27.000 1985-07-08 2024-10-11 01:34:27 +5668 5668 5669 566.8 1133.6000000000001 5668 1985-07-09 2024-10-11 01:34:28.000 1985-07-09 2024-10-11 01:34:28 +5669 5669 5670 566.9 1133.8 5669 1985-07-10 2024-10-11 01:34:29.000 1985-07-10 2024-10-11 01:34:29 +5670 5670 5671 567 1134 5670 1985-07-11 2024-10-11 01:34:30.000 1985-07-11 2024-10-11 01:34:30 +5671 5671 5672 567.1 1134.2 5671 1985-07-12 2024-10-11 01:34:31.000 1985-07-12 2024-10-11 01:34:31 +5672 5672 5673 567.2 1134.4 5672 1985-07-13 2024-10-11 01:34:32.000 1985-07-13 2024-10-11 01:34:32 +5673 5673 5674 567.3 1134.6000000000001 5673 1985-07-14 2024-10-11 01:34:33.000 1985-07-14 2024-10-11 01:34:33 +5674 5674 5675 567.4 1134.8 5674 1985-07-15 2024-10-11 01:34:34.000 1985-07-15 2024-10-11 01:34:34 +5675 5675 5676 567.5 1135 5675 1985-07-16 2024-10-11 01:34:35.000 1985-07-16 2024-10-11 01:34:35 +5676 5676 5677 567.6 1135.2 5676 1985-07-17 2024-10-11 01:34:36.000 1985-07-17 2024-10-11 01:34:36 +5677 5677 5678 567.7 1135.4 5677 1985-07-18 2024-10-11 01:34:37.000 1985-07-18 2024-10-11 01:34:37 +5678 5678 5679 567.8 1135.6000000000001 5678 1985-07-19 2024-10-11 01:34:38.000 1985-07-19 2024-10-11 01:34:38 +5679 5679 5680 567.9 1135.8 5679 1985-07-20 2024-10-11 01:34:39.000 1985-07-20 2024-10-11 01:34:39 +5680 5680 5681 568 1136 5680 1985-07-21 2024-10-11 01:34:40.000 1985-07-21 2024-10-11 01:34:40 +5681 5681 5682 568.1 1136.2 5681 1985-07-22 2024-10-11 01:34:41.000 1985-07-22 2024-10-11 01:34:41 +5682 5682 5683 568.2 1136.4 5682 1985-07-23 2024-10-11 01:34:42.000 1985-07-23 2024-10-11 01:34:42 +5683 5683 5684 568.3 1136.6000000000001 5683 1985-07-24 2024-10-11 01:34:43.000 1985-07-24 2024-10-11 01:34:43 +5684 5684 5685 568.4 1136.8 5684 1985-07-25 2024-10-11 01:34:44.000 1985-07-25 2024-10-11 01:34:44 +5685 5685 5686 568.5 1137 5685 1985-07-26 2024-10-11 01:34:45.000 1985-07-26 2024-10-11 01:34:45 +5686 5686 5687 568.6 1137.2 5686 1985-07-27 2024-10-11 01:34:46.000 1985-07-27 2024-10-11 01:34:46 +5687 5687 5688 568.7 1137.4 5687 1985-07-28 2024-10-11 01:34:47.000 1985-07-28 2024-10-11 01:34:47 +5688 5688 5689 568.8 1137.6000000000001 5688 1985-07-29 2024-10-11 01:34:48.000 1985-07-29 2024-10-11 01:34:48 +5689 5689 5690 568.9 1137.8 5689 1985-07-30 2024-10-11 01:34:49.000 1985-07-30 2024-10-11 01:34:49 +5690 5690 5691 569 1138 5690 1985-07-31 2024-10-11 01:34:50.000 1985-07-31 2024-10-11 01:34:50 +5691 5691 5692 569.1 1138.2 5691 1985-08-01 2024-10-11 01:34:51.000 1985-08-01 2024-10-11 01:34:51 +5692 5692 5693 569.2 1138.4 5692 1985-08-02 2024-10-11 01:34:52.000 1985-08-02 2024-10-11 01:34:52 +5693 5693 5694 569.3 1138.6000000000001 5693 1985-08-03 2024-10-11 01:34:53.000 1985-08-03 2024-10-11 01:34:53 +5694 5694 5695 569.4 1138.8 5694 1985-08-04 2024-10-11 01:34:54.000 1985-08-04 2024-10-11 01:34:54 +5695 5695 5696 569.5 1139 5695 1985-08-05 2024-10-11 01:34:55.000 1985-08-05 2024-10-11 01:34:55 +5696 5696 5697 569.6 1139.2 5696 1985-08-06 2024-10-11 01:34:56.000 1985-08-06 2024-10-11 01:34:56 +5697 5697 5698 569.7 1139.4 5697 1985-08-07 2024-10-11 01:34:57.000 1985-08-07 2024-10-11 01:34:57 +5698 5698 5699 569.8 1139.6000000000001 5698 1985-08-08 2024-10-11 01:34:58.000 1985-08-08 2024-10-11 01:34:58 +5699 5699 5700 569.9 1139.8 5699 1985-08-09 2024-10-11 01:34:59.000 1985-08-09 2024-10-11 01:34:59 +5700 5700 5701 570 1140 5700 1985-08-10 2024-10-11 01:35:00.000 1985-08-10 2024-10-11 01:35:00 +5701 5701 5702 570.1 1140.2 5701 1985-08-11 2024-10-11 01:35:01.000 1985-08-11 2024-10-11 01:35:01 +5702 5702 5703 570.2 1140.4 5702 1985-08-12 2024-10-11 01:35:02.000 1985-08-12 2024-10-11 01:35:02 +5703 5703 5704 570.3 1140.6000000000001 5703 1985-08-13 2024-10-11 01:35:03.000 1985-08-13 2024-10-11 01:35:03 +5704 5704 5705 570.4 1140.8 5704 1985-08-14 2024-10-11 01:35:04.000 1985-08-14 2024-10-11 01:35:04 +5705 5705 5706 570.5 1141 5705 1985-08-15 2024-10-11 01:35:05.000 1985-08-15 2024-10-11 01:35:05 +5706 5706 5707 570.6 1141.2 5706 1985-08-16 2024-10-11 01:35:06.000 1985-08-16 2024-10-11 01:35:06 +5707 5707 5708 570.7 1141.4 5707 1985-08-17 2024-10-11 01:35:07.000 1985-08-17 2024-10-11 01:35:07 +5708 5708 5709 570.8 1141.6000000000001 5708 1985-08-18 2024-10-11 01:35:08.000 1985-08-18 2024-10-11 01:35:08 +5709 5709 5710 570.9 1141.8 5709 1985-08-19 2024-10-11 01:35:09.000 1985-08-19 2024-10-11 01:35:09 +5710 5710 5711 571 1142 5710 1985-08-20 2024-10-11 01:35:10.000 1985-08-20 2024-10-11 01:35:10 +5711 5711 5712 571.1 1142.2 5711 1985-08-21 2024-10-11 01:35:11.000 1985-08-21 2024-10-11 01:35:11 +5712 5712 5713 571.2 1142.4 5712 1985-08-22 2024-10-11 01:35:12.000 1985-08-22 2024-10-11 01:35:12 +5713 5713 5714 571.3 1142.6000000000001 5713 1985-08-23 2024-10-11 01:35:13.000 1985-08-23 2024-10-11 01:35:13 +5714 5714 5715 571.4 1142.8 5714 1985-08-24 2024-10-11 01:35:14.000 1985-08-24 2024-10-11 01:35:14 +5715 5715 5716 571.5 1143 5715 1985-08-25 2024-10-11 01:35:15.000 1985-08-25 2024-10-11 01:35:15 +5716 5716 5717 571.6 1143.2 5716 1985-08-26 2024-10-11 01:35:16.000 1985-08-26 2024-10-11 01:35:16 +5717 5717 5718 571.7 1143.4 5717 1985-08-27 2024-10-11 01:35:17.000 1985-08-27 2024-10-11 01:35:17 +5718 5718 5719 571.8 1143.6000000000001 5718 1985-08-28 2024-10-11 01:35:18.000 1985-08-28 2024-10-11 01:35:18 +5719 5719 5720 571.9 1143.8 5719 1985-08-29 2024-10-11 01:35:19.000 1985-08-29 2024-10-11 01:35:19 +5720 5720 5721 572 1144 5720 1985-08-30 2024-10-11 01:35:20.000 1985-08-30 2024-10-11 01:35:20 +5721 5721 5722 572.1 1144.2 5721 1985-08-31 2024-10-11 01:35:21.000 1985-08-31 2024-10-11 01:35:21 +5722 5722 5723 572.2 1144.4 5722 1985-09-01 2024-10-11 01:35:22.000 1985-09-01 2024-10-11 01:35:22 +5723 5723 5724 572.3 1144.6000000000001 5723 1985-09-02 2024-10-11 01:35:23.000 1985-09-02 2024-10-11 01:35:23 +5724 5724 5725 572.4 1144.8 5724 1985-09-03 2024-10-11 01:35:24.000 1985-09-03 2024-10-11 01:35:24 +5725 5725 5726 572.5 1145 5725 1985-09-04 2024-10-11 01:35:25.000 1985-09-04 2024-10-11 01:35:25 +5726 5726 5727 572.6 1145.2 5726 1985-09-05 2024-10-11 01:35:26.000 1985-09-05 2024-10-11 01:35:26 +5727 5727 5728 572.7 1145.4 5727 1985-09-06 2024-10-11 01:35:27.000 1985-09-06 2024-10-11 01:35:27 +5728 5728 5729 572.8 1145.6000000000001 5728 1985-09-07 2024-10-11 01:35:28.000 1985-09-07 2024-10-11 01:35:28 +5729 5729 5730 572.9 1145.8 5729 1985-09-08 2024-10-11 01:35:29.000 1985-09-08 2024-10-11 01:35:29 +5730 5730 5731 573 1146 5730 1985-09-09 2024-10-11 01:35:30.000 1985-09-09 2024-10-11 01:35:30 +5731 5731 5732 573.1 1146.2 5731 1985-09-10 2024-10-11 01:35:31.000 1985-09-10 2024-10-11 01:35:31 +5732 5732 5733 573.2 1146.4 5732 1985-09-11 2024-10-11 01:35:32.000 1985-09-11 2024-10-11 01:35:32 +5733 5733 5734 573.3 1146.6000000000001 5733 1985-09-12 2024-10-11 01:35:33.000 1985-09-12 2024-10-11 01:35:33 +5734 5734 5735 573.4 1146.8 5734 1985-09-13 2024-10-11 01:35:34.000 1985-09-13 2024-10-11 01:35:34 +5735 5735 5736 573.5 1147 5735 1985-09-14 2024-10-11 01:35:35.000 1985-09-14 2024-10-11 01:35:35 +5736 5736 5737 573.6 1147.2 5736 1985-09-15 2024-10-11 01:35:36.000 1985-09-15 2024-10-11 01:35:36 +5737 5737 5738 573.7 1147.4 5737 1985-09-16 2024-10-11 01:35:37.000 1985-09-16 2024-10-11 01:35:37 +5738 5738 5739 573.8 1147.6000000000001 5738 1985-09-17 2024-10-11 01:35:38.000 1985-09-17 2024-10-11 01:35:38 +5739 5739 5740 573.9 1147.8 5739 1985-09-18 2024-10-11 01:35:39.000 1985-09-18 2024-10-11 01:35:39 +5740 5740 5741 574 1148 5740 1985-09-19 2024-10-11 01:35:40.000 1985-09-19 2024-10-11 01:35:40 +5741 5741 5742 574.1 1148.2 5741 1985-09-20 2024-10-11 01:35:41.000 1985-09-20 2024-10-11 01:35:41 +5742 5742 5743 574.2 1148.4 5742 1985-09-21 2024-10-11 01:35:42.000 1985-09-21 2024-10-11 01:35:42 +5743 5743 5744 574.3 1148.6000000000001 5743 1985-09-22 2024-10-11 01:35:43.000 1985-09-22 2024-10-11 01:35:43 +5744 5744 5745 574.4 1148.8 5744 1985-09-23 2024-10-11 01:35:44.000 1985-09-23 2024-10-11 01:35:44 +5745 5745 5746 574.5 1149 5745 1985-09-24 2024-10-11 01:35:45.000 1985-09-24 2024-10-11 01:35:45 +5746 5746 5747 574.6 1149.2 5746 1985-09-25 2024-10-11 01:35:46.000 1985-09-25 2024-10-11 01:35:46 +5747 5747 5748 574.7 1149.4 5747 1985-09-26 2024-10-11 01:35:47.000 1985-09-26 2024-10-11 01:35:47 +5748 5748 5749 574.8 1149.6000000000001 5748 1985-09-27 2024-10-11 01:35:48.000 1985-09-27 2024-10-11 01:35:48 +5749 5749 5750 574.9 1149.8 5749 1985-09-28 2024-10-11 01:35:49.000 1985-09-28 2024-10-11 01:35:49 +5750 5750 5751 575 1150 5750 1985-09-29 2024-10-11 01:35:50.000 1985-09-29 2024-10-11 01:35:50 +5751 5751 5752 575.1 1150.2 5751 1985-09-30 2024-10-11 01:35:51.000 1985-09-30 2024-10-11 01:35:51 +5752 5752 5753 575.2 1150.4 5752 1985-10-01 2024-10-11 01:35:52.000 1985-10-01 2024-10-11 01:35:52 +5753 5753 5754 575.3 1150.6000000000001 5753 1985-10-02 2024-10-11 01:35:53.000 1985-10-02 2024-10-11 01:35:53 +5754 5754 5755 575.4 1150.8 5754 1985-10-03 2024-10-11 01:35:54.000 1985-10-03 2024-10-11 01:35:54 +5755 5755 5756 575.5 1151 5755 1985-10-04 2024-10-11 01:35:55.000 1985-10-04 2024-10-11 01:35:55 +5756 5756 5757 575.6 1151.2 5756 1985-10-05 2024-10-11 01:35:56.000 1985-10-05 2024-10-11 01:35:56 +5757 5757 5758 575.7 1151.4 5757 1985-10-06 2024-10-11 01:35:57.000 1985-10-06 2024-10-11 01:35:57 +5758 5758 5759 575.8 1151.6000000000001 5758 1985-10-07 2024-10-11 01:35:58.000 1985-10-07 2024-10-11 01:35:58 +5759 5759 5760 575.9 1151.8 5759 1985-10-08 2024-10-11 01:35:59.000 1985-10-08 2024-10-11 01:35:59 +5760 5760 5761 576 1152 5760 1985-10-09 2024-10-11 01:36:00.000 1985-10-09 2024-10-11 01:36:00 +5761 5761 5762 576.1 1152.2 5761 1985-10-10 2024-10-11 01:36:01.000 1985-10-10 2024-10-11 01:36:01 +5762 5762 5763 576.2 1152.4 5762 1985-10-11 2024-10-11 01:36:02.000 1985-10-11 2024-10-11 01:36:02 +5763 5763 5764 576.3 1152.6000000000001 5763 1985-10-12 2024-10-11 01:36:03.000 1985-10-12 2024-10-11 01:36:03 +5764 5764 5765 576.4 1152.8 5764 1985-10-13 2024-10-11 01:36:04.000 1985-10-13 2024-10-11 01:36:04 +5765 5765 5766 576.5 1153 5765 1985-10-14 2024-10-11 01:36:05.000 1985-10-14 2024-10-11 01:36:05 +5766 5766 5767 576.6 1153.2 5766 1985-10-15 2024-10-11 01:36:06.000 1985-10-15 2024-10-11 01:36:06 +5767 5767 5768 576.7 1153.4 5767 1985-10-16 2024-10-11 01:36:07.000 1985-10-16 2024-10-11 01:36:07 +5768 5768 5769 576.8 1153.6000000000001 5768 1985-10-17 2024-10-11 01:36:08.000 1985-10-17 2024-10-11 01:36:08 +5769 5769 5770 576.9 1153.8 5769 1985-10-18 2024-10-11 01:36:09.000 1985-10-18 2024-10-11 01:36:09 +5770 5770 5771 577 1154 5770 1985-10-19 2024-10-11 01:36:10.000 1985-10-19 2024-10-11 01:36:10 +5771 5771 5772 577.1 1154.2 5771 1985-10-20 2024-10-11 01:36:11.000 1985-10-20 2024-10-11 01:36:11 +5772 5772 5773 577.2 1154.4 5772 1985-10-21 2024-10-11 01:36:12.000 1985-10-21 2024-10-11 01:36:12 +5773 5773 5774 577.3 1154.6000000000001 5773 1985-10-22 2024-10-11 01:36:13.000 1985-10-22 2024-10-11 01:36:13 +5774 5774 5775 577.4 1154.8 5774 1985-10-23 2024-10-11 01:36:14.000 1985-10-23 2024-10-11 01:36:14 +5775 5775 5776 577.5 1155 5775 1985-10-24 2024-10-11 01:36:15.000 1985-10-24 2024-10-11 01:36:15 +5776 5776 5777 577.6 1155.2 5776 1985-10-25 2024-10-11 01:36:16.000 1985-10-25 2024-10-11 01:36:16 +5777 5777 5778 577.7 1155.4 5777 1985-10-26 2024-10-11 01:36:17.000 1985-10-26 2024-10-11 01:36:17 +5778 5778 5779 577.8 1155.6000000000001 5778 1985-10-27 2024-10-11 01:36:18.000 1985-10-27 2024-10-11 01:36:18 +5779 5779 5780 577.9 1155.8 5779 1985-10-28 2024-10-11 01:36:19.000 1985-10-28 2024-10-11 01:36:19 +5780 5780 5781 578 1156 5780 1985-10-29 2024-10-11 01:36:20.000 1985-10-29 2024-10-11 01:36:20 +5781 5781 5782 578.1 1156.2 5781 1985-10-30 2024-10-11 01:36:21.000 1985-10-30 2024-10-11 01:36:21 +5782 5782 5783 578.2 1156.4 5782 1985-10-31 2024-10-11 01:36:22.000 1985-10-31 2024-10-11 01:36:22 +5783 5783 5784 578.3 1156.6000000000001 5783 1985-11-01 2024-10-11 01:36:23.000 1985-11-01 2024-10-11 01:36:23 +5784 5784 5785 578.4 1156.8 5784 1985-11-02 2024-10-11 01:36:24.000 1985-11-02 2024-10-11 01:36:24 +5785 5785 5786 578.5 1157 5785 1985-11-03 2024-10-11 01:36:25.000 1985-11-03 2024-10-11 01:36:25 +5786 5786 5787 578.6 1157.2 5786 1985-11-04 2024-10-11 01:36:26.000 1985-11-04 2024-10-11 01:36:26 +5787 5787 5788 578.7 1157.4 5787 1985-11-05 2024-10-11 01:36:27.000 1985-11-05 2024-10-11 01:36:27 +5788 5788 5789 578.8 1157.6000000000001 5788 1985-11-06 2024-10-11 01:36:28.000 1985-11-06 2024-10-11 01:36:28 +5789 5789 5790 578.9 1157.8 5789 1985-11-07 2024-10-11 01:36:29.000 1985-11-07 2024-10-11 01:36:29 +5790 5790 5791 579 1158 5790 1985-11-08 2024-10-11 01:36:30.000 1985-11-08 2024-10-11 01:36:30 +5791 5791 5792 579.1 1158.2 5791 1985-11-09 2024-10-11 01:36:31.000 1985-11-09 2024-10-11 01:36:31 +5792 5792 5793 579.2 1158.4 5792 1985-11-10 2024-10-11 01:36:32.000 1985-11-10 2024-10-11 01:36:32 +5793 5793 5794 579.3 1158.6000000000001 5793 1985-11-11 2024-10-11 01:36:33.000 1985-11-11 2024-10-11 01:36:33 +5794 5794 5795 579.4 1158.8 5794 1985-11-12 2024-10-11 01:36:34.000 1985-11-12 2024-10-11 01:36:34 +5795 5795 5796 579.5 1159 5795 1985-11-13 2024-10-11 01:36:35.000 1985-11-13 2024-10-11 01:36:35 +5796 5796 5797 579.6 1159.2 5796 1985-11-14 2024-10-11 01:36:36.000 1985-11-14 2024-10-11 01:36:36 +5797 5797 5798 579.7 1159.4 5797 1985-11-15 2024-10-11 01:36:37.000 1985-11-15 2024-10-11 01:36:37 +5798 5798 5799 579.8 1159.6000000000001 5798 1985-11-16 2024-10-11 01:36:38.000 1985-11-16 2024-10-11 01:36:38 +5799 5799 5800 579.9 1159.8 5799 1985-11-17 2024-10-11 01:36:39.000 1985-11-17 2024-10-11 01:36:39 +5800 5800 5801 580 1160 5800 1985-11-18 2024-10-11 01:36:40.000 1985-11-18 2024-10-11 01:36:40 +5801 5801 5802 580.1 1160.2 5801 1985-11-19 2024-10-11 01:36:41.000 1985-11-19 2024-10-11 01:36:41 +5802 5802 5803 580.2 1160.4 5802 1985-11-20 2024-10-11 01:36:42.000 1985-11-20 2024-10-11 01:36:42 +5803 5803 5804 580.3 1160.6000000000001 5803 1985-11-21 2024-10-11 01:36:43.000 1985-11-21 2024-10-11 01:36:43 +5804 5804 5805 580.4 1160.8 5804 1985-11-22 2024-10-11 01:36:44.000 1985-11-22 2024-10-11 01:36:44 +5805 5805 5806 580.5 1161 5805 1985-11-23 2024-10-11 01:36:45.000 1985-11-23 2024-10-11 01:36:45 +5806 5806 5807 580.6 1161.2 5806 1985-11-24 2024-10-11 01:36:46.000 1985-11-24 2024-10-11 01:36:46 +5807 5807 5808 580.7 1161.4 5807 1985-11-25 2024-10-11 01:36:47.000 1985-11-25 2024-10-11 01:36:47 +5808 5808 5809 580.8 1161.6000000000001 5808 1985-11-26 2024-10-11 01:36:48.000 1985-11-26 2024-10-11 01:36:48 +5809 5809 5810 580.9 1161.8 5809 1985-11-27 2024-10-11 01:36:49.000 1985-11-27 2024-10-11 01:36:49 +5810 5810 5811 581 1162 5810 1985-11-28 2024-10-11 01:36:50.000 1985-11-28 2024-10-11 01:36:50 +5811 5811 5812 581.1 1162.2 5811 1985-11-29 2024-10-11 01:36:51.000 1985-11-29 2024-10-11 01:36:51 +5812 5812 5813 581.2 1162.4 5812 1985-11-30 2024-10-11 01:36:52.000 1985-11-30 2024-10-11 01:36:52 +5813 5813 5814 581.3 1162.6000000000001 5813 1985-12-01 2024-10-11 01:36:53.000 1985-12-01 2024-10-11 01:36:53 +5814 5814 5815 581.4 1162.8 5814 1985-12-02 2024-10-11 01:36:54.000 1985-12-02 2024-10-11 01:36:54 +5815 5815 5816 581.5 1163 5815 1985-12-03 2024-10-11 01:36:55.000 1985-12-03 2024-10-11 01:36:55 +5816 5816 5817 581.6 1163.2 5816 1985-12-04 2024-10-11 01:36:56.000 1985-12-04 2024-10-11 01:36:56 +5817 5817 5818 581.7 1163.4 5817 1985-12-05 2024-10-11 01:36:57.000 1985-12-05 2024-10-11 01:36:57 +5818 5818 5819 581.8 1163.6000000000001 5818 1985-12-06 2024-10-11 01:36:58.000 1985-12-06 2024-10-11 01:36:58 +5819 5819 5820 581.9 1163.8 5819 1985-12-07 2024-10-11 01:36:59.000 1985-12-07 2024-10-11 01:36:59 +5820 5820 5821 582 1164 5820 1985-12-08 2024-10-11 01:37:00.000 1985-12-08 2024-10-11 01:37:00 +5821 5821 5822 582.1 1164.2 5821 1985-12-09 2024-10-11 01:37:01.000 1985-12-09 2024-10-11 01:37:01 +5822 5822 5823 582.2 1164.4 5822 1985-12-10 2024-10-11 01:37:02.000 1985-12-10 2024-10-11 01:37:02 +5823 5823 5824 582.3 1164.6000000000001 5823 1985-12-11 2024-10-11 01:37:03.000 1985-12-11 2024-10-11 01:37:03 +5824 5824 5825 582.4 1164.8 5824 1985-12-12 2024-10-11 01:37:04.000 1985-12-12 2024-10-11 01:37:04 +5825 5825 5826 582.5 1165 5825 1985-12-13 2024-10-11 01:37:05.000 1985-12-13 2024-10-11 01:37:05 +5826 5826 5827 582.6 1165.2 5826 1985-12-14 2024-10-11 01:37:06.000 1985-12-14 2024-10-11 01:37:06 +5827 5827 5828 582.7 1165.4 5827 1985-12-15 2024-10-11 01:37:07.000 1985-12-15 2024-10-11 01:37:07 +5828 5828 5829 582.8 1165.6000000000001 5828 1985-12-16 2024-10-11 01:37:08.000 1985-12-16 2024-10-11 01:37:08 +5829 5829 5830 582.9 1165.8 5829 1985-12-17 2024-10-11 01:37:09.000 1985-12-17 2024-10-11 01:37:09 +5830 5830 5831 583 1166 5830 1985-12-18 2024-10-11 01:37:10.000 1985-12-18 2024-10-11 01:37:10 +5831 5831 5832 583.1 1166.2 5831 1985-12-19 2024-10-11 01:37:11.000 1985-12-19 2024-10-11 01:37:11 +5832 5832 5833 583.2 1166.4 5832 1985-12-20 2024-10-11 01:37:12.000 1985-12-20 2024-10-11 01:37:12 +5833 5833 5834 583.3 1166.6000000000001 5833 1985-12-21 2024-10-11 01:37:13.000 1985-12-21 2024-10-11 01:37:13 +5834 5834 5835 583.4 1166.8 5834 1985-12-22 2024-10-11 01:37:14.000 1985-12-22 2024-10-11 01:37:14 +5835 5835 5836 583.5 1167 5835 1985-12-23 2024-10-11 01:37:15.000 1985-12-23 2024-10-11 01:37:15 +5836 5836 5837 583.6 1167.2 5836 1985-12-24 2024-10-11 01:37:16.000 1985-12-24 2024-10-11 01:37:16 +5837 5837 5838 583.7 1167.4 5837 1985-12-25 2024-10-11 01:37:17.000 1985-12-25 2024-10-11 01:37:17 +5838 5838 5839 583.8 1167.6000000000001 5838 1985-12-26 2024-10-11 01:37:18.000 1985-12-26 2024-10-11 01:37:18 +5839 5839 5840 583.9 1167.8 5839 1985-12-27 2024-10-11 01:37:19.000 1985-12-27 2024-10-11 01:37:19 +5840 5840 5841 584 1168 5840 1985-12-28 2024-10-11 01:37:20.000 1985-12-28 2024-10-11 01:37:20 +5841 5841 5842 584.1 1168.2 5841 1985-12-29 2024-10-11 01:37:21.000 1985-12-29 2024-10-11 01:37:21 +5842 5842 5843 584.2 1168.4 5842 1985-12-30 2024-10-11 01:37:22.000 1985-12-30 2024-10-11 01:37:22 +5843 5843 5844 584.3 1168.6000000000001 5843 1985-12-31 2024-10-11 01:37:23.000 1985-12-31 2024-10-11 01:37:23 +5844 5844 5845 584.4 1168.8 5844 1986-01-01 2024-10-11 01:37:24.000 1986-01-01 2024-10-11 01:37:24 +5845 5845 5846 584.5 1169 5845 1986-01-02 2024-10-11 01:37:25.000 1986-01-02 2024-10-11 01:37:25 +5846 5846 5847 584.6 1169.2 5846 1986-01-03 2024-10-11 01:37:26.000 1986-01-03 2024-10-11 01:37:26 +5847 5847 5848 584.7 1169.4 5847 1986-01-04 2024-10-11 01:37:27.000 1986-01-04 2024-10-11 01:37:27 +5848 5848 5849 584.8 1169.6000000000001 5848 1986-01-05 2024-10-11 01:37:28.000 1986-01-05 2024-10-11 01:37:28 +5849 5849 5850 584.9 1169.8 5849 1986-01-06 2024-10-11 01:37:29.000 1986-01-06 2024-10-11 01:37:29 +5850 5850 5851 585 1170 5850 1986-01-07 2024-10-11 01:37:30.000 1986-01-07 2024-10-11 01:37:30 +5851 5851 5852 585.1 1170.2 5851 1986-01-08 2024-10-11 01:37:31.000 1986-01-08 2024-10-11 01:37:31 +5852 5852 5853 585.2 1170.4 5852 1986-01-09 2024-10-11 01:37:32.000 1986-01-09 2024-10-11 01:37:32 +5853 5853 5854 585.3 1170.6000000000001 5853 1986-01-10 2024-10-11 01:37:33.000 1986-01-10 2024-10-11 01:37:33 +5854 5854 5855 585.4 1170.8 5854 1986-01-11 2024-10-11 01:37:34.000 1986-01-11 2024-10-11 01:37:34 +5855 5855 5856 585.5 1171 5855 1986-01-12 2024-10-11 01:37:35.000 1986-01-12 2024-10-11 01:37:35 +5856 5856 5857 585.6 1171.2 5856 1986-01-13 2024-10-11 01:37:36.000 1986-01-13 2024-10-11 01:37:36 +5857 5857 5858 585.7 1171.4 5857 1986-01-14 2024-10-11 01:37:37.000 1986-01-14 2024-10-11 01:37:37 +5858 5858 5859 585.8 1171.6000000000001 5858 1986-01-15 2024-10-11 01:37:38.000 1986-01-15 2024-10-11 01:37:38 +5859 5859 5860 585.9 1171.8 5859 1986-01-16 2024-10-11 01:37:39.000 1986-01-16 2024-10-11 01:37:39 +5860 5860 5861 586 1172 5860 1986-01-17 2024-10-11 01:37:40.000 1986-01-17 2024-10-11 01:37:40 +5861 5861 5862 586.1 1172.2 5861 1986-01-18 2024-10-11 01:37:41.000 1986-01-18 2024-10-11 01:37:41 +5862 5862 5863 586.2 1172.4 5862 1986-01-19 2024-10-11 01:37:42.000 1986-01-19 2024-10-11 01:37:42 +5863 5863 5864 586.3 1172.6000000000001 5863 1986-01-20 2024-10-11 01:37:43.000 1986-01-20 2024-10-11 01:37:43 +5864 5864 5865 586.4 1172.8 5864 1986-01-21 2024-10-11 01:37:44.000 1986-01-21 2024-10-11 01:37:44 +5865 5865 5866 586.5 1173 5865 1986-01-22 2024-10-11 01:37:45.000 1986-01-22 2024-10-11 01:37:45 +5866 5866 5867 586.6 1173.2 5866 1986-01-23 2024-10-11 01:37:46.000 1986-01-23 2024-10-11 01:37:46 +5867 5867 5868 586.7 1173.4 5867 1986-01-24 2024-10-11 01:37:47.000 1986-01-24 2024-10-11 01:37:47 +5868 5868 5869 586.8 1173.6000000000001 5868 1986-01-25 2024-10-11 01:37:48.000 1986-01-25 2024-10-11 01:37:48 +5869 5869 5870 586.9 1173.8 5869 1986-01-26 2024-10-11 01:37:49.000 1986-01-26 2024-10-11 01:37:49 +5870 5870 5871 587 1174 5870 1986-01-27 2024-10-11 01:37:50.000 1986-01-27 2024-10-11 01:37:50 +5871 5871 5872 587.1 1174.2 5871 1986-01-28 2024-10-11 01:37:51.000 1986-01-28 2024-10-11 01:37:51 +5872 5872 5873 587.2 1174.4 5872 1986-01-29 2024-10-11 01:37:52.000 1986-01-29 2024-10-11 01:37:52 +5873 5873 5874 587.3 1174.6000000000001 5873 1986-01-30 2024-10-11 01:37:53.000 1986-01-30 2024-10-11 01:37:53 +5874 5874 5875 587.4 1174.8 5874 1986-01-31 2024-10-11 01:37:54.000 1986-01-31 2024-10-11 01:37:54 +5875 5875 5876 587.5 1175 5875 1986-02-01 2024-10-11 01:37:55.000 1986-02-01 2024-10-11 01:37:55 +5876 5876 5877 587.6 1175.2 5876 1986-02-02 2024-10-11 01:37:56.000 1986-02-02 2024-10-11 01:37:56 +5877 5877 5878 587.7 1175.4 5877 1986-02-03 2024-10-11 01:37:57.000 1986-02-03 2024-10-11 01:37:57 +5878 5878 5879 587.8 1175.6000000000001 5878 1986-02-04 2024-10-11 01:37:58.000 1986-02-04 2024-10-11 01:37:58 +5879 5879 5880 587.9 1175.8 5879 1986-02-05 2024-10-11 01:37:59.000 1986-02-05 2024-10-11 01:37:59 +5880 5880 5881 588 1176 5880 1986-02-06 2024-10-11 01:38:00.000 1986-02-06 2024-10-11 01:38:00 +5881 5881 5882 588.1 1176.2 5881 1986-02-07 2024-10-11 01:38:01.000 1986-02-07 2024-10-11 01:38:01 +5882 5882 5883 588.2 1176.4 5882 1986-02-08 2024-10-11 01:38:02.000 1986-02-08 2024-10-11 01:38:02 +5883 5883 5884 588.3 1176.6000000000001 5883 1986-02-09 2024-10-11 01:38:03.000 1986-02-09 2024-10-11 01:38:03 +5884 5884 5885 588.4 1176.8 5884 1986-02-10 2024-10-11 01:38:04.000 1986-02-10 2024-10-11 01:38:04 +5885 5885 5886 588.5 1177 5885 1986-02-11 2024-10-11 01:38:05.000 1986-02-11 2024-10-11 01:38:05 +5886 5886 5887 588.6 1177.2 5886 1986-02-12 2024-10-11 01:38:06.000 1986-02-12 2024-10-11 01:38:06 +5887 5887 5888 588.7 1177.4 5887 1986-02-13 2024-10-11 01:38:07.000 1986-02-13 2024-10-11 01:38:07 +5888 5888 5889 588.8 1177.6000000000001 5888 1986-02-14 2024-10-11 01:38:08.000 1986-02-14 2024-10-11 01:38:08 +5889 5889 5890 588.9 1177.8 5889 1986-02-15 2024-10-11 01:38:09.000 1986-02-15 2024-10-11 01:38:09 +5890 5890 5891 589 1178 5890 1986-02-16 2024-10-11 01:38:10.000 1986-02-16 2024-10-11 01:38:10 +5891 5891 5892 589.1 1178.2 5891 1986-02-17 2024-10-11 01:38:11.000 1986-02-17 2024-10-11 01:38:11 +5892 5892 5893 589.2 1178.4 5892 1986-02-18 2024-10-11 01:38:12.000 1986-02-18 2024-10-11 01:38:12 +5893 5893 5894 589.3 1178.6000000000001 5893 1986-02-19 2024-10-11 01:38:13.000 1986-02-19 2024-10-11 01:38:13 +5894 5894 5895 589.4 1178.8 5894 1986-02-20 2024-10-11 01:38:14.000 1986-02-20 2024-10-11 01:38:14 +5895 5895 5896 589.5 1179 5895 1986-02-21 2024-10-11 01:38:15.000 1986-02-21 2024-10-11 01:38:15 +5896 5896 5897 589.6 1179.2 5896 1986-02-22 2024-10-11 01:38:16.000 1986-02-22 2024-10-11 01:38:16 +5897 5897 5898 589.7 1179.4 5897 1986-02-23 2024-10-11 01:38:17.000 1986-02-23 2024-10-11 01:38:17 +5898 5898 5899 589.8 1179.6000000000001 5898 1986-02-24 2024-10-11 01:38:18.000 1986-02-24 2024-10-11 01:38:18 +5899 5899 5900 589.9 1179.8 5899 1986-02-25 2024-10-11 01:38:19.000 1986-02-25 2024-10-11 01:38:19 +5900 5900 5901 590 1180 5900 1986-02-26 2024-10-11 01:38:20.000 1986-02-26 2024-10-11 01:38:20 +5901 5901 5902 590.1 1180.2 5901 1986-02-27 2024-10-11 01:38:21.000 1986-02-27 2024-10-11 01:38:21 +5902 5902 5903 590.2 1180.4 5902 1986-02-28 2024-10-11 01:38:22.000 1986-02-28 2024-10-11 01:38:22 +5903 5903 5904 590.3 1180.6000000000001 5903 1986-03-01 2024-10-11 01:38:23.000 1986-03-01 2024-10-11 01:38:23 +5904 5904 5905 590.4 1180.8 5904 1986-03-02 2024-10-11 01:38:24.000 1986-03-02 2024-10-11 01:38:24 +5905 5905 5906 590.5 1181 5905 1986-03-03 2024-10-11 01:38:25.000 1986-03-03 2024-10-11 01:38:25 +5906 5906 5907 590.6 1181.2 5906 1986-03-04 2024-10-11 01:38:26.000 1986-03-04 2024-10-11 01:38:26 +5907 5907 5908 590.7 1181.4 5907 1986-03-05 2024-10-11 01:38:27.000 1986-03-05 2024-10-11 01:38:27 +5908 5908 5909 590.8 1181.6000000000001 5908 1986-03-06 2024-10-11 01:38:28.000 1986-03-06 2024-10-11 01:38:28 +5909 5909 5910 590.9 1181.8 5909 1986-03-07 2024-10-11 01:38:29.000 1986-03-07 2024-10-11 01:38:29 +5910 5910 5911 591 1182 5910 1986-03-08 2024-10-11 01:38:30.000 1986-03-08 2024-10-11 01:38:30 +5911 5911 5912 591.1 1182.2 5911 1986-03-09 2024-10-11 01:38:31.000 1986-03-09 2024-10-11 01:38:31 +5912 5912 5913 591.2 1182.4 5912 1986-03-10 2024-10-11 01:38:32.000 1986-03-10 2024-10-11 01:38:32 +5913 5913 5914 591.3 1182.6000000000001 5913 1986-03-11 2024-10-11 01:38:33.000 1986-03-11 2024-10-11 01:38:33 +5914 5914 5915 591.4 1182.8 5914 1986-03-12 2024-10-11 01:38:34.000 1986-03-12 2024-10-11 01:38:34 +5915 5915 5916 591.5 1183 5915 1986-03-13 2024-10-11 01:38:35.000 1986-03-13 2024-10-11 01:38:35 +5916 5916 5917 591.6 1183.2 5916 1986-03-14 2024-10-11 01:38:36.000 1986-03-14 2024-10-11 01:38:36 +5917 5917 5918 591.7 1183.4 5917 1986-03-15 2024-10-11 01:38:37.000 1986-03-15 2024-10-11 01:38:37 +5918 5918 5919 591.8 1183.6000000000001 5918 1986-03-16 2024-10-11 01:38:38.000 1986-03-16 2024-10-11 01:38:38 +5919 5919 5920 591.9 1183.8 5919 1986-03-17 2024-10-11 01:38:39.000 1986-03-17 2024-10-11 01:38:39 +5920 5920 5921 592 1184 5920 1986-03-18 2024-10-11 01:38:40.000 1986-03-18 2024-10-11 01:38:40 +5921 5921 5922 592.1 1184.2 5921 1986-03-19 2024-10-11 01:38:41.000 1986-03-19 2024-10-11 01:38:41 +5922 5922 5923 592.2 1184.4 5922 1986-03-20 2024-10-11 01:38:42.000 1986-03-20 2024-10-11 01:38:42 +5923 5923 5924 592.3 1184.6000000000001 5923 1986-03-21 2024-10-11 01:38:43.000 1986-03-21 2024-10-11 01:38:43 +5924 5924 5925 592.4 1184.8 5924 1986-03-22 2024-10-11 01:38:44.000 1986-03-22 2024-10-11 01:38:44 +5925 5925 5926 592.5 1185 5925 1986-03-23 2024-10-11 01:38:45.000 1986-03-23 2024-10-11 01:38:45 +5926 5926 5927 592.6 1185.2 5926 1986-03-24 2024-10-11 01:38:46.000 1986-03-24 2024-10-11 01:38:46 +5927 5927 5928 592.7 1185.4 5927 1986-03-25 2024-10-11 01:38:47.000 1986-03-25 2024-10-11 01:38:47 +5928 5928 5929 592.8 1185.6000000000001 5928 1986-03-26 2024-10-11 01:38:48.000 1986-03-26 2024-10-11 01:38:48 +5929 5929 5930 592.9 1185.8 5929 1986-03-27 2024-10-11 01:38:49.000 1986-03-27 2024-10-11 01:38:49 +5930 5930 5931 593 1186 5930 1986-03-28 2024-10-11 01:38:50.000 1986-03-28 2024-10-11 01:38:50 +5931 5931 5932 593.1 1186.2 5931 1986-03-29 2024-10-11 01:38:51.000 1986-03-29 2024-10-11 01:38:51 +5932 5932 5933 593.2 1186.4 5932 1986-03-30 2024-10-11 01:38:52.000 1986-03-30 2024-10-11 01:38:52 +5933 5933 5934 593.3 1186.6000000000001 5933 1986-03-31 2024-10-11 01:38:53.000 1986-03-31 2024-10-11 01:38:53 +5934 5934 5935 593.4 1186.8 5934 1986-04-01 2024-10-11 01:38:54.000 1986-04-01 2024-10-11 01:38:54 +5935 5935 5936 593.5 1187 5935 1986-04-02 2024-10-11 01:38:55.000 1986-04-02 2024-10-11 01:38:55 +5936 5936 5937 593.6 1187.2 5936 1986-04-03 2024-10-11 01:38:56.000 1986-04-03 2024-10-11 01:38:56 +5937 5937 5938 593.7 1187.4 5937 1986-04-04 2024-10-11 01:38:57.000 1986-04-04 2024-10-11 01:38:57 +5938 5938 5939 593.8 1187.6000000000001 5938 1986-04-05 2024-10-11 01:38:58.000 1986-04-05 2024-10-11 01:38:58 +5939 5939 5940 593.9 1187.8 5939 1986-04-06 2024-10-11 01:38:59.000 1986-04-06 2024-10-11 01:38:59 +5940 5940 5941 594 1188 5940 1986-04-07 2024-10-11 01:39:00.000 1986-04-07 2024-10-11 01:39:00 +5941 5941 5942 594.1 1188.2 5941 1986-04-08 2024-10-11 01:39:01.000 1986-04-08 2024-10-11 01:39:01 +5942 5942 5943 594.2 1188.4 5942 1986-04-09 2024-10-11 01:39:02.000 1986-04-09 2024-10-11 01:39:02 +5943 5943 5944 594.3 1188.6000000000001 5943 1986-04-10 2024-10-11 01:39:03.000 1986-04-10 2024-10-11 01:39:03 +5944 5944 5945 594.4 1188.8 5944 1986-04-11 2024-10-11 01:39:04.000 1986-04-11 2024-10-11 01:39:04 +5945 5945 5946 594.5 1189 5945 1986-04-12 2024-10-11 01:39:05.000 1986-04-12 2024-10-11 01:39:05 +5946 5946 5947 594.6 1189.2 5946 1986-04-13 2024-10-11 01:39:06.000 1986-04-13 2024-10-11 01:39:06 +5947 5947 5948 594.7 1189.4 5947 1986-04-14 2024-10-11 01:39:07.000 1986-04-14 2024-10-11 01:39:07 +5948 5948 5949 594.8 1189.6000000000001 5948 1986-04-15 2024-10-11 01:39:08.000 1986-04-15 2024-10-11 01:39:08 +5949 5949 5950 594.9 1189.8 5949 1986-04-16 2024-10-11 01:39:09.000 1986-04-16 2024-10-11 01:39:09 +5950 5950 5951 595 1190 5950 1986-04-17 2024-10-11 01:39:10.000 1986-04-17 2024-10-11 01:39:10 +5951 5951 5952 595.1 1190.2 5951 1986-04-18 2024-10-11 01:39:11.000 1986-04-18 2024-10-11 01:39:11 +5952 5952 5953 595.2 1190.4 5952 1986-04-19 2024-10-11 01:39:12.000 1986-04-19 2024-10-11 01:39:12 +5953 5953 5954 595.3 1190.6000000000001 5953 1986-04-20 2024-10-11 01:39:13.000 1986-04-20 2024-10-11 01:39:13 +5954 5954 5955 595.4 1190.8 5954 1986-04-21 2024-10-11 01:39:14.000 1986-04-21 2024-10-11 01:39:14 +5955 5955 5956 595.5 1191 5955 1986-04-22 2024-10-11 01:39:15.000 1986-04-22 2024-10-11 01:39:15 +5956 5956 5957 595.6 1191.2 5956 1986-04-23 2024-10-11 01:39:16.000 1986-04-23 2024-10-11 01:39:16 +5957 5957 5958 595.7 1191.4 5957 1986-04-24 2024-10-11 01:39:17.000 1986-04-24 2024-10-11 01:39:17 +5958 5958 5959 595.8 1191.6000000000001 5958 1986-04-25 2024-10-11 01:39:18.000 1986-04-25 2024-10-11 01:39:18 +5959 5959 5960 595.9 1191.8 5959 1986-04-26 2024-10-11 01:39:19.000 1986-04-26 2024-10-11 01:39:19 +5960 5960 5961 596 1192 5960 1986-04-27 2024-10-11 01:39:20.000 1986-04-27 2024-10-11 01:39:20 +5961 5961 5962 596.1 1192.2 5961 1986-04-28 2024-10-11 01:39:21.000 1986-04-28 2024-10-11 01:39:21 +5962 5962 5963 596.2 1192.4 5962 1986-04-29 2024-10-11 01:39:22.000 1986-04-29 2024-10-11 01:39:22 +5963 5963 5964 596.3 1192.6000000000001 5963 1986-04-30 2024-10-11 01:39:23.000 1986-04-30 2024-10-11 01:39:23 +5964 5964 5965 596.4 1192.8 5964 1986-05-01 2024-10-11 01:39:24.000 1986-05-01 2024-10-11 01:39:24 +5965 5965 5966 596.5 1193 5965 1986-05-02 2024-10-11 01:39:25.000 1986-05-02 2024-10-11 01:39:25 +5966 5966 5967 596.6 1193.2 5966 1986-05-03 2024-10-11 01:39:26.000 1986-05-03 2024-10-11 01:39:26 +5967 5967 5968 596.7 1193.4 5967 1986-05-04 2024-10-11 01:39:27.000 1986-05-04 2024-10-11 01:39:27 +5968 5968 5969 596.8 1193.6000000000001 5968 1986-05-05 2024-10-11 01:39:28.000 1986-05-05 2024-10-11 01:39:28 +5969 5969 5970 596.9 1193.8 5969 1986-05-06 2024-10-11 01:39:29.000 1986-05-06 2024-10-11 01:39:29 +5970 5970 5971 597 1194 5970 1986-05-07 2024-10-11 01:39:30.000 1986-05-07 2024-10-11 01:39:30 +5971 5971 5972 597.1 1194.2 5971 1986-05-08 2024-10-11 01:39:31.000 1986-05-08 2024-10-11 01:39:31 +5972 5972 5973 597.2 1194.4 5972 1986-05-09 2024-10-11 01:39:32.000 1986-05-09 2024-10-11 01:39:32 +5973 5973 5974 597.3 1194.6000000000001 5973 1986-05-10 2024-10-11 01:39:33.000 1986-05-10 2024-10-11 01:39:33 +5974 5974 5975 597.4 1194.8 5974 1986-05-11 2024-10-11 01:39:34.000 1986-05-11 2024-10-11 01:39:34 +5975 5975 5976 597.5 1195 5975 1986-05-12 2024-10-11 01:39:35.000 1986-05-12 2024-10-11 01:39:35 +5976 5976 5977 597.6 1195.2 5976 1986-05-13 2024-10-11 01:39:36.000 1986-05-13 2024-10-11 01:39:36 +5977 5977 5978 597.7 1195.4 5977 1986-05-14 2024-10-11 01:39:37.000 1986-05-14 2024-10-11 01:39:37 +5978 5978 5979 597.8 1195.6000000000001 5978 1986-05-15 2024-10-11 01:39:38.000 1986-05-15 2024-10-11 01:39:38 +5979 5979 5980 597.9 1195.8 5979 1986-05-16 2024-10-11 01:39:39.000 1986-05-16 2024-10-11 01:39:39 +5980 5980 5981 598 1196 5980 1986-05-17 2024-10-11 01:39:40.000 1986-05-17 2024-10-11 01:39:40 +5981 5981 5982 598.1 1196.2 5981 1986-05-18 2024-10-11 01:39:41.000 1986-05-18 2024-10-11 01:39:41 +5982 5982 5983 598.2 1196.4 5982 1986-05-19 2024-10-11 01:39:42.000 1986-05-19 2024-10-11 01:39:42 +5983 5983 5984 598.3 1196.6000000000001 5983 1986-05-20 2024-10-11 01:39:43.000 1986-05-20 2024-10-11 01:39:43 +5984 5984 5985 598.4 1196.8 5984 1986-05-21 2024-10-11 01:39:44.000 1986-05-21 2024-10-11 01:39:44 +5985 5985 5986 598.5 1197 5985 1986-05-22 2024-10-11 01:39:45.000 1986-05-22 2024-10-11 01:39:45 +5986 5986 5987 598.6 1197.2 5986 1986-05-23 2024-10-11 01:39:46.000 1986-05-23 2024-10-11 01:39:46 +5987 5987 5988 598.7 1197.4 5987 1986-05-24 2024-10-11 01:39:47.000 1986-05-24 2024-10-11 01:39:47 +5988 5988 5989 598.8 1197.6000000000001 5988 1986-05-25 2024-10-11 01:39:48.000 1986-05-25 2024-10-11 01:39:48 +5989 5989 5990 598.9 1197.8 5989 1986-05-26 2024-10-11 01:39:49.000 1986-05-26 2024-10-11 01:39:49 +5990 5990 5991 599 1198 5990 1986-05-27 2024-10-11 01:39:50.000 1986-05-27 2024-10-11 01:39:50 +5991 5991 5992 599.1 1198.2 5991 1986-05-28 2024-10-11 01:39:51.000 1986-05-28 2024-10-11 01:39:51 +5992 5992 5993 599.2 1198.4 5992 1986-05-29 2024-10-11 01:39:52.000 1986-05-29 2024-10-11 01:39:52 +5993 5993 5994 599.3 1198.6000000000001 5993 1986-05-30 2024-10-11 01:39:53.000 1986-05-30 2024-10-11 01:39:53 +5994 5994 5995 599.4 1198.8 5994 1986-05-31 2024-10-11 01:39:54.000 1986-05-31 2024-10-11 01:39:54 +5995 5995 5996 599.5 1199 5995 1986-06-01 2024-10-11 01:39:55.000 1986-06-01 2024-10-11 01:39:55 +5996 5996 5997 599.6 1199.2 5996 1986-06-02 2024-10-11 01:39:56.000 1986-06-02 2024-10-11 01:39:56 +5997 5997 5998 599.7 1199.4 5997 1986-06-03 2024-10-11 01:39:57.000 1986-06-03 2024-10-11 01:39:57 +5998 5998 5999 599.8 1199.6000000000001 5998 1986-06-04 2024-10-11 01:39:58.000 1986-06-04 2024-10-11 01:39:58 +5999 5999 6000 599.9 1199.8 5999 1986-06-05 2024-10-11 01:39:59.000 1986-06-05 2024-10-11 01:39:59 +6000 6000 6001 600 1200 6000 1986-06-06 2024-10-11 01:40:00.000 1986-06-06 2024-10-11 01:40:00 +6001 6001 6002 600.1 1200.2 6001 1986-06-07 2024-10-11 01:40:01.000 1986-06-07 2024-10-11 01:40:01 +6002 6002 6003 600.2 1200.4 6002 1986-06-08 2024-10-11 01:40:02.000 1986-06-08 2024-10-11 01:40:02 +6003 6003 6004 600.3 1200.6000000000001 6003 1986-06-09 2024-10-11 01:40:03.000 1986-06-09 2024-10-11 01:40:03 +6004 6004 6005 600.4 1200.8 6004 1986-06-10 2024-10-11 01:40:04.000 1986-06-10 2024-10-11 01:40:04 +6005 6005 6006 600.5 1201 6005 1986-06-11 2024-10-11 01:40:05.000 1986-06-11 2024-10-11 01:40:05 +6006 6006 6007 600.6 1201.2 6006 1986-06-12 2024-10-11 01:40:06.000 1986-06-12 2024-10-11 01:40:06 +6007 6007 6008 600.7 1201.4 6007 1986-06-13 2024-10-11 01:40:07.000 1986-06-13 2024-10-11 01:40:07 +6008 6008 6009 600.8 1201.6000000000001 6008 1986-06-14 2024-10-11 01:40:08.000 1986-06-14 2024-10-11 01:40:08 +6009 6009 6010 600.9 1201.8 6009 1986-06-15 2024-10-11 01:40:09.000 1986-06-15 2024-10-11 01:40:09 +6010 6010 6011 601 1202 6010 1986-06-16 2024-10-11 01:40:10.000 1986-06-16 2024-10-11 01:40:10 +6011 6011 6012 601.1 1202.2 6011 1986-06-17 2024-10-11 01:40:11.000 1986-06-17 2024-10-11 01:40:11 +6012 6012 6013 601.2 1202.4 6012 1986-06-18 2024-10-11 01:40:12.000 1986-06-18 2024-10-11 01:40:12 +6013 6013 6014 601.3 1202.6000000000001 6013 1986-06-19 2024-10-11 01:40:13.000 1986-06-19 2024-10-11 01:40:13 +6014 6014 6015 601.4 1202.8 6014 1986-06-20 2024-10-11 01:40:14.000 1986-06-20 2024-10-11 01:40:14 +6015 6015 6016 601.5 1203 6015 1986-06-21 2024-10-11 01:40:15.000 1986-06-21 2024-10-11 01:40:15 +6016 6016 6017 601.6 1203.2 6016 1986-06-22 2024-10-11 01:40:16.000 1986-06-22 2024-10-11 01:40:16 +6017 6017 6018 601.7 1203.4 6017 1986-06-23 2024-10-11 01:40:17.000 1986-06-23 2024-10-11 01:40:17 +6018 6018 6019 601.8 1203.6000000000001 6018 1986-06-24 2024-10-11 01:40:18.000 1986-06-24 2024-10-11 01:40:18 +6019 6019 6020 601.9 1203.8 6019 1986-06-25 2024-10-11 01:40:19.000 1986-06-25 2024-10-11 01:40:19 +6020 6020 6021 602 1204 6020 1986-06-26 2024-10-11 01:40:20.000 1986-06-26 2024-10-11 01:40:20 +6021 6021 6022 602.1 1204.2 6021 1986-06-27 2024-10-11 01:40:21.000 1986-06-27 2024-10-11 01:40:21 +6022 6022 6023 602.2 1204.4 6022 1986-06-28 2024-10-11 01:40:22.000 1986-06-28 2024-10-11 01:40:22 +6023 6023 6024 602.3 1204.6000000000001 6023 1986-06-29 2024-10-11 01:40:23.000 1986-06-29 2024-10-11 01:40:23 +6024 6024 6025 602.4 1204.8 6024 1986-06-30 2024-10-11 01:40:24.000 1986-06-30 2024-10-11 01:40:24 +6025 6025 6026 602.5 1205 6025 1986-07-01 2024-10-11 01:40:25.000 1986-07-01 2024-10-11 01:40:25 +6026 6026 6027 602.6 1205.2 6026 1986-07-02 2024-10-11 01:40:26.000 1986-07-02 2024-10-11 01:40:26 +6027 6027 6028 602.7 1205.4 6027 1986-07-03 2024-10-11 01:40:27.000 1986-07-03 2024-10-11 01:40:27 +6028 6028 6029 602.8 1205.6000000000001 6028 1986-07-04 2024-10-11 01:40:28.000 1986-07-04 2024-10-11 01:40:28 +6029 6029 6030 602.9 1205.8 6029 1986-07-05 2024-10-11 01:40:29.000 1986-07-05 2024-10-11 01:40:29 +6030 6030 6031 603 1206 6030 1986-07-06 2024-10-11 01:40:30.000 1986-07-06 2024-10-11 01:40:30 +6031 6031 6032 603.1 1206.2 6031 1986-07-07 2024-10-11 01:40:31.000 1986-07-07 2024-10-11 01:40:31 +6032 6032 6033 603.2 1206.4 6032 1986-07-08 2024-10-11 01:40:32.000 1986-07-08 2024-10-11 01:40:32 +6033 6033 6034 603.3 1206.6000000000001 6033 1986-07-09 2024-10-11 01:40:33.000 1986-07-09 2024-10-11 01:40:33 +6034 6034 6035 603.4 1206.8 6034 1986-07-10 2024-10-11 01:40:34.000 1986-07-10 2024-10-11 01:40:34 +6035 6035 6036 603.5 1207 6035 1986-07-11 2024-10-11 01:40:35.000 1986-07-11 2024-10-11 01:40:35 +6036 6036 6037 603.6 1207.2 6036 1986-07-12 2024-10-11 01:40:36.000 1986-07-12 2024-10-11 01:40:36 +6037 6037 6038 603.7 1207.4 6037 1986-07-13 2024-10-11 01:40:37.000 1986-07-13 2024-10-11 01:40:37 +6038 6038 6039 603.8 1207.6000000000001 6038 1986-07-14 2024-10-11 01:40:38.000 1986-07-14 2024-10-11 01:40:38 +6039 6039 6040 603.9 1207.8 6039 1986-07-15 2024-10-11 01:40:39.000 1986-07-15 2024-10-11 01:40:39 +6040 6040 6041 604 1208 6040 1986-07-16 2024-10-11 01:40:40.000 1986-07-16 2024-10-11 01:40:40 +6041 6041 6042 604.1 1208.2 6041 1986-07-17 2024-10-11 01:40:41.000 1986-07-17 2024-10-11 01:40:41 +6042 6042 6043 604.2 1208.4 6042 1986-07-18 2024-10-11 01:40:42.000 1986-07-18 2024-10-11 01:40:42 +6043 6043 6044 604.3 1208.6000000000001 6043 1986-07-19 2024-10-11 01:40:43.000 1986-07-19 2024-10-11 01:40:43 +6044 6044 6045 604.4 1208.8 6044 1986-07-20 2024-10-11 01:40:44.000 1986-07-20 2024-10-11 01:40:44 +6045 6045 6046 604.5 1209 6045 1986-07-21 2024-10-11 01:40:45.000 1986-07-21 2024-10-11 01:40:45 +6046 6046 6047 604.6 1209.2 6046 1986-07-22 2024-10-11 01:40:46.000 1986-07-22 2024-10-11 01:40:46 +6047 6047 6048 604.7 1209.4 6047 1986-07-23 2024-10-11 01:40:47.000 1986-07-23 2024-10-11 01:40:47 +6048 6048 6049 604.8 1209.6000000000001 6048 1986-07-24 2024-10-11 01:40:48.000 1986-07-24 2024-10-11 01:40:48 +6049 6049 6050 604.9 1209.8 6049 1986-07-25 2024-10-11 01:40:49.000 1986-07-25 2024-10-11 01:40:49 +6050 6050 6051 605 1210 6050 1986-07-26 2024-10-11 01:40:50.000 1986-07-26 2024-10-11 01:40:50 +6051 6051 6052 605.1 1210.2 6051 1986-07-27 2024-10-11 01:40:51.000 1986-07-27 2024-10-11 01:40:51 +6052 6052 6053 605.2 1210.4 6052 1986-07-28 2024-10-11 01:40:52.000 1986-07-28 2024-10-11 01:40:52 +6053 6053 6054 605.3 1210.6000000000001 6053 1986-07-29 2024-10-11 01:40:53.000 1986-07-29 2024-10-11 01:40:53 +6054 6054 6055 605.4 1210.8 6054 1986-07-30 2024-10-11 01:40:54.000 1986-07-30 2024-10-11 01:40:54 +6055 6055 6056 605.5 1211 6055 1986-07-31 2024-10-11 01:40:55.000 1986-07-31 2024-10-11 01:40:55 +6056 6056 6057 605.6 1211.2 6056 1986-08-01 2024-10-11 01:40:56.000 1986-08-01 2024-10-11 01:40:56 +6057 6057 6058 605.7 1211.4 6057 1986-08-02 2024-10-11 01:40:57.000 1986-08-02 2024-10-11 01:40:57 +6058 6058 6059 605.8 1211.6000000000001 6058 1986-08-03 2024-10-11 01:40:58.000 1986-08-03 2024-10-11 01:40:58 +6059 6059 6060 605.9 1211.8 6059 1986-08-04 2024-10-11 01:40:59.000 1986-08-04 2024-10-11 01:40:59 +6060 6060 6061 606 1212 6060 1986-08-05 2024-10-11 01:41:00.000 1986-08-05 2024-10-11 01:41:00 +6061 6061 6062 606.1 1212.2 6061 1986-08-06 2024-10-11 01:41:01.000 1986-08-06 2024-10-11 01:41:01 +6062 6062 6063 606.2 1212.4 6062 1986-08-07 2024-10-11 01:41:02.000 1986-08-07 2024-10-11 01:41:02 +6063 6063 6064 606.3 1212.6000000000001 6063 1986-08-08 2024-10-11 01:41:03.000 1986-08-08 2024-10-11 01:41:03 +6064 6064 6065 606.4 1212.8 6064 1986-08-09 2024-10-11 01:41:04.000 1986-08-09 2024-10-11 01:41:04 +6065 6065 6066 606.5 1213 6065 1986-08-10 2024-10-11 01:41:05.000 1986-08-10 2024-10-11 01:41:05 +6066 6066 6067 606.6 1213.2 6066 1986-08-11 2024-10-11 01:41:06.000 1986-08-11 2024-10-11 01:41:06 +6067 6067 6068 606.7 1213.4 6067 1986-08-12 2024-10-11 01:41:07.000 1986-08-12 2024-10-11 01:41:07 +6068 6068 6069 606.8 1213.6000000000001 6068 1986-08-13 2024-10-11 01:41:08.000 1986-08-13 2024-10-11 01:41:08 +6069 6069 6070 606.9 1213.8 6069 1986-08-14 2024-10-11 01:41:09.000 1986-08-14 2024-10-11 01:41:09 +6070 6070 6071 607 1214 6070 1986-08-15 2024-10-11 01:41:10.000 1986-08-15 2024-10-11 01:41:10 +6071 6071 6072 607.1 1214.2 6071 1986-08-16 2024-10-11 01:41:11.000 1986-08-16 2024-10-11 01:41:11 +6072 6072 6073 607.2 1214.4 6072 1986-08-17 2024-10-11 01:41:12.000 1986-08-17 2024-10-11 01:41:12 +6073 6073 6074 607.3 1214.6000000000001 6073 1986-08-18 2024-10-11 01:41:13.000 1986-08-18 2024-10-11 01:41:13 +6074 6074 6075 607.4 1214.8 6074 1986-08-19 2024-10-11 01:41:14.000 1986-08-19 2024-10-11 01:41:14 +6075 6075 6076 607.5 1215 6075 1986-08-20 2024-10-11 01:41:15.000 1986-08-20 2024-10-11 01:41:15 +6076 6076 6077 607.6 1215.2 6076 1986-08-21 2024-10-11 01:41:16.000 1986-08-21 2024-10-11 01:41:16 +6077 6077 6078 607.7 1215.4 6077 1986-08-22 2024-10-11 01:41:17.000 1986-08-22 2024-10-11 01:41:17 +6078 6078 6079 607.8 1215.6000000000001 6078 1986-08-23 2024-10-11 01:41:18.000 1986-08-23 2024-10-11 01:41:18 +6079 6079 6080 607.9 1215.8 6079 1986-08-24 2024-10-11 01:41:19.000 1986-08-24 2024-10-11 01:41:19 +6080 6080 6081 608 1216 6080 1986-08-25 2024-10-11 01:41:20.000 1986-08-25 2024-10-11 01:41:20 +6081 6081 6082 608.1 1216.2 6081 1986-08-26 2024-10-11 01:41:21.000 1986-08-26 2024-10-11 01:41:21 +6082 6082 6083 608.2 1216.4 6082 1986-08-27 2024-10-11 01:41:22.000 1986-08-27 2024-10-11 01:41:22 +6083 6083 6084 608.3 1216.6000000000001 6083 1986-08-28 2024-10-11 01:41:23.000 1986-08-28 2024-10-11 01:41:23 +6084 6084 6085 608.4 1216.8 6084 1986-08-29 2024-10-11 01:41:24.000 1986-08-29 2024-10-11 01:41:24 +6085 6085 6086 608.5 1217 6085 1986-08-30 2024-10-11 01:41:25.000 1986-08-30 2024-10-11 01:41:25 +6086 6086 6087 608.6 1217.2 6086 1986-08-31 2024-10-11 01:41:26.000 1986-08-31 2024-10-11 01:41:26 +6087 6087 6088 608.7 1217.4 6087 1986-09-01 2024-10-11 01:41:27.000 1986-09-01 2024-10-11 01:41:27 +6088 6088 6089 608.8 1217.6000000000001 6088 1986-09-02 2024-10-11 01:41:28.000 1986-09-02 2024-10-11 01:41:28 +6089 6089 6090 608.9 1217.8 6089 1986-09-03 2024-10-11 01:41:29.000 1986-09-03 2024-10-11 01:41:29 +6090 6090 6091 609 1218 6090 1986-09-04 2024-10-11 01:41:30.000 1986-09-04 2024-10-11 01:41:30 +6091 6091 6092 609.1 1218.2 6091 1986-09-05 2024-10-11 01:41:31.000 1986-09-05 2024-10-11 01:41:31 +6092 6092 6093 609.2 1218.4 6092 1986-09-06 2024-10-11 01:41:32.000 1986-09-06 2024-10-11 01:41:32 +6093 6093 6094 609.3 1218.6000000000001 6093 1986-09-07 2024-10-11 01:41:33.000 1986-09-07 2024-10-11 01:41:33 +6094 6094 6095 609.4 1218.8 6094 1986-09-08 2024-10-11 01:41:34.000 1986-09-08 2024-10-11 01:41:34 +6095 6095 6096 609.5 1219 6095 1986-09-09 2024-10-11 01:41:35.000 1986-09-09 2024-10-11 01:41:35 +6096 6096 6097 609.6 1219.2 6096 1986-09-10 2024-10-11 01:41:36.000 1986-09-10 2024-10-11 01:41:36 +6097 6097 6098 609.7 1219.4 6097 1986-09-11 2024-10-11 01:41:37.000 1986-09-11 2024-10-11 01:41:37 +6098 6098 6099 609.8 1219.6000000000001 6098 1986-09-12 2024-10-11 01:41:38.000 1986-09-12 2024-10-11 01:41:38 +6099 6099 6100 609.9 1219.8 6099 1986-09-13 2024-10-11 01:41:39.000 1986-09-13 2024-10-11 01:41:39 +6100 6100 6101 610 1220 6100 1986-09-14 2024-10-11 01:41:40.000 1986-09-14 2024-10-11 01:41:40 +6101 6101 6102 610.1 1220.2 6101 1986-09-15 2024-10-11 01:41:41.000 1986-09-15 2024-10-11 01:41:41 +6102 6102 6103 610.2 1220.4 6102 1986-09-16 2024-10-11 01:41:42.000 1986-09-16 2024-10-11 01:41:42 +6103 6103 6104 610.3 1220.6000000000001 6103 1986-09-17 2024-10-11 01:41:43.000 1986-09-17 2024-10-11 01:41:43 +6104 6104 6105 610.4 1220.8 6104 1986-09-18 2024-10-11 01:41:44.000 1986-09-18 2024-10-11 01:41:44 +6105 6105 6106 610.5 1221 6105 1986-09-19 2024-10-11 01:41:45.000 1986-09-19 2024-10-11 01:41:45 +6106 6106 6107 610.6 1221.2 6106 1986-09-20 2024-10-11 01:41:46.000 1986-09-20 2024-10-11 01:41:46 +6107 6107 6108 610.7 1221.4 6107 1986-09-21 2024-10-11 01:41:47.000 1986-09-21 2024-10-11 01:41:47 +6108 6108 6109 610.8 1221.6000000000001 6108 1986-09-22 2024-10-11 01:41:48.000 1986-09-22 2024-10-11 01:41:48 +6109 6109 6110 610.9 1221.8 6109 1986-09-23 2024-10-11 01:41:49.000 1986-09-23 2024-10-11 01:41:49 +6110 6110 6111 611 1222 6110 1986-09-24 2024-10-11 01:41:50.000 1986-09-24 2024-10-11 01:41:50 +6111 6111 6112 611.1 1222.2 6111 1986-09-25 2024-10-11 01:41:51.000 1986-09-25 2024-10-11 01:41:51 +6112 6112 6113 611.2 1222.4 6112 1986-09-26 2024-10-11 01:41:52.000 1986-09-26 2024-10-11 01:41:52 +6113 6113 6114 611.3 1222.6000000000001 6113 1986-09-27 2024-10-11 01:41:53.000 1986-09-27 2024-10-11 01:41:53 +6114 6114 6115 611.4 1222.8 6114 1986-09-28 2024-10-11 01:41:54.000 1986-09-28 2024-10-11 01:41:54 +6115 6115 6116 611.5 1223 6115 1986-09-29 2024-10-11 01:41:55.000 1986-09-29 2024-10-11 01:41:55 +6116 6116 6117 611.6 1223.2 6116 1986-09-30 2024-10-11 01:41:56.000 1986-09-30 2024-10-11 01:41:56 +6117 6117 6118 611.7 1223.4 6117 1986-10-01 2024-10-11 01:41:57.000 1986-10-01 2024-10-11 01:41:57 +6118 6118 6119 611.8 1223.6000000000001 6118 1986-10-02 2024-10-11 01:41:58.000 1986-10-02 2024-10-11 01:41:58 +6119 6119 6120 611.9 1223.8 6119 1986-10-03 2024-10-11 01:41:59.000 1986-10-03 2024-10-11 01:41:59 +6120 6120 6121 612 1224 6120 1986-10-04 2024-10-11 01:42:00.000 1986-10-04 2024-10-11 01:42:00 +6121 6121 6122 612.1 1224.2 6121 1986-10-05 2024-10-11 01:42:01.000 1986-10-05 2024-10-11 01:42:01 +6122 6122 6123 612.2 1224.4 6122 1986-10-06 2024-10-11 01:42:02.000 1986-10-06 2024-10-11 01:42:02 +6123 6123 6124 612.3 1224.6000000000001 6123 1986-10-07 2024-10-11 01:42:03.000 1986-10-07 2024-10-11 01:42:03 +6124 6124 6125 612.4 1224.8 6124 1986-10-08 2024-10-11 01:42:04.000 1986-10-08 2024-10-11 01:42:04 +6125 6125 6126 612.5 1225 6125 1986-10-09 2024-10-11 01:42:05.000 1986-10-09 2024-10-11 01:42:05 +6126 6126 6127 612.6 1225.2 6126 1986-10-10 2024-10-11 01:42:06.000 1986-10-10 2024-10-11 01:42:06 +6127 6127 6128 612.7 1225.4 6127 1986-10-11 2024-10-11 01:42:07.000 1986-10-11 2024-10-11 01:42:07 +6128 6128 6129 612.8 1225.6000000000001 6128 1986-10-12 2024-10-11 01:42:08.000 1986-10-12 2024-10-11 01:42:08 +6129 6129 6130 612.9 1225.8 6129 1986-10-13 2024-10-11 01:42:09.000 1986-10-13 2024-10-11 01:42:09 +6130 6130 6131 613 1226 6130 1986-10-14 2024-10-11 01:42:10.000 1986-10-14 2024-10-11 01:42:10 +6131 6131 6132 613.1 1226.2 6131 1986-10-15 2024-10-11 01:42:11.000 1986-10-15 2024-10-11 01:42:11 +6132 6132 6133 613.2 1226.4 6132 1986-10-16 2024-10-11 01:42:12.000 1986-10-16 2024-10-11 01:42:12 +6133 6133 6134 613.3 1226.6000000000001 6133 1986-10-17 2024-10-11 01:42:13.000 1986-10-17 2024-10-11 01:42:13 +6134 6134 6135 613.4 1226.8 6134 1986-10-18 2024-10-11 01:42:14.000 1986-10-18 2024-10-11 01:42:14 +6135 6135 6136 613.5 1227 6135 1986-10-19 2024-10-11 01:42:15.000 1986-10-19 2024-10-11 01:42:15 +6136 6136 6137 613.6 1227.2 6136 1986-10-20 2024-10-11 01:42:16.000 1986-10-20 2024-10-11 01:42:16 +6137 6137 6138 613.7 1227.4 6137 1986-10-21 2024-10-11 01:42:17.000 1986-10-21 2024-10-11 01:42:17 +6138 6138 6139 613.8 1227.6000000000001 6138 1986-10-22 2024-10-11 01:42:18.000 1986-10-22 2024-10-11 01:42:18 +6139 6139 6140 613.9 1227.8 6139 1986-10-23 2024-10-11 01:42:19.000 1986-10-23 2024-10-11 01:42:19 +6140 6140 6141 614 1228 6140 1986-10-24 2024-10-11 01:42:20.000 1986-10-24 2024-10-11 01:42:20 +6141 6141 6142 614.1 1228.2 6141 1986-10-25 2024-10-11 01:42:21.000 1986-10-25 2024-10-11 01:42:21 +6142 6142 6143 614.2 1228.4 6142 1986-10-26 2024-10-11 01:42:22.000 1986-10-26 2024-10-11 01:42:22 +6143 6143 6144 614.3 1228.6000000000001 6143 1986-10-27 2024-10-11 01:42:23.000 1986-10-27 2024-10-11 01:42:23 +6144 6144 6145 614.4 1228.8000000000002 6144 1986-10-28 2024-10-11 01:42:24.000 1986-10-28 2024-10-11 01:42:24 +6145 6145 6146 614.5 1229 6145 1986-10-29 2024-10-11 01:42:25.000 1986-10-29 2024-10-11 01:42:25 +6146 6146 6147 614.6 1229.2 6146 1986-10-30 2024-10-11 01:42:26.000 1986-10-30 2024-10-11 01:42:26 +6147 6147 6148 614.7 1229.4 6147 1986-10-31 2024-10-11 01:42:27.000 1986-10-31 2024-10-11 01:42:27 +6148 6148 6149 614.8 1229.6000000000001 6148 1986-11-01 2024-10-11 01:42:28.000 1986-11-01 2024-10-11 01:42:28 +6149 6149 6150 614.9 1229.8000000000002 6149 1986-11-02 2024-10-11 01:42:29.000 1986-11-02 2024-10-11 01:42:29 +6150 6150 6151 615 1230 6150 1986-11-03 2024-10-11 01:42:30.000 1986-11-03 2024-10-11 01:42:30 +6151 6151 6152 615.1 1230.2 6151 1986-11-04 2024-10-11 01:42:31.000 1986-11-04 2024-10-11 01:42:31 +6152 6152 6153 615.2 1230.4 6152 1986-11-05 2024-10-11 01:42:32.000 1986-11-05 2024-10-11 01:42:32 +6153 6153 6154 615.3 1230.6000000000001 6153 1986-11-06 2024-10-11 01:42:33.000 1986-11-06 2024-10-11 01:42:33 +6154 6154 6155 615.4 1230.8000000000002 6154 1986-11-07 2024-10-11 01:42:34.000 1986-11-07 2024-10-11 01:42:34 +6155 6155 6156 615.5 1231 6155 1986-11-08 2024-10-11 01:42:35.000 1986-11-08 2024-10-11 01:42:35 +6156 6156 6157 615.6 1231.2 6156 1986-11-09 2024-10-11 01:42:36.000 1986-11-09 2024-10-11 01:42:36 +6157 6157 6158 615.7 1231.4 6157 1986-11-10 2024-10-11 01:42:37.000 1986-11-10 2024-10-11 01:42:37 +6158 6158 6159 615.8 1231.6000000000001 6158 1986-11-11 2024-10-11 01:42:38.000 1986-11-11 2024-10-11 01:42:38 +6159 6159 6160 615.9 1231.8000000000002 6159 1986-11-12 2024-10-11 01:42:39.000 1986-11-12 2024-10-11 01:42:39 +6160 6160 6161 616 1232 6160 1986-11-13 2024-10-11 01:42:40.000 1986-11-13 2024-10-11 01:42:40 +6161 6161 6162 616.1 1232.2 6161 1986-11-14 2024-10-11 01:42:41.000 1986-11-14 2024-10-11 01:42:41 +6162 6162 6163 616.2 1232.4 6162 1986-11-15 2024-10-11 01:42:42.000 1986-11-15 2024-10-11 01:42:42 +6163 6163 6164 616.3 1232.6000000000001 6163 1986-11-16 2024-10-11 01:42:43.000 1986-11-16 2024-10-11 01:42:43 +6164 6164 6165 616.4 1232.8000000000002 6164 1986-11-17 2024-10-11 01:42:44.000 1986-11-17 2024-10-11 01:42:44 +6165 6165 6166 616.5 1233 6165 1986-11-18 2024-10-11 01:42:45.000 1986-11-18 2024-10-11 01:42:45 +6166 6166 6167 616.6 1233.2 6166 1986-11-19 2024-10-11 01:42:46.000 1986-11-19 2024-10-11 01:42:46 +6167 6167 6168 616.7 1233.4 6167 1986-11-20 2024-10-11 01:42:47.000 1986-11-20 2024-10-11 01:42:47 +6168 6168 6169 616.8 1233.6000000000001 6168 1986-11-21 2024-10-11 01:42:48.000 1986-11-21 2024-10-11 01:42:48 +6169 6169 6170 616.9 1233.8000000000002 6169 1986-11-22 2024-10-11 01:42:49.000 1986-11-22 2024-10-11 01:42:49 +6170 6170 6171 617 1234 6170 1986-11-23 2024-10-11 01:42:50.000 1986-11-23 2024-10-11 01:42:50 +6171 6171 6172 617.1 1234.2 6171 1986-11-24 2024-10-11 01:42:51.000 1986-11-24 2024-10-11 01:42:51 +6172 6172 6173 617.2 1234.4 6172 1986-11-25 2024-10-11 01:42:52.000 1986-11-25 2024-10-11 01:42:52 +6173 6173 6174 617.3 1234.6000000000001 6173 1986-11-26 2024-10-11 01:42:53.000 1986-11-26 2024-10-11 01:42:53 +6174 6174 6175 617.4 1234.8000000000002 6174 1986-11-27 2024-10-11 01:42:54.000 1986-11-27 2024-10-11 01:42:54 +6175 6175 6176 617.5 1235 6175 1986-11-28 2024-10-11 01:42:55.000 1986-11-28 2024-10-11 01:42:55 +6176 6176 6177 617.6 1235.2 6176 1986-11-29 2024-10-11 01:42:56.000 1986-11-29 2024-10-11 01:42:56 +6177 6177 6178 617.7 1235.4 6177 1986-11-30 2024-10-11 01:42:57.000 1986-11-30 2024-10-11 01:42:57 +6178 6178 6179 617.8 1235.6000000000001 6178 1986-12-01 2024-10-11 01:42:58.000 1986-12-01 2024-10-11 01:42:58 +6179 6179 6180 617.9 1235.8000000000002 6179 1986-12-02 2024-10-11 01:42:59.000 1986-12-02 2024-10-11 01:42:59 +6180 6180 6181 618 1236 6180 1986-12-03 2024-10-11 01:43:00.000 1986-12-03 2024-10-11 01:43:00 +6181 6181 6182 618.1 1236.2 6181 1986-12-04 2024-10-11 01:43:01.000 1986-12-04 2024-10-11 01:43:01 +6182 6182 6183 618.2 1236.4 6182 1986-12-05 2024-10-11 01:43:02.000 1986-12-05 2024-10-11 01:43:02 +6183 6183 6184 618.3 1236.6000000000001 6183 1986-12-06 2024-10-11 01:43:03.000 1986-12-06 2024-10-11 01:43:03 +6184 6184 6185 618.4 1236.8000000000002 6184 1986-12-07 2024-10-11 01:43:04.000 1986-12-07 2024-10-11 01:43:04 +6185 6185 6186 618.5 1237 6185 1986-12-08 2024-10-11 01:43:05.000 1986-12-08 2024-10-11 01:43:05 +6186 6186 6187 618.6 1237.2 6186 1986-12-09 2024-10-11 01:43:06.000 1986-12-09 2024-10-11 01:43:06 +6187 6187 6188 618.7 1237.4 6187 1986-12-10 2024-10-11 01:43:07.000 1986-12-10 2024-10-11 01:43:07 +6188 6188 6189 618.8 1237.6000000000001 6188 1986-12-11 2024-10-11 01:43:08.000 1986-12-11 2024-10-11 01:43:08 +6189 6189 6190 618.9 1237.8000000000002 6189 1986-12-12 2024-10-11 01:43:09.000 1986-12-12 2024-10-11 01:43:09 +6190 6190 6191 619 1238 6190 1986-12-13 2024-10-11 01:43:10.000 1986-12-13 2024-10-11 01:43:10 +6191 6191 6192 619.1 1238.2 6191 1986-12-14 2024-10-11 01:43:11.000 1986-12-14 2024-10-11 01:43:11 +6192 6192 6193 619.2 1238.4 6192 1986-12-15 2024-10-11 01:43:12.000 1986-12-15 2024-10-11 01:43:12 +6193 6193 6194 619.3 1238.6000000000001 6193 1986-12-16 2024-10-11 01:43:13.000 1986-12-16 2024-10-11 01:43:13 +6194 6194 6195 619.4 1238.8000000000002 6194 1986-12-17 2024-10-11 01:43:14.000 1986-12-17 2024-10-11 01:43:14 +6195 6195 6196 619.5 1239 6195 1986-12-18 2024-10-11 01:43:15.000 1986-12-18 2024-10-11 01:43:15 +6196 6196 6197 619.6 1239.2 6196 1986-12-19 2024-10-11 01:43:16.000 1986-12-19 2024-10-11 01:43:16 +6197 6197 6198 619.7 1239.4 6197 1986-12-20 2024-10-11 01:43:17.000 1986-12-20 2024-10-11 01:43:17 +6198 6198 6199 619.8 1239.6000000000001 6198 1986-12-21 2024-10-11 01:43:18.000 1986-12-21 2024-10-11 01:43:18 +6199 6199 6200 619.9 1239.8000000000002 6199 1986-12-22 2024-10-11 01:43:19.000 1986-12-22 2024-10-11 01:43:19 +6200 6200 6201 620 1240 6200 1986-12-23 2024-10-11 01:43:20.000 1986-12-23 2024-10-11 01:43:20 +6201 6201 6202 620.1 1240.2 6201 1986-12-24 2024-10-11 01:43:21.000 1986-12-24 2024-10-11 01:43:21 +6202 6202 6203 620.2 1240.4 6202 1986-12-25 2024-10-11 01:43:22.000 1986-12-25 2024-10-11 01:43:22 +6203 6203 6204 620.3 1240.6000000000001 6203 1986-12-26 2024-10-11 01:43:23.000 1986-12-26 2024-10-11 01:43:23 +6204 6204 6205 620.4 1240.8000000000002 6204 1986-12-27 2024-10-11 01:43:24.000 1986-12-27 2024-10-11 01:43:24 +6205 6205 6206 620.5 1241 6205 1986-12-28 2024-10-11 01:43:25.000 1986-12-28 2024-10-11 01:43:25 +6206 6206 6207 620.6 1241.2 6206 1986-12-29 2024-10-11 01:43:26.000 1986-12-29 2024-10-11 01:43:26 +6207 6207 6208 620.7 1241.4 6207 1986-12-30 2024-10-11 01:43:27.000 1986-12-30 2024-10-11 01:43:27 +6208 6208 6209 620.8 1241.6000000000001 6208 1986-12-31 2024-10-11 01:43:28.000 1986-12-31 2024-10-11 01:43:28 +6209 6209 6210 620.9 1241.8000000000002 6209 1987-01-01 2024-10-11 01:43:29.000 1987-01-01 2024-10-11 01:43:29 +6210 6210 6211 621 1242 6210 1987-01-02 2024-10-11 01:43:30.000 1987-01-02 2024-10-11 01:43:30 +6211 6211 6212 621.1 1242.2 6211 1987-01-03 2024-10-11 01:43:31.000 1987-01-03 2024-10-11 01:43:31 +6212 6212 6213 621.2 1242.4 6212 1987-01-04 2024-10-11 01:43:32.000 1987-01-04 2024-10-11 01:43:32 +6213 6213 6214 621.3 1242.6000000000001 6213 1987-01-05 2024-10-11 01:43:33.000 1987-01-05 2024-10-11 01:43:33 +6214 6214 6215 621.4 1242.8000000000002 6214 1987-01-06 2024-10-11 01:43:34.000 1987-01-06 2024-10-11 01:43:34 +6215 6215 6216 621.5 1243 6215 1987-01-07 2024-10-11 01:43:35.000 1987-01-07 2024-10-11 01:43:35 +6216 6216 6217 621.6 1243.2 6216 1987-01-08 2024-10-11 01:43:36.000 1987-01-08 2024-10-11 01:43:36 +6217 6217 6218 621.7 1243.4 6217 1987-01-09 2024-10-11 01:43:37.000 1987-01-09 2024-10-11 01:43:37 +6218 6218 6219 621.8 1243.6000000000001 6218 1987-01-10 2024-10-11 01:43:38.000 1987-01-10 2024-10-11 01:43:38 +6219 6219 6220 621.9 1243.8000000000002 6219 1987-01-11 2024-10-11 01:43:39.000 1987-01-11 2024-10-11 01:43:39 +6220 6220 6221 622 1244 6220 1987-01-12 2024-10-11 01:43:40.000 1987-01-12 2024-10-11 01:43:40 +6221 6221 6222 622.1 1244.2 6221 1987-01-13 2024-10-11 01:43:41.000 1987-01-13 2024-10-11 01:43:41 +6222 6222 6223 622.2 1244.4 6222 1987-01-14 2024-10-11 01:43:42.000 1987-01-14 2024-10-11 01:43:42 +6223 6223 6224 622.3 1244.6000000000001 6223 1987-01-15 2024-10-11 01:43:43.000 1987-01-15 2024-10-11 01:43:43 +6224 6224 6225 622.4 1244.8000000000002 6224 1987-01-16 2024-10-11 01:43:44.000 1987-01-16 2024-10-11 01:43:44 +6225 6225 6226 622.5 1245 6225 1987-01-17 2024-10-11 01:43:45.000 1987-01-17 2024-10-11 01:43:45 +6226 6226 6227 622.6 1245.2 6226 1987-01-18 2024-10-11 01:43:46.000 1987-01-18 2024-10-11 01:43:46 +6227 6227 6228 622.7 1245.4 6227 1987-01-19 2024-10-11 01:43:47.000 1987-01-19 2024-10-11 01:43:47 +6228 6228 6229 622.8 1245.6000000000001 6228 1987-01-20 2024-10-11 01:43:48.000 1987-01-20 2024-10-11 01:43:48 +6229 6229 6230 622.9 1245.8000000000002 6229 1987-01-21 2024-10-11 01:43:49.000 1987-01-21 2024-10-11 01:43:49 +6230 6230 6231 623 1246 6230 1987-01-22 2024-10-11 01:43:50.000 1987-01-22 2024-10-11 01:43:50 +6231 6231 6232 623.1 1246.2 6231 1987-01-23 2024-10-11 01:43:51.000 1987-01-23 2024-10-11 01:43:51 +6232 6232 6233 623.2 1246.4 6232 1987-01-24 2024-10-11 01:43:52.000 1987-01-24 2024-10-11 01:43:52 +6233 6233 6234 623.3 1246.6000000000001 6233 1987-01-25 2024-10-11 01:43:53.000 1987-01-25 2024-10-11 01:43:53 +6234 6234 6235 623.4 1246.8000000000002 6234 1987-01-26 2024-10-11 01:43:54.000 1987-01-26 2024-10-11 01:43:54 +6235 6235 6236 623.5 1247 6235 1987-01-27 2024-10-11 01:43:55.000 1987-01-27 2024-10-11 01:43:55 +6236 6236 6237 623.6 1247.2 6236 1987-01-28 2024-10-11 01:43:56.000 1987-01-28 2024-10-11 01:43:56 +6237 6237 6238 623.7 1247.4 6237 1987-01-29 2024-10-11 01:43:57.000 1987-01-29 2024-10-11 01:43:57 +6238 6238 6239 623.8 1247.6000000000001 6238 1987-01-30 2024-10-11 01:43:58.000 1987-01-30 2024-10-11 01:43:58 +6239 6239 6240 623.9 1247.8000000000002 6239 1987-01-31 2024-10-11 01:43:59.000 1987-01-31 2024-10-11 01:43:59 +6240 6240 6241 624 1248 6240 1987-02-01 2024-10-11 01:44:00.000 1987-02-01 2024-10-11 01:44:00 +6241 6241 6242 624.1 1248.2 6241 1987-02-02 2024-10-11 01:44:01.000 1987-02-02 2024-10-11 01:44:01 +6242 6242 6243 624.2 1248.4 6242 1987-02-03 2024-10-11 01:44:02.000 1987-02-03 2024-10-11 01:44:02 +6243 6243 6244 624.3 1248.6000000000001 6243 1987-02-04 2024-10-11 01:44:03.000 1987-02-04 2024-10-11 01:44:03 +6244 6244 6245 624.4 1248.8000000000002 6244 1987-02-05 2024-10-11 01:44:04.000 1987-02-05 2024-10-11 01:44:04 +6245 6245 6246 624.5 1249 6245 1987-02-06 2024-10-11 01:44:05.000 1987-02-06 2024-10-11 01:44:05 +6246 6246 6247 624.6 1249.2 6246 1987-02-07 2024-10-11 01:44:06.000 1987-02-07 2024-10-11 01:44:06 +6247 6247 6248 624.7 1249.4 6247 1987-02-08 2024-10-11 01:44:07.000 1987-02-08 2024-10-11 01:44:07 +6248 6248 6249 624.8 1249.6000000000001 6248 1987-02-09 2024-10-11 01:44:08.000 1987-02-09 2024-10-11 01:44:08 +6249 6249 6250 624.9 1249.8000000000002 6249 1987-02-10 2024-10-11 01:44:09.000 1987-02-10 2024-10-11 01:44:09 +6250 6250 6251 625 1250 6250 1987-02-11 2024-10-11 01:44:10.000 1987-02-11 2024-10-11 01:44:10 +6251 6251 6252 625.1 1250.2 6251 1987-02-12 2024-10-11 01:44:11.000 1987-02-12 2024-10-11 01:44:11 +6252 6252 6253 625.2 1250.4 6252 1987-02-13 2024-10-11 01:44:12.000 1987-02-13 2024-10-11 01:44:12 +6253 6253 6254 625.3 1250.6000000000001 6253 1987-02-14 2024-10-11 01:44:13.000 1987-02-14 2024-10-11 01:44:13 +6254 6254 6255 625.4 1250.8000000000002 6254 1987-02-15 2024-10-11 01:44:14.000 1987-02-15 2024-10-11 01:44:14 +6255 6255 6256 625.5 1251 6255 1987-02-16 2024-10-11 01:44:15.000 1987-02-16 2024-10-11 01:44:15 +6256 6256 6257 625.6 1251.2 6256 1987-02-17 2024-10-11 01:44:16.000 1987-02-17 2024-10-11 01:44:16 +6257 6257 6258 625.7 1251.4 6257 1987-02-18 2024-10-11 01:44:17.000 1987-02-18 2024-10-11 01:44:17 +6258 6258 6259 625.8 1251.6000000000001 6258 1987-02-19 2024-10-11 01:44:18.000 1987-02-19 2024-10-11 01:44:18 +6259 6259 6260 625.9 1251.8000000000002 6259 1987-02-20 2024-10-11 01:44:19.000 1987-02-20 2024-10-11 01:44:19 +6260 6260 6261 626 1252 6260 1987-02-21 2024-10-11 01:44:20.000 1987-02-21 2024-10-11 01:44:20 +6261 6261 6262 626.1 1252.2 6261 1987-02-22 2024-10-11 01:44:21.000 1987-02-22 2024-10-11 01:44:21 +6262 6262 6263 626.2 1252.4 6262 1987-02-23 2024-10-11 01:44:22.000 1987-02-23 2024-10-11 01:44:22 +6263 6263 6264 626.3 1252.6000000000001 6263 1987-02-24 2024-10-11 01:44:23.000 1987-02-24 2024-10-11 01:44:23 +6264 6264 6265 626.4 1252.8000000000002 6264 1987-02-25 2024-10-11 01:44:24.000 1987-02-25 2024-10-11 01:44:24 +6265 6265 6266 626.5 1253 6265 1987-02-26 2024-10-11 01:44:25.000 1987-02-26 2024-10-11 01:44:25 +6266 6266 6267 626.6 1253.2 6266 1987-02-27 2024-10-11 01:44:26.000 1987-02-27 2024-10-11 01:44:26 +6267 6267 6268 626.7 1253.4 6267 1987-02-28 2024-10-11 01:44:27.000 1987-02-28 2024-10-11 01:44:27 +6268 6268 6269 626.8 1253.6000000000001 6268 1987-03-01 2024-10-11 01:44:28.000 1987-03-01 2024-10-11 01:44:28 +6269 6269 6270 626.9 1253.8000000000002 6269 1987-03-02 2024-10-11 01:44:29.000 1987-03-02 2024-10-11 01:44:29 +6270 6270 6271 627 1254 6270 1987-03-03 2024-10-11 01:44:30.000 1987-03-03 2024-10-11 01:44:30 +6271 6271 6272 627.1 1254.2 6271 1987-03-04 2024-10-11 01:44:31.000 1987-03-04 2024-10-11 01:44:31 +6272 6272 6273 627.2 1254.4 6272 1987-03-05 2024-10-11 01:44:32.000 1987-03-05 2024-10-11 01:44:32 +6273 6273 6274 627.3 1254.6000000000001 6273 1987-03-06 2024-10-11 01:44:33.000 1987-03-06 2024-10-11 01:44:33 +6274 6274 6275 627.4 1254.8000000000002 6274 1987-03-07 2024-10-11 01:44:34.000 1987-03-07 2024-10-11 01:44:34 +6275 6275 6276 627.5 1255 6275 1987-03-08 2024-10-11 01:44:35.000 1987-03-08 2024-10-11 01:44:35 +6276 6276 6277 627.6 1255.2 6276 1987-03-09 2024-10-11 01:44:36.000 1987-03-09 2024-10-11 01:44:36 +6277 6277 6278 627.7 1255.4 6277 1987-03-10 2024-10-11 01:44:37.000 1987-03-10 2024-10-11 01:44:37 +6278 6278 6279 627.8 1255.6000000000001 6278 1987-03-11 2024-10-11 01:44:38.000 1987-03-11 2024-10-11 01:44:38 +6279 6279 6280 627.9 1255.8000000000002 6279 1987-03-12 2024-10-11 01:44:39.000 1987-03-12 2024-10-11 01:44:39 +6280 6280 6281 628 1256 6280 1987-03-13 2024-10-11 01:44:40.000 1987-03-13 2024-10-11 01:44:40 +6281 6281 6282 628.1 1256.2 6281 1987-03-14 2024-10-11 01:44:41.000 1987-03-14 2024-10-11 01:44:41 +6282 6282 6283 628.2 1256.4 6282 1987-03-15 2024-10-11 01:44:42.000 1987-03-15 2024-10-11 01:44:42 +6283 6283 6284 628.3 1256.6000000000001 6283 1987-03-16 2024-10-11 01:44:43.000 1987-03-16 2024-10-11 01:44:43 +6284 6284 6285 628.4 1256.8000000000002 6284 1987-03-17 2024-10-11 01:44:44.000 1987-03-17 2024-10-11 01:44:44 +6285 6285 6286 628.5 1257 6285 1987-03-18 2024-10-11 01:44:45.000 1987-03-18 2024-10-11 01:44:45 +6286 6286 6287 628.6 1257.2 6286 1987-03-19 2024-10-11 01:44:46.000 1987-03-19 2024-10-11 01:44:46 +6287 6287 6288 628.7 1257.4 6287 1987-03-20 2024-10-11 01:44:47.000 1987-03-20 2024-10-11 01:44:47 +6288 6288 6289 628.8 1257.6000000000001 6288 1987-03-21 2024-10-11 01:44:48.000 1987-03-21 2024-10-11 01:44:48 +6289 6289 6290 628.9 1257.8000000000002 6289 1987-03-22 2024-10-11 01:44:49.000 1987-03-22 2024-10-11 01:44:49 +6290 6290 6291 629 1258 6290 1987-03-23 2024-10-11 01:44:50.000 1987-03-23 2024-10-11 01:44:50 +6291 6291 6292 629.1 1258.2 6291 1987-03-24 2024-10-11 01:44:51.000 1987-03-24 2024-10-11 01:44:51 +6292 6292 6293 629.2 1258.4 6292 1987-03-25 2024-10-11 01:44:52.000 1987-03-25 2024-10-11 01:44:52 +6293 6293 6294 629.3 1258.6000000000001 6293 1987-03-26 2024-10-11 01:44:53.000 1987-03-26 2024-10-11 01:44:53 +6294 6294 6295 629.4 1258.8000000000002 6294 1987-03-27 2024-10-11 01:44:54.000 1987-03-27 2024-10-11 01:44:54 +6295 6295 6296 629.5 1259 6295 1987-03-28 2024-10-11 01:44:55.000 1987-03-28 2024-10-11 01:44:55 +6296 6296 6297 629.6 1259.2 6296 1987-03-29 2024-10-11 01:44:56.000 1987-03-29 2024-10-11 01:44:56 +6297 6297 6298 629.7 1259.4 6297 1987-03-30 2024-10-11 01:44:57.000 1987-03-30 2024-10-11 01:44:57 +6298 6298 6299 629.8 1259.6000000000001 6298 1987-03-31 2024-10-11 01:44:58.000 1987-03-31 2024-10-11 01:44:58 +6299 6299 6300 629.9 1259.8000000000002 6299 1987-04-01 2024-10-11 01:44:59.000 1987-04-01 2024-10-11 01:44:59 +6300 6300 6301 630 1260 6300 1987-04-02 2024-10-11 01:45:00.000 1987-04-02 2024-10-11 01:45:00 +6301 6301 6302 630.1 1260.2 6301 1987-04-03 2024-10-11 01:45:01.000 1987-04-03 2024-10-11 01:45:01 +6302 6302 6303 630.2 1260.4 6302 1987-04-04 2024-10-11 01:45:02.000 1987-04-04 2024-10-11 01:45:02 +6303 6303 6304 630.3 1260.6000000000001 6303 1987-04-05 2024-10-11 01:45:03.000 1987-04-05 2024-10-11 01:45:03 +6304 6304 6305 630.4 1260.8000000000002 6304 1987-04-06 2024-10-11 01:45:04.000 1987-04-06 2024-10-11 01:45:04 +6305 6305 6306 630.5 1261 6305 1987-04-07 2024-10-11 01:45:05.000 1987-04-07 2024-10-11 01:45:05 +6306 6306 6307 630.6 1261.2 6306 1987-04-08 2024-10-11 01:45:06.000 1987-04-08 2024-10-11 01:45:06 +6307 6307 6308 630.7 1261.4 6307 1987-04-09 2024-10-11 01:45:07.000 1987-04-09 2024-10-11 01:45:07 +6308 6308 6309 630.8 1261.6000000000001 6308 1987-04-10 2024-10-11 01:45:08.000 1987-04-10 2024-10-11 01:45:08 +6309 6309 6310 630.9 1261.8000000000002 6309 1987-04-11 2024-10-11 01:45:09.000 1987-04-11 2024-10-11 01:45:09 +6310 6310 6311 631 1262 6310 1987-04-12 2024-10-11 01:45:10.000 1987-04-12 2024-10-11 01:45:10 +6311 6311 6312 631.1 1262.2 6311 1987-04-13 2024-10-11 01:45:11.000 1987-04-13 2024-10-11 01:45:11 +6312 6312 6313 631.2 1262.4 6312 1987-04-14 2024-10-11 01:45:12.000 1987-04-14 2024-10-11 01:45:12 +6313 6313 6314 631.3 1262.6000000000001 6313 1987-04-15 2024-10-11 01:45:13.000 1987-04-15 2024-10-11 01:45:13 +6314 6314 6315 631.4 1262.8000000000002 6314 1987-04-16 2024-10-11 01:45:14.000 1987-04-16 2024-10-11 01:45:14 +6315 6315 6316 631.5 1263 6315 1987-04-17 2024-10-11 01:45:15.000 1987-04-17 2024-10-11 01:45:15 +6316 6316 6317 631.6 1263.2 6316 1987-04-18 2024-10-11 01:45:16.000 1987-04-18 2024-10-11 01:45:16 +6317 6317 6318 631.7 1263.4 6317 1987-04-19 2024-10-11 01:45:17.000 1987-04-19 2024-10-11 01:45:17 +6318 6318 6319 631.8 1263.6000000000001 6318 1987-04-20 2024-10-11 01:45:18.000 1987-04-20 2024-10-11 01:45:18 +6319 6319 6320 631.9 1263.8000000000002 6319 1987-04-21 2024-10-11 01:45:19.000 1987-04-21 2024-10-11 01:45:19 +6320 6320 6321 632 1264 6320 1987-04-22 2024-10-11 01:45:20.000 1987-04-22 2024-10-11 01:45:20 +6321 6321 6322 632.1 1264.2 6321 1987-04-23 2024-10-11 01:45:21.000 1987-04-23 2024-10-11 01:45:21 +6322 6322 6323 632.2 1264.4 6322 1987-04-24 2024-10-11 01:45:22.000 1987-04-24 2024-10-11 01:45:22 +6323 6323 6324 632.3 1264.6000000000001 6323 1987-04-25 2024-10-11 01:45:23.000 1987-04-25 2024-10-11 01:45:23 +6324 6324 6325 632.4 1264.8000000000002 6324 1987-04-26 2024-10-11 01:45:24.000 1987-04-26 2024-10-11 01:45:24 +6325 6325 6326 632.5 1265 6325 1987-04-27 2024-10-11 01:45:25.000 1987-04-27 2024-10-11 01:45:25 +6326 6326 6327 632.6 1265.2 6326 1987-04-28 2024-10-11 01:45:26.000 1987-04-28 2024-10-11 01:45:26 +6327 6327 6328 632.7 1265.4 6327 1987-04-29 2024-10-11 01:45:27.000 1987-04-29 2024-10-11 01:45:27 +6328 6328 6329 632.8 1265.6000000000001 6328 1987-04-30 2024-10-11 01:45:28.000 1987-04-30 2024-10-11 01:45:28 +6329 6329 6330 632.9 1265.8000000000002 6329 1987-05-01 2024-10-11 01:45:29.000 1987-05-01 2024-10-11 01:45:29 +6330 6330 6331 633 1266 6330 1987-05-02 2024-10-11 01:45:30.000 1987-05-02 2024-10-11 01:45:30 +6331 6331 6332 633.1 1266.2 6331 1987-05-03 2024-10-11 01:45:31.000 1987-05-03 2024-10-11 01:45:31 +6332 6332 6333 633.2 1266.4 6332 1987-05-04 2024-10-11 01:45:32.000 1987-05-04 2024-10-11 01:45:32 +6333 6333 6334 633.3 1266.6000000000001 6333 1987-05-05 2024-10-11 01:45:33.000 1987-05-05 2024-10-11 01:45:33 +6334 6334 6335 633.4 1266.8000000000002 6334 1987-05-06 2024-10-11 01:45:34.000 1987-05-06 2024-10-11 01:45:34 +6335 6335 6336 633.5 1267 6335 1987-05-07 2024-10-11 01:45:35.000 1987-05-07 2024-10-11 01:45:35 +6336 6336 6337 633.6 1267.2 6336 1987-05-08 2024-10-11 01:45:36.000 1987-05-08 2024-10-11 01:45:36 +6337 6337 6338 633.7 1267.4 6337 1987-05-09 2024-10-11 01:45:37.000 1987-05-09 2024-10-11 01:45:37 +6338 6338 6339 633.8 1267.6000000000001 6338 1987-05-10 2024-10-11 01:45:38.000 1987-05-10 2024-10-11 01:45:38 +6339 6339 6340 633.9 1267.8000000000002 6339 1987-05-11 2024-10-11 01:45:39.000 1987-05-11 2024-10-11 01:45:39 +6340 6340 6341 634 1268 6340 1987-05-12 2024-10-11 01:45:40.000 1987-05-12 2024-10-11 01:45:40 +6341 6341 6342 634.1 1268.2 6341 1987-05-13 2024-10-11 01:45:41.000 1987-05-13 2024-10-11 01:45:41 +6342 6342 6343 634.2 1268.4 6342 1987-05-14 2024-10-11 01:45:42.000 1987-05-14 2024-10-11 01:45:42 +6343 6343 6344 634.3 1268.6000000000001 6343 1987-05-15 2024-10-11 01:45:43.000 1987-05-15 2024-10-11 01:45:43 +6344 6344 6345 634.4 1268.8000000000002 6344 1987-05-16 2024-10-11 01:45:44.000 1987-05-16 2024-10-11 01:45:44 +6345 6345 6346 634.5 1269 6345 1987-05-17 2024-10-11 01:45:45.000 1987-05-17 2024-10-11 01:45:45 +6346 6346 6347 634.6 1269.2 6346 1987-05-18 2024-10-11 01:45:46.000 1987-05-18 2024-10-11 01:45:46 +6347 6347 6348 634.7 1269.4 6347 1987-05-19 2024-10-11 01:45:47.000 1987-05-19 2024-10-11 01:45:47 +6348 6348 6349 634.8 1269.6000000000001 6348 1987-05-20 2024-10-11 01:45:48.000 1987-05-20 2024-10-11 01:45:48 +6349 6349 6350 634.9 1269.8000000000002 6349 1987-05-21 2024-10-11 01:45:49.000 1987-05-21 2024-10-11 01:45:49 +6350 6350 6351 635 1270 6350 1987-05-22 2024-10-11 01:45:50.000 1987-05-22 2024-10-11 01:45:50 +6351 6351 6352 635.1 1270.2 6351 1987-05-23 2024-10-11 01:45:51.000 1987-05-23 2024-10-11 01:45:51 +6352 6352 6353 635.2 1270.4 6352 1987-05-24 2024-10-11 01:45:52.000 1987-05-24 2024-10-11 01:45:52 +6353 6353 6354 635.3 1270.6000000000001 6353 1987-05-25 2024-10-11 01:45:53.000 1987-05-25 2024-10-11 01:45:53 +6354 6354 6355 635.4 1270.8000000000002 6354 1987-05-26 2024-10-11 01:45:54.000 1987-05-26 2024-10-11 01:45:54 +6355 6355 6356 635.5 1271 6355 1987-05-27 2024-10-11 01:45:55.000 1987-05-27 2024-10-11 01:45:55 +6356 6356 6357 635.6 1271.2 6356 1987-05-28 2024-10-11 01:45:56.000 1987-05-28 2024-10-11 01:45:56 +6357 6357 6358 635.7 1271.4 6357 1987-05-29 2024-10-11 01:45:57.000 1987-05-29 2024-10-11 01:45:57 +6358 6358 6359 635.8 1271.6000000000001 6358 1987-05-30 2024-10-11 01:45:58.000 1987-05-30 2024-10-11 01:45:58 +6359 6359 6360 635.9 1271.8000000000002 6359 1987-05-31 2024-10-11 01:45:59.000 1987-05-31 2024-10-11 01:45:59 +6360 6360 6361 636 1272 6360 1987-06-01 2024-10-11 01:46:00.000 1987-06-01 2024-10-11 01:46:00 +6361 6361 6362 636.1 1272.2 6361 1987-06-02 2024-10-11 01:46:01.000 1987-06-02 2024-10-11 01:46:01 +6362 6362 6363 636.2 1272.4 6362 1987-06-03 2024-10-11 01:46:02.000 1987-06-03 2024-10-11 01:46:02 +6363 6363 6364 636.3 1272.6000000000001 6363 1987-06-04 2024-10-11 01:46:03.000 1987-06-04 2024-10-11 01:46:03 +6364 6364 6365 636.4 1272.8000000000002 6364 1987-06-05 2024-10-11 01:46:04.000 1987-06-05 2024-10-11 01:46:04 +6365 6365 6366 636.5 1273 6365 1987-06-06 2024-10-11 01:46:05.000 1987-06-06 2024-10-11 01:46:05 +6366 6366 6367 636.6 1273.2 6366 1987-06-07 2024-10-11 01:46:06.000 1987-06-07 2024-10-11 01:46:06 +6367 6367 6368 636.7 1273.4 6367 1987-06-08 2024-10-11 01:46:07.000 1987-06-08 2024-10-11 01:46:07 +6368 6368 6369 636.8 1273.6000000000001 6368 1987-06-09 2024-10-11 01:46:08.000 1987-06-09 2024-10-11 01:46:08 +6369 6369 6370 636.9 1273.8000000000002 6369 1987-06-10 2024-10-11 01:46:09.000 1987-06-10 2024-10-11 01:46:09 +6370 6370 6371 637 1274 6370 1987-06-11 2024-10-11 01:46:10.000 1987-06-11 2024-10-11 01:46:10 +6371 6371 6372 637.1 1274.2 6371 1987-06-12 2024-10-11 01:46:11.000 1987-06-12 2024-10-11 01:46:11 +6372 6372 6373 637.2 1274.4 6372 1987-06-13 2024-10-11 01:46:12.000 1987-06-13 2024-10-11 01:46:12 +6373 6373 6374 637.3 1274.6000000000001 6373 1987-06-14 2024-10-11 01:46:13.000 1987-06-14 2024-10-11 01:46:13 +6374 6374 6375 637.4 1274.8000000000002 6374 1987-06-15 2024-10-11 01:46:14.000 1987-06-15 2024-10-11 01:46:14 +6375 6375 6376 637.5 1275 6375 1987-06-16 2024-10-11 01:46:15.000 1987-06-16 2024-10-11 01:46:15 +6376 6376 6377 637.6 1275.2 6376 1987-06-17 2024-10-11 01:46:16.000 1987-06-17 2024-10-11 01:46:16 +6377 6377 6378 637.7 1275.4 6377 1987-06-18 2024-10-11 01:46:17.000 1987-06-18 2024-10-11 01:46:17 +6378 6378 6379 637.8 1275.6000000000001 6378 1987-06-19 2024-10-11 01:46:18.000 1987-06-19 2024-10-11 01:46:18 +6379 6379 6380 637.9 1275.8000000000002 6379 1987-06-20 2024-10-11 01:46:19.000 1987-06-20 2024-10-11 01:46:19 +6380 6380 6381 638 1276 6380 1987-06-21 2024-10-11 01:46:20.000 1987-06-21 2024-10-11 01:46:20 +6381 6381 6382 638.1 1276.2 6381 1987-06-22 2024-10-11 01:46:21.000 1987-06-22 2024-10-11 01:46:21 +6382 6382 6383 638.2 1276.4 6382 1987-06-23 2024-10-11 01:46:22.000 1987-06-23 2024-10-11 01:46:22 +6383 6383 6384 638.3 1276.6000000000001 6383 1987-06-24 2024-10-11 01:46:23.000 1987-06-24 2024-10-11 01:46:23 +6384 6384 6385 638.4 1276.8000000000002 6384 1987-06-25 2024-10-11 01:46:24.000 1987-06-25 2024-10-11 01:46:24 +6385 6385 6386 638.5 1277 6385 1987-06-26 2024-10-11 01:46:25.000 1987-06-26 2024-10-11 01:46:25 +6386 6386 6387 638.6 1277.2 6386 1987-06-27 2024-10-11 01:46:26.000 1987-06-27 2024-10-11 01:46:26 +6387 6387 6388 638.7 1277.4 6387 1987-06-28 2024-10-11 01:46:27.000 1987-06-28 2024-10-11 01:46:27 +6388 6388 6389 638.8 1277.6000000000001 6388 1987-06-29 2024-10-11 01:46:28.000 1987-06-29 2024-10-11 01:46:28 +6389 6389 6390 638.9 1277.8000000000002 6389 1987-06-30 2024-10-11 01:46:29.000 1987-06-30 2024-10-11 01:46:29 +6390 6390 6391 639 1278 6390 1987-07-01 2024-10-11 01:46:30.000 1987-07-01 2024-10-11 01:46:30 +6391 6391 6392 639.1 1278.2 6391 1987-07-02 2024-10-11 01:46:31.000 1987-07-02 2024-10-11 01:46:31 +6392 6392 6393 639.2 1278.4 6392 1987-07-03 2024-10-11 01:46:32.000 1987-07-03 2024-10-11 01:46:32 +6393 6393 6394 639.3 1278.6000000000001 6393 1987-07-04 2024-10-11 01:46:33.000 1987-07-04 2024-10-11 01:46:33 +6394 6394 6395 639.4 1278.8000000000002 6394 1987-07-05 2024-10-11 01:46:34.000 1987-07-05 2024-10-11 01:46:34 +6395 6395 6396 639.5 1279 6395 1987-07-06 2024-10-11 01:46:35.000 1987-07-06 2024-10-11 01:46:35 +6396 6396 6397 639.6 1279.2 6396 1987-07-07 2024-10-11 01:46:36.000 1987-07-07 2024-10-11 01:46:36 +6397 6397 6398 639.7 1279.4 6397 1987-07-08 2024-10-11 01:46:37.000 1987-07-08 2024-10-11 01:46:37 +6398 6398 6399 639.8 1279.6000000000001 6398 1987-07-09 2024-10-11 01:46:38.000 1987-07-09 2024-10-11 01:46:38 +6399 6399 6400 639.9 1279.8000000000002 6399 1987-07-10 2024-10-11 01:46:39.000 1987-07-10 2024-10-11 01:46:39 +6400 6400 6401 640 1280 6400 1987-07-11 2024-10-11 01:46:40.000 1987-07-11 2024-10-11 01:46:40 +6401 6401 6402 640.1 1280.2 6401 1987-07-12 2024-10-11 01:46:41.000 1987-07-12 2024-10-11 01:46:41 +6402 6402 6403 640.2 1280.4 6402 1987-07-13 2024-10-11 01:46:42.000 1987-07-13 2024-10-11 01:46:42 +6403 6403 6404 640.3 1280.6000000000001 6403 1987-07-14 2024-10-11 01:46:43.000 1987-07-14 2024-10-11 01:46:43 +6404 6404 6405 640.4 1280.8000000000002 6404 1987-07-15 2024-10-11 01:46:44.000 1987-07-15 2024-10-11 01:46:44 +6405 6405 6406 640.5 1281 6405 1987-07-16 2024-10-11 01:46:45.000 1987-07-16 2024-10-11 01:46:45 +6406 6406 6407 640.6 1281.2 6406 1987-07-17 2024-10-11 01:46:46.000 1987-07-17 2024-10-11 01:46:46 +6407 6407 6408 640.7 1281.4 6407 1987-07-18 2024-10-11 01:46:47.000 1987-07-18 2024-10-11 01:46:47 +6408 6408 6409 640.8 1281.6000000000001 6408 1987-07-19 2024-10-11 01:46:48.000 1987-07-19 2024-10-11 01:46:48 +6409 6409 6410 640.9 1281.8000000000002 6409 1987-07-20 2024-10-11 01:46:49.000 1987-07-20 2024-10-11 01:46:49 +6410 6410 6411 641 1282 6410 1987-07-21 2024-10-11 01:46:50.000 1987-07-21 2024-10-11 01:46:50 +6411 6411 6412 641.1 1282.2 6411 1987-07-22 2024-10-11 01:46:51.000 1987-07-22 2024-10-11 01:46:51 +6412 6412 6413 641.2 1282.4 6412 1987-07-23 2024-10-11 01:46:52.000 1987-07-23 2024-10-11 01:46:52 +6413 6413 6414 641.3 1282.6000000000001 6413 1987-07-24 2024-10-11 01:46:53.000 1987-07-24 2024-10-11 01:46:53 +6414 6414 6415 641.4 1282.8000000000002 6414 1987-07-25 2024-10-11 01:46:54.000 1987-07-25 2024-10-11 01:46:54 +6415 6415 6416 641.5 1283 6415 1987-07-26 2024-10-11 01:46:55.000 1987-07-26 2024-10-11 01:46:55 +6416 6416 6417 641.6 1283.2 6416 1987-07-27 2024-10-11 01:46:56.000 1987-07-27 2024-10-11 01:46:56 +6417 6417 6418 641.7 1283.4 6417 1987-07-28 2024-10-11 01:46:57.000 1987-07-28 2024-10-11 01:46:57 +6418 6418 6419 641.8 1283.6000000000001 6418 1987-07-29 2024-10-11 01:46:58.000 1987-07-29 2024-10-11 01:46:58 +6419 6419 6420 641.9 1283.8000000000002 6419 1987-07-30 2024-10-11 01:46:59.000 1987-07-30 2024-10-11 01:46:59 +6420 6420 6421 642 1284 6420 1987-07-31 2024-10-11 01:47:00.000 1987-07-31 2024-10-11 01:47:00 +6421 6421 6422 642.1 1284.2 6421 1987-08-01 2024-10-11 01:47:01.000 1987-08-01 2024-10-11 01:47:01 +6422 6422 6423 642.2 1284.4 6422 1987-08-02 2024-10-11 01:47:02.000 1987-08-02 2024-10-11 01:47:02 +6423 6423 6424 642.3 1284.6000000000001 6423 1987-08-03 2024-10-11 01:47:03.000 1987-08-03 2024-10-11 01:47:03 +6424 6424 6425 642.4 1284.8000000000002 6424 1987-08-04 2024-10-11 01:47:04.000 1987-08-04 2024-10-11 01:47:04 +6425 6425 6426 642.5 1285 6425 1987-08-05 2024-10-11 01:47:05.000 1987-08-05 2024-10-11 01:47:05 +6426 6426 6427 642.6 1285.2 6426 1987-08-06 2024-10-11 01:47:06.000 1987-08-06 2024-10-11 01:47:06 +6427 6427 6428 642.7 1285.4 6427 1987-08-07 2024-10-11 01:47:07.000 1987-08-07 2024-10-11 01:47:07 +6428 6428 6429 642.8 1285.6000000000001 6428 1987-08-08 2024-10-11 01:47:08.000 1987-08-08 2024-10-11 01:47:08 +6429 6429 6430 642.9 1285.8000000000002 6429 1987-08-09 2024-10-11 01:47:09.000 1987-08-09 2024-10-11 01:47:09 +6430 6430 6431 643 1286 6430 1987-08-10 2024-10-11 01:47:10.000 1987-08-10 2024-10-11 01:47:10 +6431 6431 6432 643.1 1286.2 6431 1987-08-11 2024-10-11 01:47:11.000 1987-08-11 2024-10-11 01:47:11 +6432 6432 6433 643.2 1286.4 6432 1987-08-12 2024-10-11 01:47:12.000 1987-08-12 2024-10-11 01:47:12 +6433 6433 6434 643.3 1286.6000000000001 6433 1987-08-13 2024-10-11 01:47:13.000 1987-08-13 2024-10-11 01:47:13 +6434 6434 6435 643.4 1286.8000000000002 6434 1987-08-14 2024-10-11 01:47:14.000 1987-08-14 2024-10-11 01:47:14 +6435 6435 6436 643.5 1287 6435 1987-08-15 2024-10-11 01:47:15.000 1987-08-15 2024-10-11 01:47:15 +6436 6436 6437 643.6 1287.2 6436 1987-08-16 2024-10-11 01:47:16.000 1987-08-16 2024-10-11 01:47:16 +6437 6437 6438 643.7 1287.4 6437 1987-08-17 2024-10-11 01:47:17.000 1987-08-17 2024-10-11 01:47:17 +6438 6438 6439 643.8 1287.6000000000001 6438 1987-08-18 2024-10-11 01:47:18.000 1987-08-18 2024-10-11 01:47:18 +6439 6439 6440 643.9 1287.8000000000002 6439 1987-08-19 2024-10-11 01:47:19.000 1987-08-19 2024-10-11 01:47:19 +6440 6440 6441 644 1288 6440 1987-08-20 2024-10-11 01:47:20.000 1987-08-20 2024-10-11 01:47:20 +6441 6441 6442 644.1 1288.2 6441 1987-08-21 2024-10-11 01:47:21.000 1987-08-21 2024-10-11 01:47:21 +6442 6442 6443 644.2 1288.4 6442 1987-08-22 2024-10-11 01:47:22.000 1987-08-22 2024-10-11 01:47:22 +6443 6443 6444 644.3 1288.6000000000001 6443 1987-08-23 2024-10-11 01:47:23.000 1987-08-23 2024-10-11 01:47:23 +6444 6444 6445 644.4 1288.8000000000002 6444 1987-08-24 2024-10-11 01:47:24.000 1987-08-24 2024-10-11 01:47:24 +6445 6445 6446 644.5 1289 6445 1987-08-25 2024-10-11 01:47:25.000 1987-08-25 2024-10-11 01:47:25 +6446 6446 6447 644.6 1289.2 6446 1987-08-26 2024-10-11 01:47:26.000 1987-08-26 2024-10-11 01:47:26 +6447 6447 6448 644.7 1289.4 6447 1987-08-27 2024-10-11 01:47:27.000 1987-08-27 2024-10-11 01:47:27 +6448 6448 6449 644.8 1289.6000000000001 6448 1987-08-28 2024-10-11 01:47:28.000 1987-08-28 2024-10-11 01:47:28 +6449 6449 6450 644.9 1289.8000000000002 6449 1987-08-29 2024-10-11 01:47:29.000 1987-08-29 2024-10-11 01:47:29 +6450 6450 6451 645 1290 6450 1987-08-30 2024-10-11 01:47:30.000 1987-08-30 2024-10-11 01:47:30 +6451 6451 6452 645.1 1290.2 6451 1987-08-31 2024-10-11 01:47:31.000 1987-08-31 2024-10-11 01:47:31 +6452 6452 6453 645.2 1290.4 6452 1987-09-01 2024-10-11 01:47:32.000 1987-09-01 2024-10-11 01:47:32 +6453 6453 6454 645.3 1290.6000000000001 6453 1987-09-02 2024-10-11 01:47:33.000 1987-09-02 2024-10-11 01:47:33 +6454 6454 6455 645.4 1290.8000000000002 6454 1987-09-03 2024-10-11 01:47:34.000 1987-09-03 2024-10-11 01:47:34 +6455 6455 6456 645.5 1291 6455 1987-09-04 2024-10-11 01:47:35.000 1987-09-04 2024-10-11 01:47:35 +6456 6456 6457 645.6 1291.2 6456 1987-09-05 2024-10-11 01:47:36.000 1987-09-05 2024-10-11 01:47:36 +6457 6457 6458 645.7 1291.4 6457 1987-09-06 2024-10-11 01:47:37.000 1987-09-06 2024-10-11 01:47:37 +6458 6458 6459 645.8 1291.6000000000001 6458 1987-09-07 2024-10-11 01:47:38.000 1987-09-07 2024-10-11 01:47:38 +6459 6459 6460 645.9 1291.8000000000002 6459 1987-09-08 2024-10-11 01:47:39.000 1987-09-08 2024-10-11 01:47:39 +6460 6460 6461 646 1292 6460 1987-09-09 2024-10-11 01:47:40.000 1987-09-09 2024-10-11 01:47:40 +6461 6461 6462 646.1 1292.2 6461 1987-09-10 2024-10-11 01:47:41.000 1987-09-10 2024-10-11 01:47:41 +6462 6462 6463 646.2 1292.4 6462 1987-09-11 2024-10-11 01:47:42.000 1987-09-11 2024-10-11 01:47:42 +6463 6463 6464 646.3 1292.6000000000001 6463 1987-09-12 2024-10-11 01:47:43.000 1987-09-12 2024-10-11 01:47:43 +6464 6464 6465 646.4 1292.8000000000002 6464 1987-09-13 2024-10-11 01:47:44.000 1987-09-13 2024-10-11 01:47:44 +6465 6465 6466 646.5 1293 6465 1987-09-14 2024-10-11 01:47:45.000 1987-09-14 2024-10-11 01:47:45 +6466 6466 6467 646.6 1293.2 6466 1987-09-15 2024-10-11 01:47:46.000 1987-09-15 2024-10-11 01:47:46 +6467 6467 6468 646.7 1293.4 6467 1987-09-16 2024-10-11 01:47:47.000 1987-09-16 2024-10-11 01:47:47 +6468 6468 6469 646.8 1293.6000000000001 6468 1987-09-17 2024-10-11 01:47:48.000 1987-09-17 2024-10-11 01:47:48 +6469 6469 6470 646.9 1293.8000000000002 6469 1987-09-18 2024-10-11 01:47:49.000 1987-09-18 2024-10-11 01:47:49 +6470 6470 6471 647 1294 6470 1987-09-19 2024-10-11 01:47:50.000 1987-09-19 2024-10-11 01:47:50 +6471 6471 6472 647.1 1294.2 6471 1987-09-20 2024-10-11 01:47:51.000 1987-09-20 2024-10-11 01:47:51 +6472 6472 6473 647.2 1294.4 6472 1987-09-21 2024-10-11 01:47:52.000 1987-09-21 2024-10-11 01:47:52 +6473 6473 6474 647.3 1294.6000000000001 6473 1987-09-22 2024-10-11 01:47:53.000 1987-09-22 2024-10-11 01:47:53 +6474 6474 6475 647.4 1294.8000000000002 6474 1987-09-23 2024-10-11 01:47:54.000 1987-09-23 2024-10-11 01:47:54 +6475 6475 6476 647.5 1295 6475 1987-09-24 2024-10-11 01:47:55.000 1987-09-24 2024-10-11 01:47:55 +6476 6476 6477 647.6 1295.2 6476 1987-09-25 2024-10-11 01:47:56.000 1987-09-25 2024-10-11 01:47:56 +6477 6477 6478 647.7 1295.4 6477 1987-09-26 2024-10-11 01:47:57.000 1987-09-26 2024-10-11 01:47:57 +6478 6478 6479 647.8 1295.6000000000001 6478 1987-09-27 2024-10-11 01:47:58.000 1987-09-27 2024-10-11 01:47:58 +6479 6479 6480 647.9 1295.8000000000002 6479 1987-09-28 2024-10-11 01:47:59.000 1987-09-28 2024-10-11 01:47:59 +6480 6480 6481 648 1296 6480 1987-09-29 2024-10-11 01:48:00.000 1987-09-29 2024-10-11 01:48:00 +6481 6481 6482 648.1 1296.2 6481 1987-09-30 2024-10-11 01:48:01.000 1987-09-30 2024-10-11 01:48:01 +6482 6482 6483 648.2 1296.4 6482 1987-10-01 2024-10-11 01:48:02.000 1987-10-01 2024-10-11 01:48:02 +6483 6483 6484 648.3 1296.6000000000001 6483 1987-10-02 2024-10-11 01:48:03.000 1987-10-02 2024-10-11 01:48:03 +6484 6484 6485 648.4 1296.8000000000002 6484 1987-10-03 2024-10-11 01:48:04.000 1987-10-03 2024-10-11 01:48:04 +6485 6485 6486 648.5 1297 6485 1987-10-04 2024-10-11 01:48:05.000 1987-10-04 2024-10-11 01:48:05 +6486 6486 6487 648.6 1297.2 6486 1987-10-05 2024-10-11 01:48:06.000 1987-10-05 2024-10-11 01:48:06 +6487 6487 6488 648.7 1297.4 6487 1987-10-06 2024-10-11 01:48:07.000 1987-10-06 2024-10-11 01:48:07 +6488 6488 6489 648.8 1297.6000000000001 6488 1987-10-07 2024-10-11 01:48:08.000 1987-10-07 2024-10-11 01:48:08 +6489 6489 6490 648.9 1297.8000000000002 6489 1987-10-08 2024-10-11 01:48:09.000 1987-10-08 2024-10-11 01:48:09 +6490 6490 6491 649 1298 6490 1987-10-09 2024-10-11 01:48:10.000 1987-10-09 2024-10-11 01:48:10 +6491 6491 6492 649.1 1298.2 6491 1987-10-10 2024-10-11 01:48:11.000 1987-10-10 2024-10-11 01:48:11 +6492 6492 6493 649.2 1298.4 6492 1987-10-11 2024-10-11 01:48:12.000 1987-10-11 2024-10-11 01:48:12 +6493 6493 6494 649.3 1298.6000000000001 6493 1987-10-12 2024-10-11 01:48:13.000 1987-10-12 2024-10-11 01:48:13 +6494 6494 6495 649.4 1298.8000000000002 6494 1987-10-13 2024-10-11 01:48:14.000 1987-10-13 2024-10-11 01:48:14 +6495 6495 6496 649.5 1299 6495 1987-10-14 2024-10-11 01:48:15.000 1987-10-14 2024-10-11 01:48:15 +6496 6496 6497 649.6 1299.2 6496 1987-10-15 2024-10-11 01:48:16.000 1987-10-15 2024-10-11 01:48:16 +6497 6497 6498 649.7 1299.4 6497 1987-10-16 2024-10-11 01:48:17.000 1987-10-16 2024-10-11 01:48:17 +6498 6498 6499 649.8 1299.6000000000001 6498 1987-10-17 2024-10-11 01:48:18.000 1987-10-17 2024-10-11 01:48:18 +6499 6499 6500 649.9 1299.8000000000002 6499 1987-10-18 2024-10-11 01:48:19.000 1987-10-18 2024-10-11 01:48:19 +6500 6500 6501 650 1300 6500 1987-10-19 2024-10-11 01:48:20.000 1987-10-19 2024-10-11 01:48:20 +6501 6501 6502 650.1 1300.2 6501 1987-10-20 2024-10-11 01:48:21.000 1987-10-20 2024-10-11 01:48:21 +6502 6502 6503 650.2 1300.4 6502 1987-10-21 2024-10-11 01:48:22.000 1987-10-21 2024-10-11 01:48:22 +6503 6503 6504 650.3 1300.6000000000001 6503 1987-10-22 2024-10-11 01:48:23.000 1987-10-22 2024-10-11 01:48:23 +6504 6504 6505 650.4 1300.8000000000002 6504 1987-10-23 2024-10-11 01:48:24.000 1987-10-23 2024-10-11 01:48:24 +6505 6505 6506 650.5 1301 6505 1987-10-24 2024-10-11 01:48:25.000 1987-10-24 2024-10-11 01:48:25 +6506 6506 6507 650.6 1301.2 6506 1987-10-25 2024-10-11 01:48:26.000 1987-10-25 2024-10-11 01:48:26 +6507 6507 6508 650.7 1301.4 6507 1987-10-26 2024-10-11 01:48:27.000 1987-10-26 2024-10-11 01:48:27 +6508 6508 6509 650.8 1301.6000000000001 6508 1987-10-27 2024-10-11 01:48:28.000 1987-10-27 2024-10-11 01:48:28 +6509 6509 6510 650.9 1301.8000000000002 6509 1987-10-28 2024-10-11 01:48:29.000 1987-10-28 2024-10-11 01:48:29 +6510 6510 6511 651 1302 6510 1987-10-29 2024-10-11 01:48:30.000 1987-10-29 2024-10-11 01:48:30 +6511 6511 6512 651.1 1302.2 6511 1987-10-30 2024-10-11 01:48:31.000 1987-10-30 2024-10-11 01:48:31 +6512 6512 6513 651.2 1302.4 6512 1987-10-31 2024-10-11 01:48:32.000 1987-10-31 2024-10-11 01:48:32 +6513 6513 6514 651.3 1302.6000000000001 6513 1987-11-01 2024-10-11 01:48:33.000 1987-11-01 2024-10-11 01:48:33 +6514 6514 6515 651.4 1302.8000000000002 6514 1987-11-02 2024-10-11 01:48:34.000 1987-11-02 2024-10-11 01:48:34 +6515 6515 6516 651.5 1303 6515 1987-11-03 2024-10-11 01:48:35.000 1987-11-03 2024-10-11 01:48:35 +6516 6516 6517 651.6 1303.2 6516 1987-11-04 2024-10-11 01:48:36.000 1987-11-04 2024-10-11 01:48:36 +6517 6517 6518 651.7 1303.4 6517 1987-11-05 2024-10-11 01:48:37.000 1987-11-05 2024-10-11 01:48:37 +6518 6518 6519 651.8 1303.6000000000001 6518 1987-11-06 2024-10-11 01:48:38.000 1987-11-06 2024-10-11 01:48:38 +6519 6519 6520 651.9 1303.8000000000002 6519 1987-11-07 2024-10-11 01:48:39.000 1987-11-07 2024-10-11 01:48:39 +6520 6520 6521 652 1304 6520 1987-11-08 2024-10-11 01:48:40.000 1987-11-08 2024-10-11 01:48:40 +6521 6521 6522 652.1 1304.2 6521 1987-11-09 2024-10-11 01:48:41.000 1987-11-09 2024-10-11 01:48:41 +6522 6522 6523 652.2 1304.4 6522 1987-11-10 2024-10-11 01:48:42.000 1987-11-10 2024-10-11 01:48:42 +6523 6523 6524 652.3 1304.6000000000001 6523 1987-11-11 2024-10-11 01:48:43.000 1987-11-11 2024-10-11 01:48:43 +6524 6524 6525 652.4 1304.8000000000002 6524 1987-11-12 2024-10-11 01:48:44.000 1987-11-12 2024-10-11 01:48:44 +6525 6525 6526 652.5 1305 6525 1987-11-13 2024-10-11 01:48:45.000 1987-11-13 2024-10-11 01:48:45 +6526 6526 6527 652.6 1305.2 6526 1987-11-14 2024-10-11 01:48:46.000 1987-11-14 2024-10-11 01:48:46 +6527 6527 6528 652.7 1305.4 6527 1987-11-15 2024-10-11 01:48:47.000 1987-11-15 2024-10-11 01:48:47 +6528 6528 6529 652.8 1305.6000000000001 6528 1987-11-16 2024-10-11 01:48:48.000 1987-11-16 2024-10-11 01:48:48 +6529 6529 6530 652.9 1305.8000000000002 6529 1987-11-17 2024-10-11 01:48:49.000 1987-11-17 2024-10-11 01:48:49 +6530 6530 6531 653 1306 6530 1987-11-18 2024-10-11 01:48:50.000 1987-11-18 2024-10-11 01:48:50 +6531 6531 6532 653.1 1306.2 6531 1987-11-19 2024-10-11 01:48:51.000 1987-11-19 2024-10-11 01:48:51 +6532 6532 6533 653.2 1306.4 6532 1987-11-20 2024-10-11 01:48:52.000 1987-11-20 2024-10-11 01:48:52 +6533 6533 6534 653.3 1306.6000000000001 6533 1987-11-21 2024-10-11 01:48:53.000 1987-11-21 2024-10-11 01:48:53 +6534 6534 6535 653.4 1306.8000000000002 6534 1987-11-22 2024-10-11 01:48:54.000 1987-11-22 2024-10-11 01:48:54 +6535 6535 6536 653.5 1307 6535 1987-11-23 2024-10-11 01:48:55.000 1987-11-23 2024-10-11 01:48:55 +6536 6536 6537 653.6 1307.2 6536 1987-11-24 2024-10-11 01:48:56.000 1987-11-24 2024-10-11 01:48:56 +6537 6537 6538 653.7 1307.4 6537 1987-11-25 2024-10-11 01:48:57.000 1987-11-25 2024-10-11 01:48:57 +6538 6538 6539 653.8 1307.6000000000001 6538 1987-11-26 2024-10-11 01:48:58.000 1987-11-26 2024-10-11 01:48:58 +6539 6539 6540 653.9 1307.8000000000002 6539 1987-11-27 2024-10-11 01:48:59.000 1987-11-27 2024-10-11 01:48:59 +6540 6540 6541 654 1308 6540 1987-11-28 2024-10-11 01:49:00.000 1987-11-28 2024-10-11 01:49:00 +6541 6541 6542 654.1 1308.2 6541 1987-11-29 2024-10-11 01:49:01.000 1987-11-29 2024-10-11 01:49:01 +6542 6542 6543 654.2 1308.4 6542 1987-11-30 2024-10-11 01:49:02.000 1987-11-30 2024-10-11 01:49:02 +6543 6543 6544 654.3 1308.6000000000001 6543 1987-12-01 2024-10-11 01:49:03.000 1987-12-01 2024-10-11 01:49:03 +6544 6544 6545 654.4 1308.8000000000002 6544 1987-12-02 2024-10-11 01:49:04.000 1987-12-02 2024-10-11 01:49:04 +6545 6545 6546 654.5 1309 6545 1987-12-03 2024-10-11 01:49:05.000 1987-12-03 2024-10-11 01:49:05 +6546 6546 6547 654.6 1309.2 6546 1987-12-04 2024-10-11 01:49:06.000 1987-12-04 2024-10-11 01:49:06 +6547 6547 6548 654.7 1309.4 6547 1987-12-05 2024-10-11 01:49:07.000 1987-12-05 2024-10-11 01:49:07 +6548 6548 6549 654.8 1309.6000000000001 6548 1987-12-06 2024-10-11 01:49:08.000 1987-12-06 2024-10-11 01:49:08 +6549 6549 6550 654.9 1309.8000000000002 6549 1987-12-07 2024-10-11 01:49:09.000 1987-12-07 2024-10-11 01:49:09 +6550 6550 6551 655 1310 6550 1987-12-08 2024-10-11 01:49:10.000 1987-12-08 2024-10-11 01:49:10 +6551 6551 6552 655.1 1310.2 6551 1987-12-09 2024-10-11 01:49:11.000 1987-12-09 2024-10-11 01:49:11 +6552 6552 6553 655.2 1310.4 6552 1987-12-10 2024-10-11 01:49:12.000 1987-12-10 2024-10-11 01:49:12 +6553 6553 6554 655.3 1310.6000000000001 6553 1987-12-11 2024-10-11 01:49:13.000 1987-12-11 2024-10-11 01:49:13 +6554 6554 6555 655.4 1310.8000000000002 6554 1987-12-12 2024-10-11 01:49:14.000 1987-12-12 2024-10-11 01:49:14 +6555 6555 6556 655.5 1311 6555 1987-12-13 2024-10-11 01:49:15.000 1987-12-13 2024-10-11 01:49:15 +6556 6556 6557 655.6 1311.2 6556 1987-12-14 2024-10-11 01:49:16.000 1987-12-14 2024-10-11 01:49:16 +6557 6557 6558 655.7 1311.4 6557 1987-12-15 2024-10-11 01:49:17.000 1987-12-15 2024-10-11 01:49:17 +6558 6558 6559 655.8 1311.6000000000001 6558 1987-12-16 2024-10-11 01:49:18.000 1987-12-16 2024-10-11 01:49:18 +6559 6559 6560 655.9 1311.8000000000002 6559 1987-12-17 2024-10-11 01:49:19.000 1987-12-17 2024-10-11 01:49:19 +6560 6560 6561 656 1312 6560 1987-12-18 2024-10-11 01:49:20.000 1987-12-18 2024-10-11 01:49:20 +6561 6561 6562 656.1 1312.2 6561 1987-12-19 2024-10-11 01:49:21.000 1987-12-19 2024-10-11 01:49:21 +6562 6562 6563 656.2 1312.4 6562 1987-12-20 2024-10-11 01:49:22.000 1987-12-20 2024-10-11 01:49:22 +6563 6563 6564 656.3 1312.6000000000001 6563 1987-12-21 2024-10-11 01:49:23.000 1987-12-21 2024-10-11 01:49:23 +6564 6564 6565 656.4 1312.8000000000002 6564 1987-12-22 2024-10-11 01:49:24.000 1987-12-22 2024-10-11 01:49:24 +6565 6565 6566 656.5 1313 6565 1987-12-23 2024-10-11 01:49:25.000 1987-12-23 2024-10-11 01:49:25 +6566 6566 6567 656.6 1313.2 6566 1987-12-24 2024-10-11 01:49:26.000 1987-12-24 2024-10-11 01:49:26 +6567 6567 6568 656.7 1313.4 6567 1987-12-25 2024-10-11 01:49:27.000 1987-12-25 2024-10-11 01:49:27 +6568 6568 6569 656.8 1313.6000000000001 6568 1987-12-26 2024-10-11 01:49:28.000 1987-12-26 2024-10-11 01:49:28 +6569 6569 6570 656.9 1313.8000000000002 6569 1987-12-27 2024-10-11 01:49:29.000 1987-12-27 2024-10-11 01:49:29 +6570 6570 6571 657 1314 6570 1987-12-28 2024-10-11 01:49:30.000 1987-12-28 2024-10-11 01:49:30 +6571 6571 6572 657.1 1314.2 6571 1987-12-29 2024-10-11 01:49:31.000 1987-12-29 2024-10-11 01:49:31 +6572 6572 6573 657.2 1314.4 6572 1987-12-30 2024-10-11 01:49:32.000 1987-12-30 2024-10-11 01:49:32 +6573 6573 6574 657.3 1314.6000000000001 6573 1987-12-31 2024-10-11 01:49:33.000 1987-12-31 2024-10-11 01:49:33 +6574 6574 6575 657.4 1314.8000000000002 6574 1988-01-01 2024-10-11 01:49:34.000 1988-01-01 2024-10-11 01:49:34 +6575 6575 6576 657.5 1315 6575 1988-01-02 2024-10-11 01:49:35.000 1988-01-02 2024-10-11 01:49:35 +6576 6576 6577 657.6 1315.2 6576 1988-01-03 2024-10-11 01:49:36.000 1988-01-03 2024-10-11 01:49:36 +6577 6577 6578 657.7 1315.4 6577 1988-01-04 2024-10-11 01:49:37.000 1988-01-04 2024-10-11 01:49:37 +6578 6578 6579 657.8 1315.6000000000001 6578 1988-01-05 2024-10-11 01:49:38.000 1988-01-05 2024-10-11 01:49:38 +6579 6579 6580 657.9 1315.8000000000002 6579 1988-01-06 2024-10-11 01:49:39.000 1988-01-06 2024-10-11 01:49:39 +6580 6580 6581 658 1316 6580 1988-01-07 2024-10-11 01:49:40.000 1988-01-07 2024-10-11 01:49:40 +6581 6581 6582 658.1 1316.2 6581 1988-01-08 2024-10-11 01:49:41.000 1988-01-08 2024-10-11 01:49:41 +6582 6582 6583 658.2 1316.4 6582 1988-01-09 2024-10-11 01:49:42.000 1988-01-09 2024-10-11 01:49:42 +6583 6583 6584 658.3 1316.6000000000001 6583 1988-01-10 2024-10-11 01:49:43.000 1988-01-10 2024-10-11 01:49:43 +6584 6584 6585 658.4 1316.8000000000002 6584 1988-01-11 2024-10-11 01:49:44.000 1988-01-11 2024-10-11 01:49:44 +6585 6585 6586 658.5 1317 6585 1988-01-12 2024-10-11 01:49:45.000 1988-01-12 2024-10-11 01:49:45 +6586 6586 6587 658.6 1317.2 6586 1988-01-13 2024-10-11 01:49:46.000 1988-01-13 2024-10-11 01:49:46 +6587 6587 6588 658.7 1317.4 6587 1988-01-14 2024-10-11 01:49:47.000 1988-01-14 2024-10-11 01:49:47 +6588 6588 6589 658.8 1317.6000000000001 6588 1988-01-15 2024-10-11 01:49:48.000 1988-01-15 2024-10-11 01:49:48 +6589 6589 6590 658.9 1317.8000000000002 6589 1988-01-16 2024-10-11 01:49:49.000 1988-01-16 2024-10-11 01:49:49 +6590 6590 6591 659 1318 6590 1988-01-17 2024-10-11 01:49:50.000 1988-01-17 2024-10-11 01:49:50 +6591 6591 6592 659.1 1318.2 6591 1988-01-18 2024-10-11 01:49:51.000 1988-01-18 2024-10-11 01:49:51 +6592 6592 6593 659.2 1318.4 6592 1988-01-19 2024-10-11 01:49:52.000 1988-01-19 2024-10-11 01:49:52 +6593 6593 6594 659.3 1318.6000000000001 6593 1988-01-20 2024-10-11 01:49:53.000 1988-01-20 2024-10-11 01:49:53 +6594 6594 6595 659.4 1318.8000000000002 6594 1988-01-21 2024-10-11 01:49:54.000 1988-01-21 2024-10-11 01:49:54 +6595 6595 6596 659.5 1319 6595 1988-01-22 2024-10-11 01:49:55.000 1988-01-22 2024-10-11 01:49:55 +6596 6596 6597 659.6 1319.2 6596 1988-01-23 2024-10-11 01:49:56.000 1988-01-23 2024-10-11 01:49:56 +6597 6597 6598 659.7 1319.4 6597 1988-01-24 2024-10-11 01:49:57.000 1988-01-24 2024-10-11 01:49:57 +6598 6598 6599 659.8 1319.6000000000001 6598 1988-01-25 2024-10-11 01:49:58.000 1988-01-25 2024-10-11 01:49:58 +6599 6599 6600 659.9 1319.8000000000002 6599 1988-01-26 2024-10-11 01:49:59.000 1988-01-26 2024-10-11 01:49:59 +6600 6600 6601 660 1320 6600 1988-01-27 2024-10-11 01:50:00.000 1988-01-27 2024-10-11 01:50:00 +6601 6601 6602 660.1 1320.2 6601 1988-01-28 2024-10-11 01:50:01.000 1988-01-28 2024-10-11 01:50:01 +6602 6602 6603 660.2 1320.4 6602 1988-01-29 2024-10-11 01:50:02.000 1988-01-29 2024-10-11 01:50:02 +6603 6603 6604 660.3 1320.6000000000001 6603 1988-01-30 2024-10-11 01:50:03.000 1988-01-30 2024-10-11 01:50:03 +6604 6604 6605 660.4 1320.8000000000002 6604 1988-01-31 2024-10-11 01:50:04.000 1988-01-31 2024-10-11 01:50:04 +6605 6605 6606 660.5 1321 6605 1988-02-01 2024-10-11 01:50:05.000 1988-02-01 2024-10-11 01:50:05 +6606 6606 6607 660.6 1321.2 6606 1988-02-02 2024-10-11 01:50:06.000 1988-02-02 2024-10-11 01:50:06 +6607 6607 6608 660.7 1321.4 6607 1988-02-03 2024-10-11 01:50:07.000 1988-02-03 2024-10-11 01:50:07 +6608 6608 6609 660.8 1321.6000000000001 6608 1988-02-04 2024-10-11 01:50:08.000 1988-02-04 2024-10-11 01:50:08 +6609 6609 6610 660.9 1321.8000000000002 6609 1988-02-05 2024-10-11 01:50:09.000 1988-02-05 2024-10-11 01:50:09 +6610 6610 6611 661 1322 6610 1988-02-06 2024-10-11 01:50:10.000 1988-02-06 2024-10-11 01:50:10 +6611 6611 6612 661.1 1322.2 6611 1988-02-07 2024-10-11 01:50:11.000 1988-02-07 2024-10-11 01:50:11 +6612 6612 6613 661.2 1322.4 6612 1988-02-08 2024-10-11 01:50:12.000 1988-02-08 2024-10-11 01:50:12 +6613 6613 6614 661.3 1322.6000000000001 6613 1988-02-09 2024-10-11 01:50:13.000 1988-02-09 2024-10-11 01:50:13 +6614 6614 6615 661.4 1322.8000000000002 6614 1988-02-10 2024-10-11 01:50:14.000 1988-02-10 2024-10-11 01:50:14 +6615 6615 6616 661.5 1323 6615 1988-02-11 2024-10-11 01:50:15.000 1988-02-11 2024-10-11 01:50:15 +6616 6616 6617 661.6 1323.2 6616 1988-02-12 2024-10-11 01:50:16.000 1988-02-12 2024-10-11 01:50:16 +6617 6617 6618 661.7 1323.4 6617 1988-02-13 2024-10-11 01:50:17.000 1988-02-13 2024-10-11 01:50:17 +6618 6618 6619 661.8 1323.6000000000001 6618 1988-02-14 2024-10-11 01:50:18.000 1988-02-14 2024-10-11 01:50:18 +6619 6619 6620 661.9 1323.8000000000002 6619 1988-02-15 2024-10-11 01:50:19.000 1988-02-15 2024-10-11 01:50:19 +6620 6620 6621 662 1324 6620 1988-02-16 2024-10-11 01:50:20.000 1988-02-16 2024-10-11 01:50:20 +6621 6621 6622 662.1 1324.2 6621 1988-02-17 2024-10-11 01:50:21.000 1988-02-17 2024-10-11 01:50:21 +6622 6622 6623 662.2 1324.4 6622 1988-02-18 2024-10-11 01:50:22.000 1988-02-18 2024-10-11 01:50:22 +6623 6623 6624 662.3 1324.6000000000001 6623 1988-02-19 2024-10-11 01:50:23.000 1988-02-19 2024-10-11 01:50:23 +6624 6624 6625 662.4 1324.8000000000002 6624 1988-02-20 2024-10-11 01:50:24.000 1988-02-20 2024-10-11 01:50:24 +6625 6625 6626 662.5 1325 6625 1988-02-21 2024-10-11 01:50:25.000 1988-02-21 2024-10-11 01:50:25 +6626 6626 6627 662.6 1325.2 6626 1988-02-22 2024-10-11 01:50:26.000 1988-02-22 2024-10-11 01:50:26 +6627 6627 6628 662.7 1325.4 6627 1988-02-23 2024-10-11 01:50:27.000 1988-02-23 2024-10-11 01:50:27 +6628 6628 6629 662.8 1325.6000000000001 6628 1988-02-24 2024-10-11 01:50:28.000 1988-02-24 2024-10-11 01:50:28 +6629 6629 6630 662.9 1325.8000000000002 6629 1988-02-25 2024-10-11 01:50:29.000 1988-02-25 2024-10-11 01:50:29 +6630 6630 6631 663 1326 6630 1988-02-26 2024-10-11 01:50:30.000 1988-02-26 2024-10-11 01:50:30 +6631 6631 6632 663.1 1326.2 6631 1988-02-27 2024-10-11 01:50:31.000 1988-02-27 2024-10-11 01:50:31 +6632 6632 6633 663.2 1326.4 6632 1988-02-28 2024-10-11 01:50:32.000 1988-02-28 2024-10-11 01:50:32 +6633 6633 6634 663.3 1326.6000000000001 6633 1988-02-29 2024-10-11 01:50:33.000 1988-02-29 2024-10-11 01:50:33 +6634 6634 6635 663.4 1326.8000000000002 6634 1988-03-01 2024-10-11 01:50:34.000 1988-03-01 2024-10-11 01:50:34 +6635 6635 6636 663.5 1327 6635 1988-03-02 2024-10-11 01:50:35.000 1988-03-02 2024-10-11 01:50:35 +6636 6636 6637 663.6 1327.2 6636 1988-03-03 2024-10-11 01:50:36.000 1988-03-03 2024-10-11 01:50:36 +6637 6637 6638 663.7 1327.4 6637 1988-03-04 2024-10-11 01:50:37.000 1988-03-04 2024-10-11 01:50:37 +6638 6638 6639 663.8 1327.6000000000001 6638 1988-03-05 2024-10-11 01:50:38.000 1988-03-05 2024-10-11 01:50:38 +6639 6639 6640 663.9 1327.8000000000002 6639 1988-03-06 2024-10-11 01:50:39.000 1988-03-06 2024-10-11 01:50:39 +6640 6640 6641 664 1328 6640 1988-03-07 2024-10-11 01:50:40.000 1988-03-07 2024-10-11 01:50:40 +6641 6641 6642 664.1 1328.2 6641 1988-03-08 2024-10-11 01:50:41.000 1988-03-08 2024-10-11 01:50:41 +6642 6642 6643 664.2 1328.4 6642 1988-03-09 2024-10-11 01:50:42.000 1988-03-09 2024-10-11 01:50:42 +6643 6643 6644 664.3 1328.6000000000001 6643 1988-03-10 2024-10-11 01:50:43.000 1988-03-10 2024-10-11 01:50:43 +6644 6644 6645 664.4 1328.8000000000002 6644 1988-03-11 2024-10-11 01:50:44.000 1988-03-11 2024-10-11 01:50:44 +6645 6645 6646 664.5 1329 6645 1988-03-12 2024-10-11 01:50:45.000 1988-03-12 2024-10-11 01:50:45 +6646 6646 6647 664.6 1329.2 6646 1988-03-13 2024-10-11 01:50:46.000 1988-03-13 2024-10-11 01:50:46 +6647 6647 6648 664.7 1329.4 6647 1988-03-14 2024-10-11 01:50:47.000 1988-03-14 2024-10-11 01:50:47 +6648 6648 6649 664.8 1329.6000000000001 6648 1988-03-15 2024-10-11 01:50:48.000 1988-03-15 2024-10-11 01:50:48 +6649 6649 6650 664.9 1329.8000000000002 6649 1988-03-16 2024-10-11 01:50:49.000 1988-03-16 2024-10-11 01:50:49 +6650 6650 6651 665 1330 6650 1988-03-17 2024-10-11 01:50:50.000 1988-03-17 2024-10-11 01:50:50 +6651 6651 6652 665.1 1330.2 6651 1988-03-18 2024-10-11 01:50:51.000 1988-03-18 2024-10-11 01:50:51 +6652 6652 6653 665.2 1330.4 6652 1988-03-19 2024-10-11 01:50:52.000 1988-03-19 2024-10-11 01:50:52 +6653 6653 6654 665.3 1330.6000000000001 6653 1988-03-20 2024-10-11 01:50:53.000 1988-03-20 2024-10-11 01:50:53 +6654 6654 6655 665.4 1330.8000000000002 6654 1988-03-21 2024-10-11 01:50:54.000 1988-03-21 2024-10-11 01:50:54 +6655 6655 6656 665.5 1331 6655 1988-03-22 2024-10-11 01:50:55.000 1988-03-22 2024-10-11 01:50:55 +6656 6656 6657 665.6 1331.2 6656 1988-03-23 2024-10-11 01:50:56.000 1988-03-23 2024-10-11 01:50:56 +6657 6657 6658 665.7 1331.4 6657 1988-03-24 2024-10-11 01:50:57.000 1988-03-24 2024-10-11 01:50:57 +6658 6658 6659 665.8 1331.6000000000001 6658 1988-03-25 2024-10-11 01:50:58.000 1988-03-25 2024-10-11 01:50:58 +6659 6659 6660 665.9 1331.8000000000002 6659 1988-03-26 2024-10-11 01:50:59.000 1988-03-26 2024-10-11 01:50:59 +6660 6660 6661 666 1332 6660 1988-03-27 2024-10-11 01:51:00.000 1988-03-27 2024-10-11 01:51:00 +6661 6661 6662 666.1 1332.2 6661 1988-03-28 2024-10-11 01:51:01.000 1988-03-28 2024-10-11 01:51:01 +6662 6662 6663 666.2 1332.4 6662 1988-03-29 2024-10-11 01:51:02.000 1988-03-29 2024-10-11 01:51:02 +6663 6663 6664 666.3 1332.6000000000001 6663 1988-03-30 2024-10-11 01:51:03.000 1988-03-30 2024-10-11 01:51:03 +6664 6664 6665 666.4 1332.8000000000002 6664 1988-03-31 2024-10-11 01:51:04.000 1988-03-31 2024-10-11 01:51:04 +6665 6665 6666 666.5 1333 6665 1988-04-01 2024-10-11 01:51:05.000 1988-04-01 2024-10-11 01:51:05 +6666 6666 6667 666.6 1333.2 6666 1988-04-02 2024-10-11 01:51:06.000 1988-04-02 2024-10-11 01:51:06 +6667 6667 6668 666.7 1333.4 6667 1988-04-03 2024-10-11 01:51:07.000 1988-04-03 2024-10-11 01:51:07 +6668 6668 6669 666.8 1333.6000000000001 6668 1988-04-04 2024-10-11 01:51:08.000 1988-04-04 2024-10-11 01:51:08 +6669 6669 6670 666.9 1333.8000000000002 6669 1988-04-05 2024-10-11 01:51:09.000 1988-04-05 2024-10-11 01:51:09 +6670 6670 6671 667 1334 6670 1988-04-06 2024-10-11 01:51:10.000 1988-04-06 2024-10-11 01:51:10 +6671 6671 6672 667.1 1334.2 6671 1988-04-07 2024-10-11 01:51:11.000 1988-04-07 2024-10-11 01:51:11 +6672 6672 6673 667.2 1334.4 6672 1988-04-08 2024-10-11 01:51:12.000 1988-04-08 2024-10-11 01:51:12 +6673 6673 6674 667.3 1334.6000000000001 6673 1988-04-09 2024-10-11 01:51:13.000 1988-04-09 2024-10-11 01:51:13 +6674 6674 6675 667.4 1334.8000000000002 6674 1988-04-10 2024-10-11 01:51:14.000 1988-04-10 2024-10-11 01:51:14 +6675 6675 6676 667.5 1335 6675 1988-04-11 2024-10-11 01:51:15.000 1988-04-11 2024-10-11 01:51:15 +6676 6676 6677 667.6 1335.2 6676 1988-04-12 2024-10-11 01:51:16.000 1988-04-12 2024-10-11 01:51:16 +6677 6677 6678 667.7 1335.4 6677 1988-04-13 2024-10-11 01:51:17.000 1988-04-13 2024-10-11 01:51:17 +6678 6678 6679 667.8 1335.6000000000001 6678 1988-04-14 2024-10-11 01:51:18.000 1988-04-14 2024-10-11 01:51:18 +6679 6679 6680 667.9 1335.8000000000002 6679 1988-04-15 2024-10-11 01:51:19.000 1988-04-15 2024-10-11 01:51:19 +6680 6680 6681 668 1336 6680 1988-04-16 2024-10-11 01:51:20.000 1988-04-16 2024-10-11 01:51:20 +6681 6681 6682 668.1 1336.2 6681 1988-04-17 2024-10-11 01:51:21.000 1988-04-17 2024-10-11 01:51:21 +6682 6682 6683 668.2 1336.4 6682 1988-04-18 2024-10-11 01:51:22.000 1988-04-18 2024-10-11 01:51:22 +6683 6683 6684 668.3 1336.6000000000001 6683 1988-04-19 2024-10-11 01:51:23.000 1988-04-19 2024-10-11 01:51:23 +6684 6684 6685 668.4 1336.8000000000002 6684 1988-04-20 2024-10-11 01:51:24.000 1988-04-20 2024-10-11 01:51:24 +6685 6685 6686 668.5 1337 6685 1988-04-21 2024-10-11 01:51:25.000 1988-04-21 2024-10-11 01:51:25 +6686 6686 6687 668.6 1337.2 6686 1988-04-22 2024-10-11 01:51:26.000 1988-04-22 2024-10-11 01:51:26 +6687 6687 6688 668.7 1337.4 6687 1988-04-23 2024-10-11 01:51:27.000 1988-04-23 2024-10-11 01:51:27 +6688 6688 6689 668.8 1337.6000000000001 6688 1988-04-24 2024-10-11 01:51:28.000 1988-04-24 2024-10-11 01:51:28 +6689 6689 6690 668.9 1337.8000000000002 6689 1988-04-25 2024-10-11 01:51:29.000 1988-04-25 2024-10-11 01:51:29 +6690 6690 6691 669 1338 6690 1988-04-26 2024-10-11 01:51:30.000 1988-04-26 2024-10-11 01:51:30 +6691 6691 6692 669.1 1338.2 6691 1988-04-27 2024-10-11 01:51:31.000 1988-04-27 2024-10-11 01:51:31 +6692 6692 6693 669.2 1338.4 6692 1988-04-28 2024-10-11 01:51:32.000 1988-04-28 2024-10-11 01:51:32 +6693 6693 6694 669.3 1338.6000000000001 6693 1988-04-29 2024-10-11 01:51:33.000 1988-04-29 2024-10-11 01:51:33 +6694 6694 6695 669.4 1338.8000000000002 6694 1988-04-30 2024-10-11 01:51:34.000 1988-04-30 2024-10-11 01:51:34 +6695 6695 6696 669.5 1339 6695 1988-05-01 2024-10-11 01:51:35.000 1988-05-01 2024-10-11 01:51:35 +6696 6696 6697 669.6 1339.2 6696 1988-05-02 2024-10-11 01:51:36.000 1988-05-02 2024-10-11 01:51:36 +6697 6697 6698 669.7 1339.4 6697 1988-05-03 2024-10-11 01:51:37.000 1988-05-03 2024-10-11 01:51:37 +6698 6698 6699 669.8 1339.6000000000001 6698 1988-05-04 2024-10-11 01:51:38.000 1988-05-04 2024-10-11 01:51:38 +6699 6699 6700 669.9 1339.8000000000002 6699 1988-05-05 2024-10-11 01:51:39.000 1988-05-05 2024-10-11 01:51:39 +6700 6700 6701 670 1340 6700 1988-05-06 2024-10-11 01:51:40.000 1988-05-06 2024-10-11 01:51:40 +6701 6701 6702 670.1 1340.2 6701 1988-05-07 2024-10-11 01:51:41.000 1988-05-07 2024-10-11 01:51:41 +6702 6702 6703 670.2 1340.4 6702 1988-05-08 2024-10-11 01:51:42.000 1988-05-08 2024-10-11 01:51:42 +6703 6703 6704 670.3 1340.6000000000001 6703 1988-05-09 2024-10-11 01:51:43.000 1988-05-09 2024-10-11 01:51:43 +6704 6704 6705 670.4 1340.8000000000002 6704 1988-05-10 2024-10-11 01:51:44.000 1988-05-10 2024-10-11 01:51:44 +6705 6705 6706 670.5 1341 6705 1988-05-11 2024-10-11 01:51:45.000 1988-05-11 2024-10-11 01:51:45 +6706 6706 6707 670.6 1341.2 6706 1988-05-12 2024-10-11 01:51:46.000 1988-05-12 2024-10-11 01:51:46 +6707 6707 6708 670.7 1341.4 6707 1988-05-13 2024-10-11 01:51:47.000 1988-05-13 2024-10-11 01:51:47 +6708 6708 6709 670.8 1341.6000000000001 6708 1988-05-14 2024-10-11 01:51:48.000 1988-05-14 2024-10-11 01:51:48 +6709 6709 6710 670.9 1341.8000000000002 6709 1988-05-15 2024-10-11 01:51:49.000 1988-05-15 2024-10-11 01:51:49 +6710 6710 6711 671 1342 6710 1988-05-16 2024-10-11 01:51:50.000 1988-05-16 2024-10-11 01:51:50 +6711 6711 6712 671.1 1342.2 6711 1988-05-17 2024-10-11 01:51:51.000 1988-05-17 2024-10-11 01:51:51 +6712 6712 6713 671.2 1342.4 6712 1988-05-18 2024-10-11 01:51:52.000 1988-05-18 2024-10-11 01:51:52 +6713 6713 6714 671.3 1342.6000000000001 6713 1988-05-19 2024-10-11 01:51:53.000 1988-05-19 2024-10-11 01:51:53 +6714 6714 6715 671.4 1342.8000000000002 6714 1988-05-20 2024-10-11 01:51:54.000 1988-05-20 2024-10-11 01:51:54 +6715 6715 6716 671.5 1343 6715 1988-05-21 2024-10-11 01:51:55.000 1988-05-21 2024-10-11 01:51:55 +6716 6716 6717 671.6 1343.2 6716 1988-05-22 2024-10-11 01:51:56.000 1988-05-22 2024-10-11 01:51:56 +6717 6717 6718 671.7 1343.4 6717 1988-05-23 2024-10-11 01:51:57.000 1988-05-23 2024-10-11 01:51:57 +6718 6718 6719 671.8 1343.6000000000001 6718 1988-05-24 2024-10-11 01:51:58.000 1988-05-24 2024-10-11 01:51:58 +6719 6719 6720 671.9 1343.8000000000002 6719 1988-05-25 2024-10-11 01:51:59.000 1988-05-25 2024-10-11 01:51:59 +6720 6720 6721 672 1344 6720 1988-05-26 2024-10-11 01:52:00.000 1988-05-26 2024-10-11 01:52:00 +6721 6721 6722 672.1 1344.2 6721 1988-05-27 2024-10-11 01:52:01.000 1988-05-27 2024-10-11 01:52:01 +6722 6722 6723 672.2 1344.4 6722 1988-05-28 2024-10-11 01:52:02.000 1988-05-28 2024-10-11 01:52:02 +6723 6723 6724 672.3 1344.6000000000001 6723 1988-05-29 2024-10-11 01:52:03.000 1988-05-29 2024-10-11 01:52:03 +6724 6724 6725 672.4 1344.8000000000002 6724 1988-05-30 2024-10-11 01:52:04.000 1988-05-30 2024-10-11 01:52:04 +6725 6725 6726 672.5 1345 6725 1988-05-31 2024-10-11 01:52:05.000 1988-05-31 2024-10-11 01:52:05 +6726 6726 6727 672.6 1345.2 6726 1988-06-01 2024-10-11 01:52:06.000 1988-06-01 2024-10-11 01:52:06 +6727 6727 6728 672.7 1345.4 6727 1988-06-02 2024-10-11 01:52:07.000 1988-06-02 2024-10-11 01:52:07 +6728 6728 6729 672.8 1345.6000000000001 6728 1988-06-03 2024-10-11 01:52:08.000 1988-06-03 2024-10-11 01:52:08 +6729 6729 6730 672.9 1345.8000000000002 6729 1988-06-04 2024-10-11 01:52:09.000 1988-06-04 2024-10-11 01:52:09 +6730 6730 6731 673 1346 6730 1988-06-05 2024-10-11 01:52:10.000 1988-06-05 2024-10-11 01:52:10 +6731 6731 6732 673.1 1346.2 6731 1988-06-06 2024-10-11 01:52:11.000 1988-06-06 2024-10-11 01:52:11 +6732 6732 6733 673.2 1346.4 6732 1988-06-07 2024-10-11 01:52:12.000 1988-06-07 2024-10-11 01:52:12 +6733 6733 6734 673.3 1346.6000000000001 6733 1988-06-08 2024-10-11 01:52:13.000 1988-06-08 2024-10-11 01:52:13 +6734 6734 6735 673.4 1346.8000000000002 6734 1988-06-09 2024-10-11 01:52:14.000 1988-06-09 2024-10-11 01:52:14 +6735 6735 6736 673.5 1347 6735 1988-06-10 2024-10-11 01:52:15.000 1988-06-10 2024-10-11 01:52:15 +6736 6736 6737 673.6 1347.2 6736 1988-06-11 2024-10-11 01:52:16.000 1988-06-11 2024-10-11 01:52:16 +6737 6737 6738 673.7 1347.4 6737 1988-06-12 2024-10-11 01:52:17.000 1988-06-12 2024-10-11 01:52:17 +6738 6738 6739 673.8 1347.6000000000001 6738 1988-06-13 2024-10-11 01:52:18.000 1988-06-13 2024-10-11 01:52:18 +6739 6739 6740 673.9 1347.8000000000002 6739 1988-06-14 2024-10-11 01:52:19.000 1988-06-14 2024-10-11 01:52:19 +6740 6740 6741 674 1348 6740 1988-06-15 2024-10-11 01:52:20.000 1988-06-15 2024-10-11 01:52:20 +6741 6741 6742 674.1 1348.2 6741 1988-06-16 2024-10-11 01:52:21.000 1988-06-16 2024-10-11 01:52:21 +6742 6742 6743 674.2 1348.4 6742 1988-06-17 2024-10-11 01:52:22.000 1988-06-17 2024-10-11 01:52:22 +6743 6743 6744 674.3 1348.6000000000001 6743 1988-06-18 2024-10-11 01:52:23.000 1988-06-18 2024-10-11 01:52:23 +6744 6744 6745 674.4 1348.8000000000002 6744 1988-06-19 2024-10-11 01:52:24.000 1988-06-19 2024-10-11 01:52:24 +6745 6745 6746 674.5 1349 6745 1988-06-20 2024-10-11 01:52:25.000 1988-06-20 2024-10-11 01:52:25 +6746 6746 6747 674.6 1349.2 6746 1988-06-21 2024-10-11 01:52:26.000 1988-06-21 2024-10-11 01:52:26 +6747 6747 6748 674.7 1349.4 6747 1988-06-22 2024-10-11 01:52:27.000 1988-06-22 2024-10-11 01:52:27 +6748 6748 6749 674.8 1349.6000000000001 6748 1988-06-23 2024-10-11 01:52:28.000 1988-06-23 2024-10-11 01:52:28 +6749 6749 6750 674.9 1349.8000000000002 6749 1988-06-24 2024-10-11 01:52:29.000 1988-06-24 2024-10-11 01:52:29 +6750 6750 6751 675 1350 6750 1988-06-25 2024-10-11 01:52:30.000 1988-06-25 2024-10-11 01:52:30 +6751 6751 6752 675.1 1350.2 6751 1988-06-26 2024-10-11 01:52:31.000 1988-06-26 2024-10-11 01:52:31 +6752 6752 6753 675.2 1350.4 6752 1988-06-27 2024-10-11 01:52:32.000 1988-06-27 2024-10-11 01:52:32 +6753 6753 6754 675.3 1350.6000000000001 6753 1988-06-28 2024-10-11 01:52:33.000 1988-06-28 2024-10-11 01:52:33 +6754 6754 6755 675.4 1350.8000000000002 6754 1988-06-29 2024-10-11 01:52:34.000 1988-06-29 2024-10-11 01:52:34 +6755 6755 6756 675.5 1351 6755 1988-06-30 2024-10-11 01:52:35.000 1988-06-30 2024-10-11 01:52:35 +6756 6756 6757 675.6 1351.2 6756 1988-07-01 2024-10-11 01:52:36.000 1988-07-01 2024-10-11 01:52:36 +6757 6757 6758 675.7 1351.4 6757 1988-07-02 2024-10-11 01:52:37.000 1988-07-02 2024-10-11 01:52:37 +6758 6758 6759 675.8 1351.6000000000001 6758 1988-07-03 2024-10-11 01:52:38.000 1988-07-03 2024-10-11 01:52:38 +6759 6759 6760 675.9 1351.8000000000002 6759 1988-07-04 2024-10-11 01:52:39.000 1988-07-04 2024-10-11 01:52:39 +6760 6760 6761 676 1352 6760 1988-07-05 2024-10-11 01:52:40.000 1988-07-05 2024-10-11 01:52:40 +6761 6761 6762 676.1 1352.2 6761 1988-07-06 2024-10-11 01:52:41.000 1988-07-06 2024-10-11 01:52:41 +6762 6762 6763 676.2 1352.4 6762 1988-07-07 2024-10-11 01:52:42.000 1988-07-07 2024-10-11 01:52:42 +6763 6763 6764 676.3 1352.6000000000001 6763 1988-07-08 2024-10-11 01:52:43.000 1988-07-08 2024-10-11 01:52:43 +6764 6764 6765 676.4 1352.8000000000002 6764 1988-07-09 2024-10-11 01:52:44.000 1988-07-09 2024-10-11 01:52:44 +6765 6765 6766 676.5 1353 6765 1988-07-10 2024-10-11 01:52:45.000 1988-07-10 2024-10-11 01:52:45 +6766 6766 6767 676.6 1353.2 6766 1988-07-11 2024-10-11 01:52:46.000 1988-07-11 2024-10-11 01:52:46 +6767 6767 6768 676.7 1353.4 6767 1988-07-12 2024-10-11 01:52:47.000 1988-07-12 2024-10-11 01:52:47 +6768 6768 6769 676.8 1353.6000000000001 6768 1988-07-13 2024-10-11 01:52:48.000 1988-07-13 2024-10-11 01:52:48 +6769 6769 6770 676.9 1353.8000000000002 6769 1988-07-14 2024-10-11 01:52:49.000 1988-07-14 2024-10-11 01:52:49 +6770 6770 6771 677 1354 6770 1988-07-15 2024-10-11 01:52:50.000 1988-07-15 2024-10-11 01:52:50 +6771 6771 6772 677.1 1354.2 6771 1988-07-16 2024-10-11 01:52:51.000 1988-07-16 2024-10-11 01:52:51 +6772 6772 6773 677.2 1354.4 6772 1988-07-17 2024-10-11 01:52:52.000 1988-07-17 2024-10-11 01:52:52 +6773 6773 6774 677.3 1354.6000000000001 6773 1988-07-18 2024-10-11 01:52:53.000 1988-07-18 2024-10-11 01:52:53 +6774 6774 6775 677.4 1354.8000000000002 6774 1988-07-19 2024-10-11 01:52:54.000 1988-07-19 2024-10-11 01:52:54 +6775 6775 6776 677.5 1355 6775 1988-07-20 2024-10-11 01:52:55.000 1988-07-20 2024-10-11 01:52:55 +6776 6776 6777 677.6 1355.2 6776 1988-07-21 2024-10-11 01:52:56.000 1988-07-21 2024-10-11 01:52:56 +6777 6777 6778 677.7 1355.4 6777 1988-07-22 2024-10-11 01:52:57.000 1988-07-22 2024-10-11 01:52:57 +6778 6778 6779 677.8 1355.6000000000001 6778 1988-07-23 2024-10-11 01:52:58.000 1988-07-23 2024-10-11 01:52:58 +6779 6779 6780 677.9 1355.8000000000002 6779 1988-07-24 2024-10-11 01:52:59.000 1988-07-24 2024-10-11 01:52:59 +6780 6780 6781 678 1356 6780 1988-07-25 2024-10-11 01:53:00.000 1988-07-25 2024-10-11 01:53:00 +6781 6781 6782 678.1 1356.2 6781 1988-07-26 2024-10-11 01:53:01.000 1988-07-26 2024-10-11 01:53:01 +6782 6782 6783 678.2 1356.4 6782 1988-07-27 2024-10-11 01:53:02.000 1988-07-27 2024-10-11 01:53:02 +6783 6783 6784 678.3 1356.6000000000001 6783 1988-07-28 2024-10-11 01:53:03.000 1988-07-28 2024-10-11 01:53:03 +6784 6784 6785 678.4 1356.8000000000002 6784 1988-07-29 2024-10-11 01:53:04.000 1988-07-29 2024-10-11 01:53:04 +6785 6785 6786 678.5 1357 6785 1988-07-30 2024-10-11 01:53:05.000 1988-07-30 2024-10-11 01:53:05 +6786 6786 6787 678.6 1357.2 6786 1988-07-31 2024-10-11 01:53:06.000 1988-07-31 2024-10-11 01:53:06 +6787 6787 6788 678.7 1357.4 6787 1988-08-01 2024-10-11 01:53:07.000 1988-08-01 2024-10-11 01:53:07 +6788 6788 6789 678.8 1357.6000000000001 6788 1988-08-02 2024-10-11 01:53:08.000 1988-08-02 2024-10-11 01:53:08 +6789 6789 6790 678.9 1357.8000000000002 6789 1988-08-03 2024-10-11 01:53:09.000 1988-08-03 2024-10-11 01:53:09 +6790 6790 6791 679 1358 6790 1988-08-04 2024-10-11 01:53:10.000 1988-08-04 2024-10-11 01:53:10 +6791 6791 6792 679.1 1358.2 6791 1988-08-05 2024-10-11 01:53:11.000 1988-08-05 2024-10-11 01:53:11 +6792 6792 6793 679.2 1358.4 6792 1988-08-06 2024-10-11 01:53:12.000 1988-08-06 2024-10-11 01:53:12 +6793 6793 6794 679.3 1358.6000000000001 6793 1988-08-07 2024-10-11 01:53:13.000 1988-08-07 2024-10-11 01:53:13 +6794 6794 6795 679.4 1358.8000000000002 6794 1988-08-08 2024-10-11 01:53:14.000 1988-08-08 2024-10-11 01:53:14 +6795 6795 6796 679.5 1359 6795 1988-08-09 2024-10-11 01:53:15.000 1988-08-09 2024-10-11 01:53:15 +6796 6796 6797 679.6 1359.2 6796 1988-08-10 2024-10-11 01:53:16.000 1988-08-10 2024-10-11 01:53:16 +6797 6797 6798 679.7 1359.4 6797 1988-08-11 2024-10-11 01:53:17.000 1988-08-11 2024-10-11 01:53:17 +6798 6798 6799 679.8 1359.6000000000001 6798 1988-08-12 2024-10-11 01:53:18.000 1988-08-12 2024-10-11 01:53:18 +6799 6799 6800 679.9 1359.8000000000002 6799 1988-08-13 2024-10-11 01:53:19.000 1988-08-13 2024-10-11 01:53:19 +6800 6800 6801 680 1360 6800 1988-08-14 2024-10-11 01:53:20.000 1988-08-14 2024-10-11 01:53:20 +6801 6801 6802 680.1 1360.2 6801 1988-08-15 2024-10-11 01:53:21.000 1988-08-15 2024-10-11 01:53:21 +6802 6802 6803 680.2 1360.4 6802 1988-08-16 2024-10-11 01:53:22.000 1988-08-16 2024-10-11 01:53:22 +6803 6803 6804 680.3 1360.6000000000001 6803 1988-08-17 2024-10-11 01:53:23.000 1988-08-17 2024-10-11 01:53:23 +6804 6804 6805 680.4 1360.8000000000002 6804 1988-08-18 2024-10-11 01:53:24.000 1988-08-18 2024-10-11 01:53:24 +6805 6805 6806 680.5 1361 6805 1988-08-19 2024-10-11 01:53:25.000 1988-08-19 2024-10-11 01:53:25 +6806 6806 6807 680.6 1361.2 6806 1988-08-20 2024-10-11 01:53:26.000 1988-08-20 2024-10-11 01:53:26 +6807 6807 6808 680.7 1361.4 6807 1988-08-21 2024-10-11 01:53:27.000 1988-08-21 2024-10-11 01:53:27 +6808 6808 6809 680.8 1361.6000000000001 6808 1988-08-22 2024-10-11 01:53:28.000 1988-08-22 2024-10-11 01:53:28 +6809 6809 6810 680.9 1361.8000000000002 6809 1988-08-23 2024-10-11 01:53:29.000 1988-08-23 2024-10-11 01:53:29 +6810 6810 6811 681 1362 6810 1988-08-24 2024-10-11 01:53:30.000 1988-08-24 2024-10-11 01:53:30 +6811 6811 6812 681.1 1362.2 6811 1988-08-25 2024-10-11 01:53:31.000 1988-08-25 2024-10-11 01:53:31 +6812 6812 6813 681.2 1362.4 6812 1988-08-26 2024-10-11 01:53:32.000 1988-08-26 2024-10-11 01:53:32 +6813 6813 6814 681.3 1362.6000000000001 6813 1988-08-27 2024-10-11 01:53:33.000 1988-08-27 2024-10-11 01:53:33 +6814 6814 6815 681.4 1362.8000000000002 6814 1988-08-28 2024-10-11 01:53:34.000 1988-08-28 2024-10-11 01:53:34 +6815 6815 6816 681.5 1363 6815 1988-08-29 2024-10-11 01:53:35.000 1988-08-29 2024-10-11 01:53:35 +6816 6816 6817 681.6 1363.2 6816 1988-08-30 2024-10-11 01:53:36.000 1988-08-30 2024-10-11 01:53:36 +6817 6817 6818 681.7 1363.4 6817 1988-08-31 2024-10-11 01:53:37.000 1988-08-31 2024-10-11 01:53:37 +6818 6818 6819 681.8 1363.6000000000001 6818 1988-09-01 2024-10-11 01:53:38.000 1988-09-01 2024-10-11 01:53:38 +6819 6819 6820 681.9 1363.8000000000002 6819 1988-09-02 2024-10-11 01:53:39.000 1988-09-02 2024-10-11 01:53:39 +6820 6820 6821 682 1364 6820 1988-09-03 2024-10-11 01:53:40.000 1988-09-03 2024-10-11 01:53:40 +6821 6821 6822 682.1 1364.2 6821 1988-09-04 2024-10-11 01:53:41.000 1988-09-04 2024-10-11 01:53:41 +6822 6822 6823 682.2 1364.4 6822 1988-09-05 2024-10-11 01:53:42.000 1988-09-05 2024-10-11 01:53:42 +6823 6823 6824 682.3 1364.6000000000001 6823 1988-09-06 2024-10-11 01:53:43.000 1988-09-06 2024-10-11 01:53:43 +6824 6824 6825 682.4 1364.8000000000002 6824 1988-09-07 2024-10-11 01:53:44.000 1988-09-07 2024-10-11 01:53:44 +6825 6825 6826 682.5 1365 6825 1988-09-08 2024-10-11 01:53:45.000 1988-09-08 2024-10-11 01:53:45 +6826 6826 6827 682.6 1365.2 6826 1988-09-09 2024-10-11 01:53:46.000 1988-09-09 2024-10-11 01:53:46 +6827 6827 6828 682.7 1365.4 6827 1988-09-10 2024-10-11 01:53:47.000 1988-09-10 2024-10-11 01:53:47 +6828 6828 6829 682.8 1365.6000000000001 6828 1988-09-11 2024-10-11 01:53:48.000 1988-09-11 2024-10-11 01:53:48 +6829 6829 6830 682.9 1365.8000000000002 6829 1988-09-12 2024-10-11 01:53:49.000 1988-09-12 2024-10-11 01:53:49 +6830 6830 6831 683 1366 6830 1988-09-13 2024-10-11 01:53:50.000 1988-09-13 2024-10-11 01:53:50 +6831 6831 6832 683.1 1366.2 6831 1988-09-14 2024-10-11 01:53:51.000 1988-09-14 2024-10-11 01:53:51 +6832 6832 6833 683.2 1366.4 6832 1988-09-15 2024-10-11 01:53:52.000 1988-09-15 2024-10-11 01:53:52 +6833 6833 6834 683.3 1366.6000000000001 6833 1988-09-16 2024-10-11 01:53:53.000 1988-09-16 2024-10-11 01:53:53 +6834 6834 6835 683.4 1366.8000000000002 6834 1988-09-17 2024-10-11 01:53:54.000 1988-09-17 2024-10-11 01:53:54 +6835 6835 6836 683.5 1367 6835 1988-09-18 2024-10-11 01:53:55.000 1988-09-18 2024-10-11 01:53:55 +6836 6836 6837 683.6 1367.2 6836 1988-09-19 2024-10-11 01:53:56.000 1988-09-19 2024-10-11 01:53:56 +6837 6837 6838 683.7 1367.4 6837 1988-09-20 2024-10-11 01:53:57.000 1988-09-20 2024-10-11 01:53:57 +6838 6838 6839 683.8 1367.6000000000001 6838 1988-09-21 2024-10-11 01:53:58.000 1988-09-21 2024-10-11 01:53:58 +6839 6839 6840 683.9 1367.8000000000002 6839 1988-09-22 2024-10-11 01:53:59.000 1988-09-22 2024-10-11 01:53:59 +6840 6840 6841 684 1368 6840 1988-09-23 2024-10-11 01:54:00.000 1988-09-23 2024-10-11 01:54:00 +6841 6841 6842 684.1 1368.2 6841 1988-09-24 2024-10-11 01:54:01.000 1988-09-24 2024-10-11 01:54:01 +6842 6842 6843 684.2 1368.4 6842 1988-09-25 2024-10-11 01:54:02.000 1988-09-25 2024-10-11 01:54:02 +6843 6843 6844 684.3 1368.6000000000001 6843 1988-09-26 2024-10-11 01:54:03.000 1988-09-26 2024-10-11 01:54:03 +6844 6844 6845 684.4 1368.8000000000002 6844 1988-09-27 2024-10-11 01:54:04.000 1988-09-27 2024-10-11 01:54:04 +6845 6845 6846 684.5 1369 6845 1988-09-28 2024-10-11 01:54:05.000 1988-09-28 2024-10-11 01:54:05 +6846 6846 6847 684.6 1369.2 6846 1988-09-29 2024-10-11 01:54:06.000 1988-09-29 2024-10-11 01:54:06 +6847 6847 6848 684.7 1369.4 6847 1988-09-30 2024-10-11 01:54:07.000 1988-09-30 2024-10-11 01:54:07 +6848 6848 6849 684.8 1369.6000000000001 6848 1988-10-01 2024-10-11 01:54:08.000 1988-10-01 2024-10-11 01:54:08 +6849 6849 6850 684.9 1369.8000000000002 6849 1988-10-02 2024-10-11 01:54:09.000 1988-10-02 2024-10-11 01:54:09 +6850 6850 6851 685 1370 6850 1988-10-03 2024-10-11 01:54:10.000 1988-10-03 2024-10-11 01:54:10 +6851 6851 6852 685.1 1370.2 6851 1988-10-04 2024-10-11 01:54:11.000 1988-10-04 2024-10-11 01:54:11 +6852 6852 6853 685.2 1370.4 6852 1988-10-05 2024-10-11 01:54:12.000 1988-10-05 2024-10-11 01:54:12 +6853 6853 6854 685.3 1370.6000000000001 6853 1988-10-06 2024-10-11 01:54:13.000 1988-10-06 2024-10-11 01:54:13 +6854 6854 6855 685.4 1370.8000000000002 6854 1988-10-07 2024-10-11 01:54:14.000 1988-10-07 2024-10-11 01:54:14 +6855 6855 6856 685.5 1371 6855 1988-10-08 2024-10-11 01:54:15.000 1988-10-08 2024-10-11 01:54:15 +6856 6856 6857 685.6 1371.2 6856 1988-10-09 2024-10-11 01:54:16.000 1988-10-09 2024-10-11 01:54:16 +6857 6857 6858 685.7 1371.4 6857 1988-10-10 2024-10-11 01:54:17.000 1988-10-10 2024-10-11 01:54:17 +6858 6858 6859 685.8 1371.6000000000001 6858 1988-10-11 2024-10-11 01:54:18.000 1988-10-11 2024-10-11 01:54:18 +6859 6859 6860 685.9 1371.8000000000002 6859 1988-10-12 2024-10-11 01:54:19.000 1988-10-12 2024-10-11 01:54:19 +6860 6860 6861 686 1372 6860 1988-10-13 2024-10-11 01:54:20.000 1988-10-13 2024-10-11 01:54:20 +6861 6861 6862 686.1 1372.2 6861 1988-10-14 2024-10-11 01:54:21.000 1988-10-14 2024-10-11 01:54:21 +6862 6862 6863 686.2 1372.4 6862 1988-10-15 2024-10-11 01:54:22.000 1988-10-15 2024-10-11 01:54:22 +6863 6863 6864 686.3 1372.6000000000001 6863 1988-10-16 2024-10-11 01:54:23.000 1988-10-16 2024-10-11 01:54:23 +6864 6864 6865 686.4 1372.8000000000002 6864 1988-10-17 2024-10-11 01:54:24.000 1988-10-17 2024-10-11 01:54:24 +6865 6865 6866 686.5 1373 6865 1988-10-18 2024-10-11 01:54:25.000 1988-10-18 2024-10-11 01:54:25 +6866 6866 6867 686.6 1373.2 6866 1988-10-19 2024-10-11 01:54:26.000 1988-10-19 2024-10-11 01:54:26 +6867 6867 6868 686.7 1373.4 6867 1988-10-20 2024-10-11 01:54:27.000 1988-10-20 2024-10-11 01:54:27 +6868 6868 6869 686.8 1373.6000000000001 6868 1988-10-21 2024-10-11 01:54:28.000 1988-10-21 2024-10-11 01:54:28 +6869 6869 6870 686.9 1373.8000000000002 6869 1988-10-22 2024-10-11 01:54:29.000 1988-10-22 2024-10-11 01:54:29 +6870 6870 6871 687 1374 6870 1988-10-23 2024-10-11 01:54:30.000 1988-10-23 2024-10-11 01:54:30 +6871 6871 6872 687.1 1374.2 6871 1988-10-24 2024-10-11 01:54:31.000 1988-10-24 2024-10-11 01:54:31 +6872 6872 6873 687.2 1374.4 6872 1988-10-25 2024-10-11 01:54:32.000 1988-10-25 2024-10-11 01:54:32 +6873 6873 6874 687.3 1374.6000000000001 6873 1988-10-26 2024-10-11 01:54:33.000 1988-10-26 2024-10-11 01:54:33 +6874 6874 6875 687.4 1374.8000000000002 6874 1988-10-27 2024-10-11 01:54:34.000 1988-10-27 2024-10-11 01:54:34 +6875 6875 6876 687.5 1375 6875 1988-10-28 2024-10-11 01:54:35.000 1988-10-28 2024-10-11 01:54:35 +6876 6876 6877 687.6 1375.2 6876 1988-10-29 2024-10-11 01:54:36.000 1988-10-29 2024-10-11 01:54:36 +6877 6877 6878 687.7 1375.4 6877 1988-10-30 2024-10-11 01:54:37.000 1988-10-30 2024-10-11 01:54:37 +6878 6878 6879 687.8 1375.6000000000001 6878 1988-10-31 2024-10-11 01:54:38.000 1988-10-31 2024-10-11 01:54:38 +6879 6879 6880 687.9 1375.8000000000002 6879 1988-11-01 2024-10-11 01:54:39.000 1988-11-01 2024-10-11 01:54:39 +6880 6880 6881 688 1376 6880 1988-11-02 2024-10-11 01:54:40.000 1988-11-02 2024-10-11 01:54:40 +6881 6881 6882 688.1 1376.2 6881 1988-11-03 2024-10-11 01:54:41.000 1988-11-03 2024-10-11 01:54:41 +6882 6882 6883 688.2 1376.4 6882 1988-11-04 2024-10-11 01:54:42.000 1988-11-04 2024-10-11 01:54:42 +6883 6883 6884 688.3 1376.6000000000001 6883 1988-11-05 2024-10-11 01:54:43.000 1988-11-05 2024-10-11 01:54:43 +6884 6884 6885 688.4 1376.8000000000002 6884 1988-11-06 2024-10-11 01:54:44.000 1988-11-06 2024-10-11 01:54:44 +6885 6885 6886 688.5 1377 6885 1988-11-07 2024-10-11 01:54:45.000 1988-11-07 2024-10-11 01:54:45 +6886 6886 6887 688.6 1377.2 6886 1988-11-08 2024-10-11 01:54:46.000 1988-11-08 2024-10-11 01:54:46 +6887 6887 6888 688.7 1377.4 6887 1988-11-09 2024-10-11 01:54:47.000 1988-11-09 2024-10-11 01:54:47 +6888 6888 6889 688.8 1377.6000000000001 6888 1988-11-10 2024-10-11 01:54:48.000 1988-11-10 2024-10-11 01:54:48 +6889 6889 6890 688.9 1377.8000000000002 6889 1988-11-11 2024-10-11 01:54:49.000 1988-11-11 2024-10-11 01:54:49 +6890 6890 6891 689 1378 6890 1988-11-12 2024-10-11 01:54:50.000 1988-11-12 2024-10-11 01:54:50 +6891 6891 6892 689.1 1378.2 6891 1988-11-13 2024-10-11 01:54:51.000 1988-11-13 2024-10-11 01:54:51 +6892 6892 6893 689.2 1378.4 6892 1988-11-14 2024-10-11 01:54:52.000 1988-11-14 2024-10-11 01:54:52 +6893 6893 6894 689.3 1378.6000000000001 6893 1988-11-15 2024-10-11 01:54:53.000 1988-11-15 2024-10-11 01:54:53 +6894 6894 6895 689.4 1378.8000000000002 6894 1988-11-16 2024-10-11 01:54:54.000 1988-11-16 2024-10-11 01:54:54 +6895 6895 6896 689.5 1379 6895 1988-11-17 2024-10-11 01:54:55.000 1988-11-17 2024-10-11 01:54:55 +6896 6896 6897 689.6 1379.2 6896 1988-11-18 2024-10-11 01:54:56.000 1988-11-18 2024-10-11 01:54:56 +6897 6897 6898 689.7 1379.4 6897 1988-11-19 2024-10-11 01:54:57.000 1988-11-19 2024-10-11 01:54:57 +6898 6898 6899 689.8 1379.6000000000001 6898 1988-11-20 2024-10-11 01:54:58.000 1988-11-20 2024-10-11 01:54:58 +6899 6899 6900 689.9 1379.8000000000002 6899 1988-11-21 2024-10-11 01:54:59.000 1988-11-21 2024-10-11 01:54:59 +6900 6900 6901 690 1380 6900 1988-11-22 2024-10-11 01:55:00.000 1988-11-22 2024-10-11 01:55:00 +6901 6901 6902 690.1 1380.2 6901 1988-11-23 2024-10-11 01:55:01.000 1988-11-23 2024-10-11 01:55:01 +6902 6902 6903 690.2 1380.4 6902 1988-11-24 2024-10-11 01:55:02.000 1988-11-24 2024-10-11 01:55:02 +6903 6903 6904 690.3 1380.6000000000001 6903 1988-11-25 2024-10-11 01:55:03.000 1988-11-25 2024-10-11 01:55:03 +6904 6904 6905 690.4 1380.8000000000002 6904 1988-11-26 2024-10-11 01:55:04.000 1988-11-26 2024-10-11 01:55:04 +6905 6905 6906 690.5 1381 6905 1988-11-27 2024-10-11 01:55:05.000 1988-11-27 2024-10-11 01:55:05 +6906 6906 6907 690.6 1381.2 6906 1988-11-28 2024-10-11 01:55:06.000 1988-11-28 2024-10-11 01:55:06 +6907 6907 6908 690.7 1381.4 6907 1988-11-29 2024-10-11 01:55:07.000 1988-11-29 2024-10-11 01:55:07 +6908 6908 6909 690.8 1381.6000000000001 6908 1988-11-30 2024-10-11 01:55:08.000 1988-11-30 2024-10-11 01:55:08 +6909 6909 6910 690.9 1381.8000000000002 6909 1988-12-01 2024-10-11 01:55:09.000 1988-12-01 2024-10-11 01:55:09 +6910 6910 6911 691 1382 6910 1988-12-02 2024-10-11 01:55:10.000 1988-12-02 2024-10-11 01:55:10 +6911 6911 6912 691.1 1382.2 6911 1988-12-03 2024-10-11 01:55:11.000 1988-12-03 2024-10-11 01:55:11 +6912 6912 6913 691.2 1382.4 6912 1988-12-04 2024-10-11 01:55:12.000 1988-12-04 2024-10-11 01:55:12 +6913 6913 6914 691.3 1382.6000000000001 6913 1988-12-05 2024-10-11 01:55:13.000 1988-12-05 2024-10-11 01:55:13 +6914 6914 6915 691.4 1382.8000000000002 6914 1988-12-06 2024-10-11 01:55:14.000 1988-12-06 2024-10-11 01:55:14 +6915 6915 6916 691.5 1383 6915 1988-12-07 2024-10-11 01:55:15.000 1988-12-07 2024-10-11 01:55:15 +6916 6916 6917 691.6 1383.2 6916 1988-12-08 2024-10-11 01:55:16.000 1988-12-08 2024-10-11 01:55:16 +6917 6917 6918 691.7 1383.4 6917 1988-12-09 2024-10-11 01:55:17.000 1988-12-09 2024-10-11 01:55:17 +6918 6918 6919 691.8 1383.6000000000001 6918 1988-12-10 2024-10-11 01:55:18.000 1988-12-10 2024-10-11 01:55:18 +6919 6919 6920 691.9 1383.8000000000002 6919 1988-12-11 2024-10-11 01:55:19.000 1988-12-11 2024-10-11 01:55:19 +6920 6920 6921 692 1384 6920 1988-12-12 2024-10-11 01:55:20.000 1988-12-12 2024-10-11 01:55:20 +6921 6921 6922 692.1 1384.2 6921 1988-12-13 2024-10-11 01:55:21.000 1988-12-13 2024-10-11 01:55:21 +6922 6922 6923 692.2 1384.4 6922 1988-12-14 2024-10-11 01:55:22.000 1988-12-14 2024-10-11 01:55:22 +6923 6923 6924 692.3 1384.6000000000001 6923 1988-12-15 2024-10-11 01:55:23.000 1988-12-15 2024-10-11 01:55:23 +6924 6924 6925 692.4 1384.8000000000002 6924 1988-12-16 2024-10-11 01:55:24.000 1988-12-16 2024-10-11 01:55:24 +6925 6925 6926 692.5 1385 6925 1988-12-17 2024-10-11 01:55:25.000 1988-12-17 2024-10-11 01:55:25 +6926 6926 6927 692.6 1385.2 6926 1988-12-18 2024-10-11 01:55:26.000 1988-12-18 2024-10-11 01:55:26 +6927 6927 6928 692.7 1385.4 6927 1988-12-19 2024-10-11 01:55:27.000 1988-12-19 2024-10-11 01:55:27 +6928 6928 6929 692.8 1385.6000000000001 6928 1988-12-20 2024-10-11 01:55:28.000 1988-12-20 2024-10-11 01:55:28 +6929 6929 6930 692.9 1385.8000000000002 6929 1988-12-21 2024-10-11 01:55:29.000 1988-12-21 2024-10-11 01:55:29 +6930 6930 6931 693 1386 6930 1988-12-22 2024-10-11 01:55:30.000 1988-12-22 2024-10-11 01:55:30 +6931 6931 6932 693.1 1386.2 6931 1988-12-23 2024-10-11 01:55:31.000 1988-12-23 2024-10-11 01:55:31 +6932 6932 6933 693.2 1386.4 6932 1988-12-24 2024-10-11 01:55:32.000 1988-12-24 2024-10-11 01:55:32 +6933 6933 6934 693.3 1386.6000000000001 6933 1988-12-25 2024-10-11 01:55:33.000 1988-12-25 2024-10-11 01:55:33 +6934 6934 6935 693.4 1386.8000000000002 6934 1988-12-26 2024-10-11 01:55:34.000 1988-12-26 2024-10-11 01:55:34 +6935 6935 6936 693.5 1387 6935 1988-12-27 2024-10-11 01:55:35.000 1988-12-27 2024-10-11 01:55:35 +6936 6936 6937 693.6 1387.2 6936 1988-12-28 2024-10-11 01:55:36.000 1988-12-28 2024-10-11 01:55:36 +6937 6937 6938 693.7 1387.4 6937 1988-12-29 2024-10-11 01:55:37.000 1988-12-29 2024-10-11 01:55:37 +6938 6938 6939 693.8 1387.6000000000001 6938 1988-12-30 2024-10-11 01:55:38.000 1988-12-30 2024-10-11 01:55:38 +6939 6939 6940 693.9 1387.8000000000002 6939 1988-12-31 2024-10-11 01:55:39.000 1988-12-31 2024-10-11 01:55:39 +6940 6940 6941 694 1388 6940 1989-01-01 2024-10-11 01:55:40.000 1989-01-01 2024-10-11 01:55:40 +6941 6941 6942 694.1 1388.2 6941 1989-01-02 2024-10-11 01:55:41.000 1989-01-02 2024-10-11 01:55:41 +6942 6942 6943 694.2 1388.4 6942 1989-01-03 2024-10-11 01:55:42.000 1989-01-03 2024-10-11 01:55:42 +6943 6943 6944 694.3 1388.6000000000001 6943 1989-01-04 2024-10-11 01:55:43.000 1989-01-04 2024-10-11 01:55:43 +6944 6944 6945 694.4 1388.8000000000002 6944 1989-01-05 2024-10-11 01:55:44.000 1989-01-05 2024-10-11 01:55:44 +6945 6945 6946 694.5 1389 6945 1989-01-06 2024-10-11 01:55:45.000 1989-01-06 2024-10-11 01:55:45 +6946 6946 6947 694.6 1389.2 6946 1989-01-07 2024-10-11 01:55:46.000 1989-01-07 2024-10-11 01:55:46 +6947 6947 6948 694.7 1389.4 6947 1989-01-08 2024-10-11 01:55:47.000 1989-01-08 2024-10-11 01:55:47 +6948 6948 6949 694.8 1389.6000000000001 6948 1989-01-09 2024-10-11 01:55:48.000 1989-01-09 2024-10-11 01:55:48 +6949 6949 6950 694.9 1389.8000000000002 6949 1989-01-10 2024-10-11 01:55:49.000 1989-01-10 2024-10-11 01:55:49 +6950 6950 6951 695 1390 6950 1989-01-11 2024-10-11 01:55:50.000 1989-01-11 2024-10-11 01:55:50 +6951 6951 6952 695.1 1390.2 6951 1989-01-12 2024-10-11 01:55:51.000 1989-01-12 2024-10-11 01:55:51 +6952 6952 6953 695.2 1390.4 6952 1989-01-13 2024-10-11 01:55:52.000 1989-01-13 2024-10-11 01:55:52 +6953 6953 6954 695.3 1390.6000000000001 6953 1989-01-14 2024-10-11 01:55:53.000 1989-01-14 2024-10-11 01:55:53 +6954 6954 6955 695.4 1390.8000000000002 6954 1989-01-15 2024-10-11 01:55:54.000 1989-01-15 2024-10-11 01:55:54 +6955 6955 6956 695.5 1391 6955 1989-01-16 2024-10-11 01:55:55.000 1989-01-16 2024-10-11 01:55:55 +6956 6956 6957 695.6 1391.2 6956 1989-01-17 2024-10-11 01:55:56.000 1989-01-17 2024-10-11 01:55:56 +6957 6957 6958 695.7 1391.4 6957 1989-01-18 2024-10-11 01:55:57.000 1989-01-18 2024-10-11 01:55:57 +6958 6958 6959 695.8 1391.6000000000001 6958 1989-01-19 2024-10-11 01:55:58.000 1989-01-19 2024-10-11 01:55:58 +6959 6959 6960 695.9 1391.8000000000002 6959 1989-01-20 2024-10-11 01:55:59.000 1989-01-20 2024-10-11 01:55:59 +6960 6960 6961 696 1392 6960 1989-01-21 2024-10-11 01:56:00.000 1989-01-21 2024-10-11 01:56:00 +6961 6961 6962 696.1 1392.2 6961 1989-01-22 2024-10-11 01:56:01.000 1989-01-22 2024-10-11 01:56:01 +6962 6962 6963 696.2 1392.4 6962 1989-01-23 2024-10-11 01:56:02.000 1989-01-23 2024-10-11 01:56:02 +6963 6963 6964 696.3 1392.6000000000001 6963 1989-01-24 2024-10-11 01:56:03.000 1989-01-24 2024-10-11 01:56:03 +6964 6964 6965 696.4 1392.8000000000002 6964 1989-01-25 2024-10-11 01:56:04.000 1989-01-25 2024-10-11 01:56:04 +6965 6965 6966 696.5 1393 6965 1989-01-26 2024-10-11 01:56:05.000 1989-01-26 2024-10-11 01:56:05 +6966 6966 6967 696.6 1393.2 6966 1989-01-27 2024-10-11 01:56:06.000 1989-01-27 2024-10-11 01:56:06 +6967 6967 6968 696.7 1393.4 6967 1989-01-28 2024-10-11 01:56:07.000 1989-01-28 2024-10-11 01:56:07 +6968 6968 6969 696.8 1393.6000000000001 6968 1989-01-29 2024-10-11 01:56:08.000 1989-01-29 2024-10-11 01:56:08 +6969 6969 6970 696.9 1393.8000000000002 6969 1989-01-30 2024-10-11 01:56:09.000 1989-01-30 2024-10-11 01:56:09 +6970 6970 6971 697 1394 6970 1989-01-31 2024-10-11 01:56:10.000 1989-01-31 2024-10-11 01:56:10 +6971 6971 6972 697.1 1394.2 6971 1989-02-01 2024-10-11 01:56:11.000 1989-02-01 2024-10-11 01:56:11 +6972 6972 6973 697.2 1394.4 6972 1989-02-02 2024-10-11 01:56:12.000 1989-02-02 2024-10-11 01:56:12 +6973 6973 6974 697.3 1394.6000000000001 6973 1989-02-03 2024-10-11 01:56:13.000 1989-02-03 2024-10-11 01:56:13 +6974 6974 6975 697.4 1394.8000000000002 6974 1989-02-04 2024-10-11 01:56:14.000 1989-02-04 2024-10-11 01:56:14 +6975 6975 6976 697.5 1395 6975 1989-02-05 2024-10-11 01:56:15.000 1989-02-05 2024-10-11 01:56:15 +6976 6976 6977 697.6 1395.2 6976 1989-02-06 2024-10-11 01:56:16.000 1989-02-06 2024-10-11 01:56:16 +6977 6977 6978 697.7 1395.4 6977 1989-02-07 2024-10-11 01:56:17.000 1989-02-07 2024-10-11 01:56:17 +6978 6978 6979 697.8 1395.6000000000001 6978 1989-02-08 2024-10-11 01:56:18.000 1989-02-08 2024-10-11 01:56:18 +6979 6979 6980 697.9 1395.8000000000002 6979 1989-02-09 2024-10-11 01:56:19.000 1989-02-09 2024-10-11 01:56:19 +6980 6980 6981 698 1396 6980 1989-02-10 2024-10-11 01:56:20.000 1989-02-10 2024-10-11 01:56:20 +6981 6981 6982 698.1 1396.2 6981 1989-02-11 2024-10-11 01:56:21.000 1989-02-11 2024-10-11 01:56:21 +6982 6982 6983 698.2 1396.4 6982 1989-02-12 2024-10-11 01:56:22.000 1989-02-12 2024-10-11 01:56:22 +6983 6983 6984 698.3 1396.6000000000001 6983 1989-02-13 2024-10-11 01:56:23.000 1989-02-13 2024-10-11 01:56:23 +6984 6984 6985 698.4 1396.8000000000002 6984 1989-02-14 2024-10-11 01:56:24.000 1989-02-14 2024-10-11 01:56:24 +6985 6985 6986 698.5 1397 6985 1989-02-15 2024-10-11 01:56:25.000 1989-02-15 2024-10-11 01:56:25 +6986 6986 6987 698.6 1397.2 6986 1989-02-16 2024-10-11 01:56:26.000 1989-02-16 2024-10-11 01:56:26 +6987 6987 6988 698.7 1397.4 6987 1989-02-17 2024-10-11 01:56:27.000 1989-02-17 2024-10-11 01:56:27 +6988 6988 6989 698.8 1397.6000000000001 6988 1989-02-18 2024-10-11 01:56:28.000 1989-02-18 2024-10-11 01:56:28 +6989 6989 6990 698.9 1397.8000000000002 6989 1989-02-19 2024-10-11 01:56:29.000 1989-02-19 2024-10-11 01:56:29 +6990 6990 6991 699 1398 6990 1989-02-20 2024-10-11 01:56:30.000 1989-02-20 2024-10-11 01:56:30 +6991 6991 6992 699.1 1398.2 6991 1989-02-21 2024-10-11 01:56:31.000 1989-02-21 2024-10-11 01:56:31 +6992 6992 6993 699.2 1398.4 6992 1989-02-22 2024-10-11 01:56:32.000 1989-02-22 2024-10-11 01:56:32 +6993 6993 6994 699.3 1398.6000000000001 6993 1989-02-23 2024-10-11 01:56:33.000 1989-02-23 2024-10-11 01:56:33 +6994 6994 6995 699.4 1398.8000000000002 6994 1989-02-24 2024-10-11 01:56:34.000 1989-02-24 2024-10-11 01:56:34 +6995 6995 6996 699.5 1399 6995 1989-02-25 2024-10-11 01:56:35.000 1989-02-25 2024-10-11 01:56:35 +6996 6996 6997 699.6 1399.2 6996 1989-02-26 2024-10-11 01:56:36.000 1989-02-26 2024-10-11 01:56:36 +6997 6997 6998 699.7 1399.4 6997 1989-02-27 2024-10-11 01:56:37.000 1989-02-27 2024-10-11 01:56:37 +6998 6998 6999 699.8 1399.6000000000001 6998 1989-02-28 2024-10-11 01:56:38.000 1989-02-28 2024-10-11 01:56:38 +6999 6999 7000 699.9 1399.8000000000002 6999 1989-03-01 2024-10-11 01:56:39.000 1989-03-01 2024-10-11 01:56:39 +7000 7000 7001 700 1400 7000 1989-03-02 2024-10-11 01:56:40.000 1989-03-02 2024-10-11 01:56:40 +7001 7001 7002 700.1 1400.2 7001 1989-03-03 2024-10-11 01:56:41.000 1989-03-03 2024-10-11 01:56:41 +7002 7002 7003 700.2 1400.4 7002 1989-03-04 2024-10-11 01:56:42.000 1989-03-04 2024-10-11 01:56:42 +7003 7003 7004 700.3 1400.6000000000001 7003 1989-03-05 2024-10-11 01:56:43.000 1989-03-05 2024-10-11 01:56:43 +7004 7004 7005 700.4 1400.8000000000002 7004 1989-03-06 2024-10-11 01:56:44.000 1989-03-06 2024-10-11 01:56:44 +7005 7005 7006 700.5 1401 7005 1989-03-07 2024-10-11 01:56:45.000 1989-03-07 2024-10-11 01:56:45 +7006 7006 7007 700.6 1401.2 7006 1989-03-08 2024-10-11 01:56:46.000 1989-03-08 2024-10-11 01:56:46 +7007 7007 7008 700.7 1401.4 7007 1989-03-09 2024-10-11 01:56:47.000 1989-03-09 2024-10-11 01:56:47 +7008 7008 7009 700.8 1401.6000000000001 7008 1989-03-10 2024-10-11 01:56:48.000 1989-03-10 2024-10-11 01:56:48 +7009 7009 7010 700.9 1401.8000000000002 7009 1989-03-11 2024-10-11 01:56:49.000 1989-03-11 2024-10-11 01:56:49 +7010 7010 7011 701 1402 7010 1989-03-12 2024-10-11 01:56:50.000 1989-03-12 2024-10-11 01:56:50 +7011 7011 7012 701.1 1402.2 7011 1989-03-13 2024-10-11 01:56:51.000 1989-03-13 2024-10-11 01:56:51 +7012 7012 7013 701.2 1402.4 7012 1989-03-14 2024-10-11 01:56:52.000 1989-03-14 2024-10-11 01:56:52 +7013 7013 7014 701.3 1402.6000000000001 7013 1989-03-15 2024-10-11 01:56:53.000 1989-03-15 2024-10-11 01:56:53 +7014 7014 7015 701.4 1402.8000000000002 7014 1989-03-16 2024-10-11 01:56:54.000 1989-03-16 2024-10-11 01:56:54 +7015 7015 7016 701.5 1403 7015 1989-03-17 2024-10-11 01:56:55.000 1989-03-17 2024-10-11 01:56:55 +7016 7016 7017 701.6 1403.2 7016 1989-03-18 2024-10-11 01:56:56.000 1989-03-18 2024-10-11 01:56:56 +7017 7017 7018 701.7 1403.4 7017 1989-03-19 2024-10-11 01:56:57.000 1989-03-19 2024-10-11 01:56:57 +7018 7018 7019 701.8 1403.6000000000001 7018 1989-03-20 2024-10-11 01:56:58.000 1989-03-20 2024-10-11 01:56:58 +7019 7019 7020 701.9 1403.8000000000002 7019 1989-03-21 2024-10-11 01:56:59.000 1989-03-21 2024-10-11 01:56:59 +7020 7020 7021 702 1404 7020 1989-03-22 2024-10-11 01:57:00.000 1989-03-22 2024-10-11 01:57:00 +7021 7021 7022 702.1 1404.2 7021 1989-03-23 2024-10-11 01:57:01.000 1989-03-23 2024-10-11 01:57:01 +7022 7022 7023 702.2 1404.4 7022 1989-03-24 2024-10-11 01:57:02.000 1989-03-24 2024-10-11 01:57:02 +7023 7023 7024 702.3 1404.6000000000001 7023 1989-03-25 2024-10-11 01:57:03.000 1989-03-25 2024-10-11 01:57:03 +7024 7024 7025 702.4 1404.8000000000002 7024 1989-03-26 2024-10-11 01:57:04.000 1989-03-26 2024-10-11 01:57:04 +7025 7025 7026 702.5 1405 7025 1989-03-27 2024-10-11 01:57:05.000 1989-03-27 2024-10-11 01:57:05 +7026 7026 7027 702.6 1405.2 7026 1989-03-28 2024-10-11 01:57:06.000 1989-03-28 2024-10-11 01:57:06 +7027 7027 7028 702.7 1405.4 7027 1989-03-29 2024-10-11 01:57:07.000 1989-03-29 2024-10-11 01:57:07 +7028 7028 7029 702.8 1405.6000000000001 7028 1989-03-30 2024-10-11 01:57:08.000 1989-03-30 2024-10-11 01:57:08 +7029 7029 7030 702.9 1405.8000000000002 7029 1989-03-31 2024-10-11 01:57:09.000 1989-03-31 2024-10-11 01:57:09 +7030 7030 7031 703 1406 7030 1989-04-01 2024-10-11 01:57:10.000 1989-04-01 2024-10-11 01:57:10 +7031 7031 7032 703.1 1406.2 7031 1989-04-02 2024-10-11 01:57:11.000 1989-04-02 2024-10-11 01:57:11 +7032 7032 7033 703.2 1406.4 7032 1989-04-03 2024-10-11 01:57:12.000 1989-04-03 2024-10-11 01:57:12 +7033 7033 7034 703.3 1406.6000000000001 7033 1989-04-04 2024-10-11 01:57:13.000 1989-04-04 2024-10-11 01:57:13 +7034 7034 7035 703.4 1406.8000000000002 7034 1989-04-05 2024-10-11 01:57:14.000 1989-04-05 2024-10-11 01:57:14 +7035 7035 7036 703.5 1407 7035 1989-04-06 2024-10-11 01:57:15.000 1989-04-06 2024-10-11 01:57:15 +7036 7036 7037 703.6 1407.2 7036 1989-04-07 2024-10-11 01:57:16.000 1989-04-07 2024-10-11 01:57:16 +7037 7037 7038 703.7 1407.4 7037 1989-04-08 2024-10-11 01:57:17.000 1989-04-08 2024-10-11 01:57:17 +7038 7038 7039 703.8 1407.6000000000001 7038 1989-04-09 2024-10-11 01:57:18.000 1989-04-09 2024-10-11 01:57:18 +7039 7039 7040 703.9 1407.8000000000002 7039 1989-04-10 2024-10-11 01:57:19.000 1989-04-10 2024-10-11 01:57:19 +7040 7040 7041 704 1408 7040 1989-04-11 2024-10-11 01:57:20.000 1989-04-11 2024-10-11 01:57:20 +7041 7041 7042 704.1 1408.2 7041 1989-04-12 2024-10-11 01:57:21.000 1989-04-12 2024-10-11 01:57:21 +7042 7042 7043 704.2 1408.4 7042 1989-04-13 2024-10-11 01:57:22.000 1989-04-13 2024-10-11 01:57:22 +7043 7043 7044 704.3 1408.6000000000001 7043 1989-04-14 2024-10-11 01:57:23.000 1989-04-14 2024-10-11 01:57:23 +7044 7044 7045 704.4 1408.8000000000002 7044 1989-04-15 2024-10-11 01:57:24.000 1989-04-15 2024-10-11 01:57:24 +7045 7045 7046 704.5 1409 7045 1989-04-16 2024-10-11 01:57:25.000 1989-04-16 2024-10-11 01:57:25 +7046 7046 7047 704.6 1409.2 7046 1989-04-17 2024-10-11 01:57:26.000 1989-04-17 2024-10-11 01:57:26 +7047 7047 7048 704.7 1409.4 7047 1989-04-18 2024-10-11 01:57:27.000 1989-04-18 2024-10-11 01:57:27 +7048 7048 7049 704.8 1409.6000000000001 7048 1989-04-19 2024-10-11 01:57:28.000 1989-04-19 2024-10-11 01:57:28 +7049 7049 7050 704.9 1409.8000000000002 7049 1989-04-20 2024-10-11 01:57:29.000 1989-04-20 2024-10-11 01:57:29 +7050 7050 7051 705 1410 7050 1989-04-21 2024-10-11 01:57:30.000 1989-04-21 2024-10-11 01:57:30 +7051 7051 7052 705.1 1410.2 7051 1989-04-22 2024-10-11 01:57:31.000 1989-04-22 2024-10-11 01:57:31 +7052 7052 7053 705.2 1410.4 7052 1989-04-23 2024-10-11 01:57:32.000 1989-04-23 2024-10-11 01:57:32 +7053 7053 7054 705.3 1410.6000000000001 7053 1989-04-24 2024-10-11 01:57:33.000 1989-04-24 2024-10-11 01:57:33 +7054 7054 7055 705.4 1410.8000000000002 7054 1989-04-25 2024-10-11 01:57:34.000 1989-04-25 2024-10-11 01:57:34 +7055 7055 7056 705.5 1411 7055 1989-04-26 2024-10-11 01:57:35.000 1989-04-26 2024-10-11 01:57:35 +7056 7056 7057 705.6 1411.2 7056 1989-04-27 2024-10-11 01:57:36.000 1989-04-27 2024-10-11 01:57:36 +7057 7057 7058 705.7 1411.4 7057 1989-04-28 2024-10-11 01:57:37.000 1989-04-28 2024-10-11 01:57:37 +7058 7058 7059 705.8 1411.6000000000001 7058 1989-04-29 2024-10-11 01:57:38.000 1989-04-29 2024-10-11 01:57:38 +7059 7059 7060 705.9 1411.8000000000002 7059 1989-04-30 2024-10-11 01:57:39.000 1989-04-30 2024-10-11 01:57:39 +7060 7060 7061 706 1412 7060 1989-05-01 2024-10-11 01:57:40.000 1989-05-01 2024-10-11 01:57:40 +7061 7061 7062 706.1 1412.2 7061 1989-05-02 2024-10-11 01:57:41.000 1989-05-02 2024-10-11 01:57:41 +7062 7062 7063 706.2 1412.4 7062 1989-05-03 2024-10-11 01:57:42.000 1989-05-03 2024-10-11 01:57:42 +7063 7063 7064 706.3 1412.6000000000001 7063 1989-05-04 2024-10-11 01:57:43.000 1989-05-04 2024-10-11 01:57:43 +7064 7064 7065 706.4 1412.8000000000002 7064 1989-05-05 2024-10-11 01:57:44.000 1989-05-05 2024-10-11 01:57:44 +7065 7065 7066 706.5 1413 7065 1989-05-06 2024-10-11 01:57:45.000 1989-05-06 2024-10-11 01:57:45 +7066 7066 7067 706.6 1413.2 7066 1989-05-07 2024-10-11 01:57:46.000 1989-05-07 2024-10-11 01:57:46 +7067 7067 7068 706.7 1413.4 7067 1989-05-08 2024-10-11 01:57:47.000 1989-05-08 2024-10-11 01:57:47 +7068 7068 7069 706.8 1413.6000000000001 7068 1989-05-09 2024-10-11 01:57:48.000 1989-05-09 2024-10-11 01:57:48 +7069 7069 7070 706.9 1413.8000000000002 7069 1989-05-10 2024-10-11 01:57:49.000 1989-05-10 2024-10-11 01:57:49 +7070 7070 7071 707 1414 7070 1989-05-11 2024-10-11 01:57:50.000 1989-05-11 2024-10-11 01:57:50 +7071 7071 7072 707.1 1414.2 7071 1989-05-12 2024-10-11 01:57:51.000 1989-05-12 2024-10-11 01:57:51 +7072 7072 7073 707.2 1414.4 7072 1989-05-13 2024-10-11 01:57:52.000 1989-05-13 2024-10-11 01:57:52 +7073 7073 7074 707.3 1414.6000000000001 7073 1989-05-14 2024-10-11 01:57:53.000 1989-05-14 2024-10-11 01:57:53 +7074 7074 7075 707.4 1414.8000000000002 7074 1989-05-15 2024-10-11 01:57:54.000 1989-05-15 2024-10-11 01:57:54 +7075 7075 7076 707.5 1415 7075 1989-05-16 2024-10-11 01:57:55.000 1989-05-16 2024-10-11 01:57:55 +7076 7076 7077 707.6 1415.2 7076 1989-05-17 2024-10-11 01:57:56.000 1989-05-17 2024-10-11 01:57:56 +7077 7077 7078 707.7 1415.4 7077 1989-05-18 2024-10-11 01:57:57.000 1989-05-18 2024-10-11 01:57:57 +7078 7078 7079 707.8 1415.6000000000001 7078 1989-05-19 2024-10-11 01:57:58.000 1989-05-19 2024-10-11 01:57:58 +7079 7079 7080 707.9 1415.8000000000002 7079 1989-05-20 2024-10-11 01:57:59.000 1989-05-20 2024-10-11 01:57:59 +7080 7080 7081 708 1416 7080 1989-05-21 2024-10-11 01:58:00.000 1989-05-21 2024-10-11 01:58:00 +7081 7081 7082 708.1 1416.2 7081 1989-05-22 2024-10-11 01:58:01.000 1989-05-22 2024-10-11 01:58:01 +7082 7082 7083 708.2 1416.4 7082 1989-05-23 2024-10-11 01:58:02.000 1989-05-23 2024-10-11 01:58:02 +7083 7083 7084 708.3 1416.6000000000001 7083 1989-05-24 2024-10-11 01:58:03.000 1989-05-24 2024-10-11 01:58:03 +7084 7084 7085 708.4 1416.8000000000002 7084 1989-05-25 2024-10-11 01:58:04.000 1989-05-25 2024-10-11 01:58:04 +7085 7085 7086 708.5 1417 7085 1989-05-26 2024-10-11 01:58:05.000 1989-05-26 2024-10-11 01:58:05 +7086 7086 7087 708.6 1417.2 7086 1989-05-27 2024-10-11 01:58:06.000 1989-05-27 2024-10-11 01:58:06 +7087 7087 7088 708.7 1417.4 7087 1989-05-28 2024-10-11 01:58:07.000 1989-05-28 2024-10-11 01:58:07 +7088 7088 7089 708.8 1417.6000000000001 7088 1989-05-29 2024-10-11 01:58:08.000 1989-05-29 2024-10-11 01:58:08 +7089 7089 7090 708.9 1417.8000000000002 7089 1989-05-30 2024-10-11 01:58:09.000 1989-05-30 2024-10-11 01:58:09 +7090 7090 7091 709 1418 7090 1989-05-31 2024-10-11 01:58:10.000 1989-05-31 2024-10-11 01:58:10 +7091 7091 7092 709.1 1418.2 7091 1989-06-01 2024-10-11 01:58:11.000 1989-06-01 2024-10-11 01:58:11 +7092 7092 7093 709.2 1418.4 7092 1989-06-02 2024-10-11 01:58:12.000 1989-06-02 2024-10-11 01:58:12 +7093 7093 7094 709.3 1418.6000000000001 7093 1989-06-03 2024-10-11 01:58:13.000 1989-06-03 2024-10-11 01:58:13 +7094 7094 7095 709.4 1418.8000000000002 7094 1989-06-04 2024-10-11 01:58:14.000 1989-06-04 2024-10-11 01:58:14 +7095 7095 7096 709.5 1419 7095 1989-06-05 2024-10-11 01:58:15.000 1989-06-05 2024-10-11 01:58:15 +7096 7096 7097 709.6 1419.2 7096 1989-06-06 2024-10-11 01:58:16.000 1989-06-06 2024-10-11 01:58:16 +7097 7097 7098 709.7 1419.4 7097 1989-06-07 2024-10-11 01:58:17.000 1989-06-07 2024-10-11 01:58:17 +7098 7098 7099 709.8 1419.6000000000001 7098 1989-06-08 2024-10-11 01:58:18.000 1989-06-08 2024-10-11 01:58:18 +7099 7099 7100 709.9 1419.8000000000002 7099 1989-06-09 2024-10-11 01:58:19.000 1989-06-09 2024-10-11 01:58:19 +7100 7100 7101 710 1420 7100 1989-06-10 2024-10-11 01:58:20.000 1989-06-10 2024-10-11 01:58:20 +7101 7101 7102 710.1 1420.2 7101 1989-06-11 2024-10-11 01:58:21.000 1989-06-11 2024-10-11 01:58:21 +7102 7102 7103 710.2 1420.4 7102 1989-06-12 2024-10-11 01:58:22.000 1989-06-12 2024-10-11 01:58:22 +7103 7103 7104 710.3 1420.6000000000001 7103 1989-06-13 2024-10-11 01:58:23.000 1989-06-13 2024-10-11 01:58:23 +7104 7104 7105 710.4 1420.8000000000002 7104 1989-06-14 2024-10-11 01:58:24.000 1989-06-14 2024-10-11 01:58:24 +7105 7105 7106 710.5 1421 7105 1989-06-15 2024-10-11 01:58:25.000 1989-06-15 2024-10-11 01:58:25 +7106 7106 7107 710.6 1421.2 7106 1989-06-16 2024-10-11 01:58:26.000 1989-06-16 2024-10-11 01:58:26 +7107 7107 7108 710.7 1421.4 7107 1989-06-17 2024-10-11 01:58:27.000 1989-06-17 2024-10-11 01:58:27 +7108 7108 7109 710.8 1421.6000000000001 7108 1989-06-18 2024-10-11 01:58:28.000 1989-06-18 2024-10-11 01:58:28 +7109 7109 7110 710.9 1421.8000000000002 7109 1989-06-19 2024-10-11 01:58:29.000 1989-06-19 2024-10-11 01:58:29 +7110 7110 7111 711 1422 7110 1989-06-20 2024-10-11 01:58:30.000 1989-06-20 2024-10-11 01:58:30 +7111 7111 7112 711.1 1422.2 7111 1989-06-21 2024-10-11 01:58:31.000 1989-06-21 2024-10-11 01:58:31 +7112 7112 7113 711.2 1422.4 7112 1989-06-22 2024-10-11 01:58:32.000 1989-06-22 2024-10-11 01:58:32 +7113 7113 7114 711.3 1422.6000000000001 7113 1989-06-23 2024-10-11 01:58:33.000 1989-06-23 2024-10-11 01:58:33 +7114 7114 7115 711.4 1422.8000000000002 7114 1989-06-24 2024-10-11 01:58:34.000 1989-06-24 2024-10-11 01:58:34 +7115 7115 7116 711.5 1423 7115 1989-06-25 2024-10-11 01:58:35.000 1989-06-25 2024-10-11 01:58:35 +7116 7116 7117 711.6 1423.2 7116 1989-06-26 2024-10-11 01:58:36.000 1989-06-26 2024-10-11 01:58:36 +7117 7117 7118 711.7 1423.4 7117 1989-06-27 2024-10-11 01:58:37.000 1989-06-27 2024-10-11 01:58:37 +7118 7118 7119 711.8 1423.6000000000001 7118 1989-06-28 2024-10-11 01:58:38.000 1989-06-28 2024-10-11 01:58:38 +7119 7119 7120 711.9 1423.8000000000002 7119 1989-06-29 2024-10-11 01:58:39.000 1989-06-29 2024-10-11 01:58:39 +7120 7120 7121 712 1424 7120 1989-06-30 2024-10-11 01:58:40.000 1989-06-30 2024-10-11 01:58:40 +7121 7121 7122 712.1 1424.2 7121 1989-07-01 2024-10-11 01:58:41.000 1989-07-01 2024-10-11 01:58:41 +7122 7122 7123 712.2 1424.4 7122 1989-07-02 2024-10-11 01:58:42.000 1989-07-02 2024-10-11 01:58:42 +7123 7123 7124 712.3 1424.6000000000001 7123 1989-07-03 2024-10-11 01:58:43.000 1989-07-03 2024-10-11 01:58:43 +7124 7124 7125 712.4 1424.8000000000002 7124 1989-07-04 2024-10-11 01:58:44.000 1989-07-04 2024-10-11 01:58:44 +7125 7125 7126 712.5 1425 7125 1989-07-05 2024-10-11 01:58:45.000 1989-07-05 2024-10-11 01:58:45 +7126 7126 7127 712.6 1425.2 7126 1989-07-06 2024-10-11 01:58:46.000 1989-07-06 2024-10-11 01:58:46 +7127 7127 7128 712.7 1425.4 7127 1989-07-07 2024-10-11 01:58:47.000 1989-07-07 2024-10-11 01:58:47 +7128 7128 7129 712.8 1425.6000000000001 7128 1989-07-08 2024-10-11 01:58:48.000 1989-07-08 2024-10-11 01:58:48 +7129 7129 7130 712.9 1425.8000000000002 7129 1989-07-09 2024-10-11 01:58:49.000 1989-07-09 2024-10-11 01:58:49 +7130 7130 7131 713 1426 7130 1989-07-10 2024-10-11 01:58:50.000 1989-07-10 2024-10-11 01:58:50 +7131 7131 7132 713.1 1426.2 7131 1989-07-11 2024-10-11 01:58:51.000 1989-07-11 2024-10-11 01:58:51 +7132 7132 7133 713.2 1426.4 7132 1989-07-12 2024-10-11 01:58:52.000 1989-07-12 2024-10-11 01:58:52 +7133 7133 7134 713.3 1426.6000000000001 7133 1989-07-13 2024-10-11 01:58:53.000 1989-07-13 2024-10-11 01:58:53 +7134 7134 7135 713.4 1426.8000000000002 7134 1989-07-14 2024-10-11 01:58:54.000 1989-07-14 2024-10-11 01:58:54 +7135 7135 7136 713.5 1427 7135 1989-07-15 2024-10-11 01:58:55.000 1989-07-15 2024-10-11 01:58:55 +7136 7136 7137 713.6 1427.2 7136 1989-07-16 2024-10-11 01:58:56.000 1989-07-16 2024-10-11 01:58:56 +7137 7137 7138 713.7 1427.4 7137 1989-07-17 2024-10-11 01:58:57.000 1989-07-17 2024-10-11 01:58:57 +7138 7138 7139 713.8 1427.6000000000001 7138 1989-07-18 2024-10-11 01:58:58.000 1989-07-18 2024-10-11 01:58:58 +7139 7139 7140 713.9 1427.8000000000002 7139 1989-07-19 2024-10-11 01:58:59.000 1989-07-19 2024-10-11 01:58:59 +7140 7140 7141 714 1428 7140 1989-07-20 2024-10-11 01:59:00.000 1989-07-20 2024-10-11 01:59:00 +7141 7141 7142 714.1 1428.2 7141 1989-07-21 2024-10-11 01:59:01.000 1989-07-21 2024-10-11 01:59:01 +7142 7142 7143 714.2 1428.4 7142 1989-07-22 2024-10-11 01:59:02.000 1989-07-22 2024-10-11 01:59:02 +7143 7143 7144 714.3 1428.6000000000001 7143 1989-07-23 2024-10-11 01:59:03.000 1989-07-23 2024-10-11 01:59:03 +7144 7144 7145 714.4 1428.8000000000002 7144 1989-07-24 2024-10-11 01:59:04.000 1989-07-24 2024-10-11 01:59:04 +7145 7145 7146 714.5 1429 7145 1989-07-25 2024-10-11 01:59:05.000 1989-07-25 2024-10-11 01:59:05 +7146 7146 7147 714.6 1429.2 7146 1989-07-26 2024-10-11 01:59:06.000 1989-07-26 2024-10-11 01:59:06 +7147 7147 7148 714.7 1429.4 7147 1989-07-27 2024-10-11 01:59:07.000 1989-07-27 2024-10-11 01:59:07 +7148 7148 7149 714.8 1429.6000000000001 7148 1989-07-28 2024-10-11 01:59:08.000 1989-07-28 2024-10-11 01:59:08 +7149 7149 7150 714.9 1429.8000000000002 7149 1989-07-29 2024-10-11 01:59:09.000 1989-07-29 2024-10-11 01:59:09 +7150 7150 7151 715 1430 7150 1989-07-30 2024-10-11 01:59:10.000 1989-07-30 2024-10-11 01:59:10 +7151 7151 7152 715.1 1430.2 7151 1989-07-31 2024-10-11 01:59:11.000 1989-07-31 2024-10-11 01:59:11 +7152 7152 7153 715.2 1430.4 7152 1989-08-01 2024-10-11 01:59:12.000 1989-08-01 2024-10-11 01:59:12 +7153 7153 7154 715.3 1430.6000000000001 7153 1989-08-02 2024-10-11 01:59:13.000 1989-08-02 2024-10-11 01:59:13 +7154 7154 7155 715.4 1430.8000000000002 7154 1989-08-03 2024-10-11 01:59:14.000 1989-08-03 2024-10-11 01:59:14 +7155 7155 7156 715.5 1431 7155 1989-08-04 2024-10-11 01:59:15.000 1989-08-04 2024-10-11 01:59:15 +7156 7156 7157 715.6 1431.2 7156 1989-08-05 2024-10-11 01:59:16.000 1989-08-05 2024-10-11 01:59:16 +7157 7157 7158 715.7 1431.4 7157 1989-08-06 2024-10-11 01:59:17.000 1989-08-06 2024-10-11 01:59:17 +7158 7158 7159 715.8 1431.6000000000001 7158 1989-08-07 2024-10-11 01:59:18.000 1989-08-07 2024-10-11 01:59:18 +7159 7159 7160 715.9 1431.8000000000002 7159 1989-08-08 2024-10-11 01:59:19.000 1989-08-08 2024-10-11 01:59:19 +7160 7160 7161 716 1432 7160 1989-08-09 2024-10-11 01:59:20.000 1989-08-09 2024-10-11 01:59:20 +7161 7161 7162 716.1 1432.2 7161 1989-08-10 2024-10-11 01:59:21.000 1989-08-10 2024-10-11 01:59:21 +7162 7162 7163 716.2 1432.4 7162 1989-08-11 2024-10-11 01:59:22.000 1989-08-11 2024-10-11 01:59:22 +7163 7163 7164 716.3 1432.6000000000001 7163 1989-08-12 2024-10-11 01:59:23.000 1989-08-12 2024-10-11 01:59:23 +7164 7164 7165 716.4 1432.8000000000002 7164 1989-08-13 2024-10-11 01:59:24.000 1989-08-13 2024-10-11 01:59:24 +7165 7165 7166 716.5 1433 7165 1989-08-14 2024-10-11 01:59:25.000 1989-08-14 2024-10-11 01:59:25 +7166 7166 7167 716.6 1433.2 7166 1989-08-15 2024-10-11 01:59:26.000 1989-08-15 2024-10-11 01:59:26 +7167 7167 7168 716.7 1433.4 7167 1989-08-16 2024-10-11 01:59:27.000 1989-08-16 2024-10-11 01:59:27 +7168 7168 7169 716.8 1433.6000000000001 7168 1989-08-17 2024-10-11 01:59:28.000 1989-08-17 2024-10-11 01:59:28 +7169 7169 7170 716.9 1433.8000000000002 7169 1989-08-18 2024-10-11 01:59:29.000 1989-08-18 2024-10-11 01:59:29 +7170 7170 7171 717 1434 7170 1989-08-19 2024-10-11 01:59:30.000 1989-08-19 2024-10-11 01:59:30 +7171 7171 7172 717.1 1434.2 7171 1989-08-20 2024-10-11 01:59:31.000 1989-08-20 2024-10-11 01:59:31 +7172 7172 7173 717.2 1434.4 7172 1989-08-21 2024-10-11 01:59:32.000 1989-08-21 2024-10-11 01:59:32 +7173 7173 7174 717.3 1434.6000000000001 7173 1989-08-22 2024-10-11 01:59:33.000 1989-08-22 2024-10-11 01:59:33 +7174 7174 7175 717.4 1434.8000000000002 7174 1989-08-23 2024-10-11 01:59:34.000 1989-08-23 2024-10-11 01:59:34 +7175 7175 7176 717.5 1435 7175 1989-08-24 2024-10-11 01:59:35.000 1989-08-24 2024-10-11 01:59:35 +7176 7176 7177 717.6 1435.2 7176 1989-08-25 2024-10-11 01:59:36.000 1989-08-25 2024-10-11 01:59:36 +7177 7177 7178 717.7 1435.4 7177 1989-08-26 2024-10-11 01:59:37.000 1989-08-26 2024-10-11 01:59:37 +7178 7178 7179 717.8 1435.6000000000001 7178 1989-08-27 2024-10-11 01:59:38.000 1989-08-27 2024-10-11 01:59:38 +7179 7179 7180 717.9 1435.8000000000002 7179 1989-08-28 2024-10-11 01:59:39.000 1989-08-28 2024-10-11 01:59:39 +7180 7180 7181 718 1436 7180 1989-08-29 2024-10-11 01:59:40.000 1989-08-29 2024-10-11 01:59:40 +7181 7181 7182 718.1 1436.2 7181 1989-08-30 2024-10-11 01:59:41.000 1989-08-30 2024-10-11 01:59:41 +7182 7182 7183 718.2 1436.4 7182 1989-08-31 2024-10-11 01:59:42.000 1989-08-31 2024-10-11 01:59:42 +7183 7183 7184 718.3 1436.6000000000001 7183 1989-09-01 2024-10-11 01:59:43.000 1989-09-01 2024-10-11 01:59:43 +7184 7184 7185 718.4 1436.8000000000002 7184 1989-09-02 2024-10-11 01:59:44.000 1989-09-02 2024-10-11 01:59:44 +7185 7185 7186 718.5 1437 7185 1989-09-03 2024-10-11 01:59:45.000 1989-09-03 2024-10-11 01:59:45 +7186 7186 7187 718.6 1437.2 7186 1989-09-04 2024-10-11 01:59:46.000 1989-09-04 2024-10-11 01:59:46 +7187 7187 7188 718.7 1437.4 7187 1989-09-05 2024-10-11 01:59:47.000 1989-09-05 2024-10-11 01:59:47 +7188 7188 7189 718.8 1437.6000000000001 7188 1989-09-06 2024-10-11 01:59:48.000 1989-09-06 2024-10-11 01:59:48 +7189 7189 7190 718.9 1437.8000000000002 7189 1989-09-07 2024-10-11 01:59:49.000 1989-09-07 2024-10-11 01:59:49 +7190 7190 7191 719 1438 7190 1989-09-08 2024-10-11 01:59:50.000 1989-09-08 2024-10-11 01:59:50 +7191 7191 7192 719.1 1438.2 7191 1989-09-09 2024-10-11 01:59:51.000 1989-09-09 2024-10-11 01:59:51 +7192 7192 7193 719.2 1438.4 7192 1989-09-10 2024-10-11 01:59:52.000 1989-09-10 2024-10-11 01:59:52 +7193 7193 7194 719.3 1438.6000000000001 7193 1989-09-11 2024-10-11 01:59:53.000 1989-09-11 2024-10-11 01:59:53 +7194 7194 7195 719.4 1438.8000000000002 7194 1989-09-12 2024-10-11 01:59:54.000 1989-09-12 2024-10-11 01:59:54 +7195 7195 7196 719.5 1439 7195 1989-09-13 2024-10-11 01:59:55.000 1989-09-13 2024-10-11 01:59:55 +7196 7196 7197 719.6 1439.2 7196 1989-09-14 2024-10-11 01:59:56.000 1989-09-14 2024-10-11 01:59:56 +7197 7197 7198 719.7 1439.4 7197 1989-09-15 2024-10-11 01:59:57.000 1989-09-15 2024-10-11 01:59:57 +7198 7198 7199 719.8 1439.6000000000001 7198 1989-09-16 2024-10-11 01:59:58.000 1989-09-16 2024-10-11 01:59:58 +7199 7199 7200 719.9 1439.8000000000002 7199 1989-09-17 2024-10-11 01:59:59.000 1989-09-17 2024-10-11 01:59:59 +7200 7200 7201 720 1440 7200 1989-09-18 2024-10-11 02:00:00.000 1989-09-18 2024-10-11 02:00:00 +7201 7201 7202 720.1 1440.2 7201 1989-09-19 2024-10-11 02:00:01.000 1989-09-19 2024-10-11 02:00:01 +7202 7202 7203 720.2 1440.4 7202 1989-09-20 2024-10-11 02:00:02.000 1989-09-20 2024-10-11 02:00:02 +7203 7203 7204 720.3 1440.6000000000001 7203 1989-09-21 2024-10-11 02:00:03.000 1989-09-21 2024-10-11 02:00:03 +7204 7204 7205 720.4 1440.8000000000002 7204 1989-09-22 2024-10-11 02:00:04.000 1989-09-22 2024-10-11 02:00:04 +7205 7205 7206 720.5 1441 7205 1989-09-23 2024-10-11 02:00:05.000 1989-09-23 2024-10-11 02:00:05 +7206 7206 7207 720.6 1441.2 7206 1989-09-24 2024-10-11 02:00:06.000 1989-09-24 2024-10-11 02:00:06 +7207 7207 7208 720.7 1441.4 7207 1989-09-25 2024-10-11 02:00:07.000 1989-09-25 2024-10-11 02:00:07 +7208 7208 7209 720.8 1441.6000000000001 7208 1989-09-26 2024-10-11 02:00:08.000 1989-09-26 2024-10-11 02:00:08 +7209 7209 7210 720.9 1441.8000000000002 7209 1989-09-27 2024-10-11 02:00:09.000 1989-09-27 2024-10-11 02:00:09 +7210 7210 7211 721 1442 7210 1989-09-28 2024-10-11 02:00:10.000 1989-09-28 2024-10-11 02:00:10 +7211 7211 7212 721.1 1442.2 7211 1989-09-29 2024-10-11 02:00:11.000 1989-09-29 2024-10-11 02:00:11 +7212 7212 7213 721.2 1442.4 7212 1989-09-30 2024-10-11 02:00:12.000 1989-09-30 2024-10-11 02:00:12 +7213 7213 7214 721.3 1442.6000000000001 7213 1989-10-01 2024-10-11 02:00:13.000 1989-10-01 2024-10-11 02:00:13 +7214 7214 7215 721.4 1442.8000000000002 7214 1989-10-02 2024-10-11 02:00:14.000 1989-10-02 2024-10-11 02:00:14 +7215 7215 7216 721.5 1443 7215 1989-10-03 2024-10-11 02:00:15.000 1989-10-03 2024-10-11 02:00:15 +7216 7216 7217 721.6 1443.2 7216 1989-10-04 2024-10-11 02:00:16.000 1989-10-04 2024-10-11 02:00:16 +7217 7217 7218 721.7 1443.4 7217 1989-10-05 2024-10-11 02:00:17.000 1989-10-05 2024-10-11 02:00:17 +7218 7218 7219 721.8 1443.6000000000001 7218 1989-10-06 2024-10-11 02:00:18.000 1989-10-06 2024-10-11 02:00:18 +7219 7219 7220 721.9 1443.8000000000002 7219 1989-10-07 2024-10-11 02:00:19.000 1989-10-07 2024-10-11 02:00:19 +7220 7220 7221 722 1444 7220 1989-10-08 2024-10-11 02:00:20.000 1989-10-08 2024-10-11 02:00:20 +7221 7221 7222 722.1 1444.2 7221 1989-10-09 2024-10-11 02:00:21.000 1989-10-09 2024-10-11 02:00:21 +7222 7222 7223 722.2 1444.4 7222 1989-10-10 2024-10-11 02:00:22.000 1989-10-10 2024-10-11 02:00:22 +7223 7223 7224 722.3 1444.6000000000001 7223 1989-10-11 2024-10-11 02:00:23.000 1989-10-11 2024-10-11 02:00:23 +7224 7224 7225 722.4 1444.8000000000002 7224 1989-10-12 2024-10-11 02:00:24.000 1989-10-12 2024-10-11 02:00:24 +7225 7225 7226 722.5 1445 7225 1989-10-13 2024-10-11 02:00:25.000 1989-10-13 2024-10-11 02:00:25 +7226 7226 7227 722.6 1445.2 7226 1989-10-14 2024-10-11 02:00:26.000 1989-10-14 2024-10-11 02:00:26 +7227 7227 7228 722.7 1445.4 7227 1989-10-15 2024-10-11 02:00:27.000 1989-10-15 2024-10-11 02:00:27 +7228 7228 7229 722.8 1445.6000000000001 7228 1989-10-16 2024-10-11 02:00:28.000 1989-10-16 2024-10-11 02:00:28 +7229 7229 7230 722.9 1445.8000000000002 7229 1989-10-17 2024-10-11 02:00:29.000 1989-10-17 2024-10-11 02:00:29 +7230 7230 7231 723 1446 7230 1989-10-18 2024-10-11 02:00:30.000 1989-10-18 2024-10-11 02:00:30 +7231 7231 7232 723.1 1446.2 7231 1989-10-19 2024-10-11 02:00:31.000 1989-10-19 2024-10-11 02:00:31 +7232 7232 7233 723.2 1446.4 7232 1989-10-20 2024-10-11 02:00:32.000 1989-10-20 2024-10-11 02:00:32 +7233 7233 7234 723.3 1446.6000000000001 7233 1989-10-21 2024-10-11 02:00:33.000 1989-10-21 2024-10-11 02:00:33 +7234 7234 7235 723.4 1446.8000000000002 7234 1989-10-22 2024-10-11 02:00:34.000 1989-10-22 2024-10-11 02:00:34 +7235 7235 7236 723.5 1447 7235 1989-10-23 2024-10-11 02:00:35.000 1989-10-23 2024-10-11 02:00:35 +7236 7236 7237 723.6 1447.2 7236 1989-10-24 2024-10-11 02:00:36.000 1989-10-24 2024-10-11 02:00:36 +7237 7237 7238 723.7 1447.4 7237 1989-10-25 2024-10-11 02:00:37.000 1989-10-25 2024-10-11 02:00:37 +7238 7238 7239 723.8 1447.6000000000001 7238 1989-10-26 2024-10-11 02:00:38.000 1989-10-26 2024-10-11 02:00:38 +7239 7239 7240 723.9 1447.8000000000002 7239 1989-10-27 2024-10-11 02:00:39.000 1989-10-27 2024-10-11 02:00:39 +7240 7240 7241 724 1448 7240 1989-10-28 2024-10-11 02:00:40.000 1989-10-28 2024-10-11 02:00:40 +7241 7241 7242 724.1 1448.2 7241 1989-10-29 2024-10-11 02:00:41.000 1989-10-29 2024-10-11 02:00:41 +7242 7242 7243 724.2 1448.4 7242 1989-10-30 2024-10-11 02:00:42.000 1989-10-30 2024-10-11 02:00:42 +7243 7243 7244 724.3 1448.6000000000001 7243 1989-10-31 2024-10-11 02:00:43.000 1989-10-31 2024-10-11 02:00:43 +7244 7244 7245 724.4 1448.8000000000002 7244 1989-11-01 2024-10-11 02:00:44.000 1989-11-01 2024-10-11 02:00:44 +7245 7245 7246 724.5 1449 7245 1989-11-02 2024-10-11 02:00:45.000 1989-11-02 2024-10-11 02:00:45 +7246 7246 7247 724.6 1449.2 7246 1989-11-03 2024-10-11 02:00:46.000 1989-11-03 2024-10-11 02:00:46 +7247 7247 7248 724.7 1449.4 7247 1989-11-04 2024-10-11 02:00:47.000 1989-11-04 2024-10-11 02:00:47 +7248 7248 7249 724.8 1449.6000000000001 7248 1989-11-05 2024-10-11 02:00:48.000 1989-11-05 2024-10-11 02:00:48 +7249 7249 7250 724.9 1449.8000000000002 7249 1989-11-06 2024-10-11 02:00:49.000 1989-11-06 2024-10-11 02:00:49 +7250 7250 7251 725 1450 7250 1989-11-07 2024-10-11 02:00:50.000 1989-11-07 2024-10-11 02:00:50 +7251 7251 7252 725.1 1450.2 7251 1989-11-08 2024-10-11 02:00:51.000 1989-11-08 2024-10-11 02:00:51 +7252 7252 7253 725.2 1450.4 7252 1989-11-09 2024-10-11 02:00:52.000 1989-11-09 2024-10-11 02:00:52 +7253 7253 7254 725.3 1450.6000000000001 7253 1989-11-10 2024-10-11 02:00:53.000 1989-11-10 2024-10-11 02:00:53 +7254 7254 7255 725.4 1450.8000000000002 7254 1989-11-11 2024-10-11 02:00:54.000 1989-11-11 2024-10-11 02:00:54 +7255 7255 7256 725.5 1451 7255 1989-11-12 2024-10-11 02:00:55.000 1989-11-12 2024-10-11 02:00:55 +7256 7256 7257 725.6 1451.2 7256 1989-11-13 2024-10-11 02:00:56.000 1989-11-13 2024-10-11 02:00:56 +7257 7257 7258 725.7 1451.4 7257 1989-11-14 2024-10-11 02:00:57.000 1989-11-14 2024-10-11 02:00:57 +7258 7258 7259 725.8 1451.6000000000001 7258 1989-11-15 2024-10-11 02:00:58.000 1989-11-15 2024-10-11 02:00:58 +7259 7259 7260 725.9 1451.8000000000002 7259 1989-11-16 2024-10-11 02:00:59.000 1989-11-16 2024-10-11 02:00:59 +7260 7260 7261 726 1452 7260 1989-11-17 2024-10-11 02:01:00.000 1989-11-17 2024-10-11 02:01:00 +7261 7261 7262 726.1 1452.2 7261 1989-11-18 2024-10-11 02:01:01.000 1989-11-18 2024-10-11 02:01:01 +7262 7262 7263 726.2 1452.4 7262 1989-11-19 2024-10-11 02:01:02.000 1989-11-19 2024-10-11 02:01:02 +7263 7263 7264 726.3 1452.6000000000001 7263 1989-11-20 2024-10-11 02:01:03.000 1989-11-20 2024-10-11 02:01:03 +7264 7264 7265 726.4 1452.8000000000002 7264 1989-11-21 2024-10-11 02:01:04.000 1989-11-21 2024-10-11 02:01:04 +7265 7265 7266 726.5 1453 7265 1989-11-22 2024-10-11 02:01:05.000 1989-11-22 2024-10-11 02:01:05 +7266 7266 7267 726.6 1453.2 7266 1989-11-23 2024-10-11 02:01:06.000 1989-11-23 2024-10-11 02:01:06 +7267 7267 7268 726.7 1453.4 7267 1989-11-24 2024-10-11 02:01:07.000 1989-11-24 2024-10-11 02:01:07 +7268 7268 7269 726.8 1453.6000000000001 7268 1989-11-25 2024-10-11 02:01:08.000 1989-11-25 2024-10-11 02:01:08 +7269 7269 7270 726.9 1453.8000000000002 7269 1989-11-26 2024-10-11 02:01:09.000 1989-11-26 2024-10-11 02:01:09 +7270 7270 7271 727 1454 7270 1989-11-27 2024-10-11 02:01:10.000 1989-11-27 2024-10-11 02:01:10 +7271 7271 7272 727.1 1454.2 7271 1989-11-28 2024-10-11 02:01:11.000 1989-11-28 2024-10-11 02:01:11 +7272 7272 7273 727.2 1454.4 7272 1989-11-29 2024-10-11 02:01:12.000 1989-11-29 2024-10-11 02:01:12 +7273 7273 7274 727.3 1454.6000000000001 7273 1989-11-30 2024-10-11 02:01:13.000 1989-11-30 2024-10-11 02:01:13 +7274 7274 7275 727.4 1454.8000000000002 7274 1989-12-01 2024-10-11 02:01:14.000 1989-12-01 2024-10-11 02:01:14 +7275 7275 7276 727.5 1455 7275 1989-12-02 2024-10-11 02:01:15.000 1989-12-02 2024-10-11 02:01:15 +7276 7276 7277 727.6 1455.2 7276 1989-12-03 2024-10-11 02:01:16.000 1989-12-03 2024-10-11 02:01:16 +7277 7277 7278 727.7 1455.4 7277 1989-12-04 2024-10-11 02:01:17.000 1989-12-04 2024-10-11 02:01:17 +7278 7278 7279 727.8 1455.6000000000001 7278 1989-12-05 2024-10-11 02:01:18.000 1989-12-05 2024-10-11 02:01:18 +7279 7279 7280 727.9 1455.8000000000002 7279 1989-12-06 2024-10-11 02:01:19.000 1989-12-06 2024-10-11 02:01:19 +7280 7280 7281 728 1456 7280 1989-12-07 2024-10-11 02:01:20.000 1989-12-07 2024-10-11 02:01:20 +7281 7281 7282 728.1 1456.2 7281 1989-12-08 2024-10-11 02:01:21.000 1989-12-08 2024-10-11 02:01:21 +7282 7282 7283 728.2 1456.4 7282 1989-12-09 2024-10-11 02:01:22.000 1989-12-09 2024-10-11 02:01:22 +7283 7283 7284 728.3 1456.6000000000001 7283 1989-12-10 2024-10-11 02:01:23.000 1989-12-10 2024-10-11 02:01:23 +7284 7284 7285 728.4 1456.8000000000002 7284 1989-12-11 2024-10-11 02:01:24.000 1989-12-11 2024-10-11 02:01:24 +7285 7285 7286 728.5 1457 7285 1989-12-12 2024-10-11 02:01:25.000 1989-12-12 2024-10-11 02:01:25 +7286 7286 7287 728.6 1457.2 7286 1989-12-13 2024-10-11 02:01:26.000 1989-12-13 2024-10-11 02:01:26 +7287 7287 7288 728.7 1457.4 7287 1989-12-14 2024-10-11 02:01:27.000 1989-12-14 2024-10-11 02:01:27 +7288 7288 7289 728.8 1457.6000000000001 7288 1989-12-15 2024-10-11 02:01:28.000 1989-12-15 2024-10-11 02:01:28 +7289 7289 7290 728.9 1457.8000000000002 7289 1989-12-16 2024-10-11 02:01:29.000 1989-12-16 2024-10-11 02:01:29 +7290 7290 7291 729 1458 7290 1989-12-17 2024-10-11 02:01:30.000 1989-12-17 2024-10-11 02:01:30 +7291 7291 7292 729.1 1458.2 7291 1989-12-18 2024-10-11 02:01:31.000 1989-12-18 2024-10-11 02:01:31 +7292 7292 7293 729.2 1458.4 7292 1989-12-19 2024-10-11 02:01:32.000 1989-12-19 2024-10-11 02:01:32 +7293 7293 7294 729.3 1458.6000000000001 7293 1989-12-20 2024-10-11 02:01:33.000 1989-12-20 2024-10-11 02:01:33 +7294 7294 7295 729.4 1458.8000000000002 7294 1989-12-21 2024-10-11 02:01:34.000 1989-12-21 2024-10-11 02:01:34 +7295 7295 7296 729.5 1459 7295 1989-12-22 2024-10-11 02:01:35.000 1989-12-22 2024-10-11 02:01:35 +7296 7296 7297 729.6 1459.2 7296 1989-12-23 2024-10-11 02:01:36.000 1989-12-23 2024-10-11 02:01:36 +7297 7297 7298 729.7 1459.4 7297 1989-12-24 2024-10-11 02:01:37.000 1989-12-24 2024-10-11 02:01:37 +7298 7298 7299 729.8 1459.6000000000001 7298 1989-12-25 2024-10-11 02:01:38.000 1989-12-25 2024-10-11 02:01:38 +7299 7299 7300 729.9 1459.8000000000002 7299 1989-12-26 2024-10-11 02:01:39.000 1989-12-26 2024-10-11 02:01:39 +7300 7300 7301 730 1460 7300 1989-12-27 2024-10-11 02:01:40.000 1989-12-27 2024-10-11 02:01:40 +7301 7301 7302 730.1 1460.2 7301 1989-12-28 2024-10-11 02:01:41.000 1989-12-28 2024-10-11 02:01:41 +7302 7302 7303 730.2 1460.4 7302 1989-12-29 2024-10-11 02:01:42.000 1989-12-29 2024-10-11 02:01:42 +7303 7303 7304 730.3 1460.6000000000001 7303 1989-12-30 2024-10-11 02:01:43.000 1989-12-30 2024-10-11 02:01:43 +7304 7304 7305 730.4 1460.8000000000002 7304 1989-12-31 2024-10-11 02:01:44.000 1989-12-31 2024-10-11 02:01:44 +7305 7305 7306 730.5 1461 7305 1990-01-01 2024-10-11 02:01:45.000 1990-01-01 2024-10-11 02:01:45 +7306 7306 7307 730.6 1461.2 7306 1990-01-02 2024-10-11 02:01:46.000 1990-01-02 2024-10-11 02:01:46 +7307 7307 7308 730.7 1461.4 7307 1990-01-03 2024-10-11 02:01:47.000 1990-01-03 2024-10-11 02:01:47 +7308 7308 7309 730.8 1461.6000000000001 7308 1990-01-04 2024-10-11 02:01:48.000 1990-01-04 2024-10-11 02:01:48 +7309 7309 7310 730.9 1461.8000000000002 7309 1990-01-05 2024-10-11 02:01:49.000 1990-01-05 2024-10-11 02:01:49 +7310 7310 7311 731 1462 7310 1990-01-06 2024-10-11 02:01:50.000 1990-01-06 2024-10-11 02:01:50 +7311 7311 7312 731.1 1462.2 7311 1990-01-07 2024-10-11 02:01:51.000 1990-01-07 2024-10-11 02:01:51 +7312 7312 7313 731.2 1462.4 7312 1990-01-08 2024-10-11 02:01:52.000 1990-01-08 2024-10-11 02:01:52 +7313 7313 7314 731.3 1462.6000000000001 7313 1990-01-09 2024-10-11 02:01:53.000 1990-01-09 2024-10-11 02:01:53 +7314 7314 7315 731.4 1462.8000000000002 7314 1990-01-10 2024-10-11 02:01:54.000 1990-01-10 2024-10-11 02:01:54 +7315 7315 7316 731.5 1463 7315 1990-01-11 2024-10-11 02:01:55.000 1990-01-11 2024-10-11 02:01:55 +7316 7316 7317 731.6 1463.2 7316 1990-01-12 2024-10-11 02:01:56.000 1990-01-12 2024-10-11 02:01:56 +7317 7317 7318 731.7 1463.4 7317 1990-01-13 2024-10-11 02:01:57.000 1990-01-13 2024-10-11 02:01:57 +7318 7318 7319 731.8 1463.6000000000001 7318 1990-01-14 2024-10-11 02:01:58.000 1990-01-14 2024-10-11 02:01:58 +7319 7319 7320 731.9 1463.8000000000002 7319 1990-01-15 2024-10-11 02:01:59.000 1990-01-15 2024-10-11 02:01:59 +7320 7320 7321 732 1464 7320 1990-01-16 2024-10-11 02:02:00.000 1990-01-16 2024-10-11 02:02:00 +7321 7321 7322 732.1 1464.2 7321 1990-01-17 2024-10-11 02:02:01.000 1990-01-17 2024-10-11 02:02:01 +7322 7322 7323 732.2 1464.4 7322 1990-01-18 2024-10-11 02:02:02.000 1990-01-18 2024-10-11 02:02:02 +7323 7323 7324 732.3 1464.6000000000001 7323 1990-01-19 2024-10-11 02:02:03.000 1990-01-19 2024-10-11 02:02:03 +7324 7324 7325 732.4 1464.8000000000002 7324 1990-01-20 2024-10-11 02:02:04.000 1990-01-20 2024-10-11 02:02:04 +7325 7325 7326 732.5 1465 7325 1990-01-21 2024-10-11 02:02:05.000 1990-01-21 2024-10-11 02:02:05 +7326 7326 7327 732.6 1465.2 7326 1990-01-22 2024-10-11 02:02:06.000 1990-01-22 2024-10-11 02:02:06 +7327 7327 7328 732.7 1465.4 7327 1990-01-23 2024-10-11 02:02:07.000 1990-01-23 2024-10-11 02:02:07 +7328 7328 7329 732.8 1465.6000000000001 7328 1990-01-24 2024-10-11 02:02:08.000 1990-01-24 2024-10-11 02:02:08 +7329 7329 7330 732.9 1465.8000000000002 7329 1990-01-25 2024-10-11 02:02:09.000 1990-01-25 2024-10-11 02:02:09 +7330 7330 7331 733 1466 7330 1990-01-26 2024-10-11 02:02:10.000 1990-01-26 2024-10-11 02:02:10 +7331 7331 7332 733.1 1466.2 7331 1990-01-27 2024-10-11 02:02:11.000 1990-01-27 2024-10-11 02:02:11 +7332 7332 7333 733.2 1466.4 7332 1990-01-28 2024-10-11 02:02:12.000 1990-01-28 2024-10-11 02:02:12 +7333 7333 7334 733.3 1466.6000000000001 7333 1990-01-29 2024-10-11 02:02:13.000 1990-01-29 2024-10-11 02:02:13 +7334 7334 7335 733.4 1466.8000000000002 7334 1990-01-30 2024-10-11 02:02:14.000 1990-01-30 2024-10-11 02:02:14 +7335 7335 7336 733.5 1467 7335 1990-01-31 2024-10-11 02:02:15.000 1990-01-31 2024-10-11 02:02:15 +7336 7336 7337 733.6 1467.2 7336 1990-02-01 2024-10-11 02:02:16.000 1990-02-01 2024-10-11 02:02:16 +7337 7337 7338 733.7 1467.4 7337 1990-02-02 2024-10-11 02:02:17.000 1990-02-02 2024-10-11 02:02:17 +7338 7338 7339 733.8 1467.6000000000001 7338 1990-02-03 2024-10-11 02:02:18.000 1990-02-03 2024-10-11 02:02:18 +7339 7339 7340 733.9 1467.8000000000002 7339 1990-02-04 2024-10-11 02:02:19.000 1990-02-04 2024-10-11 02:02:19 +7340 7340 7341 734 1468 7340 1990-02-05 2024-10-11 02:02:20.000 1990-02-05 2024-10-11 02:02:20 +7341 7341 7342 734.1 1468.2 7341 1990-02-06 2024-10-11 02:02:21.000 1990-02-06 2024-10-11 02:02:21 +7342 7342 7343 734.2 1468.4 7342 1990-02-07 2024-10-11 02:02:22.000 1990-02-07 2024-10-11 02:02:22 +7343 7343 7344 734.3 1468.6000000000001 7343 1990-02-08 2024-10-11 02:02:23.000 1990-02-08 2024-10-11 02:02:23 +7344 7344 7345 734.4 1468.8000000000002 7344 1990-02-09 2024-10-11 02:02:24.000 1990-02-09 2024-10-11 02:02:24 +7345 7345 7346 734.5 1469 7345 1990-02-10 2024-10-11 02:02:25.000 1990-02-10 2024-10-11 02:02:25 +7346 7346 7347 734.6 1469.2 7346 1990-02-11 2024-10-11 02:02:26.000 1990-02-11 2024-10-11 02:02:26 +7347 7347 7348 734.7 1469.4 7347 1990-02-12 2024-10-11 02:02:27.000 1990-02-12 2024-10-11 02:02:27 +7348 7348 7349 734.8 1469.6000000000001 7348 1990-02-13 2024-10-11 02:02:28.000 1990-02-13 2024-10-11 02:02:28 +7349 7349 7350 734.9 1469.8000000000002 7349 1990-02-14 2024-10-11 02:02:29.000 1990-02-14 2024-10-11 02:02:29 +7350 7350 7351 735 1470 7350 1990-02-15 2024-10-11 02:02:30.000 1990-02-15 2024-10-11 02:02:30 +7351 7351 7352 735.1 1470.2 7351 1990-02-16 2024-10-11 02:02:31.000 1990-02-16 2024-10-11 02:02:31 +7352 7352 7353 735.2 1470.4 7352 1990-02-17 2024-10-11 02:02:32.000 1990-02-17 2024-10-11 02:02:32 +7353 7353 7354 735.3 1470.6000000000001 7353 1990-02-18 2024-10-11 02:02:33.000 1990-02-18 2024-10-11 02:02:33 +7354 7354 7355 735.4 1470.8000000000002 7354 1990-02-19 2024-10-11 02:02:34.000 1990-02-19 2024-10-11 02:02:34 +7355 7355 7356 735.5 1471 7355 1990-02-20 2024-10-11 02:02:35.000 1990-02-20 2024-10-11 02:02:35 +7356 7356 7357 735.6 1471.2 7356 1990-02-21 2024-10-11 02:02:36.000 1990-02-21 2024-10-11 02:02:36 +7357 7357 7358 735.7 1471.4 7357 1990-02-22 2024-10-11 02:02:37.000 1990-02-22 2024-10-11 02:02:37 +7358 7358 7359 735.8 1471.6000000000001 7358 1990-02-23 2024-10-11 02:02:38.000 1990-02-23 2024-10-11 02:02:38 +7359 7359 7360 735.9 1471.8000000000002 7359 1990-02-24 2024-10-11 02:02:39.000 1990-02-24 2024-10-11 02:02:39 +7360 7360 7361 736 1472 7360 1990-02-25 2024-10-11 02:02:40.000 1990-02-25 2024-10-11 02:02:40 +7361 7361 7362 736.1 1472.2 7361 1990-02-26 2024-10-11 02:02:41.000 1990-02-26 2024-10-11 02:02:41 +7362 7362 7363 736.2 1472.4 7362 1990-02-27 2024-10-11 02:02:42.000 1990-02-27 2024-10-11 02:02:42 +7363 7363 7364 736.3 1472.6000000000001 7363 1990-02-28 2024-10-11 02:02:43.000 1990-02-28 2024-10-11 02:02:43 +7364 7364 7365 736.4 1472.8000000000002 7364 1990-03-01 2024-10-11 02:02:44.000 1990-03-01 2024-10-11 02:02:44 +7365 7365 7366 736.5 1473 7365 1990-03-02 2024-10-11 02:02:45.000 1990-03-02 2024-10-11 02:02:45 +7366 7366 7367 736.6 1473.2 7366 1990-03-03 2024-10-11 02:02:46.000 1990-03-03 2024-10-11 02:02:46 +7367 7367 7368 736.7 1473.4 7367 1990-03-04 2024-10-11 02:02:47.000 1990-03-04 2024-10-11 02:02:47 +7368 7368 7369 736.8 1473.6000000000001 7368 1990-03-05 2024-10-11 02:02:48.000 1990-03-05 2024-10-11 02:02:48 +7369 7369 7370 736.9 1473.8000000000002 7369 1990-03-06 2024-10-11 02:02:49.000 1990-03-06 2024-10-11 02:02:49 +7370 7370 7371 737 1474 7370 1990-03-07 2024-10-11 02:02:50.000 1990-03-07 2024-10-11 02:02:50 +7371 7371 7372 737.1 1474.2 7371 1990-03-08 2024-10-11 02:02:51.000 1990-03-08 2024-10-11 02:02:51 +7372 7372 7373 737.2 1474.4 7372 1990-03-09 2024-10-11 02:02:52.000 1990-03-09 2024-10-11 02:02:52 +7373 7373 7374 737.3 1474.6000000000001 7373 1990-03-10 2024-10-11 02:02:53.000 1990-03-10 2024-10-11 02:02:53 +7374 7374 7375 737.4 1474.8000000000002 7374 1990-03-11 2024-10-11 02:02:54.000 1990-03-11 2024-10-11 02:02:54 +7375 7375 7376 737.5 1475 7375 1990-03-12 2024-10-11 02:02:55.000 1990-03-12 2024-10-11 02:02:55 +7376 7376 7377 737.6 1475.2 7376 1990-03-13 2024-10-11 02:02:56.000 1990-03-13 2024-10-11 02:02:56 +7377 7377 7378 737.7 1475.4 7377 1990-03-14 2024-10-11 02:02:57.000 1990-03-14 2024-10-11 02:02:57 +7378 7378 7379 737.8 1475.6000000000001 7378 1990-03-15 2024-10-11 02:02:58.000 1990-03-15 2024-10-11 02:02:58 +7379 7379 7380 737.9 1475.8000000000002 7379 1990-03-16 2024-10-11 02:02:59.000 1990-03-16 2024-10-11 02:02:59 +7380 7380 7381 738 1476 7380 1990-03-17 2024-10-11 02:03:00.000 1990-03-17 2024-10-11 02:03:00 +7381 7381 7382 738.1 1476.2 7381 1990-03-18 2024-10-11 02:03:01.000 1990-03-18 2024-10-11 02:03:01 +7382 7382 7383 738.2 1476.4 7382 1990-03-19 2024-10-11 02:03:02.000 1990-03-19 2024-10-11 02:03:02 +7383 7383 7384 738.3 1476.6000000000001 7383 1990-03-20 2024-10-11 02:03:03.000 1990-03-20 2024-10-11 02:03:03 +7384 7384 7385 738.4 1476.8000000000002 7384 1990-03-21 2024-10-11 02:03:04.000 1990-03-21 2024-10-11 02:03:04 +7385 7385 7386 738.5 1477 7385 1990-03-22 2024-10-11 02:03:05.000 1990-03-22 2024-10-11 02:03:05 +7386 7386 7387 738.6 1477.2 7386 1990-03-23 2024-10-11 02:03:06.000 1990-03-23 2024-10-11 02:03:06 +7387 7387 7388 738.7 1477.4 7387 1990-03-24 2024-10-11 02:03:07.000 1990-03-24 2024-10-11 02:03:07 +7388 7388 7389 738.8 1477.6000000000001 7388 1990-03-25 2024-10-11 02:03:08.000 1990-03-25 2024-10-11 02:03:08 +7389 7389 7390 738.9 1477.8000000000002 7389 1990-03-26 2024-10-11 02:03:09.000 1990-03-26 2024-10-11 02:03:09 +7390 7390 7391 739 1478 7390 1990-03-27 2024-10-11 02:03:10.000 1990-03-27 2024-10-11 02:03:10 +7391 7391 7392 739.1 1478.2 7391 1990-03-28 2024-10-11 02:03:11.000 1990-03-28 2024-10-11 02:03:11 +7392 7392 7393 739.2 1478.4 7392 1990-03-29 2024-10-11 02:03:12.000 1990-03-29 2024-10-11 02:03:12 +7393 7393 7394 739.3 1478.6000000000001 7393 1990-03-30 2024-10-11 02:03:13.000 1990-03-30 2024-10-11 02:03:13 +7394 7394 7395 739.4 1478.8000000000002 7394 1990-03-31 2024-10-11 02:03:14.000 1990-03-31 2024-10-11 02:03:14 +7395 7395 7396 739.5 1479 7395 1990-04-01 2024-10-11 02:03:15.000 1990-04-01 2024-10-11 02:03:15 +7396 7396 7397 739.6 1479.2 7396 1990-04-02 2024-10-11 02:03:16.000 1990-04-02 2024-10-11 02:03:16 +7397 7397 7398 739.7 1479.4 7397 1990-04-03 2024-10-11 02:03:17.000 1990-04-03 2024-10-11 02:03:17 +7398 7398 7399 739.8 1479.6000000000001 7398 1990-04-04 2024-10-11 02:03:18.000 1990-04-04 2024-10-11 02:03:18 +7399 7399 7400 739.9 1479.8000000000002 7399 1990-04-05 2024-10-11 02:03:19.000 1990-04-05 2024-10-11 02:03:19 +7400 7400 7401 740 1480 7400 1990-04-06 2024-10-11 02:03:20.000 1990-04-06 2024-10-11 02:03:20 +7401 7401 7402 740.1 1480.2 7401 1990-04-07 2024-10-11 02:03:21.000 1990-04-07 2024-10-11 02:03:21 +7402 7402 7403 740.2 1480.4 7402 1990-04-08 2024-10-11 02:03:22.000 1990-04-08 2024-10-11 02:03:22 +7403 7403 7404 740.3 1480.6000000000001 7403 1990-04-09 2024-10-11 02:03:23.000 1990-04-09 2024-10-11 02:03:23 +7404 7404 7405 740.4 1480.8000000000002 7404 1990-04-10 2024-10-11 02:03:24.000 1990-04-10 2024-10-11 02:03:24 +7405 7405 7406 740.5 1481 7405 1990-04-11 2024-10-11 02:03:25.000 1990-04-11 2024-10-11 02:03:25 +7406 7406 7407 740.6 1481.2 7406 1990-04-12 2024-10-11 02:03:26.000 1990-04-12 2024-10-11 02:03:26 +7407 7407 7408 740.7 1481.4 7407 1990-04-13 2024-10-11 02:03:27.000 1990-04-13 2024-10-11 02:03:27 +7408 7408 7409 740.8 1481.6000000000001 7408 1990-04-14 2024-10-11 02:03:28.000 1990-04-14 2024-10-11 02:03:28 +7409 7409 7410 740.9 1481.8000000000002 7409 1990-04-15 2024-10-11 02:03:29.000 1990-04-15 2024-10-11 02:03:29 +7410 7410 7411 741 1482 7410 1990-04-16 2024-10-11 02:03:30.000 1990-04-16 2024-10-11 02:03:30 +7411 7411 7412 741.1 1482.2 7411 1990-04-17 2024-10-11 02:03:31.000 1990-04-17 2024-10-11 02:03:31 +7412 7412 7413 741.2 1482.4 7412 1990-04-18 2024-10-11 02:03:32.000 1990-04-18 2024-10-11 02:03:32 +7413 7413 7414 741.3 1482.6000000000001 7413 1990-04-19 2024-10-11 02:03:33.000 1990-04-19 2024-10-11 02:03:33 +7414 7414 7415 741.4 1482.8000000000002 7414 1990-04-20 2024-10-11 02:03:34.000 1990-04-20 2024-10-11 02:03:34 +7415 7415 7416 741.5 1483 7415 1990-04-21 2024-10-11 02:03:35.000 1990-04-21 2024-10-11 02:03:35 +7416 7416 7417 741.6 1483.2 7416 1990-04-22 2024-10-11 02:03:36.000 1990-04-22 2024-10-11 02:03:36 +7417 7417 7418 741.7 1483.4 7417 1990-04-23 2024-10-11 02:03:37.000 1990-04-23 2024-10-11 02:03:37 +7418 7418 7419 741.8 1483.6000000000001 7418 1990-04-24 2024-10-11 02:03:38.000 1990-04-24 2024-10-11 02:03:38 +7419 7419 7420 741.9 1483.8000000000002 7419 1990-04-25 2024-10-11 02:03:39.000 1990-04-25 2024-10-11 02:03:39 +7420 7420 7421 742 1484 7420 1990-04-26 2024-10-11 02:03:40.000 1990-04-26 2024-10-11 02:03:40 +7421 7421 7422 742.1 1484.2 7421 1990-04-27 2024-10-11 02:03:41.000 1990-04-27 2024-10-11 02:03:41 +7422 7422 7423 742.2 1484.4 7422 1990-04-28 2024-10-11 02:03:42.000 1990-04-28 2024-10-11 02:03:42 +7423 7423 7424 742.3 1484.6000000000001 7423 1990-04-29 2024-10-11 02:03:43.000 1990-04-29 2024-10-11 02:03:43 +7424 7424 7425 742.4 1484.8000000000002 7424 1990-04-30 2024-10-11 02:03:44.000 1990-04-30 2024-10-11 02:03:44 +7425 7425 7426 742.5 1485 7425 1990-05-01 2024-10-11 02:03:45.000 1990-05-01 2024-10-11 02:03:45 +7426 7426 7427 742.6 1485.2 7426 1990-05-02 2024-10-11 02:03:46.000 1990-05-02 2024-10-11 02:03:46 +7427 7427 7428 742.7 1485.4 7427 1990-05-03 2024-10-11 02:03:47.000 1990-05-03 2024-10-11 02:03:47 +7428 7428 7429 742.8 1485.6000000000001 7428 1990-05-04 2024-10-11 02:03:48.000 1990-05-04 2024-10-11 02:03:48 +7429 7429 7430 742.9 1485.8000000000002 7429 1990-05-05 2024-10-11 02:03:49.000 1990-05-05 2024-10-11 02:03:49 +7430 7430 7431 743 1486 7430 1990-05-06 2024-10-11 02:03:50.000 1990-05-06 2024-10-11 02:03:50 +7431 7431 7432 743.1 1486.2 7431 1990-05-07 2024-10-11 02:03:51.000 1990-05-07 2024-10-11 02:03:51 +7432 7432 7433 743.2 1486.4 7432 1990-05-08 2024-10-11 02:03:52.000 1990-05-08 2024-10-11 02:03:52 +7433 7433 7434 743.3 1486.6000000000001 7433 1990-05-09 2024-10-11 02:03:53.000 1990-05-09 2024-10-11 02:03:53 +7434 7434 7435 743.4 1486.8000000000002 7434 1990-05-10 2024-10-11 02:03:54.000 1990-05-10 2024-10-11 02:03:54 +7435 7435 7436 743.5 1487 7435 1990-05-11 2024-10-11 02:03:55.000 1990-05-11 2024-10-11 02:03:55 +7436 7436 7437 743.6 1487.2 7436 1990-05-12 2024-10-11 02:03:56.000 1990-05-12 2024-10-11 02:03:56 +7437 7437 7438 743.7 1487.4 7437 1990-05-13 2024-10-11 02:03:57.000 1990-05-13 2024-10-11 02:03:57 +7438 7438 7439 743.8 1487.6000000000001 7438 1990-05-14 2024-10-11 02:03:58.000 1990-05-14 2024-10-11 02:03:58 +7439 7439 7440 743.9 1487.8000000000002 7439 1990-05-15 2024-10-11 02:03:59.000 1990-05-15 2024-10-11 02:03:59 +7440 7440 7441 744 1488 7440 1990-05-16 2024-10-11 02:04:00.000 1990-05-16 2024-10-11 02:04:00 +7441 7441 7442 744.1 1488.2 7441 1990-05-17 2024-10-11 02:04:01.000 1990-05-17 2024-10-11 02:04:01 +7442 7442 7443 744.2 1488.4 7442 1990-05-18 2024-10-11 02:04:02.000 1990-05-18 2024-10-11 02:04:02 +7443 7443 7444 744.3 1488.6000000000001 7443 1990-05-19 2024-10-11 02:04:03.000 1990-05-19 2024-10-11 02:04:03 +7444 7444 7445 744.4 1488.8000000000002 7444 1990-05-20 2024-10-11 02:04:04.000 1990-05-20 2024-10-11 02:04:04 +7445 7445 7446 744.5 1489 7445 1990-05-21 2024-10-11 02:04:05.000 1990-05-21 2024-10-11 02:04:05 +7446 7446 7447 744.6 1489.2 7446 1990-05-22 2024-10-11 02:04:06.000 1990-05-22 2024-10-11 02:04:06 +7447 7447 7448 744.7 1489.4 7447 1990-05-23 2024-10-11 02:04:07.000 1990-05-23 2024-10-11 02:04:07 +7448 7448 7449 744.8 1489.6000000000001 7448 1990-05-24 2024-10-11 02:04:08.000 1990-05-24 2024-10-11 02:04:08 +7449 7449 7450 744.9 1489.8000000000002 7449 1990-05-25 2024-10-11 02:04:09.000 1990-05-25 2024-10-11 02:04:09 +7450 7450 7451 745 1490 7450 1990-05-26 2024-10-11 02:04:10.000 1990-05-26 2024-10-11 02:04:10 +7451 7451 7452 745.1 1490.2 7451 1990-05-27 2024-10-11 02:04:11.000 1990-05-27 2024-10-11 02:04:11 +7452 7452 7453 745.2 1490.4 7452 1990-05-28 2024-10-11 02:04:12.000 1990-05-28 2024-10-11 02:04:12 +7453 7453 7454 745.3 1490.6000000000001 7453 1990-05-29 2024-10-11 02:04:13.000 1990-05-29 2024-10-11 02:04:13 +7454 7454 7455 745.4 1490.8000000000002 7454 1990-05-30 2024-10-11 02:04:14.000 1990-05-30 2024-10-11 02:04:14 +7455 7455 7456 745.5 1491 7455 1990-05-31 2024-10-11 02:04:15.000 1990-05-31 2024-10-11 02:04:15 +7456 7456 7457 745.6 1491.2 7456 1990-06-01 2024-10-11 02:04:16.000 1990-06-01 2024-10-11 02:04:16 +7457 7457 7458 745.7 1491.4 7457 1990-06-02 2024-10-11 02:04:17.000 1990-06-02 2024-10-11 02:04:17 +7458 7458 7459 745.8 1491.6000000000001 7458 1990-06-03 2024-10-11 02:04:18.000 1990-06-03 2024-10-11 02:04:18 +7459 7459 7460 745.9 1491.8000000000002 7459 1990-06-04 2024-10-11 02:04:19.000 1990-06-04 2024-10-11 02:04:19 +7460 7460 7461 746 1492 7460 1990-06-05 2024-10-11 02:04:20.000 1990-06-05 2024-10-11 02:04:20 +7461 7461 7462 746.1 1492.2 7461 1990-06-06 2024-10-11 02:04:21.000 1990-06-06 2024-10-11 02:04:21 +7462 7462 7463 746.2 1492.4 7462 1990-06-07 2024-10-11 02:04:22.000 1990-06-07 2024-10-11 02:04:22 +7463 7463 7464 746.3 1492.6000000000001 7463 1990-06-08 2024-10-11 02:04:23.000 1990-06-08 2024-10-11 02:04:23 +7464 7464 7465 746.4 1492.8000000000002 7464 1990-06-09 2024-10-11 02:04:24.000 1990-06-09 2024-10-11 02:04:24 +7465 7465 7466 746.5 1493 7465 1990-06-10 2024-10-11 02:04:25.000 1990-06-10 2024-10-11 02:04:25 +7466 7466 7467 746.6 1493.2 7466 1990-06-11 2024-10-11 02:04:26.000 1990-06-11 2024-10-11 02:04:26 +7467 7467 7468 746.7 1493.4 7467 1990-06-12 2024-10-11 02:04:27.000 1990-06-12 2024-10-11 02:04:27 +7468 7468 7469 746.8 1493.6000000000001 7468 1990-06-13 2024-10-11 02:04:28.000 1990-06-13 2024-10-11 02:04:28 +7469 7469 7470 746.9 1493.8000000000002 7469 1990-06-14 2024-10-11 02:04:29.000 1990-06-14 2024-10-11 02:04:29 +7470 7470 7471 747 1494 7470 1990-06-15 2024-10-11 02:04:30.000 1990-06-15 2024-10-11 02:04:30 +7471 7471 7472 747.1 1494.2 7471 1990-06-16 2024-10-11 02:04:31.000 1990-06-16 2024-10-11 02:04:31 +7472 7472 7473 747.2 1494.4 7472 1990-06-17 2024-10-11 02:04:32.000 1990-06-17 2024-10-11 02:04:32 +7473 7473 7474 747.3 1494.6000000000001 7473 1990-06-18 2024-10-11 02:04:33.000 1990-06-18 2024-10-11 02:04:33 +7474 7474 7475 747.4 1494.8000000000002 7474 1990-06-19 2024-10-11 02:04:34.000 1990-06-19 2024-10-11 02:04:34 +7475 7475 7476 747.5 1495 7475 1990-06-20 2024-10-11 02:04:35.000 1990-06-20 2024-10-11 02:04:35 +7476 7476 7477 747.6 1495.2 7476 1990-06-21 2024-10-11 02:04:36.000 1990-06-21 2024-10-11 02:04:36 +7477 7477 7478 747.7 1495.4 7477 1990-06-22 2024-10-11 02:04:37.000 1990-06-22 2024-10-11 02:04:37 +7478 7478 7479 747.8 1495.6000000000001 7478 1990-06-23 2024-10-11 02:04:38.000 1990-06-23 2024-10-11 02:04:38 +7479 7479 7480 747.9 1495.8000000000002 7479 1990-06-24 2024-10-11 02:04:39.000 1990-06-24 2024-10-11 02:04:39 +7480 7480 7481 748 1496 7480 1990-06-25 2024-10-11 02:04:40.000 1990-06-25 2024-10-11 02:04:40 +7481 7481 7482 748.1 1496.2 7481 1990-06-26 2024-10-11 02:04:41.000 1990-06-26 2024-10-11 02:04:41 +7482 7482 7483 748.2 1496.4 7482 1990-06-27 2024-10-11 02:04:42.000 1990-06-27 2024-10-11 02:04:42 +7483 7483 7484 748.3 1496.6000000000001 7483 1990-06-28 2024-10-11 02:04:43.000 1990-06-28 2024-10-11 02:04:43 +7484 7484 7485 748.4 1496.8000000000002 7484 1990-06-29 2024-10-11 02:04:44.000 1990-06-29 2024-10-11 02:04:44 +7485 7485 7486 748.5 1497 7485 1990-06-30 2024-10-11 02:04:45.000 1990-06-30 2024-10-11 02:04:45 +7486 7486 7487 748.6 1497.2 7486 1990-07-01 2024-10-11 02:04:46.000 1990-07-01 2024-10-11 02:04:46 +7487 7487 7488 748.7 1497.4 7487 1990-07-02 2024-10-11 02:04:47.000 1990-07-02 2024-10-11 02:04:47 +7488 7488 7489 748.8 1497.6000000000001 7488 1990-07-03 2024-10-11 02:04:48.000 1990-07-03 2024-10-11 02:04:48 +7489 7489 7490 748.9 1497.8000000000002 7489 1990-07-04 2024-10-11 02:04:49.000 1990-07-04 2024-10-11 02:04:49 +7490 7490 7491 749 1498 7490 1990-07-05 2024-10-11 02:04:50.000 1990-07-05 2024-10-11 02:04:50 +7491 7491 7492 749.1 1498.2 7491 1990-07-06 2024-10-11 02:04:51.000 1990-07-06 2024-10-11 02:04:51 +7492 7492 7493 749.2 1498.4 7492 1990-07-07 2024-10-11 02:04:52.000 1990-07-07 2024-10-11 02:04:52 +7493 7493 7494 749.3 1498.6000000000001 7493 1990-07-08 2024-10-11 02:04:53.000 1990-07-08 2024-10-11 02:04:53 +7494 7494 7495 749.4 1498.8000000000002 7494 1990-07-09 2024-10-11 02:04:54.000 1990-07-09 2024-10-11 02:04:54 +7495 7495 7496 749.5 1499 7495 1990-07-10 2024-10-11 02:04:55.000 1990-07-10 2024-10-11 02:04:55 +7496 7496 7497 749.6 1499.2 7496 1990-07-11 2024-10-11 02:04:56.000 1990-07-11 2024-10-11 02:04:56 +7497 7497 7498 749.7 1499.4 7497 1990-07-12 2024-10-11 02:04:57.000 1990-07-12 2024-10-11 02:04:57 +7498 7498 7499 749.8 1499.6000000000001 7498 1990-07-13 2024-10-11 02:04:58.000 1990-07-13 2024-10-11 02:04:58 +7499 7499 7500 749.9 1499.8000000000002 7499 1990-07-14 2024-10-11 02:04:59.000 1990-07-14 2024-10-11 02:04:59 +7500 7500 7501 750 1500 7500 1990-07-15 2024-10-11 02:05:00.000 1990-07-15 2024-10-11 02:05:00 +7501 7501 7502 750.1 1500.2 7501 1990-07-16 2024-10-11 02:05:01.000 1990-07-16 2024-10-11 02:05:01 +7502 7502 7503 750.2 1500.4 7502 1990-07-17 2024-10-11 02:05:02.000 1990-07-17 2024-10-11 02:05:02 +7503 7503 7504 750.3 1500.6000000000001 7503 1990-07-18 2024-10-11 02:05:03.000 1990-07-18 2024-10-11 02:05:03 +7504 7504 7505 750.4 1500.8000000000002 7504 1990-07-19 2024-10-11 02:05:04.000 1990-07-19 2024-10-11 02:05:04 +7505 7505 7506 750.5 1501 7505 1990-07-20 2024-10-11 02:05:05.000 1990-07-20 2024-10-11 02:05:05 +7506 7506 7507 750.6 1501.2 7506 1990-07-21 2024-10-11 02:05:06.000 1990-07-21 2024-10-11 02:05:06 +7507 7507 7508 750.7 1501.4 7507 1990-07-22 2024-10-11 02:05:07.000 1990-07-22 2024-10-11 02:05:07 +7508 7508 7509 750.8 1501.6000000000001 7508 1990-07-23 2024-10-11 02:05:08.000 1990-07-23 2024-10-11 02:05:08 +7509 7509 7510 750.9 1501.8000000000002 7509 1990-07-24 2024-10-11 02:05:09.000 1990-07-24 2024-10-11 02:05:09 +7510 7510 7511 751 1502 7510 1990-07-25 2024-10-11 02:05:10.000 1990-07-25 2024-10-11 02:05:10 +7511 7511 7512 751.1 1502.2 7511 1990-07-26 2024-10-11 02:05:11.000 1990-07-26 2024-10-11 02:05:11 +7512 7512 7513 751.2 1502.4 7512 1990-07-27 2024-10-11 02:05:12.000 1990-07-27 2024-10-11 02:05:12 +7513 7513 7514 751.3 1502.6000000000001 7513 1990-07-28 2024-10-11 02:05:13.000 1990-07-28 2024-10-11 02:05:13 +7514 7514 7515 751.4 1502.8000000000002 7514 1990-07-29 2024-10-11 02:05:14.000 1990-07-29 2024-10-11 02:05:14 +7515 7515 7516 751.5 1503 7515 1990-07-30 2024-10-11 02:05:15.000 1990-07-30 2024-10-11 02:05:15 +7516 7516 7517 751.6 1503.2 7516 1990-07-31 2024-10-11 02:05:16.000 1990-07-31 2024-10-11 02:05:16 +7517 7517 7518 751.7 1503.4 7517 1990-08-01 2024-10-11 02:05:17.000 1990-08-01 2024-10-11 02:05:17 +7518 7518 7519 751.8 1503.6000000000001 7518 1990-08-02 2024-10-11 02:05:18.000 1990-08-02 2024-10-11 02:05:18 +7519 7519 7520 751.9 1503.8000000000002 7519 1990-08-03 2024-10-11 02:05:19.000 1990-08-03 2024-10-11 02:05:19 +7520 7520 7521 752 1504 7520 1990-08-04 2024-10-11 02:05:20.000 1990-08-04 2024-10-11 02:05:20 +7521 7521 7522 752.1 1504.2 7521 1990-08-05 2024-10-11 02:05:21.000 1990-08-05 2024-10-11 02:05:21 +7522 7522 7523 752.2 1504.4 7522 1990-08-06 2024-10-11 02:05:22.000 1990-08-06 2024-10-11 02:05:22 +7523 7523 7524 752.3 1504.6000000000001 7523 1990-08-07 2024-10-11 02:05:23.000 1990-08-07 2024-10-11 02:05:23 +7524 7524 7525 752.4 1504.8000000000002 7524 1990-08-08 2024-10-11 02:05:24.000 1990-08-08 2024-10-11 02:05:24 +7525 7525 7526 752.5 1505 7525 1990-08-09 2024-10-11 02:05:25.000 1990-08-09 2024-10-11 02:05:25 +7526 7526 7527 752.6 1505.2 7526 1990-08-10 2024-10-11 02:05:26.000 1990-08-10 2024-10-11 02:05:26 +7527 7527 7528 752.7 1505.4 7527 1990-08-11 2024-10-11 02:05:27.000 1990-08-11 2024-10-11 02:05:27 +7528 7528 7529 752.8 1505.6000000000001 7528 1990-08-12 2024-10-11 02:05:28.000 1990-08-12 2024-10-11 02:05:28 +7529 7529 7530 752.9 1505.8000000000002 7529 1990-08-13 2024-10-11 02:05:29.000 1990-08-13 2024-10-11 02:05:29 +7530 7530 7531 753 1506 7530 1990-08-14 2024-10-11 02:05:30.000 1990-08-14 2024-10-11 02:05:30 +7531 7531 7532 753.1 1506.2 7531 1990-08-15 2024-10-11 02:05:31.000 1990-08-15 2024-10-11 02:05:31 +7532 7532 7533 753.2 1506.4 7532 1990-08-16 2024-10-11 02:05:32.000 1990-08-16 2024-10-11 02:05:32 +7533 7533 7534 753.3 1506.6000000000001 7533 1990-08-17 2024-10-11 02:05:33.000 1990-08-17 2024-10-11 02:05:33 +7534 7534 7535 753.4 1506.8000000000002 7534 1990-08-18 2024-10-11 02:05:34.000 1990-08-18 2024-10-11 02:05:34 +7535 7535 7536 753.5 1507 7535 1990-08-19 2024-10-11 02:05:35.000 1990-08-19 2024-10-11 02:05:35 +7536 7536 7537 753.6 1507.2 7536 1990-08-20 2024-10-11 02:05:36.000 1990-08-20 2024-10-11 02:05:36 +7537 7537 7538 753.7 1507.4 7537 1990-08-21 2024-10-11 02:05:37.000 1990-08-21 2024-10-11 02:05:37 +7538 7538 7539 753.8 1507.6000000000001 7538 1990-08-22 2024-10-11 02:05:38.000 1990-08-22 2024-10-11 02:05:38 +7539 7539 7540 753.9 1507.8000000000002 7539 1990-08-23 2024-10-11 02:05:39.000 1990-08-23 2024-10-11 02:05:39 +7540 7540 7541 754 1508 7540 1990-08-24 2024-10-11 02:05:40.000 1990-08-24 2024-10-11 02:05:40 +7541 7541 7542 754.1 1508.2 7541 1990-08-25 2024-10-11 02:05:41.000 1990-08-25 2024-10-11 02:05:41 +7542 7542 7543 754.2 1508.4 7542 1990-08-26 2024-10-11 02:05:42.000 1990-08-26 2024-10-11 02:05:42 +7543 7543 7544 754.3 1508.6000000000001 7543 1990-08-27 2024-10-11 02:05:43.000 1990-08-27 2024-10-11 02:05:43 +7544 7544 7545 754.4 1508.8000000000002 7544 1990-08-28 2024-10-11 02:05:44.000 1990-08-28 2024-10-11 02:05:44 +7545 7545 7546 754.5 1509 7545 1990-08-29 2024-10-11 02:05:45.000 1990-08-29 2024-10-11 02:05:45 +7546 7546 7547 754.6 1509.2 7546 1990-08-30 2024-10-11 02:05:46.000 1990-08-30 2024-10-11 02:05:46 +7547 7547 7548 754.7 1509.4 7547 1990-08-31 2024-10-11 02:05:47.000 1990-08-31 2024-10-11 02:05:47 +7548 7548 7549 754.8 1509.6000000000001 7548 1990-09-01 2024-10-11 02:05:48.000 1990-09-01 2024-10-11 02:05:48 +7549 7549 7550 754.9 1509.8000000000002 7549 1990-09-02 2024-10-11 02:05:49.000 1990-09-02 2024-10-11 02:05:49 +7550 7550 7551 755 1510 7550 1990-09-03 2024-10-11 02:05:50.000 1990-09-03 2024-10-11 02:05:50 +7551 7551 7552 755.1 1510.2 7551 1990-09-04 2024-10-11 02:05:51.000 1990-09-04 2024-10-11 02:05:51 +7552 7552 7553 755.2 1510.4 7552 1990-09-05 2024-10-11 02:05:52.000 1990-09-05 2024-10-11 02:05:52 +7553 7553 7554 755.3 1510.6000000000001 7553 1990-09-06 2024-10-11 02:05:53.000 1990-09-06 2024-10-11 02:05:53 +7554 7554 7555 755.4 1510.8000000000002 7554 1990-09-07 2024-10-11 02:05:54.000 1990-09-07 2024-10-11 02:05:54 +7555 7555 7556 755.5 1511 7555 1990-09-08 2024-10-11 02:05:55.000 1990-09-08 2024-10-11 02:05:55 +7556 7556 7557 755.6 1511.2 7556 1990-09-09 2024-10-11 02:05:56.000 1990-09-09 2024-10-11 02:05:56 +7557 7557 7558 755.7 1511.4 7557 1990-09-10 2024-10-11 02:05:57.000 1990-09-10 2024-10-11 02:05:57 +7558 7558 7559 755.8 1511.6000000000001 7558 1990-09-11 2024-10-11 02:05:58.000 1990-09-11 2024-10-11 02:05:58 +7559 7559 7560 755.9 1511.8000000000002 7559 1990-09-12 2024-10-11 02:05:59.000 1990-09-12 2024-10-11 02:05:59 +7560 7560 7561 756 1512 7560 1990-09-13 2024-10-11 02:06:00.000 1990-09-13 2024-10-11 02:06:00 +7561 7561 7562 756.1 1512.2 7561 1990-09-14 2024-10-11 02:06:01.000 1990-09-14 2024-10-11 02:06:01 +7562 7562 7563 756.2 1512.4 7562 1990-09-15 2024-10-11 02:06:02.000 1990-09-15 2024-10-11 02:06:02 +7563 7563 7564 756.3 1512.6000000000001 7563 1990-09-16 2024-10-11 02:06:03.000 1990-09-16 2024-10-11 02:06:03 +7564 7564 7565 756.4 1512.8000000000002 7564 1990-09-17 2024-10-11 02:06:04.000 1990-09-17 2024-10-11 02:06:04 +7565 7565 7566 756.5 1513 7565 1990-09-18 2024-10-11 02:06:05.000 1990-09-18 2024-10-11 02:06:05 +7566 7566 7567 756.6 1513.2 7566 1990-09-19 2024-10-11 02:06:06.000 1990-09-19 2024-10-11 02:06:06 +7567 7567 7568 756.7 1513.4 7567 1990-09-20 2024-10-11 02:06:07.000 1990-09-20 2024-10-11 02:06:07 +7568 7568 7569 756.8 1513.6000000000001 7568 1990-09-21 2024-10-11 02:06:08.000 1990-09-21 2024-10-11 02:06:08 +7569 7569 7570 756.9 1513.8000000000002 7569 1990-09-22 2024-10-11 02:06:09.000 1990-09-22 2024-10-11 02:06:09 +7570 7570 7571 757 1514 7570 1990-09-23 2024-10-11 02:06:10.000 1990-09-23 2024-10-11 02:06:10 +7571 7571 7572 757.1 1514.2 7571 1990-09-24 2024-10-11 02:06:11.000 1990-09-24 2024-10-11 02:06:11 +7572 7572 7573 757.2 1514.4 7572 1990-09-25 2024-10-11 02:06:12.000 1990-09-25 2024-10-11 02:06:12 +7573 7573 7574 757.3 1514.6000000000001 7573 1990-09-26 2024-10-11 02:06:13.000 1990-09-26 2024-10-11 02:06:13 +7574 7574 7575 757.4 1514.8000000000002 7574 1990-09-27 2024-10-11 02:06:14.000 1990-09-27 2024-10-11 02:06:14 +7575 7575 7576 757.5 1515 7575 1990-09-28 2024-10-11 02:06:15.000 1990-09-28 2024-10-11 02:06:15 +7576 7576 7577 757.6 1515.2 7576 1990-09-29 2024-10-11 02:06:16.000 1990-09-29 2024-10-11 02:06:16 +7577 7577 7578 757.7 1515.4 7577 1990-09-30 2024-10-11 02:06:17.000 1990-09-30 2024-10-11 02:06:17 +7578 7578 7579 757.8 1515.6000000000001 7578 1990-10-01 2024-10-11 02:06:18.000 1990-10-01 2024-10-11 02:06:18 +7579 7579 7580 757.9 1515.8000000000002 7579 1990-10-02 2024-10-11 02:06:19.000 1990-10-02 2024-10-11 02:06:19 +7580 7580 7581 758 1516 7580 1990-10-03 2024-10-11 02:06:20.000 1990-10-03 2024-10-11 02:06:20 +7581 7581 7582 758.1 1516.2 7581 1990-10-04 2024-10-11 02:06:21.000 1990-10-04 2024-10-11 02:06:21 +7582 7582 7583 758.2 1516.4 7582 1990-10-05 2024-10-11 02:06:22.000 1990-10-05 2024-10-11 02:06:22 +7583 7583 7584 758.3 1516.6000000000001 7583 1990-10-06 2024-10-11 02:06:23.000 1990-10-06 2024-10-11 02:06:23 +7584 7584 7585 758.4 1516.8000000000002 7584 1990-10-07 2024-10-11 02:06:24.000 1990-10-07 2024-10-11 02:06:24 +7585 7585 7586 758.5 1517 7585 1990-10-08 2024-10-11 02:06:25.000 1990-10-08 2024-10-11 02:06:25 +7586 7586 7587 758.6 1517.2 7586 1990-10-09 2024-10-11 02:06:26.000 1990-10-09 2024-10-11 02:06:26 +7587 7587 7588 758.7 1517.4 7587 1990-10-10 2024-10-11 02:06:27.000 1990-10-10 2024-10-11 02:06:27 +7588 7588 7589 758.8 1517.6000000000001 7588 1990-10-11 2024-10-11 02:06:28.000 1990-10-11 2024-10-11 02:06:28 +7589 7589 7590 758.9 1517.8000000000002 7589 1990-10-12 2024-10-11 02:06:29.000 1990-10-12 2024-10-11 02:06:29 +7590 7590 7591 759 1518 7590 1990-10-13 2024-10-11 02:06:30.000 1990-10-13 2024-10-11 02:06:30 +7591 7591 7592 759.1 1518.2 7591 1990-10-14 2024-10-11 02:06:31.000 1990-10-14 2024-10-11 02:06:31 +7592 7592 7593 759.2 1518.4 7592 1990-10-15 2024-10-11 02:06:32.000 1990-10-15 2024-10-11 02:06:32 +7593 7593 7594 759.3 1518.6000000000001 7593 1990-10-16 2024-10-11 02:06:33.000 1990-10-16 2024-10-11 02:06:33 +7594 7594 7595 759.4 1518.8000000000002 7594 1990-10-17 2024-10-11 02:06:34.000 1990-10-17 2024-10-11 02:06:34 +7595 7595 7596 759.5 1519 7595 1990-10-18 2024-10-11 02:06:35.000 1990-10-18 2024-10-11 02:06:35 +7596 7596 7597 759.6 1519.2 7596 1990-10-19 2024-10-11 02:06:36.000 1990-10-19 2024-10-11 02:06:36 +7597 7597 7598 759.7 1519.4 7597 1990-10-20 2024-10-11 02:06:37.000 1990-10-20 2024-10-11 02:06:37 +7598 7598 7599 759.8 1519.6000000000001 7598 1990-10-21 2024-10-11 02:06:38.000 1990-10-21 2024-10-11 02:06:38 +7599 7599 7600 759.9 1519.8000000000002 7599 1990-10-22 2024-10-11 02:06:39.000 1990-10-22 2024-10-11 02:06:39 +7600 7600 7601 760 1520 7600 1990-10-23 2024-10-11 02:06:40.000 1990-10-23 2024-10-11 02:06:40 +7601 7601 7602 760.1 1520.2 7601 1990-10-24 2024-10-11 02:06:41.000 1990-10-24 2024-10-11 02:06:41 +7602 7602 7603 760.2 1520.4 7602 1990-10-25 2024-10-11 02:06:42.000 1990-10-25 2024-10-11 02:06:42 +7603 7603 7604 760.3 1520.6000000000001 7603 1990-10-26 2024-10-11 02:06:43.000 1990-10-26 2024-10-11 02:06:43 +7604 7604 7605 760.4 1520.8000000000002 7604 1990-10-27 2024-10-11 02:06:44.000 1990-10-27 2024-10-11 02:06:44 +7605 7605 7606 760.5 1521 7605 1990-10-28 2024-10-11 02:06:45.000 1990-10-28 2024-10-11 02:06:45 +7606 7606 7607 760.6 1521.2 7606 1990-10-29 2024-10-11 02:06:46.000 1990-10-29 2024-10-11 02:06:46 +7607 7607 7608 760.7 1521.4 7607 1990-10-30 2024-10-11 02:06:47.000 1990-10-30 2024-10-11 02:06:47 +7608 7608 7609 760.8 1521.6000000000001 7608 1990-10-31 2024-10-11 02:06:48.000 1990-10-31 2024-10-11 02:06:48 +7609 7609 7610 760.9 1521.8000000000002 7609 1990-11-01 2024-10-11 02:06:49.000 1990-11-01 2024-10-11 02:06:49 +7610 7610 7611 761 1522 7610 1990-11-02 2024-10-11 02:06:50.000 1990-11-02 2024-10-11 02:06:50 +7611 7611 7612 761.1 1522.2 7611 1990-11-03 2024-10-11 02:06:51.000 1990-11-03 2024-10-11 02:06:51 +7612 7612 7613 761.2 1522.4 7612 1990-11-04 2024-10-11 02:06:52.000 1990-11-04 2024-10-11 02:06:52 +7613 7613 7614 761.3 1522.6000000000001 7613 1990-11-05 2024-10-11 02:06:53.000 1990-11-05 2024-10-11 02:06:53 +7614 7614 7615 761.4 1522.8000000000002 7614 1990-11-06 2024-10-11 02:06:54.000 1990-11-06 2024-10-11 02:06:54 +7615 7615 7616 761.5 1523 7615 1990-11-07 2024-10-11 02:06:55.000 1990-11-07 2024-10-11 02:06:55 +7616 7616 7617 761.6 1523.2 7616 1990-11-08 2024-10-11 02:06:56.000 1990-11-08 2024-10-11 02:06:56 +7617 7617 7618 761.7 1523.4 7617 1990-11-09 2024-10-11 02:06:57.000 1990-11-09 2024-10-11 02:06:57 +7618 7618 7619 761.8 1523.6000000000001 7618 1990-11-10 2024-10-11 02:06:58.000 1990-11-10 2024-10-11 02:06:58 +7619 7619 7620 761.9 1523.8000000000002 7619 1990-11-11 2024-10-11 02:06:59.000 1990-11-11 2024-10-11 02:06:59 +7620 7620 7621 762 1524 7620 1990-11-12 2024-10-11 02:07:00.000 1990-11-12 2024-10-11 02:07:00 +7621 7621 7622 762.1 1524.2 7621 1990-11-13 2024-10-11 02:07:01.000 1990-11-13 2024-10-11 02:07:01 +7622 7622 7623 762.2 1524.4 7622 1990-11-14 2024-10-11 02:07:02.000 1990-11-14 2024-10-11 02:07:02 +7623 7623 7624 762.3 1524.6000000000001 7623 1990-11-15 2024-10-11 02:07:03.000 1990-11-15 2024-10-11 02:07:03 +7624 7624 7625 762.4 1524.8000000000002 7624 1990-11-16 2024-10-11 02:07:04.000 1990-11-16 2024-10-11 02:07:04 +7625 7625 7626 762.5 1525 7625 1990-11-17 2024-10-11 02:07:05.000 1990-11-17 2024-10-11 02:07:05 +7626 7626 7627 762.6 1525.2 7626 1990-11-18 2024-10-11 02:07:06.000 1990-11-18 2024-10-11 02:07:06 +7627 7627 7628 762.7 1525.4 7627 1990-11-19 2024-10-11 02:07:07.000 1990-11-19 2024-10-11 02:07:07 +7628 7628 7629 762.8 1525.6000000000001 7628 1990-11-20 2024-10-11 02:07:08.000 1990-11-20 2024-10-11 02:07:08 +7629 7629 7630 762.9 1525.8000000000002 7629 1990-11-21 2024-10-11 02:07:09.000 1990-11-21 2024-10-11 02:07:09 +7630 7630 7631 763 1526 7630 1990-11-22 2024-10-11 02:07:10.000 1990-11-22 2024-10-11 02:07:10 +7631 7631 7632 763.1 1526.2 7631 1990-11-23 2024-10-11 02:07:11.000 1990-11-23 2024-10-11 02:07:11 +7632 7632 7633 763.2 1526.4 7632 1990-11-24 2024-10-11 02:07:12.000 1990-11-24 2024-10-11 02:07:12 +7633 7633 7634 763.3 1526.6000000000001 7633 1990-11-25 2024-10-11 02:07:13.000 1990-11-25 2024-10-11 02:07:13 +7634 7634 7635 763.4 1526.8000000000002 7634 1990-11-26 2024-10-11 02:07:14.000 1990-11-26 2024-10-11 02:07:14 +7635 7635 7636 763.5 1527 7635 1990-11-27 2024-10-11 02:07:15.000 1990-11-27 2024-10-11 02:07:15 +7636 7636 7637 763.6 1527.2 7636 1990-11-28 2024-10-11 02:07:16.000 1990-11-28 2024-10-11 02:07:16 +7637 7637 7638 763.7 1527.4 7637 1990-11-29 2024-10-11 02:07:17.000 1990-11-29 2024-10-11 02:07:17 +7638 7638 7639 763.8 1527.6000000000001 7638 1990-11-30 2024-10-11 02:07:18.000 1990-11-30 2024-10-11 02:07:18 +7639 7639 7640 763.9 1527.8000000000002 7639 1990-12-01 2024-10-11 02:07:19.000 1990-12-01 2024-10-11 02:07:19 +7640 7640 7641 764 1528 7640 1990-12-02 2024-10-11 02:07:20.000 1990-12-02 2024-10-11 02:07:20 +7641 7641 7642 764.1 1528.2 7641 1990-12-03 2024-10-11 02:07:21.000 1990-12-03 2024-10-11 02:07:21 +7642 7642 7643 764.2 1528.4 7642 1990-12-04 2024-10-11 02:07:22.000 1990-12-04 2024-10-11 02:07:22 +7643 7643 7644 764.3 1528.6000000000001 7643 1990-12-05 2024-10-11 02:07:23.000 1990-12-05 2024-10-11 02:07:23 +7644 7644 7645 764.4 1528.8000000000002 7644 1990-12-06 2024-10-11 02:07:24.000 1990-12-06 2024-10-11 02:07:24 +7645 7645 7646 764.5 1529 7645 1990-12-07 2024-10-11 02:07:25.000 1990-12-07 2024-10-11 02:07:25 +7646 7646 7647 764.6 1529.2 7646 1990-12-08 2024-10-11 02:07:26.000 1990-12-08 2024-10-11 02:07:26 +7647 7647 7648 764.7 1529.4 7647 1990-12-09 2024-10-11 02:07:27.000 1990-12-09 2024-10-11 02:07:27 +7648 7648 7649 764.8 1529.6000000000001 7648 1990-12-10 2024-10-11 02:07:28.000 1990-12-10 2024-10-11 02:07:28 +7649 7649 7650 764.9 1529.8000000000002 7649 1990-12-11 2024-10-11 02:07:29.000 1990-12-11 2024-10-11 02:07:29 +7650 7650 7651 765 1530 7650 1990-12-12 2024-10-11 02:07:30.000 1990-12-12 2024-10-11 02:07:30 +7651 7651 7652 765.1 1530.2 7651 1990-12-13 2024-10-11 02:07:31.000 1990-12-13 2024-10-11 02:07:31 +7652 7652 7653 765.2 1530.4 7652 1990-12-14 2024-10-11 02:07:32.000 1990-12-14 2024-10-11 02:07:32 +7653 7653 7654 765.3 1530.6000000000001 7653 1990-12-15 2024-10-11 02:07:33.000 1990-12-15 2024-10-11 02:07:33 +7654 7654 7655 765.4 1530.8000000000002 7654 1990-12-16 2024-10-11 02:07:34.000 1990-12-16 2024-10-11 02:07:34 +7655 7655 7656 765.5 1531 7655 1990-12-17 2024-10-11 02:07:35.000 1990-12-17 2024-10-11 02:07:35 +7656 7656 7657 765.6 1531.2 7656 1990-12-18 2024-10-11 02:07:36.000 1990-12-18 2024-10-11 02:07:36 +7657 7657 7658 765.7 1531.4 7657 1990-12-19 2024-10-11 02:07:37.000 1990-12-19 2024-10-11 02:07:37 +7658 7658 7659 765.8 1531.6000000000001 7658 1990-12-20 2024-10-11 02:07:38.000 1990-12-20 2024-10-11 02:07:38 +7659 7659 7660 765.9 1531.8000000000002 7659 1990-12-21 2024-10-11 02:07:39.000 1990-12-21 2024-10-11 02:07:39 +7660 7660 7661 766 1532 7660 1990-12-22 2024-10-11 02:07:40.000 1990-12-22 2024-10-11 02:07:40 +7661 7661 7662 766.1 1532.2 7661 1990-12-23 2024-10-11 02:07:41.000 1990-12-23 2024-10-11 02:07:41 +7662 7662 7663 766.2 1532.4 7662 1990-12-24 2024-10-11 02:07:42.000 1990-12-24 2024-10-11 02:07:42 +7663 7663 7664 766.3 1532.6000000000001 7663 1990-12-25 2024-10-11 02:07:43.000 1990-12-25 2024-10-11 02:07:43 +7664 7664 7665 766.4 1532.8000000000002 7664 1990-12-26 2024-10-11 02:07:44.000 1990-12-26 2024-10-11 02:07:44 +7665 7665 7666 766.5 1533 7665 1990-12-27 2024-10-11 02:07:45.000 1990-12-27 2024-10-11 02:07:45 +7666 7666 7667 766.6 1533.2 7666 1990-12-28 2024-10-11 02:07:46.000 1990-12-28 2024-10-11 02:07:46 +7667 7667 7668 766.7 1533.4 7667 1990-12-29 2024-10-11 02:07:47.000 1990-12-29 2024-10-11 02:07:47 +7668 7668 7669 766.8 1533.6000000000001 7668 1990-12-30 2024-10-11 02:07:48.000 1990-12-30 2024-10-11 02:07:48 +7669 7669 7670 766.9 1533.8000000000002 7669 1990-12-31 2024-10-11 02:07:49.000 1990-12-31 2024-10-11 02:07:49 +7670 7670 7671 767 1534 7670 1991-01-01 2024-10-11 02:07:50.000 1991-01-01 2024-10-11 02:07:50 +7671 7671 7672 767.1 1534.2 7671 1991-01-02 2024-10-11 02:07:51.000 1991-01-02 2024-10-11 02:07:51 +7672 7672 7673 767.2 1534.4 7672 1991-01-03 2024-10-11 02:07:52.000 1991-01-03 2024-10-11 02:07:52 +7673 7673 7674 767.3 1534.6000000000001 7673 1991-01-04 2024-10-11 02:07:53.000 1991-01-04 2024-10-11 02:07:53 +7674 7674 7675 767.4 1534.8000000000002 7674 1991-01-05 2024-10-11 02:07:54.000 1991-01-05 2024-10-11 02:07:54 +7675 7675 7676 767.5 1535 7675 1991-01-06 2024-10-11 02:07:55.000 1991-01-06 2024-10-11 02:07:55 +7676 7676 7677 767.6 1535.2 7676 1991-01-07 2024-10-11 02:07:56.000 1991-01-07 2024-10-11 02:07:56 +7677 7677 7678 767.7 1535.4 7677 1991-01-08 2024-10-11 02:07:57.000 1991-01-08 2024-10-11 02:07:57 +7678 7678 7679 767.8 1535.6000000000001 7678 1991-01-09 2024-10-11 02:07:58.000 1991-01-09 2024-10-11 02:07:58 +7679 7679 7680 767.9 1535.8000000000002 7679 1991-01-10 2024-10-11 02:07:59.000 1991-01-10 2024-10-11 02:07:59 +7680 7680 7681 768 1536 7680 1991-01-11 2024-10-11 02:08:00.000 1991-01-11 2024-10-11 02:08:00 +7681 7681 7682 768.1 1536.2 7681 1991-01-12 2024-10-11 02:08:01.000 1991-01-12 2024-10-11 02:08:01 +7682 7682 7683 768.2 1536.4 7682 1991-01-13 2024-10-11 02:08:02.000 1991-01-13 2024-10-11 02:08:02 +7683 7683 7684 768.3 1536.6000000000001 7683 1991-01-14 2024-10-11 02:08:03.000 1991-01-14 2024-10-11 02:08:03 +7684 7684 7685 768.4 1536.8000000000002 7684 1991-01-15 2024-10-11 02:08:04.000 1991-01-15 2024-10-11 02:08:04 +7685 7685 7686 768.5 1537 7685 1991-01-16 2024-10-11 02:08:05.000 1991-01-16 2024-10-11 02:08:05 +7686 7686 7687 768.6 1537.2 7686 1991-01-17 2024-10-11 02:08:06.000 1991-01-17 2024-10-11 02:08:06 +7687 7687 7688 768.7 1537.4 7687 1991-01-18 2024-10-11 02:08:07.000 1991-01-18 2024-10-11 02:08:07 +7688 7688 7689 768.8 1537.6000000000001 7688 1991-01-19 2024-10-11 02:08:08.000 1991-01-19 2024-10-11 02:08:08 +7689 7689 7690 768.9 1537.8000000000002 7689 1991-01-20 2024-10-11 02:08:09.000 1991-01-20 2024-10-11 02:08:09 +7690 7690 7691 769 1538 7690 1991-01-21 2024-10-11 02:08:10.000 1991-01-21 2024-10-11 02:08:10 +7691 7691 7692 769.1 1538.2 7691 1991-01-22 2024-10-11 02:08:11.000 1991-01-22 2024-10-11 02:08:11 +7692 7692 7693 769.2 1538.4 7692 1991-01-23 2024-10-11 02:08:12.000 1991-01-23 2024-10-11 02:08:12 +7693 7693 7694 769.3 1538.6000000000001 7693 1991-01-24 2024-10-11 02:08:13.000 1991-01-24 2024-10-11 02:08:13 +7694 7694 7695 769.4 1538.8000000000002 7694 1991-01-25 2024-10-11 02:08:14.000 1991-01-25 2024-10-11 02:08:14 +7695 7695 7696 769.5 1539 7695 1991-01-26 2024-10-11 02:08:15.000 1991-01-26 2024-10-11 02:08:15 +7696 7696 7697 769.6 1539.2 7696 1991-01-27 2024-10-11 02:08:16.000 1991-01-27 2024-10-11 02:08:16 +7697 7697 7698 769.7 1539.4 7697 1991-01-28 2024-10-11 02:08:17.000 1991-01-28 2024-10-11 02:08:17 +7698 7698 7699 769.8 1539.6000000000001 7698 1991-01-29 2024-10-11 02:08:18.000 1991-01-29 2024-10-11 02:08:18 +7699 7699 7700 769.9 1539.8000000000002 7699 1991-01-30 2024-10-11 02:08:19.000 1991-01-30 2024-10-11 02:08:19 +7700 7700 7701 770 1540 7700 1991-01-31 2024-10-11 02:08:20.000 1991-01-31 2024-10-11 02:08:20 +7701 7701 7702 770.1 1540.2 7701 1991-02-01 2024-10-11 02:08:21.000 1991-02-01 2024-10-11 02:08:21 +7702 7702 7703 770.2 1540.4 7702 1991-02-02 2024-10-11 02:08:22.000 1991-02-02 2024-10-11 02:08:22 +7703 7703 7704 770.3 1540.6000000000001 7703 1991-02-03 2024-10-11 02:08:23.000 1991-02-03 2024-10-11 02:08:23 +7704 7704 7705 770.4 1540.8000000000002 7704 1991-02-04 2024-10-11 02:08:24.000 1991-02-04 2024-10-11 02:08:24 +7705 7705 7706 770.5 1541 7705 1991-02-05 2024-10-11 02:08:25.000 1991-02-05 2024-10-11 02:08:25 +7706 7706 7707 770.6 1541.2 7706 1991-02-06 2024-10-11 02:08:26.000 1991-02-06 2024-10-11 02:08:26 +7707 7707 7708 770.7 1541.4 7707 1991-02-07 2024-10-11 02:08:27.000 1991-02-07 2024-10-11 02:08:27 +7708 7708 7709 770.8 1541.6000000000001 7708 1991-02-08 2024-10-11 02:08:28.000 1991-02-08 2024-10-11 02:08:28 +7709 7709 7710 770.9 1541.8000000000002 7709 1991-02-09 2024-10-11 02:08:29.000 1991-02-09 2024-10-11 02:08:29 +7710 7710 7711 771 1542 7710 1991-02-10 2024-10-11 02:08:30.000 1991-02-10 2024-10-11 02:08:30 +7711 7711 7712 771.1 1542.2 7711 1991-02-11 2024-10-11 02:08:31.000 1991-02-11 2024-10-11 02:08:31 +7712 7712 7713 771.2 1542.4 7712 1991-02-12 2024-10-11 02:08:32.000 1991-02-12 2024-10-11 02:08:32 +7713 7713 7714 771.3 1542.6000000000001 7713 1991-02-13 2024-10-11 02:08:33.000 1991-02-13 2024-10-11 02:08:33 +7714 7714 7715 771.4 1542.8000000000002 7714 1991-02-14 2024-10-11 02:08:34.000 1991-02-14 2024-10-11 02:08:34 +7715 7715 7716 771.5 1543 7715 1991-02-15 2024-10-11 02:08:35.000 1991-02-15 2024-10-11 02:08:35 +7716 7716 7717 771.6 1543.2 7716 1991-02-16 2024-10-11 02:08:36.000 1991-02-16 2024-10-11 02:08:36 +7717 7717 7718 771.7 1543.4 7717 1991-02-17 2024-10-11 02:08:37.000 1991-02-17 2024-10-11 02:08:37 +7718 7718 7719 771.8 1543.6000000000001 7718 1991-02-18 2024-10-11 02:08:38.000 1991-02-18 2024-10-11 02:08:38 +7719 7719 7720 771.9 1543.8000000000002 7719 1991-02-19 2024-10-11 02:08:39.000 1991-02-19 2024-10-11 02:08:39 +7720 7720 7721 772 1544 7720 1991-02-20 2024-10-11 02:08:40.000 1991-02-20 2024-10-11 02:08:40 +7721 7721 7722 772.1 1544.2 7721 1991-02-21 2024-10-11 02:08:41.000 1991-02-21 2024-10-11 02:08:41 +7722 7722 7723 772.2 1544.4 7722 1991-02-22 2024-10-11 02:08:42.000 1991-02-22 2024-10-11 02:08:42 +7723 7723 7724 772.3 1544.6000000000001 7723 1991-02-23 2024-10-11 02:08:43.000 1991-02-23 2024-10-11 02:08:43 +7724 7724 7725 772.4 1544.8000000000002 7724 1991-02-24 2024-10-11 02:08:44.000 1991-02-24 2024-10-11 02:08:44 +7725 7725 7726 772.5 1545 7725 1991-02-25 2024-10-11 02:08:45.000 1991-02-25 2024-10-11 02:08:45 +7726 7726 7727 772.6 1545.2 7726 1991-02-26 2024-10-11 02:08:46.000 1991-02-26 2024-10-11 02:08:46 +7727 7727 7728 772.7 1545.4 7727 1991-02-27 2024-10-11 02:08:47.000 1991-02-27 2024-10-11 02:08:47 +7728 7728 7729 772.8 1545.6000000000001 7728 1991-02-28 2024-10-11 02:08:48.000 1991-02-28 2024-10-11 02:08:48 +7729 7729 7730 772.9 1545.8000000000002 7729 1991-03-01 2024-10-11 02:08:49.000 1991-03-01 2024-10-11 02:08:49 +7730 7730 7731 773 1546 7730 1991-03-02 2024-10-11 02:08:50.000 1991-03-02 2024-10-11 02:08:50 +7731 7731 7732 773.1 1546.2 7731 1991-03-03 2024-10-11 02:08:51.000 1991-03-03 2024-10-11 02:08:51 +7732 7732 7733 773.2 1546.4 7732 1991-03-04 2024-10-11 02:08:52.000 1991-03-04 2024-10-11 02:08:52 +7733 7733 7734 773.3 1546.6000000000001 7733 1991-03-05 2024-10-11 02:08:53.000 1991-03-05 2024-10-11 02:08:53 +7734 7734 7735 773.4 1546.8000000000002 7734 1991-03-06 2024-10-11 02:08:54.000 1991-03-06 2024-10-11 02:08:54 +7735 7735 7736 773.5 1547 7735 1991-03-07 2024-10-11 02:08:55.000 1991-03-07 2024-10-11 02:08:55 +7736 7736 7737 773.6 1547.2 7736 1991-03-08 2024-10-11 02:08:56.000 1991-03-08 2024-10-11 02:08:56 +7737 7737 7738 773.7 1547.4 7737 1991-03-09 2024-10-11 02:08:57.000 1991-03-09 2024-10-11 02:08:57 +7738 7738 7739 773.8 1547.6000000000001 7738 1991-03-10 2024-10-11 02:08:58.000 1991-03-10 2024-10-11 02:08:58 +7739 7739 7740 773.9 1547.8000000000002 7739 1991-03-11 2024-10-11 02:08:59.000 1991-03-11 2024-10-11 02:08:59 +7740 7740 7741 774 1548 7740 1991-03-12 2024-10-11 02:09:00.000 1991-03-12 2024-10-11 02:09:00 +7741 7741 7742 774.1 1548.2 7741 1991-03-13 2024-10-11 02:09:01.000 1991-03-13 2024-10-11 02:09:01 +7742 7742 7743 774.2 1548.4 7742 1991-03-14 2024-10-11 02:09:02.000 1991-03-14 2024-10-11 02:09:02 +7743 7743 7744 774.3 1548.6000000000001 7743 1991-03-15 2024-10-11 02:09:03.000 1991-03-15 2024-10-11 02:09:03 +7744 7744 7745 774.4 1548.8000000000002 7744 1991-03-16 2024-10-11 02:09:04.000 1991-03-16 2024-10-11 02:09:04 +7745 7745 7746 774.5 1549 7745 1991-03-17 2024-10-11 02:09:05.000 1991-03-17 2024-10-11 02:09:05 +7746 7746 7747 774.6 1549.2 7746 1991-03-18 2024-10-11 02:09:06.000 1991-03-18 2024-10-11 02:09:06 +7747 7747 7748 774.7 1549.4 7747 1991-03-19 2024-10-11 02:09:07.000 1991-03-19 2024-10-11 02:09:07 +7748 7748 7749 774.8 1549.6000000000001 7748 1991-03-20 2024-10-11 02:09:08.000 1991-03-20 2024-10-11 02:09:08 +7749 7749 7750 774.9 1549.8000000000002 7749 1991-03-21 2024-10-11 02:09:09.000 1991-03-21 2024-10-11 02:09:09 +7750 7750 7751 775 1550 7750 1991-03-22 2024-10-11 02:09:10.000 1991-03-22 2024-10-11 02:09:10 +7751 7751 7752 775.1 1550.2 7751 1991-03-23 2024-10-11 02:09:11.000 1991-03-23 2024-10-11 02:09:11 +7752 7752 7753 775.2 1550.4 7752 1991-03-24 2024-10-11 02:09:12.000 1991-03-24 2024-10-11 02:09:12 +7753 7753 7754 775.3 1550.6000000000001 7753 1991-03-25 2024-10-11 02:09:13.000 1991-03-25 2024-10-11 02:09:13 +7754 7754 7755 775.4 1550.8000000000002 7754 1991-03-26 2024-10-11 02:09:14.000 1991-03-26 2024-10-11 02:09:14 +7755 7755 7756 775.5 1551 7755 1991-03-27 2024-10-11 02:09:15.000 1991-03-27 2024-10-11 02:09:15 +7756 7756 7757 775.6 1551.2 7756 1991-03-28 2024-10-11 02:09:16.000 1991-03-28 2024-10-11 02:09:16 +7757 7757 7758 775.7 1551.4 7757 1991-03-29 2024-10-11 02:09:17.000 1991-03-29 2024-10-11 02:09:17 +7758 7758 7759 775.8 1551.6000000000001 7758 1991-03-30 2024-10-11 02:09:18.000 1991-03-30 2024-10-11 02:09:18 +7759 7759 7760 775.9 1551.8000000000002 7759 1991-03-31 2024-10-11 02:09:19.000 1991-03-31 2024-10-11 02:09:19 +7760 7760 7761 776 1552 7760 1991-04-01 2024-10-11 02:09:20.000 1991-04-01 2024-10-11 02:09:20 +7761 7761 7762 776.1 1552.2 7761 1991-04-02 2024-10-11 02:09:21.000 1991-04-02 2024-10-11 02:09:21 +7762 7762 7763 776.2 1552.4 7762 1991-04-03 2024-10-11 02:09:22.000 1991-04-03 2024-10-11 02:09:22 +7763 7763 7764 776.3 1552.6000000000001 7763 1991-04-04 2024-10-11 02:09:23.000 1991-04-04 2024-10-11 02:09:23 +7764 7764 7765 776.4 1552.8000000000002 7764 1991-04-05 2024-10-11 02:09:24.000 1991-04-05 2024-10-11 02:09:24 +7765 7765 7766 776.5 1553 7765 1991-04-06 2024-10-11 02:09:25.000 1991-04-06 2024-10-11 02:09:25 +7766 7766 7767 776.6 1553.2 7766 1991-04-07 2024-10-11 02:09:26.000 1991-04-07 2024-10-11 02:09:26 +7767 7767 7768 776.7 1553.4 7767 1991-04-08 2024-10-11 02:09:27.000 1991-04-08 2024-10-11 02:09:27 +7768 7768 7769 776.8 1553.6000000000001 7768 1991-04-09 2024-10-11 02:09:28.000 1991-04-09 2024-10-11 02:09:28 +7769 7769 7770 776.9 1553.8000000000002 7769 1991-04-10 2024-10-11 02:09:29.000 1991-04-10 2024-10-11 02:09:29 +7770 7770 7771 777 1554 7770 1991-04-11 2024-10-11 02:09:30.000 1991-04-11 2024-10-11 02:09:30 +7771 7771 7772 777.1 1554.2 7771 1991-04-12 2024-10-11 02:09:31.000 1991-04-12 2024-10-11 02:09:31 +7772 7772 7773 777.2 1554.4 7772 1991-04-13 2024-10-11 02:09:32.000 1991-04-13 2024-10-11 02:09:32 +7773 7773 7774 777.3 1554.6000000000001 7773 1991-04-14 2024-10-11 02:09:33.000 1991-04-14 2024-10-11 02:09:33 +7774 7774 7775 777.4 1554.8000000000002 7774 1991-04-15 2024-10-11 02:09:34.000 1991-04-15 2024-10-11 02:09:34 +7775 7775 7776 777.5 1555 7775 1991-04-16 2024-10-11 02:09:35.000 1991-04-16 2024-10-11 02:09:35 +7776 7776 7777 777.6 1555.2 7776 1991-04-17 2024-10-11 02:09:36.000 1991-04-17 2024-10-11 02:09:36 +7777 7777 7778 777.7 1555.4 7777 1991-04-18 2024-10-11 02:09:37.000 1991-04-18 2024-10-11 02:09:37 +7778 7778 7779 777.8 1555.6000000000001 7778 1991-04-19 2024-10-11 02:09:38.000 1991-04-19 2024-10-11 02:09:38 +7779 7779 7780 777.9 1555.8000000000002 7779 1991-04-20 2024-10-11 02:09:39.000 1991-04-20 2024-10-11 02:09:39 +7780 7780 7781 778 1556 7780 1991-04-21 2024-10-11 02:09:40.000 1991-04-21 2024-10-11 02:09:40 +7781 7781 7782 778.1 1556.2 7781 1991-04-22 2024-10-11 02:09:41.000 1991-04-22 2024-10-11 02:09:41 +7782 7782 7783 778.2 1556.4 7782 1991-04-23 2024-10-11 02:09:42.000 1991-04-23 2024-10-11 02:09:42 +7783 7783 7784 778.3 1556.6000000000001 7783 1991-04-24 2024-10-11 02:09:43.000 1991-04-24 2024-10-11 02:09:43 +7784 7784 7785 778.4 1556.8000000000002 7784 1991-04-25 2024-10-11 02:09:44.000 1991-04-25 2024-10-11 02:09:44 +7785 7785 7786 778.5 1557 7785 1991-04-26 2024-10-11 02:09:45.000 1991-04-26 2024-10-11 02:09:45 +7786 7786 7787 778.6 1557.2 7786 1991-04-27 2024-10-11 02:09:46.000 1991-04-27 2024-10-11 02:09:46 +7787 7787 7788 778.7 1557.4 7787 1991-04-28 2024-10-11 02:09:47.000 1991-04-28 2024-10-11 02:09:47 +7788 7788 7789 778.8 1557.6000000000001 7788 1991-04-29 2024-10-11 02:09:48.000 1991-04-29 2024-10-11 02:09:48 +7789 7789 7790 778.9 1557.8000000000002 7789 1991-04-30 2024-10-11 02:09:49.000 1991-04-30 2024-10-11 02:09:49 +7790 7790 7791 779 1558 7790 1991-05-01 2024-10-11 02:09:50.000 1991-05-01 2024-10-11 02:09:50 +7791 7791 7792 779.1 1558.2 7791 1991-05-02 2024-10-11 02:09:51.000 1991-05-02 2024-10-11 02:09:51 +7792 7792 7793 779.2 1558.4 7792 1991-05-03 2024-10-11 02:09:52.000 1991-05-03 2024-10-11 02:09:52 +7793 7793 7794 779.3 1558.6000000000001 7793 1991-05-04 2024-10-11 02:09:53.000 1991-05-04 2024-10-11 02:09:53 +7794 7794 7795 779.4 1558.8000000000002 7794 1991-05-05 2024-10-11 02:09:54.000 1991-05-05 2024-10-11 02:09:54 +7795 7795 7796 779.5 1559 7795 1991-05-06 2024-10-11 02:09:55.000 1991-05-06 2024-10-11 02:09:55 +7796 7796 7797 779.6 1559.2 7796 1991-05-07 2024-10-11 02:09:56.000 1991-05-07 2024-10-11 02:09:56 +7797 7797 7798 779.7 1559.4 7797 1991-05-08 2024-10-11 02:09:57.000 1991-05-08 2024-10-11 02:09:57 +7798 7798 7799 779.8 1559.6000000000001 7798 1991-05-09 2024-10-11 02:09:58.000 1991-05-09 2024-10-11 02:09:58 +7799 7799 7800 779.9 1559.8000000000002 7799 1991-05-10 2024-10-11 02:09:59.000 1991-05-10 2024-10-11 02:09:59 +7800 7800 7801 780 1560 7800 1991-05-11 2024-10-11 02:10:00.000 1991-05-11 2024-10-11 02:10:00 +7801 7801 7802 780.1 1560.2 7801 1991-05-12 2024-10-11 02:10:01.000 1991-05-12 2024-10-11 02:10:01 +7802 7802 7803 780.2 1560.4 7802 1991-05-13 2024-10-11 02:10:02.000 1991-05-13 2024-10-11 02:10:02 +7803 7803 7804 780.3 1560.6000000000001 7803 1991-05-14 2024-10-11 02:10:03.000 1991-05-14 2024-10-11 02:10:03 +7804 7804 7805 780.4 1560.8000000000002 7804 1991-05-15 2024-10-11 02:10:04.000 1991-05-15 2024-10-11 02:10:04 +7805 7805 7806 780.5 1561 7805 1991-05-16 2024-10-11 02:10:05.000 1991-05-16 2024-10-11 02:10:05 +7806 7806 7807 780.6 1561.2 7806 1991-05-17 2024-10-11 02:10:06.000 1991-05-17 2024-10-11 02:10:06 +7807 7807 7808 780.7 1561.4 7807 1991-05-18 2024-10-11 02:10:07.000 1991-05-18 2024-10-11 02:10:07 +7808 7808 7809 780.8 1561.6000000000001 7808 1991-05-19 2024-10-11 02:10:08.000 1991-05-19 2024-10-11 02:10:08 +7809 7809 7810 780.9 1561.8000000000002 7809 1991-05-20 2024-10-11 02:10:09.000 1991-05-20 2024-10-11 02:10:09 +7810 7810 7811 781 1562 7810 1991-05-21 2024-10-11 02:10:10.000 1991-05-21 2024-10-11 02:10:10 +7811 7811 7812 781.1 1562.2 7811 1991-05-22 2024-10-11 02:10:11.000 1991-05-22 2024-10-11 02:10:11 +7812 7812 7813 781.2 1562.4 7812 1991-05-23 2024-10-11 02:10:12.000 1991-05-23 2024-10-11 02:10:12 +7813 7813 7814 781.3 1562.6000000000001 7813 1991-05-24 2024-10-11 02:10:13.000 1991-05-24 2024-10-11 02:10:13 +7814 7814 7815 781.4 1562.8000000000002 7814 1991-05-25 2024-10-11 02:10:14.000 1991-05-25 2024-10-11 02:10:14 +7815 7815 7816 781.5 1563 7815 1991-05-26 2024-10-11 02:10:15.000 1991-05-26 2024-10-11 02:10:15 +7816 7816 7817 781.6 1563.2 7816 1991-05-27 2024-10-11 02:10:16.000 1991-05-27 2024-10-11 02:10:16 +7817 7817 7818 781.7 1563.4 7817 1991-05-28 2024-10-11 02:10:17.000 1991-05-28 2024-10-11 02:10:17 +7818 7818 7819 781.8 1563.6000000000001 7818 1991-05-29 2024-10-11 02:10:18.000 1991-05-29 2024-10-11 02:10:18 +7819 7819 7820 781.9 1563.8000000000002 7819 1991-05-30 2024-10-11 02:10:19.000 1991-05-30 2024-10-11 02:10:19 +7820 7820 7821 782 1564 7820 1991-05-31 2024-10-11 02:10:20.000 1991-05-31 2024-10-11 02:10:20 +7821 7821 7822 782.1 1564.2 7821 1991-06-01 2024-10-11 02:10:21.000 1991-06-01 2024-10-11 02:10:21 +7822 7822 7823 782.2 1564.4 7822 1991-06-02 2024-10-11 02:10:22.000 1991-06-02 2024-10-11 02:10:22 +7823 7823 7824 782.3 1564.6000000000001 7823 1991-06-03 2024-10-11 02:10:23.000 1991-06-03 2024-10-11 02:10:23 +7824 7824 7825 782.4 1564.8000000000002 7824 1991-06-04 2024-10-11 02:10:24.000 1991-06-04 2024-10-11 02:10:24 +7825 7825 7826 782.5 1565 7825 1991-06-05 2024-10-11 02:10:25.000 1991-06-05 2024-10-11 02:10:25 +7826 7826 7827 782.6 1565.2 7826 1991-06-06 2024-10-11 02:10:26.000 1991-06-06 2024-10-11 02:10:26 +7827 7827 7828 782.7 1565.4 7827 1991-06-07 2024-10-11 02:10:27.000 1991-06-07 2024-10-11 02:10:27 +7828 7828 7829 782.8 1565.6000000000001 7828 1991-06-08 2024-10-11 02:10:28.000 1991-06-08 2024-10-11 02:10:28 +7829 7829 7830 782.9 1565.8000000000002 7829 1991-06-09 2024-10-11 02:10:29.000 1991-06-09 2024-10-11 02:10:29 +7830 7830 7831 783 1566 7830 1991-06-10 2024-10-11 02:10:30.000 1991-06-10 2024-10-11 02:10:30 +7831 7831 7832 783.1 1566.2 7831 1991-06-11 2024-10-11 02:10:31.000 1991-06-11 2024-10-11 02:10:31 +7832 7832 7833 783.2 1566.4 7832 1991-06-12 2024-10-11 02:10:32.000 1991-06-12 2024-10-11 02:10:32 +7833 7833 7834 783.3 1566.6000000000001 7833 1991-06-13 2024-10-11 02:10:33.000 1991-06-13 2024-10-11 02:10:33 +7834 7834 7835 783.4 1566.8000000000002 7834 1991-06-14 2024-10-11 02:10:34.000 1991-06-14 2024-10-11 02:10:34 +7835 7835 7836 783.5 1567 7835 1991-06-15 2024-10-11 02:10:35.000 1991-06-15 2024-10-11 02:10:35 +7836 7836 7837 783.6 1567.2 7836 1991-06-16 2024-10-11 02:10:36.000 1991-06-16 2024-10-11 02:10:36 +7837 7837 7838 783.7 1567.4 7837 1991-06-17 2024-10-11 02:10:37.000 1991-06-17 2024-10-11 02:10:37 +7838 7838 7839 783.8 1567.6000000000001 7838 1991-06-18 2024-10-11 02:10:38.000 1991-06-18 2024-10-11 02:10:38 +7839 7839 7840 783.9 1567.8000000000002 7839 1991-06-19 2024-10-11 02:10:39.000 1991-06-19 2024-10-11 02:10:39 +7840 7840 7841 784 1568 7840 1991-06-20 2024-10-11 02:10:40.000 1991-06-20 2024-10-11 02:10:40 +7841 7841 7842 784.1 1568.2 7841 1991-06-21 2024-10-11 02:10:41.000 1991-06-21 2024-10-11 02:10:41 +7842 7842 7843 784.2 1568.4 7842 1991-06-22 2024-10-11 02:10:42.000 1991-06-22 2024-10-11 02:10:42 +7843 7843 7844 784.3 1568.6000000000001 7843 1991-06-23 2024-10-11 02:10:43.000 1991-06-23 2024-10-11 02:10:43 +7844 7844 7845 784.4 1568.8000000000002 7844 1991-06-24 2024-10-11 02:10:44.000 1991-06-24 2024-10-11 02:10:44 +7845 7845 7846 784.5 1569 7845 1991-06-25 2024-10-11 02:10:45.000 1991-06-25 2024-10-11 02:10:45 +7846 7846 7847 784.6 1569.2 7846 1991-06-26 2024-10-11 02:10:46.000 1991-06-26 2024-10-11 02:10:46 +7847 7847 7848 784.7 1569.4 7847 1991-06-27 2024-10-11 02:10:47.000 1991-06-27 2024-10-11 02:10:47 +7848 7848 7849 784.8 1569.6000000000001 7848 1991-06-28 2024-10-11 02:10:48.000 1991-06-28 2024-10-11 02:10:48 +7849 7849 7850 784.9 1569.8000000000002 7849 1991-06-29 2024-10-11 02:10:49.000 1991-06-29 2024-10-11 02:10:49 +7850 7850 7851 785 1570 7850 1991-06-30 2024-10-11 02:10:50.000 1991-06-30 2024-10-11 02:10:50 +7851 7851 7852 785.1 1570.2 7851 1991-07-01 2024-10-11 02:10:51.000 1991-07-01 2024-10-11 02:10:51 +7852 7852 7853 785.2 1570.4 7852 1991-07-02 2024-10-11 02:10:52.000 1991-07-02 2024-10-11 02:10:52 +7853 7853 7854 785.3 1570.6000000000001 7853 1991-07-03 2024-10-11 02:10:53.000 1991-07-03 2024-10-11 02:10:53 +7854 7854 7855 785.4 1570.8000000000002 7854 1991-07-04 2024-10-11 02:10:54.000 1991-07-04 2024-10-11 02:10:54 +7855 7855 7856 785.5 1571 7855 1991-07-05 2024-10-11 02:10:55.000 1991-07-05 2024-10-11 02:10:55 +7856 7856 7857 785.6 1571.2 7856 1991-07-06 2024-10-11 02:10:56.000 1991-07-06 2024-10-11 02:10:56 +7857 7857 7858 785.7 1571.4 7857 1991-07-07 2024-10-11 02:10:57.000 1991-07-07 2024-10-11 02:10:57 +7858 7858 7859 785.8 1571.6000000000001 7858 1991-07-08 2024-10-11 02:10:58.000 1991-07-08 2024-10-11 02:10:58 +7859 7859 7860 785.9 1571.8000000000002 7859 1991-07-09 2024-10-11 02:10:59.000 1991-07-09 2024-10-11 02:10:59 +7860 7860 7861 786 1572 7860 1991-07-10 2024-10-11 02:11:00.000 1991-07-10 2024-10-11 02:11:00 +7861 7861 7862 786.1 1572.2 7861 1991-07-11 2024-10-11 02:11:01.000 1991-07-11 2024-10-11 02:11:01 +7862 7862 7863 786.2 1572.4 7862 1991-07-12 2024-10-11 02:11:02.000 1991-07-12 2024-10-11 02:11:02 +7863 7863 7864 786.3 1572.6000000000001 7863 1991-07-13 2024-10-11 02:11:03.000 1991-07-13 2024-10-11 02:11:03 +7864 7864 7865 786.4 1572.8000000000002 7864 1991-07-14 2024-10-11 02:11:04.000 1991-07-14 2024-10-11 02:11:04 +7865 7865 7866 786.5 1573 7865 1991-07-15 2024-10-11 02:11:05.000 1991-07-15 2024-10-11 02:11:05 +7866 7866 7867 786.6 1573.2 7866 1991-07-16 2024-10-11 02:11:06.000 1991-07-16 2024-10-11 02:11:06 +7867 7867 7868 786.7 1573.4 7867 1991-07-17 2024-10-11 02:11:07.000 1991-07-17 2024-10-11 02:11:07 +7868 7868 7869 786.8 1573.6000000000001 7868 1991-07-18 2024-10-11 02:11:08.000 1991-07-18 2024-10-11 02:11:08 +7869 7869 7870 786.9 1573.8000000000002 7869 1991-07-19 2024-10-11 02:11:09.000 1991-07-19 2024-10-11 02:11:09 +7870 7870 7871 787 1574 7870 1991-07-20 2024-10-11 02:11:10.000 1991-07-20 2024-10-11 02:11:10 +7871 7871 7872 787.1 1574.2 7871 1991-07-21 2024-10-11 02:11:11.000 1991-07-21 2024-10-11 02:11:11 +7872 7872 7873 787.2 1574.4 7872 1991-07-22 2024-10-11 02:11:12.000 1991-07-22 2024-10-11 02:11:12 +7873 7873 7874 787.3 1574.6000000000001 7873 1991-07-23 2024-10-11 02:11:13.000 1991-07-23 2024-10-11 02:11:13 +7874 7874 7875 787.4 1574.8000000000002 7874 1991-07-24 2024-10-11 02:11:14.000 1991-07-24 2024-10-11 02:11:14 +7875 7875 7876 787.5 1575 7875 1991-07-25 2024-10-11 02:11:15.000 1991-07-25 2024-10-11 02:11:15 +7876 7876 7877 787.6 1575.2 7876 1991-07-26 2024-10-11 02:11:16.000 1991-07-26 2024-10-11 02:11:16 +7877 7877 7878 787.7 1575.4 7877 1991-07-27 2024-10-11 02:11:17.000 1991-07-27 2024-10-11 02:11:17 +7878 7878 7879 787.8 1575.6000000000001 7878 1991-07-28 2024-10-11 02:11:18.000 1991-07-28 2024-10-11 02:11:18 +7879 7879 7880 787.9 1575.8000000000002 7879 1991-07-29 2024-10-11 02:11:19.000 1991-07-29 2024-10-11 02:11:19 +7880 7880 7881 788 1576 7880 1991-07-30 2024-10-11 02:11:20.000 1991-07-30 2024-10-11 02:11:20 +7881 7881 7882 788.1 1576.2 7881 1991-07-31 2024-10-11 02:11:21.000 1991-07-31 2024-10-11 02:11:21 +7882 7882 7883 788.2 1576.4 7882 1991-08-01 2024-10-11 02:11:22.000 1991-08-01 2024-10-11 02:11:22 +7883 7883 7884 788.3 1576.6000000000001 7883 1991-08-02 2024-10-11 02:11:23.000 1991-08-02 2024-10-11 02:11:23 +7884 7884 7885 788.4 1576.8000000000002 7884 1991-08-03 2024-10-11 02:11:24.000 1991-08-03 2024-10-11 02:11:24 +7885 7885 7886 788.5 1577 7885 1991-08-04 2024-10-11 02:11:25.000 1991-08-04 2024-10-11 02:11:25 +7886 7886 7887 788.6 1577.2 7886 1991-08-05 2024-10-11 02:11:26.000 1991-08-05 2024-10-11 02:11:26 +7887 7887 7888 788.7 1577.4 7887 1991-08-06 2024-10-11 02:11:27.000 1991-08-06 2024-10-11 02:11:27 +7888 7888 7889 788.8 1577.6000000000001 7888 1991-08-07 2024-10-11 02:11:28.000 1991-08-07 2024-10-11 02:11:28 +7889 7889 7890 788.9 1577.8000000000002 7889 1991-08-08 2024-10-11 02:11:29.000 1991-08-08 2024-10-11 02:11:29 +7890 7890 7891 789 1578 7890 1991-08-09 2024-10-11 02:11:30.000 1991-08-09 2024-10-11 02:11:30 +7891 7891 7892 789.1 1578.2 7891 1991-08-10 2024-10-11 02:11:31.000 1991-08-10 2024-10-11 02:11:31 +7892 7892 7893 789.2 1578.4 7892 1991-08-11 2024-10-11 02:11:32.000 1991-08-11 2024-10-11 02:11:32 +7893 7893 7894 789.3 1578.6000000000001 7893 1991-08-12 2024-10-11 02:11:33.000 1991-08-12 2024-10-11 02:11:33 +7894 7894 7895 789.4 1578.8000000000002 7894 1991-08-13 2024-10-11 02:11:34.000 1991-08-13 2024-10-11 02:11:34 +7895 7895 7896 789.5 1579 7895 1991-08-14 2024-10-11 02:11:35.000 1991-08-14 2024-10-11 02:11:35 +7896 7896 7897 789.6 1579.2 7896 1991-08-15 2024-10-11 02:11:36.000 1991-08-15 2024-10-11 02:11:36 +7897 7897 7898 789.7 1579.4 7897 1991-08-16 2024-10-11 02:11:37.000 1991-08-16 2024-10-11 02:11:37 +7898 7898 7899 789.8 1579.6000000000001 7898 1991-08-17 2024-10-11 02:11:38.000 1991-08-17 2024-10-11 02:11:38 +7899 7899 7900 789.9 1579.8000000000002 7899 1991-08-18 2024-10-11 02:11:39.000 1991-08-18 2024-10-11 02:11:39 +7900 7900 7901 790 1580 7900 1991-08-19 2024-10-11 02:11:40.000 1991-08-19 2024-10-11 02:11:40 +7901 7901 7902 790.1 1580.2 7901 1991-08-20 2024-10-11 02:11:41.000 1991-08-20 2024-10-11 02:11:41 +7902 7902 7903 790.2 1580.4 7902 1991-08-21 2024-10-11 02:11:42.000 1991-08-21 2024-10-11 02:11:42 +7903 7903 7904 790.3 1580.6000000000001 7903 1991-08-22 2024-10-11 02:11:43.000 1991-08-22 2024-10-11 02:11:43 +7904 7904 7905 790.4 1580.8000000000002 7904 1991-08-23 2024-10-11 02:11:44.000 1991-08-23 2024-10-11 02:11:44 +7905 7905 7906 790.5 1581 7905 1991-08-24 2024-10-11 02:11:45.000 1991-08-24 2024-10-11 02:11:45 +7906 7906 7907 790.6 1581.2 7906 1991-08-25 2024-10-11 02:11:46.000 1991-08-25 2024-10-11 02:11:46 +7907 7907 7908 790.7 1581.4 7907 1991-08-26 2024-10-11 02:11:47.000 1991-08-26 2024-10-11 02:11:47 +7908 7908 7909 790.8 1581.6000000000001 7908 1991-08-27 2024-10-11 02:11:48.000 1991-08-27 2024-10-11 02:11:48 +7909 7909 7910 790.9 1581.8000000000002 7909 1991-08-28 2024-10-11 02:11:49.000 1991-08-28 2024-10-11 02:11:49 +7910 7910 7911 791 1582 7910 1991-08-29 2024-10-11 02:11:50.000 1991-08-29 2024-10-11 02:11:50 +7911 7911 7912 791.1 1582.2 7911 1991-08-30 2024-10-11 02:11:51.000 1991-08-30 2024-10-11 02:11:51 +7912 7912 7913 791.2 1582.4 7912 1991-08-31 2024-10-11 02:11:52.000 1991-08-31 2024-10-11 02:11:52 +7913 7913 7914 791.3 1582.6000000000001 7913 1991-09-01 2024-10-11 02:11:53.000 1991-09-01 2024-10-11 02:11:53 +7914 7914 7915 791.4 1582.8000000000002 7914 1991-09-02 2024-10-11 02:11:54.000 1991-09-02 2024-10-11 02:11:54 +7915 7915 7916 791.5 1583 7915 1991-09-03 2024-10-11 02:11:55.000 1991-09-03 2024-10-11 02:11:55 +7916 7916 7917 791.6 1583.2 7916 1991-09-04 2024-10-11 02:11:56.000 1991-09-04 2024-10-11 02:11:56 +7917 7917 7918 791.7 1583.4 7917 1991-09-05 2024-10-11 02:11:57.000 1991-09-05 2024-10-11 02:11:57 +7918 7918 7919 791.8 1583.6000000000001 7918 1991-09-06 2024-10-11 02:11:58.000 1991-09-06 2024-10-11 02:11:58 +7919 7919 7920 791.9 1583.8000000000002 7919 1991-09-07 2024-10-11 02:11:59.000 1991-09-07 2024-10-11 02:11:59 +7920 7920 7921 792 1584 7920 1991-09-08 2024-10-11 02:12:00.000 1991-09-08 2024-10-11 02:12:00 +7921 7921 7922 792.1 1584.2 7921 1991-09-09 2024-10-11 02:12:01.000 1991-09-09 2024-10-11 02:12:01 +7922 7922 7923 792.2 1584.4 7922 1991-09-10 2024-10-11 02:12:02.000 1991-09-10 2024-10-11 02:12:02 +7923 7923 7924 792.3 1584.6000000000001 7923 1991-09-11 2024-10-11 02:12:03.000 1991-09-11 2024-10-11 02:12:03 +7924 7924 7925 792.4 1584.8000000000002 7924 1991-09-12 2024-10-11 02:12:04.000 1991-09-12 2024-10-11 02:12:04 +7925 7925 7926 792.5 1585 7925 1991-09-13 2024-10-11 02:12:05.000 1991-09-13 2024-10-11 02:12:05 +7926 7926 7927 792.6 1585.2 7926 1991-09-14 2024-10-11 02:12:06.000 1991-09-14 2024-10-11 02:12:06 +7927 7927 7928 792.7 1585.4 7927 1991-09-15 2024-10-11 02:12:07.000 1991-09-15 2024-10-11 02:12:07 +7928 7928 7929 792.8 1585.6000000000001 7928 1991-09-16 2024-10-11 02:12:08.000 1991-09-16 2024-10-11 02:12:08 +7929 7929 7930 792.9 1585.8000000000002 7929 1991-09-17 2024-10-11 02:12:09.000 1991-09-17 2024-10-11 02:12:09 +7930 7930 7931 793 1586 7930 1991-09-18 2024-10-11 02:12:10.000 1991-09-18 2024-10-11 02:12:10 +7931 7931 7932 793.1 1586.2 7931 1991-09-19 2024-10-11 02:12:11.000 1991-09-19 2024-10-11 02:12:11 +7932 7932 7933 793.2 1586.4 7932 1991-09-20 2024-10-11 02:12:12.000 1991-09-20 2024-10-11 02:12:12 +7933 7933 7934 793.3 1586.6000000000001 7933 1991-09-21 2024-10-11 02:12:13.000 1991-09-21 2024-10-11 02:12:13 +7934 7934 7935 793.4 1586.8000000000002 7934 1991-09-22 2024-10-11 02:12:14.000 1991-09-22 2024-10-11 02:12:14 +7935 7935 7936 793.5 1587 7935 1991-09-23 2024-10-11 02:12:15.000 1991-09-23 2024-10-11 02:12:15 +7936 7936 7937 793.6 1587.2 7936 1991-09-24 2024-10-11 02:12:16.000 1991-09-24 2024-10-11 02:12:16 +7937 7937 7938 793.7 1587.4 7937 1991-09-25 2024-10-11 02:12:17.000 1991-09-25 2024-10-11 02:12:17 +7938 7938 7939 793.8 1587.6000000000001 7938 1991-09-26 2024-10-11 02:12:18.000 1991-09-26 2024-10-11 02:12:18 +7939 7939 7940 793.9 1587.8000000000002 7939 1991-09-27 2024-10-11 02:12:19.000 1991-09-27 2024-10-11 02:12:19 +7940 7940 7941 794 1588 7940 1991-09-28 2024-10-11 02:12:20.000 1991-09-28 2024-10-11 02:12:20 +7941 7941 7942 794.1 1588.2 7941 1991-09-29 2024-10-11 02:12:21.000 1991-09-29 2024-10-11 02:12:21 +7942 7942 7943 794.2 1588.4 7942 1991-09-30 2024-10-11 02:12:22.000 1991-09-30 2024-10-11 02:12:22 +7943 7943 7944 794.3 1588.6000000000001 7943 1991-10-01 2024-10-11 02:12:23.000 1991-10-01 2024-10-11 02:12:23 +7944 7944 7945 794.4 1588.8000000000002 7944 1991-10-02 2024-10-11 02:12:24.000 1991-10-02 2024-10-11 02:12:24 +7945 7945 7946 794.5 1589 7945 1991-10-03 2024-10-11 02:12:25.000 1991-10-03 2024-10-11 02:12:25 +7946 7946 7947 794.6 1589.2 7946 1991-10-04 2024-10-11 02:12:26.000 1991-10-04 2024-10-11 02:12:26 +7947 7947 7948 794.7 1589.4 7947 1991-10-05 2024-10-11 02:12:27.000 1991-10-05 2024-10-11 02:12:27 +7948 7948 7949 794.8 1589.6000000000001 7948 1991-10-06 2024-10-11 02:12:28.000 1991-10-06 2024-10-11 02:12:28 +7949 7949 7950 794.9 1589.8000000000002 7949 1991-10-07 2024-10-11 02:12:29.000 1991-10-07 2024-10-11 02:12:29 +7950 7950 7951 795 1590 7950 1991-10-08 2024-10-11 02:12:30.000 1991-10-08 2024-10-11 02:12:30 +7951 7951 7952 795.1 1590.2 7951 1991-10-09 2024-10-11 02:12:31.000 1991-10-09 2024-10-11 02:12:31 +7952 7952 7953 795.2 1590.4 7952 1991-10-10 2024-10-11 02:12:32.000 1991-10-10 2024-10-11 02:12:32 +7953 7953 7954 795.3 1590.6000000000001 7953 1991-10-11 2024-10-11 02:12:33.000 1991-10-11 2024-10-11 02:12:33 +7954 7954 7955 795.4 1590.8000000000002 7954 1991-10-12 2024-10-11 02:12:34.000 1991-10-12 2024-10-11 02:12:34 +7955 7955 7956 795.5 1591 7955 1991-10-13 2024-10-11 02:12:35.000 1991-10-13 2024-10-11 02:12:35 +7956 7956 7957 795.6 1591.2 7956 1991-10-14 2024-10-11 02:12:36.000 1991-10-14 2024-10-11 02:12:36 +7957 7957 7958 795.7 1591.4 7957 1991-10-15 2024-10-11 02:12:37.000 1991-10-15 2024-10-11 02:12:37 +7958 7958 7959 795.8 1591.6000000000001 7958 1991-10-16 2024-10-11 02:12:38.000 1991-10-16 2024-10-11 02:12:38 +7959 7959 7960 795.9 1591.8000000000002 7959 1991-10-17 2024-10-11 02:12:39.000 1991-10-17 2024-10-11 02:12:39 +7960 7960 7961 796 1592 7960 1991-10-18 2024-10-11 02:12:40.000 1991-10-18 2024-10-11 02:12:40 +7961 7961 7962 796.1 1592.2 7961 1991-10-19 2024-10-11 02:12:41.000 1991-10-19 2024-10-11 02:12:41 +7962 7962 7963 796.2 1592.4 7962 1991-10-20 2024-10-11 02:12:42.000 1991-10-20 2024-10-11 02:12:42 +7963 7963 7964 796.3 1592.6000000000001 7963 1991-10-21 2024-10-11 02:12:43.000 1991-10-21 2024-10-11 02:12:43 +7964 7964 7965 796.4 1592.8000000000002 7964 1991-10-22 2024-10-11 02:12:44.000 1991-10-22 2024-10-11 02:12:44 +7965 7965 7966 796.5 1593 7965 1991-10-23 2024-10-11 02:12:45.000 1991-10-23 2024-10-11 02:12:45 +7966 7966 7967 796.6 1593.2 7966 1991-10-24 2024-10-11 02:12:46.000 1991-10-24 2024-10-11 02:12:46 +7967 7967 7968 796.7 1593.4 7967 1991-10-25 2024-10-11 02:12:47.000 1991-10-25 2024-10-11 02:12:47 +7968 7968 7969 796.8 1593.6000000000001 7968 1991-10-26 2024-10-11 02:12:48.000 1991-10-26 2024-10-11 02:12:48 +7969 7969 7970 796.9 1593.8000000000002 7969 1991-10-27 2024-10-11 02:12:49.000 1991-10-27 2024-10-11 02:12:49 +7970 7970 7971 797 1594 7970 1991-10-28 2024-10-11 02:12:50.000 1991-10-28 2024-10-11 02:12:50 +7971 7971 7972 797.1 1594.2 7971 1991-10-29 2024-10-11 02:12:51.000 1991-10-29 2024-10-11 02:12:51 +7972 7972 7973 797.2 1594.4 7972 1991-10-30 2024-10-11 02:12:52.000 1991-10-30 2024-10-11 02:12:52 +7973 7973 7974 797.3 1594.6000000000001 7973 1991-10-31 2024-10-11 02:12:53.000 1991-10-31 2024-10-11 02:12:53 +7974 7974 7975 797.4 1594.8000000000002 7974 1991-11-01 2024-10-11 02:12:54.000 1991-11-01 2024-10-11 02:12:54 +7975 7975 7976 797.5 1595 7975 1991-11-02 2024-10-11 02:12:55.000 1991-11-02 2024-10-11 02:12:55 +7976 7976 7977 797.6 1595.2 7976 1991-11-03 2024-10-11 02:12:56.000 1991-11-03 2024-10-11 02:12:56 +7977 7977 7978 797.7 1595.4 7977 1991-11-04 2024-10-11 02:12:57.000 1991-11-04 2024-10-11 02:12:57 +7978 7978 7979 797.8 1595.6000000000001 7978 1991-11-05 2024-10-11 02:12:58.000 1991-11-05 2024-10-11 02:12:58 +7979 7979 7980 797.9 1595.8000000000002 7979 1991-11-06 2024-10-11 02:12:59.000 1991-11-06 2024-10-11 02:12:59 +7980 7980 7981 798 1596 7980 1991-11-07 2024-10-11 02:13:00.000 1991-11-07 2024-10-11 02:13:00 +7981 7981 7982 798.1 1596.2 7981 1991-11-08 2024-10-11 02:13:01.000 1991-11-08 2024-10-11 02:13:01 +7982 7982 7983 798.2 1596.4 7982 1991-11-09 2024-10-11 02:13:02.000 1991-11-09 2024-10-11 02:13:02 +7983 7983 7984 798.3 1596.6000000000001 7983 1991-11-10 2024-10-11 02:13:03.000 1991-11-10 2024-10-11 02:13:03 +7984 7984 7985 798.4 1596.8000000000002 7984 1991-11-11 2024-10-11 02:13:04.000 1991-11-11 2024-10-11 02:13:04 +7985 7985 7986 798.5 1597 7985 1991-11-12 2024-10-11 02:13:05.000 1991-11-12 2024-10-11 02:13:05 +7986 7986 7987 798.6 1597.2 7986 1991-11-13 2024-10-11 02:13:06.000 1991-11-13 2024-10-11 02:13:06 +7987 7987 7988 798.7 1597.4 7987 1991-11-14 2024-10-11 02:13:07.000 1991-11-14 2024-10-11 02:13:07 +7988 7988 7989 798.8 1597.6000000000001 7988 1991-11-15 2024-10-11 02:13:08.000 1991-11-15 2024-10-11 02:13:08 +7989 7989 7990 798.9 1597.8000000000002 7989 1991-11-16 2024-10-11 02:13:09.000 1991-11-16 2024-10-11 02:13:09 +7990 7990 7991 799 1598 7990 1991-11-17 2024-10-11 02:13:10.000 1991-11-17 2024-10-11 02:13:10 +7991 7991 7992 799.1 1598.2 7991 1991-11-18 2024-10-11 02:13:11.000 1991-11-18 2024-10-11 02:13:11 +7992 7992 7993 799.2 1598.4 7992 1991-11-19 2024-10-11 02:13:12.000 1991-11-19 2024-10-11 02:13:12 +7993 7993 7994 799.3 1598.6000000000001 7993 1991-11-20 2024-10-11 02:13:13.000 1991-11-20 2024-10-11 02:13:13 +7994 7994 7995 799.4 1598.8000000000002 7994 1991-11-21 2024-10-11 02:13:14.000 1991-11-21 2024-10-11 02:13:14 +7995 7995 7996 799.5 1599 7995 1991-11-22 2024-10-11 02:13:15.000 1991-11-22 2024-10-11 02:13:15 +7996 7996 7997 799.6 1599.2 7996 1991-11-23 2024-10-11 02:13:16.000 1991-11-23 2024-10-11 02:13:16 +7997 7997 7998 799.7 1599.4 7997 1991-11-24 2024-10-11 02:13:17.000 1991-11-24 2024-10-11 02:13:17 +7998 7998 7999 799.8 1599.6000000000001 7998 1991-11-25 2024-10-11 02:13:18.000 1991-11-25 2024-10-11 02:13:18 +7999 7999 8000 799.9 1599.8000000000002 7999 1991-11-26 2024-10-11 02:13:19.000 1991-11-26 2024-10-11 02:13:19 +8000 8000 8001 800 1600 8000 1991-11-27 2024-10-11 02:13:20.000 1991-11-27 2024-10-11 02:13:20 +8001 8001 8002 800.1 1600.2 8001 1991-11-28 2024-10-11 02:13:21.000 1991-11-28 2024-10-11 02:13:21 +8002 8002 8003 800.2 1600.4 8002 1991-11-29 2024-10-11 02:13:22.000 1991-11-29 2024-10-11 02:13:22 +8003 8003 8004 800.3 1600.6000000000001 8003 1991-11-30 2024-10-11 02:13:23.000 1991-11-30 2024-10-11 02:13:23 +8004 8004 8005 800.4 1600.8000000000002 8004 1991-12-01 2024-10-11 02:13:24.000 1991-12-01 2024-10-11 02:13:24 +8005 8005 8006 800.5 1601 8005 1991-12-02 2024-10-11 02:13:25.000 1991-12-02 2024-10-11 02:13:25 +8006 8006 8007 800.6 1601.2 8006 1991-12-03 2024-10-11 02:13:26.000 1991-12-03 2024-10-11 02:13:26 +8007 8007 8008 800.7 1601.4 8007 1991-12-04 2024-10-11 02:13:27.000 1991-12-04 2024-10-11 02:13:27 +8008 8008 8009 800.8 1601.6000000000001 8008 1991-12-05 2024-10-11 02:13:28.000 1991-12-05 2024-10-11 02:13:28 +8009 8009 8010 800.9 1601.8000000000002 8009 1991-12-06 2024-10-11 02:13:29.000 1991-12-06 2024-10-11 02:13:29 +8010 8010 8011 801 1602 8010 1991-12-07 2024-10-11 02:13:30.000 1991-12-07 2024-10-11 02:13:30 +8011 8011 8012 801.1 1602.2 8011 1991-12-08 2024-10-11 02:13:31.000 1991-12-08 2024-10-11 02:13:31 +8012 8012 8013 801.2 1602.4 8012 1991-12-09 2024-10-11 02:13:32.000 1991-12-09 2024-10-11 02:13:32 +8013 8013 8014 801.3 1602.6000000000001 8013 1991-12-10 2024-10-11 02:13:33.000 1991-12-10 2024-10-11 02:13:33 +8014 8014 8015 801.4 1602.8000000000002 8014 1991-12-11 2024-10-11 02:13:34.000 1991-12-11 2024-10-11 02:13:34 +8015 8015 8016 801.5 1603 8015 1991-12-12 2024-10-11 02:13:35.000 1991-12-12 2024-10-11 02:13:35 +8016 8016 8017 801.6 1603.2 8016 1991-12-13 2024-10-11 02:13:36.000 1991-12-13 2024-10-11 02:13:36 +8017 8017 8018 801.7 1603.4 8017 1991-12-14 2024-10-11 02:13:37.000 1991-12-14 2024-10-11 02:13:37 +8018 8018 8019 801.8 1603.6000000000001 8018 1991-12-15 2024-10-11 02:13:38.000 1991-12-15 2024-10-11 02:13:38 +8019 8019 8020 801.9 1603.8000000000002 8019 1991-12-16 2024-10-11 02:13:39.000 1991-12-16 2024-10-11 02:13:39 +8020 8020 8021 802 1604 8020 1991-12-17 2024-10-11 02:13:40.000 1991-12-17 2024-10-11 02:13:40 +8021 8021 8022 802.1 1604.2 8021 1991-12-18 2024-10-11 02:13:41.000 1991-12-18 2024-10-11 02:13:41 +8022 8022 8023 802.2 1604.4 8022 1991-12-19 2024-10-11 02:13:42.000 1991-12-19 2024-10-11 02:13:42 +8023 8023 8024 802.3 1604.6000000000001 8023 1991-12-20 2024-10-11 02:13:43.000 1991-12-20 2024-10-11 02:13:43 +8024 8024 8025 802.4 1604.8000000000002 8024 1991-12-21 2024-10-11 02:13:44.000 1991-12-21 2024-10-11 02:13:44 +8025 8025 8026 802.5 1605 8025 1991-12-22 2024-10-11 02:13:45.000 1991-12-22 2024-10-11 02:13:45 +8026 8026 8027 802.6 1605.2 8026 1991-12-23 2024-10-11 02:13:46.000 1991-12-23 2024-10-11 02:13:46 +8027 8027 8028 802.7 1605.4 8027 1991-12-24 2024-10-11 02:13:47.000 1991-12-24 2024-10-11 02:13:47 +8028 8028 8029 802.8 1605.6000000000001 8028 1991-12-25 2024-10-11 02:13:48.000 1991-12-25 2024-10-11 02:13:48 +8029 8029 8030 802.9 1605.8000000000002 8029 1991-12-26 2024-10-11 02:13:49.000 1991-12-26 2024-10-11 02:13:49 +8030 8030 8031 803 1606 8030 1991-12-27 2024-10-11 02:13:50.000 1991-12-27 2024-10-11 02:13:50 +8031 8031 8032 803.1 1606.2 8031 1991-12-28 2024-10-11 02:13:51.000 1991-12-28 2024-10-11 02:13:51 +8032 8032 8033 803.2 1606.4 8032 1991-12-29 2024-10-11 02:13:52.000 1991-12-29 2024-10-11 02:13:52 +8033 8033 8034 803.3 1606.6000000000001 8033 1991-12-30 2024-10-11 02:13:53.000 1991-12-30 2024-10-11 02:13:53 +8034 8034 8035 803.4 1606.8000000000002 8034 1991-12-31 2024-10-11 02:13:54.000 1991-12-31 2024-10-11 02:13:54 +8035 8035 8036 803.5 1607 8035 1992-01-01 2024-10-11 02:13:55.000 1992-01-01 2024-10-11 02:13:55 +8036 8036 8037 803.6 1607.2 8036 1992-01-02 2024-10-11 02:13:56.000 1992-01-02 2024-10-11 02:13:56 +8037 8037 8038 803.7 1607.4 8037 1992-01-03 2024-10-11 02:13:57.000 1992-01-03 2024-10-11 02:13:57 +8038 8038 8039 803.8 1607.6000000000001 8038 1992-01-04 2024-10-11 02:13:58.000 1992-01-04 2024-10-11 02:13:58 +8039 8039 8040 803.9 1607.8000000000002 8039 1992-01-05 2024-10-11 02:13:59.000 1992-01-05 2024-10-11 02:13:59 +8040 8040 8041 804 1608 8040 1992-01-06 2024-10-11 02:14:00.000 1992-01-06 2024-10-11 02:14:00 +8041 8041 8042 804.1 1608.2 8041 1992-01-07 2024-10-11 02:14:01.000 1992-01-07 2024-10-11 02:14:01 +8042 8042 8043 804.2 1608.4 8042 1992-01-08 2024-10-11 02:14:02.000 1992-01-08 2024-10-11 02:14:02 +8043 8043 8044 804.3 1608.6000000000001 8043 1992-01-09 2024-10-11 02:14:03.000 1992-01-09 2024-10-11 02:14:03 +8044 8044 8045 804.4 1608.8000000000002 8044 1992-01-10 2024-10-11 02:14:04.000 1992-01-10 2024-10-11 02:14:04 +8045 8045 8046 804.5 1609 8045 1992-01-11 2024-10-11 02:14:05.000 1992-01-11 2024-10-11 02:14:05 +8046 8046 8047 804.6 1609.2 8046 1992-01-12 2024-10-11 02:14:06.000 1992-01-12 2024-10-11 02:14:06 +8047 8047 8048 804.7 1609.4 8047 1992-01-13 2024-10-11 02:14:07.000 1992-01-13 2024-10-11 02:14:07 +8048 8048 8049 804.8 1609.6000000000001 8048 1992-01-14 2024-10-11 02:14:08.000 1992-01-14 2024-10-11 02:14:08 +8049 8049 8050 804.9 1609.8000000000002 8049 1992-01-15 2024-10-11 02:14:09.000 1992-01-15 2024-10-11 02:14:09 +8050 8050 8051 805 1610 8050 1992-01-16 2024-10-11 02:14:10.000 1992-01-16 2024-10-11 02:14:10 +8051 8051 8052 805.1 1610.2 8051 1992-01-17 2024-10-11 02:14:11.000 1992-01-17 2024-10-11 02:14:11 +8052 8052 8053 805.2 1610.4 8052 1992-01-18 2024-10-11 02:14:12.000 1992-01-18 2024-10-11 02:14:12 +8053 8053 8054 805.3 1610.6000000000001 8053 1992-01-19 2024-10-11 02:14:13.000 1992-01-19 2024-10-11 02:14:13 +8054 8054 8055 805.4 1610.8000000000002 8054 1992-01-20 2024-10-11 02:14:14.000 1992-01-20 2024-10-11 02:14:14 +8055 8055 8056 805.5 1611 8055 1992-01-21 2024-10-11 02:14:15.000 1992-01-21 2024-10-11 02:14:15 +8056 8056 8057 805.6 1611.2 8056 1992-01-22 2024-10-11 02:14:16.000 1992-01-22 2024-10-11 02:14:16 +8057 8057 8058 805.7 1611.4 8057 1992-01-23 2024-10-11 02:14:17.000 1992-01-23 2024-10-11 02:14:17 +8058 8058 8059 805.8 1611.6000000000001 8058 1992-01-24 2024-10-11 02:14:18.000 1992-01-24 2024-10-11 02:14:18 +8059 8059 8060 805.9 1611.8000000000002 8059 1992-01-25 2024-10-11 02:14:19.000 1992-01-25 2024-10-11 02:14:19 +8060 8060 8061 806 1612 8060 1992-01-26 2024-10-11 02:14:20.000 1992-01-26 2024-10-11 02:14:20 +8061 8061 8062 806.1 1612.2 8061 1992-01-27 2024-10-11 02:14:21.000 1992-01-27 2024-10-11 02:14:21 +8062 8062 8063 806.2 1612.4 8062 1992-01-28 2024-10-11 02:14:22.000 1992-01-28 2024-10-11 02:14:22 +8063 8063 8064 806.3 1612.6000000000001 8063 1992-01-29 2024-10-11 02:14:23.000 1992-01-29 2024-10-11 02:14:23 +8064 8064 8065 806.4 1612.8000000000002 8064 1992-01-30 2024-10-11 02:14:24.000 1992-01-30 2024-10-11 02:14:24 +8065 8065 8066 806.5 1613 8065 1992-01-31 2024-10-11 02:14:25.000 1992-01-31 2024-10-11 02:14:25 +8066 8066 8067 806.6 1613.2 8066 1992-02-01 2024-10-11 02:14:26.000 1992-02-01 2024-10-11 02:14:26 +8067 8067 8068 806.7 1613.4 8067 1992-02-02 2024-10-11 02:14:27.000 1992-02-02 2024-10-11 02:14:27 +8068 8068 8069 806.8 1613.6000000000001 8068 1992-02-03 2024-10-11 02:14:28.000 1992-02-03 2024-10-11 02:14:28 +8069 8069 8070 806.9 1613.8000000000002 8069 1992-02-04 2024-10-11 02:14:29.000 1992-02-04 2024-10-11 02:14:29 +8070 8070 8071 807 1614 8070 1992-02-05 2024-10-11 02:14:30.000 1992-02-05 2024-10-11 02:14:30 +8071 8071 8072 807.1 1614.2 8071 1992-02-06 2024-10-11 02:14:31.000 1992-02-06 2024-10-11 02:14:31 +8072 8072 8073 807.2 1614.4 8072 1992-02-07 2024-10-11 02:14:32.000 1992-02-07 2024-10-11 02:14:32 +8073 8073 8074 807.3 1614.6000000000001 8073 1992-02-08 2024-10-11 02:14:33.000 1992-02-08 2024-10-11 02:14:33 +8074 8074 8075 807.4 1614.8000000000002 8074 1992-02-09 2024-10-11 02:14:34.000 1992-02-09 2024-10-11 02:14:34 +8075 8075 8076 807.5 1615 8075 1992-02-10 2024-10-11 02:14:35.000 1992-02-10 2024-10-11 02:14:35 +8076 8076 8077 807.6 1615.2 8076 1992-02-11 2024-10-11 02:14:36.000 1992-02-11 2024-10-11 02:14:36 +8077 8077 8078 807.7 1615.4 8077 1992-02-12 2024-10-11 02:14:37.000 1992-02-12 2024-10-11 02:14:37 +8078 8078 8079 807.8 1615.6000000000001 8078 1992-02-13 2024-10-11 02:14:38.000 1992-02-13 2024-10-11 02:14:38 +8079 8079 8080 807.9 1615.8000000000002 8079 1992-02-14 2024-10-11 02:14:39.000 1992-02-14 2024-10-11 02:14:39 +8080 8080 8081 808 1616 8080 1992-02-15 2024-10-11 02:14:40.000 1992-02-15 2024-10-11 02:14:40 +8081 8081 8082 808.1 1616.2 8081 1992-02-16 2024-10-11 02:14:41.000 1992-02-16 2024-10-11 02:14:41 +8082 8082 8083 808.2 1616.4 8082 1992-02-17 2024-10-11 02:14:42.000 1992-02-17 2024-10-11 02:14:42 +8083 8083 8084 808.3 1616.6000000000001 8083 1992-02-18 2024-10-11 02:14:43.000 1992-02-18 2024-10-11 02:14:43 +8084 8084 8085 808.4 1616.8000000000002 8084 1992-02-19 2024-10-11 02:14:44.000 1992-02-19 2024-10-11 02:14:44 +8085 8085 8086 808.5 1617 8085 1992-02-20 2024-10-11 02:14:45.000 1992-02-20 2024-10-11 02:14:45 +8086 8086 8087 808.6 1617.2 8086 1992-02-21 2024-10-11 02:14:46.000 1992-02-21 2024-10-11 02:14:46 +8087 8087 8088 808.7 1617.4 8087 1992-02-22 2024-10-11 02:14:47.000 1992-02-22 2024-10-11 02:14:47 +8088 8088 8089 808.8 1617.6000000000001 8088 1992-02-23 2024-10-11 02:14:48.000 1992-02-23 2024-10-11 02:14:48 +8089 8089 8090 808.9 1617.8000000000002 8089 1992-02-24 2024-10-11 02:14:49.000 1992-02-24 2024-10-11 02:14:49 +8090 8090 8091 809 1618 8090 1992-02-25 2024-10-11 02:14:50.000 1992-02-25 2024-10-11 02:14:50 +8091 8091 8092 809.1 1618.2 8091 1992-02-26 2024-10-11 02:14:51.000 1992-02-26 2024-10-11 02:14:51 +8092 8092 8093 809.2 1618.4 8092 1992-02-27 2024-10-11 02:14:52.000 1992-02-27 2024-10-11 02:14:52 +8093 8093 8094 809.3 1618.6000000000001 8093 1992-02-28 2024-10-11 02:14:53.000 1992-02-28 2024-10-11 02:14:53 +8094 8094 8095 809.4 1618.8000000000002 8094 1992-02-29 2024-10-11 02:14:54.000 1992-02-29 2024-10-11 02:14:54 +8095 8095 8096 809.5 1619 8095 1992-03-01 2024-10-11 02:14:55.000 1992-03-01 2024-10-11 02:14:55 +8096 8096 8097 809.6 1619.2 8096 1992-03-02 2024-10-11 02:14:56.000 1992-03-02 2024-10-11 02:14:56 +8097 8097 8098 809.7 1619.4 8097 1992-03-03 2024-10-11 02:14:57.000 1992-03-03 2024-10-11 02:14:57 +8098 8098 8099 809.8 1619.6000000000001 8098 1992-03-04 2024-10-11 02:14:58.000 1992-03-04 2024-10-11 02:14:58 +8099 8099 8100 809.9 1619.8000000000002 8099 1992-03-05 2024-10-11 02:14:59.000 1992-03-05 2024-10-11 02:14:59 +8100 8100 8101 810 1620 8100 1992-03-06 2024-10-11 02:15:00.000 1992-03-06 2024-10-11 02:15:00 +8101 8101 8102 810.1 1620.2 8101 1992-03-07 2024-10-11 02:15:01.000 1992-03-07 2024-10-11 02:15:01 +8102 8102 8103 810.2 1620.4 8102 1992-03-08 2024-10-11 02:15:02.000 1992-03-08 2024-10-11 02:15:02 +8103 8103 8104 810.3 1620.6000000000001 8103 1992-03-09 2024-10-11 02:15:03.000 1992-03-09 2024-10-11 02:15:03 +8104 8104 8105 810.4 1620.8000000000002 8104 1992-03-10 2024-10-11 02:15:04.000 1992-03-10 2024-10-11 02:15:04 +8105 8105 8106 810.5 1621 8105 1992-03-11 2024-10-11 02:15:05.000 1992-03-11 2024-10-11 02:15:05 +8106 8106 8107 810.6 1621.2 8106 1992-03-12 2024-10-11 02:15:06.000 1992-03-12 2024-10-11 02:15:06 +8107 8107 8108 810.7 1621.4 8107 1992-03-13 2024-10-11 02:15:07.000 1992-03-13 2024-10-11 02:15:07 +8108 8108 8109 810.8 1621.6000000000001 8108 1992-03-14 2024-10-11 02:15:08.000 1992-03-14 2024-10-11 02:15:08 +8109 8109 8110 810.9 1621.8000000000002 8109 1992-03-15 2024-10-11 02:15:09.000 1992-03-15 2024-10-11 02:15:09 +8110 8110 8111 811 1622 8110 1992-03-16 2024-10-11 02:15:10.000 1992-03-16 2024-10-11 02:15:10 +8111 8111 8112 811.1 1622.2 8111 1992-03-17 2024-10-11 02:15:11.000 1992-03-17 2024-10-11 02:15:11 +8112 8112 8113 811.2 1622.4 8112 1992-03-18 2024-10-11 02:15:12.000 1992-03-18 2024-10-11 02:15:12 +8113 8113 8114 811.3 1622.6000000000001 8113 1992-03-19 2024-10-11 02:15:13.000 1992-03-19 2024-10-11 02:15:13 +8114 8114 8115 811.4 1622.8000000000002 8114 1992-03-20 2024-10-11 02:15:14.000 1992-03-20 2024-10-11 02:15:14 +8115 8115 8116 811.5 1623 8115 1992-03-21 2024-10-11 02:15:15.000 1992-03-21 2024-10-11 02:15:15 +8116 8116 8117 811.6 1623.2 8116 1992-03-22 2024-10-11 02:15:16.000 1992-03-22 2024-10-11 02:15:16 +8117 8117 8118 811.7 1623.4 8117 1992-03-23 2024-10-11 02:15:17.000 1992-03-23 2024-10-11 02:15:17 +8118 8118 8119 811.8 1623.6000000000001 8118 1992-03-24 2024-10-11 02:15:18.000 1992-03-24 2024-10-11 02:15:18 +8119 8119 8120 811.9 1623.8000000000002 8119 1992-03-25 2024-10-11 02:15:19.000 1992-03-25 2024-10-11 02:15:19 +8120 8120 8121 812 1624 8120 1992-03-26 2024-10-11 02:15:20.000 1992-03-26 2024-10-11 02:15:20 +8121 8121 8122 812.1 1624.2 8121 1992-03-27 2024-10-11 02:15:21.000 1992-03-27 2024-10-11 02:15:21 +8122 8122 8123 812.2 1624.4 8122 1992-03-28 2024-10-11 02:15:22.000 1992-03-28 2024-10-11 02:15:22 +8123 8123 8124 812.3 1624.6000000000001 8123 1992-03-29 2024-10-11 02:15:23.000 1992-03-29 2024-10-11 02:15:23 +8124 8124 8125 812.4 1624.8000000000002 8124 1992-03-30 2024-10-11 02:15:24.000 1992-03-30 2024-10-11 02:15:24 +8125 8125 8126 812.5 1625 8125 1992-03-31 2024-10-11 02:15:25.000 1992-03-31 2024-10-11 02:15:25 +8126 8126 8127 812.6 1625.2 8126 1992-04-01 2024-10-11 02:15:26.000 1992-04-01 2024-10-11 02:15:26 +8127 8127 8128 812.7 1625.4 8127 1992-04-02 2024-10-11 02:15:27.000 1992-04-02 2024-10-11 02:15:27 +8128 8128 8129 812.8 1625.6000000000001 8128 1992-04-03 2024-10-11 02:15:28.000 1992-04-03 2024-10-11 02:15:28 +8129 8129 8130 812.9 1625.8000000000002 8129 1992-04-04 2024-10-11 02:15:29.000 1992-04-04 2024-10-11 02:15:29 +8130 8130 8131 813 1626 8130 1992-04-05 2024-10-11 02:15:30.000 1992-04-05 2024-10-11 02:15:30 +8131 8131 8132 813.1 1626.2 8131 1992-04-06 2024-10-11 02:15:31.000 1992-04-06 2024-10-11 02:15:31 +8132 8132 8133 813.2 1626.4 8132 1992-04-07 2024-10-11 02:15:32.000 1992-04-07 2024-10-11 02:15:32 +8133 8133 8134 813.3 1626.6000000000001 8133 1992-04-08 2024-10-11 02:15:33.000 1992-04-08 2024-10-11 02:15:33 +8134 8134 8135 813.4 1626.8000000000002 8134 1992-04-09 2024-10-11 02:15:34.000 1992-04-09 2024-10-11 02:15:34 +8135 8135 8136 813.5 1627 8135 1992-04-10 2024-10-11 02:15:35.000 1992-04-10 2024-10-11 02:15:35 +8136 8136 8137 813.6 1627.2 8136 1992-04-11 2024-10-11 02:15:36.000 1992-04-11 2024-10-11 02:15:36 +8137 8137 8138 813.7 1627.4 8137 1992-04-12 2024-10-11 02:15:37.000 1992-04-12 2024-10-11 02:15:37 +8138 8138 8139 813.8 1627.6000000000001 8138 1992-04-13 2024-10-11 02:15:38.000 1992-04-13 2024-10-11 02:15:38 +8139 8139 8140 813.9 1627.8000000000002 8139 1992-04-14 2024-10-11 02:15:39.000 1992-04-14 2024-10-11 02:15:39 +8140 8140 8141 814 1628 8140 1992-04-15 2024-10-11 02:15:40.000 1992-04-15 2024-10-11 02:15:40 +8141 8141 8142 814.1 1628.2 8141 1992-04-16 2024-10-11 02:15:41.000 1992-04-16 2024-10-11 02:15:41 +8142 8142 8143 814.2 1628.4 8142 1992-04-17 2024-10-11 02:15:42.000 1992-04-17 2024-10-11 02:15:42 +8143 8143 8144 814.3 1628.6000000000001 8143 1992-04-18 2024-10-11 02:15:43.000 1992-04-18 2024-10-11 02:15:43 +8144 8144 8145 814.4 1628.8000000000002 8144 1992-04-19 2024-10-11 02:15:44.000 1992-04-19 2024-10-11 02:15:44 +8145 8145 8146 814.5 1629 8145 1992-04-20 2024-10-11 02:15:45.000 1992-04-20 2024-10-11 02:15:45 +8146 8146 8147 814.6 1629.2 8146 1992-04-21 2024-10-11 02:15:46.000 1992-04-21 2024-10-11 02:15:46 +8147 8147 8148 814.7 1629.4 8147 1992-04-22 2024-10-11 02:15:47.000 1992-04-22 2024-10-11 02:15:47 +8148 8148 8149 814.8 1629.6000000000001 8148 1992-04-23 2024-10-11 02:15:48.000 1992-04-23 2024-10-11 02:15:48 +8149 8149 8150 814.9 1629.8000000000002 8149 1992-04-24 2024-10-11 02:15:49.000 1992-04-24 2024-10-11 02:15:49 +8150 8150 8151 815 1630 8150 1992-04-25 2024-10-11 02:15:50.000 1992-04-25 2024-10-11 02:15:50 +8151 8151 8152 815.1 1630.2 8151 1992-04-26 2024-10-11 02:15:51.000 1992-04-26 2024-10-11 02:15:51 +8152 8152 8153 815.2 1630.4 8152 1992-04-27 2024-10-11 02:15:52.000 1992-04-27 2024-10-11 02:15:52 +8153 8153 8154 815.3 1630.6000000000001 8153 1992-04-28 2024-10-11 02:15:53.000 1992-04-28 2024-10-11 02:15:53 +8154 8154 8155 815.4 1630.8000000000002 8154 1992-04-29 2024-10-11 02:15:54.000 1992-04-29 2024-10-11 02:15:54 +8155 8155 8156 815.5 1631 8155 1992-04-30 2024-10-11 02:15:55.000 1992-04-30 2024-10-11 02:15:55 +8156 8156 8157 815.6 1631.2 8156 1992-05-01 2024-10-11 02:15:56.000 1992-05-01 2024-10-11 02:15:56 +8157 8157 8158 815.7 1631.4 8157 1992-05-02 2024-10-11 02:15:57.000 1992-05-02 2024-10-11 02:15:57 +8158 8158 8159 815.8 1631.6000000000001 8158 1992-05-03 2024-10-11 02:15:58.000 1992-05-03 2024-10-11 02:15:58 +8159 8159 8160 815.9 1631.8000000000002 8159 1992-05-04 2024-10-11 02:15:59.000 1992-05-04 2024-10-11 02:15:59 +8160 8160 8161 816 1632 8160 1992-05-05 2024-10-11 02:16:00.000 1992-05-05 2024-10-11 02:16:00 +8161 8161 8162 816.1 1632.2 8161 1992-05-06 2024-10-11 02:16:01.000 1992-05-06 2024-10-11 02:16:01 +8162 8162 8163 816.2 1632.4 8162 1992-05-07 2024-10-11 02:16:02.000 1992-05-07 2024-10-11 02:16:02 +8163 8163 8164 816.3 1632.6000000000001 8163 1992-05-08 2024-10-11 02:16:03.000 1992-05-08 2024-10-11 02:16:03 +8164 8164 8165 816.4 1632.8000000000002 8164 1992-05-09 2024-10-11 02:16:04.000 1992-05-09 2024-10-11 02:16:04 +8165 8165 8166 816.5 1633 8165 1992-05-10 2024-10-11 02:16:05.000 1992-05-10 2024-10-11 02:16:05 +8166 8166 8167 816.6 1633.2 8166 1992-05-11 2024-10-11 02:16:06.000 1992-05-11 2024-10-11 02:16:06 +8167 8167 8168 816.7 1633.4 8167 1992-05-12 2024-10-11 02:16:07.000 1992-05-12 2024-10-11 02:16:07 +8168 8168 8169 816.8 1633.6000000000001 8168 1992-05-13 2024-10-11 02:16:08.000 1992-05-13 2024-10-11 02:16:08 +8169 8169 8170 816.9 1633.8000000000002 8169 1992-05-14 2024-10-11 02:16:09.000 1992-05-14 2024-10-11 02:16:09 +8170 8170 8171 817 1634 8170 1992-05-15 2024-10-11 02:16:10.000 1992-05-15 2024-10-11 02:16:10 +8171 8171 8172 817.1 1634.2 8171 1992-05-16 2024-10-11 02:16:11.000 1992-05-16 2024-10-11 02:16:11 +8172 8172 8173 817.2 1634.4 8172 1992-05-17 2024-10-11 02:16:12.000 1992-05-17 2024-10-11 02:16:12 +8173 8173 8174 817.3 1634.6000000000001 8173 1992-05-18 2024-10-11 02:16:13.000 1992-05-18 2024-10-11 02:16:13 +8174 8174 8175 817.4 1634.8000000000002 8174 1992-05-19 2024-10-11 02:16:14.000 1992-05-19 2024-10-11 02:16:14 +8175 8175 8176 817.5 1635 8175 1992-05-20 2024-10-11 02:16:15.000 1992-05-20 2024-10-11 02:16:15 +8176 8176 8177 817.6 1635.2 8176 1992-05-21 2024-10-11 02:16:16.000 1992-05-21 2024-10-11 02:16:16 +8177 8177 8178 817.7 1635.4 8177 1992-05-22 2024-10-11 02:16:17.000 1992-05-22 2024-10-11 02:16:17 +8178 8178 8179 817.8 1635.6000000000001 8178 1992-05-23 2024-10-11 02:16:18.000 1992-05-23 2024-10-11 02:16:18 +8179 8179 8180 817.9 1635.8000000000002 8179 1992-05-24 2024-10-11 02:16:19.000 1992-05-24 2024-10-11 02:16:19 +8180 8180 8181 818 1636 8180 1992-05-25 2024-10-11 02:16:20.000 1992-05-25 2024-10-11 02:16:20 +8181 8181 8182 818.1 1636.2 8181 1992-05-26 2024-10-11 02:16:21.000 1992-05-26 2024-10-11 02:16:21 +8182 8182 8183 818.2 1636.4 8182 1992-05-27 2024-10-11 02:16:22.000 1992-05-27 2024-10-11 02:16:22 +8183 8183 8184 818.3 1636.6000000000001 8183 1992-05-28 2024-10-11 02:16:23.000 1992-05-28 2024-10-11 02:16:23 +8184 8184 8185 818.4 1636.8000000000002 8184 1992-05-29 2024-10-11 02:16:24.000 1992-05-29 2024-10-11 02:16:24 +8185 8185 8186 818.5 1637 8185 1992-05-30 2024-10-11 02:16:25.000 1992-05-30 2024-10-11 02:16:25 +8186 8186 8187 818.6 1637.2 8186 1992-05-31 2024-10-11 02:16:26.000 1992-05-31 2024-10-11 02:16:26 +8187 8187 8188 818.7 1637.4 8187 1992-06-01 2024-10-11 02:16:27.000 1992-06-01 2024-10-11 02:16:27 +8188 8188 8189 818.8 1637.6000000000001 8188 1992-06-02 2024-10-11 02:16:28.000 1992-06-02 2024-10-11 02:16:28 +8189 8189 8190 818.9 1637.8000000000002 8189 1992-06-03 2024-10-11 02:16:29.000 1992-06-03 2024-10-11 02:16:29 +8190 8190 8191 819 1638 8190 1992-06-04 2024-10-11 02:16:30.000 1992-06-04 2024-10-11 02:16:30 +8191 8191 8192 819.1 1638.2 8191 1992-06-05 2024-10-11 02:16:31.000 1992-06-05 2024-10-11 02:16:31 +8192 8192 8193 819.2 1638.4 8192 1992-06-06 2024-10-11 02:16:32.000 1992-06-06 2024-10-11 02:16:32 +8193 8193 8194 819.3 1638.6000000000001 8193 1992-06-07 2024-10-11 02:16:33.000 1992-06-07 2024-10-11 02:16:33 +8194 8194 8195 819.4 1638.8000000000002 8194 1992-06-08 2024-10-11 02:16:34.000 1992-06-08 2024-10-11 02:16:34 +8195 8195 8196 819.5 1639 8195 1992-06-09 2024-10-11 02:16:35.000 1992-06-09 2024-10-11 02:16:35 +8196 8196 8197 819.6 1639.2 8196 1992-06-10 2024-10-11 02:16:36.000 1992-06-10 2024-10-11 02:16:36 +8197 8197 8198 819.7 1639.4 8197 1992-06-11 2024-10-11 02:16:37.000 1992-06-11 2024-10-11 02:16:37 +8198 8198 8199 819.8 1639.6000000000001 8198 1992-06-12 2024-10-11 02:16:38.000 1992-06-12 2024-10-11 02:16:38 +8199 8199 8200 819.9 1639.8000000000002 8199 1992-06-13 2024-10-11 02:16:39.000 1992-06-13 2024-10-11 02:16:39 +8200 8200 8201 820 1640 8200 1992-06-14 2024-10-11 02:16:40.000 1992-06-14 2024-10-11 02:16:40 +8201 8201 8202 820.1 1640.2 8201 1992-06-15 2024-10-11 02:16:41.000 1992-06-15 2024-10-11 02:16:41 +8202 8202 8203 820.2 1640.4 8202 1992-06-16 2024-10-11 02:16:42.000 1992-06-16 2024-10-11 02:16:42 +8203 8203 8204 820.3 1640.6000000000001 8203 1992-06-17 2024-10-11 02:16:43.000 1992-06-17 2024-10-11 02:16:43 +8204 8204 8205 820.4 1640.8000000000002 8204 1992-06-18 2024-10-11 02:16:44.000 1992-06-18 2024-10-11 02:16:44 +8205 8205 8206 820.5 1641 8205 1992-06-19 2024-10-11 02:16:45.000 1992-06-19 2024-10-11 02:16:45 +8206 8206 8207 820.6 1641.2 8206 1992-06-20 2024-10-11 02:16:46.000 1992-06-20 2024-10-11 02:16:46 +8207 8207 8208 820.7 1641.4 8207 1992-06-21 2024-10-11 02:16:47.000 1992-06-21 2024-10-11 02:16:47 +8208 8208 8209 820.8 1641.6000000000001 8208 1992-06-22 2024-10-11 02:16:48.000 1992-06-22 2024-10-11 02:16:48 +8209 8209 8210 820.9 1641.8000000000002 8209 1992-06-23 2024-10-11 02:16:49.000 1992-06-23 2024-10-11 02:16:49 +8210 8210 8211 821 1642 8210 1992-06-24 2024-10-11 02:16:50.000 1992-06-24 2024-10-11 02:16:50 +8211 8211 8212 821.1 1642.2 8211 1992-06-25 2024-10-11 02:16:51.000 1992-06-25 2024-10-11 02:16:51 +8212 8212 8213 821.2 1642.4 8212 1992-06-26 2024-10-11 02:16:52.000 1992-06-26 2024-10-11 02:16:52 +8213 8213 8214 821.3 1642.6000000000001 8213 1992-06-27 2024-10-11 02:16:53.000 1992-06-27 2024-10-11 02:16:53 +8214 8214 8215 821.4 1642.8000000000002 8214 1992-06-28 2024-10-11 02:16:54.000 1992-06-28 2024-10-11 02:16:54 +8215 8215 8216 821.5 1643 8215 1992-06-29 2024-10-11 02:16:55.000 1992-06-29 2024-10-11 02:16:55 +8216 8216 8217 821.6 1643.2 8216 1992-06-30 2024-10-11 02:16:56.000 1992-06-30 2024-10-11 02:16:56 +8217 8217 8218 821.7 1643.4 8217 1992-07-01 2024-10-11 02:16:57.000 1992-07-01 2024-10-11 02:16:57 +8218 8218 8219 821.8 1643.6000000000001 8218 1992-07-02 2024-10-11 02:16:58.000 1992-07-02 2024-10-11 02:16:58 +8219 8219 8220 821.9 1643.8000000000002 8219 1992-07-03 2024-10-11 02:16:59.000 1992-07-03 2024-10-11 02:16:59 +8220 8220 8221 822 1644 8220 1992-07-04 2024-10-11 02:17:00.000 1992-07-04 2024-10-11 02:17:00 +8221 8221 8222 822.1 1644.2 8221 1992-07-05 2024-10-11 02:17:01.000 1992-07-05 2024-10-11 02:17:01 +8222 8222 8223 822.2 1644.4 8222 1992-07-06 2024-10-11 02:17:02.000 1992-07-06 2024-10-11 02:17:02 +8223 8223 8224 822.3 1644.6000000000001 8223 1992-07-07 2024-10-11 02:17:03.000 1992-07-07 2024-10-11 02:17:03 +8224 8224 8225 822.4 1644.8000000000002 8224 1992-07-08 2024-10-11 02:17:04.000 1992-07-08 2024-10-11 02:17:04 +8225 8225 8226 822.5 1645 8225 1992-07-09 2024-10-11 02:17:05.000 1992-07-09 2024-10-11 02:17:05 +8226 8226 8227 822.6 1645.2 8226 1992-07-10 2024-10-11 02:17:06.000 1992-07-10 2024-10-11 02:17:06 +8227 8227 8228 822.7 1645.4 8227 1992-07-11 2024-10-11 02:17:07.000 1992-07-11 2024-10-11 02:17:07 +8228 8228 8229 822.8 1645.6000000000001 8228 1992-07-12 2024-10-11 02:17:08.000 1992-07-12 2024-10-11 02:17:08 +8229 8229 8230 822.9 1645.8000000000002 8229 1992-07-13 2024-10-11 02:17:09.000 1992-07-13 2024-10-11 02:17:09 +8230 8230 8231 823 1646 8230 1992-07-14 2024-10-11 02:17:10.000 1992-07-14 2024-10-11 02:17:10 +8231 8231 8232 823.1 1646.2 8231 1992-07-15 2024-10-11 02:17:11.000 1992-07-15 2024-10-11 02:17:11 +8232 8232 8233 823.2 1646.4 8232 1992-07-16 2024-10-11 02:17:12.000 1992-07-16 2024-10-11 02:17:12 +8233 8233 8234 823.3 1646.6000000000001 8233 1992-07-17 2024-10-11 02:17:13.000 1992-07-17 2024-10-11 02:17:13 +8234 8234 8235 823.4 1646.8000000000002 8234 1992-07-18 2024-10-11 02:17:14.000 1992-07-18 2024-10-11 02:17:14 +8235 8235 8236 823.5 1647 8235 1992-07-19 2024-10-11 02:17:15.000 1992-07-19 2024-10-11 02:17:15 +8236 8236 8237 823.6 1647.2 8236 1992-07-20 2024-10-11 02:17:16.000 1992-07-20 2024-10-11 02:17:16 +8237 8237 8238 823.7 1647.4 8237 1992-07-21 2024-10-11 02:17:17.000 1992-07-21 2024-10-11 02:17:17 +8238 8238 8239 823.8 1647.6000000000001 8238 1992-07-22 2024-10-11 02:17:18.000 1992-07-22 2024-10-11 02:17:18 +8239 8239 8240 823.9 1647.8000000000002 8239 1992-07-23 2024-10-11 02:17:19.000 1992-07-23 2024-10-11 02:17:19 +8240 8240 8241 824 1648 8240 1992-07-24 2024-10-11 02:17:20.000 1992-07-24 2024-10-11 02:17:20 +8241 8241 8242 824.1 1648.2 8241 1992-07-25 2024-10-11 02:17:21.000 1992-07-25 2024-10-11 02:17:21 +8242 8242 8243 824.2 1648.4 8242 1992-07-26 2024-10-11 02:17:22.000 1992-07-26 2024-10-11 02:17:22 +8243 8243 8244 824.3 1648.6000000000001 8243 1992-07-27 2024-10-11 02:17:23.000 1992-07-27 2024-10-11 02:17:23 +8244 8244 8245 824.4 1648.8000000000002 8244 1992-07-28 2024-10-11 02:17:24.000 1992-07-28 2024-10-11 02:17:24 +8245 8245 8246 824.5 1649 8245 1992-07-29 2024-10-11 02:17:25.000 1992-07-29 2024-10-11 02:17:25 +8246 8246 8247 824.6 1649.2 8246 1992-07-30 2024-10-11 02:17:26.000 1992-07-30 2024-10-11 02:17:26 +8247 8247 8248 824.7 1649.4 8247 1992-07-31 2024-10-11 02:17:27.000 1992-07-31 2024-10-11 02:17:27 +8248 8248 8249 824.8 1649.6000000000001 8248 1992-08-01 2024-10-11 02:17:28.000 1992-08-01 2024-10-11 02:17:28 +8249 8249 8250 824.9 1649.8000000000002 8249 1992-08-02 2024-10-11 02:17:29.000 1992-08-02 2024-10-11 02:17:29 +8250 8250 8251 825 1650 8250 1992-08-03 2024-10-11 02:17:30.000 1992-08-03 2024-10-11 02:17:30 +8251 8251 8252 825.1 1650.2 8251 1992-08-04 2024-10-11 02:17:31.000 1992-08-04 2024-10-11 02:17:31 +8252 8252 8253 825.2 1650.4 8252 1992-08-05 2024-10-11 02:17:32.000 1992-08-05 2024-10-11 02:17:32 +8253 8253 8254 825.3 1650.6000000000001 8253 1992-08-06 2024-10-11 02:17:33.000 1992-08-06 2024-10-11 02:17:33 +8254 8254 8255 825.4 1650.8000000000002 8254 1992-08-07 2024-10-11 02:17:34.000 1992-08-07 2024-10-11 02:17:34 +8255 8255 8256 825.5 1651 8255 1992-08-08 2024-10-11 02:17:35.000 1992-08-08 2024-10-11 02:17:35 +8256 8256 8257 825.6 1651.2 8256 1992-08-09 2024-10-11 02:17:36.000 1992-08-09 2024-10-11 02:17:36 +8257 8257 8258 825.7 1651.4 8257 1992-08-10 2024-10-11 02:17:37.000 1992-08-10 2024-10-11 02:17:37 +8258 8258 8259 825.8 1651.6000000000001 8258 1992-08-11 2024-10-11 02:17:38.000 1992-08-11 2024-10-11 02:17:38 +8259 8259 8260 825.9 1651.8000000000002 8259 1992-08-12 2024-10-11 02:17:39.000 1992-08-12 2024-10-11 02:17:39 +8260 8260 8261 826 1652 8260 1992-08-13 2024-10-11 02:17:40.000 1992-08-13 2024-10-11 02:17:40 +8261 8261 8262 826.1 1652.2 8261 1992-08-14 2024-10-11 02:17:41.000 1992-08-14 2024-10-11 02:17:41 +8262 8262 8263 826.2 1652.4 8262 1992-08-15 2024-10-11 02:17:42.000 1992-08-15 2024-10-11 02:17:42 +8263 8263 8264 826.3 1652.6000000000001 8263 1992-08-16 2024-10-11 02:17:43.000 1992-08-16 2024-10-11 02:17:43 +8264 8264 8265 826.4 1652.8000000000002 8264 1992-08-17 2024-10-11 02:17:44.000 1992-08-17 2024-10-11 02:17:44 +8265 8265 8266 826.5 1653 8265 1992-08-18 2024-10-11 02:17:45.000 1992-08-18 2024-10-11 02:17:45 +8266 8266 8267 826.6 1653.2 8266 1992-08-19 2024-10-11 02:17:46.000 1992-08-19 2024-10-11 02:17:46 +8267 8267 8268 826.7 1653.4 8267 1992-08-20 2024-10-11 02:17:47.000 1992-08-20 2024-10-11 02:17:47 +8268 8268 8269 826.8 1653.6000000000001 8268 1992-08-21 2024-10-11 02:17:48.000 1992-08-21 2024-10-11 02:17:48 +8269 8269 8270 826.9 1653.8000000000002 8269 1992-08-22 2024-10-11 02:17:49.000 1992-08-22 2024-10-11 02:17:49 +8270 8270 8271 827 1654 8270 1992-08-23 2024-10-11 02:17:50.000 1992-08-23 2024-10-11 02:17:50 +8271 8271 8272 827.1 1654.2 8271 1992-08-24 2024-10-11 02:17:51.000 1992-08-24 2024-10-11 02:17:51 +8272 8272 8273 827.2 1654.4 8272 1992-08-25 2024-10-11 02:17:52.000 1992-08-25 2024-10-11 02:17:52 +8273 8273 8274 827.3 1654.6000000000001 8273 1992-08-26 2024-10-11 02:17:53.000 1992-08-26 2024-10-11 02:17:53 +8274 8274 8275 827.4 1654.8000000000002 8274 1992-08-27 2024-10-11 02:17:54.000 1992-08-27 2024-10-11 02:17:54 +8275 8275 8276 827.5 1655 8275 1992-08-28 2024-10-11 02:17:55.000 1992-08-28 2024-10-11 02:17:55 +8276 8276 8277 827.6 1655.2 8276 1992-08-29 2024-10-11 02:17:56.000 1992-08-29 2024-10-11 02:17:56 +8277 8277 8278 827.7 1655.4 8277 1992-08-30 2024-10-11 02:17:57.000 1992-08-30 2024-10-11 02:17:57 +8278 8278 8279 827.8 1655.6000000000001 8278 1992-08-31 2024-10-11 02:17:58.000 1992-08-31 2024-10-11 02:17:58 +8279 8279 8280 827.9 1655.8000000000002 8279 1992-09-01 2024-10-11 02:17:59.000 1992-09-01 2024-10-11 02:17:59 +8280 8280 8281 828 1656 8280 1992-09-02 2024-10-11 02:18:00.000 1992-09-02 2024-10-11 02:18:00 +8281 8281 8282 828.1 1656.2 8281 1992-09-03 2024-10-11 02:18:01.000 1992-09-03 2024-10-11 02:18:01 +8282 8282 8283 828.2 1656.4 8282 1992-09-04 2024-10-11 02:18:02.000 1992-09-04 2024-10-11 02:18:02 +8283 8283 8284 828.3 1656.6000000000001 8283 1992-09-05 2024-10-11 02:18:03.000 1992-09-05 2024-10-11 02:18:03 +8284 8284 8285 828.4 1656.8000000000002 8284 1992-09-06 2024-10-11 02:18:04.000 1992-09-06 2024-10-11 02:18:04 +8285 8285 8286 828.5 1657 8285 1992-09-07 2024-10-11 02:18:05.000 1992-09-07 2024-10-11 02:18:05 +8286 8286 8287 828.6 1657.2 8286 1992-09-08 2024-10-11 02:18:06.000 1992-09-08 2024-10-11 02:18:06 +8287 8287 8288 828.7 1657.4 8287 1992-09-09 2024-10-11 02:18:07.000 1992-09-09 2024-10-11 02:18:07 +8288 8288 8289 828.8 1657.6000000000001 8288 1992-09-10 2024-10-11 02:18:08.000 1992-09-10 2024-10-11 02:18:08 +8289 8289 8290 828.9 1657.8000000000002 8289 1992-09-11 2024-10-11 02:18:09.000 1992-09-11 2024-10-11 02:18:09 +8290 8290 8291 829 1658 8290 1992-09-12 2024-10-11 02:18:10.000 1992-09-12 2024-10-11 02:18:10 +8291 8291 8292 829.1 1658.2 8291 1992-09-13 2024-10-11 02:18:11.000 1992-09-13 2024-10-11 02:18:11 +8292 8292 8293 829.2 1658.4 8292 1992-09-14 2024-10-11 02:18:12.000 1992-09-14 2024-10-11 02:18:12 +8293 8293 8294 829.3 1658.6000000000001 8293 1992-09-15 2024-10-11 02:18:13.000 1992-09-15 2024-10-11 02:18:13 +8294 8294 8295 829.4 1658.8000000000002 8294 1992-09-16 2024-10-11 02:18:14.000 1992-09-16 2024-10-11 02:18:14 +8295 8295 8296 829.5 1659 8295 1992-09-17 2024-10-11 02:18:15.000 1992-09-17 2024-10-11 02:18:15 +8296 8296 8297 829.6 1659.2 8296 1992-09-18 2024-10-11 02:18:16.000 1992-09-18 2024-10-11 02:18:16 +8297 8297 8298 829.7 1659.4 8297 1992-09-19 2024-10-11 02:18:17.000 1992-09-19 2024-10-11 02:18:17 +8298 8298 8299 829.8 1659.6000000000001 8298 1992-09-20 2024-10-11 02:18:18.000 1992-09-20 2024-10-11 02:18:18 +8299 8299 8300 829.9 1659.8000000000002 8299 1992-09-21 2024-10-11 02:18:19.000 1992-09-21 2024-10-11 02:18:19 +8300 8300 8301 830 1660 8300 1992-09-22 2024-10-11 02:18:20.000 1992-09-22 2024-10-11 02:18:20 +8301 8301 8302 830.1 1660.2 8301 1992-09-23 2024-10-11 02:18:21.000 1992-09-23 2024-10-11 02:18:21 +8302 8302 8303 830.2 1660.4 8302 1992-09-24 2024-10-11 02:18:22.000 1992-09-24 2024-10-11 02:18:22 +8303 8303 8304 830.3 1660.6000000000001 8303 1992-09-25 2024-10-11 02:18:23.000 1992-09-25 2024-10-11 02:18:23 +8304 8304 8305 830.4 1660.8000000000002 8304 1992-09-26 2024-10-11 02:18:24.000 1992-09-26 2024-10-11 02:18:24 +8305 8305 8306 830.5 1661 8305 1992-09-27 2024-10-11 02:18:25.000 1992-09-27 2024-10-11 02:18:25 +8306 8306 8307 830.6 1661.2 8306 1992-09-28 2024-10-11 02:18:26.000 1992-09-28 2024-10-11 02:18:26 +8307 8307 8308 830.7 1661.4 8307 1992-09-29 2024-10-11 02:18:27.000 1992-09-29 2024-10-11 02:18:27 +8308 8308 8309 830.8 1661.6000000000001 8308 1992-09-30 2024-10-11 02:18:28.000 1992-09-30 2024-10-11 02:18:28 +8309 8309 8310 830.9 1661.8000000000002 8309 1992-10-01 2024-10-11 02:18:29.000 1992-10-01 2024-10-11 02:18:29 +8310 8310 8311 831 1662 8310 1992-10-02 2024-10-11 02:18:30.000 1992-10-02 2024-10-11 02:18:30 +8311 8311 8312 831.1 1662.2 8311 1992-10-03 2024-10-11 02:18:31.000 1992-10-03 2024-10-11 02:18:31 +8312 8312 8313 831.2 1662.4 8312 1992-10-04 2024-10-11 02:18:32.000 1992-10-04 2024-10-11 02:18:32 +8313 8313 8314 831.3 1662.6000000000001 8313 1992-10-05 2024-10-11 02:18:33.000 1992-10-05 2024-10-11 02:18:33 +8314 8314 8315 831.4 1662.8000000000002 8314 1992-10-06 2024-10-11 02:18:34.000 1992-10-06 2024-10-11 02:18:34 +8315 8315 8316 831.5 1663 8315 1992-10-07 2024-10-11 02:18:35.000 1992-10-07 2024-10-11 02:18:35 +8316 8316 8317 831.6 1663.2 8316 1992-10-08 2024-10-11 02:18:36.000 1992-10-08 2024-10-11 02:18:36 +8317 8317 8318 831.7 1663.4 8317 1992-10-09 2024-10-11 02:18:37.000 1992-10-09 2024-10-11 02:18:37 +8318 8318 8319 831.8 1663.6000000000001 8318 1992-10-10 2024-10-11 02:18:38.000 1992-10-10 2024-10-11 02:18:38 +8319 8319 8320 831.9 1663.8000000000002 8319 1992-10-11 2024-10-11 02:18:39.000 1992-10-11 2024-10-11 02:18:39 +8320 8320 8321 832 1664 8320 1992-10-12 2024-10-11 02:18:40.000 1992-10-12 2024-10-11 02:18:40 +8321 8321 8322 832.1 1664.2 8321 1992-10-13 2024-10-11 02:18:41.000 1992-10-13 2024-10-11 02:18:41 +8322 8322 8323 832.2 1664.4 8322 1992-10-14 2024-10-11 02:18:42.000 1992-10-14 2024-10-11 02:18:42 +8323 8323 8324 832.3 1664.6000000000001 8323 1992-10-15 2024-10-11 02:18:43.000 1992-10-15 2024-10-11 02:18:43 +8324 8324 8325 832.4 1664.8000000000002 8324 1992-10-16 2024-10-11 02:18:44.000 1992-10-16 2024-10-11 02:18:44 +8325 8325 8326 832.5 1665 8325 1992-10-17 2024-10-11 02:18:45.000 1992-10-17 2024-10-11 02:18:45 +8326 8326 8327 832.6 1665.2 8326 1992-10-18 2024-10-11 02:18:46.000 1992-10-18 2024-10-11 02:18:46 +8327 8327 8328 832.7 1665.4 8327 1992-10-19 2024-10-11 02:18:47.000 1992-10-19 2024-10-11 02:18:47 +8328 8328 8329 832.8 1665.6000000000001 8328 1992-10-20 2024-10-11 02:18:48.000 1992-10-20 2024-10-11 02:18:48 +8329 8329 8330 832.9 1665.8000000000002 8329 1992-10-21 2024-10-11 02:18:49.000 1992-10-21 2024-10-11 02:18:49 +8330 8330 8331 833 1666 8330 1992-10-22 2024-10-11 02:18:50.000 1992-10-22 2024-10-11 02:18:50 +8331 8331 8332 833.1 1666.2 8331 1992-10-23 2024-10-11 02:18:51.000 1992-10-23 2024-10-11 02:18:51 +8332 8332 8333 833.2 1666.4 8332 1992-10-24 2024-10-11 02:18:52.000 1992-10-24 2024-10-11 02:18:52 +8333 8333 8334 833.3 1666.6000000000001 8333 1992-10-25 2024-10-11 02:18:53.000 1992-10-25 2024-10-11 02:18:53 +8334 8334 8335 833.4 1666.8000000000002 8334 1992-10-26 2024-10-11 02:18:54.000 1992-10-26 2024-10-11 02:18:54 +8335 8335 8336 833.5 1667 8335 1992-10-27 2024-10-11 02:18:55.000 1992-10-27 2024-10-11 02:18:55 +8336 8336 8337 833.6 1667.2 8336 1992-10-28 2024-10-11 02:18:56.000 1992-10-28 2024-10-11 02:18:56 +8337 8337 8338 833.7 1667.4 8337 1992-10-29 2024-10-11 02:18:57.000 1992-10-29 2024-10-11 02:18:57 +8338 8338 8339 833.8 1667.6000000000001 8338 1992-10-30 2024-10-11 02:18:58.000 1992-10-30 2024-10-11 02:18:58 +8339 8339 8340 833.9 1667.8000000000002 8339 1992-10-31 2024-10-11 02:18:59.000 1992-10-31 2024-10-11 02:18:59 +8340 8340 8341 834 1668 8340 1992-11-01 2024-10-11 02:19:00.000 1992-11-01 2024-10-11 02:19:00 +8341 8341 8342 834.1 1668.2 8341 1992-11-02 2024-10-11 02:19:01.000 1992-11-02 2024-10-11 02:19:01 +8342 8342 8343 834.2 1668.4 8342 1992-11-03 2024-10-11 02:19:02.000 1992-11-03 2024-10-11 02:19:02 +8343 8343 8344 834.3 1668.6000000000001 8343 1992-11-04 2024-10-11 02:19:03.000 1992-11-04 2024-10-11 02:19:03 +8344 8344 8345 834.4 1668.8000000000002 8344 1992-11-05 2024-10-11 02:19:04.000 1992-11-05 2024-10-11 02:19:04 +8345 8345 8346 834.5 1669 8345 1992-11-06 2024-10-11 02:19:05.000 1992-11-06 2024-10-11 02:19:05 +8346 8346 8347 834.6 1669.2 8346 1992-11-07 2024-10-11 02:19:06.000 1992-11-07 2024-10-11 02:19:06 +8347 8347 8348 834.7 1669.4 8347 1992-11-08 2024-10-11 02:19:07.000 1992-11-08 2024-10-11 02:19:07 +8348 8348 8349 834.8 1669.6000000000001 8348 1992-11-09 2024-10-11 02:19:08.000 1992-11-09 2024-10-11 02:19:08 +8349 8349 8350 834.9 1669.8000000000002 8349 1992-11-10 2024-10-11 02:19:09.000 1992-11-10 2024-10-11 02:19:09 +8350 8350 8351 835 1670 8350 1992-11-11 2024-10-11 02:19:10.000 1992-11-11 2024-10-11 02:19:10 +8351 8351 8352 835.1 1670.2 8351 1992-11-12 2024-10-11 02:19:11.000 1992-11-12 2024-10-11 02:19:11 +8352 8352 8353 835.2 1670.4 8352 1992-11-13 2024-10-11 02:19:12.000 1992-11-13 2024-10-11 02:19:12 +8353 8353 8354 835.3 1670.6000000000001 8353 1992-11-14 2024-10-11 02:19:13.000 1992-11-14 2024-10-11 02:19:13 +8354 8354 8355 835.4 1670.8000000000002 8354 1992-11-15 2024-10-11 02:19:14.000 1992-11-15 2024-10-11 02:19:14 +8355 8355 8356 835.5 1671 8355 1992-11-16 2024-10-11 02:19:15.000 1992-11-16 2024-10-11 02:19:15 +8356 8356 8357 835.6 1671.2 8356 1992-11-17 2024-10-11 02:19:16.000 1992-11-17 2024-10-11 02:19:16 +8357 8357 8358 835.7 1671.4 8357 1992-11-18 2024-10-11 02:19:17.000 1992-11-18 2024-10-11 02:19:17 +8358 8358 8359 835.8 1671.6000000000001 8358 1992-11-19 2024-10-11 02:19:18.000 1992-11-19 2024-10-11 02:19:18 +8359 8359 8360 835.9 1671.8000000000002 8359 1992-11-20 2024-10-11 02:19:19.000 1992-11-20 2024-10-11 02:19:19 +8360 8360 8361 836 1672 8360 1992-11-21 2024-10-11 02:19:20.000 1992-11-21 2024-10-11 02:19:20 +8361 8361 8362 836.1 1672.2 8361 1992-11-22 2024-10-11 02:19:21.000 1992-11-22 2024-10-11 02:19:21 +8362 8362 8363 836.2 1672.4 8362 1992-11-23 2024-10-11 02:19:22.000 1992-11-23 2024-10-11 02:19:22 +8363 8363 8364 836.3 1672.6000000000001 8363 1992-11-24 2024-10-11 02:19:23.000 1992-11-24 2024-10-11 02:19:23 +8364 8364 8365 836.4 1672.8000000000002 8364 1992-11-25 2024-10-11 02:19:24.000 1992-11-25 2024-10-11 02:19:24 +8365 8365 8366 836.5 1673 8365 1992-11-26 2024-10-11 02:19:25.000 1992-11-26 2024-10-11 02:19:25 +8366 8366 8367 836.6 1673.2 8366 1992-11-27 2024-10-11 02:19:26.000 1992-11-27 2024-10-11 02:19:26 +8367 8367 8368 836.7 1673.4 8367 1992-11-28 2024-10-11 02:19:27.000 1992-11-28 2024-10-11 02:19:27 +8368 8368 8369 836.8 1673.6000000000001 8368 1992-11-29 2024-10-11 02:19:28.000 1992-11-29 2024-10-11 02:19:28 +8369 8369 8370 836.9 1673.8000000000002 8369 1992-11-30 2024-10-11 02:19:29.000 1992-11-30 2024-10-11 02:19:29 +8370 8370 8371 837 1674 8370 1992-12-01 2024-10-11 02:19:30.000 1992-12-01 2024-10-11 02:19:30 +8371 8371 8372 837.1 1674.2 8371 1992-12-02 2024-10-11 02:19:31.000 1992-12-02 2024-10-11 02:19:31 +8372 8372 8373 837.2 1674.4 8372 1992-12-03 2024-10-11 02:19:32.000 1992-12-03 2024-10-11 02:19:32 +8373 8373 8374 837.3 1674.6000000000001 8373 1992-12-04 2024-10-11 02:19:33.000 1992-12-04 2024-10-11 02:19:33 +8374 8374 8375 837.4 1674.8000000000002 8374 1992-12-05 2024-10-11 02:19:34.000 1992-12-05 2024-10-11 02:19:34 +8375 8375 8376 837.5 1675 8375 1992-12-06 2024-10-11 02:19:35.000 1992-12-06 2024-10-11 02:19:35 +8376 8376 8377 837.6 1675.2 8376 1992-12-07 2024-10-11 02:19:36.000 1992-12-07 2024-10-11 02:19:36 +8377 8377 8378 837.7 1675.4 8377 1992-12-08 2024-10-11 02:19:37.000 1992-12-08 2024-10-11 02:19:37 +8378 8378 8379 837.8 1675.6000000000001 8378 1992-12-09 2024-10-11 02:19:38.000 1992-12-09 2024-10-11 02:19:38 +8379 8379 8380 837.9 1675.8000000000002 8379 1992-12-10 2024-10-11 02:19:39.000 1992-12-10 2024-10-11 02:19:39 +8380 8380 8381 838 1676 8380 1992-12-11 2024-10-11 02:19:40.000 1992-12-11 2024-10-11 02:19:40 +8381 8381 8382 838.1 1676.2 8381 1992-12-12 2024-10-11 02:19:41.000 1992-12-12 2024-10-11 02:19:41 +8382 8382 8383 838.2 1676.4 8382 1992-12-13 2024-10-11 02:19:42.000 1992-12-13 2024-10-11 02:19:42 +8383 8383 8384 838.3 1676.6000000000001 8383 1992-12-14 2024-10-11 02:19:43.000 1992-12-14 2024-10-11 02:19:43 +8384 8384 8385 838.4 1676.8000000000002 8384 1992-12-15 2024-10-11 02:19:44.000 1992-12-15 2024-10-11 02:19:44 +8385 8385 8386 838.5 1677 8385 1992-12-16 2024-10-11 02:19:45.000 1992-12-16 2024-10-11 02:19:45 +8386 8386 8387 838.6 1677.2 8386 1992-12-17 2024-10-11 02:19:46.000 1992-12-17 2024-10-11 02:19:46 +8387 8387 8388 838.7 1677.4 8387 1992-12-18 2024-10-11 02:19:47.000 1992-12-18 2024-10-11 02:19:47 +8388 8388 8389 838.8 1677.6000000000001 8388 1992-12-19 2024-10-11 02:19:48.000 1992-12-19 2024-10-11 02:19:48 +8389 8389 8390 838.9 1677.8000000000002 8389 1992-12-20 2024-10-11 02:19:49.000 1992-12-20 2024-10-11 02:19:49 +8390 8390 8391 839 1678 8390 1992-12-21 2024-10-11 02:19:50.000 1992-12-21 2024-10-11 02:19:50 +8391 8391 8392 839.1 1678.2 8391 1992-12-22 2024-10-11 02:19:51.000 1992-12-22 2024-10-11 02:19:51 +8392 8392 8393 839.2 1678.4 8392 1992-12-23 2024-10-11 02:19:52.000 1992-12-23 2024-10-11 02:19:52 +8393 8393 8394 839.3 1678.6000000000001 8393 1992-12-24 2024-10-11 02:19:53.000 1992-12-24 2024-10-11 02:19:53 +8394 8394 8395 839.4 1678.8000000000002 8394 1992-12-25 2024-10-11 02:19:54.000 1992-12-25 2024-10-11 02:19:54 +8395 8395 8396 839.5 1679 8395 1992-12-26 2024-10-11 02:19:55.000 1992-12-26 2024-10-11 02:19:55 +8396 8396 8397 839.6 1679.2 8396 1992-12-27 2024-10-11 02:19:56.000 1992-12-27 2024-10-11 02:19:56 +8397 8397 8398 839.7 1679.4 8397 1992-12-28 2024-10-11 02:19:57.000 1992-12-28 2024-10-11 02:19:57 +8398 8398 8399 839.8 1679.6000000000001 8398 1992-12-29 2024-10-11 02:19:58.000 1992-12-29 2024-10-11 02:19:58 +8399 8399 8400 839.9 1679.8000000000002 8399 1992-12-30 2024-10-11 02:19:59.000 1992-12-30 2024-10-11 02:19:59 +8400 8400 8401 840 1680 8400 1992-12-31 2024-10-11 02:20:00.000 1992-12-31 2024-10-11 02:20:00 +8401 8401 8402 840.1 1680.2 8401 1993-01-01 2024-10-11 02:20:01.000 1993-01-01 2024-10-11 02:20:01 +8402 8402 8403 840.2 1680.4 8402 1993-01-02 2024-10-11 02:20:02.000 1993-01-02 2024-10-11 02:20:02 +8403 8403 8404 840.3 1680.6000000000001 8403 1993-01-03 2024-10-11 02:20:03.000 1993-01-03 2024-10-11 02:20:03 +8404 8404 8405 840.4 1680.8000000000002 8404 1993-01-04 2024-10-11 02:20:04.000 1993-01-04 2024-10-11 02:20:04 +8405 8405 8406 840.5 1681 8405 1993-01-05 2024-10-11 02:20:05.000 1993-01-05 2024-10-11 02:20:05 +8406 8406 8407 840.6 1681.2 8406 1993-01-06 2024-10-11 02:20:06.000 1993-01-06 2024-10-11 02:20:06 +8407 8407 8408 840.7 1681.4 8407 1993-01-07 2024-10-11 02:20:07.000 1993-01-07 2024-10-11 02:20:07 +8408 8408 8409 840.8 1681.6000000000001 8408 1993-01-08 2024-10-11 02:20:08.000 1993-01-08 2024-10-11 02:20:08 +8409 8409 8410 840.9 1681.8000000000002 8409 1993-01-09 2024-10-11 02:20:09.000 1993-01-09 2024-10-11 02:20:09 +8410 8410 8411 841 1682 8410 1993-01-10 2024-10-11 02:20:10.000 1993-01-10 2024-10-11 02:20:10 +8411 8411 8412 841.1 1682.2 8411 1993-01-11 2024-10-11 02:20:11.000 1993-01-11 2024-10-11 02:20:11 +8412 8412 8413 841.2 1682.4 8412 1993-01-12 2024-10-11 02:20:12.000 1993-01-12 2024-10-11 02:20:12 +8413 8413 8414 841.3 1682.6000000000001 8413 1993-01-13 2024-10-11 02:20:13.000 1993-01-13 2024-10-11 02:20:13 +8414 8414 8415 841.4 1682.8000000000002 8414 1993-01-14 2024-10-11 02:20:14.000 1993-01-14 2024-10-11 02:20:14 +8415 8415 8416 841.5 1683 8415 1993-01-15 2024-10-11 02:20:15.000 1993-01-15 2024-10-11 02:20:15 +8416 8416 8417 841.6 1683.2 8416 1993-01-16 2024-10-11 02:20:16.000 1993-01-16 2024-10-11 02:20:16 +8417 8417 8418 841.7 1683.4 8417 1993-01-17 2024-10-11 02:20:17.000 1993-01-17 2024-10-11 02:20:17 +8418 8418 8419 841.8 1683.6000000000001 8418 1993-01-18 2024-10-11 02:20:18.000 1993-01-18 2024-10-11 02:20:18 +8419 8419 8420 841.9 1683.8000000000002 8419 1993-01-19 2024-10-11 02:20:19.000 1993-01-19 2024-10-11 02:20:19 +8420 8420 8421 842 1684 8420 1993-01-20 2024-10-11 02:20:20.000 1993-01-20 2024-10-11 02:20:20 +8421 8421 8422 842.1 1684.2 8421 1993-01-21 2024-10-11 02:20:21.000 1993-01-21 2024-10-11 02:20:21 +8422 8422 8423 842.2 1684.4 8422 1993-01-22 2024-10-11 02:20:22.000 1993-01-22 2024-10-11 02:20:22 +8423 8423 8424 842.3 1684.6000000000001 8423 1993-01-23 2024-10-11 02:20:23.000 1993-01-23 2024-10-11 02:20:23 +8424 8424 8425 842.4 1684.8000000000002 8424 1993-01-24 2024-10-11 02:20:24.000 1993-01-24 2024-10-11 02:20:24 +8425 8425 8426 842.5 1685 8425 1993-01-25 2024-10-11 02:20:25.000 1993-01-25 2024-10-11 02:20:25 +8426 8426 8427 842.6 1685.2 8426 1993-01-26 2024-10-11 02:20:26.000 1993-01-26 2024-10-11 02:20:26 +8427 8427 8428 842.7 1685.4 8427 1993-01-27 2024-10-11 02:20:27.000 1993-01-27 2024-10-11 02:20:27 +8428 8428 8429 842.8 1685.6000000000001 8428 1993-01-28 2024-10-11 02:20:28.000 1993-01-28 2024-10-11 02:20:28 +8429 8429 8430 842.9 1685.8000000000002 8429 1993-01-29 2024-10-11 02:20:29.000 1993-01-29 2024-10-11 02:20:29 +8430 8430 8431 843 1686 8430 1993-01-30 2024-10-11 02:20:30.000 1993-01-30 2024-10-11 02:20:30 +8431 8431 8432 843.1 1686.2 8431 1993-01-31 2024-10-11 02:20:31.000 1993-01-31 2024-10-11 02:20:31 +8432 8432 8433 843.2 1686.4 8432 1993-02-01 2024-10-11 02:20:32.000 1993-02-01 2024-10-11 02:20:32 +8433 8433 8434 843.3 1686.6000000000001 8433 1993-02-02 2024-10-11 02:20:33.000 1993-02-02 2024-10-11 02:20:33 +8434 8434 8435 843.4 1686.8000000000002 8434 1993-02-03 2024-10-11 02:20:34.000 1993-02-03 2024-10-11 02:20:34 +8435 8435 8436 843.5 1687 8435 1993-02-04 2024-10-11 02:20:35.000 1993-02-04 2024-10-11 02:20:35 +8436 8436 8437 843.6 1687.2 8436 1993-02-05 2024-10-11 02:20:36.000 1993-02-05 2024-10-11 02:20:36 +8437 8437 8438 843.7 1687.4 8437 1993-02-06 2024-10-11 02:20:37.000 1993-02-06 2024-10-11 02:20:37 +8438 8438 8439 843.8 1687.6000000000001 8438 1993-02-07 2024-10-11 02:20:38.000 1993-02-07 2024-10-11 02:20:38 +8439 8439 8440 843.9 1687.8000000000002 8439 1993-02-08 2024-10-11 02:20:39.000 1993-02-08 2024-10-11 02:20:39 +8440 8440 8441 844 1688 8440 1993-02-09 2024-10-11 02:20:40.000 1993-02-09 2024-10-11 02:20:40 +8441 8441 8442 844.1 1688.2 8441 1993-02-10 2024-10-11 02:20:41.000 1993-02-10 2024-10-11 02:20:41 +8442 8442 8443 844.2 1688.4 8442 1993-02-11 2024-10-11 02:20:42.000 1993-02-11 2024-10-11 02:20:42 +8443 8443 8444 844.3 1688.6000000000001 8443 1993-02-12 2024-10-11 02:20:43.000 1993-02-12 2024-10-11 02:20:43 +8444 8444 8445 844.4 1688.8000000000002 8444 1993-02-13 2024-10-11 02:20:44.000 1993-02-13 2024-10-11 02:20:44 +8445 8445 8446 844.5 1689 8445 1993-02-14 2024-10-11 02:20:45.000 1993-02-14 2024-10-11 02:20:45 +8446 8446 8447 844.6 1689.2 8446 1993-02-15 2024-10-11 02:20:46.000 1993-02-15 2024-10-11 02:20:46 +8447 8447 8448 844.7 1689.4 8447 1993-02-16 2024-10-11 02:20:47.000 1993-02-16 2024-10-11 02:20:47 +8448 8448 8449 844.8 1689.6000000000001 8448 1993-02-17 2024-10-11 02:20:48.000 1993-02-17 2024-10-11 02:20:48 +8449 8449 8450 844.9 1689.8000000000002 8449 1993-02-18 2024-10-11 02:20:49.000 1993-02-18 2024-10-11 02:20:49 +8450 8450 8451 845 1690 8450 1993-02-19 2024-10-11 02:20:50.000 1993-02-19 2024-10-11 02:20:50 +8451 8451 8452 845.1 1690.2 8451 1993-02-20 2024-10-11 02:20:51.000 1993-02-20 2024-10-11 02:20:51 +8452 8452 8453 845.2 1690.4 8452 1993-02-21 2024-10-11 02:20:52.000 1993-02-21 2024-10-11 02:20:52 +8453 8453 8454 845.3 1690.6000000000001 8453 1993-02-22 2024-10-11 02:20:53.000 1993-02-22 2024-10-11 02:20:53 +8454 8454 8455 845.4 1690.8000000000002 8454 1993-02-23 2024-10-11 02:20:54.000 1993-02-23 2024-10-11 02:20:54 +8455 8455 8456 845.5 1691 8455 1993-02-24 2024-10-11 02:20:55.000 1993-02-24 2024-10-11 02:20:55 +8456 8456 8457 845.6 1691.2 8456 1993-02-25 2024-10-11 02:20:56.000 1993-02-25 2024-10-11 02:20:56 +8457 8457 8458 845.7 1691.4 8457 1993-02-26 2024-10-11 02:20:57.000 1993-02-26 2024-10-11 02:20:57 +8458 8458 8459 845.8 1691.6000000000001 8458 1993-02-27 2024-10-11 02:20:58.000 1993-02-27 2024-10-11 02:20:58 +8459 8459 8460 845.9 1691.8000000000002 8459 1993-02-28 2024-10-11 02:20:59.000 1993-02-28 2024-10-11 02:20:59 +8460 8460 8461 846 1692 8460 1993-03-01 2024-10-11 02:21:00.000 1993-03-01 2024-10-11 02:21:00 +8461 8461 8462 846.1 1692.2 8461 1993-03-02 2024-10-11 02:21:01.000 1993-03-02 2024-10-11 02:21:01 +8462 8462 8463 846.2 1692.4 8462 1993-03-03 2024-10-11 02:21:02.000 1993-03-03 2024-10-11 02:21:02 +8463 8463 8464 846.3 1692.6000000000001 8463 1993-03-04 2024-10-11 02:21:03.000 1993-03-04 2024-10-11 02:21:03 +8464 8464 8465 846.4 1692.8000000000002 8464 1993-03-05 2024-10-11 02:21:04.000 1993-03-05 2024-10-11 02:21:04 +8465 8465 8466 846.5 1693 8465 1993-03-06 2024-10-11 02:21:05.000 1993-03-06 2024-10-11 02:21:05 +8466 8466 8467 846.6 1693.2 8466 1993-03-07 2024-10-11 02:21:06.000 1993-03-07 2024-10-11 02:21:06 +8467 8467 8468 846.7 1693.4 8467 1993-03-08 2024-10-11 02:21:07.000 1993-03-08 2024-10-11 02:21:07 +8468 8468 8469 846.8 1693.6000000000001 8468 1993-03-09 2024-10-11 02:21:08.000 1993-03-09 2024-10-11 02:21:08 +8469 8469 8470 846.9 1693.8000000000002 8469 1993-03-10 2024-10-11 02:21:09.000 1993-03-10 2024-10-11 02:21:09 +8470 8470 8471 847 1694 8470 1993-03-11 2024-10-11 02:21:10.000 1993-03-11 2024-10-11 02:21:10 +8471 8471 8472 847.1 1694.2 8471 1993-03-12 2024-10-11 02:21:11.000 1993-03-12 2024-10-11 02:21:11 +8472 8472 8473 847.2 1694.4 8472 1993-03-13 2024-10-11 02:21:12.000 1993-03-13 2024-10-11 02:21:12 +8473 8473 8474 847.3 1694.6000000000001 8473 1993-03-14 2024-10-11 02:21:13.000 1993-03-14 2024-10-11 02:21:13 +8474 8474 8475 847.4 1694.8000000000002 8474 1993-03-15 2024-10-11 02:21:14.000 1993-03-15 2024-10-11 02:21:14 +8475 8475 8476 847.5 1695 8475 1993-03-16 2024-10-11 02:21:15.000 1993-03-16 2024-10-11 02:21:15 +8476 8476 8477 847.6 1695.2 8476 1993-03-17 2024-10-11 02:21:16.000 1993-03-17 2024-10-11 02:21:16 +8477 8477 8478 847.7 1695.4 8477 1993-03-18 2024-10-11 02:21:17.000 1993-03-18 2024-10-11 02:21:17 +8478 8478 8479 847.8 1695.6000000000001 8478 1993-03-19 2024-10-11 02:21:18.000 1993-03-19 2024-10-11 02:21:18 +8479 8479 8480 847.9 1695.8000000000002 8479 1993-03-20 2024-10-11 02:21:19.000 1993-03-20 2024-10-11 02:21:19 +8480 8480 8481 848 1696 8480 1993-03-21 2024-10-11 02:21:20.000 1993-03-21 2024-10-11 02:21:20 +8481 8481 8482 848.1 1696.2 8481 1993-03-22 2024-10-11 02:21:21.000 1993-03-22 2024-10-11 02:21:21 +8482 8482 8483 848.2 1696.4 8482 1993-03-23 2024-10-11 02:21:22.000 1993-03-23 2024-10-11 02:21:22 +8483 8483 8484 848.3 1696.6000000000001 8483 1993-03-24 2024-10-11 02:21:23.000 1993-03-24 2024-10-11 02:21:23 +8484 8484 8485 848.4 1696.8000000000002 8484 1993-03-25 2024-10-11 02:21:24.000 1993-03-25 2024-10-11 02:21:24 +8485 8485 8486 848.5 1697 8485 1993-03-26 2024-10-11 02:21:25.000 1993-03-26 2024-10-11 02:21:25 +8486 8486 8487 848.6 1697.2 8486 1993-03-27 2024-10-11 02:21:26.000 1993-03-27 2024-10-11 02:21:26 +8487 8487 8488 848.7 1697.4 8487 1993-03-28 2024-10-11 02:21:27.000 1993-03-28 2024-10-11 02:21:27 +8488 8488 8489 848.8 1697.6000000000001 8488 1993-03-29 2024-10-11 02:21:28.000 1993-03-29 2024-10-11 02:21:28 +8489 8489 8490 848.9 1697.8000000000002 8489 1993-03-30 2024-10-11 02:21:29.000 1993-03-30 2024-10-11 02:21:29 +8490 8490 8491 849 1698 8490 1993-03-31 2024-10-11 02:21:30.000 1993-03-31 2024-10-11 02:21:30 +8491 8491 8492 849.1 1698.2 8491 1993-04-01 2024-10-11 02:21:31.000 1993-04-01 2024-10-11 02:21:31 +8492 8492 8493 849.2 1698.4 8492 1993-04-02 2024-10-11 02:21:32.000 1993-04-02 2024-10-11 02:21:32 +8493 8493 8494 849.3 1698.6000000000001 8493 1993-04-03 2024-10-11 02:21:33.000 1993-04-03 2024-10-11 02:21:33 +8494 8494 8495 849.4 1698.8000000000002 8494 1993-04-04 2024-10-11 02:21:34.000 1993-04-04 2024-10-11 02:21:34 +8495 8495 8496 849.5 1699 8495 1993-04-05 2024-10-11 02:21:35.000 1993-04-05 2024-10-11 02:21:35 +8496 8496 8497 849.6 1699.2 8496 1993-04-06 2024-10-11 02:21:36.000 1993-04-06 2024-10-11 02:21:36 +8497 8497 8498 849.7 1699.4 8497 1993-04-07 2024-10-11 02:21:37.000 1993-04-07 2024-10-11 02:21:37 +8498 8498 8499 849.8 1699.6000000000001 8498 1993-04-08 2024-10-11 02:21:38.000 1993-04-08 2024-10-11 02:21:38 +8499 8499 8500 849.9 1699.8000000000002 8499 1993-04-09 2024-10-11 02:21:39.000 1993-04-09 2024-10-11 02:21:39 +8500 8500 8501 850 1700 8500 1993-04-10 2024-10-11 02:21:40.000 1993-04-10 2024-10-11 02:21:40 +8501 8501 8502 850.1 1700.2 8501 1993-04-11 2024-10-11 02:21:41.000 1993-04-11 2024-10-11 02:21:41 +8502 8502 8503 850.2 1700.4 8502 1993-04-12 2024-10-11 02:21:42.000 1993-04-12 2024-10-11 02:21:42 +8503 8503 8504 850.3 1700.6000000000001 8503 1993-04-13 2024-10-11 02:21:43.000 1993-04-13 2024-10-11 02:21:43 +8504 8504 8505 850.4 1700.8000000000002 8504 1993-04-14 2024-10-11 02:21:44.000 1993-04-14 2024-10-11 02:21:44 +8505 8505 8506 850.5 1701 8505 1993-04-15 2024-10-11 02:21:45.000 1993-04-15 2024-10-11 02:21:45 +8506 8506 8507 850.6 1701.2 8506 1993-04-16 2024-10-11 02:21:46.000 1993-04-16 2024-10-11 02:21:46 +8507 8507 8508 850.7 1701.4 8507 1993-04-17 2024-10-11 02:21:47.000 1993-04-17 2024-10-11 02:21:47 +8508 8508 8509 850.8 1701.6000000000001 8508 1993-04-18 2024-10-11 02:21:48.000 1993-04-18 2024-10-11 02:21:48 +8509 8509 8510 850.9 1701.8000000000002 8509 1993-04-19 2024-10-11 02:21:49.000 1993-04-19 2024-10-11 02:21:49 +8510 8510 8511 851 1702 8510 1993-04-20 2024-10-11 02:21:50.000 1993-04-20 2024-10-11 02:21:50 +8511 8511 8512 851.1 1702.2 8511 1993-04-21 2024-10-11 02:21:51.000 1993-04-21 2024-10-11 02:21:51 +8512 8512 8513 851.2 1702.4 8512 1993-04-22 2024-10-11 02:21:52.000 1993-04-22 2024-10-11 02:21:52 +8513 8513 8514 851.3 1702.6000000000001 8513 1993-04-23 2024-10-11 02:21:53.000 1993-04-23 2024-10-11 02:21:53 +8514 8514 8515 851.4 1702.8000000000002 8514 1993-04-24 2024-10-11 02:21:54.000 1993-04-24 2024-10-11 02:21:54 +8515 8515 8516 851.5 1703 8515 1993-04-25 2024-10-11 02:21:55.000 1993-04-25 2024-10-11 02:21:55 +8516 8516 8517 851.6 1703.2 8516 1993-04-26 2024-10-11 02:21:56.000 1993-04-26 2024-10-11 02:21:56 +8517 8517 8518 851.7 1703.4 8517 1993-04-27 2024-10-11 02:21:57.000 1993-04-27 2024-10-11 02:21:57 +8518 8518 8519 851.8 1703.6000000000001 8518 1993-04-28 2024-10-11 02:21:58.000 1993-04-28 2024-10-11 02:21:58 +8519 8519 8520 851.9 1703.8000000000002 8519 1993-04-29 2024-10-11 02:21:59.000 1993-04-29 2024-10-11 02:21:59 +8520 8520 8521 852 1704 8520 1993-04-30 2024-10-11 02:22:00.000 1993-04-30 2024-10-11 02:22:00 +8521 8521 8522 852.1 1704.2 8521 1993-05-01 2024-10-11 02:22:01.000 1993-05-01 2024-10-11 02:22:01 +8522 8522 8523 852.2 1704.4 8522 1993-05-02 2024-10-11 02:22:02.000 1993-05-02 2024-10-11 02:22:02 +8523 8523 8524 852.3 1704.6000000000001 8523 1993-05-03 2024-10-11 02:22:03.000 1993-05-03 2024-10-11 02:22:03 +8524 8524 8525 852.4 1704.8000000000002 8524 1993-05-04 2024-10-11 02:22:04.000 1993-05-04 2024-10-11 02:22:04 +8525 8525 8526 852.5 1705 8525 1993-05-05 2024-10-11 02:22:05.000 1993-05-05 2024-10-11 02:22:05 +8526 8526 8527 852.6 1705.2 8526 1993-05-06 2024-10-11 02:22:06.000 1993-05-06 2024-10-11 02:22:06 +8527 8527 8528 852.7 1705.4 8527 1993-05-07 2024-10-11 02:22:07.000 1993-05-07 2024-10-11 02:22:07 +8528 8528 8529 852.8 1705.6000000000001 8528 1993-05-08 2024-10-11 02:22:08.000 1993-05-08 2024-10-11 02:22:08 +8529 8529 8530 852.9 1705.8000000000002 8529 1993-05-09 2024-10-11 02:22:09.000 1993-05-09 2024-10-11 02:22:09 +8530 8530 8531 853 1706 8530 1993-05-10 2024-10-11 02:22:10.000 1993-05-10 2024-10-11 02:22:10 +8531 8531 8532 853.1 1706.2 8531 1993-05-11 2024-10-11 02:22:11.000 1993-05-11 2024-10-11 02:22:11 +8532 8532 8533 853.2 1706.4 8532 1993-05-12 2024-10-11 02:22:12.000 1993-05-12 2024-10-11 02:22:12 +8533 8533 8534 853.3 1706.6000000000001 8533 1993-05-13 2024-10-11 02:22:13.000 1993-05-13 2024-10-11 02:22:13 +8534 8534 8535 853.4 1706.8000000000002 8534 1993-05-14 2024-10-11 02:22:14.000 1993-05-14 2024-10-11 02:22:14 +8535 8535 8536 853.5 1707 8535 1993-05-15 2024-10-11 02:22:15.000 1993-05-15 2024-10-11 02:22:15 +8536 8536 8537 853.6 1707.2 8536 1993-05-16 2024-10-11 02:22:16.000 1993-05-16 2024-10-11 02:22:16 +8537 8537 8538 853.7 1707.4 8537 1993-05-17 2024-10-11 02:22:17.000 1993-05-17 2024-10-11 02:22:17 +8538 8538 8539 853.8 1707.6000000000001 8538 1993-05-18 2024-10-11 02:22:18.000 1993-05-18 2024-10-11 02:22:18 +8539 8539 8540 853.9 1707.8000000000002 8539 1993-05-19 2024-10-11 02:22:19.000 1993-05-19 2024-10-11 02:22:19 +8540 8540 8541 854 1708 8540 1993-05-20 2024-10-11 02:22:20.000 1993-05-20 2024-10-11 02:22:20 +8541 8541 8542 854.1 1708.2 8541 1993-05-21 2024-10-11 02:22:21.000 1993-05-21 2024-10-11 02:22:21 +8542 8542 8543 854.2 1708.4 8542 1993-05-22 2024-10-11 02:22:22.000 1993-05-22 2024-10-11 02:22:22 +8543 8543 8544 854.3 1708.6000000000001 8543 1993-05-23 2024-10-11 02:22:23.000 1993-05-23 2024-10-11 02:22:23 +8544 8544 8545 854.4 1708.8000000000002 8544 1993-05-24 2024-10-11 02:22:24.000 1993-05-24 2024-10-11 02:22:24 +8545 8545 8546 854.5 1709 8545 1993-05-25 2024-10-11 02:22:25.000 1993-05-25 2024-10-11 02:22:25 +8546 8546 8547 854.6 1709.2 8546 1993-05-26 2024-10-11 02:22:26.000 1993-05-26 2024-10-11 02:22:26 +8547 8547 8548 854.7 1709.4 8547 1993-05-27 2024-10-11 02:22:27.000 1993-05-27 2024-10-11 02:22:27 +8548 8548 8549 854.8 1709.6000000000001 8548 1993-05-28 2024-10-11 02:22:28.000 1993-05-28 2024-10-11 02:22:28 +8549 8549 8550 854.9 1709.8000000000002 8549 1993-05-29 2024-10-11 02:22:29.000 1993-05-29 2024-10-11 02:22:29 +8550 8550 8551 855 1710 8550 1993-05-30 2024-10-11 02:22:30.000 1993-05-30 2024-10-11 02:22:30 +8551 8551 8552 855.1 1710.2 8551 1993-05-31 2024-10-11 02:22:31.000 1993-05-31 2024-10-11 02:22:31 +8552 8552 8553 855.2 1710.4 8552 1993-06-01 2024-10-11 02:22:32.000 1993-06-01 2024-10-11 02:22:32 +8553 8553 8554 855.3 1710.6000000000001 8553 1993-06-02 2024-10-11 02:22:33.000 1993-06-02 2024-10-11 02:22:33 +8554 8554 8555 855.4 1710.8000000000002 8554 1993-06-03 2024-10-11 02:22:34.000 1993-06-03 2024-10-11 02:22:34 +8555 8555 8556 855.5 1711 8555 1993-06-04 2024-10-11 02:22:35.000 1993-06-04 2024-10-11 02:22:35 +8556 8556 8557 855.6 1711.2 8556 1993-06-05 2024-10-11 02:22:36.000 1993-06-05 2024-10-11 02:22:36 +8557 8557 8558 855.7 1711.4 8557 1993-06-06 2024-10-11 02:22:37.000 1993-06-06 2024-10-11 02:22:37 +8558 8558 8559 855.8 1711.6000000000001 8558 1993-06-07 2024-10-11 02:22:38.000 1993-06-07 2024-10-11 02:22:38 +8559 8559 8560 855.9 1711.8000000000002 8559 1993-06-08 2024-10-11 02:22:39.000 1993-06-08 2024-10-11 02:22:39 +8560 8560 8561 856 1712 8560 1993-06-09 2024-10-11 02:22:40.000 1993-06-09 2024-10-11 02:22:40 +8561 8561 8562 856.1 1712.2 8561 1993-06-10 2024-10-11 02:22:41.000 1993-06-10 2024-10-11 02:22:41 +8562 8562 8563 856.2 1712.4 8562 1993-06-11 2024-10-11 02:22:42.000 1993-06-11 2024-10-11 02:22:42 +8563 8563 8564 856.3 1712.6000000000001 8563 1993-06-12 2024-10-11 02:22:43.000 1993-06-12 2024-10-11 02:22:43 +8564 8564 8565 856.4 1712.8000000000002 8564 1993-06-13 2024-10-11 02:22:44.000 1993-06-13 2024-10-11 02:22:44 +8565 8565 8566 856.5 1713 8565 1993-06-14 2024-10-11 02:22:45.000 1993-06-14 2024-10-11 02:22:45 +8566 8566 8567 856.6 1713.2 8566 1993-06-15 2024-10-11 02:22:46.000 1993-06-15 2024-10-11 02:22:46 +8567 8567 8568 856.7 1713.4 8567 1993-06-16 2024-10-11 02:22:47.000 1993-06-16 2024-10-11 02:22:47 +8568 8568 8569 856.8 1713.6000000000001 8568 1993-06-17 2024-10-11 02:22:48.000 1993-06-17 2024-10-11 02:22:48 +8569 8569 8570 856.9 1713.8000000000002 8569 1993-06-18 2024-10-11 02:22:49.000 1993-06-18 2024-10-11 02:22:49 +8570 8570 8571 857 1714 8570 1993-06-19 2024-10-11 02:22:50.000 1993-06-19 2024-10-11 02:22:50 +8571 8571 8572 857.1 1714.2 8571 1993-06-20 2024-10-11 02:22:51.000 1993-06-20 2024-10-11 02:22:51 +8572 8572 8573 857.2 1714.4 8572 1993-06-21 2024-10-11 02:22:52.000 1993-06-21 2024-10-11 02:22:52 +8573 8573 8574 857.3 1714.6000000000001 8573 1993-06-22 2024-10-11 02:22:53.000 1993-06-22 2024-10-11 02:22:53 +8574 8574 8575 857.4 1714.8000000000002 8574 1993-06-23 2024-10-11 02:22:54.000 1993-06-23 2024-10-11 02:22:54 +8575 8575 8576 857.5 1715 8575 1993-06-24 2024-10-11 02:22:55.000 1993-06-24 2024-10-11 02:22:55 +8576 8576 8577 857.6 1715.2 8576 1993-06-25 2024-10-11 02:22:56.000 1993-06-25 2024-10-11 02:22:56 +8577 8577 8578 857.7 1715.4 8577 1993-06-26 2024-10-11 02:22:57.000 1993-06-26 2024-10-11 02:22:57 +8578 8578 8579 857.8 1715.6000000000001 8578 1993-06-27 2024-10-11 02:22:58.000 1993-06-27 2024-10-11 02:22:58 +8579 8579 8580 857.9 1715.8000000000002 8579 1993-06-28 2024-10-11 02:22:59.000 1993-06-28 2024-10-11 02:22:59 +8580 8580 8581 858 1716 8580 1993-06-29 2024-10-11 02:23:00.000 1993-06-29 2024-10-11 02:23:00 +8581 8581 8582 858.1 1716.2 8581 1993-06-30 2024-10-11 02:23:01.000 1993-06-30 2024-10-11 02:23:01 +8582 8582 8583 858.2 1716.4 8582 1993-07-01 2024-10-11 02:23:02.000 1993-07-01 2024-10-11 02:23:02 +8583 8583 8584 858.3 1716.6000000000001 8583 1993-07-02 2024-10-11 02:23:03.000 1993-07-02 2024-10-11 02:23:03 +8584 8584 8585 858.4 1716.8000000000002 8584 1993-07-03 2024-10-11 02:23:04.000 1993-07-03 2024-10-11 02:23:04 +8585 8585 8586 858.5 1717 8585 1993-07-04 2024-10-11 02:23:05.000 1993-07-04 2024-10-11 02:23:05 +8586 8586 8587 858.6 1717.2 8586 1993-07-05 2024-10-11 02:23:06.000 1993-07-05 2024-10-11 02:23:06 +8587 8587 8588 858.7 1717.4 8587 1993-07-06 2024-10-11 02:23:07.000 1993-07-06 2024-10-11 02:23:07 +8588 8588 8589 858.8 1717.6000000000001 8588 1993-07-07 2024-10-11 02:23:08.000 1993-07-07 2024-10-11 02:23:08 +8589 8589 8590 858.9 1717.8000000000002 8589 1993-07-08 2024-10-11 02:23:09.000 1993-07-08 2024-10-11 02:23:09 +8590 8590 8591 859 1718 8590 1993-07-09 2024-10-11 02:23:10.000 1993-07-09 2024-10-11 02:23:10 +8591 8591 8592 859.1 1718.2 8591 1993-07-10 2024-10-11 02:23:11.000 1993-07-10 2024-10-11 02:23:11 +8592 8592 8593 859.2 1718.4 8592 1993-07-11 2024-10-11 02:23:12.000 1993-07-11 2024-10-11 02:23:12 +8593 8593 8594 859.3 1718.6000000000001 8593 1993-07-12 2024-10-11 02:23:13.000 1993-07-12 2024-10-11 02:23:13 +8594 8594 8595 859.4 1718.8000000000002 8594 1993-07-13 2024-10-11 02:23:14.000 1993-07-13 2024-10-11 02:23:14 +8595 8595 8596 859.5 1719 8595 1993-07-14 2024-10-11 02:23:15.000 1993-07-14 2024-10-11 02:23:15 +8596 8596 8597 859.6 1719.2 8596 1993-07-15 2024-10-11 02:23:16.000 1993-07-15 2024-10-11 02:23:16 +8597 8597 8598 859.7 1719.4 8597 1993-07-16 2024-10-11 02:23:17.000 1993-07-16 2024-10-11 02:23:17 +8598 8598 8599 859.8 1719.6000000000001 8598 1993-07-17 2024-10-11 02:23:18.000 1993-07-17 2024-10-11 02:23:18 +8599 8599 8600 859.9 1719.8000000000002 8599 1993-07-18 2024-10-11 02:23:19.000 1993-07-18 2024-10-11 02:23:19 +8600 8600 8601 860 1720 8600 1993-07-19 2024-10-11 02:23:20.000 1993-07-19 2024-10-11 02:23:20 +8601 8601 8602 860.1 1720.2 8601 1993-07-20 2024-10-11 02:23:21.000 1993-07-20 2024-10-11 02:23:21 +8602 8602 8603 860.2 1720.4 8602 1993-07-21 2024-10-11 02:23:22.000 1993-07-21 2024-10-11 02:23:22 +8603 8603 8604 860.3 1720.6000000000001 8603 1993-07-22 2024-10-11 02:23:23.000 1993-07-22 2024-10-11 02:23:23 +8604 8604 8605 860.4 1720.8000000000002 8604 1993-07-23 2024-10-11 02:23:24.000 1993-07-23 2024-10-11 02:23:24 +8605 8605 8606 860.5 1721 8605 1993-07-24 2024-10-11 02:23:25.000 1993-07-24 2024-10-11 02:23:25 +8606 8606 8607 860.6 1721.2 8606 1993-07-25 2024-10-11 02:23:26.000 1993-07-25 2024-10-11 02:23:26 +8607 8607 8608 860.7 1721.4 8607 1993-07-26 2024-10-11 02:23:27.000 1993-07-26 2024-10-11 02:23:27 +8608 8608 8609 860.8 1721.6000000000001 8608 1993-07-27 2024-10-11 02:23:28.000 1993-07-27 2024-10-11 02:23:28 +8609 8609 8610 860.9 1721.8000000000002 8609 1993-07-28 2024-10-11 02:23:29.000 1993-07-28 2024-10-11 02:23:29 +8610 8610 8611 861 1722 8610 1993-07-29 2024-10-11 02:23:30.000 1993-07-29 2024-10-11 02:23:30 +8611 8611 8612 861.1 1722.2 8611 1993-07-30 2024-10-11 02:23:31.000 1993-07-30 2024-10-11 02:23:31 +8612 8612 8613 861.2 1722.4 8612 1993-07-31 2024-10-11 02:23:32.000 1993-07-31 2024-10-11 02:23:32 +8613 8613 8614 861.3 1722.6000000000001 8613 1993-08-01 2024-10-11 02:23:33.000 1993-08-01 2024-10-11 02:23:33 +8614 8614 8615 861.4 1722.8000000000002 8614 1993-08-02 2024-10-11 02:23:34.000 1993-08-02 2024-10-11 02:23:34 +8615 8615 8616 861.5 1723 8615 1993-08-03 2024-10-11 02:23:35.000 1993-08-03 2024-10-11 02:23:35 +8616 8616 8617 861.6 1723.2 8616 1993-08-04 2024-10-11 02:23:36.000 1993-08-04 2024-10-11 02:23:36 +8617 8617 8618 861.7 1723.4 8617 1993-08-05 2024-10-11 02:23:37.000 1993-08-05 2024-10-11 02:23:37 +8618 8618 8619 861.8 1723.6000000000001 8618 1993-08-06 2024-10-11 02:23:38.000 1993-08-06 2024-10-11 02:23:38 +8619 8619 8620 861.9 1723.8000000000002 8619 1993-08-07 2024-10-11 02:23:39.000 1993-08-07 2024-10-11 02:23:39 +8620 8620 8621 862 1724 8620 1993-08-08 2024-10-11 02:23:40.000 1993-08-08 2024-10-11 02:23:40 +8621 8621 8622 862.1 1724.2 8621 1993-08-09 2024-10-11 02:23:41.000 1993-08-09 2024-10-11 02:23:41 +8622 8622 8623 862.2 1724.4 8622 1993-08-10 2024-10-11 02:23:42.000 1993-08-10 2024-10-11 02:23:42 +8623 8623 8624 862.3 1724.6000000000001 8623 1993-08-11 2024-10-11 02:23:43.000 1993-08-11 2024-10-11 02:23:43 +8624 8624 8625 862.4 1724.8000000000002 8624 1993-08-12 2024-10-11 02:23:44.000 1993-08-12 2024-10-11 02:23:44 +8625 8625 8626 862.5 1725 8625 1993-08-13 2024-10-11 02:23:45.000 1993-08-13 2024-10-11 02:23:45 +8626 8626 8627 862.6 1725.2 8626 1993-08-14 2024-10-11 02:23:46.000 1993-08-14 2024-10-11 02:23:46 +8627 8627 8628 862.7 1725.4 8627 1993-08-15 2024-10-11 02:23:47.000 1993-08-15 2024-10-11 02:23:47 +8628 8628 8629 862.8 1725.6000000000001 8628 1993-08-16 2024-10-11 02:23:48.000 1993-08-16 2024-10-11 02:23:48 +8629 8629 8630 862.9 1725.8000000000002 8629 1993-08-17 2024-10-11 02:23:49.000 1993-08-17 2024-10-11 02:23:49 +8630 8630 8631 863 1726 8630 1993-08-18 2024-10-11 02:23:50.000 1993-08-18 2024-10-11 02:23:50 +8631 8631 8632 863.1 1726.2 8631 1993-08-19 2024-10-11 02:23:51.000 1993-08-19 2024-10-11 02:23:51 +8632 8632 8633 863.2 1726.4 8632 1993-08-20 2024-10-11 02:23:52.000 1993-08-20 2024-10-11 02:23:52 +8633 8633 8634 863.3 1726.6000000000001 8633 1993-08-21 2024-10-11 02:23:53.000 1993-08-21 2024-10-11 02:23:53 +8634 8634 8635 863.4 1726.8000000000002 8634 1993-08-22 2024-10-11 02:23:54.000 1993-08-22 2024-10-11 02:23:54 +8635 8635 8636 863.5 1727 8635 1993-08-23 2024-10-11 02:23:55.000 1993-08-23 2024-10-11 02:23:55 +8636 8636 8637 863.6 1727.2 8636 1993-08-24 2024-10-11 02:23:56.000 1993-08-24 2024-10-11 02:23:56 +8637 8637 8638 863.7 1727.4 8637 1993-08-25 2024-10-11 02:23:57.000 1993-08-25 2024-10-11 02:23:57 +8638 8638 8639 863.8 1727.6000000000001 8638 1993-08-26 2024-10-11 02:23:58.000 1993-08-26 2024-10-11 02:23:58 +8639 8639 8640 863.9 1727.8000000000002 8639 1993-08-27 2024-10-11 02:23:59.000 1993-08-27 2024-10-11 02:23:59 +8640 8640 8641 864 1728 8640 1993-08-28 2024-10-11 02:24:00.000 1993-08-28 2024-10-11 02:24:00 +8641 8641 8642 864.1 1728.2 8641 1993-08-29 2024-10-11 02:24:01.000 1993-08-29 2024-10-11 02:24:01 +8642 8642 8643 864.2 1728.4 8642 1993-08-30 2024-10-11 02:24:02.000 1993-08-30 2024-10-11 02:24:02 +8643 8643 8644 864.3 1728.6000000000001 8643 1993-08-31 2024-10-11 02:24:03.000 1993-08-31 2024-10-11 02:24:03 +8644 8644 8645 864.4 1728.8000000000002 8644 1993-09-01 2024-10-11 02:24:04.000 1993-09-01 2024-10-11 02:24:04 +8645 8645 8646 864.5 1729 8645 1993-09-02 2024-10-11 02:24:05.000 1993-09-02 2024-10-11 02:24:05 +8646 8646 8647 864.6 1729.2 8646 1993-09-03 2024-10-11 02:24:06.000 1993-09-03 2024-10-11 02:24:06 +8647 8647 8648 864.7 1729.4 8647 1993-09-04 2024-10-11 02:24:07.000 1993-09-04 2024-10-11 02:24:07 +8648 8648 8649 864.8 1729.6000000000001 8648 1993-09-05 2024-10-11 02:24:08.000 1993-09-05 2024-10-11 02:24:08 +8649 8649 8650 864.9 1729.8000000000002 8649 1993-09-06 2024-10-11 02:24:09.000 1993-09-06 2024-10-11 02:24:09 +8650 8650 8651 865 1730 8650 1993-09-07 2024-10-11 02:24:10.000 1993-09-07 2024-10-11 02:24:10 +8651 8651 8652 865.1 1730.2 8651 1993-09-08 2024-10-11 02:24:11.000 1993-09-08 2024-10-11 02:24:11 +8652 8652 8653 865.2 1730.4 8652 1993-09-09 2024-10-11 02:24:12.000 1993-09-09 2024-10-11 02:24:12 +8653 8653 8654 865.3 1730.6000000000001 8653 1993-09-10 2024-10-11 02:24:13.000 1993-09-10 2024-10-11 02:24:13 +8654 8654 8655 865.4 1730.8000000000002 8654 1993-09-11 2024-10-11 02:24:14.000 1993-09-11 2024-10-11 02:24:14 +8655 8655 8656 865.5 1731 8655 1993-09-12 2024-10-11 02:24:15.000 1993-09-12 2024-10-11 02:24:15 +8656 8656 8657 865.6 1731.2 8656 1993-09-13 2024-10-11 02:24:16.000 1993-09-13 2024-10-11 02:24:16 +8657 8657 8658 865.7 1731.4 8657 1993-09-14 2024-10-11 02:24:17.000 1993-09-14 2024-10-11 02:24:17 +8658 8658 8659 865.8 1731.6000000000001 8658 1993-09-15 2024-10-11 02:24:18.000 1993-09-15 2024-10-11 02:24:18 +8659 8659 8660 865.9 1731.8000000000002 8659 1993-09-16 2024-10-11 02:24:19.000 1993-09-16 2024-10-11 02:24:19 +8660 8660 8661 866 1732 8660 1993-09-17 2024-10-11 02:24:20.000 1993-09-17 2024-10-11 02:24:20 +8661 8661 8662 866.1 1732.2 8661 1993-09-18 2024-10-11 02:24:21.000 1993-09-18 2024-10-11 02:24:21 +8662 8662 8663 866.2 1732.4 8662 1993-09-19 2024-10-11 02:24:22.000 1993-09-19 2024-10-11 02:24:22 +8663 8663 8664 866.3 1732.6000000000001 8663 1993-09-20 2024-10-11 02:24:23.000 1993-09-20 2024-10-11 02:24:23 +8664 8664 8665 866.4 1732.8000000000002 8664 1993-09-21 2024-10-11 02:24:24.000 1993-09-21 2024-10-11 02:24:24 +8665 8665 8666 866.5 1733 8665 1993-09-22 2024-10-11 02:24:25.000 1993-09-22 2024-10-11 02:24:25 +8666 8666 8667 866.6 1733.2 8666 1993-09-23 2024-10-11 02:24:26.000 1993-09-23 2024-10-11 02:24:26 +8667 8667 8668 866.7 1733.4 8667 1993-09-24 2024-10-11 02:24:27.000 1993-09-24 2024-10-11 02:24:27 +8668 8668 8669 866.8 1733.6000000000001 8668 1993-09-25 2024-10-11 02:24:28.000 1993-09-25 2024-10-11 02:24:28 +8669 8669 8670 866.9 1733.8000000000002 8669 1993-09-26 2024-10-11 02:24:29.000 1993-09-26 2024-10-11 02:24:29 +8670 8670 8671 867 1734 8670 1993-09-27 2024-10-11 02:24:30.000 1993-09-27 2024-10-11 02:24:30 +8671 8671 8672 867.1 1734.2 8671 1993-09-28 2024-10-11 02:24:31.000 1993-09-28 2024-10-11 02:24:31 +8672 8672 8673 867.2 1734.4 8672 1993-09-29 2024-10-11 02:24:32.000 1993-09-29 2024-10-11 02:24:32 +8673 8673 8674 867.3 1734.6000000000001 8673 1993-09-30 2024-10-11 02:24:33.000 1993-09-30 2024-10-11 02:24:33 +8674 8674 8675 867.4 1734.8000000000002 8674 1993-10-01 2024-10-11 02:24:34.000 1993-10-01 2024-10-11 02:24:34 +8675 8675 8676 867.5 1735 8675 1993-10-02 2024-10-11 02:24:35.000 1993-10-02 2024-10-11 02:24:35 +8676 8676 8677 867.6 1735.2 8676 1993-10-03 2024-10-11 02:24:36.000 1993-10-03 2024-10-11 02:24:36 +8677 8677 8678 867.7 1735.4 8677 1993-10-04 2024-10-11 02:24:37.000 1993-10-04 2024-10-11 02:24:37 +8678 8678 8679 867.8 1735.6000000000001 8678 1993-10-05 2024-10-11 02:24:38.000 1993-10-05 2024-10-11 02:24:38 +8679 8679 8680 867.9 1735.8000000000002 8679 1993-10-06 2024-10-11 02:24:39.000 1993-10-06 2024-10-11 02:24:39 +8680 8680 8681 868 1736 8680 1993-10-07 2024-10-11 02:24:40.000 1993-10-07 2024-10-11 02:24:40 +8681 8681 8682 868.1 1736.2 8681 1993-10-08 2024-10-11 02:24:41.000 1993-10-08 2024-10-11 02:24:41 +8682 8682 8683 868.2 1736.4 8682 1993-10-09 2024-10-11 02:24:42.000 1993-10-09 2024-10-11 02:24:42 +8683 8683 8684 868.3 1736.6000000000001 8683 1993-10-10 2024-10-11 02:24:43.000 1993-10-10 2024-10-11 02:24:43 +8684 8684 8685 868.4 1736.8000000000002 8684 1993-10-11 2024-10-11 02:24:44.000 1993-10-11 2024-10-11 02:24:44 +8685 8685 8686 868.5 1737 8685 1993-10-12 2024-10-11 02:24:45.000 1993-10-12 2024-10-11 02:24:45 +8686 8686 8687 868.6 1737.2 8686 1993-10-13 2024-10-11 02:24:46.000 1993-10-13 2024-10-11 02:24:46 +8687 8687 8688 868.7 1737.4 8687 1993-10-14 2024-10-11 02:24:47.000 1993-10-14 2024-10-11 02:24:47 +8688 8688 8689 868.8 1737.6000000000001 8688 1993-10-15 2024-10-11 02:24:48.000 1993-10-15 2024-10-11 02:24:48 +8689 8689 8690 868.9 1737.8000000000002 8689 1993-10-16 2024-10-11 02:24:49.000 1993-10-16 2024-10-11 02:24:49 +8690 8690 8691 869 1738 8690 1993-10-17 2024-10-11 02:24:50.000 1993-10-17 2024-10-11 02:24:50 +8691 8691 8692 869.1 1738.2 8691 1993-10-18 2024-10-11 02:24:51.000 1993-10-18 2024-10-11 02:24:51 +8692 8692 8693 869.2 1738.4 8692 1993-10-19 2024-10-11 02:24:52.000 1993-10-19 2024-10-11 02:24:52 +8693 8693 8694 869.3 1738.6000000000001 8693 1993-10-20 2024-10-11 02:24:53.000 1993-10-20 2024-10-11 02:24:53 +8694 8694 8695 869.4 1738.8000000000002 8694 1993-10-21 2024-10-11 02:24:54.000 1993-10-21 2024-10-11 02:24:54 +8695 8695 8696 869.5 1739 8695 1993-10-22 2024-10-11 02:24:55.000 1993-10-22 2024-10-11 02:24:55 +8696 8696 8697 869.6 1739.2 8696 1993-10-23 2024-10-11 02:24:56.000 1993-10-23 2024-10-11 02:24:56 +8697 8697 8698 869.7 1739.4 8697 1993-10-24 2024-10-11 02:24:57.000 1993-10-24 2024-10-11 02:24:57 +8698 8698 8699 869.8 1739.6000000000001 8698 1993-10-25 2024-10-11 02:24:58.000 1993-10-25 2024-10-11 02:24:58 +8699 8699 8700 869.9 1739.8000000000002 8699 1993-10-26 2024-10-11 02:24:59.000 1993-10-26 2024-10-11 02:24:59 +8700 8700 8701 870 1740 8700 1993-10-27 2024-10-11 02:25:00.000 1993-10-27 2024-10-11 02:25:00 +8701 8701 8702 870.1 1740.2 8701 1993-10-28 2024-10-11 02:25:01.000 1993-10-28 2024-10-11 02:25:01 +8702 8702 8703 870.2 1740.4 8702 1993-10-29 2024-10-11 02:25:02.000 1993-10-29 2024-10-11 02:25:02 +8703 8703 8704 870.3 1740.6000000000001 8703 1993-10-30 2024-10-11 02:25:03.000 1993-10-30 2024-10-11 02:25:03 +8704 8704 8705 870.4 1740.8000000000002 8704 1993-10-31 2024-10-11 02:25:04.000 1993-10-31 2024-10-11 02:25:04 +8705 8705 8706 870.5 1741 8705 1993-11-01 2024-10-11 02:25:05.000 1993-11-01 2024-10-11 02:25:05 +8706 8706 8707 870.6 1741.2 8706 1993-11-02 2024-10-11 02:25:06.000 1993-11-02 2024-10-11 02:25:06 +8707 8707 8708 870.7 1741.4 8707 1993-11-03 2024-10-11 02:25:07.000 1993-11-03 2024-10-11 02:25:07 +8708 8708 8709 870.8 1741.6000000000001 8708 1993-11-04 2024-10-11 02:25:08.000 1993-11-04 2024-10-11 02:25:08 +8709 8709 8710 870.9 1741.8000000000002 8709 1993-11-05 2024-10-11 02:25:09.000 1993-11-05 2024-10-11 02:25:09 +8710 8710 8711 871 1742 8710 1993-11-06 2024-10-11 02:25:10.000 1993-11-06 2024-10-11 02:25:10 +8711 8711 8712 871.1 1742.2 8711 1993-11-07 2024-10-11 02:25:11.000 1993-11-07 2024-10-11 02:25:11 +8712 8712 8713 871.2 1742.4 8712 1993-11-08 2024-10-11 02:25:12.000 1993-11-08 2024-10-11 02:25:12 +8713 8713 8714 871.3 1742.6000000000001 8713 1993-11-09 2024-10-11 02:25:13.000 1993-11-09 2024-10-11 02:25:13 +8714 8714 8715 871.4 1742.8000000000002 8714 1993-11-10 2024-10-11 02:25:14.000 1993-11-10 2024-10-11 02:25:14 +8715 8715 8716 871.5 1743 8715 1993-11-11 2024-10-11 02:25:15.000 1993-11-11 2024-10-11 02:25:15 +8716 8716 8717 871.6 1743.2 8716 1993-11-12 2024-10-11 02:25:16.000 1993-11-12 2024-10-11 02:25:16 +8717 8717 8718 871.7 1743.4 8717 1993-11-13 2024-10-11 02:25:17.000 1993-11-13 2024-10-11 02:25:17 +8718 8718 8719 871.8 1743.6000000000001 8718 1993-11-14 2024-10-11 02:25:18.000 1993-11-14 2024-10-11 02:25:18 +8719 8719 8720 871.9 1743.8000000000002 8719 1993-11-15 2024-10-11 02:25:19.000 1993-11-15 2024-10-11 02:25:19 +8720 8720 8721 872 1744 8720 1993-11-16 2024-10-11 02:25:20.000 1993-11-16 2024-10-11 02:25:20 +8721 8721 8722 872.1 1744.2 8721 1993-11-17 2024-10-11 02:25:21.000 1993-11-17 2024-10-11 02:25:21 +8722 8722 8723 872.2 1744.4 8722 1993-11-18 2024-10-11 02:25:22.000 1993-11-18 2024-10-11 02:25:22 +8723 8723 8724 872.3 1744.6000000000001 8723 1993-11-19 2024-10-11 02:25:23.000 1993-11-19 2024-10-11 02:25:23 +8724 8724 8725 872.4 1744.8000000000002 8724 1993-11-20 2024-10-11 02:25:24.000 1993-11-20 2024-10-11 02:25:24 +8725 8725 8726 872.5 1745 8725 1993-11-21 2024-10-11 02:25:25.000 1993-11-21 2024-10-11 02:25:25 +8726 8726 8727 872.6 1745.2 8726 1993-11-22 2024-10-11 02:25:26.000 1993-11-22 2024-10-11 02:25:26 +8727 8727 8728 872.7 1745.4 8727 1993-11-23 2024-10-11 02:25:27.000 1993-11-23 2024-10-11 02:25:27 +8728 8728 8729 872.8 1745.6000000000001 8728 1993-11-24 2024-10-11 02:25:28.000 1993-11-24 2024-10-11 02:25:28 +8729 8729 8730 872.9 1745.8000000000002 8729 1993-11-25 2024-10-11 02:25:29.000 1993-11-25 2024-10-11 02:25:29 +8730 8730 8731 873 1746 8730 1993-11-26 2024-10-11 02:25:30.000 1993-11-26 2024-10-11 02:25:30 +8731 8731 8732 873.1 1746.2 8731 1993-11-27 2024-10-11 02:25:31.000 1993-11-27 2024-10-11 02:25:31 +8732 8732 8733 873.2 1746.4 8732 1993-11-28 2024-10-11 02:25:32.000 1993-11-28 2024-10-11 02:25:32 +8733 8733 8734 873.3 1746.6000000000001 8733 1993-11-29 2024-10-11 02:25:33.000 1993-11-29 2024-10-11 02:25:33 +8734 8734 8735 873.4 1746.8000000000002 8734 1993-11-30 2024-10-11 02:25:34.000 1993-11-30 2024-10-11 02:25:34 +8735 8735 8736 873.5 1747 8735 1993-12-01 2024-10-11 02:25:35.000 1993-12-01 2024-10-11 02:25:35 +8736 8736 8737 873.6 1747.2 8736 1993-12-02 2024-10-11 02:25:36.000 1993-12-02 2024-10-11 02:25:36 +8737 8737 8738 873.7 1747.4 8737 1993-12-03 2024-10-11 02:25:37.000 1993-12-03 2024-10-11 02:25:37 +8738 8738 8739 873.8 1747.6000000000001 8738 1993-12-04 2024-10-11 02:25:38.000 1993-12-04 2024-10-11 02:25:38 +8739 8739 8740 873.9 1747.8000000000002 8739 1993-12-05 2024-10-11 02:25:39.000 1993-12-05 2024-10-11 02:25:39 +8740 8740 8741 874 1748 8740 1993-12-06 2024-10-11 02:25:40.000 1993-12-06 2024-10-11 02:25:40 +8741 8741 8742 874.1 1748.2 8741 1993-12-07 2024-10-11 02:25:41.000 1993-12-07 2024-10-11 02:25:41 +8742 8742 8743 874.2 1748.4 8742 1993-12-08 2024-10-11 02:25:42.000 1993-12-08 2024-10-11 02:25:42 +8743 8743 8744 874.3 1748.6000000000001 8743 1993-12-09 2024-10-11 02:25:43.000 1993-12-09 2024-10-11 02:25:43 +8744 8744 8745 874.4 1748.8000000000002 8744 1993-12-10 2024-10-11 02:25:44.000 1993-12-10 2024-10-11 02:25:44 +8745 8745 8746 874.5 1749 8745 1993-12-11 2024-10-11 02:25:45.000 1993-12-11 2024-10-11 02:25:45 +8746 8746 8747 874.6 1749.2 8746 1993-12-12 2024-10-11 02:25:46.000 1993-12-12 2024-10-11 02:25:46 +8747 8747 8748 874.7 1749.4 8747 1993-12-13 2024-10-11 02:25:47.000 1993-12-13 2024-10-11 02:25:47 +8748 8748 8749 874.8 1749.6000000000001 8748 1993-12-14 2024-10-11 02:25:48.000 1993-12-14 2024-10-11 02:25:48 +8749 8749 8750 874.9 1749.8000000000002 8749 1993-12-15 2024-10-11 02:25:49.000 1993-12-15 2024-10-11 02:25:49 +8750 8750 8751 875 1750 8750 1993-12-16 2024-10-11 02:25:50.000 1993-12-16 2024-10-11 02:25:50 +8751 8751 8752 875.1 1750.2 8751 1993-12-17 2024-10-11 02:25:51.000 1993-12-17 2024-10-11 02:25:51 +8752 8752 8753 875.2 1750.4 8752 1993-12-18 2024-10-11 02:25:52.000 1993-12-18 2024-10-11 02:25:52 +8753 8753 8754 875.3 1750.6000000000001 8753 1993-12-19 2024-10-11 02:25:53.000 1993-12-19 2024-10-11 02:25:53 +8754 8754 8755 875.4 1750.8000000000002 8754 1993-12-20 2024-10-11 02:25:54.000 1993-12-20 2024-10-11 02:25:54 +8755 8755 8756 875.5 1751 8755 1993-12-21 2024-10-11 02:25:55.000 1993-12-21 2024-10-11 02:25:55 +8756 8756 8757 875.6 1751.2 8756 1993-12-22 2024-10-11 02:25:56.000 1993-12-22 2024-10-11 02:25:56 +8757 8757 8758 875.7 1751.4 8757 1993-12-23 2024-10-11 02:25:57.000 1993-12-23 2024-10-11 02:25:57 +8758 8758 8759 875.8 1751.6000000000001 8758 1993-12-24 2024-10-11 02:25:58.000 1993-12-24 2024-10-11 02:25:58 +8759 8759 8760 875.9 1751.8000000000002 8759 1993-12-25 2024-10-11 02:25:59.000 1993-12-25 2024-10-11 02:25:59 +8760 8760 8761 876 1752 8760 1993-12-26 2024-10-11 02:26:00.000 1993-12-26 2024-10-11 02:26:00 +8761 8761 8762 876.1 1752.2 8761 1993-12-27 2024-10-11 02:26:01.000 1993-12-27 2024-10-11 02:26:01 +8762 8762 8763 876.2 1752.4 8762 1993-12-28 2024-10-11 02:26:02.000 1993-12-28 2024-10-11 02:26:02 +8763 8763 8764 876.3 1752.6000000000001 8763 1993-12-29 2024-10-11 02:26:03.000 1993-12-29 2024-10-11 02:26:03 +8764 8764 8765 876.4 1752.8000000000002 8764 1993-12-30 2024-10-11 02:26:04.000 1993-12-30 2024-10-11 02:26:04 +8765 8765 8766 876.5 1753 8765 1993-12-31 2024-10-11 02:26:05.000 1993-12-31 2024-10-11 02:26:05 +8766 8766 8767 876.6 1753.2 8766 1994-01-01 2024-10-11 02:26:06.000 1994-01-01 2024-10-11 02:26:06 +8767 8767 8768 876.7 1753.4 8767 1994-01-02 2024-10-11 02:26:07.000 1994-01-02 2024-10-11 02:26:07 +8768 8768 8769 876.8 1753.6000000000001 8768 1994-01-03 2024-10-11 02:26:08.000 1994-01-03 2024-10-11 02:26:08 +8769 8769 8770 876.9 1753.8000000000002 8769 1994-01-04 2024-10-11 02:26:09.000 1994-01-04 2024-10-11 02:26:09 +8770 8770 8771 877 1754 8770 1994-01-05 2024-10-11 02:26:10.000 1994-01-05 2024-10-11 02:26:10 +8771 8771 8772 877.1 1754.2 8771 1994-01-06 2024-10-11 02:26:11.000 1994-01-06 2024-10-11 02:26:11 +8772 8772 8773 877.2 1754.4 8772 1994-01-07 2024-10-11 02:26:12.000 1994-01-07 2024-10-11 02:26:12 +8773 8773 8774 877.3 1754.6000000000001 8773 1994-01-08 2024-10-11 02:26:13.000 1994-01-08 2024-10-11 02:26:13 +8774 8774 8775 877.4 1754.8000000000002 8774 1994-01-09 2024-10-11 02:26:14.000 1994-01-09 2024-10-11 02:26:14 +8775 8775 8776 877.5 1755 8775 1994-01-10 2024-10-11 02:26:15.000 1994-01-10 2024-10-11 02:26:15 +8776 8776 8777 877.6 1755.2 8776 1994-01-11 2024-10-11 02:26:16.000 1994-01-11 2024-10-11 02:26:16 +8777 8777 8778 877.7 1755.4 8777 1994-01-12 2024-10-11 02:26:17.000 1994-01-12 2024-10-11 02:26:17 +8778 8778 8779 877.8 1755.6000000000001 8778 1994-01-13 2024-10-11 02:26:18.000 1994-01-13 2024-10-11 02:26:18 +8779 8779 8780 877.9 1755.8000000000002 8779 1994-01-14 2024-10-11 02:26:19.000 1994-01-14 2024-10-11 02:26:19 +8780 8780 8781 878 1756 8780 1994-01-15 2024-10-11 02:26:20.000 1994-01-15 2024-10-11 02:26:20 +8781 8781 8782 878.1 1756.2 8781 1994-01-16 2024-10-11 02:26:21.000 1994-01-16 2024-10-11 02:26:21 +8782 8782 8783 878.2 1756.4 8782 1994-01-17 2024-10-11 02:26:22.000 1994-01-17 2024-10-11 02:26:22 +8783 8783 8784 878.3 1756.6000000000001 8783 1994-01-18 2024-10-11 02:26:23.000 1994-01-18 2024-10-11 02:26:23 +8784 8784 8785 878.4 1756.8000000000002 8784 1994-01-19 2024-10-11 02:26:24.000 1994-01-19 2024-10-11 02:26:24 +8785 8785 8786 878.5 1757 8785 1994-01-20 2024-10-11 02:26:25.000 1994-01-20 2024-10-11 02:26:25 +8786 8786 8787 878.6 1757.2 8786 1994-01-21 2024-10-11 02:26:26.000 1994-01-21 2024-10-11 02:26:26 +8787 8787 8788 878.7 1757.4 8787 1994-01-22 2024-10-11 02:26:27.000 1994-01-22 2024-10-11 02:26:27 +8788 8788 8789 878.8 1757.6000000000001 8788 1994-01-23 2024-10-11 02:26:28.000 1994-01-23 2024-10-11 02:26:28 +8789 8789 8790 878.9 1757.8000000000002 8789 1994-01-24 2024-10-11 02:26:29.000 1994-01-24 2024-10-11 02:26:29 +8790 8790 8791 879 1758 8790 1994-01-25 2024-10-11 02:26:30.000 1994-01-25 2024-10-11 02:26:30 +8791 8791 8792 879.1 1758.2 8791 1994-01-26 2024-10-11 02:26:31.000 1994-01-26 2024-10-11 02:26:31 +8792 8792 8793 879.2 1758.4 8792 1994-01-27 2024-10-11 02:26:32.000 1994-01-27 2024-10-11 02:26:32 +8793 8793 8794 879.3 1758.6000000000001 8793 1994-01-28 2024-10-11 02:26:33.000 1994-01-28 2024-10-11 02:26:33 +8794 8794 8795 879.4 1758.8000000000002 8794 1994-01-29 2024-10-11 02:26:34.000 1994-01-29 2024-10-11 02:26:34 +8795 8795 8796 879.5 1759 8795 1994-01-30 2024-10-11 02:26:35.000 1994-01-30 2024-10-11 02:26:35 +8796 8796 8797 879.6 1759.2 8796 1994-01-31 2024-10-11 02:26:36.000 1994-01-31 2024-10-11 02:26:36 +8797 8797 8798 879.7 1759.4 8797 1994-02-01 2024-10-11 02:26:37.000 1994-02-01 2024-10-11 02:26:37 +8798 8798 8799 879.8 1759.6000000000001 8798 1994-02-02 2024-10-11 02:26:38.000 1994-02-02 2024-10-11 02:26:38 +8799 8799 8800 879.9 1759.8000000000002 8799 1994-02-03 2024-10-11 02:26:39.000 1994-02-03 2024-10-11 02:26:39 +8800 8800 8801 880 1760 8800 1994-02-04 2024-10-11 02:26:40.000 1994-02-04 2024-10-11 02:26:40 +8801 8801 8802 880.1 1760.2 8801 1994-02-05 2024-10-11 02:26:41.000 1994-02-05 2024-10-11 02:26:41 +8802 8802 8803 880.2 1760.4 8802 1994-02-06 2024-10-11 02:26:42.000 1994-02-06 2024-10-11 02:26:42 +8803 8803 8804 880.3 1760.6000000000001 8803 1994-02-07 2024-10-11 02:26:43.000 1994-02-07 2024-10-11 02:26:43 +8804 8804 8805 880.4 1760.8000000000002 8804 1994-02-08 2024-10-11 02:26:44.000 1994-02-08 2024-10-11 02:26:44 +8805 8805 8806 880.5 1761 8805 1994-02-09 2024-10-11 02:26:45.000 1994-02-09 2024-10-11 02:26:45 +8806 8806 8807 880.6 1761.2 8806 1994-02-10 2024-10-11 02:26:46.000 1994-02-10 2024-10-11 02:26:46 +8807 8807 8808 880.7 1761.4 8807 1994-02-11 2024-10-11 02:26:47.000 1994-02-11 2024-10-11 02:26:47 +8808 8808 8809 880.8 1761.6000000000001 8808 1994-02-12 2024-10-11 02:26:48.000 1994-02-12 2024-10-11 02:26:48 +8809 8809 8810 880.9 1761.8000000000002 8809 1994-02-13 2024-10-11 02:26:49.000 1994-02-13 2024-10-11 02:26:49 +8810 8810 8811 881 1762 8810 1994-02-14 2024-10-11 02:26:50.000 1994-02-14 2024-10-11 02:26:50 +8811 8811 8812 881.1 1762.2 8811 1994-02-15 2024-10-11 02:26:51.000 1994-02-15 2024-10-11 02:26:51 +8812 8812 8813 881.2 1762.4 8812 1994-02-16 2024-10-11 02:26:52.000 1994-02-16 2024-10-11 02:26:52 +8813 8813 8814 881.3 1762.6000000000001 8813 1994-02-17 2024-10-11 02:26:53.000 1994-02-17 2024-10-11 02:26:53 +8814 8814 8815 881.4 1762.8000000000002 8814 1994-02-18 2024-10-11 02:26:54.000 1994-02-18 2024-10-11 02:26:54 +8815 8815 8816 881.5 1763 8815 1994-02-19 2024-10-11 02:26:55.000 1994-02-19 2024-10-11 02:26:55 +8816 8816 8817 881.6 1763.2 8816 1994-02-20 2024-10-11 02:26:56.000 1994-02-20 2024-10-11 02:26:56 +8817 8817 8818 881.7 1763.4 8817 1994-02-21 2024-10-11 02:26:57.000 1994-02-21 2024-10-11 02:26:57 +8818 8818 8819 881.8 1763.6000000000001 8818 1994-02-22 2024-10-11 02:26:58.000 1994-02-22 2024-10-11 02:26:58 +8819 8819 8820 881.9 1763.8000000000002 8819 1994-02-23 2024-10-11 02:26:59.000 1994-02-23 2024-10-11 02:26:59 +8820 8820 8821 882 1764 8820 1994-02-24 2024-10-11 02:27:00.000 1994-02-24 2024-10-11 02:27:00 +8821 8821 8822 882.1 1764.2 8821 1994-02-25 2024-10-11 02:27:01.000 1994-02-25 2024-10-11 02:27:01 +8822 8822 8823 882.2 1764.4 8822 1994-02-26 2024-10-11 02:27:02.000 1994-02-26 2024-10-11 02:27:02 +8823 8823 8824 882.3 1764.6000000000001 8823 1994-02-27 2024-10-11 02:27:03.000 1994-02-27 2024-10-11 02:27:03 +8824 8824 8825 882.4 1764.8000000000002 8824 1994-02-28 2024-10-11 02:27:04.000 1994-02-28 2024-10-11 02:27:04 +8825 8825 8826 882.5 1765 8825 1994-03-01 2024-10-11 02:27:05.000 1994-03-01 2024-10-11 02:27:05 +8826 8826 8827 882.6 1765.2 8826 1994-03-02 2024-10-11 02:27:06.000 1994-03-02 2024-10-11 02:27:06 +8827 8827 8828 882.7 1765.4 8827 1994-03-03 2024-10-11 02:27:07.000 1994-03-03 2024-10-11 02:27:07 +8828 8828 8829 882.8 1765.6000000000001 8828 1994-03-04 2024-10-11 02:27:08.000 1994-03-04 2024-10-11 02:27:08 +8829 8829 8830 882.9 1765.8000000000002 8829 1994-03-05 2024-10-11 02:27:09.000 1994-03-05 2024-10-11 02:27:09 +8830 8830 8831 883 1766 8830 1994-03-06 2024-10-11 02:27:10.000 1994-03-06 2024-10-11 02:27:10 +8831 8831 8832 883.1 1766.2 8831 1994-03-07 2024-10-11 02:27:11.000 1994-03-07 2024-10-11 02:27:11 +8832 8832 8833 883.2 1766.4 8832 1994-03-08 2024-10-11 02:27:12.000 1994-03-08 2024-10-11 02:27:12 +8833 8833 8834 883.3 1766.6000000000001 8833 1994-03-09 2024-10-11 02:27:13.000 1994-03-09 2024-10-11 02:27:13 +8834 8834 8835 883.4 1766.8000000000002 8834 1994-03-10 2024-10-11 02:27:14.000 1994-03-10 2024-10-11 02:27:14 +8835 8835 8836 883.5 1767 8835 1994-03-11 2024-10-11 02:27:15.000 1994-03-11 2024-10-11 02:27:15 +8836 8836 8837 883.6 1767.2 8836 1994-03-12 2024-10-11 02:27:16.000 1994-03-12 2024-10-11 02:27:16 +8837 8837 8838 883.7 1767.4 8837 1994-03-13 2024-10-11 02:27:17.000 1994-03-13 2024-10-11 02:27:17 +8838 8838 8839 883.8 1767.6000000000001 8838 1994-03-14 2024-10-11 02:27:18.000 1994-03-14 2024-10-11 02:27:18 +8839 8839 8840 883.9 1767.8000000000002 8839 1994-03-15 2024-10-11 02:27:19.000 1994-03-15 2024-10-11 02:27:19 +8840 8840 8841 884 1768 8840 1994-03-16 2024-10-11 02:27:20.000 1994-03-16 2024-10-11 02:27:20 +8841 8841 8842 884.1 1768.2 8841 1994-03-17 2024-10-11 02:27:21.000 1994-03-17 2024-10-11 02:27:21 +8842 8842 8843 884.2 1768.4 8842 1994-03-18 2024-10-11 02:27:22.000 1994-03-18 2024-10-11 02:27:22 +8843 8843 8844 884.3 1768.6000000000001 8843 1994-03-19 2024-10-11 02:27:23.000 1994-03-19 2024-10-11 02:27:23 +8844 8844 8845 884.4 1768.8000000000002 8844 1994-03-20 2024-10-11 02:27:24.000 1994-03-20 2024-10-11 02:27:24 +8845 8845 8846 884.5 1769 8845 1994-03-21 2024-10-11 02:27:25.000 1994-03-21 2024-10-11 02:27:25 +8846 8846 8847 884.6 1769.2 8846 1994-03-22 2024-10-11 02:27:26.000 1994-03-22 2024-10-11 02:27:26 +8847 8847 8848 884.7 1769.4 8847 1994-03-23 2024-10-11 02:27:27.000 1994-03-23 2024-10-11 02:27:27 +8848 8848 8849 884.8 1769.6000000000001 8848 1994-03-24 2024-10-11 02:27:28.000 1994-03-24 2024-10-11 02:27:28 +8849 8849 8850 884.9 1769.8000000000002 8849 1994-03-25 2024-10-11 02:27:29.000 1994-03-25 2024-10-11 02:27:29 +8850 8850 8851 885 1770 8850 1994-03-26 2024-10-11 02:27:30.000 1994-03-26 2024-10-11 02:27:30 +8851 8851 8852 885.1 1770.2 8851 1994-03-27 2024-10-11 02:27:31.000 1994-03-27 2024-10-11 02:27:31 +8852 8852 8853 885.2 1770.4 8852 1994-03-28 2024-10-11 02:27:32.000 1994-03-28 2024-10-11 02:27:32 +8853 8853 8854 885.3 1770.6000000000001 8853 1994-03-29 2024-10-11 02:27:33.000 1994-03-29 2024-10-11 02:27:33 +8854 8854 8855 885.4 1770.8000000000002 8854 1994-03-30 2024-10-11 02:27:34.000 1994-03-30 2024-10-11 02:27:34 +8855 8855 8856 885.5 1771 8855 1994-03-31 2024-10-11 02:27:35.000 1994-03-31 2024-10-11 02:27:35 +8856 8856 8857 885.6 1771.2 8856 1994-04-01 2024-10-11 02:27:36.000 1994-04-01 2024-10-11 02:27:36 +8857 8857 8858 885.7 1771.4 8857 1994-04-02 2024-10-11 02:27:37.000 1994-04-02 2024-10-11 02:27:37 +8858 8858 8859 885.8 1771.6000000000001 8858 1994-04-03 2024-10-11 02:27:38.000 1994-04-03 2024-10-11 02:27:38 +8859 8859 8860 885.9 1771.8000000000002 8859 1994-04-04 2024-10-11 02:27:39.000 1994-04-04 2024-10-11 02:27:39 +8860 8860 8861 886 1772 8860 1994-04-05 2024-10-11 02:27:40.000 1994-04-05 2024-10-11 02:27:40 +8861 8861 8862 886.1 1772.2 8861 1994-04-06 2024-10-11 02:27:41.000 1994-04-06 2024-10-11 02:27:41 +8862 8862 8863 886.2 1772.4 8862 1994-04-07 2024-10-11 02:27:42.000 1994-04-07 2024-10-11 02:27:42 +8863 8863 8864 886.3 1772.6000000000001 8863 1994-04-08 2024-10-11 02:27:43.000 1994-04-08 2024-10-11 02:27:43 +8864 8864 8865 886.4 1772.8000000000002 8864 1994-04-09 2024-10-11 02:27:44.000 1994-04-09 2024-10-11 02:27:44 +8865 8865 8866 886.5 1773 8865 1994-04-10 2024-10-11 02:27:45.000 1994-04-10 2024-10-11 02:27:45 +8866 8866 8867 886.6 1773.2 8866 1994-04-11 2024-10-11 02:27:46.000 1994-04-11 2024-10-11 02:27:46 +8867 8867 8868 886.7 1773.4 8867 1994-04-12 2024-10-11 02:27:47.000 1994-04-12 2024-10-11 02:27:47 +8868 8868 8869 886.8 1773.6000000000001 8868 1994-04-13 2024-10-11 02:27:48.000 1994-04-13 2024-10-11 02:27:48 +8869 8869 8870 886.9 1773.8000000000002 8869 1994-04-14 2024-10-11 02:27:49.000 1994-04-14 2024-10-11 02:27:49 +8870 8870 8871 887 1774 8870 1994-04-15 2024-10-11 02:27:50.000 1994-04-15 2024-10-11 02:27:50 +8871 8871 8872 887.1 1774.2 8871 1994-04-16 2024-10-11 02:27:51.000 1994-04-16 2024-10-11 02:27:51 +8872 8872 8873 887.2 1774.4 8872 1994-04-17 2024-10-11 02:27:52.000 1994-04-17 2024-10-11 02:27:52 +8873 8873 8874 887.3 1774.6000000000001 8873 1994-04-18 2024-10-11 02:27:53.000 1994-04-18 2024-10-11 02:27:53 +8874 8874 8875 887.4 1774.8000000000002 8874 1994-04-19 2024-10-11 02:27:54.000 1994-04-19 2024-10-11 02:27:54 +8875 8875 8876 887.5 1775 8875 1994-04-20 2024-10-11 02:27:55.000 1994-04-20 2024-10-11 02:27:55 +8876 8876 8877 887.6 1775.2 8876 1994-04-21 2024-10-11 02:27:56.000 1994-04-21 2024-10-11 02:27:56 +8877 8877 8878 887.7 1775.4 8877 1994-04-22 2024-10-11 02:27:57.000 1994-04-22 2024-10-11 02:27:57 +8878 8878 8879 887.8 1775.6000000000001 8878 1994-04-23 2024-10-11 02:27:58.000 1994-04-23 2024-10-11 02:27:58 +8879 8879 8880 887.9 1775.8000000000002 8879 1994-04-24 2024-10-11 02:27:59.000 1994-04-24 2024-10-11 02:27:59 +8880 8880 8881 888 1776 8880 1994-04-25 2024-10-11 02:28:00.000 1994-04-25 2024-10-11 02:28:00 +8881 8881 8882 888.1 1776.2 8881 1994-04-26 2024-10-11 02:28:01.000 1994-04-26 2024-10-11 02:28:01 +8882 8882 8883 888.2 1776.4 8882 1994-04-27 2024-10-11 02:28:02.000 1994-04-27 2024-10-11 02:28:02 +8883 8883 8884 888.3 1776.6000000000001 8883 1994-04-28 2024-10-11 02:28:03.000 1994-04-28 2024-10-11 02:28:03 +8884 8884 8885 888.4 1776.8000000000002 8884 1994-04-29 2024-10-11 02:28:04.000 1994-04-29 2024-10-11 02:28:04 +8885 8885 8886 888.5 1777 8885 1994-04-30 2024-10-11 02:28:05.000 1994-04-30 2024-10-11 02:28:05 +8886 8886 8887 888.6 1777.2 8886 1994-05-01 2024-10-11 02:28:06.000 1994-05-01 2024-10-11 02:28:06 +8887 8887 8888 888.7 1777.4 8887 1994-05-02 2024-10-11 02:28:07.000 1994-05-02 2024-10-11 02:28:07 +8888 8888 8889 888.8 1777.6000000000001 8888 1994-05-03 2024-10-11 02:28:08.000 1994-05-03 2024-10-11 02:28:08 +8889 8889 8890 888.9 1777.8000000000002 8889 1994-05-04 2024-10-11 02:28:09.000 1994-05-04 2024-10-11 02:28:09 +8890 8890 8891 889 1778 8890 1994-05-05 2024-10-11 02:28:10.000 1994-05-05 2024-10-11 02:28:10 +8891 8891 8892 889.1 1778.2 8891 1994-05-06 2024-10-11 02:28:11.000 1994-05-06 2024-10-11 02:28:11 +8892 8892 8893 889.2 1778.4 8892 1994-05-07 2024-10-11 02:28:12.000 1994-05-07 2024-10-11 02:28:12 +8893 8893 8894 889.3 1778.6000000000001 8893 1994-05-08 2024-10-11 02:28:13.000 1994-05-08 2024-10-11 02:28:13 +8894 8894 8895 889.4 1778.8000000000002 8894 1994-05-09 2024-10-11 02:28:14.000 1994-05-09 2024-10-11 02:28:14 +8895 8895 8896 889.5 1779 8895 1994-05-10 2024-10-11 02:28:15.000 1994-05-10 2024-10-11 02:28:15 +8896 8896 8897 889.6 1779.2 8896 1994-05-11 2024-10-11 02:28:16.000 1994-05-11 2024-10-11 02:28:16 +8897 8897 8898 889.7 1779.4 8897 1994-05-12 2024-10-11 02:28:17.000 1994-05-12 2024-10-11 02:28:17 +8898 8898 8899 889.8 1779.6000000000001 8898 1994-05-13 2024-10-11 02:28:18.000 1994-05-13 2024-10-11 02:28:18 +8899 8899 8900 889.9 1779.8000000000002 8899 1994-05-14 2024-10-11 02:28:19.000 1994-05-14 2024-10-11 02:28:19 +8900 8900 8901 890 1780 8900 1994-05-15 2024-10-11 02:28:20.000 1994-05-15 2024-10-11 02:28:20 +8901 8901 8902 890.1 1780.2 8901 1994-05-16 2024-10-11 02:28:21.000 1994-05-16 2024-10-11 02:28:21 +8902 8902 8903 890.2 1780.4 8902 1994-05-17 2024-10-11 02:28:22.000 1994-05-17 2024-10-11 02:28:22 +8903 8903 8904 890.3 1780.6000000000001 8903 1994-05-18 2024-10-11 02:28:23.000 1994-05-18 2024-10-11 02:28:23 +8904 8904 8905 890.4 1780.8000000000002 8904 1994-05-19 2024-10-11 02:28:24.000 1994-05-19 2024-10-11 02:28:24 +8905 8905 8906 890.5 1781 8905 1994-05-20 2024-10-11 02:28:25.000 1994-05-20 2024-10-11 02:28:25 +8906 8906 8907 890.6 1781.2 8906 1994-05-21 2024-10-11 02:28:26.000 1994-05-21 2024-10-11 02:28:26 +8907 8907 8908 890.7 1781.4 8907 1994-05-22 2024-10-11 02:28:27.000 1994-05-22 2024-10-11 02:28:27 +8908 8908 8909 890.8 1781.6000000000001 8908 1994-05-23 2024-10-11 02:28:28.000 1994-05-23 2024-10-11 02:28:28 +8909 8909 8910 890.9 1781.8000000000002 8909 1994-05-24 2024-10-11 02:28:29.000 1994-05-24 2024-10-11 02:28:29 +8910 8910 8911 891 1782 8910 1994-05-25 2024-10-11 02:28:30.000 1994-05-25 2024-10-11 02:28:30 +8911 8911 8912 891.1 1782.2 8911 1994-05-26 2024-10-11 02:28:31.000 1994-05-26 2024-10-11 02:28:31 +8912 8912 8913 891.2 1782.4 8912 1994-05-27 2024-10-11 02:28:32.000 1994-05-27 2024-10-11 02:28:32 +8913 8913 8914 891.3 1782.6000000000001 8913 1994-05-28 2024-10-11 02:28:33.000 1994-05-28 2024-10-11 02:28:33 +8914 8914 8915 891.4 1782.8000000000002 8914 1994-05-29 2024-10-11 02:28:34.000 1994-05-29 2024-10-11 02:28:34 +8915 8915 8916 891.5 1783 8915 1994-05-30 2024-10-11 02:28:35.000 1994-05-30 2024-10-11 02:28:35 +8916 8916 8917 891.6 1783.2 8916 1994-05-31 2024-10-11 02:28:36.000 1994-05-31 2024-10-11 02:28:36 +8917 8917 8918 891.7 1783.4 8917 1994-06-01 2024-10-11 02:28:37.000 1994-06-01 2024-10-11 02:28:37 +8918 8918 8919 891.8 1783.6000000000001 8918 1994-06-02 2024-10-11 02:28:38.000 1994-06-02 2024-10-11 02:28:38 +8919 8919 8920 891.9 1783.8000000000002 8919 1994-06-03 2024-10-11 02:28:39.000 1994-06-03 2024-10-11 02:28:39 +8920 8920 8921 892 1784 8920 1994-06-04 2024-10-11 02:28:40.000 1994-06-04 2024-10-11 02:28:40 +8921 8921 8922 892.1 1784.2 8921 1994-06-05 2024-10-11 02:28:41.000 1994-06-05 2024-10-11 02:28:41 +8922 8922 8923 892.2 1784.4 8922 1994-06-06 2024-10-11 02:28:42.000 1994-06-06 2024-10-11 02:28:42 +8923 8923 8924 892.3 1784.6000000000001 8923 1994-06-07 2024-10-11 02:28:43.000 1994-06-07 2024-10-11 02:28:43 +8924 8924 8925 892.4 1784.8000000000002 8924 1994-06-08 2024-10-11 02:28:44.000 1994-06-08 2024-10-11 02:28:44 +8925 8925 8926 892.5 1785 8925 1994-06-09 2024-10-11 02:28:45.000 1994-06-09 2024-10-11 02:28:45 +8926 8926 8927 892.6 1785.2 8926 1994-06-10 2024-10-11 02:28:46.000 1994-06-10 2024-10-11 02:28:46 +8927 8927 8928 892.7 1785.4 8927 1994-06-11 2024-10-11 02:28:47.000 1994-06-11 2024-10-11 02:28:47 +8928 8928 8929 892.8 1785.6000000000001 8928 1994-06-12 2024-10-11 02:28:48.000 1994-06-12 2024-10-11 02:28:48 +8929 8929 8930 892.9 1785.8000000000002 8929 1994-06-13 2024-10-11 02:28:49.000 1994-06-13 2024-10-11 02:28:49 +8930 8930 8931 893 1786 8930 1994-06-14 2024-10-11 02:28:50.000 1994-06-14 2024-10-11 02:28:50 +8931 8931 8932 893.1 1786.2 8931 1994-06-15 2024-10-11 02:28:51.000 1994-06-15 2024-10-11 02:28:51 +8932 8932 8933 893.2 1786.4 8932 1994-06-16 2024-10-11 02:28:52.000 1994-06-16 2024-10-11 02:28:52 +8933 8933 8934 893.3 1786.6000000000001 8933 1994-06-17 2024-10-11 02:28:53.000 1994-06-17 2024-10-11 02:28:53 +8934 8934 8935 893.4 1786.8000000000002 8934 1994-06-18 2024-10-11 02:28:54.000 1994-06-18 2024-10-11 02:28:54 +8935 8935 8936 893.5 1787 8935 1994-06-19 2024-10-11 02:28:55.000 1994-06-19 2024-10-11 02:28:55 +8936 8936 8937 893.6 1787.2 8936 1994-06-20 2024-10-11 02:28:56.000 1994-06-20 2024-10-11 02:28:56 +8937 8937 8938 893.7 1787.4 8937 1994-06-21 2024-10-11 02:28:57.000 1994-06-21 2024-10-11 02:28:57 +8938 8938 8939 893.8 1787.6000000000001 8938 1994-06-22 2024-10-11 02:28:58.000 1994-06-22 2024-10-11 02:28:58 +8939 8939 8940 893.9 1787.8000000000002 8939 1994-06-23 2024-10-11 02:28:59.000 1994-06-23 2024-10-11 02:28:59 +8940 8940 8941 894 1788 8940 1994-06-24 2024-10-11 02:29:00.000 1994-06-24 2024-10-11 02:29:00 +8941 8941 8942 894.1 1788.2 8941 1994-06-25 2024-10-11 02:29:01.000 1994-06-25 2024-10-11 02:29:01 +8942 8942 8943 894.2 1788.4 8942 1994-06-26 2024-10-11 02:29:02.000 1994-06-26 2024-10-11 02:29:02 +8943 8943 8944 894.3 1788.6000000000001 8943 1994-06-27 2024-10-11 02:29:03.000 1994-06-27 2024-10-11 02:29:03 +8944 8944 8945 894.4 1788.8000000000002 8944 1994-06-28 2024-10-11 02:29:04.000 1994-06-28 2024-10-11 02:29:04 +8945 8945 8946 894.5 1789 8945 1994-06-29 2024-10-11 02:29:05.000 1994-06-29 2024-10-11 02:29:05 +8946 8946 8947 894.6 1789.2 8946 1994-06-30 2024-10-11 02:29:06.000 1994-06-30 2024-10-11 02:29:06 +8947 8947 8948 894.7 1789.4 8947 1994-07-01 2024-10-11 02:29:07.000 1994-07-01 2024-10-11 02:29:07 +8948 8948 8949 894.8 1789.6000000000001 8948 1994-07-02 2024-10-11 02:29:08.000 1994-07-02 2024-10-11 02:29:08 +8949 8949 8950 894.9 1789.8000000000002 8949 1994-07-03 2024-10-11 02:29:09.000 1994-07-03 2024-10-11 02:29:09 +8950 8950 8951 895 1790 8950 1994-07-04 2024-10-11 02:29:10.000 1994-07-04 2024-10-11 02:29:10 +8951 8951 8952 895.1 1790.2 8951 1994-07-05 2024-10-11 02:29:11.000 1994-07-05 2024-10-11 02:29:11 +8952 8952 8953 895.2 1790.4 8952 1994-07-06 2024-10-11 02:29:12.000 1994-07-06 2024-10-11 02:29:12 +8953 8953 8954 895.3 1790.6000000000001 8953 1994-07-07 2024-10-11 02:29:13.000 1994-07-07 2024-10-11 02:29:13 +8954 8954 8955 895.4 1790.8000000000002 8954 1994-07-08 2024-10-11 02:29:14.000 1994-07-08 2024-10-11 02:29:14 +8955 8955 8956 895.5 1791 8955 1994-07-09 2024-10-11 02:29:15.000 1994-07-09 2024-10-11 02:29:15 +8956 8956 8957 895.6 1791.2 8956 1994-07-10 2024-10-11 02:29:16.000 1994-07-10 2024-10-11 02:29:16 +8957 8957 8958 895.7 1791.4 8957 1994-07-11 2024-10-11 02:29:17.000 1994-07-11 2024-10-11 02:29:17 +8958 8958 8959 895.8 1791.6000000000001 8958 1994-07-12 2024-10-11 02:29:18.000 1994-07-12 2024-10-11 02:29:18 +8959 8959 8960 895.9 1791.8000000000002 8959 1994-07-13 2024-10-11 02:29:19.000 1994-07-13 2024-10-11 02:29:19 +8960 8960 8961 896 1792 8960 1994-07-14 2024-10-11 02:29:20.000 1994-07-14 2024-10-11 02:29:20 +8961 8961 8962 896.1 1792.2 8961 1994-07-15 2024-10-11 02:29:21.000 1994-07-15 2024-10-11 02:29:21 +8962 8962 8963 896.2 1792.4 8962 1994-07-16 2024-10-11 02:29:22.000 1994-07-16 2024-10-11 02:29:22 +8963 8963 8964 896.3 1792.6000000000001 8963 1994-07-17 2024-10-11 02:29:23.000 1994-07-17 2024-10-11 02:29:23 +8964 8964 8965 896.4 1792.8000000000002 8964 1994-07-18 2024-10-11 02:29:24.000 1994-07-18 2024-10-11 02:29:24 +8965 8965 8966 896.5 1793 8965 1994-07-19 2024-10-11 02:29:25.000 1994-07-19 2024-10-11 02:29:25 +8966 8966 8967 896.6 1793.2 8966 1994-07-20 2024-10-11 02:29:26.000 1994-07-20 2024-10-11 02:29:26 +8967 8967 8968 896.7 1793.4 8967 1994-07-21 2024-10-11 02:29:27.000 1994-07-21 2024-10-11 02:29:27 +8968 8968 8969 896.8 1793.6000000000001 8968 1994-07-22 2024-10-11 02:29:28.000 1994-07-22 2024-10-11 02:29:28 +8969 8969 8970 896.9 1793.8000000000002 8969 1994-07-23 2024-10-11 02:29:29.000 1994-07-23 2024-10-11 02:29:29 +8970 8970 8971 897 1794 8970 1994-07-24 2024-10-11 02:29:30.000 1994-07-24 2024-10-11 02:29:30 +8971 8971 8972 897.1 1794.2 8971 1994-07-25 2024-10-11 02:29:31.000 1994-07-25 2024-10-11 02:29:31 +8972 8972 8973 897.2 1794.4 8972 1994-07-26 2024-10-11 02:29:32.000 1994-07-26 2024-10-11 02:29:32 +8973 8973 8974 897.3 1794.6000000000001 8973 1994-07-27 2024-10-11 02:29:33.000 1994-07-27 2024-10-11 02:29:33 +8974 8974 8975 897.4 1794.8000000000002 8974 1994-07-28 2024-10-11 02:29:34.000 1994-07-28 2024-10-11 02:29:34 +8975 8975 8976 897.5 1795 8975 1994-07-29 2024-10-11 02:29:35.000 1994-07-29 2024-10-11 02:29:35 +8976 8976 8977 897.6 1795.2 8976 1994-07-30 2024-10-11 02:29:36.000 1994-07-30 2024-10-11 02:29:36 +8977 8977 8978 897.7 1795.4 8977 1994-07-31 2024-10-11 02:29:37.000 1994-07-31 2024-10-11 02:29:37 +8978 8978 8979 897.8 1795.6000000000001 8978 1994-08-01 2024-10-11 02:29:38.000 1994-08-01 2024-10-11 02:29:38 +8979 8979 8980 897.9 1795.8000000000002 8979 1994-08-02 2024-10-11 02:29:39.000 1994-08-02 2024-10-11 02:29:39 +8980 8980 8981 898 1796 8980 1994-08-03 2024-10-11 02:29:40.000 1994-08-03 2024-10-11 02:29:40 +8981 8981 8982 898.1 1796.2 8981 1994-08-04 2024-10-11 02:29:41.000 1994-08-04 2024-10-11 02:29:41 +8982 8982 8983 898.2 1796.4 8982 1994-08-05 2024-10-11 02:29:42.000 1994-08-05 2024-10-11 02:29:42 +8983 8983 8984 898.3 1796.6000000000001 8983 1994-08-06 2024-10-11 02:29:43.000 1994-08-06 2024-10-11 02:29:43 +8984 8984 8985 898.4 1796.8000000000002 8984 1994-08-07 2024-10-11 02:29:44.000 1994-08-07 2024-10-11 02:29:44 +8985 8985 8986 898.5 1797 8985 1994-08-08 2024-10-11 02:29:45.000 1994-08-08 2024-10-11 02:29:45 +8986 8986 8987 898.6 1797.2 8986 1994-08-09 2024-10-11 02:29:46.000 1994-08-09 2024-10-11 02:29:46 +8987 8987 8988 898.7 1797.4 8987 1994-08-10 2024-10-11 02:29:47.000 1994-08-10 2024-10-11 02:29:47 +8988 8988 8989 898.8 1797.6000000000001 8988 1994-08-11 2024-10-11 02:29:48.000 1994-08-11 2024-10-11 02:29:48 +8989 8989 8990 898.9 1797.8000000000002 8989 1994-08-12 2024-10-11 02:29:49.000 1994-08-12 2024-10-11 02:29:49 +8990 8990 8991 899 1798 8990 1994-08-13 2024-10-11 02:29:50.000 1994-08-13 2024-10-11 02:29:50 +8991 8991 8992 899.1 1798.2 8991 1994-08-14 2024-10-11 02:29:51.000 1994-08-14 2024-10-11 02:29:51 +8992 8992 8993 899.2 1798.4 8992 1994-08-15 2024-10-11 02:29:52.000 1994-08-15 2024-10-11 02:29:52 +8993 8993 8994 899.3 1798.6000000000001 8993 1994-08-16 2024-10-11 02:29:53.000 1994-08-16 2024-10-11 02:29:53 +8994 8994 8995 899.4 1798.8000000000002 8994 1994-08-17 2024-10-11 02:29:54.000 1994-08-17 2024-10-11 02:29:54 +8995 8995 8996 899.5 1799 8995 1994-08-18 2024-10-11 02:29:55.000 1994-08-18 2024-10-11 02:29:55 +8996 8996 8997 899.6 1799.2 8996 1994-08-19 2024-10-11 02:29:56.000 1994-08-19 2024-10-11 02:29:56 +8997 8997 8998 899.7 1799.4 8997 1994-08-20 2024-10-11 02:29:57.000 1994-08-20 2024-10-11 02:29:57 +8998 8998 8999 899.8 1799.6000000000001 8998 1994-08-21 2024-10-11 02:29:58.000 1994-08-21 2024-10-11 02:29:58 +8999 8999 9000 899.9 1799.8000000000002 8999 1994-08-22 2024-10-11 02:29:59.000 1994-08-22 2024-10-11 02:29:59 +9000 9000 9001 900 1800 9000 1994-08-23 2024-10-11 02:30:00.000 1994-08-23 2024-10-11 02:30:00 +9001 9001 9002 900.1 1800.2 9001 1994-08-24 2024-10-11 02:30:01.000 1994-08-24 2024-10-11 02:30:01 +9002 9002 9003 900.2 1800.4 9002 1994-08-25 2024-10-11 02:30:02.000 1994-08-25 2024-10-11 02:30:02 +9003 9003 9004 900.3 1800.6000000000001 9003 1994-08-26 2024-10-11 02:30:03.000 1994-08-26 2024-10-11 02:30:03 +9004 9004 9005 900.4 1800.8000000000002 9004 1994-08-27 2024-10-11 02:30:04.000 1994-08-27 2024-10-11 02:30:04 +9005 9005 9006 900.5 1801 9005 1994-08-28 2024-10-11 02:30:05.000 1994-08-28 2024-10-11 02:30:05 +9006 9006 9007 900.6 1801.2 9006 1994-08-29 2024-10-11 02:30:06.000 1994-08-29 2024-10-11 02:30:06 +9007 9007 9008 900.7 1801.4 9007 1994-08-30 2024-10-11 02:30:07.000 1994-08-30 2024-10-11 02:30:07 +9008 9008 9009 900.8 1801.6000000000001 9008 1994-08-31 2024-10-11 02:30:08.000 1994-08-31 2024-10-11 02:30:08 +9009 9009 9010 900.9 1801.8000000000002 9009 1994-09-01 2024-10-11 02:30:09.000 1994-09-01 2024-10-11 02:30:09 +9010 9010 9011 901 1802 9010 1994-09-02 2024-10-11 02:30:10.000 1994-09-02 2024-10-11 02:30:10 +9011 9011 9012 901.1 1802.2 9011 1994-09-03 2024-10-11 02:30:11.000 1994-09-03 2024-10-11 02:30:11 +9012 9012 9013 901.2 1802.4 9012 1994-09-04 2024-10-11 02:30:12.000 1994-09-04 2024-10-11 02:30:12 +9013 9013 9014 901.3 1802.6000000000001 9013 1994-09-05 2024-10-11 02:30:13.000 1994-09-05 2024-10-11 02:30:13 +9014 9014 9015 901.4 1802.8000000000002 9014 1994-09-06 2024-10-11 02:30:14.000 1994-09-06 2024-10-11 02:30:14 +9015 9015 9016 901.5 1803 9015 1994-09-07 2024-10-11 02:30:15.000 1994-09-07 2024-10-11 02:30:15 +9016 9016 9017 901.6 1803.2 9016 1994-09-08 2024-10-11 02:30:16.000 1994-09-08 2024-10-11 02:30:16 +9017 9017 9018 901.7 1803.4 9017 1994-09-09 2024-10-11 02:30:17.000 1994-09-09 2024-10-11 02:30:17 +9018 9018 9019 901.8 1803.6000000000001 9018 1994-09-10 2024-10-11 02:30:18.000 1994-09-10 2024-10-11 02:30:18 +9019 9019 9020 901.9 1803.8000000000002 9019 1994-09-11 2024-10-11 02:30:19.000 1994-09-11 2024-10-11 02:30:19 +9020 9020 9021 902 1804 9020 1994-09-12 2024-10-11 02:30:20.000 1994-09-12 2024-10-11 02:30:20 +9021 9021 9022 902.1 1804.2 9021 1994-09-13 2024-10-11 02:30:21.000 1994-09-13 2024-10-11 02:30:21 +9022 9022 9023 902.2 1804.4 9022 1994-09-14 2024-10-11 02:30:22.000 1994-09-14 2024-10-11 02:30:22 +9023 9023 9024 902.3 1804.6000000000001 9023 1994-09-15 2024-10-11 02:30:23.000 1994-09-15 2024-10-11 02:30:23 +9024 9024 9025 902.4 1804.8000000000002 9024 1994-09-16 2024-10-11 02:30:24.000 1994-09-16 2024-10-11 02:30:24 +9025 9025 9026 902.5 1805 9025 1994-09-17 2024-10-11 02:30:25.000 1994-09-17 2024-10-11 02:30:25 +9026 9026 9027 902.6 1805.2 9026 1994-09-18 2024-10-11 02:30:26.000 1994-09-18 2024-10-11 02:30:26 +9027 9027 9028 902.7 1805.4 9027 1994-09-19 2024-10-11 02:30:27.000 1994-09-19 2024-10-11 02:30:27 +9028 9028 9029 902.8 1805.6000000000001 9028 1994-09-20 2024-10-11 02:30:28.000 1994-09-20 2024-10-11 02:30:28 +9029 9029 9030 902.9 1805.8000000000002 9029 1994-09-21 2024-10-11 02:30:29.000 1994-09-21 2024-10-11 02:30:29 +9030 9030 9031 903 1806 9030 1994-09-22 2024-10-11 02:30:30.000 1994-09-22 2024-10-11 02:30:30 +9031 9031 9032 903.1 1806.2 9031 1994-09-23 2024-10-11 02:30:31.000 1994-09-23 2024-10-11 02:30:31 +9032 9032 9033 903.2 1806.4 9032 1994-09-24 2024-10-11 02:30:32.000 1994-09-24 2024-10-11 02:30:32 +9033 9033 9034 903.3 1806.6000000000001 9033 1994-09-25 2024-10-11 02:30:33.000 1994-09-25 2024-10-11 02:30:33 +9034 9034 9035 903.4 1806.8000000000002 9034 1994-09-26 2024-10-11 02:30:34.000 1994-09-26 2024-10-11 02:30:34 +9035 9035 9036 903.5 1807 9035 1994-09-27 2024-10-11 02:30:35.000 1994-09-27 2024-10-11 02:30:35 +9036 9036 9037 903.6 1807.2 9036 1994-09-28 2024-10-11 02:30:36.000 1994-09-28 2024-10-11 02:30:36 +9037 9037 9038 903.7 1807.4 9037 1994-09-29 2024-10-11 02:30:37.000 1994-09-29 2024-10-11 02:30:37 +9038 9038 9039 903.8 1807.6000000000001 9038 1994-09-30 2024-10-11 02:30:38.000 1994-09-30 2024-10-11 02:30:38 +9039 9039 9040 903.9 1807.8000000000002 9039 1994-10-01 2024-10-11 02:30:39.000 1994-10-01 2024-10-11 02:30:39 +9040 9040 9041 904 1808 9040 1994-10-02 2024-10-11 02:30:40.000 1994-10-02 2024-10-11 02:30:40 +9041 9041 9042 904.1 1808.2 9041 1994-10-03 2024-10-11 02:30:41.000 1994-10-03 2024-10-11 02:30:41 +9042 9042 9043 904.2 1808.4 9042 1994-10-04 2024-10-11 02:30:42.000 1994-10-04 2024-10-11 02:30:42 +9043 9043 9044 904.3 1808.6000000000001 9043 1994-10-05 2024-10-11 02:30:43.000 1994-10-05 2024-10-11 02:30:43 +9044 9044 9045 904.4 1808.8000000000002 9044 1994-10-06 2024-10-11 02:30:44.000 1994-10-06 2024-10-11 02:30:44 +9045 9045 9046 904.5 1809 9045 1994-10-07 2024-10-11 02:30:45.000 1994-10-07 2024-10-11 02:30:45 +9046 9046 9047 904.6 1809.2 9046 1994-10-08 2024-10-11 02:30:46.000 1994-10-08 2024-10-11 02:30:46 +9047 9047 9048 904.7 1809.4 9047 1994-10-09 2024-10-11 02:30:47.000 1994-10-09 2024-10-11 02:30:47 +9048 9048 9049 904.8 1809.6000000000001 9048 1994-10-10 2024-10-11 02:30:48.000 1994-10-10 2024-10-11 02:30:48 +9049 9049 9050 904.9 1809.8000000000002 9049 1994-10-11 2024-10-11 02:30:49.000 1994-10-11 2024-10-11 02:30:49 +9050 9050 9051 905 1810 9050 1994-10-12 2024-10-11 02:30:50.000 1994-10-12 2024-10-11 02:30:50 +9051 9051 9052 905.1 1810.2 9051 1994-10-13 2024-10-11 02:30:51.000 1994-10-13 2024-10-11 02:30:51 +9052 9052 9053 905.2 1810.4 9052 1994-10-14 2024-10-11 02:30:52.000 1994-10-14 2024-10-11 02:30:52 +9053 9053 9054 905.3 1810.6000000000001 9053 1994-10-15 2024-10-11 02:30:53.000 1994-10-15 2024-10-11 02:30:53 +9054 9054 9055 905.4 1810.8000000000002 9054 1994-10-16 2024-10-11 02:30:54.000 1994-10-16 2024-10-11 02:30:54 +9055 9055 9056 905.5 1811 9055 1994-10-17 2024-10-11 02:30:55.000 1994-10-17 2024-10-11 02:30:55 +9056 9056 9057 905.6 1811.2 9056 1994-10-18 2024-10-11 02:30:56.000 1994-10-18 2024-10-11 02:30:56 +9057 9057 9058 905.7 1811.4 9057 1994-10-19 2024-10-11 02:30:57.000 1994-10-19 2024-10-11 02:30:57 +9058 9058 9059 905.8 1811.6000000000001 9058 1994-10-20 2024-10-11 02:30:58.000 1994-10-20 2024-10-11 02:30:58 +9059 9059 9060 905.9 1811.8000000000002 9059 1994-10-21 2024-10-11 02:30:59.000 1994-10-21 2024-10-11 02:30:59 +9060 9060 9061 906 1812 9060 1994-10-22 2024-10-11 02:31:00.000 1994-10-22 2024-10-11 02:31:00 +9061 9061 9062 906.1 1812.2 9061 1994-10-23 2024-10-11 02:31:01.000 1994-10-23 2024-10-11 02:31:01 +9062 9062 9063 906.2 1812.4 9062 1994-10-24 2024-10-11 02:31:02.000 1994-10-24 2024-10-11 02:31:02 +9063 9063 9064 906.3 1812.6000000000001 9063 1994-10-25 2024-10-11 02:31:03.000 1994-10-25 2024-10-11 02:31:03 +9064 9064 9065 906.4 1812.8000000000002 9064 1994-10-26 2024-10-11 02:31:04.000 1994-10-26 2024-10-11 02:31:04 +9065 9065 9066 906.5 1813 9065 1994-10-27 2024-10-11 02:31:05.000 1994-10-27 2024-10-11 02:31:05 +9066 9066 9067 906.6 1813.2 9066 1994-10-28 2024-10-11 02:31:06.000 1994-10-28 2024-10-11 02:31:06 +9067 9067 9068 906.7 1813.4 9067 1994-10-29 2024-10-11 02:31:07.000 1994-10-29 2024-10-11 02:31:07 +9068 9068 9069 906.8 1813.6000000000001 9068 1994-10-30 2024-10-11 02:31:08.000 1994-10-30 2024-10-11 02:31:08 +9069 9069 9070 906.9 1813.8000000000002 9069 1994-10-31 2024-10-11 02:31:09.000 1994-10-31 2024-10-11 02:31:09 +9070 9070 9071 907 1814 9070 1994-11-01 2024-10-11 02:31:10.000 1994-11-01 2024-10-11 02:31:10 +9071 9071 9072 907.1 1814.2 9071 1994-11-02 2024-10-11 02:31:11.000 1994-11-02 2024-10-11 02:31:11 +9072 9072 9073 907.2 1814.4 9072 1994-11-03 2024-10-11 02:31:12.000 1994-11-03 2024-10-11 02:31:12 +9073 9073 9074 907.3 1814.6000000000001 9073 1994-11-04 2024-10-11 02:31:13.000 1994-11-04 2024-10-11 02:31:13 +9074 9074 9075 907.4 1814.8000000000002 9074 1994-11-05 2024-10-11 02:31:14.000 1994-11-05 2024-10-11 02:31:14 +9075 9075 9076 907.5 1815 9075 1994-11-06 2024-10-11 02:31:15.000 1994-11-06 2024-10-11 02:31:15 +9076 9076 9077 907.6 1815.2 9076 1994-11-07 2024-10-11 02:31:16.000 1994-11-07 2024-10-11 02:31:16 +9077 9077 9078 907.7 1815.4 9077 1994-11-08 2024-10-11 02:31:17.000 1994-11-08 2024-10-11 02:31:17 +9078 9078 9079 907.8 1815.6000000000001 9078 1994-11-09 2024-10-11 02:31:18.000 1994-11-09 2024-10-11 02:31:18 +9079 9079 9080 907.9 1815.8000000000002 9079 1994-11-10 2024-10-11 02:31:19.000 1994-11-10 2024-10-11 02:31:19 +9080 9080 9081 908 1816 9080 1994-11-11 2024-10-11 02:31:20.000 1994-11-11 2024-10-11 02:31:20 +9081 9081 9082 908.1 1816.2 9081 1994-11-12 2024-10-11 02:31:21.000 1994-11-12 2024-10-11 02:31:21 +9082 9082 9083 908.2 1816.4 9082 1994-11-13 2024-10-11 02:31:22.000 1994-11-13 2024-10-11 02:31:22 +9083 9083 9084 908.3 1816.6000000000001 9083 1994-11-14 2024-10-11 02:31:23.000 1994-11-14 2024-10-11 02:31:23 +9084 9084 9085 908.4 1816.8000000000002 9084 1994-11-15 2024-10-11 02:31:24.000 1994-11-15 2024-10-11 02:31:24 +9085 9085 9086 908.5 1817 9085 1994-11-16 2024-10-11 02:31:25.000 1994-11-16 2024-10-11 02:31:25 +9086 9086 9087 908.6 1817.2 9086 1994-11-17 2024-10-11 02:31:26.000 1994-11-17 2024-10-11 02:31:26 +9087 9087 9088 908.7 1817.4 9087 1994-11-18 2024-10-11 02:31:27.000 1994-11-18 2024-10-11 02:31:27 +9088 9088 9089 908.8 1817.6000000000001 9088 1994-11-19 2024-10-11 02:31:28.000 1994-11-19 2024-10-11 02:31:28 +9089 9089 9090 908.9 1817.8000000000002 9089 1994-11-20 2024-10-11 02:31:29.000 1994-11-20 2024-10-11 02:31:29 +9090 9090 9091 909 1818 9090 1994-11-21 2024-10-11 02:31:30.000 1994-11-21 2024-10-11 02:31:30 +9091 9091 9092 909.1 1818.2 9091 1994-11-22 2024-10-11 02:31:31.000 1994-11-22 2024-10-11 02:31:31 +9092 9092 9093 909.2 1818.4 9092 1994-11-23 2024-10-11 02:31:32.000 1994-11-23 2024-10-11 02:31:32 +9093 9093 9094 909.3 1818.6000000000001 9093 1994-11-24 2024-10-11 02:31:33.000 1994-11-24 2024-10-11 02:31:33 +9094 9094 9095 909.4 1818.8000000000002 9094 1994-11-25 2024-10-11 02:31:34.000 1994-11-25 2024-10-11 02:31:34 +9095 9095 9096 909.5 1819 9095 1994-11-26 2024-10-11 02:31:35.000 1994-11-26 2024-10-11 02:31:35 +9096 9096 9097 909.6 1819.2 9096 1994-11-27 2024-10-11 02:31:36.000 1994-11-27 2024-10-11 02:31:36 +9097 9097 9098 909.7 1819.4 9097 1994-11-28 2024-10-11 02:31:37.000 1994-11-28 2024-10-11 02:31:37 +9098 9098 9099 909.8 1819.6000000000001 9098 1994-11-29 2024-10-11 02:31:38.000 1994-11-29 2024-10-11 02:31:38 +9099 9099 9100 909.9 1819.8000000000002 9099 1994-11-30 2024-10-11 02:31:39.000 1994-11-30 2024-10-11 02:31:39 +9100 9100 9101 910 1820 9100 1994-12-01 2024-10-11 02:31:40.000 1994-12-01 2024-10-11 02:31:40 +9101 9101 9102 910.1 1820.2 9101 1994-12-02 2024-10-11 02:31:41.000 1994-12-02 2024-10-11 02:31:41 +9102 9102 9103 910.2 1820.4 9102 1994-12-03 2024-10-11 02:31:42.000 1994-12-03 2024-10-11 02:31:42 +9103 9103 9104 910.3 1820.6000000000001 9103 1994-12-04 2024-10-11 02:31:43.000 1994-12-04 2024-10-11 02:31:43 +9104 9104 9105 910.4 1820.8000000000002 9104 1994-12-05 2024-10-11 02:31:44.000 1994-12-05 2024-10-11 02:31:44 +9105 9105 9106 910.5 1821 9105 1994-12-06 2024-10-11 02:31:45.000 1994-12-06 2024-10-11 02:31:45 +9106 9106 9107 910.6 1821.2 9106 1994-12-07 2024-10-11 02:31:46.000 1994-12-07 2024-10-11 02:31:46 +9107 9107 9108 910.7 1821.4 9107 1994-12-08 2024-10-11 02:31:47.000 1994-12-08 2024-10-11 02:31:47 +9108 9108 9109 910.8 1821.6000000000001 9108 1994-12-09 2024-10-11 02:31:48.000 1994-12-09 2024-10-11 02:31:48 +9109 9109 9110 910.9 1821.8000000000002 9109 1994-12-10 2024-10-11 02:31:49.000 1994-12-10 2024-10-11 02:31:49 +9110 9110 9111 911 1822 9110 1994-12-11 2024-10-11 02:31:50.000 1994-12-11 2024-10-11 02:31:50 +9111 9111 9112 911.1 1822.2 9111 1994-12-12 2024-10-11 02:31:51.000 1994-12-12 2024-10-11 02:31:51 +9112 9112 9113 911.2 1822.4 9112 1994-12-13 2024-10-11 02:31:52.000 1994-12-13 2024-10-11 02:31:52 +9113 9113 9114 911.3 1822.6000000000001 9113 1994-12-14 2024-10-11 02:31:53.000 1994-12-14 2024-10-11 02:31:53 +9114 9114 9115 911.4 1822.8000000000002 9114 1994-12-15 2024-10-11 02:31:54.000 1994-12-15 2024-10-11 02:31:54 +9115 9115 9116 911.5 1823 9115 1994-12-16 2024-10-11 02:31:55.000 1994-12-16 2024-10-11 02:31:55 +9116 9116 9117 911.6 1823.2 9116 1994-12-17 2024-10-11 02:31:56.000 1994-12-17 2024-10-11 02:31:56 +9117 9117 9118 911.7 1823.4 9117 1994-12-18 2024-10-11 02:31:57.000 1994-12-18 2024-10-11 02:31:57 +9118 9118 9119 911.8 1823.6000000000001 9118 1994-12-19 2024-10-11 02:31:58.000 1994-12-19 2024-10-11 02:31:58 +9119 9119 9120 911.9 1823.8000000000002 9119 1994-12-20 2024-10-11 02:31:59.000 1994-12-20 2024-10-11 02:31:59 +9120 9120 9121 912 1824 9120 1994-12-21 2024-10-11 02:32:00.000 1994-12-21 2024-10-11 02:32:00 +9121 9121 9122 912.1 1824.2 9121 1994-12-22 2024-10-11 02:32:01.000 1994-12-22 2024-10-11 02:32:01 +9122 9122 9123 912.2 1824.4 9122 1994-12-23 2024-10-11 02:32:02.000 1994-12-23 2024-10-11 02:32:02 +9123 9123 9124 912.3 1824.6000000000001 9123 1994-12-24 2024-10-11 02:32:03.000 1994-12-24 2024-10-11 02:32:03 +9124 9124 9125 912.4 1824.8000000000002 9124 1994-12-25 2024-10-11 02:32:04.000 1994-12-25 2024-10-11 02:32:04 +9125 9125 9126 912.5 1825 9125 1994-12-26 2024-10-11 02:32:05.000 1994-12-26 2024-10-11 02:32:05 +9126 9126 9127 912.6 1825.2 9126 1994-12-27 2024-10-11 02:32:06.000 1994-12-27 2024-10-11 02:32:06 +9127 9127 9128 912.7 1825.4 9127 1994-12-28 2024-10-11 02:32:07.000 1994-12-28 2024-10-11 02:32:07 +9128 9128 9129 912.8 1825.6000000000001 9128 1994-12-29 2024-10-11 02:32:08.000 1994-12-29 2024-10-11 02:32:08 +9129 9129 9130 912.9 1825.8000000000002 9129 1994-12-30 2024-10-11 02:32:09.000 1994-12-30 2024-10-11 02:32:09 +9130 9130 9131 913 1826 9130 1994-12-31 2024-10-11 02:32:10.000 1994-12-31 2024-10-11 02:32:10 +9131 9131 9132 913.1 1826.2 9131 1995-01-01 2024-10-11 02:32:11.000 1995-01-01 2024-10-11 02:32:11 +9132 9132 9133 913.2 1826.4 9132 1995-01-02 2024-10-11 02:32:12.000 1995-01-02 2024-10-11 02:32:12 +9133 9133 9134 913.3 1826.6000000000001 9133 1995-01-03 2024-10-11 02:32:13.000 1995-01-03 2024-10-11 02:32:13 +9134 9134 9135 913.4 1826.8000000000002 9134 1995-01-04 2024-10-11 02:32:14.000 1995-01-04 2024-10-11 02:32:14 +9135 9135 9136 913.5 1827 9135 1995-01-05 2024-10-11 02:32:15.000 1995-01-05 2024-10-11 02:32:15 +9136 9136 9137 913.6 1827.2 9136 1995-01-06 2024-10-11 02:32:16.000 1995-01-06 2024-10-11 02:32:16 +9137 9137 9138 913.7 1827.4 9137 1995-01-07 2024-10-11 02:32:17.000 1995-01-07 2024-10-11 02:32:17 +9138 9138 9139 913.8 1827.6000000000001 9138 1995-01-08 2024-10-11 02:32:18.000 1995-01-08 2024-10-11 02:32:18 +9139 9139 9140 913.9 1827.8000000000002 9139 1995-01-09 2024-10-11 02:32:19.000 1995-01-09 2024-10-11 02:32:19 +9140 9140 9141 914 1828 9140 1995-01-10 2024-10-11 02:32:20.000 1995-01-10 2024-10-11 02:32:20 +9141 9141 9142 914.1 1828.2 9141 1995-01-11 2024-10-11 02:32:21.000 1995-01-11 2024-10-11 02:32:21 +9142 9142 9143 914.2 1828.4 9142 1995-01-12 2024-10-11 02:32:22.000 1995-01-12 2024-10-11 02:32:22 +9143 9143 9144 914.3 1828.6000000000001 9143 1995-01-13 2024-10-11 02:32:23.000 1995-01-13 2024-10-11 02:32:23 +9144 9144 9145 914.4 1828.8000000000002 9144 1995-01-14 2024-10-11 02:32:24.000 1995-01-14 2024-10-11 02:32:24 +9145 9145 9146 914.5 1829 9145 1995-01-15 2024-10-11 02:32:25.000 1995-01-15 2024-10-11 02:32:25 +9146 9146 9147 914.6 1829.2 9146 1995-01-16 2024-10-11 02:32:26.000 1995-01-16 2024-10-11 02:32:26 +9147 9147 9148 914.7 1829.4 9147 1995-01-17 2024-10-11 02:32:27.000 1995-01-17 2024-10-11 02:32:27 +9148 9148 9149 914.8 1829.6000000000001 9148 1995-01-18 2024-10-11 02:32:28.000 1995-01-18 2024-10-11 02:32:28 +9149 9149 9150 914.9 1829.8000000000002 9149 1995-01-19 2024-10-11 02:32:29.000 1995-01-19 2024-10-11 02:32:29 +9150 9150 9151 915 1830 9150 1995-01-20 2024-10-11 02:32:30.000 1995-01-20 2024-10-11 02:32:30 +9151 9151 9152 915.1 1830.2 9151 1995-01-21 2024-10-11 02:32:31.000 1995-01-21 2024-10-11 02:32:31 +9152 9152 9153 915.2 1830.4 9152 1995-01-22 2024-10-11 02:32:32.000 1995-01-22 2024-10-11 02:32:32 +9153 9153 9154 915.3 1830.6000000000001 9153 1995-01-23 2024-10-11 02:32:33.000 1995-01-23 2024-10-11 02:32:33 +9154 9154 9155 915.4 1830.8000000000002 9154 1995-01-24 2024-10-11 02:32:34.000 1995-01-24 2024-10-11 02:32:34 +9155 9155 9156 915.5 1831 9155 1995-01-25 2024-10-11 02:32:35.000 1995-01-25 2024-10-11 02:32:35 +9156 9156 9157 915.6 1831.2 9156 1995-01-26 2024-10-11 02:32:36.000 1995-01-26 2024-10-11 02:32:36 +9157 9157 9158 915.7 1831.4 9157 1995-01-27 2024-10-11 02:32:37.000 1995-01-27 2024-10-11 02:32:37 +9158 9158 9159 915.8 1831.6000000000001 9158 1995-01-28 2024-10-11 02:32:38.000 1995-01-28 2024-10-11 02:32:38 +9159 9159 9160 915.9 1831.8000000000002 9159 1995-01-29 2024-10-11 02:32:39.000 1995-01-29 2024-10-11 02:32:39 +9160 9160 9161 916 1832 9160 1995-01-30 2024-10-11 02:32:40.000 1995-01-30 2024-10-11 02:32:40 +9161 9161 9162 916.1 1832.2 9161 1995-01-31 2024-10-11 02:32:41.000 1995-01-31 2024-10-11 02:32:41 +9162 9162 9163 916.2 1832.4 9162 1995-02-01 2024-10-11 02:32:42.000 1995-02-01 2024-10-11 02:32:42 +9163 9163 9164 916.3 1832.6000000000001 9163 1995-02-02 2024-10-11 02:32:43.000 1995-02-02 2024-10-11 02:32:43 +9164 9164 9165 916.4 1832.8000000000002 9164 1995-02-03 2024-10-11 02:32:44.000 1995-02-03 2024-10-11 02:32:44 +9165 9165 9166 916.5 1833 9165 1995-02-04 2024-10-11 02:32:45.000 1995-02-04 2024-10-11 02:32:45 +9166 9166 9167 916.6 1833.2 9166 1995-02-05 2024-10-11 02:32:46.000 1995-02-05 2024-10-11 02:32:46 +9167 9167 9168 916.7 1833.4 9167 1995-02-06 2024-10-11 02:32:47.000 1995-02-06 2024-10-11 02:32:47 +9168 9168 9169 916.8 1833.6000000000001 9168 1995-02-07 2024-10-11 02:32:48.000 1995-02-07 2024-10-11 02:32:48 +9169 9169 9170 916.9 1833.8000000000002 9169 1995-02-08 2024-10-11 02:32:49.000 1995-02-08 2024-10-11 02:32:49 +9170 9170 9171 917 1834 9170 1995-02-09 2024-10-11 02:32:50.000 1995-02-09 2024-10-11 02:32:50 +9171 9171 9172 917.1 1834.2 9171 1995-02-10 2024-10-11 02:32:51.000 1995-02-10 2024-10-11 02:32:51 +9172 9172 9173 917.2 1834.4 9172 1995-02-11 2024-10-11 02:32:52.000 1995-02-11 2024-10-11 02:32:52 +9173 9173 9174 917.3 1834.6000000000001 9173 1995-02-12 2024-10-11 02:32:53.000 1995-02-12 2024-10-11 02:32:53 +9174 9174 9175 917.4 1834.8000000000002 9174 1995-02-13 2024-10-11 02:32:54.000 1995-02-13 2024-10-11 02:32:54 +9175 9175 9176 917.5 1835 9175 1995-02-14 2024-10-11 02:32:55.000 1995-02-14 2024-10-11 02:32:55 +9176 9176 9177 917.6 1835.2 9176 1995-02-15 2024-10-11 02:32:56.000 1995-02-15 2024-10-11 02:32:56 +9177 9177 9178 917.7 1835.4 9177 1995-02-16 2024-10-11 02:32:57.000 1995-02-16 2024-10-11 02:32:57 +9178 9178 9179 917.8 1835.6000000000001 9178 1995-02-17 2024-10-11 02:32:58.000 1995-02-17 2024-10-11 02:32:58 +9179 9179 9180 917.9 1835.8000000000002 9179 1995-02-18 2024-10-11 02:32:59.000 1995-02-18 2024-10-11 02:32:59 +9180 9180 9181 918 1836 9180 1995-02-19 2024-10-11 02:33:00.000 1995-02-19 2024-10-11 02:33:00 +9181 9181 9182 918.1 1836.2 9181 1995-02-20 2024-10-11 02:33:01.000 1995-02-20 2024-10-11 02:33:01 +9182 9182 9183 918.2 1836.4 9182 1995-02-21 2024-10-11 02:33:02.000 1995-02-21 2024-10-11 02:33:02 +9183 9183 9184 918.3 1836.6000000000001 9183 1995-02-22 2024-10-11 02:33:03.000 1995-02-22 2024-10-11 02:33:03 +9184 9184 9185 918.4 1836.8000000000002 9184 1995-02-23 2024-10-11 02:33:04.000 1995-02-23 2024-10-11 02:33:04 +9185 9185 9186 918.5 1837 9185 1995-02-24 2024-10-11 02:33:05.000 1995-02-24 2024-10-11 02:33:05 +9186 9186 9187 918.6 1837.2 9186 1995-02-25 2024-10-11 02:33:06.000 1995-02-25 2024-10-11 02:33:06 +9187 9187 9188 918.7 1837.4 9187 1995-02-26 2024-10-11 02:33:07.000 1995-02-26 2024-10-11 02:33:07 +9188 9188 9189 918.8 1837.6000000000001 9188 1995-02-27 2024-10-11 02:33:08.000 1995-02-27 2024-10-11 02:33:08 +9189 9189 9190 918.9 1837.8000000000002 9189 1995-02-28 2024-10-11 02:33:09.000 1995-02-28 2024-10-11 02:33:09 +9190 9190 9191 919 1838 9190 1995-03-01 2024-10-11 02:33:10.000 1995-03-01 2024-10-11 02:33:10 +9191 9191 9192 919.1 1838.2 9191 1995-03-02 2024-10-11 02:33:11.000 1995-03-02 2024-10-11 02:33:11 +9192 9192 9193 919.2 1838.4 9192 1995-03-03 2024-10-11 02:33:12.000 1995-03-03 2024-10-11 02:33:12 +9193 9193 9194 919.3 1838.6000000000001 9193 1995-03-04 2024-10-11 02:33:13.000 1995-03-04 2024-10-11 02:33:13 +9194 9194 9195 919.4 1838.8000000000002 9194 1995-03-05 2024-10-11 02:33:14.000 1995-03-05 2024-10-11 02:33:14 +9195 9195 9196 919.5 1839 9195 1995-03-06 2024-10-11 02:33:15.000 1995-03-06 2024-10-11 02:33:15 +9196 9196 9197 919.6 1839.2 9196 1995-03-07 2024-10-11 02:33:16.000 1995-03-07 2024-10-11 02:33:16 +9197 9197 9198 919.7 1839.4 9197 1995-03-08 2024-10-11 02:33:17.000 1995-03-08 2024-10-11 02:33:17 +9198 9198 9199 919.8 1839.6000000000001 9198 1995-03-09 2024-10-11 02:33:18.000 1995-03-09 2024-10-11 02:33:18 +9199 9199 9200 919.9 1839.8000000000002 9199 1995-03-10 2024-10-11 02:33:19.000 1995-03-10 2024-10-11 02:33:19 +9200 9200 9201 920 1840 9200 1995-03-11 2024-10-11 02:33:20.000 1995-03-11 2024-10-11 02:33:20 +9201 9201 9202 920.1 1840.2 9201 1995-03-12 2024-10-11 02:33:21.000 1995-03-12 2024-10-11 02:33:21 +9202 9202 9203 920.2 1840.4 9202 1995-03-13 2024-10-11 02:33:22.000 1995-03-13 2024-10-11 02:33:22 +9203 9203 9204 920.3 1840.6000000000001 9203 1995-03-14 2024-10-11 02:33:23.000 1995-03-14 2024-10-11 02:33:23 +9204 9204 9205 920.4 1840.8000000000002 9204 1995-03-15 2024-10-11 02:33:24.000 1995-03-15 2024-10-11 02:33:24 +9205 9205 9206 920.5 1841 9205 1995-03-16 2024-10-11 02:33:25.000 1995-03-16 2024-10-11 02:33:25 +9206 9206 9207 920.6 1841.2 9206 1995-03-17 2024-10-11 02:33:26.000 1995-03-17 2024-10-11 02:33:26 +9207 9207 9208 920.7 1841.4 9207 1995-03-18 2024-10-11 02:33:27.000 1995-03-18 2024-10-11 02:33:27 +9208 9208 9209 920.8 1841.6000000000001 9208 1995-03-19 2024-10-11 02:33:28.000 1995-03-19 2024-10-11 02:33:28 +9209 9209 9210 920.9 1841.8000000000002 9209 1995-03-20 2024-10-11 02:33:29.000 1995-03-20 2024-10-11 02:33:29 +9210 9210 9211 921 1842 9210 1995-03-21 2024-10-11 02:33:30.000 1995-03-21 2024-10-11 02:33:30 +9211 9211 9212 921.1 1842.2 9211 1995-03-22 2024-10-11 02:33:31.000 1995-03-22 2024-10-11 02:33:31 +9212 9212 9213 921.2 1842.4 9212 1995-03-23 2024-10-11 02:33:32.000 1995-03-23 2024-10-11 02:33:32 +9213 9213 9214 921.3 1842.6000000000001 9213 1995-03-24 2024-10-11 02:33:33.000 1995-03-24 2024-10-11 02:33:33 +9214 9214 9215 921.4 1842.8000000000002 9214 1995-03-25 2024-10-11 02:33:34.000 1995-03-25 2024-10-11 02:33:34 +9215 9215 9216 921.5 1843 9215 1995-03-26 2024-10-11 02:33:35.000 1995-03-26 2024-10-11 02:33:35 +9216 9216 9217 921.6 1843.2 9216 1995-03-27 2024-10-11 02:33:36.000 1995-03-27 2024-10-11 02:33:36 +9217 9217 9218 921.7 1843.4 9217 1995-03-28 2024-10-11 02:33:37.000 1995-03-28 2024-10-11 02:33:37 +9218 9218 9219 921.8 1843.6000000000001 9218 1995-03-29 2024-10-11 02:33:38.000 1995-03-29 2024-10-11 02:33:38 +9219 9219 9220 921.9 1843.8000000000002 9219 1995-03-30 2024-10-11 02:33:39.000 1995-03-30 2024-10-11 02:33:39 +9220 9220 9221 922 1844 9220 1995-03-31 2024-10-11 02:33:40.000 1995-03-31 2024-10-11 02:33:40 +9221 9221 9222 922.1 1844.2 9221 1995-04-01 2024-10-11 02:33:41.000 1995-04-01 2024-10-11 02:33:41 +9222 9222 9223 922.2 1844.4 9222 1995-04-02 2024-10-11 02:33:42.000 1995-04-02 2024-10-11 02:33:42 +9223 9223 9224 922.3 1844.6000000000001 9223 1995-04-03 2024-10-11 02:33:43.000 1995-04-03 2024-10-11 02:33:43 +9224 9224 9225 922.4 1844.8000000000002 9224 1995-04-04 2024-10-11 02:33:44.000 1995-04-04 2024-10-11 02:33:44 +9225 9225 9226 922.5 1845 9225 1995-04-05 2024-10-11 02:33:45.000 1995-04-05 2024-10-11 02:33:45 +9226 9226 9227 922.6 1845.2 9226 1995-04-06 2024-10-11 02:33:46.000 1995-04-06 2024-10-11 02:33:46 +9227 9227 9228 922.7 1845.4 9227 1995-04-07 2024-10-11 02:33:47.000 1995-04-07 2024-10-11 02:33:47 +9228 9228 9229 922.8 1845.6000000000001 9228 1995-04-08 2024-10-11 02:33:48.000 1995-04-08 2024-10-11 02:33:48 +9229 9229 9230 922.9 1845.8000000000002 9229 1995-04-09 2024-10-11 02:33:49.000 1995-04-09 2024-10-11 02:33:49 +9230 9230 9231 923 1846 9230 1995-04-10 2024-10-11 02:33:50.000 1995-04-10 2024-10-11 02:33:50 +9231 9231 9232 923.1 1846.2 9231 1995-04-11 2024-10-11 02:33:51.000 1995-04-11 2024-10-11 02:33:51 +9232 9232 9233 923.2 1846.4 9232 1995-04-12 2024-10-11 02:33:52.000 1995-04-12 2024-10-11 02:33:52 +9233 9233 9234 923.3 1846.6000000000001 9233 1995-04-13 2024-10-11 02:33:53.000 1995-04-13 2024-10-11 02:33:53 +9234 9234 9235 923.4 1846.8000000000002 9234 1995-04-14 2024-10-11 02:33:54.000 1995-04-14 2024-10-11 02:33:54 +9235 9235 9236 923.5 1847 9235 1995-04-15 2024-10-11 02:33:55.000 1995-04-15 2024-10-11 02:33:55 +9236 9236 9237 923.6 1847.2 9236 1995-04-16 2024-10-11 02:33:56.000 1995-04-16 2024-10-11 02:33:56 +9237 9237 9238 923.7 1847.4 9237 1995-04-17 2024-10-11 02:33:57.000 1995-04-17 2024-10-11 02:33:57 +9238 9238 9239 923.8 1847.6000000000001 9238 1995-04-18 2024-10-11 02:33:58.000 1995-04-18 2024-10-11 02:33:58 +9239 9239 9240 923.9 1847.8000000000002 9239 1995-04-19 2024-10-11 02:33:59.000 1995-04-19 2024-10-11 02:33:59 +9240 9240 9241 924 1848 9240 1995-04-20 2024-10-11 02:34:00.000 1995-04-20 2024-10-11 02:34:00 +9241 9241 9242 924.1 1848.2 9241 1995-04-21 2024-10-11 02:34:01.000 1995-04-21 2024-10-11 02:34:01 +9242 9242 9243 924.2 1848.4 9242 1995-04-22 2024-10-11 02:34:02.000 1995-04-22 2024-10-11 02:34:02 +9243 9243 9244 924.3 1848.6000000000001 9243 1995-04-23 2024-10-11 02:34:03.000 1995-04-23 2024-10-11 02:34:03 +9244 9244 9245 924.4 1848.8000000000002 9244 1995-04-24 2024-10-11 02:34:04.000 1995-04-24 2024-10-11 02:34:04 +9245 9245 9246 924.5 1849 9245 1995-04-25 2024-10-11 02:34:05.000 1995-04-25 2024-10-11 02:34:05 +9246 9246 9247 924.6 1849.2 9246 1995-04-26 2024-10-11 02:34:06.000 1995-04-26 2024-10-11 02:34:06 +9247 9247 9248 924.7 1849.4 9247 1995-04-27 2024-10-11 02:34:07.000 1995-04-27 2024-10-11 02:34:07 +9248 9248 9249 924.8 1849.6000000000001 9248 1995-04-28 2024-10-11 02:34:08.000 1995-04-28 2024-10-11 02:34:08 +9249 9249 9250 924.9 1849.8000000000002 9249 1995-04-29 2024-10-11 02:34:09.000 1995-04-29 2024-10-11 02:34:09 +9250 9250 9251 925 1850 9250 1995-04-30 2024-10-11 02:34:10.000 1995-04-30 2024-10-11 02:34:10 +9251 9251 9252 925.1 1850.2 9251 1995-05-01 2024-10-11 02:34:11.000 1995-05-01 2024-10-11 02:34:11 +9252 9252 9253 925.2 1850.4 9252 1995-05-02 2024-10-11 02:34:12.000 1995-05-02 2024-10-11 02:34:12 +9253 9253 9254 925.3 1850.6000000000001 9253 1995-05-03 2024-10-11 02:34:13.000 1995-05-03 2024-10-11 02:34:13 +9254 9254 9255 925.4 1850.8000000000002 9254 1995-05-04 2024-10-11 02:34:14.000 1995-05-04 2024-10-11 02:34:14 +9255 9255 9256 925.5 1851 9255 1995-05-05 2024-10-11 02:34:15.000 1995-05-05 2024-10-11 02:34:15 +9256 9256 9257 925.6 1851.2 9256 1995-05-06 2024-10-11 02:34:16.000 1995-05-06 2024-10-11 02:34:16 +9257 9257 9258 925.7 1851.4 9257 1995-05-07 2024-10-11 02:34:17.000 1995-05-07 2024-10-11 02:34:17 +9258 9258 9259 925.8 1851.6000000000001 9258 1995-05-08 2024-10-11 02:34:18.000 1995-05-08 2024-10-11 02:34:18 +9259 9259 9260 925.9 1851.8000000000002 9259 1995-05-09 2024-10-11 02:34:19.000 1995-05-09 2024-10-11 02:34:19 +9260 9260 9261 926 1852 9260 1995-05-10 2024-10-11 02:34:20.000 1995-05-10 2024-10-11 02:34:20 +9261 9261 9262 926.1 1852.2 9261 1995-05-11 2024-10-11 02:34:21.000 1995-05-11 2024-10-11 02:34:21 +9262 9262 9263 926.2 1852.4 9262 1995-05-12 2024-10-11 02:34:22.000 1995-05-12 2024-10-11 02:34:22 +9263 9263 9264 926.3 1852.6000000000001 9263 1995-05-13 2024-10-11 02:34:23.000 1995-05-13 2024-10-11 02:34:23 +9264 9264 9265 926.4 1852.8000000000002 9264 1995-05-14 2024-10-11 02:34:24.000 1995-05-14 2024-10-11 02:34:24 +9265 9265 9266 926.5 1853 9265 1995-05-15 2024-10-11 02:34:25.000 1995-05-15 2024-10-11 02:34:25 +9266 9266 9267 926.6 1853.2 9266 1995-05-16 2024-10-11 02:34:26.000 1995-05-16 2024-10-11 02:34:26 +9267 9267 9268 926.7 1853.4 9267 1995-05-17 2024-10-11 02:34:27.000 1995-05-17 2024-10-11 02:34:27 +9268 9268 9269 926.8 1853.6000000000001 9268 1995-05-18 2024-10-11 02:34:28.000 1995-05-18 2024-10-11 02:34:28 +9269 9269 9270 926.9 1853.8000000000002 9269 1995-05-19 2024-10-11 02:34:29.000 1995-05-19 2024-10-11 02:34:29 +9270 9270 9271 927 1854 9270 1995-05-20 2024-10-11 02:34:30.000 1995-05-20 2024-10-11 02:34:30 +9271 9271 9272 927.1 1854.2 9271 1995-05-21 2024-10-11 02:34:31.000 1995-05-21 2024-10-11 02:34:31 +9272 9272 9273 927.2 1854.4 9272 1995-05-22 2024-10-11 02:34:32.000 1995-05-22 2024-10-11 02:34:32 +9273 9273 9274 927.3 1854.6000000000001 9273 1995-05-23 2024-10-11 02:34:33.000 1995-05-23 2024-10-11 02:34:33 +9274 9274 9275 927.4 1854.8000000000002 9274 1995-05-24 2024-10-11 02:34:34.000 1995-05-24 2024-10-11 02:34:34 +9275 9275 9276 927.5 1855 9275 1995-05-25 2024-10-11 02:34:35.000 1995-05-25 2024-10-11 02:34:35 +9276 9276 9277 927.6 1855.2 9276 1995-05-26 2024-10-11 02:34:36.000 1995-05-26 2024-10-11 02:34:36 +9277 9277 9278 927.7 1855.4 9277 1995-05-27 2024-10-11 02:34:37.000 1995-05-27 2024-10-11 02:34:37 +9278 9278 9279 927.8 1855.6000000000001 9278 1995-05-28 2024-10-11 02:34:38.000 1995-05-28 2024-10-11 02:34:38 +9279 9279 9280 927.9 1855.8000000000002 9279 1995-05-29 2024-10-11 02:34:39.000 1995-05-29 2024-10-11 02:34:39 +9280 9280 9281 928 1856 9280 1995-05-30 2024-10-11 02:34:40.000 1995-05-30 2024-10-11 02:34:40 +9281 9281 9282 928.1 1856.2 9281 1995-05-31 2024-10-11 02:34:41.000 1995-05-31 2024-10-11 02:34:41 +9282 9282 9283 928.2 1856.4 9282 1995-06-01 2024-10-11 02:34:42.000 1995-06-01 2024-10-11 02:34:42 +9283 9283 9284 928.3 1856.6000000000001 9283 1995-06-02 2024-10-11 02:34:43.000 1995-06-02 2024-10-11 02:34:43 +9284 9284 9285 928.4 1856.8000000000002 9284 1995-06-03 2024-10-11 02:34:44.000 1995-06-03 2024-10-11 02:34:44 +9285 9285 9286 928.5 1857 9285 1995-06-04 2024-10-11 02:34:45.000 1995-06-04 2024-10-11 02:34:45 +9286 9286 9287 928.6 1857.2 9286 1995-06-05 2024-10-11 02:34:46.000 1995-06-05 2024-10-11 02:34:46 +9287 9287 9288 928.7 1857.4 9287 1995-06-06 2024-10-11 02:34:47.000 1995-06-06 2024-10-11 02:34:47 +9288 9288 9289 928.8 1857.6000000000001 9288 1995-06-07 2024-10-11 02:34:48.000 1995-06-07 2024-10-11 02:34:48 +9289 9289 9290 928.9 1857.8000000000002 9289 1995-06-08 2024-10-11 02:34:49.000 1995-06-08 2024-10-11 02:34:49 +9290 9290 9291 929 1858 9290 1995-06-09 2024-10-11 02:34:50.000 1995-06-09 2024-10-11 02:34:50 +9291 9291 9292 929.1 1858.2 9291 1995-06-10 2024-10-11 02:34:51.000 1995-06-10 2024-10-11 02:34:51 +9292 9292 9293 929.2 1858.4 9292 1995-06-11 2024-10-11 02:34:52.000 1995-06-11 2024-10-11 02:34:52 +9293 9293 9294 929.3 1858.6000000000001 9293 1995-06-12 2024-10-11 02:34:53.000 1995-06-12 2024-10-11 02:34:53 +9294 9294 9295 929.4 1858.8000000000002 9294 1995-06-13 2024-10-11 02:34:54.000 1995-06-13 2024-10-11 02:34:54 +9295 9295 9296 929.5 1859 9295 1995-06-14 2024-10-11 02:34:55.000 1995-06-14 2024-10-11 02:34:55 +9296 9296 9297 929.6 1859.2 9296 1995-06-15 2024-10-11 02:34:56.000 1995-06-15 2024-10-11 02:34:56 +9297 9297 9298 929.7 1859.4 9297 1995-06-16 2024-10-11 02:34:57.000 1995-06-16 2024-10-11 02:34:57 +9298 9298 9299 929.8 1859.6000000000001 9298 1995-06-17 2024-10-11 02:34:58.000 1995-06-17 2024-10-11 02:34:58 +9299 9299 9300 929.9 1859.8000000000002 9299 1995-06-18 2024-10-11 02:34:59.000 1995-06-18 2024-10-11 02:34:59 +9300 9300 9301 930 1860 9300 1995-06-19 2024-10-11 02:35:00.000 1995-06-19 2024-10-11 02:35:00 +9301 9301 9302 930.1 1860.2 9301 1995-06-20 2024-10-11 02:35:01.000 1995-06-20 2024-10-11 02:35:01 +9302 9302 9303 930.2 1860.4 9302 1995-06-21 2024-10-11 02:35:02.000 1995-06-21 2024-10-11 02:35:02 +9303 9303 9304 930.3 1860.6000000000001 9303 1995-06-22 2024-10-11 02:35:03.000 1995-06-22 2024-10-11 02:35:03 +9304 9304 9305 930.4 1860.8000000000002 9304 1995-06-23 2024-10-11 02:35:04.000 1995-06-23 2024-10-11 02:35:04 +9305 9305 9306 930.5 1861 9305 1995-06-24 2024-10-11 02:35:05.000 1995-06-24 2024-10-11 02:35:05 +9306 9306 9307 930.6 1861.2 9306 1995-06-25 2024-10-11 02:35:06.000 1995-06-25 2024-10-11 02:35:06 +9307 9307 9308 930.7 1861.4 9307 1995-06-26 2024-10-11 02:35:07.000 1995-06-26 2024-10-11 02:35:07 +9308 9308 9309 930.8 1861.6000000000001 9308 1995-06-27 2024-10-11 02:35:08.000 1995-06-27 2024-10-11 02:35:08 +9309 9309 9310 930.9 1861.8000000000002 9309 1995-06-28 2024-10-11 02:35:09.000 1995-06-28 2024-10-11 02:35:09 +9310 9310 9311 931 1862 9310 1995-06-29 2024-10-11 02:35:10.000 1995-06-29 2024-10-11 02:35:10 +9311 9311 9312 931.1 1862.2 9311 1995-06-30 2024-10-11 02:35:11.000 1995-06-30 2024-10-11 02:35:11 +9312 9312 9313 931.2 1862.4 9312 1995-07-01 2024-10-11 02:35:12.000 1995-07-01 2024-10-11 02:35:12 +9313 9313 9314 931.3 1862.6000000000001 9313 1995-07-02 2024-10-11 02:35:13.000 1995-07-02 2024-10-11 02:35:13 +9314 9314 9315 931.4 1862.8000000000002 9314 1995-07-03 2024-10-11 02:35:14.000 1995-07-03 2024-10-11 02:35:14 +9315 9315 9316 931.5 1863 9315 1995-07-04 2024-10-11 02:35:15.000 1995-07-04 2024-10-11 02:35:15 +9316 9316 9317 931.6 1863.2 9316 1995-07-05 2024-10-11 02:35:16.000 1995-07-05 2024-10-11 02:35:16 +9317 9317 9318 931.7 1863.4 9317 1995-07-06 2024-10-11 02:35:17.000 1995-07-06 2024-10-11 02:35:17 +9318 9318 9319 931.8 1863.6000000000001 9318 1995-07-07 2024-10-11 02:35:18.000 1995-07-07 2024-10-11 02:35:18 +9319 9319 9320 931.9 1863.8000000000002 9319 1995-07-08 2024-10-11 02:35:19.000 1995-07-08 2024-10-11 02:35:19 +9320 9320 9321 932 1864 9320 1995-07-09 2024-10-11 02:35:20.000 1995-07-09 2024-10-11 02:35:20 +9321 9321 9322 932.1 1864.2 9321 1995-07-10 2024-10-11 02:35:21.000 1995-07-10 2024-10-11 02:35:21 +9322 9322 9323 932.2 1864.4 9322 1995-07-11 2024-10-11 02:35:22.000 1995-07-11 2024-10-11 02:35:22 +9323 9323 9324 932.3 1864.6000000000001 9323 1995-07-12 2024-10-11 02:35:23.000 1995-07-12 2024-10-11 02:35:23 +9324 9324 9325 932.4 1864.8000000000002 9324 1995-07-13 2024-10-11 02:35:24.000 1995-07-13 2024-10-11 02:35:24 +9325 9325 9326 932.5 1865 9325 1995-07-14 2024-10-11 02:35:25.000 1995-07-14 2024-10-11 02:35:25 +9326 9326 9327 932.6 1865.2 9326 1995-07-15 2024-10-11 02:35:26.000 1995-07-15 2024-10-11 02:35:26 +9327 9327 9328 932.7 1865.4 9327 1995-07-16 2024-10-11 02:35:27.000 1995-07-16 2024-10-11 02:35:27 +9328 9328 9329 932.8 1865.6000000000001 9328 1995-07-17 2024-10-11 02:35:28.000 1995-07-17 2024-10-11 02:35:28 +9329 9329 9330 932.9 1865.8000000000002 9329 1995-07-18 2024-10-11 02:35:29.000 1995-07-18 2024-10-11 02:35:29 +9330 9330 9331 933 1866 9330 1995-07-19 2024-10-11 02:35:30.000 1995-07-19 2024-10-11 02:35:30 +9331 9331 9332 933.1 1866.2 9331 1995-07-20 2024-10-11 02:35:31.000 1995-07-20 2024-10-11 02:35:31 +9332 9332 9333 933.2 1866.4 9332 1995-07-21 2024-10-11 02:35:32.000 1995-07-21 2024-10-11 02:35:32 +9333 9333 9334 933.3 1866.6000000000001 9333 1995-07-22 2024-10-11 02:35:33.000 1995-07-22 2024-10-11 02:35:33 +9334 9334 9335 933.4 1866.8000000000002 9334 1995-07-23 2024-10-11 02:35:34.000 1995-07-23 2024-10-11 02:35:34 +9335 9335 9336 933.5 1867 9335 1995-07-24 2024-10-11 02:35:35.000 1995-07-24 2024-10-11 02:35:35 +9336 9336 9337 933.6 1867.2 9336 1995-07-25 2024-10-11 02:35:36.000 1995-07-25 2024-10-11 02:35:36 +9337 9337 9338 933.7 1867.4 9337 1995-07-26 2024-10-11 02:35:37.000 1995-07-26 2024-10-11 02:35:37 +9338 9338 9339 933.8 1867.6000000000001 9338 1995-07-27 2024-10-11 02:35:38.000 1995-07-27 2024-10-11 02:35:38 +9339 9339 9340 933.9 1867.8000000000002 9339 1995-07-28 2024-10-11 02:35:39.000 1995-07-28 2024-10-11 02:35:39 +9340 9340 9341 934 1868 9340 1995-07-29 2024-10-11 02:35:40.000 1995-07-29 2024-10-11 02:35:40 +9341 9341 9342 934.1 1868.2 9341 1995-07-30 2024-10-11 02:35:41.000 1995-07-30 2024-10-11 02:35:41 +9342 9342 9343 934.2 1868.4 9342 1995-07-31 2024-10-11 02:35:42.000 1995-07-31 2024-10-11 02:35:42 +9343 9343 9344 934.3 1868.6000000000001 9343 1995-08-01 2024-10-11 02:35:43.000 1995-08-01 2024-10-11 02:35:43 +9344 9344 9345 934.4 1868.8000000000002 9344 1995-08-02 2024-10-11 02:35:44.000 1995-08-02 2024-10-11 02:35:44 +9345 9345 9346 934.5 1869 9345 1995-08-03 2024-10-11 02:35:45.000 1995-08-03 2024-10-11 02:35:45 +9346 9346 9347 934.6 1869.2 9346 1995-08-04 2024-10-11 02:35:46.000 1995-08-04 2024-10-11 02:35:46 +9347 9347 9348 934.7 1869.4 9347 1995-08-05 2024-10-11 02:35:47.000 1995-08-05 2024-10-11 02:35:47 +9348 9348 9349 934.8 1869.6000000000001 9348 1995-08-06 2024-10-11 02:35:48.000 1995-08-06 2024-10-11 02:35:48 +9349 9349 9350 934.9 1869.8000000000002 9349 1995-08-07 2024-10-11 02:35:49.000 1995-08-07 2024-10-11 02:35:49 +9350 9350 9351 935 1870 9350 1995-08-08 2024-10-11 02:35:50.000 1995-08-08 2024-10-11 02:35:50 +9351 9351 9352 935.1 1870.2 9351 1995-08-09 2024-10-11 02:35:51.000 1995-08-09 2024-10-11 02:35:51 +9352 9352 9353 935.2 1870.4 9352 1995-08-10 2024-10-11 02:35:52.000 1995-08-10 2024-10-11 02:35:52 +9353 9353 9354 935.3 1870.6000000000001 9353 1995-08-11 2024-10-11 02:35:53.000 1995-08-11 2024-10-11 02:35:53 +9354 9354 9355 935.4 1870.8000000000002 9354 1995-08-12 2024-10-11 02:35:54.000 1995-08-12 2024-10-11 02:35:54 +9355 9355 9356 935.5 1871 9355 1995-08-13 2024-10-11 02:35:55.000 1995-08-13 2024-10-11 02:35:55 +9356 9356 9357 935.6 1871.2 9356 1995-08-14 2024-10-11 02:35:56.000 1995-08-14 2024-10-11 02:35:56 +9357 9357 9358 935.7 1871.4 9357 1995-08-15 2024-10-11 02:35:57.000 1995-08-15 2024-10-11 02:35:57 +9358 9358 9359 935.8 1871.6000000000001 9358 1995-08-16 2024-10-11 02:35:58.000 1995-08-16 2024-10-11 02:35:58 +9359 9359 9360 935.9 1871.8000000000002 9359 1995-08-17 2024-10-11 02:35:59.000 1995-08-17 2024-10-11 02:35:59 +9360 9360 9361 936 1872 9360 1995-08-18 2024-10-11 02:36:00.000 1995-08-18 2024-10-11 02:36:00 +9361 9361 9362 936.1 1872.2 9361 1995-08-19 2024-10-11 02:36:01.000 1995-08-19 2024-10-11 02:36:01 +9362 9362 9363 936.2 1872.4 9362 1995-08-20 2024-10-11 02:36:02.000 1995-08-20 2024-10-11 02:36:02 +9363 9363 9364 936.3 1872.6000000000001 9363 1995-08-21 2024-10-11 02:36:03.000 1995-08-21 2024-10-11 02:36:03 +9364 9364 9365 936.4 1872.8000000000002 9364 1995-08-22 2024-10-11 02:36:04.000 1995-08-22 2024-10-11 02:36:04 +9365 9365 9366 936.5 1873 9365 1995-08-23 2024-10-11 02:36:05.000 1995-08-23 2024-10-11 02:36:05 +9366 9366 9367 936.6 1873.2 9366 1995-08-24 2024-10-11 02:36:06.000 1995-08-24 2024-10-11 02:36:06 +9367 9367 9368 936.7 1873.4 9367 1995-08-25 2024-10-11 02:36:07.000 1995-08-25 2024-10-11 02:36:07 +9368 9368 9369 936.8 1873.6000000000001 9368 1995-08-26 2024-10-11 02:36:08.000 1995-08-26 2024-10-11 02:36:08 +9369 9369 9370 936.9 1873.8000000000002 9369 1995-08-27 2024-10-11 02:36:09.000 1995-08-27 2024-10-11 02:36:09 +9370 9370 9371 937 1874 9370 1995-08-28 2024-10-11 02:36:10.000 1995-08-28 2024-10-11 02:36:10 +9371 9371 9372 937.1 1874.2 9371 1995-08-29 2024-10-11 02:36:11.000 1995-08-29 2024-10-11 02:36:11 +9372 9372 9373 937.2 1874.4 9372 1995-08-30 2024-10-11 02:36:12.000 1995-08-30 2024-10-11 02:36:12 +9373 9373 9374 937.3 1874.6000000000001 9373 1995-08-31 2024-10-11 02:36:13.000 1995-08-31 2024-10-11 02:36:13 +9374 9374 9375 937.4 1874.8000000000002 9374 1995-09-01 2024-10-11 02:36:14.000 1995-09-01 2024-10-11 02:36:14 +9375 9375 9376 937.5 1875 9375 1995-09-02 2024-10-11 02:36:15.000 1995-09-02 2024-10-11 02:36:15 +9376 9376 9377 937.6 1875.2 9376 1995-09-03 2024-10-11 02:36:16.000 1995-09-03 2024-10-11 02:36:16 +9377 9377 9378 937.7 1875.4 9377 1995-09-04 2024-10-11 02:36:17.000 1995-09-04 2024-10-11 02:36:17 +9378 9378 9379 937.8 1875.6000000000001 9378 1995-09-05 2024-10-11 02:36:18.000 1995-09-05 2024-10-11 02:36:18 +9379 9379 9380 937.9 1875.8000000000002 9379 1995-09-06 2024-10-11 02:36:19.000 1995-09-06 2024-10-11 02:36:19 +9380 9380 9381 938 1876 9380 1995-09-07 2024-10-11 02:36:20.000 1995-09-07 2024-10-11 02:36:20 +9381 9381 9382 938.1 1876.2 9381 1995-09-08 2024-10-11 02:36:21.000 1995-09-08 2024-10-11 02:36:21 +9382 9382 9383 938.2 1876.4 9382 1995-09-09 2024-10-11 02:36:22.000 1995-09-09 2024-10-11 02:36:22 +9383 9383 9384 938.3 1876.6000000000001 9383 1995-09-10 2024-10-11 02:36:23.000 1995-09-10 2024-10-11 02:36:23 +9384 9384 9385 938.4 1876.8000000000002 9384 1995-09-11 2024-10-11 02:36:24.000 1995-09-11 2024-10-11 02:36:24 +9385 9385 9386 938.5 1877 9385 1995-09-12 2024-10-11 02:36:25.000 1995-09-12 2024-10-11 02:36:25 +9386 9386 9387 938.6 1877.2 9386 1995-09-13 2024-10-11 02:36:26.000 1995-09-13 2024-10-11 02:36:26 +9387 9387 9388 938.7 1877.4 9387 1995-09-14 2024-10-11 02:36:27.000 1995-09-14 2024-10-11 02:36:27 +9388 9388 9389 938.8 1877.6000000000001 9388 1995-09-15 2024-10-11 02:36:28.000 1995-09-15 2024-10-11 02:36:28 +9389 9389 9390 938.9 1877.8000000000002 9389 1995-09-16 2024-10-11 02:36:29.000 1995-09-16 2024-10-11 02:36:29 +9390 9390 9391 939 1878 9390 1995-09-17 2024-10-11 02:36:30.000 1995-09-17 2024-10-11 02:36:30 +9391 9391 9392 939.1 1878.2 9391 1995-09-18 2024-10-11 02:36:31.000 1995-09-18 2024-10-11 02:36:31 +9392 9392 9393 939.2 1878.4 9392 1995-09-19 2024-10-11 02:36:32.000 1995-09-19 2024-10-11 02:36:32 +9393 9393 9394 939.3 1878.6000000000001 9393 1995-09-20 2024-10-11 02:36:33.000 1995-09-20 2024-10-11 02:36:33 +9394 9394 9395 939.4 1878.8000000000002 9394 1995-09-21 2024-10-11 02:36:34.000 1995-09-21 2024-10-11 02:36:34 +9395 9395 9396 939.5 1879 9395 1995-09-22 2024-10-11 02:36:35.000 1995-09-22 2024-10-11 02:36:35 +9396 9396 9397 939.6 1879.2 9396 1995-09-23 2024-10-11 02:36:36.000 1995-09-23 2024-10-11 02:36:36 +9397 9397 9398 939.7 1879.4 9397 1995-09-24 2024-10-11 02:36:37.000 1995-09-24 2024-10-11 02:36:37 +9398 9398 9399 939.8 1879.6000000000001 9398 1995-09-25 2024-10-11 02:36:38.000 1995-09-25 2024-10-11 02:36:38 +9399 9399 9400 939.9 1879.8000000000002 9399 1995-09-26 2024-10-11 02:36:39.000 1995-09-26 2024-10-11 02:36:39 +9400 9400 9401 940 1880 9400 1995-09-27 2024-10-11 02:36:40.000 1995-09-27 2024-10-11 02:36:40 +9401 9401 9402 940.1 1880.2 9401 1995-09-28 2024-10-11 02:36:41.000 1995-09-28 2024-10-11 02:36:41 +9402 9402 9403 940.2 1880.4 9402 1995-09-29 2024-10-11 02:36:42.000 1995-09-29 2024-10-11 02:36:42 +9403 9403 9404 940.3 1880.6000000000001 9403 1995-09-30 2024-10-11 02:36:43.000 1995-09-30 2024-10-11 02:36:43 +9404 9404 9405 940.4 1880.8000000000002 9404 1995-10-01 2024-10-11 02:36:44.000 1995-10-01 2024-10-11 02:36:44 +9405 9405 9406 940.5 1881 9405 1995-10-02 2024-10-11 02:36:45.000 1995-10-02 2024-10-11 02:36:45 +9406 9406 9407 940.6 1881.2 9406 1995-10-03 2024-10-11 02:36:46.000 1995-10-03 2024-10-11 02:36:46 +9407 9407 9408 940.7 1881.4 9407 1995-10-04 2024-10-11 02:36:47.000 1995-10-04 2024-10-11 02:36:47 +9408 9408 9409 940.8 1881.6000000000001 9408 1995-10-05 2024-10-11 02:36:48.000 1995-10-05 2024-10-11 02:36:48 +9409 9409 9410 940.9 1881.8000000000002 9409 1995-10-06 2024-10-11 02:36:49.000 1995-10-06 2024-10-11 02:36:49 +9410 9410 9411 941 1882 9410 1995-10-07 2024-10-11 02:36:50.000 1995-10-07 2024-10-11 02:36:50 +9411 9411 9412 941.1 1882.2 9411 1995-10-08 2024-10-11 02:36:51.000 1995-10-08 2024-10-11 02:36:51 +9412 9412 9413 941.2 1882.4 9412 1995-10-09 2024-10-11 02:36:52.000 1995-10-09 2024-10-11 02:36:52 +9413 9413 9414 941.3 1882.6000000000001 9413 1995-10-10 2024-10-11 02:36:53.000 1995-10-10 2024-10-11 02:36:53 +9414 9414 9415 941.4 1882.8000000000002 9414 1995-10-11 2024-10-11 02:36:54.000 1995-10-11 2024-10-11 02:36:54 +9415 9415 9416 941.5 1883 9415 1995-10-12 2024-10-11 02:36:55.000 1995-10-12 2024-10-11 02:36:55 +9416 9416 9417 941.6 1883.2 9416 1995-10-13 2024-10-11 02:36:56.000 1995-10-13 2024-10-11 02:36:56 +9417 9417 9418 941.7 1883.4 9417 1995-10-14 2024-10-11 02:36:57.000 1995-10-14 2024-10-11 02:36:57 +9418 9418 9419 941.8 1883.6000000000001 9418 1995-10-15 2024-10-11 02:36:58.000 1995-10-15 2024-10-11 02:36:58 +9419 9419 9420 941.9 1883.8000000000002 9419 1995-10-16 2024-10-11 02:36:59.000 1995-10-16 2024-10-11 02:36:59 +9420 9420 9421 942 1884 9420 1995-10-17 2024-10-11 02:37:00.000 1995-10-17 2024-10-11 02:37:00 +9421 9421 9422 942.1 1884.2 9421 1995-10-18 2024-10-11 02:37:01.000 1995-10-18 2024-10-11 02:37:01 +9422 9422 9423 942.2 1884.4 9422 1995-10-19 2024-10-11 02:37:02.000 1995-10-19 2024-10-11 02:37:02 +9423 9423 9424 942.3 1884.6000000000001 9423 1995-10-20 2024-10-11 02:37:03.000 1995-10-20 2024-10-11 02:37:03 +9424 9424 9425 942.4 1884.8000000000002 9424 1995-10-21 2024-10-11 02:37:04.000 1995-10-21 2024-10-11 02:37:04 +9425 9425 9426 942.5 1885 9425 1995-10-22 2024-10-11 02:37:05.000 1995-10-22 2024-10-11 02:37:05 +9426 9426 9427 942.6 1885.2 9426 1995-10-23 2024-10-11 02:37:06.000 1995-10-23 2024-10-11 02:37:06 +9427 9427 9428 942.7 1885.4 9427 1995-10-24 2024-10-11 02:37:07.000 1995-10-24 2024-10-11 02:37:07 +9428 9428 9429 942.8 1885.6000000000001 9428 1995-10-25 2024-10-11 02:37:08.000 1995-10-25 2024-10-11 02:37:08 +9429 9429 9430 942.9 1885.8000000000002 9429 1995-10-26 2024-10-11 02:37:09.000 1995-10-26 2024-10-11 02:37:09 +9430 9430 9431 943 1886 9430 1995-10-27 2024-10-11 02:37:10.000 1995-10-27 2024-10-11 02:37:10 +9431 9431 9432 943.1 1886.2 9431 1995-10-28 2024-10-11 02:37:11.000 1995-10-28 2024-10-11 02:37:11 +9432 9432 9433 943.2 1886.4 9432 1995-10-29 2024-10-11 02:37:12.000 1995-10-29 2024-10-11 02:37:12 +9433 9433 9434 943.3 1886.6000000000001 9433 1995-10-30 2024-10-11 02:37:13.000 1995-10-30 2024-10-11 02:37:13 +9434 9434 9435 943.4 1886.8000000000002 9434 1995-10-31 2024-10-11 02:37:14.000 1995-10-31 2024-10-11 02:37:14 +9435 9435 9436 943.5 1887 9435 1995-11-01 2024-10-11 02:37:15.000 1995-11-01 2024-10-11 02:37:15 +9436 9436 9437 943.6 1887.2 9436 1995-11-02 2024-10-11 02:37:16.000 1995-11-02 2024-10-11 02:37:16 +9437 9437 9438 943.7 1887.4 9437 1995-11-03 2024-10-11 02:37:17.000 1995-11-03 2024-10-11 02:37:17 +9438 9438 9439 943.8 1887.6000000000001 9438 1995-11-04 2024-10-11 02:37:18.000 1995-11-04 2024-10-11 02:37:18 +9439 9439 9440 943.9 1887.8000000000002 9439 1995-11-05 2024-10-11 02:37:19.000 1995-11-05 2024-10-11 02:37:19 +9440 9440 9441 944 1888 9440 1995-11-06 2024-10-11 02:37:20.000 1995-11-06 2024-10-11 02:37:20 +9441 9441 9442 944.1 1888.2 9441 1995-11-07 2024-10-11 02:37:21.000 1995-11-07 2024-10-11 02:37:21 +9442 9442 9443 944.2 1888.4 9442 1995-11-08 2024-10-11 02:37:22.000 1995-11-08 2024-10-11 02:37:22 +9443 9443 9444 944.3 1888.6000000000001 9443 1995-11-09 2024-10-11 02:37:23.000 1995-11-09 2024-10-11 02:37:23 +9444 9444 9445 944.4 1888.8000000000002 9444 1995-11-10 2024-10-11 02:37:24.000 1995-11-10 2024-10-11 02:37:24 +9445 9445 9446 944.5 1889 9445 1995-11-11 2024-10-11 02:37:25.000 1995-11-11 2024-10-11 02:37:25 +9446 9446 9447 944.6 1889.2 9446 1995-11-12 2024-10-11 02:37:26.000 1995-11-12 2024-10-11 02:37:26 +9447 9447 9448 944.7 1889.4 9447 1995-11-13 2024-10-11 02:37:27.000 1995-11-13 2024-10-11 02:37:27 +9448 9448 9449 944.8 1889.6000000000001 9448 1995-11-14 2024-10-11 02:37:28.000 1995-11-14 2024-10-11 02:37:28 +9449 9449 9450 944.9 1889.8000000000002 9449 1995-11-15 2024-10-11 02:37:29.000 1995-11-15 2024-10-11 02:37:29 +9450 9450 9451 945 1890 9450 1995-11-16 2024-10-11 02:37:30.000 1995-11-16 2024-10-11 02:37:30 +9451 9451 9452 945.1 1890.2 9451 1995-11-17 2024-10-11 02:37:31.000 1995-11-17 2024-10-11 02:37:31 +9452 9452 9453 945.2 1890.4 9452 1995-11-18 2024-10-11 02:37:32.000 1995-11-18 2024-10-11 02:37:32 +9453 9453 9454 945.3 1890.6000000000001 9453 1995-11-19 2024-10-11 02:37:33.000 1995-11-19 2024-10-11 02:37:33 +9454 9454 9455 945.4 1890.8000000000002 9454 1995-11-20 2024-10-11 02:37:34.000 1995-11-20 2024-10-11 02:37:34 +9455 9455 9456 945.5 1891 9455 1995-11-21 2024-10-11 02:37:35.000 1995-11-21 2024-10-11 02:37:35 +9456 9456 9457 945.6 1891.2 9456 1995-11-22 2024-10-11 02:37:36.000 1995-11-22 2024-10-11 02:37:36 +9457 9457 9458 945.7 1891.4 9457 1995-11-23 2024-10-11 02:37:37.000 1995-11-23 2024-10-11 02:37:37 +9458 9458 9459 945.8 1891.6000000000001 9458 1995-11-24 2024-10-11 02:37:38.000 1995-11-24 2024-10-11 02:37:38 +9459 9459 9460 945.9 1891.8000000000002 9459 1995-11-25 2024-10-11 02:37:39.000 1995-11-25 2024-10-11 02:37:39 +9460 9460 9461 946 1892 9460 1995-11-26 2024-10-11 02:37:40.000 1995-11-26 2024-10-11 02:37:40 +9461 9461 9462 946.1 1892.2 9461 1995-11-27 2024-10-11 02:37:41.000 1995-11-27 2024-10-11 02:37:41 +9462 9462 9463 946.2 1892.4 9462 1995-11-28 2024-10-11 02:37:42.000 1995-11-28 2024-10-11 02:37:42 +9463 9463 9464 946.3 1892.6000000000001 9463 1995-11-29 2024-10-11 02:37:43.000 1995-11-29 2024-10-11 02:37:43 +9464 9464 9465 946.4 1892.8000000000002 9464 1995-11-30 2024-10-11 02:37:44.000 1995-11-30 2024-10-11 02:37:44 +9465 9465 9466 946.5 1893 9465 1995-12-01 2024-10-11 02:37:45.000 1995-12-01 2024-10-11 02:37:45 +9466 9466 9467 946.6 1893.2 9466 1995-12-02 2024-10-11 02:37:46.000 1995-12-02 2024-10-11 02:37:46 +9467 9467 9468 946.7 1893.4 9467 1995-12-03 2024-10-11 02:37:47.000 1995-12-03 2024-10-11 02:37:47 +9468 9468 9469 946.8 1893.6000000000001 9468 1995-12-04 2024-10-11 02:37:48.000 1995-12-04 2024-10-11 02:37:48 +9469 9469 9470 946.9 1893.8000000000002 9469 1995-12-05 2024-10-11 02:37:49.000 1995-12-05 2024-10-11 02:37:49 +9470 9470 9471 947 1894 9470 1995-12-06 2024-10-11 02:37:50.000 1995-12-06 2024-10-11 02:37:50 +9471 9471 9472 947.1 1894.2 9471 1995-12-07 2024-10-11 02:37:51.000 1995-12-07 2024-10-11 02:37:51 +9472 9472 9473 947.2 1894.4 9472 1995-12-08 2024-10-11 02:37:52.000 1995-12-08 2024-10-11 02:37:52 +9473 9473 9474 947.3 1894.6000000000001 9473 1995-12-09 2024-10-11 02:37:53.000 1995-12-09 2024-10-11 02:37:53 +9474 9474 9475 947.4 1894.8000000000002 9474 1995-12-10 2024-10-11 02:37:54.000 1995-12-10 2024-10-11 02:37:54 +9475 9475 9476 947.5 1895 9475 1995-12-11 2024-10-11 02:37:55.000 1995-12-11 2024-10-11 02:37:55 +9476 9476 9477 947.6 1895.2 9476 1995-12-12 2024-10-11 02:37:56.000 1995-12-12 2024-10-11 02:37:56 +9477 9477 9478 947.7 1895.4 9477 1995-12-13 2024-10-11 02:37:57.000 1995-12-13 2024-10-11 02:37:57 +9478 9478 9479 947.8 1895.6000000000001 9478 1995-12-14 2024-10-11 02:37:58.000 1995-12-14 2024-10-11 02:37:58 +9479 9479 9480 947.9 1895.8000000000002 9479 1995-12-15 2024-10-11 02:37:59.000 1995-12-15 2024-10-11 02:37:59 +9480 9480 9481 948 1896 9480 1995-12-16 2024-10-11 02:38:00.000 1995-12-16 2024-10-11 02:38:00 +9481 9481 9482 948.1 1896.2 9481 1995-12-17 2024-10-11 02:38:01.000 1995-12-17 2024-10-11 02:38:01 +9482 9482 9483 948.2 1896.4 9482 1995-12-18 2024-10-11 02:38:02.000 1995-12-18 2024-10-11 02:38:02 +9483 9483 9484 948.3 1896.6000000000001 9483 1995-12-19 2024-10-11 02:38:03.000 1995-12-19 2024-10-11 02:38:03 +9484 9484 9485 948.4 1896.8000000000002 9484 1995-12-20 2024-10-11 02:38:04.000 1995-12-20 2024-10-11 02:38:04 +9485 9485 9486 948.5 1897 9485 1995-12-21 2024-10-11 02:38:05.000 1995-12-21 2024-10-11 02:38:05 +9486 9486 9487 948.6 1897.2 9486 1995-12-22 2024-10-11 02:38:06.000 1995-12-22 2024-10-11 02:38:06 +9487 9487 9488 948.7 1897.4 9487 1995-12-23 2024-10-11 02:38:07.000 1995-12-23 2024-10-11 02:38:07 +9488 9488 9489 948.8 1897.6000000000001 9488 1995-12-24 2024-10-11 02:38:08.000 1995-12-24 2024-10-11 02:38:08 +9489 9489 9490 948.9 1897.8000000000002 9489 1995-12-25 2024-10-11 02:38:09.000 1995-12-25 2024-10-11 02:38:09 +9490 9490 9491 949 1898 9490 1995-12-26 2024-10-11 02:38:10.000 1995-12-26 2024-10-11 02:38:10 +9491 9491 9492 949.1 1898.2 9491 1995-12-27 2024-10-11 02:38:11.000 1995-12-27 2024-10-11 02:38:11 +9492 9492 9493 949.2 1898.4 9492 1995-12-28 2024-10-11 02:38:12.000 1995-12-28 2024-10-11 02:38:12 +9493 9493 9494 949.3 1898.6000000000001 9493 1995-12-29 2024-10-11 02:38:13.000 1995-12-29 2024-10-11 02:38:13 +9494 9494 9495 949.4 1898.8000000000002 9494 1995-12-30 2024-10-11 02:38:14.000 1995-12-30 2024-10-11 02:38:14 +9495 9495 9496 949.5 1899 9495 1995-12-31 2024-10-11 02:38:15.000 1995-12-31 2024-10-11 02:38:15 +9496 9496 9497 949.6 1899.2 9496 1996-01-01 2024-10-11 02:38:16.000 1996-01-01 2024-10-11 02:38:16 +9497 9497 9498 949.7 1899.4 9497 1996-01-02 2024-10-11 02:38:17.000 1996-01-02 2024-10-11 02:38:17 +9498 9498 9499 949.8 1899.6000000000001 9498 1996-01-03 2024-10-11 02:38:18.000 1996-01-03 2024-10-11 02:38:18 +9499 9499 9500 949.9 1899.8000000000002 9499 1996-01-04 2024-10-11 02:38:19.000 1996-01-04 2024-10-11 02:38:19 +9500 9500 9501 950 1900 9500 1996-01-05 2024-10-11 02:38:20.000 1996-01-05 2024-10-11 02:38:20 +9501 9501 9502 950.1 1900.2 9501 1996-01-06 2024-10-11 02:38:21.000 1996-01-06 2024-10-11 02:38:21 +9502 9502 9503 950.2 1900.4 9502 1996-01-07 2024-10-11 02:38:22.000 1996-01-07 2024-10-11 02:38:22 +9503 9503 9504 950.3 1900.6000000000001 9503 1996-01-08 2024-10-11 02:38:23.000 1996-01-08 2024-10-11 02:38:23 +9504 9504 9505 950.4 1900.8000000000002 9504 1996-01-09 2024-10-11 02:38:24.000 1996-01-09 2024-10-11 02:38:24 +9505 9505 9506 950.5 1901 9505 1996-01-10 2024-10-11 02:38:25.000 1996-01-10 2024-10-11 02:38:25 +9506 9506 9507 950.6 1901.2 9506 1996-01-11 2024-10-11 02:38:26.000 1996-01-11 2024-10-11 02:38:26 +9507 9507 9508 950.7 1901.4 9507 1996-01-12 2024-10-11 02:38:27.000 1996-01-12 2024-10-11 02:38:27 +9508 9508 9509 950.8 1901.6000000000001 9508 1996-01-13 2024-10-11 02:38:28.000 1996-01-13 2024-10-11 02:38:28 +9509 9509 9510 950.9 1901.8000000000002 9509 1996-01-14 2024-10-11 02:38:29.000 1996-01-14 2024-10-11 02:38:29 +9510 9510 9511 951 1902 9510 1996-01-15 2024-10-11 02:38:30.000 1996-01-15 2024-10-11 02:38:30 +9511 9511 9512 951.1 1902.2 9511 1996-01-16 2024-10-11 02:38:31.000 1996-01-16 2024-10-11 02:38:31 +9512 9512 9513 951.2 1902.4 9512 1996-01-17 2024-10-11 02:38:32.000 1996-01-17 2024-10-11 02:38:32 +9513 9513 9514 951.3 1902.6000000000001 9513 1996-01-18 2024-10-11 02:38:33.000 1996-01-18 2024-10-11 02:38:33 +9514 9514 9515 951.4 1902.8000000000002 9514 1996-01-19 2024-10-11 02:38:34.000 1996-01-19 2024-10-11 02:38:34 +9515 9515 9516 951.5 1903 9515 1996-01-20 2024-10-11 02:38:35.000 1996-01-20 2024-10-11 02:38:35 +9516 9516 9517 951.6 1903.2 9516 1996-01-21 2024-10-11 02:38:36.000 1996-01-21 2024-10-11 02:38:36 +9517 9517 9518 951.7 1903.4 9517 1996-01-22 2024-10-11 02:38:37.000 1996-01-22 2024-10-11 02:38:37 +9518 9518 9519 951.8 1903.6000000000001 9518 1996-01-23 2024-10-11 02:38:38.000 1996-01-23 2024-10-11 02:38:38 +9519 9519 9520 951.9 1903.8000000000002 9519 1996-01-24 2024-10-11 02:38:39.000 1996-01-24 2024-10-11 02:38:39 +9520 9520 9521 952 1904 9520 1996-01-25 2024-10-11 02:38:40.000 1996-01-25 2024-10-11 02:38:40 +9521 9521 9522 952.1 1904.2 9521 1996-01-26 2024-10-11 02:38:41.000 1996-01-26 2024-10-11 02:38:41 +9522 9522 9523 952.2 1904.4 9522 1996-01-27 2024-10-11 02:38:42.000 1996-01-27 2024-10-11 02:38:42 +9523 9523 9524 952.3 1904.6000000000001 9523 1996-01-28 2024-10-11 02:38:43.000 1996-01-28 2024-10-11 02:38:43 +9524 9524 9525 952.4 1904.8000000000002 9524 1996-01-29 2024-10-11 02:38:44.000 1996-01-29 2024-10-11 02:38:44 +9525 9525 9526 952.5 1905 9525 1996-01-30 2024-10-11 02:38:45.000 1996-01-30 2024-10-11 02:38:45 +9526 9526 9527 952.6 1905.2 9526 1996-01-31 2024-10-11 02:38:46.000 1996-01-31 2024-10-11 02:38:46 +9527 9527 9528 952.7 1905.4 9527 1996-02-01 2024-10-11 02:38:47.000 1996-02-01 2024-10-11 02:38:47 +9528 9528 9529 952.8 1905.6000000000001 9528 1996-02-02 2024-10-11 02:38:48.000 1996-02-02 2024-10-11 02:38:48 +9529 9529 9530 952.9 1905.8000000000002 9529 1996-02-03 2024-10-11 02:38:49.000 1996-02-03 2024-10-11 02:38:49 +9530 9530 9531 953 1906 9530 1996-02-04 2024-10-11 02:38:50.000 1996-02-04 2024-10-11 02:38:50 +9531 9531 9532 953.1 1906.2 9531 1996-02-05 2024-10-11 02:38:51.000 1996-02-05 2024-10-11 02:38:51 +9532 9532 9533 953.2 1906.4 9532 1996-02-06 2024-10-11 02:38:52.000 1996-02-06 2024-10-11 02:38:52 +9533 9533 9534 953.3 1906.6000000000001 9533 1996-02-07 2024-10-11 02:38:53.000 1996-02-07 2024-10-11 02:38:53 +9534 9534 9535 953.4 1906.8000000000002 9534 1996-02-08 2024-10-11 02:38:54.000 1996-02-08 2024-10-11 02:38:54 +9535 9535 9536 953.5 1907 9535 1996-02-09 2024-10-11 02:38:55.000 1996-02-09 2024-10-11 02:38:55 +9536 9536 9537 953.6 1907.2 9536 1996-02-10 2024-10-11 02:38:56.000 1996-02-10 2024-10-11 02:38:56 +9537 9537 9538 953.7 1907.4 9537 1996-02-11 2024-10-11 02:38:57.000 1996-02-11 2024-10-11 02:38:57 +9538 9538 9539 953.8 1907.6000000000001 9538 1996-02-12 2024-10-11 02:38:58.000 1996-02-12 2024-10-11 02:38:58 +9539 9539 9540 953.9 1907.8000000000002 9539 1996-02-13 2024-10-11 02:38:59.000 1996-02-13 2024-10-11 02:38:59 +9540 9540 9541 954 1908 9540 1996-02-14 2024-10-11 02:39:00.000 1996-02-14 2024-10-11 02:39:00 +9541 9541 9542 954.1 1908.2 9541 1996-02-15 2024-10-11 02:39:01.000 1996-02-15 2024-10-11 02:39:01 +9542 9542 9543 954.2 1908.4 9542 1996-02-16 2024-10-11 02:39:02.000 1996-02-16 2024-10-11 02:39:02 +9543 9543 9544 954.3 1908.6000000000001 9543 1996-02-17 2024-10-11 02:39:03.000 1996-02-17 2024-10-11 02:39:03 +9544 9544 9545 954.4 1908.8000000000002 9544 1996-02-18 2024-10-11 02:39:04.000 1996-02-18 2024-10-11 02:39:04 +9545 9545 9546 954.5 1909 9545 1996-02-19 2024-10-11 02:39:05.000 1996-02-19 2024-10-11 02:39:05 +9546 9546 9547 954.6 1909.2 9546 1996-02-20 2024-10-11 02:39:06.000 1996-02-20 2024-10-11 02:39:06 +9547 9547 9548 954.7 1909.4 9547 1996-02-21 2024-10-11 02:39:07.000 1996-02-21 2024-10-11 02:39:07 +9548 9548 9549 954.8 1909.6000000000001 9548 1996-02-22 2024-10-11 02:39:08.000 1996-02-22 2024-10-11 02:39:08 +9549 9549 9550 954.9 1909.8000000000002 9549 1996-02-23 2024-10-11 02:39:09.000 1996-02-23 2024-10-11 02:39:09 +9550 9550 9551 955 1910 9550 1996-02-24 2024-10-11 02:39:10.000 1996-02-24 2024-10-11 02:39:10 +9551 9551 9552 955.1 1910.2 9551 1996-02-25 2024-10-11 02:39:11.000 1996-02-25 2024-10-11 02:39:11 +9552 9552 9553 955.2 1910.4 9552 1996-02-26 2024-10-11 02:39:12.000 1996-02-26 2024-10-11 02:39:12 +9553 9553 9554 955.3 1910.6000000000001 9553 1996-02-27 2024-10-11 02:39:13.000 1996-02-27 2024-10-11 02:39:13 +9554 9554 9555 955.4 1910.8000000000002 9554 1996-02-28 2024-10-11 02:39:14.000 1996-02-28 2024-10-11 02:39:14 +9555 9555 9556 955.5 1911 9555 1996-02-29 2024-10-11 02:39:15.000 1996-02-29 2024-10-11 02:39:15 +9556 9556 9557 955.6 1911.2 9556 1996-03-01 2024-10-11 02:39:16.000 1996-03-01 2024-10-11 02:39:16 +9557 9557 9558 955.7 1911.4 9557 1996-03-02 2024-10-11 02:39:17.000 1996-03-02 2024-10-11 02:39:17 +9558 9558 9559 955.8 1911.6000000000001 9558 1996-03-03 2024-10-11 02:39:18.000 1996-03-03 2024-10-11 02:39:18 +9559 9559 9560 955.9 1911.8000000000002 9559 1996-03-04 2024-10-11 02:39:19.000 1996-03-04 2024-10-11 02:39:19 +9560 9560 9561 956 1912 9560 1996-03-05 2024-10-11 02:39:20.000 1996-03-05 2024-10-11 02:39:20 +9561 9561 9562 956.1 1912.2 9561 1996-03-06 2024-10-11 02:39:21.000 1996-03-06 2024-10-11 02:39:21 +9562 9562 9563 956.2 1912.4 9562 1996-03-07 2024-10-11 02:39:22.000 1996-03-07 2024-10-11 02:39:22 +9563 9563 9564 956.3 1912.6000000000001 9563 1996-03-08 2024-10-11 02:39:23.000 1996-03-08 2024-10-11 02:39:23 +9564 9564 9565 956.4 1912.8000000000002 9564 1996-03-09 2024-10-11 02:39:24.000 1996-03-09 2024-10-11 02:39:24 +9565 9565 9566 956.5 1913 9565 1996-03-10 2024-10-11 02:39:25.000 1996-03-10 2024-10-11 02:39:25 +9566 9566 9567 956.6 1913.2 9566 1996-03-11 2024-10-11 02:39:26.000 1996-03-11 2024-10-11 02:39:26 +9567 9567 9568 956.7 1913.4 9567 1996-03-12 2024-10-11 02:39:27.000 1996-03-12 2024-10-11 02:39:27 +9568 9568 9569 956.8 1913.6000000000001 9568 1996-03-13 2024-10-11 02:39:28.000 1996-03-13 2024-10-11 02:39:28 +9569 9569 9570 956.9 1913.8000000000002 9569 1996-03-14 2024-10-11 02:39:29.000 1996-03-14 2024-10-11 02:39:29 +9570 9570 9571 957 1914 9570 1996-03-15 2024-10-11 02:39:30.000 1996-03-15 2024-10-11 02:39:30 +9571 9571 9572 957.1 1914.2 9571 1996-03-16 2024-10-11 02:39:31.000 1996-03-16 2024-10-11 02:39:31 +9572 9572 9573 957.2 1914.4 9572 1996-03-17 2024-10-11 02:39:32.000 1996-03-17 2024-10-11 02:39:32 +9573 9573 9574 957.3 1914.6000000000001 9573 1996-03-18 2024-10-11 02:39:33.000 1996-03-18 2024-10-11 02:39:33 +9574 9574 9575 957.4 1914.8000000000002 9574 1996-03-19 2024-10-11 02:39:34.000 1996-03-19 2024-10-11 02:39:34 +9575 9575 9576 957.5 1915 9575 1996-03-20 2024-10-11 02:39:35.000 1996-03-20 2024-10-11 02:39:35 +9576 9576 9577 957.6 1915.2 9576 1996-03-21 2024-10-11 02:39:36.000 1996-03-21 2024-10-11 02:39:36 +9577 9577 9578 957.7 1915.4 9577 1996-03-22 2024-10-11 02:39:37.000 1996-03-22 2024-10-11 02:39:37 +9578 9578 9579 957.8 1915.6000000000001 9578 1996-03-23 2024-10-11 02:39:38.000 1996-03-23 2024-10-11 02:39:38 +9579 9579 9580 957.9 1915.8000000000002 9579 1996-03-24 2024-10-11 02:39:39.000 1996-03-24 2024-10-11 02:39:39 +9580 9580 9581 958 1916 9580 1996-03-25 2024-10-11 02:39:40.000 1996-03-25 2024-10-11 02:39:40 +9581 9581 9582 958.1 1916.2 9581 1996-03-26 2024-10-11 02:39:41.000 1996-03-26 2024-10-11 02:39:41 +9582 9582 9583 958.2 1916.4 9582 1996-03-27 2024-10-11 02:39:42.000 1996-03-27 2024-10-11 02:39:42 +9583 9583 9584 958.3 1916.6000000000001 9583 1996-03-28 2024-10-11 02:39:43.000 1996-03-28 2024-10-11 02:39:43 +9584 9584 9585 958.4 1916.8000000000002 9584 1996-03-29 2024-10-11 02:39:44.000 1996-03-29 2024-10-11 02:39:44 +9585 9585 9586 958.5 1917 9585 1996-03-30 2024-10-11 02:39:45.000 1996-03-30 2024-10-11 02:39:45 +9586 9586 9587 958.6 1917.2 9586 1996-03-31 2024-10-11 02:39:46.000 1996-03-31 2024-10-11 02:39:46 +9587 9587 9588 958.7 1917.4 9587 1996-04-01 2024-10-11 02:39:47.000 1996-04-01 2024-10-11 02:39:47 +9588 9588 9589 958.8 1917.6000000000001 9588 1996-04-02 2024-10-11 02:39:48.000 1996-04-02 2024-10-11 02:39:48 +9589 9589 9590 958.9 1917.8000000000002 9589 1996-04-03 2024-10-11 02:39:49.000 1996-04-03 2024-10-11 02:39:49 +9590 9590 9591 959 1918 9590 1996-04-04 2024-10-11 02:39:50.000 1996-04-04 2024-10-11 02:39:50 +9591 9591 9592 959.1 1918.2 9591 1996-04-05 2024-10-11 02:39:51.000 1996-04-05 2024-10-11 02:39:51 +9592 9592 9593 959.2 1918.4 9592 1996-04-06 2024-10-11 02:39:52.000 1996-04-06 2024-10-11 02:39:52 +9593 9593 9594 959.3 1918.6000000000001 9593 1996-04-07 2024-10-11 02:39:53.000 1996-04-07 2024-10-11 02:39:53 +9594 9594 9595 959.4 1918.8000000000002 9594 1996-04-08 2024-10-11 02:39:54.000 1996-04-08 2024-10-11 02:39:54 +9595 9595 9596 959.5 1919 9595 1996-04-09 2024-10-11 02:39:55.000 1996-04-09 2024-10-11 02:39:55 +9596 9596 9597 959.6 1919.2 9596 1996-04-10 2024-10-11 02:39:56.000 1996-04-10 2024-10-11 02:39:56 +9597 9597 9598 959.7 1919.4 9597 1996-04-11 2024-10-11 02:39:57.000 1996-04-11 2024-10-11 02:39:57 +9598 9598 9599 959.8 1919.6000000000001 9598 1996-04-12 2024-10-11 02:39:58.000 1996-04-12 2024-10-11 02:39:58 +9599 9599 9600 959.9 1919.8000000000002 9599 1996-04-13 2024-10-11 02:39:59.000 1996-04-13 2024-10-11 02:39:59 +9600 9600 9601 960 1920 9600 1996-04-14 2024-10-11 02:40:00.000 1996-04-14 2024-10-11 02:40:00 +9601 9601 9602 960.1 1920.2 9601 1996-04-15 2024-10-11 02:40:01.000 1996-04-15 2024-10-11 02:40:01 +9602 9602 9603 960.2 1920.4 9602 1996-04-16 2024-10-11 02:40:02.000 1996-04-16 2024-10-11 02:40:02 +9603 9603 9604 960.3 1920.6000000000001 9603 1996-04-17 2024-10-11 02:40:03.000 1996-04-17 2024-10-11 02:40:03 +9604 9604 9605 960.4 1920.8000000000002 9604 1996-04-18 2024-10-11 02:40:04.000 1996-04-18 2024-10-11 02:40:04 +9605 9605 9606 960.5 1921 9605 1996-04-19 2024-10-11 02:40:05.000 1996-04-19 2024-10-11 02:40:05 +9606 9606 9607 960.6 1921.2 9606 1996-04-20 2024-10-11 02:40:06.000 1996-04-20 2024-10-11 02:40:06 +9607 9607 9608 960.7 1921.4 9607 1996-04-21 2024-10-11 02:40:07.000 1996-04-21 2024-10-11 02:40:07 +9608 9608 9609 960.8 1921.6000000000001 9608 1996-04-22 2024-10-11 02:40:08.000 1996-04-22 2024-10-11 02:40:08 +9609 9609 9610 960.9 1921.8000000000002 9609 1996-04-23 2024-10-11 02:40:09.000 1996-04-23 2024-10-11 02:40:09 +9610 9610 9611 961 1922 9610 1996-04-24 2024-10-11 02:40:10.000 1996-04-24 2024-10-11 02:40:10 +9611 9611 9612 961.1 1922.2 9611 1996-04-25 2024-10-11 02:40:11.000 1996-04-25 2024-10-11 02:40:11 +9612 9612 9613 961.2 1922.4 9612 1996-04-26 2024-10-11 02:40:12.000 1996-04-26 2024-10-11 02:40:12 +9613 9613 9614 961.3 1922.6000000000001 9613 1996-04-27 2024-10-11 02:40:13.000 1996-04-27 2024-10-11 02:40:13 +9614 9614 9615 961.4 1922.8000000000002 9614 1996-04-28 2024-10-11 02:40:14.000 1996-04-28 2024-10-11 02:40:14 +9615 9615 9616 961.5 1923 9615 1996-04-29 2024-10-11 02:40:15.000 1996-04-29 2024-10-11 02:40:15 +9616 9616 9617 961.6 1923.2 9616 1996-04-30 2024-10-11 02:40:16.000 1996-04-30 2024-10-11 02:40:16 +9617 9617 9618 961.7 1923.4 9617 1996-05-01 2024-10-11 02:40:17.000 1996-05-01 2024-10-11 02:40:17 +9618 9618 9619 961.8 1923.6000000000001 9618 1996-05-02 2024-10-11 02:40:18.000 1996-05-02 2024-10-11 02:40:18 +9619 9619 9620 961.9 1923.8000000000002 9619 1996-05-03 2024-10-11 02:40:19.000 1996-05-03 2024-10-11 02:40:19 +9620 9620 9621 962 1924 9620 1996-05-04 2024-10-11 02:40:20.000 1996-05-04 2024-10-11 02:40:20 +9621 9621 9622 962.1 1924.2 9621 1996-05-05 2024-10-11 02:40:21.000 1996-05-05 2024-10-11 02:40:21 +9622 9622 9623 962.2 1924.4 9622 1996-05-06 2024-10-11 02:40:22.000 1996-05-06 2024-10-11 02:40:22 +9623 9623 9624 962.3 1924.6000000000001 9623 1996-05-07 2024-10-11 02:40:23.000 1996-05-07 2024-10-11 02:40:23 +9624 9624 9625 962.4 1924.8000000000002 9624 1996-05-08 2024-10-11 02:40:24.000 1996-05-08 2024-10-11 02:40:24 +9625 9625 9626 962.5 1925 9625 1996-05-09 2024-10-11 02:40:25.000 1996-05-09 2024-10-11 02:40:25 +9626 9626 9627 962.6 1925.2 9626 1996-05-10 2024-10-11 02:40:26.000 1996-05-10 2024-10-11 02:40:26 +9627 9627 9628 962.7 1925.4 9627 1996-05-11 2024-10-11 02:40:27.000 1996-05-11 2024-10-11 02:40:27 +9628 9628 9629 962.8 1925.6000000000001 9628 1996-05-12 2024-10-11 02:40:28.000 1996-05-12 2024-10-11 02:40:28 +9629 9629 9630 962.9 1925.8000000000002 9629 1996-05-13 2024-10-11 02:40:29.000 1996-05-13 2024-10-11 02:40:29 +9630 9630 9631 963 1926 9630 1996-05-14 2024-10-11 02:40:30.000 1996-05-14 2024-10-11 02:40:30 +9631 9631 9632 963.1 1926.2 9631 1996-05-15 2024-10-11 02:40:31.000 1996-05-15 2024-10-11 02:40:31 +9632 9632 9633 963.2 1926.4 9632 1996-05-16 2024-10-11 02:40:32.000 1996-05-16 2024-10-11 02:40:32 +9633 9633 9634 963.3 1926.6000000000001 9633 1996-05-17 2024-10-11 02:40:33.000 1996-05-17 2024-10-11 02:40:33 +9634 9634 9635 963.4 1926.8000000000002 9634 1996-05-18 2024-10-11 02:40:34.000 1996-05-18 2024-10-11 02:40:34 +9635 9635 9636 963.5 1927 9635 1996-05-19 2024-10-11 02:40:35.000 1996-05-19 2024-10-11 02:40:35 +9636 9636 9637 963.6 1927.2 9636 1996-05-20 2024-10-11 02:40:36.000 1996-05-20 2024-10-11 02:40:36 +9637 9637 9638 963.7 1927.4 9637 1996-05-21 2024-10-11 02:40:37.000 1996-05-21 2024-10-11 02:40:37 +9638 9638 9639 963.8 1927.6000000000001 9638 1996-05-22 2024-10-11 02:40:38.000 1996-05-22 2024-10-11 02:40:38 +9639 9639 9640 963.9 1927.8000000000002 9639 1996-05-23 2024-10-11 02:40:39.000 1996-05-23 2024-10-11 02:40:39 +9640 9640 9641 964 1928 9640 1996-05-24 2024-10-11 02:40:40.000 1996-05-24 2024-10-11 02:40:40 +9641 9641 9642 964.1 1928.2 9641 1996-05-25 2024-10-11 02:40:41.000 1996-05-25 2024-10-11 02:40:41 +9642 9642 9643 964.2 1928.4 9642 1996-05-26 2024-10-11 02:40:42.000 1996-05-26 2024-10-11 02:40:42 +9643 9643 9644 964.3 1928.6000000000001 9643 1996-05-27 2024-10-11 02:40:43.000 1996-05-27 2024-10-11 02:40:43 +9644 9644 9645 964.4 1928.8000000000002 9644 1996-05-28 2024-10-11 02:40:44.000 1996-05-28 2024-10-11 02:40:44 +9645 9645 9646 964.5 1929 9645 1996-05-29 2024-10-11 02:40:45.000 1996-05-29 2024-10-11 02:40:45 +9646 9646 9647 964.6 1929.2 9646 1996-05-30 2024-10-11 02:40:46.000 1996-05-30 2024-10-11 02:40:46 +9647 9647 9648 964.7 1929.4 9647 1996-05-31 2024-10-11 02:40:47.000 1996-05-31 2024-10-11 02:40:47 +9648 9648 9649 964.8 1929.6000000000001 9648 1996-06-01 2024-10-11 02:40:48.000 1996-06-01 2024-10-11 02:40:48 +9649 9649 9650 964.9 1929.8000000000002 9649 1996-06-02 2024-10-11 02:40:49.000 1996-06-02 2024-10-11 02:40:49 +9650 9650 9651 965 1930 9650 1996-06-03 2024-10-11 02:40:50.000 1996-06-03 2024-10-11 02:40:50 +9651 9651 9652 965.1 1930.2 9651 1996-06-04 2024-10-11 02:40:51.000 1996-06-04 2024-10-11 02:40:51 +9652 9652 9653 965.2 1930.4 9652 1996-06-05 2024-10-11 02:40:52.000 1996-06-05 2024-10-11 02:40:52 +9653 9653 9654 965.3 1930.6000000000001 9653 1996-06-06 2024-10-11 02:40:53.000 1996-06-06 2024-10-11 02:40:53 +9654 9654 9655 965.4 1930.8000000000002 9654 1996-06-07 2024-10-11 02:40:54.000 1996-06-07 2024-10-11 02:40:54 +9655 9655 9656 965.5 1931 9655 1996-06-08 2024-10-11 02:40:55.000 1996-06-08 2024-10-11 02:40:55 +9656 9656 9657 965.6 1931.2 9656 1996-06-09 2024-10-11 02:40:56.000 1996-06-09 2024-10-11 02:40:56 +9657 9657 9658 965.7 1931.4 9657 1996-06-10 2024-10-11 02:40:57.000 1996-06-10 2024-10-11 02:40:57 +9658 9658 9659 965.8 1931.6000000000001 9658 1996-06-11 2024-10-11 02:40:58.000 1996-06-11 2024-10-11 02:40:58 +9659 9659 9660 965.9 1931.8000000000002 9659 1996-06-12 2024-10-11 02:40:59.000 1996-06-12 2024-10-11 02:40:59 +9660 9660 9661 966 1932 9660 1996-06-13 2024-10-11 02:41:00.000 1996-06-13 2024-10-11 02:41:00 +9661 9661 9662 966.1 1932.2 9661 1996-06-14 2024-10-11 02:41:01.000 1996-06-14 2024-10-11 02:41:01 +9662 9662 9663 966.2 1932.4 9662 1996-06-15 2024-10-11 02:41:02.000 1996-06-15 2024-10-11 02:41:02 +9663 9663 9664 966.3 1932.6000000000001 9663 1996-06-16 2024-10-11 02:41:03.000 1996-06-16 2024-10-11 02:41:03 +9664 9664 9665 966.4 1932.8000000000002 9664 1996-06-17 2024-10-11 02:41:04.000 1996-06-17 2024-10-11 02:41:04 +9665 9665 9666 966.5 1933 9665 1996-06-18 2024-10-11 02:41:05.000 1996-06-18 2024-10-11 02:41:05 +9666 9666 9667 966.6 1933.2 9666 1996-06-19 2024-10-11 02:41:06.000 1996-06-19 2024-10-11 02:41:06 +9667 9667 9668 966.7 1933.4 9667 1996-06-20 2024-10-11 02:41:07.000 1996-06-20 2024-10-11 02:41:07 +9668 9668 9669 966.8 1933.6000000000001 9668 1996-06-21 2024-10-11 02:41:08.000 1996-06-21 2024-10-11 02:41:08 +9669 9669 9670 966.9 1933.8000000000002 9669 1996-06-22 2024-10-11 02:41:09.000 1996-06-22 2024-10-11 02:41:09 +9670 9670 9671 967 1934 9670 1996-06-23 2024-10-11 02:41:10.000 1996-06-23 2024-10-11 02:41:10 +9671 9671 9672 967.1 1934.2 9671 1996-06-24 2024-10-11 02:41:11.000 1996-06-24 2024-10-11 02:41:11 +9672 9672 9673 967.2 1934.4 9672 1996-06-25 2024-10-11 02:41:12.000 1996-06-25 2024-10-11 02:41:12 +9673 9673 9674 967.3 1934.6000000000001 9673 1996-06-26 2024-10-11 02:41:13.000 1996-06-26 2024-10-11 02:41:13 +9674 9674 9675 967.4 1934.8000000000002 9674 1996-06-27 2024-10-11 02:41:14.000 1996-06-27 2024-10-11 02:41:14 +9675 9675 9676 967.5 1935 9675 1996-06-28 2024-10-11 02:41:15.000 1996-06-28 2024-10-11 02:41:15 +9676 9676 9677 967.6 1935.2 9676 1996-06-29 2024-10-11 02:41:16.000 1996-06-29 2024-10-11 02:41:16 +9677 9677 9678 967.7 1935.4 9677 1996-06-30 2024-10-11 02:41:17.000 1996-06-30 2024-10-11 02:41:17 +9678 9678 9679 967.8 1935.6000000000001 9678 1996-07-01 2024-10-11 02:41:18.000 1996-07-01 2024-10-11 02:41:18 +9679 9679 9680 967.9 1935.8000000000002 9679 1996-07-02 2024-10-11 02:41:19.000 1996-07-02 2024-10-11 02:41:19 +9680 9680 9681 968 1936 9680 1996-07-03 2024-10-11 02:41:20.000 1996-07-03 2024-10-11 02:41:20 +9681 9681 9682 968.1 1936.2 9681 1996-07-04 2024-10-11 02:41:21.000 1996-07-04 2024-10-11 02:41:21 +9682 9682 9683 968.2 1936.4 9682 1996-07-05 2024-10-11 02:41:22.000 1996-07-05 2024-10-11 02:41:22 +9683 9683 9684 968.3 1936.6000000000001 9683 1996-07-06 2024-10-11 02:41:23.000 1996-07-06 2024-10-11 02:41:23 +9684 9684 9685 968.4 1936.8000000000002 9684 1996-07-07 2024-10-11 02:41:24.000 1996-07-07 2024-10-11 02:41:24 +9685 9685 9686 968.5 1937 9685 1996-07-08 2024-10-11 02:41:25.000 1996-07-08 2024-10-11 02:41:25 +9686 9686 9687 968.6 1937.2 9686 1996-07-09 2024-10-11 02:41:26.000 1996-07-09 2024-10-11 02:41:26 +9687 9687 9688 968.7 1937.4 9687 1996-07-10 2024-10-11 02:41:27.000 1996-07-10 2024-10-11 02:41:27 +9688 9688 9689 968.8 1937.6000000000001 9688 1996-07-11 2024-10-11 02:41:28.000 1996-07-11 2024-10-11 02:41:28 +9689 9689 9690 968.9 1937.8000000000002 9689 1996-07-12 2024-10-11 02:41:29.000 1996-07-12 2024-10-11 02:41:29 +9690 9690 9691 969 1938 9690 1996-07-13 2024-10-11 02:41:30.000 1996-07-13 2024-10-11 02:41:30 +9691 9691 9692 969.1 1938.2 9691 1996-07-14 2024-10-11 02:41:31.000 1996-07-14 2024-10-11 02:41:31 +9692 9692 9693 969.2 1938.4 9692 1996-07-15 2024-10-11 02:41:32.000 1996-07-15 2024-10-11 02:41:32 +9693 9693 9694 969.3 1938.6000000000001 9693 1996-07-16 2024-10-11 02:41:33.000 1996-07-16 2024-10-11 02:41:33 +9694 9694 9695 969.4 1938.8000000000002 9694 1996-07-17 2024-10-11 02:41:34.000 1996-07-17 2024-10-11 02:41:34 +9695 9695 9696 969.5 1939 9695 1996-07-18 2024-10-11 02:41:35.000 1996-07-18 2024-10-11 02:41:35 +9696 9696 9697 969.6 1939.2 9696 1996-07-19 2024-10-11 02:41:36.000 1996-07-19 2024-10-11 02:41:36 +9697 9697 9698 969.7 1939.4 9697 1996-07-20 2024-10-11 02:41:37.000 1996-07-20 2024-10-11 02:41:37 +9698 9698 9699 969.8 1939.6000000000001 9698 1996-07-21 2024-10-11 02:41:38.000 1996-07-21 2024-10-11 02:41:38 +9699 9699 9700 969.9 1939.8000000000002 9699 1996-07-22 2024-10-11 02:41:39.000 1996-07-22 2024-10-11 02:41:39 +9700 9700 9701 970 1940 9700 1996-07-23 2024-10-11 02:41:40.000 1996-07-23 2024-10-11 02:41:40 +9701 9701 9702 970.1 1940.2 9701 1996-07-24 2024-10-11 02:41:41.000 1996-07-24 2024-10-11 02:41:41 +9702 9702 9703 970.2 1940.4 9702 1996-07-25 2024-10-11 02:41:42.000 1996-07-25 2024-10-11 02:41:42 +9703 9703 9704 970.3 1940.6000000000001 9703 1996-07-26 2024-10-11 02:41:43.000 1996-07-26 2024-10-11 02:41:43 +9704 9704 9705 970.4 1940.8000000000002 9704 1996-07-27 2024-10-11 02:41:44.000 1996-07-27 2024-10-11 02:41:44 +9705 9705 9706 970.5 1941 9705 1996-07-28 2024-10-11 02:41:45.000 1996-07-28 2024-10-11 02:41:45 +9706 9706 9707 970.6 1941.2 9706 1996-07-29 2024-10-11 02:41:46.000 1996-07-29 2024-10-11 02:41:46 +9707 9707 9708 970.7 1941.4 9707 1996-07-30 2024-10-11 02:41:47.000 1996-07-30 2024-10-11 02:41:47 +9708 9708 9709 970.8 1941.6000000000001 9708 1996-07-31 2024-10-11 02:41:48.000 1996-07-31 2024-10-11 02:41:48 +9709 9709 9710 970.9 1941.8000000000002 9709 1996-08-01 2024-10-11 02:41:49.000 1996-08-01 2024-10-11 02:41:49 +9710 9710 9711 971 1942 9710 1996-08-02 2024-10-11 02:41:50.000 1996-08-02 2024-10-11 02:41:50 +9711 9711 9712 971.1 1942.2 9711 1996-08-03 2024-10-11 02:41:51.000 1996-08-03 2024-10-11 02:41:51 +9712 9712 9713 971.2 1942.4 9712 1996-08-04 2024-10-11 02:41:52.000 1996-08-04 2024-10-11 02:41:52 +9713 9713 9714 971.3 1942.6000000000001 9713 1996-08-05 2024-10-11 02:41:53.000 1996-08-05 2024-10-11 02:41:53 +9714 9714 9715 971.4 1942.8000000000002 9714 1996-08-06 2024-10-11 02:41:54.000 1996-08-06 2024-10-11 02:41:54 +9715 9715 9716 971.5 1943 9715 1996-08-07 2024-10-11 02:41:55.000 1996-08-07 2024-10-11 02:41:55 +9716 9716 9717 971.6 1943.2 9716 1996-08-08 2024-10-11 02:41:56.000 1996-08-08 2024-10-11 02:41:56 +9717 9717 9718 971.7 1943.4 9717 1996-08-09 2024-10-11 02:41:57.000 1996-08-09 2024-10-11 02:41:57 +9718 9718 9719 971.8 1943.6000000000001 9718 1996-08-10 2024-10-11 02:41:58.000 1996-08-10 2024-10-11 02:41:58 +9719 9719 9720 971.9 1943.8000000000002 9719 1996-08-11 2024-10-11 02:41:59.000 1996-08-11 2024-10-11 02:41:59 +9720 9720 9721 972 1944 9720 1996-08-12 2024-10-11 02:42:00.000 1996-08-12 2024-10-11 02:42:00 +9721 9721 9722 972.1 1944.2 9721 1996-08-13 2024-10-11 02:42:01.000 1996-08-13 2024-10-11 02:42:01 +9722 9722 9723 972.2 1944.4 9722 1996-08-14 2024-10-11 02:42:02.000 1996-08-14 2024-10-11 02:42:02 +9723 9723 9724 972.3 1944.6000000000001 9723 1996-08-15 2024-10-11 02:42:03.000 1996-08-15 2024-10-11 02:42:03 +9724 9724 9725 972.4 1944.8000000000002 9724 1996-08-16 2024-10-11 02:42:04.000 1996-08-16 2024-10-11 02:42:04 +9725 9725 9726 972.5 1945 9725 1996-08-17 2024-10-11 02:42:05.000 1996-08-17 2024-10-11 02:42:05 +9726 9726 9727 972.6 1945.2 9726 1996-08-18 2024-10-11 02:42:06.000 1996-08-18 2024-10-11 02:42:06 +9727 9727 9728 972.7 1945.4 9727 1996-08-19 2024-10-11 02:42:07.000 1996-08-19 2024-10-11 02:42:07 +9728 9728 9729 972.8 1945.6000000000001 9728 1996-08-20 2024-10-11 02:42:08.000 1996-08-20 2024-10-11 02:42:08 +9729 9729 9730 972.9 1945.8000000000002 9729 1996-08-21 2024-10-11 02:42:09.000 1996-08-21 2024-10-11 02:42:09 +9730 9730 9731 973 1946 9730 1996-08-22 2024-10-11 02:42:10.000 1996-08-22 2024-10-11 02:42:10 +9731 9731 9732 973.1 1946.2 9731 1996-08-23 2024-10-11 02:42:11.000 1996-08-23 2024-10-11 02:42:11 +9732 9732 9733 973.2 1946.4 9732 1996-08-24 2024-10-11 02:42:12.000 1996-08-24 2024-10-11 02:42:12 +9733 9733 9734 973.3 1946.6000000000001 9733 1996-08-25 2024-10-11 02:42:13.000 1996-08-25 2024-10-11 02:42:13 +9734 9734 9735 973.4 1946.8000000000002 9734 1996-08-26 2024-10-11 02:42:14.000 1996-08-26 2024-10-11 02:42:14 +9735 9735 9736 973.5 1947 9735 1996-08-27 2024-10-11 02:42:15.000 1996-08-27 2024-10-11 02:42:15 +9736 9736 9737 973.6 1947.2 9736 1996-08-28 2024-10-11 02:42:16.000 1996-08-28 2024-10-11 02:42:16 +9737 9737 9738 973.7 1947.4 9737 1996-08-29 2024-10-11 02:42:17.000 1996-08-29 2024-10-11 02:42:17 +9738 9738 9739 973.8 1947.6000000000001 9738 1996-08-30 2024-10-11 02:42:18.000 1996-08-30 2024-10-11 02:42:18 +9739 9739 9740 973.9 1947.8000000000002 9739 1996-08-31 2024-10-11 02:42:19.000 1996-08-31 2024-10-11 02:42:19 +9740 9740 9741 974 1948 9740 1996-09-01 2024-10-11 02:42:20.000 1996-09-01 2024-10-11 02:42:20 +9741 9741 9742 974.1 1948.2 9741 1996-09-02 2024-10-11 02:42:21.000 1996-09-02 2024-10-11 02:42:21 +9742 9742 9743 974.2 1948.4 9742 1996-09-03 2024-10-11 02:42:22.000 1996-09-03 2024-10-11 02:42:22 +9743 9743 9744 974.3 1948.6000000000001 9743 1996-09-04 2024-10-11 02:42:23.000 1996-09-04 2024-10-11 02:42:23 +9744 9744 9745 974.4 1948.8000000000002 9744 1996-09-05 2024-10-11 02:42:24.000 1996-09-05 2024-10-11 02:42:24 +9745 9745 9746 974.5 1949 9745 1996-09-06 2024-10-11 02:42:25.000 1996-09-06 2024-10-11 02:42:25 +9746 9746 9747 974.6 1949.2 9746 1996-09-07 2024-10-11 02:42:26.000 1996-09-07 2024-10-11 02:42:26 +9747 9747 9748 974.7 1949.4 9747 1996-09-08 2024-10-11 02:42:27.000 1996-09-08 2024-10-11 02:42:27 +9748 9748 9749 974.8 1949.6000000000001 9748 1996-09-09 2024-10-11 02:42:28.000 1996-09-09 2024-10-11 02:42:28 +9749 9749 9750 974.9 1949.8000000000002 9749 1996-09-10 2024-10-11 02:42:29.000 1996-09-10 2024-10-11 02:42:29 +9750 9750 9751 975 1950 9750 1996-09-11 2024-10-11 02:42:30.000 1996-09-11 2024-10-11 02:42:30 +9751 9751 9752 975.1 1950.2 9751 1996-09-12 2024-10-11 02:42:31.000 1996-09-12 2024-10-11 02:42:31 +9752 9752 9753 975.2 1950.4 9752 1996-09-13 2024-10-11 02:42:32.000 1996-09-13 2024-10-11 02:42:32 +9753 9753 9754 975.3 1950.6000000000001 9753 1996-09-14 2024-10-11 02:42:33.000 1996-09-14 2024-10-11 02:42:33 +9754 9754 9755 975.4 1950.8000000000002 9754 1996-09-15 2024-10-11 02:42:34.000 1996-09-15 2024-10-11 02:42:34 +9755 9755 9756 975.5 1951 9755 1996-09-16 2024-10-11 02:42:35.000 1996-09-16 2024-10-11 02:42:35 +9756 9756 9757 975.6 1951.2 9756 1996-09-17 2024-10-11 02:42:36.000 1996-09-17 2024-10-11 02:42:36 +9757 9757 9758 975.7 1951.4 9757 1996-09-18 2024-10-11 02:42:37.000 1996-09-18 2024-10-11 02:42:37 +9758 9758 9759 975.8 1951.6000000000001 9758 1996-09-19 2024-10-11 02:42:38.000 1996-09-19 2024-10-11 02:42:38 +9759 9759 9760 975.9 1951.8000000000002 9759 1996-09-20 2024-10-11 02:42:39.000 1996-09-20 2024-10-11 02:42:39 +9760 9760 9761 976 1952 9760 1996-09-21 2024-10-11 02:42:40.000 1996-09-21 2024-10-11 02:42:40 +9761 9761 9762 976.1 1952.2 9761 1996-09-22 2024-10-11 02:42:41.000 1996-09-22 2024-10-11 02:42:41 +9762 9762 9763 976.2 1952.4 9762 1996-09-23 2024-10-11 02:42:42.000 1996-09-23 2024-10-11 02:42:42 +9763 9763 9764 976.3 1952.6000000000001 9763 1996-09-24 2024-10-11 02:42:43.000 1996-09-24 2024-10-11 02:42:43 +9764 9764 9765 976.4 1952.8000000000002 9764 1996-09-25 2024-10-11 02:42:44.000 1996-09-25 2024-10-11 02:42:44 +9765 9765 9766 976.5 1953 9765 1996-09-26 2024-10-11 02:42:45.000 1996-09-26 2024-10-11 02:42:45 +9766 9766 9767 976.6 1953.2 9766 1996-09-27 2024-10-11 02:42:46.000 1996-09-27 2024-10-11 02:42:46 +9767 9767 9768 976.7 1953.4 9767 1996-09-28 2024-10-11 02:42:47.000 1996-09-28 2024-10-11 02:42:47 +9768 9768 9769 976.8 1953.6000000000001 9768 1996-09-29 2024-10-11 02:42:48.000 1996-09-29 2024-10-11 02:42:48 +9769 9769 9770 976.9 1953.8000000000002 9769 1996-09-30 2024-10-11 02:42:49.000 1996-09-30 2024-10-11 02:42:49 +9770 9770 9771 977 1954 9770 1996-10-01 2024-10-11 02:42:50.000 1996-10-01 2024-10-11 02:42:50 +9771 9771 9772 977.1 1954.2 9771 1996-10-02 2024-10-11 02:42:51.000 1996-10-02 2024-10-11 02:42:51 +9772 9772 9773 977.2 1954.4 9772 1996-10-03 2024-10-11 02:42:52.000 1996-10-03 2024-10-11 02:42:52 +9773 9773 9774 977.3 1954.6000000000001 9773 1996-10-04 2024-10-11 02:42:53.000 1996-10-04 2024-10-11 02:42:53 +9774 9774 9775 977.4 1954.8000000000002 9774 1996-10-05 2024-10-11 02:42:54.000 1996-10-05 2024-10-11 02:42:54 +9775 9775 9776 977.5 1955 9775 1996-10-06 2024-10-11 02:42:55.000 1996-10-06 2024-10-11 02:42:55 +9776 9776 9777 977.6 1955.2 9776 1996-10-07 2024-10-11 02:42:56.000 1996-10-07 2024-10-11 02:42:56 +9777 9777 9778 977.7 1955.4 9777 1996-10-08 2024-10-11 02:42:57.000 1996-10-08 2024-10-11 02:42:57 +9778 9778 9779 977.8 1955.6000000000001 9778 1996-10-09 2024-10-11 02:42:58.000 1996-10-09 2024-10-11 02:42:58 +9779 9779 9780 977.9 1955.8000000000002 9779 1996-10-10 2024-10-11 02:42:59.000 1996-10-10 2024-10-11 02:42:59 +9780 9780 9781 978 1956 9780 1996-10-11 2024-10-11 02:43:00.000 1996-10-11 2024-10-11 02:43:00 +9781 9781 9782 978.1 1956.2 9781 1996-10-12 2024-10-11 02:43:01.000 1996-10-12 2024-10-11 02:43:01 +9782 9782 9783 978.2 1956.4 9782 1996-10-13 2024-10-11 02:43:02.000 1996-10-13 2024-10-11 02:43:02 +9783 9783 9784 978.3 1956.6000000000001 9783 1996-10-14 2024-10-11 02:43:03.000 1996-10-14 2024-10-11 02:43:03 +9784 9784 9785 978.4 1956.8000000000002 9784 1996-10-15 2024-10-11 02:43:04.000 1996-10-15 2024-10-11 02:43:04 +9785 9785 9786 978.5 1957 9785 1996-10-16 2024-10-11 02:43:05.000 1996-10-16 2024-10-11 02:43:05 +9786 9786 9787 978.6 1957.2 9786 1996-10-17 2024-10-11 02:43:06.000 1996-10-17 2024-10-11 02:43:06 +9787 9787 9788 978.7 1957.4 9787 1996-10-18 2024-10-11 02:43:07.000 1996-10-18 2024-10-11 02:43:07 +9788 9788 9789 978.8 1957.6000000000001 9788 1996-10-19 2024-10-11 02:43:08.000 1996-10-19 2024-10-11 02:43:08 +9789 9789 9790 978.9 1957.8000000000002 9789 1996-10-20 2024-10-11 02:43:09.000 1996-10-20 2024-10-11 02:43:09 +9790 9790 9791 979 1958 9790 1996-10-21 2024-10-11 02:43:10.000 1996-10-21 2024-10-11 02:43:10 +9791 9791 9792 979.1 1958.2 9791 1996-10-22 2024-10-11 02:43:11.000 1996-10-22 2024-10-11 02:43:11 +9792 9792 9793 979.2 1958.4 9792 1996-10-23 2024-10-11 02:43:12.000 1996-10-23 2024-10-11 02:43:12 +9793 9793 9794 979.3 1958.6000000000001 9793 1996-10-24 2024-10-11 02:43:13.000 1996-10-24 2024-10-11 02:43:13 +9794 9794 9795 979.4 1958.8000000000002 9794 1996-10-25 2024-10-11 02:43:14.000 1996-10-25 2024-10-11 02:43:14 +9795 9795 9796 979.5 1959 9795 1996-10-26 2024-10-11 02:43:15.000 1996-10-26 2024-10-11 02:43:15 +9796 9796 9797 979.6 1959.2 9796 1996-10-27 2024-10-11 02:43:16.000 1996-10-27 2024-10-11 02:43:16 +9797 9797 9798 979.7 1959.4 9797 1996-10-28 2024-10-11 02:43:17.000 1996-10-28 2024-10-11 02:43:17 +9798 9798 9799 979.8 1959.6000000000001 9798 1996-10-29 2024-10-11 02:43:18.000 1996-10-29 2024-10-11 02:43:18 +9799 9799 9800 979.9 1959.8000000000002 9799 1996-10-30 2024-10-11 02:43:19.000 1996-10-30 2024-10-11 02:43:19 +9800 9800 9801 980 1960 9800 1996-10-31 2024-10-11 02:43:20.000 1996-10-31 2024-10-11 02:43:20 +9801 9801 9802 980.1 1960.2 9801 1996-11-01 2024-10-11 02:43:21.000 1996-11-01 2024-10-11 02:43:21 +9802 9802 9803 980.2 1960.4 9802 1996-11-02 2024-10-11 02:43:22.000 1996-11-02 2024-10-11 02:43:22 +9803 9803 9804 980.3 1960.6000000000001 9803 1996-11-03 2024-10-11 02:43:23.000 1996-11-03 2024-10-11 02:43:23 +9804 9804 9805 980.4 1960.8000000000002 9804 1996-11-04 2024-10-11 02:43:24.000 1996-11-04 2024-10-11 02:43:24 +9805 9805 9806 980.5 1961 9805 1996-11-05 2024-10-11 02:43:25.000 1996-11-05 2024-10-11 02:43:25 +9806 9806 9807 980.6 1961.2 9806 1996-11-06 2024-10-11 02:43:26.000 1996-11-06 2024-10-11 02:43:26 +9807 9807 9808 980.7 1961.4 9807 1996-11-07 2024-10-11 02:43:27.000 1996-11-07 2024-10-11 02:43:27 +9808 9808 9809 980.8 1961.6000000000001 9808 1996-11-08 2024-10-11 02:43:28.000 1996-11-08 2024-10-11 02:43:28 +9809 9809 9810 980.9 1961.8000000000002 9809 1996-11-09 2024-10-11 02:43:29.000 1996-11-09 2024-10-11 02:43:29 +9810 9810 9811 981 1962 9810 1996-11-10 2024-10-11 02:43:30.000 1996-11-10 2024-10-11 02:43:30 +9811 9811 9812 981.1 1962.2 9811 1996-11-11 2024-10-11 02:43:31.000 1996-11-11 2024-10-11 02:43:31 +9812 9812 9813 981.2 1962.4 9812 1996-11-12 2024-10-11 02:43:32.000 1996-11-12 2024-10-11 02:43:32 +9813 9813 9814 981.3 1962.6000000000001 9813 1996-11-13 2024-10-11 02:43:33.000 1996-11-13 2024-10-11 02:43:33 +9814 9814 9815 981.4 1962.8000000000002 9814 1996-11-14 2024-10-11 02:43:34.000 1996-11-14 2024-10-11 02:43:34 +9815 9815 9816 981.5 1963 9815 1996-11-15 2024-10-11 02:43:35.000 1996-11-15 2024-10-11 02:43:35 +9816 9816 9817 981.6 1963.2 9816 1996-11-16 2024-10-11 02:43:36.000 1996-11-16 2024-10-11 02:43:36 +9817 9817 9818 981.7 1963.4 9817 1996-11-17 2024-10-11 02:43:37.000 1996-11-17 2024-10-11 02:43:37 +9818 9818 9819 981.8 1963.6000000000001 9818 1996-11-18 2024-10-11 02:43:38.000 1996-11-18 2024-10-11 02:43:38 +9819 9819 9820 981.9 1963.8000000000002 9819 1996-11-19 2024-10-11 02:43:39.000 1996-11-19 2024-10-11 02:43:39 +9820 9820 9821 982 1964 9820 1996-11-20 2024-10-11 02:43:40.000 1996-11-20 2024-10-11 02:43:40 +9821 9821 9822 982.1 1964.2 9821 1996-11-21 2024-10-11 02:43:41.000 1996-11-21 2024-10-11 02:43:41 +9822 9822 9823 982.2 1964.4 9822 1996-11-22 2024-10-11 02:43:42.000 1996-11-22 2024-10-11 02:43:42 +9823 9823 9824 982.3 1964.6000000000001 9823 1996-11-23 2024-10-11 02:43:43.000 1996-11-23 2024-10-11 02:43:43 +9824 9824 9825 982.4 1964.8000000000002 9824 1996-11-24 2024-10-11 02:43:44.000 1996-11-24 2024-10-11 02:43:44 +9825 9825 9826 982.5 1965 9825 1996-11-25 2024-10-11 02:43:45.000 1996-11-25 2024-10-11 02:43:45 +9826 9826 9827 982.6 1965.2 9826 1996-11-26 2024-10-11 02:43:46.000 1996-11-26 2024-10-11 02:43:46 +9827 9827 9828 982.7 1965.4 9827 1996-11-27 2024-10-11 02:43:47.000 1996-11-27 2024-10-11 02:43:47 +9828 9828 9829 982.8 1965.6000000000001 9828 1996-11-28 2024-10-11 02:43:48.000 1996-11-28 2024-10-11 02:43:48 +9829 9829 9830 982.9 1965.8000000000002 9829 1996-11-29 2024-10-11 02:43:49.000 1996-11-29 2024-10-11 02:43:49 +9830 9830 9831 983 1966 9830 1996-11-30 2024-10-11 02:43:50.000 1996-11-30 2024-10-11 02:43:50 +9831 9831 9832 983.1 1966.2 9831 1996-12-01 2024-10-11 02:43:51.000 1996-12-01 2024-10-11 02:43:51 +9832 9832 9833 983.2 1966.4 9832 1996-12-02 2024-10-11 02:43:52.000 1996-12-02 2024-10-11 02:43:52 +9833 9833 9834 983.3 1966.6000000000001 9833 1996-12-03 2024-10-11 02:43:53.000 1996-12-03 2024-10-11 02:43:53 +9834 9834 9835 983.4 1966.8000000000002 9834 1996-12-04 2024-10-11 02:43:54.000 1996-12-04 2024-10-11 02:43:54 +9835 9835 9836 983.5 1967 9835 1996-12-05 2024-10-11 02:43:55.000 1996-12-05 2024-10-11 02:43:55 +9836 9836 9837 983.6 1967.2 9836 1996-12-06 2024-10-11 02:43:56.000 1996-12-06 2024-10-11 02:43:56 +9837 9837 9838 983.7 1967.4 9837 1996-12-07 2024-10-11 02:43:57.000 1996-12-07 2024-10-11 02:43:57 +9838 9838 9839 983.8 1967.6000000000001 9838 1996-12-08 2024-10-11 02:43:58.000 1996-12-08 2024-10-11 02:43:58 +9839 9839 9840 983.9 1967.8000000000002 9839 1996-12-09 2024-10-11 02:43:59.000 1996-12-09 2024-10-11 02:43:59 +9840 9840 9841 984 1968 9840 1996-12-10 2024-10-11 02:44:00.000 1996-12-10 2024-10-11 02:44:00 +9841 9841 9842 984.1 1968.2 9841 1996-12-11 2024-10-11 02:44:01.000 1996-12-11 2024-10-11 02:44:01 +9842 9842 9843 984.2 1968.4 9842 1996-12-12 2024-10-11 02:44:02.000 1996-12-12 2024-10-11 02:44:02 +9843 9843 9844 984.3 1968.6000000000001 9843 1996-12-13 2024-10-11 02:44:03.000 1996-12-13 2024-10-11 02:44:03 +9844 9844 9845 984.4 1968.8000000000002 9844 1996-12-14 2024-10-11 02:44:04.000 1996-12-14 2024-10-11 02:44:04 +9845 9845 9846 984.5 1969 9845 1996-12-15 2024-10-11 02:44:05.000 1996-12-15 2024-10-11 02:44:05 +9846 9846 9847 984.6 1969.2 9846 1996-12-16 2024-10-11 02:44:06.000 1996-12-16 2024-10-11 02:44:06 +9847 9847 9848 984.7 1969.4 9847 1996-12-17 2024-10-11 02:44:07.000 1996-12-17 2024-10-11 02:44:07 +9848 9848 9849 984.8 1969.6000000000001 9848 1996-12-18 2024-10-11 02:44:08.000 1996-12-18 2024-10-11 02:44:08 +9849 9849 9850 984.9 1969.8000000000002 9849 1996-12-19 2024-10-11 02:44:09.000 1996-12-19 2024-10-11 02:44:09 +9850 9850 9851 985 1970 9850 1996-12-20 2024-10-11 02:44:10.000 1996-12-20 2024-10-11 02:44:10 +9851 9851 9852 985.1 1970.2 9851 1996-12-21 2024-10-11 02:44:11.000 1996-12-21 2024-10-11 02:44:11 +9852 9852 9853 985.2 1970.4 9852 1996-12-22 2024-10-11 02:44:12.000 1996-12-22 2024-10-11 02:44:12 +9853 9853 9854 985.3 1970.6000000000001 9853 1996-12-23 2024-10-11 02:44:13.000 1996-12-23 2024-10-11 02:44:13 +9854 9854 9855 985.4 1970.8000000000002 9854 1996-12-24 2024-10-11 02:44:14.000 1996-12-24 2024-10-11 02:44:14 +9855 9855 9856 985.5 1971 9855 1996-12-25 2024-10-11 02:44:15.000 1996-12-25 2024-10-11 02:44:15 +9856 9856 9857 985.6 1971.2 9856 1996-12-26 2024-10-11 02:44:16.000 1996-12-26 2024-10-11 02:44:16 +9857 9857 9858 985.7 1971.4 9857 1996-12-27 2024-10-11 02:44:17.000 1996-12-27 2024-10-11 02:44:17 +9858 9858 9859 985.8 1971.6000000000001 9858 1996-12-28 2024-10-11 02:44:18.000 1996-12-28 2024-10-11 02:44:18 +9859 9859 9860 985.9 1971.8000000000002 9859 1996-12-29 2024-10-11 02:44:19.000 1996-12-29 2024-10-11 02:44:19 +9860 9860 9861 986 1972 9860 1996-12-30 2024-10-11 02:44:20.000 1996-12-30 2024-10-11 02:44:20 +9861 9861 9862 986.1 1972.2 9861 1996-12-31 2024-10-11 02:44:21.000 1996-12-31 2024-10-11 02:44:21 +9862 9862 9863 986.2 1972.4 9862 1997-01-01 2024-10-11 02:44:22.000 1997-01-01 2024-10-11 02:44:22 +9863 9863 9864 986.3 1972.6000000000001 9863 1997-01-02 2024-10-11 02:44:23.000 1997-01-02 2024-10-11 02:44:23 +9864 9864 9865 986.4 1972.8000000000002 9864 1997-01-03 2024-10-11 02:44:24.000 1997-01-03 2024-10-11 02:44:24 +9865 9865 9866 986.5 1973 9865 1997-01-04 2024-10-11 02:44:25.000 1997-01-04 2024-10-11 02:44:25 +9866 9866 9867 986.6 1973.2 9866 1997-01-05 2024-10-11 02:44:26.000 1997-01-05 2024-10-11 02:44:26 +9867 9867 9868 986.7 1973.4 9867 1997-01-06 2024-10-11 02:44:27.000 1997-01-06 2024-10-11 02:44:27 +9868 9868 9869 986.8 1973.6000000000001 9868 1997-01-07 2024-10-11 02:44:28.000 1997-01-07 2024-10-11 02:44:28 +9869 9869 9870 986.9 1973.8000000000002 9869 1997-01-08 2024-10-11 02:44:29.000 1997-01-08 2024-10-11 02:44:29 +9870 9870 9871 987 1974 9870 1997-01-09 2024-10-11 02:44:30.000 1997-01-09 2024-10-11 02:44:30 +9871 9871 9872 987.1 1974.2 9871 1997-01-10 2024-10-11 02:44:31.000 1997-01-10 2024-10-11 02:44:31 +9872 9872 9873 987.2 1974.4 9872 1997-01-11 2024-10-11 02:44:32.000 1997-01-11 2024-10-11 02:44:32 +9873 9873 9874 987.3 1974.6000000000001 9873 1997-01-12 2024-10-11 02:44:33.000 1997-01-12 2024-10-11 02:44:33 +9874 9874 9875 987.4 1974.8000000000002 9874 1997-01-13 2024-10-11 02:44:34.000 1997-01-13 2024-10-11 02:44:34 +9875 9875 9876 987.5 1975 9875 1997-01-14 2024-10-11 02:44:35.000 1997-01-14 2024-10-11 02:44:35 +9876 9876 9877 987.6 1975.2 9876 1997-01-15 2024-10-11 02:44:36.000 1997-01-15 2024-10-11 02:44:36 +9877 9877 9878 987.7 1975.4 9877 1997-01-16 2024-10-11 02:44:37.000 1997-01-16 2024-10-11 02:44:37 +9878 9878 9879 987.8 1975.6000000000001 9878 1997-01-17 2024-10-11 02:44:38.000 1997-01-17 2024-10-11 02:44:38 +9879 9879 9880 987.9 1975.8000000000002 9879 1997-01-18 2024-10-11 02:44:39.000 1997-01-18 2024-10-11 02:44:39 +9880 9880 9881 988 1976 9880 1997-01-19 2024-10-11 02:44:40.000 1997-01-19 2024-10-11 02:44:40 +9881 9881 9882 988.1 1976.2 9881 1997-01-20 2024-10-11 02:44:41.000 1997-01-20 2024-10-11 02:44:41 +9882 9882 9883 988.2 1976.4 9882 1997-01-21 2024-10-11 02:44:42.000 1997-01-21 2024-10-11 02:44:42 +9883 9883 9884 988.3 1976.6000000000001 9883 1997-01-22 2024-10-11 02:44:43.000 1997-01-22 2024-10-11 02:44:43 +9884 9884 9885 988.4 1976.8000000000002 9884 1997-01-23 2024-10-11 02:44:44.000 1997-01-23 2024-10-11 02:44:44 +9885 9885 9886 988.5 1977 9885 1997-01-24 2024-10-11 02:44:45.000 1997-01-24 2024-10-11 02:44:45 +9886 9886 9887 988.6 1977.2 9886 1997-01-25 2024-10-11 02:44:46.000 1997-01-25 2024-10-11 02:44:46 +9887 9887 9888 988.7 1977.4 9887 1997-01-26 2024-10-11 02:44:47.000 1997-01-26 2024-10-11 02:44:47 +9888 9888 9889 988.8 1977.6000000000001 9888 1997-01-27 2024-10-11 02:44:48.000 1997-01-27 2024-10-11 02:44:48 +9889 9889 9890 988.9 1977.8000000000002 9889 1997-01-28 2024-10-11 02:44:49.000 1997-01-28 2024-10-11 02:44:49 +9890 9890 9891 989 1978 9890 1997-01-29 2024-10-11 02:44:50.000 1997-01-29 2024-10-11 02:44:50 +9891 9891 9892 989.1 1978.2 9891 1997-01-30 2024-10-11 02:44:51.000 1997-01-30 2024-10-11 02:44:51 +9892 9892 9893 989.2 1978.4 9892 1997-01-31 2024-10-11 02:44:52.000 1997-01-31 2024-10-11 02:44:52 +9893 9893 9894 989.3 1978.6000000000001 9893 1997-02-01 2024-10-11 02:44:53.000 1997-02-01 2024-10-11 02:44:53 +9894 9894 9895 989.4 1978.8000000000002 9894 1997-02-02 2024-10-11 02:44:54.000 1997-02-02 2024-10-11 02:44:54 +9895 9895 9896 989.5 1979 9895 1997-02-03 2024-10-11 02:44:55.000 1997-02-03 2024-10-11 02:44:55 +9896 9896 9897 989.6 1979.2 9896 1997-02-04 2024-10-11 02:44:56.000 1997-02-04 2024-10-11 02:44:56 +9897 9897 9898 989.7 1979.4 9897 1997-02-05 2024-10-11 02:44:57.000 1997-02-05 2024-10-11 02:44:57 +9898 9898 9899 989.8 1979.6000000000001 9898 1997-02-06 2024-10-11 02:44:58.000 1997-02-06 2024-10-11 02:44:58 +9899 9899 9900 989.9 1979.8000000000002 9899 1997-02-07 2024-10-11 02:44:59.000 1997-02-07 2024-10-11 02:44:59 +9900 9900 9901 990 1980 9900 1997-02-08 2024-10-11 02:45:00.000 1997-02-08 2024-10-11 02:45:00 +9901 9901 9902 990.1 1980.2 9901 1997-02-09 2024-10-11 02:45:01.000 1997-02-09 2024-10-11 02:45:01 +9902 9902 9903 990.2 1980.4 9902 1997-02-10 2024-10-11 02:45:02.000 1997-02-10 2024-10-11 02:45:02 +9903 9903 9904 990.3 1980.6000000000001 9903 1997-02-11 2024-10-11 02:45:03.000 1997-02-11 2024-10-11 02:45:03 +9904 9904 9905 990.4 1980.8000000000002 9904 1997-02-12 2024-10-11 02:45:04.000 1997-02-12 2024-10-11 02:45:04 +9905 9905 9906 990.5 1981 9905 1997-02-13 2024-10-11 02:45:05.000 1997-02-13 2024-10-11 02:45:05 +9906 9906 9907 990.6 1981.2 9906 1997-02-14 2024-10-11 02:45:06.000 1997-02-14 2024-10-11 02:45:06 +9907 9907 9908 990.7 1981.4 9907 1997-02-15 2024-10-11 02:45:07.000 1997-02-15 2024-10-11 02:45:07 +9908 9908 9909 990.8 1981.6000000000001 9908 1997-02-16 2024-10-11 02:45:08.000 1997-02-16 2024-10-11 02:45:08 +9909 9909 9910 990.9 1981.8000000000002 9909 1997-02-17 2024-10-11 02:45:09.000 1997-02-17 2024-10-11 02:45:09 +9910 9910 9911 991 1982 9910 1997-02-18 2024-10-11 02:45:10.000 1997-02-18 2024-10-11 02:45:10 +9911 9911 9912 991.1 1982.2 9911 1997-02-19 2024-10-11 02:45:11.000 1997-02-19 2024-10-11 02:45:11 +9912 9912 9913 991.2 1982.4 9912 1997-02-20 2024-10-11 02:45:12.000 1997-02-20 2024-10-11 02:45:12 +9913 9913 9914 991.3 1982.6000000000001 9913 1997-02-21 2024-10-11 02:45:13.000 1997-02-21 2024-10-11 02:45:13 +9914 9914 9915 991.4 1982.8000000000002 9914 1997-02-22 2024-10-11 02:45:14.000 1997-02-22 2024-10-11 02:45:14 +9915 9915 9916 991.5 1983 9915 1997-02-23 2024-10-11 02:45:15.000 1997-02-23 2024-10-11 02:45:15 +9916 9916 9917 991.6 1983.2 9916 1997-02-24 2024-10-11 02:45:16.000 1997-02-24 2024-10-11 02:45:16 +9917 9917 9918 991.7 1983.4 9917 1997-02-25 2024-10-11 02:45:17.000 1997-02-25 2024-10-11 02:45:17 +9918 9918 9919 991.8 1983.6000000000001 9918 1997-02-26 2024-10-11 02:45:18.000 1997-02-26 2024-10-11 02:45:18 +9919 9919 9920 991.9 1983.8000000000002 9919 1997-02-27 2024-10-11 02:45:19.000 1997-02-27 2024-10-11 02:45:19 +9920 9920 9921 992 1984 9920 1997-02-28 2024-10-11 02:45:20.000 1997-02-28 2024-10-11 02:45:20 +9921 9921 9922 992.1 1984.2 9921 1997-03-01 2024-10-11 02:45:21.000 1997-03-01 2024-10-11 02:45:21 +9922 9922 9923 992.2 1984.4 9922 1997-03-02 2024-10-11 02:45:22.000 1997-03-02 2024-10-11 02:45:22 +9923 9923 9924 992.3 1984.6000000000001 9923 1997-03-03 2024-10-11 02:45:23.000 1997-03-03 2024-10-11 02:45:23 +9924 9924 9925 992.4 1984.8000000000002 9924 1997-03-04 2024-10-11 02:45:24.000 1997-03-04 2024-10-11 02:45:24 +9925 9925 9926 992.5 1985 9925 1997-03-05 2024-10-11 02:45:25.000 1997-03-05 2024-10-11 02:45:25 +9926 9926 9927 992.6 1985.2 9926 1997-03-06 2024-10-11 02:45:26.000 1997-03-06 2024-10-11 02:45:26 +9927 9927 9928 992.7 1985.4 9927 1997-03-07 2024-10-11 02:45:27.000 1997-03-07 2024-10-11 02:45:27 +9928 9928 9929 992.8 1985.6000000000001 9928 1997-03-08 2024-10-11 02:45:28.000 1997-03-08 2024-10-11 02:45:28 +9929 9929 9930 992.9 1985.8000000000002 9929 1997-03-09 2024-10-11 02:45:29.000 1997-03-09 2024-10-11 02:45:29 +9930 9930 9931 993 1986 9930 1997-03-10 2024-10-11 02:45:30.000 1997-03-10 2024-10-11 02:45:30 +9931 9931 9932 993.1 1986.2 9931 1997-03-11 2024-10-11 02:45:31.000 1997-03-11 2024-10-11 02:45:31 +9932 9932 9933 993.2 1986.4 9932 1997-03-12 2024-10-11 02:45:32.000 1997-03-12 2024-10-11 02:45:32 +9933 9933 9934 993.3 1986.6000000000001 9933 1997-03-13 2024-10-11 02:45:33.000 1997-03-13 2024-10-11 02:45:33 +9934 9934 9935 993.4 1986.8000000000002 9934 1997-03-14 2024-10-11 02:45:34.000 1997-03-14 2024-10-11 02:45:34 +9935 9935 9936 993.5 1987 9935 1997-03-15 2024-10-11 02:45:35.000 1997-03-15 2024-10-11 02:45:35 +9936 9936 9937 993.6 1987.2 9936 1997-03-16 2024-10-11 02:45:36.000 1997-03-16 2024-10-11 02:45:36 +9937 9937 9938 993.7 1987.4 9937 1997-03-17 2024-10-11 02:45:37.000 1997-03-17 2024-10-11 02:45:37 +9938 9938 9939 993.8 1987.6000000000001 9938 1997-03-18 2024-10-11 02:45:38.000 1997-03-18 2024-10-11 02:45:38 +9939 9939 9940 993.9 1987.8000000000002 9939 1997-03-19 2024-10-11 02:45:39.000 1997-03-19 2024-10-11 02:45:39 +9940 9940 9941 994 1988 9940 1997-03-20 2024-10-11 02:45:40.000 1997-03-20 2024-10-11 02:45:40 +9941 9941 9942 994.1 1988.2 9941 1997-03-21 2024-10-11 02:45:41.000 1997-03-21 2024-10-11 02:45:41 +9942 9942 9943 994.2 1988.4 9942 1997-03-22 2024-10-11 02:45:42.000 1997-03-22 2024-10-11 02:45:42 +9943 9943 9944 994.3 1988.6000000000001 9943 1997-03-23 2024-10-11 02:45:43.000 1997-03-23 2024-10-11 02:45:43 +9944 9944 9945 994.4 1988.8000000000002 9944 1997-03-24 2024-10-11 02:45:44.000 1997-03-24 2024-10-11 02:45:44 +9945 9945 9946 994.5 1989 9945 1997-03-25 2024-10-11 02:45:45.000 1997-03-25 2024-10-11 02:45:45 +9946 9946 9947 994.6 1989.2 9946 1997-03-26 2024-10-11 02:45:46.000 1997-03-26 2024-10-11 02:45:46 +9947 9947 9948 994.7 1989.4 9947 1997-03-27 2024-10-11 02:45:47.000 1997-03-27 2024-10-11 02:45:47 +9948 9948 9949 994.8 1989.6000000000001 9948 1997-03-28 2024-10-11 02:45:48.000 1997-03-28 2024-10-11 02:45:48 +9949 9949 9950 994.9 1989.8000000000002 9949 1997-03-29 2024-10-11 02:45:49.000 1997-03-29 2024-10-11 02:45:49 +9950 9950 9951 995 1990 9950 1997-03-30 2024-10-11 02:45:50.000 1997-03-30 2024-10-11 02:45:50 +9951 9951 9952 995.1 1990.2 9951 1997-03-31 2024-10-11 02:45:51.000 1997-03-31 2024-10-11 02:45:51 +9952 9952 9953 995.2 1990.4 9952 1997-04-01 2024-10-11 02:45:52.000 1997-04-01 2024-10-11 02:45:52 +9953 9953 9954 995.3 1990.6000000000001 9953 1997-04-02 2024-10-11 02:45:53.000 1997-04-02 2024-10-11 02:45:53 +9954 9954 9955 995.4 1990.8000000000002 9954 1997-04-03 2024-10-11 02:45:54.000 1997-04-03 2024-10-11 02:45:54 +9955 9955 9956 995.5 1991 9955 1997-04-04 2024-10-11 02:45:55.000 1997-04-04 2024-10-11 02:45:55 +9956 9956 9957 995.6 1991.2 9956 1997-04-05 2024-10-11 02:45:56.000 1997-04-05 2024-10-11 02:45:56 +9957 9957 9958 995.7 1991.4 9957 1997-04-06 2024-10-11 02:45:57.000 1997-04-06 2024-10-11 02:45:57 +9958 9958 9959 995.8 1991.6000000000001 9958 1997-04-07 2024-10-11 02:45:58.000 1997-04-07 2024-10-11 02:45:58 +9959 9959 9960 995.9 1991.8000000000002 9959 1997-04-08 2024-10-11 02:45:59.000 1997-04-08 2024-10-11 02:45:59 +9960 9960 9961 996 1992 9960 1997-04-09 2024-10-11 02:46:00.000 1997-04-09 2024-10-11 02:46:00 +9961 9961 9962 996.1 1992.2 9961 1997-04-10 2024-10-11 02:46:01.000 1997-04-10 2024-10-11 02:46:01 +9962 9962 9963 996.2 1992.4 9962 1997-04-11 2024-10-11 02:46:02.000 1997-04-11 2024-10-11 02:46:02 +9963 9963 9964 996.3 1992.6000000000001 9963 1997-04-12 2024-10-11 02:46:03.000 1997-04-12 2024-10-11 02:46:03 +9964 9964 9965 996.4 1992.8000000000002 9964 1997-04-13 2024-10-11 02:46:04.000 1997-04-13 2024-10-11 02:46:04 +9965 9965 9966 996.5 1993 9965 1997-04-14 2024-10-11 02:46:05.000 1997-04-14 2024-10-11 02:46:05 +9966 9966 9967 996.6 1993.2 9966 1997-04-15 2024-10-11 02:46:06.000 1997-04-15 2024-10-11 02:46:06 +9967 9967 9968 996.7 1993.4 9967 1997-04-16 2024-10-11 02:46:07.000 1997-04-16 2024-10-11 02:46:07 +9968 9968 9969 996.8 1993.6000000000001 9968 1997-04-17 2024-10-11 02:46:08.000 1997-04-17 2024-10-11 02:46:08 +9969 9969 9970 996.9 1993.8000000000002 9969 1997-04-18 2024-10-11 02:46:09.000 1997-04-18 2024-10-11 02:46:09 +9970 9970 9971 997 1994 9970 1997-04-19 2024-10-11 02:46:10.000 1997-04-19 2024-10-11 02:46:10 +9971 9971 9972 997.1 1994.2 9971 1997-04-20 2024-10-11 02:46:11.000 1997-04-20 2024-10-11 02:46:11 +9972 9972 9973 997.2 1994.4 9972 1997-04-21 2024-10-11 02:46:12.000 1997-04-21 2024-10-11 02:46:12 +9973 9973 9974 997.3 1994.6000000000001 9973 1997-04-22 2024-10-11 02:46:13.000 1997-04-22 2024-10-11 02:46:13 +9974 9974 9975 997.4 1994.8000000000002 9974 1997-04-23 2024-10-11 02:46:14.000 1997-04-23 2024-10-11 02:46:14 +9975 9975 9976 997.5 1995 9975 1997-04-24 2024-10-11 02:46:15.000 1997-04-24 2024-10-11 02:46:15 +9976 9976 9977 997.6 1995.2 9976 1997-04-25 2024-10-11 02:46:16.000 1997-04-25 2024-10-11 02:46:16 +9977 9977 9978 997.7 1995.4 9977 1997-04-26 2024-10-11 02:46:17.000 1997-04-26 2024-10-11 02:46:17 +9978 9978 9979 997.8 1995.6000000000001 9978 1997-04-27 2024-10-11 02:46:18.000 1997-04-27 2024-10-11 02:46:18 +9979 9979 9980 997.9 1995.8000000000002 9979 1997-04-28 2024-10-11 02:46:19.000 1997-04-28 2024-10-11 02:46:19 +9980 9980 9981 998 1996 9980 1997-04-29 2024-10-11 02:46:20.000 1997-04-29 2024-10-11 02:46:20 +9981 9981 9982 998.1 1996.2 9981 1997-04-30 2024-10-11 02:46:21.000 1997-04-30 2024-10-11 02:46:21 +9982 9982 9983 998.2 1996.4 9982 1997-05-01 2024-10-11 02:46:22.000 1997-05-01 2024-10-11 02:46:22 +9983 9983 9984 998.3 1996.6000000000001 9983 1997-05-02 2024-10-11 02:46:23.000 1997-05-02 2024-10-11 02:46:23 +9984 9984 9985 998.4 1996.8000000000002 9984 1997-05-03 2024-10-11 02:46:24.000 1997-05-03 2024-10-11 02:46:24 +9985 9985 9986 998.5 1997 9985 1997-05-04 2024-10-11 02:46:25.000 1997-05-04 2024-10-11 02:46:25 +9986 9986 9987 998.6 1997.2 9986 1997-05-05 2024-10-11 02:46:26.000 1997-05-05 2024-10-11 02:46:26 +9987 9987 9988 998.7 1997.4 9987 1997-05-06 2024-10-11 02:46:27.000 1997-05-06 2024-10-11 02:46:27 +9988 9988 9989 998.8 1997.6000000000001 9988 1997-05-07 2024-10-11 02:46:28.000 1997-05-07 2024-10-11 02:46:28 +9989 9989 9990 998.9 1997.8000000000002 9989 1997-05-08 2024-10-11 02:46:29.000 1997-05-08 2024-10-11 02:46:29 +9990 9990 9991 999 1998 9990 1997-05-09 2024-10-11 02:46:30.000 1997-05-09 2024-10-11 02:46:30 +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9995 9995 9996 999.5 1999 9995 1997-05-14 2024-10-11 02:46:35.000 1997-05-14 2024-10-11 02:46:35 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +select * from test_native_parquet where date >= '1970-01-10'; +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +10 10 11 1 2 10 1970-01-11 2024-10-11 00:00:10.000 1970-01-11 2024-10-11 00:00:10 +11 11 12 1.1 2.2 11 1970-01-12 2024-10-11 00:00:11.000 1970-01-12 2024-10-11 00:00:11 +12 12 13 1.2 2.4000000000000004 12 1970-01-13 2024-10-11 00:00:12.000 1970-01-13 2024-10-11 00:00:12 +13 13 14 1.3 2.6 13 1970-01-14 2024-10-11 00:00:13.000 1970-01-14 2024-10-11 00:00:13 +14 14 15 1.4 2.8000000000000003 14 1970-01-15 2024-10-11 00:00:14.000 1970-01-15 2024-10-11 00:00:14 +15 15 16 1.5 3 15 1970-01-16 2024-10-11 00:00:15.000 1970-01-16 2024-10-11 00:00:15 +16 16 17 1.6 3.2 16 1970-01-17 2024-10-11 00:00:16.000 1970-01-17 2024-10-11 00:00:16 +17 17 18 1.7 3.4000000000000004 17 1970-01-18 2024-10-11 00:00:17.000 1970-01-18 2024-10-11 00:00:17 +18 18 19 1.8 3.6 18 1970-01-19 2024-10-11 00:00:18.000 1970-01-19 2024-10-11 00:00:18 +19 19 20 1.9 3.8000000000000003 19 1970-01-20 2024-10-11 00:00:19.000 1970-01-20 2024-10-11 00:00:19 +20 20 21 2 4 20 1970-01-21 2024-10-11 00:00:20.000 1970-01-21 2024-10-11 00:00:20 +21 21 22 2.1 4.2 21 1970-01-22 2024-10-11 00:00:21.000 1970-01-22 2024-10-11 00:00:21 +22 22 23 2.2 4.4 22 1970-01-23 2024-10-11 00:00:22.000 1970-01-23 2024-10-11 00:00:22 +23 23 24 2.3 4.6000000000000005 23 1970-01-24 2024-10-11 00:00:23.000 1970-01-24 2024-10-11 00:00:23 +24 24 25 2.4 4.800000000000001 24 1970-01-25 2024-10-11 00:00:24.000 1970-01-25 2024-10-11 00:00:24 +25 25 26 2.5 5 25 1970-01-26 2024-10-11 00:00:25.000 1970-01-26 2024-10-11 00:00:25 +26 26 27 2.6 5.2 26 1970-01-27 2024-10-11 00:00:26.000 1970-01-27 2024-10-11 00:00:26 +27 27 28 2.7 5.4 27 1970-01-28 2024-10-11 00:00:27.000 1970-01-28 2024-10-11 00:00:27 +28 28 29 2.8 5.6000000000000005 28 1970-01-29 2024-10-11 00:00:28.000 1970-01-29 2024-10-11 00:00:28 +29 29 30 2.9 5.800000000000001 29 1970-01-30 2024-10-11 00:00:29.000 1970-01-30 2024-10-11 00:00:29 +30 30 31 3 6 30 1970-01-31 2024-10-11 00:00:30.000 1970-01-31 2024-10-11 00:00:30 +31 31 32 3.1 6.2 31 1970-02-01 2024-10-11 00:00:31.000 1970-02-01 2024-10-11 00:00:31 +32 32 33 3.2 6.4 32 1970-02-02 2024-10-11 00:00:32.000 1970-02-02 2024-10-11 00:00:32 +33 33 34 3.3 6.6000000000000005 33 1970-02-03 2024-10-11 00:00:33.000 1970-02-03 2024-10-11 00:00:33 +34 34 35 3.4 6.800000000000001 34 1970-02-04 2024-10-11 00:00:34.000 1970-02-04 2024-10-11 00:00:34 +35 35 36 3.5 7 35 1970-02-05 2024-10-11 00:00:35.000 1970-02-05 2024-10-11 00:00:35 +36 36 37 3.6 7.2 36 1970-02-06 2024-10-11 00:00:36.000 1970-02-06 2024-10-11 00:00:36 +37 37 38 3.7 7.4 37 1970-02-07 2024-10-11 00:00:37.000 1970-02-07 2024-10-11 00:00:37 +38 38 39 3.8 7.6000000000000005 38 1970-02-08 2024-10-11 00:00:38.000 1970-02-08 2024-10-11 00:00:38 +39 39 40 3.9 7.800000000000001 39 1970-02-09 2024-10-11 00:00:39.000 1970-02-09 2024-10-11 00:00:39 +40 40 41 4 8 40 1970-02-10 2024-10-11 00:00:40.000 1970-02-10 2024-10-11 00:00:40 +41 41 42 4.1 8.200000000000001 41 1970-02-11 2024-10-11 00:00:41.000 1970-02-11 2024-10-11 00:00:41 +42 42 43 4.2 8.4 42 1970-02-12 2024-10-11 00:00:42.000 1970-02-12 2024-10-11 00:00:42 +43 43 44 4.3 8.6 43 1970-02-13 2024-10-11 00:00:43.000 1970-02-13 2024-10-11 00:00:43 +44 44 45 4.4 8.8 44 1970-02-14 2024-10-11 00:00:44.000 1970-02-14 2024-10-11 00:00:44 +45 45 46 4.5 9 45 1970-02-15 2024-10-11 00:00:45.000 1970-02-15 2024-10-11 00:00:45 +46 46 47 4.6 9.200000000000001 46 1970-02-16 2024-10-11 00:00:46.000 1970-02-16 2024-10-11 00:00:46 +47 47 48 4.7 9.4 47 1970-02-17 2024-10-11 00:00:47.000 1970-02-17 2024-10-11 00:00:47 +48 48 49 4.8 9.600000000000001 48 1970-02-18 2024-10-11 00:00:48.000 1970-02-18 2024-10-11 00:00:48 +49 49 50 4.9 9.8 49 1970-02-19 2024-10-11 00:00:49.000 1970-02-19 2024-10-11 00:00:49 +50 50 51 5 10 50 1970-02-20 2024-10-11 00:00:50.000 1970-02-20 2024-10-11 00:00:50 +51 51 52 5.1 10.200000000000001 51 1970-02-21 2024-10-11 00:00:51.000 1970-02-21 2024-10-11 00:00:51 +52 52 53 5.2 10.4 52 1970-02-22 2024-10-11 00:00:52.000 1970-02-22 2024-10-11 00:00:52 +53 53 54 5.3 10.600000000000001 53 1970-02-23 2024-10-11 00:00:53.000 1970-02-23 2024-10-11 00:00:53 +54 54 55 5.4 10.8 54 1970-02-24 2024-10-11 00:00:54.000 1970-02-24 2024-10-11 00:00:54 +55 55 56 5.5 11 55 1970-02-25 2024-10-11 00:00:55.000 1970-02-25 2024-10-11 00:00:55 +56 56 57 5.6 11.200000000000001 56 1970-02-26 2024-10-11 00:00:56.000 1970-02-26 2024-10-11 00:00:56 +57 57 58 5.7 11.4 57 1970-02-27 2024-10-11 00:00:57.000 1970-02-27 2024-10-11 00:00:57 +58 58 59 5.8 11.600000000000001 58 1970-02-28 2024-10-11 00:00:58.000 1970-02-28 2024-10-11 00:00:58 +59 59 60 5.9 11.8 59 1970-03-01 2024-10-11 00:00:59.000 1970-03-01 2024-10-11 00:00:59 +60 60 61 6 12 60 1970-03-02 2024-10-11 00:01:00.000 1970-03-02 2024-10-11 00:01:00 +61 61 62 6.1 12.200000000000001 61 1970-03-03 2024-10-11 00:01:01.000 1970-03-03 2024-10-11 00:01:01 +62 62 63 6.2 12.4 62 1970-03-04 2024-10-11 00:01:02.000 1970-03-04 2024-10-11 00:01:02 +63 63 64 6.3 12.600000000000001 63 1970-03-05 2024-10-11 00:01:03.000 1970-03-05 2024-10-11 00:01:03 +64 64 65 6.4 12.8 64 1970-03-06 2024-10-11 00:01:04.000 1970-03-06 2024-10-11 00:01:04 +65 65 66 6.5 13 65 1970-03-07 2024-10-11 00:01:05.000 1970-03-07 2024-10-11 00:01:05 +66 66 67 6.6 13.200000000000001 66 1970-03-08 2024-10-11 00:01:06.000 1970-03-08 2024-10-11 00:01:06 +67 67 68 6.7 13.4 67 1970-03-09 2024-10-11 00:01:07.000 1970-03-09 2024-10-11 00:01:07 +68 68 69 6.8 13.600000000000001 68 1970-03-10 2024-10-11 00:01:08.000 1970-03-10 2024-10-11 00:01:08 +69 69 70 6.9 13.8 69 1970-03-11 2024-10-11 00:01:09.000 1970-03-11 2024-10-11 00:01:09 +70 70 71 7 14 70 1970-03-12 2024-10-11 00:01:10.000 1970-03-12 2024-10-11 00:01:10 +71 71 72 7.1 14.200000000000001 71 1970-03-13 2024-10-11 00:01:11.000 1970-03-13 2024-10-11 00:01:11 +72 72 73 7.2 14.4 72 1970-03-14 2024-10-11 00:01:12.000 1970-03-14 2024-10-11 00:01:12 +73 73 74 7.3 14.600000000000001 73 1970-03-15 2024-10-11 00:01:13.000 1970-03-15 2024-10-11 00:01:13 +74 74 75 7.4 14.8 74 1970-03-16 2024-10-11 00:01:14.000 1970-03-16 2024-10-11 00:01:14 +75 75 76 7.5 15 75 1970-03-17 2024-10-11 00:01:15.000 1970-03-17 2024-10-11 00:01:15 +76 76 77 7.6 15.200000000000001 76 1970-03-18 2024-10-11 00:01:16.000 1970-03-18 2024-10-11 00:01:16 +77 77 78 7.7 15.4 77 1970-03-19 2024-10-11 00:01:17.000 1970-03-19 2024-10-11 00:01:17 +78 78 79 7.8 15.600000000000001 78 1970-03-20 2024-10-11 00:01:18.000 1970-03-20 2024-10-11 00:01:18 +79 79 80 7.9 15.8 79 1970-03-21 2024-10-11 00:01:19.000 1970-03-21 2024-10-11 00:01:19 +80 80 81 8 16 80 1970-03-22 2024-10-11 00:01:20.000 1970-03-22 2024-10-11 00:01:20 +81 81 82 8.1 16.2 81 1970-03-23 2024-10-11 00:01:21.000 1970-03-23 2024-10-11 00:01:21 +82 82 83 8.2 16.400000000000002 82 1970-03-24 2024-10-11 00:01:22.000 1970-03-24 2024-10-11 00:01:22 +83 83 84 8.3 16.6 83 1970-03-25 2024-10-11 00:01:23.000 1970-03-25 2024-10-11 00:01:23 +84 84 85 8.4 16.8 84 1970-03-26 2024-10-11 00:01:24.000 1970-03-26 2024-10-11 00:01:24 +85 85 86 8.5 17 85 1970-03-27 2024-10-11 00:01:25.000 1970-03-27 2024-10-11 00:01:25 +86 86 87 8.6 17.2 86 1970-03-28 2024-10-11 00:01:26.000 1970-03-28 2024-10-11 00:01:26 +87 87 88 8.7 17.400000000000002 87 1970-03-29 2024-10-11 00:01:27.000 1970-03-29 2024-10-11 00:01:27 +88 88 89 8.8 17.6 88 1970-03-30 2024-10-11 00:01:28.000 1970-03-30 2024-10-11 00:01:28 +89 89 90 8.9 17.8 89 1970-03-31 2024-10-11 00:01:29.000 1970-03-31 2024-10-11 00:01:29 +90 90 91 9 18 90 1970-04-01 2024-10-11 00:01:30.000 1970-04-01 2024-10-11 00:01:30 +91 91 92 9.1 18.2 91 1970-04-02 2024-10-11 00:01:31.000 1970-04-02 2024-10-11 00:01:31 +92 92 93 9.2 18.400000000000002 92 1970-04-03 2024-10-11 00:01:32.000 1970-04-03 2024-10-11 00:01:32 +93 93 94 9.3 18.6 93 1970-04-04 2024-10-11 00:01:33.000 1970-04-04 2024-10-11 00:01:33 +94 94 95 9.4 18.8 94 1970-04-05 2024-10-11 00:01:34.000 1970-04-05 2024-10-11 00:01:34 +95 95 96 9.5 19 95 1970-04-06 2024-10-11 00:01:35.000 1970-04-06 2024-10-11 00:01:35 +96 96 97 9.6 19.200000000000003 96 1970-04-07 2024-10-11 00:01:36.000 1970-04-07 2024-10-11 00:01:36 +97 97 98 9.7 19.400000000000002 97 1970-04-08 2024-10-11 00:01:37.000 1970-04-08 2024-10-11 00:01:37 +98 98 99 9.8 19.6 98 1970-04-09 2024-10-11 00:01:38.000 1970-04-09 2024-10-11 00:01:38 +99 99 100 9.9 19.8 99 1970-04-10 2024-10-11 00:01:39.000 1970-04-10 2024-10-11 00:01:39 +100 100 101 10 20 100 1970-04-11 2024-10-11 00:01:40.000 1970-04-11 2024-10-11 00:01:40 +101 101 102 10.1 20.200000000000003 101 1970-04-12 2024-10-11 00:01:41.000 1970-04-12 2024-10-11 00:01:41 +102 102 103 10.2 20.400000000000002 102 1970-04-13 2024-10-11 00:01:42.000 1970-04-13 2024-10-11 00:01:42 +103 103 104 10.3 20.6 103 1970-04-14 2024-10-11 00:01:43.000 1970-04-14 2024-10-11 00:01:43 +104 104 105 10.4 20.8 104 1970-04-15 2024-10-11 00:01:44.000 1970-04-15 2024-10-11 00:01:44 +105 105 106 10.5 21 105 1970-04-16 2024-10-11 00:01:45.000 1970-04-16 2024-10-11 00:01:45 +106 106 107 10.6 21.200000000000003 106 1970-04-17 2024-10-11 00:01:46.000 1970-04-17 2024-10-11 00:01:46 +107 107 108 10.7 21.400000000000002 107 1970-04-18 2024-10-11 00:01:47.000 1970-04-18 2024-10-11 00:01:47 +108 108 109 10.8 21.6 108 1970-04-19 2024-10-11 00:01:48.000 1970-04-19 2024-10-11 00:01:48 +109 109 110 10.9 21.8 109 1970-04-20 2024-10-11 00:01:49.000 1970-04-20 2024-10-11 00:01:49 +110 110 111 11 22 110 1970-04-21 2024-10-11 00:01:50.000 1970-04-21 2024-10-11 00:01:50 +111 111 112 11.1 22.200000000000003 111 1970-04-22 2024-10-11 00:01:51.000 1970-04-22 2024-10-11 00:01:51 +112 112 113 11.2 22.400000000000002 112 1970-04-23 2024-10-11 00:01:52.000 1970-04-23 2024-10-11 00:01:52 +113 113 114 11.3 22.6 113 1970-04-24 2024-10-11 00:01:53.000 1970-04-24 2024-10-11 00:01:53 +114 114 115 11.4 22.8 114 1970-04-25 2024-10-11 00:01:54.000 1970-04-25 2024-10-11 00:01:54 +115 115 116 11.5 23 115 1970-04-26 2024-10-11 00:01:55.000 1970-04-26 2024-10-11 00:01:55 +116 116 117 11.6 23.200000000000003 116 1970-04-27 2024-10-11 00:01:56.000 1970-04-27 2024-10-11 00:01:56 +117 117 118 11.7 23.400000000000002 117 1970-04-28 2024-10-11 00:01:57.000 1970-04-28 2024-10-11 00:01:57 +118 118 119 11.8 23.6 118 1970-04-29 2024-10-11 00:01:58.000 1970-04-29 2024-10-11 00:01:58 +119 119 120 11.9 23.8 119 1970-04-30 2024-10-11 00:01:59.000 1970-04-30 2024-10-11 00:01:59 +120 120 121 12 24 120 1970-05-01 2024-10-11 00:02:00.000 1970-05-01 2024-10-11 00:02:00 +121 121 122 12.1 24.200000000000003 121 1970-05-02 2024-10-11 00:02:01.000 1970-05-02 2024-10-11 00:02:01 +122 122 123 12.2 24.400000000000002 122 1970-05-03 2024-10-11 00:02:02.000 1970-05-03 2024-10-11 00:02:02 +123 123 124 12.3 24.6 123 1970-05-04 2024-10-11 00:02:03.000 1970-05-04 2024-10-11 00:02:03 +124 124 125 12.4 24.8 124 1970-05-05 2024-10-11 00:02:04.000 1970-05-05 2024-10-11 00:02:04 +125 125 126 12.5 25 125 1970-05-06 2024-10-11 00:02:05.000 1970-05-06 2024-10-11 00:02:05 +126 126 127 12.6 25.200000000000003 126 1970-05-07 2024-10-11 00:02:06.000 1970-05-07 2024-10-11 00:02:06 +127 127 128 12.7 25.400000000000002 127 1970-05-08 2024-10-11 00:02:07.000 1970-05-08 2024-10-11 00:02:07 +128 128 129 12.8 25.6 128 1970-05-09 2024-10-11 00:02:08.000 1970-05-09 2024-10-11 00:02:08 +129 129 130 12.9 25.8 129 1970-05-10 2024-10-11 00:02:09.000 1970-05-10 2024-10-11 00:02:09 +130 130 131 13 26 130 1970-05-11 2024-10-11 00:02:10.000 1970-05-11 2024-10-11 00:02:10 +131 131 132 13.1 26.200000000000003 131 1970-05-12 2024-10-11 00:02:11.000 1970-05-12 2024-10-11 00:02:11 +132 132 133 13.2 26.400000000000002 132 1970-05-13 2024-10-11 00:02:12.000 1970-05-13 2024-10-11 00:02:12 +133 133 134 13.3 26.6 133 1970-05-14 2024-10-11 00:02:13.000 1970-05-14 2024-10-11 00:02:13 +134 134 135 13.4 26.8 134 1970-05-15 2024-10-11 00:02:14.000 1970-05-15 2024-10-11 00:02:14 +135 135 136 13.5 27 135 1970-05-16 2024-10-11 00:02:15.000 1970-05-16 2024-10-11 00:02:15 +136 136 137 13.6 27.200000000000003 136 1970-05-17 2024-10-11 00:02:16.000 1970-05-17 2024-10-11 00:02:16 +137 137 138 13.7 27.400000000000002 137 1970-05-18 2024-10-11 00:02:17.000 1970-05-18 2024-10-11 00:02:17 +138 138 139 13.8 27.6 138 1970-05-19 2024-10-11 00:02:18.000 1970-05-19 2024-10-11 00:02:18 +139 139 140 13.9 27.8 139 1970-05-20 2024-10-11 00:02:19.000 1970-05-20 2024-10-11 00:02:19 +140 140 141 14 28 140 1970-05-21 2024-10-11 00:02:20.000 1970-05-21 2024-10-11 00:02:20 +141 141 142 14.1 28.200000000000003 141 1970-05-22 2024-10-11 00:02:21.000 1970-05-22 2024-10-11 00:02:21 +142 142 143 14.2 28.400000000000002 142 1970-05-23 2024-10-11 00:02:22.000 1970-05-23 2024-10-11 00:02:22 +143 143 144 14.3 28.6 143 1970-05-24 2024-10-11 00:02:23.000 1970-05-24 2024-10-11 00:02:23 +144 144 145 14.4 28.8 144 1970-05-25 2024-10-11 00:02:24.000 1970-05-25 2024-10-11 00:02:24 +145 145 146 14.5 29 145 1970-05-26 2024-10-11 00:02:25.000 1970-05-26 2024-10-11 00:02:25 +146 146 147 14.6 29.200000000000003 146 1970-05-27 2024-10-11 00:02:26.000 1970-05-27 2024-10-11 00:02:26 +147 147 148 14.7 29.400000000000002 147 1970-05-28 2024-10-11 00:02:27.000 1970-05-28 2024-10-11 00:02:27 +148 148 149 14.8 29.6 148 1970-05-29 2024-10-11 00:02:28.000 1970-05-29 2024-10-11 00:02:28 +149 149 150 14.9 29.8 149 1970-05-30 2024-10-11 00:02:29.000 1970-05-30 2024-10-11 00:02:29 +150 150 151 15 30 150 1970-05-31 2024-10-11 00:02:30.000 1970-05-31 2024-10-11 00:02:30 +151 151 152 15.1 30.200000000000003 151 1970-06-01 2024-10-11 00:02:31.000 1970-06-01 2024-10-11 00:02:31 +152 152 153 15.2 30.400000000000002 152 1970-06-02 2024-10-11 00:02:32.000 1970-06-02 2024-10-11 00:02:32 +153 153 154 15.3 30.6 153 1970-06-03 2024-10-11 00:02:33.000 1970-06-03 2024-10-11 00:02:33 +154 154 155 15.4 30.8 154 1970-06-04 2024-10-11 00:02:34.000 1970-06-04 2024-10-11 00:02:34 +155 155 156 15.5 31 155 1970-06-05 2024-10-11 00:02:35.000 1970-06-05 2024-10-11 00:02:35 +156 156 157 15.6 31.200000000000003 156 1970-06-06 2024-10-11 00:02:36.000 1970-06-06 2024-10-11 00:02:36 +157 157 158 15.7 31.400000000000002 157 1970-06-07 2024-10-11 00:02:37.000 1970-06-07 2024-10-11 00:02:37 +158 158 159 15.8 31.6 158 1970-06-08 2024-10-11 00:02:38.000 1970-06-08 2024-10-11 00:02:38 +159 159 160 15.9 31.8 159 1970-06-09 2024-10-11 00:02:39.000 1970-06-09 2024-10-11 00:02:39 +160 160 161 16 32 160 1970-06-10 2024-10-11 00:02:40.000 1970-06-10 2024-10-11 00:02:40 +161 161 162 16.1 32.2 161 1970-06-11 2024-10-11 00:02:41.000 1970-06-11 2024-10-11 00:02:41 +162 162 163 16.2 32.4 162 1970-06-12 2024-10-11 00:02:42.000 1970-06-12 2024-10-11 00:02:42 +163 163 164 16.3 32.6 163 1970-06-13 2024-10-11 00:02:43.000 1970-06-13 2024-10-11 00:02:43 +164 164 165 16.4 32.800000000000004 164 1970-06-14 2024-10-11 00:02:44.000 1970-06-14 2024-10-11 00:02:44 +165 165 166 16.5 33 165 1970-06-15 2024-10-11 00:02:45.000 1970-06-15 2024-10-11 00:02:45 +166 166 167 16.6 33.2 166 1970-06-16 2024-10-11 00:02:46.000 1970-06-16 2024-10-11 00:02:46 +167 167 168 16.7 33.4 167 1970-06-17 2024-10-11 00:02:47.000 1970-06-17 2024-10-11 00:02:47 +168 168 169 16.8 33.6 168 1970-06-18 2024-10-11 00:02:48.000 1970-06-18 2024-10-11 00:02:48 +169 169 170 16.9 33.800000000000004 169 1970-06-19 2024-10-11 00:02:49.000 1970-06-19 2024-10-11 00:02:49 +170 170 171 17 34 170 1970-06-20 2024-10-11 00:02:50.000 1970-06-20 2024-10-11 00:02:50 +171 171 172 17.1 34.2 171 1970-06-21 2024-10-11 00:02:51.000 1970-06-21 2024-10-11 00:02:51 +172 172 173 17.2 34.4 172 1970-06-22 2024-10-11 00:02:52.000 1970-06-22 2024-10-11 00:02:52 +173 173 174 17.3 34.6 173 1970-06-23 2024-10-11 00:02:53.000 1970-06-23 2024-10-11 00:02:53 +174 174 175 17.4 34.800000000000004 174 1970-06-24 2024-10-11 00:02:54.000 1970-06-24 2024-10-11 00:02:54 +175 175 176 17.5 35 175 1970-06-25 2024-10-11 00:02:55.000 1970-06-25 2024-10-11 00:02:55 +176 176 177 17.6 35.2 176 1970-06-26 2024-10-11 00:02:56.000 1970-06-26 2024-10-11 00:02:56 +177 177 178 17.7 35.4 177 1970-06-27 2024-10-11 00:02:57.000 1970-06-27 2024-10-11 00:02:57 +178 178 179 17.8 35.6 178 1970-06-28 2024-10-11 00:02:58.000 1970-06-28 2024-10-11 00:02:58 +179 179 180 17.9 35.800000000000004 179 1970-06-29 2024-10-11 00:02:59.000 1970-06-29 2024-10-11 00:02:59 +180 180 181 18 36 180 1970-06-30 2024-10-11 00:03:00.000 1970-06-30 2024-10-11 00:03:00 +181 181 182 18.1 36.2 181 1970-07-01 2024-10-11 00:03:01.000 1970-07-01 2024-10-11 00:03:01 +182 182 183 18.2 36.4 182 1970-07-02 2024-10-11 00:03:02.000 1970-07-02 2024-10-11 00:03:02 +183 183 184 18.3 36.6 183 1970-07-03 2024-10-11 00:03:03.000 1970-07-03 2024-10-11 00:03:03 +184 184 185 18.4 36.800000000000004 184 1970-07-04 2024-10-11 00:03:04.000 1970-07-04 2024-10-11 00:03:04 +185 185 186 18.5 37 185 1970-07-05 2024-10-11 00:03:05.000 1970-07-05 2024-10-11 00:03:05 +186 186 187 18.6 37.2 186 1970-07-06 2024-10-11 00:03:06.000 1970-07-06 2024-10-11 00:03:06 +187 187 188 18.7 37.4 187 1970-07-07 2024-10-11 00:03:07.000 1970-07-07 2024-10-11 00:03:07 +188 188 189 18.8 37.6 188 1970-07-08 2024-10-11 00:03:08.000 1970-07-08 2024-10-11 00:03:08 +189 189 190 18.9 37.800000000000004 189 1970-07-09 2024-10-11 00:03:09.000 1970-07-09 2024-10-11 00:03:09 +190 190 191 19 38 190 1970-07-10 2024-10-11 00:03:10.000 1970-07-10 2024-10-11 00:03:10 +191 191 192 19.1 38.2 191 1970-07-11 2024-10-11 00:03:11.000 1970-07-11 2024-10-11 00:03:11 +192 192 193 19.2 38.400000000000006 192 1970-07-12 2024-10-11 00:03:12.000 1970-07-12 2024-10-11 00:03:12 +193 193 194 19.3 38.6 193 1970-07-13 2024-10-11 00:03:13.000 1970-07-13 2024-10-11 00:03:13 +194 194 195 19.4 38.800000000000004 194 1970-07-14 2024-10-11 00:03:14.000 1970-07-14 2024-10-11 00:03:14 +195 195 196 19.5 39 195 1970-07-15 2024-10-11 00:03:15.000 1970-07-15 2024-10-11 00:03:15 +196 196 197 19.6 39.2 196 1970-07-16 2024-10-11 00:03:16.000 1970-07-16 2024-10-11 00:03:16 +197 197 198 19.7 39.400000000000006 197 1970-07-17 2024-10-11 00:03:17.000 1970-07-17 2024-10-11 00:03:17 +198 198 199 19.8 39.6 198 1970-07-18 2024-10-11 00:03:18.000 1970-07-18 2024-10-11 00:03:18 +199 199 200 19.9 39.800000000000004 199 1970-07-19 2024-10-11 00:03:19.000 1970-07-19 2024-10-11 00:03:19 +200 200 201 20 40 200 1970-07-20 2024-10-11 00:03:20.000 1970-07-20 2024-10-11 00:03:20 +201 201 202 20.1 40.2 201 1970-07-21 2024-10-11 00:03:21.000 1970-07-21 2024-10-11 00:03:21 +202 202 203 20.2 40.400000000000006 202 1970-07-22 2024-10-11 00:03:22.000 1970-07-22 2024-10-11 00:03:22 +203 203 204 20.3 40.6 203 1970-07-23 2024-10-11 00:03:23.000 1970-07-23 2024-10-11 00:03:23 +204 204 205 20.4 40.800000000000004 204 1970-07-24 2024-10-11 00:03:24.000 1970-07-24 2024-10-11 00:03:24 +205 205 206 20.5 41 205 1970-07-25 2024-10-11 00:03:25.000 1970-07-25 2024-10-11 00:03:25 +206 206 207 20.6 41.2 206 1970-07-26 2024-10-11 00:03:26.000 1970-07-26 2024-10-11 00:03:26 +207 207 208 20.7 41.400000000000006 207 1970-07-27 2024-10-11 00:03:27.000 1970-07-27 2024-10-11 00:03:27 +208 208 209 20.8 41.6 208 1970-07-28 2024-10-11 00:03:28.000 1970-07-28 2024-10-11 00:03:28 +209 209 210 20.9 41.800000000000004 209 1970-07-29 2024-10-11 00:03:29.000 1970-07-29 2024-10-11 00:03:29 +210 210 211 21 42 210 1970-07-30 2024-10-11 00:03:30.000 1970-07-30 2024-10-11 00:03:30 +211 211 212 21.1 42.2 211 1970-07-31 2024-10-11 00:03:31.000 1970-07-31 2024-10-11 00:03:31 +212 212 213 21.2 42.400000000000006 212 1970-08-01 2024-10-11 00:03:32.000 1970-08-01 2024-10-11 00:03:32 +213 213 214 21.3 42.6 213 1970-08-02 2024-10-11 00:03:33.000 1970-08-02 2024-10-11 00:03:33 +214 214 215 21.4 42.800000000000004 214 1970-08-03 2024-10-11 00:03:34.000 1970-08-03 2024-10-11 00:03:34 +215 215 216 21.5 43 215 1970-08-04 2024-10-11 00:03:35.000 1970-08-04 2024-10-11 00:03:35 +216 216 217 21.6 43.2 216 1970-08-05 2024-10-11 00:03:36.000 1970-08-05 2024-10-11 00:03:36 +217 217 218 21.7 43.400000000000006 217 1970-08-06 2024-10-11 00:03:37.000 1970-08-06 2024-10-11 00:03:37 +218 218 219 21.8 43.6 218 1970-08-07 2024-10-11 00:03:38.000 1970-08-07 2024-10-11 00:03:38 +219 219 220 21.9 43.800000000000004 219 1970-08-08 2024-10-11 00:03:39.000 1970-08-08 2024-10-11 00:03:39 +220 220 221 22 44 220 1970-08-09 2024-10-11 00:03:40.000 1970-08-09 2024-10-11 00:03:40 +221 221 222 22.1 44.2 221 1970-08-10 2024-10-11 00:03:41.000 1970-08-10 2024-10-11 00:03:41 +222 222 223 22.2 44.400000000000006 222 1970-08-11 2024-10-11 00:03:42.000 1970-08-11 2024-10-11 00:03:42 +223 223 224 22.3 44.6 223 1970-08-12 2024-10-11 00:03:43.000 1970-08-12 2024-10-11 00:03:43 +224 224 225 22.4 44.800000000000004 224 1970-08-13 2024-10-11 00:03:44.000 1970-08-13 2024-10-11 00:03:44 +225 225 226 22.5 45 225 1970-08-14 2024-10-11 00:03:45.000 1970-08-14 2024-10-11 00:03:45 +226 226 227 22.6 45.2 226 1970-08-15 2024-10-11 00:03:46.000 1970-08-15 2024-10-11 00:03:46 +227 227 228 22.7 45.400000000000006 227 1970-08-16 2024-10-11 00:03:47.000 1970-08-16 2024-10-11 00:03:47 +228 228 229 22.8 45.6 228 1970-08-17 2024-10-11 00:03:48.000 1970-08-17 2024-10-11 00:03:48 +229 229 230 22.9 45.800000000000004 229 1970-08-18 2024-10-11 00:03:49.000 1970-08-18 2024-10-11 00:03:49 +230 230 231 23 46 230 1970-08-19 2024-10-11 00:03:50.000 1970-08-19 2024-10-11 00:03:50 +231 231 232 23.1 46.2 231 1970-08-20 2024-10-11 00:03:51.000 1970-08-20 2024-10-11 00:03:51 +232 232 233 23.2 46.400000000000006 232 1970-08-21 2024-10-11 00:03:52.000 1970-08-21 2024-10-11 00:03:52 +233 233 234 23.3 46.6 233 1970-08-22 2024-10-11 00:03:53.000 1970-08-22 2024-10-11 00:03:53 +234 234 235 23.4 46.800000000000004 234 1970-08-23 2024-10-11 00:03:54.000 1970-08-23 2024-10-11 00:03:54 +235 235 236 23.5 47 235 1970-08-24 2024-10-11 00:03:55.000 1970-08-24 2024-10-11 00:03:55 +236 236 237 23.6 47.2 236 1970-08-25 2024-10-11 00:03:56.000 1970-08-25 2024-10-11 00:03:56 +237 237 238 23.7 47.400000000000006 237 1970-08-26 2024-10-11 00:03:57.000 1970-08-26 2024-10-11 00:03:57 +238 238 239 23.8 47.6 238 1970-08-27 2024-10-11 00:03:58.000 1970-08-27 2024-10-11 00:03:58 +239 239 240 23.9 47.800000000000004 239 1970-08-28 2024-10-11 00:03:59.000 1970-08-28 2024-10-11 00:03:59 +240 240 241 24 48 240 1970-08-29 2024-10-11 00:04:00.000 1970-08-29 2024-10-11 00:04:00 +241 241 242 24.1 48.2 241 1970-08-30 2024-10-11 00:04:01.000 1970-08-30 2024-10-11 00:04:01 +242 242 243 24.2 48.400000000000006 242 1970-08-31 2024-10-11 00:04:02.000 1970-08-31 2024-10-11 00:04:02 +243 243 244 24.3 48.6 243 1970-09-01 2024-10-11 00:04:03.000 1970-09-01 2024-10-11 00:04:03 +244 244 245 24.4 48.800000000000004 244 1970-09-02 2024-10-11 00:04:04.000 1970-09-02 2024-10-11 00:04:04 +245 245 246 24.5 49 245 1970-09-03 2024-10-11 00:04:05.000 1970-09-03 2024-10-11 00:04:05 +246 246 247 24.6 49.2 246 1970-09-04 2024-10-11 00:04:06.000 1970-09-04 2024-10-11 00:04:06 +247 247 248 24.7 49.400000000000006 247 1970-09-05 2024-10-11 00:04:07.000 1970-09-05 2024-10-11 00:04:07 +248 248 249 24.8 49.6 248 1970-09-06 2024-10-11 00:04:08.000 1970-09-06 2024-10-11 00:04:08 +249 249 250 24.9 49.800000000000004 249 1970-09-07 2024-10-11 00:04:09.000 1970-09-07 2024-10-11 00:04:09 +250 250 251 25 50 250 1970-09-08 2024-10-11 00:04:10.000 1970-09-08 2024-10-11 00:04:10 +251 251 252 25.1 50.2 251 1970-09-09 2024-10-11 00:04:11.000 1970-09-09 2024-10-11 00:04:11 +252 252 253 25.2 50.400000000000006 252 1970-09-10 2024-10-11 00:04:12.000 1970-09-10 2024-10-11 00:04:12 +253 253 254 25.3 50.6 253 1970-09-11 2024-10-11 00:04:13.000 1970-09-11 2024-10-11 00:04:13 +254 254 255 25.4 50.800000000000004 254 1970-09-12 2024-10-11 00:04:14.000 1970-09-12 2024-10-11 00:04:14 +255 255 256 25.5 51 255 1970-09-13 2024-10-11 00:04:15.000 1970-09-13 2024-10-11 00:04:15 +256 256 257 25.6 51.2 256 1970-09-14 2024-10-11 00:04:16.000 1970-09-14 2024-10-11 00:04:16 +257 257 258 25.7 51.400000000000006 257 1970-09-15 2024-10-11 00:04:17.000 1970-09-15 2024-10-11 00:04:17 +258 258 259 25.8 51.6 258 1970-09-16 2024-10-11 00:04:18.000 1970-09-16 2024-10-11 00:04:18 +259 259 260 25.9 51.800000000000004 259 1970-09-17 2024-10-11 00:04:19.000 1970-09-17 2024-10-11 00:04:19 +260 260 261 26 52 260 1970-09-18 2024-10-11 00:04:20.000 1970-09-18 2024-10-11 00:04:20 +261 261 262 26.1 52.2 261 1970-09-19 2024-10-11 00:04:21.000 1970-09-19 2024-10-11 00:04:21 +262 262 263 26.2 52.400000000000006 262 1970-09-20 2024-10-11 00:04:22.000 1970-09-20 2024-10-11 00:04:22 +263 263 264 26.3 52.6 263 1970-09-21 2024-10-11 00:04:23.000 1970-09-21 2024-10-11 00:04:23 +264 264 265 26.4 52.800000000000004 264 1970-09-22 2024-10-11 00:04:24.000 1970-09-22 2024-10-11 00:04:24 +265 265 266 26.5 53 265 1970-09-23 2024-10-11 00:04:25.000 1970-09-23 2024-10-11 00:04:25 +266 266 267 26.6 53.2 266 1970-09-24 2024-10-11 00:04:26.000 1970-09-24 2024-10-11 00:04:26 +267 267 268 26.7 53.400000000000006 267 1970-09-25 2024-10-11 00:04:27.000 1970-09-25 2024-10-11 00:04:27 +268 268 269 26.8 53.6 268 1970-09-26 2024-10-11 00:04:28.000 1970-09-26 2024-10-11 00:04:28 +269 269 270 26.9 53.800000000000004 269 1970-09-27 2024-10-11 00:04:29.000 1970-09-27 2024-10-11 00:04:29 +270 270 271 27 54 270 1970-09-28 2024-10-11 00:04:30.000 1970-09-28 2024-10-11 00:04:30 +271 271 272 27.1 54.2 271 1970-09-29 2024-10-11 00:04:31.000 1970-09-29 2024-10-11 00:04:31 +272 272 273 27.2 54.400000000000006 272 1970-09-30 2024-10-11 00:04:32.000 1970-09-30 2024-10-11 00:04:32 +273 273 274 27.3 54.6 273 1970-10-01 2024-10-11 00:04:33.000 1970-10-01 2024-10-11 00:04:33 +274 274 275 27.4 54.800000000000004 274 1970-10-02 2024-10-11 00:04:34.000 1970-10-02 2024-10-11 00:04:34 +275 275 276 27.5 55 275 1970-10-03 2024-10-11 00:04:35.000 1970-10-03 2024-10-11 00:04:35 +276 276 277 27.6 55.2 276 1970-10-04 2024-10-11 00:04:36.000 1970-10-04 2024-10-11 00:04:36 +277 277 278 27.7 55.400000000000006 277 1970-10-05 2024-10-11 00:04:37.000 1970-10-05 2024-10-11 00:04:37 +278 278 279 27.8 55.6 278 1970-10-06 2024-10-11 00:04:38.000 1970-10-06 2024-10-11 00:04:38 +279 279 280 27.9 55.800000000000004 279 1970-10-07 2024-10-11 00:04:39.000 1970-10-07 2024-10-11 00:04:39 +280 280 281 28 56 280 1970-10-08 2024-10-11 00:04:40.000 1970-10-08 2024-10-11 00:04:40 +281 281 282 28.1 56.2 281 1970-10-09 2024-10-11 00:04:41.000 1970-10-09 2024-10-11 00:04:41 +282 282 283 28.2 56.400000000000006 282 1970-10-10 2024-10-11 00:04:42.000 1970-10-10 2024-10-11 00:04:42 +283 283 284 28.3 56.6 283 1970-10-11 2024-10-11 00:04:43.000 1970-10-11 2024-10-11 00:04:43 +284 284 285 28.4 56.800000000000004 284 1970-10-12 2024-10-11 00:04:44.000 1970-10-12 2024-10-11 00:04:44 +285 285 286 28.5 57 285 1970-10-13 2024-10-11 00:04:45.000 1970-10-13 2024-10-11 00:04:45 +286 286 287 28.6 57.2 286 1970-10-14 2024-10-11 00:04:46.000 1970-10-14 2024-10-11 00:04:46 +287 287 288 28.7 57.400000000000006 287 1970-10-15 2024-10-11 00:04:47.000 1970-10-15 2024-10-11 00:04:47 +288 288 289 28.8 57.6 288 1970-10-16 2024-10-11 00:04:48.000 1970-10-16 2024-10-11 00:04:48 +289 289 290 28.9 57.800000000000004 289 1970-10-17 2024-10-11 00:04:49.000 1970-10-17 2024-10-11 00:04:49 +290 290 291 29 58 290 1970-10-18 2024-10-11 00:04:50.000 1970-10-18 2024-10-11 00:04:50 +291 291 292 29.1 58.2 291 1970-10-19 2024-10-11 00:04:51.000 1970-10-19 2024-10-11 00:04:51 +292 292 293 29.2 58.400000000000006 292 1970-10-20 2024-10-11 00:04:52.000 1970-10-20 2024-10-11 00:04:52 +293 293 294 29.3 58.6 293 1970-10-21 2024-10-11 00:04:53.000 1970-10-21 2024-10-11 00:04:53 +294 294 295 29.4 58.800000000000004 294 1970-10-22 2024-10-11 00:04:54.000 1970-10-22 2024-10-11 00:04:54 +295 295 296 29.5 59 295 1970-10-23 2024-10-11 00:04:55.000 1970-10-23 2024-10-11 00:04:55 +296 296 297 29.6 59.2 296 1970-10-24 2024-10-11 00:04:56.000 1970-10-24 2024-10-11 00:04:56 +297 297 298 29.7 59.400000000000006 297 1970-10-25 2024-10-11 00:04:57.000 1970-10-25 2024-10-11 00:04:57 +298 298 299 29.8 59.6 298 1970-10-26 2024-10-11 00:04:58.000 1970-10-26 2024-10-11 00:04:58 +299 299 300 29.9 59.800000000000004 299 1970-10-27 2024-10-11 00:04:59.000 1970-10-27 2024-10-11 00:04:59 +300 300 301 30 60 300 1970-10-28 2024-10-11 00:05:00.000 1970-10-28 2024-10-11 00:05:00 +301 301 302 30.1 60.2 301 1970-10-29 2024-10-11 00:05:01.000 1970-10-29 2024-10-11 00:05:01 +302 302 303 30.2 60.400000000000006 302 1970-10-30 2024-10-11 00:05:02.000 1970-10-30 2024-10-11 00:05:02 +303 303 304 30.3 60.6 303 1970-10-31 2024-10-11 00:05:03.000 1970-10-31 2024-10-11 00:05:03 +304 304 305 30.4 60.800000000000004 304 1970-11-01 2024-10-11 00:05:04.000 1970-11-01 2024-10-11 00:05:04 +305 305 306 30.5 61 305 1970-11-02 2024-10-11 00:05:05.000 1970-11-02 2024-10-11 00:05:05 +306 306 307 30.6 61.2 306 1970-11-03 2024-10-11 00:05:06.000 1970-11-03 2024-10-11 00:05:06 +307 307 308 30.7 61.400000000000006 307 1970-11-04 2024-10-11 00:05:07.000 1970-11-04 2024-10-11 00:05:07 +308 308 309 30.8 61.6 308 1970-11-05 2024-10-11 00:05:08.000 1970-11-05 2024-10-11 00:05:08 +309 309 310 30.9 61.800000000000004 309 1970-11-06 2024-10-11 00:05:09.000 1970-11-06 2024-10-11 00:05:09 +310 310 311 31 62 310 1970-11-07 2024-10-11 00:05:10.000 1970-11-07 2024-10-11 00:05:10 +311 311 312 31.1 62.2 311 1970-11-08 2024-10-11 00:05:11.000 1970-11-08 2024-10-11 00:05:11 +312 312 313 31.2 62.400000000000006 312 1970-11-09 2024-10-11 00:05:12.000 1970-11-09 2024-10-11 00:05:12 +313 313 314 31.3 62.6 313 1970-11-10 2024-10-11 00:05:13.000 1970-11-10 2024-10-11 00:05:13 +314 314 315 31.4 62.800000000000004 314 1970-11-11 2024-10-11 00:05:14.000 1970-11-11 2024-10-11 00:05:14 +315 315 316 31.5 63 315 1970-11-12 2024-10-11 00:05:15.000 1970-11-12 2024-10-11 00:05:15 +316 316 317 31.6 63.2 316 1970-11-13 2024-10-11 00:05:16.000 1970-11-13 2024-10-11 00:05:16 +317 317 318 31.7 63.400000000000006 317 1970-11-14 2024-10-11 00:05:17.000 1970-11-14 2024-10-11 00:05:17 +318 318 319 31.8 63.6 318 1970-11-15 2024-10-11 00:05:18.000 1970-11-15 2024-10-11 00:05:18 +319 319 320 31.9 63.800000000000004 319 1970-11-16 2024-10-11 00:05:19.000 1970-11-16 2024-10-11 00:05:19 +320 320 321 32 64 320 1970-11-17 2024-10-11 00:05:20.000 1970-11-17 2024-10-11 00:05:20 +321 321 322 32.1 64.2 321 1970-11-18 2024-10-11 00:05:21.000 1970-11-18 2024-10-11 00:05:21 +322 322 323 32.2 64.4 322 1970-11-19 2024-10-11 00:05:22.000 1970-11-19 2024-10-11 00:05:22 +323 323 324 32.3 64.60000000000001 323 1970-11-20 2024-10-11 00:05:23.000 1970-11-20 2024-10-11 00:05:23 +324 324 325 32.4 64.8 324 1970-11-21 2024-10-11 00:05:24.000 1970-11-21 2024-10-11 00:05:24 +325 325 326 32.5 65 325 1970-11-22 2024-10-11 00:05:25.000 1970-11-22 2024-10-11 00:05:25 +326 326 327 32.6 65.2 326 1970-11-23 2024-10-11 00:05:26.000 1970-11-23 2024-10-11 00:05:26 +327 327 328 32.7 65.4 327 1970-11-24 2024-10-11 00:05:27.000 1970-11-24 2024-10-11 00:05:27 +328 328 329 32.8 65.60000000000001 328 1970-11-25 2024-10-11 00:05:28.000 1970-11-25 2024-10-11 00:05:28 +329 329 330 32.9 65.8 329 1970-11-26 2024-10-11 00:05:29.000 1970-11-26 2024-10-11 00:05:29 +330 330 331 33 66 330 1970-11-27 2024-10-11 00:05:30.000 1970-11-27 2024-10-11 00:05:30 +331 331 332 33.1 66.2 331 1970-11-28 2024-10-11 00:05:31.000 1970-11-28 2024-10-11 00:05:31 +332 332 333 33.2 66.4 332 1970-11-29 2024-10-11 00:05:32.000 1970-11-29 2024-10-11 00:05:32 +333 333 334 33.3 66.60000000000001 333 1970-11-30 2024-10-11 00:05:33.000 1970-11-30 2024-10-11 00:05:33 +334 334 335 33.4 66.8 334 1970-12-01 2024-10-11 00:05:34.000 1970-12-01 2024-10-11 00:05:34 +335 335 336 33.5 67 335 1970-12-02 2024-10-11 00:05:35.000 1970-12-02 2024-10-11 00:05:35 +336 336 337 33.6 67.2 336 1970-12-03 2024-10-11 00:05:36.000 1970-12-03 2024-10-11 00:05:36 +337 337 338 33.7 67.4 337 1970-12-04 2024-10-11 00:05:37.000 1970-12-04 2024-10-11 00:05:37 +338 338 339 33.8 67.60000000000001 338 1970-12-05 2024-10-11 00:05:38.000 1970-12-05 2024-10-11 00:05:38 +339 339 340 33.9 67.8 339 1970-12-06 2024-10-11 00:05:39.000 1970-12-06 2024-10-11 00:05:39 +340 340 341 34 68 340 1970-12-07 2024-10-11 00:05:40.000 1970-12-07 2024-10-11 00:05:40 +341 341 342 34.1 68.2 341 1970-12-08 2024-10-11 00:05:41.000 1970-12-08 2024-10-11 00:05:41 +342 342 343 34.2 68.4 342 1970-12-09 2024-10-11 00:05:42.000 1970-12-09 2024-10-11 00:05:42 +343 343 344 34.3 68.60000000000001 343 1970-12-10 2024-10-11 00:05:43.000 1970-12-10 2024-10-11 00:05:43 +344 344 345 34.4 68.8 344 1970-12-11 2024-10-11 00:05:44.000 1970-12-11 2024-10-11 00:05:44 +345 345 346 34.5 69 345 1970-12-12 2024-10-11 00:05:45.000 1970-12-12 2024-10-11 00:05:45 +346 346 347 34.6 69.2 346 1970-12-13 2024-10-11 00:05:46.000 1970-12-13 2024-10-11 00:05:46 +347 347 348 34.7 69.4 347 1970-12-14 2024-10-11 00:05:47.000 1970-12-14 2024-10-11 00:05:47 +348 348 349 34.8 69.60000000000001 348 1970-12-15 2024-10-11 00:05:48.000 1970-12-15 2024-10-11 00:05:48 +349 349 350 34.9 69.8 349 1970-12-16 2024-10-11 00:05:49.000 1970-12-16 2024-10-11 00:05:49 +350 350 351 35 70 350 1970-12-17 2024-10-11 00:05:50.000 1970-12-17 2024-10-11 00:05:50 +351 351 352 35.1 70.2 351 1970-12-18 2024-10-11 00:05:51.000 1970-12-18 2024-10-11 00:05:51 +352 352 353 35.2 70.4 352 1970-12-19 2024-10-11 00:05:52.000 1970-12-19 2024-10-11 00:05:52 +353 353 354 35.3 70.60000000000001 353 1970-12-20 2024-10-11 00:05:53.000 1970-12-20 2024-10-11 00:05:53 +354 354 355 35.4 70.8 354 1970-12-21 2024-10-11 00:05:54.000 1970-12-21 2024-10-11 00:05:54 +355 355 356 35.5 71 355 1970-12-22 2024-10-11 00:05:55.000 1970-12-22 2024-10-11 00:05:55 +356 356 357 35.6 71.2 356 1970-12-23 2024-10-11 00:05:56.000 1970-12-23 2024-10-11 00:05:56 +357 357 358 35.7 71.4 357 1970-12-24 2024-10-11 00:05:57.000 1970-12-24 2024-10-11 00:05:57 +358 358 359 35.8 71.60000000000001 358 1970-12-25 2024-10-11 00:05:58.000 1970-12-25 2024-10-11 00:05:58 +359 359 360 35.9 71.8 359 1970-12-26 2024-10-11 00:05:59.000 1970-12-26 2024-10-11 00:05:59 +360 360 361 36 72 360 1970-12-27 2024-10-11 00:06:00.000 1970-12-27 2024-10-11 00:06:00 +361 361 362 36.1 72.2 361 1970-12-28 2024-10-11 00:06:01.000 1970-12-28 2024-10-11 00:06:01 +362 362 363 36.2 72.4 362 1970-12-29 2024-10-11 00:06:02.000 1970-12-29 2024-10-11 00:06:02 +363 363 364 36.3 72.60000000000001 363 1970-12-30 2024-10-11 00:06:03.000 1970-12-30 2024-10-11 00:06:03 +364 364 365 36.4 72.8 364 1970-12-31 2024-10-11 00:06:04.000 1970-12-31 2024-10-11 00:06:04 +365 365 366 36.5 73 365 1971-01-01 2024-10-11 00:06:05.000 1971-01-01 2024-10-11 00:06:05 +366 366 367 36.6 73.2 366 1971-01-02 2024-10-11 00:06:06.000 1971-01-02 2024-10-11 00:06:06 +367 367 368 36.7 73.4 367 1971-01-03 2024-10-11 00:06:07.000 1971-01-03 2024-10-11 00:06:07 +368 368 369 36.8 73.60000000000001 368 1971-01-04 2024-10-11 00:06:08.000 1971-01-04 2024-10-11 00:06:08 +369 369 370 36.9 73.8 369 1971-01-05 2024-10-11 00:06:09.000 1971-01-05 2024-10-11 00:06:09 +370 370 371 37 74 370 1971-01-06 2024-10-11 00:06:10.000 1971-01-06 2024-10-11 00:06:10 +371 371 372 37.1 74.2 371 1971-01-07 2024-10-11 00:06:11.000 1971-01-07 2024-10-11 00:06:11 +372 372 373 37.2 74.4 372 1971-01-08 2024-10-11 00:06:12.000 1971-01-08 2024-10-11 00:06:12 +373 373 374 37.3 74.60000000000001 373 1971-01-09 2024-10-11 00:06:13.000 1971-01-09 2024-10-11 00:06:13 +374 374 375 37.4 74.8 374 1971-01-10 2024-10-11 00:06:14.000 1971-01-10 2024-10-11 00:06:14 +375 375 376 37.5 75 375 1971-01-11 2024-10-11 00:06:15.000 1971-01-11 2024-10-11 00:06:15 +376 376 377 37.6 75.2 376 1971-01-12 2024-10-11 00:06:16.000 1971-01-12 2024-10-11 00:06:16 +377 377 378 37.7 75.4 377 1971-01-13 2024-10-11 00:06:17.000 1971-01-13 2024-10-11 00:06:17 +378 378 379 37.8 75.60000000000001 378 1971-01-14 2024-10-11 00:06:18.000 1971-01-14 2024-10-11 00:06:18 +379 379 380 37.9 75.8 379 1971-01-15 2024-10-11 00:06:19.000 1971-01-15 2024-10-11 00:06:19 +380 380 381 38 76 380 1971-01-16 2024-10-11 00:06:20.000 1971-01-16 2024-10-11 00:06:20 +381 381 382 38.1 76.2 381 1971-01-17 2024-10-11 00:06:21.000 1971-01-17 2024-10-11 00:06:21 +382 382 383 38.2 76.4 382 1971-01-18 2024-10-11 00:06:22.000 1971-01-18 2024-10-11 00:06:22 +383 383 384 38.3 76.60000000000001 383 1971-01-19 2024-10-11 00:06:23.000 1971-01-19 2024-10-11 00:06:23 +384 384 385 38.4 76.80000000000001 384 1971-01-20 2024-10-11 00:06:24.000 1971-01-20 2024-10-11 00:06:24 +385 385 386 38.5 77 385 1971-01-21 2024-10-11 00:06:25.000 1971-01-21 2024-10-11 00:06:25 +386 386 387 38.6 77.2 386 1971-01-22 2024-10-11 00:06:26.000 1971-01-22 2024-10-11 00:06:26 +387 387 388 38.7 77.4 387 1971-01-23 2024-10-11 00:06:27.000 1971-01-23 2024-10-11 00:06:27 +388 388 389 38.8 77.60000000000001 388 1971-01-24 2024-10-11 00:06:28.000 1971-01-24 2024-10-11 00:06:28 +389 389 390 38.9 77.80000000000001 389 1971-01-25 2024-10-11 00:06:29.000 1971-01-25 2024-10-11 00:06:29 +390 390 391 39 78 390 1971-01-26 2024-10-11 00:06:30.000 1971-01-26 2024-10-11 00:06:30 +391 391 392 39.1 78.2 391 1971-01-27 2024-10-11 00:06:31.000 1971-01-27 2024-10-11 00:06:31 +392 392 393 39.2 78.4 392 1971-01-28 2024-10-11 00:06:32.000 1971-01-28 2024-10-11 00:06:32 +393 393 394 39.3 78.60000000000001 393 1971-01-29 2024-10-11 00:06:33.000 1971-01-29 2024-10-11 00:06:33 +394 394 395 39.4 78.80000000000001 394 1971-01-30 2024-10-11 00:06:34.000 1971-01-30 2024-10-11 00:06:34 +395 395 396 39.5 79 395 1971-01-31 2024-10-11 00:06:35.000 1971-01-31 2024-10-11 00:06:35 +396 396 397 39.6 79.2 396 1971-02-01 2024-10-11 00:06:36.000 1971-02-01 2024-10-11 00:06:36 +397 397 398 39.7 79.4 397 1971-02-02 2024-10-11 00:06:37.000 1971-02-02 2024-10-11 00:06:37 +398 398 399 39.8 79.60000000000001 398 1971-02-03 2024-10-11 00:06:38.000 1971-02-03 2024-10-11 00:06:38 +399 399 400 39.9 79.80000000000001 399 1971-02-04 2024-10-11 00:06:39.000 1971-02-04 2024-10-11 00:06:39 +400 400 401 40 80 400 1971-02-05 2024-10-11 00:06:40.000 1971-02-05 2024-10-11 00:06:40 +401 401 402 40.1 80.2 401 1971-02-06 2024-10-11 00:06:41.000 1971-02-06 2024-10-11 00:06:41 +402 402 403 40.2 80.4 402 1971-02-07 2024-10-11 00:06:42.000 1971-02-07 2024-10-11 00:06:42 +403 403 404 40.3 80.60000000000001 403 1971-02-08 2024-10-11 00:06:43.000 1971-02-08 2024-10-11 00:06:43 +404 404 405 40.4 80.80000000000001 404 1971-02-09 2024-10-11 00:06:44.000 1971-02-09 2024-10-11 00:06:44 +405 405 406 40.5 81 405 1971-02-10 2024-10-11 00:06:45.000 1971-02-10 2024-10-11 00:06:45 +406 406 407 40.6 81.2 406 1971-02-11 2024-10-11 00:06:46.000 1971-02-11 2024-10-11 00:06:46 +407 407 408 40.7 81.4 407 1971-02-12 2024-10-11 00:06:47.000 1971-02-12 2024-10-11 00:06:47 +408 408 409 40.8 81.60000000000001 408 1971-02-13 2024-10-11 00:06:48.000 1971-02-13 2024-10-11 00:06:48 +409 409 410 40.9 81.80000000000001 409 1971-02-14 2024-10-11 00:06:49.000 1971-02-14 2024-10-11 00:06:49 +410 410 411 41 82 410 1971-02-15 2024-10-11 00:06:50.000 1971-02-15 2024-10-11 00:06:50 +411 411 412 41.1 82.2 411 1971-02-16 2024-10-11 00:06:51.000 1971-02-16 2024-10-11 00:06:51 +412 412 413 41.2 82.4 412 1971-02-17 2024-10-11 00:06:52.000 1971-02-17 2024-10-11 00:06:52 +413 413 414 41.3 82.60000000000001 413 1971-02-18 2024-10-11 00:06:53.000 1971-02-18 2024-10-11 00:06:53 +414 414 415 41.4 82.80000000000001 414 1971-02-19 2024-10-11 00:06:54.000 1971-02-19 2024-10-11 00:06:54 +415 415 416 41.5 83 415 1971-02-20 2024-10-11 00:06:55.000 1971-02-20 2024-10-11 00:06:55 +416 416 417 41.6 83.2 416 1971-02-21 2024-10-11 00:06:56.000 1971-02-21 2024-10-11 00:06:56 +417 417 418 41.7 83.4 417 1971-02-22 2024-10-11 00:06:57.000 1971-02-22 2024-10-11 00:06:57 +418 418 419 41.8 83.60000000000001 418 1971-02-23 2024-10-11 00:06:58.000 1971-02-23 2024-10-11 00:06:58 +419 419 420 41.9 83.80000000000001 419 1971-02-24 2024-10-11 00:06:59.000 1971-02-24 2024-10-11 00:06:59 +420 420 421 42 84 420 1971-02-25 2024-10-11 00:07:00.000 1971-02-25 2024-10-11 00:07:00 +421 421 422 42.1 84.2 421 1971-02-26 2024-10-11 00:07:01.000 1971-02-26 2024-10-11 00:07:01 +422 422 423 42.2 84.4 422 1971-02-27 2024-10-11 00:07:02.000 1971-02-27 2024-10-11 00:07:02 +423 423 424 42.3 84.60000000000001 423 1971-02-28 2024-10-11 00:07:03.000 1971-02-28 2024-10-11 00:07:03 +424 424 425 42.4 84.80000000000001 424 1971-03-01 2024-10-11 00:07:04.000 1971-03-01 2024-10-11 00:07:04 +425 425 426 42.5 85 425 1971-03-02 2024-10-11 00:07:05.000 1971-03-02 2024-10-11 00:07:05 +426 426 427 42.6 85.2 426 1971-03-03 2024-10-11 00:07:06.000 1971-03-03 2024-10-11 00:07:06 +427 427 428 42.7 85.4 427 1971-03-04 2024-10-11 00:07:07.000 1971-03-04 2024-10-11 00:07:07 +428 428 429 42.8 85.60000000000001 428 1971-03-05 2024-10-11 00:07:08.000 1971-03-05 2024-10-11 00:07:08 +429 429 430 42.9 85.80000000000001 429 1971-03-06 2024-10-11 00:07:09.000 1971-03-06 2024-10-11 00:07:09 +430 430 431 43 86 430 1971-03-07 2024-10-11 00:07:10.000 1971-03-07 2024-10-11 00:07:10 +431 431 432 43.1 86.2 431 1971-03-08 2024-10-11 00:07:11.000 1971-03-08 2024-10-11 00:07:11 +432 432 433 43.2 86.4 432 1971-03-09 2024-10-11 00:07:12.000 1971-03-09 2024-10-11 00:07:12 +433 433 434 43.3 86.60000000000001 433 1971-03-10 2024-10-11 00:07:13.000 1971-03-10 2024-10-11 00:07:13 +434 434 435 43.4 86.80000000000001 434 1971-03-11 2024-10-11 00:07:14.000 1971-03-11 2024-10-11 00:07:14 +435 435 436 43.5 87 435 1971-03-12 2024-10-11 00:07:15.000 1971-03-12 2024-10-11 00:07:15 +436 436 437 43.6 87.2 436 1971-03-13 2024-10-11 00:07:16.000 1971-03-13 2024-10-11 00:07:16 +437 437 438 43.7 87.4 437 1971-03-14 2024-10-11 00:07:17.000 1971-03-14 2024-10-11 00:07:17 +438 438 439 43.8 87.60000000000001 438 1971-03-15 2024-10-11 00:07:18.000 1971-03-15 2024-10-11 00:07:18 +439 439 440 43.9 87.80000000000001 439 1971-03-16 2024-10-11 00:07:19.000 1971-03-16 2024-10-11 00:07:19 +440 440 441 44 88 440 1971-03-17 2024-10-11 00:07:20.000 1971-03-17 2024-10-11 00:07:20 +441 441 442 44.1 88.2 441 1971-03-18 2024-10-11 00:07:21.000 1971-03-18 2024-10-11 00:07:21 +442 442 443 44.2 88.4 442 1971-03-19 2024-10-11 00:07:22.000 1971-03-19 2024-10-11 00:07:22 +443 443 444 44.3 88.60000000000001 443 1971-03-20 2024-10-11 00:07:23.000 1971-03-20 2024-10-11 00:07:23 +444 444 445 44.4 88.80000000000001 444 1971-03-21 2024-10-11 00:07:24.000 1971-03-21 2024-10-11 00:07:24 +445 445 446 44.5 89 445 1971-03-22 2024-10-11 00:07:25.000 1971-03-22 2024-10-11 00:07:25 +446 446 447 44.6 89.2 446 1971-03-23 2024-10-11 00:07:26.000 1971-03-23 2024-10-11 00:07:26 +447 447 448 44.7 89.4 447 1971-03-24 2024-10-11 00:07:27.000 1971-03-24 2024-10-11 00:07:27 +448 448 449 44.8 89.60000000000001 448 1971-03-25 2024-10-11 00:07:28.000 1971-03-25 2024-10-11 00:07:28 +449 449 450 44.9 89.80000000000001 449 1971-03-26 2024-10-11 00:07:29.000 1971-03-26 2024-10-11 00:07:29 +450 450 451 45 90 450 1971-03-27 2024-10-11 00:07:30.000 1971-03-27 2024-10-11 00:07:30 +451 451 452 45.1 90.2 451 1971-03-28 2024-10-11 00:07:31.000 1971-03-28 2024-10-11 00:07:31 +452 452 453 45.2 90.4 452 1971-03-29 2024-10-11 00:07:32.000 1971-03-29 2024-10-11 00:07:32 +453 453 454 45.3 90.60000000000001 453 1971-03-30 2024-10-11 00:07:33.000 1971-03-30 2024-10-11 00:07:33 +454 454 455 45.4 90.80000000000001 454 1971-03-31 2024-10-11 00:07:34.000 1971-03-31 2024-10-11 00:07:34 +455 455 456 45.5 91 455 1971-04-01 2024-10-11 00:07:35.000 1971-04-01 2024-10-11 00:07:35 +456 456 457 45.6 91.2 456 1971-04-02 2024-10-11 00:07:36.000 1971-04-02 2024-10-11 00:07:36 +457 457 458 45.7 91.4 457 1971-04-03 2024-10-11 00:07:37.000 1971-04-03 2024-10-11 00:07:37 +458 458 459 45.8 91.60000000000001 458 1971-04-04 2024-10-11 00:07:38.000 1971-04-04 2024-10-11 00:07:38 +459 459 460 45.9 91.80000000000001 459 1971-04-05 2024-10-11 00:07:39.000 1971-04-05 2024-10-11 00:07:39 +460 460 461 46 92 460 1971-04-06 2024-10-11 00:07:40.000 1971-04-06 2024-10-11 00:07:40 +461 461 462 46.1 92.2 461 1971-04-07 2024-10-11 00:07:41.000 1971-04-07 2024-10-11 00:07:41 +462 462 463 46.2 92.4 462 1971-04-08 2024-10-11 00:07:42.000 1971-04-08 2024-10-11 00:07:42 +463 463 464 46.3 92.60000000000001 463 1971-04-09 2024-10-11 00:07:43.000 1971-04-09 2024-10-11 00:07:43 +464 464 465 46.4 92.80000000000001 464 1971-04-10 2024-10-11 00:07:44.000 1971-04-10 2024-10-11 00:07:44 +465 465 466 46.5 93 465 1971-04-11 2024-10-11 00:07:45.000 1971-04-11 2024-10-11 00:07:45 +466 466 467 46.6 93.2 466 1971-04-12 2024-10-11 00:07:46.000 1971-04-12 2024-10-11 00:07:46 +467 467 468 46.7 93.4 467 1971-04-13 2024-10-11 00:07:47.000 1971-04-13 2024-10-11 00:07:47 +468 468 469 46.8 93.60000000000001 468 1971-04-14 2024-10-11 00:07:48.000 1971-04-14 2024-10-11 00:07:48 +469 469 470 46.9 93.80000000000001 469 1971-04-15 2024-10-11 00:07:49.000 1971-04-15 2024-10-11 00:07:49 +470 470 471 47 94 470 1971-04-16 2024-10-11 00:07:50.000 1971-04-16 2024-10-11 00:07:50 +471 471 472 47.1 94.2 471 1971-04-17 2024-10-11 00:07:51.000 1971-04-17 2024-10-11 00:07:51 +472 472 473 47.2 94.4 472 1971-04-18 2024-10-11 00:07:52.000 1971-04-18 2024-10-11 00:07:52 +473 473 474 47.3 94.60000000000001 473 1971-04-19 2024-10-11 00:07:53.000 1971-04-19 2024-10-11 00:07:53 +474 474 475 47.4 94.80000000000001 474 1971-04-20 2024-10-11 00:07:54.000 1971-04-20 2024-10-11 00:07:54 +475 475 476 47.5 95 475 1971-04-21 2024-10-11 00:07:55.000 1971-04-21 2024-10-11 00:07:55 +476 476 477 47.6 95.2 476 1971-04-22 2024-10-11 00:07:56.000 1971-04-22 2024-10-11 00:07:56 +477 477 478 47.7 95.4 477 1971-04-23 2024-10-11 00:07:57.000 1971-04-23 2024-10-11 00:07:57 +478 478 479 47.8 95.60000000000001 478 1971-04-24 2024-10-11 00:07:58.000 1971-04-24 2024-10-11 00:07:58 +479 479 480 47.9 95.80000000000001 479 1971-04-25 2024-10-11 00:07:59.000 1971-04-25 2024-10-11 00:07:59 +480 480 481 48 96 480 1971-04-26 2024-10-11 00:08:00.000 1971-04-26 2024-10-11 00:08:00 +481 481 482 48.1 96.2 481 1971-04-27 2024-10-11 00:08:01.000 1971-04-27 2024-10-11 00:08:01 +482 482 483 48.2 96.4 482 1971-04-28 2024-10-11 00:08:02.000 1971-04-28 2024-10-11 00:08:02 +483 483 484 48.3 96.60000000000001 483 1971-04-29 2024-10-11 00:08:03.000 1971-04-29 2024-10-11 00:08:03 +484 484 485 48.4 96.80000000000001 484 1971-04-30 2024-10-11 00:08:04.000 1971-04-30 2024-10-11 00:08:04 +485 485 486 48.5 97 485 1971-05-01 2024-10-11 00:08:05.000 1971-05-01 2024-10-11 00:08:05 +486 486 487 48.6 97.2 486 1971-05-02 2024-10-11 00:08:06.000 1971-05-02 2024-10-11 00:08:06 +487 487 488 48.7 97.4 487 1971-05-03 2024-10-11 00:08:07.000 1971-05-03 2024-10-11 00:08:07 +488 488 489 48.8 97.60000000000001 488 1971-05-04 2024-10-11 00:08:08.000 1971-05-04 2024-10-11 00:08:08 +489 489 490 48.9 97.80000000000001 489 1971-05-05 2024-10-11 00:08:09.000 1971-05-05 2024-10-11 00:08:09 +490 490 491 49 98 490 1971-05-06 2024-10-11 00:08:10.000 1971-05-06 2024-10-11 00:08:10 +491 491 492 49.1 98.2 491 1971-05-07 2024-10-11 00:08:11.000 1971-05-07 2024-10-11 00:08:11 +492 492 493 49.2 98.4 492 1971-05-08 2024-10-11 00:08:12.000 1971-05-08 2024-10-11 00:08:12 +493 493 494 49.3 98.60000000000001 493 1971-05-09 2024-10-11 00:08:13.000 1971-05-09 2024-10-11 00:08:13 +494 494 495 49.4 98.80000000000001 494 1971-05-10 2024-10-11 00:08:14.000 1971-05-10 2024-10-11 00:08:14 +495 495 496 49.5 99 495 1971-05-11 2024-10-11 00:08:15.000 1971-05-11 2024-10-11 00:08:15 +496 496 497 49.6 99.2 496 1971-05-12 2024-10-11 00:08:16.000 1971-05-12 2024-10-11 00:08:16 +497 497 498 49.7 99.4 497 1971-05-13 2024-10-11 00:08:17.000 1971-05-13 2024-10-11 00:08:17 +498 498 499 49.8 99.60000000000001 498 1971-05-14 2024-10-11 00:08:18.000 1971-05-14 2024-10-11 00:08:18 +499 499 500 49.9 99.80000000000001 499 1971-05-15 2024-10-11 00:08:19.000 1971-05-15 2024-10-11 00:08:19 +500 500 501 50 100 500 1971-05-16 2024-10-11 00:08:20.000 1971-05-16 2024-10-11 00:08:20 +501 501 502 50.1 100.2 501 1971-05-17 2024-10-11 00:08:21.000 1971-05-17 2024-10-11 00:08:21 +502 502 503 50.2 100.4 502 1971-05-18 2024-10-11 00:08:22.000 1971-05-18 2024-10-11 00:08:22 +503 503 504 50.3 100.60000000000001 503 1971-05-19 2024-10-11 00:08:23.000 1971-05-19 2024-10-11 00:08:23 +504 504 505 50.4 100.80000000000001 504 1971-05-20 2024-10-11 00:08:24.000 1971-05-20 2024-10-11 00:08:24 +505 505 506 50.5 101 505 1971-05-21 2024-10-11 00:08:25.000 1971-05-21 2024-10-11 00:08:25 +506 506 507 50.6 101.2 506 1971-05-22 2024-10-11 00:08:26.000 1971-05-22 2024-10-11 00:08:26 +507 507 508 50.7 101.4 507 1971-05-23 2024-10-11 00:08:27.000 1971-05-23 2024-10-11 00:08:27 +508 508 509 50.8 101.60000000000001 508 1971-05-24 2024-10-11 00:08:28.000 1971-05-24 2024-10-11 00:08:28 +509 509 510 50.9 101.80000000000001 509 1971-05-25 2024-10-11 00:08:29.000 1971-05-25 2024-10-11 00:08:29 +510 510 511 51 102 510 1971-05-26 2024-10-11 00:08:30.000 1971-05-26 2024-10-11 00:08:30 +511 511 512 51.1 102.2 511 1971-05-27 2024-10-11 00:08:31.000 1971-05-27 2024-10-11 00:08:31 +512 512 513 51.2 102.4 512 1971-05-28 2024-10-11 00:08:32.000 1971-05-28 2024-10-11 00:08:32 +513 513 514 51.3 102.60000000000001 513 1971-05-29 2024-10-11 00:08:33.000 1971-05-29 2024-10-11 00:08:33 +514 514 515 51.4 102.80000000000001 514 1971-05-30 2024-10-11 00:08:34.000 1971-05-30 2024-10-11 00:08:34 +515 515 516 51.5 103 515 1971-05-31 2024-10-11 00:08:35.000 1971-05-31 2024-10-11 00:08:35 +516 516 517 51.6 103.2 516 1971-06-01 2024-10-11 00:08:36.000 1971-06-01 2024-10-11 00:08:36 +517 517 518 51.7 103.4 517 1971-06-02 2024-10-11 00:08:37.000 1971-06-02 2024-10-11 00:08:37 +518 518 519 51.8 103.60000000000001 518 1971-06-03 2024-10-11 00:08:38.000 1971-06-03 2024-10-11 00:08:38 +519 519 520 51.9 103.80000000000001 519 1971-06-04 2024-10-11 00:08:39.000 1971-06-04 2024-10-11 00:08:39 +520 520 521 52 104 520 1971-06-05 2024-10-11 00:08:40.000 1971-06-05 2024-10-11 00:08:40 +521 521 522 52.1 104.2 521 1971-06-06 2024-10-11 00:08:41.000 1971-06-06 2024-10-11 00:08:41 +522 522 523 52.2 104.4 522 1971-06-07 2024-10-11 00:08:42.000 1971-06-07 2024-10-11 00:08:42 +523 523 524 52.3 104.60000000000001 523 1971-06-08 2024-10-11 00:08:43.000 1971-06-08 2024-10-11 00:08:43 +524 524 525 52.4 104.80000000000001 524 1971-06-09 2024-10-11 00:08:44.000 1971-06-09 2024-10-11 00:08:44 +525 525 526 52.5 105 525 1971-06-10 2024-10-11 00:08:45.000 1971-06-10 2024-10-11 00:08:45 +526 526 527 52.6 105.2 526 1971-06-11 2024-10-11 00:08:46.000 1971-06-11 2024-10-11 00:08:46 +527 527 528 52.7 105.4 527 1971-06-12 2024-10-11 00:08:47.000 1971-06-12 2024-10-11 00:08:47 +528 528 529 52.8 105.60000000000001 528 1971-06-13 2024-10-11 00:08:48.000 1971-06-13 2024-10-11 00:08:48 +529 529 530 52.9 105.80000000000001 529 1971-06-14 2024-10-11 00:08:49.000 1971-06-14 2024-10-11 00:08:49 +530 530 531 53 106 530 1971-06-15 2024-10-11 00:08:50.000 1971-06-15 2024-10-11 00:08:50 +531 531 532 53.1 106.2 531 1971-06-16 2024-10-11 00:08:51.000 1971-06-16 2024-10-11 00:08:51 +532 532 533 53.2 106.4 532 1971-06-17 2024-10-11 00:08:52.000 1971-06-17 2024-10-11 00:08:52 +533 533 534 53.3 106.60000000000001 533 1971-06-18 2024-10-11 00:08:53.000 1971-06-18 2024-10-11 00:08:53 +534 534 535 53.4 106.80000000000001 534 1971-06-19 2024-10-11 00:08:54.000 1971-06-19 2024-10-11 00:08:54 +535 535 536 53.5 107 535 1971-06-20 2024-10-11 00:08:55.000 1971-06-20 2024-10-11 00:08:55 +536 536 537 53.6 107.2 536 1971-06-21 2024-10-11 00:08:56.000 1971-06-21 2024-10-11 00:08:56 +537 537 538 53.7 107.4 537 1971-06-22 2024-10-11 00:08:57.000 1971-06-22 2024-10-11 00:08:57 +538 538 539 53.8 107.60000000000001 538 1971-06-23 2024-10-11 00:08:58.000 1971-06-23 2024-10-11 00:08:58 +539 539 540 53.9 107.80000000000001 539 1971-06-24 2024-10-11 00:08:59.000 1971-06-24 2024-10-11 00:08:59 +540 540 541 54 108 540 1971-06-25 2024-10-11 00:09:00.000 1971-06-25 2024-10-11 00:09:00 +541 541 542 54.1 108.2 541 1971-06-26 2024-10-11 00:09:01.000 1971-06-26 2024-10-11 00:09:01 +542 542 543 54.2 108.4 542 1971-06-27 2024-10-11 00:09:02.000 1971-06-27 2024-10-11 00:09:02 +543 543 544 54.3 108.60000000000001 543 1971-06-28 2024-10-11 00:09:03.000 1971-06-28 2024-10-11 00:09:03 +544 544 545 54.4 108.80000000000001 544 1971-06-29 2024-10-11 00:09:04.000 1971-06-29 2024-10-11 00:09:04 +545 545 546 54.5 109 545 1971-06-30 2024-10-11 00:09:05.000 1971-06-30 2024-10-11 00:09:05 +546 546 547 54.6 109.2 546 1971-07-01 2024-10-11 00:09:06.000 1971-07-01 2024-10-11 00:09:06 +547 547 548 54.7 109.4 547 1971-07-02 2024-10-11 00:09:07.000 1971-07-02 2024-10-11 00:09:07 +548 548 549 54.8 109.60000000000001 548 1971-07-03 2024-10-11 00:09:08.000 1971-07-03 2024-10-11 00:09:08 +549 549 550 54.9 109.80000000000001 549 1971-07-04 2024-10-11 00:09:09.000 1971-07-04 2024-10-11 00:09:09 +550 550 551 55 110 550 1971-07-05 2024-10-11 00:09:10.000 1971-07-05 2024-10-11 00:09:10 +551 551 552 55.1 110.2 551 1971-07-06 2024-10-11 00:09:11.000 1971-07-06 2024-10-11 00:09:11 +552 552 553 55.2 110.4 552 1971-07-07 2024-10-11 00:09:12.000 1971-07-07 2024-10-11 00:09:12 +553 553 554 55.3 110.60000000000001 553 1971-07-08 2024-10-11 00:09:13.000 1971-07-08 2024-10-11 00:09:13 +554 554 555 55.4 110.80000000000001 554 1971-07-09 2024-10-11 00:09:14.000 1971-07-09 2024-10-11 00:09:14 +555 555 556 55.5 111 555 1971-07-10 2024-10-11 00:09:15.000 1971-07-10 2024-10-11 00:09:15 +556 556 557 55.6 111.2 556 1971-07-11 2024-10-11 00:09:16.000 1971-07-11 2024-10-11 00:09:16 +557 557 558 55.7 111.4 557 1971-07-12 2024-10-11 00:09:17.000 1971-07-12 2024-10-11 00:09:17 +558 558 559 55.8 111.60000000000001 558 1971-07-13 2024-10-11 00:09:18.000 1971-07-13 2024-10-11 00:09:18 +559 559 560 55.9 111.80000000000001 559 1971-07-14 2024-10-11 00:09:19.000 1971-07-14 2024-10-11 00:09:19 +560 560 561 56 112 560 1971-07-15 2024-10-11 00:09:20.000 1971-07-15 2024-10-11 00:09:20 +561 561 562 56.1 112.2 561 1971-07-16 2024-10-11 00:09:21.000 1971-07-16 2024-10-11 00:09:21 +562 562 563 56.2 112.4 562 1971-07-17 2024-10-11 00:09:22.000 1971-07-17 2024-10-11 00:09:22 +563 563 564 56.3 112.60000000000001 563 1971-07-18 2024-10-11 00:09:23.000 1971-07-18 2024-10-11 00:09:23 +564 564 565 56.4 112.80000000000001 564 1971-07-19 2024-10-11 00:09:24.000 1971-07-19 2024-10-11 00:09:24 +565 565 566 56.5 113 565 1971-07-20 2024-10-11 00:09:25.000 1971-07-20 2024-10-11 00:09:25 +566 566 567 56.6 113.2 566 1971-07-21 2024-10-11 00:09:26.000 1971-07-21 2024-10-11 00:09:26 +567 567 568 56.7 113.4 567 1971-07-22 2024-10-11 00:09:27.000 1971-07-22 2024-10-11 00:09:27 +568 568 569 56.8 113.60000000000001 568 1971-07-23 2024-10-11 00:09:28.000 1971-07-23 2024-10-11 00:09:28 +569 569 570 56.9 113.80000000000001 569 1971-07-24 2024-10-11 00:09:29.000 1971-07-24 2024-10-11 00:09:29 +570 570 571 57 114 570 1971-07-25 2024-10-11 00:09:30.000 1971-07-25 2024-10-11 00:09:30 +571 571 572 57.1 114.2 571 1971-07-26 2024-10-11 00:09:31.000 1971-07-26 2024-10-11 00:09:31 +572 572 573 57.2 114.4 572 1971-07-27 2024-10-11 00:09:32.000 1971-07-27 2024-10-11 00:09:32 +573 573 574 57.3 114.60000000000001 573 1971-07-28 2024-10-11 00:09:33.000 1971-07-28 2024-10-11 00:09:33 +574 574 575 57.4 114.80000000000001 574 1971-07-29 2024-10-11 00:09:34.000 1971-07-29 2024-10-11 00:09:34 +575 575 576 57.5 115 575 1971-07-30 2024-10-11 00:09:35.000 1971-07-30 2024-10-11 00:09:35 +576 576 577 57.6 115.2 576 1971-07-31 2024-10-11 00:09:36.000 1971-07-31 2024-10-11 00:09:36 +577 577 578 57.7 115.4 577 1971-08-01 2024-10-11 00:09:37.000 1971-08-01 2024-10-11 00:09:37 +578 578 579 57.8 115.60000000000001 578 1971-08-02 2024-10-11 00:09:38.000 1971-08-02 2024-10-11 00:09:38 +579 579 580 57.9 115.80000000000001 579 1971-08-03 2024-10-11 00:09:39.000 1971-08-03 2024-10-11 00:09:39 +580 580 581 58 116 580 1971-08-04 2024-10-11 00:09:40.000 1971-08-04 2024-10-11 00:09:40 +581 581 582 58.1 116.2 581 1971-08-05 2024-10-11 00:09:41.000 1971-08-05 2024-10-11 00:09:41 +582 582 583 58.2 116.4 582 1971-08-06 2024-10-11 00:09:42.000 1971-08-06 2024-10-11 00:09:42 +583 583 584 58.3 116.60000000000001 583 1971-08-07 2024-10-11 00:09:43.000 1971-08-07 2024-10-11 00:09:43 +584 584 585 58.4 116.80000000000001 584 1971-08-08 2024-10-11 00:09:44.000 1971-08-08 2024-10-11 00:09:44 +585 585 586 58.5 117 585 1971-08-09 2024-10-11 00:09:45.000 1971-08-09 2024-10-11 00:09:45 +586 586 587 58.6 117.2 586 1971-08-10 2024-10-11 00:09:46.000 1971-08-10 2024-10-11 00:09:46 +587 587 588 58.7 117.4 587 1971-08-11 2024-10-11 00:09:47.000 1971-08-11 2024-10-11 00:09:47 +588 588 589 58.8 117.60000000000001 588 1971-08-12 2024-10-11 00:09:48.000 1971-08-12 2024-10-11 00:09:48 +589 589 590 58.9 117.80000000000001 589 1971-08-13 2024-10-11 00:09:49.000 1971-08-13 2024-10-11 00:09:49 +590 590 591 59 118 590 1971-08-14 2024-10-11 00:09:50.000 1971-08-14 2024-10-11 00:09:50 +591 591 592 59.1 118.2 591 1971-08-15 2024-10-11 00:09:51.000 1971-08-15 2024-10-11 00:09:51 +592 592 593 59.2 118.4 592 1971-08-16 2024-10-11 00:09:52.000 1971-08-16 2024-10-11 00:09:52 +593 593 594 59.3 118.60000000000001 593 1971-08-17 2024-10-11 00:09:53.000 1971-08-17 2024-10-11 00:09:53 +594 594 595 59.4 118.80000000000001 594 1971-08-18 2024-10-11 00:09:54.000 1971-08-18 2024-10-11 00:09:54 +595 595 596 59.5 119 595 1971-08-19 2024-10-11 00:09:55.000 1971-08-19 2024-10-11 00:09:55 +596 596 597 59.6 119.2 596 1971-08-20 2024-10-11 00:09:56.000 1971-08-20 2024-10-11 00:09:56 +597 597 598 59.7 119.4 597 1971-08-21 2024-10-11 00:09:57.000 1971-08-21 2024-10-11 00:09:57 +598 598 599 59.8 119.60000000000001 598 1971-08-22 2024-10-11 00:09:58.000 1971-08-22 2024-10-11 00:09:58 +599 599 600 59.9 119.80000000000001 599 1971-08-23 2024-10-11 00:09:59.000 1971-08-23 2024-10-11 00:09:59 +600 600 601 60 120 600 1971-08-24 2024-10-11 00:10:00.000 1971-08-24 2024-10-11 00:10:00 +601 601 602 60.1 120.2 601 1971-08-25 2024-10-11 00:10:01.000 1971-08-25 2024-10-11 00:10:01 +602 602 603 60.2 120.4 602 1971-08-26 2024-10-11 00:10:02.000 1971-08-26 2024-10-11 00:10:02 +603 603 604 60.3 120.60000000000001 603 1971-08-27 2024-10-11 00:10:03.000 1971-08-27 2024-10-11 00:10:03 +604 604 605 60.4 120.80000000000001 604 1971-08-28 2024-10-11 00:10:04.000 1971-08-28 2024-10-11 00:10:04 +605 605 606 60.5 121 605 1971-08-29 2024-10-11 00:10:05.000 1971-08-29 2024-10-11 00:10:05 +606 606 607 60.6 121.2 606 1971-08-30 2024-10-11 00:10:06.000 1971-08-30 2024-10-11 00:10:06 +607 607 608 60.7 121.4 607 1971-08-31 2024-10-11 00:10:07.000 1971-08-31 2024-10-11 00:10:07 +608 608 609 60.8 121.60000000000001 608 1971-09-01 2024-10-11 00:10:08.000 1971-09-01 2024-10-11 00:10:08 +609 609 610 60.9 121.80000000000001 609 1971-09-02 2024-10-11 00:10:09.000 1971-09-02 2024-10-11 00:10:09 +610 610 611 61 122 610 1971-09-03 2024-10-11 00:10:10.000 1971-09-03 2024-10-11 00:10:10 +611 611 612 61.1 122.2 611 1971-09-04 2024-10-11 00:10:11.000 1971-09-04 2024-10-11 00:10:11 +612 612 613 61.2 122.4 612 1971-09-05 2024-10-11 00:10:12.000 1971-09-05 2024-10-11 00:10:12 +613 613 614 61.3 122.60000000000001 613 1971-09-06 2024-10-11 00:10:13.000 1971-09-06 2024-10-11 00:10:13 +614 614 615 61.4 122.80000000000001 614 1971-09-07 2024-10-11 00:10:14.000 1971-09-07 2024-10-11 00:10:14 +615 615 616 61.5 123 615 1971-09-08 2024-10-11 00:10:15.000 1971-09-08 2024-10-11 00:10:15 +616 616 617 61.6 123.2 616 1971-09-09 2024-10-11 00:10:16.000 1971-09-09 2024-10-11 00:10:16 +617 617 618 61.7 123.4 617 1971-09-10 2024-10-11 00:10:17.000 1971-09-10 2024-10-11 00:10:17 +618 618 619 61.8 123.60000000000001 618 1971-09-11 2024-10-11 00:10:18.000 1971-09-11 2024-10-11 00:10:18 +619 619 620 61.9 123.80000000000001 619 1971-09-12 2024-10-11 00:10:19.000 1971-09-12 2024-10-11 00:10:19 +620 620 621 62 124 620 1971-09-13 2024-10-11 00:10:20.000 1971-09-13 2024-10-11 00:10:20 +621 621 622 62.1 124.2 621 1971-09-14 2024-10-11 00:10:21.000 1971-09-14 2024-10-11 00:10:21 +622 622 623 62.2 124.4 622 1971-09-15 2024-10-11 00:10:22.000 1971-09-15 2024-10-11 00:10:22 +623 623 624 62.3 124.60000000000001 623 1971-09-16 2024-10-11 00:10:23.000 1971-09-16 2024-10-11 00:10:23 +624 624 625 62.4 124.80000000000001 624 1971-09-17 2024-10-11 00:10:24.000 1971-09-17 2024-10-11 00:10:24 +625 625 626 62.5 125 625 1971-09-18 2024-10-11 00:10:25.000 1971-09-18 2024-10-11 00:10:25 +626 626 627 62.6 125.2 626 1971-09-19 2024-10-11 00:10:26.000 1971-09-19 2024-10-11 00:10:26 +627 627 628 62.7 125.4 627 1971-09-20 2024-10-11 00:10:27.000 1971-09-20 2024-10-11 00:10:27 +628 628 629 62.8 125.60000000000001 628 1971-09-21 2024-10-11 00:10:28.000 1971-09-21 2024-10-11 00:10:28 +629 629 630 62.9 125.80000000000001 629 1971-09-22 2024-10-11 00:10:29.000 1971-09-22 2024-10-11 00:10:29 +630 630 631 63 126 630 1971-09-23 2024-10-11 00:10:30.000 1971-09-23 2024-10-11 00:10:30 +631 631 632 63.1 126.2 631 1971-09-24 2024-10-11 00:10:31.000 1971-09-24 2024-10-11 00:10:31 +632 632 633 63.2 126.4 632 1971-09-25 2024-10-11 00:10:32.000 1971-09-25 2024-10-11 00:10:32 +633 633 634 63.3 126.60000000000001 633 1971-09-26 2024-10-11 00:10:33.000 1971-09-26 2024-10-11 00:10:33 +634 634 635 63.4 126.80000000000001 634 1971-09-27 2024-10-11 00:10:34.000 1971-09-27 2024-10-11 00:10:34 +635 635 636 63.5 127 635 1971-09-28 2024-10-11 00:10:35.000 1971-09-28 2024-10-11 00:10:35 +636 636 637 63.6 127.2 636 1971-09-29 2024-10-11 00:10:36.000 1971-09-29 2024-10-11 00:10:36 +637 637 638 63.7 127.4 637 1971-09-30 2024-10-11 00:10:37.000 1971-09-30 2024-10-11 00:10:37 +638 638 639 63.8 127.60000000000001 638 1971-10-01 2024-10-11 00:10:38.000 1971-10-01 2024-10-11 00:10:38 +639 639 640 63.9 127.80000000000001 639 1971-10-02 2024-10-11 00:10:39.000 1971-10-02 2024-10-11 00:10:39 +640 640 641 64 128 640 1971-10-03 2024-10-11 00:10:40.000 1971-10-03 2024-10-11 00:10:40 +641 641 642 64.1 128.20000000000002 641 1971-10-04 2024-10-11 00:10:41.000 1971-10-04 2024-10-11 00:10:41 +642 642 643 64.2 128.4 642 1971-10-05 2024-10-11 00:10:42.000 1971-10-05 2024-10-11 00:10:42 +643 643 644 64.3 128.6 643 1971-10-06 2024-10-11 00:10:43.000 1971-10-06 2024-10-11 00:10:43 +644 644 645 64.4 128.8 644 1971-10-07 2024-10-11 00:10:44.000 1971-10-07 2024-10-11 00:10:44 +645 645 646 64.5 129 645 1971-10-08 2024-10-11 00:10:45.000 1971-10-08 2024-10-11 00:10:45 +646 646 647 64.6 129.20000000000002 646 1971-10-09 2024-10-11 00:10:46.000 1971-10-09 2024-10-11 00:10:46 +647 647 648 64.7 129.4 647 1971-10-10 2024-10-11 00:10:47.000 1971-10-10 2024-10-11 00:10:47 +648 648 649 64.8 129.6 648 1971-10-11 2024-10-11 00:10:48.000 1971-10-11 2024-10-11 00:10:48 +649 649 650 64.9 129.8 649 1971-10-12 2024-10-11 00:10:49.000 1971-10-12 2024-10-11 00:10:49 +650 650 651 65 130 650 1971-10-13 2024-10-11 00:10:50.000 1971-10-13 2024-10-11 00:10:50 +651 651 652 65.1 130.20000000000002 651 1971-10-14 2024-10-11 00:10:51.000 1971-10-14 2024-10-11 00:10:51 +652 652 653 65.2 130.4 652 1971-10-15 2024-10-11 00:10:52.000 1971-10-15 2024-10-11 00:10:52 +653 653 654 65.3 130.6 653 1971-10-16 2024-10-11 00:10:53.000 1971-10-16 2024-10-11 00:10:53 +654 654 655 65.4 130.8 654 1971-10-17 2024-10-11 00:10:54.000 1971-10-17 2024-10-11 00:10:54 +655 655 656 65.5 131 655 1971-10-18 2024-10-11 00:10:55.000 1971-10-18 2024-10-11 00:10:55 +656 656 657 65.6 131.20000000000002 656 1971-10-19 2024-10-11 00:10:56.000 1971-10-19 2024-10-11 00:10:56 +657 657 658 65.7 131.4 657 1971-10-20 2024-10-11 00:10:57.000 1971-10-20 2024-10-11 00:10:57 +658 658 659 65.8 131.6 658 1971-10-21 2024-10-11 00:10:58.000 1971-10-21 2024-10-11 00:10:58 +659 659 660 65.9 131.8 659 1971-10-22 2024-10-11 00:10:59.000 1971-10-22 2024-10-11 00:10:59 +660 660 661 66 132 660 1971-10-23 2024-10-11 00:11:00.000 1971-10-23 2024-10-11 00:11:00 +661 661 662 66.1 132.20000000000002 661 1971-10-24 2024-10-11 00:11:01.000 1971-10-24 2024-10-11 00:11:01 +662 662 663 66.2 132.4 662 1971-10-25 2024-10-11 00:11:02.000 1971-10-25 2024-10-11 00:11:02 +663 663 664 66.3 132.6 663 1971-10-26 2024-10-11 00:11:03.000 1971-10-26 2024-10-11 00:11:03 +664 664 665 66.4 132.8 664 1971-10-27 2024-10-11 00:11:04.000 1971-10-27 2024-10-11 00:11:04 +665 665 666 66.5 133 665 1971-10-28 2024-10-11 00:11:05.000 1971-10-28 2024-10-11 00:11:05 +666 666 667 66.6 133.20000000000002 666 1971-10-29 2024-10-11 00:11:06.000 1971-10-29 2024-10-11 00:11:06 +667 667 668 66.7 133.4 667 1971-10-30 2024-10-11 00:11:07.000 1971-10-30 2024-10-11 00:11:07 +668 668 669 66.8 133.6 668 1971-10-31 2024-10-11 00:11:08.000 1971-10-31 2024-10-11 00:11:08 +669 669 670 66.9 133.8 669 1971-11-01 2024-10-11 00:11:09.000 1971-11-01 2024-10-11 00:11:09 +670 670 671 67 134 670 1971-11-02 2024-10-11 00:11:10.000 1971-11-02 2024-10-11 00:11:10 +671 671 672 67.1 134.20000000000002 671 1971-11-03 2024-10-11 00:11:11.000 1971-11-03 2024-10-11 00:11:11 +672 672 673 67.2 134.4 672 1971-11-04 2024-10-11 00:11:12.000 1971-11-04 2024-10-11 00:11:12 +673 673 674 67.3 134.6 673 1971-11-05 2024-10-11 00:11:13.000 1971-11-05 2024-10-11 00:11:13 +674 674 675 67.4 134.8 674 1971-11-06 2024-10-11 00:11:14.000 1971-11-06 2024-10-11 00:11:14 +675 675 676 67.5 135 675 1971-11-07 2024-10-11 00:11:15.000 1971-11-07 2024-10-11 00:11:15 +676 676 677 67.6 135.20000000000002 676 1971-11-08 2024-10-11 00:11:16.000 1971-11-08 2024-10-11 00:11:16 +677 677 678 67.7 135.4 677 1971-11-09 2024-10-11 00:11:17.000 1971-11-09 2024-10-11 00:11:17 +678 678 679 67.8 135.6 678 1971-11-10 2024-10-11 00:11:18.000 1971-11-10 2024-10-11 00:11:18 +679 679 680 67.9 135.8 679 1971-11-11 2024-10-11 00:11:19.000 1971-11-11 2024-10-11 00:11:19 +680 680 681 68 136 680 1971-11-12 2024-10-11 00:11:20.000 1971-11-12 2024-10-11 00:11:20 +681 681 682 68.1 136.20000000000002 681 1971-11-13 2024-10-11 00:11:21.000 1971-11-13 2024-10-11 00:11:21 +682 682 683 68.2 136.4 682 1971-11-14 2024-10-11 00:11:22.000 1971-11-14 2024-10-11 00:11:22 +683 683 684 68.3 136.6 683 1971-11-15 2024-10-11 00:11:23.000 1971-11-15 2024-10-11 00:11:23 +684 684 685 68.4 136.8 684 1971-11-16 2024-10-11 00:11:24.000 1971-11-16 2024-10-11 00:11:24 +685 685 686 68.5 137 685 1971-11-17 2024-10-11 00:11:25.000 1971-11-17 2024-10-11 00:11:25 +686 686 687 68.6 137.20000000000002 686 1971-11-18 2024-10-11 00:11:26.000 1971-11-18 2024-10-11 00:11:26 +687 687 688 68.7 137.4 687 1971-11-19 2024-10-11 00:11:27.000 1971-11-19 2024-10-11 00:11:27 +688 688 689 68.8 137.6 688 1971-11-20 2024-10-11 00:11:28.000 1971-11-20 2024-10-11 00:11:28 +689 689 690 68.9 137.8 689 1971-11-21 2024-10-11 00:11:29.000 1971-11-21 2024-10-11 00:11:29 +690 690 691 69 138 690 1971-11-22 2024-10-11 00:11:30.000 1971-11-22 2024-10-11 00:11:30 +691 691 692 69.1 138.20000000000002 691 1971-11-23 2024-10-11 00:11:31.000 1971-11-23 2024-10-11 00:11:31 +692 692 693 69.2 138.4 692 1971-11-24 2024-10-11 00:11:32.000 1971-11-24 2024-10-11 00:11:32 +693 693 694 69.3 138.6 693 1971-11-25 2024-10-11 00:11:33.000 1971-11-25 2024-10-11 00:11:33 +694 694 695 69.4 138.8 694 1971-11-26 2024-10-11 00:11:34.000 1971-11-26 2024-10-11 00:11:34 +695 695 696 69.5 139 695 1971-11-27 2024-10-11 00:11:35.000 1971-11-27 2024-10-11 00:11:35 +696 696 697 69.6 139.20000000000002 696 1971-11-28 2024-10-11 00:11:36.000 1971-11-28 2024-10-11 00:11:36 +697 697 698 69.7 139.4 697 1971-11-29 2024-10-11 00:11:37.000 1971-11-29 2024-10-11 00:11:37 +698 698 699 69.8 139.6 698 1971-11-30 2024-10-11 00:11:38.000 1971-11-30 2024-10-11 00:11:38 +699 699 700 69.9 139.8 699 1971-12-01 2024-10-11 00:11:39.000 1971-12-01 2024-10-11 00:11:39 +700 700 701 70 140 700 1971-12-02 2024-10-11 00:11:40.000 1971-12-02 2024-10-11 00:11:40 +701 701 702 70.1 140.20000000000002 701 1971-12-03 2024-10-11 00:11:41.000 1971-12-03 2024-10-11 00:11:41 +702 702 703 70.2 140.4 702 1971-12-04 2024-10-11 00:11:42.000 1971-12-04 2024-10-11 00:11:42 +703 703 704 70.3 140.6 703 1971-12-05 2024-10-11 00:11:43.000 1971-12-05 2024-10-11 00:11:43 +704 704 705 70.4 140.8 704 1971-12-06 2024-10-11 00:11:44.000 1971-12-06 2024-10-11 00:11:44 +705 705 706 70.5 141 705 1971-12-07 2024-10-11 00:11:45.000 1971-12-07 2024-10-11 00:11:45 +706 706 707 70.6 141.20000000000002 706 1971-12-08 2024-10-11 00:11:46.000 1971-12-08 2024-10-11 00:11:46 +707 707 708 70.7 141.4 707 1971-12-09 2024-10-11 00:11:47.000 1971-12-09 2024-10-11 00:11:47 +708 708 709 70.8 141.6 708 1971-12-10 2024-10-11 00:11:48.000 1971-12-10 2024-10-11 00:11:48 +709 709 710 70.9 141.8 709 1971-12-11 2024-10-11 00:11:49.000 1971-12-11 2024-10-11 00:11:49 +710 710 711 71 142 710 1971-12-12 2024-10-11 00:11:50.000 1971-12-12 2024-10-11 00:11:50 +711 711 712 71.1 142.20000000000002 711 1971-12-13 2024-10-11 00:11:51.000 1971-12-13 2024-10-11 00:11:51 +712 712 713 71.2 142.4 712 1971-12-14 2024-10-11 00:11:52.000 1971-12-14 2024-10-11 00:11:52 +713 713 714 71.3 142.6 713 1971-12-15 2024-10-11 00:11:53.000 1971-12-15 2024-10-11 00:11:53 +714 714 715 71.4 142.8 714 1971-12-16 2024-10-11 00:11:54.000 1971-12-16 2024-10-11 00:11:54 +715 715 716 71.5 143 715 1971-12-17 2024-10-11 00:11:55.000 1971-12-17 2024-10-11 00:11:55 +716 716 717 71.6 143.20000000000002 716 1971-12-18 2024-10-11 00:11:56.000 1971-12-18 2024-10-11 00:11:56 +717 717 718 71.7 143.4 717 1971-12-19 2024-10-11 00:11:57.000 1971-12-19 2024-10-11 00:11:57 +718 718 719 71.8 143.6 718 1971-12-20 2024-10-11 00:11:58.000 1971-12-20 2024-10-11 00:11:58 +719 719 720 71.9 143.8 719 1971-12-21 2024-10-11 00:11:59.000 1971-12-21 2024-10-11 00:11:59 +720 720 721 72 144 720 1971-12-22 2024-10-11 00:12:00.000 1971-12-22 2024-10-11 00:12:00 +721 721 722 72.1 144.20000000000002 721 1971-12-23 2024-10-11 00:12:01.000 1971-12-23 2024-10-11 00:12:01 +722 722 723 72.2 144.4 722 1971-12-24 2024-10-11 00:12:02.000 1971-12-24 2024-10-11 00:12:02 +723 723 724 72.3 144.6 723 1971-12-25 2024-10-11 00:12:03.000 1971-12-25 2024-10-11 00:12:03 +724 724 725 72.4 144.8 724 1971-12-26 2024-10-11 00:12:04.000 1971-12-26 2024-10-11 00:12:04 +725 725 726 72.5 145 725 1971-12-27 2024-10-11 00:12:05.000 1971-12-27 2024-10-11 00:12:05 +726 726 727 72.6 145.20000000000002 726 1971-12-28 2024-10-11 00:12:06.000 1971-12-28 2024-10-11 00:12:06 +727 727 728 72.7 145.4 727 1971-12-29 2024-10-11 00:12:07.000 1971-12-29 2024-10-11 00:12:07 +728 728 729 72.8 145.6 728 1971-12-30 2024-10-11 00:12:08.000 1971-12-30 2024-10-11 00:12:08 +729 729 730 72.9 145.8 729 1971-12-31 2024-10-11 00:12:09.000 1971-12-31 2024-10-11 00:12:09 +730 730 731 73 146 730 1972-01-01 2024-10-11 00:12:10.000 1972-01-01 2024-10-11 00:12:10 +731 731 732 73.1 146.20000000000002 731 1972-01-02 2024-10-11 00:12:11.000 1972-01-02 2024-10-11 00:12:11 +732 732 733 73.2 146.4 732 1972-01-03 2024-10-11 00:12:12.000 1972-01-03 2024-10-11 00:12:12 +733 733 734 73.3 146.6 733 1972-01-04 2024-10-11 00:12:13.000 1972-01-04 2024-10-11 00:12:13 +734 734 735 73.4 146.8 734 1972-01-05 2024-10-11 00:12:14.000 1972-01-05 2024-10-11 00:12:14 +735 735 736 73.5 147 735 1972-01-06 2024-10-11 00:12:15.000 1972-01-06 2024-10-11 00:12:15 +736 736 737 73.6 147.20000000000002 736 1972-01-07 2024-10-11 00:12:16.000 1972-01-07 2024-10-11 00:12:16 +737 737 738 73.7 147.4 737 1972-01-08 2024-10-11 00:12:17.000 1972-01-08 2024-10-11 00:12:17 +738 738 739 73.8 147.6 738 1972-01-09 2024-10-11 00:12:18.000 1972-01-09 2024-10-11 00:12:18 +739 739 740 73.9 147.8 739 1972-01-10 2024-10-11 00:12:19.000 1972-01-10 2024-10-11 00:12:19 +740 740 741 74 148 740 1972-01-11 2024-10-11 00:12:20.000 1972-01-11 2024-10-11 00:12:20 +741 741 742 74.1 148.20000000000002 741 1972-01-12 2024-10-11 00:12:21.000 1972-01-12 2024-10-11 00:12:21 +742 742 743 74.2 148.4 742 1972-01-13 2024-10-11 00:12:22.000 1972-01-13 2024-10-11 00:12:22 +743 743 744 74.3 148.6 743 1972-01-14 2024-10-11 00:12:23.000 1972-01-14 2024-10-11 00:12:23 +744 744 745 74.4 148.8 744 1972-01-15 2024-10-11 00:12:24.000 1972-01-15 2024-10-11 00:12:24 +745 745 746 74.5 149 745 1972-01-16 2024-10-11 00:12:25.000 1972-01-16 2024-10-11 00:12:25 +746 746 747 74.6 149.20000000000002 746 1972-01-17 2024-10-11 00:12:26.000 1972-01-17 2024-10-11 00:12:26 +747 747 748 74.7 149.4 747 1972-01-18 2024-10-11 00:12:27.000 1972-01-18 2024-10-11 00:12:27 +748 748 749 74.8 149.6 748 1972-01-19 2024-10-11 00:12:28.000 1972-01-19 2024-10-11 00:12:28 +749 749 750 74.9 149.8 749 1972-01-20 2024-10-11 00:12:29.000 1972-01-20 2024-10-11 00:12:29 +750 750 751 75 150 750 1972-01-21 2024-10-11 00:12:30.000 1972-01-21 2024-10-11 00:12:30 +751 751 752 75.1 150.20000000000002 751 1972-01-22 2024-10-11 00:12:31.000 1972-01-22 2024-10-11 00:12:31 +752 752 753 75.2 150.4 752 1972-01-23 2024-10-11 00:12:32.000 1972-01-23 2024-10-11 00:12:32 +753 753 754 75.3 150.6 753 1972-01-24 2024-10-11 00:12:33.000 1972-01-24 2024-10-11 00:12:33 +754 754 755 75.4 150.8 754 1972-01-25 2024-10-11 00:12:34.000 1972-01-25 2024-10-11 00:12:34 +755 755 756 75.5 151 755 1972-01-26 2024-10-11 00:12:35.000 1972-01-26 2024-10-11 00:12:35 +756 756 757 75.6 151.20000000000002 756 1972-01-27 2024-10-11 00:12:36.000 1972-01-27 2024-10-11 00:12:36 +757 757 758 75.7 151.4 757 1972-01-28 2024-10-11 00:12:37.000 1972-01-28 2024-10-11 00:12:37 +758 758 759 75.8 151.6 758 1972-01-29 2024-10-11 00:12:38.000 1972-01-29 2024-10-11 00:12:38 +759 759 760 75.9 151.8 759 1972-01-30 2024-10-11 00:12:39.000 1972-01-30 2024-10-11 00:12:39 +760 760 761 76 152 760 1972-01-31 2024-10-11 00:12:40.000 1972-01-31 2024-10-11 00:12:40 +761 761 762 76.1 152.20000000000002 761 1972-02-01 2024-10-11 00:12:41.000 1972-02-01 2024-10-11 00:12:41 +762 762 763 76.2 152.4 762 1972-02-02 2024-10-11 00:12:42.000 1972-02-02 2024-10-11 00:12:42 +763 763 764 76.3 152.6 763 1972-02-03 2024-10-11 00:12:43.000 1972-02-03 2024-10-11 00:12:43 +764 764 765 76.4 152.8 764 1972-02-04 2024-10-11 00:12:44.000 1972-02-04 2024-10-11 00:12:44 +765 765 766 76.5 153 765 1972-02-05 2024-10-11 00:12:45.000 1972-02-05 2024-10-11 00:12:45 +766 766 767 76.6 153.20000000000002 766 1972-02-06 2024-10-11 00:12:46.000 1972-02-06 2024-10-11 00:12:46 +767 767 768 76.7 153.4 767 1972-02-07 2024-10-11 00:12:47.000 1972-02-07 2024-10-11 00:12:47 +768 768 769 76.8 153.60000000000002 768 1972-02-08 2024-10-11 00:12:48.000 1972-02-08 2024-10-11 00:12:48 +769 769 770 76.9 153.8 769 1972-02-09 2024-10-11 00:12:49.000 1972-02-09 2024-10-11 00:12:49 +770 770 771 77 154 770 1972-02-10 2024-10-11 00:12:50.000 1972-02-10 2024-10-11 00:12:50 +771 771 772 77.1 154.20000000000002 771 1972-02-11 2024-10-11 00:12:51.000 1972-02-11 2024-10-11 00:12:51 +772 772 773 77.2 154.4 772 1972-02-12 2024-10-11 00:12:52.000 1972-02-12 2024-10-11 00:12:52 +773 773 774 77.3 154.60000000000002 773 1972-02-13 2024-10-11 00:12:53.000 1972-02-13 2024-10-11 00:12:53 +774 774 775 77.4 154.8 774 1972-02-14 2024-10-11 00:12:54.000 1972-02-14 2024-10-11 00:12:54 +775 775 776 77.5 155 775 1972-02-15 2024-10-11 00:12:55.000 1972-02-15 2024-10-11 00:12:55 +776 776 777 77.6 155.20000000000002 776 1972-02-16 2024-10-11 00:12:56.000 1972-02-16 2024-10-11 00:12:56 +777 777 778 77.7 155.4 777 1972-02-17 2024-10-11 00:12:57.000 1972-02-17 2024-10-11 00:12:57 +778 778 779 77.8 155.60000000000002 778 1972-02-18 2024-10-11 00:12:58.000 1972-02-18 2024-10-11 00:12:58 +779 779 780 77.9 155.8 779 1972-02-19 2024-10-11 00:12:59.000 1972-02-19 2024-10-11 00:12:59 +780 780 781 78 156 780 1972-02-20 2024-10-11 00:13:00.000 1972-02-20 2024-10-11 00:13:00 +781 781 782 78.1 156.20000000000002 781 1972-02-21 2024-10-11 00:13:01.000 1972-02-21 2024-10-11 00:13:01 +782 782 783 78.2 156.4 782 1972-02-22 2024-10-11 00:13:02.000 1972-02-22 2024-10-11 00:13:02 +783 783 784 78.3 156.60000000000002 783 1972-02-23 2024-10-11 00:13:03.000 1972-02-23 2024-10-11 00:13:03 +784 784 785 78.4 156.8 784 1972-02-24 2024-10-11 00:13:04.000 1972-02-24 2024-10-11 00:13:04 +785 785 786 78.5 157 785 1972-02-25 2024-10-11 00:13:05.000 1972-02-25 2024-10-11 00:13:05 +786 786 787 78.6 157.20000000000002 786 1972-02-26 2024-10-11 00:13:06.000 1972-02-26 2024-10-11 00:13:06 +787 787 788 78.7 157.4 787 1972-02-27 2024-10-11 00:13:07.000 1972-02-27 2024-10-11 00:13:07 +788 788 789 78.8 157.60000000000002 788 1972-02-28 2024-10-11 00:13:08.000 1972-02-28 2024-10-11 00:13:08 +789 789 790 78.9 157.8 789 1972-02-29 2024-10-11 00:13:09.000 1972-02-29 2024-10-11 00:13:09 +790 790 791 79 158 790 1972-03-01 2024-10-11 00:13:10.000 1972-03-01 2024-10-11 00:13:10 +791 791 792 79.1 158.20000000000002 791 1972-03-02 2024-10-11 00:13:11.000 1972-03-02 2024-10-11 00:13:11 +792 792 793 79.2 158.4 792 1972-03-03 2024-10-11 00:13:12.000 1972-03-03 2024-10-11 00:13:12 +793 793 794 79.3 158.60000000000002 793 1972-03-04 2024-10-11 00:13:13.000 1972-03-04 2024-10-11 00:13:13 +794 794 795 79.4 158.8 794 1972-03-05 2024-10-11 00:13:14.000 1972-03-05 2024-10-11 00:13:14 +795 795 796 79.5 159 795 1972-03-06 2024-10-11 00:13:15.000 1972-03-06 2024-10-11 00:13:15 +796 796 797 79.6 159.20000000000002 796 1972-03-07 2024-10-11 00:13:16.000 1972-03-07 2024-10-11 00:13:16 +797 797 798 79.7 159.4 797 1972-03-08 2024-10-11 00:13:17.000 1972-03-08 2024-10-11 00:13:17 +798 798 799 79.8 159.60000000000002 798 1972-03-09 2024-10-11 00:13:18.000 1972-03-09 2024-10-11 00:13:18 +799 799 800 79.9 159.8 799 1972-03-10 2024-10-11 00:13:19.000 1972-03-10 2024-10-11 00:13:19 +800 800 801 80 160 800 1972-03-11 2024-10-11 00:13:20.000 1972-03-11 2024-10-11 00:13:20 +801 801 802 80.1 160.20000000000002 801 1972-03-12 2024-10-11 00:13:21.000 1972-03-12 2024-10-11 00:13:21 +802 802 803 80.2 160.4 802 1972-03-13 2024-10-11 00:13:22.000 1972-03-13 2024-10-11 00:13:22 +803 803 804 80.3 160.60000000000002 803 1972-03-14 2024-10-11 00:13:23.000 1972-03-14 2024-10-11 00:13:23 +804 804 805 80.4 160.8 804 1972-03-15 2024-10-11 00:13:24.000 1972-03-15 2024-10-11 00:13:24 +805 805 806 80.5 161 805 1972-03-16 2024-10-11 00:13:25.000 1972-03-16 2024-10-11 00:13:25 +806 806 807 80.6 161.20000000000002 806 1972-03-17 2024-10-11 00:13:26.000 1972-03-17 2024-10-11 00:13:26 +807 807 808 80.7 161.4 807 1972-03-18 2024-10-11 00:13:27.000 1972-03-18 2024-10-11 00:13:27 +808 808 809 80.8 161.60000000000002 808 1972-03-19 2024-10-11 00:13:28.000 1972-03-19 2024-10-11 00:13:28 +809 809 810 80.9 161.8 809 1972-03-20 2024-10-11 00:13:29.000 1972-03-20 2024-10-11 00:13:29 +810 810 811 81 162 810 1972-03-21 2024-10-11 00:13:30.000 1972-03-21 2024-10-11 00:13:30 +811 811 812 81.1 162.20000000000002 811 1972-03-22 2024-10-11 00:13:31.000 1972-03-22 2024-10-11 00:13:31 +812 812 813 81.2 162.4 812 1972-03-23 2024-10-11 00:13:32.000 1972-03-23 2024-10-11 00:13:32 +813 813 814 81.3 162.60000000000002 813 1972-03-24 2024-10-11 00:13:33.000 1972-03-24 2024-10-11 00:13:33 +814 814 815 81.4 162.8 814 1972-03-25 2024-10-11 00:13:34.000 1972-03-25 2024-10-11 00:13:34 +815 815 816 81.5 163 815 1972-03-26 2024-10-11 00:13:35.000 1972-03-26 2024-10-11 00:13:35 +816 816 817 81.6 163.20000000000002 816 1972-03-27 2024-10-11 00:13:36.000 1972-03-27 2024-10-11 00:13:36 +817 817 818 81.7 163.4 817 1972-03-28 2024-10-11 00:13:37.000 1972-03-28 2024-10-11 00:13:37 +818 818 819 81.8 163.60000000000002 818 1972-03-29 2024-10-11 00:13:38.000 1972-03-29 2024-10-11 00:13:38 +819 819 820 81.9 163.8 819 1972-03-30 2024-10-11 00:13:39.000 1972-03-30 2024-10-11 00:13:39 +820 820 821 82 164 820 1972-03-31 2024-10-11 00:13:40.000 1972-03-31 2024-10-11 00:13:40 +821 821 822 82.1 164.20000000000002 821 1972-04-01 2024-10-11 00:13:41.000 1972-04-01 2024-10-11 00:13:41 +822 822 823 82.2 164.4 822 1972-04-02 2024-10-11 00:13:42.000 1972-04-02 2024-10-11 00:13:42 +823 823 824 82.3 164.60000000000002 823 1972-04-03 2024-10-11 00:13:43.000 1972-04-03 2024-10-11 00:13:43 +824 824 825 82.4 164.8 824 1972-04-04 2024-10-11 00:13:44.000 1972-04-04 2024-10-11 00:13:44 +825 825 826 82.5 165 825 1972-04-05 2024-10-11 00:13:45.000 1972-04-05 2024-10-11 00:13:45 +826 826 827 82.6 165.20000000000002 826 1972-04-06 2024-10-11 00:13:46.000 1972-04-06 2024-10-11 00:13:46 +827 827 828 82.7 165.4 827 1972-04-07 2024-10-11 00:13:47.000 1972-04-07 2024-10-11 00:13:47 +828 828 829 82.8 165.60000000000002 828 1972-04-08 2024-10-11 00:13:48.000 1972-04-08 2024-10-11 00:13:48 +829 829 830 82.9 165.8 829 1972-04-09 2024-10-11 00:13:49.000 1972-04-09 2024-10-11 00:13:49 +830 830 831 83 166 830 1972-04-10 2024-10-11 00:13:50.000 1972-04-10 2024-10-11 00:13:50 +831 831 832 83.1 166.20000000000002 831 1972-04-11 2024-10-11 00:13:51.000 1972-04-11 2024-10-11 00:13:51 +832 832 833 83.2 166.4 832 1972-04-12 2024-10-11 00:13:52.000 1972-04-12 2024-10-11 00:13:52 +833 833 834 83.3 166.60000000000002 833 1972-04-13 2024-10-11 00:13:53.000 1972-04-13 2024-10-11 00:13:53 +834 834 835 83.4 166.8 834 1972-04-14 2024-10-11 00:13:54.000 1972-04-14 2024-10-11 00:13:54 +835 835 836 83.5 167 835 1972-04-15 2024-10-11 00:13:55.000 1972-04-15 2024-10-11 00:13:55 +836 836 837 83.6 167.20000000000002 836 1972-04-16 2024-10-11 00:13:56.000 1972-04-16 2024-10-11 00:13:56 +837 837 838 83.7 167.4 837 1972-04-17 2024-10-11 00:13:57.000 1972-04-17 2024-10-11 00:13:57 +838 838 839 83.8 167.60000000000002 838 1972-04-18 2024-10-11 00:13:58.000 1972-04-18 2024-10-11 00:13:58 +839 839 840 83.9 167.8 839 1972-04-19 2024-10-11 00:13:59.000 1972-04-19 2024-10-11 00:13:59 +840 840 841 84 168 840 1972-04-20 2024-10-11 00:14:00.000 1972-04-20 2024-10-11 00:14:00 +841 841 842 84.1 168.20000000000002 841 1972-04-21 2024-10-11 00:14:01.000 1972-04-21 2024-10-11 00:14:01 +842 842 843 84.2 168.4 842 1972-04-22 2024-10-11 00:14:02.000 1972-04-22 2024-10-11 00:14:02 +843 843 844 84.3 168.60000000000002 843 1972-04-23 2024-10-11 00:14:03.000 1972-04-23 2024-10-11 00:14:03 +844 844 845 84.4 168.8 844 1972-04-24 2024-10-11 00:14:04.000 1972-04-24 2024-10-11 00:14:04 +845 845 846 84.5 169 845 1972-04-25 2024-10-11 00:14:05.000 1972-04-25 2024-10-11 00:14:05 +846 846 847 84.6 169.20000000000002 846 1972-04-26 2024-10-11 00:14:06.000 1972-04-26 2024-10-11 00:14:06 +847 847 848 84.7 169.4 847 1972-04-27 2024-10-11 00:14:07.000 1972-04-27 2024-10-11 00:14:07 +848 848 849 84.8 169.60000000000002 848 1972-04-28 2024-10-11 00:14:08.000 1972-04-28 2024-10-11 00:14:08 +849 849 850 84.9 169.8 849 1972-04-29 2024-10-11 00:14:09.000 1972-04-29 2024-10-11 00:14:09 +850 850 851 85 170 850 1972-04-30 2024-10-11 00:14:10.000 1972-04-30 2024-10-11 00:14:10 +851 851 852 85.1 170.20000000000002 851 1972-05-01 2024-10-11 00:14:11.000 1972-05-01 2024-10-11 00:14:11 +852 852 853 85.2 170.4 852 1972-05-02 2024-10-11 00:14:12.000 1972-05-02 2024-10-11 00:14:12 +853 853 854 85.3 170.60000000000002 853 1972-05-03 2024-10-11 00:14:13.000 1972-05-03 2024-10-11 00:14:13 +854 854 855 85.4 170.8 854 1972-05-04 2024-10-11 00:14:14.000 1972-05-04 2024-10-11 00:14:14 +855 855 856 85.5 171 855 1972-05-05 2024-10-11 00:14:15.000 1972-05-05 2024-10-11 00:14:15 +856 856 857 85.6 171.20000000000002 856 1972-05-06 2024-10-11 00:14:16.000 1972-05-06 2024-10-11 00:14:16 +857 857 858 85.7 171.4 857 1972-05-07 2024-10-11 00:14:17.000 1972-05-07 2024-10-11 00:14:17 +858 858 859 85.8 171.60000000000002 858 1972-05-08 2024-10-11 00:14:18.000 1972-05-08 2024-10-11 00:14:18 +859 859 860 85.9 171.8 859 1972-05-09 2024-10-11 00:14:19.000 1972-05-09 2024-10-11 00:14:19 +860 860 861 86 172 860 1972-05-10 2024-10-11 00:14:20.000 1972-05-10 2024-10-11 00:14:20 +861 861 862 86.1 172.20000000000002 861 1972-05-11 2024-10-11 00:14:21.000 1972-05-11 2024-10-11 00:14:21 +862 862 863 86.2 172.4 862 1972-05-12 2024-10-11 00:14:22.000 1972-05-12 2024-10-11 00:14:22 +863 863 864 86.3 172.60000000000002 863 1972-05-13 2024-10-11 00:14:23.000 1972-05-13 2024-10-11 00:14:23 +864 864 865 86.4 172.8 864 1972-05-14 2024-10-11 00:14:24.000 1972-05-14 2024-10-11 00:14:24 +865 865 866 86.5 173 865 1972-05-15 2024-10-11 00:14:25.000 1972-05-15 2024-10-11 00:14:25 +866 866 867 86.6 173.20000000000002 866 1972-05-16 2024-10-11 00:14:26.000 1972-05-16 2024-10-11 00:14:26 +867 867 868 86.7 173.4 867 1972-05-17 2024-10-11 00:14:27.000 1972-05-17 2024-10-11 00:14:27 +868 868 869 86.8 173.60000000000002 868 1972-05-18 2024-10-11 00:14:28.000 1972-05-18 2024-10-11 00:14:28 +869 869 870 86.9 173.8 869 1972-05-19 2024-10-11 00:14:29.000 1972-05-19 2024-10-11 00:14:29 +870 870 871 87 174 870 1972-05-20 2024-10-11 00:14:30.000 1972-05-20 2024-10-11 00:14:30 +871 871 872 87.1 174.20000000000002 871 1972-05-21 2024-10-11 00:14:31.000 1972-05-21 2024-10-11 00:14:31 +872 872 873 87.2 174.4 872 1972-05-22 2024-10-11 00:14:32.000 1972-05-22 2024-10-11 00:14:32 +873 873 874 87.3 174.60000000000002 873 1972-05-23 2024-10-11 00:14:33.000 1972-05-23 2024-10-11 00:14:33 +874 874 875 87.4 174.8 874 1972-05-24 2024-10-11 00:14:34.000 1972-05-24 2024-10-11 00:14:34 +875 875 876 87.5 175 875 1972-05-25 2024-10-11 00:14:35.000 1972-05-25 2024-10-11 00:14:35 +876 876 877 87.6 175.20000000000002 876 1972-05-26 2024-10-11 00:14:36.000 1972-05-26 2024-10-11 00:14:36 +877 877 878 87.7 175.4 877 1972-05-27 2024-10-11 00:14:37.000 1972-05-27 2024-10-11 00:14:37 +878 878 879 87.8 175.60000000000002 878 1972-05-28 2024-10-11 00:14:38.000 1972-05-28 2024-10-11 00:14:38 +879 879 880 87.9 175.8 879 1972-05-29 2024-10-11 00:14:39.000 1972-05-29 2024-10-11 00:14:39 +880 880 881 88 176 880 1972-05-30 2024-10-11 00:14:40.000 1972-05-30 2024-10-11 00:14:40 +881 881 882 88.1 176.20000000000002 881 1972-05-31 2024-10-11 00:14:41.000 1972-05-31 2024-10-11 00:14:41 +882 882 883 88.2 176.4 882 1972-06-01 2024-10-11 00:14:42.000 1972-06-01 2024-10-11 00:14:42 +883 883 884 88.3 176.60000000000002 883 1972-06-02 2024-10-11 00:14:43.000 1972-06-02 2024-10-11 00:14:43 +884 884 885 88.4 176.8 884 1972-06-03 2024-10-11 00:14:44.000 1972-06-03 2024-10-11 00:14:44 +885 885 886 88.5 177 885 1972-06-04 2024-10-11 00:14:45.000 1972-06-04 2024-10-11 00:14:45 +886 886 887 88.6 177.20000000000002 886 1972-06-05 2024-10-11 00:14:46.000 1972-06-05 2024-10-11 00:14:46 +887 887 888 88.7 177.4 887 1972-06-06 2024-10-11 00:14:47.000 1972-06-06 2024-10-11 00:14:47 +888 888 889 88.8 177.60000000000002 888 1972-06-07 2024-10-11 00:14:48.000 1972-06-07 2024-10-11 00:14:48 +889 889 890 88.9 177.8 889 1972-06-08 2024-10-11 00:14:49.000 1972-06-08 2024-10-11 00:14:49 +890 890 891 89 178 890 1972-06-09 2024-10-11 00:14:50.000 1972-06-09 2024-10-11 00:14:50 +891 891 892 89.1 178.20000000000002 891 1972-06-10 2024-10-11 00:14:51.000 1972-06-10 2024-10-11 00:14:51 +892 892 893 89.2 178.4 892 1972-06-11 2024-10-11 00:14:52.000 1972-06-11 2024-10-11 00:14:52 +893 893 894 89.3 178.60000000000002 893 1972-06-12 2024-10-11 00:14:53.000 1972-06-12 2024-10-11 00:14:53 +894 894 895 89.4 178.8 894 1972-06-13 2024-10-11 00:14:54.000 1972-06-13 2024-10-11 00:14:54 +895 895 896 89.5 179 895 1972-06-14 2024-10-11 00:14:55.000 1972-06-14 2024-10-11 00:14:55 +896 896 897 89.6 179.20000000000002 896 1972-06-15 2024-10-11 00:14:56.000 1972-06-15 2024-10-11 00:14:56 +897 897 898 89.7 179.4 897 1972-06-16 2024-10-11 00:14:57.000 1972-06-16 2024-10-11 00:14:57 +898 898 899 89.8 179.60000000000002 898 1972-06-17 2024-10-11 00:14:58.000 1972-06-17 2024-10-11 00:14:58 +899 899 900 89.9 179.8 899 1972-06-18 2024-10-11 00:14:59.000 1972-06-18 2024-10-11 00:14:59 +900 900 901 90 180 900 1972-06-19 2024-10-11 00:15:00.000 1972-06-19 2024-10-11 00:15:00 +901 901 902 90.1 180.20000000000002 901 1972-06-20 2024-10-11 00:15:01.000 1972-06-20 2024-10-11 00:15:01 +902 902 903 90.2 180.4 902 1972-06-21 2024-10-11 00:15:02.000 1972-06-21 2024-10-11 00:15:02 +903 903 904 90.3 180.60000000000002 903 1972-06-22 2024-10-11 00:15:03.000 1972-06-22 2024-10-11 00:15:03 +904 904 905 90.4 180.8 904 1972-06-23 2024-10-11 00:15:04.000 1972-06-23 2024-10-11 00:15:04 +905 905 906 90.5 181 905 1972-06-24 2024-10-11 00:15:05.000 1972-06-24 2024-10-11 00:15:05 +906 906 907 90.6 181.20000000000002 906 1972-06-25 2024-10-11 00:15:06.000 1972-06-25 2024-10-11 00:15:06 +907 907 908 90.7 181.4 907 1972-06-26 2024-10-11 00:15:07.000 1972-06-26 2024-10-11 00:15:07 +908 908 909 90.8 181.60000000000002 908 1972-06-27 2024-10-11 00:15:08.000 1972-06-27 2024-10-11 00:15:08 +909 909 910 90.9 181.8 909 1972-06-28 2024-10-11 00:15:09.000 1972-06-28 2024-10-11 00:15:09 +910 910 911 91 182 910 1972-06-29 2024-10-11 00:15:10.000 1972-06-29 2024-10-11 00:15:10 +911 911 912 91.1 182.20000000000002 911 1972-06-30 2024-10-11 00:15:11.000 1972-06-30 2024-10-11 00:15:11 +912 912 913 91.2 182.4 912 1972-07-01 2024-10-11 00:15:12.000 1972-07-01 2024-10-11 00:15:12 +913 913 914 91.3 182.60000000000002 913 1972-07-02 2024-10-11 00:15:13.000 1972-07-02 2024-10-11 00:15:13 +914 914 915 91.4 182.8 914 1972-07-03 2024-10-11 00:15:14.000 1972-07-03 2024-10-11 00:15:14 +915 915 916 91.5 183 915 1972-07-04 2024-10-11 00:15:15.000 1972-07-04 2024-10-11 00:15:15 +916 916 917 91.6 183.20000000000002 916 1972-07-05 2024-10-11 00:15:16.000 1972-07-05 2024-10-11 00:15:16 +917 917 918 91.7 183.4 917 1972-07-06 2024-10-11 00:15:17.000 1972-07-06 2024-10-11 00:15:17 +918 918 919 91.8 183.60000000000002 918 1972-07-07 2024-10-11 00:15:18.000 1972-07-07 2024-10-11 00:15:18 +919 919 920 91.9 183.8 919 1972-07-08 2024-10-11 00:15:19.000 1972-07-08 2024-10-11 00:15:19 +920 920 921 92 184 920 1972-07-09 2024-10-11 00:15:20.000 1972-07-09 2024-10-11 00:15:20 +921 921 922 92.1 184.20000000000002 921 1972-07-10 2024-10-11 00:15:21.000 1972-07-10 2024-10-11 00:15:21 +922 922 923 92.2 184.4 922 1972-07-11 2024-10-11 00:15:22.000 1972-07-11 2024-10-11 00:15:22 +923 923 924 92.3 184.60000000000002 923 1972-07-12 2024-10-11 00:15:23.000 1972-07-12 2024-10-11 00:15:23 +924 924 925 92.4 184.8 924 1972-07-13 2024-10-11 00:15:24.000 1972-07-13 2024-10-11 00:15:24 +925 925 926 92.5 185 925 1972-07-14 2024-10-11 00:15:25.000 1972-07-14 2024-10-11 00:15:25 +926 926 927 92.6 185.20000000000002 926 1972-07-15 2024-10-11 00:15:26.000 1972-07-15 2024-10-11 00:15:26 +927 927 928 92.7 185.4 927 1972-07-16 2024-10-11 00:15:27.000 1972-07-16 2024-10-11 00:15:27 +928 928 929 92.8 185.60000000000002 928 1972-07-17 2024-10-11 00:15:28.000 1972-07-17 2024-10-11 00:15:28 +929 929 930 92.9 185.8 929 1972-07-18 2024-10-11 00:15:29.000 1972-07-18 2024-10-11 00:15:29 +930 930 931 93 186 930 1972-07-19 2024-10-11 00:15:30.000 1972-07-19 2024-10-11 00:15:30 +931 931 932 93.1 186.20000000000002 931 1972-07-20 2024-10-11 00:15:31.000 1972-07-20 2024-10-11 00:15:31 +932 932 933 93.2 186.4 932 1972-07-21 2024-10-11 00:15:32.000 1972-07-21 2024-10-11 00:15:32 +933 933 934 93.3 186.60000000000002 933 1972-07-22 2024-10-11 00:15:33.000 1972-07-22 2024-10-11 00:15:33 +934 934 935 93.4 186.8 934 1972-07-23 2024-10-11 00:15:34.000 1972-07-23 2024-10-11 00:15:34 +935 935 936 93.5 187 935 1972-07-24 2024-10-11 00:15:35.000 1972-07-24 2024-10-11 00:15:35 +936 936 937 93.6 187.20000000000002 936 1972-07-25 2024-10-11 00:15:36.000 1972-07-25 2024-10-11 00:15:36 +937 937 938 93.7 187.4 937 1972-07-26 2024-10-11 00:15:37.000 1972-07-26 2024-10-11 00:15:37 +938 938 939 93.8 187.60000000000002 938 1972-07-27 2024-10-11 00:15:38.000 1972-07-27 2024-10-11 00:15:38 +939 939 940 93.9 187.8 939 1972-07-28 2024-10-11 00:15:39.000 1972-07-28 2024-10-11 00:15:39 +940 940 941 94 188 940 1972-07-29 2024-10-11 00:15:40.000 1972-07-29 2024-10-11 00:15:40 +941 941 942 94.1 188.20000000000002 941 1972-07-30 2024-10-11 00:15:41.000 1972-07-30 2024-10-11 00:15:41 +942 942 943 94.2 188.4 942 1972-07-31 2024-10-11 00:15:42.000 1972-07-31 2024-10-11 00:15:42 +943 943 944 94.3 188.60000000000002 943 1972-08-01 2024-10-11 00:15:43.000 1972-08-01 2024-10-11 00:15:43 +944 944 945 94.4 188.8 944 1972-08-02 2024-10-11 00:15:44.000 1972-08-02 2024-10-11 00:15:44 +945 945 946 94.5 189 945 1972-08-03 2024-10-11 00:15:45.000 1972-08-03 2024-10-11 00:15:45 +946 946 947 94.6 189.20000000000002 946 1972-08-04 2024-10-11 00:15:46.000 1972-08-04 2024-10-11 00:15:46 +947 947 948 94.7 189.4 947 1972-08-05 2024-10-11 00:15:47.000 1972-08-05 2024-10-11 00:15:47 +948 948 949 94.8 189.60000000000002 948 1972-08-06 2024-10-11 00:15:48.000 1972-08-06 2024-10-11 00:15:48 +949 949 950 94.9 189.8 949 1972-08-07 2024-10-11 00:15:49.000 1972-08-07 2024-10-11 00:15:49 +950 950 951 95 190 950 1972-08-08 2024-10-11 00:15:50.000 1972-08-08 2024-10-11 00:15:50 +951 951 952 95.1 190.20000000000002 951 1972-08-09 2024-10-11 00:15:51.000 1972-08-09 2024-10-11 00:15:51 +952 952 953 95.2 190.4 952 1972-08-10 2024-10-11 00:15:52.000 1972-08-10 2024-10-11 00:15:52 +953 953 954 95.3 190.60000000000002 953 1972-08-11 2024-10-11 00:15:53.000 1972-08-11 2024-10-11 00:15:53 +954 954 955 95.4 190.8 954 1972-08-12 2024-10-11 00:15:54.000 1972-08-12 2024-10-11 00:15:54 +955 955 956 95.5 191 955 1972-08-13 2024-10-11 00:15:55.000 1972-08-13 2024-10-11 00:15:55 +956 956 957 95.6 191.20000000000002 956 1972-08-14 2024-10-11 00:15:56.000 1972-08-14 2024-10-11 00:15:56 +957 957 958 95.7 191.4 957 1972-08-15 2024-10-11 00:15:57.000 1972-08-15 2024-10-11 00:15:57 +958 958 959 95.8 191.60000000000002 958 1972-08-16 2024-10-11 00:15:58.000 1972-08-16 2024-10-11 00:15:58 +959 959 960 95.9 191.8 959 1972-08-17 2024-10-11 00:15:59.000 1972-08-17 2024-10-11 00:15:59 +960 960 961 96 192 960 1972-08-18 2024-10-11 00:16:00.000 1972-08-18 2024-10-11 00:16:00 +961 961 962 96.1 192.20000000000002 961 1972-08-19 2024-10-11 00:16:01.000 1972-08-19 2024-10-11 00:16:01 +962 962 963 96.2 192.4 962 1972-08-20 2024-10-11 00:16:02.000 1972-08-20 2024-10-11 00:16:02 +963 963 964 96.3 192.60000000000002 963 1972-08-21 2024-10-11 00:16:03.000 1972-08-21 2024-10-11 00:16:03 +964 964 965 96.4 192.8 964 1972-08-22 2024-10-11 00:16:04.000 1972-08-22 2024-10-11 00:16:04 +965 965 966 96.5 193 965 1972-08-23 2024-10-11 00:16:05.000 1972-08-23 2024-10-11 00:16:05 +966 966 967 96.6 193.20000000000002 966 1972-08-24 2024-10-11 00:16:06.000 1972-08-24 2024-10-11 00:16:06 +967 967 968 96.7 193.4 967 1972-08-25 2024-10-11 00:16:07.000 1972-08-25 2024-10-11 00:16:07 +968 968 969 96.8 193.60000000000002 968 1972-08-26 2024-10-11 00:16:08.000 1972-08-26 2024-10-11 00:16:08 +969 969 970 96.9 193.8 969 1972-08-27 2024-10-11 00:16:09.000 1972-08-27 2024-10-11 00:16:09 +970 970 971 97 194 970 1972-08-28 2024-10-11 00:16:10.000 1972-08-28 2024-10-11 00:16:10 +971 971 972 97.1 194.20000000000002 971 1972-08-29 2024-10-11 00:16:11.000 1972-08-29 2024-10-11 00:16:11 +972 972 973 97.2 194.4 972 1972-08-30 2024-10-11 00:16:12.000 1972-08-30 2024-10-11 00:16:12 +973 973 974 97.3 194.60000000000002 973 1972-08-31 2024-10-11 00:16:13.000 1972-08-31 2024-10-11 00:16:13 +974 974 975 97.4 194.8 974 1972-09-01 2024-10-11 00:16:14.000 1972-09-01 2024-10-11 00:16:14 +975 975 976 97.5 195 975 1972-09-02 2024-10-11 00:16:15.000 1972-09-02 2024-10-11 00:16:15 +976 976 977 97.6 195.20000000000002 976 1972-09-03 2024-10-11 00:16:16.000 1972-09-03 2024-10-11 00:16:16 +977 977 978 97.7 195.4 977 1972-09-04 2024-10-11 00:16:17.000 1972-09-04 2024-10-11 00:16:17 +978 978 979 97.8 195.60000000000002 978 1972-09-05 2024-10-11 00:16:18.000 1972-09-05 2024-10-11 00:16:18 +979 979 980 97.9 195.8 979 1972-09-06 2024-10-11 00:16:19.000 1972-09-06 2024-10-11 00:16:19 +980 980 981 98 196 980 1972-09-07 2024-10-11 00:16:20.000 1972-09-07 2024-10-11 00:16:20 +981 981 982 98.1 196.20000000000002 981 1972-09-08 2024-10-11 00:16:21.000 1972-09-08 2024-10-11 00:16:21 +982 982 983 98.2 196.4 982 1972-09-09 2024-10-11 00:16:22.000 1972-09-09 2024-10-11 00:16:22 +983 983 984 98.3 196.60000000000002 983 1972-09-10 2024-10-11 00:16:23.000 1972-09-10 2024-10-11 00:16:23 +984 984 985 98.4 196.8 984 1972-09-11 2024-10-11 00:16:24.000 1972-09-11 2024-10-11 00:16:24 +985 985 986 98.5 197 985 1972-09-12 2024-10-11 00:16:25.000 1972-09-12 2024-10-11 00:16:25 +986 986 987 98.6 197.20000000000002 986 1972-09-13 2024-10-11 00:16:26.000 1972-09-13 2024-10-11 00:16:26 +987 987 988 98.7 197.4 987 1972-09-14 2024-10-11 00:16:27.000 1972-09-14 2024-10-11 00:16:27 +988 988 989 98.8 197.60000000000002 988 1972-09-15 2024-10-11 00:16:28.000 1972-09-15 2024-10-11 00:16:28 +989 989 990 98.9 197.8 989 1972-09-16 2024-10-11 00:16:29.000 1972-09-16 2024-10-11 00:16:29 +990 990 991 99 198 990 1972-09-17 2024-10-11 00:16:30.000 1972-09-17 2024-10-11 00:16:30 +991 991 992 99.1 198.20000000000002 991 1972-09-18 2024-10-11 00:16:31.000 1972-09-18 2024-10-11 00:16:31 +992 992 993 99.2 198.4 992 1972-09-19 2024-10-11 00:16:32.000 1972-09-19 2024-10-11 00:16:32 +993 993 994 99.3 198.60000000000002 993 1972-09-20 2024-10-11 00:16:33.000 1972-09-20 2024-10-11 00:16:33 +994 994 995 99.4 198.8 994 1972-09-21 2024-10-11 00:16:34.000 1972-09-21 2024-10-11 00:16:34 +995 995 996 99.5 199 995 1972-09-22 2024-10-11 00:16:35.000 1972-09-22 2024-10-11 00:16:35 +996 996 997 99.6 199.20000000000002 996 1972-09-23 2024-10-11 00:16:36.000 1972-09-23 2024-10-11 00:16:36 +997 997 998 99.7 199.4 997 1972-09-24 2024-10-11 00:16:37.000 1972-09-24 2024-10-11 00:16:37 +998 998 999 99.8 199.60000000000002 998 1972-09-25 2024-10-11 00:16:38.000 1972-09-25 2024-10-11 00:16:38 +999 999 1000 99.9 199.8 999 1972-09-26 2024-10-11 00:16:39.000 1972-09-26 2024-10-11 00:16:39 +1000 1000 1001 100 200 1000 1972-09-27 2024-10-11 00:16:40.000 1972-09-27 2024-10-11 00:16:40 +1001 1001 1002 100.1 200.20000000000002 1001 1972-09-28 2024-10-11 00:16:41.000 1972-09-28 2024-10-11 00:16:41 +1002 1002 1003 100.2 200.4 1002 1972-09-29 2024-10-11 00:16:42.000 1972-09-29 2024-10-11 00:16:42 +1003 1003 1004 100.3 200.60000000000002 1003 1972-09-30 2024-10-11 00:16:43.000 1972-09-30 2024-10-11 00:16:43 +1004 1004 1005 100.4 200.8 1004 1972-10-01 2024-10-11 00:16:44.000 1972-10-01 2024-10-11 00:16:44 +1005 1005 1006 100.5 201 1005 1972-10-02 2024-10-11 00:16:45.000 1972-10-02 2024-10-11 00:16:45 +1006 1006 1007 100.6 201.20000000000002 1006 1972-10-03 2024-10-11 00:16:46.000 1972-10-03 2024-10-11 00:16:46 +1007 1007 1008 100.7 201.4 1007 1972-10-04 2024-10-11 00:16:47.000 1972-10-04 2024-10-11 00:16:47 +1008 1008 1009 100.8 201.60000000000002 1008 1972-10-05 2024-10-11 00:16:48.000 1972-10-05 2024-10-11 00:16:48 +1009 1009 1010 100.9 201.8 1009 1972-10-06 2024-10-11 00:16:49.000 1972-10-06 2024-10-11 00:16:49 +1010 1010 1011 101 202 1010 1972-10-07 2024-10-11 00:16:50.000 1972-10-07 2024-10-11 00:16:50 +1011 1011 1012 101.1 202.20000000000002 1011 1972-10-08 2024-10-11 00:16:51.000 1972-10-08 2024-10-11 00:16:51 +1012 1012 1013 101.2 202.4 1012 1972-10-09 2024-10-11 00:16:52.000 1972-10-09 2024-10-11 00:16:52 +1013 1013 1014 101.3 202.60000000000002 1013 1972-10-10 2024-10-11 00:16:53.000 1972-10-10 2024-10-11 00:16:53 +1014 1014 1015 101.4 202.8 1014 1972-10-11 2024-10-11 00:16:54.000 1972-10-11 2024-10-11 00:16:54 +1015 1015 1016 101.5 203 1015 1972-10-12 2024-10-11 00:16:55.000 1972-10-12 2024-10-11 00:16:55 +1016 1016 1017 101.6 203.20000000000002 1016 1972-10-13 2024-10-11 00:16:56.000 1972-10-13 2024-10-11 00:16:56 +1017 1017 1018 101.7 203.4 1017 1972-10-14 2024-10-11 00:16:57.000 1972-10-14 2024-10-11 00:16:57 +1018 1018 1019 101.8 203.60000000000002 1018 1972-10-15 2024-10-11 00:16:58.000 1972-10-15 2024-10-11 00:16:58 +1019 1019 1020 101.9 203.8 1019 1972-10-16 2024-10-11 00:16:59.000 1972-10-16 2024-10-11 00:16:59 +1020 1020 1021 102 204 1020 1972-10-17 2024-10-11 00:17:00.000 1972-10-17 2024-10-11 00:17:00 +1021 1021 1022 102.1 204.20000000000002 1021 1972-10-18 2024-10-11 00:17:01.000 1972-10-18 2024-10-11 00:17:01 +1022 1022 1023 102.2 204.4 1022 1972-10-19 2024-10-11 00:17:02.000 1972-10-19 2024-10-11 00:17:02 +1023 1023 1024 102.3 204.60000000000002 1023 1972-10-20 2024-10-11 00:17:03.000 1972-10-20 2024-10-11 00:17:03 +1024 1024 1025 102.4 204.8 1024 1972-10-21 2024-10-11 00:17:04.000 1972-10-21 2024-10-11 00:17:04 +1025 1025 1026 102.5 205 1025 1972-10-22 2024-10-11 00:17:05.000 1972-10-22 2024-10-11 00:17:05 +1026 1026 1027 102.6 205.20000000000002 1026 1972-10-23 2024-10-11 00:17:06.000 1972-10-23 2024-10-11 00:17:06 +1027 1027 1028 102.7 205.4 1027 1972-10-24 2024-10-11 00:17:07.000 1972-10-24 2024-10-11 00:17:07 +1028 1028 1029 102.8 205.60000000000002 1028 1972-10-25 2024-10-11 00:17:08.000 1972-10-25 2024-10-11 00:17:08 +1029 1029 1030 102.9 205.8 1029 1972-10-26 2024-10-11 00:17:09.000 1972-10-26 2024-10-11 00:17:09 +1030 1030 1031 103 206 1030 1972-10-27 2024-10-11 00:17:10.000 1972-10-27 2024-10-11 00:17:10 +1031 1031 1032 103.1 206.20000000000002 1031 1972-10-28 2024-10-11 00:17:11.000 1972-10-28 2024-10-11 00:17:11 +1032 1032 1033 103.2 206.4 1032 1972-10-29 2024-10-11 00:17:12.000 1972-10-29 2024-10-11 00:17:12 +1033 1033 1034 103.3 206.60000000000002 1033 1972-10-30 2024-10-11 00:17:13.000 1972-10-30 2024-10-11 00:17:13 +1034 1034 1035 103.4 206.8 1034 1972-10-31 2024-10-11 00:17:14.000 1972-10-31 2024-10-11 00:17:14 +1035 1035 1036 103.5 207 1035 1972-11-01 2024-10-11 00:17:15.000 1972-11-01 2024-10-11 00:17:15 +1036 1036 1037 103.6 207.20000000000002 1036 1972-11-02 2024-10-11 00:17:16.000 1972-11-02 2024-10-11 00:17:16 +1037 1037 1038 103.7 207.4 1037 1972-11-03 2024-10-11 00:17:17.000 1972-11-03 2024-10-11 00:17:17 +1038 1038 1039 103.8 207.60000000000002 1038 1972-11-04 2024-10-11 00:17:18.000 1972-11-04 2024-10-11 00:17:18 +1039 1039 1040 103.9 207.8 1039 1972-11-05 2024-10-11 00:17:19.000 1972-11-05 2024-10-11 00:17:19 +1040 1040 1041 104 208 1040 1972-11-06 2024-10-11 00:17:20.000 1972-11-06 2024-10-11 00:17:20 +1041 1041 1042 104.1 208.20000000000002 1041 1972-11-07 2024-10-11 00:17:21.000 1972-11-07 2024-10-11 00:17:21 +1042 1042 1043 104.2 208.4 1042 1972-11-08 2024-10-11 00:17:22.000 1972-11-08 2024-10-11 00:17:22 +1043 1043 1044 104.3 208.60000000000002 1043 1972-11-09 2024-10-11 00:17:23.000 1972-11-09 2024-10-11 00:17:23 +1044 1044 1045 104.4 208.8 1044 1972-11-10 2024-10-11 00:17:24.000 1972-11-10 2024-10-11 00:17:24 +1045 1045 1046 104.5 209 1045 1972-11-11 2024-10-11 00:17:25.000 1972-11-11 2024-10-11 00:17:25 +1046 1046 1047 104.6 209.20000000000002 1046 1972-11-12 2024-10-11 00:17:26.000 1972-11-12 2024-10-11 00:17:26 +1047 1047 1048 104.7 209.4 1047 1972-11-13 2024-10-11 00:17:27.000 1972-11-13 2024-10-11 00:17:27 +1048 1048 1049 104.8 209.60000000000002 1048 1972-11-14 2024-10-11 00:17:28.000 1972-11-14 2024-10-11 00:17:28 +1049 1049 1050 104.9 209.8 1049 1972-11-15 2024-10-11 00:17:29.000 1972-11-15 2024-10-11 00:17:29 +1050 1050 1051 105 210 1050 1972-11-16 2024-10-11 00:17:30.000 1972-11-16 2024-10-11 00:17:30 +1051 1051 1052 105.1 210.20000000000002 1051 1972-11-17 2024-10-11 00:17:31.000 1972-11-17 2024-10-11 00:17:31 +1052 1052 1053 105.2 210.4 1052 1972-11-18 2024-10-11 00:17:32.000 1972-11-18 2024-10-11 00:17:32 +1053 1053 1054 105.3 210.60000000000002 1053 1972-11-19 2024-10-11 00:17:33.000 1972-11-19 2024-10-11 00:17:33 +1054 1054 1055 105.4 210.8 1054 1972-11-20 2024-10-11 00:17:34.000 1972-11-20 2024-10-11 00:17:34 +1055 1055 1056 105.5 211 1055 1972-11-21 2024-10-11 00:17:35.000 1972-11-21 2024-10-11 00:17:35 +1056 1056 1057 105.6 211.20000000000002 1056 1972-11-22 2024-10-11 00:17:36.000 1972-11-22 2024-10-11 00:17:36 +1057 1057 1058 105.7 211.4 1057 1972-11-23 2024-10-11 00:17:37.000 1972-11-23 2024-10-11 00:17:37 +1058 1058 1059 105.8 211.60000000000002 1058 1972-11-24 2024-10-11 00:17:38.000 1972-11-24 2024-10-11 00:17:38 +1059 1059 1060 105.9 211.8 1059 1972-11-25 2024-10-11 00:17:39.000 1972-11-25 2024-10-11 00:17:39 +1060 1060 1061 106 212 1060 1972-11-26 2024-10-11 00:17:40.000 1972-11-26 2024-10-11 00:17:40 +1061 1061 1062 106.1 212.20000000000002 1061 1972-11-27 2024-10-11 00:17:41.000 1972-11-27 2024-10-11 00:17:41 +1062 1062 1063 106.2 212.4 1062 1972-11-28 2024-10-11 00:17:42.000 1972-11-28 2024-10-11 00:17:42 +1063 1063 1064 106.3 212.60000000000002 1063 1972-11-29 2024-10-11 00:17:43.000 1972-11-29 2024-10-11 00:17:43 +1064 1064 1065 106.4 212.8 1064 1972-11-30 2024-10-11 00:17:44.000 1972-11-30 2024-10-11 00:17:44 +1065 1065 1066 106.5 213 1065 1972-12-01 2024-10-11 00:17:45.000 1972-12-01 2024-10-11 00:17:45 +1066 1066 1067 106.6 213.20000000000002 1066 1972-12-02 2024-10-11 00:17:46.000 1972-12-02 2024-10-11 00:17:46 +1067 1067 1068 106.7 213.4 1067 1972-12-03 2024-10-11 00:17:47.000 1972-12-03 2024-10-11 00:17:47 +1068 1068 1069 106.8 213.60000000000002 1068 1972-12-04 2024-10-11 00:17:48.000 1972-12-04 2024-10-11 00:17:48 +1069 1069 1070 106.9 213.8 1069 1972-12-05 2024-10-11 00:17:49.000 1972-12-05 2024-10-11 00:17:49 +1070 1070 1071 107 214 1070 1972-12-06 2024-10-11 00:17:50.000 1972-12-06 2024-10-11 00:17:50 +1071 1071 1072 107.1 214.20000000000002 1071 1972-12-07 2024-10-11 00:17:51.000 1972-12-07 2024-10-11 00:17:51 +1072 1072 1073 107.2 214.4 1072 1972-12-08 2024-10-11 00:17:52.000 1972-12-08 2024-10-11 00:17:52 +1073 1073 1074 107.3 214.60000000000002 1073 1972-12-09 2024-10-11 00:17:53.000 1972-12-09 2024-10-11 00:17:53 +1074 1074 1075 107.4 214.8 1074 1972-12-10 2024-10-11 00:17:54.000 1972-12-10 2024-10-11 00:17:54 +1075 1075 1076 107.5 215 1075 1972-12-11 2024-10-11 00:17:55.000 1972-12-11 2024-10-11 00:17:55 +1076 1076 1077 107.6 215.20000000000002 1076 1972-12-12 2024-10-11 00:17:56.000 1972-12-12 2024-10-11 00:17:56 +1077 1077 1078 107.7 215.4 1077 1972-12-13 2024-10-11 00:17:57.000 1972-12-13 2024-10-11 00:17:57 +1078 1078 1079 107.8 215.60000000000002 1078 1972-12-14 2024-10-11 00:17:58.000 1972-12-14 2024-10-11 00:17:58 +1079 1079 1080 107.9 215.8 1079 1972-12-15 2024-10-11 00:17:59.000 1972-12-15 2024-10-11 00:17:59 +1080 1080 1081 108 216 1080 1972-12-16 2024-10-11 00:18:00.000 1972-12-16 2024-10-11 00:18:00 +1081 1081 1082 108.1 216.20000000000002 1081 1972-12-17 2024-10-11 00:18:01.000 1972-12-17 2024-10-11 00:18:01 +1082 1082 1083 108.2 216.4 1082 1972-12-18 2024-10-11 00:18:02.000 1972-12-18 2024-10-11 00:18:02 +1083 1083 1084 108.3 216.60000000000002 1083 1972-12-19 2024-10-11 00:18:03.000 1972-12-19 2024-10-11 00:18:03 +1084 1084 1085 108.4 216.8 1084 1972-12-20 2024-10-11 00:18:04.000 1972-12-20 2024-10-11 00:18:04 +1085 1085 1086 108.5 217 1085 1972-12-21 2024-10-11 00:18:05.000 1972-12-21 2024-10-11 00:18:05 +1086 1086 1087 108.6 217.20000000000002 1086 1972-12-22 2024-10-11 00:18:06.000 1972-12-22 2024-10-11 00:18:06 +1087 1087 1088 108.7 217.4 1087 1972-12-23 2024-10-11 00:18:07.000 1972-12-23 2024-10-11 00:18:07 +1088 1088 1089 108.8 217.60000000000002 1088 1972-12-24 2024-10-11 00:18:08.000 1972-12-24 2024-10-11 00:18:08 +1089 1089 1090 108.9 217.8 1089 1972-12-25 2024-10-11 00:18:09.000 1972-12-25 2024-10-11 00:18:09 +1090 1090 1091 109 218 1090 1972-12-26 2024-10-11 00:18:10.000 1972-12-26 2024-10-11 00:18:10 +1091 1091 1092 109.1 218.20000000000002 1091 1972-12-27 2024-10-11 00:18:11.000 1972-12-27 2024-10-11 00:18:11 +1092 1092 1093 109.2 218.4 1092 1972-12-28 2024-10-11 00:18:12.000 1972-12-28 2024-10-11 00:18:12 +1093 1093 1094 109.3 218.60000000000002 1093 1972-12-29 2024-10-11 00:18:13.000 1972-12-29 2024-10-11 00:18:13 +1094 1094 1095 109.4 218.8 1094 1972-12-30 2024-10-11 00:18:14.000 1972-12-30 2024-10-11 00:18:14 +1095 1095 1096 109.5 219 1095 1972-12-31 2024-10-11 00:18:15.000 1972-12-31 2024-10-11 00:18:15 +1096 1096 1097 109.6 219.20000000000002 1096 1973-01-01 2024-10-11 00:18:16.000 1973-01-01 2024-10-11 00:18:16 +1097 1097 1098 109.7 219.4 1097 1973-01-02 2024-10-11 00:18:17.000 1973-01-02 2024-10-11 00:18:17 +1098 1098 1099 109.8 219.60000000000002 1098 1973-01-03 2024-10-11 00:18:18.000 1973-01-03 2024-10-11 00:18:18 +1099 1099 1100 109.9 219.8 1099 1973-01-04 2024-10-11 00:18:19.000 1973-01-04 2024-10-11 00:18:19 +1100 1100 1101 110 220 1100 1973-01-05 2024-10-11 00:18:20.000 1973-01-05 2024-10-11 00:18:20 +1101 1101 1102 110.1 220.20000000000002 1101 1973-01-06 2024-10-11 00:18:21.000 1973-01-06 2024-10-11 00:18:21 +1102 1102 1103 110.2 220.4 1102 1973-01-07 2024-10-11 00:18:22.000 1973-01-07 2024-10-11 00:18:22 +1103 1103 1104 110.3 220.60000000000002 1103 1973-01-08 2024-10-11 00:18:23.000 1973-01-08 2024-10-11 00:18:23 +1104 1104 1105 110.4 220.8 1104 1973-01-09 2024-10-11 00:18:24.000 1973-01-09 2024-10-11 00:18:24 +1105 1105 1106 110.5 221 1105 1973-01-10 2024-10-11 00:18:25.000 1973-01-10 2024-10-11 00:18:25 +1106 1106 1107 110.6 221.20000000000002 1106 1973-01-11 2024-10-11 00:18:26.000 1973-01-11 2024-10-11 00:18:26 +1107 1107 1108 110.7 221.4 1107 1973-01-12 2024-10-11 00:18:27.000 1973-01-12 2024-10-11 00:18:27 +1108 1108 1109 110.8 221.60000000000002 1108 1973-01-13 2024-10-11 00:18:28.000 1973-01-13 2024-10-11 00:18:28 +1109 1109 1110 110.9 221.8 1109 1973-01-14 2024-10-11 00:18:29.000 1973-01-14 2024-10-11 00:18:29 +1110 1110 1111 111 222 1110 1973-01-15 2024-10-11 00:18:30.000 1973-01-15 2024-10-11 00:18:30 +1111 1111 1112 111.1 222.20000000000002 1111 1973-01-16 2024-10-11 00:18:31.000 1973-01-16 2024-10-11 00:18:31 +1112 1112 1113 111.2 222.4 1112 1973-01-17 2024-10-11 00:18:32.000 1973-01-17 2024-10-11 00:18:32 +1113 1113 1114 111.3 222.60000000000002 1113 1973-01-18 2024-10-11 00:18:33.000 1973-01-18 2024-10-11 00:18:33 +1114 1114 1115 111.4 222.8 1114 1973-01-19 2024-10-11 00:18:34.000 1973-01-19 2024-10-11 00:18:34 +1115 1115 1116 111.5 223 1115 1973-01-20 2024-10-11 00:18:35.000 1973-01-20 2024-10-11 00:18:35 +1116 1116 1117 111.6 223.20000000000002 1116 1973-01-21 2024-10-11 00:18:36.000 1973-01-21 2024-10-11 00:18:36 +1117 1117 1118 111.7 223.4 1117 1973-01-22 2024-10-11 00:18:37.000 1973-01-22 2024-10-11 00:18:37 +1118 1118 1119 111.8 223.60000000000002 1118 1973-01-23 2024-10-11 00:18:38.000 1973-01-23 2024-10-11 00:18:38 +1119 1119 1120 111.9 223.8 1119 1973-01-24 2024-10-11 00:18:39.000 1973-01-24 2024-10-11 00:18:39 +1120 1120 1121 112 224 1120 1973-01-25 2024-10-11 00:18:40.000 1973-01-25 2024-10-11 00:18:40 +1121 1121 1122 112.1 224.20000000000002 1121 1973-01-26 2024-10-11 00:18:41.000 1973-01-26 2024-10-11 00:18:41 +1122 1122 1123 112.2 224.4 1122 1973-01-27 2024-10-11 00:18:42.000 1973-01-27 2024-10-11 00:18:42 +1123 1123 1124 112.3 224.60000000000002 1123 1973-01-28 2024-10-11 00:18:43.000 1973-01-28 2024-10-11 00:18:43 +1124 1124 1125 112.4 224.8 1124 1973-01-29 2024-10-11 00:18:44.000 1973-01-29 2024-10-11 00:18:44 +1125 1125 1126 112.5 225 1125 1973-01-30 2024-10-11 00:18:45.000 1973-01-30 2024-10-11 00:18:45 +1126 1126 1127 112.6 225.20000000000002 1126 1973-01-31 2024-10-11 00:18:46.000 1973-01-31 2024-10-11 00:18:46 +1127 1127 1128 112.7 225.4 1127 1973-02-01 2024-10-11 00:18:47.000 1973-02-01 2024-10-11 00:18:47 +1128 1128 1129 112.8 225.60000000000002 1128 1973-02-02 2024-10-11 00:18:48.000 1973-02-02 2024-10-11 00:18:48 +1129 1129 1130 112.9 225.8 1129 1973-02-03 2024-10-11 00:18:49.000 1973-02-03 2024-10-11 00:18:49 +1130 1130 1131 113 226 1130 1973-02-04 2024-10-11 00:18:50.000 1973-02-04 2024-10-11 00:18:50 +1131 1131 1132 113.1 226.20000000000002 1131 1973-02-05 2024-10-11 00:18:51.000 1973-02-05 2024-10-11 00:18:51 +1132 1132 1133 113.2 226.4 1132 1973-02-06 2024-10-11 00:18:52.000 1973-02-06 2024-10-11 00:18:52 +1133 1133 1134 113.3 226.60000000000002 1133 1973-02-07 2024-10-11 00:18:53.000 1973-02-07 2024-10-11 00:18:53 +1134 1134 1135 113.4 226.8 1134 1973-02-08 2024-10-11 00:18:54.000 1973-02-08 2024-10-11 00:18:54 +1135 1135 1136 113.5 227 1135 1973-02-09 2024-10-11 00:18:55.000 1973-02-09 2024-10-11 00:18:55 +1136 1136 1137 113.6 227.20000000000002 1136 1973-02-10 2024-10-11 00:18:56.000 1973-02-10 2024-10-11 00:18:56 +1137 1137 1138 113.7 227.4 1137 1973-02-11 2024-10-11 00:18:57.000 1973-02-11 2024-10-11 00:18:57 +1138 1138 1139 113.8 227.60000000000002 1138 1973-02-12 2024-10-11 00:18:58.000 1973-02-12 2024-10-11 00:18:58 +1139 1139 1140 113.9 227.8 1139 1973-02-13 2024-10-11 00:18:59.000 1973-02-13 2024-10-11 00:18:59 +1140 1140 1141 114 228 1140 1973-02-14 2024-10-11 00:19:00.000 1973-02-14 2024-10-11 00:19:00 +1141 1141 1142 114.1 228.20000000000002 1141 1973-02-15 2024-10-11 00:19:01.000 1973-02-15 2024-10-11 00:19:01 +1142 1142 1143 114.2 228.4 1142 1973-02-16 2024-10-11 00:19:02.000 1973-02-16 2024-10-11 00:19:02 +1143 1143 1144 114.3 228.60000000000002 1143 1973-02-17 2024-10-11 00:19:03.000 1973-02-17 2024-10-11 00:19:03 +1144 1144 1145 114.4 228.8 1144 1973-02-18 2024-10-11 00:19:04.000 1973-02-18 2024-10-11 00:19:04 +1145 1145 1146 114.5 229 1145 1973-02-19 2024-10-11 00:19:05.000 1973-02-19 2024-10-11 00:19:05 +1146 1146 1147 114.6 229.20000000000002 1146 1973-02-20 2024-10-11 00:19:06.000 1973-02-20 2024-10-11 00:19:06 +1147 1147 1148 114.7 229.4 1147 1973-02-21 2024-10-11 00:19:07.000 1973-02-21 2024-10-11 00:19:07 +1148 1148 1149 114.8 229.60000000000002 1148 1973-02-22 2024-10-11 00:19:08.000 1973-02-22 2024-10-11 00:19:08 +1149 1149 1150 114.9 229.8 1149 1973-02-23 2024-10-11 00:19:09.000 1973-02-23 2024-10-11 00:19:09 +1150 1150 1151 115 230 1150 1973-02-24 2024-10-11 00:19:10.000 1973-02-24 2024-10-11 00:19:10 +1151 1151 1152 115.1 230.20000000000002 1151 1973-02-25 2024-10-11 00:19:11.000 1973-02-25 2024-10-11 00:19:11 +1152 1152 1153 115.2 230.4 1152 1973-02-26 2024-10-11 00:19:12.000 1973-02-26 2024-10-11 00:19:12 +1153 1153 1154 115.3 230.60000000000002 1153 1973-02-27 2024-10-11 00:19:13.000 1973-02-27 2024-10-11 00:19:13 +1154 1154 1155 115.4 230.8 1154 1973-02-28 2024-10-11 00:19:14.000 1973-02-28 2024-10-11 00:19:14 +1155 1155 1156 115.5 231 1155 1973-03-01 2024-10-11 00:19:15.000 1973-03-01 2024-10-11 00:19:15 +1156 1156 1157 115.6 231.20000000000002 1156 1973-03-02 2024-10-11 00:19:16.000 1973-03-02 2024-10-11 00:19:16 +1157 1157 1158 115.7 231.4 1157 1973-03-03 2024-10-11 00:19:17.000 1973-03-03 2024-10-11 00:19:17 +1158 1158 1159 115.8 231.60000000000002 1158 1973-03-04 2024-10-11 00:19:18.000 1973-03-04 2024-10-11 00:19:18 +1159 1159 1160 115.9 231.8 1159 1973-03-05 2024-10-11 00:19:19.000 1973-03-05 2024-10-11 00:19:19 +1160 1160 1161 116 232 1160 1973-03-06 2024-10-11 00:19:20.000 1973-03-06 2024-10-11 00:19:20 +1161 1161 1162 116.1 232.20000000000002 1161 1973-03-07 2024-10-11 00:19:21.000 1973-03-07 2024-10-11 00:19:21 +1162 1162 1163 116.2 232.4 1162 1973-03-08 2024-10-11 00:19:22.000 1973-03-08 2024-10-11 00:19:22 +1163 1163 1164 116.3 232.60000000000002 1163 1973-03-09 2024-10-11 00:19:23.000 1973-03-09 2024-10-11 00:19:23 +1164 1164 1165 116.4 232.8 1164 1973-03-10 2024-10-11 00:19:24.000 1973-03-10 2024-10-11 00:19:24 +1165 1165 1166 116.5 233 1165 1973-03-11 2024-10-11 00:19:25.000 1973-03-11 2024-10-11 00:19:25 +1166 1166 1167 116.6 233.20000000000002 1166 1973-03-12 2024-10-11 00:19:26.000 1973-03-12 2024-10-11 00:19:26 +1167 1167 1168 116.7 233.4 1167 1973-03-13 2024-10-11 00:19:27.000 1973-03-13 2024-10-11 00:19:27 +1168 1168 1169 116.8 233.60000000000002 1168 1973-03-14 2024-10-11 00:19:28.000 1973-03-14 2024-10-11 00:19:28 +1169 1169 1170 116.9 233.8 1169 1973-03-15 2024-10-11 00:19:29.000 1973-03-15 2024-10-11 00:19:29 +1170 1170 1171 117 234 1170 1973-03-16 2024-10-11 00:19:30.000 1973-03-16 2024-10-11 00:19:30 +1171 1171 1172 117.1 234.20000000000002 1171 1973-03-17 2024-10-11 00:19:31.000 1973-03-17 2024-10-11 00:19:31 +1172 1172 1173 117.2 234.4 1172 1973-03-18 2024-10-11 00:19:32.000 1973-03-18 2024-10-11 00:19:32 +1173 1173 1174 117.3 234.60000000000002 1173 1973-03-19 2024-10-11 00:19:33.000 1973-03-19 2024-10-11 00:19:33 +1174 1174 1175 117.4 234.8 1174 1973-03-20 2024-10-11 00:19:34.000 1973-03-20 2024-10-11 00:19:34 +1175 1175 1176 117.5 235 1175 1973-03-21 2024-10-11 00:19:35.000 1973-03-21 2024-10-11 00:19:35 +1176 1176 1177 117.6 235.20000000000002 1176 1973-03-22 2024-10-11 00:19:36.000 1973-03-22 2024-10-11 00:19:36 +1177 1177 1178 117.7 235.4 1177 1973-03-23 2024-10-11 00:19:37.000 1973-03-23 2024-10-11 00:19:37 +1178 1178 1179 117.8 235.60000000000002 1178 1973-03-24 2024-10-11 00:19:38.000 1973-03-24 2024-10-11 00:19:38 +1179 1179 1180 117.9 235.8 1179 1973-03-25 2024-10-11 00:19:39.000 1973-03-25 2024-10-11 00:19:39 +1180 1180 1181 118 236 1180 1973-03-26 2024-10-11 00:19:40.000 1973-03-26 2024-10-11 00:19:40 +1181 1181 1182 118.1 236.20000000000002 1181 1973-03-27 2024-10-11 00:19:41.000 1973-03-27 2024-10-11 00:19:41 +1182 1182 1183 118.2 236.4 1182 1973-03-28 2024-10-11 00:19:42.000 1973-03-28 2024-10-11 00:19:42 +1183 1183 1184 118.3 236.60000000000002 1183 1973-03-29 2024-10-11 00:19:43.000 1973-03-29 2024-10-11 00:19:43 +1184 1184 1185 118.4 236.8 1184 1973-03-30 2024-10-11 00:19:44.000 1973-03-30 2024-10-11 00:19:44 +1185 1185 1186 118.5 237 1185 1973-03-31 2024-10-11 00:19:45.000 1973-03-31 2024-10-11 00:19:45 +1186 1186 1187 118.6 237.20000000000002 1186 1973-04-01 2024-10-11 00:19:46.000 1973-04-01 2024-10-11 00:19:46 +1187 1187 1188 118.7 237.4 1187 1973-04-02 2024-10-11 00:19:47.000 1973-04-02 2024-10-11 00:19:47 +1188 1188 1189 118.8 237.60000000000002 1188 1973-04-03 2024-10-11 00:19:48.000 1973-04-03 2024-10-11 00:19:48 +1189 1189 1190 118.9 237.8 1189 1973-04-04 2024-10-11 00:19:49.000 1973-04-04 2024-10-11 00:19:49 +1190 1190 1191 119 238 1190 1973-04-05 2024-10-11 00:19:50.000 1973-04-05 2024-10-11 00:19:50 +1191 1191 1192 119.1 238.20000000000002 1191 1973-04-06 2024-10-11 00:19:51.000 1973-04-06 2024-10-11 00:19:51 +1192 1192 1193 119.2 238.4 1192 1973-04-07 2024-10-11 00:19:52.000 1973-04-07 2024-10-11 00:19:52 +1193 1193 1194 119.3 238.60000000000002 1193 1973-04-08 2024-10-11 00:19:53.000 1973-04-08 2024-10-11 00:19:53 +1194 1194 1195 119.4 238.8 1194 1973-04-09 2024-10-11 00:19:54.000 1973-04-09 2024-10-11 00:19:54 +1195 1195 1196 119.5 239 1195 1973-04-10 2024-10-11 00:19:55.000 1973-04-10 2024-10-11 00:19:55 +1196 1196 1197 119.6 239.20000000000002 1196 1973-04-11 2024-10-11 00:19:56.000 1973-04-11 2024-10-11 00:19:56 +1197 1197 1198 119.7 239.4 1197 1973-04-12 2024-10-11 00:19:57.000 1973-04-12 2024-10-11 00:19:57 +1198 1198 1199 119.8 239.60000000000002 1198 1973-04-13 2024-10-11 00:19:58.000 1973-04-13 2024-10-11 00:19:58 +1199 1199 1200 119.9 239.8 1199 1973-04-14 2024-10-11 00:19:59.000 1973-04-14 2024-10-11 00:19:59 +1200 1200 1201 120 240 1200 1973-04-15 2024-10-11 00:20:00.000 1973-04-15 2024-10-11 00:20:00 +1201 1201 1202 120.1 240.20000000000002 1201 1973-04-16 2024-10-11 00:20:01.000 1973-04-16 2024-10-11 00:20:01 +1202 1202 1203 120.2 240.4 1202 1973-04-17 2024-10-11 00:20:02.000 1973-04-17 2024-10-11 00:20:02 +1203 1203 1204 120.3 240.60000000000002 1203 1973-04-18 2024-10-11 00:20:03.000 1973-04-18 2024-10-11 00:20:03 +1204 1204 1205 120.4 240.8 1204 1973-04-19 2024-10-11 00:20:04.000 1973-04-19 2024-10-11 00:20:04 +1205 1205 1206 120.5 241 1205 1973-04-20 2024-10-11 00:20:05.000 1973-04-20 2024-10-11 00:20:05 +1206 1206 1207 120.6 241.20000000000002 1206 1973-04-21 2024-10-11 00:20:06.000 1973-04-21 2024-10-11 00:20:06 +1207 1207 1208 120.7 241.4 1207 1973-04-22 2024-10-11 00:20:07.000 1973-04-22 2024-10-11 00:20:07 +1208 1208 1209 120.8 241.60000000000002 1208 1973-04-23 2024-10-11 00:20:08.000 1973-04-23 2024-10-11 00:20:08 +1209 1209 1210 120.9 241.8 1209 1973-04-24 2024-10-11 00:20:09.000 1973-04-24 2024-10-11 00:20:09 +1210 1210 1211 121 242 1210 1973-04-25 2024-10-11 00:20:10.000 1973-04-25 2024-10-11 00:20:10 +1211 1211 1212 121.1 242.20000000000002 1211 1973-04-26 2024-10-11 00:20:11.000 1973-04-26 2024-10-11 00:20:11 +1212 1212 1213 121.2 242.4 1212 1973-04-27 2024-10-11 00:20:12.000 1973-04-27 2024-10-11 00:20:12 +1213 1213 1214 121.3 242.60000000000002 1213 1973-04-28 2024-10-11 00:20:13.000 1973-04-28 2024-10-11 00:20:13 +1214 1214 1215 121.4 242.8 1214 1973-04-29 2024-10-11 00:20:14.000 1973-04-29 2024-10-11 00:20:14 +1215 1215 1216 121.5 243 1215 1973-04-30 2024-10-11 00:20:15.000 1973-04-30 2024-10-11 00:20:15 +1216 1216 1217 121.6 243.20000000000002 1216 1973-05-01 2024-10-11 00:20:16.000 1973-05-01 2024-10-11 00:20:16 +1217 1217 1218 121.7 243.4 1217 1973-05-02 2024-10-11 00:20:17.000 1973-05-02 2024-10-11 00:20:17 +1218 1218 1219 121.8 243.60000000000002 1218 1973-05-03 2024-10-11 00:20:18.000 1973-05-03 2024-10-11 00:20:18 +1219 1219 1220 121.9 243.8 1219 1973-05-04 2024-10-11 00:20:19.000 1973-05-04 2024-10-11 00:20:19 +1220 1220 1221 122 244 1220 1973-05-05 2024-10-11 00:20:20.000 1973-05-05 2024-10-11 00:20:20 +1221 1221 1222 122.1 244.20000000000002 1221 1973-05-06 2024-10-11 00:20:21.000 1973-05-06 2024-10-11 00:20:21 +1222 1222 1223 122.2 244.4 1222 1973-05-07 2024-10-11 00:20:22.000 1973-05-07 2024-10-11 00:20:22 +1223 1223 1224 122.3 244.60000000000002 1223 1973-05-08 2024-10-11 00:20:23.000 1973-05-08 2024-10-11 00:20:23 +1224 1224 1225 122.4 244.8 1224 1973-05-09 2024-10-11 00:20:24.000 1973-05-09 2024-10-11 00:20:24 +1225 1225 1226 122.5 245 1225 1973-05-10 2024-10-11 00:20:25.000 1973-05-10 2024-10-11 00:20:25 +1226 1226 1227 122.6 245.20000000000002 1226 1973-05-11 2024-10-11 00:20:26.000 1973-05-11 2024-10-11 00:20:26 +1227 1227 1228 122.7 245.4 1227 1973-05-12 2024-10-11 00:20:27.000 1973-05-12 2024-10-11 00:20:27 +1228 1228 1229 122.8 245.60000000000002 1228 1973-05-13 2024-10-11 00:20:28.000 1973-05-13 2024-10-11 00:20:28 +1229 1229 1230 122.9 245.8 1229 1973-05-14 2024-10-11 00:20:29.000 1973-05-14 2024-10-11 00:20:29 +1230 1230 1231 123 246 1230 1973-05-15 2024-10-11 00:20:30.000 1973-05-15 2024-10-11 00:20:30 +1231 1231 1232 123.1 246.20000000000002 1231 1973-05-16 2024-10-11 00:20:31.000 1973-05-16 2024-10-11 00:20:31 +1232 1232 1233 123.2 246.4 1232 1973-05-17 2024-10-11 00:20:32.000 1973-05-17 2024-10-11 00:20:32 +1233 1233 1234 123.3 246.60000000000002 1233 1973-05-18 2024-10-11 00:20:33.000 1973-05-18 2024-10-11 00:20:33 +1234 1234 1235 123.4 246.8 1234 1973-05-19 2024-10-11 00:20:34.000 1973-05-19 2024-10-11 00:20:34 +1235 1235 1236 123.5 247 1235 1973-05-20 2024-10-11 00:20:35.000 1973-05-20 2024-10-11 00:20:35 +1236 1236 1237 123.6 247.20000000000002 1236 1973-05-21 2024-10-11 00:20:36.000 1973-05-21 2024-10-11 00:20:36 +1237 1237 1238 123.7 247.4 1237 1973-05-22 2024-10-11 00:20:37.000 1973-05-22 2024-10-11 00:20:37 +1238 1238 1239 123.8 247.60000000000002 1238 1973-05-23 2024-10-11 00:20:38.000 1973-05-23 2024-10-11 00:20:38 +1239 1239 1240 123.9 247.8 1239 1973-05-24 2024-10-11 00:20:39.000 1973-05-24 2024-10-11 00:20:39 +1240 1240 1241 124 248 1240 1973-05-25 2024-10-11 00:20:40.000 1973-05-25 2024-10-11 00:20:40 +1241 1241 1242 124.1 248.20000000000002 1241 1973-05-26 2024-10-11 00:20:41.000 1973-05-26 2024-10-11 00:20:41 +1242 1242 1243 124.2 248.4 1242 1973-05-27 2024-10-11 00:20:42.000 1973-05-27 2024-10-11 00:20:42 +1243 1243 1244 124.3 248.60000000000002 1243 1973-05-28 2024-10-11 00:20:43.000 1973-05-28 2024-10-11 00:20:43 +1244 1244 1245 124.4 248.8 1244 1973-05-29 2024-10-11 00:20:44.000 1973-05-29 2024-10-11 00:20:44 +1245 1245 1246 124.5 249 1245 1973-05-30 2024-10-11 00:20:45.000 1973-05-30 2024-10-11 00:20:45 +1246 1246 1247 124.6 249.20000000000002 1246 1973-05-31 2024-10-11 00:20:46.000 1973-05-31 2024-10-11 00:20:46 +1247 1247 1248 124.7 249.4 1247 1973-06-01 2024-10-11 00:20:47.000 1973-06-01 2024-10-11 00:20:47 +1248 1248 1249 124.8 249.60000000000002 1248 1973-06-02 2024-10-11 00:20:48.000 1973-06-02 2024-10-11 00:20:48 +1249 1249 1250 124.9 249.8 1249 1973-06-03 2024-10-11 00:20:49.000 1973-06-03 2024-10-11 00:20:49 +1250 1250 1251 125 250 1250 1973-06-04 2024-10-11 00:20:50.000 1973-06-04 2024-10-11 00:20:50 +1251 1251 1252 125.1 250.20000000000002 1251 1973-06-05 2024-10-11 00:20:51.000 1973-06-05 2024-10-11 00:20:51 +1252 1252 1253 125.2 250.4 1252 1973-06-06 2024-10-11 00:20:52.000 1973-06-06 2024-10-11 00:20:52 +1253 1253 1254 125.3 250.60000000000002 1253 1973-06-07 2024-10-11 00:20:53.000 1973-06-07 2024-10-11 00:20:53 +1254 1254 1255 125.4 250.8 1254 1973-06-08 2024-10-11 00:20:54.000 1973-06-08 2024-10-11 00:20:54 +1255 1255 1256 125.5 251 1255 1973-06-09 2024-10-11 00:20:55.000 1973-06-09 2024-10-11 00:20:55 +1256 1256 1257 125.6 251.20000000000002 1256 1973-06-10 2024-10-11 00:20:56.000 1973-06-10 2024-10-11 00:20:56 +1257 1257 1258 125.7 251.4 1257 1973-06-11 2024-10-11 00:20:57.000 1973-06-11 2024-10-11 00:20:57 +1258 1258 1259 125.8 251.60000000000002 1258 1973-06-12 2024-10-11 00:20:58.000 1973-06-12 2024-10-11 00:20:58 +1259 1259 1260 125.9 251.8 1259 1973-06-13 2024-10-11 00:20:59.000 1973-06-13 2024-10-11 00:20:59 +1260 1260 1261 126 252 1260 1973-06-14 2024-10-11 00:21:00.000 1973-06-14 2024-10-11 00:21:00 +1261 1261 1262 126.1 252.20000000000002 1261 1973-06-15 2024-10-11 00:21:01.000 1973-06-15 2024-10-11 00:21:01 +1262 1262 1263 126.2 252.4 1262 1973-06-16 2024-10-11 00:21:02.000 1973-06-16 2024-10-11 00:21:02 +1263 1263 1264 126.3 252.60000000000002 1263 1973-06-17 2024-10-11 00:21:03.000 1973-06-17 2024-10-11 00:21:03 +1264 1264 1265 126.4 252.8 1264 1973-06-18 2024-10-11 00:21:04.000 1973-06-18 2024-10-11 00:21:04 +1265 1265 1266 126.5 253 1265 1973-06-19 2024-10-11 00:21:05.000 1973-06-19 2024-10-11 00:21:05 +1266 1266 1267 126.6 253.20000000000002 1266 1973-06-20 2024-10-11 00:21:06.000 1973-06-20 2024-10-11 00:21:06 +1267 1267 1268 126.7 253.4 1267 1973-06-21 2024-10-11 00:21:07.000 1973-06-21 2024-10-11 00:21:07 +1268 1268 1269 126.8 253.60000000000002 1268 1973-06-22 2024-10-11 00:21:08.000 1973-06-22 2024-10-11 00:21:08 +1269 1269 1270 126.9 253.8 1269 1973-06-23 2024-10-11 00:21:09.000 1973-06-23 2024-10-11 00:21:09 +1270 1270 1271 127 254 1270 1973-06-24 2024-10-11 00:21:10.000 1973-06-24 2024-10-11 00:21:10 +1271 1271 1272 127.1 254.20000000000002 1271 1973-06-25 2024-10-11 00:21:11.000 1973-06-25 2024-10-11 00:21:11 +1272 1272 1273 127.2 254.4 1272 1973-06-26 2024-10-11 00:21:12.000 1973-06-26 2024-10-11 00:21:12 +1273 1273 1274 127.3 254.60000000000002 1273 1973-06-27 2024-10-11 00:21:13.000 1973-06-27 2024-10-11 00:21:13 +1274 1274 1275 127.4 254.8 1274 1973-06-28 2024-10-11 00:21:14.000 1973-06-28 2024-10-11 00:21:14 +1275 1275 1276 127.5 255 1275 1973-06-29 2024-10-11 00:21:15.000 1973-06-29 2024-10-11 00:21:15 +1276 1276 1277 127.6 255.20000000000002 1276 1973-06-30 2024-10-11 00:21:16.000 1973-06-30 2024-10-11 00:21:16 +1277 1277 1278 127.7 255.4 1277 1973-07-01 2024-10-11 00:21:17.000 1973-07-01 2024-10-11 00:21:17 +1278 1278 1279 127.8 255.60000000000002 1278 1973-07-02 2024-10-11 00:21:18.000 1973-07-02 2024-10-11 00:21:18 +1279 1279 1280 127.9 255.8 1279 1973-07-03 2024-10-11 00:21:19.000 1973-07-03 2024-10-11 00:21:19 +1280 1280 1281 128 256 1280 1973-07-04 2024-10-11 00:21:20.000 1973-07-04 2024-10-11 00:21:20 +1281 1281 1282 128.1 256.2 1281 1973-07-05 2024-10-11 00:21:21.000 1973-07-05 2024-10-11 00:21:21 +1282 1282 1283 128.2 256.40000000000003 1282 1973-07-06 2024-10-11 00:21:22.000 1973-07-06 2024-10-11 00:21:22 +1283 1283 1284 128.3 256.6 1283 1973-07-07 2024-10-11 00:21:23.000 1973-07-07 2024-10-11 00:21:23 +1284 1284 1285 128.4 256.8 1284 1973-07-08 2024-10-11 00:21:24.000 1973-07-08 2024-10-11 00:21:24 +1285 1285 1286 128.5 257 1285 1973-07-09 2024-10-11 00:21:25.000 1973-07-09 2024-10-11 00:21:25 +1286 1286 1287 128.6 257.2 1286 1973-07-10 2024-10-11 00:21:26.000 1973-07-10 2024-10-11 00:21:26 +1287 1287 1288 128.7 257.40000000000003 1287 1973-07-11 2024-10-11 00:21:27.000 1973-07-11 2024-10-11 00:21:27 +1288 1288 1289 128.8 257.6 1288 1973-07-12 2024-10-11 00:21:28.000 1973-07-12 2024-10-11 00:21:28 +1289 1289 1290 128.9 257.8 1289 1973-07-13 2024-10-11 00:21:29.000 1973-07-13 2024-10-11 00:21:29 +1290 1290 1291 129 258 1290 1973-07-14 2024-10-11 00:21:30.000 1973-07-14 2024-10-11 00:21:30 +1291 1291 1292 129.1 258.2 1291 1973-07-15 2024-10-11 00:21:31.000 1973-07-15 2024-10-11 00:21:31 +1292 1292 1293 129.2 258.40000000000003 1292 1973-07-16 2024-10-11 00:21:32.000 1973-07-16 2024-10-11 00:21:32 +1293 1293 1294 129.3 258.6 1293 1973-07-17 2024-10-11 00:21:33.000 1973-07-17 2024-10-11 00:21:33 +1294 1294 1295 129.4 258.8 1294 1973-07-18 2024-10-11 00:21:34.000 1973-07-18 2024-10-11 00:21:34 +1295 1295 1296 129.5 259 1295 1973-07-19 2024-10-11 00:21:35.000 1973-07-19 2024-10-11 00:21:35 +1296 1296 1297 129.6 259.2 1296 1973-07-20 2024-10-11 00:21:36.000 1973-07-20 2024-10-11 00:21:36 +1297 1297 1298 129.7 259.40000000000003 1297 1973-07-21 2024-10-11 00:21:37.000 1973-07-21 2024-10-11 00:21:37 +1298 1298 1299 129.8 259.6 1298 1973-07-22 2024-10-11 00:21:38.000 1973-07-22 2024-10-11 00:21:38 +1299 1299 1300 129.9 259.8 1299 1973-07-23 2024-10-11 00:21:39.000 1973-07-23 2024-10-11 00:21:39 +1300 1300 1301 130 260 1300 1973-07-24 2024-10-11 00:21:40.000 1973-07-24 2024-10-11 00:21:40 +1301 1301 1302 130.1 260.2 1301 1973-07-25 2024-10-11 00:21:41.000 1973-07-25 2024-10-11 00:21:41 +1302 1302 1303 130.2 260.40000000000003 1302 1973-07-26 2024-10-11 00:21:42.000 1973-07-26 2024-10-11 00:21:42 +1303 1303 1304 130.3 260.6 1303 1973-07-27 2024-10-11 00:21:43.000 1973-07-27 2024-10-11 00:21:43 +1304 1304 1305 130.4 260.8 1304 1973-07-28 2024-10-11 00:21:44.000 1973-07-28 2024-10-11 00:21:44 +1305 1305 1306 130.5 261 1305 1973-07-29 2024-10-11 00:21:45.000 1973-07-29 2024-10-11 00:21:45 +1306 1306 1307 130.6 261.2 1306 1973-07-30 2024-10-11 00:21:46.000 1973-07-30 2024-10-11 00:21:46 +1307 1307 1308 130.7 261.40000000000003 1307 1973-07-31 2024-10-11 00:21:47.000 1973-07-31 2024-10-11 00:21:47 +1308 1308 1309 130.8 261.6 1308 1973-08-01 2024-10-11 00:21:48.000 1973-08-01 2024-10-11 00:21:48 +1309 1309 1310 130.9 261.8 1309 1973-08-02 2024-10-11 00:21:49.000 1973-08-02 2024-10-11 00:21:49 +1310 1310 1311 131 262 1310 1973-08-03 2024-10-11 00:21:50.000 1973-08-03 2024-10-11 00:21:50 +1311 1311 1312 131.1 262.2 1311 1973-08-04 2024-10-11 00:21:51.000 1973-08-04 2024-10-11 00:21:51 +1312 1312 1313 131.2 262.40000000000003 1312 1973-08-05 2024-10-11 00:21:52.000 1973-08-05 2024-10-11 00:21:52 +1313 1313 1314 131.3 262.6 1313 1973-08-06 2024-10-11 00:21:53.000 1973-08-06 2024-10-11 00:21:53 +1314 1314 1315 131.4 262.8 1314 1973-08-07 2024-10-11 00:21:54.000 1973-08-07 2024-10-11 00:21:54 +1315 1315 1316 131.5 263 1315 1973-08-08 2024-10-11 00:21:55.000 1973-08-08 2024-10-11 00:21:55 +1316 1316 1317 131.6 263.2 1316 1973-08-09 2024-10-11 00:21:56.000 1973-08-09 2024-10-11 00:21:56 +1317 1317 1318 131.7 263.40000000000003 1317 1973-08-10 2024-10-11 00:21:57.000 1973-08-10 2024-10-11 00:21:57 +1318 1318 1319 131.8 263.6 1318 1973-08-11 2024-10-11 00:21:58.000 1973-08-11 2024-10-11 00:21:58 +1319 1319 1320 131.9 263.8 1319 1973-08-12 2024-10-11 00:21:59.000 1973-08-12 2024-10-11 00:21:59 +1320 1320 1321 132 264 1320 1973-08-13 2024-10-11 00:22:00.000 1973-08-13 2024-10-11 00:22:00 +1321 1321 1322 132.1 264.2 1321 1973-08-14 2024-10-11 00:22:01.000 1973-08-14 2024-10-11 00:22:01 +1322 1322 1323 132.2 264.40000000000003 1322 1973-08-15 2024-10-11 00:22:02.000 1973-08-15 2024-10-11 00:22:02 +1323 1323 1324 132.3 264.6 1323 1973-08-16 2024-10-11 00:22:03.000 1973-08-16 2024-10-11 00:22:03 +1324 1324 1325 132.4 264.8 1324 1973-08-17 2024-10-11 00:22:04.000 1973-08-17 2024-10-11 00:22:04 +1325 1325 1326 132.5 265 1325 1973-08-18 2024-10-11 00:22:05.000 1973-08-18 2024-10-11 00:22:05 +1326 1326 1327 132.6 265.2 1326 1973-08-19 2024-10-11 00:22:06.000 1973-08-19 2024-10-11 00:22:06 +1327 1327 1328 132.7 265.40000000000003 1327 1973-08-20 2024-10-11 00:22:07.000 1973-08-20 2024-10-11 00:22:07 +1328 1328 1329 132.8 265.6 1328 1973-08-21 2024-10-11 00:22:08.000 1973-08-21 2024-10-11 00:22:08 +1329 1329 1330 132.9 265.8 1329 1973-08-22 2024-10-11 00:22:09.000 1973-08-22 2024-10-11 00:22:09 +1330 1330 1331 133 266 1330 1973-08-23 2024-10-11 00:22:10.000 1973-08-23 2024-10-11 00:22:10 +1331 1331 1332 133.1 266.2 1331 1973-08-24 2024-10-11 00:22:11.000 1973-08-24 2024-10-11 00:22:11 +1332 1332 1333 133.2 266.40000000000003 1332 1973-08-25 2024-10-11 00:22:12.000 1973-08-25 2024-10-11 00:22:12 +1333 1333 1334 133.3 266.6 1333 1973-08-26 2024-10-11 00:22:13.000 1973-08-26 2024-10-11 00:22:13 +1334 1334 1335 133.4 266.8 1334 1973-08-27 2024-10-11 00:22:14.000 1973-08-27 2024-10-11 00:22:14 +1335 1335 1336 133.5 267 1335 1973-08-28 2024-10-11 00:22:15.000 1973-08-28 2024-10-11 00:22:15 +1336 1336 1337 133.6 267.2 1336 1973-08-29 2024-10-11 00:22:16.000 1973-08-29 2024-10-11 00:22:16 +1337 1337 1338 133.7 267.40000000000003 1337 1973-08-30 2024-10-11 00:22:17.000 1973-08-30 2024-10-11 00:22:17 +1338 1338 1339 133.8 267.6 1338 1973-08-31 2024-10-11 00:22:18.000 1973-08-31 2024-10-11 00:22:18 +1339 1339 1340 133.9 267.8 1339 1973-09-01 2024-10-11 00:22:19.000 1973-09-01 2024-10-11 00:22:19 +1340 1340 1341 134 268 1340 1973-09-02 2024-10-11 00:22:20.000 1973-09-02 2024-10-11 00:22:20 +1341 1341 1342 134.1 268.2 1341 1973-09-03 2024-10-11 00:22:21.000 1973-09-03 2024-10-11 00:22:21 +1342 1342 1343 134.2 268.40000000000003 1342 1973-09-04 2024-10-11 00:22:22.000 1973-09-04 2024-10-11 00:22:22 +1343 1343 1344 134.3 268.6 1343 1973-09-05 2024-10-11 00:22:23.000 1973-09-05 2024-10-11 00:22:23 +1344 1344 1345 134.4 268.8 1344 1973-09-06 2024-10-11 00:22:24.000 1973-09-06 2024-10-11 00:22:24 +1345 1345 1346 134.5 269 1345 1973-09-07 2024-10-11 00:22:25.000 1973-09-07 2024-10-11 00:22:25 +1346 1346 1347 134.6 269.2 1346 1973-09-08 2024-10-11 00:22:26.000 1973-09-08 2024-10-11 00:22:26 +1347 1347 1348 134.7 269.40000000000003 1347 1973-09-09 2024-10-11 00:22:27.000 1973-09-09 2024-10-11 00:22:27 +1348 1348 1349 134.8 269.6 1348 1973-09-10 2024-10-11 00:22:28.000 1973-09-10 2024-10-11 00:22:28 +1349 1349 1350 134.9 269.8 1349 1973-09-11 2024-10-11 00:22:29.000 1973-09-11 2024-10-11 00:22:29 +1350 1350 1351 135 270 1350 1973-09-12 2024-10-11 00:22:30.000 1973-09-12 2024-10-11 00:22:30 +1351 1351 1352 135.1 270.2 1351 1973-09-13 2024-10-11 00:22:31.000 1973-09-13 2024-10-11 00:22:31 +1352 1352 1353 135.2 270.40000000000003 1352 1973-09-14 2024-10-11 00:22:32.000 1973-09-14 2024-10-11 00:22:32 +1353 1353 1354 135.3 270.6 1353 1973-09-15 2024-10-11 00:22:33.000 1973-09-15 2024-10-11 00:22:33 +1354 1354 1355 135.4 270.8 1354 1973-09-16 2024-10-11 00:22:34.000 1973-09-16 2024-10-11 00:22:34 +1355 1355 1356 135.5 271 1355 1973-09-17 2024-10-11 00:22:35.000 1973-09-17 2024-10-11 00:22:35 +1356 1356 1357 135.6 271.2 1356 1973-09-18 2024-10-11 00:22:36.000 1973-09-18 2024-10-11 00:22:36 +1357 1357 1358 135.7 271.40000000000003 1357 1973-09-19 2024-10-11 00:22:37.000 1973-09-19 2024-10-11 00:22:37 +1358 1358 1359 135.8 271.6 1358 1973-09-20 2024-10-11 00:22:38.000 1973-09-20 2024-10-11 00:22:38 +1359 1359 1360 135.9 271.8 1359 1973-09-21 2024-10-11 00:22:39.000 1973-09-21 2024-10-11 00:22:39 +1360 1360 1361 136 272 1360 1973-09-22 2024-10-11 00:22:40.000 1973-09-22 2024-10-11 00:22:40 +1361 1361 1362 136.1 272.2 1361 1973-09-23 2024-10-11 00:22:41.000 1973-09-23 2024-10-11 00:22:41 +1362 1362 1363 136.2 272.40000000000003 1362 1973-09-24 2024-10-11 00:22:42.000 1973-09-24 2024-10-11 00:22:42 +1363 1363 1364 136.3 272.6 1363 1973-09-25 2024-10-11 00:22:43.000 1973-09-25 2024-10-11 00:22:43 +1364 1364 1365 136.4 272.8 1364 1973-09-26 2024-10-11 00:22:44.000 1973-09-26 2024-10-11 00:22:44 +1365 1365 1366 136.5 273 1365 1973-09-27 2024-10-11 00:22:45.000 1973-09-27 2024-10-11 00:22:45 +1366 1366 1367 136.6 273.2 1366 1973-09-28 2024-10-11 00:22:46.000 1973-09-28 2024-10-11 00:22:46 +1367 1367 1368 136.7 273.40000000000003 1367 1973-09-29 2024-10-11 00:22:47.000 1973-09-29 2024-10-11 00:22:47 +1368 1368 1369 136.8 273.6 1368 1973-09-30 2024-10-11 00:22:48.000 1973-09-30 2024-10-11 00:22:48 +1369 1369 1370 136.9 273.8 1369 1973-10-01 2024-10-11 00:22:49.000 1973-10-01 2024-10-11 00:22:49 +1370 1370 1371 137 274 1370 1973-10-02 2024-10-11 00:22:50.000 1973-10-02 2024-10-11 00:22:50 +1371 1371 1372 137.1 274.2 1371 1973-10-03 2024-10-11 00:22:51.000 1973-10-03 2024-10-11 00:22:51 +1372 1372 1373 137.2 274.40000000000003 1372 1973-10-04 2024-10-11 00:22:52.000 1973-10-04 2024-10-11 00:22:52 +1373 1373 1374 137.3 274.6 1373 1973-10-05 2024-10-11 00:22:53.000 1973-10-05 2024-10-11 00:22:53 +1374 1374 1375 137.4 274.8 1374 1973-10-06 2024-10-11 00:22:54.000 1973-10-06 2024-10-11 00:22:54 +1375 1375 1376 137.5 275 1375 1973-10-07 2024-10-11 00:22:55.000 1973-10-07 2024-10-11 00:22:55 +1376 1376 1377 137.6 275.2 1376 1973-10-08 2024-10-11 00:22:56.000 1973-10-08 2024-10-11 00:22:56 +1377 1377 1378 137.7 275.40000000000003 1377 1973-10-09 2024-10-11 00:22:57.000 1973-10-09 2024-10-11 00:22:57 +1378 1378 1379 137.8 275.6 1378 1973-10-10 2024-10-11 00:22:58.000 1973-10-10 2024-10-11 00:22:58 +1379 1379 1380 137.9 275.8 1379 1973-10-11 2024-10-11 00:22:59.000 1973-10-11 2024-10-11 00:22:59 +1380 1380 1381 138 276 1380 1973-10-12 2024-10-11 00:23:00.000 1973-10-12 2024-10-11 00:23:00 +1381 1381 1382 138.1 276.2 1381 1973-10-13 2024-10-11 00:23:01.000 1973-10-13 2024-10-11 00:23:01 +1382 1382 1383 138.2 276.40000000000003 1382 1973-10-14 2024-10-11 00:23:02.000 1973-10-14 2024-10-11 00:23:02 +1383 1383 1384 138.3 276.6 1383 1973-10-15 2024-10-11 00:23:03.000 1973-10-15 2024-10-11 00:23:03 +1384 1384 1385 138.4 276.8 1384 1973-10-16 2024-10-11 00:23:04.000 1973-10-16 2024-10-11 00:23:04 +1385 1385 1386 138.5 277 1385 1973-10-17 2024-10-11 00:23:05.000 1973-10-17 2024-10-11 00:23:05 +1386 1386 1387 138.6 277.2 1386 1973-10-18 2024-10-11 00:23:06.000 1973-10-18 2024-10-11 00:23:06 +1387 1387 1388 138.7 277.40000000000003 1387 1973-10-19 2024-10-11 00:23:07.000 1973-10-19 2024-10-11 00:23:07 +1388 1388 1389 138.8 277.6 1388 1973-10-20 2024-10-11 00:23:08.000 1973-10-20 2024-10-11 00:23:08 +1389 1389 1390 138.9 277.8 1389 1973-10-21 2024-10-11 00:23:09.000 1973-10-21 2024-10-11 00:23:09 +1390 1390 1391 139 278 1390 1973-10-22 2024-10-11 00:23:10.000 1973-10-22 2024-10-11 00:23:10 +1391 1391 1392 139.1 278.2 1391 1973-10-23 2024-10-11 00:23:11.000 1973-10-23 2024-10-11 00:23:11 +1392 1392 1393 139.2 278.40000000000003 1392 1973-10-24 2024-10-11 00:23:12.000 1973-10-24 2024-10-11 00:23:12 +1393 1393 1394 139.3 278.6 1393 1973-10-25 2024-10-11 00:23:13.000 1973-10-25 2024-10-11 00:23:13 +1394 1394 1395 139.4 278.8 1394 1973-10-26 2024-10-11 00:23:14.000 1973-10-26 2024-10-11 00:23:14 +1395 1395 1396 139.5 279 1395 1973-10-27 2024-10-11 00:23:15.000 1973-10-27 2024-10-11 00:23:15 +1396 1396 1397 139.6 279.2 1396 1973-10-28 2024-10-11 00:23:16.000 1973-10-28 2024-10-11 00:23:16 +1397 1397 1398 139.7 279.40000000000003 1397 1973-10-29 2024-10-11 00:23:17.000 1973-10-29 2024-10-11 00:23:17 +1398 1398 1399 139.8 279.6 1398 1973-10-30 2024-10-11 00:23:18.000 1973-10-30 2024-10-11 00:23:18 +1399 1399 1400 139.9 279.8 1399 1973-10-31 2024-10-11 00:23:19.000 1973-10-31 2024-10-11 00:23:19 +1400 1400 1401 140 280 1400 1973-11-01 2024-10-11 00:23:20.000 1973-11-01 2024-10-11 00:23:20 +1401 1401 1402 140.1 280.2 1401 1973-11-02 2024-10-11 00:23:21.000 1973-11-02 2024-10-11 00:23:21 +1402 1402 1403 140.2 280.40000000000003 1402 1973-11-03 2024-10-11 00:23:22.000 1973-11-03 2024-10-11 00:23:22 +1403 1403 1404 140.3 280.6 1403 1973-11-04 2024-10-11 00:23:23.000 1973-11-04 2024-10-11 00:23:23 +1404 1404 1405 140.4 280.8 1404 1973-11-05 2024-10-11 00:23:24.000 1973-11-05 2024-10-11 00:23:24 +1405 1405 1406 140.5 281 1405 1973-11-06 2024-10-11 00:23:25.000 1973-11-06 2024-10-11 00:23:25 +1406 1406 1407 140.6 281.2 1406 1973-11-07 2024-10-11 00:23:26.000 1973-11-07 2024-10-11 00:23:26 +1407 1407 1408 140.7 281.40000000000003 1407 1973-11-08 2024-10-11 00:23:27.000 1973-11-08 2024-10-11 00:23:27 +1408 1408 1409 140.8 281.6 1408 1973-11-09 2024-10-11 00:23:28.000 1973-11-09 2024-10-11 00:23:28 +1409 1409 1410 140.9 281.8 1409 1973-11-10 2024-10-11 00:23:29.000 1973-11-10 2024-10-11 00:23:29 +1410 1410 1411 141 282 1410 1973-11-11 2024-10-11 00:23:30.000 1973-11-11 2024-10-11 00:23:30 +1411 1411 1412 141.1 282.2 1411 1973-11-12 2024-10-11 00:23:31.000 1973-11-12 2024-10-11 00:23:31 +1412 1412 1413 141.2 282.40000000000003 1412 1973-11-13 2024-10-11 00:23:32.000 1973-11-13 2024-10-11 00:23:32 +1413 1413 1414 141.3 282.6 1413 1973-11-14 2024-10-11 00:23:33.000 1973-11-14 2024-10-11 00:23:33 +1414 1414 1415 141.4 282.8 1414 1973-11-15 2024-10-11 00:23:34.000 1973-11-15 2024-10-11 00:23:34 +1415 1415 1416 141.5 283 1415 1973-11-16 2024-10-11 00:23:35.000 1973-11-16 2024-10-11 00:23:35 +1416 1416 1417 141.6 283.2 1416 1973-11-17 2024-10-11 00:23:36.000 1973-11-17 2024-10-11 00:23:36 +1417 1417 1418 141.7 283.40000000000003 1417 1973-11-18 2024-10-11 00:23:37.000 1973-11-18 2024-10-11 00:23:37 +1418 1418 1419 141.8 283.6 1418 1973-11-19 2024-10-11 00:23:38.000 1973-11-19 2024-10-11 00:23:38 +1419 1419 1420 141.9 283.8 1419 1973-11-20 2024-10-11 00:23:39.000 1973-11-20 2024-10-11 00:23:39 +1420 1420 1421 142 284 1420 1973-11-21 2024-10-11 00:23:40.000 1973-11-21 2024-10-11 00:23:40 +1421 1421 1422 142.1 284.2 1421 1973-11-22 2024-10-11 00:23:41.000 1973-11-22 2024-10-11 00:23:41 +1422 1422 1423 142.2 284.40000000000003 1422 1973-11-23 2024-10-11 00:23:42.000 1973-11-23 2024-10-11 00:23:42 +1423 1423 1424 142.3 284.6 1423 1973-11-24 2024-10-11 00:23:43.000 1973-11-24 2024-10-11 00:23:43 +1424 1424 1425 142.4 284.8 1424 1973-11-25 2024-10-11 00:23:44.000 1973-11-25 2024-10-11 00:23:44 +1425 1425 1426 142.5 285 1425 1973-11-26 2024-10-11 00:23:45.000 1973-11-26 2024-10-11 00:23:45 +1426 1426 1427 142.6 285.2 1426 1973-11-27 2024-10-11 00:23:46.000 1973-11-27 2024-10-11 00:23:46 +1427 1427 1428 142.7 285.40000000000003 1427 1973-11-28 2024-10-11 00:23:47.000 1973-11-28 2024-10-11 00:23:47 +1428 1428 1429 142.8 285.6 1428 1973-11-29 2024-10-11 00:23:48.000 1973-11-29 2024-10-11 00:23:48 +1429 1429 1430 142.9 285.8 1429 1973-11-30 2024-10-11 00:23:49.000 1973-11-30 2024-10-11 00:23:49 +1430 1430 1431 143 286 1430 1973-12-01 2024-10-11 00:23:50.000 1973-12-01 2024-10-11 00:23:50 +1431 1431 1432 143.1 286.2 1431 1973-12-02 2024-10-11 00:23:51.000 1973-12-02 2024-10-11 00:23:51 +1432 1432 1433 143.2 286.40000000000003 1432 1973-12-03 2024-10-11 00:23:52.000 1973-12-03 2024-10-11 00:23:52 +1433 1433 1434 143.3 286.6 1433 1973-12-04 2024-10-11 00:23:53.000 1973-12-04 2024-10-11 00:23:53 +1434 1434 1435 143.4 286.8 1434 1973-12-05 2024-10-11 00:23:54.000 1973-12-05 2024-10-11 00:23:54 +1435 1435 1436 143.5 287 1435 1973-12-06 2024-10-11 00:23:55.000 1973-12-06 2024-10-11 00:23:55 +1436 1436 1437 143.6 287.2 1436 1973-12-07 2024-10-11 00:23:56.000 1973-12-07 2024-10-11 00:23:56 +1437 1437 1438 143.7 287.40000000000003 1437 1973-12-08 2024-10-11 00:23:57.000 1973-12-08 2024-10-11 00:23:57 +1438 1438 1439 143.8 287.6 1438 1973-12-09 2024-10-11 00:23:58.000 1973-12-09 2024-10-11 00:23:58 +1439 1439 1440 143.9 287.8 1439 1973-12-10 2024-10-11 00:23:59.000 1973-12-10 2024-10-11 00:23:59 +1440 1440 1441 144 288 1440 1973-12-11 2024-10-11 00:24:00.000 1973-12-11 2024-10-11 00:24:00 +1441 1441 1442 144.1 288.2 1441 1973-12-12 2024-10-11 00:24:01.000 1973-12-12 2024-10-11 00:24:01 +1442 1442 1443 144.2 288.40000000000003 1442 1973-12-13 2024-10-11 00:24:02.000 1973-12-13 2024-10-11 00:24:02 +1443 1443 1444 144.3 288.6 1443 1973-12-14 2024-10-11 00:24:03.000 1973-12-14 2024-10-11 00:24:03 +1444 1444 1445 144.4 288.8 1444 1973-12-15 2024-10-11 00:24:04.000 1973-12-15 2024-10-11 00:24:04 +1445 1445 1446 144.5 289 1445 1973-12-16 2024-10-11 00:24:05.000 1973-12-16 2024-10-11 00:24:05 +1446 1446 1447 144.6 289.2 1446 1973-12-17 2024-10-11 00:24:06.000 1973-12-17 2024-10-11 00:24:06 +1447 1447 1448 144.7 289.40000000000003 1447 1973-12-18 2024-10-11 00:24:07.000 1973-12-18 2024-10-11 00:24:07 +1448 1448 1449 144.8 289.6 1448 1973-12-19 2024-10-11 00:24:08.000 1973-12-19 2024-10-11 00:24:08 +1449 1449 1450 144.9 289.8 1449 1973-12-20 2024-10-11 00:24:09.000 1973-12-20 2024-10-11 00:24:09 +1450 1450 1451 145 290 1450 1973-12-21 2024-10-11 00:24:10.000 1973-12-21 2024-10-11 00:24:10 +1451 1451 1452 145.1 290.2 1451 1973-12-22 2024-10-11 00:24:11.000 1973-12-22 2024-10-11 00:24:11 +1452 1452 1453 145.2 290.40000000000003 1452 1973-12-23 2024-10-11 00:24:12.000 1973-12-23 2024-10-11 00:24:12 +1453 1453 1454 145.3 290.6 1453 1973-12-24 2024-10-11 00:24:13.000 1973-12-24 2024-10-11 00:24:13 +1454 1454 1455 145.4 290.8 1454 1973-12-25 2024-10-11 00:24:14.000 1973-12-25 2024-10-11 00:24:14 +1455 1455 1456 145.5 291 1455 1973-12-26 2024-10-11 00:24:15.000 1973-12-26 2024-10-11 00:24:15 +1456 1456 1457 145.6 291.2 1456 1973-12-27 2024-10-11 00:24:16.000 1973-12-27 2024-10-11 00:24:16 +1457 1457 1458 145.7 291.40000000000003 1457 1973-12-28 2024-10-11 00:24:17.000 1973-12-28 2024-10-11 00:24:17 +1458 1458 1459 145.8 291.6 1458 1973-12-29 2024-10-11 00:24:18.000 1973-12-29 2024-10-11 00:24:18 +1459 1459 1460 145.9 291.8 1459 1973-12-30 2024-10-11 00:24:19.000 1973-12-30 2024-10-11 00:24:19 +1460 1460 1461 146 292 1460 1973-12-31 2024-10-11 00:24:20.000 1973-12-31 2024-10-11 00:24:20 +1461 1461 1462 146.1 292.2 1461 1974-01-01 2024-10-11 00:24:21.000 1974-01-01 2024-10-11 00:24:21 +1462 1462 1463 146.2 292.40000000000003 1462 1974-01-02 2024-10-11 00:24:22.000 1974-01-02 2024-10-11 00:24:22 +1463 1463 1464 146.3 292.6 1463 1974-01-03 2024-10-11 00:24:23.000 1974-01-03 2024-10-11 00:24:23 +1464 1464 1465 146.4 292.8 1464 1974-01-04 2024-10-11 00:24:24.000 1974-01-04 2024-10-11 00:24:24 +1465 1465 1466 146.5 293 1465 1974-01-05 2024-10-11 00:24:25.000 1974-01-05 2024-10-11 00:24:25 +1466 1466 1467 146.6 293.2 1466 1974-01-06 2024-10-11 00:24:26.000 1974-01-06 2024-10-11 00:24:26 +1467 1467 1468 146.7 293.40000000000003 1467 1974-01-07 2024-10-11 00:24:27.000 1974-01-07 2024-10-11 00:24:27 +1468 1468 1469 146.8 293.6 1468 1974-01-08 2024-10-11 00:24:28.000 1974-01-08 2024-10-11 00:24:28 +1469 1469 1470 146.9 293.8 1469 1974-01-09 2024-10-11 00:24:29.000 1974-01-09 2024-10-11 00:24:29 +1470 1470 1471 147 294 1470 1974-01-10 2024-10-11 00:24:30.000 1974-01-10 2024-10-11 00:24:30 +1471 1471 1472 147.1 294.2 1471 1974-01-11 2024-10-11 00:24:31.000 1974-01-11 2024-10-11 00:24:31 +1472 1472 1473 147.2 294.40000000000003 1472 1974-01-12 2024-10-11 00:24:32.000 1974-01-12 2024-10-11 00:24:32 +1473 1473 1474 147.3 294.6 1473 1974-01-13 2024-10-11 00:24:33.000 1974-01-13 2024-10-11 00:24:33 +1474 1474 1475 147.4 294.8 1474 1974-01-14 2024-10-11 00:24:34.000 1974-01-14 2024-10-11 00:24:34 +1475 1475 1476 147.5 295 1475 1974-01-15 2024-10-11 00:24:35.000 1974-01-15 2024-10-11 00:24:35 +1476 1476 1477 147.6 295.2 1476 1974-01-16 2024-10-11 00:24:36.000 1974-01-16 2024-10-11 00:24:36 +1477 1477 1478 147.7 295.40000000000003 1477 1974-01-17 2024-10-11 00:24:37.000 1974-01-17 2024-10-11 00:24:37 +1478 1478 1479 147.8 295.6 1478 1974-01-18 2024-10-11 00:24:38.000 1974-01-18 2024-10-11 00:24:38 +1479 1479 1480 147.9 295.8 1479 1974-01-19 2024-10-11 00:24:39.000 1974-01-19 2024-10-11 00:24:39 +1480 1480 1481 148 296 1480 1974-01-20 2024-10-11 00:24:40.000 1974-01-20 2024-10-11 00:24:40 +1481 1481 1482 148.1 296.2 1481 1974-01-21 2024-10-11 00:24:41.000 1974-01-21 2024-10-11 00:24:41 +1482 1482 1483 148.2 296.40000000000003 1482 1974-01-22 2024-10-11 00:24:42.000 1974-01-22 2024-10-11 00:24:42 +1483 1483 1484 148.3 296.6 1483 1974-01-23 2024-10-11 00:24:43.000 1974-01-23 2024-10-11 00:24:43 +1484 1484 1485 148.4 296.8 1484 1974-01-24 2024-10-11 00:24:44.000 1974-01-24 2024-10-11 00:24:44 +1485 1485 1486 148.5 297 1485 1974-01-25 2024-10-11 00:24:45.000 1974-01-25 2024-10-11 00:24:45 +1486 1486 1487 148.6 297.2 1486 1974-01-26 2024-10-11 00:24:46.000 1974-01-26 2024-10-11 00:24:46 +1487 1487 1488 148.7 297.40000000000003 1487 1974-01-27 2024-10-11 00:24:47.000 1974-01-27 2024-10-11 00:24:47 +1488 1488 1489 148.8 297.6 1488 1974-01-28 2024-10-11 00:24:48.000 1974-01-28 2024-10-11 00:24:48 +1489 1489 1490 148.9 297.8 1489 1974-01-29 2024-10-11 00:24:49.000 1974-01-29 2024-10-11 00:24:49 +1490 1490 1491 149 298 1490 1974-01-30 2024-10-11 00:24:50.000 1974-01-30 2024-10-11 00:24:50 +1491 1491 1492 149.1 298.2 1491 1974-01-31 2024-10-11 00:24:51.000 1974-01-31 2024-10-11 00:24:51 +1492 1492 1493 149.2 298.40000000000003 1492 1974-02-01 2024-10-11 00:24:52.000 1974-02-01 2024-10-11 00:24:52 +1493 1493 1494 149.3 298.6 1493 1974-02-02 2024-10-11 00:24:53.000 1974-02-02 2024-10-11 00:24:53 +1494 1494 1495 149.4 298.8 1494 1974-02-03 2024-10-11 00:24:54.000 1974-02-03 2024-10-11 00:24:54 +1495 1495 1496 149.5 299 1495 1974-02-04 2024-10-11 00:24:55.000 1974-02-04 2024-10-11 00:24:55 +1496 1496 1497 149.6 299.2 1496 1974-02-05 2024-10-11 00:24:56.000 1974-02-05 2024-10-11 00:24:56 +1497 1497 1498 149.7 299.40000000000003 1497 1974-02-06 2024-10-11 00:24:57.000 1974-02-06 2024-10-11 00:24:57 +1498 1498 1499 149.8 299.6 1498 1974-02-07 2024-10-11 00:24:58.000 1974-02-07 2024-10-11 00:24:58 +1499 1499 1500 149.9 299.8 1499 1974-02-08 2024-10-11 00:24:59.000 1974-02-08 2024-10-11 00:24:59 +1500 1500 1501 150 300 1500 1974-02-09 2024-10-11 00:25:00.000 1974-02-09 2024-10-11 00:25:00 +1501 1501 1502 150.1 300.2 1501 1974-02-10 2024-10-11 00:25:01.000 1974-02-10 2024-10-11 00:25:01 +1502 1502 1503 150.2 300.40000000000003 1502 1974-02-11 2024-10-11 00:25:02.000 1974-02-11 2024-10-11 00:25:02 +1503 1503 1504 150.3 300.6 1503 1974-02-12 2024-10-11 00:25:03.000 1974-02-12 2024-10-11 00:25:03 +1504 1504 1505 150.4 300.8 1504 1974-02-13 2024-10-11 00:25:04.000 1974-02-13 2024-10-11 00:25:04 +1505 1505 1506 150.5 301 1505 1974-02-14 2024-10-11 00:25:05.000 1974-02-14 2024-10-11 00:25:05 +1506 1506 1507 150.6 301.2 1506 1974-02-15 2024-10-11 00:25:06.000 1974-02-15 2024-10-11 00:25:06 +1507 1507 1508 150.7 301.40000000000003 1507 1974-02-16 2024-10-11 00:25:07.000 1974-02-16 2024-10-11 00:25:07 +1508 1508 1509 150.8 301.6 1508 1974-02-17 2024-10-11 00:25:08.000 1974-02-17 2024-10-11 00:25:08 +1509 1509 1510 150.9 301.8 1509 1974-02-18 2024-10-11 00:25:09.000 1974-02-18 2024-10-11 00:25:09 +1510 1510 1511 151 302 1510 1974-02-19 2024-10-11 00:25:10.000 1974-02-19 2024-10-11 00:25:10 +1511 1511 1512 151.1 302.2 1511 1974-02-20 2024-10-11 00:25:11.000 1974-02-20 2024-10-11 00:25:11 +1512 1512 1513 151.2 302.40000000000003 1512 1974-02-21 2024-10-11 00:25:12.000 1974-02-21 2024-10-11 00:25:12 +1513 1513 1514 151.3 302.6 1513 1974-02-22 2024-10-11 00:25:13.000 1974-02-22 2024-10-11 00:25:13 +1514 1514 1515 151.4 302.8 1514 1974-02-23 2024-10-11 00:25:14.000 1974-02-23 2024-10-11 00:25:14 +1515 1515 1516 151.5 303 1515 1974-02-24 2024-10-11 00:25:15.000 1974-02-24 2024-10-11 00:25:15 +1516 1516 1517 151.6 303.2 1516 1974-02-25 2024-10-11 00:25:16.000 1974-02-25 2024-10-11 00:25:16 +1517 1517 1518 151.7 303.40000000000003 1517 1974-02-26 2024-10-11 00:25:17.000 1974-02-26 2024-10-11 00:25:17 +1518 1518 1519 151.8 303.6 1518 1974-02-27 2024-10-11 00:25:18.000 1974-02-27 2024-10-11 00:25:18 +1519 1519 1520 151.9 303.8 1519 1974-02-28 2024-10-11 00:25:19.000 1974-02-28 2024-10-11 00:25:19 +1520 1520 1521 152 304 1520 1974-03-01 2024-10-11 00:25:20.000 1974-03-01 2024-10-11 00:25:20 +1521 1521 1522 152.1 304.2 1521 1974-03-02 2024-10-11 00:25:21.000 1974-03-02 2024-10-11 00:25:21 +1522 1522 1523 152.2 304.40000000000003 1522 1974-03-03 2024-10-11 00:25:22.000 1974-03-03 2024-10-11 00:25:22 +1523 1523 1524 152.3 304.6 1523 1974-03-04 2024-10-11 00:25:23.000 1974-03-04 2024-10-11 00:25:23 +1524 1524 1525 152.4 304.8 1524 1974-03-05 2024-10-11 00:25:24.000 1974-03-05 2024-10-11 00:25:24 +1525 1525 1526 152.5 305 1525 1974-03-06 2024-10-11 00:25:25.000 1974-03-06 2024-10-11 00:25:25 +1526 1526 1527 152.6 305.2 1526 1974-03-07 2024-10-11 00:25:26.000 1974-03-07 2024-10-11 00:25:26 +1527 1527 1528 152.7 305.40000000000003 1527 1974-03-08 2024-10-11 00:25:27.000 1974-03-08 2024-10-11 00:25:27 +1528 1528 1529 152.8 305.6 1528 1974-03-09 2024-10-11 00:25:28.000 1974-03-09 2024-10-11 00:25:28 +1529 1529 1530 152.9 305.8 1529 1974-03-10 2024-10-11 00:25:29.000 1974-03-10 2024-10-11 00:25:29 +1530 1530 1531 153 306 1530 1974-03-11 2024-10-11 00:25:30.000 1974-03-11 2024-10-11 00:25:30 +1531 1531 1532 153.1 306.2 1531 1974-03-12 2024-10-11 00:25:31.000 1974-03-12 2024-10-11 00:25:31 +1532 1532 1533 153.2 306.40000000000003 1532 1974-03-13 2024-10-11 00:25:32.000 1974-03-13 2024-10-11 00:25:32 +1533 1533 1534 153.3 306.6 1533 1974-03-14 2024-10-11 00:25:33.000 1974-03-14 2024-10-11 00:25:33 +1534 1534 1535 153.4 306.8 1534 1974-03-15 2024-10-11 00:25:34.000 1974-03-15 2024-10-11 00:25:34 +1535 1535 1536 153.5 307 1535 1974-03-16 2024-10-11 00:25:35.000 1974-03-16 2024-10-11 00:25:35 +1536 1536 1537 153.6 307.20000000000005 1536 1974-03-17 2024-10-11 00:25:36.000 1974-03-17 2024-10-11 00:25:36 +1537 1537 1538 153.7 307.40000000000003 1537 1974-03-18 2024-10-11 00:25:37.000 1974-03-18 2024-10-11 00:25:37 +1538 1538 1539 153.8 307.6 1538 1974-03-19 2024-10-11 00:25:38.000 1974-03-19 2024-10-11 00:25:38 +1539 1539 1540 153.9 307.8 1539 1974-03-20 2024-10-11 00:25:39.000 1974-03-20 2024-10-11 00:25:39 +1540 1540 1541 154 308 1540 1974-03-21 2024-10-11 00:25:40.000 1974-03-21 2024-10-11 00:25:40 +1541 1541 1542 154.1 308.20000000000005 1541 1974-03-22 2024-10-11 00:25:41.000 1974-03-22 2024-10-11 00:25:41 +1542 1542 1543 154.2 308.40000000000003 1542 1974-03-23 2024-10-11 00:25:42.000 1974-03-23 2024-10-11 00:25:42 +1543 1543 1544 154.3 308.6 1543 1974-03-24 2024-10-11 00:25:43.000 1974-03-24 2024-10-11 00:25:43 +1544 1544 1545 154.4 308.8 1544 1974-03-25 2024-10-11 00:25:44.000 1974-03-25 2024-10-11 00:25:44 +1545 1545 1546 154.5 309 1545 1974-03-26 2024-10-11 00:25:45.000 1974-03-26 2024-10-11 00:25:45 +1546 1546 1547 154.6 309.20000000000005 1546 1974-03-27 2024-10-11 00:25:46.000 1974-03-27 2024-10-11 00:25:46 +1547 1547 1548 154.7 309.40000000000003 1547 1974-03-28 2024-10-11 00:25:47.000 1974-03-28 2024-10-11 00:25:47 +1548 1548 1549 154.8 309.6 1548 1974-03-29 2024-10-11 00:25:48.000 1974-03-29 2024-10-11 00:25:48 +1549 1549 1550 154.9 309.8 1549 1974-03-30 2024-10-11 00:25:49.000 1974-03-30 2024-10-11 00:25:49 +1550 1550 1551 155 310 1550 1974-03-31 2024-10-11 00:25:50.000 1974-03-31 2024-10-11 00:25:50 +1551 1551 1552 155.1 310.20000000000005 1551 1974-04-01 2024-10-11 00:25:51.000 1974-04-01 2024-10-11 00:25:51 +1552 1552 1553 155.2 310.40000000000003 1552 1974-04-02 2024-10-11 00:25:52.000 1974-04-02 2024-10-11 00:25:52 +1553 1553 1554 155.3 310.6 1553 1974-04-03 2024-10-11 00:25:53.000 1974-04-03 2024-10-11 00:25:53 +1554 1554 1555 155.4 310.8 1554 1974-04-04 2024-10-11 00:25:54.000 1974-04-04 2024-10-11 00:25:54 +1555 1555 1556 155.5 311 1555 1974-04-05 2024-10-11 00:25:55.000 1974-04-05 2024-10-11 00:25:55 +1556 1556 1557 155.6 311.20000000000005 1556 1974-04-06 2024-10-11 00:25:56.000 1974-04-06 2024-10-11 00:25:56 +1557 1557 1558 155.7 311.40000000000003 1557 1974-04-07 2024-10-11 00:25:57.000 1974-04-07 2024-10-11 00:25:57 +1558 1558 1559 155.8 311.6 1558 1974-04-08 2024-10-11 00:25:58.000 1974-04-08 2024-10-11 00:25:58 +1559 1559 1560 155.9 311.8 1559 1974-04-09 2024-10-11 00:25:59.000 1974-04-09 2024-10-11 00:25:59 +1560 1560 1561 156 312 1560 1974-04-10 2024-10-11 00:26:00.000 1974-04-10 2024-10-11 00:26:00 +1561 1561 1562 156.1 312.20000000000005 1561 1974-04-11 2024-10-11 00:26:01.000 1974-04-11 2024-10-11 00:26:01 +1562 1562 1563 156.2 312.40000000000003 1562 1974-04-12 2024-10-11 00:26:02.000 1974-04-12 2024-10-11 00:26:02 +1563 1563 1564 156.3 312.6 1563 1974-04-13 2024-10-11 00:26:03.000 1974-04-13 2024-10-11 00:26:03 +1564 1564 1565 156.4 312.8 1564 1974-04-14 2024-10-11 00:26:04.000 1974-04-14 2024-10-11 00:26:04 +1565 1565 1566 156.5 313 1565 1974-04-15 2024-10-11 00:26:05.000 1974-04-15 2024-10-11 00:26:05 +1566 1566 1567 156.6 313.20000000000005 1566 1974-04-16 2024-10-11 00:26:06.000 1974-04-16 2024-10-11 00:26:06 +1567 1567 1568 156.7 313.40000000000003 1567 1974-04-17 2024-10-11 00:26:07.000 1974-04-17 2024-10-11 00:26:07 +1568 1568 1569 156.8 313.6 1568 1974-04-18 2024-10-11 00:26:08.000 1974-04-18 2024-10-11 00:26:08 +1569 1569 1570 156.9 313.8 1569 1974-04-19 2024-10-11 00:26:09.000 1974-04-19 2024-10-11 00:26:09 +1570 1570 1571 157 314 1570 1974-04-20 2024-10-11 00:26:10.000 1974-04-20 2024-10-11 00:26:10 +1571 1571 1572 157.1 314.20000000000005 1571 1974-04-21 2024-10-11 00:26:11.000 1974-04-21 2024-10-11 00:26:11 +1572 1572 1573 157.2 314.40000000000003 1572 1974-04-22 2024-10-11 00:26:12.000 1974-04-22 2024-10-11 00:26:12 +1573 1573 1574 157.3 314.6 1573 1974-04-23 2024-10-11 00:26:13.000 1974-04-23 2024-10-11 00:26:13 +1574 1574 1575 157.4 314.8 1574 1974-04-24 2024-10-11 00:26:14.000 1974-04-24 2024-10-11 00:26:14 +1575 1575 1576 157.5 315 1575 1974-04-25 2024-10-11 00:26:15.000 1974-04-25 2024-10-11 00:26:15 +1576 1576 1577 157.6 315.20000000000005 1576 1974-04-26 2024-10-11 00:26:16.000 1974-04-26 2024-10-11 00:26:16 +1577 1577 1578 157.7 315.40000000000003 1577 1974-04-27 2024-10-11 00:26:17.000 1974-04-27 2024-10-11 00:26:17 +1578 1578 1579 157.8 315.6 1578 1974-04-28 2024-10-11 00:26:18.000 1974-04-28 2024-10-11 00:26:18 +1579 1579 1580 157.9 315.8 1579 1974-04-29 2024-10-11 00:26:19.000 1974-04-29 2024-10-11 00:26:19 +1580 1580 1581 158 316 1580 1974-04-30 2024-10-11 00:26:20.000 1974-04-30 2024-10-11 00:26:20 +1581 1581 1582 158.1 316.20000000000005 1581 1974-05-01 2024-10-11 00:26:21.000 1974-05-01 2024-10-11 00:26:21 +1582 1582 1583 158.2 316.40000000000003 1582 1974-05-02 2024-10-11 00:26:22.000 1974-05-02 2024-10-11 00:26:22 +1583 1583 1584 158.3 316.6 1583 1974-05-03 2024-10-11 00:26:23.000 1974-05-03 2024-10-11 00:26:23 +1584 1584 1585 158.4 316.8 1584 1974-05-04 2024-10-11 00:26:24.000 1974-05-04 2024-10-11 00:26:24 +1585 1585 1586 158.5 317 1585 1974-05-05 2024-10-11 00:26:25.000 1974-05-05 2024-10-11 00:26:25 +1586 1586 1587 158.6 317.20000000000005 1586 1974-05-06 2024-10-11 00:26:26.000 1974-05-06 2024-10-11 00:26:26 +1587 1587 1588 158.7 317.40000000000003 1587 1974-05-07 2024-10-11 00:26:27.000 1974-05-07 2024-10-11 00:26:27 +1588 1588 1589 158.8 317.6 1588 1974-05-08 2024-10-11 00:26:28.000 1974-05-08 2024-10-11 00:26:28 +1589 1589 1590 158.9 317.8 1589 1974-05-09 2024-10-11 00:26:29.000 1974-05-09 2024-10-11 00:26:29 +1590 1590 1591 159 318 1590 1974-05-10 2024-10-11 00:26:30.000 1974-05-10 2024-10-11 00:26:30 +1591 1591 1592 159.1 318.20000000000005 1591 1974-05-11 2024-10-11 00:26:31.000 1974-05-11 2024-10-11 00:26:31 +1592 1592 1593 159.2 318.40000000000003 1592 1974-05-12 2024-10-11 00:26:32.000 1974-05-12 2024-10-11 00:26:32 +1593 1593 1594 159.3 318.6 1593 1974-05-13 2024-10-11 00:26:33.000 1974-05-13 2024-10-11 00:26:33 +1594 1594 1595 159.4 318.8 1594 1974-05-14 2024-10-11 00:26:34.000 1974-05-14 2024-10-11 00:26:34 +1595 1595 1596 159.5 319 1595 1974-05-15 2024-10-11 00:26:35.000 1974-05-15 2024-10-11 00:26:35 +1596 1596 1597 159.6 319.20000000000005 1596 1974-05-16 2024-10-11 00:26:36.000 1974-05-16 2024-10-11 00:26:36 +1597 1597 1598 159.7 319.40000000000003 1597 1974-05-17 2024-10-11 00:26:37.000 1974-05-17 2024-10-11 00:26:37 +1598 1598 1599 159.8 319.6 1598 1974-05-18 2024-10-11 00:26:38.000 1974-05-18 2024-10-11 00:26:38 +1599 1599 1600 159.9 319.8 1599 1974-05-19 2024-10-11 00:26:39.000 1974-05-19 2024-10-11 00:26:39 +1600 1600 1601 160 320 1600 1974-05-20 2024-10-11 00:26:40.000 1974-05-20 2024-10-11 00:26:40 +1601 1601 1602 160.1 320.20000000000005 1601 1974-05-21 2024-10-11 00:26:41.000 1974-05-21 2024-10-11 00:26:41 +1602 1602 1603 160.2 320.40000000000003 1602 1974-05-22 2024-10-11 00:26:42.000 1974-05-22 2024-10-11 00:26:42 +1603 1603 1604 160.3 320.6 1603 1974-05-23 2024-10-11 00:26:43.000 1974-05-23 2024-10-11 00:26:43 +1604 1604 1605 160.4 320.8 1604 1974-05-24 2024-10-11 00:26:44.000 1974-05-24 2024-10-11 00:26:44 +1605 1605 1606 160.5 321 1605 1974-05-25 2024-10-11 00:26:45.000 1974-05-25 2024-10-11 00:26:45 +1606 1606 1607 160.6 321.20000000000005 1606 1974-05-26 2024-10-11 00:26:46.000 1974-05-26 2024-10-11 00:26:46 +1607 1607 1608 160.7 321.40000000000003 1607 1974-05-27 2024-10-11 00:26:47.000 1974-05-27 2024-10-11 00:26:47 +1608 1608 1609 160.8 321.6 1608 1974-05-28 2024-10-11 00:26:48.000 1974-05-28 2024-10-11 00:26:48 +1609 1609 1610 160.9 321.8 1609 1974-05-29 2024-10-11 00:26:49.000 1974-05-29 2024-10-11 00:26:49 +1610 1610 1611 161 322 1610 1974-05-30 2024-10-11 00:26:50.000 1974-05-30 2024-10-11 00:26:50 +1611 1611 1612 161.1 322.20000000000005 1611 1974-05-31 2024-10-11 00:26:51.000 1974-05-31 2024-10-11 00:26:51 +1612 1612 1613 161.2 322.40000000000003 1612 1974-06-01 2024-10-11 00:26:52.000 1974-06-01 2024-10-11 00:26:52 +1613 1613 1614 161.3 322.6 1613 1974-06-02 2024-10-11 00:26:53.000 1974-06-02 2024-10-11 00:26:53 +1614 1614 1615 161.4 322.8 1614 1974-06-03 2024-10-11 00:26:54.000 1974-06-03 2024-10-11 00:26:54 +1615 1615 1616 161.5 323 1615 1974-06-04 2024-10-11 00:26:55.000 1974-06-04 2024-10-11 00:26:55 +1616 1616 1617 161.6 323.20000000000005 1616 1974-06-05 2024-10-11 00:26:56.000 1974-06-05 2024-10-11 00:26:56 +1617 1617 1618 161.7 323.40000000000003 1617 1974-06-06 2024-10-11 00:26:57.000 1974-06-06 2024-10-11 00:26:57 +1618 1618 1619 161.8 323.6 1618 1974-06-07 2024-10-11 00:26:58.000 1974-06-07 2024-10-11 00:26:58 +1619 1619 1620 161.9 323.8 1619 1974-06-08 2024-10-11 00:26:59.000 1974-06-08 2024-10-11 00:26:59 +1620 1620 1621 162 324 1620 1974-06-09 2024-10-11 00:27:00.000 1974-06-09 2024-10-11 00:27:00 +1621 1621 1622 162.1 324.20000000000005 1621 1974-06-10 2024-10-11 00:27:01.000 1974-06-10 2024-10-11 00:27:01 +1622 1622 1623 162.2 324.40000000000003 1622 1974-06-11 2024-10-11 00:27:02.000 1974-06-11 2024-10-11 00:27:02 +1623 1623 1624 162.3 324.6 1623 1974-06-12 2024-10-11 00:27:03.000 1974-06-12 2024-10-11 00:27:03 +1624 1624 1625 162.4 324.8 1624 1974-06-13 2024-10-11 00:27:04.000 1974-06-13 2024-10-11 00:27:04 +1625 1625 1626 162.5 325 1625 1974-06-14 2024-10-11 00:27:05.000 1974-06-14 2024-10-11 00:27:05 +1626 1626 1627 162.6 325.20000000000005 1626 1974-06-15 2024-10-11 00:27:06.000 1974-06-15 2024-10-11 00:27:06 +1627 1627 1628 162.7 325.40000000000003 1627 1974-06-16 2024-10-11 00:27:07.000 1974-06-16 2024-10-11 00:27:07 +1628 1628 1629 162.8 325.6 1628 1974-06-17 2024-10-11 00:27:08.000 1974-06-17 2024-10-11 00:27:08 +1629 1629 1630 162.9 325.8 1629 1974-06-18 2024-10-11 00:27:09.000 1974-06-18 2024-10-11 00:27:09 +1630 1630 1631 163 326 1630 1974-06-19 2024-10-11 00:27:10.000 1974-06-19 2024-10-11 00:27:10 +1631 1631 1632 163.1 326.20000000000005 1631 1974-06-20 2024-10-11 00:27:11.000 1974-06-20 2024-10-11 00:27:11 +1632 1632 1633 163.2 326.40000000000003 1632 1974-06-21 2024-10-11 00:27:12.000 1974-06-21 2024-10-11 00:27:12 +1633 1633 1634 163.3 326.6 1633 1974-06-22 2024-10-11 00:27:13.000 1974-06-22 2024-10-11 00:27:13 +1634 1634 1635 163.4 326.8 1634 1974-06-23 2024-10-11 00:27:14.000 1974-06-23 2024-10-11 00:27:14 +1635 1635 1636 163.5 327 1635 1974-06-24 2024-10-11 00:27:15.000 1974-06-24 2024-10-11 00:27:15 +1636 1636 1637 163.6 327.20000000000005 1636 1974-06-25 2024-10-11 00:27:16.000 1974-06-25 2024-10-11 00:27:16 +1637 1637 1638 163.7 327.40000000000003 1637 1974-06-26 2024-10-11 00:27:17.000 1974-06-26 2024-10-11 00:27:17 +1638 1638 1639 163.8 327.6 1638 1974-06-27 2024-10-11 00:27:18.000 1974-06-27 2024-10-11 00:27:18 +1639 1639 1640 163.9 327.8 1639 1974-06-28 2024-10-11 00:27:19.000 1974-06-28 2024-10-11 00:27:19 +1640 1640 1641 164 328 1640 1974-06-29 2024-10-11 00:27:20.000 1974-06-29 2024-10-11 00:27:20 +1641 1641 1642 164.1 328.20000000000005 1641 1974-06-30 2024-10-11 00:27:21.000 1974-06-30 2024-10-11 00:27:21 +1642 1642 1643 164.2 328.40000000000003 1642 1974-07-01 2024-10-11 00:27:22.000 1974-07-01 2024-10-11 00:27:22 +1643 1643 1644 164.3 328.6 1643 1974-07-02 2024-10-11 00:27:23.000 1974-07-02 2024-10-11 00:27:23 +1644 1644 1645 164.4 328.8 1644 1974-07-03 2024-10-11 00:27:24.000 1974-07-03 2024-10-11 00:27:24 +1645 1645 1646 164.5 329 1645 1974-07-04 2024-10-11 00:27:25.000 1974-07-04 2024-10-11 00:27:25 +1646 1646 1647 164.6 329.20000000000005 1646 1974-07-05 2024-10-11 00:27:26.000 1974-07-05 2024-10-11 00:27:26 +1647 1647 1648 164.7 329.40000000000003 1647 1974-07-06 2024-10-11 00:27:27.000 1974-07-06 2024-10-11 00:27:27 +1648 1648 1649 164.8 329.6 1648 1974-07-07 2024-10-11 00:27:28.000 1974-07-07 2024-10-11 00:27:28 +1649 1649 1650 164.9 329.8 1649 1974-07-08 2024-10-11 00:27:29.000 1974-07-08 2024-10-11 00:27:29 +1650 1650 1651 165 330 1650 1974-07-09 2024-10-11 00:27:30.000 1974-07-09 2024-10-11 00:27:30 +1651 1651 1652 165.1 330.20000000000005 1651 1974-07-10 2024-10-11 00:27:31.000 1974-07-10 2024-10-11 00:27:31 +1652 1652 1653 165.2 330.40000000000003 1652 1974-07-11 2024-10-11 00:27:32.000 1974-07-11 2024-10-11 00:27:32 +1653 1653 1654 165.3 330.6 1653 1974-07-12 2024-10-11 00:27:33.000 1974-07-12 2024-10-11 00:27:33 +1654 1654 1655 165.4 330.8 1654 1974-07-13 2024-10-11 00:27:34.000 1974-07-13 2024-10-11 00:27:34 +1655 1655 1656 165.5 331 1655 1974-07-14 2024-10-11 00:27:35.000 1974-07-14 2024-10-11 00:27:35 +1656 1656 1657 165.6 331.20000000000005 1656 1974-07-15 2024-10-11 00:27:36.000 1974-07-15 2024-10-11 00:27:36 +1657 1657 1658 165.7 331.40000000000003 1657 1974-07-16 2024-10-11 00:27:37.000 1974-07-16 2024-10-11 00:27:37 +1658 1658 1659 165.8 331.6 1658 1974-07-17 2024-10-11 00:27:38.000 1974-07-17 2024-10-11 00:27:38 +1659 1659 1660 165.9 331.8 1659 1974-07-18 2024-10-11 00:27:39.000 1974-07-18 2024-10-11 00:27:39 +1660 1660 1661 166 332 1660 1974-07-19 2024-10-11 00:27:40.000 1974-07-19 2024-10-11 00:27:40 +1661 1661 1662 166.1 332.20000000000005 1661 1974-07-20 2024-10-11 00:27:41.000 1974-07-20 2024-10-11 00:27:41 +1662 1662 1663 166.2 332.40000000000003 1662 1974-07-21 2024-10-11 00:27:42.000 1974-07-21 2024-10-11 00:27:42 +1663 1663 1664 166.3 332.6 1663 1974-07-22 2024-10-11 00:27:43.000 1974-07-22 2024-10-11 00:27:43 +1664 1664 1665 166.4 332.8 1664 1974-07-23 2024-10-11 00:27:44.000 1974-07-23 2024-10-11 00:27:44 +1665 1665 1666 166.5 333 1665 1974-07-24 2024-10-11 00:27:45.000 1974-07-24 2024-10-11 00:27:45 +1666 1666 1667 166.6 333.20000000000005 1666 1974-07-25 2024-10-11 00:27:46.000 1974-07-25 2024-10-11 00:27:46 +1667 1667 1668 166.7 333.40000000000003 1667 1974-07-26 2024-10-11 00:27:47.000 1974-07-26 2024-10-11 00:27:47 +1668 1668 1669 166.8 333.6 1668 1974-07-27 2024-10-11 00:27:48.000 1974-07-27 2024-10-11 00:27:48 +1669 1669 1670 166.9 333.8 1669 1974-07-28 2024-10-11 00:27:49.000 1974-07-28 2024-10-11 00:27:49 +1670 1670 1671 167 334 1670 1974-07-29 2024-10-11 00:27:50.000 1974-07-29 2024-10-11 00:27:50 +1671 1671 1672 167.1 334.20000000000005 1671 1974-07-30 2024-10-11 00:27:51.000 1974-07-30 2024-10-11 00:27:51 +1672 1672 1673 167.2 334.40000000000003 1672 1974-07-31 2024-10-11 00:27:52.000 1974-07-31 2024-10-11 00:27:52 +1673 1673 1674 167.3 334.6 1673 1974-08-01 2024-10-11 00:27:53.000 1974-08-01 2024-10-11 00:27:53 +1674 1674 1675 167.4 334.8 1674 1974-08-02 2024-10-11 00:27:54.000 1974-08-02 2024-10-11 00:27:54 +1675 1675 1676 167.5 335 1675 1974-08-03 2024-10-11 00:27:55.000 1974-08-03 2024-10-11 00:27:55 +1676 1676 1677 167.6 335.20000000000005 1676 1974-08-04 2024-10-11 00:27:56.000 1974-08-04 2024-10-11 00:27:56 +1677 1677 1678 167.7 335.40000000000003 1677 1974-08-05 2024-10-11 00:27:57.000 1974-08-05 2024-10-11 00:27:57 +1678 1678 1679 167.8 335.6 1678 1974-08-06 2024-10-11 00:27:58.000 1974-08-06 2024-10-11 00:27:58 +1679 1679 1680 167.9 335.8 1679 1974-08-07 2024-10-11 00:27:59.000 1974-08-07 2024-10-11 00:27:59 +1680 1680 1681 168 336 1680 1974-08-08 2024-10-11 00:28:00.000 1974-08-08 2024-10-11 00:28:00 +1681 1681 1682 168.1 336.20000000000005 1681 1974-08-09 2024-10-11 00:28:01.000 1974-08-09 2024-10-11 00:28:01 +1682 1682 1683 168.2 336.40000000000003 1682 1974-08-10 2024-10-11 00:28:02.000 1974-08-10 2024-10-11 00:28:02 +1683 1683 1684 168.3 336.6 1683 1974-08-11 2024-10-11 00:28:03.000 1974-08-11 2024-10-11 00:28:03 +1684 1684 1685 168.4 336.8 1684 1974-08-12 2024-10-11 00:28:04.000 1974-08-12 2024-10-11 00:28:04 +1685 1685 1686 168.5 337 1685 1974-08-13 2024-10-11 00:28:05.000 1974-08-13 2024-10-11 00:28:05 +1686 1686 1687 168.6 337.20000000000005 1686 1974-08-14 2024-10-11 00:28:06.000 1974-08-14 2024-10-11 00:28:06 +1687 1687 1688 168.7 337.40000000000003 1687 1974-08-15 2024-10-11 00:28:07.000 1974-08-15 2024-10-11 00:28:07 +1688 1688 1689 168.8 337.6 1688 1974-08-16 2024-10-11 00:28:08.000 1974-08-16 2024-10-11 00:28:08 +1689 1689 1690 168.9 337.8 1689 1974-08-17 2024-10-11 00:28:09.000 1974-08-17 2024-10-11 00:28:09 +1690 1690 1691 169 338 1690 1974-08-18 2024-10-11 00:28:10.000 1974-08-18 2024-10-11 00:28:10 +1691 1691 1692 169.1 338.20000000000005 1691 1974-08-19 2024-10-11 00:28:11.000 1974-08-19 2024-10-11 00:28:11 +1692 1692 1693 169.2 338.40000000000003 1692 1974-08-20 2024-10-11 00:28:12.000 1974-08-20 2024-10-11 00:28:12 +1693 1693 1694 169.3 338.6 1693 1974-08-21 2024-10-11 00:28:13.000 1974-08-21 2024-10-11 00:28:13 +1694 1694 1695 169.4 338.8 1694 1974-08-22 2024-10-11 00:28:14.000 1974-08-22 2024-10-11 00:28:14 +1695 1695 1696 169.5 339 1695 1974-08-23 2024-10-11 00:28:15.000 1974-08-23 2024-10-11 00:28:15 +1696 1696 1697 169.6 339.20000000000005 1696 1974-08-24 2024-10-11 00:28:16.000 1974-08-24 2024-10-11 00:28:16 +1697 1697 1698 169.7 339.40000000000003 1697 1974-08-25 2024-10-11 00:28:17.000 1974-08-25 2024-10-11 00:28:17 +1698 1698 1699 169.8 339.6 1698 1974-08-26 2024-10-11 00:28:18.000 1974-08-26 2024-10-11 00:28:18 +1699 1699 1700 169.9 339.8 1699 1974-08-27 2024-10-11 00:28:19.000 1974-08-27 2024-10-11 00:28:19 +1700 1700 1701 170 340 1700 1974-08-28 2024-10-11 00:28:20.000 1974-08-28 2024-10-11 00:28:20 +1701 1701 1702 170.1 340.20000000000005 1701 1974-08-29 2024-10-11 00:28:21.000 1974-08-29 2024-10-11 00:28:21 +1702 1702 1703 170.2 340.40000000000003 1702 1974-08-30 2024-10-11 00:28:22.000 1974-08-30 2024-10-11 00:28:22 +1703 1703 1704 170.3 340.6 1703 1974-08-31 2024-10-11 00:28:23.000 1974-08-31 2024-10-11 00:28:23 +1704 1704 1705 170.4 340.8 1704 1974-09-01 2024-10-11 00:28:24.000 1974-09-01 2024-10-11 00:28:24 +1705 1705 1706 170.5 341 1705 1974-09-02 2024-10-11 00:28:25.000 1974-09-02 2024-10-11 00:28:25 +1706 1706 1707 170.6 341.20000000000005 1706 1974-09-03 2024-10-11 00:28:26.000 1974-09-03 2024-10-11 00:28:26 +1707 1707 1708 170.7 341.40000000000003 1707 1974-09-04 2024-10-11 00:28:27.000 1974-09-04 2024-10-11 00:28:27 +1708 1708 1709 170.8 341.6 1708 1974-09-05 2024-10-11 00:28:28.000 1974-09-05 2024-10-11 00:28:28 +1709 1709 1710 170.9 341.8 1709 1974-09-06 2024-10-11 00:28:29.000 1974-09-06 2024-10-11 00:28:29 +1710 1710 1711 171 342 1710 1974-09-07 2024-10-11 00:28:30.000 1974-09-07 2024-10-11 00:28:30 +1711 1711 1712 171.1 342.20000000000005 1711 1974-09-08 2024-10-11 00:28:31.000 1974-09-08 2024-10-11 00:28:31 +1712 1712 1713 171.2 342.40000000000003 1712 1974-09-09 2024-10-11 00:28:32.000 1974-09-09 2024-10-11 00:28:32 +1713 1713 1714 171.3 342.6 1713 1974-09-10 2024-10-11 00:28:33.000 1974-09-10 2024-10-11 00:28:33 +1714 1714 1715 171.4 342.8 1714 1974-09-11 2024-10-11 00:28:34.000 1974-09-11 2024-10-11 00:28:34 +1715 1715 1716 171.5 343 1715 1974-09-12 2024-10-11 00:28:35.000 1974-09-12 2024-10-11 00:28:35 +1716 1716 1717 171.6 343.20000000000005 1716 1974-09-13 2024-10-11 00:28:36.000 1974-09-13 2024-10-11 00:28:36 +1717 1717 1718 171.7 343.40000000000003 1717 1974-09-14 2024-10-11 00:28:37.000 1974-09-14 2024-10-11 00:28:37 +1718 1718 1719 171.8 343.6 1718 1974-09-15 2024-10-11 00:28:38.000 1974-09-15 2024-10-11 00:28:38 +1719 1719 1720 171.9 343.8 1719 1974-09-16 2024-10-11 00:28:39.000 1974-09-16 2024-10-11 00:28:39 +1720 1720 1721 172 344 1720 1974-09-17 2024-10-11 00:28:40.000 1974-09-17 2024-10-11 00:28:40 +1721 1721 1722 172.1 344.20000000000005 1721 1974-09-18 2024-10-11 00:28:41.000 1974-09-18 2024-10-11 00:28:41 +1722 1722 1723 172.2 344.40000000000003 1722 1974-09-19 2024-10-11 00:28:42.000 1974-09-19 2024-10-11 00:28:42 +1723 1723 1724 172.3 344.6 1723 1974-09-20 2024-10-11 00:28:43.000 1974-09-20 2024-10-11 00:28:43 +1724 1724 1725 172.4 344.8 1724 1974-09-21 2024-10-11 00:28:44.000 1974-09-21 2024-10-11 00:28:44 +1725 1725 1726 172.5 345 1725 1974-09-22 2024-10-11 00:28:45.000 1974-09-22 2024-10-11 00:28:45 +1726 1726 1727 172.6 345.20000000000005 1726 1974-09-23 2024-10-11 00:28:46.000 1974-09-23 2024-10-11 00:28:46 +1727 1727 1728 172.7 345.40000000000003 1727 1974-09-24 2024-10-11 00:28:47.000 1974-09-24 2024-10-11 00:28:47 +1728 1728 1729 172.8 345.6 1728 1974-09-25 2024-10-11 00:28:48.000 1974-09-25 2024-10-11 00:28:48 +1729 1729 1730 172.9 345.8 1729 1974-09-26 2024-10-11 00:28:49.000 1974-09-26 2024-10-11 00:28:49 +1730 1730 1731 173 346 1730 1974-09-27 2024-10-11 00:28:50.000 1974-09-27 2024-10-11 00:28:50 +1731 1731 1732 173.1 346.20000000000005 1731 1974-09-28 2024-10-11 00:28:51.000 1974-09-28 2024-10-11 00:28:51 +1732 1732 1733 173.2 346.40000000000003 1732 1974-09-29 2024-10-11 00:28:52.000 1974-09-29 2024-10-11 00:28:52 +1733 1733 1734 173.3 346.6 1733 1974-09-30 2024-10-11 00:28:53.000 1974-09-30 2024-10-11 00:28:53 +1734 1734 1735 173.4 346.8 1734 1974-10-01 2024-10-11 00:28:54.000 1974-10-01 2024-10-11 00:28:54 +1735 1735 1736 173.5 347 1735 1974-10-02 2024-10-11 00:28:55.000 1974-10-02 2024-10-11 00:28:55 +1736 1736 1737 173.6 347.20000000000005 1736 1974-10-03 2024-10-11 00:28:56.000 1974-10-03 2024-10-11 00:28:56 +1737 1737 1738 173.7 347.40000000000003 1737 1974-10-04 2024-10-11 00:28:57.000 1974-10-04 2024-10-11 00:28:57 +1738 1738 1739 173.8 347.6 1738 1974-10-05 2024-10-11 00:28:58.000 1974-10-05 2024-10-11 00:28:58 +1739 1739 1740 173.9 347.8 1739 1974-10-06 2024-10-11 00:28:59.000 1974-10-06 2024-10-11 00:28:59 +1740 1740 1741 174 348 1740 1974-10-07 2024-10-11 00:29:00.000 1974-10-07 2024-10-11 00:29:00 +1741 1741 1742 174.1 348.20000000000005 1741 1974-10-08 2024-10-11 00:29:01.000 1974-10-08 2024-10-11 00:29:01 +1742 1742 1743 174.2 348.40000000000003 1742 1974-10-09 2024-10-11 00:29:02.000 1974-10-09 2024-10-11 00:29:02 +1743 1743 1744 174.3 348.6 1743 1974-10-10 2024-10-11 00:29:03.000 1974-10-10 2024-10-11 00:29:03 +1744 1744 1745 174.4 348.8 1744 1974-10-11 2024-10-11 00:29:04.000 1974-10-11 2024-10-11 00:29:04 +1745 1745 1746 174.5 349 1745 1974-10-12 2024-10-11 00:29:05.000 1974-10-12 2024-10-11 00:29:05 +1746 1746 1747 174.6 349.20000000000005 1746 1974-10-13 2024-10-11 00:29:06.000 1974-10-13 2024-10-11 00:29:06 +1747 1747 1748 174.7 349.40000000000003 1747 1974-10-14 2024-10-11 00:29:07.000 1974-10-14 2024-10-11 00:29:07 +1748 1748 1749 174.8 349.6 1748 1974-10-15 2024-10-11 00:29:08.000 1974-10-15 2024-10-11 00:29:08 +1749 1749 1750 174.9 349.8 1749 1974-10-16 2024-10-11 00:29:09.000 1974-10-16 2024-10-11 00:29:09 +1750 1750 1751 175 350 1750 1974-10-17 2024-10-11 00:29:10.000 1974-10-17 2024-10-11 00:29:10 +1751 1751 1752 175.1 350.20000000000005 1751 1974-10-18 2024-10-11 00:29:11.000 1974-10-18 2024-10-11 00:29:11 +1752 1752 1753 175.2 350.40000000000003 1752 1974-10-19 2024-10-11 00:29:12.000 1974-10-19 2024-10-11 00:29:12 +1753 1753 1754 175.3 350.6 1753 1974-10-20 2024-10-11 00:29:13.000 1974-10-20 2024-10-11 00:29:13 +1754 1754 1755 175.4 350.8 1754 1974-10-21 2024-10-11 00:29:14.000 1974-10-21 2024-10-11 00:29:14 +1755 1755 1756 175.5 351 1755 1974-10-22 2024-10-11 00:29:15.000 1974-10-22 2024-10-11 00:29:15 +1756 1756 1757 175.6 351.20000000000005 1756 1974-10-23 2024-10-11 00:29:16.000 1974-10-23 2024-10-11 00:29:16 +1757 1757 1758 175.7 351.40000000000003 1757 1974-10-24 2024-10-11 00:29:17.000 1974-10-24 2024-10-11 00:29:17 +1758 1758 1759 175.8 351.6 1758 1974-10-25 2024-10-11 00:29:18.000 1974-10-25 2024-10-11 00:29:18 +1759 1759 1760 175.9 351.8 1759 1974-10-26 2024-10-11 00:29:19.000 1974-10-26 2024-10-11 00:29:19 +1760 1760 1761 176 352 1760 1974-10-27 2024-10-11 00:29:20.000 1974-10-27 2024-10-11 00:29:20 +1761 1761 1762 176.1 352.20000000000005 1761 1974-10-28 2024-10-11 00:29:21.000 1974-10-28 2024-10-11 00:29:21 +1762 1762 1763 176.2 352.40000000000003 1762 1974-10-29 2024-10-11 00:29:22.000 1974-10-29 2024-10-11 00:29:22 +1763 1763 1764 176.3 352.6 1763 1974-10-30 2024-10-11 00:29:23.000 1974-10-30 2024-10-11 00:29:23 +1764 1764 1765 176.4 352.8 1764 1974-10-31 2024-10-11 00:29:24.000 1974-10-31 2024-10-11 00:29:24 +1765 1765 1766 176.5 353 1765 1974-11-01 2024-10-11 00:29:25.000 1974-11-01 2024-10-11 00:29:25 +1766 1766 1767 176.6 353.20000000000005 1766 1974-11-02 2024-10-11 00:29:26.000 1974-11-02 2024-10-11 00:29:26 +1767 1767 1768 176.7 353.40000000000003 1767 1974-11-03 2024-10-11 00:29:27.000 1974-11-03 2024-10-11 00:29:27 +1768 1768 1769 176.8 353.6 1768 1974-11-04 2024-10-11 00:29:28.000 1974-11-04 2024-10-11 00:29:28 +1769 1769 1770 176.9 353.8 1769 1974-11-05 2024-10-11 00:29:29.000 1974-11-05 2024-10-11 00:29:29 +1770 1770 1771 177 354 1770 1974-11-06 2024-10-11 00:29:30.000 1974-11-06 2024-10-11 00:29:30 +1771 1771 1772 177.1 354.20000000000005 1771 1974-11-07 2024-10-11 00:29:31.000 1974-11-07 2024-10-11 00:29:31 +1772 1772 1773 177.2 354.40000000000003 1772 1974-11-08 2024-10-11 00:29:32.000 1974-11-08 2024-10-11 00:29:32 +1773 1773 1774 177.3 354.6 1773 1974-11-09 2024-10-11 00:29:33.000 1974-11-09 2024-10-11 00:29:33 +1774 1774 1775 177.4 354.8 1774 1974-11-10 2024-10-11 00:29:34.000 1974-11-10 2024-10-11 00:29:34 +1775 1775 1776 177.5 355 1775 1974-11-11 2024-10-11 00:29:35.000 1974-11-11 2024-10-11 00:29:35 +1776 1776 1777 177.6 355.20000000000005 1776 1974-11-12 2024-10-11 00:29:36.000 1974-11-12 2024-10-11 00:29:36 +1777 1777 1778 177.7 355.40000000000003 1777 1974-11-13 2024-10-11 00:29:37.000 1974-11-13 2024-10-11 00:29:37 +1778 1778 1779 177.8 355.6 1778 1974-11-14 2024-10-11 00:29:38.000 1974-11-14 2024-10-11 00:29:38 +1779 1779 1780 177.9 355.8 1779 1974-11-15 2024-10-11 00:29:39.000 1974-11-15 2024-10-11 00:29:39 +1780 1780 1781 178 356 1780 1974-11-16 2024-10-11 00:29:40.000 1974-11-16 2024-10-11 00:29:40 +1781 1781 1782 178.1 356.20000000000005 1781 1974-11-17 2024-10-11 00:29:41.000 1974-11-17 2024-10-11 00:29:41 +1782 1782 1783 178.2 356.40000000000003 1782 1974-11-18 2024-10-11 00:29:42.000 1974-11-18 2024-10-11 00:29:42 +1783 1783 1784 178.3 356.6 1783 1974-11-19 2024-10-11 00:29:43.000 1974-11-19 2024-10-11 00:29:43 +1784 1784 1785 178.4 356.8 1784 1974-11-20 2024-10-11 00:29:44.000 1974-11-20 2024-10-11 00:29:44 +1785 1785 1786 178.5 357 1785 1974-11-21 2024-10-11 00:29:45.000 1974-11-21 2024-10-11 00:29:45 +1786 1786 1787 178.6 357.20000000000005 1786 1974-11-22 2024-10-11 00:29:46.000 1974-11-22 2024-10-11 00:29:46 +1787 1787 1788 178.7 357.40000000000003 1787 1974-11-23 2024-10-11 00:29:47.000 1974-11-23 2024-10-11 00:29:47 +1788 1788 1789 178.8 357.6 1788 1974-11-24 2024-10-11 00:29:48.000 1974-11-24 2024-10-11 00:29:48 +1789 1789 1790 178.9 357.8 1789 1974-11-25 2024-10-11 00:29:49.000 1974-11-25 2024-10-11 00:29:49 +1790 1790 1791 179 358 1790 1974-11-26 2024-10-11 00:29:50.000 1974-11-26 2024-10-11 00:29:50 +1791 1791 1792 179.1 358.20000000000005 1791 1974-11-27 2024-10-11 00:29:51.000 1974-11-27 2024-10-11 00:29:51 +1792 1792 1793 179.2 358.40000000000003 1792 1974-11-28 2024-10-11 00:29:52.000 1974-11-28 2024-10-11 00:29:52 +1793 1793 1794 179.3 358.6 1793 1974-11-29 2024-10-11 00:29:53.000 1974-11-29 2024-10-11 00:29:53 +1794 1794 1795 179.4 358.8 1794 1974-11-30 2024-10-11 00:29:54.000 1974-11-30 2024-10-11 00:29:54 +1795 1795 1796 179.5 359 1795 1974-12-01 2024-10-11 00:29:55.000 1974-12-01 2024-10-11 00:29:55 +1796 1796 1797 179.6 359.20000000000005 1796 1974-12-02 2024-10-11 00:29:56.000 1974-12-02 2024-10-11 00:29:56 +1797 1797 1798 179.7 359.40000000000003 1797 1974-12-03 2024-10-11 00:29:57.000 1974-12-03 2024-10-11 00:29:57 +1798 1798 1799 179.8 359.6 1798 1974-12-04 2024-10-11 00:29:58.000 1974-12-04 2024-10-11 00:29:58 +1799 1799 1800 179.9 359.8 1799 1974-12-05 2024-10-11 00:29:59.000 1974-12-05 2024-10-11 00:29:59 +1800 1800 1801 180 360 1800 1974-12-06 2024-10-11 00:30:00.000 1974-12-06 2024-10-11 00:30:00 +1801 1801 1802 180.1 360.20000000000005 1801 1974-12-07 2024-10-11 00:30:01.000 1974-12-07 2024-10-11 00:30:01 +1802 1802 1803 180.2 360.40000000000003 1802 1974-12-08 2024-10-11 00:30:02.000 1974-12-08 2024-10-11 00:30:02 +1803 1803 1804 180.3 360.6 1803 1974-12-09 2024-10-11 00:30:03.000 1974-12-09 2024-10-11 00:30:03 +1804 1804 1805 180.4 360.8 1804 1974-12-10 2024-10-11 00:30:04.000 1974-12-10 2024-10-11 00:30:04 +1805 1805 1806 180.5 361 1805 1974-12-11 2024-10-11 00:30:05.000 1974-12-11 2024-10-11 00:30:05 +1806 1806 1807 180.6 361.20000000000005 1806 1974-12-12 2024-10-11 00:30:06.000 1974-12-12 2024-10-11 00:30:06 +1807 1807 1808 180.7 361.40000000000003 1807 1974-12-13 2024-10-11 00:30:07.000 1974-12-13 2024-10-11 00:30:07 +1808 1808 1809 180.8 361.6 1808 1974-12-14 2024-10-11 00:30:08.000 1974-12-14 2024-10-11 00:30:08 +1809 1809 1810 180.9 361.8 1809 1974-12-15 2024-10-11 00:30:09.000 1974-12-15 2024-10-11 00:30:09 +1810 1810 1811 181 362 1810 1974-12-16 2024-10-11 00:30:10.000 1974-12-16 2024-10-11 00:30:10 +1811 1811 1812 181.1 362.20000000000005 1811 1974-12-17 2024-10-11 00:30:11.000 1974-12-17 2024-10-11 00:30:11 +1812 1812 1813 181.2 362.40000000000003 1812 1974-12-18 2024-10-11 00:30:12.000 1974-12-18 2024-10-11 00:30:12 +1813 1813 1814 181.3 362.6 1813 1974-12-19 2024-10-11 00:30:13.000 1974-12-19 2024-10-11 00:30:13 +1814 1814 1815 181.4 362.8 1814 1974-12-20 2024-10-11 00:30:14.000 1974-12-20 2024-10-11 00:30:14 +1815 1815 1816 181.5 363 1815 1974-12-21 2024-10-11 00:30:15.000 1974-12-21 2024-10-11 00:30:15 +1816 1816 1817 181.6 363.20000000000005 1816 1974-12-22 2024-10-11 00:30:16.000 1974-12-22 2024-10-11 00:30:16 +1817 1817 1818 181.7 363.40000000000003 1817 1974-12-23 2024-10-11 00:30:17.000 1974-12-23 2024-10-11 00:30:17 +1818 1818 1819 181.8 363.6 1818 1974-12-24 2024-10-11 00:30:18.000 1974-12-24 2024-10-11 00:30:18 +1819 1819 1820 181.9 363.8 1819 1974-12-25 2024-10-11 00:30:19.000 1974-12-25 2024-10-11 00:30:19 +1820 1820 1821 182 364 1820 1974-12-26 2024-10-11 00:30:20.000 1974-12-26 2024-10-11 00:30:20 +1821 1821 1822 182.1 364.20000000000005 1821 1974-12-27 2024-10-11 00:30:21.000 1974-12-27 2024-10-11 00:30:21 +1822 1822 1823 182.2 364.40000000000003 1822 1974-12-28 2024-10-11 00:30:22.000 1974-12-28 2024-10-11 00:30:22 +1823 1823 1824 182.3 364.6 1823 1974-12-29 2024-10-11 00:30:23.000 1974-12-29 2024-10-11 00:30:23 +1824 1824 1825 182.4 364.8 1824 1974-12-30 2024-10-11 00:30:24.000 1974-12-30 2024-10-11 00:30:24 +1825 1825 1826 182.5 365 1825 1974-12-31 2024-10-11 00:30:25.000 1974-12-31 2024-10-11 00:30:25 +1826 1826 1827 182.6 365.20000000000005 1826 1975-01-01 2024-10-11 00:30:26.000 1975-01-01 2024-10-11 00:30:26 +1827 1827 1828 182.7 365.40000000000003 1827 1975-01-02 2024-10-11 00:30:27.000 1975-01-02 2024-10-11 00:30:27 +1828 1828 1829 182.8 365.6 1828 1975-01-03 2024-10-11 00:30:28.000 1975-01-03 2024-10-11 00:30:28 +1829 1829 1830 182.9 365.8 1829 1975-01-04 2024-10-11 00:30:29.000 1975-01-04 2024-10-11 00:30:29 +1830 1830 1831 183 366 1830 1975-01-05 2024-10-11 00:30:30.000 1975-01-05 2024-10-11 00:30:30 +1831 1831 1832 183.1 366.20000000000005 1831 1975-01-06 2024-10-11 00:30:31.000 1975-01-06 2024-10-11 00:30:31 +1832 1832 1833 183.2 366.40000000000003 1832 1975-01-07 2024-10-11 00:30:32.000 1975-01-07 2024-10-11 00:30:32 +1833 1833 1834 183.3 366.6 1833 1975-01-08 2024-10-11 00:30:33.000 1975-01-08 2024-10-11 00:30:33 +1834 1834 1835 183.4 366.8 1834 1975-01-09 2024-10-11 00:30:34.000 1975-01-09 2024-10-11 00:30:34 +1835 1835 1836 183.5 367 1835 1975-01-10 2024-10-11 00:30:35.000 1975-01-10 2024-10-11 00:30:35 +1836 1836 1837 183.6 367.20000000000005 1836 1975-01-11 2024-10-11 00:30:36.000 1975-01-11 2024-10-11 00:30:36 +1837 1837 1838 183.7 367.40000000000003 1837 1975-01-12 2024-10-11 00:30:37.000 1975-01-12 2024-10-11 00:30:37 +1838 1838 1839 183.8 367.6 1838 1975-01-13 2024-10-11 00:30:38.000 1975-01-13 2024-10-11 00:30:38 +1839 1839 1840 183.9 367.8 1839 1975-01-14 2024-10-11 00:30:39.000 1975-01-14 2024-10-11 00:30:39 +1840 1840 1841 184 368 1840 1975-01-15 2024-10-11 00:30:40.000 1975-01-15 2024-10-11 00:30:40 +1841 1841 1842 184.1 368.20000000000005 1841 1975-01-16 2024-10-11 00:30:41.000 1975-01-16 2024-10-11 00:30:41 +1842 1842 1843 184.2 368.40000000000003 1842 1975-01-17 2024-10-11 00:30:42.000 1975-01-17 2024-10-11 00:30:42 +1843 1843 1844 184.3 368.6 1843 1975-01-18 2024-10-11 00:30:43.000 1975-01-18 2024-10-11 00:30:43 +1844 1844 1845 184.4 368.8 1844 1975-01-19 2024-10-11 00:30:44.000 1975-01-19 2024-10-11 00:30:44 +1845 1845 1846 184.5 369 1845 1975-01-20 2024-10-11 00:30:45.000 1975-01-20 2024-10-11 00:30:45 +1846 1846 1847 184.6 369.20000000000005 1846 1975-01-21 2024-10-11 00:30:46.000 1975-01-21 2024-10-11 00:30:46 +1847 1847 1848 184.7 369.40000000000003 1847 1975-01-22 2024-10-11 00:30:47.000 1975-01-22 2024-10-11 00:30:47 +1848 1848 1849 184.8 369.6 1848 1975-01-23 2024-10-11 00:30:48.000 1975-01-23 2024-10-11 00:30:48 +1849 1849 1850 184.9 369.8 1849 1975-01-24 2024-10-11 00:30:49.000 1975-01-24 2024-10-11 00:30:49 +1850 1850 1851 185 370 1850 1975-01-25 2024-10-11 00:30:50.000 1975-01-25 2024-10-11 00:30:50 +1851 1851 1852 185.1 370.20000000000005 1851 1975-01-26 2024-10-11 00:30:51.000 1975-01-26 2024-10-11 00:30:51 +1852 1852 1853 185.2 370.40000000000003 1852 1975-01-27 2024-10-11 00:30:52.000 1975-01-27 2024-10-11 00:30:52 +1853 1853 1854 185.3 370.6 1853 1975-01-28 2024-10-11 00:30:53.000 1975-01-28 2024-10-11 00:30:53 +1854 1854 1855 185.4 370.8 1854 1975-01-29 2024-10-11 00:30:54.000 1975-01-29 2024-10-11 00:30:54 +1855 1855 1856 185.5 371 1855 1975-01-30 2024-10-11 00:30:55.000 1975-01-30 2024-10-11 00:30:55 +1856 1856 1857 185.6 371.20000000000005 1856 1975-01-31 2024-10-11 00:30:56.000 1975-01-31 2024-10-11 00:30:56 +1857 1857 1858 185.7 371.40000000000003 1857 1975-02-01 2024-10-11 00:30:57.000 1975-02-01 2024-10-11 00:30:57 +1858 1858 1859 185.8 371.6 1858 1975-02-02 2024-10-11 00:30:58.000 1975-02-02 2024-10-11 00:30:58 +1859 1859 1860 185.9 371.8 1859 1975-02-03 2024-10-11 00:30:59.000 1975-02-03 2024-10-11 00:30:59 +1860 1860 1861 186 372 1860 1975-02-04 2024-10-11 00:31:00.000 1975-02-04 2024-10-11 00:31:00 +1861 1861 1862 186.1 372.20000000000005 1861 1975-02-05 2024-10-11 00:31:01.000 1975-02-05 2024-10-11 00:31:01 +1862 1862 1863 186.2 372.40000000000003 1862 1975-02-06 2024-10-11 00:31:02.000 1975-02-06 2024-10-11 00:31:02 +1863 1863 1864 186.3 372.6 1863 1975-02-07 2024-10-11 00:31:03.000 1975-02-07 2024-10-11 00:31:03 +1864 1864 1865 186.4 372.8 1864 1975-02-08 2024-10-11 00:31:04.000 1975-02-08 2024-10-11 00:31:04 +1865 1865 1866 186.5 373 1865 1975-02-09 2024-10-11 00:31:05.000 1975-02-09 2024-10-11 00:31:05 +1866 1866 1867 186.6 373.20000000000005 1866 1975-02-10 2024-10-11 00:31:06.000 1975-02-10 2024-10-11 00:31:06 +1867 1867 1868 186.7 373.40000000000003 1867 1975-02-11 2024-10-11 00:31:07.000 1975-02-11 2024-10-11 00:31:07 +1868 1868 1869 186.8 373.6 1868 1975-02-12 2024-10-11 00:31:08.000 1975-02-12 2024-10-11 00:31:08 +1869 1869 1870 186.9 373.8 1869 1975-02-13 2024-10-11 00:31:09.000 1975-02-13 2024-10-11 00:31:09 +1870 1870 1871 187 374 1870 1975-02-14 2024-10-11 00:31:10.000 1975-02-14 2024-10-11 00:31:10 +1871 1871 1872 187.1 374.20000000000005 1871 1975-02-15 2024-10-11 00:31:11.000 1975-02-15 2024-10-11 00:31:11 +1872 1872 1873 187.2 374.40000000000003 1872 1975-02-16 2024-10-11 00:31:12.000 1975-02-16 2024-10-11 00:31:12 +1873 1873 1874 187.3 374.6 1873 1975-02-17 2024-10-11 00:31:13.000 1975-02-17 2024-10-11 00:31:13 +1874 1874 1875 187.4 374.8 1874 1975-02-18 2024-10-11 00:31:14.000 1975-02-18 2024-10-11 00:31:14 +1875 1875 1876 187.5 375 1875 1975-02-19 2024-10-11 00:31:15.000 1975-02-19 2024-10-11 00:31:15 +1876 1876 1877 187.6 375.20000000000005 1876 1975-02-20 2024-10-11 00:31:16.000 1975-02-20 2024-10-11 00:31:16 +1877 1877 1878 187.7 375.40000000000003 1877 1975-02-21 2024-10-11 00:31:17.000 1975-02-21 2024-10-11 00:31:17 +1878 1878 1879 187.8 375.6 1878 1975-02-22 2024-10-11 00:31:18.000 1975-02-22 2024-10-11 00:31:18 +1879 1879 1880 187.9 375.8 1879 1975-02-23 2024-10-11 00:31:19.000 1975-02-23 2024-10-11 00:31:19 +1880 1880 1881 188 376 1880 1975-02-24 2024-10-11 00:31:20.000 1975-02-24 2024-10-11 00:31:20 +1881 1881 1882 188.1 376.20000000000005 1881 1975-02-25 2024-10-11 00:31:21.000 1975-02-25 2024-10-11 00:31:21 +1882 1882 1883 188.2 376.40000000000003 1882 1975-02-26 2024-10-11 00:31:22.000 1975-02-26 2024-10-11 00:31:22 +1883 1883 1884 188.3 376.6 1883 1975-02-27 2024-10-11 00:31:23.000 1975-02-27 2024-10-11 00:31:23 +1884 1884 1885 188.4 376.8 1884 1975-02-28 2024-10-11 00:31:24.000 1975-02-28 2024-10-11 00:31:24 +1885 1885 1886 188.5 377 1885 1975-03-01 2024-10-11 00:31:25.000 1975-03-01 2024-10-11 00:31:25 +1886 1886 1887 188.6 377.20000000000005 1886 1975-03-02 2024-10-11 00:31:26.000 1975-03-02 2024-10-11 00:31:26 +1887 1887 1888 188.7 377.40000000000003 1887 1975-03-03 2024-10-11 00:31:27.000 1975-03-03 2024-10-11 00:31:27 +1888 1888 1889 188.8 377.6 1888 1975-03-04 2024-10-11 00:31:28.000 1975-03-04 2024-10-11 00:31:28 +1889 1889 1890 188.9 377.8 1889 1975-03-05 2024-10-11 00:31:29.000 1975-03-05 2024-10-11 00:31:29 +1890 1890 1891 189 378 1890 1975-03-06 2024-10-11 00:31:30.000 1975-03-06 2024-10-11 00:31:30 +1891 1891 1892 189.1 378.20000000000005 1891 1975-03-07 2024-10-11 00:31:31.000 1975-03-07 2024-10-11 00:31:31 +1892 1892 1893 189.2 378.40000000000003 1892 1975-03-08 2024-10-11 00:31:32.000 1975-03-08 2024-10-11 00:31:32 +1893 1893 1894 189.3 378.6 1893 1975-03-09 2024-10-11 00:31:33.000 1975-03-09 2024-10-11 00:31:33 +1894 1894 1895 189.4 378.8 1894 1975-03-10 2024-10-11 00:31:34.000 1975-03-10 2024-10-11 00:31:34 +1895 1895 1896 189.5 379 1895 1975-03-11 2024-10-11 00:31:35.000 1975-03-11 2024-10-11 00:31:35 +1896 1896 1897 189.6 379.20000000000005 1896 1975-03-12 2024-10-11 00:31:36.000 1975-03-12 2024-10-11 00:31:36 +1897 1897 1898 189.7 379.40000000000003 1897 1975-03-13 2024-10-11 00:31:37.000 1975-03-13 2024-10-11 00:31:37 +1898 1898 1899 189.8 379.6 1898 1975-03-14 2024-10-11 00:31:38.000 1975-03-14 2024-10-11 00:31:38 +1899 1899 1900 189.9 379.8 1899 1975-03-15 2024-10-11 00:31:39.000 1975-03-15 2024-10-11 00:31:39 +1900 1900 1901 190 380 1900 1975-03-16 2024-10-11 00:31:40.000 1975-03-16 2024-10-11 00:31:40 +1901 1901 1902 190.1 380.20000000000005 1901 1975-03-17 2024-10-11 00:31:41.000 1975-03-17 2024-10-11 00:31:41 +1902 1902 1903 190.2 380.40000000000003 1902 1975-03-18 2024-10-11 00:31:42.000 1975-03-18 2024-10-11 00:31:42 +1903 1903 1904 190.3 380.6 1903 1975-03-19 2024-10-11 00:31:43.000 1975-03-19 2024-10-11 00:31:43 +1904 1904 1905 190.4 380.8 1904 1975-03-20 2024-10-11 00:31:44.000 1975-03-20 2024-10-11 00:31:44 +1905 1905 1906 190.5 381 1905 1975-03-21 2024-10-11 00:31:45.000 1975-03-21 2024-10-11 00:31:45 +1906 1906 1907 190.6 381.20000000000005 1906 1975-03-22 2024-10-11 00:31:46.000 1975-03-22 2024-10-11 00:31:46 +1907 1907 1908 190.7 381.40000000000003 1907 1975-03-23 2024-10-11 00:31:47.000 1975-03-23 2024-10-11 00:31:47 +1908 1908 1909 190.8 381.6 1908 1975-03-24 2024-10-11 00:31:48.000 1975-03-24 2024-10-11 00:31:48 +1909 1909 1910 190.9 381.8 1909 1975-03-25 2024-10-11 00:31:49.000 1975-03-25 2024-10-11 00:31:49 +1910 1910 1911 191 382 1910 1975-03-26 2024-10-11 00:31:50.000 1975-03-26 2024-10-11 00:31:50 +1911 1911 1912 191.1 382.20000000000005 1911 1975-03-27 2024-10-11 00:31:51.000 1975-03-27 2024-10-11 00:31:51 +1912 1912 1913 191.2 382.40000000000003 1912 1975-03-28 2024-10-11 00:31:52.000 1975-03-28 2024-10-11 00:31:52 +1913 1913 1914 191.3 382.6 1913 1975-03-29 2024-10-11 00:31:53.000 1975-03-29 2024-10-11 00:31:53 +1914 1914 1915 191.4 382.8 1914 1975-03-30 2024-10-11 00:31:54.000 1975-03-30 2024-10-11 00:31:54 +1915 1915 1916 191.5 383 1915 1975-03-31 2024-10-11 00:31:55.000 1975-03-31 2024-10-11 00:31:55 +1916 1916 1917 191.6 383.20000000000005 1916 1975-04-01 2024-10-11 00:31:56.000 1975-04-01 2024-10-11 00:31:56 +1917 1917 1918 191.7 383.40000000000003 1917 1975-04-02 2024-10-11 00:31:57.000 1975-04-02 2024-10-11 00:31:57 +1918 1918 1919 191.8 383.6 1918 1975-04-03 2024-10-11 00:31:58.000 1975-04-03 2024-10-11 00:31:58 +1919 1919 1920 191.9 383.8 1919 1975-04-04 2024-10-11 00:31:59.000 1975-04-04 2024-10-11 00:31:59 +1920 1920 1921 192 384 1920 1975-04-05 2024-10-11 00:32:00.000 1975-04-05 2024-10-11 00:32:00 +1921 1921 1922 192.1 384.20000000000005 1921 1975-04-06 2024-10-11 00:32:01.000 1975-04-06 2024-10-11 00:32:01 +1922 1922 1923 192.2 384.40000000000003 1922 1975-04-07 2024-10-11 00:32:02.000 1975-04-07 2024-10-11 00:32:02 +1923 1923 1924 192.3 384.6 1923 1975-04-08 2024-10-11 00:32:03.000 1975-04-08 2024-10-11 00:32:03 +1924 1924 1925 192.4 384.8 1924 1975-04-09 2024-10-11 00:32:04.000 1975-04-09 2024-10-11 00:32:04 +1925 1925 1926 192.5 385 1925 1975-04-10 2024-10-11 00:32:05.000 1975-04-10 2024-10-11 00:32:05 +1926 1926 1927 192.6 385.20000000000005 1926 1975-04-11 2024-10-11 00:32:06.000 1975-04-11 2024-10-11 00:32:06 +1927 1927 1928 192.7 385.40000000000003 1927 1975-04-12 2024-10-11 00:32:07.000 1975-04-12 2024-10-11 00:32:07 +1928 1928 1929 192.8 385.6 1928 1975-04-13 2024-10-11 00:32:08.000 1975-04-13 2024-10-11 00:32:08 +1929 1929 1930 192.9 385.8 1929 1975-04-14 2024-10-11 00:32:09.000 1975-04-14 2024-10-11 00:32:09 +1930 1930 1931 193 386 1930 1975-04-15 2024-10-11 00:32:10.000 1975-04-15 2024-10-11 00:32:10 +1931 1931 1932 193.1 386.20000000000005 1931 1975-04-16 2024-10-11 00:32:11.000 1975-04-16 2024-10-11 00:32:11 +1932 1932 1933 193.2 386.40000000000003 1932 1975-04-17 2024-10-11 00:32:12.000 1975-04-17 2024-10-11 00:32:12 +1933 1933 1934 193.3 386.6 1933 1975-04-18 2024-10-11 00:32:13.000 1975-04-18 2024-10-11 00:32:13 +1934 1934 1935 193.4 386.8 1934 1975-04-19 2024-10-11 00:32:14.000 1975-04-19 2024-10-11 00:32:14 +1935 1935 1936 193.5 387 1935 1975-04-20 2024-10-11 00:32:15.000 1975-04-20 2024-10-11 00:32:15 +1936 1936 1937 193.6 387.20000000000005 1936 1975-04-21 2024-10-11 00:32:16.000 1975-04-21 2024-10-11 00:32:16 +1937 1937 1938 193.7 387.40000000000003 1937 1975-04-22 2024-10-11 00:32:17.000 1975-04-22 2024-10-11 00:32:17 +1938 1938 1939 193.8 387.6 1938 1975-04-23 2024-10-11 00:32:18.000 1975-04-23 2024-10-11 00:32:18 +1939 1939 1940 193.9 387.8 1939 1975-04-24 2024-10-11 00:32:19.000 1975-04-24 2024-10-11 00:32:19 +1940 1940 1941 194 388 1940 1975-04-25 2024-10-11 00:32:20.000 1975-04-25 2024-10-11 00:32:20 +1941 1941 1942 194.1 388.20000000000005 1941 1975-04-26 2024-10-11 00:32:21.000 1975-04-26 2024-10-11 00:32:21 +1942 1942 1943 194.2 388.40000000000003 1942 1975-04-27 2024-10-11 00:32:22.000 1975-04-27 2024-10-11 00:32:22 +1943 1943 1944 194.3 388.6 1943 1975-04-28 2024-10-11 00:32:23.000 1975-04-28 2024-10-11 00:32:23 +1944 1944 1945 194.4 388.8 1944 1975-04-29 2024-10-11 00:32:24.000 1975-04-29 2024-10-11 00:32:24 +1945 1945 1946 194.5 389 1945 1975-04-30 2024-10-11 00:32:25.000 1975-04-30 2024-10-11 00:32:25 +1946 1946 1947 194.6 389.20000000000005 1946 1975-05-01 2024-10-11 00:32:26.000 1975-05-01 2024-10-11 00:32:26 +1947 1947 1948 194.7 389.40000000000003 1947 1975-05-02 2024-10-11 00:32:27.000 1975-05-02 2024-10-11 00:32:27 +1948 1948 1949 194.8 389.6 1948 1975-05-03 2024-10-11 00:32:28.000 1975-05-03 2024-10-11 00:32:28 +1949 1949 1950 194.9 389.8 1949 1975-05-04 2024-10-11 00:32:29.000 1975-05-04 2024-10-11 00:32:29 +1950 1950 1951 195 390 1950 1975-05-05 2024-10-11 00:32:30.000 1975-05-05 2024-10-11 00:32:30 +1951 1951 1952 195.1 390.20000000000005 1951 1975-05-06 2024-10-11 00:32:31.000 1975-05-06 2024-10-11 00:32:31 +1952 1952 1953 195.2 390.40000000000003 1952 1975-05-07 2024-10-11 00:32:32.000 1975-05-07 2024-10-11 00:32:32 +1953 1953 1954 195.3 390.6 1953 1975-05-08 2024-10-11 00:32:33.000 1975-05-08 2024-10-11 00:32:33 +1954 1954 1955 195.4 390.8 1954 1975-05-09 2024-10-11 00:32:34.000 1975-05-09 2024-10-11 00:32:34 +1955 1955 1956 195.5 391 1955 1975-05-10 2024-10-11 00:32:35.000 1975-05-10 2024-10-11 00:32:35 +1956 1956 1957 195.6 391.20000000000005 1956 1975-05-11 2024-10-11 00:32:36.000 1975-05-11 2024-10-11 00:32:36 +1957 1957 1958 195.7 391.40000000000003 1957 1975-05-12 2024-10-11 00:32:37.000 1975-05-12 2024-10-11 00:32:37 +1958 1958 1959 195.8 391.6 1958 1975-05-13 2024-10-11 00:32:38.000 1975-05-13 2024-10-11 00:32:38 +1959 1959 1960 195.9 391.8 1959 1975-05-14 2024-10-11 00:32:39.000 1975-05-14 2024-10-11 00:32:39 +1960 1960 1961 196 392 1960 1975-05-15 2024-10-11 00:32:40.000 1975-05-15 2024-10-11 00:32:40 +1961 1961 1962 196.1 392.20000000000005 1961 1975-05-16 2024-10-11 00:32:41.000 1975-05-16 2024-10-11 00:32:41 +1962 1962 1963 196.2 392.40000000000003 1962 1975-05-17 2024-10-11 00:32:42.000 1975-05-17 2024-10-11 00:32:42 +1963 1963 1964 196.3 392.6 1963 1975-05-18 2024-10-11 00:32:43.000 1975-05-18 2024-10-11 00:32:43 +1964 1964 1965 196.4 392.8 1964 1975-05-19 2024-10-11 00:32:44.000 1975-05-19 2024-10-11 00:32:44 +1965 1965 1966 196.5 393 1965 1975-05-20 2024-10-11 00:32:45.000 1975-05-20 2024-10-11 00:32:45 +1966 1966 1967 196.6 393.20000000000005 1966 1975-05-21 2024-10-11 00:32:46.000 1975-05-21 2024-10-11 00:32:46 +1967 1967 1968 196.7 393.40000000000003 1967 1975-05-22 2024-10-11 00:32:47.000 1975-05-22 2024-10-11 00:32:47 +1968 1968 1969 196.8 393.6 1968 1975-05-23 2024-10-11 00:32:48.000 1975-05-23 2024-10-11 00:32:48 +1969 1969 1970 196.9 393.8 1969 1975-05-24 2024-10-11 00:32:49.000 1975-05-24 2024-10-11 00:32:49 +1970 1970 1971 197 394 1970 1975-05-25 2024-10-11 00:32:50.000 1975-05-25 2024-10-11 00:32:50 +1971 1971 1972 197.1 394.20000000000005 1971 1975-05-26 2024-10-11 00:32:51.000 1975-05-26 2024-10-11 00:32:51 +1972 1972 1973 197.2 394.40000000000003 1972 1975-05-27 2024-10-11 00:32:52.000 1975-05-27 2024-10-11 00:32:52 +1973 1973 1974 197.3 394.6 1973 1975-05-28 2024-10-11 00:32:53.000 1975-05-28 2024-10-11 00:32:53 +1974 1974 1975 197.4 394.8 1974 1975-05-29 2024-10-11 00:32:54.000 1975-05-29 2024-10-11 00:32:54 +1975 1975 1976 197.5 395 1975 1975-05-30 2024-10-11 00:32:55.000 1975-05-30 2024-10-11 00:32:55 +1976 1976 1977 197.6 395.20000000000005 1976 1975-05-31 2024-10-11 00:32:56.000 1975-05-31 2024-10-11 00:32:56 +1977 1977 1978 197.7 395.40000000000003 1977 1975-06-01 2024-10-11 00:32:57.000 1975-06-01 2024-10-11 00:32:57 +1978 1978 1979 197.8 395.6 1978 1975-06-02 2024-10-11 00:32:58.000 1975-06-02 2024-10-11 00:32:58 +1979 1979 1980 197.9 395.8 1979 1975-06-03 2024-10-11 00:32:59.000 1975-06-03 2024-10-11 00:32:59 +1980 1980 1981 198 396 1980 1975-06-04 2024-10-11 00:33:00.000 1975-06-04 2024-10-11 00:33:00 +1981 1981 1982 198.1 396.20000000000005 1981 1975-06-05 2024-10-11 00:33:01.000 1975-06-05 2024-10-11 00:33:01 +1982 1982 1983 198.2 396.40000000000003 1982 1975-06-06 2024-10-11 00:33:02.000 1975-06-06 2024-10-11 00:33:02 +1983 1983 1984 198.3 396.6 1983 1975-06-07 2024-10-11 00:33:03.000 1975-06-07 2024-10-11 00:33:03 +1984 1984 1985 198.4 396.8 1984 1975-06-08 2024-10-11 00:33:04.000 1975-06-08 2024-10-11 00:33:04 +1985 1985 1986 198.5 397 1985 1975-06-09 2024-10-11 00:33:05.000 1975-06-09 2024-10-11 00:33:05 +1986 1986 1987 198.6 397.20000000000005 1986 1975-06-10 2024-10-11 00:33:06.000 1975-06-10 2024-10-11 00:33:06 +1987 1987 1988 198.7 397.40000000000003 1987 1975-06-11 2024-10-11 00:33:07.000 1975-06-11 2024-10-11 00:33:07 +1988 1988 1989 198.8 397.6 1988 1975-06-12 2024-10-11 00:33:08.000 1975-06-12 2024-10-11 00:33:08 +1989 1989 1990 198.9 397.8 1989 1975-06-13 2024-10-11 00:33:09.000 1975-06-13 2024-10-11 00:33:09 +1990 1990 1991 199 398 1990 1975-06-14 2024-10-11 00:33:10.000 1975-06-14 2024-10-11 00:33:10 +1991 1991 1992 199.1 398.20000000000005 1991 1975-06-15 2024-10-11 00:33:11.000 1975-06-15 2024-10-11 00:33:11 +1992 1992 1993 199.2 398.40000000000003 1992 1975-06-16 2024-10-11 00:33:12.000 1975-06-16 2024-10-11 00:33:12 +1993 1993 1994 199.3 398.6 1993 1975-06-17 2024-10-11 00:33:13.000 1975-06-17 2024-10-11 00:33:13 +1994 1994 1995 199.4 398.8 1994 1975-06-18 2024-10-11 00:33:14.000 1975-06-18 2024-10-11 00:33:14 +1995 1995 1996 199.5 399 1995 1975-06-19 2024-10-11 00:33:15.000 1975-06-19 2024-10-11 00:33:15 +1996 1996 1997 199.6 399.20000000000005 1996 1975-06-20 2024-10-11 00:33:16.000 1975-06-20 2024-10-11 00:33:16 +1997 1997 1998 199.7 399.40000000000003 1997 1975-06-21 2024-10-11 00:33:17.000 1975-06-21 2024-10-11 00:33:17 +1998 1998 1999 199.8 399.6 1998 1975-06-22 2024-10-11 00:33:18.000 1975-06-22 2024-10-11 00:33:18 +1999 1999 2000 199.9 399.8 1999 1975-06-23 2024-10-11 00:33:19.000 1975-06-23 2024-10-11 00:33:19 +2000 2000 2001 200 400 2000 1975-06-24 2024-10-11 00:33:20.000 1975-06-24 2024-10-11 00:33:20 +2001 2001 2002 200.1 400.20000000000005 2001 1975-06-25 2024-10-11 00:33:21.000 1975-06-25 2024-10-11 00:33:21 +2002 2002 2003 200.2 400.40000000000003 2002 1975-06-26 2024-10-11 00:33:22.000 1975-06-26 2024-10-11 00:33:22 +2003 2003 2004 200.3 400.6 2003 1975-06-27 2024-10-11 00:33:23.000 1975-06-27 2024-10-11 00:33:23 +2004 2004 2005 200.4 400.8 2004 1975-06-28 2024-10-11 00:33:24.000 1975-06-28 2024-10-11 00:33:24 +2005 2005 2006 200.5 401 2005 1975-06-29 2024-10-11 00:33:25.000 1975-06-29 2024-10-11 00:33:25 +2006 2006 2007 200.6 401.20000000000005 2006 1975-06-30 2024-10-11 00:33:26.000 1975-06-30 2024-10-11 00:33:26 +2007 2007 2008 200.7 401.40000000000003 2007 1975-07-01 2024-10-11 00:33:27.000 1975-07-01 2024-10-11 00:33:27 +2008 2008 2009 200.8 401.6 2008 1975-07-02 2024-10-11 00:33:28.000 1975-07-02 2024-10-11 00:33:28 +2009 2009 2010 200.9 401.8 2009 1975-07-03 2024-10-11 00:33:29.000 1975-07-03 2024-10-11 00:33:29 +2010 2010 2011 201 402 2010 1975-07-04 2024-10-11 00:33:30.000 1975-07-04 2024-10-11 00:33:30 +2011 2011 2012 201.1 402.20000000000005 2011 1975-07-05 2024-10-11 00:33:31.000 1975-07-05 2024-10-11 00:33:31 +2012 2012 2013 201.2 402.40000000000003 2012 1975-07-06 2024-10-11 00:33:32.000 1975-07-06 2024-10-11 00:33:32 +2013 2013 2014 201.3 402.6 2013 1975-07-07 2024-10-11 00:33:33.000 1975-07-07 2024-10-11 00:33:33 +2014 2014 2015 201.4 402.8 2014 1975-07-08 2024-10-11 00:33:34.000 1975-07-08 2024-10-11 00:33:34 +2015 2015 2016 201.5 403 2015 1975-07-09 2024-10-11 00:33:35.000 1975-07-09 2024-10-11 00:33:35 +2016 2016 2017 201.6 403.20000000000005 2016 1975-07-10 2024-10-11 00:33:36.000 1975-07-10 2024-10-11 00:33:36 +2017 2017 2018 201.7 403.40000000000003 2017 1975-07-11 2024-10-11 00:33:37.000 1975-07-11 2024-10-11 00:33:37 +2018 2018 2019 201.8 403.6 2018 1975-07-12 2024-10-11 00:33:38.000 1975-07-12 2024-10-11 00:33:38 +2019 2019 2020 201.9 403.8 2019 1975-07-13 2024-10-11 00:33:39.000 1975-07-13 2024-10-11 00:33:39 +2020 2020 2021 202 404 2020 1975-07-14 2024-10-11 00:33:40.000 1975-07-14 2024-10-11 00:33:40 +2021 2021 2022 202.1 404.20000000000005 2021 1975-07-15 2024-10-11 00:33:41.000 1975-07-15 2024-10-11 00:33:41 +2022 2022 2023 202.2 404.40000000000003 2022 1975-07-16 2024-10-11 00:33:42.000 1975-07-16 2024-10-11 00:33:42 +2023 2023 2024 202.3 404.6 2023 1975-07-17 2024-10-11 00:33:43.000 1975-07-17 2024-10-11 00:33:43 +2024 2024 2025 202.4 404.8 2024 1975-07-18 2024-10-11 00:33:44.000 1975-07-18 2024-10-11 00:33:44 +2025 2025 2026 202.5 405 2025 1975-07-19 2024-10-11 00:33:45.000 1975-07-19 2024-10-11 00:33:45 +2026 2026 2027 202.6 405.20000000000005 2026 1975-07-20 2024-10-11 00:33:46.000 1975-07-20 2024-10-11 00:33:46 +2027 2027 2028 202.7 405.40000000000003 2027 1975-07-21 2024-10-11 00:33:47.000 1975-07-21 2024-10-11 00:33:47 +2028 2028 2029 202.8 405.6 2028 1975-07-22 2024-10-11 00:33:48.000 1975-07-22 2024-10-11 00:33:48 +2029 2029 2030 202.9 405.8 2029 1975-07-23 2024-10-11 00:33:49.000 1975-07-23 2024-10-11 00:33:49 +2030 2030 2031 203 406 2030 1975-07-24 2024-10-11 00:33:50.000 1975-07-24 2024-10-11 00:33:50 +2031 2031 2032 203.1 406.20000000000005 2031 1975-07-25 2024-10-11 00:33:51.000 1975-07-25 2024-10-11 00:33:51 +2032 2032 2033 203.2 406.40000000000003 2032 1975-07-26 2024-10-11 00:33:52.000 1975-07-26 2024-10-11 00:33:52 +2033 2033 2034 203.3 406.6 2033 1975-07-27 2024-10-11 00:33:53.000 1975-07-27 2024-10-11 00:33:53 +2034 2034 2035 203.4 406.8 2034 1975-07-28 2024-10-11 00:33:54.000 1975-07-28 2024-10-11 00:33:54 +2035 2035 2036 203.5 407 2035 1975-07-29 2024-10-11 00:33:55.000 1975-07-29 2024-10-11 00:33:55 +2036 2036 2037 203.6 407.20000000000005 2036 1975-07-30 2024-10-11 00:33:56.000 1975-07-30 2024-10-11 00:33:56 +2037 2037 2038 203.7 407.40000000000003 2037 1975-07-31 2024-10-11 00:33:57.000 1975-07-31 2024-10-11 00:33:57 +2038 2038 2039 203.8 407.6 2038 1975-08-01 2024-10-11 00:33:58.000 1975-08-01 2024-10-11 00:33:58 +2039 2039 2040 203.9 407.8 2039 1975-08-02 2024-10-11 00:33:59.000 1975-08-02 2024-10-11 00:33:59 +2040 2040 2041 204 408 2040 1975-08-03 2024-10-11 00:34:00.000 1975-08-03 2024-10-11 00:34:00 +2041 2041 2042 204.1 408.20000000000005 2041 1975-08-04 2024-10-11 00:34:01.000 1975-08-04 2024-10-11 00:34:01 +2042 2042 2043 204.2 408.40000000000003 2042 1975-08-05 2024-10-11 00:34:02.000 1975-08-05 2024-10-11 00:34:02 +2043 2043 2044 204.3 408.6 2043 1975-08-06 2024-10-11 00:34:03.000 1975-08-06 2024-10-11 00:34:03 +2044 2044 2045 204.4 408.8 2044 1975-08-07 2024-10-11 00:34:04.000 1975-08-07 2024-10-11 00:34:04 +2045 2045 2046 204.5 409 2045 1975-08-08 2024-10-11 00:34:05.000 1975-08-08 2024-10-11 00:34:05 +2046 2046 2047 204.6 409.20000000000005 2046 1975-08-09 2024-10-11 00:34:06.000 1975-08-09 2024-10-11 00:34:06 +2047 2047 2048 204.7 409.40000000000003 2047 1975-08-10 2024-10-11 00:34:07.000 1975-08-10 2024-10-11 00:34:07 +2048 2048 2049 204.8 409.6 2048 1975-08-11 2024-10-11 00:34:08.000 1975-08-11 2024-10-11 00:34:08 +2049 2049 2050 204.9 409.8 2049 1975-08-12 2024-10-11 00:34:09.000 1975-08-12 2024-10-11 00:34:09 +2050 2050 2051 205 410 2050 1975-08-13 2024-10-11 00:34:10.000 1975-08-13 2024-10-11 00:34:10 +2051 2051 2052 205.1 410.20000000000005 2051 1975-08-14 2024-10-11 00:34:11.000 1975-08-14 2024-10-11 00:34:11 +2052 2052 2053 205.2 410.40000000000003 2052 1975-08-15 2024-10-11 00:34:12.000 1975-08-15 2024-10-11 00:34:12 +2053 2053 2054 205.3 410.6 2053 1975-08-16 2024-10-11 00:34:13.000 1975-08-16 2024-10-11 00:34:13 +2054 2054 2055 205.4 410.8 2054 1975-08-17 2024-10-11 00:34:14.000 1975-08-17 2024-10-11 00:34:14 +2055 2055 2056 205.5 411 2055 1975-08-18 2024-10-11 00:34:15.000 1975-08-18 2024-10-11 00:34:15 +2056 2056 2057 205.6 411.20000000000005 2056 1975-08-19 2024-10-11 00:34:16.000 1975-08-19 2024-10-11 00:34:16 +2057 2057 2058 205.7 411.40000000000003 2057 1975-08-20 2024-10-11 00:34:17.000 1975-08-20 2024-10-11 00:34:17 +2058 2058 2059 205.8 411.6 2058 1975-08-21 2024-10-11 00:34:18.000 1975-08-21 2024-10-11 00:34:18 +2059 2059 2060 205.9 411.8 2059 1975-08-22 2024-10-11 00:34:19.000 1975-08-22 2024-10-11 00:34:19 +2060 2060 2061 206 412 2060 1975-08-23 2024-10-11 00:34:20.000 1975-08-23 2024-10-11 00:34:20 +2061 2061 2062 206.1 412.20000000000005 2061 1975-08-24 2024-10-11 00:34:21.000 1975-08-24 2024-10-11 00:34:21 +2062 2062 2063 206.2 412.40000000000003 2062 1975-08-25 2024-10-11 00:34:22.000 1975-08-25 2024-10-11 00:34:22 +2063 2063 2064 206.3 412.6 2063 1975-08-26 2024-10-11 00:34:23.000 1975-08-26 2024-10-11 00:34:23 +2064 2064 2065 206.4 412.8 2064 1975-08-27 2024-10-11 00:34:24.000 1975-08-27 2024-10-11 00:34:24 +2065 2065 2066 206.5 413 2065 1975-08-28 2024-10-11 00:34:25.000 1975-08-28 2024-10-11 00:34:25 +2066 2066 2067 206.6 413.20000000000005 2066 1975-08-29 2024-10-11 00:34:26.000 1975-08-29 2024-10-11 00:34:26 +2067 2067 2068 206.7 413.40000000000003 2067 1975-08-30 2024-10-11 00:34:27.000 1975-08-30 2024-10-11 00:34:27 +2068 2068 2069 206.8 413.6 2068 1975-08-31 2024-10-11 00:34:28.000 1975-08-31 2024-10-11 00:34:28 +2069 2069 2070 206.9 413.8 2069 1975-09-01 2024-10-11 00:34:29.000 1975-09-01 2024-10-11 00:34:29 +2070 2070 2071 207 414 2070 1975-09-02 2024-10-11 00:34:30.000 1975-09-02 2024-10-11 00:34:30 +2071 2071 2072 207.1 414.20000000000005 2071 1975-09-03 2024-10-11 00:34:31.000 1975-09-03 2024-10-11 00:34:31 +2072 2072 2073 207.2 414.40000000000003 2072 1975-09-04 2024-10-11 00:34:32.000 1975-09-04 2024-10-11 00:34:32 +2073 2073 2074 207.3 414.6 2073 1975-09-05 2024-10-11 00:34:33.000 1975-09-05 2024-10-11 00:34:33 +2074 2074 2075 207.4 414.8 2074 1975-09-06 2024-10-11 00:34:34.000 1975-09-06 2024-10-11 00:34:34 +2075 2075 2076 207.5 415 2075 1975-09-07 2024-10-11 00:34:35.000 1975-09-07 2024-10-11 00:34:35 +2076 2076 2077 207.6 415.20000000000005 2076 1975-09-08 2024-10-11 00:34:36.000 1975-09-08 2024-10-11 00:34:36 +2077 2077 2078 207.7 415.40000000000003 2077 1975-09-09 2024-10-11 00:34:37.000 1975-09-09 2024-10-11 00:34:37 +2078 2078 2079 207.8 415.6 2078 1975-09-10 2024-10-11 00:34:38.000 1975-09-10 2024-10-11 00:34:38 +2079 2079 2080 207.9 415.8 2079 1975-09-11 2024-10-11 00:34:39.000 1975-09-11 2024-10-11 00:34:39 +2080 2080 2081 208 416 2080 1975-09-12 2024-10-11 00:34:40.000 1975-09-12 2024-10-11 00:34:40 +2081 2081 2082 208.1 416.20000000000005 2081 1975-09-13 2024-10-11 00:34:41.000 1975-09-13 2024-10-11 00:34:41 +2082 2082 2083 208.2 416.40000000000003 2082 1975-09-14 2024-10-11 00:34:42.000 1975-09-14 2024-10-11 00:34:42 +2083 2083 2084 208.3 416.6 2083 1975-09-15 2024-10-11 00:34:43.000 1975-09-15 2024-10-11 00:34:43 +2084 2084 2085 208.4 416.8 2084 1975-09-16 2024-10-11 00:34:44.000 1975-09-16 2024-10-11 00:34:44 +2085 2085 2086 208.5 417 2085 1975-09-17 2024-10-11 00:34:45.000 1975-09-17 2024-10-11 00:34:45 +2086 2086 2087 208.6 417.20000000000005 2086 1975-09-18 2024-10-11 00:34:46.000 1975-09-18 2024-10-11 00:34:46 +2087 2087 2088 208.7 417.40000000000003 2087 1975-09-19 2024-10-11 00:34:47.000 1975-09-19 2024-10-11 00:34:47 +2088 2088 2089 208.8 417.6 2088 1975-09-20 2024-10-11 00:34:48.000 1975-09-20 2024-10-11 00:34:48 +2089 2089 2090 208.9 417.8 2089 1975-09-21 2024-10-11 00:34:49.000 1975-09-21 2024-10-11 00:34:49 +2090 2090 2091 209 418 2090 1975-09-22 2024-10-11 00:34:50.000 1975-09-22 2024-10-11 00:34:50 +2091 2091 2092 209.1 418.20000000000005 2091 1975-09-23 2024-10-11 00:34:51.000 1975-09-23 2024-10-11 00:34:51 +2092 2092 2093 209.2 418.40000000000003 2092 1975-09-24 2024-10-11 00:34:52.000 1975-09-24 2024-10-11 00:34:52 +2093 2093 2094 209.3 418.6 2093 1975-09-25 2024-10-11 00:34:53.000 1975-09-25 2024-10-11 00:34:53 +2094 2094 2095 209.4 418.8 2094 1975-09-26 2024-10-11 00:34:54.000 1975-09-26 2024-10-11 00:34:54 +2095 2095 2096 209.5 419 2095 1975-09-27 2024-10-11 00:34:55.000 1975-09-27 2024-10-11 00:34:55 +2096 2096 2097 209.6 419.20000000000005 2096 1975-09-28 2024-10-11 00:34:56.000 1975-09-28 2024-10-11 00:34:56 +2097 2097 2098 209.7 419.40000000000003 2097 1975-09-29 2024-10-11 00:34:57.000 1975-09-29 2024-10-11 00:34:57 +2098 2098 2099 209.8 419.6 2098 1975-09-30 2024-10-11 00:34:58.000 1975-09-30 2024-10-11 00:34:58 +2099 2099 2100 209.9 419.8 2099 1975-10-01 2024-10-11 00:34:59.000 1975-10-01 2024-10-11 00:34:59 +2100 2100 2101 210 420 2100 1975-10-02 2024-10-11 00:35:00.000 1975-10-02 2024-10-11 00:35:00 +2101 2101 2102 210.1 420.20000000000005 2101 1975-10-03 2024-10-11 00:35:01.000 1975-10-03 2024-10-11 00:35:01 +2102 2102 2103 210.2 420.40000000000003 2102 1975-10-04 2024-10-11 00:35:02.000 1975-10-04 2024-10-11 00:35:02 +2103 2103 2104 210.3 420.6 2103 1975-10-05 2024-10-11 00:35:03.000 1975-10-05 2024-10-11 00:35:03 +2104 2104 2105 210.4 420.8 2104 1975-10-06 2024-10-11 00:35:04.000 1975-10-06 2024-10-11 00:35:04 +2105 2105 2106 210.5 421 2105 1975-10-07 2024-10-11 00:35:05.000 1975-10-07 2024-10-11 00:35:05 +2106 2106 2107 210.6 421.20000000000005 2106 1975-10-08 2024-10-11 00:35:06.000 1975-10-08 2024-10-11 00:35:06 +2107 2107 2108 210.7 421.40000000000003 2107 1975-10-09 2024-10-11 00:35:07.000 1975-10-09 2024-10-11 00:35:07 +2108 2108 2109 210.8 421.6 2108 1975-10-10 2024-10-11 00:35:08.000 1975-10-10 2024-10-11 00:35:08 +2109 2109 2110 210.9 421.8 2109 1975-10-11 2024-10-11 00:35:09.000 1975-10-11 2024-10-11 00:35:09 +2110 2110 2111 211 422 2110 1975-10-12 2024-10-11 00:35:10.000 1975-10-12 2024-10-11 00:35:10 +2111 2111 2112 211.1 422.20000000000005 2111 1975-10-13 2024-10-11 00:35:11.000 1975-10-13 2024-10-11 00:35:11 +2112 2112 2113 211.2 422.40000000000003 2112 1975-10-14 2024-10-11 00:35:12.000 1975-10-14 2024-10-11 00:35:12 +2113 2113 2114 211.3 422.6 2113 1975-10-15 2024-10-11 00:35:13.000 1975-10-15 2024-10-11 00:35:13 +2114 2114 2115 211.4 422.8 2114 1975-10-16 2024-10-11 00:35:14.000 1975-10-16 2024-10-11 00:35:14 +2115 2115 2116 211.5 423 2115 1975-10-17 2024-10-11 00:35:15.000 1975-10-17 2024-10-11 00:35:15 +2116 2116 2117 211.6 423.20000000000005 2116 1975-10-18 2024-10-11 00:35:16.000 1975-10-18 2024-10-11 00:35:16 +2117 2117 2118 211.7 423.40000000000003 2117 1975-10-19 2024-10-11 00:35:17.000 1975-10-19 2024-10-11 00:35:17 +2118 2118 2119 211.8 423.6 2118 1975-10-20 2024-10-11 00:35:18.000 1975-10-20 2024-10-11 00:35:18 +2119 2119 2120 211.9 423.8 2119 1975-10-21 2024-10-11 00:35:19.000 1975-10-21 2024-10-11 00:35:19 +2120 2120 2121 212 424 2120 1975-10-22 2024-10-11 00:35:20.000 1975-10-22 2024-10-11 00:35:20 +2121 2121 2122 212.1 424.20000000000005 2121 1975-10-23 2024-10-11 00:35:21.000 1975-10-23 2024-10-11 00:35:21 +2122 2122 2123 212.2 424.40000000000003 2122 1975-10-24 2024-10-11 00:35:22.000 1975-10-24 2024-10-11 00:35:22 +2123 2123 2124 212.3 424.6 2123 1975-10-25 2024-10-11 00:35:23.000 1975-10-25 2024-10-11 00:35:23 +2124 2124 2125 212.4 424.8 2124 1975-10-26 2024-10-11 00:35:24.000 1975-10-26 2024-10-11 00:35:24 +2125 2125 2126 212.5 425 2125 1975-10-27 2024-10-11 00:35:25.000 1975-10-27 2024-10-11 00:35:25 +2126 2126 2127 212.6 425.20000000000005 2126 1975-10-28 2024-10-11 00:35:26.000 1975-10-28 2024-10-11 00:35:26 +2127 2127 2128 212.7 425.40000000000003 2127 1975-10-29 2024-10-11 00:35:27.000 1975-10-29 2024-10-11 00:35:27 +2128 2128 2129 212.8 425.6 2128 1975-10-30 2024-10-11 00:35:28.000 1975-10-30 2024-10-11 00:35:28 +2129 2129 2130 212.9 425.8 2129 1975-10-31 2024-10-11 00:35:29.000 1975-10-31 2024-10-11 00:35:29 +2130 2130 2131 213 426 2130 1975-11-01 2024-10-11 00:35:30.000 1975-11-01 2024-10-11 00:35:30 +2131 2131 2132 213.1 426.20000000000005 2131 1975-11-02 2024-10-11 00:35:31.000 1975-11-02 2024-10-11 00:35:31 +2132 2132 2133 213.2 426.40000000000003 2132 1975-11-03 2024-10-11 00:35:32.000 1975-11-03 2024-10-11 00:35:32 +2133 2133 2134 213.3 426.6 2133 1975-11-04 2024-10-11 00:35:33.000 1975-11-04 2024-10-11 00:35:33 +2134 2134 2135 213.4 426.8 2134 1975-11-05 2024-10-11 00:35:34.000 1975-11-05 2024-10-11 00:35:34 +2135 2135 2136 213.5 427 2135 1975-11-06 2024-10-11 00:35:35.000 1975-11-06 2024-10-11 00:35:35 +2136 2136 2137 213.6 427.20000000000005 2136 1975-11-07 2024-10-11 00:35:36.000 1975-11-07 2024-10-11 00:35:36 +2137 2137 2138 213.7 427.40000000000003 2137 1975-11-08 2024-10-11 00:35:37.000 1975-11-08 2024-10-11 00:35:37 +2138 2138 2139 213.8 427.6 2138 1975-11-09 2024-10-11 00:35:38.000 1975-11-09 2024-10-11 00:35:38 +2139 2139 2140 213.9 427.8 2139 1975-11-10 2024-10-11 00:35:39.000 1975-11-10 2024-10-11 00:35:39 +2140 2140 2141 214 428 2140 1975-11-11 2024-10-11 00:35:40.000 1975-11-11 2024-10-11 00:35:40 +2141 2141 2142 214.1 428.20000000000005 2141 1975-11-12 2024-10-11 00:35:41.000 1975-11-12 2024-10-11 00:35:41 +2142 2142 2143 214.2 428.40000000000003 2142 1975-11-13 2024-10-11 00:35:42.000 1975-11-13 2024-10-11 00:35:42 +2143 2143 2144 214.3 428.6 2143 1975-11-14 2024-10-11 00:35:43.000 1975-11-14 2024-10-11 00:35:43 +2144 2144 2145 214.4 428.8 2144 1975-11-15 2024-10-11 00:35:44.000 1975-11-15 2024-10-11 00:35:44 +2145 2145 2146 214.5 429 2145 1975-11-16 2024-10-11 00:35:45.000 1975-11-16 2024-10-11 00:35:45 +2146 2146 2147 214.6 429.20000000000005 2146 1975-11-17 2024-10-11 00:35:46.000 1975-11-17 2024-10-11 00:35:46 +2147 2147 2148 214.7 429.40000000000003 2147 1975-11-18 2024-10-11 00:35:47.000 1975-11-18 2024-10-11 00:35:47 +2148 2148 2149 214.8 429.6 2148 1975-11-19 2024-10-11 00:35:48.000 1975-11-19 2024-10-11 00:35:48 +2149 2149 2150 214.9 429.8 2149 1975-11-20 2024-10-11 00:35:49.000 1975-11-20 2024-10-11 00:35:49 +2150 2150 2151 215 430 2150 1975-11-21 2024-10-11 00:35:50.000 1975-11-21 2024-10-11 00:35:50 +2151 2151 2152 215.1 430.20000000000005 2151 1975-11-22 2024-10-11 00:35:51.000 1975-11-22 2024-10-11 00:35:51 +2152 2152 2153 215.2 430.40000000000003 2152 1975-11-23 2024-10-11 00:35:52.000 1975-11-23 2024-10-11 00:35:52 +2153 2153 2154 215.3 430.6 2153 1975-11-24 2024-10-11 00:35:53.000 1975-11-24 2024-10-11 00:35:53 +2154 2154 2155 215.4 430.8 2154 1975-11-25 2024-10-11 00:35:54.000 1975-11-25 2024-10-11 00:35:54 +2155 2155 2156 215.5 431 2155 1975-11-26 2024-10-11 00:35:55.000 1975-11-26 2024-10-11 00:35:55 +2156 2156 2157 215.6 431.20000000000005 2156 1975-11-27 2024-10-11 00:35:56.000 1975-11-27 2024-10-11 00:35:56 +2157 2157 2158 215.7 431.40000000000003 2157 1975-11-28 2024-10-11 00:35:57.000 1975-11-28 2024-10-11 00:35:57 +2158 2158 2159 215.8 431.6 2158 1975-11-29 2024-10-11 00:35:58.000 1975-11-29 2024-10-11 00:35:58 +2159 2159 2160 215.9 431.8 2159 1975-11-30 2024-10-11 00:35:59.000 1975-11-30 2024-10-11 00:35:59 +2160 2160 2161 216 432 2160 1975-12-01 2024-10-11 00:36:00.000 1975-12-01 2024-10-11 00:36:00 +2161 2161 2162 216.1 432.20000000000005 2161 1975-12-02 2024-10-11 00:36:01.000 1975-12-02 2024-10-11 00:36:01 +2162 2162 2163 216.2 432.40000000000003 2162 1975-12-03 2024-10-11 00:36:02.000 1975-12-03 2024-10-11 00:36:02 +2163 2163 2164 216.3 432.6 2163 1975-12-04 2024-10-11 00:36:03.000 1975-12-04 2024-10-11 00:36:03 +2164 2164 2165 216.4 432.8 2164 1975-12-05 2024-10-11 00:36:04.000 1975-12-05 2024-10-11 00:36:04 +2165 2165 2166 216.5 433 2165 1975-12-06 2024-10-11 00:36:05.000 1975-12-06 2024-10-11 00:36:05 +2166 2166 2167 216.6 433.20000000000005 2166 1975-12-07 2024-10-11 00:36:06.000 1975-12-07 2024-10-11 00:36:06 +2167 2167 2168 216.7 433.40000000000003 2167 1975-12-08 2024-10-11 00:36:07.000 1975-12-08 2024-10-11 00:36:07 +2168 2168 2169 216.8 433.6 2168 1975-12-09 2024-10-11 00:36:08.000 1975-12-09 2024-10-11 00:36:08 +2169 2169 2170 216.9 433.8 2169 1975-12-10 2024-10-11 00:36:09.000 1975-12-10 2024-10-11 00:36:09 +2170 2170 2171 217 434 2170 1975-12-11 2024-10-11 00:36:10.000 1975-12-11 2024-10-11 00:36:10 +2171 2171 2172 217.1 434.20000000000005 2171 1975-12-12 2024-10-11 00:36:11.000 1975-12-12 2024-10-11 00:36:11 +2172 2172 2173 217.2 434.40000000000003 2172 1975-12-13 2024-10-11 00:36:12.000 1975-12-13 2024-10-11 00:36:12 +2173 2173 2174 217.3 434.6 2173 1975-12-14 2024-10-11 00:36:13.000 1975-12-14 2024-10-11 00:36:13 +2174 2174 2175 217.4 434.8 2174 1975-12-15 2024-10-11 00:36:14.000 1975-12-15 2024-10-11 00:36:14 +2175 2175 2176 217.5 435 2175 1975-12-16 2024-10-11 00:36:15.000 1975-12-16 2024-10-11 00:36:15 +2176 2176 2177 217.6 435.20000000000005 2176 1975-12-17 2024-10-11 00:36:16.000 1975-12-17 2024-10-11 00:36:16 +2177 2177 2178 217.7 435.40000000000003 2177 1975-12-18 2024-10-11 00:36:17.000 1975-12-18 2024-10-11 00:36:17 +2178 2178 2179 217.8 435.6 2178 1975-12-19 2024-10-11 00:36:18.000 1975-12-19 2024-10-11 00:36:18 +2179 2179 2180 217.9 435.8 2179 1975-12-20 2024-10-11 00:36:19.000 1975-12-20 2024-10-11 00:36:19 +2180 2180 2181 218 436 2180 1975-12-21 2024-10-11 00:36:20.000 1975-12-21 2024-10-11 00:36:20 +2181 2181 2182 218.1 436.20000000000005 2181 1975-12-22 2024-10-11 00:36:21.000 1975-12-22 2024-10-11 00:36:21 +2182 2182 2183 218.2 436.40000000000003 2182 1975-12-23 2024-10-11 00:36:22.000 1975-12-23 2024-10-11 00:36:22 +2183 2183 2184 218.3 436.6 2183 1975-12-24 2024-10-11 00:36:23.000 1975-12-24 2024-10-11 00:36:23 +2184 2184 2185 218.4 436.8 2184 1975-12-25 2024-10-11 00:36:24.000 1975-12-25 2024-10-11 00:36:24 +2185 2185 2186 218.5 437 2185 1975-12-26 2024-10-11 00:36:25.000 1975-12-26 2024-10-11 00:36:25 +2186 2186 2187 218.6 437.20000000000005 2186 1975-12-27 2024-10-11 00:36:26.000 1975-12-27 2024-10-11 00:36:26 +2187 2187 2188 218.7 437.40000000000003 2187 1975-12-28 2024-10-11 00:36:27.000 1975-12-28 2024-10-11 00:36:27 +2188 2188 2189 218.8 437.6 2188 1975-12-29 2024-10-11 00:36:28.000 1975-12-29 2024-10-11 00:36:28 +2189 2189 2190 218.9 437.8 2189 1975-12-30 2024-10-11 00:36:29.000 1975-12-30 2024-10-11 00:36:29 +2190 2190 2191 219 438 2190 1975-12-31 2024-10-11 00:36:30.000 1975-12-31 2024-10-11 00:36:30 +2191 2191 2192 219.1 438.20000000000005 2191 1976-01-01 2024-10-11 00:36:31.000 1976-01-01 2024-10-11 00:36:31 +2192 2192 2193 219.2 438.40000000000003 2192 1976-01-02 2024-10-11 00:36:32.000 1976-01-02 2024-10-11 00:36:32 +2193 2193 2194 219.3 438.6 2193 1976-01-03 2024-10-11 00:36:33.000 1976-01-03 2024-10-11 00:36:33 +2194 2194 2195 219.4 438.8 2194 1976-01-04 2024-10-11 00:36:34.000 1976-01-04 2024-10-11 00:36:34 +2195 2195 2196 219.5 439 2195 1976-01-05 2024-10-11 00:36:35.000 1976-01-05 2024-10-11 00:36:35 +2196 2196 2197 219.6 439.20000000000005 2196 1976-01-06 2024-10-11 00:36:36.000 1976-01-06 2024-10-11 00:36:36 +2197 2197 2198 219.7 439.40000000000003 2197 1976-01-07 2024-10-11 00:36:37.000 1976-01-07 2024-10-11 00:36:37 +2198 2198 2199 219.8 439.6 2198 1976-01-08 2024-10-11 00:36:38.000 1976-01-08 2024-10-11 00:36:38 +2199 2199 2200 219.9 439.8 2199 1976-01-09 2024-10-11 00:36:39.000 1976-01-09 2024-10-11 00:36:39 +2200 2200 2201 220 440 2200 1976-01-10 2024-10-11 00:36:40.000 1976-01-10 2024-10-11 00:36:40 +2201 2201 2202 220.1 440.20000000000005 2201 1976-01-11 2024-10-11 00:36:41.000 1976-01-11 2024-10-11 00:36:41 +2202 2202 2203 220.2 440.40000000000003 2202 1976-01-12 2024-10-11 00:36:42.000 1976-01-12 2024-10-11 00:36:42 +2203 2203 2204 220.3 440.6 2203 1976-01-13 2024-10-11 00:36:43.000 1976-01-13 2024-10-11 00:36:43 +2204 2204 2205 220.4 440.8 2204 1976-01-14 2024-10-11 00:36:44.000 1976-01-14 2024-10-11 00:36:44 +2205 2205 2206 220.5 441 2205 1976-01-15 2024-10-11 00:36:45.000 1976-01-15 2024-10-11 00:36:45 +2206 2206 2207 220.6 441.20000000000005 2206 1976-01-16 2024-10-11 00:36:46.000 1976-01-16 2024-10-11 00:36:46 +2207 2207 2208 220.7 441.40000000000003 2207 1976-01-17 2024-10-11 00:36:47.000 1976-01-17 2024-10-11 00:36:47 +2208 2208 2209 220.8 441.6 2208 1976-01-18 2024-10-11 00:36:48.000 1976-01-18 2024-10-11 00:36:48 +2209 2209 2210 220.9 441.8 2209 1976-01-19 2024-10-11 00:36:49.000 1976-01-19 2024-10-11 00:36:49 +2210 2210 2211 221 442 2210 1976-01-20 2024-10-11 00:36:50.000 1976-01-20 2024-10-11 00:36:50 +2211 2211 2212 221.1 442.20000000000005 2211 1976-01-21 2024-10-11 00:36:51.000 1976-01-21 2024-10-11 00:36:51 +2212 2212 2213 221.2 442.40000000000003 2212 1976-01-22 2024-10-11 00:36:52.000 1976-01-22 2024-10-11 00:36:52 +2213 2213 2214 221.3 442.6 2213 1976-01-23 2024-10-11 00:36:53.000 1976-01-23 2024-10-11 00:36:53 +2214 2214 2215 221.4 442.8 2214 1976-01-24 2024-10-11 00:36:54.000 1976-01-24 2024-10-11 00:36:54 +2215 2215 2216 221.5 443 2215 1976-01-25 2024-10-11 00:36:55.000 1976-01-25 2024-10-11 00:36:55 +2216 2216 2217 221.6 443.20000000000005 2216 1976-01-26 2024-10-11 00:36:56.000 1976-01-26 2024-10-11 00:36:56 +2217 2217 2218 221.7 443.40000000000003 2217 1976-01-27 2024-10-11 00:36:57.000 1976-01-27 2024-10-11 00:36:57 +2218 2218 2219 221.8 443.6 2218 1976-01-28 2024-10-11 00:36:58.000 1976-01-28 2024-10-11 00:36:58 +2219 2219 2220 221.9 443.8 2219 1976-01-29 2024-10-11 00:36:59.000 1976-01-29 2024-10-11 00:36:59 +2220 2220 2221 222 444 2220 1976-01-30 2024-10-11 00:37:00.000 1976-01-30 2024-10-11 00:37:00 +2221 2221 2222 222.1 444.20000000000005 2221 1976-01-31 2024-10-11 00:37:01.000 1976-01-31 2024-10-11 00:37:01 +2222 2222 2223 222.2 444.40000000000003 2222 1976-02-01 2024-10-11 00:37:02.000 1976-02-01 2024-10-11 00:37:02 +2223 2223 2224 222.3 444.6 2223 1976-02-02 2024-10-11 00:37:03.000 1976-02-02 2024-10-11 00:37:03 +2224 2224 2225 222.4 444.8 2224 1976-02-03 2024-10-11 00:37:04.000 1976-02-03 2024-10-11 00:37:04 +2225 2225 2226 222.5 445 2225 1976-02-04 2024-10-11 00:37:05.000 1976-02-04 2024-10-11 00:37:05 +2226 2226 2227 222.6 445.20000000000005 2226 1976-02-05 2024-10-11 00:37:06.000 1976-02-05 2024-10-11 00:37:06 +2227 2227 2228 222.7 445.40000000000003 2227 1976-02-06 2024-10-11 00:37:07.000 1976-02-06 2024-10-11 00:37:07 +2228 2228 2229 222.8 445.6 2228 1976-02-07 2024-10-11 00:37:08.000 1976-02-07 2024-10-11 00:37:08 +2229 2229 2230 222.9 445.8 2229 1976-02-08 2024-10-11 00:37:09.000 1976-02-08 2024-10-11 00:37:09 +2230 2230 2231 223 446 2230 1976-02-09 2024-10-11 00:37:10.000 1976-02-09 2024-10-11 00:37:10 +2231 2231 2232 223.1 446.20000000000005 2231 1976-02-10 2024-10-11 00:37:11.000 1976-02-10 2024-10-11 00:37:11 +2232 2232 2233 223.2 446.40000000000003 2232 1976-02-11 2024-10-11 00:37:12.000 1976-02-11 2024-10-11 00:37:12 +2233 2233 2234 223.3 446.6 2233 1976-02-12 2024-10-11 00:37:13.000 1976-02-12 2024-10-11 00:37:13 +2234 2234 2235 223.4 446.8 2234 1976-02-13 2024-10-11 00:37:14.000 1976-02-13 2024-10-11 00:37:14 +2235 2235 2236 223.5 447 2235 1976-02-14 2024-10-11 00:37:15.000 1976-02-14 2024-10-11 00:37:15 +2236 2236 2237 223.6 447.20000000000005 2236 1976-02-15 2024-10-11 00:37:16.000 1976-02-15 2024-10-11 00:37:16 +2237 2237 2238 223.7 447.40000000000003 2237 1976-02-16 2024-10-11 00:37:17.000 1976-02-16 2024-10-11 00:37:17 +2238 2238 2239 223.8 447.6 2238 1976-02-17 2024-10-11 00:37:18.000 1976-02-17 2024-10-11 00:37:18 +2239 2239 2240 223.9 447.8 2239 1976-02-18 2024-10-11 00:37:19.000 1976-02-18 2024-10-11 00:37:19 +2240 2240 2241 224 448 2240 1976-02-19 2024-10-11 00:37:20.000 1976-02-19 2024-10-11 00:37:20 +2241 2241 2242 224.1 448.20000000000005 2241 1976-02-20 2024-10-11 00:37:21.000 1976-02-20 2024-10-11 00:37:21 +2242 2242 2243 224.2 448.40000000000003 2242 1976-02-21 2024-10-11 00:37:22.000 1976-02-21 2024-10-11 00:37:22 +2243 2243 2244 224.3 448.6 2243 1976-02-22 2024-10-11 00:37:23.000 1976-02-22 2024-10-11 00:37:23 +2244 2244 2245 224.4 448.8 2244 1976-02-23 2024-10-11 00:37:24.000 1976-02-23 2024-10-11 00:37:24 +2245 2245 2246 224.5 449 2245 1976-02-24 2024-10-11 00:37:25.000 1976-02-24 2024-10-11 00:37:25 +2246 2246 2247 224.6 449.20000000000005 2246 1976-02-25 2024-10-11 00:37:26.000 1976-02-25 2024-10-11 00:37:26 +2247 2247 2248 224.7 449.40000000000003 2247 1976-02-26 2024-10-11 00:37:27.000 1976-02-26 2024-10-11 00:37:27 +2248 2248 2249 224.8 449.6 2248 1976-02-27 2024-10-11 00:37:28.000 1976-02-27 2024-10-11 00:37:28 +2249 2249 2250 224.9 449.8 2249 1976-02-28 2024-10-11 00:37:29.000 1976-02-28 2024-10-11 00:37:29 +2250 2250 2251 225 450 2250 1976-02-29 2024-10-11 00:37:30.000 1976-02-29 2024-10-11 00:37:30 +2251 2251 2252 225.1 450.20000000000005 2251 1976-03-01 2024-10-11 00:37:31.000 1976-03-01 2024-10-11 00:37:31 +2252 2252 2253 225.2 450.40000000000003 2252 1976-03-02 2024-10-11 00:37:32.000 1976-03-02 2024-10-11 00:37:32 +2253 2253 2254 225.3 450.6 2253 1976-03-03 2024-10-11 00:37:33.000 1976-03-03 2024-10-11 00:37:33 +2254 2254 2255 225.4 450.8 2254 1976-03-04 2024-10-11 00:37:34.000 1976-03-04 2024-10-11 00:37:34 +2255 2255 2256 225.5 451 2255 1976-03-05 2024-10-11 00:37:35.000 1976-03-05 2024-10-11 00:37:35 +2256 2256 2257 225.6 451.20000000000005 2256 1976-03-06 2024-10-11 00:37:36.000 1976-03-06 2024-10-11 00:37:36 +2257 2257 2258 225.7 451.40000000000003 2257 1976-03-07 2024-10-11 00:37:37.000 1976-03-07 2024-10-11 00:37:37 +2258 2258 2259 225.8 451.6 2258 1976-03-08 2024-10-11 00:37:38.000 1976-03-08 2024-10-11 00:37:38 +2259 2259 2260 225.9 451.8 2259 1976-03-09 2024-10-11 00:37:39.000 1976-03-09 2024-10-11 00:37:39 +2260 2260 2261 226 452 2260 1976-03-10 2024-10-11 00:37:40.000 1976-03-10 2024-10-11 00:37:40 +2261 2261 2262 226.1 452.20000000000005 2261 1976-03-11 2024-10-11 00:37:41.000 1976-03-11 2024-10-11 00:37:41 +2262 2262 2263 226.2 452.40000000000003 2262 1976-03-12 2024-10-11 00:37:42.000 1976-03-12 2024-10-11 00:37:42 +2263 2263 2264 226.3 452.6 2263 1976-03-13 2024-10-11 00:37:43.000 1976-03-13 2024-10-11 00:37:43 +2264 2264 2265 226.4 452.8 2264 1976-03-14 2024-10-11 00:37:44.000 1976-03-14 2024-10-11 00:37:44 +2265 2265 2266 226.5 453 2265 1976-03-15 2024-10-11 00:37:45.000 1976-03-15 2024-10-11 00:37:45 +2266 2266 2267 226.6 453.20000000000005 2266 1976-03-16 2024-10-11 00:37:46.000 1976-03-16 2024-10-11 00:37:46 +2267 2267 2268 226.7 453.40000000000003 2267 1976-03-17 2024-10-11 00:37:47.000 1976-03-17 2024-10-11 00:37:47 +2268 2268 2269 226.8 453.6 2268 1976-03-18 2024-10-11 00:37:48.000 1976-03-18 2024-10-11 00:37:48 +2269 2269 2270 226.9 453.8 2269 1976-03-19 2024-10-11 00:37:49.000 1976-03-19 2024-10-11 00:37:49 +2270 2270 2271 227 454 2270 1976-03-20 2024-10-11 00:37:50.000 1976-03-20 2024-10-11 00:37:50 +2271 2271 2272 227.1 454.20000000000005 2271 1976-03-21 2024-10-11 00:37:51.000 1976-03-21 2024-10-11 00:37:51 +2272 2272 2273 227.2 454.40000000000003 2272 1976-03-22 2024-10-11 00:37:52.000 1976-03-22 2024-10-11 00:37:52 +2273 2273 2274 227.3 454.6 2273 1976-03-23 2024-10-11 00:37:53.000 1976-03-23 2024-10-11 00:37:53 +2274 2274 2275 227.4 454.8 2274 1976-03-24 2024-10-11 00:37:54.000 1976-03-24 2024-10-11 00:37:54 +2275 2275 2276 227.5 455 2275 1976-03-25 2024-10-11 00:37:55.000 1976-03-25 2024-10-11 00:37:55 +2276 2276 2277 227.6 455.20000000000005 2276 1976-03-26 2024-10-11 00:37:56.000 1976-03-26 2024-10-11 00:37:56 +2277 2277 2278 227.7 455.40000000000003 2277 1976-03-27 2024-10-11 00:37:57.000 1976-03-27 2024-10-11 00:37:57 +2278 2278 2279 227.8 455.6 2278 1976-03-28 2024-10-11 00:37:58.000 1976-03-28 2024-10-11 00:37:58 +2279 2279 2280 227.9 455.8 2279 1976-03-29 2024-10-11 00:37:59.000 1976-03-29 2024-10-11 00:37:59 +2280 2280 2281 228 456 2280 1976-03-30 2024-10-11 00:38:00.000 1976-03-30 2024-10-11 00:38:00 +2281 2281 2282 228.1 456.20000000000005 2281 1976-03-31 2024-10-11 00:38:01.000 1976-03-31 2024-10-11 00:38:01 +2282 2282 2283 228.2 456.40000000000003 2282 1976-04-01 2024-10-11 00:38:02.000 1976-04-01 2024-10-11 00:38:02 +2283 2283 2284 228.3 456.6 2283 1976-04-02 2024-10-11 00:38:03.000 1976-04-02 2024-10-11 00:38:03 +2284 2284 2285 228.4 456.8 2284 1976-04-03 2024-10-11 00:38:04.000 1976-04-03 2024-10-11 00:38:04 +2285 2285 2286 228.5 457 2285 1976-04-04 2024-10-11 00:38:05.000 1976-04-04 2024-10-11 00:38:05 +2286 2286 2287 228.6 457.20000000000005 2286 1976-04-05 2024-10-11 00:38:06.000 1976-04-05 2024-10-11 00:38:06 +2287 2287 2288 228.7 457.40000000000003 2287 1976-04-06 2024-10-11 00:38:07.000 1976-04-06 2024-10-11 00:38:07 +2288 2288 2289 228.8 457.6 2288 1976-04-07 2024-10-11 00:38:08.000 1976-04-07 2024-10-11 00:38:08 +2289 2289 2290 228.9 457.8 2289 1976-04-08 2024-10-11 00:38:09.000 1976-04-08 2024-10-11 00:38:09 +2290 2290 2291 229 458 2290 1976-04-09 2024-10-11 00:38:10.000 1976-04-09 2024-10-11 00:38:10 +2291 2291 2292 229.1 458.20000000000005 2291 1976-04-10 2024-10-11 00:38:11.000 1976-04-10 2024-10-11 00:38:11 +2292 2292 2293 229.2 458.40000000000003 2292 1976-04-11 2024-10-11 00:38:12.000 1976-04-11 2024-10-11 00:38:12 +2293 2293 2294 229.3 458.6 2293 1976-04-12 2024-10-11 00:38:13.000 1976-04-12 2024-10-11 00:38:13 +2294 2294 2295 229.4 458.8 2294 1976-04-13 2024-10-11 00:38:14.000 1976-04-13 2024-10-11 00:38:14 +2295 2295 2296 229.5 459 2295 1976-04-14 2024-10-11 00:38:15.000 1976-04-14 2024-10-11 00:38:15 +2296 2296 2297 229.6 459.20000000000005 2296 1976-04-15 2024-10-11 00:38:16.000 1976-04-15 2024-10-11 00:38:16 +2297 2297 2298 229.7 459.40000000000003 2297 1976-04-16 2024-10-11 00:38:17.000 1976-04-16 2024-10-11 00:38:17 +2298 2298 2299 229.8 459.6 2298 1976-04-17 2024-10-11 00:38:18.000 1976-04-17 2024-10-11 00:38:18 +2299 2299 2300 229.9 459.8 2299 1976-04-18 2024-10-11 00:38:19.000 1976-04-18 2024-10-11 00:38:19 +2300 2300 2301 230 460 2300 1976-04-19 2024-10-11 00:38:20.000 1976-04-19 2024-10-11 00:38:20 +2301 2301 2302 230.1 460.20000000000005 2301 1976-04-20 2024-10-11 00:38:21.000 1976-04-20 2024-10-11 00:38:21 +2302 2302 2303 230.2 460.40000000000003 2302 1976-04-21 2024-10-11 00:38:22.000 1976-04-21 2024-10-11 00:38:22 +2303 2303 2304 230.3 460.6 2303 1976-04-22 2024-10-11 00:38:23.000 1976-04-22 2024-10-11 00:38:23 +2304 2304 2305 230.4 460.8 2304 1976-04-23 2024-10-11 00:38:24.000 1976-04-23 2024-10-11 00:38:24 +2305 2305 2306 230.5 461 2305 1976-04-24 2024-10-11 00:38:25.000 1976-04-24 2024-10-11 00:38:25 +2306 2306 2307 230.6 461.20000000000005 2306 1976-04-25 2024-10-11 00:38:26.000 1976-04-25 2024-10-11 00:38:26 +2307 2307 2308 230.7 461.40000000000003 2307 1976-04-26 2024-10-11 00:38:27.000 1976-04-26 2024-10-11 00:38:27 +2308 2308 2309 230.8 461.6 2308 1976-04-27 2024-10-11 00:38:28.000 1976-04-27 2024-10-11 00:38:28 +2309 2309 2310 230.9 461.8 2309 1976-04-28 2024-10-11 00:38:29.000 1976-04-28 2024-10-11 00:38:29 +2310 2310 2311 231 462 2310 1976-04-29 2024-10-11 00:38:30.000 1976-04-29 2024-10-11 00:38:30 +2311 2311 2312 231.1 462.20000000000005 2311 1976-04-30 2024-10-11 00:38:31.000 1976-04-30 2024-10-11 00:38:31 +2312 2312 2313 231.2 462.40000000000003 2312 1976-05-01 2024-10-11 00:38:32.000 1976-05-01 2024-10-11 00:38:32 +2313 2313 2314 231.3 462.6 2313 1976-05-02 2024-10-11 00:38:33.000 1976-05-02 2024-10-11 00:38:33 +2314 2314 2315 231.4 462.8 2314 1976-05-03 2024-10-11 00:38:34.000 1976-05-03 2024-10-11 00:38:34 +2315 2315 2316 231.5 463 2315 1976-05-04 2024-10-11 00:38:35.000 1976-05-04 2024-10-11 00:38:35 +2316 2316 2317 231.6 463.20000000000005 2316 1976-05-05 2024-10-11 00:38:36.000 1976-05-05 2024-10-11 00:38:36 +2317 2317 2318 231.7 463.40000000000003 2317 1976-05-06 2024-10-11 00:38:37.000 1976-05-06 2024-10-11 00:38:37 +2318 2318 2319 231.8 463.6 2318 1976-05-07 2024-10-11 00:38:38.000 1976-05-07 2024-10-11 00:38:38 +2319 2319 2320 231.9 463.8 2319 1976-05-08 2024-10-11 00:38:39.000 1976-05-08 2024-10-11 00:38:39 +2320 2320 2321 232 464 2320 1976-05-09 2024-10-11 00:38:40.000 1976-05-09 2024-10-11 00:38:40 +2321 2321 2322 232.1 464.20000000000005 2321 1976-05-10 2024-10-11 00:38:41.000 1976-05-10 2024-10-11 00:38:41 +2322 2322 2323 232.2 464.40000000000003 2322 1976-05-11 2024-10-11 00:38:42.000 1976-05-11 2024-10-11 00:38:42 +2323 2323 2324 232.3 464.6 2323 1976-05-12 2024-10-11 00:38:43.000 1976-05-12 2024-10-11 00:38:43 +2324 2324 2325 232.4 464.8 2324 1976-05-13 2024-10-11 00:38:44.000 1976-05-13 2024-10-11 00:38:44 +2325 2325 2326 232.5 465 2325 1976-05-14 2024-10-11 00:38:45.000 1976-05-14 2024-10-11 00:38:45 +2326 2326 2327 232.6 465.20000000000005 2326 1976-05-15 2024-10-11 00:38:46.000 1976-05-15 2024-10-11 00:38:46 +2327 2327 2328 232.7 465.40000000000003 2327 1976-05-16 2024-10-11 00:38:47.000 1976-05-16 2024-10-11 00:38:47 +2328 2328 2329 232.8 465.6 2328 1976-05-17 2024-10-11 00:38:48.000 1976-05-17 2024-10-11 00:38:48 +2329 2329 2330 232.9 465.8 2329 1976-05-18 2024-10-11 00:38:49.000 1976-05-18 2024-10-11 00:38:49 +2330 2330 2331 233 466 2330 1976-05-19 2024-10-11 00:38:50.000 1976-05-19 2024-10-11 00:38:50 +2331 2331 2332 233.1 466.20000000000005 2331 1976-05-20 2024-10-11 00:38:51.000 1976-05-20 2024-10-11 00:38:51 +2332 2332 2333 233.2 466.40000000000003 2332 1976-05-21 2024-10-11 00:38:52.000 1976-05-21 2024-10-11 00:38:52 +2333 2333 2334 233.3 466.6 2333 1976-05-22 2024-10-11 00:38:53.000 1976-05-22 2024-10-11 00:38:53 +2334 2334 2335 233.4 466.8 2334 1976-05-23 2024-10-11 00:38:54.000 1976-05-23 2024-10-11 00:38:54 +2335 2335 2336 233.5 467 2335 1976-05-24 2024-10-11 00:38:55.000 1976-05-24 2024-10-11 00:38:55 +2336 2336 2337 233.6 467.20000000000005 2336 1976-05-25 2024-10-11 00:38:56.000 1976-05-25 2024-10-11 00:38:56 +2337 2337 2338 233.7 467.40000000000003 2337 1976-05-26 2024-10-11 00:38:57.000 1976-05-26 2024-10-11 00:38:57 +2338 2338 2339 233.8 467.6 2338 1976-05-27 2024-10-11 00:38:58.000 1976-05-27 2024-10-11 00:38:58 +2339 2339 2340 233.9 467.8 2339 1976-05-28 2024-10-11 00:38:59.000 1976-05-28 2024-10-11 00:38:59 +2340 2340 2341 234 468 2340 1976-05-29 2024-10-11 00:39:00.000 1976-05-29 2024-10-11 00:39:00 +2341 2341 2342 234.1 468.20000000000005 2341 1976-05-30 2024-10-11 00:39:01.000 1976-05-30 2024-10-11 00:39:01 +2342 2342 2343 234.2 468.40000000000003 2342 1976-05-31 2024-10-11 00:39:02.000 1976-05-31 2024-10-11 00:39:02 +2343 2343 2344 234.3 468.6 2343 1976-06-01 2024-10-11 00:39:03.000 1976-06-01 2024-10-11 00:39:03 +2344 2344 2345 234.4 468.8 2344 1976-06-02 2024-10-11 00:39:04.000 1976-06-02 2024-10-11 00:39:04 +2345 2345 2346 234.5 469 2345 1976-06-03 2024-10-11 00:39:05.000 1976-06-03 2024-10-11 00:39:05 +2346 2346 2347 234.6 469.20000000000005 2346 1976-06-04 2024-10-11 00:39:06.000 1976-06-04 2024-10-11 00:39:06 +2347 2347 2348 234.7 469.40000000000003 2347 1976-06-05 2024-10-11 00:39:07.000 1976-06-05 2024-10-11 00:39:07 +2348 2348 2349 234.8 469.6 2348 1976-06-06 2024-10-11 00:39:08.000 1976-06-06 2024-10-11 00:39:08 +2349 2349 2350 234.9 469.8 2349 1976-06-07 2024-10-11 00:39:09.000 1976-06-07 2024-10-11 00:39:09 +2350 2350 2351 235 470 2350 1976-06-08 2024-10-11 00:39:10.000 1976-06-08 2024-10-11 00:39:10 +2351 2351 2352 235.1 470.20000000000005 2351 1976-06-09 2024-10-11 00:39:11.000 1976-06-09 2024-10-11 00:39:11 +2352 2352 2353 235.2 470.40000000000003 2352 1976-06-10 2024-10-11 00:39:12.000 1976-06-10 2024-10-11 00:39:12 +2353 2353 2354 235.3 470.6 2353 1976-06-11 2024-10-11 00:39:13.000 1976-06-11 2024-10-11 00:39:13 +2354 2354 2355 235.4 470.8 2354 1976-06-12 2024-10-11 00:39:14.000 1976-06-12 2024-10-11 00:39:14 +2355 2355 2356 235.5 471 2355 1976-06-13 2024-10-11 00:39:15.000 1976-06-13 2024-10-11 00:39:15 +2356 2356 2357 235.6 471.20000000000005 2356 1976-06-14 2024-10-11 00:39:16.000 1976-06-14 2024-10-11 00:39:16 +2357 2357 2358 235.7 471.40000000000003 2357 1976-06-15 2024-10-11 00:39:17.000 1976-06-15 2024-10-11 00:39:17 +2358 2358 2359 235.8 471.6 2358 1976-06-16 2024-10-11 00:39:18.000 1976-06-16 2024-10-11 00:39:18 +2359 2359 2360 235.9 471.8 2359 1976-06-17 2024-10-11 00:39:19.000 1976-06-17 2024-10-11 00:39:19 +2360 2360 2361 236 472 2360 1976-06-18 2024-10-11 00:39:20.000 1976-06-18 2024-10-11 00:39:20 +2361 2361 2362 236.1 472.20000000000005 2361 1976-06-19 2024-10-11 00:39:21.000 1976-06-19 2024-10-11 00:39:21 +2362 2362 2363 236.2 472.40000000000003 2362 1976-06-20 2024-10-11 00:39:22.000 1976-06-20 2024-10-11 00:39:22 +2363 2363 2364 236.3 472.6 2363 1976-06-21 2024-10-11 00:39:23.000 1976-06-21 2024-10-11 00:39:23 +2364 2364 2365 236.4 472.8 2364 1976-06-22 2024-10-11 00:39:24.000 1976-06-22 2024-10-11 00:39:24 +2365 2365 2366 236.5 473 2365 1976-06-23 2024-10-11 00:39:25.000 1976-06-23 2024-10-11 00:39:25 +2366 2366 2367 236.6 473.20000000000005 2366 1976-06-24 2024-10-11 00:39:26.000 1976-06-24 2024-10-11 00:39:26 +2367 2367 2368 236.7 473.40000000000003 2367 1976-06-25 2024-10-11 00:39:27.000 1976-06-25 2024-10-11 00:39:27 +2368 2368 2369 236.8 473.6 2368 1976-06-26 2024-10-11 00:39:28.000 1976-06-26 2024-10-11 00:39:28 +2369 2369 2370 236.9 473.8 2369 1976-06-27 2024-10-11 00:39:29.000 1976-06-27 2024-10-11 00:39:29 +2370 2370 2371 237 474 2370 1976-06-28 2024-10-11 00:39:30.000 1976-06-28 2024-10-11 00:39:30 +2371 2371 2372 237.1 474.20000000000005 2371 1976-06-29 2024-10-11 00:39:31.000 1976-06-29 2024-10-11 00:39:31 +2372 2372 2373 237.2 474.40000000000003 2372 1976-06-30 2024-10-11 00:39:32.000 1976-06-30 2024-10-11 00:39:32 +2373 2373 2374 237.3 474.6 2373 1976-07-01 2024-10-11 00:39:33.000 1976-07-01 2024-10-11 00:39:33 +2374 2374 2375 237.4 474.8 2374 1976-07-02 2024-10-11 00:39:34.000 1976-07-02 2024-10-11 00:39:34 +2375 2375 2376 237.5 475 2375 1976-07-03 2024-10-11 00:39:35.000 1976-07-03 2024-10-11 00:39:35 +2376 2376 2377 237.6 475.20000000000005 2376 1976-07-04 2024-10-11 00:39:36.000 1976-07-04 2024-10-11 00:39:36 +2377 2377 2378 237.7 475.40000000000003 2377 1976-07-05 2024-10-11 00:39:37.000 1976-07-05 2024-10-11 00:39:37 +2378 2378 2379 237.8 475.6 2378 1976-07-06 2024-10-11 00:39:38.000 1976-07-06 2024-10-11 00:39:38 +2379 2379 2380 237.9 475.8 2379 1976-07-07 2024-10-11 00:39:39.000 1976-07-07 2024-10-11 00:39:39 +2380 2380 2381 238 476 2380 1976-07-08 2024-10-11 00:39:40.000 1976-07-08 2024-10-11 00:39:40 +2381 2381 2382 238.1 476.20000000000005 2381 1976-07-09 2024-10-11 00:39:41.000 1976-07-09 2024-10-11 00:39:41 +2382 2382 2383 238.2 476.40000000000003 2382 1976-07-10 2024-10-11 00:39:42.000 1976-07-10 2024-10-11 00:39:42 +2383 2383 2384 238.3 476.6 2383 1976-07-11 2024-10-11 00:39:43.000 1976-07-11 2024-10-11 00:39:43 +2384 2384 2385 238.4 476.8 2384 1976-07-12 2024-10-11 00:39:44.000 1976-07-12 2024-10-11 00:39:44 +2385 2385 2386 238.5 477 2385 1976-07-13 2024-10-11 00:39:45.000 1976-07-13 2024-10-11 00:39:45 +2386 2386 2387 238.6 477.20000000000005 2386 1976-07-14 2024-10-11 00:39:46.000 1976-07-14 2024-10-11 00:39:46 +2387 2387 2388 238.7 477.40000000000003 2387 1976-07-15 2024-10-11 00:39:47.000 1976-07-15 2024-10-11 00:39:47 +2388 2388 2389 238.8 477.6 2388 1976-07-16 2024-10-11 00:39:48.000 1976-07-16 2024-10-11 00:39:48 +2389 2389 2390 238.9 477.8 2389 1976-07-17 2024-10-11 00:39:49.000 1976-07-17 2024-10-11 00:39:49 +2390 2390 2391 239 478 2390 1976-07-18 2024-10-11 00:39:50.000 1976-07-18 2024-10-11 00:39:50 +2391 2391 2392 239.1 478.20000000000005 2391 1976-07-19 2024-10-11 00:39:51.000 1976-07-19 2024-10-11 00:39:51 +2392 2392 2393 239.2 478.40000000000003 2392 1976-07-20 2024-10-11 00:39:52.000 1976-07-20 2024-10-11 00:39:52 +2393 2393 2394 239.3 478.6 2393 1976-07-21 2024-10-11 00:39:53.000 1976-07-21 2024-10-11 00:39:53 +2394 2394 2395 239.4 478.8 2394 1976-07-22 2024-10-11 00:39:54.000 1976-07-22 2024-10-11 00:39:54 +2395 2395 2396 239.5 479 2395 1976-07-23 2024-10-11 00:39:55.000 1976-07-23 2024-10-11 00:39:55 +2396 2396 2397 239.6 479.20000000000005 2396 1976-07-24 2024-10-11 00:39:56.000 1976-07-24 2024-10-11 00:39:56 +2397 2397 2398 239.7 479.40000000000003 2397 1976-07-25 2024-10-11 00:39:57.000 1976-07-25 2024-10-11 00:39:57 +2398 2398 2399 239.8 479.6 2398 1976-07-26 2024-10-11 00:39:58.000 1976-07-26 2024-10-11 00:39:58 +2399 2399 2400 239.9 479.8 2399 1976-07-27 2024-10-11 00:39:59.000 1976-07-27 2024-10-11 00:39:59 +2400 2400 2401 240 480 2400 1976-07-28 2024-10-11 00:40:00.000 1976-07-28 2024-10-11 00:40:00 +2401 2401 2402 240.1 480.20000000000005 2401 1976-07-29 2024-10-11 00:40:01.000 1976-07-29 2024-10-11 00:40:01 +2402 2402 2403 240.2 480.40000000000003 2402 1976-07-30 2024-10-11 00:40:02.000 1976-07-30 2024-10-11 00:40:02 +2403 2403 2404 240.3 480.6 2403 1976-07-31 2024-10-11 00:40:03.000 1976-07-31 2024-10-11 00:40:03 +2404 2404 2405 240.4 480.8 2404 1976-08-01 2024-10-11 00:40:04.000 1976-08-01 2024-10-11 00:40:04 +2405 2405 2406 240.5 481 2405 1976-08-02 2024-10-11 00:40:05.000 1976-08-02 2024-10-11 00:40:05 +2406 2406 2407 240.6 481.20000000000005 2406 1976-08-03 2024-10-11 00:40:06.000 1976-08-03 2024-10-11 00:40:06 +2407 2407 2408 240.7 481.40000000000003 2407 1976-08-04 2024-10-11 00:40:07.000 1976-08-04 2024-10-11 00:40:07 +2408 2408 2409 240.8 481.6 2408 1976-08-05 2024-10-11 00:40:08.000 1976-08-05 2024-10-11 00:40:08 +2409 2409 2410 240.9 481.8 2409 1976-08-06 2024-10-11 00:40:09.000 1976-08-06 2024-10-11 00:40:09 +2410 2410 2411 241 482 2410 1976-08-07 2024-10-11 00:40:10.000 1976-08-07 2024-10-11 00:40:10 +2411 2411 2412 241.1 482.20000000000005 2411 1976-08-08 2024-10-11 00:40:11.000 1976-08-08 2024-10-11 00:40:11 +2412 2412 2413 241.2 482.40000000000003 2412 1976-08-09 2024-10-11 00:40:12.000 1976-08-09 2024-10-11 00:40:12 +2413 2413 2414 241.3 482.6 2413 1976-08-10 2024-10-11 00:40:13.000 1976-08-10 2024-10-11 00:40:13 +2414 2414 2415 241.4 482.8 2414 1976-08-11 2024-10-11 00:40:14.000 1976-08-11 2024-10-11 00:40:14 +2415 2415 2416 241.5 483 2415 1976-08-12 2024-10-11 00:40:15.000 1976-08-12 2024-10-11 00:40:15 +2416 2416 2417 241.6 483.20000000000005 2416 1976-08-13 2024-10-11 00:40:16.000 1976-08-13 2024-10-11 00:40:16 +2417 2417 2418 241.7 483.40000000000003 2417 1976-08-14 2024-10-11 00:40:17.000 1976-08-14 2024-10-11 00:40:17 +2418 2418 2419 241.8 483.6 2418 1976-08-15 2024-10-11 00:40:18.000 1976-08-15 2024-10-11 00:40:18 +2419 2419 2420 241.9 483.8 2419 1976-08-16 2024-10-11 00:40:19.000 1976-08-16 2024-10-11 00:40:19 +2420 2420 2421 242 484 2420 1976-08-17 2024-10-11 00:40:20.000 1976-08-17 2024-10-11 00:40:20 +2421 2421 2422 242.1 484.20000000000005 2421 1976-08-18 2024-10-11 00:40:21.000 1976-08-18 2024-10-11 00:40:21 +2422 2422 2423 242.2 484.40000000000003 2422 1976-08-19 2024-10-11 00:40:22.000 1976-08-19 2024-10-11 00:40:22 +2423 2423 2424 242.3 484.6 2423 1976-08-20 2024-10-11 00:40:23.000 1976-08-20 2024-10-11 00:40:23 +2424 2424 2425 242.4 484.8 2424 1976-08-21 2024-10-11 00:40:24.000 1976-08-21 2024-10-11 00:40:24 +2425 2425 2426 242.5 485 2425 1976-08-22 2024-10-11 00:40:25.000 1976-08-22 2024-10-11 00:40:25 +2426 2426 2427 242.6 485.20000000000005 2426 1976-08-23 2024-10-11 00:40:26.000 1976-08-23 2024-10-11 00:40:26 +2427 2427 2428 242.7 485.40000000000003 2427 1976-08-24 2024-10-11 00:40:27.000 1976-08-24 2024-10-11 00:40:27 +2428 2428 2429 242.8 485.6 2428 1976-08-25 2024-10-11 00:40:28.000 1976-08-25 2024-10-11 00:40:28 +2429 2429 2430 242.9 485.8 2429 1976-08-26 2024-10-11 00:40:29.000 1976-08-26 2024-10-11 00:40:29 +2430 2430 2431 243 486 2430 1976-08-27 2024-10-11 00:40:30.000 1976-08-27 2024-10-11 00:40:30 +2431 2431 2432 243.1 486.20000000000005 2431 1976-08-28 2024-10-11 00:40:31.000 1976-08-28 2024-10-11 00:40:31 +2432 2432 2433 243.2 486.40000000000003 2432 1976-08-29 2024-10-11 00:40:32.000 1976-08-29 2024-10-11 00:40:32 +2433 2433 2434 243.3 486.6 2433 1976-08-30 2024-10-11 00:40:33.000 1976-08-30 2024-10-11 00:40:33 +2434 2434 2435 243.4 486.8 2434 1976-08-31 2024-10-11 00:40:34.000 1976-08-31 2024-10-11 00:40:34 +2435 2435 2436 243.5 487 2435 1976-09-01 2024-10-11 00:40:35.000 1976-09-01 2024-10-11 00:40:35 +2436 2436 2437 243.6 487.20000000000005 2436 1976-09-02 2024-10-11 00:40:36.000 1976-09-02 2024-10-11 00:40:36 +2437 2437 2438 243.7 487.40000000000003 2437 1976-09-03 2024-10-11 00:40:37.000 1976-09-03 2024-10-11 00:40:37 +2438 2438 2439 243.8 487.6 2438 1976-09-04 2024-10-11 00:40:38.000 1976-09-04 2024-10-11 00:40:38 +2439 2439 2440 243.9 487.8 2439 1976-09-05 2024-10-11 00:40:39.000 1976-09-05 2024-10-11 00:40:39 +2440 2440 2441 244 488 2440 1976-09-06 2024-10-11 00:40:40.000 1976-09-06 2024-10-11 00:40:40 +2441 2441 2442 244.1 488.20000000000005 2441 1976-09-07 2024-10-11 00:40:41.000 1976-09-07 2024-10-11 00:40:41 +2442 2442 2443 244.2 488.40000000000003 2442 1976-09-08 2024-10-11 00:40:42.000 1976-09-08 2024-10-11 00:40:42 +2443 2443 2444 244.3 488.6 2443 1976-09-09 2024-10-11 00:40:43.000 1976-09-09 2024-10-11 00:40:43 +2444 2444 2445 244.4 488.8 2444 1976-09-10 2024-10-11 00:40:44.000 1976-09-10 2024-10-11 00:40:44 +2445 2445 2446 244.5 489 2445 1976-09-11 2024-10-11 00:40:45.000 1976-09-11 2024-10-11 00:40:45 +2446 2446 2447 244.6 489.20000000000005 2446 1976-09-12 2024-10-11 00:40:46.000 1976-09-12 2024-10-11 00:40:46 +2447 2447 2448 244.7 489.40000000000003 2447 1976-09-13 2024-10-11 00:40:47.000 1976-09-13 2024-10-11 00:40:47 +2448 2448 2449 244.8 489.6 2448 1976-09-14 2024-10-11 00:40:48.000 1976-09-14 2024-10-11 00:40:48 +2449 2449 2450 244.9 489.8 2449 1976-09-15 2024-10-11 00:40:49.000 1976-09-15 2024-10-11 00:40:49 +2450 2450 2451 245 490 2450 1976-09-16 2024-10-11 00:40:50.000 1976-09-16 2024-10-11 00:40:50 +2451 2451 2452 245.1 490.20000000000005 2451 1976-09-17 2024-10-11 00:40:51.000 1976-09-17 2024-10-11 00:40:51 +2452 2452 2453 245.2 490.40000000000003 2452 1976-09-18 2024-10-11 00:40:52.000 1976-09-18 2024-10-11 00:40:52 +2453 2453 2454 245.3 490.6 2453 1976-09-19 2024-10-11 00:40:53.000 1976-09-19 2024-10-11 00:40:53 +2454 2454 2455 245.4 490.8 2454 1976-09-20 2024-10-11 00:40:54.000 1976-09-20 2024-10-11 00:40:54 +2455 2455 2456 245.5 491 2455 1976-09-21 2024-10-11 00:40:55.000 1976-09-21 2024-10-11 00:40:55 +2456 2456 2457 245.6 491.20000000000005 2456 1976-09-22 2024-10-11 00:40:56.000 1976-09-22 2024-10-11 00:40:56 +2457 2457 2458 245.7 491.40000000000003 2457 1976-09-23 2024-10-11 00:40:57.000 1976-09-23 2024-10-11 00:40:57 +2458 2458 2459 245.8 491.6 2458 1976-09-24 2024-10-11 00:40:58.000 1976-09-24 2024-10-11 00:40:58 +2459 2459 2460 245.9 491.8 2459 1976-09-25 2024-10-11 00:40:59.000 1976-09-25 2024-10-11 00:40:59 +2460 2460 2461 246 492 2460 1976-09-26 2024-10-11 00:41:00.000 1976-09-26 2024-10-11 00:41:00 +2461 2461 2462 246.1 492.20000000000005 2461 1976-09-27 2024-10-11 00:41:01.000 1976-09-27 2024-10-11 00:41:01 +2462 2462 2463 246.2 492.40000000000003 2462 1976-09-28 2024-10-11 00:41:02.000 1976-09-28 2024-10-11 00:41:02 +2463 2463 2464 246.3 492.6 2463 1976-09-29 2024-10-11 00:41:03.000 1976-09-29 2024-10-11 00:41:03 +2464 2464 2465 246.4 492.8 2464 1976-09-30 2024-10-11 00:41:04.000 1976-09-30 2024-10-11 00:41:04 +2465 2465 2466 246.5 493 2465 1976-10-01 2024-10-11 00:41:05.000 1976-10-01 2024-10-11 00:41:05 +2466 2466 2467 246.6 493.20000000000005 2466 1976-10-02 2024-10-11 00:41:06.000 1976-10-02 2024-10-11 00:41:06 +2467 2467 2468 246.7 493.40000000000003 2467 1976-10-03 2024-10-11 00:41:07.000 1976-10-03 2024-10-11 00:41:07 +2468 2468 2469 246.8 493.6 2468 1976-10-04 2024-10-11 00:41:08.000 1976-10-04 2024-10-11 00:41:08 +2469 2469 2470 246.9 493.8 2469 1976-10-05 2024-10-11 00:41:09.000 1976-10-05 2024-10-11 00:41:09 +2470 2470 2471 247 494 2470 1976-10-06 2024-10-11 00:41:10.000 1976-10-06 2024-10-11 00:41:10 +2471 2471 2472 247.1 494.20000000000005 2471 1976-10-07 2024-10-11 00:41:11.000 1976-10-07 2024-10-11 00:41:11 +2472 2472 2473 247.2 494.40000000000003 2472 1976-10-08 2024-10-11 00:41:12.000 1976-10-08 2024-10-11 00:41:12 +2473 2473 2474 247.3 494.6 2473 1976-10-09 2024-10-11 00:41:13.000 1976-10-09 2024-10-11 00:41:13 +2474 2474 2475 247.4 494.8 2474 1976-10-10 2024-10-11 00:41:14.000 1976-10-10 2024-10-11 00:41:14 +2475 2475 2476 247.5 495 2475 1976-10-11 2024-10-11 00:41:15.000 1976-10-11 2024-10-11 00:41:15 +2476 2476 2477 247.6 495.20000000000005 2476 1976-10-12 2024-10-11 00:41:16.000 1976-10-12 2024-10-11 00:41:16 +2477 2477 2478 247.7 495.40000000000003 2477 1976-10-13 2024-10-11 00:41:17.000 1976-10-13 2024-10-11 00:41:17 +2478 2478 2479 247.8 495.6 2478 1976-10-14 2024-10-11 00:41:18.000 1976-10-14 2024-10-11 00:41:18 +2479 2479 2480 247.9 495.8 2479 1976-10-15 2024-10-11 00:41:19.000 1976-10-15 2024-10-11 00:41:19 +2480 2480 2481 248 496 2480 1976-10-16 2024-10-11 00:41:20.000 1976-10-16 2024-10-11 00:41:20 +2481 2481 2482 248.1 496.20000000000005 2481 1976-10-17 2024-10-11 00:41:21.000 1976-10-17 2024-10-11 00:41:21 +2482 2482 2483 248.2 496.40000000000003 2482 1976-10-18 2024-10-11 00:41:22.000 1976-10-18 2024-10-11 00:41:22 +2483 2483 2484 248.3 496.6 2483 1976-10-19 2024-10-11 00:41:23.000 1976-10-19 2024-10-11 00:41:23 +2484 2484 2485 248.4 496.8 2484 1976-10-20 2024-10-11 00:41:24.000 1976-10-20 2024-10-11 00:41:24 +2485 2485 2486 248.5 497 2485 1976-10-21 2024-10-11 00:41:25.000 1976-10-21 2024-10-11 00:41:25 +2486 2486 2487 248.6 497.20000000000005 2486 1976-10-22 2024-10-11 00:41:26.000 1976-10-22 2024-10-11 00:41:26 +2487 2487 2488 248.7 497.40000000000003 2487 1976-10-23 2024-10-11 00:41:27.000 1976-10-23 2024-10-11 00:41:27 +2488 2488 2489 248.8 497.6 2488 1976-10-24 2024-10-11 00:41:28.000 1976-10-24 2024-10-11 00:41:28 +2489 2489 2490 248.9 497.8 2489 1976-10-25 2024-10-11 00:41:29.000 1976-10-25 2024-10-11 00:41:29 +2490 2490 2491 249 498 2490 1976-10-26 2024-10-11 00:41:30.000 1976-10-26 2024-10-11 00:41:30 +2491 2491 2492 249.1 498.20000000000005 2491 1976-10-27 2024-10-11 00:41:31.000 1976-10-27 2024-10-11 00:41:31 +2492 2492 2493 249.2 498.40000000000003 2492 1976-10-28 2024-10-11 00:41:32.000 1976-10-28 2024-10-11 00:41:32 +2493 2493 2494 249.3 498.6 2493 1976-10-29 2024-10-11 00:41:33.000 1976-10-29 2024-10-11 00:41:33 +2494 2494 2495 249.4 498.8 2494 1976-10-30 2024-10-11 00:41:34.000 1976-10-30 2024-10-11 00:41:34 +2495 2495 2496 249.5 499 2495 1976-10-31 2024-10-11 00:41:35.000 1976-10-31 2024-10-11 00:41:35 +2496 2496 2497 249.6 499.20000000000005 2496 1976-11-01 2024-10-11 00:41:36.000 1976-11-01 2024-10-11 00:41:36 +2497 2497 2498 249.7 499.40000000000003 2497 1976-11-02 2024-10-11 00:41:37.000 1976-11-02 2024-10-11 00:41:37 +2498 2498 2499 249.8 499.6 2498 1976-11-03 2024-10-11 00:41:38.000 1976-11-03 2024-10-11 00:41:38 +2499 2499 2500 249.9 499.8 2499 1976-11-04 2024-10-11 00:41:39.000 1976-11-04 2024-10-11 00:41:39 +2500 2500 2501 250 500 2500 1976-11-05 2024-10-11 00:41:40.000 1976-11-05 2024-10-11 00:41:40 +2501 2501 2502 250.1 500.20000000000005 2501 1976-11-06 2024-10-11 00:41:41.000 1976-11-06 2024-10-11 00:41:41 +2502 2502 2503 250.2 500.40000000000003 2502 1976-11-07 2024-10-11 00:41:42.000 1976-11-07 2024-10-11 00:41:42 +2503 2503 2504 250.3 500.6 2503 1976-11-08 2024-10-11 00:41:43.000 1976-11-08 2024-10-11 00:41:43 +2504 2504 2505 250.4 500.8 2504 1976-11-09 2024-10-11 00:41:44.000 1976-11-09 2024-10-11 00:41:44 +2505 2505 2506 250.5 501 2505 1976-11-10 2024-10-11 00:41:45.000 1976-11-10 2024-10-11 00:41:45 +2506 2506 2507 250.6 501.20000000000005 2506 1976-11-11 2024-10-11 00:41:46.000 1976-11-11 2024-10-11 00:41:46 +2507 2507 2508 250.7 501.40000000000003 2507 1976-11-12 2024-10-11 00:41:47.000 1976-11-12 2024-10-11 00:41:47 +2508 2508 2509 250.8 501.6 2508 1976-11-13 2024-10-11 00:41:48.000 1976-11-13 2024-10-11 00:41:48 +2509 2509 2510 250.9 501.8 2509 1976-11-14 2024-10-11 00:41:49.000 1976-11-14 2024-10-11 00:41:49 +2510 2510 2511 251 502 2510 1976-11-15 2024-10-11 00:41:50.000 1976-11-15 2024-10-11 00:41:50 +2511 2511 2512 251.1 502.20000000000005 2511 1976-11-16 2024-10-11 00:41:51.000 1976-11-16 2024-10-11 00:41:51 +2512 2512 2513 251.2 502.40000000000003 2512 1976-11-17 2024-10-11 00:41:52.000 1976-11-17 2024-10-11 00:41:52 +2513 2513 2514 251.3 502.6 2513 1976-11-18 2024-10-11 00:41:53.000 1976-11-18 2024-10-11 00:41:53 +2514 2514 2515 251.4 502.8 2514 1976-11-19 2024-10-11 00:41:54.000 1976-11-19 2024-10-11 00:41:54 +2515 2515 2516 251.5 503 2515 1976-11-20 2024-10-11 00:41:55.000 1976-11-20 2024-10-11 00:41:55 +2516 2516 2517 251.6 503.20000000000005 2516 1976-11-21 2024-10-11 00:41:56.000 1976-11-21 2024-10-11 00:41:56 +2517 2517 2518 251.7 503.40000000000003 2517 1976-11-22 2024-10-11 00:41:57.000 1976-11-22 2024-10-11 00:41:57 +2518 2518 2519 251.8 503.6 2518 1976-11-23 2024-10-11 00:41:58.000 1976-11-23 2024-10-11 00:41:58 +2519 2519 2520 251.9 503.8 2519 1976-11-24 2024-10-11 00:41:59.000 1976-11-24 2024-10-11 00:41:59 +2520 2520 2521 252 504 2520 1976-11-25 2024-10-11 00:42:00.000 1976-11-25 2024-10-11 00:42:00 +2521 2521 2522 252.1 504.20000000000005 2521 1976-11-26 2024-10-11 00:42:01.000 1976-11-26 2024-10-11 00:42:01 +2522 2522 2523 252.2 504.40000000000003 2522 1976-11-27 2024-10-11 00:42:02.000 1976-11-27 2024-10-11 00:42:02 +2523 2523 2524 252.3 504.6 2523 1976-11-28 2024-10-11 00:42:03.000 1976-11-28 2024-10-11 00:42:03 +2524 2524 2525 252.4 504.8 2524 1976-11-29 2024-10-11 00:42:04.000 1976-11-29 2024-10-11 00:42:04 +2525 2525 2526 252.5 505 2525 1976-11-30 2024-10-11 00:42:05.000 1976-11-30 2024-10-11 00:42:05 +2526 2526 2527 252.6 505.20000000000005 2526 1976-12-01 2024-10-11 00:42:06.000 1976-12-01 2024-10-11 00:42:06 +2527 2527 2528 252.7 505.40000000000003 2527 1976-12-02 2024-10-11 00:42:07.000 1976-12-02 2024-10-11 00:42:07 +2528 2528 2529 252.8 505.6 2528 1976-12-03 2024-10-11 00:42:08.000 1976-12-03 2024-10-11 00:42:08 +2529 2529 2530 252.9 505.8 2529 1976-12-04 2024-10-11 00:42:09.000 1976-12-04 2024-10-11 00:42:09 +2530 2530 2531 253 506 2530 1976-12-05 2024-10-11 00:42:10.000 1976-12-05 2024-10-11 00:42:10 +2531 2531 2532 253.1 506.20000000000005 2531 1976-12-06 2024-10-11 00:42:11.000 1976-12-06 2024-10-11 00:42:11 +2532 2532 2533 253.2 506.40000000000003 2532 1976-12-07 2024-10-11 00:42:12.000 1976-12-07 2024-10-11 00:42:12 +2533 2533 2534 253.3 506.6 2533 1976-12-08 2024-10-11 00:42:13.000 1976-12-08 2024-10-11 00:42:13 +2534 2534 2535 253.4 506.8 2534 1976-12-09 2024-10-11 00:42:14.000 1976-12-09 2024-10-11 00:42:14 +2535 2535 2536 253.5 507 2535 1976-12-10 2024-10-11 00:42:15.000 1976-12-10 2024-10-11 00:42:15 +2536 2536 2537 253.6 507.20000000000005 2536 1976-12-11 2024-10-11 00:42:16.000 1976-12-11 2024-10-11 00:42:16 +2537 2537 2538 253.7 507.40000000000003 2537 1976-12-12 2024-10-11 00:42:17.000 1976-12-12 2024-10-11 00:42:17 +2538 2538 2539 253.8 507.6 2538 1976-12-13 2024-10-11 00:42:18.000 1976-12-13 2024-10-11 00:42:18 +2539 2539 2540 253.9 507.8 2539 1976-12-14 2024-10-11 00:42:19.000 1976-12-14 2024-10-11 00:42:19 +2540 2540 2541 254 508 2540 1976-12-15 2024-10-11 00:42:20.000 1976-12-15 2024-10-11 00:42:20 +2541 2541 2542 254.1 508.20000000000005 2541 1976-12-16 2024-10-11 00:42:21.000 1976-12-16 2024-10-11 00:42:21 +2542 2542 2543 254.2 508.40000000000003 2542 1976-12-17 2024-10-11 00:42:22.000 1976-12-17 2024-10-11 00:42:22 +2543 2543 2544 254.3 508.6 2543 1976-12-18 2024-10-11 00:42:23.000 1976-12-18 2024-10-11 00:42:23 +2544 2544 2545 254.4 508.8 2544 1976-12-19 2024-10-11 00:42:24.000 1976-12-19 2024-10-11 00:42:24 +2545 2545 2546 254.5 509 2545 1976-12-20 2024-10-11 00:42:25.000 1976-12-20 2024-10-11 00:42:25 +2546 2546 2547 254.6 509.20000000000005 2546 1976-12-21 2024-10-11 00:42:26.000 1976-12-21 2024-10-11 00:42:26 +2547 2547 2548 254.7 509.40000000000003 2547 1976-12-22 2024-10-11 00:42:27.000 1976-12-22 2024-10-11 00:42:27 +2548 2548 2549 254.8 509.6 2548 1976-12-23 2024-10-11 00:42:28.000 1976-12-23 2024-10-11 00:42:28 +2549 2549 2550 254.9 509.8 2549 1976-12-24 2024-10-11 00:42:29.000 1976-12-24 2024-10-11 00:42:29 +2550 2550 2551 255 510 2550 1976-12-25 2024-10-11 00:42:30.000 1976-12-25 2024-10-11 00:42:30 +2551 2551 2552 255.1 510.20000000000005 2551 1976-12-26 2024-10-11 00:42:31.000 1976-12-26 2024-10-11 00:42:31 +2552 2552 2553 255.2 510.40000000000003 2552 1976-12-27 2024-10-11 00:42:32.000 1976-12-27 2024-10-11 00:42:32 +2553 2553 2554 255.3 510.6 2553 1976-12-28 2024-10-11 00:42:33.000 1976-12-28 2024-10-11 00:42:33 +2554 2554 2555 255.4 510.8 2554 1976-12-29 2024-10-11 00:42:34.000 1976-12-29 2024-10-11 00:42:34 +2555 2555 2556 255.5 511 2555 1976-12-30 2024-10-11 00:42:35.000 1976-12-30 2024-10-11 00:42:35 +2556 2556 2557 255.6 511.20000000000005 2556 1976-12-31 2024-10-11 00:42:36.000 1976-12-31 2024-10-11 00:42:36 +2557 2557 2558 255.7 511.40000000000003 2557 1977-01-01 2024-10-11 00:42:37.000 1977-01-01 2024-10-11 00:42:37 +2558 2558 2559 255.8 511.6 2558 1977-01-02 2024-10-11 00:42:38.000 1977-01-02 2024-10-11 00:42:38 +2559 2559 2560 255.9 511.8 2559 1977-01-03 2024-10-11 00:42:39.000 1977-01-03 2024-10-11 00:42:39 +2560 2560 2561 256 512 2560 1977-01-04 2024-10-11 00:42:40.000 1977-01-04 2024-10-11 00:42:40 +2561 2561 2562 256.1 512.2 2561 1977-01-05 2024-10-11 00:42:41.000 1977-01-05 2024-10-11 00:42:41 +2562 2562 2563 256.2 512.4 2562 1977-01-06 2024-10-11 00:42:42.000 1977-01-06 2024-10-11 00:42:42 +2563 2563 2564 256.3 512.6 2563 1977-01-07 2024-10-11 00:42:43.000 1977-01-07 2024-10-11 00:42:43 +2564 2564 2565 256.4 512.8000000000001 2564 1977-01-08 2024-10-11 00:42:44.000 1977-01-08 2024-10-11 00:42:44 +2565 2565 2566 256.5 513 2565 1977-01-09 2024-10-11 00:42:45.000 1977-01-09 2024-10-11 00:42:45 +2566 2566 2567 256.6 513.2 2566 1977-01-10 2024-10-11 00:42:46.000 1977-01-10 2024-10-11 00:42:46 +2567 2567 2568 256.7 513.4 2567 1977-01-11 2024-10-11 00:42:47.000 1977-01-11 2024-10-11 00:42:47 +2568 2568 2569 256.8 513.6 2568 1977-01-12 2024-10-11 00:42:48.000 1977-01-12 2024-10-11 00:42:48 +2569 2569 2570 256.9 513.8000000000001 2569 1977-01-13 2024-10-11 00:42:49.000 1977-01-13 2024-10-11 00:42:49 +2570 2570 2571 257 514 2570 1977-01-14 2024-10-11 00:42:50.000 1977-01-14 2024-10-11 00:42:50 +2571 2571 2572 257.1 514.2 2571 1977-01-15 2024-10-11 00:42:51.000 1977-01-15 2024-10-11 00:42:51 +2572 2572 2573 257.2 514.4 2572 1977-01-16 2024-10-11 00:42:52.000 1977-01-16 2024-10-11 00:42:52 +2573 2573 2574 257.3 514.6 2573 1977-01-17 2024-10-11 00:42:53.000 1977-01-17 2024-10-11 00:42:53 +2574 2574 2575 257.4 514.8000000000001 2574 1977-01-18 2024-10-11 00:42:54.000 1977-01-18 2024-10-11 00:42:54 +2575 2575 2576 257.5 515 2575 1977-01-19 2024-10-11 00:42:55.000 1977-01-19 2024-10-11 00:42:55 +2576 2576 2577 257.6 515.2 2576 1977-01-20 2024-10-11 00:42:56.000 1977-01-20 2024-10-11 00:42:56 +2577 2577 2578 257.7 515.4 2577 1977-01-21 2024-10-11 00:42:57.000 1977-01-21 2024-10-11 00:42:57 +2578 2578 2579 257.8 515.6 2578 1977-01-22 2024-10-11 00:42:58.000 1977-01-22 2024-10-11 00:42:58 +2579 2579 2580 257.9 515.8000000000001 2579 1977-01-23 2024-10-11 00:42:59.000 1977-01-23 2024-10-11 00:42:59 +2580 2580 2581 258 516 2580 1977-01-24 2024-10-11 00:43:00.000 1977-01-24 2024-10-11 00:43:00 +2581 2581 2582 258.1 516.2 2581 1977-01-25 2024-10-11 00:43:01.000 1977-01-25 2024-10-11 00:43:01 +2582 2582 2583 258.2 516.4 2582 1977-01-26 2024-10-11 00:43:02.000 1977-01-26 2024-10-11 00:43:02 +2583 2583 2584 258.3 516.6 2583 1977-01-27 2024-10-11 00:43:03.000 1977-01-27 2024-10-11 00:43:03 +2584 2584 2585 258.4 516.8000000000001 2584 1977-01-28 2024-10-11 00:43:04.000 1977-01-28 2024-10-11 00:43:04 +2585 2585 2586 258.5 517 2585 1977-01-29 2024-10-11 00:43:05.000 1977-01-29 2024-10-11 00:43:05 +2586 2586 2587 258.6 517.2 2586 1977-01-30 2024-10-11 00:43:06.000 1977-01-30 2024-10-11 00:43:06 +2587 2587 2588 258.7 517.4 2587 1977-01-31 2024-10-11 00:43:07.000 1977-01-31 2024-10-11 00:43:07 +2588 2588 2589 258.8 517.6 2588 1977-02-01 2024-10-11 00:43:08.000 1977-02-01 2024-10-11 00:43:08 +2589 2589 2590 258.9 517.8000000000001 2589 1977-02-02 2024-10-11 00:43:09.000 1977-02-02 2024-10-11 00:43:09 +2590 2590 2591 259 518 2590 1977-02-03 2024-10-11 00:43:10.000 1977-02-03 2024-10-11 00:43:10 +2591 2591 2592 259.1 518.2 2591 1977-02-04 2024-10-11 00:43:11.000 1977-02-04 2024-10-11 00:43:11 +2592 2592 2593 259.2 518.4 2592 1977-02-05 2024-10-11 00:43:12.000 1977-02-05 2024-10-11 00:43:12 +2593 2593 2594 259.3 518.6 2593 1977-02-06 2024-10-11 00:43:13.000 1977-02-06 2024-10-11 00:43:13 +2594 2594 2595 259.4 518.8000000000001 2594 1977-02-07 2024-10-11 00:43:14.000 1977-02-07 2024-10-11 00:43:14 +2595 2595 2596 259.5 519 2595 1977-02-08 2024-10-11 00:43:15.000 1977-02-08 2024-10-11 00:43:15 +2596 2596 2597 259.6 519.2 2596 1977-02-09 2024-10-11 00:43:16.000 1977-02-09 2024-10-11 00:43:16 +2597 2597 2598 259.7 519.4 2597 1977-02-10 2024-10-11 00:43:17.000 1977-02-10 2024-10-11 00:43:17 +2598 2598 2599 259.8 519.6 2598 1977-02-11 2024-10-11 00:43:18.000 1977-02-11 2024-10-11 00:43:18 +2599 2599 2600 259.9 519.8000000000001 2599 1977-02-12 2024-10-11 00:43:19.000 1977-02-12 2024-10-11 00:43:19 +2600 2600 2601 260 520 2600 1977-02-13 2024-10-11 00:43:20.000 1977-02-13 2024-10-11 00:43:20 +2601 2601 2602 260.1 520.2 2601 1977-02-14 2024-10-11 00:43:21.000 1977-02-14 2024-10-11 00:43:21 +2602 2602 2603 260.2 520.4 2602 1977-02-15 2024-10-11 00:43:22.000 1977-02-15 2024-10-11 00:43:22 +2603 2603 2604 260.3 520.6 2603 1977-02-16 2024-10-11 00:43:23.000 1977-02-16 2024-10-11 00:43:23 +2604 2604 2605 260.4 520.8000000000001 2604 1977-02-17 2024-10-11 00:43:24.000 1977-02-17 2024-10-11 00:43:24 +2605 2605 2606 260.5 521 2605 1977-02-18 2024-10-11 00:43:25.000 1977-02-18 2024-10-11 00:43:25 +2606 2606 2607 260.6 521.2 2606 1977-02-19 2024-10-11 00:43:26.000 1977-02-19 2024-10-11 00:43:26 +2607 2607 2608 260.7 521.4 2607 1977-02-20 2024-10-11 00:43:27.000 1977-02-20 2024-10-11 00:43:27 +2608 2608 2609 260.8 521.6 2608 1977-02-21 2024-10-11 00:43:28.000 1977-02-21 2024-10-11 00:43:28 +2609 2609 2610 260.9 521.8000000000001 2609 1977-02-22 2024-10-11 00:43:29.000 1977-02-22 2024-10-11 00:43:29 +2610 2610 2611 261 522 2610 1977-02-23 2024-10-11 00:43:30.000 1977-02-23 2024-10-11 00:43:30 +2611 2611 2612 261.1 522.2 2611 1977-02-24 2024-10-11 00:43:31.000 1977-02-24 2024-10-11 00:43:31 +2612 2612 2613 261.2 522.4 2612 1977-02-25 2024-10-11 00:43:32.000 1977-02-25 2024-10-11 00:43:32 +2613 2613 2614 261.3 522.6 2613 1977-02-26 2024-10-11 00:43:33.000 1977-02-26 2024-10-11 00:43:33 +2614 2614 2615 261.4 522.8000000000001 2614 1977-02-27 2024-10-11 00:43:34.000 1977-02-27 2024-10-11 00:43:34 +2615 2615 2616 261.5 523 2615 1977-02-28 2024-10-11 00:43:35.000 1977-02-28 2024-10-11 00:43:35 +2616 2616 2617 261.6 523.2 2616 1977-03-01 2024-10-11 00:43:36.000 1977-03-01 2024-10-11 00:43:36 +2617 2617 2618 261.7 523.4 2617 1977-03-02 2024-10-11 00:43:37.000 1977-03-02 2024-10-11 00:43:37 +2618 2618 2619 261.8 523.6 2618 1977-03-03 2024-10-11 00:43:38.000 1977-03-03 2024-10-11 00:43:38 +2619 2619 2620 261.9 523.8000000000001 2619 1977-03-04 2024-10-11 00:43:39.000 1977-03-04 2024-10-11 00:43:39 +2620 2620 2621 262 524 2620 1977-03-05 2024-10-11 00:43:40.000 1977-03-05 2024-10-11 00:43:40 +2621 2621 2622 262.1 524.2 2621 1977-03-06 2024-10-11 00:43:41.000 1977-03-06 2024-10-11 00:43:41 +2622 2622 2623 262.2 524.4 2622 1977-03-07 2024-10-11 00:43:42.000 1977-03-07 2024-10-11 00:43:42 +2623 2623 2624 262.3 524.6 2623 1977-03-08 2024-10-11 00:43:43.000 1977-03-08 2024-10-11 00:43:43 +2624 2624 2625 262.4 524.8000000000001 2624 1977-03-09 2024-10-11 00:43:44.000 1977-03-09 2024-10-11 00:43:44 +2625 2625 2626 262.5 525 2625 1977-03-10 2024-10-11 00:43:45.000 1977-03-10 2024-10-11 00:43:45 +2626 2626 2627 262.6 525.2 2626 1977-03-11 2024-10-11 00:43:46.000 1977-03-11 2024-10-11 00:43:46 +2627 2627 2628 262.7 525.4 2627 1977-03-12 2024-10-11 00:43:47.000 1977-03-12 2024-10-11 00:43:47 +2628 2628 2629 262.8 525.6 2628 1977-03-13 2024-10-11 00:43:48.000 1977-03-13 2024-10-11 00:43:48 +2629 2629 2630 262.9 525.8000000000001 2629 1977-03-14 2024-10-11 00:43:49.000 1977-03-14 2024-10-11 00:43:49 +2630 2630 2631 263 526 2630 1977-03-15 2024-10-11 00:43:50.000 1977-03-15 2024-10-11 00:43:50 +2631 2631 2632 263.1 526.2 2631 1977-03-16 2024-10-11 00:43:51.000 1977-03-16 2024-10-11 00:43:51 +2632 2632 2633 263.2 526.4 2632 1977-03-17 2024-10-11 00:43:52.000 1977-03-17 2024-10-11 00:43:52 +2633 2633 2634 263.3 526.6 2633 1977-03-18 2024-10-11 00:43:53.000 1977-03-18 2024-10-11 00:43:53 +2634 2634 2635 263.4 526.8000000000001 2634 1977-03-19 2024-10-11 00:43:54.000 1977-03-19 2024-10-11 00:43:54 +2635 2635 2636 263.5 527 2635 1977-03-20 2024-10-11 00:43:55.000 1977-03-20 2024-10-11 00:43:55 +2636 2636 2637 263.6 527.2 2636 1977-03-21 2024-10-11 00:43:56.000 1977-03-21 2024-10-11 00:43:56 +2637 2637 2638 263.7 527.4 2637 1977-03-22 2024-10-11 00:43:57.000 1977-03-22 2024-10-11 00:43:57 +2638 2638 2639 263.8 527.6 2638 1977-03-23 2024-10-11 00:43:58.000 1977-03-23 2024-10-11 00:43:58 +2639 2639 2640 263.9 527.8000000000001 2639 1977-03-24 2024-10-11 00:43:59.000 1977-03-24 2024-10-11 00:43:59 +2640 2640 2641 264 528 2640 1977-03-25 2024-10-11 00:44:00.000 1977-03-25 2024-10-11 00:44:00 +2641 2641 2642 264.1 528.2 2641 1977-03-26 2024-10-11 00:44:01.000 1977-03-26 2024-10-11 00:44:01 +2642 2642 2643 264.2 528.4 2642 1977-03-27 2024-10-11 00:44:02.000 1977-03-27 2024-10-11 00:44:02 +2643 2643 2644 264.3 528.6 2643 1977-03-28 2024-10-11 00:44:03.000 1977-03-28 2024-10-11 00:44:03 +2644 2644 2645 264.4 528.8000000000001 2644 1977-03-29 2024-10-11 00:44:04.000 1977-03-29 2024-10-11 00:44:04 +2645 2645 2646 264.5 529 2645 1977-03-30 2024-10-11 00:44:05.000 1977-03-30 2024-10-11 00:44:05 +2646 2646 2647 264.6 529.2 2646 1977-03-31 2024-10-11 00:44:06.000 1977-03-31 2024-10-11 00:44:06 +2647 2647 2648 264.7 529.4 2647 1977-04-01 2024-10-11 00:44:07.000 1977-04-01 2024-10-11 00:44:07 +2648 2648 2649 264.8 529.6 2648 1977-04-02 2024-10-11 00:44:08.000 1977-04-02 2024-10-11 00:44:08 +2649 2649 2650 264.9 529.8000000000001 2649 1977-04-03 2024-10-11 00:44:09.000 1977-04-03 2024-10-11 00:44:09 +2650 2650 2651 265 530 2650 1977-04-04 2024-10-11 00:44:10.000 1977-04-04 2024-10-11 00:44:10 +2651 2651 2652 265.1 530.2 2651 1977-04-05 2024-10-11 00:44:11.000 1977-04-05 2024-10-11 00:44:11 +2652 2652 2653 265.2 530.4 2652 1977-04-06 2024-10-11 00:44:12.000 1977-04-06 2024-10-11 00:44:12 +2653 2653 2654 265.3 530.6 2653 1977-04-07 2024-10-11 00:44:13.000 1977-04-07 2024-10-11 00:44:13 +2654 2654 2655 265.4 530.8000000000001 2654 1977-04-08 2024-10-11 00:44:14.000 1977-04-08 2024-10-11 00:44:14 +2655 2655 2656 265.5 531 2655 1977-04-09 2024-10-11 00:44:15.000 1977-04-09 2024-10-11 00:44:15 +2656 2656 2657 265.6 531.2 2656 1977-04-10 2024-10-11 00:44:16.000 1977-04-10 2024-10-11 00:44:16 +2657 2657 2658 265.7 531.4 2657 1977-04-11 2024-10-11 00:44:17.000 1977-04-11 2024-10-11 00:44:17 +2658 2658 2659 265.8 531.6 2658 1977-04-12 2024-10-11 00:44:18.000 1977-04-12 2024-10-11 00:44:18 +2659 2659 2660 265.9 531.8000000000001 2659 1977-04-13 2024-10-11 00:44:19.000 1977-04-13 2024-10-11 00:44:19 +2660 2660 2661 266 532 2660 1977-04-14 2024-10-11 00:44:20.000 1977-04-14 2024-10-11 00:44:20 +2661 2661 2662 266.1 532.2 2661 1977-04-15 2024-10-11 00:44:21.000 1977-04-15 2024-10-11 00:44:21 +2662 2662 2663 266.2 532.4 2662 1977-04-16 2024-10-11 00:44:22.000 1977-04-16 2024-10-11 00:44:22 +2663 2663 2664 266.3 532.6 2663 1977-04-17 2024-10-11 00:44:23.000 1977-04-17 2024-10-11 00:44:23 +2664 2664 2665 266.4 532.8000000000001 2664 1977-04-18 2024-10-11 00:44:24.000 1977-04-18 2024-10-11 00:44:24 +2665 2665 2666 266.5 533 2665 1977-04-19 2024-10-11 00:44:25.000 1977-04-19 2024-10-11 00:44:25 +2666 2666 2667 266.6 533.2 2666 1977-04-20 2024-10-11 00:44:26.000 1977-04-20 2024-10-11 00:44:26 +2667 2667 2668 266.7 533.4 2667 1977-04-21 2024-10-11 00:44:27.000 1977-04-21 2024-10-11 00:44:27 +2668 2668 2669 266.8 533.6 2668 1977-04-22 2024-10-11 00:44:28.000 1977-04-22 2024-10-11 00:44:28 +2669 2669 2670 266.9 533.8000000000001 2669 1977-04-23 2024-10-11 00:44:29.000 1977-04-23 2024-10-11 00:44:29 +2670 2670 2671 267 534 2670 1977-04-24 2024-10-11 00:44:30.000 1977-04-24 2024-10-11 00:44:30 +2671 2671 2672 267.1 534.2 2671 1977-04-25 2024-10-11 00:44:31.000 1977-04-25 2024-10-11 00:44:31 +2672 2672 2673 267.2 534.4 2672 1977-04-26 2024-10-11 00:44:32.000 1977-04-26 2024-10-11 00:44:32 +2673 2673 2674 267.3 534.6 2673 1977-04-27 2024-10-11 00:44:33.000 1977-04-27 2024-10-11 00:44:33 +2674 2674 2675 267.4 534.8000000000001 2674 1977-04-28 2024-10-11 00:44:34.000 1977-04-28 2024-10-11 00:44:34 +2675 2675 2676 267.5 535 2675 1977-04-29 2024-10-11 00:44:35.000 1977-04-29 2024-10-11 00:44:35 +2676 2676 2677 267.6 535.2 2676 1977-04-30 2024-10-11 00:44:36.000 1977-04-30 2024-10-11 00:44:36 +2677 2677 2678 267.7 535.4 2677 1977-05-01 2024-10-11 00:44:37.000 1977-05-01 2024-10-11 00:44:37 +2678 2678 2679 267.8 535.6 2678 1977-05-02 2024-10-11 00:44:38.000 1977-05-02 2024-10-11 00:44:38 +2679 2679 2680 267.9 535.8000000000001 2679 1977-05-03 2024-10-11 00:44:39.000 1977-05-03 2024-10-11 00:44:39 +2680 2680 2681 268 536 2680 1977-05-04 2024-10-11 00:44:40.000 1977-05-04 2024-10-11 00:44:40 +2681 2681 2682 268.1 536.2 2681 1977-05-05 2024-10-11 00:44:41.000 1977-05-05 2024-10-11 00:44:41 +2682 2682 2683 268.2 536.4 2682 1977-05-06 2024-10-11 00:44:42.000 1977-05-06 2024-10-11 00:44:42 +2683 2683 2684 268.3 536.6 2683 1977-05-07 2024-10-11 00:44:43.000 1977-05-07 2024-10-11 00:44:43 +2684 2684 2685 268.4 536.8000000000001 2684 1977-05-08 2024-10-11 00:44:44.000 1977-05-08 2024-10-11 00:44:44 +2685 2685 2686 268.5 537 2685 1977-05-09 2024-10-11 00:44:45.000 1977-05-09 2024-10-11 00:44:45 +2686 2686 2687 268.6 537.2 2686 1977-05-10 2024-10-11 00:44:46.000 1977-05-10 2024-10-11 00:44:46 +2687 2687 2688 268.7 537.4 2687 1977-05-11 2024-10-11 00:44:47.000 1977-05-11 2024-10-11 00:44:47 +2688 2688 2689 268.8 537.6 2688 1977-05-12 2024-10-11 00:44:48.000 1977-05-12 2024-10-11 00:44:48 +2689 2689 2690 268.9 537.8000000000001 2689 1977-05-13 2024-10-11 00:44:49.000 1977-05-13 2024-10-11 00:44:49 +2690 2690 2691 269 538 2690 1977-05-14 2024-10-11 00:44:50.000 1977-05-14 2024-10-11 00:44:50 +2691 2691 2692 269.1 538.2 2691 1977-05-15 2024-10-11 00:44:51.000 1977-05-15 2024-10-11 00:44:51 +2692 2692 2693 269.2 538.4 2692 1977-05-16 2024-10-11 00:44:52.000 1977-05-16 2024-10-11 00:44:52 +2693 2693 2694 269.3 538.6 2693 1977-05-17 2024-10-11 00:44:53.000 1977-05-17 2024-10-11 00:44:53 +2694 2694 2695 269.4 538.8000000000001 2694 1977-05-18 2024-10-11 00:44:54.000 1977-05-18 2024-10-11 00:44:54 +2695 2695 2696 269.5 539 2695 1977-05-19 2024-10-11 00:44:55.000 1977-05-19 2024-10-11 00:44:55 +2696 2696 2697 269.6 539.2 2696 1977-05-20 2024-10-11 00:44:56.000 1977-05-20 2024-10-11 00:44:56 +2697 2697 2698 269.7 539.4 2697 1977-05-21 2024-10-11 00:44:57.000 1977-05-21 2024-10-11 00:44:57 +2698 2698 2699 269.8 539.6 2698 1977-05-22 2024-10-11 00:44:58.000 1977-05-22 2024-10-11 00:44:58 +2699 2699 2700 269.9 539.8000000000001 2699 1977-05-23 2024-10-11 00:44:59.000 1977-05-23 2024-10-11 00:44:59 +2700 2700 2701 270 540 2700 1977-05-24 2024-10-11 00:45:00.000 1977-05-24 2024-10-11 00:45:00 +2701 2701 2702 270.1 540.2 2701 1977-05-25 2024-10-11 00:45:01.000 1977-05-25 2024-10-11 00:45:01 +2702 2702 2703 270.2 540.4 2702 1977-05-26 2024-10-11 00:45:02.000 1977-05-26 2024-10-11 00:45:02 +2703 2703 2704 270.3 540.6 2703 1977-05-27 2024-10-11 00:45:03.000 1977-05-27 2024-10-11 00:45:03 +2704 2704 2705 270.4 540.8000000000001 2704 1977-05-28 2024-10-11 00:45:04.000 1977-05-28 2024-10-11 00:45:04 +2705 2705 2706 270.5 541 2705 1977-05-29 2024-10-11 00:45:05.000 1977-05-29 2024-10-11 00:45:05 +2706 2706 2707 270.6 541.2 2706 1977-05-30 2024-10-11 00:45:06.000 1977-05-30 2024-10-11 00:45:06 +2707 2707 2708 270.7 541.4 2707 1977-05-31 2024-10-11 00:45:07.000 1977-05-31 2024-10-11 00:45:07 +2708 2708 2709 270.8 541.6 2708 1977-06-01 2024-10-11 00:45:08.000 1977-06-01 2024-10-11 00:45:08 +2709 2709 2710 270.9 541.8000000000001 2709 1977-06-02 2024-10-11 00:45:09.000 1977-06-02 2024-10-11 00:45:09 +2710 2710 2711 271 542 2710 1977-06-03 2024-10-11 00:45:10.000 1977-06-03 2024-10-11 00:45:10 +2711 2711 2712 271.1 542.2 2711 1977-06-04 2024-10-11 00:45:11.000 1977-06-04 2024-10-11 00:45:11 +2712 2712 2713 271.2 542.4 2712 1977-06-05 2024-10-11 00:45:12.000 1977-06-05 2024-10-11 00:45:12 +2713 2713 2714 271.3 542.6 2713 1977-06-06 2024-10-11 00:45:13.000 1977-06-06 2024-10-11 00:45:13 +2714 2714 2715 271.4 542.8000000000001 2714 1977-06-07 2024-10-11 00:45:14.000 1977-06-07 2024-10-11 00:45:14 +2715 2715 2716 271.5 543 2715 1977-06-08 2024-10-11 00:45:15.000 1977-06-08 2024-10-11 00:45:15 +2716 2716 2717 271.6 543.2 2716 1977-06-09 2024-10-11 00:45:16.000 1977-06-09 2024-10-11 00:45:16 +2717 2717 2718 271.7 543.4 2717 1977-06-10 2024-10-11 00:45:17.000 1977-06-10 2024-10-11 00:45:17 +2718 2718 2719 271.8 543.6 2718 1977-06-11 2024-10-11 00:45:18.000 1977-06-11 2024-10-11 00:45:18 +2719 2719 2720 271.9 543.8000000000001 2719 1977-06-12 2024-10-11 00:45:19.000 1977-06-12 2024-10-11 00:45:19 +2720 2720 2721 272 544 2720 1977-06-13 2024-10-11 00:45:20.000 1977-06-13 2024-10-11 00:45:20 +2721 2721 2722 272.1 544.2 2721 1977-06-14 2024-10-11 00:45:21.000 1977-06-14 2024-10-11 00:45:21 +2722 2722 2723 272.2 544.4 2722 1977-06-15 2024-10-11 00:45:22.000 1977-06-15 2024-10-11 00:45:22 +2723 2723 2724 272.3 544.6 2723 1977-06-16 2024-10-11 00:45:23.000 1977-06-16 2024-10-11 00:45:23 +2724 2724 2725 272.4 544.8000000000001 2724 1977-06-17 2024-10-11 00:45:24.000 1977-06-17 2024-10-11 00:45:24 +2725 2725 2726 272.5 545 2725 1977-06-18 2024-10-11 00:45:25.000 1977-06-18 2024-10-11 00:45:25 +2726 2726 2727 272.6 545.2 2726 1977-06-19 2024-10-11 00:45:26.000 1977-06-19 2024-10-11 00:45:26 +2727 2727 2728 272.7 545.4 2727 1977-06-20 2024-10-11 00:45:27.000 1977-06-20 2024-10-11 00:45:27 +2728 2728 2729 272.8 545.6 2728 1977-06-21 2024-10-11 00:45:28.000 1977-06-21 2024-10-11 00:45:28 +2729 2729 2730 272.9 545.8000000000001 2729 1977-06-22 2024-10-11 00:45:29.000 1977-06-22 2024-10-11 00:45:29 +2730 2730 2731 273 546 2730 1977-06-23 2024-10-11 00:45:30.000 1977-06-23 2024-10-11 00:45:30 +2731 2731 2732 273.1 546.2 2731 1977-06-24 2024-10-11 00:45:31.000 1977-06-24 2024-10-11 00:45:31 +2732 2732 2733 273.2 546.4 2732 1977-06-25 2024-10-11 00:45:32.000 1977-06-25 2024-10-11 00:45:32 +2733 2733 2734 273.3 546.6 2733 1977-06-26 2024-10-11 00:45:33.000 1977-06-26 2024-10-11 00:45:33 +2734 2734 2735 273.4 546.8000000000001 2734 1977-06-27 2024-10-11 00:45:34.000 1977-06-27 2024-10-11 00:45:34 +2735 2735 2736 273.5 547 2735 1977-06-28 2024-10-11 00:45:35.000 1977-06-28 2024-10-11 00:45:35 +2736 2736 2737 273.6 547.2 2736 1977-06-29 2024-10-11 00:45:36.000 1977-06-29 2024-10-11 00:45:36 +2737 2737 2738 273.7 547.4 2737 1977-06-30 2024-10-11 00:45:37.000 1977-06-30 2024-10-11 00:45:37 +2738 2738 2739 273.8 547.6 2738 1977-07-01 2024-10-11 00:45:38.000 1977-07-01 2024-10-11 00:45:38 +2739 2739 2740 273.9 547.8000000000001 2739 1977-07-02 2024-10-11 00:45:39.000 1977-07-02 2024-10-11 00:45:39 +2740 2740 2741 274 548 2740 1977-07-03 2024-10-11 00:45:40.000 1977-07-03 2024-10-11 00:45:40 +2741 2741 2742 274.1 548.2 2741 1977-07-04 2024-10-11 00:45:41.000 1977-07-04 2024-10-11 00:45:41 +2742 2742 2743 274.2 548.4 2742 1977-07-05 2024-10-11 00:45:42.000 1977-07-05 2024-10-11 00:45:42 +2743 2743 2744 274.3 548.6 2743 1977-07-06 2024-10-11 00:45:43.000 1977-07-06 2024-10-11 00:45:43 +2744 2744 2745 274.4 548.8000000000001 2744 1977-07-07 2024-10-11 00:45:44.000 1977-07-07 2024-10-11 00:45:44 +2745 2745 2746 274.5 549 2745 1977-07-08 2024-10-11 00:45:45.000 1977-07-08 2024-10-11 00:45:45 +2746 2746 2747 274.6 549.2 2746 1977-07-09 2024-10-11 00:45:46.000 1977-07-09 2024-10-11 00:45:46 +2747 2747 2748 274.7 549.4 2747 1977-07-10 2024-10-11 00:45:47.000 1977-07-10 2024-10-11 00:45:47 +2748 2748 2749 274.8 549.6 2748 1977-07-11 2024-10-11 00:45:48.000 1977-07-11 2024-10-11 00:45:48 +2749 2749 2750 274.9 549.8000000000001 2749 1977-07-12 2024-10-11 00:45:49.000 1977-07-12 2024-10-11 00:45:49 +2750 2750 2751 275 550 2750 1977-07-13 2024-10-11 00:45:50.000 1977-07-13 2024-10-11 00:45:50 +2751 2751 2752 275.1 550.2 2751 1977-07-14 2024-10-11 00:45:51.000 1977-07-14 2024-10-11 00:45:51 +2752 2752 2753 275.2 550.4 2752 1977-07-15 2024-10-11 00:45:52.000 1977-07-15 2024-10-11 00:45:52 +2753 2753 2754 275.3 550.6 2753 1977-07-16 2024-10-11 00:45:53.000 1977-07-16 2024-10-11 00:45:53 +2754 2754 2755 275.4 550.8000000000001 2754 1977-07-17 2024-10-11 00:45:54.000 1977-07-17 2024-10-11 00:45:54 +2755 2755 2756 275.5 551 2755 1977-07-18 2024-10-11 00:45:55.000 1977-07-18 2024-10-11 00:45:55 +2756 2756 2757 275.6 551.2 2756 1977-07-19 2024-10-11 00:45:56.000 1977-07-19 2024-10-11 00:45:56 +2757 2757 2758 275.7 551.4 2757 1977-07-20 2024-10-11 00:45:57.000 1977-07-20 2024-10-11 00:45:57 +2758 2758 2759 275.8 551.6 2758 1977-07-21 2024-10-11 00:45:58.000 1977-07-21 2024-10-11 00:45:58 +2759 2759 2760 275.9 551.8000000000001 2759 1977-07-22 2024-10-11 00:45:59.000 1977-07-22 2024-10-11 00:45:59 +2760 2760 2761 276 552 2760 1977-07-23 2024-10-11 00:46:00.000 1977-07-23 2024-10-11 00:46:00 +2761 2761 2762 276.1 552.2 2761 1977-07-24 2024-10-11 00:46:01.000 1977-07-24 2024-10-11 00:46:01 +2762 2762 2763 276.2 552.4 2762 1977-07-25 2024-10-11 00:46:02.000 1977-07-25 2024-10-11 00:46:02 +2763 2763 2764 276.3 552.6 2763 1977-07-26 2024-10-11 00:46:03.000 1977-07-26 2024-10-11 00:46:03 +2764 2764 2765 276.4 552.8000000000001 2764 1977-07-27 2024-10-11 00:46:04.000 1977-07-27 2024-10-11 00:46:04 +2765 2765 2766 276.5 553 2765 1977-07-28 2024-10-11 00:46:05.000 1977-07-28 2024-10-11 00:46:05 +2766 2766 2767 276.6 553.2 2766 1977-07-29 2024-10-11 00:46:06.000 1977-07-29 2024-10-11 00:46:06 +2767 2767 2768 276.7 553.4 2767 1977-07-30 2024-10-11 00:46:07.000 1977-07-30 2024-10-11 00:46:07 +2768 2768 2769 276.8 553.6 2768 1977-07-31 2024-10-11 00:46:08.000 1977-07-31 2024-10-11 00:46:08 +2769 2769 2770 276.9 553.8000000000001 2769 1977-08-01 2024-10-11 00:46:09.000 1977-08-01 2024-10-11 00:46:09 +2770 2770 2771 277 554 2770 1977-08-02 2024-10-11 00:46:10.000 1977-08-02 2024-10-11 00:46:10 +2771 2771 2772 277.1 554.2 2771 1977-08-03 2024-10-11 00:46:11.000 1977-08-03 2024-10-11 00:46:11 +2772 2772 2773 277.2 554.4 2772 1977-08-04 2024-10-11 00:46:12.000 1977-08-04 2024-10-11 00:46:12 +2773 2773 2774 277.3 554.6 2773 1977-08-05 2024-10-11 00:46:13.000 1977-08-05 2024-10-11 00:46:13 +2774 2774 2775 277.4 554.8000000000001 2774 1977-08-06 2024-10-11 00:46:14.000 1977-08-06 2024-10-11 00:46:14 +2775 2775 2776 277.5 555 2775 1977-08-07 2024-10-11 00:46:15.000 1977-08-07 2024-10-11 00:46:15 +2776 2776 2777 277.6 555.2 2776 1977-08-08 2024-10-11 00:46:16.000 1977-08-08 2024-10-11 00:46:16 +2777 2777 2778 277.7 555.4 2777 1977-08-09 2024-10-11 00:46:17.000 1977-08-09 2024-10-11 00:46:17 +2778 2778 2779 277.8 555.6 2778 1977-08-10 2024-10-11 00:46:18.000 1977-08-10 2024-10-11 00:46:18 +2779 2779 2780 277.9 555.8000000000001 2779 1977-08-11 2024-10-11 00:46:19.000 1977-08-11 2024-10-11 00:46:19 +2780 2780 2781 278 556 2780 1977-08-12 2024-10-11 00:46:20.000 1977-08-12 2024-10-11 00:46:20 +2781 2781 2782 278.1 556.2 2781 1977-08-13 2024-10-11 00:46:21.000 1977-08-13 2024-10-11 00:46:21 +2782 2782 2783 278.2 556.4 2782 1977-08-14 2024-10-11 00:46:22.000 1977-08-14 2024-10-11 00:46:22 +2783 2783 2784 278.3 556.6 2783 1977-08-15 2024-10-11 00:46:23.000 1977-08-15 2024-10-11 00:46:23 +2784 2784 2785 278.4 556.8000000000001 2784 1977-08-16 2024-10-11 00:46:24.000 1977-08-16 2024-10-11 00:46:24 +2785 2785 2786 278.5 557 2785 1977-08-17 2024-10-11 00:46:25.000 1977-08-17 2024-10-11 00:46:25 +2786 2786 2787 278.6 557.2 2786 1977-08-18 2024-10-11 00:46:26.000 1977-08-18 2024-10-11 00:46:26 +2787 2787 2788 278.7 557.4 2787 1977-08-19 2024-10-11 00:46:27.000 1977-08-19 2024-10-11 00:46:27 +2788 2788 2789 278.8 557.6 2788 1977-08-20 2024-10-11 00:46:28.000 1977-08-20 2024-10-11 00:46:28 +2789 2789 2790 278.9 557.8000000000001 2789 1977-08-21 2024-10-11 00:46:29.000 1977-08-21 2024-10-11 00:46:29 +2790 2790 2791 279 558 2790 1977-08-22 2024-10-11 00:46:30.000 1977-08-22 2024-10-11 00:46:30 +2791 2791 2792 279.1 558.2 2791 1977-08-23 2024-10-11 00:46:31.000 1977-08-23 2024-10-11 00:46:31 +2792 2792 2793 279.2 558.4 2792 1977-08-24 2024-10-11 00:46:32.000 1977-08-24 2024-10-11 00:46:32 +2793 2793 2794 279.3 558.6 2793 1977-08-25 2024-10-11 00:46:33.000 1977-08-25 2024-10-11 00:46:33 +2794 2794 2795 279.4 558.8000000000001 2794 1977-08-26 2024-10-11 00:46:34.000 1977-08-26 2024-10-11 00:46:34 +2795 2795 2796 279.5 559 2795 1977-08-27 2024-10-11 00:46:35.000 1977-08-27 2024-10-11 00:46:35 +2796 2796 2797 279.6 559.2 2796 1977-08-28 2024-10-11 00:46:36.000 1977-08-28 2024-10-11 00:46:36 +2797 2797 2798 279.7 559.4 2797 1977-08-29 2024-10-11 00:46:37.000 1977-08-29 2024-10-11 00:46:37 +2798 2798 2799 279.8 559.6 2798 1977-08-30 2024-10-11 00:46:38.000 1977-08-30 2024-10-11 00:46:38 +2799 2799 2800 279.9 559.8000000000001 2799 1977-08-31 2024-10-11 00:46:39.000 1977-08-31 2024-10-11 00:46:39 +2800 2800 2801 280 560 2800 1977-09-01 2024-10-11 00:46:40.000 1977-09-01 2024-10-11 00:46:40 +2801 2801 2802 280.1 560.2 2801 1977-09-02 2024-10-11 00:46:41.000 1977-09-02 2024-10-11 00:46:41 +2802 2802 2803 280.2 560.4 2802 1977-09-03 2024-10-11 00:46:42.000 1977-09-03 2024-10-11 00:46:42 +2803 2803 2804 280.3 560.6 2803 1977-09-04 2024-10-11 00:46:43.000 1977-09-04 2024-10-11 00:46:43 +2804 2804 2805 280.4 560.8000000000001 2804 1977-09-05 2024-10-11 00:46:44.000 1977-09-05 2024-10-11 00:46:44 +2805 2805 2806 280.5 561 2805 1977-09-06 2024-10-11 00:46:45.000 1977-09-06 2024-10-11 00:46:45 +2806 2806 2807 280.6 561.2 2806 1977-09-07 2024-10-11 00:46:46.000 1977-09-07 2024-10-11 00:46:46 +2807 2807 2808 280.7 561.4 2807 1977-09-08 2024-10-11 00:46:47.000 1977-09-08 2024-10-11 00:46:47 +2808 2808 2809 280.8 561.6 2808 1977-09-09 2024-10-11 00:46:48.000 1977-09-09 2024-10-11 00:46:48 +2809 2809 2810 280.9 561.8000000000001 2809 1977-09-10 2024-10-11 00:46:49.000 1977-09-10 2024-10-11 00:46:49 +2810 2810 2811 281 562 2810 1977-09-11 2024-10-11 00:46:50.000 1977-09-11 2024-10-11 00:46:50 +2811 2811 2812 281.1 562.2 2811 1977-09-12 2024-10-11 00:46:51.000 1977-09-12 2024-10-11 00:46:51 +2812 2812 2813 281.2 562.4 2812 1977-09-13 2024-10-11 00:46:52.000 1977-09-13 2024-10-11 00:46:52 +2813 2813 2814 281.3 562.6 2813 1977-09-14 2024-10-11 00:46:53.000 1977-09-14 2024-10-11 00:46:53 +2814 2814 2815 281.4 562.8000000000001 2814 1977-09-15 2024-10-11 00:46:54.000 1977-09-15 2024-10-11 00:46:54 +2815 2815 2816 281.5 563 2815 1977-09-16 2024-10-11 00:46:55.000 1977-09-16 2024-10-11 00:46:55 +2816 2816 2817 281.6 563.2 2816 1977-09-17 2024-10-11 00:46:56.000 1977-09-17 2024-10-11 00:46:56 +2817 2817 2818 281.7 563.4 2817 1977-09-18 2024-10-11 00:46:57.000 1977-09-18 2024-10-11 00:46:57 +2818 2818 2819 281.8 563.6 2818 1977-09-19 2024-10-11 00:46:58.000 1977-09-19 2024-10-11 00:46:58 +2819 2819 2820 281.9 563.8000000000001 2819 1977-09-20 2024-10-11 00:46:59.000 1977-09-20 2024-10-11 00:46:59 +2820 2820 2821 282 564 2820 1977-09-21 2024-10-11 00:47:00.000 1977-09-21 2024-10-11 00:47:00 +2821 2821 2822 282.1 564.2 2821 1977-09-22 2024-10-11 00:47:01.000 1977-09-22 2024-10-11 00:47:01 +2822 2822 2823 282.2 564.4 2822 1977-09-23 2024-10-11 00:47:02.000 1977-09-23 2024-10-11 00:47:02 +2823 2823 2824 282.3 564.6 2823 1977-09-24 2024-10-11 00:47:03.000 1977-09-24 2024-10-11 00:47:03 +2824 2824 2825 282.4 564.8000000000001 2824 1977-09-25 2024-10-11 00:47:04.000 1977-09-25 2024-10-11 00:47:04 +2825 2825 2826 282.5 565 2825 1977-09-26 2024-10-11 00:47:05.000 1977-09-26 2024-10-11 00:47:05 +2826 2826 2827 282.6 565.2 2826 1977-09-27 2024-10-11 00:47:06.000 1977-09-27 2024-10-11 00:47:06 +2827 2827 2828 282.7 565.4 2827 1977-09-28 2024-10-11 00:47:07.000 1977-09-28 2024-10-11 00:47:07 +2828 2828 2829 282.8 565.6 2828 1977-09-29 2024-10-11 00:47:08.000 1977-09-29 2024-10-11 00:47:08 +2829 2829 2830 282.9 565.8000000000001 2829 1977-09-30 2024-10-11 00:47:09.000 1977-09-30 2024-10-11 00:47:09 +2830 2830 2831 283 566 2830 1977-10-01 2024-10-11 00:47:10.000 1977-10-01 2024-10-11 00:47:10 +2831 2831 2832 283.1 566.2 2831 1977-10-02 2024-10-11 00:47:11.000 1977-10-02 2024-10-11 00:47:11 +2832 2832 2833 283.2 566.4 2832 1977-10-03 2024-10-11 00:47:12.000 1977-10-03 2024-10-11 00:47:12 +2833 2833 2834 283.3 566.6 2833 1977-10-04 2024-10-11 00:47:13.000 1977-10-04 2024-10-11 00:47:13 +2834 2834 2835 283.4 566.8000000000001 2834 1977-10-05 2024-10-11 00:47:14.000 1977-10-05 2024-10-11 00:47:14 +2835 2835 2836 283.5 567 2835 1977-10-06 2024-10-11 00:47:15.000 1977-10-06 2024-10-11 00:47:15 +2836 2836 2837 283.6 567.2 2836 1977-10-07 2024-10-11 00:47:16.000 1977-10-07 2024-10-11 00:47:16 +2837 2837 2838 283.7 567.4 2837 1977-10-08 2024-10-11 00:47:17.000 1977-10-08 2024-10-11 00:47:17 +2838 2838 2839 283.8 567.6 2838 1977-10-09 2024-10-11 00:47:18.000 1977-10-09 2024-10-11 00:47:18 +2839 2839 2840 283.9 567.8000000000001 2839 1977-10-10 2024-10-11 00:47:19.000 1977-10-10 2024-10-11 00:47:19 +2840 2840 2841 284 568 2840 1977-10-11 2024-10-11 00:47:20.000 1977-10-11 2024-10-11 00:47:20 +2841 2841 2842 284.1 568.2 2841 1977-10-12 2024-10-11 00:47:21.000 1977-10-12 2024-10-11 00:47:21 +2842 2842 2843 284.2 568.4 2842 1977-10-13 2024-10-11 00:47:22.000 1977-10-13 2024-10-11 00:47:22 +2843 2843 2844 284.3 568.6 2843 1977-10-14 2024-10-11 00:47:23.000 1977-10-14 2024-10-11 00:47:23 +2844 2844 2845 284.4 568.8000000000001 2844 1977-10-15 2024-10-11 00:47:24.000 1977-10-15 2024-10-11 00:47:24 +2845 2845 2846 284.5 569 2845 1977-10-16 2024-10-11 00:47:25.000 1977-10-16 2024-10-11 00:47:25 +2846 2846 2847 284.6 569.2 2846 1977-10-17 2024-10-11 00:47:26.000 1977-10-17 2024-10-11 00:47:26 +2847 2847 2848 284.7 569.4 2847 1977-10-18 2024-10-11 00:47:27.000 1977-10-18 2024-10-11 00:47:27 +2848 2848 2849 284.8 569.6 2848 1977-10-19 2024-10-11 00:47:28.000 1977-10-19 2024-10-11 00:47:28 +2849 2849 2850 284.9 569.8000000000001 2849 1977-10-20 2024-10-11 00:47:29.000 1977-10-20 2024-10-11 00:47:29 +2850 2850 2851 285 570 2850 1977-10-21 2024-10-11 00:47:30.000 1977-10-21 2024-10-11 00:47:30 +2851 2851 2852 285.1 570.2 2851 1977-10-22 2024-10-11 00:47:31.000 1977-10-22 2024-10-11 00:47:31 +2852 2852 2853 285.2 570.4 2852 1977-10-23 2024-10-11 00:47:32.000 1977-10-23 2024-10-11 00:47:32 +2853 2853 2854 285.3 570.6 2853 1977-10-24 2024-10-11 00:47:33.000 1977-10-24 2024-10-11 00:47:33 +2854 2854 2855 285.4 570.8000000000001 2854 1977-10-25 2024-10-11 00:47:34.000 1977-10-25 2024-10-11 00:47:34 +2855 2855 2856 285.5 571 2855 1977-10-26 2024-10-11 00:47:35.000 1977-10-26 2024-10-11 00:47:35 +2856 2856 2857 285.6 571.2 2856 1977-10-27 2024-10-11 00:47:36.000 1977-10-27 2024-10-11 00:47:36 +2857 2857 2858 285.7 571.4 2857 1977-10-28 2024-10-11 00:47:37.000 1977-10-28 2024-10-11 00:47:37 +2858 2858 2859 285.8 571.6 2858 1977-10-29 2024-10-11 00:47:38.000 1977-10-29 2024-10-11 00:47:38 +2859 2859 2860 285.9 571.8000000000001 2859 1977-10-30 2024-10-11 00:47:39.000 1977-10-30 2024-10-11 00:47:39 +2860 2860 2861 286 572 2860 1977-10-31 2024-10-11 00:47:40.000 1977-10-31 2024-10-11 00:47:40 +2861 2861 2862 286.1 572.2 2861 1977-11-01 2024-10-11 00:47:41.000 1977-11-01 2024-10-11 00:47:41 +2862 2862 2863 286.2 572.4 2862 1977-11-02 2024-10-11 00:47:42.000 1977-11-02 2024-10-11 00:47:42 +2863 2863 2864 286.3 572.6 2863 1977-11-03 2024-10-11 00:47:43.000 1977-11-03 2024-10-11 00:47:43 +2864 2864 2865 286.4 572.8000000000001 2864 1977-11-04 2024-10-11 00:47:44.000 1977-11-04 2024-10-11 00:47:44 +2865 2865 2866 286.5 573 2865 1977-11-05 2024-10-11 00:47:45.000 1977-11-05 2024-10-11 00:47:45 +2866 2866 2867 286.6 573.2 2866 1977-11-06 2024-10-11 00:47:46.000 1977-11-06 2024-10-11 00:47:46 +2867 2867 2868 286.7 573.4 2867 1977-11-07 2024-10-11 00:47:47.000 1977-11-07 2024-10-11 00:47:47 +2868 2868 2869 286.8 573.6 2868 1977-11-08 2024-10-11 00:47:48.000 1977-11-08 2024-10-11 00:47:48 +2869 2869 2870 286.9 573.8000000000001 2869 1977-11-09 2024-10-11 00:47:49.000 1977-11-09 2024-10-11 00:47:49 +2870 2870 2871 287 574 2870 1977-11-10 2024-10-11 00:47:50.000 1977-11-10 2024-10-11 00:47:50 +2871 2871 2872 287.1 574.2 2871 1977-11-11 2024-10-11 00:47:51.000 1977-11-11 2024-10-11 00:47:51 +2872 2872 2873 287.2 574.4 2872 1977-11-12 2024-10-11 00:47:52.000 1977-11-12 2024-10-11 00:47:52 +2873 2873 2874 287.3 574.6 2873 1977-11-13 2024-10-11 00:47:53.000 1977-11-13 2024-10-11 00:47:53 +2874 2874 2875 287.4 574.8000000000001 2874 1977-11-14 2024-10-11 00:47:54.000 1977-11-14 2024-10-11 00:47:54 +2875 2875 2876 287.5 575 2875 1977-11-15 2024-10-11 00:47:55.000 1977-11-15 2024-10-11 00:47:55 +2876 2876 2877 287.6 575.2 2876 1977-11-16 2024-10-11 00:47:56.000 1977-11-16 2024-10-11 00:47:56 +2877 2877 2878 287.7 575.4 2877 1977-11-17 2024-10-11 00:47:57.000 1977-11-17 2024-10-11 00:47:57 +2878 2878 2879 287.8 575.6 2878 1977-11-18 2024-10-11 00:47:58.000 1977-11-18 2024-10-11 00:47:58 +2879 2879 2880 287.9 575.8000000000001 2879 1977-11-19 2024-10-11 00:47:59.000 1977-11-19 2024-10-11 00:47:59 +2880 2880 2881 288 576 2880 1977-11-20 2024-10-11 00:48:00.000 1977-11-20 2024-10-11 00:48:00 +2881 2881 2882 288.1 576.2 2881 1977-11-21 2024-10-11 00:48:01.000 1977-11-21 2024-10-11 00:48:01 +2882 2882 2883 288.2 576.4 2882 1977-11-22 2024-10-11 00:48:02.000 1977-11-22 2024-10-11 00:48:02 +2883 2883 2884 288.3 576.6 2883 1977-11-23 2024-10-11 00:48:03.000 1977-11-23 2024-10-11 00:48:03 +2884 2884 2885 288.4 576.8000000000001 2884 1977-11-24 2024-10-11 00:48:04.000 1977-11-24 2024-10-11 00:48:04 +2885 2885 2886 288.5 577 2885 1977-11-25 2024-10-11 00:48:05.000 1977-11-25 2024-10-11 00:48:05 +2886 2886 2887 288.6 577.2 2886 1977-11-26 2024-10-11 00:48:06.000 1977-11-26 2024-10-11 00:48:06 +2887 2887 2888 288.7 577.4 2887 1977-11-27 2024-10-11 00:48:07.000 1977-11-27 2024-10-11 00:48:07 +2888 2888 2889 288.8 577.6 2888 1977-11-28 2024-10-11 00:48:08.000 1977-11-28 2024-10-11 00:48:08 +2889 2889 2890 288.9 577.8000000000001 2889 1977-11-29 2024-10-11 00:48:09.000 1977-11-29 2024-10-11 00:48:09 +2890 2890 2891 289 578 2890 1977-11-30 2024-10-11 00:48:10.000 1977-11-30 2024-10-11 00:48:10 +2891 2891 2892 289.1 578.2 2891 1977-12-01 2024-10-11 00:48:11.000 1977-12-01 2024-10-11 00:48:11 +2892 2892 2893 289.2 578.4 2892 1977-12-02 2024-10-11 00:48:12.000 1977-12-02 2024-10-11 00:48:12 +2893 2893 2894 289.3 578.6 2893 1977-12-03 2024-10-11 00:48:13.000 1977-12-03 2024-10-11 00:48:13 +2894 2894 2895 289.4 578.8000000000001 2894 1977-12-04 2024-10-11 00:48:14.000 1977-12-04 2024-10-11 00:48:14 +2895 2895 2896 289.5 579 2895 1977-12-05 2024-10-11 00:48:15.000 1977-12-05 2024-10-11 00:48:15 +2896 2896 2897 289.6 579.2 2896 1977-12-06 2024-10-11 00:48:16.000 1977-12-06 2024-10-11 00:48:16 +2897 2897 2898 289.7 579.4 2897 1977-12-07 2024-10-11 00:48:17.000 1977-12-07 2024-10-11 00:48:17 +2898 2898 2899 289.8 579.6 2898 1977-12-08 2024-10-11 00:48:18.000 1977-12-08 2024-10-11 00:48:18 +2899 2899 2900 289.9 579.8000000000001 2899 1977-12-09 2024-10-11 00:48:19.000 1977-12-09 2024-10-11 00:48:19 +2900 2900 2901 290 580 2900 1977-12-10 2024-10-11 00:48:20.000 1977-12-10 2024-10-11 00:48:20 +2901 2901 2902 290.1 580.2 2901 1977-12-11 2024-10-11 00:48:21.000 1977-12-11 2024-10-11 00:48:21 +2902 2902 2903 290.2 580.4 2902 1977-12-12 2024-10-11 00:48:22.000 1977-12-12 2024-10-11 00:48:22 +2903 2903 2904 290.3 580.6 2903 1977-12-13 2024-10-11 00:48:23.000 1977-12-13 2024-10-11 00:48:23 +2904 2904 2905 290.4 580.8000000000001 2904 1977-12-14 2024-10-11 00:48:24.000 1977-12-14 2024-10-11 00:48:24 +2905 2905 2906 290.5 581 2905 1977-12-15 2024-10-11 00:48:25.000 1977-12-15 2024-10-11 00:48:25 +2906 2906 2907 290.6 581.2 2906 1977-12-16 2024-10-11 00:48:26.000 1977-12-16 2024-10-11 00:48:26 +2907 2907 2908 290.7 581.4 2907 1977-12-17 2024-10-11 00:48:27.000 1977-12-17 2024-10-11 00:48:27 +2908 2908 2909 290.8 581.6 2908 1977-12-18 2024-10-11 00:48:28.000 1977-12-18 2024-10-11 00:48:28 +2909 2909 2910 290.9 581.8000000000001 2909 1977-12-19 2024-10-11 00:48:29.000 1977-12-19 2024-10-11 00:48:29 +2910 2910 2911 291 582 2910 1977-12-20 2024-10-11 00:48:30.000 1977-12-20 2024-10-11 00:48:30 +2911 2911 2912 291.1 582.2 2911 1977-12-21 2024-10-11 00:48:31.000 1977-12-21 2024-10-11 00:48:31 +2912 2912 2913 291.2 582.4 2912 1977-12-22 2024-10-11 00:48:32.000 1977-12-22 2024-10-11 00:48:32 +2913 2913 2914 291.3 582.6 2913 1977-12-23 2024-10-11 00:48:33.000 1977-12-23 2024-10-11 00:48:33 +2914 2914 2915 291.4 582.8000000000001 2914 1977-12-24 2024-10-11 00:48:34.000 1977-12-24 2024-10-11 00:48:34 +2915 2915 2916 291.5 583 2915 1977-12-25 2024-10-11 00:48:35.000 1977-12-25 2024-10-11 00:48:35 +2916 2916 2917 291.6 583.2 2916 1977-12-26 2024-10-11 00:48:36.000 1977-12-26 2024-10-11 00:48:36 +2917 2917 2918 291.7 583.4 2917 1977-12-27 2024-10-11 00:48:37.000 1977-12-27 2024-10-11 00:48:37 +2918 2918 2919 291.8 583.6 2918 1977-12-28 2024-10-11 00:48:38.000 1977-12-28 2024-10-11 00:48:38 +2919 2919 2920 291.9 583.8000000000001 2919 1977-12-29 2024-10-11 00:48:39.000 1977-12-29 2024-10-11 00:48:39 +2920 2920 2921 292 584 2920 1977-12-30 2024-10-11 00:48:40.000 1977-12-30 2024-10-11 00:48:40 +2921 2921 2922 292.1 584.2 2921 1977-12-31 2024-10-11 00:48:41.000 1977-12-31 2024-10-11 00:48:41 +2922 2922 2923 292.2 584.4 2922 1978-01-01 2024-10-11 00:48:42.000 1978-01-01 2024-10-11 00:48:42 +2923 2923 2924 292.3 584.6 2923 1978-01-02 2024-10-11 00:48:43.000 1978-01-02 2024-10-11 00:48:43 +2924 2924 2925 292.4 584.8000000000001 2924 1978-01-03 2024-10-11 00:48:44.000 1978-01-03 2024-10-11 00:48:44 +2925 2925 2926 292.5 585 2925 1978-01-04 2024-10-11 00:48:45.000 1978-01-04 2024-10-11 00:48:45 +2926 2926 2927 292.6 585.2 2926 1978-01-05 2024-10-11 00:48:46.000 1978-01-05 2024-10-11 00:48:46 +2927 2927 2928 292.7 585.4 2927 1978-01-06 2024-10-11 00:48:47.000 1978-01-06 2024-10-11 00:48:47 +2928 2928 2929 292.8 585.6 2928 1978-01-07 2024-10-11 00:48:48.000 1978-01-07 2024-10-11 00:48:48 +2929 2929 2930 292.9 585.8000000000001 2929 1978-01-08 2024-10-11 00:48:49.000 1978-01-08 2024-10-11 00:48:49 +2930 2930 2931 293 586 2930 1978-01-09 2024-10-11 00:48:50.000 1978-01-09 2024-10-11 00:48:50 +2931 2931 2932 293.1 586.2 2931 1978-01-10 2024-10-11 00:48:51.000 1978-01-10 2024-10-11 00:48:51 +2932 2932 2933 293.2 586.4 2932 1978-01-11 2024-10-11 00:48:52.000 1978-01-11 2024-10-11 00:48:52 +2933 2933 2934 293.3 586.6 2933 1978-01-12 2024-10-11 00:48:53.000 1978-01-12 2024-10-11 00:48:53 +2934 2934 2935 293.4 586.8000000000001 2934 1978-01-13 2024-10-11 00:48:54.000 1978-01-13 2024-10-11 00:48:54 +2935 2935 2936 293.5 587 2935 1978-01-14 2024-10-11 00:48:55.000 1978-01-14 2024-10-11 00:48:55 +2936 2936 2937 293.6 587.2 2936 1978-01-15 2024-10-11 00:48:56.000 1978-01-15 2024-10-11 00:48:56 +2937 2937 2938 293.7 587.4 2937 1978-01-16 2024-10-11 00:48:57.000 1978-01-16 2024-10-11 00:48:57 +2938 2938 2939 293.8 587.6 2938 1978-01-17 2024-10-11 00:48:58.000 1978-01-17 2024-10-11 00:48:58 +2939 2939 2940 293.9 587.8000000000001 2939 1978-01-18 2024-10-11 00:48:59.000 1978-01-18 2024-10-11 00:48:59 +2940 2940 2941 294 588 2940 1978-01-19 2024-10-11 00:49:00.000 1978-01-19 2024-10-11 00:49:00 +2941 2941 2942 294.1 588.2 2941 1978-01-20 2024-10-11 00:49:01.000 1978-01-20 2024-10-11 00:49:01 +2942 2942 2943 294.2 588.4 2942 1978-01-21 2024-10-11 00:49:02.000 1978-01-21 2024-10-11 00:49:02 +2943 2943 2944 294.3 588.6 2943 1978-01-22 2024-10-11 00:49:03.000 1978-01-22 2024-10-11 00:49:03 +2944 2944 2945 294.4 588.8000000000001 2944 1978-01-23 2024-10-11 00:49:04.000 1978-01-23 2024-10-11 00:49:04 +2945 2945 2946 294.5 589 2945 1978-01-24 2024-10-11 00:49:05.000 1978-01-24 2024-10-11 00:49:05 +2946 2946 2947 294.6 589.2 2946 1978-01-25 2024-10-11 00:49:06.000 1978-01-25 2024-10-11 00:49:06 +2947 2947 2948 294.7 589.4 2947 1978-01-26 2024-10-11 00:49:07.000 1978-01-26 2024-10-11 00:49:07 +2948 2948 2949 294.8 589.6 2948 1978-01-27 2024-10-11 00:49:08.000 1978-01-27 2024-10-11 00:49:08 +2949 2949 2950 294.9 589.8000000000001 2949 1978-01-28 2024-10-11 00:49:09.000 1978-01-28 2024-10-11 00:49:09 +2950 2950 2951 295 590 2950 1978-01-29 2024-10-11 00:49:10.000 1978-01-29 2024-10-11 00:49:10 +2951 2951 2952 295.1 590.2 2951 1978-01-30 2024-10-11 00:49:11.000 1978-01-30 2024-10-11 00:49:11 +2952 2952 2953 295.2 590.4 2952 1978-01-31 2024-10-11 00:49:12.000 1978-01-31 2024-10-11 00:49:12 +2953 2953 2954 295.3 590.6 2953 1978-02-01 2024-10-11 00:49:13.000 1978-02-01 2024-10-11 00:49:13 +2954 2954 2955 295.4 590.8000000000001 2954 1978-02-02 2024-10-11 00:49:14.000 1978-02-02 2024-10-11 00:49:14 +2955 2955 2956 295.5 591 2955 1978-02-03 2024-10-11 00:49:15.000 1978-02-03 2024-10-11 00:49:15 +2956 2956 2957 295.6 591.2 2956 1978-02-04 2024-10-11 00:49:16.000 1978-02-04 2024-10-11 00:49:16 +2957 2957 2958 295.7 591.4 2957 1978-02-05 2024-10-11 00:49:17.000 1978-02-05 2024-10-11 00:49:17 +2958 2958 2959 295.8 591.6 2958 1978-02-06 2024-10-11 00:49:18.000 1978-02-06 2024-10-11 00:49:18 +2959 2959 2960 295.9 591.8000000000001 2959 1978-02-07 2024-10-11 00:49:19.000 1978-02-07 2024-10-11 00:49:19 +2960 2960 2961 296 592 2960 1978-02-08 2024-10-11 00:49:20.000 1978-02-08 2024-10-11 00:49:20 +2961 2961 2962 296.1 592.2 2961 1978-02-09 2024-10-11 00:49:21.000 1978-02-09 2024-10-11 00:49:21 +2962 2962 2963 296.2 592.4 2962 1978-02-10 2024-10-11 00:49:22.000 1978-02-10 2024-10-11 00:49:22 +2963 2963 2964 296.3 592.6 2963 1978-02-11 2024-10-11 00:49:23.000 1978-02-11 2024-10-11 00:49:23 +2964 2964 2965 296.4 592.8000000000001 2964 1978-02-12 2024-10-11 00:49:24.000 1978-02-12 2024-10-11 00:49:24 +2965 2965 2966 296.5 593 2965 1978-02-13 2024-10-11 00:49:25.000 1978-02-13 2024-10-11 00:49:25 +2966 2966 2967 296.6 593.2 2966 1978-02-14 2024-10-11 00:49:26.000 1978-02-14 2024-10-11 00:49:26 +2967 2967 2968 296.7 593.4 2967 1978-02-15 2024-10-11 00:49:27.000 1978-02-15 2024-10-11 00:49:27 +2968 2968 2969 296.8 593.6 2968 1978-02-16 2024-10-11 00:49:28.000 1978-02-16 2024-10-11 00:49:28 +2969 2969 2970 296.9 593.8000000000001 2969 1978-02-17 2024-10-11 00:49:29.000 1978-02-17 2024-10-11 00:49:29 +2970 2970 2971 297 594 2970 1978-02-18 2024-10-11 00:49:30.000 1978-02-18 2024-10-11 00:49:30 +2971 2971 2972 297.1 594.2 2971 1978-02-19 2024-10-11 00:49:31.000 1978-02-19 2024-10-11 00:49:31 +2972 2972 2973 297.2 594.4 2972 1978-02-20 2024-10-11 00:49:32.000 1978-02-20 2024-10-11 00:49:32 +2973 2973 2974 297.3 594.6 2973 1978-02-21 2024-10-11 00:49:33.000 1978-02-21 2024-10-11 00:49:33 +2974 2974 2975 297.4 594.8000000000001 2974 1978-02-22 2024-10-11 00:49:34.000 1978-02-22 2024-10-11 00:49:34 +2975 2975 2976 297.5 595 2975 1978-02-23 2024-10-11 00:49:35.000 1978-02-23 2024-10-11 00:49:35 +2976 2976 2977 297.6 595.2 2976 1978-02-24 2024-10-11 00:49:36.000 1978-02-24 2024-10-11 00:49:36 +2977 2977 2978 297.7 595.4 2977 1978-02-25 2024-10-11 00:49:37.000 1978-02-25 2024-10-11 00:49:37 +2978 2978 2979 297.8 595.6 2978 1978-02-26 2024-10-11 00:49:38.000 1978-02-26 2024-10-11 00:49:38 +2979 2979 2980 297.9 595.8000000000001 2979 1978-02-27 2024-10-11 00:49:39.000 1978-02-27 2024-10-11 00:49:39 +2980 2980 2981 298 596 2980 1978-02-28 2024-10-11 00:49:40.000 1978-02-28 2024-10-11 00:49:40 +2981 2981 2982 298.1 596.2 2981 1978-03-01 2024-10-11 00:49:41.000 1978-03-01 2024-10-11 00:49:41 +2982 2982 2983 298.2 596.4 2982 1978-03-02 2024-10-11 00:49:42.000 1978-03-02 2024-10-11 00:49:42 +2983 2983 2984 298.3 596.6 2983 1978-03-03 2024-10-11 00:49:43.000 1978-03-03 2024-10-11 00:49:43 +2984 2984 2985 298.4 596.8000000000001 2984 1978-03-04 2024-10-11 00:49:44.000 1978-03-04 2024-10-11 00:49:44 +2985 2985 2986 298.5 597 2985 1978-03-05 2024-10-11 00:49:45.000 1978-03-05 2024-10-11 00:49:45 +2986 2986 2987 298.6 597.2 2986 1978-03-06 2024-10-11 00:49:46.000 1978-03-06 2024-10-11 00:49:46 +2987 2987 2988 298.7 597.4 2987 1978-03-07 2024-10-11 00:49:47.000 1978-03-07 2024-10-11 00:49:47 +2988 2988 2989 298.8 597.6 2988 1978-03-08 2024-10-11 00:49:48.000 1978-03-08 2024-10-11 00:49:48 +2989 2989 2990 298.9 597.8000000000001 2989 1978-03-09 2024-10-11 00:49:49.000 1978-03-09 2024-10-11 00:49:49 +2990 2990 2991 299 598 2990 1978-03-10 2024-10-11 00:49:50.000 1978-03-10 2024-10-11 00:49:50 +2991 2991 2992 299.1 598.2 2991 1978-03-11 2024-10-11 00:49:51.000 1978-03-11 2024-10-11 00:49:51 +2992 2992 2993 299.2 598.4 2992 1978-03-12 2024-10-11 00:49:52.000 1978-03-12 2024-10-11 00:49:52 +2993 2993 2994 299.3 598.6 2993 1978-03-13 2024-10-11 00:49:53.000 1978-03-13 2024-10-11 00:49:53 +2994 2994 2995 299.4 598.8000000000001 2994 1978-03-14 2024-10-11 00:49:54.000 1978-03-14 2024-10-11 00:49:54 +2995 2995 2996 299.5 599 2995 1978-03-15 2024-10-11 00:49:55.000 1978-03-15 2024-10-11 00:49:55 +2996 2996 2997 299.6 599.2 2996 1978-03-16 2024-10-11 00:49:56.000 1978-03-16 2024-10-11 00:49:56 +2997 2997 2998 299.7 599.4 2997 1978-03-17 2024-10-11 00:49:57.000 1978-03-17 2024-10-11 00:49:57 +2998 2998 2999 299.8 599.6 2998 1978-03-18 2024-10-11 00:49:58.000 1978-03-18 2024-10-11 00:49:58 +2999 2999 3000 299.9 599.8000000000001 2999 1978-03-19 2024-10-11 00:49:59.000 1978-03-19 2024-10-11 00:49:59 +3000 3000 3001 300 600 3000 1978-03-20 2024-10-11 00:50:00.000 1978-03-20 2024-10-11 00:50:00 +3001 3001 3002 300.1 600.2 3001 1978-03-21 2024-10-11 00:50:01.000 1978-03-21 2024-10-11 00:50:01 +3002 3002 3003 300.2 600.4 3002 1978-03-22 2024-10-11 00:50:02.000 1978-03-22 2024-10-11 00:50:02 +3003 3003 3004 300.3 600.6 3003 1978-03-23 2024-10-11 00:50:03.000 1978-03-23 2024-10-11 00:50:03 +3004 3004 3005 300.4 600.8000000000001 3004 1978-03-24 2024-10-11 00:50:04.000 1978-03-24 2024-10-11 00:50:04 +3005 3005 3006 300.5 601 3005 1978-03-25 2024-10-11 00:50:05.000 1978-03-25 2024-10-11 00:50:05 +3006 3006 3007 300.6 601.2 3006 1978-03-26 2024-10-11 00:50:06.000 1978-03-26 2024-10-11 00:50:06 +3007 3007 3008 300.7 601.4 3007 1978-03-27 2024-10-11 00:50:07.000 1978-03-27 2024-10-11 00:50:07 +3008 3008 3009 300.8 601.6 3008 1978-03-28 2024-10-11 00:50:08.000 1978-03-28 2024-10-11 00:50:08 +3009 3009 3010 300.9 601.8000000000001 3009 1978-03-29 2024-10-11 00:50:09.000 1978-03-29 2024-10-11 00:50:09 +3010 3010 3011 301 602 3010 1978-03-30 2024-10-11 00:50:10.000 1978-03-30 2024-10-11 00:50:10 +3011 3011 3012 301.1 602.2 3011 1978-03-31 2024-10-11 00:50:11.000 1978-03-31 2024-10-11 00:50:11 +3012 3012 3013 301.2 602.4 3012 1978-04-01 2024-10-11 00:50:12.000 1978-04-01 2024-10-11 00:50:12 +3013 3013 3014 301.3 602.6 3013 1978-04-02 2024-10-11 00:50:13.000 1978-04-02 2024-10-11 00:50:13 +3014 3014 3015 301.4 602.8000000000001 3014 1978-04-03 2024-10-11 00:50:14.000 1978-04-03 2024-10-11 00:50:14 +3015 3015 3016 301.5 603 3015 1978-04-04 2024-10-11 00:50:15.000 1978-04-04 2024-10-11 00:50:15 +3016 3016 3017 301.6 603.2 3016 1978-04-05 2024-10-11 00:50:16.000 1978-04-05 2024-10-11 00:50:16 +3017 3017 3018 301.7 603.4 3017 1978-04-06 2024-10-11 00:50:17.000 1978-04-06 2024-10-11 00:50:17 +3018 3018 3019 301.8 603.6 3018 1978-04-07 2024-10-11 00:50:18.000 1978-04-07 2024-10-11 00:50:18 +3019 3019 3020 301.9 603.8000000000001 3019 1978-04-08 2024-10-11 00:50:19.000 1978-04-08 2024-10-11 00:50:19 +3020 3020 3021 302 604 3020 1978-04-09 2024-10-11 00:50:20.000 1978-04-09 2024-10-11 00:50:20 +3021 3021 3022 302.1 604.2 3021 1978-04-10 2024-10-11 00:50:21.000 1978-04-10 2024-10-11 00:50:21 +3022 3022 3023 302.2 604.4 3022 1978-04-11 2024-10-11 00:50:22.000 1978-04-11 2024-10-11 00:50:22 +3023 3023 3024 302.3 604.6 3023 1978-04-12 2024-10-11 00:50:23.000 1978-04-12 2024-10-11 00:50:23 +3024 3024 3025 302.4 604.8000000000001 3024 1978-04-13 2024-10-11 00:50:24.000 1978-04-13 2024-10-11 00:50:24 +3025 3025 3026 302.5 605 3025 1978-04-14 2024-10-11 00:50:25.000 1978-04-14 2024-10-11 00:50:25 +3026 3026 3027 302.6 605.2 3026 1978-04-15 2024-10-11 00:50:26.000 1978-04-15 2024-10-11 00:50:26 +3027 3027 3028 302.7 605.4 3027 1978-04-16 2024-10-11 00:50:27.000 1978-04-16 2024-10-11 00:50:27 +3028 3028 3029 302.8 605.6 3028 1978-04-17 2024-10-11 00:50:28.000 1978-04-17 2024-10-11 00:50:28 +3029 3029 3030 302.9 605.8000000000001 3029 1978-04-18 2024-10-11 00:50:29.000 1978-04-18 2024-10-11 00:50:29 +3030 3030 3031 303 606 3030 1978-04-19 2024-10-11 00:50:30.000 1978-04-19 2024-10-11 00:50:30 +3031 3031 3032 303.1 606.2 3031 1978-04-20 2024-10-11 00:50:31.000 1978-04-20 2024-10-11 00:50:31 +3032 3032 3033 303.2 606.4 3032 1978-04-21 2024-10-11 00:50:32.000 1978-04-21 2024-10-11 00:50:32 +3033 3033 3034 303.3 606.6 3033 1978-04-22 2024-10-11 00:50:33.000 1978-04-22 2024-10-11 00:50:33 +3034 3034 3035 303.4 606.8000000000001 3034 1978-04-23 2024-10-11 00:50:34.000 1978-04-23 2024-10-11 00:50:34 +3035 3035 3036 303.5 607 3035 1978-04-24 2024-10-11 00:50:35.000 1978-04-24 2024-10-11 00:50:35 +3036 3036 3037 303.6 607.2 3036 1978-04-25 2024-10-11 00:50:36.000 1978-04-25 2024-10-11 00:50:36 +3037 3037 3038 303.7 607.4 3037 1978-04-26 2024-10-11 00:50:37.000 1978-04-26 2024-10-11 00:50:37 +3038 3038 3039 303.8 607.6 3038 1978-04-27 2024-10-11 00:50:38.000 1978-04-27 2024-10-11 00:50:38 +3039 3039 3040 303.9 607.8000000000001 3039 1978-04-28 2024-10-11 00:50:39.000 1978-04-28 2024-10-11 00:50:39 +3040 3040 3041 304 608 3040 1978-04-29 2024-10-11 00:50:40.000 1978-04-29 2024-10-11 00:50:40 +3041 3041 3042 304.1 608.2 3041 1978-04-30 2024-10-11 00:50:41.000 1978-04-30 2024-10-11 00:50:41 +3042 3042 3043 304.2 608.4 3042 1978-05-01 2024-10-11 00:50:42.000 1978-05-01 2024-10-11 00:50:42 +3043 3043 3044 304.3 608.6 3043 1978-05-02 2024-10-11 00:50:43.000 1978-05-02 2024-10-11 00:50:43 +3044 3044 3045 304.4 608.8000000000001 3044 1978-05-03 2024-10-11 00:50:44.000 1978-05-03 2024-10-11 00:50:44 +3045 3045 3046 304.5 609 3045 1978-05-04 2024-10-11 00:50:45.000 1978-05-04 2024-10-11 00:50:45 +3046 3046 3047 304.6 609.2 3046 1978-05-05 2024-10-11 00:50:46.000 1978-05-05 2024-10-11 00:50:46 +3047 3047 3048 304.7 609.4 3047 1978-05-06 2024-10-11 00:50:47.000 1978-05-06 2024-10-11 00:50:47 +3048 3048 3049 304.8 609.6 3048 1978-05-07 2024-10-11 00:50:48.000 1978-05-07 2024-10-11 00:50:48 +3049 3049 3050 304.9 609.8000000000001 3049 1978-05-08 2024-10-11 00:50:49.000 1978-05-08 2024-10-11 00:50:49 +3050 3050 3051 305 610 3050 1978-05-09 2024-10-11 00:50:50.000 1978-05-09 2024-10-11 00:50:50 +3051 3051 3052 305.1 610.2 3051 1978-05-10 2024-10-11 00:50:51.000 1978-05-10 2024-10-11 00:50:51 +3052 3052 3053 305.2 610.4 3052 1978-05-11 2024-10-11 00:50:52.000 1978-05-11 2024-10-11 00:50:52 +3053 3053 3054 305.3 610.6 3053 1978-05-12 2024-10-11 00:50:53.000 1978-05-12 2024-10-11 00:50:53 +3054 3054 3055 305.4 610.8000000000001 3054 1978-05-13 2024-10-11 00:50:54.000 1978-05-13 2024-10-11 00:50:54 +3055 3055 3056 305.5 611 3055 1978-05-14 2024-10-11 00:50:55.000 1978-05-14 2024-10-11 00:50:55 +3056 3056 3057 305.6 611.2 3056 1978-05-15 2024-10-11 00:50:56.000 1978-05-15 2024-10-11 00:50:56 +3057 3057 3058 305.7 611.4 3057 1978-05-16 2024-10-11 00:50:57.000 1978-05-16 2024-10-11 00:50:57 +3058 3058 3059 305.8 611.6 3058 1978-05-17 2024-10-11 00:50:58.000 1978-05-17 2024-10-11 00:50:58 +3059 3059 3060 305.9 611.8000000000001 3059 1978-05-18 2024-10-11 00:50:59.000 1978-05-18 2024-10-11 00:50:59 +3060 3060 3061 306 612 3060 1978-05-19 2024-10-11 00:51:00.000 1978-05-19 2024-10-11 00:51:00 +3061 3061 3062 306.1 612.2 3061 1978-05-20 2024-10-11 00:51:01.000 1978-05-20 2024-10-11 00:51:01 +3062 3062 3063 306.2 612.4 3062 1978-05-21 2024-10-11 00:51:02.000 1978-05-21 2024-10-11 00:51:02 +3063 3063 3064 306.3 612.6 3063 1978-05-22 2024-10-11 00:51:03.000 1978-05-22 2024-10-11 00:51:03 +3064 3064 3065 306.4 612.8000000000001 3064 1978-05-23 2024-10-11 00:51:04.000 1978-05-23 2024-10-11 00:51:04 +3065 3065 3066 306.5 613 3065 1978-05-24 2024-10-11 00:51:05.000 1978-05-24 2024-10-11 00:51:05 +3066 3066 3067 306.6 613.2 3066 1978-05-25 2024-10-11 00:51:06.000 1978-05-25 2024-10-11 00:51:06 +3067 3067 3068 306.7 613.4 3067 1978-05-26 2024-10-11 00:51:07.000 1978-05-26 2024-10-11 00:51:07 +3068 3068 3069 306.8 613.6 3068 1978-05-27 2024-10-11 00:51:08.000 1978-05-27 2024-10-11 00:51:08 +3069 3069 3070 306.9 613.8000000000001 3069 1978-05-28 2024-10-11 00:51:09.000 1978-05-28 2024-10-11 00:51:09 +3070 3070 3071 307 614 3070 1978-05-29 2024-10-11 00:51:10.000 1978-05-29 2024-10-11 00:51:10 +3071 3071 3072 307.1 614.2 3071 1978-05-30 2024-10-11 00:51:11.000 1978-05-30 2024-10-11 00:51:11 +3072 3072 3073 307.2 614.4000000000001 3072 1978-05-31 2024-10-11 00:51:12.000 1978-05-31 2024-10-11 00:51:12 +3073 3073 3074 307.3 614.6 3073 1978-06-01 2024-10-11 00:51:13.000 1978-06-01 2024-10-11 00:51:13 +3074 3074 3075 307.4 614.8000000000001 3074 1978-06-02 2024-10-11 00:51:14.000 1978-06-02 2024-10-11 00:51:14 +3075 3075 3076 307.5 615 3075 1978-06-03 2024-10-11 00:51:15.000 1978-06-03 2024-10-11 00:51:15 +3076 3076 3077 307.6 615.2 3076 1978-06-04 2024-10-11 00:51:16.000 1978-06-04 2024-10-11 00:51:16 +3077 3077 3078 307.7 615.4000000000001 3077 1978-06-05 2024-10-11 00:51:17.000 1978-06-05 2024-10-11 00:51:17 +3078 3078 3079 307.8 615.6 3078 1978-06-06 2024-10-11 00:51:18.000 1978-06-06 2024-10-11 00:51:18 +3079 3079 3080 307.9 615.8000000000001 3079 1978-06-07 2024-10-11 00:51:19.000 1978-06-07 2024-10-11 00:51:19 +3080 3080 3081 308 616 3080 1978-06-08 2024-10-11 00:51:20.000 1978-06-08 2024-10-11 00:51:20 +3081 3081 3082 308.1 616.2 3081 1978-06-09 2024-10-11 00:51:21.000 1978-06-09 2024-10-11 00:51:21 +3082 3082 3083 308.2 616.4000000000001 3082 1978-06-10 2024-10-11 00:51:22.000 1978-06-10 2024-10-11 00:51:22 +3083 3083 3084 308.3 616.6 3083 1978-06-11 2024-10-11 00:51:23.000 1978-06-11 2024-10-11 00:51:23 +3084 3084 3085 308.4 616.8000000000001 3084 1978-06-12 2024-10-11 00:51:24.000 1978-06-12 2024-10-11 00:51:24 +3085 3085 3086 308.5 617 3085 1978-06-13 2024-10-11 00:51:25.000 1978-06-13 2024-10-11 00:51:25 +3086 3086 3087 308.6 617.2 3086 1978-06-14 2024-10-11 00:51:26.000 1978-06-14 2024-10-11 00:51:26 +3087 3087 3088 308.7 617.4000000000001 3087 1978-06-15 2024-10-11 00:51:27.000 1978-06-15 2024-10-11 00:51:27 +3088 3088 3089 308.8 617.6 3088 1978-06-16 2024-10-11 00:51:28.000 1978-06-16 2024-10-11 00:51:28 +3089 3089 3090 308.9 617.8000000000001 3089 1978-06-17 2024-10-11 00:51:29.000 1978-06-17 2024-10-11 00:51:29 +3090 3090 3091 309 618 3090 1978-06-18 2024-10-11 00:51:30.000 1978-06-18 2024-10-11 00:51:30 +3091 3091 3092 309.1 618.2 3091 1978-06-19 2024-10-11 00:51:31.000 1978-06-19 2024-10-11 00:51:31 +3092 3092 3093 309.2 618.4000000000001 3092 1978-06-20 2024-10-11 00:51:32.000 1978-06-20 2024-10-11 00:51:32 +3093 3093 3094 309.3 618.6 3093 1978-06-21 2024-10-11 00:51:33.000 1978-06-21 2024-10-11 00:51:33 +3094 3094 3095 309.4 618.8000000000001 3094 1978-06-22 2024-10-11 00:51:34.000 1978-06-22 2024-10-11 00:51:34 +3095 3095 3096 309.5 619 3095 1978-06-23 2024-10-11 00:51:35.000 1978-06-23 2024-10-11 00:51:35 +3096 3096 3097 309.6 619.2 3096 1978-06-24 2024-10-11 00:51:36.000 1978-06-24 2024-10-11 00:51:36 +3097 3097 3098 309.7 619.4000000000001 3097 1978-06-25 2024-10-11 00:51:37.000 1978-06-25 2024-10-11 00:51:37 +3098 3098 3099 309.8 619.6 3098 1978-06-26 2024-10-11 00:51:38.000 1978-06-26 2024-10-11 00:51:38 +3099 3099 3100 309.9 619.8000000000001 3099 1978-06-27 2024-10-11 00:51:39.000 1978-06-27 2024-10-11 00:51:39 +3100 3100 3101 310 620 3100 1978-06-28 2024-10-11 00:51:40.000 1978-06-28 2024-10-11 00:51:40 +3101 3101 3102 310.1 620.2 3101 1978-06-29 2024-10-11 00:51:41.000 1978-06-29 2024-10-11 00:51:41 +3102 3102 3103 310.2 620.4000000000001 3102 1978-06-30 2024-10-11 00:51:42.000 1978-06-30 2024-10-11 00:51:42 +3103 3103 3104 310.3 620.6 3103 1978-07-01 2024-10-11 00:51:43.000 1978-07-01 2024-10-11 00:51:43 +3104 3104 3105 310.4 620.8000000000001 3104 1978-07-02 2024-10-11 00:51:44.000 1978-07-02 2024-10-11 00:51:44 +3105 3105 3106 310.5 621 3105 1978-07-03 2024-10-11 00:51:45.000 1978-07-03 2024-10-11 00:51:45 +3106 3106 3107 310.6 621.2 3106 1978-07-04 2024-10-11 00:51:46.000 1978-07-04 2024-10-11 00:51:46 +3107 3107 3108 310.7 621.4000000000001 3107 1978-07-05 2024-10-11 00:51:47.000 1978-07-05 2024-10-11 00:51:47 +3108 3108 3109 310.8 621.6 3108 1978-07-06 2024-10-11 00:51:48.000 1978-07-06 2024-10-11 00:51:48 +3109 3109 3110 310.9 621.8000000000001 3109 1978-07-07 2024-10-11 00:51:49.000 1978-07-07 2024-10-11 00:51:49 +3110 3110 3111 311 622 3110 1978-07-08 2024-10-11 00:51:50.000 1978-07-08 2024-10-11 00:51:50 +3111 3111 3112 311.1 622.2 3111 1978-07-09 2024-10-11 00:51:51.000 1978-07-09 2024-10-11 00:51:51 +3112 3112 3113 311.2 622.4000000000001 3112 1978-07-10 2024-10-11 00:51:52.000 1978-07-10 2024-10-11 00:51:52 +3113 3113 3114 311.3 622.6 3113 1978-07-11 2024-10-11 00:51:53.000 1978-07-11 2024-10-11 00:51:53 +3114 3114 3115 311.4 622.8000000000001 3114 1978-07-12 2024-10-11 00:51:54.000 1978-07-12 2024-10-11 00:51:54 +3115 3115 3116 311.5 623 3115 1978-07-13 2024-10-11 00:51:55.000 1978-07-13 2024-10-11 00:51:55 +3116 3116 3117 311.6 623.2 3116 1978-07-14 2024-10-11 00:51:56.000 1978-07-14 2024-10-11 00:51:56 +3117 3117 3118 311.7 623.4000000000001 3117 1978-07-15 2024-10-11 00:51:57.000 1978-07-15 2024-10-11 00:51:57 +3118 3118 3119 311.8 623.6 3118 1978-07-16 2024-10-11 00:51:58.000 1978-07-16 2024-10-11 00:51:58 +3119 3119 3120 311.9 623.8000000000001 3119 1978-07-17 2024-10-11 00:51:59.000 1978-07-17 2024-10-11 00:51:59 +3120 3120 3121 312 624 3120 1978-07-18 2024-10-11 00:52:00.000 1978-07-18 2024-10-11 00:52:00 +3121 3121 3122 312.1 624.2 3121 1978-07-19 2024-10-11 00:52:01.000 1978-07-19 2024-10-11 00:52:01 +3122 3122 3123 312.2 624.4000000000001 3122 1978-07-20 2024-10-11 00:52:02.000 1978-07-20 2024-10-11 00:52:02 +3123 3123 3124 312.3 624.6 3123 1978-07-21 2024-10-11 00:52:03.000 1978-07-21 2024-10-11 00:52:03 +3124 3124 3125 312.4 624.8000000000001 3124 1978-07-22 2024-10-11 00:52:04.000 1978-07-22 2024-10-11 00:52:04 +3125 3125 3126 312.5 625 3125 1978-07-23 2024-10-11 00:52:05.000 1978-07-23 2024-10-11 00:52:05 +3126 3126 3127 312.6 625.2 3126 1978-07-24 2024-10-11 00:52:06.000 1978-07-24 2024-10-11 00:52:06 +3127 3127 3128 312.7 625.4000000000001 3127 1978-07-25 2024-10-11 00:52:07.000 1978-07-25 2024-10-11 00:52:07 +3128 3128 3129 312.8 625.6 3128 1978-07-26 2024-10-11 00:52:08.000 1978-07-26 2024-10-11 00:52:08 +3129 3129 3130 312.9 625.8000000000001 3129 1978-07-27 2024-10-11 00:52:09.000 1978-07-27 2024-10-11 00:52:09 +3130 3130 3131 313 626 3130 1978-07-28 2024-10-11 00:52:10.000 1978-07-28 2024-10-11 00:52:10 +3131 3131 3132 313.1 626.2 3131 1978-07-29 2024-10-11 00:52:11.000 1978-07-29 2024-10-11 00:52:11 +3132 3132 3133 313.2 626.4000000000001 3132 1978-07-30 2024-10-11 00:52:12.000 1978-07-30 2024-10-11 00:52:12 +3133 3133 3134 313.3 626.6 3133 1978-07-31 2024-10-11 00:52:13.000 1978-07-31 2024-10-11 00:52:13 +3134 3134 3135 313.4 626.8000000000001 3134 1978-08-01 2024-10-11 00:52:14.000 1978-08-01 2024-10-11 00:52:14 +3135 3135 3136 313.5 627 3135 1978-08-02 2024-10-11 00:52:15.000 1978-08-02 2024-10-11 00:52:15 +3136 3136 3137 313.6 627.2 3136 1978-08-03 2024-10-11 00:52:16.000 1978-08-03 2024-10-11 00:52:16 +3137 3137 3138 313.7 627.4000000000001 3137 1978-08-04 2024-10-11 00:52:17.000 1978-08-04 2024-10-11 00:52:17 +3138 3138 3139 313.8 627.6 3138 1978-08-05 2024-10-11 00:52:18.000 1978-08-05 2024-10-11 00:52:18 +3139 3139 3140 313.9 627.8000000000001 3139 1978-08-06 2024-10-11 00:52:19.000 1978-08-06 2024-10-11 00:52:19 +3140 3140 3141 314 628 3140 1978-08-07 2024-10-11 00:52:20.000 1978-08-07 2024-10-11 00:52:20 +3141 3141 3142 314.1 628.2 3141 1978-08-08 2024-10-11 00:52:21.000 1978-08-08 2024-10-11 00:52:21 +3142 3142 3143 314.2 628.4000000000001 3142 1978-08-09 2024-10-11 00:52:22.000 1978-08-09 2024-10-11 00:52:22 +3143 3143 3144 314.3 628.6 3143 1978-08-10 2024-10-11 00:52:23.000 1978-08-10 2024-10-11 00:52:23 +3144 3144 3145 314.4 628.8000000000001 3144 1978-08-11 2024-10-11 00:52:24.000 1978-08-11 2024-10-11 00:52:24 +3145 3145 3146 314.5 629 3145 1978-08-12 2024-10-11 00:52:25.000 1978-08-12 2024-10-11 00:52:25 +3146 3146 3147 314.6 629.2 3146 1978-08-13 2024-10-11 00:52:26.000 1978-08-13 2024-10-11 00:52:26 +3147 3147 3148 314.7 629.4000000000001 3147 1978-08-14 2024-10-11 00:52:27.000 1978-08-14 2024-10-11 00:52:27 +3148 3148 3149 314.8 629.6 3148 1978-08-15 2024-10-11 00:52:28.000 1978-08-15 2024-10-11 00:52:28 +3149 3149 3150 314.9 629.8000000000001 3149 1978-08-16 2024-10-11 00:52:29.000 1978-08-16 2024-10-11 00:52:29 +3150 3150 3151 315 630 3150 1978-08-17 2024-10-11 00:52:30.000 1978-08-17 2024-10-11 00:52:30 +3151 3151 3152 315.1 630.2 3151 1978-08-18 2024-10-11 00:52:31.000 1978-08-18 2024-10-11 00:52:31 +3152 3152 3153 315.2 630.4000000000001 3152 1978-08-19 2024-10-11 00:52:32.000 1978-08-19 2024-10-11 00:52:32 +3153 3153 3154 315.3 630.6 3153 1978-08-20 2024-10-11 00:52:33.000 1978-08-20 2024-10-11 00:52:33 +3154 3154 3155 315.4 630.8000000000001 3154 1978-08-21 2024-10-11 00:52:34.000 1978-08-21 2024-10-11 00:52:34 +3155 3155 3156 315.5 631 3155 1978-08-22 2024-10-11 00:52:35.000 1978-08-22 2024-10-11 00:52:35 +3156 3156 3157 315.6 631.2 3156 1978-08-23 2024-10-11 00:52:36.000 1978-08-23 2024-10-11 00:52:36 +3157 3157 3158 315.7 631.4000000000001 3157 1978-08-24 2024-10-11 00:52:37.000 1978-08-24 2024-10-11 00:52:37 +3158 3158 3159 315.8 631.6 3158 1978-08-25 2024-10-11 00:52:38.000 1978-08-25 2024-10-11 00:52:38 +3159 3159 3160 315.9 631.8000000000001 3159 1978-08-26 2024-10-11 00:52:39.000 1978-08-26 2024-10-11 00:52:39 +3160 3160 3161 316 632 3160 1978-08-27 2024-10-11 00:52:40.000 1978-08-27 2024-10-11 00:52:40 +3161 3161 3162 316.1 632.2 3161 1978-08-28 2024-10-11 00:52:41.000 1978-08-28 2024-10-11 00:52:41 +3162 3162 3163 316.2 632.4000000000001 3162 1978-08-29 2024-10-11 00:52:42.000 1978-08-29 2024-10-11 00:52:42 +3163 3163 3164 316.3 632.6 3163 1978-08-30 2024-10-11 00:52:43.000 1978-08-30 2024-10-11 00:52:43 +3164 3164 3165 316.4 632.8000000000001 3164 1978-08-31 2024-10-11 00:52:44.000 1978-08-31 2024-10-11 00:52:44 +3165 3165 3166 316.5 633 3165 1978-09-01 2024-10-11 00:52:45.000 1978-09-01 2024-10-11 00:52:45 +3166 3166 3167 316.6 633.2 3166 1978-09-02 2024-10-11 00:52:46.000 1978-09-02 2024-10-11 00:52:46 +3167 3167 3168 316.7 633.4000000000001 3167 1978-09-03 2024-10-11 00:52:47.000 1978-09-03 2024-10-11 00:52:47 +3168 3168 3169 316.8 633.6 3168 1978-09-04 2024-10-11 00:52:48.000 1978-09-04 2024-10-11 00:52:48 +3169 3169 3170 316.9 633.8000000000001 3169 1978-09-05 2024-10-11 00:52:49.000 1978-09-05 2024-10-11 00:52:49 +3170 3170 3171 317 634 3170 1978-09-06 2024-10-11 00:52:50.000 1978-09-06 2024-10-11 00:52:50 +3171 3171 3172 317.1 634.2 3171 1978-09-07 2024-10-11 00:52:51.000 1978-09-07 2024-10-11 00:52:51 +3172 3172 3173 317.2 634.4000000000001 3172 1978-09-08 2024-10-11 00:52:52.000 1978-09-08 2024-10-11 00:52:52 +3173 3173 3174 317.3 634.6 3173 1978-09-09 2024-10-11 00:52:53.000 1978-09-09 2024-10-11 00:52:53 +3174 3174 3175 317.4 634.8000000000001 3174 1978-09-10 2024-10-11 00:52:54.000 1978-09-10 2024-10-11 00:52:54 +3175 3175 3176 317.5 635 3175 1978-09-11 2024-10-11 00:52:55.000 1978-09-11 2024-10-11 00:52:55 +3176 3176 3177 317.6 635.2 3176 1978-09-12 2024-10-11 00:52:56.000 1978-09-12 2024-10-11 00:52:56 +3177 3177 3178 317.7 635.4000000000001 3177 1978-09-13 2024-10-11 00:52:57.000 1978-09-13 2024-10-11 00:52:57 +3178 3178 3179 317.8 635.6 3178 1978-09-14 2024-10-11 00:52:58.000 1978-09-14 2024-10-11 00:52:58 +3179 3179 3180 317.9 635.8000000000001 3179 1978-09-15 2024-10-11 00:52:59.000 1978-09-15 2024-10-11 00:52:59 +3180 3180 3181 318 636 3180 1978-09-16 2024-10-11 00:53:00.000 1978-09-16 2024-10-11 00:53:00 +3181 3181 3182 318.1 636.2 3181 1978-09-17 2024-10-11 00:53:01.000 1978-09-17 2024-10-11 00:53:01 +3182 3182 3183 318.2 636.4000000000001 3182 1978-09-18 2024-10-11 00:53:02.000 1978-09-18 2024-10-11 00:53:02 +3183 3183 3184 318.3 636.6 3183 1978-09-19 2024-10-11 00:53:03.000 1978-09-19 2024-10-11 00:53:03 +3184 3184 3185 318.4 636.8000000000001 3184 1978-09-20 2024-10-11 00:53:04.000 1978-09-20 2024-10-11 00:53:04 +3185 3185 3186 318.5 637 3185 1978-09-21 2024-10-11 00:53:05.000 1978-09-21 2024-10-11 00:53:05 +3186 3186 3187 318.6 637.2 3186 1978-09-22 2024-10-11 00:53:06.000 1978-09-22 2024-10-11 00:53:06 +3187 3187 3188 318.7 637.4000000000001 3187 1978-09-23 2024-10-11 00:53:07.000 1978-09-23 2024-10-11 00:53:07 +3188 3188 3189 318.8 637.6 3188 1978-09-24 2024-10-11 00:53:08.000 1978-09-24 2024-10-11 00:53:08 +3189 3189 3190 318.9 637.8000000000001 3189 1978-09-25 2024-10-11 00:53:09.000 1978-09-25 2024-10-11 00:53:09 +3190 3190 3191 319 638 3190 1978-09-26 2024-10-11 00:53:10.000 1978-09-26 2024-10-11 00:53:10 +3191 3191 3192 319.1 638.2 3191 1978-09-27 2024-10-11 00:53:11.000 1978-09-27 2024-10-11 00:53:11 +3192 3192 3193 319.2 638.4000000000001 3192 1978-09-28 2024-10-11 00:53:12.000 1978-09-28 2024-10-11 00:53:12 +3193 3193 3194 319.3 638.6 3193 1978-09-29 2024-10-11 00:53:13.000 1978-09-29 2024-10-11 00:53:13 +3194 3194 3195 319.4 638.8000000000001 3194 1978-09-30 2024-10-11 00:53:14.000 1978-09-30 2024-10-11 00:53:14 +3195 3195 3196 319.5 639 3195 1978-10-01 2024-10-11 00:53:15.000 1978-10-01 2024-10-11 00:53:15 +3196 3196 3197 319.6 639.2 3196 1978-10-02 2024-10-11 00:53:16.000 1978-10-02 2024-10-11 00:53:16 +3197 3197 3198 319.7 639.4000000000001 3197 1978-10-03 2024-10-11 00:53:17.000 1978-10-03 2024-10-11 00:53:17 +3198 3198 3199 319.8 639.6 3198 1978-10-04 2024-10-11 00:53:18.000 1978-10-04 2024-10-11 00:53:18 +3199 3199 3200 319.9 639.8000000000001 3199 1978-10-05 2024-10-11 00:53:19.000 1978-10-05 2024-10-11 00:53:19 +3200 3200 3201 320 640 3200 1978-10-06 2024-10-11 00:53:20.000 1978-10-06 2024-10-11 00:53:20 +3201 3201 3202 320.1 640.2 3201 1978-10-07 2024-10-11 00:53:21.000 1978-10-07 2024-10-11 00:53:21 +3202 3202 3203 320.2 640.4000000000001 3202 1978-10-08 2024-10-11 00:53:22.000 1978-10-08 2024-10-11 00:53:22 +3203 3203 3204 320.3 640.6 3203 1978-10-09 2024-10-11 00:53:23.000 1978-10-09 2024-10-11 00:53:23 +3204 3204 3205 320.4 640.8000000000001 3204 1978-10-10 2024-10-11 00:53:24.000 1978-10-10 2024-10-11 00:53:24 +3205 3205 3206 320.5 641 3205 1978-10-11 2024-10-11 00:53:25.000 1978-10-11 2024-10-11 00:53:25 +3206 3206 3207 320.6 641.2 3206 1978-10-12 2024-10-11 00:53:26.000 1978-10-12 2024-10-11 00:53:26 +3207 3207 3208 320.7 641.4000000000001 3207 1978-10-13 2024-10-11 00:53:27.000 1978-10-13 2024-10-11 00:53:27 +3208 3208 3209 320.8 641.6 3208 1978-10-14 2024-10-11 00:53:28.000 1978-10-14 2024-10-11 00:53:28 +3209 3209 3210 320.9 641.8000000000001 3209 1978-10-15 2024-10-11 00:53:29.000 1978-10-15 2024-10-11 00:53:29 +3210 3210 3211 321 642 3210 1978-10-16 2024-10-11 00:53:30.000 1978-10-16 2024-10-11 00:53:30 +3211 3211 3212 321.1 642.2 3211 1978-10-17 2024-10-11 00:53:31.000 1978-10-17 2024-10-11 00:53:31 +3212 3212 3213 321.2 642.4000000000001 3212 1978-10-18 2024-10-11 00:53:32.000 1978-10-18 2024-10-11 00:53:32 +3213 3213 3214 321.3 642.6 3213 1978-10-19 2024-10-11 00:53:33.000 1978-10-19 2024-10-11 00:53:33 +3214 3214 3215 321.4 642.8000000000001 3214 1978-10-20 2024-10-11 00:53:34.000 1978-10-20 2024-10-11 00:53:34 +3215 3215 3216 321.5 643 3215 1978-10-21 2024-10-11 00:53:35.000 1978-10-21 2024-10-11 00:53:35 +3216 3216 3217 321.6 643.2 3216 1978-10-22 2024-10-11 00:53:36.000 1978-10-22 2024-10-11 00:53:36 +3217 3217 3218 321.7 643.4000000000001 3217 1978-10-23 2024-10-11 00:53:37.000 1978-10-23 2024-10-11 00:53:37 +3218 3218 3219 321.8 643.6 3218 1978-10-24 2024-10-11 00:53:38.000 1978-10-24 2024-10-11 00:53:38 +3219 3219 3220 321.9 643.8000000000001 3219 1978-10-25 2024-10-11 00:53:39.000 1978-10-25 2024-10-11 00:53:39 +3220 3220 3221 322 644 3220 1978-10-26 2024-10-11 00:53:40.000 1978-10-26 2024-10-11 00:53:40 +3221 3221 3222 322.1 644.2 3221 1978-10-27 2024-10-11 00:53:41.000 1978-10-27 2024-10-11 00:53:41 +3222 3222 3223 322.2 644.4000000000001 3222 1978-10-28 2024-10-11 00:53:42.000 1978-10-28 2024-10-11 00:53:42 +3223 3223 3224 322.3 644.6 3223 1978-10-29 2024-10-11 00:53:43.000 1978-10-29 2024-10-11 00:53:43 +3224 3224 3225 322.4 644.8000000000001 3224 1978-10-30 2024-10-11 00:53:44.000 1978-10-30 2024-10-11 00:53:44 +3225 3225 3226 322.5 645 3225 1978-10-31 2024-10-11 00:53:45.000 1978-10-31 2024-10-11 00:53:45 +3226 3226 3227 322.6 645.2 3226 1978-11-01 2024-10-11 00:53:46.000 1978-11-01 2024-10-11 00:53:46 +3227 3227 3228 322.7 645.4000000000001 3227 1978-11-02 2024-10-11 00:53:47.000 1978-11-02 2024-10-11 00:53:47 +3228 3228 3229 322.8 645.6 3228 1978-11-03 2024-10-11 00:53:48.000 1978-11-03 2024-10-11 00:53:48 +3229 3229 3230 322.9 645.8000000000001 3229 1978-11-04 2024-10-11 00:53:49.000 1978-11-04 2024-10-11 00:53:49 +3230 3230 3231 323 646 3230 1978-11-05 2024-10-11 00:53:50.000 1978-11-05 2024-10-11 00:53:50 +3231 3231 3232 323.1 646.2 3231 1978-11-06 2024-10-11 00:53:51.000 1978-11-06 2024-10-11 00:53:51 +3232 3232 3233 323.2 646.4000000000001 3232 1978-11-07 2024-10-11 00:53:52.000 1978-11-07 2024-10-11 00:53:52 +3233 3233 3234 323.3 646.6 3233 1978-11-08 2024-10-11 00:53:53.000 1978-11-08 2024-10-11 00:53:53 +3234 3234 3235 323.4 646.8000000000001 3234 1978-11-09 2024-10-11 00:53:54.000 1978-11-09 2024-10-11 00:53:54 +3235 3235 3236 323.5 647 3235 1978-11-10 2024-10-11 00:53:55.000 1978-11-10 2024-10-11 00:53:55 +3236 3236 3237 323.6 647.2 3236 1978-11-11 2024-10-11 00:53:56.000 1978-11-11 2024-10-11 00:53:56 +3237 3237 3238 323.7 647.4000000000001 3237 1978-11-12 2024-10-11 00:53:57.000 1978-11-12 2024-10-11 00:53:57 +3238 3238 3239 323.8 647.6 3238 1978-11-13 2024-10-11 00:53:58.000 1978-11-13 2024-10-11 00:53:58 +3239 3239 3240 323.9 647.8000000000001 3239 1978-11-14 2024-10-11 00:53:59.000 1978-11-14 2024-10-11 00:53:59 +3240 3240 3241 324 648 3240 1978-11-15 2024-10-11 00:54:00.000 1978-11-15 2024-10-11 00:54:00 +3241 3241 3242 324.1 648.2 3241 1978-11-16 2024-10-11 00:54:01.000 1978-11-16 2024-10-11 00:54:01 +3242 3242 3243 324.2 648.4000000000001 3242 1978-11-17 2024-10-11 00:54:02.000 1978-11-17 2024-10-11 00:54:02 +3243 3243 3244 324.3 648.6 3243 1978-11-18 2024-10-11 00:54:03.000 1978-11-18 2024-10-11 00:54:03 +3244 3244 3245 324.4 648.8000000000001 3244 1978-11-19 2024-10-11 00:54:04.000 1978-11-19 2024-10-11 00:54:04 +3245 3245 3246 324.5 649 3245 1978-11-20 2024-10-11 00:54:05.000 1978-11-20 2024-10-11 00:54:05 +3246 3246 3247 324.6 649.2 3246 1978-11-21 2024-10-11 00:54:06.000 1978-11-21 2024-10-11 00:54:06 +3247 3247 3248 324.7 649.4000000000001 3247 1978-11-22 2024-10-11 00:54:07.000 1978-11-22 2024-10-11 00:54:07 +3248 3248 3249 324.8 649.6 3248 1978-11-23 2024-10-11 00:54:08.000 1978-11-23 2024-10-11 00:54:08 +3249 3249 3250 324.9 649.8000000000001 3249 1978-11-24 2024-10-11 00:54:09.000 1978-11-24 2024-10-11 00:54:09 +3250 3250 3251 325 650 3250 1978-11-25 2024-10-11 00:54:10.000 1978-11-25 2024-10-11 00:54:10 +3251 3251 3252 325.1 650.2 3251 1978-11-26 2024-10-11 00:54:11.000 1978-11-26 2024-10-11 00:54:11 +3252 3252 3253 325.2 650.4000000000001 3252 1978-11-27 2024-10-11 00:54:12.000 1978-11-27 2024-10-11 00:54:12 +3253 3253 3254 325.3 650.6 3253 1978-11-28 2024-10-11 00:54:13.000 1978-11-28 2024-10-11 00:54:13 +3254 3254 3255 325.4 650.8000000000001 3254 1978-11-29 2024-10-11 00:54:14.000 1978-11-29 2024-10-11 00:54:14 +3255 3255 3256 325.5 651 3255 1978-11-30 2024-10-11 00:54:15.000 1978-11-30 2024-10-11 00:54:15 +3256 3256 3257 325.6 651.2 3256 1978-12-01 2024-10-11 00:54:16.000 1978-12-01 2024-10-11 00:54:16 +3257 3257 3258 325.7 651.4000000000001 3257 1978-12-02 2024-10-11 00:54:17.000 1978-12-02 2024-10-11 00:54:17 +3258 3258 3259 325.8 651.6 3258 1978-12-03 2024-10-11 00:54:18.000 1978-12-03 2024-10-11 00:54:18 +3259 3259 3260 325.9 651.8000000000001 3259 1978-12-04 2024-10-11 00:54:19.000 1978-12-04 2024-10-11 00:54:19 +3260 3260 3261 326 652 3260 1978-12-05 2024-10-11 00:54:20.000 1978-12-05 2024-10-11 00:54:20 +3261 3261 3262 326.1 652.2 3261 1978-12-06 2024-10-11 00:54:21.000 1978-12-06 2024-10-11 00:54:21 +3262 3262 3263 326.2 652.4000000000001 3262 1978-12-07 2024-10-11 00:54:22.000 1978-12-07 2024-10-11 00:54:22 +3263 3263 3264 326.3 652.6 3263 1978-12-08 2024-10-11 00:54:23.000 1978-12-08 2024-10-11 00:54:23 +3264 3264 3265 326.4 652.8000000000001 3264 1978-12-09 2024-10-11 00:54:24.000 1978-12-09 2024-10-11 00:54:24 +3265 3265 3266 326.5 653 3265 1978-12-10 2024-10-11 00:54:25.000 1978-12-10 2024-10-11 00:54:25 +3266 3266 3267 326.6 653.2 3266 1978-12-11 2024-10-11 00:54:26.000 1978-12-11 2024-10-11 00:54:26 +3267 3267 3268 326.7 653.4000000000001 3267 1978-12-12 2024-10-11 00:54:27.000 1978-12-12 2024-10-11 00:54:27 +3268 3268 3269 326.8 653.6 3268 1978-12-13 2024-10-11 00:54:28.000 1978-12-13 2024-10-11 00:54:28 +3269 3269 3270 326.9 653.8000000000001 3269 1978-12-14 2024-10-11 00:54:29.000 1978-12-14 2024-10-11 00:54:29 +3270 3270 3271 327 654 3270 1978-12-15 2024-10-11 00:54:30.000 1978-12-15 2024-10-11 00:54:30 +3271 3271 3272 327.1 654.2 3271 1978-12-16 2024-10-11 00:54:31.000 1978-12-16 2024-10-11 00:54:31 +3272 3272 3273 327.2 654.4000000000001 3272 1978-12-17 2024-10-11 00:54:32.000 1978-12-17 2024-10-11 00:54:32 +3273 3273 3274 327.3 654.6 3273 1978-12-18 2024-10-11 00:54:33.000 1978-12-18 2024-10-11 00:54:33 +3274 3274 3275 327.4 654.8000000000001 3274 1978-12-19 2024-10-11 00:54:34.000 1978-12-19 2024-10-11 00:54:34 +3275 3275 3276 327.5 655 3275 1978-12-20 2024-10-11 00:54:35.000 1978-12-20 2024-10-11 00:54:35 +3276 3276 3277 327.6 655.2 3276 1978-12-21 2024-10-11 00:54:36.000 1978-12-21 2024-10-11 00:54:36 +3277 3277 3278 327.7 655.4000000000001 3277 1978-12-22 2024-10-11 00:54:37.000 1978-12-22 2024-10-11 00:54:37 +3278 3278 3279 327.8 655.6 3278 1978-12-23 2024-10-11 00:54:38.000 1978-12-23 2024-10-11 00:54:38 +3279 3279 3280 327.9 655.8000000000001 3279 1978-12-24 2024-10-11 00:54:39.000 1978-12-24 2024-10-11 00:54:39 +3280 3280 3281 328 656 3280 1978-12-25 2024-10-11 00:54:40.000 1978-12-25 2024-10-11 00:54:40 +3281 3281 3282 328.1 656.2 3281 1978-12-26 2024-10-11 00:54:41.000 1978-12-26 2024-10-11 00:54:41 +3282 3282 3283 328.2 656.4000000000001 3282 1978-12-27 2024-10-11 00:54:42.000 1978-12-27 2024-10-11 00:54:42 +3283 3283 3284 328.3 656.6 3283 1978-12-28 2024-10-11 00:54:43.000 1978-12-28 2024-10-11 00:54:43 +3284 3284 3285 328.4 656.8000000000001 3284 1978-12-29 2024-10-11 00:54:44.000 1978-12-29 2024-10-11 00:54:44 +3285 3285 3286 328.5 657 3285 1978-12-30 2024-10-11 00:54:45.000 1978-12-30 2024-10-11 00:54:45 +3286 3286 3287 328.6 657.2 3286 1978-12-31 2024-10-11 00:54:46.000 1978-12-31 2024-10-11 00:54:46 +3287 3287 3288 328.7 657.4000000000001 3287 1979-01-01 2024-10-11 00:54:47.000 1979-01-01 2024-10-11 00:54:47 +3288 3288 3289 328.8 657.6 3288 1979-01-02 2024-10-11 00:54:48.000 1979-01-02 2024-10-11 00:54:48 +3289 3289 3290 328.9 657.8000000000001 3289 1979-01-03 2024-10-11 00:54:49.000 1979-01-03 2024-10-11 00:54:49 +3290 3290 3291 329 658 3290 1979-01-04 2024-10-11 00:54:50.000 1979-01-04 2024-10-11 00:54:50 +3291 3291 3292 329.1 658.2 3291 1979-01-05 2024-10-11 00:54:51.000 1979-01-05 2024-10-11 00:54:51 +3292 3292 3293 329.2 658.4000000000001 3292 1979-01-06 2024-10-11 00:54:52.000 1979-01-06 2024-10-11 00:54:52 +3293 3293 3294 329.3 658.6 3293 1979-01-07 2024-10-11 00:54:53.000 1979-01-07 2024-10-11 00:54:53 +3294 3294 3295 329.4 658.8000000000001 3294 1979-01-08 2024-10-11 00:54:54.000 1979-01-08 2024-10-11 00:54:54 +3295 3295 3296 329.5 659 3295 1979-01-09 2024-10-11 00:54:55.000 1979-01-09 2024-10-11 00:54:55 +3296 3296 3297 329.6 659.2 3296 1979-01-10 2024-10-11 00:54:56.000 1979-01-10 2024-10-11 00:54:56 +3297 3297 3298 329.7 659.4000000000001 3297 1979-01-11 2024-10-11 00:54:57.000 1979-01-11 2024-10-11 00:54:57 +3298 3298 3299 329.8 659.6 3298 1979-01-12 2024-10-11 00:54:58.000 1979-01-12 2024-10-11 00:54:58 +3299 3299 3300 329.9 659.8000000000001 3299 1979-01-13 2024-10-11 00:54:59.000 1979-01-13 2024-10-11 00:54:59 +3300 3300 3301 330 660 3300 1979-01-14 2024-10-11 00:55:00.000 1979-01-14 2024-10-11 00:55:00 +3301 3301 3302 330.1 660.2 3301 1979-01-15 2024-10-11 00:55:01.000 1979-01-15 2024-10-11 00:55:01 +3302 3302 3303 330.2 660.4000000000001 3302 1979-01-16 2024-10-11 00:55:02.000 1979-01-16 2024-10-11 00:55:02 +3303 3303 3304 330.3 660.6 3303 1979-01-17 2024-10-11 00:55:03.000 1979-01-17 2024-10-11 00:55:03 +3304 3304 3305 330.4 660.8000000000001 3304 1979-01-18 2024-10-11 00:55:04.000 1979-01-18 2024-10-11 00:55:04 +3305 3305 3306 330.5 661 3305 1979-01-19 2024-10-11 00:55:05.000 1979-01-19 2024-10-11 00:55:05 +3306 3306 3307 330.6 661.2 3306 1979-01-20 2024-10-11 00:55:06.000 1979-01-20 2024-10-11 00:55:06 +3307 3307 3308 330.7 661.4000000000001 3307 1979-01-21 2024-10-11 00:55:07.000 1979-01-21 2024-10-11 00:55:07 +3308 3308 3309 330.8 661.6 3308 1979-01-22 2024-10-11 00:55:08.000 1979-01-22 2024-10-11 00:55:08 +3309 3309 3310 330.9 661.8000000000001 3309 1979-01-23 2024-10-11 00:55:09.000 1979-01-23 2024-10-11 00:55:09 +3310 3310 3311 331 662 3310 1979-01-24 2024-10-11 00:55:10.000 1979-01-24 2024-10-11 00:55:10 +3311 3311 3312 331.1 662.2 3311 1979-01-25 2024-10-11 00:55:11.000 1979-01-25 2024-10-11 00:55:11 +3312 3312 3313 331.2 662.4000000000001 3312 1979-01-26 2024-10-11 00:55:12.000 1979-01-26 2024-10-11 00:55:12 +3313 3313 3314 331.3 662.6 3313 1979-01-27 2024-10-11 00:55:13.000 1979-01-27 2024-10-11 00:55:13 +3314 3314 3315 331.4 662.8000000000001 3314 1979-01-28 2024-10-11 00:55:14.000 1979-01-28 2024-10-11 00:55:14 +3315 3315 3316 331.5 663 3315 1979-01-29 2024-10-11 00:55:15.000 1979-01-29 2024-10-11 00:55:15 +3316 3316 3317 331.6 663.2 3316 1979-01-30 2024-10-11 00:55:16.000 1979-01-30 2024-10-11 00:55:16 +3317 3317 3318 331.7 663.4000000000001 3317 1979-01-31 2024-10-11 00:55:17.000 1979-01-31 2024-10-11 00:55:17 +3318 3318 3319 331.8 663.6 3318 1979-02-01 2024-10-11 00:55:18.000 1979-02-01 2024-10-11 00:55:18 +3319 3319 3320 331.9 663.8000000000001 3319 1979-02-02 2024-10-11 00:55:19.000 1979-02-02 2024-10-11 00:55:19 +3320 3320 3321 332 664 3320 1979-02-03 2024-10-11 00:55:20.000 1979-02-03 2024-10-11 00:55:20 +3321 3321 3322 332.1 664.2 3321 1979-02-04 2024-10-11 00:55:21.000 1979-02-04 2024-10-11 00:55:21 +3322 3322 3323 332.2 664.4000000000001 3322 1979-02-05 2024-10-11 00:55:22.000 1979-02-05 2024-10-11 00:55:22 +3323 3323 3324 332.3 664.6 3323 1979-02-06 2024-10-11 00:55:23.000 1979-02-06 2024-10-11 00:55:23 +3324 3324 3325 332.4 664.8000000000001 3324 1979-02-07 2024-10-11 00:55:24.000 1979-02-07 2024-10-11 00:55:24 +3325 3325 3326 332.5 665 3325 1979-02-08 2024-10-11 00:55:25.000 1979-02-08 2024-10-11 00:55:25 +3326 3326 3327 332.6 665.2 3326 1979-02-09 2024-10-11 00:55:26.000 1979-02-09 2024-10-11 00:55:26 +3327 3327 3328 332.7 665.4000000000001 3327 1979-02-10 2024-10-11 00:55:27.000 1979-02-10 2024-10-11 00:55:27 +3328 3328 3329 332.8 665.6 3328 1979-02-11 2024-10-11 00:55:28.000 1979-02-11 2024-10-11 00:55:28 +3329 3329 3330 332.9 665.8000000000001 3329 1979-02-12 2024-10-11 00:55:29.000 1979-02-12 2024-10-11 00:55:29 +3330 3330 3331 333 666 3330 1979-02-13 2024-10-11 00:55:30.000 1979-02-13 2024-10-11 00:55:30 +3331 3331 3332 333.1 666.2 3331 1979-02-14 2024-10-11 00:55:31.000 1979-02-14 2024-10-11 00:55:31 +3332 3332 3333 333.2 666.4000000000001 3332 1979-02-15 2024-10-11 00:55:32.000 1979-02-15 2024-10-11 00:55:32 +3333 3333 3334 333.3 666.6 3333 1979-02-16 2024-10-11 00:55:33.000 1979-02-16 2024-10-11 00:55:33 +3334 3334 3335 333.4 666.8000000000001 3334 1979-02-17 2024-10-11 00:55:34.000 1979-02-17 2024-10-11 00:55:34 +3335 3335 3336 333.5 667 3335 1979-02-18 2024-10-11 00:55:35.000 1979-02-18 2024-10-11 00:55:35 +3336 3336 3337 333.6 667.2 3336 1979-02-19 2024-10-11 00:55:36.000 1979-02-19 2024-10-11 00:55:36 +3337 3337 3338 333.7 667.4000000000001 3337 1979-02-20 2024-10-11 00:55:37.000 1979-02-20 2024-10-11 00:55:37 +3338 3338 3339 333.8 667.6 3338 1979-02-21 2024-10-11 00:55:38.000 1979-02-21 2024-10-11 00:55:38 +3339 3339 3340 333.9 667.8000000000001 3339 1979-02-22 2024-10-11 00:55:39.000 1979-02-22 2024-10-11 00:55:39 +3340 3340 3341 334 668 3340 1979-02-23 2024-10-11 00:55:40.000 1979-02-23 2024-10-11 00:55:40 +3341 3341 3342 334.1 668.2 3341 1979-02-24 2024-10-11 00:55:41.000 1979-02-24 2024-10-11 00:55:41 +3342 3342 3343 334.2 668.4000000000001 3342 1979-02-25 2024-10-11 00:55:42.000 1979-02-25 2024-10-11 00:55:42 +3343 3343 3344 334.3 668.6 3343 1979-02-26 2024-10-11 00:55:43.000 1979-02-26 2024-10-11 00:55:43 +3344 3344 3345 334.4 668.8000000000001 3344 1979-02-27 2024-10-11 00:55:44.000 1979-02-27 2024-10-11 00:55:44 +3345 3345 3346 334.5 669 3345 1979-02-28 2024-10-11 00:55:45.000 1979-02-28 2024-10-11 00:55:45 +3346 3346 3347 334.6 669.2 3346 1979-03-01 2024-10-11 00:55:46.000 1979-03-01 2024-10-11 00:55:46 +3347 3347 3348 334.7 669.4000000000001 3347 1979-03-02 2024-10-11 00:55:47.000 1979-03-02 2024-10-11 00:55:47 +3348 3348 3349 334.8 669.6 3348 1979-03-03 2024-10-11 00:55:48.000 1979-03-03 2024-10-11 00:55:48 +3349 3349 3350 334.9 669.8000000000001 3349 1979-03-04 2024-10-11 00:55:49.000 1979-03-04 2024-10-11 00:55:49 +3350 3350 3351 335 670 3350 1979-03-05 2024-10-11 00:55:50.000 1979-03-05 2024-10-11 00:55:50 +3351 3351 3352 335.1 670.2 3351 1979-03-06 2024-10-11 00:55:51.000 1979-03-06 2024-10-11 00:55:51 +3352 3352 3353 335.2 670.4000000000001 3352 1979-03-07 2024-10-11 00:55:52.000 1979-03-07 2024-10-11 00:55:52 +3353 3353 3354 335.3 670.6 3353 1979-03-08 2024-10-11 00:55:53.000 1979-03-08 2024-10-11 00:55:53 +3354 3354 3355 335.4 670.8000000000001 3354 1979-03-09 2024-10-11 00:55:54.000 1979-03-09 2024-10-11 00:55:54 +3355 3355 3356 335.5 671 3355 1979-03-10 2024-10-11 00:55:55.000 1979-03-10 2024-10-11 00:55:55 +3356 3356 3357 335.6 671.2 3356 1979-03-11 2024-10-11 00:55:56.000 1979-03-11 2024-10-11 00:55:56 +3357 3357 3358 335.7 671.4000000000001 3357 1979-03-12 2024-10-11 00:55:57.000 1979-03-12 2024-10-11 00:55:57 +3358 3358 3359 335.8 671.6 3358 1979-03-13 2024-10-11 00:55:58.000 1979-03-13 2024-10-11 00:55:58 +3359 3359 3360 335.9 671.8000000000001 3359 1979-03-14 2024-10-11 00:55:59.000 1979-03-14 2024-10-11 00:55:59 +3360 3360 3361 336 672 3360 1979-03-15 2024-10-11 00:56:00.000 1979-03-15 2024-10-11 00:56:00 +3361 3361 3362 336.1 672.2 3361 1979-03-16 2024-10-11 00:56:01.000 1979-03-16 2024-10-11 00:56:01 +3362 3362 3363 336.2 672.4000000000001 3362 1979-03-17 2024-10-11 00:56:02.000 1979-03-17 2024-10-11 00:56:02 +3363 3363 3364 336.3 672.6 3363 1979-03-18 2024-10-11 00:56:03.000 1979-03-18 2024-10-11 00:56:03 +3364 3364 3365 336.4 672.8000000000001 3364 1979-03-19 2024-10-11 00:56:04.000 1979-03-19 2024-10-11 00:56:04 +3365 3365 3366 336.5 673 3365 1979-03-20 2024-10-11 00:56:05.000 1979-03-20 2024-10-11 00:56:05 +3366 3366 3367 336.6 673.2 3366 1979-03-21 2024-10-11 00:56:06.000 1979-03-21 2024-10-11 00:56:06 +3367 3367 3368 336.7 673.4000000000001 3367 1979-03-22 2024-10-11 00:56:07.000 1979-03-22 2024-10-11 00:56:07 +3368 3368 3369 336.8 673.6 3368 1979-03-23 2024-10-11 00:56:08.000 1979-03-23 2024-10-11 00:56:08 +3369 3369 3370 336.9 673.8000000000001 3369 1979-03-24 2024-10-11 00:56:09.000 1979-03-24 2024-10-11 00:56:09 +3370 3370 3371 337 674 3370 1979-03-25 2024-10-11 00:56:10.000 1979-03-25 2024-10-11 00:56:10 +3371 3371 3372 337.1 674.2 3371 1979-03-26 2024-10-11 00:56:11.000 1979-03-26 2024-10-11 00:56:11 +3372 3372 3373 337.2 674.4000000000001 3372 1979-03-27 2024-10-11 00:56:12.000 1979-03-27 2024-10-11 00:56:12 +3373 3373 3374 337.3 674.6 3373 1979-03-28 2024-10-11 00:56:13.000 1979-03-28 2024-10-11 00:56:13 +3374 3374 3375 337.4 674.8000000000001 3374 1979-03-29 2024-10-11 00:56:14.000 1979-03-29 2024-10-11 00:56:14 +3375 3375 3376 337.5 675 3375 1979-03-30 2024-10-11 00:56:15.000 1979-03-30 2024-10-11 00:56:15 +3376 3376 3377 337.6 675.2 3376 1979-03-31 2024-10-11 00:56:16.000 1979-03-31 2024-10-11 00:56:16 +3377 3377 3378 337.7 675.4000000000001 3377 1979-04-01 2024-10-11 00:56:17.000 1979-04-01 2024-10-11 00:56:17 +3378 3378 3379 337.8 675.6 3378 1979-04-02 2024-10-11 00:56:18.000 1979-04-02 2024-10-11 00:56:18 +3379 3379 3380 337.9 675.8000000000001 3379 1979-04-03 2024-10-11 00:56:19.000 1979-04-03 2024-10-11 00:56:19 +3380 3380 3381 338 676 3380 1979-04-04 2024-10-11 00:56:20.000 1979-04-04 2024-10-11 00:56:20 +3381 3381 3382 338.1 676.2 3381 1979-04-05 2024-10-11 00:56:21.000 1979-04-05 2024-10-11 00:56:21 +3382 3382 3383 338.2 676.4000000000001 3382 1979-04-06 2024-10-11 00:56:22.000 1979-04-06 2024-10-11 00:56:22 +3383 3383 3384 338.3 676.6 3383 1979-04-07 2024-10-11 00:56:23.000 1979-04-07 2024-10-11 00:56:23 +3384 3384 3385 338.4 676.8000000000001 3384 1979-04-08 2024-10-11 00:56:24.000 1979-04-08 2024-10-11 00:56:24 +3385 3385 3386 338.5 677 3385 1979-04-09 2024-10-11 00:56:25.000 1979-04-09 2024-10-11 00:56:25 +3386 3386 3387 338.6 677.2 3386 1979-04-10 2024-10-11 00:56:26.000 1979-04-10 2024-10-11 00:56:26 +3387 3387 3388 338.7 677.4000000000001 3387 1979-04-11 2024-10-11 00:56:27.000 1979-04-11 2024-10-11 00:56:27 +3388 3388 3389 338.8 677.6 3388 1979-04-12 2024-10-11 00:56:28.000 1979-04-12 2024-10-11 00:56:28 +3389 3389 3390 338.9 677.8000000000001 3389 1979-04-13 2024-10-11 00:56:29.000 1979-04-13 2024-10-11 00:56:29 +3390 3390 3391 339 678 3390 1979-04-14 2024-10-11 00:56:30.000 1979-04-14 2024-10-11 00:56:30 +3391 3391 3392 339.1 678.2 3391 1979-04-15 2024-10-11 00:56:31.000 1979-04-15 2024-10-11 00:56:31 +3392 3392 3393 339.2 678.4000000000001 3392 1979-04-16 2024-10-11 00:56:32.000 1979-04-16 2024-10-11 00:56:32 +3393 3393 3394 339.3 678.6 3393 1979-04-17 2024-10-11 00:56:33.000 1979-04-17 2024-10-11 00:56:33 +3394 3394 3395 339.4 678.8000000000001 3394 1979-04-18 2024-10-11 00:56:34.000 1979-04-18 2024-10-11 00:56:34 +3395 3395 3396 339.5 679 3395 1979-04-19 2024-10-11 00:56:35.000 1979-04-19 2024-10-11 00:56:35 +3396 3396 3397 339.6 679.2 3396 1979-04-20 2024-10-11 00:56:36.000 1979-04-20 2024-10-11 00:56:36 +3397 3397 3398 339.7 679.4000000000001 3397 1979-04-21 2024-10-11 00:56:37.000 1979-04-21 2024-10-11 00:56:37 +3398 3398 3399 339.8 679.6 3398 1979-04-22 2024-10-11 00:56:38.000 1979-04-22 2024-10-11 00:56:38 +3399 3399 3400 339.9 679.8000000000001 3399 1979-04-23 2024-10-11 00:56:39.000 1979-04-23 2024-10-11 00:56:39 +3400 3400 3401 340 680 3400 1979-04-24 2024-10-11 00:56:40.000 1979-04-24 2024-10-11 00:56:40 +3401 3401 3402 340.1 680.2 3401 1979-04-25 2024-10-11 00:56:41.000 1979-04-25 2024-10-11 00:56:41 +3402 3402 3403 340.2 680.4000000000001 3402 1979-04-26 2024-10-11 00:56:42.000 1979-04-26 2024-10-11 00:56:42 +3403 3403 3404 340.3 680.6 3403 1979-04-27 2024-10-11 00:56:43.000 1979-04-27 2024-10-11 00:56:43 +3404 3404 3405 340.4 680.8000000000001 3404 1979-04-28 2024-10-11 00:56:44.000 1979-04-28 2024-10-11 00:56:44 +3405 3405 3406 340.5 681 3405 1979-04-29 2024-10-11 00:56:45.000 1979-04-29 2024-10-11 00:56:45 +3406 3406 3407 340.6 681.2 3406 1979-04-30 2024-10-11 00:56:46.000 1979-04-30 2024-10-11 00:56:46 +3407 3407 3408 340.7 681.4000000000001 3407 1979-05-01 2024-10-11 00:56:47.000 1979-05-01 2024-10-11 00:56:47 +3408 3408 3409 340.8 681.6 3408 1979-05-02 2024-10-11 00:56:48.000 1979-05-02 2024-10-11 00:56:48 +3409 3409 3410 340.9 681.8000000000001 3409 1979-05-03 2024-10-11 00:56:49.000 1979-05-03 2024-10-11 00:56:49 +3410 3410 3411 341 682 3410 1979-05-04 2024-10-11 00:56:50.000 1979-05-04 2024-10-11 00:56:50 +3411 3411 3412 341.1 682.2 3411 1979-05-05 2024-10-11 00:56:51.000 1979-05-05 2024-10-11 00:56:51 +3412 3412 3413 341.2 682.4000000000001 3412 1979-05-06 2024-10-11 00:56:52.000 1979-05-06 2024-10-11 00:56:52 +3413 3413 3414 341.3 682.6 3413 1979-05-07 2024-10-11 00:56:53.000 1979-05-07 2024-10-11 00:56:53 +3414 3414 3415 341.4 682.8000000000001 3414 1979-05-08 2024-10-11 00:56:54.000 1979-05-08 2024-10-11 00:56:54 +3415 3415 3416 341.5 683 3415 1979-05-09 2024-10-11 00:56:55.000 1979-05-09 2024-10-11 00:56:55 +3416 3416 3417 341.6 683.2 3416 1979-05-10 2024-10-11 00:56:56.000 1979-05-10 2024-10-11 00:56:56 +3417 3417 3418 341.7 683.4000000000001 3417 1979-05-11 2024-10-11 00:56:57.000 1979-05-11 2024-10-11 00:56:57 +3418 3418 3419 341.8 683.6 3418 1979-05-12 2024-10-11 00:56:58.000 1979-05-12 2024-10-11 00:56:58 +3419 3419 3420 341.9 683.8000000000001 3419 1979-05-13 2024-10-11 00:56:59.000 1979-05-13 2024-10-11 00:56:59 +3420 3420 3421 342 684 3420 1979-05-14 2024-10-11 00:57:00.000 1979-05-14 2024-10-11 00:57:00 +3421 3421 3422 342.1 684.2 3421 1979-05-15 2024-10-11 00:57:01.000 1979-05-15 2024-10-11 00:57:01 +3422 3422 3423 342.2 684.4000000000001 3422 1979-05-16 2024-10-11 00:57:02.000 1979-05-16 2024-10-11 00:57:02 +3423 3423 3424 342.3 684.6 3423 1979-05-17 2024-10-11 00:57:03.000 1979-05-17 2024-10-11 00:57:03 +3424 3424 3425 342.4 684.8000000000001 3424 1979-05-18 2024-10-11 00:57:04.000 1979-05-18 2024-10-11 00:57:04 +3425 3425 3426 342.5 685 3425 1979-05-19 2024-10-11 00:57:05.000 1979-05-19 2024-10-11 00:57:05 +3426 3426 3427 342.6 685.2 3426 1979-05-20 2024-10-11 00:57:06.000 1979-05-20 2024-10-11 00:57:06 +3427 3427 3428 342.7 685.4000000000001 3427 1979-05-21 2024-10-11 00:57:07.000 1979-05-21 2024-10-11 00:57:07 +3428 3428 3429 342.8 685.6 3428 1979-05-22 2024-10-11 00:57:08.000 1979-05-22 2024-10-11 00:57:08 +3429 3429 3430 342.9 685.8000000000001 3429 1979-05-23 2024-10-11 00:57:09.000 1979-05-23 2024-10-11 00:57:09 +3430 3430 3431 343 686 3430 1979-05-24 2024-10-11 00:57:10.000 1979-05-24 2024-10-11 00:57:10 +3431 3431 3432 343.1 686.2 3431 1979-05-25 2024-10-11 00:57:11.000 1979-05-25 2024-10-11 00:57:11 +3432 3432 3433 343.2 686.4000000000001 3432 1979-05-26 2024-10-11 00:57:12.000 1979-05-26 2024-10-11 00:57:12 +3433 3433 3434 343.3 686.6 3433 1979-05-27 2024-10-11 00:57:13.000 1979-05-27 2024-10-11 00:57:13 +3434 3434 3435 343.4 686.8000000000001 3434 1979-05-28 2024-10-11 00:57:14.000 1979-05-28 2024-10-11 00:57:14 +3435 3435 3436 343.5 687 3435 1979-05-29 2024-10-11 00:57:15.000 1979-05-29 2024-10-11 00:57:15 +3436 3436 3437 343.6 687.2 3436 1979-05-30 2024-10-11 00:57:16.000 1979-05-30 2024-10-11 00:57:16 +3437 3437 3438 343.7 687.4000000000001 3437 1979-05-31 2024-10-11 00:57:17.000 1979-05-31 2024-10-11 00:57:17 +3438 3438 3439 343.8 687.6 3438 1979-06-01 2024-10-11 00:57:18.000 1979-06-01 2024-10-11 00:57:18 +3439 3439 3440 343.9 687.8000000000001 3439 1979-06-02 2024-10-11 00:57:19.000 1979-06-02 2024-10-11 00:57:19 +3440 3440 3441 344 688 3440 1979-06-03 2024-10-11 00:57:20.000 1979-06-03 2024-10-11 00:57:20 +3441 3441 3442 344.1 688.2 3441 1979-06-04 2024-10-11 00:57:21.000 1979-06-04 2024-10-11 00:57:21 +3442 3442 3443 344.2 688.4000000000001 3442 1979-06-05 2024-10-11 00:57:22.000 1979-06-05 2024-10-11 00:57:22 +3443 3443 3444 344.3 688.6 3443 1979-06-06 2024-10-11 00:57:23.000 1979-06-06 2024-10-11 00:57:23 +3444 3444 3445 344.4 688.8000000000001 3444 1979-06-07 2024-10-11 00:57:24.000 1979-06-07 2024-10-11 00:57:24 +3445 3445 3446 344.5 689 3445 1979-06-08 2024-10-11 00:57:25.000 1979-06-08 2024-10-11 00:57:25 +3446 3446 3447 344.6 689.2 3446 1979-06-09 2024-10-11 00:57:26.000 1979-06-09 2024-10-11 00:57:26 +3447 3447 3448 344.7 689.4000000000001 3447 1979-06-10 2024-10-11 00:57:27.000 1979-06-10 2024-10-11 00:57:27 +3448 3448 3449 344.8 689.6 3448 1979-06-11 2024-10-11 00:57:28.000 1979-06-11 2024-10-11 00:57:28 +3449 3449 3450 344.9 689.8000000000001 3449 1979-06-12 2024-10-11 00:57:29.000 1979-06-12 2024-10-11 00:57:29 +3450 3450 3451 345 690 3450 1979-06-13 2024-10-11 00:57:30.000 1979-06-13 2024-10-11 00:57:30 +3451 3451 3452 345.1 690.2 3451 1979-06-14 2024-10-11 00:57:31.000 1979-06-14 2024-10-11 00:57:31 +3452 3452 3453 345.2 690.4000000000001 3452 1979-06-15 2024-10-11 00:57:32.000 1979-06-15 2024-10-11 00:57:32 +3453 3453 3454 345.3 690.6 3453 1979-06-16 2024-10-11 00:57:33.000 1979-06-16 2024-10-11 00:57:33 +3454 3454 3455 345.4 690.8000000000001 3454 1979-06-17 2024-10-11 00:57:34.000 1979-06-17 2024-10-11 00:57:34 +3455 3455 3456 345.5 691 3455 1979-06-18 2024-10-11 00:57:35.000 1979-06-18 2024-10-11 00:57:35 +3456 3456 3457 345.6 691.2 3456 1979-06-19 2024-10-11 00:57:36.000 1979-06-19 2024-10-11 00:57:36 +3457 3457 3458 345.7 691.4000000000001 3457 1979-06-20 2024-10-11 00:57:37.000 1979-06-20 2024-10-11 00:57:37 +3458 3458 3459 345.8 691.6 3458 1979-06-21 2024-10-11 00:57:38.000 1979-06-21 2024-10-11 00:57:38 +3459 3459 3460 345.9 691.8000000000001 3459 1979-06-22 2024-10-11 00:57:39.000 1979-06-22 2024-10-11 00:57:39 +3460 3460 3461 346 692 3460 1979-06-23 2024-10-11 00:57:40.000 1979-06-23 2024-10-11 00:57:40 +3461 3461 3462 346.1 692.2 3461 1979-06-24 2024-10-11 00:57:41.000 1979-06-24 2024-10-11 00:57:41 +3462 3462 3463 346.2 692.4000000000001 3462 1979-06-25 2024-10-11 00:57:42.000 1979-06-25 2024-10-11 00:57:42 +3463 3463 3464 346.3 692.6 3463 1979-06-26 2024-10-11 00:57:43.000 1979-06-26 2024-10-11 00:57:43 +3464 3464 3465 346.4 692.8000000000001 3464 1979-06-27 2024-10-11 00:57:44.000 1979-06-27 2024-10-11 00:57:44 +3465 3465 3466 346.5 693 3465 1979-06-28 2024-10-11 00:57:45.000 1979-06-28 2024-10-11 00:57:45 +3466 3466 3467 346.6 693.2 3466 1979-06-29 2024-10-11 00:57:46.000 1979-06-29 2024-10-11 00:57:46 +3467 3467 3468 346.7 693.4000000000001 3467 1979-06-30 2024-10-11 00:57:47.000 1979-06-30 2024-10-11 00:57:47 +3468 3468 3469 346.8 693.6 3468 1979-07-01 2024-10-11 00:57:48.000 1979-07-01 2024-10-11 00:57:48 +3469 3469 3470 346.9 693.8000000000001 3469 1979-07-02 2024-10-11 00:57:49.000 1979-07-02 2024-10-11 00:57:49 +3470 3470 3471 347 694 3470 1979-07-03 2024-10-11 00:57:50.000 1979-07-03 2024-10-11 00:57:50 +3471 3471 3472 347.1 694.2 3471 1979-07-04 2024-10-11 00:57:51.000 1979-07-04 2024-10-11 00:57:51 +3472 3472 3473 347.2 694.4000000000001 3472 1979-07-05 2024-10-11 00:57:52.000 1979-07-05 2024-10-11 00:57:52 +3473 3473 3474 347.3 694.6 3473 1979-07-06 2024-10-11 00:57:53.000 1979-07-06 2024-10-11 00:57:53 +3474 3474 3475 347.4 694.8000000000001 3474 1979-07-07 2024-10-11 00:57:54.000 1979-07-07 2024-10-11 00:57:54 +3475 3475 3476 347.5 695 3475 1979-07-08 2024-10-11 00:57:55.000 1979-07-08 2024-10-11 00:57:55 +3476 3476 3477 347.6 695.2 3476 1979-07-09 2024-10-11 00:57:56.000 1979-07-09 2024-10-11 00:57:56 +3477 3477 3478 347.7 695.4000000000001 3477 1979-07-10 2024-10-11 00:57:57.000 1979-07-10 2024-10-11 00:57:57 +3478 3478 3479 347.8 695.6 3478 1979-07-11 2024-10-11 00:57:58.000 1979-07-11 2024-10-11 00:57:58 +3479 3479 3480 347.9 695.8000000000001 3479 1979-07-12 2024-10-11 00:57:59.000 1979-07-12 2024-10-11 00:57:59 +3480 3480 3481 348 696 3480 1979-07-13 2024-10-11 00:58:00.000 1979-07-13 2024-10-11 00:58:00 +3481 3481 3482 348.1 696.2 3481 1979-07-14 2024-10-11 00:58:01.000 1979-07-14 2024-10-11 00:58:01 +3482 3482 3483 348.2 696.4000000000001 3482 1979-07-15 2024-10-11 00:58:02.000 1979-07-15 2024-10-11 00:58:02 +3483 3483 3484 348.3 696.6 3483 1979-07-16 2024-10-11 00:58:03.000 1979-07-16 2024-10-11 00:58:03 +3484 3484 3485 348.4 696.8000000000001 3484 1979-07-17 2024-10-11 00:58:04.000 1979-07-17 2024-10-11 00:58:04 +3485 3485 3486 348.5 697 3485 1979-07-18 2024-10-11 00:58:05.000 1979-07-18 2024-10-11 00:58:05 +3486 3486 3487 348.6 697.2 3486 1979-07-19 2024-10-11 00:58:06.000 1979-07-19 2024-10-11 00:58:06 +3487 3487 3488 348.7 697.4000000000001 3487 1979-07-20 2024-10-11 00:58:07.000 1979-07-20 2024-10-11 00:58:07 +3488 3488 3489 348.8 697.6 3488 1979-07-21 2024-10-11 00:58:08.000 1979-07-21 2024-10-11 00:58:08 +3489 3489 3490 348.9 697.8000000000001 3489 1979-07-22 2024-10-11 00:58:09.000 1979-07-22 2024-10-11 00:58:09 +3490 3490 3491 349 698 3490 1979-07-23 2024-10-11 00:58:10.000 1979-07-23 2024-10-11 00:58:10 +3491 3491 3492 349.1 698.2 3491 1979-07-24 2024-10-11 00:58:11.000 1979-07-24 2024-10-11 00:58:11 +3492 3492 3493 349.2 698.4000000000001 3492 1979-07-25 2024-10-11 00:58:12.000 1979-07-25 2024-10-11 00:58:12 +3493 3493 3494 349.3 698.6 3493 1979-07-26 2024-10-11 00:58:13.000 1979-07-26 2024-10-11 00:58:13 +3494 3494 3495 349.4 698.8000000000001 3494 1979-07-27 2024-10-11 00:58:14.000 1979-07-27 2024-10-11 00:58:14 +3495 3495 3496 349.5 699 3495 1979-07-28 2024-10-11 00:58:15.000 1979-07-28 2024-10-11 00:58:15 +3496 3496 3497 349.6 699.2 3496 1979-07-29 2024-10-11 00:58:16.000 1979-07-29 2024-10-11 00:58:16 +3497 3497 3498 349.7 699.4000000000001 3497 1979-07-30 2024-10-11 00:58:17.000 1979-07-30 2024-10-11 00:58:17 +3498 3498 3499 349.8 699.6 3498 1979-07-31 2024-10-11 00:58:18.000 1979-07-31 2024-10-11 00:58:18 +3499 3499 3500 349.9 699.8000000000001 3499 1979-08-01 2024-10-11 00:58:19.000 1979-08-01 2024-10-11 00:58:19 +3500 3500 3501 350 700 3500 1979-08-02 2024-10-11 00:58:20.000 1979-08-02 2024-10-11 00:58:20 +3501 3501 3502 350.1 700.2 3501 1979-08-03 2024-10-11 00:58:21.000 1979-08-03 2024-10-11 00:58:21 +3502 3502 3503 350.2 700.4000000000001 3502 1979-08-04 2024-10-11 00:58:22.000 1979-08-04 2024-10-11 00:58:22 +3503 3503 3504 350.3 700.6 3503 1979-08-05 2024-10-11 00:58:23.000 1979-08-05 2024-10-11 00:58:23 +3504 3504 3505 350.4 700.8000000000001 3504 1979-08-06 2024-10-11 00:58:24.000 1979-08-06 2024-10-11 00:58:24 +3505 3505 3506 350.5 701 3505 1979-08-07 2024-10-11 00:58:25.000 1979-08-07 2024-10-11 00:58:25 +3506 3506 3507 350.6 701.2 3506 1979-08-08 2024-10-11 00:58:26.000 1979-08-08 2024-10-11 00:58:26 +3507 3507 3508 350.7 701.4000000000001 3507 1979-08-09 2024-10-11 00:58:27.000 1979-08-09 2024-10-11 00:58:27 +3508 3508 3509 350.8 701.6 3508 1979-08-10 2024-10-11 00:58:28.000 1979-08-10 2024-10-11 00:58:28 +3509 3509 3510 350.9 701.8000000000001 3509 1979-08-11 2024-10-11 00:58:29.000 1979-08-11 2024-10-11 00:58:29 +3510 3510 3511 351 702 3510 1979-08-12 2024-10-11 00:58:30.000 1979-08-12 2024-10-11 00:58:30 +3511 3511 3512 351.1 702.2 3511 1979-08-13 2024-10-11 00:58:31.000 1979-08-13 2024-10-11 00:58:31 +3512 3512 3513 351.2 702.4000000000001 3512 1979-08-14 2024-10-11 00:58:32.000 1979-08-14 2024-10-11 00:58:32 +3513 3513 3514 351.3 702.6 3513 1979-08-15 2024-10-11 00:58:33.000 1979-08-15 2024-10-11 00:58:33 +3514 3514 3515 351.4 702.8000000000001 3514 1979-08-16 2024-10-11 00:58:34.000 1979-08-16 2024-10-11 00:58:34 +3515 3515 3516 351.5 703 3515 1979-08-17 2024-10-11 00:58:35.000 1979-08-17 2024-10-11 00:58:35 +3516 3516 3517 351.6 703.2 3516 1979-08-18 2024-10-11 00:58:36.000 1979-08-18 2024-10-11 00:58:36 +3517 3517 3518 351.7 703.4000000000001 3517 1979-08-19 2024-10-11 00:58:37.000 1979-08-19 2024-10-11 00:58:37 +3518 3518 3519 351.8 703.6 3518 1979-08-20 2024-10-11 00:58:38.000 1979-08-20 2024-10-11 00:58:38 +3519 3519 3520 351.9 703.8000000000001 3519 1979-08-21 2024-10-11 00:58:39.000 1979-08-21 2024-10-11 00:58:39 +3520 3520 3521 352 704 3520 1979-08-22 2024-10-11 00:58:40.000 1979-08-22 2024-10-11 00:58:40 +3521 3521 3522 352.1 704.2 3521 1979-08-23 2024-10-11 00:58:41.000 1979-08-23 2024-10-11 00:58:41 +3522 3522 3523 352.2 704.4000000000001 3522 1979-08-24 2024-10-11 00:58:42.000 1979-08-24 2024-10-11 00:58:42 +3523 3523 3524 352.3 704.6 3523 1979-08-25 2024-10-11 00:58:43.000 1979-08-25 2024-10-11 00:58:43 +3524 3524 3525 352.4 704.8000000000001 3524 1979-08-26 2024-10-11 00:58:44.000 1979-08-26 2024-10-11 00:58:44 +3525 3525 3526 352.5 705 3525 1979-08-27 2024-10-11 00:58:45.000 1979-08-27 2024-10-11 00:58:45 +3526 3526 3527 352.6 705.2 3526 1979-08-28 2024-10-11 00:58:46.000 1979-08-28 2024-10-11 00:58:46 +3527 3527 3528 352.7 705.4000000000001 3527 1979-08-29 2024-10-11 00:58:47.000 1979-08-29 2024-10-11 00:58:47 +3528 3528 3529 352.8 705.6 3528 1979-08-30 2024-10-11 00:58:48.000 1979-08-30 2024-10-11 00:58:48 +3529 3529 3530 352.9 705.8000000000001 3529 1979-08-31 2024-10-11 00:58:49.000 1979-08-31 2024-10-11 00:58:49 +3530 3530 3531 353 706 3530 1979-09-01 2024-10-11 00:58:50.000 1979-09-01 2024-10-11 00:58:50 +3531 3531 3532 353.1 706.2 3531 1979-09-02 2024-10-11 00:58:51.000 1979-09-02 2024-10-11 00:58:51 +3532 3532 3533 353.2 706.4000000000001 3532 1979-09-03 2024-10-11 00:58:52.000 1979-09-03 2024-10-11 00:58:52 +3533 3533 3534 353.3 706.6 3533 1979-09-04 2024-10-11 00:58:53.000 1979-09-04 2024-10-11 00:58:53 +3534 3534 3535 353.4 706.8000000000001 3534 1979-09-05 2024-10-11 00:58:54.000 1979-09-05 2024-10-11 00:58:54 +3535 3535 3536 353.5 707 3535 1979-09-06 2024-10-11 00:58:55.000 1979-09-06 2024-10-11 00:58:55 +3536 3536 3537 353.6 707.2 3536 1979-09-07 2024-10-11 00:58:56.000 1979-09-07 2024-10-11 00:58:56 +3537 3537 3538 353.7 707.4000000000001 3537 1979-09-08 2024-10-11 00:58:57.000 1979-09-08 2024-10-11 00:58:57 +3538 3538 3539 353.8 707.6 3538 1979-09-09 2024-10-11 00:58:58.000 1979-09-09 2024-10-11 00:58:58 +3539 3539 3540 353.9 707.8000000000001 3539 1979-09-10 2024-10-11 00:58:59.000 1979-09-10 2024-10-11 00:58:59 +3540 3540 3541 354 708 3540 1979-09-11 2024-10-11 00:59:00.000 1979-09-11 2024-10-11 00:59:00 +3541 3541 3542 354.1 708.2 3541 1979-09-12 2024-10-11 00:59:01.000 1979-09-12 2024-10-11 00:59:01 +3542 3542 3543 354.2 708.4000000000001 3542 1979-09-13 2024-10-11 00:59:02.000 1979-09-13 2024-10-11 00:59:02 +3543 3543 3544 354.3 708.6 3543 1979-09-14 2024-10-11 00:59:03.000 1979-09-14 2024-10-11 00:59:03 +3544 3544 3545 354.4 708.8000000000001 3544 1979-09-15 2024-10-11 00:59:04.000 1979-09-15 2024-10-11 00:59:04 +3545 3545 3546 354.5 709 3545 1979-09-16 2024-10-11 00:59:05.000 1979-09-16 2024-10-11 00:59:05 +3546 3546 3547 354.6 709.2 3546 1979-09-17 2024-10-11 00:59:06.000 1979-09-17 2024-10-11 00:59:06 +3547 3547 3548 354.7 709.4000000000001 3547 1979-09-18 2024-10-11 00:59:07.000 1979-09-18 2024-10-11 00:59:07 +3548 3548 3549 354.8 709.6 3548 1979-09-19 2024-10-11 00:59:08.000 1979-09-19 2024-10-11 00:59:08 +3549 3549 3550 354.9 709.8000000000001 3549 1979-09-20 2024-10-11 00:59:09.000 1979-09-20 2024-10-11 00:59:09 +3550 3550 3551 355 710 3550 1979-09-21 2024-10-11 00:59:10.000 1979-09-21 2024-10-11 00:59:10 +3551 3551 3552 355.1 710.2 3551 1979-09-22 2024-10-11 00:59:11.000 1979-09-22 2024-10-11 00:59:11 +3552 3552 3553 355.2 710.4000000000001 3552 1979-09-23 2024-10-11 00:59:12.000 1979-09-23 2024-10-11 00:59:12 +3553 3553 3554 355.3 710.6 3553 1979-09-24 2024-10-11 00:59:13.000 1979-09-24 2024-10-11 00:59:13 +3554 3554 3555 355.4 710.8000000000001 3554 1979-09-25 2024-10-11 00:59:14.000 1979-09-25 2024-10-11 00:59:14 +3555 3555 3556 355.5 711 3555 1979-09-26 2024-10-11 00:59:15.000 1979-09-26 2024-10-11 00:59:15 +3556 3556 3557 355.6 711.2 3556 1979-09-27 2024-10-11 00:59:16.000 1979-09-27 2024-10-11 00:59:16 +3557 3557 3558 355.7 711.4000000000001 3557 1979-09-28 2024-10-11 00:59:17.000 1979-09-28 2024-10-11 00:59:17 +3558 3558 3559 355.8 711.6 3558 1979-09-29 2024-10-11 00:59:18.000 1979-09-29 2024-10-11 00:59:18 +3559 3559 3560 355.9 711.8000000000001 3559 1979-09-30 2024-10-11 00:59:19.000 1979-09-30 2024-10-11 00:59:19 +3560 3560 3561 356 712 3560 1979-10-01 2024-10-11 00:59:20.000 1979-10-01 2024-10-11 00:59:20 +3561 3561 3562 356.1 712.2 3561 1979-10-02 2024-10-11 00:59:21.000 1979-10-02 2024-10-11 00:59:21 +3562 3562 3563 356.2 712.4000000000001 3562 1979-10-03 2024-10-11 00:59:22.000 1979-10-03 2024-10-11 00:59:22 +3563 3563 3564 356.3 712.6 3563 1979-10-04 2024-10-11 00:59:23.000 1979-10-04 2024-10-11 00:59:23 +3564 3564 3565 356.4 712.8000000000001 3564 1979-10-05 2024-10-11 00:59:24.000 1979-10-05 2024-10-11 00:59:24 +3565 3565 3566 356.5 713 3565 1979-10-06 2024-10-11 00:59:25.000 1979-10-06 2024-10-11 00:59:25 +3566 3566 3567 356.6 713.2 3566 1979-10-07 2024-10-11 00:59:26.000 1979-10-07 2024-10-11 00:59:26 +3567 3567 3568 356.7 713.4000000000001 3567 1979-10-08 2024-10-11 00:59:27.000 1979-10-08 2024-10-11 00:59:27 +3568 3568 3569 356.8 713.6 3568 1979-10-09 2024-10-11 00:59:28.000 1979-10-09 2024-10-11 00:59:28 +3569 3569 3570 356.9 713.8000000000001 3569 1979-10-10 2024-10-11 00:59:29.000 1979-10-10 2024-10-11 00:59:29 +3570 3570 3571 357 714 3570 1979-10-11 2024-10-11 00:59:30.000 1979-10-11 2024-10-11 00:59:30 +3571 3571 3572 357.1 714.2 3571 1979-10-12 2024-10-11 00:59:31.000 1979-10-12 2024-10-11 00:59:31 +3572 3572 3573 357.2 714.4000000000001 3572 1979-10-13 2024-10-11 00:59:32.000 1979-10-13 2024-10-11 00:59:32 +3573 3573 3574 357.3 714.6 3573 1979-10-14 2024-10-11 00:59:33.000 1979-10-14 2024-10-11 00:59:33 +3574 3574 3575 357.4 714.8000000000001 3574 1979-10-15 2024-10-11 00:59:34.000 1979-10-15 2024-10-11 00:59:34 +3575 3575 3576 357.5 715 3575 1979-10-16 2024-10-11 00:59:35.000 1979-10-16 2024-10-11 00:59:35 +3576 3576 3577 357.6 715.2 3576 1979-10-17 2024-10-11 00:59:36.000 1979-10-17 2024-10-11 00:59:36 +3577 3577 3578 357.7 715.4000000000001 3577 1979-10-18 2024-10-11 00:59:37.000 1979-10-18 2024-10-11 00:59:37 +3578 3578 3579 357.8 715.6 3578 1979-10-19 2024-10-11 00:59:38.000 1979-10-19 2024-10-11 00:59:38 +3579 3579 3580 357.9 715.8000000000001 3579 1979-10-20 2024-10-11 00:59:39.000 1979-10-20 2024-10-11 00:59:39 +3580 3580 3581 358 716 3580 1979-10-21 2024-10-11 00:59:40.000 1979-10-21 2024-10-11 00:59:40 +3581 3581 3582 358.1 716.2 3581 1979-10-22 2024-10-11 00:59:41.000 1979-10-22 2024-10-11 00:59:41 +3582 3582 3583 358.2 716.4000000000001 3582 1979-10-23 2024-10-11 00:59:42.000 1979-10-23 2024-10-11 00:59:42 +3583 3583 3584 358.3 716.6 3583 1979-10-24 2024-10-11 00:59:43.000 1979-10-24 2024-10-11 00:59:43 +3584 3584 3585 358.4 716.8000000000001 3584 1979-10-25 2024-10-11 00:59:44.000 1979-10-25 2024-10-11 00:59:44 +3585 3585 3586 358.5 717 3585 1979-10-26 2024-10-11 00:59:45.000 1979-10-26 2024-10-11 00:59:45 +3586 3586 3587 358.6 717.2 3586 1979-10-27 2024-10-11 00:59:46.000 1979-10-27 2024-10-11 00:59:46 +3587 3587 3588 358.7 717.4000000000001 3587 1979-10-28 2024-10-11 00:59:47.000 1979-10-28 2024-10-11 00:59:47 +3588 3588 3589 358.8 717.6 3588 1979-10-29 2024-10-11 00:59:48.000 1979-10-29 2024-10-11 00:59:48 +3589 3589 3590 358.9 717.8000000000001 3589 1979-10-30 2024-10-11 00:59:49.000 1979-10-30 2024-10-11 00:59:49 +3590 3590 3591 359 718 3590 1979-10-31 2024-10-11 00:59:50.000 1979-10-31 2024-10-11 00:59:50 +3591 3591 3592 359.1 718.2 3591 1979-11-01 2024-10-11 00:59:51.000 1979-11-01 2024-10-11 00:59:51 +3592 3592 3593 359.2 718.4000000000001 3592 1979-11-02 2024-10-11 00:59:52.000 1979-11-02 2024-10-11 00:59:52 +3593 3593 3594 359.3 718.6 3593 1979-11-03 2024-10-11 00:59:53.000 1979-11-03 2024-10-11 00:59:53 +3594 3594 3595 359.4 718.8000000000001 3594 1979-11-04 2024-10-11 00:59:54.000 1979-11-04 2024-10-11 00:59:54 +3595 3595 3596 359.5 719 3595 1979-11-05 2024-10-11 00:59:55.000 1979-11-05 2024-10-11 00:59:55 +3596 3596 3597 359.6 719.2 3596 1979-11-06 2024-10-11 00:59:56.000 1979-11-06 2024-10-11 00:59:56 +3597 3597 3598 359.7 719.4000000000001 3597 1979-11-07 2024-10-11 00:59:57.000 1979-11-07 2024-10-11 00:59:57 +3598 3598 3599 359.8 719.6 3598 1979-11-08 2024-10-11 00:59:58.000 1979-11-08 2024-10-11 00:59:58 +3599 3599 3600 359.9 719.8000000000001 3599 1979-11-09 2024-10-11 00:59:59.000 1979-11-09 2024-10-11 00:59:59 +3600 3600 3601 360 720 3600 1979-11-10 2024-10-11 01:00:00.000 1979-11-10 2024-10-11 01:00:00 +3601 3601 3602 360.1 720.2 3601 1979-11-11 2024-10-11 01:00:01.000 1979-11-11 2024-10-11 01:00:01 +3602 3602 3603 360.2 720.4000000000001 3602 1979-11-12 2024-10-11 01:00:02.000 1979-11-12 2024-10-11 01:00:02 +3603 3603 3604 360.3 720.6 3603 1979-11-13 2024-10-11 01:00:03.000 1979-11-13 2024-10-11 01:00:03 +3604 3604 3605 360.4 720.8000000000001 3604 1979-11-14 2024-10-11 01:00:04.000 1979-11-14 2024-10-11 01:00:04 +3605 3605 3606 360.5 721 3605 1979-11-15 2024-10-11 01:00:05.000 1979-11-15 2024-10-11 01:00:05 +3606 3606 3607 360.6 721.2 3606 1979-11-16 2024-10-11 01:00:06.000 1979-11-16 2024-10-11 01:00:06 +3607 3607 3608 360.7 721.4000000000001 3607 1979-11-17 2024-10-11 01:00:07.000 1979-11-17 2024-10-11 01:00:07 +3608 3608 3609 360.8 721.6 3608 1979-11-18 2024-10-11 01:00:08.000 1979-11-18 2024-10-11 01:00:08 +3609 3609 3610 360.9 721.8000000000001 3609 1979-11-19 2024-10-11 01:00:09.000 1979-11-19 2024-10-11 01:00:09 +3610 3610 3611 361 722 3610 1979-11-20 2024-10-11 01:00:10.000 1979-11-20 2024-10-11 01:00:10 +3611 3611 3612 361.1 722.2 3611 1979-11-21 2024-10-11 01:00:11.000 1979-11-21 2024-10-11 01:00:11 +3612 3612 3613 361.2 722.4000000000001 3612 1979-11-22 2024-10-11 01:00:12.000 1979-11-22 2024-10-11 01:00:12 +3613 3613 3614 361.3 722.6 3613 1979-11-23 2024-10-11 01:00:13.000 1979-11-23 2024-10-11 01:00:13 +3614 3614 3615 361.4 722.8000000000001 3614 1979-11-24 2024-10-11 01:00:14.000 1979-11-24 2024-10-11 01:00:14 +3615 3615 3616 361.5 723 3615 1979-11-25 2024-10-11 01:00:15.000 1979-11-25 2024-10-11 01:00:15 +3616 3616 3617 361.6 723.2 3616 1979-11-26 2024-10-11 01:00:16.000 1979-11-26 2024-10-11 01:00:16 +3617 3617 3618 361.7 723.4000000000001 3617 1979-11-27 2024-10-11 01:00:17.000 1979-11-27 2024-10-11 01:00:17 +3618 3618 3619 361.8 723.6 3618 1979-11-28 2024-10-11 01:00:18.000 1979-11-28 2024-10-11 01:00:18 +3619 3619 3620 361.9 723.8000000000001 3619 1979-11-29 2024-10-11 01:00:19.000 1979-11-29 2024-10-11 01:00:19 +3620 3620 3621 362 724 3620 1979-11-30 2024-10-11 01:00:20.000 1979-11-30 2024-10-11 01:00:20 +3621 3621 3622 362.1 724.2 3621 1979-12-01 2024-10-11 01:00:21.000 1979-12-01 2024-10-11 01:00:21 +3622 3622 3623 362.2 724.4000000000001 3622 1979-12-02 2024-10-11 01:00:22.000 1979-12-02 2024-10-11 01:00:22 +3623 3623 3624 362.3 724.6 3623 1979-12-03 2024-10-11 01:00:23.000 1979-12-03 2024-10-11 01:00:23 +3624 3624 3625 362.4 724.8000000000001 3624 1979-12-04 2024-10-11 01:00:24.000 1979-12-04 2024-10-11 01:00:24 +3625 3625 3626 362.5 725 3625 1979-12-05 2024-10-11 01:00:25.000 1979-12-05 2024-10-11 01:00:25 +3626 3626 3627 362.6 725.2 3626 1979-12-06 2024-10-11 01:00:26.000 1979-12-06 2024-10-11 01:00:26 +3627 3627 3628 362.7 725.4000000000001 3627 1979-12-07 2024-10-11 01:00:27.000 1979-12-07 2024-10-11 01:00:27 +3628 3628 3629 362.8 725.6 3628 1979-12-08 2024-10-11 01:00:28.000 1979-12-08 2024-10-11 01:00:28 +3629 3629 3630 362.9 725.8000000000001 3629 1979-12-09 2024-10-11 01:00:29.000 1979-12-09 2024-10-11 01:00:29 +3630 3630 3631 363 726 3630 1979-12-10 2024-10-11 01:00:30.000 1979-12-10 2024-10-11 01:00:30 +3631 3631 3632 363.1 726.2 3631 1979-12-11 2024-10-11 01:00:31.000 1979-12-11 2024-10-11 01:00:31 +3632 3632 3633 363.2 726.4000000000001 3632 1979-12-12 2024-10-11 01:00:32.000 1979-12-12 2024-10-11 01:00:32 +3633 3633 3634 363.3 726.6 3633 1979-12-13 2024-10-11 01:00:33.000 1979-12-13 2024-10-11 01:00:33 +3634 3634 3635 363.4 726.8000000000001 3634 1979-12-14 2024-10-11 01:00:34.000 1979-12-14 2024-10-11 01:00:34 +3635 3635 3636 363.5 727 3635 1979-12-15 2024-10-11 01:00:35.000 1979-12-15 2024-10-11 01:00:35 +3636 3636 3637 363.6 727.2 3636 1979-12-16 2024-10-11 01:00:36.000 1979-12-16 2024-10-11 01:00:36 +3637 3637 3638 363.7 727.4000000000001 3637 1979-12-17 2024-10-11 01:00:37.000 1979-12-17 2024-10-11 01:00:37 +3638 3638 3639 363.8 727.6 3638 1979-12-18 2024-10-11 01:00:38.000 1979-12-18 2024-10-11 01:00:38 +3639 3639 3640 363.9 727.8000000000001 3639 1979-12-19 2024-10-11 01:00:39.000 1979-12-19 2024-10-11 01:00:39 +3640 3640 3641 364 728 3640 1979-12-20 2024-10-11 01:00:40.000 1979-12-20 2024-10-11 01:00:40 +3641 3641 3642 364.1 728.2 3641 1979-12-21 2024-10-11 01:00:41.000 1979-12-21 2024-10-11 01:00:41 +3642 3642 3643 364.2 728.4000000000001 3642 1979-12-22 2024-10-11 01:00:42.000 1979-12-22 2024-10-11 01:00:42 +3643 3643 3644 364.3 728.6 3643 1979-12-23 2024-10-11 01:00:43.000 1979-12-23 2024-10-11 01:00:43 +3644 3644 3645 364.4 728.8000000000001 3644 1979-12-24 2024-10-11 01:00:44.000 1979-12-24 2024-10-11 01:00:44 +3645 3645 3646 364.5 729 3645 1979-12-25 2024-10-11 01:00:45.000 1979-12-25 2024-10-11 01:00:45 +3646 3646 3647 364.6 729.2 3646 1979-12-26 2024-10-11 01:00:46.000 1979-12-26 2024-10-11 01:00:46 +3647 3647 3648 364.7 729.4000000000001 3647 1979-12-27 2024-10-11 01:00:47.000 1979-12-27 2024-10-11 01:00:47 +3648 3648 3649 364.8 729.6 3648 1979-12-28 2024-10-11 01:00:48.000 1979-12-28 2024-10-11 01:00:48 +3649 3649 3650 364.9 729.8000000000001 3649 1979-12-29 2024-10-11 01:00:49.000 1979-12-29 2024-10-11 01:00:49 +3650 3650 3651 365 730 3650 1979-12-30 2024-10-11 01:00:50.000 1979-12-30 2024-10-11 01:00:50 +3651 3651 3652 365.1 730.2 3651 1979-12-31 2024-10-11 01:00:51.000 1979-12-31 2024-10-11 01:00:51 +3652 3652 3653 365.2 730.4000000000001 3652 1980-01-01 2024-10-11 01:00:52.000 1980-01-01 2024-10-11 01:00:52 +3653 3653 3654 365.3 730.6 3653 1980-01-02 2024-10-11 01:00:53.000 1980-01-02 2024-10-11 01:00:53 +3654 3654 3655 365.4 730.8000000000001 3654 1980-01-03 2024-10-11 01:00:54.000 1980-01-03 2024-10-11 01:00:54 +3655 3655 3656 365.5 731 3655 1980-01-04 2024-10-11 01:00:55.000 1980-01-04 2024-10-11 01:00:55 +3656 3656 3657 365.6 731.2 3656 1980-01-05 2024-10-11 01:00:56.000 1980-01-05 2024-10-11 01:00:56 +3657 3657 3658 365.7 731.4000000000001 3657 1980-01-06 2024-10-11 01:00:57.000 1980-01-06 2024-10-11 01:00:57 +3658 3658 3659 365.8 731.6 3658 1980-01-07 2024-10-11 01:00:58.000 1980-01-07 2024-10-11 01:00:58 +3659 3659 3660 365.9 731.8000000000001 3659 1980-01-08 2024-10-11 01:00:59.000 1980-01-08 2024-10-11 01:00:59 +3660 3660 3661 366 732 3660 1980-01-09 2024-10-11 01:01:00.000 1980-01-09 2024-10-11 01:01:00 +3661 3661 3662 366.1 732.2 3661 1980-01-10 2024-10-11 01:01:01.000 1980-01-10 2024-10-11 01:01:01 +3662 3662 3663 366.2 732.4000000000001 3662 1980-01-11 2024-10-11 01:01:02.000 1980-01-11 2024-10-11 01:01:02 +3663 3663 3664 366.3 732.6 3663 1980-01-12 2024-10-11 01:01:03.000 1980-01-12 2024-10-11 01:01:03 +3664 3664 3665 366.4 732.8000000000001 3664 1980-01-13 2024-10-11 01:01:04.000 1980-01-13 2024-10-11 01:01:04 +3665 3665 3666 366.5 733 3665 1980-01-14 2024-10-11 01:01:05.000 1980-01-14 2024-10-11 01:01:05 +3666 3666 3667 366.6 733.2 3666 1980-01-15 2024-10-11 01:01:06.000 1980-01-15 2024-10-11 01:01:06 +3667 3667 3668 366.7 733.4000000000001 3667 1980-01-16 2024-10-11 01:01:07.000 1980-01-16 2024-10-11 01:01:07 +3668 3668 3669 366.8 733.6 3668 1980-01-17 2024-10-11 01:01:08.000 1980-01-17 2024-10-11 01:01:08 +3669 3669 3670 366.9 733.8000000000001 3669 1980-01-18 2024-10-11 01:01:09.000 1980-01-18 2024-10-11 01:01:09 +3670 3670 3671 367 734 3670 1980-01-19 2024-10-11 01:01:10.000 1980-01-19 2024-10-11 01:01:10 +3671 3671 3672 367.1 734.2 3671 1980-01-20 2024-10-11 01:01:11.000 1980-01-20 2024-10-11 01:01:11 +3672 3672 3673 367.2 734.4000000000001 3672 1980-01-21 2024-10-11 01:01:12.000 1980-01-21 2024-10-11 01:01:12 +3673 3673 3674 367.3 734.6 3673 1980-01-22 2024-10-11 01:01:13.000 1980-01-22 2024-10-11 01:01:13 +3674 3674 3675 367.4 734.8000000000001 3674 1980-01-23 2024-10-11 01:01:14.000 1980-01-23 2024-10-11 01:01:14 +3675 3675 3676 367.5 735 3675 1980-01-24 2024-10-11 01:01:15.000 1980-01-24 2024-10-11 01:01:15 +3676 3676 3677 367.6 735.2 3676 1980-01-25 2024-10-11 01:01:16.000 1980-01-25 2024-10-11 01:01:16 +3677 3677 3678 367.7 735.4000000000001 3677 1980-01-26 2024-10-11 01:01:17.000 1980-01-26 2024-10-11 01:01:17 +3678 3678 3679 367.8 735.6 3678 1980-01-27 2024-10-11 01:01:18.000 1980-01-27 2024-10-11 01:01:18 +3679 3679 3680 367.9 735.8000000000001 3679 1980-01-28 2024-10-11 01:01:19.000 1980-01-28 2024-10-11 01:01:19 +3680 3680 3681 368 736 3680 1980-01-29 2024-10-11 01:01:20.000 1980-01-29 2024-10-11 01:01:20 +3681 3681 3682 368.1 736.2 3681 1980-01-30 2024-10-11 01:01:21.000 1980-01-30 2024-10-11 01:01:21 +3682 3682 3683 368.2 736.4000000000001 3682 1980-01-31 2024-10-11 01:01:22.000 1980-01-31 2024-10-11 01:01:22 +3683 3683 3684 368.3 736.6 3683 1980-02-01 2024-10-11 01:01:23.000 1980-02-01 2024-10-11 01:01:23 +3684 3684 3685 368.4 736.8000000000001 3684 1980-02-02 2024-10-11 01:01:24.000 1980-02-02 2024-10-11 01:01:24 +3685 3685 3686 368.5 737 3685 1980-02-03 2024-10-11 01:01:25.000 1980-02-03 2024-10-11 01:01:25 +3686 3686 3687 368.6 737.2 3686 1980-02-04 2024-10-11 01:01:26.000 1980-02-04 2024-10-11 01:01:26 +3687 3687 3688 368.7 737.4000000000001 3687 1980-02-05 2024-10-11 01:01:27.000 1980-02-05 2024-10-11 01:01:27 +3688 3688 3689 368.8 737.6 3688 1980-02-06 2024-10-11 01:01:28.000 1980-02-06 2024-10-11 01:01:28 +3689 3689 3690 368.9 737.8000000000001 3689 1980-02-07 2024-10-11 01:01:29.000 1980-02-07 2024-10-11 01:01:29 +3690 3690 3691 369 738 3690 1980-02-08 2024-10-11 01:01:30.000 1980-02-08 2024-10-11 01:01:30 +3691 3691 3692 369.1 738.2 3691 1980-02-09 2024-10-11 01:01:31.000 1980-02-09 2024-10-11 01:01:31 +3692 3692 3693 369.2 738.4000000000001 3692 1980-02-10 2024-10-11 01:01:32.000 1980-02-10 2024-10-11 01:01:32 +3693 3693 3694 369.3 738.6 3693 1980-02-11 2024-10-11 01:01:33.000 1980-02-11 2024-10-11 01:01:33 +3694 3694 3695 369.4 738.8000000000001 3694 1980-02-12 2024-10-11 01:01:34.000 1980-02-12 2024-10-11 01:01:34 +3695 3695 3696 369.5 739 3695 1980-02-13 2024-10-11 01:01:35.000 1980-02-13 2024-10-11 01:01:35 +3696 3696 3697 369.6 739.2 3696 1980-02-14 2024-10-11 01:01:36.000 1980-02-14 2024-10-11 01:01:36 +3697 3697 3698 369.7 739.4000000000001 3697 1980-02-15 2024-10-11 01:01:37.000 1980-02-15 2024-10-11 01:01:37 +3698 3698 3699 369.8 739.6 3698 1980-02-16 2024-10-11 01:01:38.000 1980-02-16 2024-10-11 01:01:38 +3699 3699 3700 369.9 739.8000000000001 3699 1980-02-17 2024-10-11 01:01:39.000 1980-02-17 2024-10-11 01:01:39 +3700 3700 3701 370 740 3700 1980-02-18 2024-10-11 01:01:40.000 1980-02-18 2024-10-11 01:01:40 +3701 3701 3702 370.1 740.2 3701 1980-02-19 2024-10-11 01:01:41.000 1980-02-19 2024-10-11 01:01:41 +3702 3702 3703 370.2 740.4000000000001 3702 1980-02-20 2024-10-11 01:01:42.000 1980-02-20 2024-10-11 01:01:42 +3703 3703 3704 370.3 740.6 3703 1980-02-21 2024-10-11 01:01:43.000 1980-02-21 2024-10-11 01:01:43 +3704 3704 3705 370.4 740.8000000000001 3704 1980-02-22 2024-10-11 01:01:44.000 1980-02-22 2024-10-11 01:01:44 +3705 3705 3706 370.5 741 3705 1980-02-23 2024-10-11 01:01:45.000 1980-02-23 2024-10-11 01:01:45 +3706 3706 3707 370.6 741.2 3706 1980-02-24 2024-10-11 01:01:46.000 1980-02-24 2024-10-11 01:01:46 +3707 3707 3708 370.7 741.4000000000001 3707 1980-02-25 2024-10-11 01:01:47.000 1980-02-25 2024-10-11 01:01:47 +3708 3708 3709 370.8 741.6 3708 1980-02-26 2024-10-11 01:01:48.000 1980-02-26 2024-10-11 01:01:48 +3709 3709 3710 370.9 741.8000000000001 3709 1980-02-27 2024-10-11 01:01:49.000 1980-02-27 2024-10-11 01:01:49 +3710 3710 3711 371 742 3710 1980-02-28 2024-10-11 01:01:50.000 1980-02-28 2024-10-11 01:01:50 +3711 3711 3712 371.1 742.2 3711 1980-02-29 2024-10-11 01:01:51.000 1980-02-29 2024-10-11 01:01:51 +3712 3712 3713 371.2 742.4000000000001 3712 1980-03-01 2024-10-11 01:01:52.000 1980-03-01 2024-10-11 01:01:52 +3713 3713 3714 371.3 742.6 3713 1980-03-02 2024-10-11 01:01:53.000 1980-03-02 2024-10-11 01:01:53 +3714 3714 3715 371.4 742.8000000000001 3714 1980-03-03 2024-10-11 01:01:54.000 1980-03-03 2024-10-11 01:01:54 +3715 3715 3716 371.5 743 3715 1980-03-04 2024-10-11 01:01:55.000 1980-03-04 2024-10-11 01:01:55 +3716 3716 3717 371.6 743.2 3716 1980-03-05 2024-10-11 01:01:56.000 1980-03-05 2024-10-11 01:01:56 +3717 3717 3718 371.7 743.4000000000001 3717 1980-03-06 2024-10-11 01:01:57.000 1980-03-06 2024-10-11 01:01:57 +3718 3718 3719 371.8 743.6 3718 1980-03-07 2024-10-11 01:01:58.000 1980-03-07 2024-10-11 01:01:58 +3719 3719 3720 371.9 743.8000000000001 3719 1980-03-08 2024-10-11 01:01:59.000 1980-03-08 2024-10-11 01:01:59 +3720 3720 3721 372 744 3720 1980-03-09 2024-10-11 01:02:00.000 1980-03-09 2024-10-11 01:02:00 +3721 3721 3722 372.1 744.2 3721 1980-03-10 2024-10-11 01:02:01.000 1980-03-10 2024-10-11 01:02:01 +3722 3722 3723 372.2 744.4000000000001 3722 1980-03-11 2024-10-11 01:02:02.000 1980-03-11 2024-10-11 01:02:02 +3723 3723 3724 372.3 744.6 3723 1980-03-12 2024-10-11 01:02:03.000 1980-03-12 2024-10-11 01:02:03 +3724 3724 3725 372.4 744.8000000000001 3724 1980-03-13 2024-10-11 01:02:04.000 1980-03-13 2024-10-11 01:02:04 +3725 3725 3726 372.5 745 3725 1980-03-14 2024-10-11 01:02:05.000 1980-03-14 2024-10-11 01:02:05 +3726 3726 3727 372.6 745.2 3726 1980-03-15 2024-10-11 01:02:06.000 1980-03-15 2024-10-11 01:02:06 +3727 3727 3728 372.7 745.4000000000001 3727 1980-03-16 2024-10-11 01:02:07.000 1980-03-16 2024-10-11 01:02:07 +3728 3728 3729 372.8 745.6 3728 1980-03-17 2024-10-11 01:02:08.000 1980-03-17 2024-10-11 01:02:08 +3729 3729 3730 372.9 745.8000000000001 3729 1980-03-18 2024-10-11 01:02:09.000 1980-03-18 2024-10-11 01:02:09 +3730 3730 3731 373 746 3730 1980-03-19 2024-10-11 01:02:10.000 1980-03-19 2024-10-11 01:02:10 +3731 3731 3732 373.1 746.2 3731 1980-03-20 2024-10-11 01:02:11.000 1980-03-20 2024-10-11 01:02:11 +3732 3732 3733 373.2 746.4000000000001 3732 1980-03-21 2024-10-11 01:02:12.000 1980-03-21 2024-10-11 01:02:12 +3733 3733 3734 373.3 746.6 3733 1980-03-22 2024-10-11 01:02:13.000 1980-03-22 2024-10-11 01:02:13 +3734 3734 3735 373.4 746.8000000000001 3734 1980-03-23 2024-10-11 01:02:14.000 1980-03-23 2024-10-11 01:02:14 +3735 3735 3736 373.5 747 3735 1980-03-24 2024-10-11 01:02:15.000 1980-03-24 2024-10-11 01:02:15 +3736 3736 3737 373.6 747.2 3736 1980-03-25 2024-10-11 01:02:16.000 1980-03-25 2024-10-11 01:02:16 +3737 3737 3738 373.7 747.4000000000001 3737 1980-03-26 2024-10-11 01:02:17.000 1980-03-26 2024-10-11 01:02:17 +3738 3738 3739 373.8 747.6 3738 1980-03-27 2024-10-11 01:02:18.000 1980-03-27 2024-10-11 01:02:18 +3739 3739 3740 373.9 747.8000000000001 3739 1980-03-28 2024-10-11 01:02:19.000 1980-03-28 2024-10-11 01:02:19 +3740 3740 3741 374 748 3740 1980-03-29 2024-10-11 01:02:20.000 1980-03-29 2024-10-11 01:02:20 +3741 3741 3742 374.1 748.2 3741 1980-03-30 2024-10-11 01:02:21.000 1980-03-30 2024-10-11 01:02:21 +3742 3742 3743 374.2 748.4000000000001 3742 1980-03-31 2024-10-11 01:02:22.000 1980-03-31 2024-10-11 01:02:22 +3743 3743 3744 374.3 748.6 3743 1980-04-01 2024-10-11 01:02:23.000 1980-04-01 2024-10-11 01:02:23 +3744 3744 3745 374.4 748.8000000000001 3744 1980-04-02 2024-10-11 01:02:24.000 1980-04-02 2024-10-11 01:02:24 +3745 3745 3746 374.5 749 3745 1980-04-03 2024-10-11 01:02:25.000 1980-04-03 2024-10-11 01:02:25 +3746 3746 3747 374.6 749.2 3746 1980-04-04 2024-10-11 01:02:26.000 1980-04-04 2024-10-11 01:02:26 +3747 3747 3748 374.7 749.4000000000001 3747 1980-04-05 2024-10-11 01:02:27.000 1980-04-05 2024-10-11 01:02:27 +3748 3748 3749 374.8 749.6 3748 1980-04-06 2024-10-11 01:02:28.000 1980-04-06 2024-10-11 01:02:28 +3749 3749 3750 374.9 749.8000000000001 3749 1980-04-07 2024-10-11 01:02:29.000 1980-04-07 2024-10-11 01:02:29 +3750 3750 3751 375 750 3750 1980-04-08 2024-10-11 01:02:30.000 1980-04-08 2024-10-11 01:02:30 +3751 3751 3752 375.1 750.2 3751 1980-04-09 2024-10-11 01:02:31.000 1980-04-09 2024-10-11 01:02:31 +3752 3752 3753 375.2 750.4000000000001 3752 1980-04-10 2024-10-11 01:02:32.000 1980-04-10 2024-10-11 01:02:32 +3753 3753 3754 375.3 750.6 3753 1980-04-11 2024-10-11 01:02:33.000 1980-04-11 2024-10-11 01:02:33 +3754 3754 3755 375.4 750.8000000000001 3754 1980-04-12 2024-10-11 01:02:34.000 1980-04-12 2024-10-11 01:02:34 +3755 3755 3756 375.5 751 3755 1980-04-13 2024-10-11 01:02:35.000 1980-04-13 2024-10-11 01:02:35 +3756 3756 3757 375.6 751.2 3756 1980-04-14 2024-10-11 01:02:36.000 1980-04-14 2024-10-11 01:02:36 +3757 3757 3758 375.7 751.4000000000001 3757 1980-04-15 2024-10-11 01:02:37.000 1980-04-15 2024-10-11 01:02:37 +3758 3758 3759 375.8 751.6 3758 1980-04-16 2024-10-11 01:02:38.000 1980-04-16 2024-10-11 01:02:38 +3759 3759 3760 375.9 751.8000000000001 3759 1980-04-17 2024-10-11 01:02:39.000 1980-04-17 2024-10-11 01:02:39 +3760 3760 3761 376 752 3760 1980-04-18 2024-10-11 01:02:40.000 1980-04-18 2024-10-11 01:02:40 +3761 3761 3762 376.1 752.2 3761 1980-04-19 2024-10-11 01:02:41.000 1980-04-19 2024-10-11 01:02:41 +3762 3762 3763 376.2 752.4000000000001 3762 1980-04-20 2024-10-11 01:02:42.000 1980-04-20 2024-10-11 01:02:42 +3763 3763 3764 376.3 752.6 3763 1980-04-21 2024-10-11 01:02:43.000 1980-04-21 2024-10-11 01:02:43 +3764 3764 3765 376.4 752.8000000000001 3764 1980-04-22 2024-10-11 01:02:44.000 1980-04-22 2024-10-11 01:02:44 +3765 3765 3766 376.5 753 3765 1980-04-23 2024-10-11 01:02:45.000 1980-04-23 2024-10-11 01:02:45 +3766 3766 3767 376.6 753.2 3766 1980-04-24 2024-10-11 01:02:46.000 1980-04-24 2024-10-11 01:02:46 +3767 3767 3768 376.7 753.4000000000001 3767 1980-04-25 2024-10-11 01:02:47.000 1980-04-25 2024-10-11 01:02:47 +3768 3768 3769 376.8 753.6 3768 1980-04-26 2024-10-11 01:02:48.000 1980-04-26 2024-10-11 01:02:48 +3769 3769 3770 376.9 753.8000000000001 3769 1980-04-27 2024-10-11 01:02:49.000 1980-04-27 2024-10-11 01:02:49 +3770 3770 3771 377 754 3770 1980-04-28 2024-10-11 01:02:50.000 1980-04-28 2024-10-11 01:02:50 +3771 3771 3772 377.1 754.2 3771 1980-04-29 2024-10-11 01:02:51.000 1980-04-29 2024-10-11 01:02:51 +3772 3772 3773 377.2 754.4000000000001 3772 1980-04-30 2024-10-11 01:02:52.000 1980-04-30 2024-10-11 01:02:52 +3773 3773 3774 377.3 754.6 3773 1980-05-01 2024-10-11 01:02:53.000 1980-05-01 2024-10-11 01:02:53 +3774 3774 3775 377.4 754.8000000000001 3774 1980-05-02 2024-10-11 01:02:54.000 1980-05-02 2024-10-11 01:02:54 +3775 3775 3776 377.5 755 3775 1980-05-03 2024-10-11 01:02:55.000 1980-05-03 2024-10-11 01:02:55 +3776 3776 3777 377.6 755.2 3776 1980-05-04 2024-10-11 01:02:56.000 1980-05-04 2024-10-11 01:02:56 +3777 3777 3778 377.7 755.4000000000001 3777 1980-05-05 2024-10-11 01:02:57.000 1980-05-05 2024-10-11 01:02:57 +3778 3778 3779 377.8 755.6 3778 1980-05-06 2024-10-11 01:02:58.000 1980-05-06 2024-10-11 01:02:58 +3779 3779 3780 377.9 755.8000000000001 3779 1980-05-07 2024-10-11 01:02:59.000 1980-05-07 2024-10-11 01:02:59 +3780 3780 3781 378 756 3780 1980-05-08 2024-10-11 01:03:00.000 1980-05-08 2024-10-11 01:03:00 +3781 3781 3782 378.1 756.2 3781 1980-05-09 2024-10-11 01:03:01.000 1980-05-09 2024-10-11 01:03:01 +3782 3782 3783 378.2 756.4000000000001 3782 1980-05-10 2024-10-11 01:03:02.000 1980-05-10 2024-10-11 01:03:02 +3783 3783 3784 378.3 756.6 3783 1980-05-11 2024-10-11 01:03:03.000 1980-05-11 2024-10-11 01:03:03 +3784 3784 3785 378.4 756.8000000000001 3784 1980-05-12 2024-10-11 01:03:04.000 1980-05-12 2024-10-11 01:03:04 +3785 3785 3786 378.5 757 3785 1980-05-13 2024-10-11 01:03:05.000 1980-05-13 2024-10-11 01:03:05 +3786 3786 3787 378.6 757.2 3786 1980-05-14 2024-10-11 01:03:06.000 1980-05-14 2024-10-11 01:03:06 +3787 3787 3788 378.7 757.4000000000001 3787 1980-05-15 2024-10-11 01:03:07.000 1980-05-15 2024-10-11 01:03:07 +3788 3788 3789 378.8 757.6 3788 1980-05-16 2024-10-11 01:03:08.000 1980-05-16 2024-10-11 01:03:08 +3789 3789 3790 378.9 757.8000000000001 3789 1980-05-17 2024-10-11 01:03:09.000 1980-05-17 2024-10-11 01:03:09 +3790 3790 3791 379 758 3790 1980-05-18 2024-10-11 01:03:10.000 1980-05-18 2024-10-11 01:03:10 +3791 3791 3792 379.1 758.2 3791 1980-05-19 2024-10-11 01:03:11.000 1980-05-19 2024-10-11 01:03:11 +3792 3792 3793 379.2 758.4000000000001 3792 1980-05-20 2024-10-11 01:03:12.000 1980-05-20 2024-10-11 01:03:12 +3793 3793 3794 379.3 758.6 3793 1980-05-21 2024-10-11 01:03:13.000 1980-05-21 2024-10-11 01:03:13 +3794 3794 3795 379.4 758.8000000000001 3794 1980-05-22 2024-10-11 01:03:14.000 1980-05-22 2024-10-11 01:03:14 +3795 3795 3796 379.5 759 3795 1980-05-23 2024-10-11 01:03:15.000 1980-05-23 2024-10-11 01:03:15 +3796 3796 3797 379.6 759.2 3796 1980-05-24 2024-10-11 01:03:16.000 1980-05-24 2024-10-11 01:03:16 +3797 3797 3798 379.7 759.4000000000001 3797 1980-05-25 2024-10-11 01:03:17.000 1980-05-25 2024-10-11 01:03:17 +3798 3798 3799 379.8 759.6 3798 1980-05-26 2024-10-11 01:03:18.000 1980-05-26 2024-10-11 01:03:18 +3799 3799 3800 379.9 759.8000000000001 3799 1980-05-27 2024-10-11 01:03:19.000 1980-05-27 2024-10-11 01:03:19 +3800 3800 3801 380 760 3800 1980-05-28 2024-10-11 01:03:20.000 1980-05-28 2024-10-11 01:03:20 +3801 3801 3802 380.1 760.2 3801 1980-05-29 2024-10-11 01:03:21.000 1980-05-29 2024-10-11 01:03:21 +3802 3802 3803 380.2 760.4000000000001 3802 1980-05-30 2024-10-11 01:03:22.000 1980-05-30 2024-10-11 01:03:22 +3803 3803 3804 380.3 760.6 3803 1980-05-31 2024-10-11 01:03:23.000 1980-05-31 2024-10-11 01:03:23 +3804 3804 3805 380.4 760.8000000000001 3804 1980-06-01 2024-10-11 01:03:24.000 1980-06-01 2024-10-11 01:03:24 +3805 3805 3806 380.5 761 3805 1980-06-02 2024-10-11 01:03:25.000 1980-06-02 2024-10-11 01:03:25 +3806 3806 3807 380.6 761.2 3806 1980-06-03 2024-10-11 01:03:26.000 1980-06-03 2024-10-11 01:03:26 +3807 3807 3808 380.7 761.4000000000001 3807 1980-06-04 2024-10-11 01:03:27.000 1980-06-04 2024-10-11 01:03:27 +3808 3808 3809 380.8 761.6 3808 1980-06-05 2024-10-11 01:03:28.000 1980-06-05 2024-10-11 01:03:28 +3809 3809 3810 380.9 761.8000000000001 3809 1980-06-06 2024-10-11 01:03:29.000 1980-06-06 2024-10-11 01:03:29 +3810 3810 3811 381 762 3810 1980-06-07 2024-10-11 01:03:30.000 1980-06-07 2024-10-11 01:03:30 +3811 3811 3812 381.1 762.2 3811 1980-06-08 2024-10-11 01:03:31.000 1980-06-08 2024-10-11 01:03:31 +3812 3812 3813 381.2 762.4000000000001 3812 1980-06-09 2024-10-11 01:03:32.000 1980-06-09 2024-10-11 01:03:32 +3813 3813 3814 381.3 762.6 3813 1980-06-10 2024-10-11 01:03:33.000 1980-06-10 2024-10-11 01:03:33 +3814 3814 3815 381.4 762.8000000000001 3814 1980-06-11 2024-10-11 01:03:34.000 1980-06-11 2024-10-11 01:03:34 +3815 3815 3816 381.5 763 3815 1980-06-12 2024-10-11 01:03:35.000 1980-06-12 2024-10-11 01:03:35 +3816 3816 3817 381.6 763.2 3816 1980-06-13 2024-10-11 01:03:36.000 1980-06-13 2024-10-11 01:03:36 +3817 3817 3818 381.7 763.4000000000001 3817 1980-06-14 2024-10-11 01:03:37.000 1980-06-14 2024-10-11 01:03:37 +3818 3818 3819 381.8 763.6 3818 1980-06-15 2024-10-11 01:03:38.000 1980-06-15 2024-10-11 01:03:38 +3819 3819 3820 381.9 763.8000000000001 3819 1980-06-16 2024-10-11 01:03:39.000 1980-06-16 2024-10-11 01:03:39 +3820 3820 3821 382 764 3820 1980-06-17 2024-10-11 01:03:40.000 1980-06-17 2024-10-11 01:03:40 +3821 3821 3822 382.1 764.2 3821 1980-06-18 2024-10-11 01:03:41.000 1980-06-18 2024-10-11 01:03:41 +3822 3822 3823 382.2 764.4000000000001 3822 1980-06-19 2024-10-11 01:03:42.000 1980-06-19 2024-10-11 01:03:42 +3823 3823 3824 382.3 764.6 3823 1980-06-20 2024-10-11 01:03:43.000 1980-06-20 2024-10-11 01:03:43 +3824 3824 3825 382.4 764.8000000000001 3824 1980-06-21 2024-10-11 01:03:44.000 1980-06-21 2024-10-11 01:03:44 +3825 3825 3826 382.5 765 3825 1980-06-22 2024-10-11 01:03:45.000 1980-06-22 2024-10-11 01:03:45 +3826 3826 3827 382.6 765.2 3826 1980-06-23 2024-10-11 01:03:46.000 1980-06-23 2024-10-11 01:03:46 +3827 3827 3828 382.7 765.4000000000001 3827 1980-06-24 2024-10-11 01:03:47.000 1980-06-24 2024-10-11 01:03:47 +3828 3828 3829 382.8 765.6 3828 1980-06-25 2024-10-11 01:03:48.000 1980-06-25 2024-10-11 01:03:48 +3829 3829 3830 382.9 765.8000000000001 3829 1980-06-26 2024-10-11 01:03:49.000 1980-06-26 2024-10-11 01:03:49 +3830 3830 3831 383 766 3830 1980-06-27 2024-10-11 01:03:50.000 1980-06-27 2024-10-11 01:03:50 +3831 3831 3832 383.1 766.2 3831 1980-06-28 2024-10-11 01:03:51.000 1980-06-28 2024-10-11 01:03:51 +3832 3832 3833 383.2 766.4000000000001 3832 1980-06-29 2024-10-11 01:03:52.000 1980-06-29 2024-10-11 01:03:52 +3833 3833 3834 383.3 766.6 3833 1980-06-30 2024-10-11 01:03:53.000 1980-06-30 2024-10-11 01:03:53 +3834 3834 3835 383.4 766.8000000000001 3834 1980-07-01 2024-10-11 01:03:54.000 1980-07-01 2024-10-11 01:03:54 +3835 3835 3836 383.5 767 3835 1980-07-02 2024-10-11 01:03:55.000 1980-07-02 2024-10-11 01:03:55 +3836 3836 3837 383.6 767.2 3836 1980-07-03 2024-10-11 01:03:56.000 1980-07-03 2024-10-11 01:03:56 +3837 3837 3838 383.7 767.4000000000001 3837 1980-07-04 2024-10-11 01:03:57.000 1980-07-04 2024-10-11 01:03:57 +3838 3838 3839 383.8 767.6 3838 1980-07-05 2024-10-11 01:03:58.000 1980-07-05 2024-10-11 01:03:58 +3839 3839 3840 383.9 767.8000000000001 3839 1980-07-06 2024-10-11 01:03:59.000 1980-07-06 2024-10-11 01:03:59 +3840 3840 3841 384 768 3840 1980-07-07 2024-10-11 01:04:00.000 1980-07-07 2024-10-11 01:04:00 +3841 3841 3842 384.1 768.2 3841 1980-07-08 2024-10-11 01:04:01.000 1980-07-08 2024-10-11 01:04:01 +3842 3842 3843 384.2 768.4000000000001 3842 1980-07-09 2024-10-11 01:04:02.000 1980-07-09 2024-10-11 01:04:02 +3843 3843 3844 384.3 768.6 3843 1980-07-10 2024-10-11 01:04:03.000 1980-07-10 2024-10-11 01:04:03 +3844 3844 3845 384.4 768.8000000000001 3844 1980-07-11 2024-10-11 01:04:04.000 1980-07-11 2024-10-11 01:04:04 +3845 3845 3846 384.5 769 3845 1980-07-12 2024-10-11 01:04:05.000 1980-07-12 2024-10-11 01:04:05 +3846 3846 3847 384.6 769.2 3846 1980-07-13 2024-10-11 01:04:06.000 1980-07-13 2024-10-11 01:04:06 +3847 3847 3848 384.7 769.4000000000001 3847 1980-07-14 2024-10-11 01:04:07.000 1980-07-14 2024-10-11 01:04:07 +3848 3848 3849 384.8 769.6 3848 1980-07-15 2024-10-11 01:04:08.000 1980-07-15 2024-10-11 01:04:08 +3849 3849 3850 384.9 769.8000000000001 3849 1980-07-16 2024-10-11 01:04:09.000 1980-07-16 2024-10-11 01:04:09 +3850 3850 3851 385 770 3850 1980-07-17 2024-10-11 01:04:10.000 1980-07-17 2024-10-11 01:04:10 +3851 3851 3852 385.1 770.2 3851 1980-07-18 2024-10-11 01:04:11.000 1980-07-18 2024-10-11 01:04:11 +3852 3852 3853 385.2 770.4000000000001 3852 1980-07-19 2024-10-11 01:04:12.000 1980-07-19 2024-10-11 01:04:12 +3853 3853 3854 385.3 770.6 3853 1980-07-20 2024-10-11 01:04:13.000 1980-07-20 2024-10-11 01:04:13 +3854 3854 3855 385.4 770.8000000000001 3854 1980-07-21 2024-10-11 01:04:14.000 1980-07-21 2024-10-11 01:04:14 +3855 3855 3856 385.5 771 3855 1980-07-22 2024-10-11 01:04:15.000 1980-07-22 2024-10-11 01:04:15 +3856 3856 3857 385.6 771.2 3856 1980-07-23 2024-10-11 01:04:16.000 1980-07-23 2024-10-11 01:04:16 +3857 3857 3858 385.7 771.4000000000001 3857 1980-07-24 2024-10-11 01:04:17.000 1980-07-24 2024-10-11 01:04:17 +3858 3858 3859 385.8 771.6 3858 1980-07-25 2024-10-11 01:04:18.000 1980-07-25 2024-10-11 01:04:18 +3859 3859 3860 385.9 771.8000000000001 3859 1980-07-26 2024-10-11 01:04:19.000 1980-07-26 2024-10-11 01:04:19 +3860 3860 3861 386 772 3860 1980-07-27 2024-10-11 01:04:20.000 1980-07-27 2024-10-11 01:04:20 +3861 3861 3862 386.1 772.2 3861 1980-07-28 2024-10-11 01:04:21.000 1980-07-28 2024-10-11 01:04:21 +3862 3862 3863 386.2 772.4000000000001 3862 1980-07-29 2024-10-11 01:04:22.000 1980-07-29 2024-10-11 01:04:22 +3863 3863 3864 386.3 772.6 3863 1980-07-30 2024-10-11 01:04:23.000 1980-07-30 2024-10-11 01:04:23 +3864 3864 3865 386.4 772.8000000000001 3864 1980-07-31 2024-10-11 01:04:24.000 1980-07-31 2024-10-11 01:04:24 +3865 3865 3866 386.5 773 3865 1980-08-01 2024-10-11 01:04:25.000 1980-08-01 2024-10-11 01:04:25 +3866 3866 3867 386.6 773.2 3866 1980-08-02 2024-10-11 01:04:26.000 1980-08-02 2024-10-11 01:04:26 +3867 3867 3868 386.7 773.4000000000001 3867 1980-08-03 2024-10-11 01:04:27.000 1980-08-03 2024-10-11 01:04:27 +3868 3868 3869 386.8 773.6 3868 1980-08-04 2024-10-11 01:04:28.000 1980-08-04 2024-10-11 01:04:28 +3869 3869 3870 386.9 773.8000000000001 3869 1980-08-05 2024-10-11 01:04:29.000 1980-08-05 2024-10-11 01:04:29 +3870 3870 3871 387 774 3870 1980-08-06 2024-10-11 01:04:30.000 1980-08-06 2024-10-11 01:04:30 +3871 3871 3872 387.1 774.2 3871 1980-08-07 2024-10-11 01:04:31.000 1980-08-07 2024-10-11 01:04:31 +3872 3872 3873 387.2 774.4000000000001 3872 1980-08-08 2024-10-11 01:04:32.000 1980-08-08 2024-10-11 01:04:32 +3873 3873 3874 387.3 774.6 3873 1980-08-09 2024-10-11 01:04:33.000 1980-08-09 2024-10-11 01:04:33 +3874 3874 3875 387.4 774.8000000000001 3874 1980-08-10 2024-10-11 01:04:34.000 1980-08-10 2024-10-11 01:04:34 +3875 3875 3876 387.5 775 3875 1980-08-11 2024-10-11 01:04:35.000 1980-08-11 2024-10-11 01:04:35 +3876 3876 3877 387.6 775.2 3876 1980-08-12 2024-10-11 01:04:36.000 1980-08-12 2024-10-11 01:04:36 +3877 3877 3878 387.7 775.4000000000001 3877 1980-08-13 2024-10-11 01:04:37.000 1980-08-13 2024-10-11 01:04:37 +3878 3878 3879 387.8 775.6 3878 1980-08-14 2024-10-11 01:04:38.000 1980-08-14 2024-10-11 01:04:38 +3879 3879 3880 387.9 775.8000000000001 3879 1980-08-15 2024-10-11 01:04:39.000 1980-08-15 2024-10-11 01:04:39 +3880 3880 3881 388 776 3880 1980-08-16 2024-10-11 01:04:40.000 1980-08-16 2024-10-11 01:04:40 +3881 3881 3882 388.1 776.2 3881 1980-08-17 2024-10-11 01:04:41.000 1980-08-17 2024-10-11 01:04:41 +3882 3882 3883 388.2 776.4000000000001 3882 1980-08-18 2024-10-11 01:04:42.000 1980-08-18 2024-10-11 01:04:42 +3883 3883 3884 388.3 776.6 3883 1980-08-19 2024-10-11 01:04:43.000 1980-08-19 2024-10-11 01:04:43 +3884 3884 3885 388.4 776.8000000000001 3884 1980-08-20 2024-10-11 01:04:44.000 1980-08-20 2024-10-11 01:04:44 +3885 3885 3886 388.5 777 3885 1980-08-21 2024-10-11 01:04:45.000 1980-08-21 2024-10-11 01:04:45 +3886 3886 3887 388.6 777.2 3886 1980-08-22 2024-10-11 01:04:46.000 1980-08-22 2024-10-11 01:04:46 +3887 3887 3888 388.7 777.4000000000001 3887 1980-08-23 2024-10-11 01:04:47.000 1980-08-23 2024-10-11 01:04:47 +3888 3888 3889 388.8 777.6 3888 1980-08-24 2024-10-11 01:04:48.000 1980-08-24 2024-10-11 01:04:48 +3889 3889 3890 388.9 777.8000000000001 3889 1980-08-25 2024-10-11 01:04:49.000 1980-08-25 2024-10-11 01:04:49 +3890 3890 3891 389 778 3890 1980-08-26 2024-10-11 01:04:50.000 1980-08-26 2024-10-11 01:04:50 +3891 3891 3892 389.1 778.2 3891 1980-08-27 2024-10-11 01:04:51.000 1980-08-27 2024-10-11 01:04:51 +3892 3892 3893 389.2 778.4000000000001 3892 1980-08-28 2024-10-11 01:04:52.000 1980-08-28 2024-10-11 01:04:52 +3893 3893 3894 389.3 778.6 3893 1980-08-29 2024-10-11 01:04:53.000 1980-08-29 2024-10-11 01:04:53 +3894 3894 3895 389.4 778.8000000000001 3894 1980-08-30 2024-10-11 01:04:54.000 1980-08-30 2024-10-11 01:04:54 +3895 3895 3896 389.5 779 3895 1980-08-31 2024-10-11 01:04:55.000 1980-08-31 2024-10-11 01:04:55 +3896 3896 3897 389.6 779.2 3896 1980-09-01 2024-10-11 01:04:56.000 1980-09-01 2024-10-11 01:04:56 +3897 3897 3898 389.7 779.4000000000001 3897 1980-09-02 2024-10-11 01:04:57.000 1980-09-02 2024-10-11 01:04:57 +3898 3898 3899 389.8 779.6 3898 1980-09-03 2024-10-11 01:04:58.000 1980-09-03 2024-10-11 01:04:58 +3899 3899 3900 389.9 779.8000000000001 3899 1980-09-04 2024-10-11 01:04:59.000 1980-09-04 2024-10-11 01:04:59 +3900 3900 3901 390 780 3900 1980-09-05 2024-10-11 01:05:00.000 1980-09-05 2024-10-11 01:05:00 +3901 3901 3902 390.1 780.2 3901 1980-09-06 2024-10-11 01:05:01.000 1980-09-06 2024-10-11 01:05:01 +3902 3902 3903 390.2 780.4000000000001 3902 1980-09-07 2024-10-11 01:05:02.000 1980-09-07 2024-10-11 01:05:02 +3903 3903 3904 390.3 780.6 3903 1980-09-08 2024-10-11 01:05:03.000 1980-09-08 2024-10-11 01:05:03 +3904 3904 3905 390.4 780.8000000000001 3904 1980-09-09 2024-10-11 01:05:04.000 1980-09-09 2024-10-11 01:05:04 +3905 3905 3906 390.5 781 3905 1980-09-10 2024-10-11 01:05:05.000 1980-09-10 2024-10-11 01:05:05 +3906 3906 3907 390.6 781.2 3906 1980-09-11 2024-10-11 01:05:06.000 1980-09-11 2024-10-11 01:05:06 +3907 3907 3908 390.7 781.4000000000001 3907 1980-09-12 2024-10-11 01:05:07.000 1980-09-12 2024-10-11 01:05:07 +3908 3908 3909 390.8 781.6 3908 1980-09-13 2024-10-11 01:05:08.000 1980-09-13 2024-10-11 01:05:08 +3909 3909 3910 390.9 781.8000000000001 3909 1980-09-14 2024-10-11 01:05:09.000 1980-09-14 2024-10-11 01:05:09 +3910 3910 3911 391 782 3910 1980-09-15 2024-10-11 01:05:10.000 1980-09-15 2024-10-11 01:05:10 +3911 3911 3912 391.1 782.2 3911 1980-09-16 2024-10-11 01:05:11.000 1980-09-16 2024-10-11 01:05:11 +3912 3912 3913 391.2 782.4000000000001 3912 1980-09-17 2024-10-11 01:05:12.000 1980-09-17 2024-10-11 01:05:12 +3913 3913 3914 391.3 782.6 3913 1980-09-18 2024-10-11 01:05:13.000 1980-09-18 2024-10-11 01:05:13 +3914 3914 3915 391.4 782.8000000000001 3914 1980-09-19 2024-10-11 01:05:14.000 1980-09-19 2024-10-11 01:05:14 +3915 3915 3916 391.5 783 3915 1980-09-20 2024-10-11 01:05:15.000 1980-09-20 2024-10-11 01:05:15 +3916 3916 3917 391.6 783.2 3916 1980-09-21 2024-10-11 01:05:16.000 1980-09-21 2024-10-11 01:05:16 +3917 3917 3918 391.7 783.4000000000001 3917 1980-09-22 2024-10-11 01:05:17.000 1980-09-22 2024-10-11 01:05:17 +3918 3918 3919 391.8 783.6 3918 1980-09-23 2024-10-11 01:05:18.000 1980-09-23 2024-10-11 01:05:18 +3919 3919 3920 391.9 783.8000000000001 3919 1980-09-24 2024-10-11 01:05:19.000 1980-09-24 2024-10-11 01:05:19 +3920 3920 3921 392 784 3920 1980-09-25 2024-10-11 01:05:20.000 1980-09-25 2024-10-11 01:05:20 +3921 3921 3922 392.1 784.2 3921 1980-09-26 2024-10-11 01:05:21.000 1980-09-26 2024-10-11 01:05:21 +3922 3922 3923 392.2 784.4000000000001 3922 1980-09-27 2024-10-11 01:05:22.000 1980-09-27 2024-10-11 01:05:22 +3923 3923 3924 392.3 784.6 3923 1980-09-28 2024-10-11 01:05:23.000 1980-09-28 2024-10-11 01:05:23 +3924 3924 3925 392.4 784.8000000000001 3924 1980-09-29 2024-10-11 01:05:24.000 1980-09-29 2024-10-11 01:05:24 +3925 3925 3926 392.5 785 3925 1980-09-30 2024-10-11 01:05:25.000 1980-09-30 2024-10-11 01:05:25 +3926 3926 3927 392.6 785.2 3926 1980-10-01 2024-10-11 01:05:26.000 1980-10-01 2024-10-11 01:05:26 +3927 3927 3928 392.7 785.4000000000001 3927 1980-10-02 2024-10-11 01:05:27.000 1980-10-02 2024-10-11 01:05:27 +3928 3928 3929 392.8 785.6 3928 1980-10-03 2024-10-11 01:05:28.000 1980-10-03 2024-10-11 01:05:28 +3929 3929 3930 392.9 785.8000000000001 3929 1980-10-04 2024-10-11 01:05:29.000 1980-10-04 2024-10-11 01:05:29 +3930 3930 3931 393 786 3930 1980-10-05 2024-10-11 01:05:30.000 1980-10-05 2024-10-11 01:05:30 +3931 3931 3932 393.1 786.2 3931 1980-10-06 2024-10-11 01:05:31.000 1980-10-06 2024-10-11 01:05:31 +3932 3932 3933 393.2 786.4000000000001 3932 1980-10-07 2024-10-11 01:05:32.000 1980-10-07 2024-10-11 01:05:32 +3933 3933 3934 393.3 786.6 3933 1980-10-08 2024-10-11 01:05:33.000 1980-10-08 2024-10-11 01:05:33 +3934 3934 3935 393.4 786.8000000000001 3934 1980-10-09 2024-10-11 01:05:34.000 1980-10-09 2024-10-11 01:05:34 +3935 3935 3936 393.5 787 3935 1980-10-10 2024-10-11 01:05:35.000 1980-10-10 2024-10-11 01:05:35 +3936 3936 3937 393.6 787.2 3936 1980-10-11 2024-10-11 01:05:36.000 1980-10-11 2024-10-11 01:05:36 +3937 3937 3938 393.7 787.4000000000001 3937 1980-10-12 2024-10-11 01:05:37.000 1980-10-12 2024-10-11 01:05:37 +3938 3938 3939 393.8 787.6 3938 1980-10-13 2024-10-11 01:05:38.000 1980-10-13 2024-10-11 01:05:38 +3939 3939 3940 393.9 787.8000000000001 3939 1980-10-14 2024-10-11 01:05:39.000 1980-10-14 2024-10-11 01:05:39 +3940 3940 3941 394 788 3940 1980-10-15 2024-10-11 01:05:40.000 1980-10-15 2024-10-11 01:05:40 +3941 3941 3942 394.1 788.2 3941 1980-10-16 2024-10-11 01:05:41.000 1980-10-16 2024-10-11 01:05:41 +3942 3942 3943 394.2 788.4000000000001 3942 1980-10-17 2024-10-11 01:05:42.000 1980-10-17 2024-10-11 01:05:42 +3943 3943 3944 394.3 788.6 3943 1980-10-18 2024-10-11 01:05:43.000 1980-10-18 2024-10-11 01:05:43 +3944 3944 3945 394.4 788.8000000000001 3944 1980-10-19 2024-10-11 01:05:44.000 1980-10-19 2024-10-11 01:05:44 +3945 3945 3946 394.5 789 3945 1980-10-20 2024-10-11 01:05:45.000 1980-10-20 2024-10-11 01:05:45 +3946 3946 3947 394.6 789.2 3946 1980-10-21 2024-10-11 01:05:46.000 1980-10-21 2024-10-11 01:05:46 +3947 3947 3948 394.7 789.4000000000001 3947 1980-10-22 2024-10-11 01:05:47.000 1980-10-22 2024-10-11 01:05:47 +3948 3948 3949 394.8 789.6 3948 1980-10-23 2024-10-11 01:05:48.000 1980-10-23 2024-10-11 01:05:48 +3949 3949 3950 394.9 789.8000000000001 3949 1980-10-24 2024-10-11 01:05:49.000 1980-10-24 2024-10-11 01:05:49 +3950 3950 3951 395 790 3950 1980-10-25 2024-10-11 01:05:50.000 1980-10-25 2024-10-11 01:05:50 +3951 3951 3952 395.1 790.2 3951 1980-10-26 2024-10-11 01:05:51.000 1980-10-26 2024-10-11 01:05:51 +3952 3952 3953 395.2 790.4000000000001 3952 1980-10-27 2024-10-11 01:05:52.000 1980-10-27 2024-10-11 01:05:52 +3953 3953 3954 395.3 790.6 3953 1980-10-28 2024-10-11 01:05:53.000 1980-10-28 2024-10-11 01:05:53 +3954 3954 3955 395.4 790.8000000000001 3954 1980-10-29 2024-10-11 01:05:54.000 1980-10-29 2024-10-11 01:05:54 +3955 3955 3956 395.5 791 3955 1980-10-30 2024-10-11 01:05:55.000 1980-10-30 2024-10-11 01:05:55 +3956 3956 3957 395.6 791.2 3956 1980-10-31 2024-10-11 01:05:56.000 1980-10-31 2024-10-11 01:05:56 +3957 3957 3958 395.7 791.4000000000001 3957 1980-11-01 2024-10-11 01:05:57.000 1980-11-01 2024-10-11 01:05:57 +3958 3958 3959 395.8 791.6 3958 1980-11-02 2024-10-11 01:05:58.000 1980-11-02 2024-10-11 01:05:58 +3959 3959 3960 395.9 791.8000000000001 3959 1980-11-03 2024-10-11 01:05:59.000 1980-11-03 2024-10-11 01:05:59 +3960 3960 3961 396 792 3960 1980-11-04 2024-10-11 01:06:00.000 1980-11-04 2024-10-11 01:06:00 +3961 3961 3962 396.1 792.2 3961 1980-11-05 2024-10-11 01:06:01.000 1980-11-05 2024-10-11 01:06:01 +3962 3962 3963 396.2 792.4000000000001 3962 1980-11-06 2024-10-11 01:06:02.000 1980-11-06 2024-10-11 01:06:02 +3963 3963 3964 396.3 792.6 3963 1980-11-07 2024-10-11 01:06:03.000 1980-11-07 2024-10-11 01:06:03 +3964 3964 3965 396.4 792.8000000000001 3964 1980-11-08 2024-10-11 01:06:04.000 1980-11-08 2024-10-11 01:06:04 +3965 3965 3966 396.5 793 3965 1980-11-09 2024-10-11 01:06:05.000 1980-11-09 2024-10-11 01:06:05 +3966 3966 3967 396.6 793.2 3966 1980-11-10 2024-10-11 01:06:06.000 1980-11-10 2024-10-11 01:06:06 +3967 3967 3968 396.7 793.4000000000001 3967 1980-11-11 2024-10-11 01:06:07.000 1980-11-11 2024-10-11 01:06:07 +3968 3968 3969 396.8 793.6 3968 1980-11-12 2024-10-11 01:06:08.000 1980-11-12 2024-10-11 01:06:08 +3969 3969 3970 396.9 793.8000000000001 3969 1980-11-13 2024-10-11 01:06:09.000 1980-11-13 2024-10-11 01:06:09 +3970 3970 3971 397 794 3970 1980-11-14 2024-10-11 01:06:10.000 1980-11-14 2024-10-11 01:06:10 +3971 3971 3972 397.1 794.2 3971 1980-11-15 2024-10-11 01:06:11.000 1980-11-15 2024-10-11 01:06:11 +3972 3972 3973 397.2 794.4000000000001 3972 1980-11-16 2024-10-11 01:06:12.000 1980-11-16 2024-10-11 01:06:12 +3973 3973 3974 397.3 794.6 3973 1980-11-17 2024-10-11 01:06:13.000 1980-11-17 2024-10-11 01:06:13 +3974 3974 3975 397.4 794.8000000000001 3974 1980-11-18 2024-10-11 01:06:14.000 1980-11-18 2024-10-11 01:06:14 +3975 3975 3976 397.5 795 3975 1980-11-19 2024-10-11 01:06:15.000 1980-11-19 2024-10-11 01:06:15 +3976 3976 3977 397.6 795.2 3976 1980-11-20 2024-10-11 01:06:16.000 1980-11-20 2024-10-11 01:06:16 +3977 3977 3978 397.7 795.4000000000001 3977 1980-11-21 2024-10-11 01:06:17.000 1980-11-21 2024-10-11 01:06:17 +3978 3978 3979 397.8 795.6 3978 1980-11-22 2024-10-11 01:06:18.000 1980-11-22 2024-10-11 01:06:18 +3979 3979 3980 397.9 795.8000000000001 3979 1980-11-23 2024-10-11 01:06:19.000 1980-11-23 2024-10-11 01:06:19 +3980 3980 3981 398 796 3980 1980-11-24 2024-10-11 01:06:20.000 1980-11-24 2024-10-11 01:06:20 +3981 3981 3982 398.1 796.2 3981 1980-11-25 2024-10-11 01:06:21.000 1980-11-25 2024-10-11 01:06:21 +3982 3982 3983 398.2 796.4000000000001 3982 1980-11-26 2024-10-11 01:06:22.000 1980-11-26 2024-10-11 01:06:22 +3983 3983 3984 398.3 796.6 3983 1980-11-27 2024-10-11 01:06:23.000 1980-11-27 2024-10-11 01:06:23 +3984 3984 3985 398.4 796.8000000000001 3984 1980-11-28 2024-10-11 01:06:24.000 1980-11-28 2024-10-11 01:06:24 +3985 3985 3986 398.5 797 3985 1980-11-29 2024-10-11 01:06:25.000 1980-11-29 2024-10-11 01:06:25 +3986 3986 3987 398.6 797.2 3986 1980-11-30 2024-10-11 01:06:26.000 1980-11-30 2024-10-11 01:06:26 +3987 3987 3988 398.7 797.4000000000001 3987 1980-12-01 2024-10-11 01:06:27.000 1980-12-01 2024-10-11 01:06:27 +3988 3988 3989 398.8 797.6 3988 1980-12-02 2024-10-11 01:06:28.000 1980-12-02 2024-10-11 01:06:28 +3989 3989 3990 398.9 797.8000000000001 3989 1980-12-03 2024-10-11 01:06:29.000 1980-12-03 2024-10-11 01:06:29 +3990 3990 3991 399 798 3990 1980-12-04 2024-10-11 01:06:30.000 1980-12-04 2024-10-11 01:06:30 +3991 3991 3992 399.1 798.2 3991 1980-12-05 2024-10-11 01:06:31.000 1980-12-05 2024-10-11 01:06:31 +3992 3992 3993 399.2 798.4000000000001 3992 1980-12-06 2024-10-11 01:06:32.000 1980-12-06 2024-10-11 01:06:32 +3993 3993 3994 399.3 798.6 3993 1980-12-07 2024-10-11 01:06:33.000 1980-12-07 2024-10-11 01:06:33 +3994 3994 3995 399.4 798.8000000000001 3994 1980-12-08 2024-10-11 01:06:34.000 1980-12-08 2024-10-11 01:06:34 +3995 3995 3996 399.5 799 3995 1980-12-09 2024-10-11 01:06:35.000 1980-12-09 2024-10-11 01:06:35 +3996 3996 3997 399.6 799.2 3996 1980-12-10 2024-10-11 01:06:36.000 1980-12-10 2024-10-11 01:06:36 +3997 3997 3998 399.7 799.4000000000001 3997 1980-12-11 2024-10-11 01:06:37.000 1980-12-11 2024-10-11 01:06:37 +3998 3998 3999 399.8 799.6 3998 1980-12-12 2024-10-11 01:06:38.000 1980-12-12 2024-10-11 01:06:38 +3999 3999 4000 399.9 799.8000000000001 3999 1980-12-13 2024-10-11 01:06:39.000 1980-12-13 2024-10-11 01:06:39 +4000 4000 4001 400 800 4000 1980-12-14 2024-10-11 01:06:40.000 1980-12-14 2024-10-11 01:06:40 +4001 4001 4002 400.1 800.2 4001 1980-12-15 2024-10-11 01:06:41.000 1980-12-15 2024-10-11 01:06:41 +4002 4002 4003 400.2 800.4000000000001 4002 1980-12-16 2024-10-11 01:06:42.000 1980-12-16 2024-10-11 01:06:42 +4003 4003 4004 400.3 800.6 4003 1980-12-17 2024-10-11 01:06:43.000 1980-12-17 2024-10-11 01:06:43 +4004 4004 4005 400.4 800.8000000000001 4004 1980-12-18 2024-10-11 01:06:44.000 1980-12-18 2024-10-11 01:06:44 +4005 4005 4006 400.5 801 4005 1980-12-19 2024-10-11 01:06:45.000 1980-12-19 2024-10-11 01:06:45 +4006 4006 4007 400.6 801.2 4006 1980-12-20 2024-10-11 01:06:46.000 1980-12-20 2024-10-11 01:06:46 +4007 4007 4008 400.7 801.4000000000001 4007 1980-12-21 2024-10-11 01:06:47.000 1980-12-21 2024-10-11 01:06:47 +4008 4008 4009 400.8 801.6 4008 1980-12-22 2024-10-11 01:06:48.000 1980-12-22 2024-10-11 01:06:48 +4009 4009 4010 400.9 801.8000000000001 4009 1980-12-23 2024-10-11 01:06:49.000 1980-12-23 2024-10-11 01:06:49 +4010 4010 4011 401 802 4010 1980-12-24 2024-10-11 01:06:50.000 1980-12-24 2024-10-11 01:06:50 +4011 4011 4012 401.1 802.2 4011 1980-12-25 2024-10-11 01:06:51.000 1980-12-25 2024-10-11 01:06:51 +4012 4012 4013 401.2 802.4000000000001 4012 1980-12-26 2024-10-11 01:06:52.000 1980-12-26 2024-10-11 01:06:52 +4013 4013 4014 401.3 802.6 4013 1980-12-27 2024-10-11 01:06:53.000 1980-12-27 2024-10-11 01:06:53 +4014 4014 4015 401.4 802.8000000000001 4014 1980-12-28 2024-10-11 01:06:54.000 1980-12-28 2024-10-11 01:06:54 +4015 4015 4016 401.5 803 4015 1980-12-29 2024-10-11 01:06:55.000 1980-12-29 2024-10-11 01:06:55 +4016 4016 4017 401.6 803.2 4016 1980-12-30 2024-10-11 01:06:56.000 1980-12-30 2024-10-11 01:06:56 +4017 4017 4018 401.7 803.4000000000001 4017 1980-12-31 2024-10-11 01:06:57.000 1980-12-31 2024-10-11 01:06:57 +4018 4018 4019 401.8 803.6 4018 1981-01-01 2024-10-11 01:06:58.000 1981-01-01 2024-10-11 01:06:58 +4019 4019 4020 401.9 803.8000000000001 4019 1981-01-02 2024-10-11 01:06:59.000 1981-01-02 2024-10-11 01:06:59 +4020 4020 4021 402 804 4020 1981-01-03 2024-10-11 01:07:00.000 1981-01-03 2024-10-11 01:07:00 +4021 4021 4022 402.1 804.2 4021 1981-01-04 2024-10-11 01:07:01.000 1981-01-04 2024-10-11 01:07:01 +4022 4022 4023 402.2 804.4000000000001 4022 1981-01-05 2024-10-11 01:07:02.000 1981-01-05 2024-10-11 01:07:02 +4023 4023 4024 402.3 804.6 4023 1981-01-06 2024-10-11 01:07:03.000 1981-01-06 2024-10-11 01:07:03 +4024 4024 4025 402.4 804.8000000000001 4024 1981-01-07 2024-10-11 01:07:04.000 1981-01-07 2024-10-11 01:07:04 +4025 4025 4026 402.5 805 4025 1981-01-08 2024-10-11 01:07:05.000 1981-01-08 2024-10-11 01:07:05 +4026 4026 4027 402.6 805.2 4026 1981-01-09 2024-10-11 01:07:06.000 1981-01-09 2024-10-11 01:07:06 +4027 4027 4028 402.7 805.4000000000001 4027 1981-01-10 2024-10-11 01:07:07.000 1981-01-10 2024-10-11 01:07:07 +4028 4028 4029 402.8 805.6 4028 1981-01-11 2024-10-11 01:07:08.000 1981-01-11 2024-10-11 01:07:08 +4029 4029 4030 402.9 805.8000000000001 4029 1981-01-12 2024-10-11 01:07:09.000 1981-01-12 2024-10-11 01:07:09 +4030 4030 4031 403 806 4030 1981-01-13 2024-10-11 01:07:10.000 1981-01-13 2024-10-11 01:07:10 +4031 4031 4032 403.1 806.2 4031 1981-01-14 2024-10-11 01:07:11.000 1981-01-14 2024-10-11 01:07:11 +4032 4032 4033 403.2 806.4000000000001 4032 1981-01-15 2024-10-11 01:07:12.000 1981-01-15 2024-10-11 01:07:12 +4033 4033 4034 403.3 806.6 4033 1981-01-16 2024-10-11 01:07:13.000 1981-01-16 2024-10-11 01:07:13 +4034 4034 4035 403.4 806.8000000000001 4034 1981-01-17 2024-10-11 01:07:14.000 1981-01-17 2024-10-11 01:07:14 +4035 4035 4036 403.5 807 4035 1981-01-18 2024-10-11 01:07:15.000 1981-01-18 2024-10-11 01:07:15 +4036 4036 4037 403.6 807.2 4036 1981-01-19 2024-10-11 01:07:16.000 1981-01-19 2024-10-11 01:07:16 +4037 4037 4038 403.7 807.4000000000001 4037 1981-01-20 2024-10-11 01:07:17.000 1981-01-20 2024-10-11 01:07:17 +4038 4038 4039 403.8 807.6 4038 1981-01-21 2024-10-11 01:07:18.000 1981-01-21 2024-10-11 01:07:18 +4039 4039 4040 403.9 807.8000000000001 4039 1981-01-22 2024-10-11 01:07:19.000 1981-01-22 2024-10-11 01:07:19 +4040 4040 4041 404 808 4040 1981-01-23 2024-10-11 01:07:20.000 1981-01-23 2024-10-11 01:07:20 +4041 4041 4042 404.1 808.2 4041 1981-01-24 2024-10-11 01:07:21.000 1981-01-24 2024-10-11 01:07:21 +4042 4042 4043 404.2 808.4000000000001 4042 1981-01-25 2024-10-11 01:07:22.000 1981-01-25 2024-10-11 01:07:22 +4043 4043 4044 404.3 808.6 4043 1981-01-26 2024-10-11 01:07:23.000 1981-01-26 2024-10-11 01:07:23 +4044 4044 4045 404.4 808.8000000000001 4044 1981-01-27 2024-10-11 01:07:24.000 1981-01-27 2024-10-11 01:07:24 +4045 4045 4046 404.5 809 4045 1981-01-28 2024-10-11 01:07:25.000 1981-01-28 2024-10-11 01:07:25 +4046 4046 4047 404.6 809.2 4046 1981-01-29 2024-10-11 01:07:26.000 1981-01-29 2024-10-11 01:07:26 +4047 4047 4048 404.7 809.4000000000001 4047 1981-01-30 2024-10-11 01:07:27.000 1981-01-30 2024-10-11 01:07:27 +4048 4048 4049 404.8 809.6 4048 1981-01-31 2024-10-11 01:07:28.000 1981-01-31 2024-10-11 01:07:28 +4049 4049 4050 404.9 809.8000000000001 4049 1981-02-01 2024-10-11 01:07:29.000 1981-02-01 2024-10-11 01:07:29 +4050 4050 4051 405 810 4050 1981-02-02 2024-10-11 01:07:30.000 1981-02-02 2024-10-11 01:07:30 +4051 4051 4052 405.1 810.2 4051 1981-02-03 2024-10-11 01:07:31.000 1981-02-03 2024-10-11 01:07:31 +4052 4052 4053 405.2 810.4000000000001 4052 1981-02-04 2024-10-11 01:07:32.000 1981-02-04 2024-10-11 01:07:32 +4053 4053 4054 405.3 810.6 4053 1981-02-05 2024-10-11 01:07:33.000 1981-02-05 2024-10-11 01:07:33 +4054 4054 4055 405.4 810.8000000000001 4054 1981-02-06 2024-10-11 01:07:34.000 1981-02-06 2024-10-11 01:07:34 +4055 4055 4056 405.5 811 4055 1981-02-07 2024-10-11 01:07:35.000 1981-02-07 2024-10-11 01:07:35 +4056 4056 4057 405.6 811.2 4056 1981-02-08 2024-10-11 01:07:36.000 1981-02-08 2024-10-11 01:07:36 +4057 4057 4058 405.7 811.4000000000001 4057 1981-02-09 2024-10-11 01:07:37.000 1981-02-09 2024-10-11 01:07:37 +4058 4058 4059 405.8 811.6 4058 1981-02-10 2024-10-11 01:07:38.000 1981-02-10 2024-10-11 01:07:38 +4059 4059 4060 405.9 811.8000000000001 4059 1981-02-11 2024-10-11 01:07:39.000 1981-02-11 2024-10-11 01:07:39 +4060 4060 4061 406 812 4060 1981-02-12 2024-10-11 01:07:40.000 1981-02-12 2024-10-11 01:07:40 +4061 4061 4062 406.1 812.2 4061 1981-02-13 2024-10-11 01:07:41.000 1981-02-13 2024-10-11 01:07:41 +4062 4062 4063 406.2 812.4000000000001 4062 1981-02-14 2024-10-11 01:07:42.000 1981-02-14 2024-10-11 01:07:42 +4063 4063 4064 406.3 812.6 4063 1981-02-15 2024-10-11 01:07:43.000 1981-02-15 2024-10-11 01:07:43 +4064 4064 4065 406.4 812.8000000000001 4064 1981-02-16 2024-10-11 01:07:44.000 1981-02-16 2024-10-11 01:07:44 +4065 4065 4066 406.5 813 4065 1981-02-17 2024-10-11 01:07:45.000 1981-02-17 2024-10-11 01:07:45 +4066 4066 4067 406.6 813.2 4066 1981-02-18 2024-10-11 01:07:46.000 1981-02-18 2024-10-11 01:07:46 +4067 4067 4068 406.7 813.4000000000001 4067 1981-02-19 2024-10-11 01:07:47.000 1981-02-19 2024-10-11 01:07:47 +4068 4068 4069 406.8 813.6 4068 1981-02-20 2024-10-11 01:07:48.000 1981-02-20 2024-10-11 01:07:48 +4069 4069 4070 406.9 813.8000000000001 4069 1981-02-21 2024-10-11 01:07:49.000 1981-02-21 2024-10-11 01:07:49 +4070 4070 4071 407 814 4070 1981-02-22 2024-10-11 01:07:50.000 1981-02-22 2024-10-11 01:07:50 +4071 4071 4072 407.1 814.2 4071 1981-02-23 2024-10-11 01:07:51.000 1981-02-23 2024-10-11 01:07:51 +4072 4072 4073 407.2 814.4000000000001 4072 1981-02-24 2024-10-11 01:07:52.000 1981-02-24 2024-10-11 01:07:52 +4073 4073 4074 407.3 814.6 4073 1981-02-25 2024-10-11 01:07:53.000 1981-02-25 2024-10-11 01:07:53 +4074 4074 4075 407.4 814.8000000000001 4074 1981-02-26 2024-10-11 01:07:54.000 1981-02-26 2024-10-11 01:07:54 +4075 4075 4076 407.5 815 4075 1981-02-27 2024-10-11 01:07:55.000 1981-02-27 2024-10-11 01:07:55 +4076 4076 4077 407.6 815.2 4076 1981-02-28 2024-10-11 01:07:56.000 1981-02-28 2024-10-11 01:07:56 +4077 4077 4078 407.7 815.4000000000001 4077 1981-03-01 2024-10-11 01:07:57.000 1981-03-01 2024-10-11 01:07:57 +4078 4078 4079 407.8 815.6 4078 1981-03-02 2024-10-11 01:07:58.000 1981-03-02 2024-10-11 01:07:58 +4079 4079 4080 407.9 815.8000000000001 4079 1981-03-03 2024-10-11 01:07:59.000 1981-03-03 2024-10-11 01:07:59 +4080 4080 4081 408 816 4080 1981-03-04 2024-10-11 01:08:00.000 1981-03-04 2024-10-11 01:08:00 +4081 4081 4082 408.1 816.2 4081 1981-03-05 2024-10-11 01:08:01.000 1981-03-05 2024-10-11 01:08:01 +4082 4082 4083 408.2 816.4000000000001 4082 1981-03-06 2024-10-11 01:08:02.000 1981-03-06 2024-10-11 01:08:02 +4083 4083 4084 408.3 816.6 4083 1981-03-07 2024-10-11 01:08:03.000 1981-03-07 2024-10-11 01:08:03 +4084 4084 4085 408.4 816.8000000000001 4084 1981-03-08 2024-10-11 01:08:04.000 1981-03-08 2024-10-11 01:08:04 +4085 4085 4086 408.5 817 4085 1981-03-09 2024-10-11 01:08:05.000 1981-03-09 2024-10-11 01:08:05 +4086 4086 4087 408.6 817.2 4086 1981-03-10 2024-10-11 01:08:06.000 1981-03-10 2024-10-11 01:08:06 +4087 4087 4088 408.7 817.4000000000001 4087 1981-03-11 2024-10-11 01:08:07.000 1981-03-11 2024-10-11 01:08:07 +4088 4088 4089 408.8 817.6 4088 1981-03-12 2024-10-11 01:08:08.000 1981-03-12 2024-10-11 01:08:08 +4089 4089 4090 408.9 817.8000000000001 4089 1981-03-13 2024-10-11 01:08:09.000 1981-03-13 2024-10-11 01:08:09 +4090 4090 4091 409 818 4090 1981-03-14 2024-10-11 01:08:10.000 1981-03-14 2024-10-11 01:08:10 +4091 4091 4092 409.1 818.2 4091 1981-03-15 2024-10-11 01:08:11.000 1981-03-15 2024-10-11 01:08:11 +4092 4092 4093 409.2 818.4000000000001 4092 1981-03-16 2024-10-11 01:08:12.000 1981-03-16 2024-10-11 01:08:12 +4093 4093 4094 409.3 818.6 4093 1981-03-17 2024-10-11 01:08:13.000 1981-03-17 2024-10-11 01:08:13 +4094 4094 4095 409.4 818.8000000000001 4094 1981-03-18 2024-10-11 01:08:14.000 1981-03-18 2024-10-11 01:08:14 +4095 4095 4096 409.5 819 4095 1981-03-19 2024-10-11 01:08:15.000 1981-03-19 2024-10-11 01:08:15 +4096 4096 4097 409.6 819.2 4096 1981-03-20 2024-10-11 01:08:16.000 1981-03-20 2024-10-11 01:08:16 +4097 4097 4098 409.7 819.4000000000001 4097 1981-03-21 2024-10-11 01:08:17.000 1981-03-21 2024-10-11 01:08:17 +4098 4098 4099 409.8 819.6 4098 1981-03-22 2024-10-11 01:08:18.000 1981-03-22 2024-10-11 01:08:18 +4099 4099 4100 409.9 819.8000000000001 4099 1981-03-23 2024-10-11 01:08:19.000 1981-03-23 2024-10-11 01:08:19 +4100 4100 4101 410 820 4100 1981-03-24 2024-10-11 01:08:20.000 1981-03-24 2024-10-11 01:08:20 +4101 4101 4102 410.1 820.2 4101 1981-03-25 2024-10-11 01:08:21.000 1981-03-25 2024-10-11 01:08:21 +4102 4102 4103 410.2 820.4000000000001 4102 1981-03-26 2024-10-11 01:08:22.000 1981-03-26 2024-10-11 01:08:22 +4103 4103 4104 410.3 820.6 4103 1981-03-27 2024-10-11 01:08:23.000 1981-03-27 2024-10-11 01:08:23 +4104 4104 4105 410.4 820.8000000000001 4104 1981-03-28 2024-10-11 01:08:24.000 1981-03-28 2024-10-11 01:08:24 +4105 4105 4106 410.5 821 4105 1981-03-29 2024-10-11 01:08:25.000 1981-03-29 2024-10-11 01:08:25 +4106 4106 4107 410.6 821.2 4106 1981-03-30 2024-10-11 01:08:26.000 1981-03-30 2024-10-11 01:08:26 +4107 4107 4108 410.7 821.4000000000001 4107 1981-03-31 2024-10-11 01:08:27.000 1981-03-31 2024-10-11 01:08:27 +4108 4108 4109 410.8 821.6 4108 1981-04-01 2024-10-11 01:08:28.000 1981-04-01 2024-10-11 01:08:28 +4109 4109 4110 410.9 821.8000000000001 4109 1981-04-02 2024-10-11 01:08:29.000 1981-04-02 2024-10-11 01:08:29 +4110 4110 4111 411 822 4110 1981-04-03 2024-10-11 01:08:30.000 1981-04-03 2024-10-11 01:08:30 +4111 4111 4112 411.1 822.2 4111 1981-04-04 2024-10-11 01:08:31.000 1981-04-04 2024-10-11 01:08:31 +4112 4112 4113 411.2 822.4000000000001 4112 1981-04-05 2024-10-11 01:08:32.000 1981-04-05 2024-10-11 01:08:32 +4113 4113 4114 411.3 822.6 4113 1981-04-06 2024-10-11 01:08:33.000 1981-04-06 2024-10-11 01:08:33 +4114 4114 4115 411.4 822.8000000000001 4114 1981-04-07 2024-10-11 01:08:34.000 1981-04-07 2024-10-11 01:08:34 +4115 4115 4116 411.5 823 4115 1981-04-08 2024-10-11 01:08:35.000 1981-04-08 2024-10-11 01:08:35 +4116 4116 4117 411.6 823.2 4116 1981-04-09 2024-10-11 01:08:36.000 1981-04-09 2024-10-11 01:08:36 +4117 4117 4118 411.7 823.4000000000001 4117 1981-04-10 2024-10-11 01:08:37.000 1981-04-10 2024-10-11 01:08:37 +4118 4118 4119 411.8 823.6 4118 1981-04-11 2024-10-11 01:08:38.000 1981-04-11 2024-10-11 01:08:38 +4119 4119 4120 411.9 823.8000000000001 4119 1981-04-12 2024-10-11 01:08:39.000 1981-04-12 2024-10-11 01:08:39 +4120 4120 4121 412 824 4120 1981-04-13 2024-10-11 01:08:40.000 1981-04-13 2024-10-11 01:08:40 +4121 4121 4122 412.1 824.2 4121 1981-04-14 2024-10-11 01:08:41.000 1981-04-14 2024-10-11 01:08:41 +4122 4122 4123 412.2 824.4000000000001 4122 1981-04-15 2024-10-11 01:08:42.000 1981-04-15 2024-10-11 01:08:42 +4123 4123 4124 412.3 824.6 4123 1981-04-16 2024-10-11 01:08:43.000 1981-04-16 2024-10-11 01:08:43 +4124 4124 4125 412.4 824.8000000000001 4124 1981-04-17 2024-10-11 01:08:44.000 1981-04-17 2024-10-11 01:08:44 +4125 4125 4126 412.5 825 4125 1981-04-18 2024-10-11 01:08:45.000 1981-04-18 2024-10-11 01:08:45 +4126 4126 4127 412.6 825.2 4126 1981-04-19 2024-10-11 01:08:46.000 1981-04-19 2024-10-11 01:08:46 +4127 4127 4128 412.7 825.4000000000001 4127 1981-04-20 2024-10-11 01:08:47.000 1981-04-20 2024-10-11 01:08:47 +4128 4128 4129 412.8 825.6 4128 1981-04-21 2024-10-11 01:08:48.000 1981-04-21 2024-10-11 01:08:48 +4129 4129 4130 412.9 825.8000000000001 4129 1981-04-22 2024-10-11 01:08:49.000 1981-04-22 2024-10-11 01:08:49 +4130 4130 4131 413 826 4130 1981-04-23 2024-10-11 01:08:50.000 1981-04-23 2024-10-11 01:08:50 +4131 4131 4132 413.1 826.2 4131 1981-04-24 2024-10-11 01:08:51.000 1981-04-24 2024-10-11 01:08:51 +4132 4132 4133 413.2 826.4000000000001 4132 1981-04-25 2024-10-11 01:08:52.000 1981-04-25 2024-10-11 01:08:52 +4133 4133 4134 413.3 826.6 4133 1981-04-26 2024-10-11 01:08:53.000 1981-04-26 2024-10-11 01:08:53 +4134 4134 4135 413.4 826.8000000000001 4134 1981-04-27 2024-10-11 01:08:54.000 1981-04-27 2024-10-11 01:08:54 +4135 4135 4136 413.5 827 4135 1981-04-28 2024-10-11 01:08:55.000 1981-04-28 2024-10-11 01:08:55 +4136 4136 4137 413.6 827.2 4136 1981-04-29 2024-10-11 01:08:56.000 1981-04-29 2024-10-11 01:08:56 +4137 4137 4138 413.7 827.4000000000001 4137 1981-04-30 2024-10-11 01:08:57.000 1981-04-30 2024-10-11 01:08:57 +4138 4138 4139 413.8 827.6 4138 1981-05-01 2024-10-11 01:08:58.000 1981-05-01 2024-10-11 01:08:58 +4139 4139 4140 413.9 827.8000000000001 4139 1981-05-02 2024-10-11 01:08:59.000 1981-05-02 2024-10-11 01:08:59 +4140 4140 4141 414 828 4140 1981-05-03 2024-10-11 01:09:00.000 1981-05-03 2024-10-11 01:09:00 +4141 4141 4142 414.1 828.2 4141 1981-05-04 2024-10-11 01:09:01.000 1981-05-04 2024-10-11 01:09:01 +4142 4142 4143 414.2 828.4000000000001 4142 1981-05-05 2024-10-11 01:09:02.000 1981-05-05 2024-10-11 01:09:02 +4143 4143 4144 414.3 828.6 4143 1981-05-06 2024-10-11 01:09:03.000 1981-05-06 2024-10-11 01:09:03 +4144 4144 4145 414.4 828.8000000000001 4144 1981-05-07 2024-10-11 01:09:04.000 1981-05-07 2024-10-11 01:09:04 +4145 4145 4146 414.5 829 4145 1981-05-08 2024-10-11 01:09:05.000 1981-05-08 2024-10-11 01:09:05 +4146 4146 4147 414.6 829.2 4146 1981-05-09 2024-10-11 01:09:06.000 1981-05-09 2024-10-11 01:09:06 +4147 4147 4148 414.7 829.4000000000001 4147 1981-05-10 2024-10-11 01:09:07.000 1981-05-10 2024-10-11 01:09:07 +4148 4148 4149 414.8 829.6 4148 1981-05-11 2024-10-11 01:09:08.000 1981-05-11 2024-10-11 01:09:08 +4149 4149 4150 414.9 829.8000000000001 4149 1981-05-12 2024-10-11 01:09:09.000 1981-05-12 2024-10-11 01:09:09 +4150 4150 4151 415 830 4150 1981-05-13 2024-10-11 01:09:10.000 1981-05-13 2024-10-11 01:09:10 +4151 4151 4152 415.1 830.2 4151 1981-05-14 2024-10-11 01:09:11.000 1981-05-14 2024-10-11 01:09:11 +4152 4152 4153 415.2 830.4000000000001 4152 1981-05-15 2024-10-11 01:09:12.000 1981-05-15 2024-10-11 01:09:12 +4153 4153 4154 415.3 830.6 4153 1981-05-16 2024-10-11 01:09:13.000 1981-05-16 2024-10-11 01:09:13 +4154 4154 4155 415.4 830.8000000000001 4154 1981-05-17 2024-10-11 01:09:14.000 1981-05-17 2024-10-11 01:09:14 +4155 4155 4156 415.5 831 4155 1981-05-18 2024-10-11 01:09:15.000 1981-05-18 2024-10-11 01:09:15 +4156 4156 4157 415.6 831.2 4156 1981-05-19 2024-10-11 01:09:16.000 1981-05-19 2024-10-11 01:09:16 +4157 4157 4158 415.7 831.4000000000001 4157 1981-05-20 2024-10-11 01:09:17.000 1981-05-20 2024-10-11 01:09:17 +4158 4158 4159 415.8 831.6 4158 1981-05-21 2024-10-11 01:09:18.000 1981-05-21 2024-10-11 01:09:18 +4159 4159 4160 415.9 831.8000000000001 4159 1981-05-22 2024-10-11 01:09:19.000 1981-05-22 2024-10-11 01:09:19 +4160 4160 4161 416 832 4160 1981-05-23 2024-10-11 01:09:20.000 1981-05-23 2024-10-11 01:09:20 +4161 4161 4162 416.1 832.2 4161 1981-05-24 2024-10-11 01:09:21.000 1981-05-24 2024-10-11 01:09:21 +4162 4162 4163 416.2 832.4000000000001 4162 1981-05-25 2024-10-11 01:09:22.000 1981-05-25 2024-10-11 01:09:22 +4163 4163 4164 416.3 832.6 4163 1981-05-26 2024-10-11 01:09:23.000 1981-05-26 2024-10-11 01:09:23 +4164 4164 4165 416.4 832.8000000000001 4164 1981-05-27 2024-10-11 01:09:24.000 1981-05-27 2024-10-11 01:09:24 +4165 4165 4166 416.5 833 4165 1981-05-28 2024-10-11 01:09:25.000 1981-05-28 2024-10-11 01:09:25 +4166 4166 4167 416.6 833.2 4166 1981-05-29 2024-10-11 01:09:26.000 1981-05-29 2024-10-11 01:09:26 +4167 4167 4168 416.7 833.4000000000001 4167 1981-05-30 2024-10-11 01:09:27.000 1981-05-30 2024-10-11 01:09:27 +4168 4168 4169 416.8 833.6 4168 1981-05-31 2024-10-11 01:09:28.000 1981-05-31 2024-10-11 01:09:28 +4169 4169 4170 416.9 833.8000000000001 4169 1981-06-01 2024-10-11 01:09:29.000 1981-06-01 2024-10-11 01:09:29 +4170 4170 4171 417 834 4170 1981-06-02 2024-10-11 01:09:30.000 1981-06-02 2024-10-11 01:09:30 +4171 4171 4172 417.1 834.2 4171 1981-06-03 2024-10-11 01:09:31.000 1981-06-03 2024-10-11 01:09:31 +4172 4172 4173 417.2 834.4000000000001 4172 1981-06-04 2024-10-11 01:09:32.000 1981-06-04 2024-10-11 01:09:32 +4173 4173 4174 417.3 834.6 4173 1981-06-05 2024-10-11 01:09:33.000 1981-06-05 2024-10-11 01:09:33 +4174 4174 4175 417.4 834.8000000000001 4174 1981-06-06 2024-10-11 01:09:34.000 1981-06-06 2024-10-11 01:09:34 +4175 4175 4176 417.5 835 4175 1981-06-07 2024-10-11 01:09:35.000 1981-06-07 2024-10-11 01:09:35 +4176 4176 4177 417.6 835.2 4176 1981-06-08 2024-10-11 01:09:36.000 1981-06-08 2024-10-11 01:09:36 +4177 4177 4178 417.7 835.4000000000001 4177 1981-06-09 2024-10-11 01:09:37.000 1981-06-09 2024-10-11 01:09:37 +4178 4178 4179 417.8 835.6 4178 1981-06-10 2024-10-11 01:09:38.000 1981-06-10 2024-10-11 01:09:38 +4179 4179 4180 417.9 835.8000000000001 4179 1981-06-11 2024-10-11 01:09:39.000 1981-06-11 2024-10-11 01:09:39 +4180 4180 4181 418 836 4180 1981-06-12 2024-10-11 01:09:40.000 1981-06-12 2024-10-11 01:09:40 +4181 4181 4182 418.1 836.2 4181 1981-06-13 2024-10-11 01:09:41.000 1981-06-13 2024-10-11 01:09:41 +4182 4182 4183 418.2 836.4000000000001 4182 1981-06-14 2024-10-11 01:09:42.000 1981-06-14 2024-10-11 01:09:42 +4183 4183 4184 418.3 836.6 4183 1981-06-15 2024-10-11 01:09:43.000 1981-06-15 2024-10-11 01:09:43 +4184 4184 4185 418.4 836.8000000000001 4184 1981-06-16 2024-10-11 01:09:44.000 1981-06-16 2024-10-11 01:09:44 +4185 4185 4186 418.5 837 4185 1981-06-17 2024-10-11 01:09:45.000 1981-06-17 2024-10-11 01:09:45 +4186 4186 4187 418.6 837.2 4186 1981-06-18 2024-10-11 01:09:46.000 1981-06-18 2024-10-11 01:09:46 +4187 4187 4188 418.7 837.4000000000001 4187 1981-06-19 2024-10-11 01:09:47.000 1981-06-19 2024-10-11 01:09:47 +4188 4188 4189 418.8 837.6 4188 1981-06-20 2024-10-11 01:09:48.000 1981-06-20 2024-10-11 01:09:48 +4189 4189 4190 418.9 837.8000000000001 4189 1981-06-21 2024-10-11 01:09:49.000 1981-06-21 2024-10-11 01:09:49 +4190 4190 4191 419 838 4190 1981-06-22 2024-10-11 01:09:50.000 1981-06-22 2024-10-11 01:09:50 +4191 4191 4192 419.1 838.2 4191 1981-06-23 2024-10-11 01:09:51.000 1981-06-23 2024-10-11 01:09:51 +4192 4192 4193 419.2 838.4000000000001 4192 1981-06-24 2024-10-11 01:09:52.000 1981-06-24 2024-10-11 01:09:52 +4193 4193 4194 419.3 838.6 4193 1981-06-25 2024-10-11 01:09:53.000 1981-06-25 2024-10-11 01:09:53 +4194 4194 4195 419.4 838.8000000000001 4194 1981-06-26 2024-10-11 01:09:54.000 1981-06-26 2024-10-11 01:09:54 +4195 4195 4196 419.5 839 4195 1981-06-27 2024-10-11 01:09:55.000 1981-06-27 2024-10-11 01:09:55 +4196 4196 4197 419.6 839.2 4196 1981-06-28 2024-10-11 01:09:56.000 1981-06-28 2024-10-11 01:09:56 +4197 4197 4198 419.7 839.4000000000001 4197 1981-06-29 2024-10-11 01:09:57.000 1981-06-29 2024-10-11 01:09:57 +4198 4198 4199 419.8 839.6 4198 1981-06-30 2024-10-11 01:09:58.000 1981-06-30 2024-10-11 01:09:58 +4199 4199 4200 419.9 839.8000000000001 4199 1981-07-01 2024-10-11 01:09:59.000 1981-07-01 2024-10-11 01:09:59 +4200 4200 4201 420 840 4200 1981-07-02 2024-10-11 01:10:00.000 1981-07-02 2024-10-11 01:10:00 +4201 4201 4202 420.1 840.2 4201 1981-07-03 2024-10-11 01:10:01.000 1981-07-03 2024-10-11 01:10:01 +4202 4202 4203 420.2 840.4000000000001 4202 1981-07-04 2024-10-11 01:10:02.000 1981-07-04 2024-10-11 01:10:02 +4203 4203 4204 420.3 840.6 4203 1981-07-05 2024-10-11 01:10:03.000 1981-07-05 2024-10-11 01:10:03 +4204 4204 4205 420.4 840.8000000000001 4204 1981-07-06 2024-10-11 01:10:04.000 1981-07-06 2024-10-11 01:10:04 +4205 4205 4206 420.5 841 4205 1981-07-07 2024-10-11 01:10:05.000 1981-07-07 2024-10-11 01:10:05 +4206 4206 4207 420.6 841.2 4206 1981-07-08 2024-10-11 01:10:06.000 1981-07-08 2024-10-11 01:10:06 +4207 4207 4208 420.7 841.4000000000001 4207 1981-07-09 2024-10-11 01:10:07.000 1981-07-09 2024-10-11 01:10:07 +4208 4208 4209 420.8 841.6 4208 1981-07-10 2024-10-11 01:10:08.000 1981-07-10 2024-10-11 01:10:08 +4209 4209 4210 420.9 841.8000000000001 4209 1981-07-11 2024-10-11 01:10:09.000 1981-07-11 2024-10-11 01:10:09 +4210 4210 4211 421 842 4210 1981-07-12 2024-10-11 01:10:10.000 1981-07-12 2024-10-11 01:10:10 +4211 4211 4212 421.1 842.2 4211 1981-07-13 2024-10-11 01:10:11.000 1981-07-13 2024-10-11 01:10:11 +4212 4212 4213 421.2 842.4000000000001 4212 1981-07-14 2024-10-11 01:10:12.000 1981-07-14 2024-10-11 01:10:12 +4213 4213 4214 421.3 842.6 4213 1981-07-15 2024-10-11 01:10:13.000 1981-07-15 2024-10-11 01:10:13 +4214 4214 4215 421.4 842.8000000000001 4214 1981-07-16 2024-10-11 01:10:14.000 1981-07-16 2024-10-11 01:10:14 +4215 4215 4216 421.5 843 4215 1981-07-17 2024-10-11 01:10:15.000 1981-07-17 2024-10-11 01:10:15 +4216 4216 4217 421.6 843.2 4216 1981-07-18 2024-10-11 01:10:16.000 1981-07-18 2024-10-11 01:10:16 +4217 4217 4218 421.7 843.4000000000001 4217 1981-07-19 2024-10-11 01:10:17.000 1981-07-19 2024-10-11 01:10:17 +4218 4218 4219 421.8 843.6 4218 1981-07-20 2024-10-11 01:10:18.000 1981-07-20 2024-10-11 01:10:18 +4219 4219 4220 421.9 843.8000000000001 4219 1981-07-21 2024-10-11 01:10:19.000 1981-07-21 2024-10-11 01:10:19 +4220 4220 4221 422 844 4220 1981-07-22 2024-10-11 01:10:20.000 1981-07-22 2024-10-11 01:10:20 +4221 4221 4222 422.1 844.2 4221 1981-07-23 2024-10-11 01:10:21.000 1981-07-23 2024-10-11 01:10:21 +4222 4222 4223 422.2 844.4000000000001 4222 1981-07-24 2024-10-11 01:10:22.000 1981-07-24 2024-10-11 01:10:22 +4223 4223 4224 422.3 844.6 4223 1981-07-25 2024-10-11 01:10:23.000 1981-07-25 2024-10-11 01:10:23 +4224 4224 4225 422.4 844.8000000000001 4224 1981-07-26 2024-10-11 01:10:24.000 1981-07-26 2024-10-11 01:10:24 +4225 4225 4226 422.5 845 4225 1981-07-27 2024-10-11 01:10:25.000 1981-07-27 2024-10-11 01:10:25 +4226 4226 4227 422.6 845.2 4226 1981-07-28 2024-10-11 01:10:26.000 1981-07-28 2024-10-11 01:10:26 +4227 4227 4228 422.7 845.4000000000001 4227 1981-07-29 2024-10-11 01:10:27.000 1981-07-29 2024-10-11 01:10:27 +4228 4228 4229 422.8 845.6 4228 1981-07-30 2024-10-11 01:10:28.000 1981-07-30 2024-10-11 01:10:28 +4229 4229 4230 422.9 845.8000000000001 4229 1981-07-31 2024-10-11 01:10:29.000 1981-07-31 2024-10-11 01:10:29 +4230 4230 4231 423 846 4230 1981-08-01 2024-10-11 01:10:30.000 1981-08-01 2024-10-11 01:10:30 +4231 4231 4232 423.1 846.2 4231 1981-08-02 2024-10-11 01:10:31.000 1981-08-02 2024-10-11 01:10:31 +4232 4232 4233 423.2 846.4000000000001 4232 1981-08-03 2024-10-11 01:10:32.000 1981-08-03 2024-10-11 01:10:32 +4233 4233 4234 423.3 846.6 4233 1981-08-04 2024-10-11 01:10:33.000 1981-08-04 2024-10-11 01:10:33 +4234 4234 4235 423.4 846.8000000000001 4234 1981-08-05 2024-10-11 01:10:34.000 1981-08-05 2024-10-11 01:10:34 +4235 4235 4236 423.5 847 4235 1981-08-06 2024-10-11 01:10:35.000 1981-08-06 2024-10-11 01:10:35 +4236 4236 4237 423.6 847.2 4236 1981-08-07 2024-10-11 01:10:36.000 1981-08-07 2024-10-11 01:10:36 +4237 4237 4238 423.7 847.4000000000001 4237 1981-08-08 2024-10-11 01:10:37.000 1981-08-08 2024-10-11 01:10:37 +4238 4238 4239 423.8 847.6 4238 1981-08-09 2024-10-11 01:10:38.000 1981-08-09 2024-10-11 01:10:38 +4239 4239 4240 423.9 847.8000000000001 4239 1981-08-10 2024-10-11 01:10:39.000 1981-08-10 2024-10-11 01:10:39 +4240 4240 4241 424 848 4240 1981-08-11 2024-10-11 01:10:40.000 1981-08-11 2024-10-11 01:10:40 +4241 4241 4242 424.1 848.2 4241 1981-08-12 2024-10-11 01:10:41.000 1981-08-12 2024-10-11 01:10:41 +4242 4242 4243 424.2 848.4000000000001 4242 1981-08-13 2024-10-11 01:10:42.000 1981-08-13 2024-10-11 01:10:42 +4243 4243 4244 424.3 848.6 4243 1981-08-14 2024-10-11 01:10:43.000 1981-08-14 2024-10-11 01:10:43 +4244 4244 4245 424.4 848.8000000000001 4244 1981-08-15 2024-10-11 01:10:44.000 1981-08-15 2024-10-11 01:10:44 +4245 4245 4246 424.5 849 4245 1981-08-16 2024-10-11 01:10:45.000 1981-08-16 2024-10-11 01:10:45 +4246 4246 4247 424.6 849.2 4246 1981-08-17 2024-10-11 01:10:46.000 1981-08-17 2024-10-11 01:10:46 +4247 4247 4248 424.7 849.4000000000001 4247 1981-08-18 2024-10-11 01:10:47.000 1981-08-18 2024-10-11 01:10:47 +4248 4248 4249 424.8 849.6 4248 1981-08-19 2024-10-11 01:10:48.000 1981-08-19 2024-10-11 01:10:48 +4249 4249 4250 424.9 849.8000000000001 4249 1981-08-20 2024-10-11 01:10:49.000 1981-08-20 2024-10-11 01:10:49 +4250 4250 4251 425 850 4250 1981-08-21 2024-10-11 01:10:50.000 1981-08-21 2024-10-11 01:10:50 +4251 4251 4252 425.1 850.2 4251 1981-08-22 2024-10-11 01:10:51.000 1981-08-22 2024-10-11 01:10:51 +4252 4252 4253 425.2 850.4000000000001 4252 1981-08-23 2024-10-11 01:10:52.000 1981-08-23 2024-10-11 01:10:52 +4253 4253 4254 425.3 850.6 4253 1981-08-24 2024-10-11 01:10:53.000 1981-08-24 2024-10-11 01:10:53 +4254 4254 4255 425.4 850.8000000000001 4254 1981-08-25 2024-10-11 01:10:54.000 1981-08-25 2024-10-11 01:10:54 +4255 4255 4256 425.5 851 4255 1981-08-26 2024-10-11 01:10:55.000 1981-08-26 2024-10-11 01:10:55 +4256 4256 4257 425.6 851.2 4256 1981-08-27 2024-10-11 01:10:56.000 1981-08-27 2024-10-11 01:10:56 +4257 4257 4258 425.7 851.4000000000001 4257 1981-08-28 2024-10-11 01:10:57.000 1981-08-28 2024-10-11 01:10:57 +4258 4258 4259 425.8 851.6 4258 1981-08-29 2024-10-11 01:10:58.000 1981-08-29 2024-10-11 01:10:58 +4259 4259 4260 425.9 851.8000000000001 4259 1981-08-30 2024-10-11 01:10:59.000 1981-08-30 2024-10-11 01:10:59 +4260 4260 4261 426 852 4260 1981-08-31 2024-10-11 01:11:00.000 1981-08-31 2024-10-11 01:11:00 +4261 4261 4262 426.1 852.2 4261 1981-09-01 2024-10-11 01:11:01.000 1981-09-01 2024-10-11 01:11:01 +4262 4262 4263 426.2 852.4000000000001 4262 1981-09-02 2024-10-11 01:11:02.000 1981-09-02 2024-10-11 01:11:02 +4263 4263 4264 426.3 852.6 4263 1981-09-03 2024-10-11 01:11:03.000 1981-09-03 2024-10-11 01:11:03 +4264 4264 4265 426.4 852.8000000000001 4264 1981-09-04 2024-10-11 01:11:04.000 1981-09-04 2024-10-11 01:11:04 +4265 4265 4266 426.5 853 4265 1981-09-05 2024-10-11 01:11:05.000 1981-09-05 2024-10-11 01:11:05 +4266 4266 4267 426.6 853.2 4266 1981-09-06 2024-10-11 01:11:06.000 1981-09-06 2024-10-11 01:11:06 +4267 4267 4268 426.7 853.4000000000001 4267 1981-09-07 2024-10-11 01:11:07.000 1981-09-07 2024-10-11 01:11:07 +4268 4268 4269 426.8 853.6 4268 1981-09-08 2024-10-11 01:11:08.000 1981-09-08 2024-10-11 01:11:08 +4269 4269 4270 426.9 853.8000000000001 4269 1981-09-09 2024-10-11 01:11:09.000 1981-09-09 2024-10-11 01:11:09 +4270 4270 4271 427 854 4270 1981-09-10 2024-10-11 01:11:10.000 1981-09-10 2024-10-11 01:11:10 +4271 4271 4272 427.1 854.2 4271 1981-09-11 2024-10-11 01:11:11.000 1981-09-11 2024-10-11 01:11:11 +4272 4272 4273 427.2 854.4000000000001 4272 1981-09-12 2024-10-11 01:11:12.000 1981-09-12 2024-10-11 01:11:12 +4273 4273 4274 427.3 854.6 4273 1981-09-13 2024-10-11 01:11:13.000 1981-09-13 2024-10-11 01:11:13 +4274 4274 4275 427.4 854.8000000000001 4274 1981-09-14 2024-10-11 01:11:14.000 1981-09-14 2024-10-11 01:11:14 +4275 4275 4276 427.5 855 4275 1981-09-15 2024-10-11 01:11:15.000 1981-09-15 2024-10-11 01:11:15 +4276 4276 4277 427.6 855.2 4276 1981-09-16 2024-10-11 01:11:16.000 1981-09-16 2024-10-11 01:11:16 +4277 4277 4278 427.7 855.4000000000001 4277 1981-09-17 2024-10-11 01:11:17.000 1981-09-17 2024-10-11 01:11:17 +4278 4278 4279 427.8 855.6 4278 1981-09-18 2024-10-11 01:11:18.000 1981-09-18 2024-10-11 01:11:18 +4279 4279 4280 427.9 855.8000000000001 4279 1981-09-19 2024-10-11 01:11:19.000 1981-09-19 2024-10-11 01:11:19 +4280 4280 4281 428 856 4280 1981-09-20 2024-10-11 01:11:20.000 1981-09-20 2024-10-11 01:11:20 +4281 4281 4282 428.1 856.2 4281 1981-09-21 2024-10-11 01:11:21.000 1981-09-21 2024-10-11 01:11:21 +4282 4282 4283 428.2 856.4000000000001 4282 1981-09-22 2024-10-11 01:11:22.000 1981-09-22 2024-10-11 01:11:22 +4283 4283 4284 428.3 856.6 4283 1981-09-23 2024-10-11 01:11:23.000 1981-09-23 2024-10-11 01:11:23 +4284 4284 4285 428.4 856.8000000000001 4284 1981-09-24 2024-10-11 01:11:24.000 1981-09-24 2024-10-11 01:11:24 +4285 4285 4286 428.5 857 4285 1981-09-25 2024-10-11 01:11:25.000 1981-09-25 2024-10-11 01:11:25 +4286 4286 4287 428.6 857.2 4286 1981-09-26 2024-10-11 01:11:26.000 1981-09-26 2024-10-11 01:11:26 +4287 4287 4288 428.7 857.4000000000001 4287 1981-09-27 2024-10-11 01:11:27.000 1981-09-27 2024-10-11 01:11:27 +4288 4288 4289 428.8 857.6 4288 1981-09-28 2024-10-11 01:11:28.000 1981-09-28 2024-10-11 01:11:28 +4289 4289 4290 428.9 857.8000000000001 4289 1981-09-29 2024-10-11 01:11:29.000 1981-09-29 2024-10-11 01:11:29 +4290 4290 4291 429 858 4290 1981-09-30 2024-10-11 01:11:30.000 1981-09-30 2024-10-11 01:11:30 +4291 4291 4292 429.1 858.2 4291 1981-10-01 2024-10-11 01:11:31.000 1981-10-01 2024-10-11 01:11:31 +4292 4292 4293 429.2 858.4000000000001 4292 1981-10-02 2024-10-11 01:11:32.000 1981-10-02 2024-10-11 01:11:32 +4293 4293 4294 429.3 858.6 4293 1981-10-03 2024-10-11 01:11:33.000 1981-10-03 2024-10-11 01:11:33 +4294 4294 4295 429.4 858.8000000000001 4294 1981-10-04 2024-10-11 01:11:34.000 1981-10-04 2024-10-11 01:11:34 +4295 4295 4296 429.5 859 4295 1981-10-05 2024-10-11 01:11:35.000 1981-10-05 2024-10-11 01:11:35 +4296 4296 4297 429.6 859.2 4296 1981-10-06 2024-10-11 01:11:36.000 1981-10-06 2024-10-11 01:11:36 +4297 4297 4298 429.7 859.4000000000001 4297 1981-10-07 2024-10-11 01:11:37.000 1981-10-07 2024-10-11 01:11:37 +4298 4298 4299 429.8 859.6 4298 1981-10-08 2024-10-11 01:11:38.000 1981-10-08 2024-10-11 01:11:38 +4299 4299 4300 429.9 859.8000000000001 4299 1981-10-09 2024-10-11 01:11:39.000 1981-10-09 2024-10-11 01:11:39 +4300 4300 4301 430 860 4300 1981-10-10 2024-10-11 01:11:40.000 1981-10-10 2024-10-11 01:11:40 +4301 4301 4302 430.1 860.2 4301 1981-10-11 2024-10-11 01:11:41.000 1981-10-11 2024-10-11 01:11:41 +4302 4302 4303 430.2 860.4000000000001 4302 1981-10-12 2024-10-11 01:11:42.000 1981-10-12 2024-10-11 01:11:42 +4303 4303 4304 430.3 860.6 4303 1981-10-13 2024-10-11 01:11:43.000 1981-10-13 2024-10-11 01:11:43 +4304 4304 4305 430.4 860.8000000000001 4304 1981-10-14 2024-10-11 01:11:44.000 1981-10-14 2024-10-11 01:11:44 +4305 4305 4306 430.5 861 4305 1981-10-15 2024-10-11 01:11:45.000 1981-10-15 2024-10-11 01:11:45 +4306 4306 4307 430.6 861.2 4306 1981-10-16 2024-10-11 01:11:46.000 1981-10-16 2024-10-11 01:11:46 +4307 4307 4308 430.7 861.4000000000001 4307 1981-10-17 2024-10-11 01:11:47.000 1981-10-17 2024-10-11 01:11:47 +4308 4308 4309 430.8 861.6 4308 1981-10-18 2024-10-11 01:11:48.000 1981-10-18 2024-10-11 01:11:48 +4309 4309 4310 430.9 861.8000000000001 4309 1981-10-19 2024-10-11 01:11:49.000 1981-10-19 2024-10-11 01:11:49 +4310 4310 4311 431 862 4310 1981-10-20 2024-10-11 01:11:50.000 1981-10-20 2024-10-11 01:11:50 +4311 4311 4312 431.1 862.2 4311 1981-10-21 2024-10-11 01:11:51.000 1981-10-21 2024-10-11 01:11:51 +4312 4312 4313 431.2 862.4000000000001 4312 1981-10-22 2024-10-11 01:11:52.000 1981-10-22 2024-10-11 01:11:52 +4313 4313 4314 431.3 862.6 4313 1981-10-23 2024-10-11 01:11:53.000 1981-10-23 2024-10-11 01:11:53 +4314 4314 4315 431.4 862.8000000000001 4314 1981-10-24 2024-10-11 01:11:54.000 1981-10-24 2024-10-11 01:11:54 +4315 4315 4316 431.5 863 4315 1981-10-25 2024-10-11 01:11:55.000 1981-10-25 2024-10-11 01:11:55 +4316 4316 4317 431.6 863.2 4316 1981-10-26 2024-10-11 01:11:56.000 1981-10-26 2024-10-11 01:11:56 +4317 4317 4318 431.7 863.4000000000001 4317 1981-10-27 2024-10-11 01:11:57.000 1981-10-27 2024-10-11 01:11:57 +4318 4318 4319 431.8 863.6 4318 1981-10-28 2024-10-11 01:11:58.000 1981-10-28 2024-10-11 01:11:58 +4319 4319 4320 431.9 863.8000000000001 4319 1981-10-29 2024-10-11 01:11:59.000 1981-10-29 2024-10-11 01:11:59 +4320 4320 4321 432 864 4320 1981-10-30 2024-10-11 01:12:00.000 1981-10-30 2024-10-11 01:12:00 +4321 4321 4322 432.1 864.2 4321 1981-10-31 2024-10-11 01:12:01.000 1981-10-31 2024-10-11 01:12:01 +4322 4322 4323 432.2 864.4000000000001 4322 1981-11-01 2024-10-11 01:12:02.000 1981-11-01 2024-10-11 01:12:02 +4323 4323 4324 432.3 864.6 4323 1981-11-02 2024-10-11 01:12:03.000 1981-11-02 2024-10-11 01:12:03 +4324 4324 4325 432.4 864.8000000000001 4324 1981-11-03 2024-10-11 01:12:04.000 1981-11-03 2024-10-11 01:12:04 +4325 4325 4326 432.5 865 4325 1981-11-04 2024-10-11 01:12:05.000 1981-11-04 2024-10-11 01:12:05 +4326 4326 4327 432.6 865.2 4326 1981-11-05 2024-10-11 01:12:06.000 1981-11-05 2024-10-11 01:12:06 +4327 4327 4328 432.7 865.4000000000001 4327 1981-11-06 2024-10-11 01:12:07.000 1981-11-06 2024-10-11 01:12:07 +4328 4328 4329 432.8 865.6 4328 1981-11-07 2024-10-11 01:12:08.000 1981-11-07 2024-10-11 01:12:08 +4329 4329 4330 432.9 865.8000000000001 4329 1981-11-08 2024-10-11 01:12:09.000 1981-11-08 2024-10-11 01:12:09 +4330 4330 4331 433 866 4330 1981-11-09 2024-10-11 01:12:10.000 1981-11-09 2024-10-11 01:12:10 +4331 4331 4332 433.1 866.2 4331 1981-11-10 2024-10-11 01:12:11.000 1981-11-10 2024-10-11 01:12:11 +4332 4332 4333 433.2 866.4000000000001 4332 1981-11-11 2024-10-11 01:12:12.000 1981-11-11 2024-10-11 01:12:12 +4333 4333 4334 433.3 866.6 4333 1981-11-12 2024-10-11 01:12:13.000 1981-11-12 2024-10-11 01:12:13 +4334 4334 4335 433.4 866.8000000000001 4334 1981-11-13 2024-10-11 01:12:14.000 1981-11-13 2024-10-11 01:12:14 +4335 4335 4336 433.5 867 4335 1981-11-14 2024-10-11 01:12:15.000 1981-11-14 2024-10-11 01:12:15 +4336 4336 4337 433.6 867.2 4336 1981-11-15 2024-10-11 01:12:16.000 1981-11-15 2024-10-11 01:12:16 +4337 4337 4338 433.7 867.4000000000001 4337 1981-11-16 2024-10-11 01:12:17.000 1981-11-16 2024-10-11 01:12:17 +4338 4338 4339 433.8 867.6 4338 1981-11-17 2024-10-11 01:12:18.000 1981-11-17 2024-10-11 01:12:18 +4339 4339 4340 433.9 867.8000000000001 4339 1981-11-18 2024-10-11 01:12:19.000 1981-11-18 2024-10-11 01:12:19 +4340 4340 4341 434 868 4340 1981-11-19 2024-10-11 01:12:20.000 1981-11-19 2024-10-11 01:12:20 +4341 4341 4342 434.1 868.2 4341 1981-11-20 2024-10-11 01:12:21.000 1981-11-20 2024-10-11 01:12:21 +4342 4342 4343 434.2 868.4000000000001 4342 1981-11-21 2024-10-11 01:12:22.000 1981-11-21 2024-10-11 01:12:22 +4343 4343 4344 434.3 868.6 4343 1981-11-22 2024-10-11 01:12:23.000 1981-11-22 2024-10-11 01:12:23 +4344 4344 4345 434.4 868.8000000000001 4344 1981-11-23 2024-10-11 01:12:24.000 1981-11-23 2024-10-11 01:12:24 +4345 4345 4346 434.5 869 4345 1981-11-24 2024-10-11 01:12:25.000 1981-11-24 2024-10-11 01:12:25 +4346 4346 4347 434.6 869.2 4346 1981-11-25 2024-10-11 01:12:26.000 1981-11-25 2024-10-11 01:12:26 +4347 4347 4348 434.7 869.4000000000001 4347 1981-11-26 2024-10-11 01:12:27.000 1981-11-26 2024-10-11 01:12:27 +4348 4348 4349 434.8 869.6 4348 1981-11-27 2024-10-11 01:12:28.000 1981-11-27 2024-10-11 01:12:28 +4349 4349 4350 434.9 869.8000000000001 4349 1981-11-28 2024-10-11 01:12:29.000 1981-11-28 2024-10-11 01:12:29 +4350 4350 4351 435 870 4350 1981-11-29 2024-10-11 01:12:30.000 1981-11-29 2024-10-11 01:12:30 +4351 4351 4352 435.1 870.2 4351 1981-11-30 2024-10-11 01:12:31.000 1981-11-30 2024-10-11 01:12:31 +4352 4352 4353 435.2 870.4000000000001 4352 1981-12-01 2024-10-11 01:12:32.000 1981-12-01 2024-10-11 01:12:32 +4353 4353 4354 435.3 870.6 4353 1981-12-02 2024-10-11 01:12:33.000 1981-12-02 2024-10-11 01:12:33 +4354 4354 4355 435.4 870.8000000000001 4354 1981-12-03 2024-10-11 01:12:34.000 1981-12-03 2024-10-11 01:12:34 +4355 4355 4356 435.5 871 4355 1981-12-04 2024-10-11 01:12:35.000 1981-12-04 2024-10-11 01:12:35 +4356 4356 4357 435.6 871.2 4356 1981-12-05 2024-10-11 01:12:36.000 1981-12-05 2024-10-11 01:12:36 +4357 4357 4358 435.7 871.4000000000001 4357 1981-12-06 2024-10-11 01:12:37.000 1981-12-06 2024-10-11 01:12:37 +4358 4358 4359 435.8 871.6 4358 1981-12-07 2024-10-11 01:12:38.000 1981-12-07 2024-10-11 01:12:38 +4359 4359 4360 435.9 871.8000000000001 4359 1981-12-08 2024-10-11 01:12:39.000 1981-12-08 2024-10-11 01:12:39 +4360 4360 4361 436 872 4360 1981-12-09 2024-10-11 01:12:40.000 1981-12-09 2024-10-11 01:12:40 +4361 4361 4362 436.1 872.2 4361 1981-12-10 2024-10-11 01:12:41.000 1981-12-10 2024-10-11 01:12:41 +4362 4362 4363 436.2 872.4000000000001 4362 1981-12-11 2024-10-11 01:12:42.000 1981-12-11 2024-10-11 01:12:42 +4363 4363 4364 436.3 872.6 4363 1981-12-12 2024-10-11 01:12:43.000 1981-12-12 2024-10-11 01:12:43 +4364 4364 4365 436.4 872.8000000000001 4364 1981-12-13 2024-10-11 01:12:44.000 1981-12-13 2024-10-11 01:12:44 +4365 4365 4366 436.5 873 4365 1981-12-14 2024-10-11 01:12:45.000 1981-12-14 2024-10-11 01:12:45 +4366 4366 4367 436.6 873.2 4366 1981-12-15 2024-10-11 01:12:46.000 1981-12-15 2024-10-11 01:12:46 +4367 4367 4368 436.7 873.4000000000001 4367 1981-12-16 2024-10-11 01:12:47.000 1981-12-16 2024-10-11 01:12:47 +4368 4368 4369 436.8 873.6 4368 1981-12-17 2024-10-11 01:12:48.000 1981-12-17 2024-10-11 01:12:48 +4369 4369 4370 436.9 873.8000000000001 4369 1981-12-18 2024-10-11 01:12:49.000 1981-12-18 2024-10-11 01:12:49 +4370 4370 4371 437 874 4370 1981-12-19 2024-10-11 01:12:50.000 1981-12-19 2024-10-11 01:12:50 +4371 4371 4372 437.1 874.2 4371 1981-12-20 2024-10-11 01:12:51.000 1981-12-20 2024-10-11 01:12:51 +4372 4372 4373 437.2 874.4000000000001 4372 1981-12-21 2024-10-11 01:12:52.000 1981-12-21 2024-10-11 01:12:52 +4373 4373 4374 437.3 874.6 4373 1981-12-22 2024-10-11 01:12:53.000 1981-12-22 2024-10-11 01:12:53 +4374 4374 4375 437.4 874.8000000000001 4374 1981-12-23 2024-10-11 01:12:54.000 1981-12-23 2024-10-11 01:12:54 +4375 4375 4376 437.5 875 4375 1981-12-24 2024-10-11 01:12:55.000 1981-12-24 2024-10-11 01:12:55 +4376 4376 4377 437.6 875.2 4376 1981-12-25 2024-10-11 01:12:56.000 1981-12-25 2024-10-11 01:12:56 +4377 4377 4378 437.7 875.4000000000001 4377 1981-12-26 2024-10-11 01:12:57.000 1981-12-26 2024-10-11 01:12:57 +4378 4378 4379 437.8 875.6 4378 1981-12-27 2024-10-11 01:12:58.000 1981-12-27 2024-10-11 01:12:58 +4379 4379 4380 437.9 875.8000000000001 4379 1981-12-28 2024-10-11 01:12:59.000 1981-12-28 2024-10-11 01:12:59 +4380 4380 4381 438 876 4380 1981-12-29 2024-10-11 01:13:00.000 1981-12-29 2024-10-11 01:13:00 +4381 4381 4382 438.1 876.2 4381 1981-12-30 2024-10-11 01:13:01.000 1981-12-30 2024-10-11 01:13:01 +4382 4382 4383 438.2 876.4000000000001 4382 1981-12-31 2024-10-11 01:13:02.000 1981-12-31 2024-10-11 01:13:02 +4383 4383 4384 438.3 876.6 4383 1982-01-01 2024-10-11 01:13:03.000 1982-01-01 2024-10-11 01:13:03 +4384 4384 4385 438.4 876.8000000000001 4384 1982-01-02 2024-10-11 01:13:04.000 1982-01-02 2024-10-11 01:13:04 +4385 4385 4386 438.5 877 4385 1982-01-03 2024-10-11 01:13:05.000 1982-01-03 2024-10-11 01:13:05 +4386 4386 4387 438.6 877.2 4386 1982-01-04 2024-10-11 01:13:06.000 1982-01-04 2024-10-11 01:13:06 +4387 4387 4388 438.7 877.4000000000001 4387 1982-01-05 2024-10-11 01:13:07.000 1982-01-05 2024-10-11 01:13:07 +4388 4388 4389 438.8 877.6 4388 1982-01-06 2024-10-11 01:13:08.000 1982-01-06 2024-10-11 01:13:08 +4389 4389 4390 438.9 877.8000000000001 4389 1982-01-07 2024-10-11 01:13:09.000 1982-01-07 2024-10-11 01:13:09 +4390 4390 4391 439 878 4390 1982-01-08 2024-10-11 01:13:10.000 1982-01-08 2024-10-11 01:13:10 +4391 4391 4392 439.1 878.2 4391 1982-01-09 2024-10-11 01:13:11.000 1982-01-09 2024-10-11 01:13:11 +4392 4392 4393 439.2 878.4000000000001 4392 1982-01-10 2024-10-11 01:13:12.000 1982-01-10 2024-10-11 01:13:12 +4393 4393 4394 439.3 878.6 4393 1982-01-11 2024-10-11 01:13:13.000 1982-01-11 2024-10-11 01:13:13 +4394 4394 4395 439.4 878.8000000000001 4394 1982-01-12 2024-10-11 01:13:14.000 1982-01-12 2024-10-11 01:13:14 +4395 4395 4396 439.5 879 4395 1982-01-13 2024-10-11 01:13:15.000 1982-01-13 2024-10-11 01:13:15 +4396 4396 4397 439.6 879.2 4396 1982-01-14 2024-10-11 01:13:16.000 1982-01-14 2024-10-11 01:13:16 +4397 4397 4398 439.7 879.4000000000001 4397 1982-01-15 2024-10-11 01:13:17.000 1982-01-15 2024-10-11 01:13:17 +4398 4398 4399 439.8 879.6 4398 1982-01-16 2024-10-11 01:13:18.000 1982-01-16 2024-10-11 01:13:18 +4399 4399 4400 439.9 879.8000000000001 4399 1982-01-17 2024-10-11 01:13:19.000 1982-01-17 2024-10-11 01:13:19 +4400 4400 4401 440 880 4400 1982-01-18 2024-10-11 01:13:20.000 1982-01-18 2024-10-11 01:13:20 +4401 4401 4402 440.1 880.2 4401 1982-01-19 2024-10-11 01:13:21.000 1982-01-19 2024-10-11 01:13:21 +4402 4402 4403 440.2 880.4000000000001 4402 1982-01-20 2024-10-11 01:13:22.000 1982-01-20 2024-10-11 01:13:22 +4403 4403 4404 440.3 880.6 4403 1982-01-21 2024-10-11 01:13:23.000 1982-01-21 2024-10-11 01:13:23 +4404 4404 4405 440.4 880.8000000000001 4404 1982-01-22 2024-10-11 01:13:24.000 1982-01-22 2024-10-11 01:13:24 +4405 4405 4406 440.5 881 4405 1982-01-23 2024-10-11 01:13:25.000 1982-01-23 2024-10-11 01:13:25 +4406 4406 4407 440.6 881.2 4406 1982-01-24 2024-10-11 01:13:26.000 1982-01-24 2024-10-11 01:13:26 +4407 4407 4408 440.7 881.4000000000001 4407 1982-01-25 2024-10-11 01:13:27.000 1982-01-25 2024-10-11 01:13:27 +4408 4408 4409 440.8 881.6 4408 1982-01-26 2024-10-11 01:13:28.000 1982-01-26 2024-10-11 01:13:28 +4409 4409 4410 440.9 881.8000000000001 4409 1982-01-27 2024-10-11 01:13:29.000 1982-01-27 2024-10-11 01:13:29 +4410 4410 4411 441 882 4410 1982-01-28 2024-10-11 01:13:30.000 1982-01-28 2024-10-11 01:13:30 +4411 4411 4412 441.1 882.2 4411 1982-01-29 2024-10-11 01:13:31.000 1982-01-29 2024-10-11 01:13:31 +4412 4412 4413 441.2 882.4000000000001 4412 1982-01-30 2024-10-11 01:13:32.000 1982-01-30 2024-10-11 01:13:32 +4413 4413 4414 441.3 882.6 4413 1982-01-31 2024-10-11 01:13:33.000 1982-01-31 2024-10-11 01:13:33 +4414 4414 4415 441.4 882.8000000000001 4414 1982-02-01 2024-10-11 01:13:34.000 1982-02-01 2024-10-11 01:13:34 +4415 4415 4416 441.5 883 4415 1982-02-02 2024-10-11 01:13:35.000 1982-02-02 2024-10-11 01:13:35 +4416 4416 4417 441.6 883.2 4416 1982-02-03 2024-10-11 01:13:36.000 1982-02-03 2024-10-11 01:13:36 +4417 4417 4418 441.7 883.4000000000001 4417 1982-02-04 2024-10-11 01:13:37.000 1982-02-04 2024-10-11 01:13:37 +4418 4418 4419 441.8 883.6 4418 1982-02-05 2024-10-11 01:13:38.000 1982-02-05 2024-10-11 01:13:38 +4419 4419 4420 441.9 883.8000000000001 4419 1982-02-06 2024-10-11 01:13:39.000 1982-02-06 2024-10-11 01:13:39 +4420 4420 4421 442 884 4420 1982-02-07 2024-10-11 01:13:40.000 1982-02-07 2024-10-11 01:13:40 +4421 4421 4422 442.1 884.2 4421 1982-02-08 2024-10-11 01:13:41.000 1982-02-08 2024-10-11 01:13:41 +4422 4422 4423 442.2 884.4000000000001 4422 1982-02-09 2024-10-11 01:13:42.000 1982-02-09 2024-10-11 01:13:42 +4423 4423 4424 442.3 884.6 4423 1982-02-10 2024-10-11 01:13:43.000 1982-02-10 2024-10-11 01:13:43 +4424 4424 4425 442.4 884.8000000000001 4424 1982-02-11 2024-10-11 01:13:44.000 1982-02-11 2024-10-11 01:13:44 +4425 4425 4426 442.5 885 4425 1982-02-12 2024-10-11 01:13:45.000 1982-02-12 2024-10-11 01:13:45 +4426 4426 4427 442.6 885.2 4426 1982-02-13 2024-10-11 01:13:46.000 1982-02-13 2024-10-11 01:13:46 +4427 4427 4428 442.7 885.4000000000001 4427 1982-02-14 2024-10-11 01:13:47.000 1982-02-14 2024-10-11 01:13:47 +4428 4428 4429 442.8 885.6 4428 1982-02-15 2024-10-11 01:13:48.000 1982-02-15 2024-10-11 01:13:48 +4429 4429 4430 442.9 885.8000000000001 4429 1982-02-16 2024-10-11 01:13:49.000 1982-02-16 2024-10-11 01:13:49 +4430 4430 4431 443 886 4430 1982-02-17 2024-10-11 01:13:50.000 1982-02-17 2024-10-11 01:13:50 +4431 4431 4432 443.1 886.2 4431 1982-02-18 2024-10-11 01:13:51.000 1982-02-18 2024-10-11 01:13:51 +4432 4432 4433 443.2 886.4000000000001 4432 1982-02-19 2024-10-11 01:13:52.000 1982-02-19 2024-10-11 01:13:52 +4433 4433 4434 443.3 886.6 4433 1982-02-20 2024-10-11 01:13:53.000 1982-02-20 2024-10-11 01:13:53 +4434 4434 4435 443.4 886.8000000000001 4434 1982-02-21 2024-10-11 01:13:54.000 1982-02-21 2024-10-11 01:13:54 +4435 4435 4436 443.5 887 4435 1982-02-22 2024-10-11 01:13:55.000 1982-02-22 2024-10-11 01:13:55 +4436 4436 4437 443.6 887.2 4436 1982-02-23 2024-10-11 01:13:56.000 1982-02-23 2024-10-11 01:13:56 +4437 4437 4438 443.7 887.4000000000001 4437 1982-02-24 2024-10-11 01:13:57.000 1982-02-24 2024-10-11 01:13:57 +4438 4438 4439 443.8 887.6 4438 1982-02-25 2024-10-11 01:13:58.000 1982-02-25 2024-10-11 01:13:58 +4439 4439 4440 443.9 887.8000000000001 4439 1982-02-26 2024-10-11 01:13:59.000 1982-02-26 2024-10-11 01:13:59 +4440 4440 4441 444 888 4440 1982-02-27 2024-10-11 01:14:00.000 1982-02-27 2024-10-11 01:14:00 +4441 4441 4442 444.1 888.2 4441 1982-02-28 2024-10-11 01:14:01.000 1982-02-28 2024-10-11 01:14:01 +4442 4442 4443 444.2 888.4000000000001 4442 1982-03-01 2024-10-11 01:14:02.000 1982-03-01 2024-10-11 01:14:02 +4443 4443 4444 444.3 888.6 4443 1982-03-02 2024-10-11 01:14:03.000 1982-03-02 2024-10-11 01:14:03 +4444 4444 4445 444.4 888.8000000000001 4444 1982-03-03 2024-10-11 01:14:04.000 1982-03-03 2024-10-11 01:14:04 +4445 4445 4446 444.5 889 4445 1982-03-04 2024-10-11 01:14:05.000 1982-03-04 2024-10-11 01:14:05 +4446 4446 4447 444.6 889.2 4446 1982-03-05 2024-10-11 01:14:06.000 1982-03-05 2024-10-11 01:14:06 +4447 4447 4448 444.7 889.4000000000001 4447 1982-03-06 2024-10-11 01:14:07.000 1982-03-06 2024-10-11 01:14:07 +4448 4448 4449 444.8 889.6 4448 1982-03-07 2024-10-11 01:14:08.000 1982-03-07 2024-10-11 01:14:08 +4449 4449 4450 444.9 889.8000000000001 4449 1982-03-08 2024-10-11 01:14:09.000 1982-03-08 2024-10-11 01:14:09 +4450 4450 4451 445 890 4450 1982-03-09 2024-10-11 01:14:10.000 1982-03-09 2024-10-11 01:14:10 +4451 4451 4452 445.1 890.2 4451 1982-03-10 2024-10-11 01:14:11.000 1982-03-10 2024-10-11 01:14:11 +4452 4452 4453 445.2 890.4000000000001 4452 1982-03-11 2024-10-11 01:14:12.000 1982-03-11 2024-10-11 01:14:12 +4453 4453 4454 445.3 890.6 4453 1982-03-12 2024-10-11 01:14:13.000 1982-03-12 2024-10-11 01:14:13 +4454 4454 4455 445.4 890.8000000000001 4454 1982-03-13 2024-10-11 01:14:14.000 1982-03-13 2024-10-11 01:14:14 +4455 4455 4456 445.5 891 4455 1982-03-14 2024-10-11 01:14:15.000 1982-03-14 2024-10-11 01:14:15 +4456 4456 4457 445.6 891.2 4456 1982-03-15 2024-10-11 01:14:16.000 1982-03-15 2024-10-11 01:14:16 +4457 4457 4458 445.7 891.4000000000001 4457 1982-03-16 2024-10-11 01:14:17.000 1982-03-16 2024-10-11 01:14:17 +4458 4458 4459 445.8 891.6 4458 1982-03-17 2024-10-11 01:14:18.000 1982-03-17 2024-10-11 01:14:18 +4459 4459 4460 445.9 891.8000000000001 4459 1982-03-18 2024-10-11 01:14:19.000 1982-03-18 2024-10-11 01:14:19 +4460 4460 4461 446 892 4460 1982-03-19 2024-10-11 01:14:20.000 1982-03-19 2024-10-11 01:14:20 +4461 4461 4462 446.1 892.2 4461 1982-03-20 2024-10-11 01:14:21.000 1982-03-20 2024-10-11 01:14:21 +4462 4462 4463 446.2 892.4000000000001 4462 1982-03-21 2024-10-11 01:14:22.000 1982-03-21 2024-10-11 01:14:22 +4463 4463 4464 446.3 892.6 4463 1982-03-22 2024-10-11 01:14:23.000 1982-03-22 2024-10-11 01:14:23 +4464 4464 4465 446.4 892.8000000000001 4464 1982-03-23 2024-10-11 01:14:24.000 1982-03-23 2024-10-11 01:14:24 +4465 4465 4466 446.5 893 4465 1982-03-24 2024-10-11 01:14:25.000 1982-03-24 2024-10-11 01:14:25 +4466 4466 4467 446.6 893.2 4466 1982-03-25 2024-10-11 01:14:26.000 1982-03-25 2024-10-11 01:14:26 +4467 4467 4468 446.7 893.4000000000001 4467 1982-03-26 2024-10-11 01:14:27.000 1982-03-26 2024-10-11 01:14:27 +4468 4468 4469 446.8 893.6 4468 1982-03-27 2024-10-11 01:14:28.000 1982-03-27 2024-10-11 01:14:28 +4469 4469 4470 446.9 893.8000000000001 4469 1982-03-28 2024-10-11 01:14:29.000 1982-03-28 2024-10-11 01:14:29 +4470 4470 4471 447 894 4470 1982-03-29 2024-10-11 01:14:30.000 1982-03-29 2024-10-11 01:14:30 +4471 4471 4472 447.1 894.2 4471 1982-03-30 2024-10-11 01:14:31.000 1982-03-30 2024-10-11 01:14:31 +4472 4472 4473 447.2 894.4000000000001 4472 1982-03-31 2024-10-11 01:14:32.000 1982-03-31 2024-10-11 01:14:32 +4473 4473 4474 447.3 894.6 4473 1982-04-01 2024-10-11 01:14:33.000 1982-04-01 2024-10-11 01:14:33 +4474 4474 4475 447.4 894.8000000000001 4474 1982-04-02 2024-10-11 01:14:34.000 1982-04-02 2024-10-11 01:14:34 +4475 4475 4476 447.5 895 4475 1982-04-03 2024-10-11 01:14:35.000 1982-04-03 2024-10-11 01:14:35 +4476 4476 4477 447.6 895.2 4476 1982-04-04 2024-10-11 01:14:36.000 1982-04-04 2024-10-11 01:14:36 +4477 4477 4478 447.7 895.4000000000001 4477 1982-04-05 2024-10-11 01:14:37.000 1982-04-05 2024-10-11 01:14:37 +4478 4478 4479 447.8 895.6 4478 1982-04-06 2024-10-11 01:14:38.000 1982-04-06 2024-10-11 01:14:38 +4479 4479 4480 447.9 895.8000000000001 4479 1982-04-07 2024-10-11 01:14:39.000 1982-04-07 2024-10-11 01:14:39 +4480 4480 4481 448 896 4480 1982-04-08 2024-10-11 01:14:40.000 1982-04-08 2024-10-11 01:14:40 +4481 4481 4482 448.1 896.2 4481 1982-04-09 2024-10-11 01:14:41.000 1982-04-09 2024-10-11 01:14:41 +4482 4482 4483 448.2 896.4000000000001 4482 1982-04-10 2024-10-11 01:14:42.000 1982-04-10 2024-10-11 01:14:42 +4483 4483 4484 448.3 896.6 4483 1982-04-11 2024-10-11 01:14:43.000 1982-04-11 2024-10-11 01:14:43 +4484 4484 4485 448.4 896.8000000000001 4484 1982-04-12 2024-10-11 01:14:44.000 1982-04-12 2024-10-11 01:14:44 +4485 4485 4486 448.5 897 4485 1982-04-13 2024-10-11 01:14:45.000 1982-04-13 2024-10-11 01:14:45 +4486 4486 4487 448.6 897.2 4486 1982-04-14 2024-10-11 01:14:46.000 1982-04-14 2024-10-11 01:14:46 +4487 4487 4488 448.7 897.4000000000001 4487 1982-04-15 2024-10-11 01:14:47.000 1982-04-15 2024-10-11 01:14:47 +4488 4488 4489 448.8 897.6 4488 1982-04-16 2024-10-11 01:14:48.000 1982-04-16 2024-10-11 01:14:48 +4489 4489 4490 448.9 897.8000000000001 4489 1982-04-17 2024-10-11 01:14:49.000 1982-04-17 2024-10-11 01:14:49 +4490 4490 4491 449 898 4490 1982-04-18 2024-10-11 01:14:50.000 1982-04-18 2024-10-11 01:14:50 +4491 4491 4492 449.1 898.2 4491 1982-04-19 2024-10-11 01:14:51.000 1982-04-19 2024-10-11 01:14:51 +4492 4492 4493 449.2 898.4000000000001 4492 1982-04-20 2024-10-11 01:14:52.000 1982-04-20 2024-10-11 01:14:52 +4493 4493 4494 449.3 898.6 4493 1982-04-21 2024-10-11 01:14:53.000 1982-04-21 2024-10-11 01:14:53 +4494 4494 4495 449.4 898.8000000000001 4494 1982-04-22 2024-10-11 01:14:54.000 1982-04-22 2024-10-11 01:14:54 +4495 4495 4496 449.5 899 4495 1982-04-23 2024-10-11 01:14:55.000 1982-04-23 2024-10-11 01:14:55 +4496 4496 4497 449.6 899.2 4496 1982-04-24 2024-10-11 01:14:56.000 1982-04-24 2024-10-11 01:14:56 +4497 4497 4498 449.7 899.4000000000001 4497 1982-04-25 2024-10-11 01:14:57.000 1982-04-25 2024-10-11 01:14:57 +4498 4498 4499 449.8 899.6 4498 1982-04-26 2024-10-11 01:14:58.000 1982-04-26 2024-10-11 01:14:58 +4499 4499 4500 449.9 899.8000000000001 4499 1982-04-27 2024-10-11 01:14:59.000 1982-04-27 2024-10-11 01:14:59 +4500 4500 4501 450 900 4500 1982-04-28 2024-10-11 01:15:00.000 1982-04-28 2024-10-11 01:15:00 +4501 4501 4502 450.1 900.2 4501 1982-04-29 2024-10-11 01:15:01.000 1982-04-29 2024-10-11 01:15:01 +4502 4502 4503 450.2 900.4000000000001 4502 1982-04-30 2024-10-11 01:15:02.000 1982-04-30 2024-10-11 01:15:02 +4503 4503 4504 450.3 900.6 4503 1982-05-01 2024-10-11 01:15:03.000 1982-05-01 2024-10-11 01:15:03 +4504 4504 4505 450.4 900.8000000000001 4504 1982-05-02 2024-10-11 01:15:04.000 1982-05-02 2024-10-11 01:15:04 +4505 4505 4506 450.5 901 4505 1982-05-03 2024-10-11 01:15:05.000 1982-05-03 2024-10-11 01:15:05 +4506 4506 4507 450.6 901.2 4506 1982-05-04 2024-10-11 01:15:06.000 1982-05-04 2024-10-11 01:15:06 +4507 4507 4508 450.7 901.4000000000001 4507 1982-05-05 2024-10-11 01:15:07.000 1982-05-05 2024-10-11 01:15:07 +4508 4508 4509 450.8 901.6 4508 1982-05-06 2024-10-11 01:15:08.000 1982-05-06 2024-10-11 01:15:08 +4509 4509 4510 450.9 901.8000000000001 4509 1982-05-07 2024-10-11 01:15:09.000 1982-05-07 2024-10-11 01:15:09 +4510 4510 4511 451 902 4510 1982-05-08 2024-10-11 01:15:10.000 1982-05-08 2024-10-11 01:15:10 +4511 4511 4512 451.1 902.2 4511 1982-05-09 2024-10-11 01:15:11.000 1982-05-09 2024-10-11 01:15:11 +4512 4512 4513 451.2 902.4000000000001 4512 1982-05-10 2024-10-11 01:15:12.000 1982-05-10 2024-10-11 01:15:12 +4513 4513 4514 451.3 902.6 4513 1982-05-11 2024-10-11 01:15:13.000 1982-05-11 2024-10-11 01:15:13 +4514 4514 4515 451.4 902.8000000000001 4514 1982-05-12 2024-10-11 01:15:14.000 1982-05-12 2024-10-11 01:15:14 +4515 4515 4516 451.5 903 4515 1982-05-13 2024-10-11 01:15:15.000 1982-05-13 2024-10-11 01:15:15 +4516 4516 4517 451.6 903.2 4516 1982-05-14 2024-10-11 01:15:16.000 1982-05-14 2024-10-11 01:15:16 +4517 4517 4518 451.7 903.4000000000001 4517 1982-05-15 2024-10-11 01:15:17.000 1982-05-15 2024-10-11 01:15:17 +4518 4518 4519 451.8 903.6 4518 1982-05-16 2024-10-11 01:15:18.000 1982-05-16 2024-10-11 01:15:18 +4519 4519 4520 451.9 903.8000000000001 4519 1982-05-17 2024-10-11 01:15:19.000 1982-05-17 2024-10-11 01:15:19 +4520 4520 4521 452 904 4520 1982-05-18 2024-10-11 01:15:20.000 1982-05-18 2024-10-11 01:15:20 +4521 4521 4522 452.1 904.2 4521 1982-05-19 2024-10-11 01:15:21.000 1982-05-19 2024-10-11 01:15:21 +4522 4522 4523 452.2 904.4000000000001 4522 1982-05-20 2024-10-11 01:15:22.000 1982-05-20 2024-10-11 01:15:22 +4523 4523 4524 452.3 904.6 4523 1982-05-21 2024-10-11 01:15:23.000 1982-05-21 2024-10-11 01:15:23 +4524 4524 4525 452.4 904.8000000000001 4524 1982-05-22 2024-10-11 01:15:24.000 1982-05-22 2024-10-11 01:15:24 +4525 4525 4526 452.5 905 4525 1982-05-23 2024-10-11 01:15:25.000 1982-05-23 2024-10-11 01:15:25 +4526 4526 4527 452.6 905.2 4526 1982-05-24 2024-10-11 01:15:26.000 1982-05-24 2024-10-11 01:15:26 +4527 4527 4528 452.7 905.4000000000001 4527 1982-05-25 2024-10-11 01:15:27.000 1982-05-25 2024-10-11 01:15:27 +4528 4528 4529 452.8 905.6 4528 1982-05-26 2024-10-11 01:15:28.000 1982-05-26 2024-10-11 01:15:28 +4529 4529 4530 452.9 905.8000000000001 4529 1982-05-27 2024-10-11 01:15:29.000 1982-05-27 2024-10-11 01:15:29 +4530 4530 4531 453 906 4530 1982-05-28 2024-10-11 01:15:30.000 1982-05-28 2024-10-11 01:15:30 +4531 4531 4532 453.1 906.2 4531 1982-05-29 2024-10-11 01:15:31.000 1982-05-29 2024-10-11 01:15:31 +4532 4532 4533 453.2 906.4000000000001 4532 1982-05-30 2024-10-11 01:15:32.000 1982-05-30 2024-10-11 01:15:32 +4533 4533 4534 453.3 906.6 4533 1982-05-31 2024-10-11 01:15:33.000 1982-05-31 2024-10-11 01:15:33 +4534 4534 4535 453.4 906.8000000000001 4534 1982-06-01 2024-10-11 01:15:34.000 1982-06-01 2024-10-11 01:15:34 +4535 4535 4536 453.5 907 4535 1982-06-02 2024-10-11 01:15:35.000 1982-06-02 2024-10-11 01:15:35 +4536 4536 4537 453.6 907.2 4536 1982-06-03 2024-10-11 01:15:36.000 1982-06-03 2024-10-11 01:15:36 +4537 4537 4538 453.7 907.4000000000001 4537 1982-06-04 2024-10-11 01:15:37.000 1982-06-04 2024-10-11 01:15:37 +4538 4538 4539 453.8 907.6 4538 1982-06-05 2024-10-11 01:15:38.000 1982-06-05 2024-10-11 01:15:38 +4539 4539 4540 453.9 907.8000000000001 4539 1982-06-06 2024-10-11 01:15:39.000 1982-06-06 2024-10-11 01:15:39 +4540 4540 4541 454 908 4540 1982-06-07 2024-10-11 01:15:40.000 1982-06-07 2024-10-11 01:15:40 +4541 4541 4542 454.1 908.2 4541 1982-06-08 2024-10-11 01:15:41.000 1982-06-08 2024-10-11 01:15:41 +4542 4542 4543 454.2 908.4000000000001 4542 1982-06-09 2024-10-11 01:15:42.000 1982-06-09 2024-10-11 01:15:42 +4543 4543 4544 454.3 908.6 4543 1982-06-10 2024-10-11 01:15:43.000 1982-06-10 2024-10-11 01:15:43 +4544 4544 4545 454.4 908.8000000000001 4544 1982-06-11 2024-10-11 01:15:44.000 1982-06-11 2024-10-11 01:15:44 +4545 4545 4546 454.5 909 4545 1982-06-12 2024-10-11 01:15:45.000 1982-06-12 2024-10-11 01:15:45 +4546 4546 4547 454.6 909.2 4546 1982-06-13 2024-10-11 01:15:46.000 1982-06-13 2024-10-11 01:15:46 +4547 4547 4548 454.7 909.4000000000001 4547 1982-06-14 2024-10-11 01:15:47.000 1982-06-14 2024-10-11 01:15:47 +4548 4548 4549 454.8 909.6 4548 1982-06-15 2024-10-11 01:15:48.000 1982-06-15 2024-10-11 01:15:48 +4549 4549 4550 454.9 909.8000000000001 4549 1982-06-16 2024-10-11 01:15:49.000 1982-06-16 2024-10-11 01:15:49 +4550 4550 4551 455 910 4550 1982-06-17 2024-10-11 01:15:50.000 1982-06-17 2024-10-11 01:15:50 +4551 4551 4552 455.1 910.2 4551 1982-06-18 2024-10-11 01:15:51.000 1982-06-18 2024-10-11 01:15:51 +4552 4552 4553 455.2 910.4000000000001 4552 1982-06-19 2024-10-11 01:15:52.000 1982-06-19 2024-10-11 01:15:52 +4553 4553 4554 455.3 910.6 4553 1982-06-20 2024-10-11 01:15:53.000 1982-06-20 2024-10-11 01:15:53 +4554 4554 4555 455.4 910.8000000000001 4554 1982-06-21 2024-10-11 01:15:54.000 1982-06-21 2024-10-11 01:15:54 +4555 4555 4556 455.5 911 4555 1982-06-22 2024-10-11 01:15:55.000 1982-06-22 2024-10-11 01:15:55 +4556 4556 4557 455.6 911.2 4556 1982-06-23 2024-10-11 01:15:56.000 1982-06-23 2024-10-11 01:15:56 +4557 4557 4558 455.7 911.4000000000001 4557 1982-06-24 2024-10-11 01:15:57.000 1982-06-24 2024-10-11 01:15:57 +4558 4558 4559 455.8 911.6 4558 1982-06-25 2024-10-11 01:15:58.000 1982-06-25 2024-10-11 01:15:58 +4559 4559 4560 455.9 911.8000000000001 4559 1982-06-26 2024-10-11 01:15:59.000 1982-06-26 2024-10-11 01:15:59 +4560 4560 4561 456 912 4560 1982-06-27 2024-10-11 01:16:00.000 1982-06-27 2024-10-11 01:16:00 +4561 4561 4562 456.1 912.2 4561 1982-06-28 2024-10-11 01:16:01.000 1982-06-28 2024-10-11 01:16:01 +4562 4562 4563 456.2 912.4000000000001 4562 1982-06-29 2024-10-11 01:16:02.000 1982-06-29 2024-10-11 01:16:02 +4563 4563 4564 456.3 912.6 4563 1982-06-30 2024-10-11 01:16:03.000 1982-06-30 2024-10-11 01:16:03 +4564 4564 4565 456.4 912.8000000000001 4564 1982-07-01 2024-10-11 01:16:04.000 1982-07-01 2024-10-11 01:16:04 +4565 4565 4566 456.5 913 4565 1982-07-02 2024-10-11 01:16:05.000 1982-07-02 2024-10-11 01:16:05 +4566 4566 4567 456.6 913.2 4566 1982-07-03 2024-10-11 01:16:06.000 1982-07-03 2024-10-11 01:16:06 +4567 4567 4568 456.7 913.4000000000001 4567 1982-07-04 2024-10-11 01:16:07.000 1982-07-04 2024-10-11 01:16:07 +4568 4568 4569 456.8 913.6 4568 1982-07-05 2024-10-11 01:16:08.000 1982-07-05 2024-10-11 01:16:08 +4569 4569 4570 456.9 913.8000000000001 4569 1982-07-06 2024-10-11 01:16:09.000 1982-07-06 2024-10-11 01:16:09 +4570 4570 4571 457 914 4570 1982-07-07 2024-10-11 01:16:10.000 1982-07-07 2024-10-11 01:16:10 +4571 4571 4572 457.1 914.2 4571 1982-07-08 2024-10-11 01:16:11.000 1982-07-08 2024-10-11 01:16:11 +4572 4572 4573 457.2 914.4000000000001 4572 1982-07-09 2024-10-11 01:16:12.000 1982-07-09 2024-10-11 01:16:12 +4573 4573 4574 457.3 914.6 4573 1982-07-10 2024-10-11 01:16:13.000 1982-07-10 2024-10-11 01:16:13 +4574 4574 4575 457.4 914.8000000000001 4574 1982-07-11 2024-10-11 01:16:14.000 1982-07-11 2024-10-11 01:16:14 +4575 4575 4576 457.5 915 4575 1982-07-12 2024-10-11 01:16:15.000 1982-07-12 2024-10-11 01:16:15 +4576 4576 4577 457.6 915.2 4576 1982-07-13 2024-10-11 01:16:16.000 1982-07-13 2024-10-11 01:16:16 +4577 4577 4578 457.7 915.4000000000001 4577 1982-07-14 2024-10-11 01:16:17.000 1982-07-14 2024-10-11 01:16:17 +4578 4578 4579 457.8 915.6 4578 1982-07-15 2024-10-11 01:16:18.000 1982-07-15 2024-10-11 01:16:18 +4579 4579 4580 457.9 915.8000000000001 4579 1982-07-16 2024-10-11 01:16:19.000 1982-07-16 2024-10-11 01:16:19 +4580 4580 4581 458 916 4580 1982-07-17 2024-10-11 01:16:20.000 1982-07-17 2024-10-11 01:16:20 +4581 4581 4582 458.1 916.2 4581 1982-07-18 2024-10-11 01:16:21.000 1982-07-18 2024-10-11 01:16:21 +4582 4582 4583 458.2 916.4000000000001 4582 1982-07-19 2024-10-11 01:16:22.000 1982-07-19 2024-10-11 01:16:22 +4583 4583 4584 458.3 916.6 4583 1982-07-20 2024-10-11 01:16:23.000 1982-07-20 2024-10-11 01:16:23 +4584 4584 4585 458.4 916.8000000000001 4584 1982-07-21 2024-10-11 01:16:24.000 1982-07-21 2024-10-11 01:16:24 +4585 4585 4586 458.5 917 4585 1982-07-22 2024-10-11 01:16:25.000 1982-07-22 2024-10-11 01:16:25 +4586 4586 4587 458.6 917.2 4586 1982-07-23 2024-10-11 01:16:26.000 1982-07-23 2024-10-11 01:16:26 +4587 4587 4588 458.7 917.4000000000001 4587 1982-07-24 2024-10-11 01:16:27.000 1982-07-24 2024-10-11 01:16:27 +4588 4588 4589 458.8 917.6 4588 1982-07-25 2024-10-11 01:16:28.000 1982-07-25 2024-10-11 01:16:28 +4589 4589 4590 458.9 917.8000000000001 4589 1982-07-26 2024-10-11 01:16:29.000 1982-07-26 2024-10-11 01:16:29 +4590 4590 4591 459 918 4590 1982-07-27 2024-10-11 01:16:30.000 1982-07-27 2024-10-11 01:16:30 +4591 4591 4592 459.1 918.2 4591 1982-07-28 2024-10-11 01:16:31.000 1982-07-28 2024-10-11 01:16:31 +4592 4592 4593 459.2 918.4000000000001 4592 1982-07-29 2024-10-11 01:16:32.000 1982-07-29 2024-10-11 01:16:32 +4593 4593 4594 459.3 918.6 4593 1982-07-30 2024-10-11 01:16:33.000 1982-07-30 2024-10-11 01:16:33 +4594 4594 4595 459.4 918.8000000000001 4594 1982-07-31 2024-10-11 01:16:34.000 1982-07-31 2024-10-11 01:16:34 +4595 4595 4596 459.5 919 4595 1982-08-01 2024-10-11 01:16:35.000 1982-08-01 2024-10-11 01:16:35 +4596 4596 4597 459.6 919.2 4596 1982-08-02 2024-10-11 01:16:36.000 1982-08-02 2024-10-11 01:16:36 +4597 4597 4598 459.7 919.4000000000001 4597 1982-08-03 2024-10-11 01:16:37.000 1982-08-03 2024-10-11 01:16:37 +4598 4598 4599 459.8 919.6 4598 1982-08-04 2024-10-11 01:16:38.000 1982-08-04 2024-10-11 01:16:38 +4599 4599 4600 459.9 919.8000000000001 4599 1982-08-05 2024-10-11 01:16:39.000 1982-08-05 2024-10-11 01:16:39 +4600 4600 4601 460 920 4600 1982-08-06 2024-10-11 01:16:40.000 1982-08-06 2024-10-11 01:16:40 +4601 4601 4602 460.1 920.2 4601 1982-08-07 2024-10-11 01:16:41.000 1982-08-07 2024-10-11 01:16:41 +4602 4602 4603 460.2 920.4000000000001 4602 1982-08-08 2024-10-11 01:16:42.000 1982-08-08 2024-10-11 01:16:42 +4603 4603 4604 460.3 920.6 4603 1982-08-09 2024-10-11 01:16:43.000 1982-08-09 2024-10-11 01:16:43 +4604 4604 4605 460.4 920.8000000000001 4604 1982-08-10 2024-10-11 01:16:44.000 1982-08-10 2024-10-11 01:16:44 +4605 4605 4606 460.5 921 4605 1982-08-11 2024-10-11 01:16:45.000 1982-08-11 2024-10-11 01:16:45 +4606 4606 4607 460.6 921.2 4606 1982-08-12 2024-10-11 01:16:46.000 1982-08-12 2024-10-11 01:16:46 +4607 4607 4608 460.7 921.4000000000001 4607 1982-08-13 2024-10-11 01:16:47.000 1982-08-13 2024-10-11 01:16:47 +4608 4608 4609 460.8 921.6 4608 1982-08-14 2024-10-11 01:16:48.000 1982-08-14 2024-10-11 01:16:48 +4609 4609 4610 460.9 921.8000000000001 4609 1982-08-15 2024-10-11 01:16:49.000 1982-08-15 2024-10-11 01:16:49 +4610 4610 4611 461 922 4610 1982-08-16 2024-10-11 01:16:50.000 1982-08-16 2024-10-11 01:16:50 +4611 4611 4612 461.1 922.2 4611 1982-08-17 2024-10-11 01:16:51.000 1982-08-17 2024-10-11 01:16:51 +4612 4612 4613 461.2 922.4000000000001 4612 1982-08-18 2024-10-11 01:16:52.000 1982-08-18 2024-10-11 01:16:52 +4613 4613 4614 461.3 922.6 4613 1982-08-19 2024-10-11 01:16:53.000 1982-08-19 2024-10-11 01:16:53 +4614 4614 4615 461.4 922.8000000000001 4614 1982-08-20 2024-10-11 01:16:54.000 1982-08-20 2024-10-11 01:16:54 +4615 4615 4616 461.5 923 4615 1982-08-21 2024-10-11 01:16:55.000 1982-08-21 2024-10-11 01:16:55 +4616 4616 4617 461.6 923.2 4616 1982-08-22 2024-10-11 01:16:56.000 1982-08-22 2024-10-11 01:16:56 +4617 4617 4618 461.7 923.4000000000001 4617 1982-08-23 2024-10-11 01:16:57.000 1982-08-23 2024-10-11 01:16:57 +4618 4618 4619 461.8 923.6 4618 1982-08-24 2024-10-11 01:16:58.000 1982-08-24 2024-10-11 01:16:58 +4619 4619 4620 461.9 923.8000000000001 4619 1982-08-25 2024-10-11 01:16:59.000 1982-08-25 2024-10-11 01:16:59 +4620 4620 4621 462 924 4620 1982-08-26 2024-10-11 01:17:00.000 1982-08-26 2024-10-11 01:17:00 +4621 4621 4622 462.1 924.2 4621 1982-08-27 2024-10-11 01:17:01.000 1982-08-27 2024-10-11 01:17:01 +4622 4622 4623 462.2 924.4000000000001 4622 1982-08-28 2024-10-11 01:17:02.000 1982-08-28 2024-10-11 01:17:02 +4623 4623 4624 462.3 924.6 4623 1982-08-29 2024-10-11 01:17:03.000 1982-08-29 2024-10-11 01:17:03 +4624 4624 4625 462.4 924.8000000000001 4624 1982-08-30 2024-10-11 01:17:04.000 1982-08-30 2024-10-11 01:17:04 +4625 4625 4626 462.5 925 4625 1982-08-31 2024-10-11 01:17:05.000 1982-08-31 2024-10-11 01:17:05 +4626 4626 4627 462.6 925.2 4626 1982-09-01 2024-10-11 01:17:06.000 1982-09-01 2024-10-11 01:17:06 +4627 4627 4628 462.7 925.4000000000001 4627 1982-09-02 2024-10-11 01:17:07.000 1982-09-02 2024-10-11 01:17:07 +4628 4628 4629 462.8 925.6 4628 1982-09-03 2024-10-11 01:17:08.000 1982-09-03 2024-10-11 01:17:08 +4629 4629 4630 462.9 925.8000000000001 4629 1982-09-04 2024-10-11 01:17:09.000 1982-09-04 2024-10-11 01:17:09 +4630 4630 4631 463 926 4630 1982-09-05 2024-10-11 01:17:10.000 1982-09-05 2024-10-11 01:17:10 +4631 4631 4632 463.1 926.2 4631 1982-09-06 2024-10-11 01:17:11.000 1982-09-06 2024-10-11 01:17:11 +4632 4632 4633 463.2 926.4000000000001 4632 1982-09-07 2024-10-11 01:17:12.000 1982-09-07 2024-10-11 01:17:12 +4633 4633 4634 463.3 926.6 4633 1982-09-08 2024-10-11 01:17:13.000 1982-09-08 2024-10-11 01:17:13 +4634 4634 4635 463.4 926.8000000000001 4634 1982-09-09 2024-10-11 01:17:14.000 1982-09-09 2024-10-11 01:17:14 +4635 4635 4636 463.5 927 4635 1982-09-10 2024-10-11 01:17:15.000 1982-09-10 2024-10-11 01:17:15 +4636 4636 4637 463.6 927.2 4636 1982-09-11 2024-10-11 01:17:16.000 1982-09-11 2024-10-11 01:17:16 +4637 4637 4638 463.7 927.4000000000001 4637 1982-09-12 2024-10-11 01:17:17.000 1982-09-12 2024-10-11 01:17:17 +4638 4638 4639 463.8 927.6 4638 1982-09-13 2024-10-11 01:17:18.000 1982-09-13 2024-10-11 01:17:18 +4639 4639 4640 463.9 927.8000000000001 4639 1982-09-14 2024-10-11 01:17:19.000 1982-09-14 2024-10-11 01:17:19 +4640 4640 4641 464 928 4640 1982-09-15 2024-10-11 01:17:20.000 1982-09-15 2024-10-11 01:17:20 +4641 4641 4642 464.1 928.2 4641 1982-09-16 2024-10-11 01:17:21.000 1982-09-16 2024-10-11 01:17:21 +4642 4642 4643 464.2 928.4000000000001 4642 1982-09-17 2024-10-11 01:17:22.000 1982-09-17 2024-10-11 01:17:22 +4643 4643 4644 464.3 928.6 4643 1982-09-18 2024-10-11 01:17:23.000 1982-09-18 2024-10-11 01:17:23 +4644 4644 4645 464.4 928.8000000000001 4644 1982-09-19 2024-10-11 01:17:24.000 1982-09-19 2024-10-11 01:17:24 +4645 4645 4646 464.5 929 4645 1982-09-20 2024-10-11 01:17:25.000 1982-09-20 2024-10-11 01:17:25 +4646 4646 4647 464.6 929.2 4646 1982-09-21 2024-10-11 01:17:26.000 1982-09-21 2024-10-11 01:17:26 +4647 4647 4648 464.7 929.4000000000001 4647 1982-09-22 2024-10-11 01:17:27.000 1982-09-22 2024-10-11 01:17:27 +4648 4648 4649 464.8 929.6 4648 1982-09-23 2024-10-11 01:17:28.000 1982-09-23 2024-10-11 01:17:28 +4649 4649 4650 464.9 929.8000000000001 4649 1982-09-24 2024-10-11 01:17:29.000 1982-09-24 2024-10-11 01:17:29 +4650 4650 4651 465 930 4650 1982-09-25 2024-10-11 01:17:30.000 1982-09-25 2024-10-11 01:17:30 +4651 4651 4652 465.1 930.2 4651 1982-09-26 2024-10-11 01:17:31.000 1982-09-26 2024-10-11 01:17:31 +4652 4652 4653 465.2 930.4000000000001 4652 1982-09-27 2024-10-11 01:17:32.000 1982-09-27 2024-10-11 01:17:32 +4653 4653 4654 465.3 930.6 4653 1982-09-28 2024-10-11 01:17:33.000 1982-09-28 2024-10-11 01:17:33 +4654 4654 4655 465.4 930.8000000000001 4654 1982-09-29 2024-10-11 01:17:34.000 1982-09-29 2024-10-11 01:17:34 +4655 4655 4656 465.5 931 4655 1982-09-30 2024-10-11 01:17:35.000 1982-09-30 2024-10-11 01:17:35 +4656 4656 4657 465.6 931.2 4656 1982-10-01 2024-10-11 01:17:36.000 1982-10-01 2024-10-11 01:17:36 +4657 4657 4658 465.7 931.4000000000001 4657 1982-10-02 2024-10-11 01:17:37.000 1982-10-02 2024-10-11 01:17:37 +4658 4658 4659 465.8 931.6 4658 1982-10-03 2024-10-11 01:17:38.000 1982-10-03 2024-10-11 01:17:38 +4659 4659 4660 465.9 931.8000000000001 4659 1982-10-04 2024-10-11 01:17:39.000 1982-10-04 2024-10-11 01:17:39 +4660 4660 4661 466 932 4660 1982-10-05 2024-10-11 01:17:40.000 1982-10-05 2024-10-11 01:17:40 +4661 4661 4662 466.1 932.2 4661 1982-10-06 2024-10-11 01:17:41.000 1982-10-06 2024-10-11 01:17:41 +4662 4662 4663 466.2 932.4000000000001 4662 1982-10-07 2024-10-11 01:17:42.000 1982-10-07 2024-10-11 01:17:42 +4663 4663 4664 466.3 932.6 4663 1982-10-08 2024-10-11 01:17:43.000 1982-10-08 2024-10-11 01:17:43 +4664 4664 4665 466.4 932.8000000000001 4664 1982-10-09 2024-10-11 01:17:44.000 1982-10-09 2024-10-11 01:17:44 +4665 4665 4666 466.5 933 4665 1982-10-10 2024-10-11 01:17:45.000 1982-10-10 2024-10-11 01:17:45 +4666 4666 4667 466.6 933.2 4666 1982-10-11 2024-10-11 01:17:46.000 1982-10-11 2024-10-11 01:17:46 +4667 4667 4668 466.7 933.4000000000001 4667 1982-10-12 2024-10-11 01:17:47.000 1982-10-12 2024-10-11 01:17:47 +4668 4668 4669 466.8 933.6 4668 1982-10-13 2024-10-11 01:17:48.000 1982-10-13 2024-10-11 01:17:48 +4669 4669 4670 466.9 933.8000000000001 4669 1982-10-14 2024-10-11 01:17:49.000 1982-10-14 2024-10-11 01:17:49 +4670 4670 4671 467 934 4670 1982-10-15 2024-10-11 01:17:50.000 1982-10-15 2024-10-11 01:17:50 +4671 4671 4672 467.1 934.2 4671 1982-10-16 2024-10-11 01:17:51.000 1982-10-16 2024-10-11 01:17:51 +4672 4672 4673 467.2 934.4000000000001 4672 1982-10-17 2024-10-11 01:17:52.000 1982-10-17 2024-10-11 01:17:52 +4673 4673 4674 467.3 934.6 4673 1982-10-18 2024-10-11 01:17:53.000 1982-10-18 2024-10-11 01:17:53 +4674 4674 4675 467.4 934.8000000000001 4674 1982-10-19 2024-10-11 01:17:54.000 1982-10-19 2024-10-11 01:17:54 +4675 4675 4676 467.5 935 4675 1982-10-20 2024-10-11 01:17:55.000 1982-10-20 2024-10-11 01:17:55 +4676 4676 4677 467.6 935.2 4676 1982-10-21 2024-10-11 01:17:56.000 1982-10-21 2024-10-11 01:17:56 +4677 4677 4678 467.7 935.4000000000001 4677 1982-10-22 2024-10-11 01:17:57.000 1982-10-22 2024-10-11 01:17:57 +4678 4678 4679 467.8 935.6 4678 1982-10-23 2024-10-11 01:17:58.000 1982-10-23 2024-10-11 01:17:58 +4679 4679 4680 467.9 935.8000000000001 4679 1982-10-24 2024-10-11 01:17:59.000 1982-10-24 2024-10-11 01:17:59 +4680 4680 4681 468 936 4680 1982-10-25 2024-10-11 01:18:00.000 1982-10-25 2024-10-11 01:18:00 +4681 4681 4682 468.1 936.2 4681 1982-10-26 2024-10-11 01:18:01.000 1982-10-26 2024-10-11 01:18:01 +4682 4682 4683 468.2 936.4000000000001 4682 1982-10-27 2024-10-11 01:18:02.000 1982-10-27 2024-10-11 01:18:02 +4683 4683 4684 468.3 936.6 4683 1982-10-28 2024-10-11 01:18:03.000 1982-10-28 2024-10-11 01:18:03 +4684 4684 4685 468.4 936.8000000000001 4684 1982-10-29 2024-10-11 01:18:04.000 1982-10-29 2024-10-11 01:18:04 +4685 4685 4686 468.5 937 4685 1982-10-30 2024-10-11 01:18:05.000 1982-10-30 2024-10-11 01:18:05 +4686 4686 4687 468.6 937.2 4686 1982-10-31 2024-10-11 01:18:06.000 1982-10-31 2024-10-11 01:18:06 +4687 4687 4688 468.7 937.4000000000001 4687 1982-11-01 2024-10-11 01:18:07.000 1982-11-01 2024-10-11 01:18:07 +4688 4688 4689 468.8 937.6 4688 1982-11-02 2024-10-11 01:18:08.000 1982-11-02 2024-10-11 01:18:08 +4689 4689 4690 468.9 937.8000000000001 4689 1982-11-03 2024-10-11 01:18:09.000 1982-11-03 2024-10-11 01:18:09 +4690 4690 4691 469 938 4690 1982-11-04 2024-10-11 01:18:10.000 1982-11-04 2024-10-11 01:18:10 +4691 4691 4692 469.1 938.2 4691 1982-11-05 2024-10-11 01:18:11.000 1982-11-05 2024-10-11 01:18:11 +4692 4692 4693 469.2 938.4000000000001 4692 1982-11-06 2024-10-11 01:18:12.000 1982-11-06 2024-10-11 01:18:12 +4693 4693 4694 469.3 938.6 4693 1982-11-07 2024-10-11 01:18:13.000 1982-11-07 2024-10-11 01:18:13 +4694 4694 4695 469.4 938.8000000000001 4694 1982-11-08 2024-10-11 01:18:14.000 1982-11-08 2024-10-11 01:18:14 +4695 4695 4696 469.5 939 4695 1982-11-09 2024-10-11 01:18:15.000 1982-11-09 2024-10-11 01:18:15 +4696 4696 4697 469.6 939.2 4696 1982-11-10 2024-10-11 01:18:16.000 1982-11-10 2024-10-11 01:18:16 +4697 4697 4698 469.7 939.4000000000001 4697 1982-11-11 2024-10-11 01:18:17.000 1982-11-11 2024-10-11 01:18:17 +4698 4698 4699 469.8 939.6 4698 1982-11-12 2024-10-11 01:18:18.000 1982-11-12 2024-10-11 01:18:18 +4699 4699 4700 469.9 939.8000000000001 4699 1982-11-13 2024-10-11 01:18:19.000 1982-11-13 2024-10-11 01:18:19 +4700 4700 4701 470 940 4700 1982-11-14 2024-10-11 01:18:20.000 1982-11-14 2024-10-11 01:18:20 +4701 4701 4702 470.1 940.2 4701 1982-11-15 2024-10-11 01:18:21.000 1982-11-15 2024-10-11 01:18:21 +4702 4702 4703 470.2 940.4000000000001 4702 1982-11-16 2024-10-11 01:18:22.000 1982-11-16 2024-10-11 01:18:22 +4703 4703 4704 470.3 940.6 4703 1982-11-17 2024-10-11 01:18:23.000 1982-11-17 2024-10-11 01:18:23 +4704 4704 4705 470.4 940.8000000000001 4704 1982-11-18 2024-10-11 01:18:24.000 1982-11-18 2024-10-11 01:18:24 +4705 4705 4706 470.5 941 4705 1982-11-19 2024-10-11 01:18:25.000 1982-11-19 2024-10-11 01:18:25 +4706 4706 4707 470.6 941.2 4706 1982-11-20 2024-10-11 01:18:26.000 1982-11-20 2024-10-11 01:18:26 +4707 4707 4708 470.7 941.4000000000001 4707 1982-11-21 2024-10-11 01:18:27.000 1982-11-21 2024-10-11 01:18:27 +4708 4708 4709 470.8 941.6 4708 1982-11-22 2024-10-11 01:18:28.000 1982-11-22 2024-10-11 01:18:28 +4709 4709 4710 470.9 941.8000000000001 4709 1982-11-23 2024-10-11 01:18:29.000 1982-11-23 2024-10-11 01:18:29 +4710 4710 4711 471 942 4710 1982-11-24 2024-10-11 01:18:30.000 1982-11-24 2024-10-11 01:18:30 +4711 4711 4712 471.1 942.2 4711 1982-11-25 2024-10-11 01:18:31.000 1982-11-25 2024-10-11 01:18:31 +4712 4712 4713 471.2 942.4000000000001 4712 1982-11-26 2024-10-11 01:18:32.000 1982-11-26 2024-10-11 01:18:32 +4713 4713 4714 471.3 942.6 4713 1982-11-27 2024-10-11 01:18:33.000 1982-11-27 2024-10-11 01:18:33 +4714 4714 4715 471.4 942.8000000000001 4714 1982-11-28 2024-10-11 01:18:34.000 1982-11-28 2024-10-11 01:18:34 +4715 4715 4716 471.5 943 4715 1982-11-29 2024-10-11 01:18:35.000 1982-11-29 2024-10-11 01:18:35 +4716 4716 4717 471.6 943.2 4716 1982-11-30 2024-10-11 01:18:36.000 1982-11-30 2024-10-11 01:18:36 +4717 4717 4718 471.7 943.4000000000001 4717 1982-12-01 2024-10-11 01:18:37.000 1982-12-01 2024-10-11 01:18:37 +4718 4718 4719 471.8 943.6 4718 1982-12-02 2024-10-11 01:18:38.000 1982-12-02 2024-10-11 01:18:38 +4719 4719 4720 471.9 943.8000000000001 4719 1982-12-03 2024-10-11 01:18:39.000 1982-12-03 2024-10-11 01:18:39 +4720 4720 4721 472 944 4720 1982-12-04 2024-10-11 01:18:40.000 1982-12-04 2024-10-11 01:18:40 +4721 4721 4722 472.1 944.2 4721 1982-12-05 2024-10-11 01:18:41.000 1982-12-05 2024-10-11 01:18:41 +4722 4722 4723 472.2 944.4000000000001 4722 1982-12-06 2024-10-11 01:18:42.000 1982-12-06 2024-10-11 01:18:42 +4723 4723 4724 472.3 944.6 4723 1982-12-07 2024-10-11 01:18:43.000 1982-12-07 2024-10-11 01:18:43 +4724 4724 4725 472.4 944.8000000000001 4724 1982-12-08 2024-10-11 01:18:44.000 1982-12-08 2024-10-11 01:18:44 +4725 4725 4726 472.5 945 4725 1982-12-09 2024-10-11 01:18:45.000 1982-12-09 2024-10-11 01:18:45 +4726 4726 4727 472.6 945.2 4726 1982-12-10 2024-10-11 01:18:46.000 1982-12-10 2024-10-11 01:18:46 +4727 4727 4728 472.7 945.4000000000001 4727 1982-12-11 2024-10-11 01:18:47.000 1982-12-11 2024-10-11 01:18:47 +4728 4728 4729 472.8 945.6 4728 1982-12-12 2024-10-11 01:18:48.000 1982-12-12 2024-10-11 01:18:48 +4729 4729 4730 472.9 945.8000000000001 4729 1982-12-13 2024-10-11 01:18:49.000 1982-12-13 2024-10-11 01:18:49 +4730 4730 4731 473 946 4730 1982-12-14 2024-10-11 01:18:50.000 1982-12-14 2024-10-11 01:18:50 +4731 4731 4732 473.1 946.2 4731 1982-12-15 2024-10-11 01:18:51.000 1982-12-15 2024-10-11 01:18:51 +4732 4732 4733 473.2 946.4000000000001 4732 1982-12-16 2024-10-11 01:18:52.000 1982-12-16 2024-10-11 01:18:52 +4733 4733 4734 473.3 946.6 4733 1982-12-17 2024-10-11 01:18:53.000 1982-12-17 2024-10-11 01:18:53 +4734 4734 4735 473.4 946.8000000000001 4734 1982-12-18 2024-10-11 01:18:54.000 1982-12-18 2024-10-11 01:18:54 +4735 4735 4736 473.5 947 4735 1982-12-19 2024-10-11 01:18:55.000 1982-12-19 2024-10-11 01:18:55 +4736 4736 4737 473.6 947.2 4736 1982-12-20 2024-10-11 01:18:56.000 1982-12-20 2024-10-11 01:18:56 +4737 4737 4738 473.7 947.4000000000001 4737 1982-12-21 2024-10-11 01:18:57.000 1982-12-21 2024-10-11 01:18:57 +4738 4738 4739 473.8 947.6 4738 1982-12-22 2024-10-11 01:18:58.000 1982-12-22 2024-10-11 01:18:58 +4739 4739 4740 473.9 947.8000000000001 4739 1982-12-23 2024-10-11 01:18:59.000 1982-12-23 2024-10-11 01:18:59 +4740 4740 4741 474 948 4740 1982-12-24 2024-10-11 01:19:00.000 1982-12-24 2024-10-11 01:19:00 +4741 4741 4742 474.1 948.2 4741 1982-12-25 2024-10-11 01:19:01.000 1982-12-25 2024-10-11 01:19:01 +4742 4742 4743 474.2 948.4000000000001 4742 1982-12-26 2024-10-11 01:19:02.000 1982-12-26 2024-10-11 01:19:02 +4743 4743 4744 474.3 948.6 4743 1982-12-27 2024-10-11 01:19:03.000 1982-12-27 2024-10-11 01:19:03 +4744 4744 4745 474.4 948.8000000000001 4744 1982-12-28 2024-10-11 01:19:04.000 1982-12-28 2024-10-11 01:19:04 +4745 4745 4746 474.5 949 4745 1982-12-29 2024-10-11 01:19:05.000 1982-12-29 2024-10-11 01:19:05 +4746 4746 4747 474.6 949.2 4746 1982-12-30 2024-10-11 01:19:06.000 1982-12-30 2024-10-11 01:19:06 +4747 4747 4748 474.7 949.4000000000001 4747 1982-12-31 2024-10-11 01:19:07.000 1982-12-31 2024-10-11 01:19:07 +4748 4748 4749 474.8 949.6 4748 1983-01-01 2024-10-11 01:19:08.000 1983-01-01 2024-10-11 01:19:08 +4749 4749 4750 474.9 949.8000000000001 4749 1983-01-02 2024-10-11 01:19:09.000 1983-01-02 2024-10-11 01:19:09 +4750 4750 4751 475 950 4750 1983-01-03 2024-10-11 01:19:10.000 1983-01-03 2024-10-11 01:19:10 +4751 4751 4752 475.1 950.2 4751 1983-01-04 2024-10-11 01:19:11.000 1983-01-04 2024-10-11 01:19:11 +4752 4752 4753 475.2 950.4000000000001 4752 1983-01-05 2024-10-11 01:19:12.000 1983-01-05 2024-10-11 01:19:12 +4753 4753 4754 475.3 950.6 4753 1983-01-06 2024-10-11 01:19:13.000 1983-01-06 2024-10-11 01:19:13 +4754 4754 4755 475.4 950.8000000000001 4754 1983-01-07 2024-10-11 01:19:14.000 1983-01-07 2024-10-11 01:19:14 +4755 4755 4756 475.5 951 4755 1983-01-08 2024-10-11 01:19:15.000 1983-01-08 2024-10-11 01:19:15 +4756 4756 4757 475.6 951.2 4756 1983-01-09 2024-10-11 01:19:16.000 1983-01-09 2024-10-11 01:19:16 +4757 4757 4758 475.7 951.4000000000001 4757 1983-01-10 2024-10-11 01:19:17.000 1983-01-10 2024-10-11 01:19:17 +4758 4758 4759 475.8 951.6 4758 1983-01-11 2024-10-11 01:19:18.000 1983-01-11 2024-10-11 01:19:18 +4759 4759 4760 475.9 951.8000000000001 4759 1983-01-12 2024-10-11 01:19:19.000 1983-01-12 2024-10-11 01:19:19 +4760 4760 4761 476 952 4760 1983-01-13 2024-10-11 01:19:20.000 1983-01-13 2024-10-11 01:19:20 +4761 4761 4762 476.1 952.2 4761 1983-01-14 2024-10-11 01:19:21.000 1983-01-14 2024-10-11 01:19:21 +4762 4762 4763 476.2 952.4000000000001 4762 1983-01-15 2024-10-11 01:19:22.000 1983-01-15 2024-10-11 01:19:22 +4763 4763 4764 476.3 952.6 4763 1983-01-16 2024-10-11 01:19:23.000 1983-01-16 2024-10-11 01:19:23 +4764 4764 4765 476.4 952.8000000000001 4764 1983-01-17 2024-10-11 01:19:24.000 1983-01-17 2024-10-11 01:19:24 +4765 4765 4766 476.5 953 4765 1983-01-18 2024-10-11 01:19:25.000 1983-01-18 2024-10-11 01:19:25 +4766 4766 4767 476.6 953.2 4766 1983-01-19 2024-10-11 01:19:26.000 1983-01-19 2024-10-11 01:19:26 +4767 4767 4768 476.7 953.4000000000001 4767 1983-01-20 2024-10-11 01:19:27.000 1983-01-20 2024-10-11 01:19:27 +4768 4768 4769 476.8 953.6 4768 1983-01-21 2024-10-11 01:19:28.000 1983-01-21 2024-10-11 01:19:28 +4769 4769 4770 476.9 953.8000000000001 4769 1983-01-22 2024-10-11 01:19:29.000 1983-01-22 2024-10-11 01:19:29 +4770 4770 4771 477 954 4770 1983-01-23 2024-10-11 01:19:30.000 1983-01-23 2024-10-11 01:19:30 +4771 4771 4772 477.1 954.2 4771 1983-01-24 2024-10-11 01:19:31.000 1983-01-24 2024-10-11 01:19:31 +4772 4772 4773 477.2 954.4000000000001 4772 1983-01-25 2024-10-11 01:19:32.000 1983-01-25 2024-10-11 01:19:32 +4773 4773 4774 477.3 954.6 4773 1983-01-26 2024-10-11 01:19:33.000 1983-01-26 2024-10-11 01:19:33 +4774 4774 4775 477.4 954.8000000000001 4774 1983-01-27 2024-10-11 01:19:34.000 1983-01-27 2024-10-11 01:19:34 +4775 4775 4776 477.5 955 4775 1983-01-28 2024-10-11 01:19:35.000 1983-01-28 2024-10-11 01:19:35 +4776 4776 4777 477.6 955.2 4776 1983-01-29 2024-10-11 01:19:36.000 1983-01-29 2024-10-11 01:19:36 +4777 4777 4778 477.7 955.4000000000001 4777 1983-01-30 2024-10-11 01:19:37.000 1983-01-30 2024-10-11 01:19:37 +4778 4778 4779 477.8 955.6 4778 1983-01-31 2024-10-11 01:19:38.000 1983-01-31 2024-10-11 01:19:38 +4779 4779 4780 477.9 955.8000000000001 4779 1983-02-01 2024-10-11 01:19:39.000 1983-02-01 2024-10-11 01:19:39 +4780 4780 4781 478 956 4780 1983-02-02 2024-10-11 01:19:40.000 1983-02-02 2024-10-11 01:19:40 +4781 4781 4782 478.1 956.2 4781 1983-02-03 2024-10-11 01:19:41.000 1983-02-03 2024-10-11 01:19:41 +4782 4782 4783 478.2 956.4000000000001 4782 1983-02-04 2024-10-11 01:19:42.000 1983-02-04 2024-10-11 01:19:42 +4783 4783 4784 478.3 956.6 4783 1983-02-05 2024-10-11 01:19:43.000 1983-02-05 2024-10-11 01:19:43 +4784 4784 4785 478.4 956.8000000000001 4784 1983-02-06 2024-10-11 01:19:44.000 1983-02-06 2024-10-11 01:19:44 +4785 4785 4786 478.5 957 4785 1983-02-07 2024-10-11 01:19:45.000 1983-02-07 2024-10-11 01:19:45 +4786 4786 4787 478.6 957.2 4786 1983-02-08 2024-10-11 01:19:46.000 1983-02-08 2024-10-11 01:19:46 +4787 4787 4788 478.7 957.4000000000001 4787 1983-02-09 2024-10-11 01:19:47.000 1983-02-09 2024-10-11 01:19:47 +4788 4788 4789 478.8 957.6 4788 1983-02-10 2024-10-11 01:19:48.000 1983-02-10 2024-10-11 01:19:48 +4789 4789 4790 478.9 957.8000000000001 4789 1983-02-11 2024-10-11 01:19:49.000 1983-02-11 2024-10-11 01:19:49 +4790 4790 4791 479 958 4790 1983-02-12 2024-10-11 01:19:50.000 1983-02-12 2024-10-11 01:19:50 +4791 4791 4792 479.1 958.2 4791 1983-02-13 2024-10-11 01:19:51.000 1983-02-13 2024-10-11 01:19:51 +4792 4792 4793 479.2 958.4000000000001 4792 1983-02-14 2024-10-11 01:19:52.000 1983-02-14 2024-10-11 01:19:52 +4793 4793 4794 479.3 958.6 4793 1983-02-15 2024-10-11 01:19:53.000 1983-02-15 2024-10-11 01:19:53 +4794 4794 4795 479.4 958.8000000000001 4794 1983-02-16 2024-10-11 01:19:54.000 1983-02-16 2024-10-11 01:19:54 +4795 4795 4796 479.5 959 4795 1983-02-17 2024-10-11 01:19:55.000 1983-02-17 2024-10-11 01:19:55 +4796 4796 4797 479.6 959.2 4796 1983-02-18 2024-10-11 01:19:56.000 1983-02-18 2024-10-11 01:19:56 +4797 4797 4798 479.7 959.4000000000001 4797 1983-02-19 2024-10-11 01:19:57.000 1983-02-19 2024-10-11 01:19:57 +4798 4798 4799 479.8 959.6 4798 1983-02-20 2024-10-11 01:19:58.000 1983-02-20 2024-10-11 01:19:58 +4799 4799 4800 479.9 959.8000000000001 4799 1983-02-21 2024-10-11 01:19:59.000 1983-02-21 2024-10-11 01:19:59 +4800 4800 4801 480 960 4800 1983-02-22 2024-10-11 01:20:00.000 1983-02-22 2024-10-11 01:20:00 +4801 4801 4802 480.1 960.2 4801 1983-02-23 2024-10-11 01:20:01.000 1983-02-23 2024-10-11 01:20:01 +4802 4802 4803 480.2 960.4000000000001 4802 1983-02-24 2024-10-11 01:20:02.000 1983-02-24 2024-10-11 01:20:02 +4803 4803 4804 480.3 960.6 4803 1983-02-25 2024-10-11 01:20:03.000 1983-02-25 2024-10-11 01:20:03 +4804 4804 4805 480.4 960.8000000000001 4804 1983-02-26 2024-10-11 01:20:04.000 1983-02-26 2024-10-11 01:20:04 +4805 4805 4806 480.5 961 4805 1983-02-27 2024-10-11 01:20:05.000 1983-02-27 2024-10-11 01:20:05 +4806 4806 4807 480.6 961.2 4806 1983-02-28 2024-10-11 01:20:06.000 1983-02-28 2024-10-11 01:20:06 +4807 4807 4808 480.7 961.4000000000001 4807 1983-03-01 2024-10-11 01:20:07.000 1983-03-01 2024-10-11 01:20:07 +4808 4808 4809 480.8 961.6 4808 1983-03-02 2024-10-11 01:20:08.000 1983-03-02 2024-10-11 01:20:08 +4809 4809 4810 480.9 961.8000000000001 4809 1983-03-03 2024-10-11 01:20:09.000 1983-03-03 2024-10-11 01:20:09 +4810 4810 4811 481 962 4810 1983-03-04 2024-10-11 01:20:10.000 1983-03-04 2024-10-11 01:20:10 +4811 4811 4812 481.1 962.2 4811 1983-03-05 2024-10-11 01:20:11.000 1983-03-05 2024-10-11 01:20:11 +4812 4812 4813 481.2 962.4000000000001 4812 1983-03-06 2024-10-11 01:20:12.000 1983-03-06 2024-10-11 01:20:12 +4813 4813 4814 481.3 962.6 4813 1983-03-07 2024-10-11 01:20:13.000 1983-03-07 2024-10-11 01:20:13 +4814 4814 4815 481.4 962.8000000000001 4814 1983-03-08 2024-10-11 01:20:14.000 1983-03-08 2024-10-11 01:20:14 +4815 4815 4816 481.5 963 4815 1983-03-09 2024-10-11 01:20:15.000 1983-03-09 2024-10-11 01:20:15 +4816 4816 4817 481.6 963.2 4816 1983-03-10 2024-10-11 01:20:16.000 1983-03-10 2024-10-11 01:20:16 +4817 4817 4818 481.7 963.4000000000001 4817 1983-03-11 2024-10-11 01:20:17.000 1983-03-11 2024-10-11 01:20:17 +4818 4818 4819 481.8 963.6 4818 1983-03-12 2024-10-11 01:20:18.000 1983-03-12 2024-10-11 01:20:18 +4819 4819 4820 481.9 963.8000000000001 4819 1983-03-13 2024-10-11 01:20:19.000 1983-03-13 2024-10-11 01:20:19 +4820 4820 4821 482 964 4820 1983-03-14 2024-10-11 01:20:20.000 1983-03-14 2024-10-11 01:20:20 +4821 4821 4822 482.1 964.2 4821 1983-03-15 2024-10-11 01:20:21.000 1983-03-15 2024-10-11 01:20:21 +4822 4822 4823 482.2 964.4000000000001 4822 1983-03-16 2024-10-11 01:20:22.000 1983-03-16 2024-10-11 01:20:22 +4823 4823 4824 482.3 964.6 4823 1983-03-17 2024-10-11 01:20:23.000 1983-03-17 2024-10-11 01:20:23 +4824 4824 4825 482.4 964.8000000000001 4824 1983-03-18 2024-10-11 01:20:24.000 1983-03-18 2024-10-11 01:20:24 +4825 4825 4826 482.5 965 4825 1983-03-19 2024-10-11 01:20:25.000 1983-03-19 2024-10-11 01:20:25 +4826 4826 4827 482.6 965.2 4826 1983-03-20 2024-10-11 01:20:26.000 1983-03-20 2024-10-11 01:20:26 +4827 4827 4828 482.7 965.4000000000001 4827 1983-03-21 2024-10-11 01:20:27.000 1983-03-21 2024-10-11 01:20:27 +4828 4828 4829 482.8 965.6 4828 1983-03-22 2024-10-11 01:20:28.000 1983-03-22 2024-10-11 01:20:28 +4829 4829 4830 482.9 965.8000000000001 4829 1983-03-23 2024-10-11 01:20:29.000 1983-03-23 2024-10-11 01:20:29 +4830 4830 4831 483 966 4830 1983-03-24 2024-10-11 01:20:30.000 1983-03-24 2024-10-11 01:20:30 +4831 4831 4832 483.1 966.2 4831 1983-03-25 2024-10-11 01:20:31.000 1983-03-25 2024-10-11 01:20:31 +4832 4832 4833 483.2 966.4000000000001 4832 1983-03-26 2024-10-11 01:20:32.000 1983-03-26 2024-10-11 01:20:32 +4833 4833 4834 483.3 966.6 4833 1983-03-27 2024-10-11 01:20:33.000 1983-03-27 2024-10-11 01:20:33 +4834 4834 4835 483.4 966.8000000000001 4834 1983-03-28 2024-10-11 01:20:34.000 1983-03-28 2024-10-11 01:20:34 +4835 4835 4836 483.5 967 4835 1983-03-29 2024-10-11 01:20:35.000 1983-03-29 2024-10-11 01:20:35 +4836 4836 4837 483.6 967.2 4836 1983-03-30 2024-10-11 01:20:36.000 1983-03-30 2024-10-11 01:20:36 +4837 4837 4838 483.7 967.4000000000001 4837 1983-03-31 2024-10-11 01:20:37.000 1983-03-31 2024-10-11 01:20:37 +4838 4838 4839 483.8 967.6 4838 1983-04-01 2024-10-11 01:20:38.000 1983-04-01 2024-10-11 01:20:38 +4839 4839 4840 483.9 967.8000000000001 4839 1983-04-02 2024-10-11 01:20:39.000 1983-04-02 2024-10-11 01:20:39 +4840 4840 4841 484 968 4840 1983-04-03 2024-10-11 01:20:40.000 1983-04-03 2024-10-11 01:20:40 +4841 4841 4842 484.1 968.2 4841 1983-04-04 2024-10-11 01:20:41.000 1983-04-04 2024-10-11 01:20:41 +4842 4842 4843 484.2 968.4000000000001 4842 1983-04-05 2024-10-11 01:20:42.000 1983-04-05 2024-10-11 01:20:42 +4843 4843 4844 484.3 968.6 4843 1983-04-06 2024-10-11 01:20:43.000 1983-04-06 2024-10-11 01:20:43 +4844 4844 4845 484.4 968.8000000000001 4844 1983-04-07 2024-10-11 01:20:44.000 1983-04-07 2024-10-11 01:20:44 +4845 4845 4846 484.5 969 4845 1983-04-08 2024-10-11 01:20:45.000 1983-04-08 2024-10-11 01:20:45 +4846 4846 4847 484.6 969.2 4846 1983-04-09 2024-10-11 01:20:46.000 1983-04-09 2024-10-11 01:20:46 +4847 4847 4848 484.7 969.4000000000001 4847 1983-04-10 2024-10-11 01:20:47.000 1983-04-10 2024-10-11 01:20:47 +4848 4848 4849 484.8 969.6 4848 1983-04-11 2024-10-11 01:20:48.000 1983-04-11 2024-10-11 01:20:48 +4849 4849 4850 484.9 969.8000000000001 4849 1983-04-12 2024-10-11 01:20:49.000 1983-04-12 2024-10-11 01:20:49 +4850 4850 4851 485 970 4850 1983-04-13 2024-10-11 01:20:50.000 1983-04-13 2024-10-11 01:20:50 +4851 4851 4852 485.1 970.2 4851 1983-04-14 2024-10-11 01:20:51.000 1983-04-14 2024-10-11 01:20:51 +4852 4852 4853 485.2 970.4000000000001 4852 1983-04-15 2024-10-11 01:20:52.000 1983-04-15 2024-10-11 01:20:52 +4853 4853 4854 485.3 970.6 4853 1983-04-16 2024-10-11 01:20:53.000 1983-04-16 2024-10-11 01:20:53 +4854 4854 4855 485.4 970.8000000000001 4854 1983-04-17 2024-10-11 01:20:54.000 1983-04-17 2024-10-11 01:20:54 +4855 4855 4856 485.5 971 4855 1983-04-18 2024-10-11 01:20:55.000 1983-04-18 2024-10-11 01:20:55 +4856 4856 4857 485.6 971.2 4856 1983-04-19 2024-10-11 01:20:56.000 1983-04-19 2024-10-11 01:20:56 +4857 4857 4858 485.7 971.4000000000001 4857 1983-04-20 2024-10-11 01:20:57.000 1983-04-20 2024-10-11 01:20:57 +4858 4858 4859 485.8 971.6 4858 1983-04-21 2024-10-11 01:20:58.000 1983-04-21 2024-10-11 01:20:58 +4859 4859 4860 485.9 971.8000000000001 4859 1983-04-22 2024-10-11 01:20:59.000 1983-04-22 2024-10-11 01:20:59 +4860 4860 4861 486 972 4860 1983-04-23 2024-10-11 01:21:00.000 1983-04-23 2024-10-11 01:21:00 +4861 4861 4862 486.1 972.2 4861 1983-04-24 2024-10-11 01:21:01.000 1983-04-24 2024-10-11 01:21:01 +4862 4862 4863 486.2 972.4000000000001 4862 1983-04-25 2024-10-11 01:21:02.000 1983-04-25 2024-10-11 01:21:02 +4863 4863 4864 486.3 972.6 4863 1983-04-26 2024-10-11 01:21:03.000 1983-04-26 2024-10-11 01:21:03 +4864 4864 4865 486.4 972.8000000000001 4864 1983-04-27 2024-10-11 01:21:04.000 1983-04-27 2024-10-11 01:21:04 +4865 4865 4866 486.5 973 4865 1983-04-28 2024-10-11 01:21:05.000 1983-04-28 2024-10-11 01:21:05 +4866 4866 4867 486.6 973.2 4866 1983-04-29 2024-10-11 01:21:06.000 1983-04-29 2024-10-11 01:21:06 +4867 4867 4868 486.7 973.4000000000001 4867 1983-04-30 2024-10-11 01:21:07.000 1983-04-30 2024-10-11 01:21:07 +4868 4868 4869 486.8 973.6 4868 1983-05-01 2024-10-11 01:21:08.000 1983-05-01 2024-10-11 01:21:08 +4869 4869 4870 486.9 973.8000000000001 4869 1983-05-02 2024-10-11 01:21:09.000 1983-05-02 2024-10-11 01:21:09 +4870 4870 4871 487 974 4870 1983-05-03 2024-10-11 01:21:10.000 1983-05-03 2024-10-11 01:21:10 +4871 4871 4872 487.1 974.2 4871 1983-05-04 2024-10-11 01:21:11.000 1983-05-04 2024-10-11 01:21:11 +4872 4872 4873 487.2 974.4000000000001 4872 1983-05-05 2024-10-11 01:21:12.000 1983-05-05 2024-10-11 01:21:12 +4873 4873 4874 487.3 974.6 4873 1983-05-06 2024-10-11 01:21:13.000 1983-05-06 2024-10-11 01:21:13 +4874 4874 4875 487.4 974.8000000000001 4874 1983-05-07 2024-10-11 01:21:14.000 1983-05-07 2024-10-11 01:21:14 +4875 4875 4876 487.5 975 4875 1983-05-08 2024-10-11 01:21:15.000 1983-05-08 2024-10-11 01:21:15 +4876 4876 4877 487.6 975.2 4876 1983-05-09 2024-10-11 01:21:16.000 1983-05-09 2024-10-11 01:21:16 +4877 4877 4878 487.7 975.4000000000001 4877 1983-05-10 2024-10-11 01:21:17.000 1983-05-10 2024-10-11 01:21:17 +4878 4878 4879 487.8 975.6 4878 1983-05-11 2024-10-11 01:21:18.000 1983-05-11 2024-10-11 01:21:18 +4879 4879 4880 487.9 975.8000000000001 4879 1983-05-12 2024-10-11 01:21:19.000 1983-05-12 2024-10-11 01:21:19 +4880 4880 4881 488 976 4880 1983-05-13 2024-10-11 01:21:20.000 1983-05-13 2024-10-11 01:21:20 +4881 4881 4882 488.1 976.2 4881 1983-05-14 2024-10-11 01:21:21.000 1983-05-14 2024-10-11 01:21:21 +4882 4882 4883 488.2 976.4000000000001 4882 1983-05-15 2024-10-11 01:21:22.000 1983-05-15 2024-10-11 01:21:22 +4883 4883 4884 488.3 976.6 4883 1983-05-16 2024-10-11 01:21:23.000 1983-05-16 2024-10-11 01:21:23 +4884 4884 4885 488.4 976.8000000000001 4884 1983-05-17 2024-10-11 01:21:24.000 1983-05-17 2024-10-11 01:21:24 +4885 4885 4886 488.5 977 4885 1983-05-18 2024-10-11 01:21:25.000 1983-05-18 2024-10-11 01:21:25 +4886 4886 4887 488.6 977.2 4886 1983-05-19 2024-10-11 01:21:26.000 1983-05-19 2024-10-11 01:21:26 +4887 4887 4888 488.7 977.4000000000001 4887 1983-05-20 2024-10-11 01:21:27.000 1983-05-20 2024-10-11 01:21:27 +4888 4888 4889 488.8 977.6 4888 1983-05-21 2024-10-11 01:21:28.000 1983-05-21 2024-10-11 01:21:28 +4889 4889 4890 488.9 977.8000000000001 4889 1983-05-22 2024-10-11 01:21:29.000 1983-05-22 2024-10-11 01:21:29 +4890 4890 4891 489 978 4890 1983-05-23 2024-10-11 01:21:30.000 1983-05-23 2024-10-11 01:21:30 +4891 4891 4892 489.1 978.2 4891 1983-05-24 2024-10-11 01:21:31.000 1983-05-24 2024-10-11 01:21:31 +4892 4892 4893 489.2 978.4000000000001 4892 1983-05-25 2024-10-11 01:21:32.000 1983-05-25 2024-10-11 01:21:32 +4893 4893 4894 489.3 978.6 4893 1983-05-26 2024-10-11 01:21:33.000 1983-05-26 2024-10-11 01:21:33 +4894 4894 4895 489.4 978.8000000000001 4894 1983-05-27 2024-10-11 01:21:34.000 1983-05-27 2024-10-11 01:21:34 +4895 4895 4896 489.5 979 4895 1983-05-28 2024-10-11 01:21:35.000 1983-05-28 2024-10-11 01:21:35 +4896 4896 4897 489.6 979.2 4896 1983-05-29 2024-10-11 01:21:36.000 1983-05-29 2024-10-11 01:21:36 +4897 4897 4898 489.7 979.4000000000001 4897 1983-05-30 2024-10-11 01:21:37.000 1983-05-30 2024-10-11 01:21:37 +4898 4898 4899 489.8 979.6 4898 1983-05-31 2024-10-11 01:21:38.000 1983-05-31 2024-10-11 01:21:38 +4899 4899 4900 489.9 979.8000000000001 4899 1983-06-01 2024-10-11 01:21:39.000 1983-06-01 2024-10-11 01:21:39 +4900 4900 4901 490 980 4900 1983-06-02 2024-10-11 01:21:40.000 1983-06-02 2024-10-11 01:21:40 +4901 4901 4902 490.1 980.2 4901 1983-06-03 2024-10-11 01:21:41.000 1983-06-03 2024-10-11 01:21:41 +4902 4902 4903 490.2 980.4000000000001 4902 1983-06-04 2024-10-11 01:21:42.000 1983-06-04 2024-10-11 01:21:42 +4903 4903 4904 490.3 980.6 4903 1983-06-05 2024-10-11 01:21:43.000 1983-06-05 2024-10-11 01:21:43 +4904 4904 4905 490.4 980.8000000000001 4904 1983-06-06 2024-10-11 01:21:44.000 1983-06-06 2024-10-11 01:21:44 +4905 4905 4906 490.5 981 4905 1983-06-07 2024-10-11 01:21:45.000 1983-06-07 2024-10-11 01:21:45 +4906 4906 4907 490.6 981.2 4906 1983-06-08 2024-10-11 01:21:46.000 1983-06-08 2024-10-11 01:21:46 +4907 4907 4908 490.7 981.4000000000001 4907 1983-06-09 2024-10-11 01:21:47.000 1983-06-09 2024-10-11 01:21:47 +4908 4908 4909 490.8 981.6 4908 1983-06-10 2024-10-11 01:21:48.000 1983-06-10 2024-10-11 01:21:48 +4909 4909 4910 490.9 981.8000000000001 4909 1983-06-11 2024-10-11 01:21:49.000 1983-06-11 2024-10-11 01:21:49 +4910 4910 4911 491 982 4910 1983-06-12 2024-10-11 01:21:50.000 1983-06-12 2024-10-11 01:21:50 +4911 4911 4912 491.1 982.2 4911 1983-06-13 2024-10-11 01:21:51.000 1983-06-13 2024-10-11 01:21:51 +4912 4912 4913 491.2 982.4000000000001 4912 1983-06-14 2024-10-11 01:21:52.000 1983-06-14 2024-10-11 01:21:52 +4913 4913 4914 491.3 982.6 4913 1983-06-15 2024-10-11 01:21:53.000 1983-06-15 2024-10-11 01:21:53 +4914 4914 4915 491.4 982.8000000000001 4914 1983-06-16 2024-10-11 01:21:54.000 1983-06-16 2024-10-11 01:21:54 +4915 4915 4916 491.5 983 4915 1983-06-17 2024-10-11 01:21:55.000 1983-06-17 2024-10-11 01:21:55 +4916 4916 4917 491.6 983.2 4916 1983-06-18 2024-10-11 01:21:56.000 1983-06-18 2024-10-11 01:21:56 +4917 4917 4918 491.7 983.4000000000001 4917 1983-06-19 2024-10-11 01:21:57.000 1983-06-19 2024-10-11 01:21:57 +4918 4918 4919 491.8 983.6 4918 1983-06-20 2024-10-11 01:21:58.000 1983-06-20 2024-10-11 01:21:58 +4919 4919 4920 491.9 983.8000000000001 4919 1983-06-21 2024-10-11 01:21:59.000 1983-06-21 2024-10-11 01:21:59 +4920 4920 4921 492 984 4920 1983-06-22 2024-10-11 01:22:00.000 1983-06-22 2024-10-11 01:22:00 +4921 4921 4922 492.1 984.2 4921 1983-06-23 2024-10-11 01:22:01.000 1983-06-23 2024-10-11 01:22:01 +4922 4922 4923 492.2 984.4000000000001 4922 1983-06-24 2024-10-11 01:22:02.000 1983-06-24 2024-10-11 01:22:02 +4923 4923 4924 492.3 984.6 4923 1983-06-25 2024-10-11 01:22:03.000 1983-06-25 2024-10-11 01:22:03 +4924 4924 4925 492.4 984.8000000000001 4924 1983-06-26 2024-10-11 01:22:04.000 1983-06-26 2024-10-11 01:22:04 +4925 4925 4926 492.5 985 4925 1983-06-27 2024-10-11 01:22:05.000 1983-06-27 2024-10-11 01:22:05 +4926 4926 4927 492.6 985.2 4926 1983-06-28 2024-10-11 01:22:06.000 1983-06-28 2024-10-11 01:22:06 +4927 4927 4928 492.7 985.4000000000001 4927 1983-06-29 2024-10-11 01:22:07.000 1983-06-29 2024-10-11 01:22:07 +4928 4928 4929 492.8 985.6 4928 1983-06-30 2024-10-11 01:22:08.000 1983-06-30 2024-10-11 01:22:08 +4929 4929 4930 492.9 985.8000000000001 4929 1983-07-01 2024-10-11 01:22:09.000 1983-07-01 2024-10-11 01:22:09 +4930 4930 4931 493 986 4930 1983-07-02 2024-10-11 01:22:10.000 1983-07-02 2024-10-11 01:22:10 +4931 4931 4932 493.1 986.2 4931 1983-07-03 2024-10-11 01:22:11.000 1983-07-03 2024-10-11 01:22:11 +4932 4932 4933 493.2 986.4000000000001 4932 1983-07-04 2024-10-11 01:22:12.000 1983-07-04 2024-10-11 01:22:12 +4933 4933 4934 493.3 986.6 4933 1983-07-05 2024-10-11 01:22:13.000 1983-07-05 2024-10-11 01:22:13 +4934 4934 4935 493.4 986.8000000000001 4934 1983-07-06 2024-10-11 01:22:14.000 1983-07-06 2024-10-11 01:22:14 +4935 4935 4936 493.5 987 4935 1983-07-07 2024-10-11 01:22:15.000 1983-07-07 2024-10-11 01:22:15 +4936 4936 4937 493.6 987.2 4936 1983-07-08 2024-10-11 01:22:16.000 1983-07-08 2024-10-11 01:22:16 +4937 4937 4938 493.7 987.4000000000001 4937 1983-07-09 2024-10-11 01:22:17.000 1983-07-09 2024-10-11 01:22:17 +4938 4938 4939 493.8 987.6 4938 1983-07-10 2024-10-11 01:22:18.000 1983-07-10 2024-10-11 01:22:18 +4939 4939 4940 493.9 987.8000000000001 4939 1983-07-11 2024-10-11 01:22:19.000 1983-07-11 2024-10-11 01:22:19 +4940 4940 4941 494 988 4940 1983-07-12 2024-10-11 01:22:20.000 1983-07-12 2024-10-11 01:22:20 +4941 4941 4942 494.1 988.2 4941 1983-07-13 2024-10-11 01:22:21.000 1983-07-13 2024-10-11 01:22:21 +4942 4942 4943 494.2 988.4000000000001 4942 1983-07-14 2024-10-11 01:22:22.000 1983-07-14 2024-10-11 01:22:22 +4943 4943 4944 494.3 988.6 4943 1983-07-15 2024-10-11 01:22:23.000 1983-07-15 2024-10-11 01:22:23 +4944 4944 4945 494.4 988.8000000000001 4944 1983-07-16 2024-10-11 01:22:24.000 1983-07-16 2024-10-11 01:22:24 +4945 4945 4946 494.5 989 4945 1983-07-17 2024-10-11 01:22:25.000 1983-07-17 2024-10-11 01:22:25 +4946 4946 4947 494.6 989.2 4946 1983-07-18 2024-10-11 01:22:26.000 1983-07-18 2024-10-11 01:22:26 +4947 4947 4948 494.7 989.4000000000001 4947 1983-07-19 2024-10-11 01:22:27.000 1983-07-19 2024-10-11 01:22:27 +4948 4948 4949 494.8 989.6 4948 1983-07-20 2024-10-11 01:22:28.000 1983-07-20 2024-10-11 01:22:28 +4949 4949 4950 494.9 989.8000000000001 4949 1983-07-21 2024-10-11 01:22:29.000 1983-07-21 2024-10-11 01:22:29 +4950 4950 4951 495 990 4950 1983-07-22 2024-10-11 01:22:30.000 1983-07-22 2024-10-11 01:22:30 +4951 4951 4952 495.1 990.2 4951 1983-07-23 2024-10-11 01:22:31.000 1983-07-23 2024-10-11 01:22:31 +4952 4952 4953 495.2 990.4000000000001 4952 1983-07-24 2024-10-11 01:22:32.000 1983-07-24 2024-10-11 01:22:32 +4953 4953 4954 495.3 990.6 4953 1983-07-25 2024-10-11 01:22:33.000 1983-07-25 2024-10-11 01:22:33 +4954 4954 4955 495.4 990.8000000000001 4954 1983-07-26 2024-10-11 01:22:34.000 1983-07-26 2024-10-11 01:22:34 +4955 4955 4956 495.5 991 4955 1983-07-27 2024-10-11 01:22:35.000 1983-07-27 2024-10-11 01:22:35 +4956 4956 4957 495.6 991.2 4956 1983-07-28 2024-10-11 01:22:36.000 1983-07-28 2024-10-11 01:22:36 +4957 4957 4958 495.7 991.4000000000001 4957 1983-07-29 2024-10-11 01:22:37.000 1983-07-29 2024-10-11 01:22:37 +4958 4958 4959 495.8 991.6 4958 1983-07-30 2024-10-11 01:22:38.000 1983-07-30 2024-10-11 01:22:38 +4959 4959 4960 495.9 991.8000000000001 4959 1983-07-31 2024-10-11 01:22:39.000 1983-07-31 2024-10-11 01:22:39 +4960 4960 4961 496 992 4960 1983-08-01 2024-10-11 01:22:40.000 1983-08-01 2024-10-11 01:22:40 +4961 4961 4962 496.1 992.2 4961 1983-08-02 2024-10-11 01:22:41.000 1983-08-02 2024-10-11 01:22:41 +4962 4962 4963 496.2 992.4000000000001 4962 1983-08-03 2024-10-11 01:22:42.000 1983-08-03 2024-10-11 01:22:42 +4963 4963 4964 496.3 992.6 4963 1983-08-04 2024-10-11 01:22:43.000 1983-08-04 2024-10-11 01:22:43 +4964 4964 4965 496.4 992.8000000000001 4964 1983-08-05 2024-10-11 01:22:44.000 1983-08-05 2024-10-11 01:22:44 +4965 4965 4966 496.5 993 4965 1983-08-06 2024-10-11 01:22:45.000 1983-08-06 2024-10-11 01:22:45 +4966 4966 4967 496.6 993.2 4966 1983-08-07 2024-10-11 01:22:46.000 1983-08-07 2024-10-11 01:22:46 +4967 4967 4968 496.7 993.4000000000001 4967 1983-08-08 2024-10-11 01:22:47.000 1983-08-08 2024-10-11 01:22:47 +4968 4968 4969 496.8 993.6 4968 1983-08-09 2024-10-11 01:22:48.000 1983-08-09 2024-10-11 01:22:48 +4969 4969 4970 496.9 993.8000000000001 4969 1983-08-10 2024-10-11 01:22:49.000 1983-08-10 2024-10-11 01:22:49 +4970 4970 4971 497 994 4970 1983-08-11 2024-10-11 01:22:50.000 1983-08-11 2024-10-11 01:22:50 +4971 4971 4972 497.1 994.2 4971 1983-08-12 2024-10-11 01:22:51.000 1983-08-12 2024-10-11 01:22:51 +4972 4972 4973 497.2 994.4000000000001 4972 1983-08-13 2024-10-11 01:22:52.000 1983-08-13 2024-10-11 01:22:52 +4973 4973 4974 497.3 994.6 4973 1983-08-14 2024-10-11 01:22:53.000 1983-08-14 2024-10-11 01:22:53 +4974 4974 4975 497.4 994.8000000000001 4974 1983-08-15 2024-10-11 01:22:54.000 1983-08-15 2024-10-11 01:22:54 +4975 4975 4976 497.5 995 4975 1983-08-16 2024-10-11 01:22:55.000 1983-08-16 2024-10-11 01:22:55 +4976 4976 4977 497.6 995.2 4976 1983-08-17 2024-10-11 01:22:56.000 1983-08-17 2024-10-11 01:22:56 +4977 4977 4978 497.7 995.4000000000001 4977 1983-08-18 2024-10-11 01:22:57.000 1983-08-18 2024-10-11 01:22:57 +4978 4978 4979 497.8 995.6 4978 1983-08-19 2024-10-11 01:22:58.000 1983-08-19 2024-10-11 01:22:58 +4979 4979 4980 497.9 995.8000000000001 4979 1983-08-20 2024-10-11 01:22:59.000 1983-08-20 2024-10-11 01:22:59 +4980 4980 4981 498 996 4980 1983-08-21 2024-10-11 01:23:00.000 1983-08-21 2024-10-11 01:23:00 +4981 4981 4982 498.1 996.2 4981 1983-08-22 2024-10-11 01:23:01.000 1983-08-22 2024-10-11 01:23:01 +4982 4982 4983 498.2 996.4000000000001 4982 1983-08-23 2024-10-11 01:23:02.000 1983-08-23 2024-10-11 01:23:02 +4983 4983 4984 498.3 996.6 4983 1983-08-24 2024-10-11 01:23:03.000 1983-08-24 2024-10-11 01:23:03 +4984 4984 4985 498.4 996.8000000000001 4984 1983-08-25 2024-10-11 01:23:04.000 1983-08-25 2024-10-11 01:23:04 +4985 4985 4986 498.5 997 4985 1983-08-26 2024-10-11 01:23:05.000 1983-08-26 2024-10-11 01:23:05 +4986 4986 4987 498.6 997.2 4986 1983-08-27 2024-10-11 01:23:06.000 1983-08-27 2024-10-11 01:23:06 +4987 4987 4988 498.7 997.4000000000001 4987 1983-08-28 2024-10-11 01:23:07.000 1983-08-28 2024-10-11 01:23:07 +4988 4988 4989 498.8 997.6 4988 1983-08-29 2024-10-11 01:23:08.000 1983-08-29 2024-10-11 01:23:08 +4989 4989 4990 498.9 997.8000000000001 4989 1983-08-30 2024-10-11 01:23:09.000 1983-08-30 2024-10-11 01:23:09 +4990 4990 4991 499 998 4990 1983-08-31 2024-10-11 01:23:10.000 1983-08-31 2024-10-11 01:23:10 +4991 4991 4992 499.1 998.2 4991 1983-09-01 2024-10-11 01:23:11.000 1983-09-01 2024-10-11 01:23:11 +4992 4992 4993 499.2 998.4000000000001 4992 1983-09-02 2024-10-11 01:23:12.000 1983-09-02 2024-10-11 01:23:12 +4993 4993 4994 499.3 998.6 4993 1983-09-03 2024-10-11 01:23:13.000 1983-09-03 2024-10-11 01:23:13 +4994 4994 4995 499.4 998.8000000000001 4994 1983-09-04 2024-10-11 01:23:14.000 1983-09-04 2024-10-11 01:23:14 +4995 4995 4996 499.5 999 4995 1983-09-05 2024-10-11 01:23:15.000 1983-09-05 2024-10-11 01:23:15 +4996 4996 4997 499.6 999.2 4996 1983-09-06 2024-10-11 01:23:16.000 1983-09-06 2024-10-11 01:23:16 +4997 4997 4998 499.7 999.4000000000001 4997 1983-09-07 2024-10-11 01:23:17.000 1983-09-07 2024-10-11 01:23:17 +4998 4998 4999 499.8 999.6 4998 1983-09-08 2024-10-11 01:23:18.000 1983-09-08 2024-10-11 01:23:18 +4999 4999 5000 499.9 999.8000000000001 4999 1983-09-09 2024-10-11 01:23:19.000 1983-09-09 2024-10-11 01:23:19 +5000 5000 5001 500 1000 5000 1983-09-10 2024-10-11 01:23:20.000 1983-09-10 2024-10-11 01:23:20 +5001 5001 5002 500.1 1000.2 5001 1983-09-11 2024-10-11 01:23:21.000 1983-09-11 2024-10-11 01:23:21 +5002 5002 5003 500.2 1000.4000000000001 5002 1983-09-12 2024-10-11 01:23:22.000 1983-09-12 2024-10-11 01:23:22 +5003 5003 5004 500.3 1000.6 5003 1983-09-13 2024-10-11 01:23:23.000 1983-09-13 2024-10-11 01:23:23 +5004 5004 5005 500.4 1000.8000000000001 5004 1983-09-14 2024-10-11 01:23:24.000 1983-09-14 2024-10-11 01:23:24 +5005 5005 5006 500.5 1001 5005 1983-09-15 2024-10-11 01:23:25.000 1983-09-15 2024-10-11 01:23:25 +5006 5006 5007 500.6 1001.2 5006 1983-09-16 2024-10-11 01:23:26.000 1983-09-16 2024-10-11 01:23:26 +5007 5007 5008 500.7 1001.4000000000001 5007 1983-09-17 2024-10-11 01:23:27.000 1983-09-17 2024-10-11 01:23:27 +5008 5008 5009 500.8 1001.6 5008 1983-09-18 2024-10-11 01:23:28.000 1983-09-18 2024-10-11 01:23:28 +5009 5009 5010 500.9 1001.8000000000001 5009 1983-09-19 2024-10-11 01:23:29.000 1983-09-19 2024-10-11 01:23:29 +5010 5010 5011 501 1002 5010 1983-09-20 2024-10-11 01:23:30.000 1983-09-20 2024-10-11 01:23:30 +5011 5011 5012 501.1 1002.2 5011 1983-09-21 2024-10-11 01:23:31.000 1983-09-21 2024-10-11 01:23:31 +5012 5012 5013 501.2 1002.4000000000001 5012 1983-09-22 2024-10-11 01:23:32.000 1983-09-22 2024-10-11 01:23:32 +5013 5013 5014 501.3 1002.6 5013 1983-09-23 2024-10-11 01:23:33.000 1983-09-23 2024-10-11 01:23:33 +5014 5014 5015 501.4 1002.8000000000001 5014 1983-09-24 2024-10-11 01:23:34.000 1983-09-24 2024-10-11 01:23:34 +5015 5015 5016 501.5 1003 5015 1983-09-25 2024-10-11 01:23:35.000 1983-09-25 2024-10-11 01:23:35 +5016 5016 5017 501.6 1003.2 5016 1983-09-26 2024-10-11 01:23:36.000 1983-09-26 2024-10-11 01:23:36 +5017 5017 5018 501.7 1003.4000000000001 5017 1983-09-27 2024-10-11 01:23:37.000 1983-09-27 2024-10-11 01:23:37 +5018 5018 5019 501.8 1003.6 5018 1983-09-28 2024-10-11 01:23:38.000 1983-09-28 2024-10-11 01:23:38 +5019 5019 5020 501.9 1003.8000000000001 5019 1983-09-29 2024-10-11 01:23:39.000 1983-09-29 2024-10-11 01:23:39 +5020 5020 5021 502 1004 5020 1983-09-30 2024-10-11 01:23:40.000 1983-09-30 2024-10-11 01:23:40 +5021 5021 5022 502.1 1004.2 5021 1983-10-01 2024-10-11 01:23:41.000 1983-10-01 2024-10-11 01:23:41 +5022 5022 5023 502.2 1004.4000000000001 5022 1983-10-02 2024-10-11 01:23:42.000 1983-10-02 2024-10-11 01:23:42 +5023 5023 5024 502.3 1004.6 5023 1983-10-03 2024-10-11 01:23:43.000 1983-10-03 2024-10-11 01:23:43 +5024 5024 5025 502.4 1004.8000000000001 5024 1983-10-04 2024-10-11 01:23:44.000 1983-10-04 2024-10-11 01:23:44 +5025 5025 5026 502.5 1005 5025 1983-10-05 2024-10-11 01:23:45.000 1983-10-05 2024-10-11 01:23:45 +5026 5026 5027 502.6 1005.2 5026 1983-10-06 2024-10-11 01:23:46.000 1983-10-06 2024-10-11 01:23:46 +5027 5027 5028 502.7 1005.4000000000001 5027 1983-10-07 2024-10-11 01:23:47.000 1983-10-07 2024-10-11 01:23:47 +5028 5028 5029 502.8 1005.6 5028 1983-10-08 2024-10-11 01:23:48.000 1983-10-08 2024-10-11 01:23:48 +5029 5029 5030 502.9 1005.8000000000001 5029 1983-10-09 2024-10-11 01:23:49.000 1983-10-09 2024-10-11 01:23:49 +5030 5030 5031 503 1006 5030 1983-10-10 2024-10-11 01:23:50.000 1983-10-10 2024-10-11 01:23:50 +5031 5031 5032 503.1 1006.2 5031 1983-10-11 2024-10-11 01:23:51.000 1983-10-11 2024-10-11 01:23:51 +5032 5032 5033 503.2 1006.4000000000001 5032 1983-10-12 2024-10-11 01:23:52.000 1983-10-12 2024-10-11 01:23:52 +5033 5033 5034 503.3 1006.6 5033 1983-10-13 2024-10-11 01:23:53.000 1983-10-13 2024-10-11 01:23:53 +5034 5034 5035 503.4 1006.8000000000001 5034 1983-10-14 2024-10-11 01:23:54.000 1983-10-14 2024-10-11 01:23:54 +5035 5035 5036 503.5 1007 5035 1983-10-15 2024-10-11 01:23:55.000 1983-10-15 2024-10-11 01:23:55 +5036 5036 5037 503.6 1007.2 5036 1983-10-16 2024-10-11 01:23:56.000 1983-10-16 2024-10-11 01:23:56 +5037 5037 5038 503.7 1007.4000000000001 5037 1983-10-17 2024-10-11 01:23:57.000 1983-10-17 2024-10-11 01:23:57 +5038 5038 5039 503.8 1007.6 5038 1983-10-18 2024-10-11 01:23:58.000 1983-10-18 2024-10-11 01:23:58 +5039 5039 5040 503.9 1007.8000000000001 5039 1983-10-19 2024-10-11 01:23:59.000 1983-10-19 2024-10-11 01:23:59 +5040 5040 5041 504 1008 5040 1983-10-20 2024-10-11 01:24:00.000 1983-10-20 2024-10-11 01:24:00 +5041 5041 5042 504.1 1008.2 5041 1983-10-21 2024-10-11 01:24:01.000 1983-10-21 2024-10-11 01:24:01 +5042 5042 5043 504.2 1008.4000000000001 5042 1983-10-22 2024-10-11 01:24:02.000 1983-10-22 2024-10-11 01:24:02 +5043 5043 5044 504.3 1008.6 5043 1983-10-23 2024-10-11 01:24:03.000 1983-10-23 2024-10-11 01:24:03 +5044 5044 5045 504.4 1008.8000000000001 5044 1983-10-24 2024-10-11 01:24:04.000 1983-10-24 2024-10-11 01:24:04 +5045 5045 5046 504.5 1009 5045 1983-10-25 2024-10-11 01:24:05.000 1983-10-25 2024-10-11 01:24:05 +5046 5046 5047 504.6 1009.2 5046 1983-10-26 2024-10-11 01:24:06.000 1983-10-26 2024-10-11 01:24:06 +5047 5047 5048 504.7 1009.4000000000001 5047 1983-10-27 2024-10-11 01:24:07.000 1983-10-27 2024-10-11 01:24:07 +5048 5048 5049 504.8 1009.6 5048 1983-10-28 2024-10-11 01:24:08.000 1983-10-28 2024-10-11 01:24:08 +5049 5049 5050 504.9 1009.8000000000001 5049 1983-10-29 2024-10-11 01:24:09.000 1983-10-29 2024-10-11 01:24:09 +5050 5050 5051 505 1010 5050 1983-10-30 2024-10-11 01:24:10.000 1983-10-30 2024-10-11 01:24:10 +5051 5051 5052 505.1 1010.2 5051 1983-10-31 2024-10-11 01:24:11.000 1983-10-31 2024-10-11 01:24:11 +5052 5052 5053 505.2 1010.4000000000001 5052 1983-11-01 2024-10-11 01:24:12.000 1983-11-01 2024-10-11 01:24:12 +5053 5053 5054 505.3 1010.6 5053 1983-11-02 2024-10-11 01:24:13.000 1983-11-02 2024-10-11 01:24:13 +5054 5054 5055 505.4 1010.8000000000001 5054 1983-11-03 2024-10-11 01:24:14.000 1983-11-03 2024-10-11 01:24:14 +5055 5055 5056 505.5 1011 5055 1983-11-04 2024-10-11 01:24:15.000 1983-11-04 2024-10-11 01:24:15 +5056 5056 5057 505.6 1011.2 5056 1983-11-05 2024-10-11 01:24:16.000 1983-11-05 2024-10-11 01:24:16 +5057 5057 5058 505.7 1011.4000000000001 5057 1983-11-06 2024-10-11 01:24:17.000 1983-11-06 2024-10-11 01:24:17 +5058 5058 5059 505.8 1011.6 5058 1983-11-07 2024-10-11 01:24:18.000 1983-11-07 2024-10-11 01:24:18 +5059 5059 5060 505.9 1011.8000000000001 5059 1983-11-08 2024-10-11 01:24:19.000 1983-11-08 2024-10-11 01:24:19 +5060 5060 5061 506 1012 5060 1983-11-09 2024-10-11 01:24:20.000 1983-11-09 2024-10-11 01:24:20 +5061 5061 5062 506.1 1012.2 5061 1983-11-10 2024-10-11 01:24:21.000 1983-11-10 2024-10-11 01:24:21 +5062 5062 5063 506.2 1012.4000000000001 5062 1983-11-11 2024-10-11 01:24:22.000 1983-11-11 2024-10-11 01:24:22 +5063 5063 5064 506.3 1012.6 5063 1983-11-12 2024-10-11 01:24:23.000 1983-11-12 2024-10-11 01:24:23 +5064 5064 5065 506.4 1012.8000000000001 5064 1983-11-13 2024-10-11 01:24:24.000 1983-11-13 2024-10-11 01:24:24 +5065 5065 5066 506.5 1013 5065 1983-11-14 2024-10-11 01:24:25.000 1983-11-14 2024-10-11 01:24:25 +5066 5066 5067 506.6 1013.2 5066 1983-11-15 2024-10-11 01:24:26.000 1983-11-15 2024-10-11 01:24:26 +5067 5067 5068 506.7 1013.4000000000001 5067 1983-11-16 2024-10-11 01:24:27.000 1983-11-16 2024-10-11 01:24:27 +5068 5068 5069 506.8 1013.6 5068 1983-11-17 2024-10-11 01:24:28.000 1983-11-17 2024-10-11 01:24:28 +5069 5069 5070 506.9 1013.8000000000001 5069 1983-11-18 2024-10-11 01:24:29.000 1983-11-18 2024-10-11 01:24:29 +5070 5070 5071 507 1014 5070 1983-11-19 2024-10-11 01:24:30.000 1983-11-19 2024-10-11 01:24:30 +5071 5071 5072 507.1 1014.2 5071 1983-11-20 2024-10-11 01:24:31.000 1983-11-20 2024-10-11 01:24:31 +5072 5072 5073 507.2 1014.4000000000001 5072 1983-11-21 2024-10-11 01:24:32.000 1983-11-21 2024-10-11 01:24:32 +5073 5073 5074 507.3 1014.6 5073 1983-11-22 2024-10-11 01:24:33.000 1983-11-22 2024-10-11 01:24:33 +5074 5074 5075 507.4 1014.8000000000001 5074 1983-11-23 2024-10-11 01:24:34.000 1983-11-23 2024-10-11 01:24:34 +5075 5075 5076 507.5 1015 5075 1983-11-24 2024-10-11 01:24:35.000 1983-11-24 2024-10-11 01:24:35 +5076 5076 5077 507.6 1015.2 5076 1983-11-25 2024-10-11 01:24:36.000 1983-11-25 2024-10-11 01:24:36 +5077 5077 5078 507.7 1015.4000000000001 5077 1983-11-26 2024-10-11 01:24:37.000 1983-11-26 2024-10-11 01:24:37 +5078 5078 5079 507.8 1015.6 5078 1983-11-27 2024-10-11 01:24:38.000 1983-11-27 2024-10-11 01:24:38 +5079 5079 5080 507.9 1015.8000000000001 5079 1983-11-28 2024-10-11 01:24:39.000 1983-11-28 2024-10-11 01:24:39 +5080 5080 5081 508 1016 5080 1983-11-29 2024-10-11 01:24:40.000 1983-11-29 2024-10-11 01:24:40 +5081 5081 5082 508.1 1016.2 5081 1983-11-30 2024-10-11 01:24:41.000 1983-11-30 2024-10-11 01:24:41 +5082 5082 5083 508.2 1016.4000000000001 5082 1983-12-01 2024-10-11 01:24:42.000 1983-12-01 2024-10-11 01:24:42 +5083 5083 5084 508.3 1016.6 5083 1983-12-02 2024-10-11 01:24:43.000 1983-12-02 2024-10-11 01:24:43 +5084 5084 5085 508.4 1016.8000000000001 5084 1983-12-03 2024-10-11 01:24:44.000 1983-12-03 2024-10-11 01:24:44 +5085 5085 5086 508.5 1017 5085 1983-12-04 2024-10-11 01:24:45.000 1983-12-04 2024-10-11 01:24:45 +5086 5086 5087 508.6 1017.2 5086 1983-12-05 2024-10-11 01:24:46.000 1983-12-05 2024-10-11 01:24:46 +5087 5087 5088 508.7 1017.4000000000001 5087 1983-12-06 2024-10-11 01:24:47.000 1983-12-06 2024-10-11 01:24:47 +5088 5088 5089 508.8 1017.6 5088 1983-12-07 2024-10-11 01:24:48.000 1983-12-07 2024-10-11 01:24:48 +5089 5089 5090 508.9 1017.8000000000001 5089 1983-12-08 2024-10-11 01:24:49.000 1983-12-08 2024-10-11 01:24:49 +5090 5090 5091 509 1018 5090 1983-12-09 2024-10-11 01:24:50.000 1983-12-09 2024-10-11 01:24:50 +5091 5091 5092 509.1 1018.2 5091 1983-12-10 2024-10-11 01:24:51.000 1983-12-10 2024-10-11 01:24:51 +5092 5092 5093 509.2 1018.4000000000001 5092 1983-12-11 2024-10-11 01:24:52.000 1983-12-11 2024-10-11 01:24:52 +5093 5093 5094 509.3 1018.6 5093 1983-12-12 2024-10-11 01:24:53.000 1983-12-12 2024-10-11 01:24:53 +5094 5094 5095 509.4 1018.8000000000001 5094 1983-12-13 2024-10-11 01:24:54.000 1983-12-13 2024-10-11 01:24:54 +5095 5095 5096 509.5 1019 5095 1983-12-14 2024-10-11 01:24:55.000 1983-12-14 2024-10-11 01:24:55 +5096 5096 5097 509.6 1019.2 5096 1983-12-15 2024-10-11 01:24:56.000 1983-12-15 2024-10-11 01:24:56 +5097 5097 5098 509.7 1019.4000000000001 5097 1983-12-16 2024-10-11 01:24:57.000 1983-12-16 2024-10-11 01:24:57 +5098 5098 5099 509.8 1019.6 5098 1983-12-17 2024-10-11 01:24:58.000 1983-12-17 2024-10-11 01:24:58 +5099 5099 5100 509.9 1019.8000000000001 5099 1983-12-18 2024-10-11 01:24:59.000 1983-12-18 2024-10-11 01:24:59 +5100 5100 5101 510 1020 5100 1983-12-19 2024-10-11 01:25:00.000 1983-12-19 2024-10-11 01:25:00 +5101 5101 5102 510.1 1020.2 5101 1983-12-20 2024-10-11 01:25:01.000 1983-12-20 2024-10-11 01:25:01 +5102 5102 5103 510.2 1020.4000000000001 5102 1983-12-21 2024-10-11 01:25:02.000 1983-12-21 2024-10-11 01:25:02 +5103 5103 5104 510.3 1020.6 5103 1983-12-22 2024-10-11 01:25:03.000 1983-12-22 2024-10-11 01:25:03 +5104 5104 5105 510.4 1020.8000000000001 5104 1983-12-23 2024-10-11 01:25:04.000 1983-12-23 2024-10-11 01:25:04 +5105 5105 5106 510.5 1021 5105 1983-12-24 2024-10-11 01:25:05.000 1983-12-24 2024-10-11 01:25:05 +5106 5106 5107 510.6 1021.2 5106 1983-12-25 2024-10-11 01:25:06.000 1983-12-25 2024-10-11 01:25:06 +5107 5107 5108 510.7 1021.4000000000001 5107 1983-12-26 2024-10-11 01:25:07.000 1983-12-26 2024-10-11 01:25:07 +5108 5108 5109 510.8 1021.6 5108 1983-12-27 2024-10-11 01:25:08.000 1983-12-27 2024-10-11 01:25:08 +5109 5109 5110 510.9 1021.8000000000001 5109 1983-12-28 2024-10-11 01:25:09.000 1983-12-28 2024-10-11 01:25:09 +5110 5110 5111 511 1022 5110 1983-12-29 2024-10-11 01:25:10.000 1983-12-29 2024-10-11 01:25:10 +5111 5111 5112 511.1 1022.2 5111 1983-12-30 2024-10-11 01:25:11.000 1983-12-30 2024-10-11 01:25:11 +5112 5112 5113 511.2 1022.4000000000001 5112 1983-12-31 2024-10-11 01:25:12.000 1983-12-31 2024-10-11 01:25:12 +5113 5113 5114 511.3 1022.6 5113 1984-01-01 2024-10-11 01:25:13.000 1984-01-01 2024-10-11 01:25:13 +5114 5114 5115 511.4 1022.8000000000001 5114 1984-01-02 2024-10-11 01:25:14.000 1984-01-02 2024-10-11 01:25:14 +5115 5115 5116 511.5 1023 5115 1984-01-03 2024-10-11 01:25:15.000 1984-01-03 2024-10-11 01:25:15 +5116 5116 5117 511.6 1023.2 5116 1984-01-04 2024-10-11 01:25:16.000 1984-01-04 2024-10-11 01:25:16 +5117 5117 5118 511.7 1023.4000000000001 5117 1984-01-05 2024-10-11 01:25:17.000 1984-01-05 2024-10-11 01:25:17 +5118 5118 5119 511.8 1023.6 5118 1984-01-06 2024-10-11 01:25:18.000 1984-01-06 2024-10-11 01:25:18 +5119 5119 5120 511.9 1023.8000000000001 5119 1984-01-07 2024-10-11 01:25:19.000 1984-01-07 2024-10-11 01:25:19 +5120 5120 5121 512 1024 5120 1984-01-08 2024-10-11 01:25:20.000 1984-01-08 2024-10-11 01:25:20 +5121 5121 5122 512.1 1024.2 5121 1984-01-09 2024-10-11 01:25:21.000 1984-01-09 2024-10-11 01:25:21 +5122 5122 5123 512.2 1024.4 5122 1984-01-10 2024-10-11 01:25:22.000 1984-01-10 2024-10-11 01:25:22 +5123 5123 5124 512.3 1024.6000000000001 5123 1984-01-11 2024-10-11 01:25:23.000 1984-01-11 2024-10-11 01:25:23 +5124 5124 5125 512.4 1024.8 5124 1984-01-12 2024-10-11 01:25:24.000 1984-01-12 2024-10-11 01:25:24 +5125 5125 5126 512.5 1025 5125 1984-01-13 2024-10-11 01:25:25.000 1984-01-13 2024-10-11 01:25:25 +5126 5126 5127 512.6 1025.2 5126 1984-01-14 2024-10-11 01:25:26.000 1984-01-14 2024-10-11 01:25:26 +5127 5127 5128 512.7 1025.4 5127 1984-01-15 2024-10-11 01:25:27.000 1984-01-15 2024-10-11 01:25:27 +5128 5128 5129 512.8 1025.6000000000001 5128 1984-01-16 2024-10-11 01:25:28.000 1984-01-16 2024-10-11 01:25:28 +5129 5129 5130 512.9 1025.8 5129 1984-01-17 2024-10-11 01:25:29.000 1984-01-17 2024-10-11 01:25:29 +5130 5130 5131 513 1026 5130 1984-01-18 2024-10-11 01:25:30.000 1984-01-18 2024-10-11 01:25:30 +5131 5131 5132 513.1 1026.2 5131 1984-01-19 2024-10-11 01:25:31.000 1984-01-19 2024-10-11 01:25:31 +5132 5132 5133 513.2 1026.4 5132 1984-01-20 2024-10-11 01:25:32.000 1984-01-20 2024-10-11 01:25:32 +5133 5133 5134 513.3 1026.6000000000001 5133 1984-01-21 2024-10-11 01:25:33.000 1984-01-21 2024-10-11 01:25:33 +5134 5134 5135 513.4 1026.8 5134 1984-01-22 2024-10-11 01:25:34.000 1984-01-22 2024-10-11 01:25:34 +5135 5135 5136 513.5 1027 5135 1984-01-23 2024-10-11 01:25:35.000 1984-01-23 2024-10-11 01:25:35 +5136 5136 5137 513.6 1027.2 5136 1984-01-24 2024-10-11 01:25:36.000 1984-01-24 2024-10-11 01:25:36 +5137 5137 5138 513.7 1027.4 5137 1984-01-25 2024-10-11 01:25:37.000 1984-01-25 2024-10-11 01:25:37 +5138 5138 5139 513.8 1027.6000000000001 5138 1984-01-26 2024-10-11 01:25:38.000 1984-01-26 2024-10-11 01:25:38 +5139 5139 5140 513.9 1027.8 5139 1984-01-27 2024-10-11 01:25:39.000 1984-01-27 2024-10-11 01:25:39 +5140 5140 5141 514 1028 5140 1984-01-28 2024-10-11 01:25:40.000 1984-01-28 2024-10-11 01:25:40 +5141 5141 5142 514.1 1028.2 5141 1984-01-29 2024-10-11 01:25:41.000 1984-01-29 2024-10-11 01:25:41 +5142 5142 5143 514.2 1028.4 5142 1984-01-30 2024-10-11 01:25:42.000 1984-01-30 2024-10-11 01:25:42 +5143 5143 5144 514.3 1028.6000000000001 5143 1984-01-31 2024-10-11 01:25:43.000 1984-01-31 2024-10-11 01:25:43 +5144 5144 5145 514.4 1028.8 5144 1984-02-01 2024-10-11 01:25:44.000 1984-02-01 2024-10-11 01:25:44 +5145 5145 5146 514.5 1029 5145 1984-02-02 2024-10-11 01:25:45.000 1984-02-02 2024-10-11 01:25:45 +5146 5146 5147 514.6 1029.2 5146 1984-02-03 2024-10-11 01:25:46.000 1984-02-03 2024-10-11 01:25:46 +5147 5147 5148 514.7 1029.4 5147 1984-02-04 2024-10-11 01:25:47.000 1984-02-04 2024-10-11 01:25:47 +5148 5148 5149 514.8 1029.6000000000001 5148 1984-02-05 2024-10-11 01:25:48.000 1984-02-05 2024-10-11 01:25:48 +5149 5149 5150 514.9 1029.8 5149 1984-02-06 2024-10-11 01:25:49.000 1984-02-06 2024-10-11 01:25:49 +5150 5150 5151 515 1030 5150 1984-02-07 2024-10-11 01:25:50.000 1984-02-07 2024-10-11 01:25:50 +5151 5151 5152 515.1 1030.2 5151 1984-02-08 2024-10-11 01:25:51.000 1984-02-08 2024-10-11 01:25:51 +5152 5152 5153 515.2 1030.4 5152 1984-02-09 2024-10-11 01:25:52.000 1984-02-09 2024-10-11 01:25:52 +5153 5153 5154 515.3 1030.6000000000001 5153 1984-02-10 2024-10-11 01:25:53.000 1984-02-10 2024-10-11 01:25:53 +5154 5154 5155 515.4 1030.8 5154 1984-02-11 2024-10-11 01:25:54.000 1984-02-11 2024-10-11 01:25:54 +5155 5155 5156 515.5 1031 5155 1984-02-12 2024-10-11 01:25:55.000 1984-02-12 2024-10-11 01:25:55 +5156 5156 5157 515.6 1031.2 5156 1984-02-13 2024-10-11 01:25:56.000 1984-02-13 2024-10-11 01:25:56 +5157 5157 5158 515.7 1031.4 5157 1984-02-14 2024-10-11 01:25:57.000 1984-02-14 2024-10-11 01:25:57 +5158 5158 5159 515.8 1031.6000000000001 5158 1984-02-15 2024-10-11 01:25:58.000 1984-02-15 2024-10-11 01:25:58 +5159 5159 5160 515.9 1031.8 5159 1984-02-16 2024-10-11 01:25:59.000 1984-02-16 2024-10-11 01:25:59 +5160 5160 5161 516 1032 5160 1984-02-17 2024-10-11 01:26:00.000 1984-02-17 2024-10-11 01:26:00 +5161 5161 5162 516.1 1032.2 5161 1984-02-18 2024-10-11 01:26:01.000 1984-02-18 2024-10-11 01:26:01 +5162 5162 5163 516.2 1032.4 5162 1984-02-19 2024-10-11 01:26:02.000 1984-02-19 2024-10-11 01:26:02 +5163 5163 5164 516.3 1032.6000000000001 5163 1984-02-20 2024-10-11 01:26:03.000 1984-02-20 2024-10-11 01:26:03 +5164 5164 5165 516.4 1032.8 5164 1984-02-21 2024-10-11 01:26:04.000 1984-02-21 2024-10-11 01:26:04 +5165 5165 5166 516.5 1033 5165 1984-02-22 2024-10-11 01:26:05.000 1984-02-22 2024-10-11 01:26:05 +5166 5166 5167 516.6 1033.2 5166 1984-02-23 2024-10-11 01:26:06.000 1984-02-23 2024-10-11 01:26:06 +5167 5167 5168 516.7 1033.4 5167 1984-02-24 2024-10-11 01:26:07.000 1984-02-24 2024-10-11 01:26:07 +5168 5168 5169 516.8 1033.6000000000001 5168 1984-02-25 2024-10-11 01:26:08.000 1984-02-25 2024-10-11 01:26:08 +5169 5169 5170 516.9 1033.8 5169 1984-02-26 2024-10-11 01:26:09.000 1984-02-26 2024-10-11 01:26:09 +5170 5170 5171 517 1034 5170 1984-02-27 2024-10-11 01:26:10.000 1984-02-27 2024-10-11 01:26:10 +5171 5171 5172 517.1 1034.2 5171 1984-02-28 2024-10-11 01:26:11.000 1984-02-28 2024-10-11 01:26:11 +5172 5172 5173 517.2 1034.4 5172 1984-02-29 2024-10-11 01:26:12.000 1984-02-29 2024-10-11 01:26:12 +5173 5173 5174 517.3 1034.6000000000001 5173 1984-03-01 2024-10-11 01:26:13.000 1984-03-01 2024-10-11 01:26:13 +5174 5174 5175 517.4 1034.8 5174 1984-03-02 2024-10-11 01:26:14.000 1984-03-02 2024-10-11 01:26:14 +5175 5175 5176 517.5 1035 5175 1984-03-03 2024-10-11 01:26:15.000 1984-03-03 2024-10-11 01:26:15 +5176 5176 5177 517.6 1035.2 5176 1984-03-04 2024-10-11 01:26:16.000 1984-03-04 2024-10-11 01:26:16 +5177 5177 5178 517.7 1035.4 5177 1984-03-05 2024-10-11 01:26:17.000 1984-03-05 2024-10-11 01:26:17 +5178 5178 5179 517.8 1035.6000000000001 5178 1984-03-06 2024-10-11 01:26:18.000 1984-03-06 2024-10-11 01:26:18 +5179 5179 5180 517.9 1035.8 5179 1984-03-07 2024-10-11 01:26:19.000 1984-03-07 2024-10-11 01:26:19 +5180 5180 5181 518 1036 5180 1984-03-08 2024-10-11 01:26:20.000 1984-03-08 2024-10-11 01:26:20 +5181 5181 5182 518.1 1036.2 5181 1984-03-09 2024-10-11 01:26:21.000 1984-03-09 2024-10-11 01:26:21 +5182 5182 5183 518.2 1036.4 5182 1984-03-10 2024-10-11 01:26:22.000 1984-03-10 2024-10-11 01:26:22 +5183 5183 5184 518.3 1036.6000000000001 5183 1984-03-11 2024-10-11 01:26:23.000 1984-03-11 2024-10-11 01:26:23 +5184 5184 5185 518.4 1036.8 5184 1984-03-12 2024-10-11 01:26:24.000 1984-03-12 2024-10-11 01:26:24 +5185 5185 5186 518.5 1037 5185 1984-03-13 2024-10-11 01:26:25.000 1984-03-13 2024-10-11 01:26:25 +5186 5186 5187 518.6 1037.2 5186 1984-03-14 2024-10-11 01:26:26.000 1984-03-14 2024-10-11 01:26:26 +5187 5187 5188 518.7 1037.4 5187 1984-03-15 2024-10-11 01:26:27.000 1984-03-15 2024-10-11 01:26:27 +5188 5188 5189 518.8 1037.6000000000001 5188 1984-03-16 2024-10-11 01:26:28.000 1984-03-16 2024-10-11 01:26:28 +5189 5189 5190 518.9 1037.8 5189 1984-03-17 2024-10-11 01:26:29.000 1984-03-17 2024-10-11 01:26:29 +5190 5190 5191 519 1038 5190 1984-03-18 2024-10-11 01:26:30.000 1984-03-18 2024-10-11 01:26:30 +5191 5191 5192 519.1 1038.2 5191 1984-03-19 2024-10-11 01:26:31.000 1984-03-19 2024-10-11 01:26:31 +5192 5192 5193 519.2 1038.4 5192 1984-03-20 2024-10-11 01:26:32.000 1984-03-20 2024-10-11 01:26:32 +5193 5193 5194 519.3 1038.6000000000001 5193 1984-03-21 2024-10-11 01:26:33.000 1984-03-21 2024-10-11 01:26:33 +5194 5194 5195 519.4 1038.8 5194 1984-03-22 2024-10-11 01:26:34.000 1984-03-22 2024-10-11 01:26:34 +5195 5195 5196 519.5 1039 5195 1984-03-23 2024-10-11 01:26:35.000 1984-03-23 2024-10-11 01:26:35 +5196 5196 5197 519.6 1039.2 5196 1984-03-24 2024-10-11 01:26:36.000 1984-03-24 2024-10-11 01:26:36 +5197 5197 5198 519.7 1039.4 5197 1984-03-25 2024-10-11 01:26:37.000 1984-03-25 2024-10-11 01:26:37 +5198 5198 5199 519.8 1039.6000000000001 5198 1984-03-26 2024-10-11 01:26:38.000 1984-03-26 2024-10-11 01:26:38 +5199 5199 5200 519.9 1039.8 5199 1984-03-27 2024-10-11 01:26:39.000 1984-03-27 2024-10-11 01:26:39 +5200 5200 5201 520 1040 5200 1984-03-28 2024-10-11 01:26:40.000 1984-03-28 2024-10-11 01:26:40 +5201 5201 5202 520.1 1040.2 5201 1984-03-29 2024-10-11 01:26:41.000 1984-03-29 2024-10-11 01:26:41 +5202 5202 5203 520.2 1040.4 5202 1984-03-30 2024-10-11 01:26:42.000 1984-03-30 2024-10-11 01:26:42 +5203 5203 5204 520.3 1040.6000000000001 5203 1984-03-31 2024-10-11 01:26:43.000 1984-03-31 2024-10-11 01:26:43 +5204 5204 5205 520.4 1040.8 5204 1984-04-01 2024-10-11 01:26:44.000 1984-04-01 2024-10-11 01:26:44 +5205 5205 5206 520.5 1041 5205 1984-04-02 2024-10-11 01:26:45.000 1984-04-02 2024-10-11 01:26:45 +5206 5206 5207 520.6 1041.2 5206 1984-04-03 2024-10-11 01:26:46.000 1984-04-03 2024-10-11 01:26:46 +5207 5207 5208 520.7 1041.4 5207 1984-04-04 2024-10-11 01:26:47.000 1984-04-04 2024-10-11 01:26:47 +5208 5208 5209 520.8 1041.6000000000001 5208 1984-04-05 2024-10-11 01:26:48.000 1984-04-05 2024-10-11 01:26:48 +5209 5209 5210 520.9 1041.8 5209 1984-04-06 2024-10-11 01:26:49.000 1984-04-06 2024-10-11 01:26:49 +5210 5210 5211 521 1042 5210 1984-04-07 2024-10-11 01:26:50.000 1984-04-07 2024-10-11 01:26:50 +5211 5211 5212 521.1 1042.2 5211 1984-04-08 2024-10-11 01:26:51.000 1984-04-08 2024-10-11 01:26:51 +5212 5212 5213 521.2 1042.4 5212 1984-04-09 2024-10-11 01:26:52.000 1984-04-09 2024-10-11 01:26:52 +5213 5213 5214 521.3 1042.6000000000001 5213 1984-04-10 2024-10-11 01:26:53.000 1984-04-10 2024-10-11 01:26:53 +5214 5214 5215 521.4 1042.8 5214 1984-04-11 2024-10-11 01:26:54.000 1984-04-11 2024-10-11 01:26:54 +5215 5215 5216 521.5 1043 5215 1984-04-12 2024-10-11 01:26:55.000 1984-04-12 2024-10-11 01:26:55 +5216 5216 5217 521.6 1043.2 5216 1984-04-13 2024-10-11 01:26:56.000 1984-04-13 2024-10-11 01:26:56 +5217 5217 5218 521.7 1043.4 5217 1984-04-14 2024-10-11 01:26:57.000 1984-04-14 2024-10-11 01:26:57 +5218 5218 5219 521.8 1043.6000000000001 5218 1984-04-15 2024-10-11 01:26:58.000 1984-04-15 2024-10-11 01:26:58 +5219 5219 5220 521.9 1043.8 5219 1984-04-16 2024-10-11 01:26:59.000 1984-04-16 2024-10-11 01:26:59 +5220 5220 5221 522 1044 5220 1984-04-17 2024-10-11 01:27:00.000 1984-04-17 2024-10-11 01:27:00 +5221 5221 5222 522.1 1044.2 5221 1984-04-18 2024-10-11 01:27:01.000 1984-04-18 2024-10-11 01:27:01 +5222 5222 5223 522.2 1044.4 5222 1984-04-19 2024-10-11 01:27:02.000 1984-04-19 2024-10-11 01:27:02 +5223 5223 5224 522.3 1044.6000000000001 5223 1984-04-20 2024-10-11 01:27:03.000 1984-04-20 2024-10-11 01:27:03 +5224 5224 5225 522.4 1044.8 5224 1984-04-21 2024-10-11 01:27:04.000 1984-04-21 2024-10-11 01:27:04 +5225 5225 5226 522.5 1045 5225 1984-04-22 2024-10-11 01:27:05.000 1984-04-22 2024-10-11 01:27:05 +5226 5226 5227 522.6 1045.2 5226 1984-04-23 2024-10-11 01:27:06.000 1984-04-23 2024-10-11 01:27:06 +5227 5227 5228 522.7 1045.4 5227 1984-04-24 2024-10-11 01:27:07.000 1984-04-24 2024-10-11 01:27:07 +5228 5228 5229 522.8 1045.6000000000001 5228 1984-04-25 2024-10-11 01:27:08.000 1984-04-25 2024-10-11 01:27:08 +5229 5229 5230 522.9 1045.8 5229 1984-04-26 2024-10-11 01:27:09.000 1984-04-26 2024-10-11 01:27:09 +5230 5230 5231 523 1046 5230 1984-04-27 2024-10-11 01:27:10.000 1984-04-27 2024-10-11 01:27:10 +5231 5231 5232 523.1 1046.2 5231 1984-04-28 2024-10-11 01:27:11.000 1984-04-28 2024-10-11 01:27:11 +5232 5232 5233 523.2 1046.4 5232 1984-04-29 2024-10-11 01:27:12.000 1984-04-29 2024-10-11 01:27:12 +5233 5233 5234 523.3 1046.6000000000001 5233 1984-04-30 2024-10-11 01:27:13.000 1984-04-30 2024-10-11 01:27:13 +5234 5234 5235 523.4 1046.8 5234 1984-05-01 2024-10-11 01:27:14.000 1984-05-01 2024-10-11 01:27:14 +5235 5235 5236 523.5 1047 5235 1984-05-02 2024-10-11 01:27:15.000 1984-05-02 2024-10-11 01:27:15 +5236 5236 5237 523.6 1047.2 5236 1984-05-03 2024-10-11 01:27:16.000 1984-05-03 2024-10-11 01:27:16 +5237 5237 5238 523.7 1047.4 5237 1984-05-04 2024-10-11 01:27:17.000 1984-05-04 2024-10-11 01:27:17 +5238 5238 5239 523.8 1047.6000000000001 5238 1984-05-05 2024-10-11 01:27:18.000 1984-05-05 2024-10-11 01:27:18 +5239 5239 5240 523.9 1047.8 5239 1984-05-06 2024-10-11 01:27:19.000 1984-05-06 2024-10-11 01:27:19 +5240 5240 5241 524 1048 5240 1984-05-07 2024-10-11 01:27:20.000 1984-05-07 2024-10-11 01:27:20 +5241 5241 5242 524.1 1048.2 5241 1984-05-08 2024-10-11 01:27:21.000 1984-05-08 2024-10-11 01:27:21 +5242 5242 5243 524.2 1048.4 5242 1984-05-09 2024-10-11 01:27:22.000 1984-05-09 2024-10-11 01:27:22 +5243 5243 5244 524.3 1048.6000000000001 5243 1984-05-10 2024-10-11 01:27:23.000 1984-05-10 2024-10-11 01:27:23 +5244 5244 5245 524.4 1048.8 5244 1984-05-11 2024-10-11 01:27:24.000 1984-05-11 2024-10-11 01:27:24 +5245 5245 5246 524.5 1049 5245 1984-05-12 2024-10-11 01:27:25.000 1984-05-12 2024-10-11 01:27:25 +5246 5246 5247 524.6 1049.2 5246 1984-05-13 2024-10-11 01:27:26.000 1984-05-13 2024-10-11 01:27:26 +5247 5247 5248 524.7 1049.4 5247 1984-05-14 2024-10-11 01:27:27.000 1984-05-14 2024-10-11 01:27:27 +5248 5248 5249 524.8 1049.6000000000001 5248 1984-05-15 2024-10-11 01:27:28.000 1984-05-15 2024-10-11 01:27:28 +5249 5249 5250 524.9 1049.8 5249 1984-05-16 2024-10-11 01:27:29.000 1984-05-16 2024-10-11 01:27:29 +5250 5250 5251 525 1050 5250 1984-05-17 2024-10-11 01:27:30.000 1984-05-17 2024-10-11 01:27:30 +5251 5251 5252 525.1 1050.2 5251 1984-05-18 2024-10-11 01:27:31.000 1984-05-18 2024-10-11 01:27:31 +5252 5252 5253 525.2 1050.4 5252 1984-05-19 2024-10-11 01:27:32.000 1984-05-19 2024-10-11 01:27:32 +5253 5253 5254 525.3 1050.6000000000001 5253 1984-05-20 2024-10-11 01:27:33.000 1984-05-20 2024-10-11 01:27:33 +5254 5254 5255 525.4 1050.8 5254 1984-05-21 2024-10-11 01:27:34.000 1984-05-21 2024-10-11 01:27:34 +5255 5255 5256 525.5 1051 5255 1984-05-22 2024-10-11 01:27:35.000 1984-05-22 2024-10-11 01:27:35 +5256 5256 5257 525.6 1051.2 5256 1984-05-23 2024-10-11 01:27:36.000 1984-05-23 2024-10-11 01:27:36 +5257 5257 5258 525.7 1051.4 5257 1984-05-24 2024-10-11 01:27:37.000 1984-05-24 2024-10-11 01:27:37 +5258 5258 5259 525.8 1051.6000000000001 5258 1984-05-25 2024-10-11 01:27:38.000 1984-05-25 2024-10-11 01:27:38 +5259 5259 5260 525.9 1051.8 5259 1984-05-26 2024-10-11 01:27:39.000 1984-05-26 2024-10-11 01:27:39 +5260 5260 5261 526 1052 5260 1984-05-27 2024-10-11 01:27:40.000 1984-05-27 2024-10-11 01:27:40 +5261 5261 5262 526.1 1052.2 5261 1984-05-28 2024-10-11 01:27:41.000 1984-05-28 2024-10-11 01:27:41 +5262 5262 5263 526.2 1052.4 5262 1984-05-29 2024-10-11 01:27:42.000 1984-05-29 2024-10-11 01:27:42 +5263 5263 5264 526.3 1052.6000000000001 5263 1984-05-30 2024-10-11 01:27:43.000 1984-05-30 2024-10-11 01:27:43 +5264 5264 5265 526.4 1052.8 5264 1984-05-31 2024-10-11 01:27:44.000 1984-05-31 2024-10-11 01:27:44 +5265 5265 5266 526.5 1053 5265 1984-06-01 2024-10-11 01:27:45.000 1984-06-01 2024-10-11 01:27:45 +5266 5266 5267 526.6 1053.2 5266 1984-06-02 2024-10-11 01:27:46.000 1984-06-02 2024-10-11 01:27:46 +5267 5267 5268 526.7 1053.4 5267 1984-06-03 2024-10-11 01:27:47.000 1984-06-03 2024-10-11 01:27:47 +5268 5268 5269 526.8 1053.6000000000001 5268 1984-06-04 2024-10-11 01:27:48.000 1984-06-04 2024-10-11 01:27:48 +5269 5269 5270 526.9 1053.8 5269 1984-06-05 2024-10-11 01:27:49.000 1984-06-05 2024-10-11 01:27:49 +5270 5270 5271 527 1054 5270 1984-06-06 2024-10-11 01:27:50.000 1984-06-06 2024-10-11 01:27:50 +5271 5271 5272 527.1 1054.2 5271 1984-06-07 2024-10-11 01:27:51.000 1984-06-07 2024-10-11 01:27:51 +5272 5272 5273 527.2 1054.4 5272 1984-06-08 2024-10-11 01:27:52.000 1984-06-08 2024-10-11 01:27:52 +5273 5273 5274 527.3 1054.6000000000001 5273 1984-06-09 2024-10-11 01:27:53.000 1984-06-09 2024-10-11 01:27:53 +5274 5274 5275 527.4 1054.8 5274 1984-06-10 2024-10-11 01:27:54.000 1984-06-10 2024-10-11 01:27:54 +5275 5275 5276 527.5 1055 5275 1984-06-11 2024-10-11 01:27:55.000 1984-06-11 2024-10-11 01:27:55 +5276 5276 5277 527.6 1055.2 5276 1984-06-12 2024-10-11 01:27:56.000 1984-06-12 2024-10-11 01:27:56 +5277 5277 5278 527.7 1055.4 5277 1984-06-13 2024-10-11 01:27:57.000 1984-06-13 2024-10-11 01:27:57 +5278 5278 5279 527.8 1055.6000000000001 5278 1984-06-14 2024-10-11 01:27:58.000 1984-06-14 2024-10-11 01:27:58 +5279 5279 5280 527.9 1055.8 5279 1984-06-15 2024-10-11 01:27:59.000 1984-06-15 2024-10-11 01:27:59 +5280 5280 5281 528 1056 5280 1984-06-16 2024-10-11 01:28:00.000 1984-06-16 2024-10-11 01:28:00 +5281 5281 5282 528.1 1056.2 5281 1984-06-17 2024-10-11 01:28:01.000 1984-06-17 2024-10-11 01:28:01 +5282 5282 5283 528.2 1056.4 5282 1984-06-18 2024-10-11 01:28:02.000 1984-06-18 2024-10-11 01:28:02 +5283 5283 5284 528.3 1056.6000000000001 5283 1984-06-19 2024-10-11 01:28:03.000 1984-06-19 2024-10-11 01:28:03 +5284 5284 5285 528.4 1056.8 5284 1984-06-20 2024-10-11 01:28:04.000 1984-06-20 2024-10-11 01:28:04 +5285 5285 5286 528.5 1057 5285 1984-06-21 2024-10-11 01:28:05.000 1984-06-21 2024-10-11 01:28:05 +5286 5286 5287 528.6 1057.2 5286 1984-06-22 2024-10-11 01:28:06.000 1984-06-22 2024-10-11 01:28:06 +5287 5287 5288 528.7 1057.4 5287 1984-06-23 2024-10-11 01:28:07.000 1984-06-23 2024-10-11 01:28:07 +5288 5288 5289 528.8 1057.6000000000001 5288 1984-06-24 2024-10-11 01:28:08.000 1984-06-24 2024-10-11 01:28:08 +5289 5289 5290 528.9 1057.8 5289 1984-06-25 2024-10-11 01:28:09.000 1984-06-25 2024-10-11 01:28:09 +5290 5290 5291 529 1058 5290 1984-06-26 2024-10-11 01:28:10.000 1984-06-26 2024-10-11 01:28:10 +5291 5291 5292 529.1 1058.2 5291 1984-06-27 2024-10-11 01:28:11.000 1984-06-27 2024-10-11 01:28:11 +5292 5292 5293 529.2 1058.4 5292 1984-06-28 2024-10-11 01:28:12.000 1984-06-28 2024-10-11 01:28:12 +5293 5293 5294 529.3 1058.6000000000001 5293 1984-06-29 2024-10-11 01:28:13.000 1984-06-29 2024-10-11 01:28:13 +5294 5294 5295 529.4 1058.8 5294 1984-06-30 2024-10-11 01:28:14.000 1984-06-30 2024-10-11 01:28:14 +5295 5295 5296 529.5 1059 5295 1984-07-01 2024-10-11 01:28:15.000 1984-07-01 2024-10-11 01:28:15 +5296 5296 5297 529.6 1059.2 5296 1984-07-02 2024-10-11 01:28:16.000 1984-07-02 2024-10-11 01:28:16 +5297 5297 5298 529.7 1059.4 5297 1984-07-03 2024-10-11 01:28:17.000 1984-07-03 2024-10-11 01:28:17 +5298 5298 5299 529.8 1059.6000000000001 5298 1984-07-04 2024-10-11 01:28:18.000 1984-07-04 2024-10-11 01:28:18 +5299 5299 5300 529.9 1059.8 5299 1984-07-05 2024-10-11 01:28:19.000 1984-07-05 2024-10-11 01:28:19 +5300 5300 5301 530 1060 5300 1984-07-06 2024-10-11 01:28:20.000 1984-07-06 2024-10-11 01:28:20 +5301 5301 5302 530.1 1060.2 5301 1984-07-07 2024-10-11 01:28:21.000 1984-07-07 2024-10-11 01:28:21 +5302 5302 5303 530.2 1060.4 5302 1984-07-08 2024-10-11 01:28:22.000 1984-07-08 2024-10-11 01:28:22 +5303 5303 5304 530.3 1060.6000000000001 5303 1984-07-09 2024-10-11 01:28:23.000 1984-07-09 2024-10-11 01:28:23 +5304 5304 5305 530.4 1060.8 5304 1984-07-10 2024-10-11 01:28:24.000 1984-07-10 2024-10-11 01:28:24 +5305 5305 5306 530.5 1061 5305 1984-07-11 2024-10-11 01:28:25.000 1984-07-11 2024-10-11 01:28:25 +5306 5306 5307 530.6 1061.2 5306 1984-07-12 2024-10-11 01:28:26.000 1984-07-12 2024-10-11 01:28:26 +5307 5307 5308 530.7 1061.4 5307 1984-07-13 2024-10-11 01:28:27.000 1984-07-13 2024-10-11 01:28:27 +5308 5308 5309 530.8 1061.6000000000001 5308 1984-07-14 2024-10-11 01:28:28.000 1984-07-14 2024-10-11 01:28:28 +5309 5309 5310 530.9 1061.8 5309 1984-07-15 2024-10-11 01:28:29.000 1984-07-15 2024-10-11 01:28:29 +5310 5310 5311 531 1062 5310 1984-07-16 2024-10-11 01:28:30.000 1984-07-16 2024-10-11 01:28:30 +5311 5311 5312 531.1 1062.2 5311 1984-07-17 2024-10-11 01:28:31.000 1984-07-17 2024-10-11 01:28:31 +5312 5312 5313 531.2 1062.4 5312 1984-07-18 2024-10-11 01:28:32.000 1984-07-18 2024-10-11 01:28:32 +5313 5313 5314 531.3 1062.6000000000001 5313 1984-07-19 2024-10-11 01:28:33.000 1984-07-19 2024-10-11 01:28:33 +5314 5314 5315 531.4 1062.8 5314 1984-07-20 2024-10-11 01:28:34.000 1984-07-20 2024-10-11 01:28:34 +5315 5315 5316 531.5 1063 5315 1984-07-21 2024-10-11 01:28:35.000 1984-07-21 2024-10-11 01:28:35 +5316 5316 5317 531.6 1063.2 5316 1984-07-22 2024-10-11 01:28:36.000 1984-07-22 2024-10-11 01:28:36 +5317 5317 5318 531.7 1063.4 5317 1984-07-23 2024-10-11 01:28:37.000 1984-07-23 2024-10-11 01:28:37 +5318 5318 5319 531.8 1063.6000000000001 5318 1984-07-24 2024-10-11 01:28:38.000 1984-07-24 2024-10-11 01:28:38 +5319 5319 5320 531.9 1063.8 5319 1984-07-25 2024-10-11 01:28:39.000 1984-07-25 2024-10-11 01:28:39 +5320 5320 5321 532 1064 5320 1984-07-26 2024-10-11 01:28:40.000 1984-07-26 2024-10-11 01:28:40 +5321 5321 5322 532.1 1064.2 5321 1984-07-27 2024-10-11 01:28:41.000 1984-07-27 2024-10-11 01:28:41 +5322 5322 5323 532.2 1064.4 5322 1984-07-28 2024-10-11 01:28:42.000 1984-07-28 2024-10-11 01:28:42 +5323 5323 5324 532.3 1064.6000000000001 5323 1984-07-29 2024-10-11 01:28:43.000 1984-07-29 2024-10-11 01:28:43 +5324 5324 5325 532.4 1064.8 5324 1984-07-30 2024-10-11 01:28:44.000 1984-07-30 2024-10-11 01:28:44 +5325 5325 5326 532.5 1065 5325 1984-07-31 2024-10-11 01:28:45.000 1984-07-31 2024-10-11 01:28:45 +5326 5326 5327 532.6 1065.2 5326 1984-08-01 2024-10-11 01:28:46.000 1984-08-01 2024-10-11 01:28:46 +5327 5327 5328 532.7 1065.4 5327 1984-08-02 2024-10-11 01:28:47.000 1984-08-02 2024-10-11 01:28:47 +5328 5328 5329 532.8 1065.6000000000001 5328 1984-08-03 2024-10-11 01:28:48.000 1984-08-03 2024-10-11 01:28:48 +5329 5329 5330 532.9 1065.8 5329 1984-08-04 2024-10-11 01:28:49.000 1984-08-04 2024-10-11 01:28:49 +5330 5330 5331 533 1066 5330 1984-08-05 2024-10-11 01:28:50.000 1984-08-05 2024-10-11 01:28:50 +5331 5331 5332 533.1 1066.2 5331 1984-08-06 2024-10-11 01:28:51.000 1984-08-06 2024-10-11 01:28:51 +5332 5332 5333 533.2 1066.4 5332 1984-08-07 2024-10-11 01:28:52.000 1984-08-07 2024-10-11 01:28:52 +5333 5333 5334 533.3 1066.6000000000001 5333 1984-08-08 2024-10-11 01:28:53.000 1984-08-08 2024-10-11 01:28:53 +5334 5334 5335 533.4 1066.8 5334 1984-08-09 2024-10-11 01:28:54.000 1984-08-09 2024-10-11 01:28:54 +5335 5335 5336 533.5 1067 5335 1984-08-10 2024-10-11 01:28:55.000 1984-08-10 2024-10-11 01:28:55 +5336 5336 5337 533.6 1067.2 5336 1984-08-11 2024-10-11 01:28:56.000 1984-08-11 2024-10-11 01:28:56 +5337 5337 5338 533.7 1067.4 5337 1984-08-12 2024-10-11 01:28:57.000 1984-08-12 2024-10-11 01:28:57 +5338 5338 5339 533.8 1067.6000000000001 5338 1984-08-13 2024-10-11 01:28:58.000 1984-08-13 2024-10-11 01:28:58 +5339 5339 5340 533.9 1067.8 5339 1984-08-14 2024-10-11 01:28:59.000 1984-08-14 2024-10-11 01:28:59 +5340 5340 5341 534 1068 5340 1984-08-15 2024-10-11 01:29:00.000 1984-08-15 2024-10-11 01:29:00 +5341 5341 5342 534.1 1068.2 5341 1984-08-16 2024-10-11 01:29:01.000 1984-08-16 2024-10-11 01:29:01 +5342 5342 5343 534.2 1068.4 5342 1984-08-17 2024-10-11 01:29:02.000 1984-08-17 2024-10-11 01:29:02 +5343 5343 5344 534.3 1068.6000000000001 5343 1984-08-18 2024-10-11 01:29:03.000 1984-08-18 2024-10-11 01:29:03 +5344 5344 5345 534.4 1068.8 5344 1984-08-19 2024-10-11 01:29:04.000 1984-08-19 2024-10-11 01:29:04 +5345 5345 5346 534.5 1069 5345 1984-08-20 2024-10-11 01:29:05.000 1984-08-20 2024-10-11 01:29:05 +5346 5346 5347 534.6 1069.2 5346 1984-08-21 2024-10-11 01:29:06.000 1984-08-21 2024-10-11 01:29:06 +5347 5347 5348 534.7 1069.4 5347 1984-08-22 2024-10-11 01:29:07.000 1984-08-22 2024-10-11 01:29:07 +5348 5348 5349 534.8 1069.6000000000001 5348 1984-08-23 2024-10-11 01:29:08.000 1984-08-23 2024-10-11 01:29:08 +5349 5349 5350 534.9 1069.8 5349 1984-08-24 2024-10-11 01:29:09.000 1984-08-24 2024-10-11 01:29:09 +5350 5350 5351 535 1070 5350 1984-08-25 2024-10-11 01:29:10.000 1984-08-25 2024-10-11 01:29:10 +5351 5351 5352 535.1 1070.2 5351 1984-08-26 2024-10-11 01:29:11.000 1984-08-26 2024-10-11 01:29:11 +5352 5352 5353 535.2 1070.4 5352 1984-08-27 2024-10-11 01:29:12.000 1984-08-27 2024-10-11 01:29:12 +5353 5353 5354 535.3 1070.6000000000001 5353 1984-08-28 2024-10-11 01:29:13.000 1984-08-28 2024-10-11 01:29:13 +5354 5354 5355 535.4 1070.8 5354 1984-08-29 2024-10-11 01:29:14.000 1984-08-29 2024-10-11 01:29:14 +5355 5355 5356 535.5 1071 5355 1984-08-30 2024-10-11 01:29:15.000 1984-08-30 2024-10-11 01:29:15 +5356 5356 5357 535.6 1071.2 5356 1984-08-31 2024-10-11 01:29:16.000 1984-08-31 2024-10-11 01:29:16 +5357 5357 5358 535.7 1071.4 5357 1984-09-01 2024-10-11 01:29:17.000 1984-09-01 2024-10-11 01:29:17 +5358 5358 5359 535.8 1071.6000000000001 5358 1984-09-02 2024-10-11 01:29:18.000 1984-09-02 2024-10-11 01:29:18 +5359 5359 5360 535.9 1071.8 5359 1984-09-03 2024-10-11 01:29:19.000 1984-09-03 2024-10-11 01:29:19 +5360 5360 5361 536 1072 5360 1984-09-04 2024-10-11 01:29:20.000 1984-09-04 2024-10-11 01:29:20 +5361 5361 5362 536.1 1072.2 5361 1984-09-05 2024-10-11 01:29:21.000 1984-09-05 2024-10-11 01:29:21 +5362 5362 5363 536.2 1072.4 5362 1984-09-06 2024-10-11 01:29:22.000 1984-09-06 2024-10-11 01:29:22 +5363 5363 5364 536.3 1072.6000000000001 5363 1984-09-07 2024-10-11 01:29:23.000 1984-09-07 2024-10-11 01:29:23 +5364 5364 5365 536.4 1072.8 5364 1984-09-08 2024-10-11 01:29:24.000 1984-09-08 2024-10-11 01:29:24 +5365 5365 5366 536.5 1073 5365 1984-09-09 2024-10-11 01:29:25.000 1984-09-09 2024-10-11 01:29:25 +5366 5366 5367 536.6 1073.2 5366 1984-09-10 2024-10-11 01:29:26.000 1984-09-10 2024-10-11 01:29:26 +5367 5367 5368 536.7 1073.4 5367 1984-09-11 2024-10-11 01:29:27.000 1984-09-11 2024-10-11 01:29:27 +5368 5368 5369 536.8 1073.6000000000001 5368 1984-09-12 2024-10-11 01:29:28.000 1984-09-12 2024-10-11 01:29:28 +5369 5369 5370 536.9 1073.8 5369 1984-09-13 2024-10-11 01:29:29.000 1984-09-13 2024-10-11 01:29:29 +5370 5370 5371 537 1074 5370 1984-09-14 2024-10-11 01:29:30.000 1984-09-14 2024-10-11 01:29:30 +5371 5371 5372 537.1 1074.2 5371 1984-09-15 2024-10-11 01:29:31.000 1984-09-15 2024-10-11 01:29:31 +5372 5372 5373 537.2 1074.4 5372 1984-09-16 2024-10-11 01:29:32.000 1984-09-16 2024-10-11 01:29:32 +5373 5373 5374 537.3 1074.6000000000001 5373 1984-09-17 2024-10-11 01:29:33.000 1984-09-17 2024-10-11 01:29:33 +5374 5374 5375 537.4 1074.8 5374 1984-09-18 2024-10-11 01:29:34.000 1984-09-18 2024-10-11 01:29:34 +5375 5375 5376 537.5 1075 5375 1984-09-19 2024-10-11 01:29:35.000 1984-09-19 2024-10-11 01:29:35 +5376 5376 5377 537.6 1075.2 5376 1984-09-20 2024-10-11 01:29:36.000 1984-09-20 2024-10-11 01:29:36 +5377 5377 5378 537.7 1075.4 5377 1984-09-21 2024-10-11 01:29:37.000 1984-09-21 2024-10-11 01:29:37 +5378 5378 5379 537.8 1075.6000000000001 5378 1984-09-22 2024-10-11 01:29:38.000 1984-09-22 2024-10-11 01:29:38 +5379 5379 5380 537.9 1075.8 5379 1984-09-23 2024-10-11 01:29:39.000 1984-09-23 2024-10-11 01:29:39 +5380 5380 5381 538 1076 5380 1984-09-24 2024-10-11 01:29:40.000 1984-09-24 2024-10-11 01:29:40 +5381 5381 5382 538.1 1076.2 5381 1984-09-25 2024-10-11 01:29:41.000 1984-09-25 2024-10-11 01:29:41 +5382 5382 5383 538.2 1076.4 5382 1984-09-26 2024-10-11 01:29:42.000 1984-09-26 2024-10-11 01:29:42 +5383 5383 5384 538.3 1076.6000000000001 5383 1984-09-27 2024-10-11 01:29:43.000 1984-09-27 2024-10-11 01:29:43 +5384 5384 5385 538.4 1076.8 5384 1984-09-28 2024-10-11 01:29:44.000 1984-09-28 2024-10-11 01:29:44 +5385 5385 5386 538.5 1077 5385 1984-09-29 2024-10-11 01:29:45.000 1984-09-29 2024-10-11 01:29:45 +5386 5386 5387 538.6 1077.2 5386 1984-09-30 2024-10-11 01:29:46.000 1984-09-30 2024-10-11 01:29:46 +5387 5387 5388 538.7 1077.4 5387 1984-10-01 2024-10-11 01:29:47.000 1984-10-01 2024-10-11 01:29:47 +5388 5388 5389 538.8 1077.6000000000001 5388 1984-10-02 2024-10-11 01:29:48.000 1984-10-02 2024-10-11 01:29:48 +5389 5389 5390 538.9 1077.8 5389 1984-10-03 2024-10-11 01:29:49.000 1984-10-03 2024-10-11 01:29:49 +5390 5390 5391 539 1078 5390 1984-10-04 2024-10-11 01:29:50.000 1984-10-04 2024-10-11 01:29:50 +5391 5391 5392 539.1 1078.2 5391 1984-10-05 2024-10-11 01:29:51.000 1984-10-05 2024-10-11 01:29:51 +5392 5392 5393 539.2 1078.4 5392 1984-10-06 2024-10-11 01:29:52.000 1984-10-06 2024-10-11 01:29:52 +5393 5393 5394 539.3 1078.6000000000001 5393 1984-10-07 2024-10-11 01:29:53.000 1984-10-07 2024-10-11 01:29:53 +5394 5394 5395 539.4 1078.8 5394 1984-10-08 2024-10-11 01:29:54.000 1984-10-08 2024-10-11 01:29:54 +5395 5395 5396 539.5 1079 5395 1984-10-09 2024-10-11 01:29:55.000 1984-10-09 2024-10-11 01:29:55 +5396 5396 5397 539.6 1079.2 5396 1984-10-10 2024-10-11 01:29:56.000 1984-10-10 2024-10-11 01:29:56 +5397 5397 5398 539.7 1079.4 5397 1984-10-11 2024-10-11 01:29:57.000 1984-10-11 2024-10-11 01:29:57 +5398 5398 5399 539.8 1079.6000000000001 5398 1984-10-12 2024-10-11 01:29:58.000 1984-10-12 2024-10-11 01:29:58 +5399 5399 5400 539.9 1079.8 5399 1984-10-13 2024-10-11 01:29:59.000 1984-10-13 2024-10-11 01:29:59 +5400 5400 5401 540 1080 5400 1984-10-14 2024-10-11 01:30:00.000 1984-10-14 2024-10-11 01:30:00 +5401 5401 5402 540.1 1080.2 5401 1984-10-15 2024-10-11 01:30:01.000 1984-10-15 2024-10-11 01:30:01 +5402 5402 5403 540.2 1080.4 5402 1984-10-16 2024-10-11 01:30:02.000 1984-10-16 2024-10-11 01:30:02 +5403 5403 5404 540.3 1080.6000000000001 5403 1984-10-17 2024-10-11 01:30:03.000 1984-10-17 2024-10-11 01:30:03 +5404 5404 5405 540.4 1080.8 5404 1984-10-18 2024-10-11 01:30:04.000 1984-10-18 2024-10-11 01:30:04 +5405 5405 5406 540.5 1081 5405 1984-10-19 2024-10-11 01:30:05.000 1984-10-19 2024-10-11 01:30:05 +5406 5406 5407 540.6 1081.2 5406 1984-10-20 2024-10-11 01:30:06.000 1984-10-20 2024-10-11 01:30:06 +5407 5407 5408 540.7 1081.4 5407 1984-10-21 2024-10-11 01:30:07.000 1984-10-21 2024-10-11 01:30:07 +5408 5408 5409 540.8 1081.6000000000001 5408 1984-10-22 2024-10-11 01:30:08.000 1984-10-22 2024-10-11 01:30:08 +5409 5409 5410 540.9 1081.8 5409 1984-10-23 2024-10-11 01:30:09.000 1984-10-23 2024-10-11 01:30:09 +5410 5410 5411 541 1082 5410 1984-10-24 2024-10-11 01:30:10.000 1984-10-24 2024-10-11 01:30:10 +5411 5411 5412 541.1 1082.2 5411 1984-10-25 2024-10-11 01:30:11.000 1984-10-25 2024-10-11 01:30:11 +5412 5412 5413 541.2 1082.4 5412 1984-10-26 2024-10-11 01:30:12.000 1984-10-26 2024-10-11 01:30:12 +5413 5413 5414 541.3 1082.6000000000001 5413 1984-10-27 2024-10-11 01:30:13.000 1984-10-27 2024-10-11 01:30:13 +5414 5414 5415 541.4 1082.8 5414 1984-10-28 2024-10-11 01:30:14.000 1984-10-28 2024-10-11 01:30:14 +5415 5415 5416 541.5 1083 5415 1984-10-29 2024-10-11 01:30:15.000 1984-10-29 2024-10-11 01:30:15 +5416 5416 5417 541.6 1083.2 5416 1984-10-30 2024-10-11 01:30:16.000 1984-10-30 2024-10-11 01:30:16 +5417 5417 5418 541.7 1083.4 5417 1984-10-31 2024-10-11 01:30:17.000 1984-10-31 2024-10-11 01:30:17 +5418 5418 5419 541.8 1083.6000000000001 5418 1984-11-01 2024-10-11 01:30:18.000 1984-11-01 2024-10-11 01:30:18 +5419 5419 5420 541.9 1083.8 5419 1984-11-02 2024-10-11 01:30:19.000 1984-11-02 2024-10-11 01:30:19 +5420 5420 5421 542 1084 5420 1984-11-03 2024-10-11 01:30:20.000 1984-11-03 2024-10-11 01:30:20 +5421 5421 5422 542.1 1084.2 5421 1984-11-04 2024-10-11 01:30:21.000 1984-11-04 2024-10-11 01:30:21 +5422 5422 5423 542.2 1084.4 5422 1984-11-05 2024-10-11 01:30:22.000 1984-11-05 2024-10-11 01:30:22 +5423 5423 5424 542.3 1084.6000000000001 5423 1984-11-06 2024-10-11 01:30:23.000 1984-11-06 2024-10-11 01:30:23 +5424 5424 5425 542.4 1084.8 5424 1984-11-07 2024-10-11 01:30:24.000 1984-11-07 2024-10-11 01:30:24 +5425 5425 5426 542.5 1085 5425 1984-11-08 2024-10-11 01:30:25.000 1984-11-08 2024-10-11 01:30:25 +5426 5426 5427 542.6 1085.2 5426 1984-11-09 2024-10-11 01:30:26.000 1984-11-09 2024-10-11 01:30:26 +5427 5427 5428 542.7 1085.4 5427 1984-11-10 2024-10-11 01:30:27.000 1984-11-10 2024-10-11 01:30:27 +5428 5428 5429 542.8 1085.6000000000001 5428 1984-11-11 2024-10-11 01:30:28.000 1984-11-11 2024-10-11 01:30:28 +5429 5429 5430 542.9 1085.8 5429 1984-11-12 2024-10-11 01:30:29.000 1984-11-12 2024-10-11 01:30:29 +5430 5430 5431 543 1086 5430 1984-11-13 2024-10-11 01:30:30.000 1984-11-13 2024-10-11 01:30:30 +5431 5431 5432 543.1 1086.2 5431 1984-11-14 2024-10-11 01:30:31.000 1984-11-14 2024-10-11 01:30:31 +5432 5432 5433 543.2 1086.4 5432 1984-11-15 2024-10-11 01:30:32.000 1984-11-15 2024-10-11 01:30:32 +5433 5433 5434 543.3 1086.6000000000001 5433 1984-11-16 2024-10-11 01:30:33.000 1984-11-16 2024-10-11 01:30:33 +5434 5434 5435 543.4 1086.8 5434 1984-11-17 2024-10-11 01:30:34.000 1984-11-17 2024-10-11 01:30:34 +5435 5435 5436 543.5 1087 5435 1984-11-18 2024-10-11 01:30:35.000 1984-11-18 2024-10-11 01:30:35 +5436 5436 5437 543.6 1087.2 5436 1984-11-19 2024-10-11 01:30:36.000 1984-11-19 2024-10-11 01:30:36 +5437 5437 5438 543.7 1087.4 5437 1984-11-20 2024-10-11 01:30:37.000 1984-11-20 2024-10-11 01:30:37 +5438 5438 5439 543.8 1087.6000000000001 5438 1984-11-21 2024-10-11 01:30:38.000 1984-11-21 2024-10-11 01:30:38 +5439 5439 5440 543.9 1087.8 5439 1984-11-22 2024-10-11 01:30:39.000 1984-11-22 2024-10-11 01:30:39 +5440 5440 5441 544 1088 5440 1984-11-23 2024-10-11 01:30:40.000 1984-11-23 2024-10-11 01:30:40 +5441 5441 5442 544.1 1088.2 5441 1984-11-24 2024-10-11 01:30:41.000 1984-11-24 2024-10-11 01:30:41 +5442 5442 5443 544.2 1088.4 5442 1984-11-25 2024-10-11 01:30:42.000 1984-11-25 2024-10-11 01:30:42 +5443 5443 5444 544.3 1088.6000000000001 5443 1984-11-26 2024-10-11 01:30:43.000 1984-11-26 2024-10-11 01:30:43 +5444 5444 5445 544.4 1088.8 5444 1984-11-27 2024-10-11 01:30:44.000 1984-11-27 2024-10-11 01:30:44 +5445 5445 5446 544.5 1089 5445 1984-11-28 2024-10-11 01:30:45.000 1984-11-28 2024-10-11 01:30:45 +5446 5446 5447 544.6 1089.2 5446 1984-11-29 2024-10-11 01:30:46.000 1984-11-29 2024-10-11 01:30:46 +5447 5447 5448 544.7 1089.4 5447 1984-11-30 2024-10-11 01:30:47.000 1984-11-30 2024-10-11 01:30:47 +5448 5448 5449 544.8 1089.6000000000001 5448 1984-12-01 2024-10-11 01:30:48.000 1984-12-01 2024-10-11 01:30:48 +5449 5449 5450 544.9 1089.8 5449 1984-12-02 2024-10-11 01:30:49.000 1984-12-02 2024-10-11 01:30:49 +5450 5450 5451 545 1090 5450 1984-12-03 2024-10-11 01:30:50.000 1984-12-03 2024-10-11 01:30:50 +5451 5451 5452 545.1 1090.2 5451 1984-12-04 2024-10-11 01:30:51.000 1984-12-04 2024-10-11 01:30:51 +5452 5452 5453 545.2 1090.4 5452 1984-12-05 2024-10-11 01:30:52.000 1984-12-05 2024-10-11 01:30:52 +5453 5453 5454 545.3 1090.6000000000001 5453 1984-12-06 2024-10-11 01:30:53.000 1984-12-06 2024-10-11 01:30:53 +5454 5454 5455 545.4 1090.8 5454 1984-12-07 2024-10-11 01:30:54.000 1984-12-07 2024-10-11 01:30:54 +5455 5455 5456 545.5 1091 5455 1984-12-08 2024-10-11 01:30:55.000 1984-12-08 2024-10-11 01:30:55 +5456 5456 5457 545.6 1091.2 5456 1984-12-09 2024-10-11 01:30:56.000 1984-12-09 2024-10-11 01:30:56 +5457 5457 5458 545.7 1091.4 5457 1984-12-10 2024-10-11 01:30:57.000 1984-12-10 2024-10-11 01:30:57 +5458 5458 5459 545.8 1091.6000000000001 5458 1984-12-11 2024-10-11 01:30:58.000 1984-12-11 2024-10-11 01:30:58 +5459 5459 5460 545.9 1091.8 5459 1984-12-12 2024-10-11 01:30:59.000 1984-12-12 2024-10-11 01:30:59 +5460 5460 5461 546 1092 5460 1984-12-13 2024-10-11 01:31:00.000 1984-12-13 2024-10-11 01:31:00 +5461 5461 5462 546.1 1092.2 5461 1984-12-14 2024-10-11 01:31:01.000 1984-12-14 2024-10-11 01:31:01 +5462 5462 5463 546.2 1092.4 5462 1984-12-15 2024-10-11 01:31:02.000 1984-12-15 2024-10-11 01:31:02 +5463 5463 5464 546.3 1092.6000000000001 5463 1984-12-16 2024-10-11 01:31:03.000 1984-12-16 2024-10-11 01:31:03 +5464 5464 5465 546.4 1092.8 5464 1984-12-17 2024-10-11 01:31:04.000 1984-12-17 2024-10-11 01:31:04 +5465 5465 5466 546.5 1093 5465 1984-12-18 2024-10-11 01:31:05.000 1984-12-18 2024-10-11 01:31:05 +5466 5466 5467 546.6 1093.2 5466 1984-12-19 2024-10-11 01:31:06.000 1984-12-19 2024-10-11 01:31:06 +5467 5467 5468 546.7 1093.4 5467 1984-12-20 2024-10-11 01:31:07.000 1984-12-20 2024-10-11 01:31:07 +5468 5468 5469 546.8 1093.6000000000001 5468 1984-12-21 2024-10-11 01:31:08.000 1984-12-21 2024-10-11 01:31:08 +5469 5469 5470 546.9 1093.8 5469 1984-12-22 2024-10-11 01:31:09.000 1984-12-22 2024-10-11 01:31:09 +5470 5470 5471 547 1094 5470 1984-12-23 2024-10-11 01:31:10.000 1984-12-23 2024-10-11 01:31:10 +5471 5471 5472 547.1 1094.2 5471 1984-12-24 2024-10-11 01:31:11.000 1984-12-24 2024-10-11 01:31:11 +5472 5472 5473 547.2 1094.4 5472 1984-12-25 2024-10-11 01:31:12.000 1984-12-25 2024-10-11 01:31:12 +5473 5473 5474 547.3 1094.6000000000001 5473 1984-12-26 2024-10-11 01:31:13.000 1984-12-26 2024-10-11 01:31:13 +5474 5474 5475 547.4 1094.8 5474 1984-12-27 2024-10-11 01:31:14.000 1984-12-27 2024-10-11 01:31:14 +5475 5475 5476 547.5 1095 5475 1984-12-28 2024-10-11 01:31:15.000 1984-12-28 2024-10-11 01:31:15 +5476 5476 5477 547.6 1095.2 5476 1984-12-29 2024-10-11 01:31:16.000 1984-12-29 2024-10-11 01:31:16 +5477 5477 5478 547.7 1095.4 5477 1984-12-30 2024-10-11 01:31:17.000 1984-12-30 2024-10-11 01:31:17 +5478 5478 5479 547.8 1095.6000000000001 5478 1984-12-31 2024-10-11 01:31:18.000 1984-12-31 2024-10-11 01:31:18 +5479 5479 5480 547.9 1095.8 5479 1985-01-01 2024-10-11 01:31:19.000 1985-01-01 2024-10-11 01:31:19 +5480 5480 5481 548 1096 5480 1985-01-02 2024-10-11 01:31:20.000 1985-01-02 2024-10-11 01:31:20 +5481 5481 5482 548.1 1096.2 5481 1985-01-03 2024-10-11 01:31:21.000 1985-01-03 2024-10-11 01:31:21 +5482 5482 5483 548.2 1096.4 5482 1985-01-04 2024-10-11 01:31:22.000 1985-01-04 2024-10-11 01:31:22 +5483 5483 5484 548.3 1096.6000000000001 5483 1985-01-05 2024-10-11 01:31:23.000 1985-01-05 2024-10-11 01:31:23 +5484 5484 5485 548.4 1096.8 5484 1985-01-06 2024-10-11 01:31:24.000 1985-01-06 2024-10-11 01:31:24 +5485 5485 5486 548.5 1097 5485 1985-01-07 2024-10-11 01:31:25.000 1985-01-07 2024-10-11 01:31:25 +5486 5486 5487 548.6 1097.2 5486 1985-01-08 2024-10-11 01:31:26.000 1985-01-08 2024-10-11 01:31:26 +5487 5487 5488 548.7 1097.4 5487 1985-01-09 2024-10-11 01:31:27.000 1985-01-09 2024-10-11 01:31:27 +5488 5488 5489 548.8 1097.6000000000001 5488 1985-01-10 2024-10-11 01:31:28.000 1985-01-10 2024-10-11 01:31:28 +5489 5489 5490 548.9 1097.8 5489 1985-01-11 2024-10-11 01:31:29.000 1985-01-11 2024-10-11 01:31:29 +5490 5490 5491 549 1098 5490 1985-01-12 2024-10-11 01:31:30.000 1985-01-12 2024-10-11 01:31:30 +5491 5491 5492 549.1 1098.2 5491 1985-01-13 2024-10-11 01:31:31.000 1985-01-13 2024-10-11 01:31:31 +5492 5492 5493 549.2 1098.4 5492 1985-01-14 2024-10-11 01:31:32.000 1985-01-14 2024-10-11 01:31:32 +5493 5493 5494 549.3 1098.6000000000001 5493 1985-01-15 2024-10-11 01:31:33.000 1985-01-15 2024-10-11 01:31:33 +5494 5494 5495 549.4 1098.8 5494 1985-01-16 2024-10-11 01:31:34.000 1985-01-16 2024-10-11 01:31:34 +5495 5495 5496 549.5 1099 5495 1985-01-17 2024-10-11 01:31:35.000 1985-01-17 2024-10-11 01:31:35 +5496 5496 5497 549.6 1099.2 5496 1985-01-18 2024-10-11 01:31:36.000 1985-01-18 2024-10-11 01:31:36 +5497 5497 5498 549.7 1099.4 5497 1985-01-19 2024-10-11 01:31:37.000 1985-01-19 2024-10-11 01:31:37 +5498 5498 5499 549.8 1099.6000000000001 5498 1985-01-20 2024-10-11 01:31:38.000 1985-01-20 2024-10-11 01:31:38 +5499 5499 5500 549.9 1099.8 5499 1985-01-21 2024-10-11 01:31:39.000 1985-01-21 2024-10-11 01:31:39 +5500 5500 5501 550 1100 5500 1985-01-22 2024-10-11 01:31:40.000 1985-01-22 2024-10-11 01:31:40 +5501 5501 5502 550.1 1100.2 5501 1985-01-23 2024-10-11 01:31:41.000 1985-01-23 2024-10-11 01:31:41 +5502 5502 5503 550.2 1100.4 5502 1985-01-24 2024-10-11 01:31:42.000 1985-01-24 2024-10-11 01:31:42 +5503 5503 5504 550.3 1100.6000000000001 5503 1985-01-25 2024-10-11 01:31:43.000 1985-01-25 2024-10-11 01:31:43 +5504 5504 5505 550.4 1100.8 5504 1985-01-26 2024-10-11 01:31:44.000 1985-01-26 2024-10-11 01:31:44 +5505 5505 5506 550.5 1101 5505 1985-01-27 2024-10-11 01:31:45.000 1985-01-27 2024-10-11 01:31:45 +5506 5506 5507 550.6 1101.2 5506 1985-01-28 2024-10-11 01:31:46.000 1985-01-28 2024-10-11 01:31:46 +5507 5507 5508 550.7 1101.4 5507 1985-01-29 2024-10-11 01:31:47.000 1985-01-29 2024-10-11 01:31:47 +5508 5508 5509 550.8 1101.6000000000001 5508 1985-01-30 2024-10-11 01:31:48.000 1985-01-30 2024-10-11 01:31:48 +5509 5509 5510 550.9 1101.8 5509 1985-01-31 2024-10-11 01:31:49.000 1985-01-31 2024-10-11 01:31:49 +5510 5510 5511 551 1102 5510 1985-02-01 2024-10-11 01:31:50.000 1985-02-01 2024-10-11 01:31:50 +5511 5511 5512 551.1 1102.2 5511 1985-02-02 2024-10-11 01:31:51.000 1985-02-02 2024-10-11 01:31:51 +5512 5512 5513 551.2 1102.4 5512 1985-02-03 2024-10-11 01:31:52.000 1985-02-03 2024-10-11 01:31:52 +5513 5513 5514 551.3 1102.6000000000001 5513 1985-02-04 2024-10-11 01:31:53.000 1985-02-04 2024-10-11 01:31:53 +5514 5514 5515 551.4 1102.8 5514 1985-02-05 2024-10-11 01:31:54.000 1985-02-05 2024-10-11 01:31:54 +5515 5515 5516 551.5 1103 5515 1985-02-06 2024-10-11 01:31:55.000 1985-02-06 2024-10-11 01:31:55 +5516 5516 5517 551.6 1103.2 5516 1985-02-07 2024-10-11 01:31:56.000 1985-02-07 2024-10-11 01:31:56 +5517 5517 5518 551.7 1103.4 5517 1985-02-08 2024-10-11 01:31:57.000 1985-02-08 2024-10-11 01:31:57 +5518 5518 5519 551.8 1103.6000000000001 5518 1985-02-09 2024-10-11 01:31:58.000 1985-02-09 2024-10-11 01:31:58 +5519 5519 5520 551.9 1103.8 5519 1985-02-10 2024-10-11 01:31:59.000 1985-02-10 2024-10-11 01:31:59 +5520 5520 5521 552 1104 5520 1985-02-11 2024-10-11 01:32:00.000 1985-02-11 2024-10-11 01:32:00 +5521 5521 5522 552.1 1104.2 5521 1985-02-12 2024-10-11 01:32:01.000 1985-02-12 2024-10-11 01:32:01 +5522 5522 5523 552.2 1104.4 5522 1985-02-13 2024-10-11 01:32:02.000 1985-02-13 2024-10-11 01:32:02 +5523 5523 5524 552.3 1104.6000000000001 5523 1985-02-14 2024-10-11 01:32:03.000 1985-02-14 2024-10-11 01:32:03 +5524 5524 5525 552.4 1104.8 5524 1985-02-15 2024-10-11 01:32:04.000 1985-02-15 2024-10-11 01:32:04 +5525 5525 5526 552.5 1105 5525 1985-02-16 2024-10-11 01:32:05.000 1985-02-16 2024-10-11 01:32:05 +5526 5526 5527 552.6 1105.2 5526 1985-02-17 2024-10-11 01:32:06.000 1985-02-17 2024-10-11 01:32:06 +5527 5527 5528 552.7 1105.4 5527 1985-02-18 2024-10-11 01:32:07.000 1985-02-18 2024-10-11 01:32:07 +5528 5528 5529 552.8 1105.6000000000001 5528 1985-02-19 2024-10-11 01:32:08.000 1985-02-19 2024-10-11 01:32:08 +5529 5529 5530 552.9 1105.8 5529 1985-02-20 2024-10-11 01:32:09.000 1985-02-20 2024-10-11 01:32:09 +5530 5530 5531 553 1106 5530 1985-02-21 2024-10-11 01:32:10.000 1985-02-21 2024-10-11 01:32:10 +5531 5531 5532 553.1 1106.2 5531 1985-02-22 2024-10-11 01:32:11.000 1985-02-22 2024-10-11 01:32:11 +5532 5532 5533 553.2 1106.4 5532 1985-02-23 2024-10-11 01:32:12.000 1985-02-23 2024-10-11 01:32:12 +5533 5533 5534 553.3 1106.6000000000001 5533 1985-02-24 2024-10-11 01:32:13.000 1985-02-24 2024-10-11 01:32:13 +5534 5534 5535 553.4 1106.8 5534 1985-02-25 2024-10-11 01:32:14.000 1985-02-25 2024-10-11 01:32:14 +5535 5535 5536 553.5 1107 5535 1985-02-26 2024-10-11 01:32:15.000 1985-02-26 2024-10-11 01:32:15 +5536 5536 5537 553.6 1107.2 5536 1985-02-27 2024-10-11 01:32:16.000 1985-02-27 2024-10-11 01:32:16 +5537 5537 5538 553.7 1107.4 5537 1985-02-28 2024-10-11 01:32:17.000 1985-02-28 2024-10-11 01:32:17 +5538 5538 5539 553.8 1107.6000000000001 5538 1985-03-01 2024-10-11 01:32:18.000 1985-03-01 2024-10-11 01:32:18 +5539 5539 5540 553.9 1107.8 5539 1985-03-02 2024-10-11 01:32:19.000 1985-03-02 2024-10-11 01:32:19 +5540 5540 5541 554 1108 5540 1985-03-03 2024-10-11 01:32:20.000 1985-03-03 2024-10-11 01:32:20 +5541 5541 5542 554.1 1108.2 5541 1985-03-04 2024-10-11 01:32:21.000 1985-03-04 2024-10-11 01:32:21 +5542 5542 5543 554.2 1108.4 5542 1985-03-05 2024-10-11 01:32:22.000 1985-03-05 2024-10-11 01:32:22 +5543 5543 5544 554.3 1108.6000000000001 5543 1985-03-06 2024-10-11 01:32:23.000 1985-03-06 2024-10-11 01:32:23 +5544 5544 5545 554.4 1108.8 5544 1985-03-07 2024-10-11 01:32:24.000 1985-03-07 2024-10-11 01:32:24 +5545 5545 5546 554.5 1109 5545 1985-03-08 2024-10-11 01:32:25.000 1985-03-08 2024-10-11 01:32:25 +5546 5546 5547 554.6 1109.2 5546 1985-03-09 2024-10-11 01:32:26.000 1985-03-09 2024-10-11 01:32:26 +5547 5547 5548 554.7 1109.4 5547 1985-03-10 2024-10-11 01:32:27.000 1985-03-10 2024-10-11 01:32:27 +5548 5548 5549 554.8 1109.6000000000001 5548 1985-03-11 2024-10-11 01:32:28.000 1985-03-11 2024-10-11 01:32:28 +5549 5549 5550 554.9 1109.8 5549 1985-03-12 2024-10-11 01:32:29.000 1985-03-12 2024-10-11 01:32:29 +5550 5550 5551 555 1110 5550 1985-03-13 2024-10-11 01:32:30.000 1985-03-13 2024-10-11 01:32:30 +5551 5551 5552 555.1 1110.2 5551 1985-03-14 2024-10-11 01:32:31.000 1985-03-14 2024-10-11 01:32:31 +5552 5552 5553 555.2 1110.4 5552 1985-03-15 2024-10-11 01:32:32.000 1985-03-15 2024-10-11 01:32:32 +5553 5553 5554 555.3 1110.6000000000001 5553 1985-03-16 2024-10-11 01:32:33.000 1985-03-16 2024-10-11 01:32:33 +5554 5554 5555 555.4 1110.8 5554 1985-03-17 2024-10-11 01:32:34.000 1985-03-17 2024-10-11 01:32:34 +5555 5555 5556 555.5 1111 5555 1985-03-18 2024-10-11 01:32:35.000 1985-03-18 2024-10-11 01:32:35 +5556 5556 5557 555.6 1111.2 5556 1985-03-19 2024-10-11 01:32:36.000 1985-03-19 2024-10-11 01:32:36 +5557 5557 5558 555.7 1111.4 5557 1985-03-20 2024-10-11 01:32:37.000 1985-03-20 2024-10-11 01:32:37 +5558 5558 5559 555.8 1111.6000000000001 5558 1985-03-21 2024-10-11 01:32:38.000 1985-03-21 2024-10-11 01:32:38 +5559 5559 5560 555.9 1111.8 5559 1985-03-22 2024-10-11 01:32:39.000 1985-03-22 2024-10-11 01:32:39 +5560 5560 5561 556 1112 5560 1985-03-23 2024-10-11 01:32:40.000 1985-03-23 2024-10-11 01:32:40 +5561 5561 5562 556.1 1112.2 5561 1985-03-24 2024-10-11 01:32:41.000 1985-03-24 2024-10-11 01:32:41 +5562 5562 5563 556.2 1112.4 5562 1985-03-25 2024-10-11 01:32:42.000 1985-03-25 2024-10-11 01:32:42 +5563 5563 5564 556.3 1112.6000000000001 5563 1985-03-26 2024-10-11 01:32:43.000 1985-03-26 2024-10-11 01:32:43 +5564 5564 5565 556.4 1112.8 5564 1985-03-27 2024-10-11 01:32:44.000 1985-03-27 2024-10-11 01:32:44 +5565 5565 5566 556.5 1113 5565 1985-03-28 2024-10-11 01:32:45.000 1985-03-28 2024-10-11 01:32:45 +5566 5566 5567 556.6 1113.2 5566 1985-03-29 2024-10-11 01:32:46.000 1985-03-29 2024-10-11 01:32:46 +5567 5567 5568 556.7 1113.4 5567 1985-03-30 2024-10-11 01:32:47.000 1985-03-30 2024-10-11 01:32:47 +5568 5568 5569 556.8 1113.6000000000001 5568 1985-03-31 2024-10-11 01:32:48.000 1985-03-31 2024-10-11 01:32:48 +5569 5569 5570 556.9 1113.8 5569 1985-04-01 2024-10-11 01:32:49.000 1985-04-01 2024-10-11 01:32:49 +5570 5570 5571 557 1114 5570 1985-04-02 2024-10-11 01:32:50.000 1985-04-02 2024-10-11 01:32:50 +5571 5571 5572 557.1 1114.2 5571 1985-04-03 2024-10-11 01:32:51.000 1985-04-03 2024-10-11 01:32:51 +5572 5572 5573 557.2 1114.4 5572 1985-04-04 2024-10-11 01:32:52.000 1985-04-04 2024-10-11 01:32:52 +5573 5573 5574 557.3 1114.6000000000001 5573 1985-04-05 2024-10-11 01:32:53.000 1985-04-05 2024-10-11 01:32:53 +5574 5574 5575 557.4 1114.8 5574 1985-04-06 2024-10-11 01:32:54.000 1985-04-06 2024-10-11 01:32:54 +5575 5575 5576 557.5 1115 5575 1985-04-07 2024-10-11 01:32:55.000 1985-04-07 2024-10-11 01:32:55 +5576 5576 5577 557.6 1115.2 5576 1985-04-08 2024-10-11 01:32:56.000 1985-04-08 2024-10-11 01:32:56 +5577 5577 5578 557.7 1115.4 5577 1985-04-09 2024-10-11 01:32:57.000 1985-04-09 2024-10-11 01:32:57 +5578 5578 5579 557.8 1115.6000000000001 5578 1985-04-10 2024-10-11 01:32:58.000 1985-04-10 2024-10-11 01:32:58 +5579 5579 5580 557.9 1115.8 5579 1985-04-11 2024-10-11 01:32:59.000 1985-04-11 2024-10-11 01:32:59 +5580 5580 5581 558 1116 5580 1985-04-12 2024-10-11 01:33:00.000 1985-04-12 2024-10-11 01:33:00 +5581 5581 5582 558.1 1116.2 5581 1985-04-13 2024-10-11 01:33:01.000 1985-04-13 2024-10-11 01:33:01 +5582 5582 5583 558.2 1116.4 5582 1985-04-14 2024-10-11 01:33:02.000 1985-04-14 2024-10-11 01:33:02 +5583 5583 5584 558.3 1116.6000000000001 5583 1985-04-15 2024-10-11 01:33:03.000 1985-04-15 2024-10-11 01:33:03 +5584 5584 5585 558.4 1116.8 5584 1985-04-16 2024-10-11 01:33:04.000 1985-04-16 2024-10-11 01:33:04 +5585 5585 5586 558.5 1117 5585 1985-04-17 2024-10-11 01:33:05.000 1985-04-17 2024-10-11 01:33:05 +5586 5586 5587 558.6 1117.2 5586 1985-04-18 2024-10-11 01:33:06.000 1985-04-18 2024-10-11 01:33:06 +5587 5587 5588 558.7 1117.4 5587 1985-04-19 2024-10-11 01:33:07.000 1985-04-19 2024-10-11 01:33:07 +5588 5588 5589 558.8 1117.6000000000001 5588 1985-04-20 2024-10-11 01:33:08.000 1985-04-20 2024-10-11 01:33:08 +5589 5589 5590 558.9 1117.8 5589 1985-04-21 2024-10-11 01:33:09.000 1985-04-21 2024-10-11 01:33:09 +5590 5590 5591 559 1118 5590 1985-04-22 2024-10-11 01:33:10.000 1985-04-22 2024-10-11 01:33:10 +5591 5591 5592 559.1 1118.2 5591 1985-04-23 2024-10-11 01:33:11.000 1985-04-23 2024-10-11 01:33:11 +5592 5592 5593 559.2 1118.4 5592 1985-04-24 2024-10-11 01:33:12.000 1985-04-24 2024-10-11 01:33:12 +5593 5593 5594 559.3 1118.6000000000001 5593 1985-04-25 2024-10-11 01:33:13.000 1985-04-25 2024-10-11 01:33:13 +5594 5594 5595 559.4 1118.8 5594 1985-04-26 2024-10-11 01:33:14.000 1985-04-26 2024-10-11 01:33:14 +5595 5595 5596 559.5 1119 5595 1985-04-27 2024-10-11 01:33:15.000 1985-04-27 2024-10-11 01:33:15 +5596 5596 5597 559.6 1119.2 5596 1985-04-28 2024-10-11 01:33:16.000 1985-04-28 2024-10-11 01:33:16 +5597 5597 5598 559.7 1119.4 5597 1985-04-29 2024-10-11 01:33:17.000 1985-04-29 2024-10-11 01:33:17 +5598 5598 5599 559.8 1119.6000000000001 5598 1985-04-30 2024-10-11 01:33:18.000 1985-04-30 2024-10-11 01:33:18 +5599 5599 5600 559.9 1119.8 5599 1985-05-01 2024-10-11 01:33:19.000 1985-05-01 2024-10-11 01:33:19 +5600 5600 5601 560 1120 5600 1985-05-02 2024-10-11 01:33:20.000 1985-05-02 2024-10-11 01:33:20 +5601 5601 5602 560.1 1120.2 5601 1985-05-03 2024-10-11 01:33:21.000 1985-05-03 2024-10-11 01:33:21 +5602 5602 5603 560.2 1120.4 5602 1985-05-04 2024-10-11 01:33:22.000 1985-05-04 2024-10-11 01:33:22 +5603 5603 5604 560.3 1120.6000000000001 5603 1985-05-05 2024-10-11 01:33:23.000 1985-05-05 2024-10-11 01:33:23 +5604 5604 5605 560.4 1120.8 5604 1985-05-06 2024-10-11 01:33:24.000 1985-05-06 2024-10-11 01:33:24 +5605 5605 5606 560.5 1121 5605 1985-05-07 2024-10-11 01:33:25.000 1985-05-07 2024-10-11 01:33:25 +5606 5606 5607 560.6 1121.2 5606 1985-05-08 2024-10-11 01:33:26.000 1985-05-08 2024-10-11 01:33:26 +5607 5607 5608 560.7 1121.4 5607 1985-05-09 2024-10-11 01:33:27.000 1985-05-09 2024-10-11 01:33:27 +5608 5608 5609 560.8 1121.6000000000001 5608 1985-05-10 2024-10-11 01:33:28.000 1985-05-10 2024-10-11 01:33:28 +5609 5609 5610 560.9 1121.8 5609 1985-05-11 2024-10-11 01:33:29.000 1985-05-11 2024-10-11 01:33:29 +5610 5610 5611 561 1122 5610 1985-05-12 2024-10-11 01:33:30.000 1985-05-12 2024-10-11 01:33:30 +5611 5611 5612 561.1 1122.2 5611 1985-05-13 2024-10-11 01:33:31.000 1985-05-13 2024-10-11 01:33:31 +5612 5612 5613 561.2 1122.4 5612 1985-05-14 2024-10-11 01:33:32.000 1985-05-14 2024-10-11 01:33:32 +5613 5613 5614 561.3 1122.6000000000001 5613 1985-05-15 2024-10-11 01:33:33.000 1985-05-15 2024-10-11 01:33:33 +5614 5614 5615 561.4 1122.8 5614 1985-05-16 2024-10-11 01:33:34.000 1985-05-16 2024-10-11 01:33:34 +5615 5615 5616 561.5 1123 5615 1985-05-17 2024-10-11 01:33:35.000 1985-05-17 2024-10-11 01:33:35 +5616 5616 5617 561.6 1123.2 5616 1985-05-18 2024-10-11 01:33:36.000 1985-05-18 2024-10-11 01:33:36 +5617 5617 5618 561.7 1123.4 5617 1985-05-19 2024-10-11 01:33:37.000 1985-05-19 2024-10-11 01:33:37 +5618 5618 5619 561.8 1123.6000000000001 5618 1985-05-20 2024-10-11 01:33:38.000 1985-05-20 2024-10-11 01:33:38 +5619 5619 5620 561.9 1123.8 5619 1985-05-21 2024-10-11 01:33:39.000 1985-05-21 2024-10-11 01:33:39 +5620 5620 5621 562 1124 5620 1985-05-22 2024-10-11 01:33:40.000 1985-05-22 2024-10-11 01:33:40 +5621 5621 5622 562.1 1124.2 5621 1985-05-23 2024-10-11 01:33:41.000 1985-05-23 2024-10-11 01:33:41 +5622 5622 5623 562.2 1124.4 5622 1985-05-24 2024-10-11 01:33:42.000 1985-05-24 2024-10-11 01:33:42 +5623 5623 5624 562.3 1124.6000000000001 5623 1985-05-25 2024-10-11 01:33:43.000 1985-05-25 2024-10-11 01:33:43 +5624 5624 5625 562.4 1124.8 5624 1985-05-26 2024-10-11 01:33:44.000 1985-05-26 2024-10-11 01:33:44 +5625 5625 5626 562.5 1125 5625 1985-05-27 2024-10-11 01:33:45.000 1985-05-27 2024-10-11 01:33:45 +5626 5626 5627 562.6 1125.2 5626 1985-05-28 2024-10-11 01:33:46.000 1985-05-28 2024-10-11 01:33:46 +5627 5627 5628 562.7 1125.4 5627 1985-05-29 2024-10-11 01:33:47.000 1985-05-29 2024-10-11 01:33:47 +5628 5628 5629 562.8 1125.6000000000001 5628 1985-05-30 2024-10-11 01:33:48.000 1985-05-30 2024-10-11 01:33:48 +5629 5629 5630 562.9 1125.8 5629 1985-05-31 2024-10-11 01:33:49.000 1985-05-31 2024-10-11 01:33:49 +5630 5630 5631 563 1126 5630 1985-06-01 2024-10-11 01:33:50.000 1985-06-01 2024-10-11 01:33:50 +5631 5631 5632 563.1 1126.2 5631 1985-06-02 2024-10-11 01:33:51.000 1985-06-02 2024-10-11 01:33:51 +5632 5632 5633 563.2 1126.4 5632 1985-06-03 2024-10-11 01:33:52.000 1985-06-03 2024-10-11 01:33:52 +5633 5633 5634 563.3 1126.6000000000001 5633 1985-06-04 2024-10-11 01:33:53.000 1985-06-04 2024-10-11 01:33:53 +5634 5634 5635 563.4 1126.8 5634 1985-06-05 2024-10-11 01:33:54.000 1985-06-05 2024-10-11 01:33:54 +5635 5635 5636 563.5 1127 5635 1985-06-06 2024-10-11 01:33:55.000 1985-06-06 2024-10-11 01:33:55 +5636 5636 5637 563.6 1127.2 5636 1985-06-07 2024-10-11 01:33:56.000 1985-06-07 2024-10-11 01:33:56 +5637 5637 5638 563.7 1127.4 5637 1985-06-08 2024-10-11 01:33:57.000 1985-06-08 2024-10-11 01:33:57 +5638 5638 5639 563.8 1127.6000000000001 5638 1985-06-09 2024-10-11 01:33:58.000 1985-06-09 2024-10-11 01:33:58 +5639 5639 5640 563.9 1127.8 5639 1985-06-10 2024-10-11 01:33:59.000 1985-06-10 2024-10-11 01:33:59 +5640 5640 5641 564 1128 5640 1985-06-11 2024-10-11 01:34:00.000 1985-06-11 2024-10-11 01:34:00 +5641 5641 5642 564.1 1128.2 5641 1985-06-12 2024-10-11 01:34:01.000 1985-06-12 2024-10-11 01:34:01 +5642 5642 5643 564.2 1128.4 5642 1985-06-13 2024-10-11 01:34:02.000 1985-06-13 2024-10-11 01:34:02 +5643 5643 5644 564.3 1128.6000000000001 5643 1985-06-14 2024-10-11 01:34:03.000 1985-06-14 2024-10-11 01:34:03 +5644 5644 5645 564.4 1128.8 5644 1985-06-15 2024-10-11 01:34:04.000 1985-06-15 2024-10-11 01:34:04 +5645 5645 5646 564.5 1129 5645 1985-06-16 2024-10-11 01:34:05.000 1985-06-16 2024-10-11 01:34:05 +5646 5646 5647 564.6 1129.2 5646 1985-06-17 2024-10-11 01:34:06.000 1985-06-17 2024-10-11 01:34:06 +5647 5647 5648 564.7 1129.4 5647 1985-06-18 2024-10-11 01:34:07.000 1985-06-18 2024-10-11 01:34:07 +5648 5648 5649 564.8 1129.6000000000001 5648 1985-06-19 2024-10-11 01:34:08.000 1985-06-19 2024-10-11 01:34:08 +5649 5649 5650 564.9 1129.8 5649 1985-06-20 2024-10-11 01:34:09.000 1985-06-20 2024-10-11 01:34:09 +5650 5650 5651 565 1130 5650 1985-06-21 2024-10-11 01:34:10.000 1985-06-21 2024-10-11 01:34:10 +5651 5651 5652 565.1 1130.2 5651 1985-06-22 2024-10-11 01:34:11.000 1985-06-22 2024-10-11 01:34:11 +5652 5652 5653 565.2 1130.4 5652 1985-06-23 2024-10-11 01:34:12.000 1985-06-23 2024-10-11 01:34:12 +5653 5653 5654 565.3 1130.6000000000001 5653 1985-06-24 2024-10-11 01:34:13.000 1985-06-24 2024-10-11 01:34:13 +5654 5654 5655 565.4 1130.8 5654 1985-06-25 2024-10-11 01:34:14.000 1985-06-25 2024-10-11 01:34:14 +5655 5655 5656 565.5 1131 5655 1985-06-26 2024-10-11 01:34:15.000 1985-06-26 2024-10-11 01:34:15 +5656 5656 5657 565.6 1131.2 5656 1985-06-27 2024-10-11 01:34:16.000 1985-06-27 2024-10-11 01:34:16 +5657 5657 5658 565.7 1131.4 5657 1985-06-28 2024-10-11 01:34:17.000 1985-06-28 2024-10-11 01:34:17 +5658 5658 5659 565.8 1131.6000000000001 5658 1985-06-29 2024-10-11 01:34:18.000 1985-06-29 2024-10-11 01:34:18 +5659 5659 5660 565.9 1131.8 5659 1985-06-30 2024-10-11 01:34:19.000 1985-06-30 2024-10-11 01:34:19 +5660 5660 5661 566 1132 5660 1985-07-01 2024-10-11 01:34:20.000 1985-07-01 2024-10-11 01:34:20 +5661 5661 5662 566.1 1132.2 5661 1985-07-02 2024-10-11 01:34:21.000 1985-07-02 2024-10-11 01:34:21 +5662 5662 5663 566.2 1132.4 5662 1985-07-03 2024-10-11 01:34:22.000 1985-07-03 2024-10-11 01:34:22 +5663 5663 5664 566.3 1132.6000000000001 5663 1985-07-04 2024-10-11 01:34:23.000 1985-07-04 2024-10-11 01:34:23 +5664 5664 5665 566.4 1132.8 5664 1985-07-05 2024-10-11 01:34:24.000 1985-07-05 2024-10-11 01:34:24 +5665 5665 5666 566.5 1133 5665 1985-07-06 2024-10-11 01:34:25.000 1985-07-06 2024-10-11 01:34:25 +5666 5666 5667 566.6 1133.2 5666 1985-07-07 2024-10-11 01:34:26.000 1985-07-07 2024-10-11 01:34:26 +5667 5667 5668 566.7 1133.4 5667 1985-07-08 2024-10-11 01:34:27.000 1985-07-08 2024-10-11 01:34:27 +5668 5668 5669 566.8 1133.6000000000001 5668 1985-07-09 2024-10-11 01:34:28.000 1985-07-09 2024-10-11 01:34:28 +5669 5669 5670 566.9 1133.8 5669 1985-07-10 2024-10-11 01:34:29.000 1985-07-10 2024-10-11 01:34:29 +5670 5670 5671 567 1134 5670 1985-07-11 2024-10-11 01:34:30.000 1985-07-11 2024-10-11 01:34:30 +5671 5671 5672 567.1 1134.2 5671 1985-07-12 2024-10-11 01:34:31.000 1985-07-12 2024-10-11 01:34:31 +5672 5672 5673 567.2 1134.4 5672 1985-07-13 2024-10-11 01:34:32.000 1985-07-13 2024-10-11 01:34:32 +5673 5673 5674 567.3 1134.6000000000001 5673 1985-07-14 2024-10-11 01:34:33.000 1985-07-14 2024-10-11 01:34:33 +5674 5674 5675 567.4 1134.8 5674 1985-07-15 2024-10-11 01:34:34.000 1985-07-15 2024-10-11 01:34:34 +5675 5675 5676 567.5 1135 5675 1985-07-16 2024-10-11 01:34:35.000 1985-07-16 2024-10-11 01:34:35 +5676 5676 5677 567.6 1135.2 5676 1985-07-17 2024-10-11 01:34:36.000 1985-07-17 2024-10-11 01:34:36 +5677 5677 5678 567.7 1135.4 5677 1985-07-18 2024-10-11 01:34:37.000 1985-07-18 2024-10-11 01:34:37 +5678 5678 5679 567.8 1135.6000000000001 5678 1985-07-19 2024-10-11 01:34:38.000 1985-07-19 2024-10-11 01:34:38 +5679 5679 5680 567.9 1135.8 5679 1985-07-20 2024-10-11 01:34:39.000 1985-07-20 2024-10-11 01:34:39 +5680 5680 5681 568 1136 5680 1985-07-21 2024-10-11 01:34:40.000 1985-07-21 2024-10-11 01:34:40 +5681 5681 5682 568.1 1136.2 5681 1985-07-22 2024-10-11 01:34:41.000 1985-07-22 2024-10-11 01:34:41 +5682 5682 5683 568.2 1136.4 5682 1985-07-23 2024-10-11 01:34:42.000 1985-07-23 2024-10-11 01:34:42 +5683 5683 5684 568.3 1136.6000000000001 5683 1985-07-24 2024-10-11 01:34:43.000 1985-07-24 2024-10-11 01:34:43 +5684 5684 5685 568.4 1136.8 5684 1985-07-25 2024-10-11 01:34:44.000 1985-07-25 2024-10-11 01:34:44 +5685 5685 5686 568.5 1137 5685 1985-07-26 2024-10-11 01:34:45.000 1985-07-26 2024-10-11 01:34:45 +5686 5686 5687 568.6 1137.2 5686 1985-07-27 2024-10-11 01:34:46.000 1985-07-27 2024-10-11 01:34:46 +5687 5687 5688 568.7 1137.4 5687 1985-07-28 2024-10-11 01:34:47.000 1985-07-28 2024-10-11 01:34:47 +5688 5688 5689 568.8 1137.6000000000001 5688 1985-07-29 2024-10-11 01:34:48.000 1985-07-29 2024-10-11 01:34:48 +5689 5689 5690 568.9 1137.8 5689 1985-07-30 2024-10-11 01:34:49.000 1985-07-30 2024-10-11 01:34:49 +5690 5690 5691 569 1138 5690 1985-07-31 2024-10-11 01:34:50.000 1985-07-31 2024-10-11 01:34:50 +5691 5691 5692 569.1 1138.2 5691 1985-08-01 2024-10-11 01:34:51.000 1985-08-01 2024-10-11 01:34:51 +5692 5692 5693 569.2 1138.4 5692 1985-08-02 2024-10-11 01:34:52.000 1985-08-02 2024-10-11 01:34:52 +5693 5693 5694 569.3 1138.6000000000001 5693 1985-08-03 2024-10-11 01:34:53.000 1985-08-03 2024-10-11 01:34:53 +5694 5694 5695 569.4 1138.8 5694 1985-08-04 2024-10-11 01:34:54.000 1985-08-04 2024-10-11 01:34:54 +5695 5695 5696 569.5 1139 5695 1985-08-05 2024-10-11 01:34:55.000 1985-08-05 2024-10-11 01:34:55 +5696 5696 5697 569.6 1139.2 5696 1985-08-06 2024-10-11 01:34:56.000 1985-08-06 2024-10-11 01:34:56 +5697 5697 5698 569.7 1139.4 5697 1985-08-07 2024-10-11 01:34:57.000 1985-08-07 2024-10-11 01:34:57 +5698 5698 5699 569.8 1139.6000000000001 5698 1985-08-08 2024-10-11 01:34:58.000 1985-08-08 2024-10-11 01:34:58 +5699 5699 5700 569.9 1139.8 5699 1985-08-09 2024-10-11 01:34:59.000 1985-08-09 2024-10-11 01:34:59 +5700 5700 5701 570 1140 5700 1985-08-10 2024-10-11 01:35:00.000 1985-08-10 2024-10-11 01:35:00 +5701 5701 5702 570.1 1140.2 5701 1985-08-11 2024-10-11 01:35:01.000 1985-08-11 2024-10-11 01:35:01 +5702 5702 5703 570.2 1140.4 5702 1985-08-12 2024-10-11 01:35:02.000 1985-08-12 2024-10-11 01:35:02 +5703 5703 5704 570.3 1140.6000000000001 5703 1985-08-13 2024-10-11 01:35:03.000 1985-08-13 2024-10-11 01:35:03 +5704 5704 5705 570.4 1140.8 5704 1985-08-14 2024-10-11 01:35:04.000 1985-08-14 2024-10-11 01:35:04 +5705 5705 5706 570.5 1141 5705 1985-08-15 2024-10-11 01:35:05.000 1985-08-15 2024-10-11 01:35:05 +5706 5706 5707 570.6 1141.2 5706 1985-08-16 2024-10-11 01:35:06.000 1985-08-16 2024-10-11 01:35:06 +5707 5707 5708 570.7 1141.4 5707 1985-08-17 2024-10-11 01:35:07.000 1985-08-17 2024-10-11 01:35:07 +5708 5708 5709 570.8 1141.6000000000001 5708 1985-08-18 2024-10-11 01:35:08.000 1985-08-18 2024-10-11 01:35:08 +5709 5709 5710 570.9 1141.8 5709 1985-08-19 2024-10-11 01:35:09.000 1985-08-19 2024-10-11 01:35:09 +5710 5710 5711 571 1142 5710 1985-08-20 2024-10-11 01:35:10.000 1985-08-20 2024-10-11 01:35:10 +5711 5711 5712 571.1 1142.2 5711 1985-08-21 2024-10-11 01:35:11.000 1985-08-21 2024-10-11 01:35:11 +5712 5712 5713 571.2 1142.4 5712 1985-08-22 2024-10-11 01:35:12.000 1985-08-22 2024-10-11 01:35:12 +5713 5713 5714 571.3 1142.6000000000001 5713 1985-08-23 2024-10-11 01:35:13.000 1985-08-23 2024-10-11 01:35:13 +5714 5714 5715 571.4 1142.8 5714 1985-08-24 2024-10-11 01:35:14.000 1985-08-24 2024-10-11 01:35:14 +5715 5715 5716 571.5 1143 5715 1985-08-25 2024-10-11 01:35:15.000 1985-08-25 2024-10-11 01:35:15 +5716 5716 5717 571.6 1143.2 5716 1985-08-26 2024-10-11 01:35:16.000 1985-08-26 2024-10-11 01:35:16 +5717 5717 5718 571.7 1143.4 5717 1985-08-27 2024-10-11 01:35:17.000 1985-08-27 2024-10-11 01:35:17 +5718 5718 5719 571.8 1143.6000000000001 5718 1985-08-28 2024-10-11 01:35:18.000 1985-08-28 2024-10-11 01:35:18 +5719 5719 5720 571.9 1143.8 5719 1985-08-29 2024-10-11 01:35:19.000 1985-08-29 2024-10-11 01:35:19 +5720 5720 5721 572 1144 5720 1985-08-30 2024-10-11 01:35:20.000 1985-08-30 2024-10-11 01:35:20 +5721 5721 5722 572.1 1144.2 5721 1985-08-31 2024-10-11 01:35:21.000 1985-08-31 2024-10-11 01:35:21 +5722 5722 5723 572.2 1144.4 5722 1985-09-01 2024-10-11 01:35:22.000 1985-09-01 2024-10-11 01:35:22 +5723 5723 5724 572.3 1144.6000000000001 5723 1985-09-02 2024-10-11 01:35:23.000 1985-09-02 2024-10-11 01:35:23 +5724 5724 5725 572.4 1144.8 5724 1985-09-03 2024-10-11 01:35:24.000 1985-09-03 2024-10-11 01:35:24 +5725 5725 5726 572.5 1145 5725 1985-09-04 2024-10-11 01:35:25.000 1985-09-04 2024-10-11 01:35:25 +5726 5726 5727 572.6 1145.2 5726 1985-09-05 2024-10-11 01:35:26.000 1985-09-05 2024-10-11 01:35:26 +5727 5727 5728 572.7 1145.4 5727 1985-09-06 2024-10-11 01:35:27.000 1985-09-06 2024-10-11 01:35:27 +5728 5728 5729 572.8 1145.6000000000001 5728 1985-09-07 2024-10-11 01:35:28.000 1985-09-07 2024-10-11 01:35:28 +5729 5729 5730 572.9 1145.8 5729 1985-09-08 2024-10-11 01:35:29.000 1985-09-08 2024-10-11 01:35:29 +5730 5730 5731 573 1146 5730 1985-09-09 2024-10-11 01:35:30.000 1985-09-09 2024-10-11 01:35:30 +5731 5731 5732 573.1 1146.2 5731 1985-09-10 2024-10-11 01:35:31.000 1985-09-10 2024-10-11 01:35:31 +5732 5732 5733 573.2 1146.4 5732 1985-09-11 2024-10-11 01:35:32.000 1985-09-11 2024-10-11 01:35:32 +5733 5733 5734 573.3 1146.6000000000001 5733 1985-09-12 2024-10-11 01:35:33.000 1985-09-12 2024-10-11 01:35:33 +5734 5734 5735 573.4 1146.8 5734 1985-09-13 2024-10-11 01:35:34.000 1985-09-13 2024-10-11 01:35:34 +5735 5735 5736 573.5 1147 5735 1985-09-14 2024-10-11 01:35:35.000 1985-09-14 2024-10-11 01:35:35 +5736 5736 5737 573.6 1147.2 5736 1985-09-15 2024-10-11 01:35:36.000 1985-09-15 2024-10-11 01:35:36 +5737 5737 5738 573.7 1147.4 5737 1985-09-16 2024-10-11 01:35:37.000 1985-09-16 2024-10-11 01:35:37 +5738 5738 5739 573.8 1147.6000000000001 5738 1985-09-17 2024-10-11 01:35:38.000 1985-09-17 2024-10-11 01:35:38 +5739 5739 5740 573.9 1147.8 5739 1985-09-18 2024-10-11 01:35:39.000 1985-09-18 2024-10-11 01:35:39 +5740 5740 5741 574 1148 5740 1985-09-19 2024-10-11 01:35:40.000 1985-09-19 2024-10-11 01:35:40 +5741 5741 5742 574.1 1148.2 5741 1985-09-20 2024-10-11 01:35:41.000 1985-09-20 2024-10-11 01:35:41 +5742 5742 5743 574.2 1148.4 5742 1985-09-21 2024-10-11 01:35:42.000 1985-09-21 2024-10-11 01:35:42 +5743 5743 5744 574.3 1148.6000000000001 5743 1985-09-22 2024-10-11 01:35:43.000 1985-09-22 2024-10-11 01:35:43 +5744 5744 5745 574.4 1148.8 5744 1985-09-23 2024-10-11 01:35:44.000 1985-09-23 2024-10-11 01:35:44 +5745 5745 5746 574.5 1149 5745 1985-09-24 2024-10-11 01:35:45.000 1985-09-24 2024-10-11 01:35:45 +5746 5746 5747 574.6 1149.2 5746 1985-09-25 2024-10-11 01:35:46.000 1985-09-25 2024-10-11 01:35:46 +5747 5747 5748 574.7 1149.4 5747 1985-09-26 2024-10-11 01:35:47.000 1985-09-26 2024-10-11 01:35:47 +5748 5748 5749 574.8 1149.6000000000001 5748 1985-09-27 2024-10-11 01:35:48.000 1985-09-27 2024-10-11 01:35:48 +5749 5749 5750 574.9 1149.8 5749 1985-09-28 2024-10-11 01:35:49.000 1985-09-28 2024-10-11 01:35:49 +5750 5750 5751 575 1150 5750 1985-09-29 2024-10-11 01:35:50.000 1985-09-29 2024-10-11 01:35:50 +5751 5751 5752 575.1 1150.2 5751 1985-09-30 2024-10-11 01:35:51.000 1985-09-30 2024-10-11 01:35:51 +5752 5752 5753 575.2 1150.4 5752 1985-10-01 2024-10-11 01:35:52.000 1985-10-01 2024-10-11 01:35:52 +5753 5753 5754 575.3 1150.6000000000001 5753 1985-10-02 2024-10-11 01:35:53.000 1985-10-02 2024-10-11 01:35:53 +5754 5754 5755 575.4 1150.8 5754 1985-10-03 2024-10-11 01:35:54.000 1985-10-03 2024-10-11 01:35:54 +5755 5755 5756 575.5 1151 5755 1985-10-04 2024-10-11 01:35:55.000 1985-10-04 2024-10-11 01:35:55 +5756 5756 5757 575.6 1151.2 5756 1985-10-05 2024-10-11 01:35:56.000 1985-10-05 2024-10-11 01:35:56 +5757 5757 5758 575.7 1151.4 5757 1985-10-06 2024-10-11 01:35:57.000 1985-10-06 2024-10-11 01:35:57 +5758 5758 5759 575.8 1151.6000000000001 5758 1985-10-07 2024-10-11 01:35:58.000 1985-10-07 2024-10-11 01:35:58 +5759 5759 5760 575.9 1151.8 5759 1985-10-08 2024-10-11 01:35:59.000 1985-10-08 2024-10-11 01:35:59 +5760 5760 5761 576 1152 5760 1985-10-09 2024-10-11 01:36:00.000 1985-10-09 2024-10-11 01:36:00 +5761 5761 5762 576.1 1152.2 5761 1985-10-10 2024-10-11 01:36:01.000 1985-10-10 2024-10-11 01:36:01 +5762 5762 5763 576.2 1152.4 5762 1985-10-11 2024-10-11 01:36:02.000 1985-10-11 2024-10-11 01:36:02 +5763 5763 5764 576.3 1152.6000000000001 5763 1985-10-12 2024-10-11 01:36:03.000 1985-10-12 2024-10-11 01:36:03 +5764 5764 5765 576.4 1152.8 5764 1985-10-13 2024-10-11 01:36:04.000 1985-10-13 2024-10-11 01:36:04 +5765 5765 5766 576.5 1153 5765 1985-10-14 2024-10-11 01:36:05.000 1985-10-14 2024-10-11 01:36:05 +5766 5766 5767 576.6 1153.2 5766 1985-10-15 2024-10-11 01:36:06.000 1985-10-15 2024-10-11 01:36:06 +5767 5767 5768 576.7 1153.4 5767 1985-10-16 2024-10-11 01:36:07.000 1985-10-16 2024-10-11 01:36:07 +5768 5768 5769 576.8 1153.6000000000001 5768 1985-10-17 2024-10-11 01:36:08.000 1985-10-17 2024-10-11 01:36:08 +5769 5769 5770 576.9 1153.8 5769 1985-10-18 2024-10-11 01:36:09.000 1985-10-18 2024-10-11 01:36:09 +5770 5770 5771 577 1154 5770 1985-10-19 2024-10-11 01:36:10.000 1985-10-19 2024-10-11 01:36:10 +5771 5771 5772 577.1 1154.2 5771 1985-10-20 2024-10-11 01:36:11.000 1985-10-20 2024-10-11 01:36:11 +5772 5772 5773 577.2 1154.4 5772 1985-10-21 2024-10-11 01:36:12.000 1985-10-21 2024-10-11 01:36:12 +5773 5773 5774 577.3 1154.6000000000001 5773 1985-10-22 2024-10-11 01:36:13.000 1985-10-22 2024-10-11 01:36:13 +5774 5774 5775 577.4 1154.8 5774 1985-10-23 2024-10-11 01:36:14.000 1985-10-23 2024-10-11 01:36:14 +5775 5775 5776 577.5 1155 5775 1985-10-24 2024-10-11 01:36:15.000 1985-10-24 2024-10-11 01:36:15 +5776 5776 5777 577.6 1155.2 5776 1985-10-25 2024-10-11 01:36:16.000 1985-10-25 2024-10-11 01:36:16 +5777 5777 5778 577.7 1155.4 5777 1985-10-26 2024-10-11 01:36:17.000 1985-10-26 2024-10-11 01:36:17 +5778 5778 5779 577.8 1155.6000000000001 5778 1985-10-27 2024-10-11 01:36:18.000 1985-10-27 2024-10-11 01:36:18 +5779 5779 5780 577.9 1155.8 5779 1985-10-28 2024-10-11 01:36:19.000 1985-10-28 2024-10-11 01:36:19 +5780 5780 5781 578 1156 5780 1985-10-29 2024-10-11 01:36:20.000 1985-10-29 2024-10-11 01:36:20 +5781 5781 5782 578.1 1156.2 5781 1985-10-30 2024-10-11 01:36:21.000 1985-10-30 2024-10-11 01:36:21 +5782 5782 5783 578.2 1156.4 5782 1985-10-31 2024-10-11 01:36:22.000 1985-10-31 2024-10-11 01:36:22 +5783 5783 5784 578.3 1156.6000000000001 5783 1985-11-01 2024-10-11 01:36:23.000 1985-11-01 2024-10-11 01:36:23 +5784 5784 5785 578.4 1156.8 5784 1985-11-02 2024-10-11 01:36:24.000 1985-11-02 2024-10-11 01:36:24 +5785 5785 5786 578.5 1157 5785 1985-11-03 2024-10-11 01:36:25.000 1985-11-03 2024-10-11 01:36:25 +5786 5786 5787 578.6 1157.2 5786 1985-11-04 2024-10-11 01:36:26.000 1985-11-04 2024-10-11 01:36:26 +5787 5787 5788 578.7 1157.4 5787 1985-11-05 2024-10-11 01:36:27.000 1985-11-05 2024-10-11 01:36:27 +5788 5788 5789 578.8 1157.6000000000001 5788 1985-11-06 2024-10-11 01:36:28.000 1985-11-06 2024-10-11 01:36:28 +5789 5789 5790 578.9 1157.8 5789 1985-11-07 2024-10-11 01:36:29.000 1985-11-07 2024-10-11 01:36:29 +5790 5790 5791 579 1158 5790 1985-11-08 2024-10-11 01:36:30.000 1985-11-08 2024-10-11 01:36:30 +5791 5791 5792 579.1 1158.2 5791 1985-11-09 2024-10-11 01:36:31.000 1985-11-09 2024-10-11 01:36:31 +5792 5792 5793 579.2 1158.4 5792 1985-11-10 2024-10-11 01:36:32.000 1985-11-10 2024-10-11 01:36:32 +5793 5793 5794 579.3 1158.6000000000001 5793 1985-11-11 2024-10-11 01:36:33.000 1985-11-11 2024-10-11 01:36:33 +5794 5794 5795 579.4 1158.8 5794 1985-11-12 2024-10-11 01:36:34.000 1985-11-12 2024-10-11 01:36:34 +5795 5795 5796 579.5 1159 5795 1985-11-13 2024-10-11 01:36:35.000 1985-11-13 2024-10-11 01:36:35 +5796 5796 5797 579.6 1159.2 5796 1985-11-14 2024-10-11 01:36:36.000 1985-11-14 2024-10-11 01:36:36 +5797 5797 5798 579.7 1159.4 5797 1985-11-15 2024-10-11 01:36:37.000 1985-11-15 2024-10-11 01:36:37 +5798 5798 5799 579.8 1159.6000000000001 5798 1985-11-16 2024-10-11 01:36:38.000 1985-11-16 2024-10-11 01:36:38 +5799 5799 5800 579.9 1159.8 5799 1985-11-17 2024-10-11 01:36:39.000 1985-11-17 2024-10-11 01:36:39 +5800 5800 5801 580 1160 5800 1985-11-18 2024-10-11 01:36:40.000 1985-11-18 2024-10-11 01:36:40 +5801 5801 5802 580.1 1160.2 5801 1985-11-19 2024-10-11 01:36:41.000 1985-11-19 2024-10-11 01:36:41 +5802 5802 5803 580.2 1160.4 5802 1985-11-20 2024-10-11 01:36:42.000 1985-11-20 2024-10-11 01:36:42 +5803 5803 5804 580.3 1160.6000000000001 5803 1985-11-21 2024-10-11 01:36:43.000 1985-11-21 2024-10-11 01:36:43 +5804 5804 5805 580.4 1160.8 5804 1985-11-22 2024-10-11 01:36:44.000 1985-11-22 2024-10-11 01:36:44 +5805 5805 5806 580.5 1161 5805 1985-11-23 2024-10-11 01:36:45.000 1985-11-23 2024-10-11 01:36:45 +5806 5806 5807 580.6 1161.2 5806 1985-11-24 2024-10-11 01:36:46.000 1985-11-24 2024-10-11 01:36:46 +5807 5807 5808 580.7 1161.4 5807 1985-11-25 2024-10-11 01:36:47.000 1985-11-25 2024-10-11 01:36:47 +5808 5808 5809 580.8 1161.6000000000001 5808 1985-11-26 2024-10-11 01:36:48.000 1985-11-26 2024-10-11 01:36:48 +5809 5809 5810 580.9 1161.8 5809 1985-11-27 2024-10-11 01:36:49.000 1985-11-27 2024-10-11 01:36:49 +5810 5810 5811 581 1162 5810 1985-11-28 2024-10-11 01:36:50.000 1985-11-28 2024-10-11 01:36:50 +5811 5811 5812 581.1 1162.2 5811 1985-11-29 2024-10-11 01:36:51.000 1985-11-29 2024-10-11 01:36:51 +5812 5812 5813 581.2 1162.4 5812 1985-11-30 2024-10-11 01:36:52.000 1985-11-30 2024-10-11 01:36:52 +5813 5813 5814 581.3 1162.6000000000001 5813 1985-12-01 2024-10-11 01:36:53.000 1985-12-01 2024-10-11 01:36:53 +5814 5814 5815 581.4 1162.8 5814 1985-12-02 2024-10-11 01:36:54.000 1985-12-02 2024-10-11 01:36:54 +5815 5815 5816 581.5 1163 5815 1985-12-03 2024-10-11 01:36:55.000 1985-12-03 2024-10-11 01:36:55 +5816 5816 5817 581.6 1163.2 5816 1985-12-04 2024-10-11 01:36:56.000 1985-12-04 2024-10-11 01:36:56 +5817 5817 5818 581.7 1163.4 5817 1985-12-05 2024-10-11 01:36:57.000 1985-12-05 2024-10-11 01:36:57 +5818 5818 5819 581.8 1163.6000000000001 5818 1985-12-06 2024-10-11 01:36:58.000 1985-12-06 2024-10-11 01:36:58 +5819 5819 5820 581.9 1163.8 5819 1985-12-07 2024-10-11 01:36:59.000 1985-12-07 2024-10-11 01:36:59 +5820 5820 5821 582 1164 5820 1985-12-08 2024-10-11 01:37:00.000 1985-12-08 2024-10-11 01:37:00 +5821 5821 5822 582.1 1164.2 5821 1985-12-09 2024-10-11 01:37:01.000 1985-12-09 2024-10-11 01:37:01 +5822 5822 5823 582.2 1164.4 5822 1985-12-10 2024-10-11 01:37:02.000 1985-12-10 2024-10-11 01:37:02 +5823 5823 5824 582.3 1164.6000000000001 5823 1985-12-11 2024-10-11 01:37:03.000 1985-12-11 2024-10-11 01:37:03 +5824 5824 5825 582.4 1164.8 5824 1985-12-12 2024-10-11 01:37:04.000 1985-12-12 2024-10-11 01:37:04 +5825 5825 5826 582.5 1165 5825 1985-12-13 2024-10-11 01:37:05.000 1985-12-13 2024-10-11 01:37:05 +5826 5826 5827 582.6 1165.2 5826 1985-12-14 2024-10-11 01:37:06.000 1985-12-14 2024-10-11 01:37:06 +5827 5827 5828 582.7 1165.4 5827 1985-12-15 2024-10-11 01:37:07.000 1985-12-15 2024-10-11 01:37:07 +5828 5828 5829 582.8 1165.6000000000001 5828 1985-12-16 2024-10-11 01:37:08.000 1985-12-16 2024-10-11 01:37:08 +5829 5829 5830 582.9 1165.8 5829 1985-12-17 2024-10-11 01:37:09.000 1985-12-17 2024-10-11 01:37:09 +5830 5830 5831 583 1166 5830 1985-12-18 2024-10-11 01:37:10.000 1985-12-18 2024-10-11 01:37:10 +5831 5831 5832 583.1 1166.2 5831 1985-12-19 2024-10-11 01:37:11.000 1985-12-19 2024-10-11 01:37:11 +5832 5832 5833 583.2 1166.4 5832 1985-12-20 2024-10-11 01:37:12.000 1985-12-20 2024-10-11 01:37:12 +5833 5833 5834 583.3 1166.6000000000001 5833 1985-12-21 2024-10-11 01:37:13.000 1985-12-21 2024-10-11 01:37:13 +5834 5834 5835 583.4 1166.8 5834 1985-12-22 2024-10-11 01:37:14.000 1985-12-22 2024-10-11 01:37:14 +5835 5835 5836 583.5 1167 5835 1985-12-23 2024-10-11 01:37:15.000 1985-12-23 2024-10-11 01:37:15 +5836 5836 5837 583.6 1167.2 5836 1985-12-24 2024-10-11 01:37:16.000 1985-12-24 2024-10-11 01:37:16 +5837 5837 5838 583.7 1167.4 5837 1985-12-25 2024-10-11 01:37:17.000 1985-12-25 2024-10-11 01:37:17 +5838 5838 5839 583.8 1167.6000000000001 5838 1985-12-26 2024-10-11 01:37:18.000 1985-12-26 2024-10-11 01:37:18 +5839 5839 5840 583.9 1167.8 5839 1985-12-27 2024-10-11 01:37:19.000 1985-12-27 2024-10-11 01:37:19 +5840 5840 5841 584 1168 5840 1985-12-28 2024-10-11 01:37:20.000 1985-12-28 2024-10-11 01:37:20 +5841 5841 5842 584.1 1168.2 5841 1985-12-29 2024-10-11 01:37:21.000 1985-12-29 2024-10-11 01:37:21 +5842 5842 5843 584.2 1168.4 5842 1985-12-30 2024-10-11 01:37:22.000 1985-12-30 2024-10-11 01:37:22 +5843 5843 5844 584.3 1168.6000000000001 5843 1985-12-31 2024-10-11 01:37:23.000 1985-12-31 2024-10-11 01:37:23 +5844 5844 5845 584.4 1168.8 5844 1986-01-01 2024-10-11 01:37:24.000 1986-01-01 2024-10-11 01:37:24 +5845 5845 5846 584.5 1169 5845 1986-01-02 2024-10-11 01:37:25.000 1986-01-02 2024-10-11 01:37:25 +5846 5846 5847 584.6 1169.2 5846 1986-01-03 2024-10-11 01:37:26.000 1986-01-03 2024-10-11 01:37:26 +5847 5847 5848 584.7 1169.4 5847 1986-01-04 2024-10-11 01:37:27.000 1986-01-04 2024-10-11 01:37:27 +5848 5848 5849 584.8 1169.6000000000001 5848 1986-01-05 2024-10-11 01:37:28.000 1986-01-05 2024-10-11 01:37:28 +5849 5849 5850 584.9 1169.8 5849 1986-01-06 2024-10-11 01:37:29.000 1986-01-06 2024-10-11 01:37:29 +5850 5850 5851 585 1170 5850 1986-01-07 2024-10-11 01:37:30.000 1986-01-07 2024-10-11 01:37:30 +5851 5851 5852 585.1 1170.2 5851 1986-01-08 2024-10-11 01:37:31.000 1986-01-08 2024-10-11 01:37:31 +5852 5852 5853 585.2 1170.4 5852 1986-01-09 2024-10-11 01:37:32.000 1986-01-09 2024-10-11 01:37:32 +5853 5853 5854 585.3 1170.6000000000001 5853 1986-01-10 2024-10-11 01:37:33.000 1986-01-10 2024-10-11 01:37:33 +5854 5854 5855 585.4 1170.8 5854 1986-01-11 2024-10-11 01:37:34.000 1986-01-11 2024-10-11 01:37:34 +5855 5855 5856 585.5 1171 5855 1986-01-12 2024-10-11 01:37:35.000 1986-01-12 2024-10-11 01:37:35 +5856 5856 5857 585.6 1171.2 5856 1986-01-13 2024-10-11 01:37:36.000 1986-01-13 2024-10-11 01:37:36 +5857 5857 5858 585.7 1171.4 5857 1986-01-14 2024-10-11 01:37:37.000 1986-01-14 2024-10-11 01:37:37 +5858 5858 5859 585.8 1171.6000000000001 5858 1986-01-15 2024-10-11 01:37:38.000 1986-01-15 2024-10-11 01:37:38 +5859 5859 5860 585.9 1171.8 5859 1986-01-16 2024-10-11 01:37:39.000 1986-01-16 2024-10-11 01:37:39 +5860 5860 5861 586 1172 5860 1986-01-17 2024-10-11 01:37:40.000 1986-01-17 2024-10-11 01:37:40 +5861 5861 5862 586.1 1172.2 5861 1986-01-18 2024-10-11 01:37:41.000 1986-01-18 2024-10-11 01:37:41 +5862 5862 5863 586.2 1172.4 5862 1986-01-19 2024-10-11 01:37:42.000 1986-01-19 2024-10-11 01:37:42 +5863 5863 5864 586.3 1172.6000000000001 5863 1986-01-20 2024-10-11 01:37:43.000 1986-01-20 2024-10-11 01:37:43 +5864 5864 5865 586.4 1172.8 5864 1986-01-21 2024-10-11 01:37:44.000 1986-01-21 2024-10-11 01:37:44 +5865 5865 5866 586.5 1173 5865 1986-01-22 2024-10-11 01:37:45.000 1986-01-22 2024-10-11 01:37:45 +5866 5866 5867 586.6 1173.2 5866 1986-01-23 2024-10-11 01:37:46.000 1986-01-23 2024-10-11 01:37:46 +5867 5867 5868 586.7 1173.4 5867 1986-01-24 2024-10-11 01:37:47.000 1986-01-24 2024-10-11 01:37:47 +5868 5868 5869 586.8 1173.6000000000001 5868 1986-01-25 2024-10-11 01:37:48.000 1986-01-25 2024-10-11 01:37:48 +5869 5869 5870 586.9 1173.8 5869 1986-01-26 2024-10-11 01:37:49.000 1986-01-26 2024-10-11 01:37:49 +5870 5870 5871 587 1174 5870 1986-01-27 2024-10-11 01:37:50.000 1986-01-27 2024-10-11 01:37:50 +5871 5871 5872 587.1 1174.2 5871 1986-01-28 2024-10-11 01:37:51.000 1986-01-28 2024-10-11 01:37:51 +5872 5872 5873 587.2 1174.4 5872 1986-01-29 2024-10-11 01:37:52.000 1986-01-29 2024-10-11 01:37:52 +5873 5873 5874 587.3 1174.6000000000001 5873 1986-01-30 2024-10-11 01:37:53.000 1986-01-30 2024-10-11 01:37:53 +5874 5874 5875 587.4 1174.8 5874 1986-01-31 2024-10-11 01:37:54.000 1986-01-31 2024-10-11 01:37:54 +5875 5875 5876 587.5 1175 5875 1986-02-01 2024-10-11 01:37:55.000 1986-02-01 2024-10-11 01:37:55 +5876 5876 5877 587.6 1175.2 5876 1986-02-02 2024-10-11 01:37:56.000 1986-02-02 2024-10-11 01:37:56 +5877 5877 5878 587.7 1175.4 5877 1986-02-03 2024-10-11 01:37:57.000 1986-02-03 2024-10-11 01:37:57 +5878 5878 5879 587.8 1175.6000000000001 5878 1986-02-04 2024-10-11 01:37:58.000 1986-02-04 2024-10-11 01:37:58 +5879 5879 5880 587.9 1175.8 5879 1986-02-05 2024-10-11 01:37:59.000 1986-02-05 2024-10-11 01:37:59 +5880 5880 5881 588 1176 5880 1986-02-06 2024-10-11 01:38:00.000 1986-02-06 2024-10-11 01:38:00 +5881 5881 5882 588.1 1176.2 5881 1986-02-07 2024-10-11 01:38:01.000 1986-02-07 2024-10-11 01:38:01 +5882 5882 5883 588.2 1176.4 5882 1986-02-08 2024-10-11 01:38:02.000 1986-02-08 2024-10-11 01:38:02 +5883 5883 5884 588.3 1176.6000000000001 5883 1986-02-09 2024-10-11 01:38:03.000 1986-02-09 2024-10-11 01:38:03 +5884 5884 5885 588.4 1176.8 5884 1986-02-10 2024-10-11 01:38:04.000 1986-02-10 2024-10-11 01:38:04 +5885 5885 5886 588.5 1177 5885 1986-02-11 2024-10-11 01:38:05.000 1986-02-11 2024-10-11 01:38:05 +5886 5886 5887 588.6 1177.2 5886 1986-02-12 2024-10-11 01:38:06.000 1986-02-12 2024-10-11 01:38:06 +5887 5887 5888 588.7 1177.4 5887 1986-02-13 2024-10-11 01:38:07.000 1986-02-13 2024-10-11 01:38:07 +5888 5888 5889 588.8 1177.6000000000001 5888 1986-02-14 2024-10-11 01:38:08.000 1986-02-14 2024-10-11 01:38:08 +5889 5889 5890 588.9 1177.8 5889 1986-02-15 2024-10-11 01:38:09.000 1986-02-15 2024-10-11 01:38:09 +5890 5890 5891 589 1178 5890 1986-02-16 2024-10-11 01:38:10.000 1986-02-16 2024-10-11 01:38:10 +5891 5891 5892 589.1 1178.2 5891 1986-02-17 2024-10-11 01:38:11.000 1986-02-17 2024-10-11 01:38:11 +5892 5892 5893 589.2 1178.4 5892 1986-02-18 2024-10-11 01:38:12.000 1986-02-18 2024-10-11 01:38:12 +5893 5893 5894 589.3 1178.6000000000001 5893 1986-02-19 2024-10-11 01:38:13.000 1986-02-19 2024-10-11 01:38:13 +5894 5894 5895 589.4 1178.8 5894 1986-02-20 2024-10-11 01:38:14.000 1986-02-20 2024-10-11 01:38:14 +5895 5895 5896 589.5 1179 5895 1986-02-21 2024-10-11 01:38:15.000 1986-02-21 2024-10-11 01:38:15 +5896 5896 5897 589.6 1179.2 5896 1986-02-22 2024-10-11 01:38:16.000 1986-02-22 2024-10-11 01:38:16 +5897 5897 5898 589.7 1179.4 5897 1986-02-23 2024-10-11 01:38:17.000 1986-02-23 2024-10-11 01:38:17 +5898 5898 5899 589.8 1179.6000000000001 5898 1986-02-24 2024-10-11 01:38:18.000 1986-02-24 2024-10-11 01:38:18 +5899 5899 5900 589.9 1179.8 5899 1986-02-25 2024-10-11 01:38:19.000 1986-02-25 2024-10-11 01:38:19 +5900 5900 5901 590 1180 5900 1986-02-26 2024-10-11 01:38:20.000 1986-02-26 2024-10-11 01:38:20 +5901 5901 5902 590.1 1180.2 5901 1986-02-27 2024-10-11 01:38:21.000 1986-02-27 2024-10-11 01:38:21 +5902 5902 5903 590.2 1180.4 5902 1986-02-28 2024-10-11 01:38:22.000 1986-02-28 2024-10-11 01:38:22 +5903 5903 5904 590.3 1180.6000000000001 5903 1986-03-01 2024-10-11 01:38:23.000 1986-03-01 2024-10-11 01:38:23 +5904 5904 5905 590.4 1180.8 5904 1986-03-02 2024-10-11 01:38:24.000 1986-03-02 2024-10-11 01:38:24 +5905 5905 5906 590.5 1181 5905 1986-03-03 2024-10-11 01:38:25.000 1986-03-03 2024-10-11 01:38:25 +5906 5906 5907 590.6 1181.2 5906 1986-03-04 2024-10-11 01:38:26.000 1986-03-04 2024-10-11 01:38:26 +5907 5907 5908 590.7 1181.4 5907 1986-03-05 2024-10-11 01:38:27.000 1986-03-05 2024-10-11 01:38:27 +5908 5908 5909 590.8 1181.6000000000001 5908 1986-03-06 2024-10-11 01:38:28.000 1986-03-06 2024-10-11 01:38:28 +5909 5909 5910 590.9 1181.8 5909 1986-03-07 2024-10-11 01:38:29.000 1986-03-07 2024-10-11 01:38:29 +5910 5910 5911 591 1182 5910 1986-03-08 2024-10-11 01:38:30.000 1986-03-08 2024-10-11 01:38:30 +5911 5911 5912 591.1 1182.2 5911 1986-03-09 2024-10-11 01:38:31.000 1986-03-09 2024-10-11 01:38:31 +5912 5912 5913 591.2 1182.4 5912 1986-03-10 2024-10-11 01:38:32.000 1986-03-10 2024-10-11 01:38:32 +5913 5913 5914 591.3 1182.6000000000001 5913 1986-03-11 2024-10-11 01:38:33.000 1986-03-11 2024-10-11 01:38:33 +5914 5914 5915 591.4 1182.8 5914 1986-03-12 2024-10-11 01:38:34.000 1986-03-12 2024-10-11 01:38:34 +5915 5915 5916 591.5 1183 5915 1986-03-13 2024-10-11 01:38:35.000 1986-03-13 2024-10-11 01:38:35 +5916 5916 5917 591.6 1183.2 5916 1986-03-14 2024-10-11 01:38:36.000 1986-03-14 2024-10-11 01:38:36 +5917 5917 5918 591.7 1183.4 5917 1986-03-15 2024-10-11 01:38:37.000 1986-03-15 2024-10-11 01:38:37 +5918 5918 5919 591.8 1183.6000000000001 5918 1986-03-16 2024-10-11 01:38:38.000 1986-03-16 2024-10-11 01:38:38 +5919 5919 5920 591.9 1183.8 5919 1986-03-17 2024-10-11 01:38:39.000 1986-03-17 2024-10-11 01:38:39 +5920 5920 5921 592 1184 5920 1986-03-18 2024-10-11 01:38:40.000 1986-03-18 2024-10-11 01:38:40 +5921 5921 5922 592.1 1184.2 5921 1986-03-19 2024-10-11 01:38:41.000 1986-03-19 2024-10-11 01:38:41 +5922 5922 5923 592.2 1184.4 5922 1986-03-20 2024-10-11 01:38:42.000 1986-03-20 2024-10-11 01:38:42 +5923 5923 5924 592.3 1184.6000000000001 5923 1986-03-21 2024-10-11 01:38:43.000 1986-03-21 2024-10-11 01:38:43 +5924 5924 5925 592.4 1184.8 5924 1986-03-22 2024-10-11 01:38:44.000 1986-03-22 2024-10-11 01:38:44 +5925 5925 5926 592.5 1185 5925 1986-03-23 2024-10-11 01:38:45.000 1986-03-23 2024-10-11 01:38:45 +5926 5926 5927 592.6 1185.2 5926 1986-03-24 2024-10-11 01:38:46.000 1986-03-24 2024-10-11 01:38:46 +5927 5927 5928 592.7 1185.4 5927 1986-03-25 2024-10-11 01:38:47.000 1986-03-25 2024-10-11 01:38:47 +5928 5928 5929 592.8 1185.6000000000001 5928 1986-03-26 2024-10-11 01:38:48.000 1986-03-26 2024-10-11 01:38:48 +5929 5929 5930 592.9 1185.8 5929 1986-03-27 2024-10-11 01:38:49.000 1986-03-27 2024-10-11 01:38:49 +5930 5930 5931 593 1186 5930 1986-03-28 2024-10-11 01:38:50.000 1986-03-28 2024-10-11 01:38:50 +5931 5931 5932 593.1 1186.2 5931 1986-03-29 2024-10-11 01:38:51.000 1986-03-29 2024-10-11 01:38:51 +5932 5932 5933 593.2 1186.4 5932 1986-03-30 2024-10-11 01:38:52.000 1986-03-30 2024-10-11 01:38:52 +5933 5933 5934 593.3 1186.6000000000001 5933 1986-03-31 2024-10-11 01:38:53.000 1986-03-31 2024-10-11 01:38:53 +5934 5934 5935 593.4 1186.8 5934 1986-04-01 2024-10-11 01:38:54.000 1986-04-01 2024-10-11 01:38:54 +5935 5935 5936 593.5 1187 5935 1986-04-02 2024-10-11 01:38:55.000 1986-04-02 2024-10-11 01:38:55 +5936 5936 5937 593.6 1187.2 5936 1986-04-03 2024-10-11 01:38:56.000 1986-04-03 2024-10-11 01:38:56 +5937 5937 5938 593.7 1187.4 5937 1986-04-04 2024-10-11 01:38:57.000 1986-04-04 2024-10-11 01:38:57 +5938 5938 5939 593.8 1187.6000000000001 5938 1986-04-05 2024-10-11 01:38:58.000 1986-04-05 2024-10-11 01:38:58 +5939 5939 5940 593.9 1187.8 5939 1986-04-06 2024-10-11 01:38:59.000 1986-04-06 2024-10-11 01:38:59 +5940 5940 5941 594 1188 5940 1986-04-07 2024-10-11 01:39:00.000 1986-04-07 2024-10-11 01:39:00 +5941 5941 5942 594.1 1188.2 5941 1986-04-08 2024-10-11 01:39:01.000 1986-04-08 2024-10-11 01:39:01 +5942 5942 5943 594.2 1188.4 5942 1986-04-09 2024-10-11 01:39:02.000 1986-04-09 2024-10-11 01:39:02 +5943 5943 5944 594.3 1188.6000000000001 5943 1986-04-10 2024-10-11 01:39:03.000 1986-04-10 2024-10-11 01:39:03 +5944 5944 5945 594.4 1188.8 5944 1986-04-11 2024-10-11 01:39:04.000 1986-04-11 2024-10-11 01:39:04 +5945 5945 5946 594.5 1189 5945 1986-04-12 2024-10-11 01:39:05.000 1986-04-12 2024-10-11 01:39:05 +5946 5946 5947 594.6 1189.2 5946 1986-04-13 2024-10-11 01:39:06.000 1986-04-13 2024-10-11 01:39:06 +5947 5947 5948 594.7 1189.4 5947 1986-04-14 2024-10-11 01:39:07.000 1986-04-14 2024-10-11 01:39:07 +5948 5948 5949 594.8 1189.6000000000001 5948 1986-04-15 2024-10-11 01:39:08.000 1986-04-15 2024-10-11 01:39:08 +5949 5949 5950 594.9 1189.8 5949 1986-04-16 2024-10-11 01:39:09.000 1986-04-16 2024-10-11 01:39:09 +5950 5950 5951 595 1190 5950 1986-04-17 2024-10-11 01:39:10.000 1986-04-17 2024-10-11 01:39:10 +5951 5951 5952 595.1 1190.2 5951 1986-04-18 2024-10-11 01:39:11.000 1986-04-18 2024-10-11 01:39:11 +5952 5952 5953 595.2 1190.4 5952 1986-04-19 2024-10-11 01:39:12.000 1986-04-19 2024-10-11 01:39:12 +5953 5953 5954 595.3 1190.6000000000001 5953 1986-04-20 2024-10-11 01:39:13.000 1986-04-20 2024-10-11 01:39:13 +5954 5954 5955 595.4 1190.8 5954 1986-04-21 2024-10-11 01:39:14.000 1986-04-21 2024-10-11 01:39:14 +5955 5955 5956 595.5 1191 5955 1986-04-22 2024-10-11 01:39:15.000 1986-04-22 2024-10-11 01:39:15 +5956 5956 5957 595.6 1191.2 5956 1986-04-23 2024-10-11 01:39:16.000 1986-04-23 2024-10-11 01:39:16 +5957 5957 5958 595.7 1191.4 5957 1986-04-24 2024-10-11 01:39:17.000 1986-04-24 2024-10-11 01:39:17 +5958 5958 5959 595.8 1191.6000000000001 5958 1986-04-25 2024-10-11 01:39:18.000 1986-04-25 2024-10-11 01:39:18 +5959 5959 5960 595.9 1191.8 5959 1986-04-26 2024-10-11 01:39:19.000 1986-04-26 2024-10-11 01:39:19 +5960 5960 5961 596 1192 5960 1986-04-27 2024-10-11 01:39:20.000 1986-04-27 2024-10-11 01:39:20 +5961 5961 5962 596.1 1192.2 5961 1986-04-28 2024-10-11 01:39:21.000 1986-04-28 2024-10-11 01:39:21 +5962 5962 5963 596.2 1192.4 5962 1986-04-29 2024-10-11 01:39:22.000 1986-04-29 2024-10-11 01:39:22 +5963 5963 5964 596.3 1192.6000000000001 5963 1986-04-30 2024-10-11 01:39:23.000 1986-04-30 2024-10-11 01:39:23 +5964 5964 5965 596.4 1192.8 5964 1986-05-01 2024-10-11 01:39:24.000 1986-05-01 2024-10-11 01:39:24 +5965 5965 5966 596.5 1193 5965 1986-05-02 2024-10-11 01:39:25.000 1986-05-02 2024-10-11 01:39:25 +5966 5966 5967 596.6 1193.2 5966 1986-05-03 2024-10-11 01:39:26.000 1986-05-03 2024-10-11 01:39:26 +5967 5967 5968 596.7 1193.4 5967 1986-05-04 2024-10-11 01:39:27.000 1986-05-04 2024-10-11 01:39:27 +5968 5968 5969 596.8 1193.6000000000001 5968 1986-05-05 2024-10-11 01:39:28.000 1986-05-05 2024-10-11 01:39:28 +5969 5969 5970 596.9 1193.8 5969 1986-05-06 2024-10-11 01:39:29.000 1986-05-06 2024-10-11 01:39:29 +5970 5970 5971 597 1194 5970 1986-05-07 2024-10-11 01:39:30.000 1986-05-07 2024-10-11 01:39:30 +5971 5971 5972 597.1 1194.2 5971 1986-05-08 2024-10-11 01:39:31.000 1986-05-08 2024-10-11 01:39:31 +5972 5972 5973 597.2 1194.4 5972 1986-05-09 2024-10-11 01:39:32.000 1986-05-09 2024-10-11 01:39:32 +5973 5973 5974 597.3 1194.6000000000001 5973 1986-05-10 2024-10-11 01:39:33.000 1986-05-10 2024-10-11 01:39:33 +5974 5974 5975 597.4 1194.8 5974 1986-05-11 2024-10-11 01:39:34.000 1986-05-11 2024-10-11 01:39:34 +5975 5975 5976 597.5 1195 5975 1986-05-12 2024-10-11 01:39:35.000 1986-05-12 2024-10-11 01:39:35 +5976 5976 5977 597.6 1195.2 5976 1986-05-13 2024-10-11 01:39:36.000 1986-05-13 2024-10-11 01:39:36 +5977 5977 5978 597.7 1195.4 5977 1986-05-14 2024-10-11 01:39:37.000 1986-05-14 2024-10-11 01:39:37 +5978 5978 5979 597.8 1195.6000000000001 5978 1986-05-15 2024-10-11 01:39:38.000 1986-05-15 2024-10-11 01:39:38 +5979 5979 5980 597.9 1195.8 5979 1986-05-16 2024-10-11 01:39:39.000 1986-05-16 2024-10-11 01:39:39 +5980 5980 5981 598 1196 5980 1986-05-17 2024-10-11 01:39:40.000 1986-05-17 2024-10-11 01:39:40 +5981 5981 5982 598.1 1196.2 5981 1986-05-18 2024-10-11 01:39:41.000 1986-05-18 2024-10-11 01:39:41 +5982 5982 5983 598.2 1196.4 5982 1986-05-19 2024-10-11 01:39:42.000 1986-05-19 2024-10-11 01:39:42 +5983 5983 5984 598.3 1196.6000000000001 5983 1986-05-20 2024-10-11 01:39:43.000 1986-05-20 2024-10-11 01:39:43 +5984 5984 5985 598.4 1196.8 5984 1986-05-21 2024-10-11 01:39:44.000 1986-05-21 2024-10-11 01:39:44 +5985 5985 5986 598.5 1197 5985 1986-05-22 2024-10-11 01:39:45.000 1986-05-22 2024-10-11 01:39:45 +5986 5986 5987 598.6 1197.2 5986 1986-05-23 2024-10-11 01:39:46.000 1986-05-23 2024-10-11 01:39:46 +5987 5987 5988 598.7 1197.4 5987 1986-05-24 2024-10-11 01:39:47.000 1986-05-24 2024-10-11 01:39:47 +5988 5988 5989 598.8 1197.6000000000001 5988 1986-05-25 2024-10-11 01:39:48.000 1986-05-25 2024-10-11 01:39:48 +5989 5989 5990 598.9 1197.8 5989 1986-05-26 2024-10-11 01:39:49.000 1986-05-26 2024-10-11 01:39:49 +5990 5990 5991 599 1198 5990 1986-05-27 2024-10-11 01:39:50.000 1986-05-27 2024-10-11 01:39:50 +5991 5991 5992 599.1 1198.2 5991 1986-05-28 2024-10-11 01:39:51.000 1986-05-28 2024-10-11 01:39:51 +5992 5992 5993 599.2 1198.4 5992 1986-05-29 2024-10-11 01:39:52.000 1986-05-29 2024-10-11 01:39:52 +5993 5993 5994 599.3 1198.6000000000001 5993 1986-05-30 2024-10-11 01:39:53.000 1986-05-30 2024-10-11 01:39:53 +5994 5994 5995 599.4 1198.8 5994 1986-05-31 2024-10-11 01:39:54.000 1986-05-31 2024-10-11 01:39:54 +5995 5995 5996 599.5 1199 5995 1986-06-01 2024-10-11 01:39:55.000 1986-06-01 2024-10-11 01:39:55 +5996 5996 5997 599.6 1199.2 5996 1986-06-02 2024-10-11 01:39:56.000 1986-06-02 2024-10-11 01:39:56 +5997 5997 5998 599.7 1199.4 5997 1986-06-03 2024-10-11 01:39:57.000 1986-06-03 2024-10-11 01:39:57 +5998 5998 5999 599.8 1199.6000000000001 5998 1986-06-04 2024-10-11 01:39:58.000 1986-06-04 2024-10-11 01:39:58 +5999 5999 6000 599.9 1199.8 5999 1986-06-05 2024-10-11 01:39:59.000 1986-06-05 2024-10-11 01:39:59 +6000 6000 6001 600 1200 6000 1986-06-06 2024-10-11 01:40:00.000 1986-06-06 2024-10-11 01:40:00 +6001 6001 6002 600.1 1200.2 6001 1986-06-07 2024-10-11 01:40:01.000 1986-06-07 2024-10-11 01:40:01 +6002 6002 6003 600.2 1200.4 6002 1986-06-08 2024-10-11 01:40:02.000 1986-06-08 2024-10-11 01:40:02 +6003 6003 6004 600.3 1200.6000000000001 6003 1986-06-09 2024-10-11 01:40:03.000 1986-06-09 2024-10-11 01:40:03 +6004 6004 6005 600.4 1200.8 6004 1986-06-10 2024-10-11 01:40:04.000 1986-06-10 2024-10-11 01:40:04 +6005 6005 6006 600.5 1201 6005 1986-06-11 2024-10-11 01:40:05.000 1986-06-11 2024-10-11 01:40:05 +6006 6006 6007 600.6 1201.2 6006 1986-06-12 2024-10-11 01:40:06.000 1986-06-12 2024-10-11 01:40:06 +6007 6007 6008 600.7 1201.4 6007 1986-06-13 2024-10-11 01:40:07.000 1986-06-13 2024-10-11 01:40:07 +6008 6008 6009 600.8 1201.6000000000001 6008 1986-06-14 2024-10-11 01:40:08.000 1986-06-14 2024-10-11 01:40:08 +6009 6009 6010 600.9 1201.8 6009 1986-06-15 2024-10-11 01:40:09.000 1986-06-15 2024-10-11 01:40:09 +6010 6010 6011 601 1202 6010 1986-06-16 2024-10-11 01:40:10.000 1986-06-16 2024-10-11 01:40:10 +6011 6011 6012 601.1 1202.2 6011 1986-06-17 2024-10-11 01:40:11.000 1986-06-17 2024-10-11 01:40:11 +6012 6012 6013 601.2 1202.4 6012 1986-06-18 2024-10-11 01:40:12.000 1986-06-18 2024-10-11 01:40:12 +6013 6013 6014 601.3 1202.6000000000001 6013 1986-06-19 2024-10-11 01:40:13.000 1986-06-19 2024-10-11 01:40:13 +6014 6014 6015 601.4 1202.8 6014 1986-06-20 2024-10-11 01:40:14.000 1986-06-20 2024-10-11 01:40:14 +6015 6015 6016 601.5 1203 6015 1986-06-21 2024-10-11 01:40:15.000 1986-06-21 2024-10-11 01:40:15 +6016 6016 6017 601.6 1203.2 6016 1986-06-22 2024-10-11 01:40:16.000 1986-06-22 2024-10-11 01:40:16 +6017 6017 6018 601.7 1203.4 6017 1986-06-23 2024-10-11 01:40:17.000 1986-06-23 2024-10-11 01:40:17 +6018 6018 6019 601.8 1203.6000000000001 6018 1986-06-24 2024-10-11 01:40:18.000 1986-06-24 2024-10-11 01:40:18 +6019 6019 6020 601.9 1203.8 6019 1986-06-25 2024-10-11 01:40:19.000 1986-06-25 2024-10-11 01:40:19 +6020 6020 6021 602 1204 6020 1986-06-26 2024-10-11 01:40:20.000 1986-06-26 2024-10-11 01:40:20 +6021 6021 6022 602.1 1204.2 6021 1986-06-27 2024-10-11 01:40:21.000 1986-06-27 2024-10-11 01:40:21 +6022 6022 6023 602.2 1204.4 6022 1986-06-28 2024-10-11 01:40:22.000 1986-06-28 2024-10-11 01:40:22 +6023 6023 6024 602.3 1204.6000000000001 6023 1986-06-29 2024-10-11 01:40:23.000 1986-06-29 2024-10-11 01:40:23 +6024 6024 6025 602.4 1204.8 6024 1986-06-30 2024-10-11 01:40:24.000 1986-06-30 2024-10-11 01:40:24 +6025 6025 6026 602.5 1205 6025 1986-07-01 2024-10-11 01:40:25.000 1986-07-01 2024-10-11 01:40:25 +6026 6026 6027 602.6 1205.2 6026 1986-07-02 2024-10-11 01:40:26.000 1986-07-02 2024-10-11 01:40:26 +6027 6027 6028 602.7 1205.4 6027 1986-07-03 2024-10-11 01:40:27.000 1986-07-03 2024-10-11 01:40:27 +6028 6028 6029 602.8 1205.6000000000001 6028 1986-07-04 2024-10-11 01:40:28.000 1986-07-04 2024-10-11 01:40:28 +6029 6029 6030 602.9 1205.8 6029 1986-07-05 2024-10-11 01:40:29.000 1986-07-05 2024-10-11 01:40:29 +6030 6030 6031 603 1206 6030 1986-07-06 2024-10-11 01:40:30.000 1986-07-06 2024-10-11 01:40:30 +6031 6031 6032 603.1 1206.2 6031 1986-07-07 2024-10-11 01:40:31.000 1986-07-07 2024-10-11 01:40:31 +6032 6032 6033 603.2 1206.4 6032 1986-07-08 2024-10-11 01:40:32.000 1986-07-08 2024-10-11 01:40:32 +6033 6033 6034 603.3 1206.6000000000001 6033 1986-07-09 2024-10-11 01:40:33.000 1986-07-09 2024-10-11 01:40:33 +6034 6034 6035 603.4 1206.8 6034 1986-07-10 2024-10-11 01:40:34.000 1986-07-10 2024-10-11 01:40:34 +6035 6035 6036 603.5 1207 6035 1986-07-11 2024-10-11 01:40:35.000 1986-07-11 2024-10-11 01:40:35 +6036 6036 6037 603.6 1207.2 6036 1986-07-12 2024-10-11 01:40:36.000 1986-07-12 2024-10-11 01:40:36 +6037 6037 6038 603.7 1207.4 6037 1986-07-13 2024-10-11 01:40:37.000 1986-07-13 2024-10-11 01:40:37 +6038 6038 6039 603.8 1207.6000000000001 6038 1986-07-14 2024-10-11 01:40:38.000 1986-07-14 2024-10-11 01:40:38 +6039 6039 6040 603.9 1207.8 6039 1986-07-15 2024-10-11 01:40:39.000 1986-07-15 2024-10-11 01:40:39 +6040 6040 6041 604 1208 6040 1986-07-16 2024-10-11 01:40:40.000 1986-07-16 2024-10-11 01:40:40 +6041 6041 6042 604.1 1208.2 6041 1986-07-17 2024-10-11 01:40:41.000 1986-07-17 2024-10-11 01:40:41 +6042 6042 6043 604.2 1208.4 6042 1986-07-18 2024-10-11 01:40:42.000 1986-07-18 2024-10-11 01:40:42 +6043 6043 6044 604.3 1208.6000000000001 6043 1986-07-19 2024-10-11 01:40:43.000 1986-07-19 2024-10-11 01:40:43 +6044 6044 6045 604.4 1208.8 6044 1986-07-20 2024-10-11 01:40:44.000 1986-07-20 2024-10-11 01:40:44 +6045 6045 6046 604.5 1209 6045 1986-07-21 2024-10-11 01:40:45.000 1986-07-21 2024-10-11 01:40:45 +6046 6046 6047 604.6 1209.2 6046 1986-07-22 2024-10-11 01:40:46.000 1986-07-22 2024-10-11 01:40:46 +6047 6047 6048 604.7 1209.4 6047 1986-07-23 2024-10-11 01:40:47.000 1986-07-23 2024-10-11 01:40:47 +6048 6048 6049 604.8 1209.6000000000001 6048 1986-07-24 2024-10-11 01:40:48.000 1986-07-24 2024-10-11 01:40:48 +6049 6049 6050 604.9 1209.8 6049 1986-07-25 2024-10-11 01:40:49.000 1986-07-25 2024-10-11 01:40:49 +6050 6050 6051 605 1210 6050 1986-07-26 2024-10-11 01:40:50.000 1986-07-26 2024-10-11 01:40:50 +6051 6051 6052 605.1 1210.2 6051 1986-07-27 2024-10-11 01:40:51.000 1986-07-27 2024-10-11 01:40:51 +6052 6052 6053 605.2 1210.4 6052 1986-07-28 2024-10-11 01:40:52.000 1986-07-28 2024-10-11 01:40:52 +6053 6053 6054 605.3 1210.6000000000001 6053 1986-07-29 2024-10-11 01:40:53.000 1986-07-29 2024-10-11 01:40:53 +6054 6054 6055 605.4 1210.8 6054 1986-07-30 2024-10-11 01:40:54.000 1986-07-30 2024-10-11 01:40:54 +6055 6055 6056 605.5 1211 6055 1986-07-31 2024-10-11 01:40:55.000 1986-07-31 2024-10-11 01:40:55 +6056 6056 6057 605.6 1211.2 6056 1986-08-01 2024-10-11 01:40:56.000 1986-08-01 2024-10-11 01:40:56 +6057 6057 6058 605.7 1211.4 6057 1986-08-02 2024-10-11 01:40:57.000 1986-08-02 2024-10-11 01:40:57 +6058 6058 6059 605.8 1211.6000000000001 6058 1986-08-03 2024-10-11 01:40:58.000 1986-08-03 2024-10-11 01:40:58 +6059 6059 6060 605.9 1211.8 6059 1986-08-04 2024-10-11 01:40:59.000 1986-08-04 2024-10-11 01:40:59 +6060 6060 6061 606 1212 6060 1986-08-05 2024-10-11 01:41:00.000 1986-08-05 2024-10-11 01:41:00 +6061 6061 6062 606.1 1212.2 6061 1986-08-06 2024-10-11 01:41:01.000 1986-08-06 2024-10-11 01:41:01 +6062 6062 6063 606.2 1212.4 6062 1986-08-07 2024-10-11 01:41:02.000 1986-08-07 2024-10-11 01:41:02 +6063 6063 6064 606.3 1212.6000000000001 6063 1986-08-08 2024-10-11 01:41:03.000 1986-08-08 2024-10-11 01:41:03 +6064 6064 6065 606.4 1212.8 6064 1986-08-09 2024-10-11 01:41:04.000 1986-08-09 2024-10-11 01:41:04 +6065 6065 6066 606.5 1213 6065 1986-08-10 2024-10-11 01:41:05.000 1986-08-10 2024-10-11 01:41:05 +6066 6066 6067 606.6 1213.2 6066 1986-08-11 2024-10-11 01:41:06.000 1986-08-11 2024-10-11 01:41:06 +6067 6067 6068 606.7 1213.4 6067 1986-08-12 2024-10-11 01:41:07.000 1986-08-12 2024-10-11 01:41:07 +6068 6068 6069 606.8 1213.6000000000001 6068 1986-08-13 2024-10-11 01:41:08.000 1986-08-13 2024-10-11 01:41:08 +6069 6069 6070 606.9 1213.8 6069 1986-08-14 2024-10-11 01:41:09.000 1986-08-14 2024-10-11 01:41:09 +6070 6070 6071 607 1214 6070 1986-08-15 2024-10-11 01:41:10.000 1986-08-15 2024-10-11 01:41:10 +6071 6071 6072 607.1 1214.2 6071 1986-08-16 2024-10-11 01:41:11.000 1986-08-16 2024-10-11 01:41:11 +6072 6072 6073 607.2 1214.4 6072 1986-08-17 2024-10-11 01:41:12.000 1986-08-17 2024-10-11 01:41:12 +6073 6073 6074 607.3 1214.6000000000001 6073 1986-08-18 2024-10-11 01:41:13.000 1986-08-18 2024-10-11 01:41:13 +6074 6074 6075 607.4 1214.8 6074 1986-08-19 2024-10-11 01:41:14.000 1986-08-19 2024-10-11 01:41:14 +6075 6075 6076 607.5 1215 6075 1986-08-20 2024-10-11 01:41:15.000 1986-08-20 2024-10-11 01:41:15 +6076 6076 6077 607.6 1215.2 6076 1986-08-21 2024-10-11 01:41:16.000 1986-08-21 2024-10-11 01:41:16 +6077 6077 6078 607.7 1215.4 6077 1986-08-22 2024-10-11 01:41:17.000 1986-08-22 2024-10-11 01:41:17 +6078 6078 6079 607.8 1215.6000000000001 6078 1986-08-23 2024-10-11 01:41:18.000 1986-08-23 2024-10-11 01:41:18 +6079 6079 6080 607.9 1215.8 6079 1986-08-24 2024-10-11 01:41:19.000 1986-08-24 2024-10-11 01:41:19 +6080 6080 6081 608 1216 6080 1986-08-25 2024-10-11 01:41:20.000 1986-08-25 2024-10-11 01:41:20 +6081 6081 6082 608.1 1216.2 6081 1986-08-26 2024-10-11 01:41:21.000 1986-08-26 2024-10-11 01:41:21 +6082 6082 6083 608.2 1216.4 6082 1986-08-27 2024-10-11 01:41:22.000 1986-08-27 2024-10-11 01:41:22 +6083 6083 6084 608.3 1216.6000000000001 6083 1986-08-28 2024-10-11 01:41:23.000 1986-08-28 2024-10-11 01:41:23 +6084 6084 6085 608.4 1216.8 6084 1986-08-29 2024-10-11 01:41:24.000 1986-08-29 2024-10-11 01:41:24 +6085 6085 6086 608.5 1217 6085 1986-08-30 2024-10-11 01:41:25.000 1986-08-30 2024-10-11 01:41:25 +6086 6086 6087 608.6 1217.2 6086 1986-08-31 2024-10-11 01:41:26.000 1986-08-31 2024-10-11 01:41:26 +6087 6087 6088 608.7 1217.4 6087 1986-09-01 2024-10-11 01:41:27.000 1986-09-01 2024-10-11 01:41:27 +6088 6088 6089 608.8 1217.6000000000001 6088 1986-09-02 2024-10-11 01:41:28.000 1986-09-02 2024-10-11 01:41:28 +6089 6089 6090 608.9 1217.8 6089 1986-09-03 2024-10-11 01:41:29.000 1986-09-03 2024-10-11 01:41:29 +6090 6090 6091 609 1218 6090 1986-09-04 2024-10-11 01:41:30.000 1986-09-04 2024-10-11 01:41:30 +6091 6091 6092 609.1 1218.2 6091 1986-09-05 2024-10-11 01:41:31.000 1986-09-05 2024-10-11 01:41:31 +6092 6092 6093 609.2 1218.4 6092 1986-09-06 2024-10-11 01:41:32.000 1986-09-06 2024-10-11 01:41:32 +6093 6093 6094 609.3 1218.6000000000001 6093 1986-09-07 2024-10-11 01:41:33.000 1986-09-07 2024-10-11 01:41:33 +6094 6094 6095 609.4 1218.8 6094 1986-09-08 2024-10-11 01:41:34.000 1986-09-08 2024-10-11 01:41:34 +6095 6095 6096 609.5 1219 6095 1986-09-09 2024-10-11 01:41:35.000 1986-09-09 2024-10-11 01:41:35 +6096 6096 6097 609.6 1219.2 6096 1986-09-10 2024-10-11 01:41:36.000 1986-09-10 2024-10-11 01:41:36 +6097 6097 6098 609.7 1219.4 6097 1986-09-11 2024-10-11 01:41:37.000 1986-09-11 2024-10-11 01:41:37 +6098 6098 6099 609.8 1219.6000000000001 6098 1986-09-12 2024-10-11 01:41:38.000 1986-09-12 2024-10-11 01:41:38 +6099 6099 6100 609.9 1219.8 6099 1986-09-13 2024-10-11 01:41:39.000 1986-09-13 2024-10-11 01:41:39 +6100 6100 6101 610 1220 6100 1986-09-14 2024-10-11 01:41:40.000 1986-09-14 2024-10-11 01:41:40 +6101 6101 6102 610.1 1220.2 6101 1986-09-15 2024-10-11 01:41:41.000 1986-09-15 2024-10-11 01:41:41 +6102 6102 6103 610.2 1220.4 6102 1986-09-16 2024-10-11 01:41:42.000 1986-09-16 2024-10-11 01:41:42 +6103 6103 6104 610.3 1220.6000000000001 6103 1986-09-17 2024-10-11 01:41:43.000 1986-09-17 2024-10-11 01:41:43 +6104 6104 6105 610.4 1220.8 6104 1986-09-18 2024-10-11 01:41:44.000 1986-09-18 2024-10-11 01:41:44 +6105 6105 6106 610.5 1221 6105 1986-09-19 2024-10-11 01:41:45.000 1986-09-19 2024-10-11 01:41:45 +6106 6106 6107 610.6 1221.2 6106 1986-09-20 2024-10-11 01:41:46.000 1986-09-20 2024-10-11 01:41:46 +6107 6107 6108 610.7 1221.4 6107 1986-09-21 2024-10-11 01:41:47.000 1986-09-21 2024-10-11 01:41:47 +6108 6108 6109 610.8 1221.6000000000001 6108 1986-09-22 2024-10-11 01:41:48.000 1986-09-22 2024-10-11 01:41:48 +6109 6109 6110 610.9 1221.8 6109 1986-09-23 2024-10-11 01:41:49.000 1986-09-23 2024-10-11 01:41:49 +6110 6110 6111 611 1222 6110 1986-09-24 2024-10-11 01:41:50.000 1986-09-24 2024-10-11 01:41:50 +6111 6111 6112 611.1 1222.2 6111 1986-09-25 2024-10-11 01:41:51.000 1986-09-25 2024-10-11 01:41:51 +6112 6112 6113 611.2 1222.4 6112 1986-09-26 2024-10-11 01:41:52.000 1986-09-26 2024-10-11 01:41:52 +6113 6113 6114 611.3 1222.6000000000001 6113 1986-09-27 2024-10-11 01:41:53.000 1986-09-27 2024-10-11 01:41:53 +6114 6114 6115 611.4 1222.8 6114 1986-09-28 2024-10-11 01:41:54.000 1986-09-28 2024-10-11 01:41:54 +6115 6115 6116 611.5 1223 6115 1986-09-29 2024-10-11 01:41:55.000 1986-09-29 2024-10-11 01:41:55 +6116 6116 6117 611.6 1223.2 6116 1986-09-30 2024-10-11 01:41:56.000 1986-09-30 2024-10-11 01:41:56 +6117 6117 6118 611.7 1223.4 6117 1986-10-01 2024-10-11 01:41:57.000 1986-10-01 2024-10-11 01:41:57 +6118 6118 6119 611.8 1223.6000000000001 6118 1986-10-02 2024-10-11 01:41:58.000 1986-10-02 2024-10-11 01:41:58 +6119 6119 6120 611.9 1223.8 6119 1986-10-03 2024-10-11 01:41:59.000 1986-10-03 2024-10-11 01:41:59 +6120 6120 6121 612 1224 6120 1986-10-04 2024-10-11 01:42:00.000 1986-10-04 2024-10-11 01:42:00 +6121 6121 6122 612.1 1224.2 6121 1986-10-05 2024-10-11 01:42:01.000 1986-10-05 2024-10-11 01:42:01 +6122 6122 6123 612.2 1224.4 6122 1986-10-06 2024-10-11 01:42:02.000 1986-10-06 2024-10-11 01:42:02 +6123 6123 6124 612.3 1224.6000000000001 6123 1986-10-07 2024-10-11 01:42:03.000 1986-10-07 2024-10-11 01:42:03 +6124 6124 6125 612.4 1224.8 6124 1986-10-08 2024-10-11 01:42:04.000 1986-10-08 2024-10-11 01:42:04 +6125 6125 6126 612.5 1225 6125 1986-10-09 2024-10-11 01:42:05.000 1986-10-09 2024-10-11 01:42:05 +6126 6126 6127 612.6 1225.2 6126 1986-10-10 2024-10-11 01:42:06.000 1986-10-10 2024-10-11 01:42:06 +6127 6127 6128 612.7 1225.4 6127 1986-10-11 2024-10-11 01:42:07.000 1986-10-11 2024-10-11 01:42:07 +6128 6128 6129 612.8 1225.6000000000001 6128 1986-10-12 2024-10-11 01:42:08.000 1986-10-12 2024-10-11 01:42:08 +6129 6129 6130 612.9 1225.8 6129 1986-10-13 2024-10-11 01:42:09.000 1986-10-13 2024-10-11 01:42:09 +6130 6130 6131 613 1226 6130 1986-10-14 2024-10-11 01:42:10.000 1986-10-14 2024-10-11 01:42:10 +6131 6131 6132 613.1 1226.2 6131 1986-10-15 2024-10-11 01:42:11.000 1986-10-15 2024-10-11 01:42:11 +6132 6132 6133 613.2 1226.4 6132 1986-10-16 2024-10-11 01:42:12.000 1986-10-16 2024-10-11 01:42:12 +6133 6133 6134 613.3 1226.6000000000001 6133 1986-10-17 2024-10-11 01:42:13.000 1986-10-17 2024-10-11 01:42:13 +6134 6134 6135 613.4 1226.8 6134 1986-10-18 2024-10-11 01:42:14.000 1986-10-18 2024-10-11 01:42:14 +6135 6135 6136 613.5 1227 6135 1986-10-19 2024-10-11 01:42:15.000 1986-10-19 2024-10-11 01:42:15 +6136 6136 6137 613.6 1227.2 6136 1986-10-20 2024-10-11 01:42:16.000 1986-10-20 2024-10-11 01:42:16 +6137 6137 6138 613.7 1227.4 6137 1986-10-21 2024-10-11 01:42:17.000 1986-10-21 2024-10-11 01:42:17 +6138 6138 6139 613.8 1227.6000000000001 6138 1986-10-22 2024-10-11 01:42:18.000 1986-10-22 2024-10-11 01:42:18 +6139 6139 6140 613.9 1227.8 6139 1986-10-23 2024-10-11 01:42:19.000 1986-10-23 2024-10-11 01:42:19 +6140 6140 6141 614 1228 6140 1986-10-24 2024-10-11 01:42:20.000 1986-10-24 2024-10-11 01:42:20 +6141 6141 6142 614.1 1228.2 6141 1986-10-25 2024-10-11 01:42:21.000 1986-10-25 2024-10-11 01:42:21 +6142 6142 6143 614.2 1228.4 6142 1986-10-26 2024-10-11 01:42:22.000 1986-10-26 2024-10-11 01:42:22 +6143 6143 6144 614.3 1228.6000000000001 6143 1986-10-27 2024-10-11 01:42:23.000 1986-10-27 2024-10-11 01:42:23 +6144 6144 6145 614.4 1228.8000000000002 6144 1986-10-28 2024-10-11 01:42:24.000 1986-10-28 2024-10-11 01:42:24 +6145 6145 6146 614.5 1229 6145 1986-10-29 2024-10-11 01:42:25.000 1986-10-29 2024-10-11 01:42:25 +6146 6146 6147 614.6 1229.2 6146 1986-10-30 2024-10-11 01:42:26.000 1986-10-30 2024-10-11 01:42:26 +6147 6147 6148 614.7 1229.4 6147 1986-10-31 2024-10-11 01:42:27.000 1986-10-31 2024-10-11 01:42:27 +6148 6148 6149 614.8 1229.6000000000001 6148 1986-11-01 2024-10-11 01:42:28.000 1986-11-01 2024-10-11 01:42:28 +6149 6149 6150 614.9 1229.8000000000002 6149 1986-11-02 2024-10-11 01:42:29.000 1986-11-02 2024-10-11 01:42:29 +6150 6150 6151 615 1230 6150 1986-11-03 2024-10-11 01:42:30.000 1986-11-03 2024-10-11 01:42:30 +6151 6151 6152 615.1 1230.2 6151 1986-11-04 2024-10-11 01:42:31.000 1986-11-04 2024-10-11 01:42:31 +6152 6152 6153 615.2 1230.4 6152 1986-11-05 2024-10-11 01:42:32.000 1986-11-05 2024-10-11 01:42:32 +6153 6153 6154 615.3 1230.6000000000001 6153 1986-11-06 2024-10-11 01:42:33.000 1986-11-06 2024-10-11 01:42:33 +6154 6154 6155 615.4 1230.8000000000002 6154 1986-11-07 2024-10-11 01:42:34.000 1986-11-07 2024-10-11 01:42:34 +6155 6155 6156 615.5 1231 6155 1986-11-08 2024-10-11 01:42:35.000 1986-11-08 2024-10-11 01:42:35 +6156 6156 6157 615.6 1231.2 6156 1986-11-09 2024-10-11 01:42:36.000 1986-11-09 2024-10-11 01:42:36 +6157 6157 6158 615.7 1231.4 6157 1986-11-10 2024-10-11 01:42:37.000 1986-11-10 2024-10-11 01:42:37 +6158 6158 6159 615.8 1231.6000000000001 6158 1986-11-11 2024-10-11 01:42:38.000 1986-11-11 2024-10-11 01:42:38 +6159 6159 6160 615.9 1231.8000000000002 6159 1986-11-12 2024-10-11 01:42:39.000 1986-11-12 2024-10-11 01:42:39 +6160 6160 6161 616 1232 6160 1986-11-13 2024-10-11 01:42:40.000 1986-11-13 2024-10-11 01:42:40 +6161 6161 6162 616.1 1232.2 6161 1986-11-14 2024-10-11 01:42:41.000 1986-11-14 2024-10-11 01:42:41 +6162 6162 6163 616.2 1232.4 6162 1986-11-15 2024-10-11 01:42:42.000 1986-11-15 2024-10-11 01:42:42 +6163 6163 6164 616.3 1232.6000000000001 6163 1986-11-16 2024-10-11 01:42:43.000 1986-11-16 2024-10-11 01:42:43 +6164 6164 6165 616.4 1232.8000000000002 6164 1986-11-17 2024-10-11 01:42:44.000 1986-11-17 2024-10-11 01:42:44 +6165 6165 6166 616.5 1233 6165 1986-11-18 2024-10-11 01:42:45.000 1986-11-18 2024-10-11 01:42:45 +6166 6166 6167 616.6 1233.2 6166 1986-11-19 2024-10-11 01:42:46.000 1986-11-19 2024-10-11 01:42:46 +6167 6167 6168 616.7 1233.4 6167 1986-11-20 2024-10-11 01:42:47.000 1986-11-20 2024-10-11 01:42:47 +6168 6168 6169 616.8 1233.6000000000001 6168 1986-11-21 2024-10-11 01:42:48.000 1986-11-21 2024-10-11 01:42:48 +6169 6169 6170 616.9 1233.8000000000002 6169 1986-11-22 2024-10-11 01:42:49.000 1986-11-22 2024-10-11 01:42:49 +6170 6170 6171 617 1234 6170 1986-11-23 2024-10-11 01:42:50.000 1986-11-23 2024-10-11 01:42:50 +6171 6171 6172 617.1 1234.2 6171 1986-11-24 2024-10-11 01:42:51.000 1986-11-24 2024-10-11 01:42:51 +6172 6172 6173 617.2 1234.4 6172 1986-11-25 2024-10-11 01:42:52.000 1986-11-25 2024-10-11 01:42:52 +6173 6173 6174 617.3 1234.6000000000001 6173 1986-11-26 2024-10-11 01:42:53.000 1986-11-26 2024-10-11 01:42:53 +6174 6174 6175 617.4 1234.8000000000002 6174 1986-11-27 2024-10-11 01:42:54.000 1986-11-27 2024-10-11 01:42:54 +6175 6175 6176 617.5 1235 6175 1986-11-28 2024-10-11 01:42:55.000 1986-11-28 2024-10-11 01:42:55 +6176 6176 6177 617.6 1235.2 6176 1986-11-29 2024-10-11 01:42:56.000 1986-11-29 2024-10-11 01:42:56 +6177 6177 6178 617.7 1235.4 6177 1986-11-30 2024-10-11 01:42:57.000 1986-11-30 2024-10-11 01:42:57 +6178 6178 6179 617.8 1235.6000000000001 6178 1986-12-01 2024-10-11 01:42:58.000 1986-12-01 2024-10-11 01:42:58 +6179 6179 6180 617.9 1235.8000000000002 6179 1986-12-02 2024-10-11 01:42:59.000 1986-12-02 2024-10-11 01:42:59 +6180 6180 6181 618 1236 6180 1986-12-03 2024-10-11 01:43:00.000 1986-12-03 2024-10-11 01:43:00 +6181 6181 6182 618.1 1236.2 6181 1986-12-04 2024-10-11 01:43:01.000 1986-12-04 2024-10-11 01:43:01 +6182 6182 6183 618.2 1236.4 6182 1986-12-05 2024-10-11 01:43:02.000 1986-12-05 2024-10-11 01:43:02 +6183 6183 6184 618.3 1236.6000000000001 6183 1986-12-06 2024-10-11 01:43:03.000 1986-12-06 2024-10-11 01:43:03 +6184 6184 6185 618.4 1236.8000000000002 6184 1986-12-07 2024-10-11 01:43:04.000 1986-12-07 2024-10-11 01:43:04 +6185 6185 6186 618.5 1237 6185 1986-12-08 2024-10-11 01:43:05.000 1986-12-08 2024-10-11 01:43:05 +6186 6186 6187 618.6 1237.2 6186 1986-12-09 2024-10-11 01:43:06.000 1986-12-09 2024-10-11 01:43:06 +6187 6187 6188 618.7 1237.4 6187 1986-12-10 2024-10-11 01:43:07.000 1986-12-10 2024-10-11 01:43:07 +6188 6188 6189 618.8 1237.6000000000001 6188 1986-12-11 2024-10-11 01:43:08.000 1986-12-11 2024-10-11 01:43:08 +6189 6189 6190 618.9 1237.8000000000002 6189 1986-12-12 2024-10-11 01:43:09.000 1986-12-12 2024-10-11 01:43:09 +6190 6190 6191 619 1238 6190 1986-12-13 2024-10-11 01:43:10.000 1986-12-13 2024-10-11 01:43:10 +6191 6191 6192 619.1 1238.2 6191 1986-12-14 2024-10-11 01:43:11.000 1986-12-14 2024-10-11 01:43:11 +6192 6192 6193 619.2 1238.4 6192 1986-12-15 2024-10-11 01:43:12.000 1986-12-15 2024-10-11 01:43:12 +6193 6193 6194 619.3 1238.6000000000001 6193 1986-12-16 2024-10-11 01:43:13.000 1986-12-16 2024-10-11 01:43:13 +6194 6194 6195 619.4 1238.8000000000002 6194 1986-12-17 2024-10-11 01:43:14.000 1986-12-17 2024-10-11 01:43:14 +6195 6195 6196 619.5 1239 6195 1986-12-18 2024-10-11 01:43:15.000 1986-12-18 2024-10-11 01:43:15 +6196 6196 6197 619.6 1239.2 6196 1986-12-19 2024-10-11 01:43:16.000 1986-12-19 2024-10-11 01:43:16 +6197 6197 6198 619.7 1239.4 6197 1986-12-20 2024-10-11 01:43:17.000 1986-12-20 2024-10-11 01:43:17 +6198 6198 6199 619.8 1239.6000000000001 6198 1986-12-21 2024-10-11 01:43:18.000 1986-12-21 2024-10-11 01:43:18 +6199 6199 6200 619.9 1239.8000000000002 6199 1986-12-22 2024-10-11 01:43:19.000 1986-12-22 2024-10-11 01:43:19 +6200 6200 6201 620 1240 6200 1986-12-23 2024-10-11 01:43:20.000 1986-12-23 2024-10-11 01:43:20 +6201 6201 6202 620.1 1240.2 6201 1986-12-24 2024-10-11 01:43:21.000 1986-12-24 2024-10-11 01:43:21 +6202 6202 6203 620.2 1240.4 6202 1986-12-25 2024-10-11 01:43:22.000 1986-12-25 2024-10-11 01:43:22 +6203 6203 6204 620.3 1240.6000000000001 6203 1986-12-26 2024-10-11 01:43:23.000 1986-12-26 2024-10-11 01:43:23 +6204 6204 6205 620.4 1240.8000000000002 6204 1986-12-27 2024-10-11 01:43:24.000 1986-12-27 2024-10-11 01:43:24 +6205 6205 6206 620.5 1241 6205 1986-12-28 2024-10-11 01:43:25.000 1986-12-28 2024-10-11 01:43:25 +6206 6206 6207 620.6 1241.2 6206 1986-12-29 2024-10-11 01:43:26.000 1986-12-29 2024-10-11 01:43:26 +6207 6207 6208 620.7 1241.4 6207 1986-12-30 2024-10-11 01:43:27.000 1986-12-30 2024-10-11 01:43:27 +6208 6208 6209 620.8 1241.6000000000001 6208 1986-12-31 2024-10-11 01:43:28.000 1986-12-31 2024-10-11 01:43:28 +6209 6209 6210 620.9 1241.8000000000002 6209 1987-01-01 2024-10-11 01:43:29.000 1987-01-01 2024-10-11 01:43:29 +6210 6210 6211 621 1242 6210 1987-01-02 2024-10-11 01:43:30.000 1987-01-02 2024-10-11 01:43:30 +6211 6211 6212 621.1 1242.2 6211 1987-01-03 2024-10-11 01:43:31.000 1987-01-03 2024-10-11 01:43:31 +6212 6212 6213 621.2 1242.4 6212 1987-01-04 2024-10-11 01:43:32.000 1987-01-04 2024-10-11 01:43:32 +6213 6213 6214 621.3 1242.6000000000001 6213 1987-01-05 2024-10-11 01:43:33.000 1987-01-05 2024-10-11 01:43:33 +6214 6214 6215 621.4 1242.8000000000002 6214 1987-01-06 2024-10-11 01:43:34.000 1987-01-06 2024-10-11 01:43:34 +6215 6215 6216 621.5 1243 6215 1987-01-07 2024-10-11 01:43:35.000 1987-01-07 2024-10-11 01:43:35 +6216 6216 6217 621.6 1243.2 6216 1987-01-08 2024-10-11 01:43:36.000 1987-01-08 2024-10-11 01:43:36 +6217 6217 6218 621.7 1243.4 6217 1987-01-09 2024-10-11 01:43:37.000 1987-01-09 2024-10-11 01:43:37 +6218 6218 6219 621.8 1243.6000000000001 6218 1987-01-10 2024-10-11 01:43:38.000 1987-01-10 2024-10-11 01:43:38 +6219 6219 6220 621.9 1243.8000000000002 6219 1987-01-11 2024-10-11 01:43:39.000 1987-01-11 2024-10-11 01:43:39 +6220 6220 6221 622 1244 6220 1987-01-12 2024-10-11 01:43:40.000 1987-01-12 2024-10-11 01:43:40 +6221 6221 6222 622.1 1244.2 6221 1987-01-13 2024-10-11 01:43:41.000 1987-01-13 2024-10-11 01:43:41 +6222 6222 6223 622.2 1244.4 6222 1987-01-14 2024-10-11 01:43:42.000 1987-01-14 2024-10-11 01:43:42 +6223 6223 6224 622.3 1244.6000000000001 6223 1987-01-15 2024-10-11 01:43:43.000 1987-01-15 2024-10-11 01:43:43 +6224 6224 6225 622.4 1244.8000000000002 6224 1987-01-16 2024-10-11 01:43:44.000 1987-01-16 2024-10-11 01:43:44 +6225 6225 6226 622.5 1245 6225 1987-01-17 2024-10-11 01:43:45.000 1987-01-17 2024-10-11 01:43:45 +6226 6226 6227 622.6 1245.2 6226 1987-01-18 2024-10-11 01:43:46.000 1987-01-18 2024-10-11 01:43:46 +6227 6227 6228 622.7 1245.4 6227 1987-01-19 2024-10-11 01:43:47.000 1987-01-19 2024-10-11 01:43:47 +6228 6228 6229 622.8 1245.6000000000001 6228 1987-01-20 2024-10-11 01:43:48.000 1987-01-20 2024-10-11 01:43:48 +6229 6229 6230 622.9 1245.8000000000002 6229 1987-01-21 2024-10-11 01:43:49.000 1987-01-21 2024-10-11 01:43:49 +6230 6230 6231 623 1246 6230 1987-01-22 2024-10-11 01:43:50.000 1987-01-22 2024-10-11 01:43:50 +6231 6231 6232 623.1 1246.2 6231 1987-01-23 2024-10-11 01:43:51.000 1987-01-23 2024-10-11 01:43:51 +6232 6232 6233 623.2 1246.4 6232 1987-01-24 2024-10-11 01:43:52.000 1987-01-24 2024-10-11 01:43:52 +6233 6233 6234 623.3 1246.6000000000001 6233 1987-01-25 2024-10-11 01:43:53.000 1987-01-25 2024-10-11 01:43:53 +6234 6234 6235 623.4 1246.8000000000002 6234 1987-01-26 2024-10-11 01:43:54.000 1987-01-26 2024-10-11 01:43:54 +6235 6235 6236 623.5 1247 6235 1987-01-27 2024-10-11 01:43:55.000 1987-01-27 2024-10-11 01:43:55 +6236 6236 6237 623.6 1247.2 6236 1987-01-28 2024-10-11 01:43:56.000 1987-01-28 2024-10-11 01:43:56 +6237 6237 6238 623.7 1247.4 6237 1987-01-29 2024-10-11 01:43:57.000 1987-01-29 2024-10-11 01:43:57 +6238 6238 6239 623.8 1247.6000000000001 6238 1987-01-30 2024-10-11 01:43:58.000 1987-01-30 2024-10-11 01:43:58 +6239 6239 6240 623.9 1247.8000000000002 6239 1987-01-31 2024-10-11 01:43:59.000 1987-01-31 2024-10-11 01:43:59 +6240 6240 6241 624 1248 6240 1987-02-01 2024-10-11 01:44:00.000 1987-02-01 2024-10-11 01:44:00 +6241 6241 6242 624.1 1248.2 6241 1987-02-02 2024-10-11 01:44:01.000 1987-02-02 2024-10-11 01:44:01 +6242 6242 6243 624.2 1248.4 6242 1987-02-03 2024-10-11 01:44:02.000 1987-02-03 2024-10-11 01:44:02 +6243 6243 6244 624.3 1248.6000000000001 6243 1987-02-04 2024-10-11 01:44:03.000 1987-02-04 2024-10-11 01:44:03 +6244 6244 6245 624.4 1248.8000000000002 6244 1987-02-05 2024-10-11 01:44:04.000 1987-02-05 2024-10-11 01:44:04 +6245 6245 6246 624.5 1249 6245 1987-02-06 2024-10-11 01:44:05.000 1987-02-06 2024-10-11 01:44:05 +6246 6246 6247 624.6 1249.2 6246 1987-02-07 2024-10-11 01:44:06.000 1987-02-07 2024-10-11 01:44:06 +6247 6247 6248 624.7 1249.4 6247 1987-02-08 2024-10-11 01:44:07.000 1987-02-08 2024-10-11 01:44:07 +6248 6248 6249 624.8 1249.6000000000001 6248 1987-02-09 2024-10-11 01:44:08.000 1987-02-09 2024-10-11 01:44:08 +6249 6249 6250 624.9 1249.8000000000002 6249 1987-02-10 2024-10-11 01:44:09.000 1987-02-10 2024-10-11 01:44:09 +6250 6250 6251 625 1250 6250 1987-02-11 2024-10-11 01:44:10.000 1987-02-11 2024-10-11 01:44:10 +6251 6251 6252 625.1 1250.2 6251 1987-02-12 2024-10-11 01:44:11.000 1987-02-12 2024-10-11 01:44:11 +6252 6252 6253 625.2 1250.4 6252 1987-02-13 2024-10-11 01:44:12.000 1987-02-13 2024-10-11 01:44:12 +6253 6253 6254 625.3 1250.6000000000001 6253 1987-02-14 2024-10-11 01:44:13.000 1987-02-14 2024-10-11 01:44:13 +6254 6254 6255 625.4 1250.8000000000002 6254 1987-02-15 2024-10-11 01:44:14.000 1987-02-15 2024-10-11 01:44:14 +6255 6255 6256 625.5 1251 6255 1987-02-16 2024-10-11 01:44:15.000 1987-02-16 2024-10-11 01:44:15 +6256 6256 6257 625.6 1251.2 6256 1987-02-17 2024-10-11 01:44:16.000 1987-02-17 2024-10-11 01:44:16 +6257 6257 6258 625.7 1251.4 6257 1987-02-18 2024-10-11 01:44:17.000 1987-02-18 2024-10-11 01:44:17 +6258 6258 6259 625.8 1251.6000000000001 6258 1987-02-19 2024-10-11 01:44:18.000 1987-02-19 2024-10-11 01:44:18 +6259 6259 6260 625.9 1251.8000000000002 6259 1987-02-20 2024-10-11 01:44:19.000 1987-02-20 2024-10-11 01:44:19 +6260 6260 6261 626 1252 6260 1987-02-21 2024-10-11 01:44:20.000 1987-02-21 2024-10-11 01:44:20 +6261 6261 6262 626.1 1252.2 6261 1987-02-22 2024-10-11 01:44:21.000 1987-02-22 2024-10-11 01:44:21 +6262 6262 6263 626.2 1252.4 6262 1987-02-23 2024-10-11 01:44:22.000 1987-02-23 2024-10-11 01:44:22 +6263 6263 6264 626.3 1252.6000000000001 6263 1987-02-24 2024-10-11 01:44:23.000 1987-02-24 2024-10-11 01:44:23 +6264 6264 6265 626.4 1252.8000000000002 6264 1987-02-25 2024-10-11 01:44:24.000 1987-02-25 2024-10-11 01:44:24 +6265 6265 6266 626.5 1253 6265 1987-02-26 2024-10-11 01:44:25.000 1987-02-26 2024-10-11 01:44:25 +6266 6266 6267 626.6 1253.2 6266 1987-02-27 2024-10-11 01:44:26.000 1987-02-27 2024-10-11 01:44:26 +6267 6267 6268 626.7 1253.4 6267 1987-02-28 2024-10-11 01:44:27.000 1987-02-28 2024-10-11 01:44:27 +6268 6268 6269 626.8 1253.6000000000001 6268 1987-03-01 2024-10-11 01:44:28.000 1987-03-01 2024-10-11 01:44:28 +6269 6269 6270 626.9 1253.8000000000002 6269 1987-03-02 2024-10-11 01:44:29.000 1987-03-02 2024-10-11 01:44:29 +6270 6270 6271 627 1254 6270 1987-03-03 2024-10-11 01:44:30.000 1987-03-03 2024-10-11 01:44:30 +6271 6271 6272 627.1 1254.2 6271 1987-03-04 2024-10-11 01:44:31.000 1987-03-04 2024-10-11 01:44:31 +6272 6272 6273 627.2 1254.4 6272 1987-03-05 2024-10-11 01:44:32.000 1987-03-05 2024-10-11 01:44:32 +6273 6273 6274 627.3 1254.6000000000001 6273 1987-03-06 2024-10-11 01:44:33.000 1987-03-06 2024-10-11 01:44:33 +6274 6274 6275 627.4 1254.8000000000002 6274 1987-03-07 2024-10-11 01:44:34.000 1987-03-07 2024-10-11 01:44:34 +6275 6275 6276 627.5 1255 6275 1987-03-08 2024-10-11 01:44:35.000 1987-03-08 2024-10-11 01:44:35 +6276 6276 6277 627.6 1255.2 6276 1987-03-09 2024-10-11 01:44:36.000 1987-03-09 2024-10-11 01:44:36 +6277 6277 6278 627.7 1255.4 6277 1987-03-10 2024-10-11 01:44:37.000 1987-03-10 2024-10-11 01:44:37 +6278 6278 6279 627.8 1255.6000000000001 6278 1987-03-11 2024-10-11 01:44:38.000 1987-03-11 2024-10-11 01:44:38 +6279 6279 6280 627.9 1255.8000000000002 6279 1987-03-12 2024-10-11 01:44:39.000 1987-03-12 2024-10-11 01:44:39 +6280 6280 6281 628 1256 6280 1987-03-13 2024-10-11 01:44:40.000 1987-03-13 2024-10-11 01:44:40 +6281 6281 6282 628.1 1256.2 6281 1987-03-14 2024-10-11 01:44:41.000 1987-03-14 2024-10-11 01:44:41 +6282 6282 6283 628.2 1256.4 6282 1987-03-15 2024-10-11 01:44:42.000 1987-03-15 2024-10-11 01:44:42 +6283 6283 6284 628.3 1256.6000000000001 6283 1987-03-16 2024-10-11 01:44:43.000 1987-03-16 2024-10-11 01:44:43 +6284 6284 6285 628.4 1256.8000000000002 6284 1987-03-17 2024-10-11 01:44:44.000 1987-03-17 2024-10-11 01:44:44 +6285 6285 6286 628.5 1257 6285 1987-03-18 2024-10-11 01:44:45.000 1987-03-18 2024-10-11 01:44:45 +6286 6286 6287 628.6 1257.2 6286 1987-03-19 2024-10-11 01:44:46.000 1987-03-19 2024-10-11 01:44:46 +6287 6287 6288 628.7 1257.4 6287 1987-03-20 2024-10-11 01:44:47.000 1987-03-20 2024-10-11 01:44:47 +6288 6288 6289 628.8 1257.6000000000001 6288 1987-03-21 2024-10-11 01:44:48.000 1987-03-21 2024-10-11 01:44:48 +6289 6289 6290 628.9 1257.8000000000002 6289 1987-03-22 2024-10-11 01:44:49.000 1987-03-22 2024-10-11 01:44:49 +6290 6290 6291 629 1258 6290 1987-03-23 2024-10-11 01:44:50.000 1987-03-23 2024-10-11 01:44:50 +6291 6291 6292 629.1 1258.2 6291 1987-03-24 2024-10-11 01:44:51.000 1987-03-24 2024-10-11 01:44:51 +6292 6292 6293 629.2 1258.4 6292 1987-03-25 2024-10-11 01:44:52.000 1987-03-25 2024-10-11 01:44:52 +6293 6293 6294 629.3 1258.6000000000001 6293 1987-03-26 2024-10-11 01:44:53.000 1987-03-26 2024-10-11 01:44:53 +6294 6294 6295 629.4 1258.8000000000002 6294 1987-03-27 2024-10-11 01:44:54.000 1987-03-27 2024-10-11 01:44:54 +6295 6295 6296 629.5 1259 6295 1987-03-28 2024-10-11 01:44:55.000 1987-03-28 2024-10-11 01:44:55 +6296 6296 6297 629.6 1259.2 6296 1987-03-29 2024-10-11 01:44:56.000 1987-03-29 2024-10-11 01:44:56 +6297 6297 6298 629.7 1259.4 6297 1987-03-30 2024-10-11 01:44:57.000 1987-03-30 2024-10-11 01:44:57 +6298 6298 6299 629.8 1259.6000000000001 6298 1987-03-31 2024-10-11 01:44:58.000 1987-03-31 2024-10-11 01:44:58 +6299 6299 6300 629.9 1259.8000000000002 6299 1987-04-01 2024-10-11 01:44:59.000 1987-04-01 2024-10-11 01:44:59 +6300 6300 6301 630 1260 6300 1987-04-02 2024-10-11 01:45:00.000 1987-04-02 2024-10-11 01:45:00 +6301 6301 6302 630.1 1260.2 6301 1987-04-03 2024-10-11 01:45:01.000 1987-04-03 2024-10-11 01:45:01 +6302 6302 6303 630.2 1260.4 6302 1987-04-04 2024-10-11 01:45:02.000 1987-04-04 2024-10-11 01:45:02 +6303 6303 6304 630.3 1260.6000000000001 6303 1987-04-05 2024-10-11 01:45:03.000 1987-04-05 2024-10-11 01:45:03 +6304 6304 6305 630.4 1260.8000000000002 6304 1987-04-06 2024-10-11 01:45:04.000 1987-04-06 2024-10-11 01:45:04 +6305 6305 6306 630.5 1261 6305 1987-04-07 2024-10-11 01:45:05.000 1987-04-07 2024-10-11 01:45:05 +6306 6306 6307 630.6 1261.2 6306 1987-04-08 2024-10-11 01:45:06.000 1987-04-08 2024-10-11 01:45:06 +6307 6307 6308 630.7 1261.4 6307 1987-04-09 2024-10-11 01:45:07.000 1987-04-09 2024-10-11 01:45:07 +6308 6308 6309 630.8 1261.6000000000001 6308 1987-04-10 2024-10-11 01:45:08.000 1987-04-10 2024-10-11 01:45:08 +6309 6309 6310 630.9 1261.8000000000002 6309 1987-04-11 2024-10-11 01:45:09.000 1987-04-11 2024-10-11 01:45:09 +6310 6310 6311 631 1262 6310 1987-04-12 2024-10-11 01:45:10.000 1987-04-12 2024-10-11 01:45:10 +6311 6311 6312 631.1 1262.2 6311 1987-04-13 2024-10-11 01:45:11.000 1987-04-13 2024-10-11 01:45:11 +6312 6312 6313 631.2 1262.4 6312 1987-04-14 2024-10-11 01:45:12.000 1987-04-14 2024-10-11 01:45:12 +6313 6313 6314 631.3 1262.6000000000001 6313 1987-04-15 2024-10-11 01:45:13.000 1987-04-15 2024-10-11 01:45:13 +6314 6314 6315 631.4 1262.8000000000002 6314 1987-04-16 2024-10-11 01:45:14.000 1987-04-16 2024-10-11 01:45:14 +6315 6315 6316 631.5 1263 6315 1987-04-17 2024-10-11 01:45:15.000 1987-04-17 2024-10-11 01:45:15 +6316 6316 6317 631.6 1263.2 6316 1987-04-18 2024-10-11 01:45:16.000 1987-04-18 2024-10-11 01:45:16 +6317 6317 6318 631.7 1263.4 6317 1987-04-19 2024-10-11 01:45:17.000 1987-04-19 2024-10-11 01:45:17 +6318 6318 6319 631.8 1263.6000000000001 6318 1987-04-20 2024-10-11 01:45:18.000 1987-04-20 2024-10-11 01:45:18 +6319 6319 6320 631.9 1263.8000000000002 6319 1987-04-21 2024-10-11 01:45:19.000 1987-04-21 2024-10-11 01:45:19 +6320 6320 6321 632 1264 6320 1987-04-22 2024-10-11 01:45:20.000 1987-04-22 2024-10-11 01:45:20 +6321 6321 6322 632.1 1264.2 6321 1987-04-23 2024-10-11 01:45:21.000 1987-04-23 2024-10-11 01:45:21 +6322 6322 6323 632.2 1264.4 6322 1987-04-24 2024-10-11 01:45:22.000 1987-04-24 2024-10-11 01:45:22 +6323 6323 6324 632.3 1264.6000000000001 6323 1987-04-25 2024-10-11 01:45:23.000 1987-04-25 2024-10-11 01:45:23 +6324 6324 6325 632.4 1264.8000000000002 6324 1987-04-26 2024-10-11 01:45:24.000 1987-04-26 2024-10-11 01:45:24 +6325 6325 6326 632.5 1265 6325 1987-04-27 2024-10-11 01:45:25.000 1987-04-27 2024-10-11 01:45:25 +6326 6326 6327 632.6 1265.2 6326 1987-04-28 2024-10-11 01:45:26.000 1987-04-28 2024-10-11 01:45:26 +6327 6327 6328 632.7 1265.4 6327 1987-04-29 2024-10-11 01:45:27.000 1987-04-29 2024-10-11 01:45:27 +6328 6328 6329 632.8 1265.6000000000001 6328 1987-04-30 2024-10-11 01:45:28.000 1987-04-30 2024-10-11 01:45:28 +6329 6329 6330 632.9 1265.8000000000002 6329 1987-05-01 2024-10-11 01:45:29.000 1987-05-01 2024-10-11 01:45:29 +6330 6330 6331 633 1266 6330 1987-05-02 2024-10-11 01:45:30.000 1987-05-02 2024-10-11 01:45:30 +6331 6331 6332 633.1 1266.2 6331 1987-05-03 2024-10-11 01:45:31.000 1987-05-03 2024-10-11 01:45:31 +6332 6332 6333 633.2 1266.4 6332 1987-05-04 2024-10-11 01:45:32.000 1987-05-04 2024-10-11 01:45:32 +6333 6333 6334 633.3 1266.6000000000001 6333 1987-05-05 2024-10-11 01:45:33.000 1987-05-05 2024-10-11 01:45:33 +6334 6334 6335 633.4 1266.8000000000002 6334 1987-05-06 2024-10-11 01:45:34.000 1987-05-06 2024-10-11 01:45:34 +6335 6335 6336 633.5 1267 6335 1987-05-07 2024-10-11 01:45:35.000 1987-05-07 2024-10-11 01:45:35 +6336 6336 6337 633.6 1267.2 6336 1987-05-08 2024-10-11 01:45:36.000 1987-05-08 2024-10-11 01:45:36 +6337 6337 6338 633.7 1267.4 6337 1987-05-09 2024-10-11 01:45:37.000 1987-05-09 2024-10-11 01:45:37 +6338 6338 6339 633.8 1267.6000000000001 6338 1987-05-10 2024-10-11 01:45:38.000 1987-05-10 2024-10-11 01:45:38 +6339 6339 6340 633.9 1267.8000000000002 6339 1987-05-11 2024-10-11 01:45:39.000 1987-05-11 2024-10-11 01:45:39 +6340 6340 6341 634 1268 6340 1987-05-12 2024-10-11 01:45:40.000 1987-05-12 2024-10-11 01:45:40 +6341 6341 6342 634.1 1268.2 6341 1987-05-13 2024-10-11 01:45:41.000 1987-05-13 2024-10-11 01:45:41 +6342 6342 6343 634.2 1268.4 6342 1987-05-14 2024-10-11 01:45:42.000 1987-05-14 2024-10-11 01:45:42 +6343 6343 6344 634.3 1268.6000000000001 6343 1987-05-15 2024-10-11 01:45:43.000 1987-05-15 2024-10-11 01:45:43 +6344 6344 6345 634.4 1268.8000000000002 6344 1987-05-16 2024-10-11 01:45:44.000 1987-05-16 2024-10-11 01:45:44 +6345 6345 6346 634.5 1269 6345 1987-05-17 2024-10-11 01:45:45.000 1987-05-17 2024-10-11 01:45:45 +6346 6346 6347 634.6 1269.2 6346 1987-05-18 2024-10-11 01:45:46.000 1987-05-18 2024-10-11 01:45:46 +6347 6347 6348 634.7 1269.4 6347 1987-05-19 2024-10-11 01:45:47.000 1987-05-19 2024-10-11 01:45:47 +6348 6348 6349 634.8 1269.6000000000001 6348 1987-05-20 2024-10-11 01:45:48.000 1987-05-20 2024-10-11 01:45:48 +6349 6349 6350 634.9 1269.8000000000002 6349 1987-05-21 2024-10-11 01:45:49.000 1987-05-21 2024-10-11 01:45:49 +6350 6350 6351 635 1270 6350 1987-05-22 2024-10-11 01:45:50.000 1987-05-22 2024-10-11 01:45:50 +6351 6351 6352 635.1 1270.2 6351 1987-05-23 2024-10-11 01:45:51.000 1987-05-23 2024-10-11 01:45:51 +6352 6352 6353 635.2 1270.4 6352 1987-05-24 2024-10-11 01:45:52.000 1987-05-24 2024-10-11 01:45:52 +6353 6353 6354 635.3 1270.6000000000001 6353 1987-05-25 2024-10-11 01:45:53.000 1987-05-25 2024-10-11 01:45:53 +6354 6354 6355 635.4 1270.8000000000002 6354 1987-05-26 2024-10-11 01:45:54.000 1987-05-26 2024-10-11 01:45:54 +6355 6355 6356 635.5 1271 6355 1987-05-27 2024-10-11 01:45:55.000 1987-05-27 2024-10-11 01:45:55 +6356 6356 6357 635.6 1271.2 6356 1987-05-28 2024-10-11 01:45:56.000 1987-05-28 2024-10-11 01:45:56 +6357 6357 6358 635.7 1271.4 6357 1987-05-29 2024-10-11 01:45:57.000 1987-05-29 2024-10-11 01:45:57 +6358 6358 6359 635.8 1271.6000000000001 6358 1987-05-30 2024-10-11 01:45:58.000 1987-05-30 2024-10-11 01:45:58 +6359 6359 6360 635.9 1271.8000000000002 6359 1987-05-31 2024-10-11 01:45:59.000 1987-05-31 2024-10-11 01:45:59 +6360 6360 6361 636 1272 6360 1987-06-01 2024-10-11 01:46:00.000 1987-06-01 2024-10-11 01:46:00 +6361 6361 6362 636.1 1272.2 6361 1987-06-02 2024-10-11 01:46:01.000 1987-06-02 2024-10-11 01:46:01 +6362 6362 6363 636.2 1272.4 6362 1987-06-03 2024-10-11 01:46:02.000 1987-06-03 2024-10-11 01:46:02 +6363 6363 6364 636.3 1272.6000000000001 6363 1987-06-04 2024-10-11 01:46:03.000 1987-06-04 2024-10-11 01:46:03 +6364 6364 6365 636.4 1272.8000000000002 6364 1987-06-05 2024-10-11 01:46:04.000 1987-06-05 2024-10-11 01:46:04 +6365 6365 6366 636.5 1273 6365 1987-06-06 2024-10-11 01:46:05.000 1987-06-06 2024-10-11 01:46:05 +6366 6366 6367 636.6 1273.2 6366 1987-06-07 2024-10-11 01:46:06.000 1987-06-07 2024-10-11 01:46:06 +6367 6367 6368 636.7 1273.4 6367 1987-06-08 2024-10-11 01:46:07.000 1987-06-08 2024-10-11 01:46:07 +6368 6368 6369 636.8 1273.6000000000001 6368 1987-06-09 2024-10-11 01:46:08.000 1987-06-09 2024-10-11 01:46:08 +6369 6369 6370 636.9 1273.8000000000002 6369 1987-06-10 2024-10-11 01:46:09.000 1987-06-10 2024-10-11 01:46:09 +6370 6370 6371 637 1274 6370 1987-06-11 2024-10-11 01:46:10.000 1987-06-11 2024-10-11 01:46:10 +6371 6371 6372 637.1 1274.2 6371 1987-06-12 2024-10-11 01:46:11.000 1987-06-12 2024-10-11 01:46:11 +6372 6372 6373 637.2 1274.4 6372 1987-06-13 2024-10-11 01:46:12.000 1987-06-13 2024-10-11 01:46:12 +6373 6373 6374 637.3 1274.6000000000001 6373 1987-06-14 2024-10-11 01:46:13.000 1987-06-14 2024-10-11 01:46:13 +6374 6374 6375 637.4 1274.8000000000002 6374 1987-06-15 2024-10-11 01:46:14.000 1987-06-15 2024-10-11 01:46:14 +6375 6375 6376 637.5 1275 6375 1987-06-16 2024-10-11 01:46:15.000 1987-06-16 2024-10-11 01:46:15 +6376 6376 6377 637.6 1275.2 6376 1987-06-17 2024-10-11 01:46:16.000 1987-06-17 2024-10-11 01:46:16 +6377 6377 6378 637.7 1275.4 6377 1987-06-18 2024-10-11 01:46:17.000 1987-06-18 2024-10-11 01:46:17 +6378 6378 6379 637.8 1275.6000000000001 6378 1987-06-19 2024-10-11 01:46:18.000 1987-06-19 2024-10-11 01:46:18 +6379 6379 6380 637.9 1275.8000000000002 6379 1987-06-20 2024-10-11 01:46:19.000 1987-06-20 2024-10-11 01:46:19 +6380 6380 6381 638 1276 6380 1987-06-21 2024-10-11 01:46:20.000 1987-06-21 2024-10-11 01:46:20 +6381 6381 6382 638.1 1276.2 6381 1987-06-22 2024-10-11 01:46:21.000 1987-06-22 2024-10-11 01:46:21 +6382 6382 6383 638.2 1276.4 6382 1987-06-23 2024-10-11 01:46:22.000 1987-06-23 2024-10-11 01:46:22 +6383 6383 6384 638.3 1276.6000000000001 6383 1987-06-24 2024-10-11 01:46:23.000 1987-06-24 2024-10-11 01:46:23 +6384 6384 6385 638.4 1276.8000000000002 6384 1987-06-25 2024-10-11 01:46:24.000 1987-06-25 2024-10-11 01:46:24 +6385 6385 6386 638.5 1277 6385 1987-06-26 2024-10-11 01:46:25.000 1987-06-26 2024-10-11 01:46:25 +6386 6386 6387 638.6 1277.2 6386 1987-06-27 2024-10-11 01:46:26.000 1987-06-27 2024-10-11 01:46:26 +6387 6387 6388 638.7 1277.4 6387 1987-06-28 2024-10-11 01:46:27.000 1987-06-28 2024-10-11 01:46:27 +6388 6388 6389 638.8 1277.6000000000001 6388 1987-06-29 2024-10-11 01:46:28.000 1987-06-29 2024-10-11 01:46:28 +6389 6389 6390 638.9 1277.8000000000002 6389 1987-06-30 2024-10-11 01:46:29.000 1987-06-30 2024-10-11 01:46:29 +6390 6390 6391 639 1278 6390 1987-07-01 2024-10-11 01:46:30.000 1987-07-01 2024-10-11 01:46:30 +6391 6391 6392 639.1 1278.2 6391 1987-07-02 2024-10-11 01:46:31.000 1987-07-02 2024-10-11 01:46:31 +6392 6392 6393 639.2 1278.4 6392 1987-07-03 2024-10-11 01:46:32.000 1987-07-03 2024-10-11 01:46:32 +6393 6393 6394 639.3 1278.6000000000001 6393 1987-07-04 2024-10-11 01:46:33.000 1987-07-04 2024-10-11 01:46:33 +6394 6394 6395 639.4 1278.8000000000002 6394 1987-07-05 2024-10-11 01:46:34.000 1987-07-05 2024-10-11 01:46:34 +6395 6395 6396 639.5 1279 6395 1987-07-06 2024-10-11 01:46:35.000 1987-07-06 2024-10-11 01:46:35 +6396 6396 6397 639.6 1279.2 6396 1987-07-07 2024-10-11 01:46:36.000 1987-07-07 2024-10-11 01:46:36 +6397 6397 6398 639.7 1279.4 6397 1987-07-08 2024-10-11 01:46:37.000 1987-07-08 2024-10-11 01:46:37 +6398 6398 6399 639.8 1279.6000000000001 6398 1987-07-09 2024-10-11 01:46:38.000 1987-07-09 2024-10-11 01:46:38 +6399 6399 6400 639.9 1279.8000000000002 6399 1987-07-10 2024-10-11 01:46:39.000 1987-07-10 2024-10-11 01:46:39 +6400 6400 6401 640 1280 6400 1987-07-11 2024-10-11 01:46:40.000 1987-07-11 2024-10-11 01:46:40 +6401 6401 6402 640.1 1280.2 6401 1987-07-12 2024-10-11 01:46:41.000 1987-07-12 2024-10-11 01:46:41 +6402 6402 6403 640.2 1280.4 6402 1987-07-13 2024-10-11 01:46:42.000 1987-07-13 2024-10-11 01:46:42 +6403 6403 6404 640.3 1280.6000000000001 6403 1987-07-14 2024-10-11 01:46:43.000 1987-07-14 2024-10-11 01:46:43 +6404 6404 6405 640.4 1280.8000000000002 6404 1987-07-15 2024-10-11 01:46:44.000 1987-07-15 2024-10-11 01:46:44 +6405 6405 6406 640.5 1281 6405 1987-07-16 2024-10-11 01:46:45.000 1987-07-16 2024-10-11 01:46:45 +6406 6406 6407 640.6 1281.2 6406 1987-07-17 2024-10-11 01:46:46.000 1987-07-17 2024-10-11 01:46:46 +6407 6407 6408 640.7 1281.4 6407 1987-07-18 2024-10-11 01:46:47.000 1987-07-18 2024-10-11 01:46:47 +6408 6408 6409 640.8 1281.6000000000001 6408 1987-07-19 2024-10-11 01:46:48.000 1987-07-19 2024-10-11 01:46:48 +6409 6409 6410 640.9 1281.8000000000002 6409 1987-07-20 2024-10-11 01:46:49.000 1987-07-20 2024-10-11 01:46:49 +6410 6410 6411 641 1282 6410 1987-07-21 2024-10-11 01:46:50.000 1987-07-21 2024-10-11 01:46:50 +6411 6411 6412 641.1 1282.2 6411 1987-07-22 2024-10-11 01:46:51.000 1987-07-22 2024-10-11 01:46:51 +6412 6412 6413 641.2 1282.4 6412 1987-07-23 2024-10-11 01:46:52.000 1987-07-23 2024-10-11 01:46:52 +6413 6413 6414 641.3 1282.6000000000001 6413 1987-07-24 2024-10-11 01:46:53.000 1987-07-24 2024-10-11 01:46:53 +6414 6414 6415 641.4 1282.8000000000002 6414 1987-07-25 2024-10-11 01:46:54.000 1987-07-25 2024-10-11 01:46:54 +6415 6415 6416 641.5 1283 6415 1987-07-26 2024-10-11 01:46:55.000 1987-07-26 2024-10-11 01:46:55 +6416 6416 6417 641.6 1283.2 6416 1987-07-27 2024-10-11 01:46:56.000 1987-07-27 2024-10-11 01:46:56 +6417 6417 6418 641.7 1283.4 6417 1987-07-28 2024-10-11 01:46:57.000 1987-07-28 2024-10-11 01:46:57 +6418 6418 6419 641.8 1283.6000000000001 6418 1987-07-29 2024-10-11 01:46:58.000 1987-07-29 2024-10-11 01:46:58 +6419 6419 6420 641.9 1283.8000000000002 6419 1987-07-30 2024-10-11 01:46:59.000 1987-07-30 2024-10-11 01:46:59 +6420 6420 6421 642 1284 6420 1987-07-31 2024-10-11 01:47:00.000 1987-07-31 2024-10-11 01:47:00 +6421 6421 6422 642.1 1284.2 6421 1987-08-01 2024-10-11 01:47:01.000 1987-08-01 2024-10-11 01:47:01 +6422 6422 6423 642.2 1284.4 6422 1987-08-02 2024-10-11 01:47:02.000 1987-08-02 2024-10-11 01:47:02 +6423 6423 6424 642.3 1284.6000000000001 6423 1987-08-03 2024-10-11 01:47:03.000 1987-08-03 2024-10-11 01:47:03 +6424 6424 6425 642.4 1284.8000000000002 6424 1987-08-04 2024-10-11 01:47:04.000 1987-08-04 2024-10-11 01:47:04 +6425 6425 6426 642.5 1285 6425 1987-08-05 2024-10-11 01:47:05.000 1987-08-05 2024-10-11 01:47:05 +6426 6426 6427 642.6 1285.2 6426 1987-08-06 2024-10-11 01:47:06.000 1987-08-06 2024-10-11 01:47:06 +6427 6427 6428 642.7 1285.4 6427 1987-08-07 2024-10-11 01:47:07.000 1987-08-07 2024-10-11 01:47:07 +6428 6428 6429 642.8 1285.6000000000001 6428 1987-08-08 2024-10-11 01:47:08.000 1987-08-08 2024-10-11 01:47:08 +6429 6429 6430 642.9 1285.8000000000002 6429 1987-08-09 2024-10-11 01:47:09.000 1987-08-09 2024-10-11 01:47:09 +6430 6430 6431 643 1286 6430 1987-08-10 2024-10-11 01:47:10.000 1987-08-10 2024-10-11 01:47:10 +6431 6431 6432 643.1 1286.2 6431 1987-08-11 2024-10-11 01:47:11.000 1987-08-11 2024-10-11 01:47:11 +6432 6432 6433 643.2 1286.4 6432 1987-08-12 2024-10-11 01:47:12.000 1987-08-12 2024-10-11 01:47:12 +6433 6433 6434 643.3 1286.6000000000001 6433 1987-08-13 2024-10-11 01:47:13.000 1987-08-13 2024-10-11 01:47:13 +6434 6434 6435 643.4 1286.8000000000002 6434 1987-08-14 2024-10-11 01:47:14.000 1987-08-14 2024-10-11 01:47:14 +6435 6435 6436 643.5 1287 6435 1987-08-15 2024-10-11 01:47:15.000 1987-08-15 2024-10-11 01:47:15 +6436 6436 6437 643.6 1287.2 6436 1987-08-16 2024-10-11 01:47:16.000 1987-08-16 2024-10-11 01:47:16 +6437 6437 6438 643.7 1287.4 6437 1987-08-17 2024-10-11 01:47:17.000 1987-08-17 2024-10-11 01:47:17 +6438 6438 6439 643.8 1287.6000000000001 6438 1987-08-18 2024-10-11 01:47:18.000 1987-08-18 2024-10-11 01:47:18 +6439 6439 6440 643.9 1287.8000000000002 6439 1987-08-19 2024-10-11 01:47:19.000 1987-08-19 2024-10-11 01:47:19 +6440 6440 6441 644 1288 6440 1987-08-20 2024-10-11 01:47:20.000 1987-08-20 2024-10-11 01:47:20 +6441 6441 6442 644.1 1288.2 6441 1987-08-21 2024-10-11 01:47:21.000 1987-08-21 2024-10-11 01:47:21 +6442 6442 6443 644.2 1288.4 6442 1987-08-22 2024-10-11 01:47:22.000 1987-08-22 2024-10-11 01:47:22 +6443 6443 6444 644.3 1288.6000000000001 6443 1987-08-23 2024-10-11 01:47:23.000 1987-08-23 2024-10-11 01:47:23 +6444 6444 6445 644.4 1288.8000000000002 6444 1987-08-24 2024-10-11 01:47:24.000 1987-08-24 2024-10-11 01:47:24 +6445 6445 6446 644.5 1289 6445 1987-08-25 2024-10-11 01:47:25.000 1987-08-25 2024-10-11 01:47:25 +6446 6446 6447 644.6 1289.2 6446 1987-08-26 2024-10-11 01:47:26.000 1987-08-26 2024-10-11 01:47:26 +6447 6447 6448 644.7 1289.4 6447 1987-08-27 2024-10-11 01:47:27.000 1987-08-27 2024-10-11 01:47:27 +6448 6448 6449 644.8 1289.6000000000001 6448 1987-08-28 2024-10-11 01:47:28.000 1987-08-28 2024-10-11 01:47:28 +6449 6449 6450 644.9 1289.8000000000002 6449 1987-08-29 2024-10-11 01:47:29.000 1987-08-29 2024-10-11 01:47:29 +6450 6450 6451 645 1290 6450 1987-08-30 2024-10-11 01:47:30.000 1987-08-30 2024-10-11 01:47:30 +6451 6451 6452 645.1 1290.2 6451 1987-08-31 2024-10-11 01:47:31.000 1987-08-31 2024-10-11 01:47:31 +6452 6452 6453 645.2 1290.4 6452 1987-09-01 2024-10-11 01:47:32.000 1987-09-01 2024-10-11 01:47:32 +6453 6453 6454 645.3 1290.6000000000001 6453 1987-09-02 2024-10-11 01:47:33.000 1987-09-02 2024-10-11 01:47:33 +6454 6454 6455 645.4 1290.8000000000002 6454 1987-09-03 2024-10-11 01:47:34.000 1987-09-03 2024-10-11 01:47:34 +6455 6455 6456 645.5 1291 6455 1987-09-04 2024-10-11 01:47:35.000 1987-09-04 2024-10-11 01:47:35 +6456 6456 6457 645.6 1291.2 6456 1987-09-05 2024-10-11 01:47:36.000 1987-09-05 2024-10-11 01:47:36 +6457 6457 6458 645.7 1291.4 6457 1987-09-06 2024-10-11 01:47:37.000 1987-09-06 2024-10-11 01:47:37 +6458 6458 6459 645.8 1291.6000000000001 6458 1987-09-07 2024-10-11 01:47:38.000 1987-09-07 2024-10-11 01:47:38 +6459 6459 6460 645.9 1291.8000000000002 6459 1987-09-08 2024-10-11 01:47:39.000 1987-09-08 2024-10-11 01:47:39 +6460 6460 6461 646 1292 6460 1987-09-09 2024-10-11 01:47:40.000 1987-09-09 2024-10-11 01:47:40 +6461 6461 6462 646.1 1292.2 6461 1987-09-10 2024-10-11 01:47:41.000 1987-09-10 2024-10-11 01:47:41 +6462 6462 6463 646.2 1292.4 6462 1987-09-11 2024-10-11 01:47:42.000 1987-09-11 2024-10-11 01:47:42 +6463 6463 6464 646.3 1292.6000000000001 6463 1987-09-12 2024-10-11 01:47:43.000 1987-09-12 2024-10-11 01:47:43 +6464 6464 6465 646.4 1292.8000000000002 6464 1987-09-13 2024-10-11 01:47:44.000 1987-09-13 2024-10-11 01:47:44 +6465 6465 6466 646.5 1293 6465 1987-09-14 2024-10-11 01:47:45.000 1987-09-14 2024-10-11 01:47:45 +6466 6466 6467 646.6 1293.2 6466 1987-09-15 2024-10-11 01:47:46.000 1987-09-15 2024-10-11 01:47:46 +6467 6467 6468 646.7 1293.4 6467 1987-09-16 2024-10-11 01:47:47.000 1987-09-16 2024-10-11 01:47:47 +6468 6468 6469 646.8 1293.6000000000001 6468 1987-09-17 2024-10-11 01:47:48.000 1987-09-17 2024-10-11 01:47:48 +6469 6469 6470 646.9 1293.8000000000002 6469 1987-09-18 2024-10-11 01:47:49.000 1987-09-18 2024-10-11 01:47:49 +6470 6470 6471 647 1294 6470 1987-09-19 2024-10-11 01:47:50.000 1987-09-19 2024-10-11 01:47:50 +6471 6471 6472 647.1 1294.2 6471 1987-09-20 2024-10-11 01:47:51.000 1987-09-20 2024-10-11 01:47:51 +6472 6472 6473 647.2 1294.4 6472 1987-09-21 2024-10-11 01:47:52.000 1987-09-21 2024-10-11 01:47:52 +6473 6473 6474 647.3 1294.6000000000001 6473 1987-09-22 2024-10-11 01:47:53.000 1987-09-22 2024-10-11 01:47:53 +6474 6474 6475 647.4 1294.8000000000002 6474 1987-09-23 2024-10-11 01:47:54.000 1987-09-23 2024-10-11 01:47:54 +6475 6475 6476 647.5 1295 6475 1987-09-24 2024-10-11 01:47:55.000 1987-09-24 2024-10-11 01:47:55 +6476 6476 6477 647.6 1295.2 6476 1987-09-25 2024-10-11 01:47:56.000 1987-09-25 2024-10-11 01:47:56 +6477 6477 6478 647.7 1295.4 6477 1987-09-26 2024-10-11 01:47:57.000 1987-09-26 2024-10-11 01:47:57 +6478 6478 6479 647.8 1295.6000000000001 6478 1987-09-27 2024-10-11 01:47:58.000 1987-09-27 2024-10-11 01:47:58 +6479 6479 6480 647.9 1295.8000000000002 6479 1987-09-28 2024-10-11 01:47:59.000 1987-09-28 2024-10-11 01:47:59 +6480 6480 6481 648 1296 6480 1987-09-29 2024-10-11 01:48:00.000 1987-09-29 2024-10-11 01:48:00 +6481 6481 6482 648.1 1296.2 6481 1987-09-30 2024-10-11 01:48:01.000 1987-09-30 2024-10-11 01:48:01 +6482 6482 6483 648.2 1296.4 6482 1987-10-01 2024-10-11 01:48:02.000 1987-10-01 2024-10-11 01:48:02 +6483 6483 6484 648.3 1296.6000000000001 6483 1987-10-02 2024-10-11 01:48:03.000 1987-10-02 2024-10-11 01:48:03 +6484 6484 6485 648.4 1296.8000000000002 6484 1987-10-03 2024-10-11 01:48:04.000 1987-10-03 2024-10-11 01:48:04 +6485 6485 6486 648.5 1297 6485 1987-10-04 2024-10-11 01:48:05.000 1987-10-04 2024-10-11 01:48:05 +6486 6486 6487 648.6 1297.2 6486 1987-10-05 2024-10-11 01:48:06.000 1987-10-05 2024-10-11 01:48:06 +6487 6487 6488 648.7 1297.4 6487 1987-10-06 2024-10-11 01:48:07.000 1987-10-06 2024-10-11 01:48:07 +6488 6488 6489 648.8 1297.6000000000001 6488 1987-10-07 2024-10-11 01:48:08.000 1987-10-07 2024-10-11 01:48:08 +6489 6489 6490 648.9 1297.8000000000002 6489 1987-10-08 2024-10-11 01:48:09.000 1987-10-08 2024-10-11 01:48:09 +6490 6490 6491 649 1298 6490 1987-10-09 2024-10-11 01:48:10.000 1987-10-09 2024-10-11 01:48:10 +6491 6491 6492 649.1 1298.2 6491 1987-10-10 2024-10-11 01:48:11.000 1987-10-10 2024-10-11 01:48:11 +6492 6492 6493 649.2 1298.4 6492 1987-10-11 2024-10-11 01:48:12.000 1987-10-11 2024-10-11 01:48:12 +6493 6493 6494 649.3 1298.6000000000001 6493 1987-10-12 2024-10-11 01:48:13.000 1987-10-12 2024-10-11 01:48:13 +6494 6494 6495 649.4 1298.8000000000002 6494 1987-10-13 2024-10-11 01:48:14.000 1987-10-13 2024-10-11 01:48:14 +6495 6495 6496 649.5 1299 6495 1987-10-14 2024-10-11 01:48:15.000 1987-10-14 2024-10-11 01:48:15 +6496 6496 6497 649.6 1299.2 6496 1987-10-15 2024-10-11 01:48:16.000 1987-10-15 2024-10-11 01:48:16 +6497 6497 6498 649.7 1299.4 6497 1987-10-16 2024-10-11 01:48:17.000 1987-10-16 2024-10-11 01:48:17 +6498 6498 6499 649.8 1299.6000000000001 6498 1987-10-17 2024-10-11 01:48:18.000 1987-10-17 2024-10-11 01:48:18 +6499 6499 6500 649.9 1299.8000000000002 6499 1987-10-18 2024-10-11 01:48:19.000 1987-10-18 2024-10-11 01:48:19 +6500 6500 6501 650 1300 6500 1987-10-19 2024-10-11 01:48:20.000 1987-10-19 2024-10-11 01:48:20 +6501 6501 6502 650.1 1300.2 6501 1987-10-20 2024-10-11 01:48:21.000 1987-10-20 2024-10-11 01:48:21 +6502 6502 6503 650.2 1300.4 6502 1987-10-21 2024-10-11 01:48:22.000 1987-10-21 2024-10-11 01:48:22 +6503 6503 6504 650.3 1300.6000000000001 6503 1987-10-22 2024-10-11 01:48:23.000 1987-10-22 2024-10-11 01:48:23 +6504 6504 6505 650.4 1300.8000000000002 6504 1987-10-23 2024-10-11 01:48:24.000 1987-10-23 2024-10-11 01:48:24 +6505 6505 6506 650.5 1301 6505 1987-10-24 2024-10-11 01:48:25.000 1987-10-24 2024-10-11 01:48:25 +6506 6506 6507 650.6 1301.2 6506 1987-10-25 2024-10-11 01:48:26.000 1987-10-25 2024-10-11 01:48:26 +6507 6507 6508 650.7 1301.4 6507 1987-10-26 2024-10-11 01:48:27.000 1987-10-26 2024-10-11 01:48:27 +6508 6508 6509 650.8 1301.6000000000001 6508 1987-10-27 2024-10-11 01:48:28.000 1987-10-27 2024-10-11 01:48:28 +6509 6509 6510 650.9 1301.8000000000002 6509 1987-10-28 2024-10-11 01:48:29.000 1987-10-28 2024-10-11 01:48:29 +6510 6510 6511 651 1302 6510 1987-10-29 2024-10-11 01:48:30.000 1987-10-29 2024-10-11 01:48:30 +6511 6511 6512 651.1 1302.2 6511 1987-10-30 2024-10-11 01:48:31.000 1987-10-30 2024-10-11 01:48:31 +6512 6512 6513 651.2 1302.4 6512 1987-10-31 2024-10-11 01:48:32.000 1987-10-31 2024-10-11 01:48:32 +6513 6513 6514 651.3 1302.6000000000001 6513 1987-11-01 2024-10-11 01:48:33.000 1987-11-01 2024-10-11 01:48:33 +6514 6514 6515 651.4 1302.8000000000002 6514 1987-11-02 2024-10-11 01:48:34.000 1987-11-02 2024-10-11 01:48:34 +6515 6515 6516 651.5 1303 6515 1987-11-03 2024-10-11 01:48:35.000 1987-11-03 2024-10-11 01:48:35 +6516 6516 6517 651.6 1303.2 6516 1987-11-04 2024-10-11 01:48:36.000 1987-11-04 2024-10-11 01:48:36 +6517 6517 6518 651.7 1303.4 6517 1987-11-05 2024-10-11 01:48:37.000 1987-11-05 2024-10-11 01:48:37 +6518 6518 6519 651.8 1303.6000000000001 6518 1987-11-06 2024-10-11 01:48:38.000 1987-11-06 2024-10-11 01:48:38 +6519 6519 6520 651.9 1303.8000000000002 6519 1987-11-07 2024-10-11 01:48:39.000 1987-11-07 2024-10-11 01:48:39 +6520 6520 6521 652 1304 6520 1987-11-08 2024-10-11 01:48:40.000 1987-11-08 2024-10-11 01:48:40 +6521 6521 6522 652.1 1304.2 6521 1987-11-09 2024-10-11 01:48:41.000 1987-11-09 2024-10-11 01:48:41 +6522 6522 6523 652.2 1304.4 6522 1987-11-10 2024-10-11 01:48:42.000 1987-11-10 2024-10-11 01:48:42 +6523 6523 6524 652.3 1304.6000000000001 6523 1987-11-11 2024-10-11 01:48:43.000 1987-11-11 2024-10-11 01:48:43 +6524 6524 6525 652.4 1304.8000000000002 6524 1987-11-12 2024-10-11 01:48:44.000 1987-11-12 2024-10-11 01:48:44 +6525 6525 6526 652.5 1305 6525 1987-11-13 2024-10-11 01:48:45.000 1987-11-13 2024-10-11 01:48:45 +6526 6526 6527 652.6 1305.2 6526 1987-11-14 2024-10-11 01:48:46.000 1987-11-14 2024-10-11 01:48:46 +6527 6527 6528 652.7 1305.4 6527 1987-11-15 2024-10-11 01:48:47.000 1987-11-15 2024-10-11 01:48:47 +6528 6528 6529 652.8 1305.6000000000001 6528 1987-11-16 2024-10-11 01:48:48.000 1987-11-16 2024-10-11 01:48:48 +6529 6529 6530 652.9 1305.8000000000002 6529 1987-11-17 2024-10-11 01:48:49.000 1987-11-17 2024-10-11 01:48:49 +6530 6530 6531 653 1306 6530 1987-11-18 2024-10-11 01:48:50.000 1987-11-18 2024-10-11 01:48:50 +6531 6531 6532 653.1 1306.2 6531 1987-11-19 2024-10-11 01:48:51.000 1987-11-19 2024-10-11 01:48:51 +6532 6532 6533 653.2 1306.4 6532 1987-11-20 2024-10-11 01:48:52.000 1987-11-20 2024-10-11 01:48:52 +6533 6533 6534 653.3 1306.6000000000001 6533 1987-11-21 2024-10-11 01:48:53.000 1987-11-21 2024-10-11 01:48:53 +6534 6534 6535 653.4 1306.8000000000002 6534 1987-11-22 2024-10-11 01:48:54.000 1987-11-22 2024-10-11 01:48:54 +6535 6535 6536 653.5 1307 6535 1987-11-23 2024-10-11 01:48:55.000 1987-11-23 2024-10-11 01:48:55 +6536 6536 6537 653.6 1307.2 6536 1987-11-24 2024-10-11 01:48:56.000 1987-11-24 2024-10-11 01:48:56 +6537 6537 6538 653.7 1307.4 6537 1987-11-25 2024-10-11 01:48:57.000 1987-11-25 2024-10-11 01:48:57 +6538 6538 6539 653.8 1307.6000000000001 6538 1987-11-26 2024-10-11 01:48:58.000 1987-11-26 2024-10-11 01:48:58 +6539 6539 6540 653.9 1307.8000000000002 6539 1987-11-27 2024-10-11 01:48:59.000 1987-11-27 2024-10-11 01:48:59 +6540 6540 6541 654 1308 6540 1987-11-28 2024-10-11 01:49:00.000 1987-11-28 2024-10-11 01:49:00 +6541 6541 6542 654.1 1308.2 6541 1987-11-29 2024-10-11 01:49:01.000 1987-11-29 2024-10-11 01:49:01 +6542 6542 6543 654.2 1308.4 6542 1987-11-30 2024-10-11 01:49:02.000 1987-11-30 2024-10-11 01:49:02 +6543 6543 6544 654.3 1308.6000000000001 6543 1987-12-01 2024-10-11 01:49:03.000 1987-12-01 2024-10-11 01:49:03 +6544 6544 6545 654.4 1308.8000000000002 6544 1987-12-02 2024-10-11 01:49:04.000 1987-12-02 2024-10-11 01:49:04 +6545 6545 6546 654.5 1309 6545 1987-12-03 2024-10-11 01:49:05.000 1987-12-03 2024-10-11 01:49:05 +6546 6546 6547 654.6 1309.2 6546 1987-12-04 2024-10-11 01:49:06.000 1987-12-04 2024-10-11 01:49:06 +6547 6547 6548 654.7 1309.4 6547 1987-12-05 2024-10-11 01:49:07.000 1987-12-05 2024-10-11 01:49:07 +6548 6548 6549 654.8 1309.6000000000001 6548 1987-12-06 2024-10-11 01:49:08.000 1987-12-06 2024-10-11 01:49:08 +6549 6549 6550 654.9 1309.8000000000002 6549 1987-12-07 2024-10-11 01:49:09.000 1987-12-07 2024-10-11 01:49:09 +6550 6550 6551 655 1310 6550 1987-12-08 2024-10-11 01:49:10.000 1987-12-08 2024-10-11 01:49:10 +6551 6551 6552 655.1 1310.2 6551 1987-12-09 2024-10-11 01:49:11.000 1987-12-09 2024-10-11 01:49:11 +6552 6552 6553 655.2 1310.4 6552 1987-12-10 2024-10-11 01:49:12.000 1987-12-10 2024-10-11 01:49:12 +6553 6553 6554 655.3 1310.6000000000001 6553 1987-12-11 2024-10-11 01:49:13.000 1987-12-11 2024-10-11 01:49:13 +6554 6554 6555 655.4 1310.8000000000002 6554 1987-12-12 2024-10-11 01:49:14.000 1987-12-12 2024-10-11 01:49:14 +6555 6555 6556 655.5 1311 6555 1987-12-13 2024-10-11 01:49:15.000 1987-12-13 2024-10-11 01:49:15 +6556 6556 6557 655.6 1311.2 6556 1987-12-14 2024-10-11 01:49:16.000 1987-12-14 2024-10-11 01:49:16 +6557 6557 6558 655.7 1311.4 6557 1987-12-15 2024-10-11 01:49:17.000 1987-12-15 2024-10-11 01:49:17 +6558 6558 6559 655.8 1311.6000000000001 6558 1987-12-16 2024-10-11 01:49:18.000 1987-12-16 2024-10-11 01:49:18 +6559 6559 6560 655.9 1311.8000000000002 6559 1987-12-17 2024-10-11 01:49:19.000 1987-12-17 2024-10-11 01:49:19 +6560 6560 6561 656 1312 6560 1987-12-18 2024-10-11 01:49:20.000 1987-12-18 2024-10-11 01:49:20 +6561 6561 6562 656.1 1312.2 6561 1987-12-19 2024-10-11 01:49:21.000 1987-12-19 2024-10-11 01:49:21 +6562 6562 6563 656.2 1312.4 6562 1987-12-20 2024-10-11 01:49:22.000 1987-12-20 2024-10-11 01:49:22 +6563 6563 6564 656.3 1312.6000000000001 6563 1987-12-21 2024-10-11 01:49:23.000 1987-12-21 2024-10-11 01:49:23 +6564 6564 6565 656.4 1312.8000000000002 6564 1987-12-22 2024-10-11 01:49:24.000 1987-12-22 2024-10-11 01:49:24 +6565 6565 6566 656.5 1313 6565 1987-12-23 2024-10-11 01:49:25.000 1987-12-23 2024-10-11 01:49:25 +6566 6566 6567 656.6 1313.2 6566 1987-12-24 2024-10-11 01:49:26.000 1987-12-24 2024-10-11 01:49:26 +6567 6567 6568 656.7 1313.4 6567 1987-12-25 2024-10-11 01:49:27.000 1987-12-25 2024-10-11 01:49:27 +6568 6568 6569 656.8 1313.6000000000001 6568 1987-12-26 2024-10-11 01:49:28.000 1987-12-26 2024-10-11 01:49:28 +6569 6569 6570 656.9 1313.8000000000002 6569 1987-12-27 2024-10-11 01:49:29.000 1987-12-27 2024-10-11 01:49:29 +6570 6570 6571 657 1314 6570 1987-12-28 2024-10-11 01:49:30.000 1987-12-28 2024-10-11 01:49:30 +6571 6571 6572 657.1 1314.2 6571 1987-12-29 2024-10-11 01:49:31.000 1987-12-29 2024-10-11 01:49:31 +6572 6572 6573 657.2 1314.4 6572 1987-12-30 2024-10-11 01:49:32.000 1987-12-30 2024-10-11 01:49:32 +6573 6573 6574 657.3 1314.6000000000001 6573 1987-12-31 2024-10-11 01:49:33.000 1987-12-31 2024-10-11 01:49:33 +6574 6574 6575 657.4 1314.8000000000002 6574 1988-01-01 2024-10-11 01:49:34.000 1988-01-01 2024-10-11 01:49:34 +6575 6575 6576 657.5 1315 6575 1988-01-02 2024-10-11 01:49:35.000 1988-01-02 2024-10-11 01:49:35 +6576 6576 6577 657.6 1315.2 6576 1988-01-03 2024-10-11 01:49:36.000 1988-01-03 2024-10-11 01:49:36 +6577 6577 6578 657.7 1315.4 6577 1988-01-04 2024-10-11 01:49:37.000 1988-01-04 2024-10-11 01:49:37 +6578 6578 6579 657.8 1315.6000000000001 6578 1988-01-05 2024-10-11 01:49:38.000 1988-01-05 2024-10-11 01:49:38 +6579 6579 6580 657.9 1315.8000000000002 6579 1988-01-06 2024-10-11 01:49:39.000 1988-01-06 2024-10-11 01:49:39 +6580 6580 6581 658 1316 6580 1988-01-07 2024-10-11 01:49:40.000 1988-01-07 2024-10-11 01:49:40 +6581 6581 6582 658.1 1316.2 6581 1988-01-08 2024-10-11 01:49:41.000 1988-01-08 2024-10-11 01:49:41 +6582 6582 6583 658.2 1316.4 6582 1988-01-09 2024-10-11 01:49:42.000 1988-01-09 2024-10-11 01:49:42 +6583 6583 6584 658.3 1316.6000000000001 6583 1988-01-10 2024-10-11 01:49:43.000 1988-01-10 2024-10-11 01:49:43 +6584 6584 6585 658.4 1316.8000000000002 6584 1988-01-11 2024-10-11 01:49:44.000 1988-01-11 2024-10-11 01:49:44 +6585 6585 6586 658.5 1317 6585 1988-01-12 2024-10-11 01:49:45.000 1988-01-12 2024-10-11 01:49:45 +6586 6586 6587 658.6 1317.2 6586 1988-01-13 2024-10-11 01:49:46.000 1988-01-13 2024-10-11 01:49:46 +6587 6587 6588 658.7 1317.4 6587 1988-01-14 2024-10-11 01:49:47.000 1988-01-14 2024-10-11 01:49:47 +6588 6588 6589 658.8 1317.6000000000001 6588 1988-01-15 2024-10-11 01:49:48.000 1988-01-15 2024-10-11 01:49:48 +6589 6589 6590 658.9 1317.8000000000002 6589 1988-01-16 2024-10-11 01:49:49.000 1988-01-16 2024-10-11 01:49:49 +6590 6590 6591 659 1318 6590 1988-01-17 2024-10-11 01:49:50.000 1988-01-17 2024-10-11 01:49:50 +6591 6591 6592 659.1 1318.2 6591 1988-01-18 2024-10-11 01:49:51.000 1988-01-18 2024-10-11 01:49:51 +6592 6592 6593 659.2 1318.4 6592 1988-01-19 2024-10-11 01:49:52.000 1988-01-19 2024-10-11 01:49:52 +6593 6593 6594 659.3 1318.6000000000001 6593 1988-01-20 2024-10-11 01:49:53.000 1988-01-20 2024-10-11 01:49:53 +6594 6594 6595 659.4 1318.8000000000002 6594 1988-01-21 2024-10-11 01:49:54.000 1988-01-21 2024-10-11 01:49:54 +6595 6595 6596 659.5 1319 6595 1988-01-22 2024-10-11 01:49:55.000 1988-01-22 2024-10-11 01:49:55 +6596 6596 6597 659.6 1319.2 6596 1988-01-23 2024-10-11 01:49:56.000 1988-01-23 2024-10-11 01:49:56 +6597 6597 6598 659.7 1319.4 6597 1988-01-24 2024-10-11 01:49:57.000 1988-01-24 2024-10-11 01:49:57 +6598 6598 6599 659.8 1319.6000000000001 6598 1988-01-25 2024-10-11 01:49:58.000 1988-01-25 2024-10-11 01:49:58 +6599 6599 6600 659.9 1319.8000000000002 6599 1988-01-26 2024-10-11 01:49:59.000 1988-01-26 2024-10-11 01:49:59 +6600 6600 6601 660 1320 6600 1988-01-27 2024-10-11 01:50:00.000 1988-01-27 2024-10-11 01:50:00 +6601 6601 6602 660.1 1320.2 6601 1988-01-28 2024-10-11 01:50:01.000 1988-01-28 2024-10-11 01:50:01 +6602 6602 6603 660.2 1320.4 6602 1988-01-29 2024-10-11 01:50:02.000 1988-01-29 2024-10-11 01:50:02 +6603 6603 6604 660.3 1320.6000000000001 6603 1988-01-30 2024-10-11 01:50:03.000 1988-01-30 2024-10-11 01:50:03 +6604 6604 6605 660.4 1320.8000000000002 6604 1988-01-31 2024-10-11 01:50:04.000 1988-01-31 2024-10-11 01:50:04 +6605 6605 6606 660.5 1321 6605 1988-02-01 2024-10-11 01:50:05.000 1988-02-01 2024-10-11 01:50:05 +6606 6606 6607 660.6 1321.2 6606 1988-02-02 2024-10-11 01:50:06.000 1988-02-02 2024-10-11 01:50:06 +6607 6607 6608 660.7 1321.4 6607 1988-02-03 2024-10-11 01:50:07.000 1988-02-03 2024-10-11 01:50:07 +6608 6608 6609 660.8 1321.6000000000001 6608 1988-02-04 2024-10-11 01:50:08.000 1988-02-04 2024-10-11 01:50:08 +6609 6609 6610 660.9 1321.8000000000002 6609 1988-02-05 2024-10-11 01:50:09.000 1988-02-05 2024-10-11 01:50:09 +6610 6610 6611 661 1322 6610 1988-02-06 2024-10-11 01:50:10.000 1988-02-06 2024-10-11 01:50:10 +6611 6611 6612 661.1 1322.2 6611 1988-02-07 2024-10-11 01:50:11.000 1988-02-07 2024-10-11 01:50:11 +6612 6612 6613 661.2 1322.4 6612 1988-02-08 2024-10-11 01:50:12.000 1988-02-08 2024-10-11 01:50:12 +6613 6613 6614 661.3 1322.6000000000001 6613 1988-02-09 2024-10-11 01:50:13.000 1988-02-09 2024-10-11 01:50:13 +6614 6614 6615 661.4 1322.8000000000002 6614 1988-02-10 2024-10-11 01:50:14.000 1988-02-10 2024-10-11 01:50:14 +6615 6615 6616 661.5 1323 6615 1988-02-11 2024-10-11 01:50:15.000 1988-02-11 2024-10-11 01:50:15 +6616 6616 6617 661.6 1323.2 6616 1988-02-12 2024-10-11 01:50:16.000 1988-02-12 2024-10-11 01:50:16 +6617 6617 6618 661.7 1323.4 6617 1988-02-13 2024-10-11 01:50:17.000 1988-02-13 2024-10-11 01:50:17 +6618 6618 6619 661.8 1323.6000000000001 6618 1988-02-14 2024-10-11 01:50:18.000 1988-02-14 2024-10-11 01:50:18 +6619 6619 6620 661.9 1323.8000000000002 6619 1988-02-15 2024-10-11 01:50:19.000 1988-02-15 2024-10-11 01:50:19 +6620 6620 6621 662 1324 6620 1988-02-16 2024-10-11 01:50:20.000 1988-02-16 2024-10-11 01:50:20 +6621 6621 6622 662.1 1324.2 6621 1988-02-17 2024-10-11 01:50:21.000 1988-02-17 2024-10-11 01:50:21 +6622 6622 6623 662.2 1324.4 6622 1988-02-18 2024-10-11 01:50:22.000 1988-02-18 2024-10-11 01:50:22 +6623 6623 6624 662.3 1324.6000000000001 6623 1988-02-19 2024-10-11 01:50:23.000 1988-02-19 2024-10-11 01:50:23 +6624 6624 6625 662.4 1324.8000000000002 6624 1988-02-20 2024-10-11 01:50:24.000 1988-02-20 2024-10-11 01:50:24 +6625 6625 6626 662.5 1325 6625 1988-02-21 2024-10-11 01:50:25.000 1988-02-21 2024-10-11 01:50:25 +6626 6626 6627 662.6 1325.2 6626 1988-02-22 2024-10-11 01:50:26.000 1988-02-22 2024-10-11 01:50:26 +6627 6627 6628 662.7 1325.4 6627 1988-02-23 2024-10-11 01:50:27.000 1988-02-23 2024-10-11 01:50:27 +6628 6628 6629 662.8 1325.6000000000001 6628 1988-02-24 2024-10-11 01:50:28.000 1988-02-24 2024-10-11 01:50:28 +6629 6629 6630 662.9 1325.8000000000002 6629 1988-02-25 2024-10-11 01:50:29.000 1988-02-25 2024-10-11 01:50:29 +6630 6630 6631 663 1326 6630 1988-02-26 2024-10-11 01:50:30.000 1988-02-26 2024-10-11 01:50:30 +6631 6631 6632 663.1 1326.2 6631 1988-02-27 2024-10-11 01:50:31.000 1988-02-27 2024-10-11 01:50:31 +6632 6632 6633 663.2 1326.4 6632 1988-02-28 2024-10-11 01:50:32.000 1988-02-28 2024-10-11 01:50:32 +6633 6633 6634 663.3 1326.6000000000001 6633 1988-02-29 2024-10-11 01:50:33.000 1988-02-29 2024-10-11 01:50:33 +6634 6634 6635 663.4 1326.8000000000002 6634 1988-03-01 2024-10-11 01:50:34.000 1988-03-01 2024-10-11 01:50:34 +6635 6635 6636 663.5 1327 6635 1988-03-02 2024-10-11 01:50:35.000 1988-03-02 2024-10-11 01:50:35 +6636 6636 6637 663.6 1327.2 6636 1988-03-03 2024-10-11 01:50:36.000 1988-03-03 2024-10-11 01:50:36 +6637 6637 6638 663.7 1327.4 6637 1988-03-04 2024-10-11 01:50:37.000 1988-03-04 2024-10-11 01:50:37 +6638 6638 6639 663.8 1327.6000000000001 6638 1988-03-05 2024-10-11 01:50:38.000 1988-03-05 2024-10-11 01:50:38 +6639 6639 6640 663.9 1327.8000000000002 6639 1988-03-06 2024-10-11 01:50:39.000 1988-03-06 2024-10-11 01:50:39 +6640 6640 6641 664 1328 6640 1988-03-07 2024-10-11 01:50:40.000 1988-03-07 2024-10-11 01:50:40 +6641 6641 6642 664.1 1328.2 6641 1988-03-08 2024-10-11 01:50:41.000 1988-03-08 2024-10-11 01:50:41 +6642 6642 6643 664.2 1328.4 6642 1988-03-09 2024-10-11 01:50:42.000 1988-03-09 2024-10-11 01:50:42 +6643 6643 6644 664.3 1328.6000000000001 6643 1988-03-10 2024-10-11 01:50:43.000 1988-03-10 2024-10-11 01:50:43 +6644 6644 6645 664.4 1328.8000000000002 6644 1988-03-11 2024-10-11 01:50:44.000 1988-03-11 2024-10-11 01:50:44 +6645 6645 6646 664.5 1329 6645 1988-03-12 2024-10-11 01:50:45.000 1988-03-12 2024-10-11 01:50:45 +6646 6646 6647 664.6 1329.2 6646 1988-03-13 2024-10-11 01:50:46.000 1988-03-13 2024-10-11 01:50:46 +6647 6647 6648 664.7 1329.4 6647 1988-03-14 2024-10-11 01:50:47.000 1988-03-14 2024-10-11 01:50:47 +6648 6648 6649 664.8 1329.6000000000001 6648 1988-03-15 2024-10-11 01:50:48.000 1988-03-15 2024-10-11 01:50:48 +6649 6649 6650 664.9 1329.8000000000002 6649 1988-03-16 2024-10-11 01:50:49.000 1988-03-16 2024-10-11 01:50:49 +6650 6650 6651 665 1330 6650 1988-03-17 2024-10-11 01:50:50.000 1988-03-17 2024-10-11 01:50:50 +6651 6651 6652 665.1 1330.2 6651 1988-03-18 2024-10-11 01:50:51.000 1988-03-18 2024-10-11 01:50:51 +6652 6652 6653 665.2 1330.4 6652 1988-03-19 2024-10-11 01:50:52.000 1988-03-19 2024-10-11 01:50:52 +6653 6653 6654 665.3 1330.6000000000001 6653 1988-03-20 2024-10-11 01:50:53.000 1988-03-20 2024-10-11 01:50:53 +6654 6654 6655 665.4 1330.8000000000002 6654 1988-03-21 2024-10-11 01:50:54.000 1988-03-21 2024-10-11 01:50:54 +6655 6655 6656 665.5 1331 6655 1988-03-22 2024-10-11 01:50:55.000 1988-03-22 2024-10-11 01:50:55 +6656 6656 6657 665.6 1331.2 6656 1988-03-23 2024-10-11 01:50:56.000 1988-03-23 2024-10-11 01:50:56 +6657 6657 6658 665.7 1331.4 6657 1988-03-24 2024-10-11 01:50:57.000 1988-03-24 2024-10-11 01:50:57 +6658 6658 6659 665.8 1331.6000000000001 6658 1988-03-25 2024-10-11 01:50:58.000 1988-03-25 2024-10-11 01:50:58 +6659 6659 6660 665.9 1331.8000000000002 6659 1988-03-26 2024-10-11 01:50:59.000 1988-03-26 2024-10-11 01:50:59 +6660 6660 6661 666 1332 6660 1988-03-27 2024-10-11 01:51:00.000 1988-03-27 2024-10-11 01:51:00 +6661 6661 6662 666.1 1332.2 6661 1988-03-28 2024-10-11 01:51:01.000 1988-03-28 2024-10-11 01:51:01 +6662 6662 6663 666.2 1332.4 6662 1988-03-29 2024-10-11 01:51:02.000 1988-03-29 2024-10-11 01:51:02 +6663 6663 6664 666.3 1332.6000000000001 6663 1988-03-30 2024-10-11 01:51:03.000 1988-03-30 2024-10-11 01:51:03 +6664 6664 6665 666.4 1332.8000000000002 6664 1988-03-31 2024-10-11 01:51:04.000 1988-03-31 2024-10-11 01:51:04 +6665 6665 6666 666.5 1333 6665 1988-04-01 2024-10-11 01:51:05.000 1988-04-01 2024-10-11 01:51:05 +6666 6666 6667 666.6 1333.2 6666 1988-04-02 2024-10-11 01:51:06.000 1988-04-02 2024-10-11 01:51:06 +6667 6667 6668 666.7 1333.4 6667 1988-04-03 2024-10-11 01:51:07.000 1988-04-03 2024-10-11 01:51:07 +6668 6668 6669 666.8 1333.6000000000001 6668 1988-04-04 2024-10-11 01:51:08.000 1988-04-04 2024-10-11 01:51:08 +6669 6669 6670 666.9 1333.8000000000002 6669 1988-04-05 2024-10-11 01:51:09.000 1988-04-05 2024-10-11 01:51:09 +6670 6670 6671 667 1334 6670 1988-04-06 2024-10-11 01:51:10.000 1988-04-06 2024-10-11 01:51:10 +6671 6671 6672 667.1 1334.2 6671 1988-04-07 2024-10-11 01:51:11.000 1988-04-07 2024-10-11 01:51:11 +6672 6672 6673 667.2 1334.4 6672 1988-04-08 2024-10-11 01:51:12.000 1988-04-08 2024-10-11 01:51:12 +6673 6673 6674 667.3 1334.6000000000001 6673 1988-04-09 2024-10-11 01:51:13.000 1988-04-09 2024-10-11 01:51:13 +6674 6674 6675 667.4 1334.8000000000002 6674 1988-04-10 2024-10-11 01:51:14.000 1988-04-10 2024-10-11 01:51:14 +6675 6675 6676 667.5 1335 6675 1988-04-11 2024-10-11 01:51:15.000 1988-04-11 2024-10-11 01:51:15 +6676 6676 6677 667.6 1335.2 6676 1988-04-12 2024-10-11 01:51:16.000 1988-04-12 2024-10-11 01:51:16 +6677 6677 6678 667.7 1335.4 6677 1988-04-13 2024-10-11 01:51:17.000 1988-04-13 2024-10-11 01:51:17 +6678 6678 6679 667.8 1335.6000000000001 6678 1988-04-14 2024-10-11 01:51:18.000 1988-04-14 2024-10-11 01:51:18 +6679 6679 6680 667.9 1335.8000000000002 6679 1988-04-15 2024-10-11 01:51:19.000 1988-04-15 2024-10-11 01:51:19 +6680 6680 6681 668 1336 6680 1988-04-16 2024-10-11 01:51:20.000 1988-04-16 2024-10-11 01:51:20 +6681 6681 6682 668.1 1336.2 6681 1988-04-17 2024-10-11 01:51:21.000 1988-04-17 2024-10-11 01:51:21 +6682 6682 6683 668.2 1336.4 6682 1988-04-18 2024-10-11 01:51:22.000 1988-04-18 2024-10-11 01:51:22 +6683 6683 6684 668.3 1336.6000000000001 6683 1988-04-19 2024-10-11 01:51:23.000 1988-04-19 2024-10-11 01:51:23 +6684 6684 6685 668.4 1336.8000000000002 6684 1988-04-20 2024-10-11 01:51:24.000 1988-04-20 2024-10-11 01:51:24 +6685 6685 6686 668.5 1337 6685 1988-04-21 2024-10-11 01:51:25.000 1988-04-21 2024-10-11 01:51:25 +6686 6686 6687 668.6 1337.2 6686 1988-04-22 2024-10-11 01:51:26.000 1988-04-22 2024-10-11 01:51:26 +6687 6687 6688 668.7 1337.4 6687 1988-04-23 2024-10-11 01:51:27.000 1988-04-23 2024-10-11 01:51:27 +6688 6688 6689 668.8 1337.6000000000001 6688 1988-04-24 2024-10-11 01:51:28.000 1988-04-24 2024-10-11 01:51:28 +6689 6689 6690 668.9 1337.8000000000002 6689 1988-04-25 2024-10-11 01:51:29.000 1988-04-25 2024-10-11 01:51:29 +6690 6690 6691 669 1338 6690 1988-04-26 2024-10-11 01:51:30.000 1988-04-26 2024-10-11 01:51:30 +6691 6691 6692 669.1 1338.2 6691 1988-04-27 2024-10-11 01:51:31.000 1988-04-27 2024-10-11 01:51:31 +6692 6692 6693 669.2 1338.4 6692 1988-04-28 2024-10-11 01:51:32.000 1988-04-28 2024-10-11 01:51:32 +6693 6693 6694 669.3 1338.6000000000001 6693 1988-04-29 2024-10-11 01:51:33.000 1988-04-29 2024-10-11 01:51:33 +6694 6694 6695 669.4 1338.8000000000002 6694 1988-04-30 2024-10-11 01:51:34.000 1988-04-30 2024-10-11 01:51:34 +6695 6695 6696 669.5 1339 6695 1988-05-01 2024-10-11 01:51:35.000 1988-05-01 2024-10-11 01:51:35 +6696 6696 6697 669.6 1339.2 6696 1988-05-02 2024-10-11 01:51:36.000 1988-05-02 2024-10-11 01:51:36 +6697 6697 6698 669.7 1339.4 6697 1988-05-03 2024-10-11 01:51:37.000 1988-05-03 2024-10-11 01:51:37 +6698 6698 6699 669.8 1339.6000000000001 6698 1988-05-04 2024-10-11 01:51:38.000 1988-05-04 2024-10-11 01:51:38 +6699 6699 6700 669.9 1339.8000000000002 6699 1988-05-05 2024-10-11 01:51:39.000 1988-05-05 2024-10-11 01:51:39 +6700 6700 6701 670 1340 6700 1988-05-06 2024-10-11 01:51:40.000 1988-05-06 2024-10-11 01:51:40 +6701 6701 6702 670.1 1340.2 6701 1988-05-07 2024-10-11 01:51:41.000 1988-05-07 2024-10-11 01:51:41 +6702 6702 6703 670.2 1340.4 6702 1988-05-08 2024-10-11 01:51:42.000 1988-05-08 2024-10-11 01:51:42 +6703 6703 6704 670.3 1340.6000000000001 6703 1988-05-09 2024-10-11 01:51:43.000 1988-05-09 2024-10-11 01:51:43 +6704 6704 6705 670.4 1340.8000000000002 6704 1988-05-10 2024-10-11 01:51:44.000 1988-05-10 2024-10-11 01:51:44 +6705 6705 6706 670.5 1341 6705 1988-05-11 2024-10-11 01:51:45.000 1988-05-11 2024-10-11 01:51:45 +6706 6706 6707 670.6 1341.2 6706 1988-05-12 2024-10-11 01:51:46.000 1988-05-12 2024-10-11 01:51:46 +6707 6707 6708 670.7 1341.4 6707 1988-05-13 2024-10-11 01:51:47.000 1988-05-13 2024-10-11 01:51:47 +6708 6708 6709 670.8 1341.6000000000001 6708 1988-05-14 2024-10-11 01:51:48.000 1988-05-14 2024-10-11 01:51:48 +6709 6709 6710 670.9 1341.8000000000002 6709 1988-05-15 2024-10-11 01:51:49.000 1988-05-15 2024-10-11 01:51:49 +6710 6710 6711 671 1342 6710 1988-05-16 2024-10-11 01:51:50.000 1988-05-16 2024-10-11 01:51:50 +6711 6711 6712 671.1 1342.2 6711 1988-05-17 2024-10-11 01:51:51.000 1988-05-17 2024-10-11 01:51:51 +6712 6712 6713 671.2 1342.4 6712 1988-05-18 2024-10-11 01:51:52.000 1988-05-18 2024-10-11 01:51:52 +6713 6713 6714 671.3 1342.6000000000001 6713 1988-05-19 2024-10-11 01:51:53.000 1988-05-19 2024-10-11 01:51:53 +6714 6714 6715 671.4 1342.8000000000002 6714 1988-05-20 2024-10-11 01:51:54.000 1988-05-20 2024-10-11 01:51:54 +6715 6715 6716 671.5 1343 6715 1988-05-21 2024-10-11 01:51:55.000 1988-05-21 2024-10-11 01:51:55 +6716 6716 6717 671.6 1343.2 6716 1988-05-22 2024-10-11 01:51:56.000 1988-05-22 2024-10-11 01:51:56 +6717 6717 6718 671.7 1343.4 6717 1988-05-23 2024-10-11 01:51:57.000 1988-05-23 2024-10-11 01:51:57 +6718 6718 6719 671.8 1343.6000000000001 6718 1988-05-24 2024-10-11 01:51:58.000 1988-05-24 2024-10-11 01:51:58 +6719 6719 6720 671.9 1343.8000000000002 6719 1988-05-25 2024-10-11 01:51:59.000 1988-05-25 2024-10-11 01:51:59 +6720 6720 6721 672 1344 6720 1988-05-26 2024-10-11 01:52:00.000 1988-05-26 2024-10-11 01:52:00 +6721 6721 6722 672.1 1344.2 6721 1988-05-27 2024-10-11 01:52:01.000 1988-05-27 2024-10-11 01:52:01 +6722 6722 6723 672.2 1344.4 6722 1988-05-28 2024-10-11 01:52:02.000 1988-05-28 2024-10-11 01:52:02 +6723 6723 6724 672.3 1344.6000000000001 6723 1988-05-29 2024-10-11 01:52:03.000 1988-05-29 2024-10-11 01:52:03 +6724 6724 6725 672.4 1344.8000000000002 6724 1988-05-30 2024-10-11 01:52:04.000 1988-05-30 2024-10-11 01:52:04 +6725 6725 6726 672.5 1345 6725 1988-05-31 2024-10-11 01:52:05.000 1988-05-31 2024-10-11 01:52:05 +6726 6726 6727 672.6 1345.2 6726 1988-06-01 2024-10-11 01:52:06.000 1988-06-01 2024-10-11 01:52:06 +6727 6727 6728 672.7 1345.4 6727 1988-06-02 2024-10-11 01:52:07.000 1988-06-02 2024-10-11 01:52:07 +6728 6728 6729 672.8 1345.6000000000001 6728 1988-06-03 2024-10-11 01:52:08.000 1988-06-03 2024-10-11 01:52:08 +6729 6729 6730 672.9 1345.8000000000002 6729 1988-06-04 2024-10-11 01:52:09.000 1988-06-04 2024-10-11 01:52:09 +6730 6730 6731 673 1346 6730 1988-06-05 2024-10-11 01:52:10.000 1988-06-05 2024-10-11 01:52:10 +6731 6731 6732 673.1 1346.2 6731 1988-06-06 2024-10-11 01:52:11.000 1988-06-06 2024-10-11 01:52:11 +6732 6732 6733 673.2 1346.4 6732 1988-06-07 2024-10-11 01:52:12.000 1988-06-07 2024-10-11 01:52:12 +6733 6733 6734 673.3 1346.6000000000001 6733 1988-06-08 2024-10-11 01:52:13.000 1988-06-08 2024-10-11 01:52:13 +6734 6734 6735 673.4 1346.8000000000002 6734 1988-06-09 2024-10-11 01:52:14.000 1988-06-09 2024-10-11 01:52:14 +6735 6735 6736 673.5 1347 6735 1988-06-10 2024-10-11 01:52:15.000 1988-06-10 2024-10-11 01:52:15 +6736 6736 6737 673.6 1347.2 6736 1988-06-11 2024-10-11 01:52:16.000 1988-06-11 2024-10-11 01:52:16 +6737 6737 6738 673.7 1347.4 6737 1988-06-12 2024-10-11 01:52:17.000 1988-06-12 2024-10-11 01:52:17 +6738 6738 6739 673.8 1347.6000000000001 6738 1988-06-13 2024-10-11 01:52:18.000 1988-06-13 2024-10-11 01:52:18 +6739 6739 6740 673.9 1347.8000000000002 6739 1988-06-14 2024-10-11 01:52:19.000 1988-06-14 2024-10-11 01:52:19 +6740 6740 6741 674 1348 6740 1988-06-15 2024-10-11 01:52:20.000 1988-06-15 2024-10-11 01:52:20 +6741 6741 6742 674.1 1348.2 6741 1988-06-16 2024-10-11 01:52:21.000 1988-06-16 2024-10-11 01:52:21 +6742 6742 6743 674.2 1348.4 6742 1988-06-17 2024-10-11 01:52:22.000 1988-06-17 2024-10-11 01:52:22 +6743 6743 6744 674.3 1348.6000000000001 6743 1988-06-18 2024-10-11 01:52:23.000 1988-06-18 2024-10-11 01:52:23 +6744 6744 6745 674.4 1348.8000000000002 6744 1988-06-19 2024-10-11 01:52:24.000 1988-06-19 2024-10-11 01:52:24 +6745 6745 6746 674.5 1349 6745 1988-06-20 2024-10-11 01:52:25.000 1988-06-20 2024-10-11 01:52:25 +6746 6746 6747 674.6 1349.2 6746 1988-06-21 2024-10-11 01:52:26.000 1988-06-21 2024-10-11 01:52:26 +6747 6747 6748 674.7 1349.4 6747 1988-06-22 2024-10-11 01:52:27.000 1988-06-22 2024-10-11 01:52:27 +6748 6748 6749 674.8 1349.6000000000001 6748 1988-06-23 2024-10-11 01:52:28.000 1988-06-23 2024-10-11 01:52:28 +6749 6749 6750 674.9 1349.8000000000002 6749 1988-06-24 2024-10-11 01:52:29.000 1988-06-24 2024-10-11 01:52:29 +6750 6750 6751 675 1350 6750 1988-06-25 2024-10-11 01:52:30.000 1988-06-25 2024-10-11 01:52:30 +6751 6751 6752 675.1 1350.2 6751 1988-06-26 2024-10-11 01:52:31.000 1988-06-26 2024-10-11 01:52:31 +6752 6752 6753 675.2 1350.4 6752 1988-06-27 2024-10-11 01:52:32.000 1988-06-27 2024-10-11 01:52:32 +6753 6753 6754 675.3 1350.6000000000001 6753 1988-06-28 2024-10-11 01:52:33.000 1988-06-28 2024-10-11 01:52:33 +6754 6754 6755 675.4 1350.8000000000002 6754 1988-06-29 2024-10-11 01:52:34.000 1988-06-29 2024-10-11 01:52:34 +6755 6755 6756 675.5 1351 6755 1988-06-30 2024-10-11 01:52:35.000 1988-06-30 2024-10-11 01:52:35 +6756 6756 6757 675.6 1351.2 6756 1988-07-01 2024-10-11 01:52:36.000 1988-07-01 2024-10-11 01:52:36 +6757 6757 6758 675.7 1351.4 6757 1988-07-02 2024-10-11 01:52:37.000 1988-07-02 2024-10-11 01:52:37 +6758 6758 6759 675.8 1351.6000000000001 6758 1988-07-03 2024-10-11 01:52:38.000 1988-07-03 2024-10-11 01:52:38 +6759 6759 6760 675.9 1351.8000000000002 6759 1988-07-04 2024-10-11 01:52:39.000 1988-07-04 2024-10-11 01:52:39 +6760 6760 6761 676 1352 6760 1988-07-05 2024-10-11 01:52:40.000 1988-07-05 2024-10-11 01:52:40 +6761 6761 6762 676.1 1352.2 6761 1988-07-06 2024-10-11 01:52:41.000 1988-07-06 2024-10-11 01:52:41 +6762 6762 6763 676.2 1352.4 6762 1988-07-07 2024-10-11 01:52:42.000 1988-07-07 2024-10-11 01:52:42 +6763 6763 6764 676.3 1352.6000000000001 6763 1988-07-08 2024-10-11 01:52:43.000 1988-07-08 2024-10-11 01:52:43 +6764 6764 6765 676.4 1352.8000000000002 6764 1988-07-09 2024-10-11 01:52:44.000 1988-07-09 2024-10-11 01:52:44 +6765 6765 6766 676.5 1353 6765 1988-07-10 2024-10-11 01:52:45.000 1988-07-10 2024-10-11 01:52:45 +6766 6766 6767 676.6 1353.2 6766 1988-07-11 2024-10-11 01:52:46.000 1988-07-11 2024-10-11 01:52:46 +6767 6767 6768 676.7 1353.4 6767 1988-07-12 2024-10-11 01:52:47.000 1988-07-12 2024-10-11 01:52:47 +6768 6768 6769 676.8 1353.6000000000001 6768 1988-07-13 2024-10-11 01:52:48.000 1988-07-13 2024-10-11 01:52:48 +6769 6769 6770 676.9 1353.8000000000002 6769 1988-07-14 2024-10-11 01:52:49.000 1988-07-14 2024-10-11 01:52:49 +6770 6770 6771 677 1354 6770 1988-07-15 2024-10-11 01:52:50.000 1988-07-15 2024-10-11 01:52:50 +6771 6771 6772 677.1 1354.2 6771 1988-07-16 2024-10-11 01:52:51.000 1988-07-16 2024-10-11 01:52:51 +6772 6772 6773 677.2 1354.4 6772 1988-07-17 2024-10-11 01:52:52.000 1988-07-17 2024-10-11 01:52:52 +6773 6773 6774 677.3 1354.6000000000001 6773 1988-07-18 2024-10-11 01:52:53.000 1988-07-18 2024-10-11 01:52:53 +6774 6774 6775 677.4 1354.8000000000002 6774 1988-07-19 2024-10-11 01:52:54.000 1988-07-19 2024-10-11 01:52:54 +6775 6775 6776 677.5 1355 6775 1988-07-20 2024-10-11 01:52:55.000 1988-07-20 2024-10-11 01:52:55 +6776 6776 6777 677.6 1355.2 6776 1988-07-21 2024-10-11 01:52:56.000 1988-07-21 2024-10-11 01:52:56 +6777 6777 6778 677.7 1355.4 6777 1988-07-22 2024-10-11 01:52:57.000 1988-07-22 2024-10-11 01:52:57 +6778 6778 6779 677.8 1355.6000000000001 6778 1988-07-23 2024-10-11 01:52:58.000 1988-07-23 2024-10-11 01:52:58 +6779 6779 6780 677.9 1355.8000000000002 6779 1988-07-24 2024-10-11 01:52:59.000 1988-07-24 2024-10-11 01:52:59 +6780 6780 6781 678 1356 6780 1988-07-25 2024-10-11 01:53:00.000 1988-07-25 2024-10-11 01:53:00 +6781 6781 6782 678.1 1356.2 6781 1988-07-26 2024-10-11 01:53:01.000 1988-07-26 2024-10-11 01:53:01 +6782 6782 6783 678.2 1356.4 6782 1988-07-27 2024-10-11 01:53:02.000 1988-07-27 2024-10-11 01:53:02 +6783 6783 6784 678.3 1356.6000000000001 6783 1988-07-28 2024-10-11 01:53:03.000 1988-07-28 2024-10-11 01:53:03 +6784 6784 6785 678.4 1356.8000000000002 6784 1988-07-29 2024-10-11 01:53:04.000 1988-07-29 2024-10-11 01:53:04 +6785 6785 6786 678.5 1357 6785 1988-07-30 2024-10-11 01:53:05.000 1988-07-30 2024-10-11 01:53:05 +6786 6786 6787 678.6 1357.2 6786 1988-07-31 2024-10-11 01:53:06.000 1988-07-31 2024-10-11 01:53:06 +6787 6787 6788 678.7 1357.4 6787 1988-08-01 2024-10-11 01:53:07.000 1988-08-01 2024-10-11 01:53:07 +6788 6788 6789 678.8 1357.6000000000001 6788 1988-08-02 2024-10-11 01:53:08.000 1988-08-02 2024-10-11 01:53:08 +6789 6789 6790 678.9 1357.8000000000002 6789 1988-08-03 2024-10-11 01:53:09.000 1988-08-03 2024-10-11 01:53:09 +6790 6790 6791 679 1358 6790 1988-08-04 2024-10-11 01:53:10.000 1988-08-04 2024-10-11 01:53:10 +6791 6791 6792 679.1 1358.2 6791 1988-08-05 2024-10-11 01:53:11.000 1988-08-05 2024-10-11 01:53:11 +6792 6792 6793 679.2 1358.4 6792 1988-08-06 2024-10-11 01:53:12.000 1988-08-06 2024-10-11 01:53:12 +6793 6793 6794 679.3 1358.6000000000001 6793 1988-08-07 2024-10-11 01:53:13.000 1988-08-07 2024-10-11 01:53:13 +6794 6794 6795 679.4 1358.8000000000002 6794 1988-08-08 2024-10-11 01:53:14.000 1988-08-08 2024-10-11 01:53:14 +6795 6795 6796 679.5 1359 6795 1988-08-09 2024-10-11 01:53:15.000 1988-08-09 2024-10-11 01:53:15 +6796 6796 6797 679.6 1359.2 6796 1988-08-10 2024-10-11 01:53:16.000 1988-08-10 2024-10-11 01:53:16 +6797 6797 6798 679.7 1359.4 6797 1988-08-11 2024-10-11 01:53:17.000 1988-08-11 2024-10-11 01:53:17 +6798 6798 6799 679.8 1359.6000000000001 6798 1988-08-12 2024-10-11 01:53:18.000 1988-08-12 2024-10-11 01:53:18 +6799 6799 6800 679.9 1359.8000000000002 6799 1988-08-13 2024-10-11 01:53:19.000 1988-08-13 2024-10-11 01:53:19 +6800 6800 6801 680 1360 6800 1988-08-14 2024-10-11 01:53:20.000 1988-08-14 2024-10-11 01:53:20 +6801 6801 6802 680.1 1360.2 6801 1988-08-15 2024-10-11 01:53:21.000 1988-08-15 2024-10-11 01:53:21 +6802 6802 6803 680.2 1360.4 6802 1988-08-16 2024-10-11 01:53:22.000 1988-08-16 2024-10-11 01:53:22 +6803 6803 6804 680.3 1360.6000000000001 6803 1988-08-17 2024-10-11 01:53:23.000 1988-08-17 2024-10-11 01:53:23 +6804 6804 6805 680.4 1360.8000000000002 6804 1988-08-18 2024-10-11 01:53:24.000 1988-08-18 2024-10-11 01:53:24 +6805 6805 6806 680.5 1361 6805 1988-08-19 2024-10-11 01:53:25.000 1988-08-19 2024-10-11 01:53:25 +6806 6806 6807 680.6 1361.2 6806 1988-08-20 2024-10-11 01:53:26.000 1988-08-20 2024-10-11 01:53:26 +6807 6807 6808 680.7 1361.4 6807 1988-08-21 2024-10-11 01:53:27.000 1988-08-21 2024-10-11 01:53:27 +6808 6808 6809 680.8 1361.6000000000001 6808 1988-08-22 2024-10-11 01:53:28.000 1988-08-22 2024-10-11 01:53:28 +6809 6809 6810 680.9 1361.8000000000002 6809 1988-08-23 2024-10-11 01:53:29.000 1988-08-23 2024-10-11 01:53:29 +6810 6810 6811 681 1362 6810 1988-08-24 2024-10-11 01:53:30.000 1988-08-24 2024-10-11 01:53:30 +6811 6811 6812 681.1 1362.2 6811 1988-08-25 2024-10-11 01:53:31.000 1988-08-25 2024-10-11 01:53:31 +6812 6812 6813 681.2 1362.4 6812 1988-08-26 2024-10-11 01:53:32.000 1988-08-26 2024-10-11 01:53:32 +6813 6813 6814 681.3 1362.6000000000001 6813 1988-08-27 2024-10-11 01:53:33.000 1988-08-27 2024-10-11 01:53:33 +6814 6814 6815 681.4 1362.8000000000002 6814 1988-08-28 2024-10-11 01:53:34.000 1988-08-28 2024-10-11 01:53:34 +6815 6815 6816 681.5 1363 6815 1988-08-29 2024-10-11 01:53:35.000 1988-08-29 2024-10-11 01:53:35 +6816 6816 6817 681.6 1363.2 6816 1988-08-30 2024-10-11 01:53:36.000 1988-08-30 2024-10-11 01:53:36 +6817 6817 6818 681.7 1363.4 6817 1988-08-31 2024-10-11 01:53:37.000 1988-08-31 2024-10-11 01:53:37 +6818 6818 6819 681.8 1363.6000000000001 6818 1988-09-01 2024-10-11 01:53:38.000 1988-09-01 2024-10-11 01:53:38 +6819 6819 6820 681.9 1363.8000000000002 6819 1988-09-02 2024-10-11 01:53:39.000 1988-09-02 2024-10-11 01:53:39 +6820 6820 6821 682 1364 6820 1988-09-03 2024-10-11 01:53:40.000 1988-09-03 2024-10-11 01:53:40 +6821 6821 6822 682.1 1364.2 6821 1988-09-04 2024-10-11 01:53:41.000 1988-09-04 2024-10-11 01:53:41 +6822 6822 6823 682.2 1364.4 6822 1988-09-05 2024-10-11 01:53:42.000 1988-09-05 2024-10-11 01:53:42 +6823 6823 6824 682.3 1364.6000000000001 6823 1988-09-06 2024-10-11 01:53:43.000 1988-09-06 2024-10-11 01:53:43 +6824 6824 6825 682.4 1364.8000000000002 6824 1988-09-07 2024-10-11 01:53:44.000 1988-09-07 2024-10-11 01:53:44 +6825 6825 6826 682.5 1365 6825 1988-09-08 2024-10-11 01:53:45.000 1988-09-08 2024-10-11 01:53:45 +6826 6826 6827 682.6 1365.2 6826 1988-09-09 2024-10-11 01:53:46.000 1988-09-09 2024-10-11 01:53:46 +6827 6827 6828 682.7 1365.4 6827 1988-09-10 2024-10-11 01:53:47.000 1988-09-10 2024-10-11 01:53:47 +6828 6828 6829 682.8 1365.6000000000001 6828 1988-09-11 2024-10-11 01:53:48.000 1988-09-11 2024-10-11 01:53:48 +6829 6829 6830 682.9 1365.8000000000002 6829 1988-09-12 2024-10-11 01:53:49.000 1988-09-12 2024-10-11 01:53:49 +6830 6830 6831 683 1366 6830 1988-09-13 2024-10-11 01:53:50.000 1988-09-13 2024-10-11 01:53:50 +6831 6831 6832 683.1 1366.2 6831 1988-09-14 2024-10-11 01:53:51.000 1988-09-14 2024-10-11 01:53:51 +6832 6832 6833 683.2 1366.4 6832 1988-09-15 2024-10-11 01:53:52.000 1988-09-15 2024-10-11 01:53:52 +6833 6833 6834 683.3 1366.6000000000001 6833 1988-09-16 2024-10-11 01:53:53.000 1988-09-16 2024-10-11 01:53:53 +6834 6834 6835 683.4 1366.8000000000002 6834 1988-09-17 2024-10-11 01:53:54.000 1988-09-17 2024-10-11 01:53:54 +6835 6835 6836 683.5 1367 6835 1988-09-18 2024-10-11 01:53:55.000 1988-09-18 2024-10-11 01:53:55 +6836 6836 6837 683.6 1367.2 6836 1988-09-19 2024-10-11 01:53:56.000 1988-09-19 2024-10-11 01:53:56 +6837 6837 6838 683.7 1367.4 6837 1988-09-20 2024-10-11 01:53:57.000 1988-09-20 2024-10-11 01:53:57 +6838 6838 6839 683.8 1367.6000000000001 6838 1988-09-21 2024-10-11 01:53:58.000 1988-09-21 2024-10-11 01:53:58 +6839 6839 6840 683.9 1367.8000000000002 6839 1988-09-22 2024-10-11 01:53:59.000 1988-09-22 2024-10-11 01:53:59 +6840 6840 6841 684 1368 6840 1988-09-23 2024-10-11 01:54:00.000 1988-09-23 2024-10-11 01:54:00 +6841 6841 6842 684.1 1368.2 6841 1988-09-24 2024-10-11 01:54:01.000 1988-09-24 2024-10-11 01:54:01 +6842 6842 6843 684.2 1368.4 6842 1988-09-25 2024-10-11 01:54:02.000 1988-09-25 2024-10-11 01:54:02 +6843 6843 6844 684.3 1368.6000000000001 6843 1988-09-26 2024-10-11 01:54:03.000 1988-09-26 2024-10-11 01:54:03 +6844 6844 6845 684.4 1368.8000000000002 6844 1988-09-27 2024-10-11 01:54:04.000 1988-09-27 2024-10-11 01:54:04 +6845 6845 6846 684.5 1369 6845 1988-09-28 2024-10-11 01:54:05.000 1988-09-28 2024-10-11 01:54:05 +6846 6846 6847 684.6 1369.2 6846 1988-09-29 2024-10-11 01:54:06.000 1988-09-29 2024-10-11 01:54:06 +6847 6847 6848 684.7 1369.4 6847 1988-09-30 2024-10-11 01:54:07.000 1988-09-30 2024-10-11 01:54:07 +6848 6848 6849 684.8 1369.6000000000001 6848 1988-10-01 2024-10-11 01:54:08.000 1988-10-01 2024-10-11 01:54:08 +6849 6849 6850 684.9 1369.8000000000002 6849 1988-10-02 2024-10-11 01:54:09.000 1988-10-02 2024-10-11 01:54:09 +6850 6850 6851 685 1370 6850 1988-10-03 2024-10-11 01:54:10.000 1988-10-03 2024-10-11 01:54:10 +6851 6851 6852 685.1 1370.2 6851 1988-10-04 2024-10-11 01:54:11.000 1988-10-04 2024-10-11 01:54:11 +6852 6852 6853 685.2 1370.4 6852 1988-10-05 2024-10-11 01:54:12.000 1988-10-05 2024-10-11 01:54:12 +6853 6853 6854 685.3 1370.6000000000001 6853 1988-10-06 2024-10-11 01:54:13.000 1988-10-06 2024-10-11 01:54:13 +6854 6854 6855 685.4 1370.8000000000002 6854 1988-10-07 2024-10-11 01:54:14.000 1988-10-07 2024-10-11 01:54:14 +6855 6855 6856 685.5 1371 6855 1988-10-08 2024-10-11 01:54:15.000 1988-10-08 2024-10-11 01:54:15 +6856 6856 6857 685.6 1371.2 6856 1988-10-09 2024-10-11 01:54:16.000 1988-10-09 2024-10-11 01:54:16 +6857 6857 6858 685.7 1371.4 6857 1988-10-10 2024-10-11 01:54:17.000 1988-10-10 2024-10-11 01:54:17 +6858 6858 6859 685.8 1371.6000000000001 6858 1988-10-11 2024-10-11 01:54:18.000 1988-10-11 2024-10-11 01:54:18 +6859 6859 6860 685.9 1371.8000000000002 6859 1988-10-12 2024-10-11 01:54:19.000 1988-10-12 2024-10-11 01:54:19 +6860 6860 6861 686 1372 6860 1988-10-13 2024-10-11 01:54:20.000 1988-10-13 2024-10-11 01:54:20 +6861 6861 6862 686.1 1372.2 6861 1988-10-14 2024-10-11 01:54:21.000 1988-10-14 2024-10-11 01:54:21 +6862 6862 6863 686.2 1372.4 6862 1988-10-15 2024-10-11 01:54:22.000 1988-10-15 2024-10-11 01:54:22 +6863 6863 6864 686.3 1372.6000000000001 6863 1988-10-16 2024-10-11 01:54:23.000 1988-10-16 2024-10-11 01:54:23 +6864 6864 6865 686.4 1372.8000000000002 6864 1988-10-17 2024-10-11 01:54:24.000 1988-10-17 2024-10-11 01:54:24 +6865 6865 6866 686.5 1373 6865 1988-10-18 2024-10-11 01:54:25.000 1988-10-18 2024-10-11 01:54:25 +6866 6866 6867 686.6 1373.2 6866 1988-10-19 2024-10-11 01:54:26.000 1988-10-19 2024-10-11 01:54:26 +6867 6867 6868 686.7 1373.4 6867 1988-10-20 2024-10-11 01:54:27.000 1988-10-20 2024-10-11 01:54:27 +6868 6868 6869 686.8 1373.6000000000001 6868 1988-10-21 2024-10-11 01:54:28.000 1988-10-21 2024-10-11 01:54:28 +6869 6869 6870 686.9 1373.8000000000002 6869 1988-10-22 2024-10-11 01:54:29.000 1988-10-22 2024-10-11 01:54:29 +6870 6870 6871 687 1374 6870 1988-10-23 2024-10-11 01:54:30.000 1988-10-23 2024-10-11 01:54:30 +6871 6871 6872 687.1 1374.2 6871 1988-10-24 2024-10-11 01:54:31.000 1988-10-24 2024-10-11 01:54:31 +6872 6872 6873 687.2 1374.4 6872 1988-10-25 2024-10-11 01:54:32.000 1988-10-25 2024-10-11 01:54:32 +6873 6873 6874 687.3 1374.6000000000001 6873 1988-10-26 2024-10-11 01:54:33.000 1988-10-26 2024-10-11 01:54:33 +6874 6874 6875 687.4 1374.8000000000002 6874 1988-10-27 2024-10-11 01:54:34.000 1988-10-27 2024-10-11 01:54:34 +6875 6875 6876 687.5 1375 6875 1988-10-28 2024-10-11 01:54:35.000 1988-10-28 2024-10-11 01:54:35 +6876 6876 6877 687.6 1375.2 6876 1988-10-29 2024-10-11 01:54:36.000 1988-10-29 2024-10-11 01:54:36 +6877 6877 6878 687.7 1375.4 6877 1988-10-30 2024-10-11 01:54:37.000 1988-10-30 2024-10-11 01:54:37 +6878 6878 6879 687.8 1375.6000000000001 6878 1988-10-31 2024-10-11 01:54:38.000 1988-10-31 2024-10-11 01:54:38 +6879 6879 6880 687.9 1375.8000000000002 6879 1988-11-01 2024-10-11 01:54:39.000 1988-11-01 2024-10-11 01:54:39 +6880 6880 6881 688 1376 6880 1988-11-02 2024-10-11 01:54:40.000 1988-11-02 2024-10-11 01:54:40 +6881 6881 6882 688.1 1376.2 6881 1988-11-03 2024-10-11 01:54:41.000 1988-11-03 2024-10-11 01:54:41 +6882 6882 6883 688.2 1376.4 6882 1988-11-04 2024-10-11 01:54:42.000 1988-11-04 2024-10-11 01:54:42 +6883 6883 6884 688.3 1376.6000000000001 6883 1988-11-05 2024-10-11 01:54:43.000 1988-11-05 2024-10-11 01:54:43 +6884 6884 6885 688.4 1376.8000000000002 6884 1988-11-06 2024-10-11 01:54:44.000 1988-11-06 2024-10-11 01:54:44 +6885 6885 6886 688.5 1377 6885 1988-11-07 2024-10-11 01:54:45.000 1988-11-07 2024-10-11 01:54:45 +6886 6886 6887 688.6 1377.2 6886 1988-11-08 2024-10-11 01:54:46.000 1988-11-08 2024-10-11 01:54:46 +6887 6887 6888 688.7 1377.4 6887 1988-11-09 2024-10-11 01:54:47.000 1988-11-09 2024-10-11 01:54:47 +6888 6888 6889 688.8 1377.6000000000001 6888 1988-11-10 2024-10-11 01:54:48.000 1988-11-10 2024-10-11 01:54:48 +6889 6889 6890 688.9 1377.8000000000002 6889 1988-11-11 2024-10-11 01:54:49.000 1988-11-11 2024-10-11 01:54:49 +6890 6890 6891 689 1378 6890 1988-11-12 2024-10-11 01:54:50.000 1988-11-12 2024-10-11 01:54:50 +6891 6891 6892 689.1 1378.2 6891 1988-11-13 2024-10-11 01:54:51.000 1988-11-13 2024-10-11 01:54:51 +6892 6892 6893 689.2 1378.4 6892 1988-11-14 2024-10-11 01:54:52.000 1988-11-14 2024-10-11 01:54:52 +6893 6893 6894 689.3 1378.6000000000001 6893 1988-11-15 2024-10-11 01:54:53.000 1988-11-15 2024-10-11 01:54:53 +6894 6894 6895 689.4 1378.8000000000002 6894 1988-11-16 2024-10-11 01:54:54.000 1988-11-16 2024-10-11 01:54:54 +6895 6895 6896 689.5 1379 6895 1988-11-17 2024-10-11 01:54:55.000 1988-11-17 2024-10-11 01:54:55 +6896 6896 6897 689.6 1379.2 6896 1988-11-18 2024-10-11 01:54:56.000 1988-11-18 2024-10-11 01:54:56 +6897 6897 6898 689.7 1379.4 6897 1988-11-19 2024-10-11 01:54:57.000 1988-11-19 2024-10-11 01:54:57 +6898 6898 6899 689.8 1379.6000000000001 6898 1988-11-20 2024-10-11 01:54:58.000 1988-11-20 2024-10-11 01:54:58 +6899 6899 6900 689.9 1379.8000000000002 6899 1988-11-21 2024-10-11 01:54:59.000 1988-11-21 2024-10-11 01:54:59 +6900 6900 6901 690 1380 6900 1988-11-22 2024-10-11 01:55:00.000 1988-11-22 2024-10-11 01:55:00 +6901 6901 6902 690.1 1380.2 6901 1988-11-23 2024-10-11 01:55:01.000 1988-11-23 2024-10-11 01:55:01 +6902 6902 6903 690.2 1380.4 6902 1988-11-24 2024-10-11 01:55:02.000 1988-11-24 2024-10-11 01:55:02 +6903 6903 6904 690.3 1380.6000000000001 6903 1988-11-25 2024-10-11 01:55:03.000 1988-11-25 2024-10-11 01:55:03 +6904 6904 6905 690.4 1380.8000000000002 6904 1988-11-26 2024-10-11 01:55:04.000 1988-11-26 2024-10-11 01:55:04 +6905 6905 6906 690.5 1381 6905 1988-11-27 2024-10-11 01:55:05.000 1988-11-27 2024-10-11 01:55:05 +6906 6906 6907 690.6 1381.2 6906 1988-11-28 2024-10-11 01:55:06.000 1988-11-28 2024-10-11 01:55:06 +6907 6907 6908 690.7 1381.4 6907 1988-11-29 2024-10-11 01:55:07.000 1988-11-29 2024-10-11 01:55:07 +6908 6908 6909 690.8 1381.6000000000001 6908 1988-11-30 2024-10-11 01:55:08.000 1988-11-30 2024-10-11 01:55:08 +6909 6909 6910 690.9 1381.8000000000002 6909 1988-12-01 2024-10-11 01:55:09.000 1988-12-01 2024-10-11 01:55:09 +6910 6910 6911 691 1382 6910 1988-12-02 2024-10-11 01:55:10.000 1988-12-02 2024-10-11 01:55:10 +6911 6911 6912 691.1 1382.2 6911 1988-12-03 2024-10-11 01:55:11.000 1988-12-03 2024-10-11 01:55:11 +6912 6912 6913 691.2 1382.4 6912 1988-12-04 2024-10-11 01:55:12.000 1988-12-04 2024-10-11 01:55:12 +6913 6913 6914 691.3 1382.6000000000001 6913 1988-12-05 2024-10-11 01:55:13.000 1988-12-05 2024-10-11 01:55:13 +6914 6914 6915 691.4 1382.8000000000002 6914 1988-12-06 2024-10-11 01:55:14.000 1988-12-06 2024-10-11 01:55:14 +6915 6915 6916 691.5 1383 6915 1988-12-07 2024-10-11 01:55:15.000 1988-12-07 2024-10-11 01:55:15 +6916 6916 6917 691.6 1383.2 6916 1988-12-08 2024-10-11 01:55:16.000 1988-12-08 2024-10-11 01:55:16 +6917 6917 6918 691.7 1383.4 6917 1988-12-09 2024-10-11 01:55:17.000 1988-12-09 2024-10-11 01:55:17 +6918 6918 6919 691.8 1383.6000000000001 6918 1988-12-10 2024-10-11 01:55:18.000 1988-12-10 2024-10-11 01:55:18 +6919 6919 6920 691.9 1383.8000000000002 6919 1988-12-11 2024-10-11 01:55:19.000 1988-12-11 2024-10-11 01:55:19 +6920 6920 6921 692 1384 6920 1988-12-12 2024-10-11 01:55:20.000 1988-12-12 2024-10-11 01:55:20 +6921 6921 6922 692.1 1384.2 6921 1988-12-13 2024-10-11 01:55:21.000 1988-12-13 2024-10-11 01:55:21 +6922 6922 6923 692.2 1384.4 6922 1988-12-14 2024-10-11 01:55:22.000 1988-12-14 2024-10-11 01:55:22 +6923 6923 6924 692.3 1384.6000000000001 6923 1988-12-15 2024-10-11 01:55:23.000 1988-12-15 2024-10-11 01:55:23 +6924 6924 6925 692.4 1384.8000000000002 6924 1988-12-16 2024-10-11 01:55:24.000 1988-12-16 2024-10-11 01:55:24 +6925 6925 6926 692.5 1385 6925 1988-12-17 2024-10-11 01:55:25.000 1988-12-17 2024-10-11 01:55:25 +6926 6926 6927 692.6 1385.2 6926 1988-12-18 2024-10-11 01:55:26.000 1988-12-18 2024-10-11 01:55:26 +6927 6927 6928 692.7 1385.4 6927 1988-12-19 2024-10-11 01:55:27.000 1988-12-19 2024-10-11 01:55:27 +6928 6928 6929 692.8 1385.6000000000001 6928 1988-12-20 2024-10-11 01:55:28.000 1988-12-20 2024-10-11 01:55:28 +6929 6929 6930 692.9 1385.8000000000002 6929 1988-12-21 2024-10-11 01:55:29.000 1988-12-21 2024-10-11 01:55:29 +6930 6930 6931 693 1386 6930 1988-12-22 2024-10-11 01:55:30.000 1988-12-22 2024-10-11 01:55:30 +6931 6931 6932 693.1 1386.2 6931 1988-12-23 2024-10-11 01:55:31.000 1988-12-23 2024-10-11 01:55:31 +6932 6932 6933 693.2 1386.4 6932 1988-12-24 2024-10-11 01:55:32.000 1988-12-24 2024-10-11 01:55:32 +6933 6933 6934 693.3 1386.6000000000001 6933 1988-12-25 2024-10-11 01:55:33.000 1988-12-25 2024-10-11 01:55:33 +6934 6934 6935 693.4 1386.8000000000002 6934 1988-12-26 2024-10-11 01:55:34.000 1988-12-26 2024-10-11 01:55:34 +6935 6935 6936 693.5 1387 6935 1988-12-27 2024-10-11 01:55:35.000 1988-12-27 2024-10-11 01:55:35 +6936 6936 6937 693.6 1387.2 6936 1988-12-28 2024-10-11 01:55:36.000 1988-12-28 2024-10-11 01:55:36 +6937 6937 6938 693.7 1387.4 6937 1988-12-29 2024-10-11 01:55:37.000 1988-12-29 2024-10-11 01:55:37 +6938 6938 6939 693.8 1387.6000000000001 6938 1988-12-30 2024-10-11 01:55:38.000 1988-12-30 2024-10-11 01:55:38 +6939 6939 6940 693.9 1387.8000000000002 6939 1988-12-31 2024-10-11 01:55:39.000 1988-12-31 2024-10-11 01:55:39 +6940 6940 6941 694 1388 6940 1989-01-01 2024-10-11 01:55:40.000 1989-01-01 2024-10-11 01:55:40 +6941 6941 6942 694.1 1388.2 6941 1989-01-02 2024-10-11 01:55:41.000 1989-01-02 2024-10-11 01:55:41 +6942 6942 6943 694.2 1388.4 6942 1989-01-03 2024-10-11 01:55:42.000 1989-01-03 2024-10-11 01:55:42 +6943 6943 6944 694.3 1388.6000000000001 6943 1989-01-04 2024-10-11 01:55:43.000 1989-01-04 2024-10-11 01:55:43 +6944 6944 6945 694.4 1388.8000000000002 6944 1989-01-05 2024-10-11 01:55:44.000 1989-01-05 2024-10-11 01:55:44 +6945 6945 6946 694.5 1389 6945 1989-01-06 2024-10-11 01:55:45.000 1989-01-06 2024-10-11 01:55:45 +6946 6946 6947 694.6 1389.2 6946 1989-01-07 2024-10-11 01:55:46.000 1989-01-07 2024-10-11 01:55:46 +6947 6947 6948 694.7 1389.4 6947 1989-01-08 2024-10-11 01:55:47.000 1989-01-08 2024-10-11 01:55:47 +6948 6948 6949 694.8 1389.6000000000001 6948 1989-01-09 2024-10-11 01:55:48.000 1989-01-09 2024-10-11 01:55:48 +6949 6949 6950 694.9 1389.8000000000002 6949 1989-01-10 2024-10-11 01:55:49.000 1989-01-10 2024-10-11 01:55:49 +6950 6950 6951 695 1390 6950 1989-01-11 2024-10-11 01:55:50.000 1989-01-11 2024-10-11 01:55:50 +6951 6951 6952 695.1 1390.2 6951 1989-01-12 2024-10-11 01:55:51.000 1989-01-12 2024-10-11 01:55:51 +6952 6952 6953 695.2 1390.4 6952 1989-01-13 2024-10-11 01:55:52.000 1989-01-13 2024-10-11 01:55:52 +6953 6953 6954 695.3 1390.6000000000001 6953 1989-01-14 2024-10-11 01:55:53.000 1989-01-14 2024-10-11 01:55:53 +6954 6954 6955 695.4 1390.8000000000002 6954 1989-01-15 2024-10-11 01:55:54.000 1989-01-15 2024-10-11 01:55:54 +6955 6955 6956 695.5 1391 6955 1989-01-16 2024-10-11 01:55:55.000 1989-01-16 2024-10-11 01:55:55 +6956 6956 6957 695.6 1391.2 6956 1989-01-17 2024-10-11 01:55:56.000 1989-01-17 2024-10-11 01:55:56 +6957 6957 6958 695.7 1391.4 6957 1989-01-18 2024-10-11 01:55:57.000 1989-01-18 2024-10-11 01:55:57 +6958 6958 6959 695.8 1391.6000000000001 6958 1989-01-19 2024-10-11 01:55:58.000 1989-01-19 2024-10-11 01:55:58 +6959 6959 6960 695.9 1391.8000000000002 6959 1989-01-20 2024-10-11 01:55:59.000 1989-01-20 2024-10-11 01:55:59 +6960 6960 6961 696 1392 6960 1989-01-21 2024-10-11 01:56:00.000 1989-01-21 2024-10-11 01:56:00 +6961 6961 6962 696.1 1392.2 6961 1989-01-22 2024-10-11 01:56:01.000 1989-01-22 2024-10-11 01:56:01 +6962 6962 6963 696.2 1392.4 6962 1989-01-23 2024-10-11 01:56:02.000 1989-01-23 2024-10-11 01:56:02 +6963 6963 6964 696.3 1392.6000000000001 6963 1989-01-24 2024-10-11 01:56:03.000 1989-01-24 2024-10-11 01:56:03 +6964 6964 6965 696.4 1392.8000000000002 6964 1989-01-25 2024-10-11 01:56:04.000 1989-01-25 2024-10-11 01:56:04 +6965 6965 6966 696.5 1393 6965 1989-01-26 2024-10-11 01:56:05.000 1989-01-26 2024-10-11 01:56:05 +6966 6966 6967 696.6 1393.2 6966 1989-01-27 2024-10-11 01:56:06.000 1989-01-27 2024-10-11 01:56:06 +6967 6967 6968 696.7 1393.4 6967 1989-01-28 2024-10-11 01:56:07.000 1989-01-28 2024-10-11 01:56:07 +6968 6968 6969 696.8 1393.6000000000001 6968 1989-01-29 2024-10-11 01:56:08.000 1989-01-29 2024-10-11 01:56:08 +6969 6969 6970 696.9 1393.8000000000002 6969 1989-01-30 2024-10-11 01:56:09.000 1989-01-30 2024-10-11 01:56:09 +6970 6970 6971 697 1394 6970 1989-01-31 2024-10-11 01:56:10.000 1989-01-31 2024-10-11 01:56:10 +6971 6971 6972 697.1 1394.2 6971 1989-02-01 2024-10-11 01:56:11.000 1989-02-01 2024-10-11 01:56:11 +6972 6972 6973 697.2 1394.4 6972 1989-02-02 2024-10-11 01:56:12.000 1989-02-02 2024-10-11 01:56:12 +6973 6973 6974 697.3 1394.6000000000001 6973 1989-02-03 2024-10-11 01:56:13.000 1989-02-03 2024-10-11 01:56:13 +6974 6974 6975 697.4 1394.8000000000002 6974 1989-02-04 2024-10-11 01:56:14.000 1989-02-04 2024-10-11 01:56:14 +6975 6975 6976 697.5 1395 6975 1989-02-05 2024-10-11 01:56:15.000 1989-02-05 2024-10-11 01:56:15 +6976 6976 6977 697.6 1395.2 6976 1989-02-06 2024-10-11 01:56:16.000 1989-02-06 2024-10-11 01:56:16 +6977 6977 6978 697.7 1395.4 6977 1989-02-07 2024-10-11 01:56:17.000 1989-02-07 2024-10-11 01:56:17 +6978 6978 6979 697.8 1395.6000000000001 6978 1989-02-08 2024-10-11 01:56:18.000 1989-02-08 2024-10-11 01:56:18 +6979 6979 6980 697.9 1395.8000000000002 6979 1989-02-09 2024-10-11 01:56:19.000 1989-02-09 2024-10-11 01:56:19 +6980 6980 6981 698 1396 6980 1989-02-10 2024-10-11 01:56:20.000 1989-02-10 2024-10-11 01:56:20 +6981 6981 6982 698.1 1396.2 6981 1989-02-11 2024-10-11 01:56:21.000 1989-02-11 2024-10-11 01:56:21 +6982 6982 6983 698.2 1396.4 6982 1989-02-12 2024-10-11 01:56:22.000 1989-02-12 2024-10-11 01:56:22 +6983 6983 6984 698.3 1396.6000000000001 6983 1989-02-13 2024-10-11 01:56:23.000 1989-02-13 2024-10-11 01:56:23 +6984 6984 6985 698.4 1396.8000000000002 6984 1989-02-14 2024-10-11 01:56:24.000 1989-02-14 2024-10-11 01:56:24 +6985 6985 6986 698.5 1397 6985 1989-02-15 2024-10-11 01:56:25.000 1989-02-15 2024-10-11 01:56:25 +6986 6986 6987 698.6 1397.2 6986 1989-02-16 2024-10-11 01:56:26.000 1989-02-16 2024-10-11 01:56:26 +6987 6987 6988 698.7 1397.4 6987 1989-02-17 2024-10-11 01:56:27.000 1989-02-17 2024-10-11 01:56:27 +6988 6988 6989 698.8 1397.6000000000001 6988 1989-02-18 2024-10-11 01:56:28.000 1989-02-18 2024-10-11 01:56:28 +6989 6989 6990 698.9 1397.8000000000002 6989 1989-02-19 2024-10-11 01:56:29.000 1989-02-19 2024-10-11 01:56:29 +6990 6990 6991 699 1398 6990 1989-02-20 2024-10-11 01:56:30.000 1989-02-20 2024-10-11 01:56:30 +6991 6991 6992 699.1 1398.2 6991 1989-02-21 2024-10-11 01:56:31.000 1989-02-21 2024-10-11 01:56:31 +6992 6992 6993 699.2 1398.4 6992 1989-02-22 2024-10-11 01:56:32.000 1989-02-22 2024-10-11 01:56:32 +6993 6993 6994 699.3 1398.6000000000001 6993 1989-02-23 2024-10-11 01:56:33.000 1989-02-23 2024-10-11 01:56:33 +6994 6994 6995 699.4 1398.8000000000002 6994 1989-02-24 2024-10-11 01:56:34.000 1989-02-24 2024-10-11 01:56:34 +6995 6995 6996 699.5 1399 6995 1989-02-25 2024-10-11 01:56:35.000 1989-02-25 2024-10-11 01:56:35 +6996 6996 6997 699.6 1399.2 6996 1989-02-26 2024-10-11 01:56:36.000 1989-02-26 2024-10-11 01:56:36 +6997 6997 6998 699.7 1399.4 6997 1989-02-27 2024-10-11 01:56:37.000 1989-02-27 2024-10-11 01:56:37 +6998 6998 6999 699.8 1399.6000000000001 6998 1989-02-28 2024-10-11 01:56:38.000 1989-02-28 2024-10-11 01:56:38 +6999 6999 7000 699.9 1399.8000000000002 6999 1989-03-01 2024-10-11 01:56:39.000 1989-03-01 2024-10-11 01:56:39 +7000 7000 7001 700 1400 7000 1989-03-02 2024-10-11 01:56:40.000 1989-03-02 2024-10-11 01:56:40 +7001 7001 7002 700.1 1400.2 7001 1989-03-03 2024-10-11 01:56:41.000 1989-03-03 2024-10-11 01:56:41 +7002 7002 7003 700.2 1400.4 7002 1989-03-04 2024-10-11 01:56:42.000 1989-03-04 2024-10-11 01:56:42 +7003 7003 7004 700.3 1400.6000000000001 7003 1989-03-05 2024-10-11 01:56:43.000 1989-03-05 2024-10-11 01:56:43 +7004 7004 7005 700.4 1400.8000000000002 7004 1989-03-06 2024-10-11 01:56:44.000 1989-03-06 2024-10-11 01:56:44 +7005 7005 7006 700.5 1401 7005 1989-03-07 2024-10-11 01:56:45.000 1989-03-07 2024-10-11 01:56:45 +7006 7006 7007 700.6 1401.2 7006 1989-03-08 2024-10-11 01:56:46.000 1989-03-08 2024-10-11 01:56:46 +7007 7007 7008 700.7 1401.4 7007 1989-03-09 2024-10-11 01:56:47.000 1989-03-09 2024-10-11 01:56:47 +7008 7008 7009 700.8 1401.6000000000001 7008 1989-03-10 2024-10-11 01:56:48.000 1989-03-10 2024-10-11 01:56:48 +7009 7009 7010 700.9 1401.8000000000002 7009 1989-03-11 2024-10-11 01:56:49.000 1989-03-11 2024-10-11 01:56:49 +7010 7010 7011 701 1402 7010 1989-03-12 2024-10-11 01:56:50.000 1989-03-12 2024-10-11 01:56:50 +7011 7011 7012 701.1 1402.2 7011 1989-03-13 2024-10-11 01:56:51.000 1989-03-13 2024-10-11 01:56:51 +7012 7012 7013 701.2 1402.4 7012 1989-03-14 2024-10-11 01:56:52.000 1989-03-14 2024-10-11 01:56:52 +7013 7013 7014 701.3 1402.6000000000001 7013 1989-03-15 2024-10-11 01:56:53.000 1989-03-15 2024-10-11 01:56:53 +7014 7014 7015 701.4 1402.8000000000002 7014 1989-03-16 2024-10-11 01:56:54.000 1989-03-16 2024-10-11 01:56:54 +7015 7015 7016 701.5 1403 7015 1989-03-17 2024-10-11 01:56:55.000 1989-03-17 2024-10-11 01:56:55 +7016 7016 7017 701.6 1403.2 7016 1989-03-18 2024-10-11 01:56:56.000 1989-03-18 2024-10-11 01:56:56 +7017 7017 7018 701.7 1403.4 7017 1989-03-19 2024-10-11 01:56:57.000 1989-03-19 2024-10-11 01:56:57 +7018 7018 7019 701.8 1403.6000000000001 7018 1989-03-20 2024-10-11 01:56:58.000 1989-03-20 2024-10-11 01:56:58 +7019 7019 7020 701.9 1403.8000000000002 7019 1989-03-21 2024-10-11 01:56:59.000 1989-03-21 2024-10-11 01:56:59 +7020 7020 7021 702 1404 7020 1989-03-22 2024-10-11 01:57:00.000 1989-03-22 2024-10-11 01:57:00 +7021 7021 7022 702.1 1404.2 7021 1989-03-23 2024-10-11 01:57:01.000 1989-03-23 2024-10-11 01:57:01 +7022 7022 7023 702.2 1404.4 7022 1989-03-24 2024-10-11 01:57:02.000 1989-03-24 2024-10-11 01:57:02 +7023 7023 7024 702.3 1404.6000000000001 7023 1989-03-25 2024-10-11 01:57:03.000 1989-03-25 2024-10-11 01:57:03 +7024 7024 7025 702.4 1404.8000000000002 7024 1989-03-26 2024-10-11 01:57:04.000 1989-03-26 2024-10-11 01:57:04 +7025 7025 7026 702.5 1405 7025 1989-03-27 2024-10-11 01:57:05.000 1989-03-27 2024-10-11 01:57:05 +7026 7026 7027 702.6 1405.2 7026 1989-03-28 2024-10-11 01:57:06.000 1989-03-28 2024-10-11 01:57:06 +7027 7027 7028 702.7 1405.4 7027 1989-03-29 2024-10-11 01:57:07.000 1989-03-29 2024-10-11 01:57:07 +7028 7028 7029 702.8 1405.6000000000001 7028 1989-03-30 2024-10-11 01:57:08.000 1989-03-30 2024-10-11 01:57:08 +7029 7029 7030 702.9 1405.8000000000002 7029 1989-03-31 2024-10-11 01:57:09.000 1989-03-31 2024-10-11 01:57:09 +7030 7030 7031 703 1406 7030 1989-04-01 2024-10-11 01:57:10.000 1989-04-01 2024-10-11 01:57:10 +7031 7031 7032 703.1 1406.2 7031 1989-04-02 2024-10-11 01:57:11.000 1989-04-02 2024-10-11 01:57:11 +7032 7032 7033 703.2 1406.4 7032 1989-04-03 2024-10-11 01:57:12.000 1989-04-03 2024-10-11 01:57:12 +7033 7033 7034 703.3 1406.6000000000001 7033 1989-04-04 2024-10-11 01:57:13.000 1989-04-04 2024-10-11 01:57:13 +7034 7034 7035 703.4 1406.8000000000002 7034 1989-04-05 2024-10-11 01:57:14.000 1989-04-05 2024-10-11 01:57:14 +7035 7035 7036 703.5 1407 7035 1989-04-06 2024-10-11 01:57:15.000 1989-04-06 2024-10-11 01:57:15 +7036 7036 7037 703.6 1407.2 7036 1989-04-07 2024-10-11 01:57:16.000 1989-04-07 2024-10-11 01:57:16 +7037 7037 7038 703.7 1407.4 7037 1989-04-08 2024-10-11 01:57:17.000 1989-04-08 2024-10-11 01:57:17 +7038 7038 7039 703.8 1407.6000000000001 7038 1989-04-09 2024-10-11 01:57:18.000 1989-04-09 2024-10-11 01:57:18 +7039 7039 7040 703.9 1407.8000000000002 7039 1989-04-10 2024-10-11 01:57:19.000 1989-04-10 2024-10-11 01:57:19 +7040 7040 7041 704 1408 7040 1989-04-11 2024-10-11 01:57:20.000 1989-04-11 2024-10-11 01:57:20 +7041 7041 7042 704.1 1408.2 7041 1989-04-12 2024-10-11 01:57:21.000 1989-04-12 2024-10-11 01:57:21 +7042 7042 7043 704.2 1408.4 7042 1989-04-13 2024-10-11 01:57:22.000 1989-04-13 2024-10-11 01:57:22 +7043 7043 7044 704.3 1408.6000000000001 7043 1989-04-14 2024-10-11 01:57:23.000 1989-04-14 2024-10-11 01:57:23 +7044 7044 7045 704.4 1408.8000000000002 7044 1989-04-15 2024-10-11 01:57:24.000 1989-04-15 2024-10-11 01:57:24 +7045 7045 7046 704.5 1409 7045 1989-04-16 2024-10-11 01:57:25.000 1989-04-16 2024-10-11 01:57:25 +7046 7046 7047 704.6 1409.2 7046 1989-04-17 2024-10-11 01:57:26.000 1989-04-17 2024-10-11 01:57:26 +7047 7047 7048 704.7 1409.4 7047 1989-04-18 2024-10-11 01:57:27.000 1989-04-18 2024-10-11 01:57:27 +7048 7048 7049 704.8 1409.6000000000001 7048 1989-04-19 2024-10-11 01:57:28.000 1989-04-19 2024-10-11 01:57:28 +7049 7049 7050 704.9 1409.8000000000002 7049 1989-04-20 2024-10-11 01:57:29.000 1989-04-20 2024-10-11 01:57:29 +7050 7050 7051 705 1410 7050 1989-04-21 2024-10-11 01:57:30.000 1989-04-21 2024-10-11 01:57:30 +7051 7051 7052 705.1 1410.2 7051 1989-04-22 2024-10-11 01:57:31.000 1989-04-22 2024-10-11 01:57:31 +7052 7052 7053 705.2 1410.4 7052 1989-04-23 2024-10-11 01:57:32.000 1989-04-23 2024-10-11 01:57:32 +7053 7053 7054 705.3 1410.6000000000001 7053 1989-04-24 2024-10-11 01:57:33.000 1989-04-24 2024-10-11 01:57:33 +7054 7054 7055 705.4 1410.8000000000002 7054 1989-04-25 2024-10-11 01:57:34.000 1989-04-25 2024-10-11 01:57:34 +7055 7055 7056 705.5 1411 7055 1989-04-26 2024-10-11 01:57:35.000 1989-04-26 2024-10-11 01:57:35 +7056 7056 7057 705.6 1411.2 7056 1989-04-27 2024-10-11 01:57:36.000 1989-04-27 2024-10-11 01:57:36 +7057 7057 7058 705.7 1411.4 7057 1989-04-28 2024-10-11 01:57:37.000 1989-04-28 2024-10-11 01:57:37 +7058 7058 7059 705.8 1411.6000000000001 7058 1989-04-29 2024-10-11 01:57:38.000 1989-04-29 2024-10-11 01:57:38 +7059 7059 7060 705.9 1411.8000000000002 7059 1989-04-30 2024-10-11 01:57:39.000 1989-04-30 2024-10-11 01:57:39 +7060 7060 7061 706 1412 7060 1989-05-01 2024-10-11 01:57:40.000 1989-05-01 2024-10-11 01:57:40 +7061 7061 7062 706.1 1412.2 7061 1989-05-02 2024-10-11 01:57:41.000 1989-05-02 2024-10-11 01:57:41 +7062 7062 7063 706.2 1412.4 7062 1989-05-03 2024-10-11 01:57:42.000 1989-05-03 2024-10-11 01:57:42 +7063 7063 7064 706.3 1412.6000000000001 7063 1989-05-04 2024-10-11 01:57:43.000 1989-05-04 2024-10-11 01:57:43 +7064 7064 7065 706.4 1412.8000000000002 7064 1989-05-05 2024-10-11 01:57:44.000 1989-05-05 2024-10-11 01:57:44 +7065 7065 7066 706.5 1413 7065 1989-05-06 2024-10-11 01:57:45.000 1989-05-06 2024-10-11 01:57:45 +7066 7066 7067 706.6 1413.2 7066 1989-05-07 2024-10-11 01:57:46.000 1989-05-07 2024-10-11 01:57:46 +7067 7067 7068 706.7 1413.4 7067 1989-05-08 2024-10-11 01:57:47.000 1989-05-08 2024-10-11 01:57:47 +7068 7068 7069 706.8 1413.6000000000001 7068 1989-05-09 2024-10-11 01:57:48.000 1989-05-09 2024-10-11 01:57:48 +7069 7069 7070 706.9 1413.8000000000002 7069 1989-05-10 2024-10-11 01:57:49.000 1989-05-10 2024-10-11 01:57:49 +7070 7070 7071 707 1414 7070 1989-05-11 2024-10-11 01:57:50.000 1989-05-11 2024-10-11 01:57:50 +7071 7071 7072 707.1 1414.2 7071 1989-05-12 2024-10-11 01:57:51.000 1989-05-12 2024-10-11 01:57:51 +7072 7072 7073 707.2 1414.4 7072 1989-05-13 2024-10-11 01:57:52.000 1989-05-13 2024-10-11 01:57:52 +7073 7073 7074 707.3 1414.6000000000001 7073 1989-05-14 2024-10-11 01:57:53.000 1989-05-14 2024-10-11 01:57:53 +7074 7074 7075 707.4 1414.8000000000002 7074 1989-05-15 2024-10-11 01:57:54.000 1989-05-15 2024-10-11 01:57:54 +7075 7075 7076 707.5 1415 7075 1989-05-16 2024-10-11 01:57:55.000 1989-05-16 2024-10-11 01:57:55 +7076 7076 7077 707.6 1415.2 7076 1989-05-17 2024-10-11 01:57:56.000 1989-05-17 2024-10-11 01:57:56 +7077 7077 7078 707.7 1415.4 7077 1989-05-18 2024-10-11 01:57:57.000 1989-05-18 2024-10-11 01:57:57 +7078 7078 7079 707.8 1415.6000000000001 7078 1989-05-19 2024-10-11 01:57:58.000 1989-05-19 2024-10-11 01:57:58 +7079 7079 7080 707.9 1415.8000000000002 7079 1989-05-20 2024-10-11 01:57:59.000 1989-05-20 2024-10-11 01:57:59 +7080 7080 7081 708 1416 7080 1989-05-21 2024-10-11 01:58:00.000 1989-05-21 2024-10-11 01:58:00 +7081 7081 7082 708.1 1416.2 7081 1989-05-22 2024-10-11 01:58:01.000 1989-05-22 2024-10-11 01:58:01 +7082 7082 7083 708.2 1416.4 7082 1989-05-23 2024-10-11 01:58:02.000 1989-05-23 2024-10-11 01:58:02 +7083 7083 7084 708.3 1416.6000000000001 7083 1989-05-24 2024-10-11 01:58:03.000 1989-05-24 2024-10-11 01:58:03 +7084 7084 7085 708.4 1416.8000000000002 7084 1989-05-25 2024-10-11 01:58:04.000 1989-05-25 2024-10-11 01:58:04 +7085 7085 7086 708.5 1417 7085 1989-05-26 2024-10-11 01:58:05.000 1989-05-26 2024-10-11 01:58:05 +7086 7086 7087 708.6 1417.2 7086 1989-05-27 2024-10-11 01:58:06.000 1989-05-27 2024-10-11 01:58:06 +7087 7087 7088 708.7 1417.4 7087 1989-05-28 2024-10-11 01:58:07.000 1989-05-28 2024-10-11 01:58:07 +7088 7088 7089 708.8 1417.6000000000001 7088 1989-05-29 2024-10-11 01:58:08.000 1989-05-29 2024-10-11 01:58:08 +7089 7089 7090 708.9 1417.8000000000002 7089 1989-05-30 2024-10-11 01:58:09.000 1989-05-30 2024-10-11 01:58:09 +7090 7090 7091 709 1418 7090 1989-05-31 2024-10-11 01:58:10.000 1989-05-31 2024-10-11 01:58:10 +7091 7091 7092 709.1 1418.2 7091 1989-06-01 2024-10-11 01:58:11.000 1989-06-01 2024-10-11 01:58:11 +7092 7092 7093 709.2 1418.4 7092 1989-06-02 2024-10-11 01:58:12.000 1989-06-02 2024-10-11 01:58:12 +7093 7093 7094 709.3 1418.6000000000001 7093 1989-06-03 2024-10-11 01:58:13.000 1989-06-03 2024-10-11 01:58:13 +7094 7094 7095 709.4 1418.8000000000002 7094 1989-06-04 2024-10-11 01:58:14.000 1989-06-04 2024-10-11 01:58:14 +7095 7095 7096 709.5 1419 7095 1989-06-05 2024-10-11 01:58:15.000 1989-06-05 2024-10-11 01:58:15 +7096 7096 7097 709.6 1419.2 7096 1989-06-06 2024-10-11 01:58:16.000 1989-06-06 2024-10-11 01:58:16 +7097 7097 7098 709.7 1419.4 7097 1989-06-07 2024-10-11 01:58:17.000 1989-06-07 2024-10-11 01:58:17 +7098 7098 7099 709.8 1419.6000000000001 7098 1989-06-08 2024-10-11 01:58:18.000 1989-06-08 2024-10-11 01:58:18 +7099 7099 7100 709.9 1419.8000000000002 7099 1989-06-09 2024-10-11 01:58:19.000 1989-06-09 2024-10-11 01:58:19 +7100 7100 7101 710 1420 7100 1989-06-10 2024-10-11 01:58:20.000 1989-06-10 2024-10-11 01:58:20 +7101 7101 7102 710.1 1420.2 7101 1989-06-11 2024-10-11 01:58:21.000 1989-06-11 2024-10-11 01:58:21 +7102 7102 7103 710.2 1420.4 7102 1989-06-12 2024-10-11 01:58:22.000 1989-06-12 2024-10-11 01:58:22 +7103 7103 7104 710.3 1420.6000000000001 7103 1989-06-13 2024-10-11 01:58:23.000 1989-06-13 2024-10-11 01:58:23 +7104 7104 7105 710.4 1420.8000000000002 7104 1989-06-14 2024-10-11 01:58:24.000 1989-06-14 2024-10-11 01:58:24 +7105 7105 7106 710.5 1421 7105 1989-06-15 2024-10-11 01:58:25.000 1989-06-15 2024-10-11 01:58:25 +7106 7106 7107 710.6 1421.2 7106 1989-06-16 2024-10-11 01:58:26.000 1989-06-16 2024-10-11 01:58:26 +7107 7107 7108 710.7 1421.4 7107 1989-06-17 2024-10-11 01:58:27.000 1989-06-17 2024-10-11 01:58:27 +7108 7108 7109 710.8 1421.6000000000001 7108 1989-06-18 2024-10-11 01:58:28.000 1989-06-18 2024-10-11 01:58:28 +7109 7109 7110 710.9 1421.8000000000002 7109 1989-06-19 2024-10-11 01:58:29.000 1989-06-19 2024-10-11 01:58:29 +7110 7110 7111 711 1422 7110 1989-06-20 2024-10-11 01:58:30.000 1989-06-20 2024-10-11 01:58:30 +7111 7111 7112 711.1 1422.2 7111 1989-06-21 2024-10-11 01:58:31.000 1989-06-21 2024-10-11 01:58:31 +7112 7112 7113 711.2 1422.4 7112 1989-06-22 2024-10-11 01:58:32.000 1989-06-22 2024-10-11 01:58:32 +7113 7113 7114 711.3 1422.6000000000001 7113 1989-06-23 2024-10-11 01:58:33.000 1989-06-23 2024-10-11 01:58:33 +7114 7114 7115 711.4 1422.8000000000002 7114 1989-06-24 2024-10-11 01:58:34.000 1989-06-24 2024-10-11 01:58:34 +7115 7115 7116 711.5 1423 7115 1989-06-25 2024-10-11 01:58:35.000 1989-06-25 2024-10-11 01:58:35 +7116 7116 7117 711.6 1423.2 7116 1989-06-26 2024-10-11 01:58:36.000 1989-06-26 2024-10-11 01:58:36 +7117 7117 7118 711.7 1423.4 7117 1989-06-27 2024-10-11 01:58:37.000 1989-06-27 2024-10-11 01:58:37 +7118 7118 7119 711.8 1423.6000000000001 7118 1989-06-28 2024-10-11 01:58:38.000 1989-06-28 2024-10-11 01:58:38 +7119 7119 7120 711.9 1423.8000000000002 7119 1989-06-29 2024-10-11 01:58:39.000 1989-06-29 2024-10-11 01:58:39 +7120 7120 7121 712 1424 7120 1989-06-30 2024-10-11 01:58:40.000 1989-06-30 2024-10-11 01:58:40 +7121 7121 7122 712.1 1424.2 7121 1989-07-01 2024-10-11 01:58:41.000 1989-07-01 2024-10-11 01:58:41 +7122 7122 7123 712.2 1424.4 7122 1989-07-02 2024-10-11 01:58:42.000 1989-07-02 2024-10-11 01:58:42 +7123 7123 7124 712.3 1424.6000000000001 7123 1989-07-03 2024-10-11 01:58:43.000 1989-07-03 2024-10-11 01:58:43 +7124 7124 7125 712.4 1424.8000000000002 7124 1989-07-04 2024-10-11 01:58:44.000 1989-07-04 2024-10-11 01:58:44 +7125 7125 7126 712.5 1425 7125 1989-07-05 2024-10-11 01:58:45.000 1989-07-05 2024-10-11 01:58:45 +7126 7126 7127 712.6 1425.2 7126 1989-07-06 2024-10-11 01:58:46.000 1989-07-06 2024-10-11 01:58:46 +7127 7127 7128 712.7 1425.4 7127 1989-07-07 2024-10-11 01:58:47.000 1989-07-07 2024-10-11 01:58:47 +7128 7128 7129 712.8 1425.6000000000001 7128 1989-07-08 2024-10-11 01:58:48.000 1989-07-08 2024-10-11 01:58:48 +7129 7129 7130 712.9 1425.8000000000002 7129 1989-07-09 2024-10-11 01:58:49.000 1989-07-09 2024-10-11 01:58:49 +7130 7130 7131 713 1426 7130 1989-07-10 2024-10-11 01:58:50.000 1989-07-10 2024-10-11 01:58:50 +7131 7131 7132 713.1 1426.2 7131 1989-07-11 2024-10-11 01:58:51.000 1989-07-11 2024-10-11 01:58:51 +7132 7132 7133 713.2 1426.4 7132 1989-07-12 2024-10-11 01:58:52.000 1989-07-12 2024-10-11 01:58:52 +7133 7133 7134 713.3 1426.6000000000001 7133 1989-07-13 2024-10-11 01:58:53.000 1989-07-13 2024-10-11 01:58:53 +7134 7134 7135 713.4 1426.8000000000002 7134 1989-07-14 2024-10-11 01:58:54.000 1989-07-14 2024-10-11 01:58:54 +7135 7135 7136 713.5 1427 7135 1989-07-15 2024-10-11 01:58:55.000 1989-07-15 2024-10-11 01:58:55 +7136 7136 7137 713.6 1427.2 7136 1989-07-16 2024-10-11 01:58:56.000 1989-07-16 2024-10-11 01:58:56 +7137 7137 7138 713.7 1427.4 7137 1989-07-17 2024-10-11 01:58:57.000 1989-07-17 2024-10-11 01:58:57 +7138 7138 7139 713.8 1427.6000000000001 7138 1989-07-18 2024-10-11 01:58:58.000 1989-07-18 2024-10-11 01:58:58 +7139 7139 7140 713.9 1427.8000000000002 7139 1989-07-19 2024-10-11 01:58:59.000 1989-07-19 2024-10-11 01:58:59 +7140 7140 7141 714 1428 7140 1989-07-20 2024-10-11 01:59:00.000 1989-07-20 2024-10-11 01:59:00 +7141 7141 7142 714.1 1428.2 7141 1989-07-21 2024-10-11 01:59:01.000 1989-07-21 2024-10-11 01:59:01 +7142 7142 7143 714.2 1428.4 7142 1989-07-22 2024-10-11 01:59:02.000 1989-07-22 2024-10-11 01:59:02 +7143 7143 7144 714.3 1428.6000000000001 7143 1989-07-23 2024-10-11 01:59:03.000 1989-07-23 2024-10-11 01:59:03 +7144 7144 7145 714.4 1428.8000000000002 7144 1989-07-24 2024-10-11 01:59:04.000 1989-07-24 2024-10-11 01:59:04 +7145 7145 7146 714.5 1429 7145 1989-07-25 2024-10-11 01:59:05.000 1989-07-25 2024-10-11 01:59:05 +7146 7146 7147 714.6 1429.2 7146 1989-07-26 2024-10-11 01:59:06.000 1989-07-26 2024-10-11 01:59:06 +7147 7147 7148 714.7 1429.4 7147 1989-07-27 2024-10-11 01:59:07.000 1989-07-27 2024-10-11 01:59:07 +7148 7148 7149 714.8 1429.6000000000001 7148 1989-07-28 2024-10-11 01:59:08.000 1989-07-28 2024-10-11 01:59:08 +7149 7149 7150 714.9 1429.8000000000002 7149 1989-07-29 2024-10-11 01:59:09.000 1989-07-29 2024-10-11 01:59:09 +7150 7150 7151 715 1430 7150 1989-07-30 2024-10-11 01:59:10.000 1989-07-30 2024-10-11 01:59:10 +7151 7151 7152 715.1 1430.2 7151 1989-07-31 2024-10-11 01:59:11.000 1989-07-31 2024-10-11 01:59:11 +7152 7152 7153 715.2 1430.4 7152 1989-08-01 2024-10-11 01:59:12.000 1989-08-01 2024-10-11 01:59:12 +7153 7153 7154 715.3 1430.6000000000001 7153 1989-08-02 2024-10-11 01:59:13.000 1989-08-02 2024-10-11 01:59:13 +7154 7154 7155 715.4 1430.8000000000002 7154 1989-08-03 2024-10-11 01:59:14.000 1989-08-03 2024-10-11 01:59:14 +7155 7155 7156 715.5 1431 7155 1989-08-04 2024-10-11 01:59:15.000 1989-08-04 2024-10-11 01:59:15 +7156 7156 7157 715.6 1431.2 7156 1989-08-05 2024-10-11 01:59:16.000 1989-08-05 2024-10-11 01:59:16 +7157 7157 7158 715.7 1431.4 7157 1989-08-06 2024-10-11 01:59:17.000 1989-08-06 2024-10-11 01:59:17 +7158 7158 7159 715.8 1431.6000000000001 7158 1989-08-07 2024-10-11 01:59:18.000 1989-08-07 2024-10-11 01:59:18 +7159 7159 7160 715.9 1431.8000000000002 7159 1989-08-08 2024-10-11 01:59:19.000 1989-08-08 2024-10-11 01:59:19 +7160 7160 7161 716 1432 7160 1989-08-09 2024-10-11 01:59:20.000 1989-08-09 2024-10-11 01:59:20 +7161 7161 7162 716.1 1432.2 7161 1989-08-10 2024-10-11 01:59:21.000 1989-08-10 2024-10-11 01:59:21 +7162 7162 7163 716.2 1432.4 7162 1989-08-11 2024-10-11 01:59:22.000 1989-08-11 2024-10-11 01:59:22 +7163 7163 7164 716.3 1432.6000000000001 7163 1989-08-12 2024-10-11 01:59:23.000 1989-08-12 2024-10-11 01:59:23 +7164 7164 7165 716.4 1432.8000000000002 7164 1989-08-13 2024-10-11 01:59:24.000 1989-08-13 2024-10-11 01:59:24 +7165 7165 7166 716.5 1433 7165 1989-08-14 2024-10-11 01:59:25.000 1989-08-14 2024-10-11 01:59:25 +7166 7166 7167 716.6 1433.2 7166 1989-08-15 2024-10-11 01:59:26.000 1989-08-15 2024-10-11 01:59:26 +7167 7167 7168 716.7 1433.4 7167 1989-08-16 2024-10-11 01:59:27.000 1989-08-16 2024-10-11 01:59:27 +7168 7168 7169 716.8 1433.6000000000001 7168 1989-08-17 2024-10-11 01:59:28.000 1989-08-17 2024-10-11 01:59:28 +7169 7169 7170 716.9 1433.8000000000002 7169 1989-08-18 2024-10-11 01:59:29.000 1989-08-18 2024-10-11 01:59:29 +7170 7170 7171 717 1434 7170 1989-08-19 2024-10-11 01:59:30.000 1989-08-19 2024-10-11 01:59:30 +7171 7171 7172 717.1 1434.2 7171 1989-08-20 2024-10-11 01:59:31.000 1989-08-20 2024-10-11 01:59:31 +7172 7172 7173 717.2 1434.4 7172 1989-08-21 2024-10-11 01:59:32.000 1989-08-21 2024-10-11 01:59:32 +7173 7173 7174 717.3 1434.6000000000001 7173 1989-08-22 2024-10-11 01:59:33.000 1989-08-22 2024-10-11 01:59:33 +7174 7174 7175 717.4 1434.8000000000002 7174 1989-08-23 2024-10-11 01:59:34.000 1989-08-23 2024-10-11 01:59:34 +7175 7175 7176 717.5 1435 7175 1989-08-24 2024-10-11 01:59:35.000 1989-08-24 2024-10-11 01:59:35 +7176 7176 7177 717.6 1435.2 7176 1989-08-25 2024-10-11 01:59:36.000 1989-08-25 2024-10-11 01:59:36 +7177 7177 7178 717.7 1435.4 7177 1989-08-26 2024-10-11 01:59:37.000 1989-08-26 2024-10-11 01:59:37 +7178 7178 7179 717.8 1435.6000000000001 7178 1989-08-27 2024-10-11 01:59:38.000 1989-08-27 2024-10-11 01:59:38 +7179 7179 7180 717.9 1435.8000000000002 7179 1989-08-28 2024-10-11 01:59:39.000 1989-08-28 2024-10-11 01:59:39 +7180 7180 7181 718 1436 7180 1989-08-29 2024-10-11 01:59:40.000 1989-08-29 2024-10-11 01:59:40 +7181 7181 7182 718.1 1436.2 7181 1989-08-30 2024-10-11 01:59:41.000 1989-08-30 2024-10-11 01:59:41 +7182 7182 7183 718.2 1436.4 7182 1989-08-31 2024-10-11 01:59:42.000 1989-08-31 2024-10-11 01:59:42 +7183 7183 7184 718.3 1436.6000000000001 7183 1989-09-01 2024-10-11 01:59:43.000 1989-09-01 2024-10-11 01:59:43 +7184 7184 7185 718.4 1436.8000000000002 7184 1989-09-02 2024-10-11 01:59:44.000 1989-09-02 2024-10-11 01:59:44 +7185 7185 7186 718.5 1437 7185 1989-09-03 2024-10-11 01:59:45.000 1989-09-03 2024-10-11 01:59:45 +7186 7186 7187 718.6 1437.2 7186 1989-09-04 2024-10-11 01:59:46.000 1989-09-04 2024-10-11 01:59:46 +7187 7187 7188 718.7 1437.4 7187 1989-09-05 2024-10-11 01:59:47.000 1989-09-05 2024-10-11 01:59:47 +7188 7188 7189 718.8 1437.6000000000001 7188 1989-09-06 2024-10-11 01:59:48.000 1989-09-06 2024-10-11 01:59:48 +7189 7189 7190 718.9 1437.8000000000002 7189 1989-09-07 2024-10-11 01:59:49.000 1989-09-07 2024-10-11 01:59:49 +7190 7190 7191 719 1438 7190 1989-09-08 2024-10-11 01:59:50.000 1989-09-08 2024-10-11 01:59:50 +7191 7191 7192 719.1 1438.2 7191 1989-09-09 2024-10-11 01:59:51.000 1989-09-09 2024-10-11 01:59:51 +7192 7192 7193 719.2 1438.4 7192 1989-09-10 2024-10-11 01:59:52.000 1989-09-10 2024-10-11 01:59:52 +7193 7193 7194 719.3 1438.6000000000001 7193 1989-09-11 2024-10-11 01:59:53.000 1989-09-11 2024-10-11 01:59:53 +7194 7194 7195 719.4 1438.8000000000002 7194 1989-09-12 2024-10-11 01:59:54.000 1989-09-12 2024-10-11 01:59:54 +7195 7195 7196 719.5 1439 7195 1989-09-13 2024-10-11 01:59:55.000 1989-09-13 2024-10-11 01:59:55 +7196 7196 7197 719.6 1439.2 7196 1989-09-14 2024-10-11 01:59:56.000 1989-09-14 2024-10-11 01:59:56 +7197 7197 7198 719.7 1439.4 7197 1989-09-15 2024-10-11 01:59:57.000 1989-09-15 2024-10-11 01:59:57 +7198 7198 7199 719.8 1439.6000000000001 7198 1989-09-16 2024-10-11 01:59:58.000 1989-09-16 2024-10-11 01:59:58 +7199 7199 7200 719.9 1439.8000000000002 7199 1989-09-17 2024-10-11 01:59:59.000 1989-09-17 2024-10-11 01:59:59 +7200 7200 7201 720 1440 7200 1989-09-18 2024-10-11 02:00:00.000 1989-09-18 2024-10-11 02:00:00 +7201 7201 7202 720.1 1440.2 7201 1989-09-19 2024-10-11 02:00:01.000 1989-09-19 2024-10-11 02:00:01 +7202 7202 7203 720.2 1440.4 7202 1989-09-20 2024-10-11 02:00:02.000 1989-09-20 2024-10-11 02:00:02 +7203 7203 7204 720.3 1440.6000000000001 7203 1989-09-21 2024-10-11 02:00:03.000 1989-09-21 2024-10-11 02:00:03 +7204 7204 7205 720.4 1440.8000000000002 7204 1989-09-22 2024-10-11 02:00:04.000 1989-09-22 2024-10-11 02:00:04 +7205 7205 7206 720.5 1441 7205 1989-09-23 2024-10-11 02:00:05.000 1989-09-23 2024-10-11 02:00:05 +7206 7206 7207 720.6 1441.2 7206 1989-09-24 2024-10-11 02:00:06.000 1989-09-24 2024-10-11 02:00:06 +7207 7207 7208 720.7 1441.4 7207 1989-09-25 2024-10-11 02:00:07.000 1989-09-25 2024-10-11 02:00:07 +7208 7208 7209 720.8 1441.6000000000001 7208 1989-09-26 2024-10-11 02:00:08.000 1989-09-26 2024-10-11 02:00:08 +7209 7209 7210 720.9 1441.8000000000002 7209 1989-09-27 2024-10-11 02:00:09.000 1989-09-27 2024-10-11 02:00:09 +7210 7210 7211 721 1442 7210 1989-09-28 2024-10-11 02:00:10.000 1989-09-28 2024-10-11 02:00:10 +7211 7211 7212 721.1 1442.2 7211 1989-09-29 2024-10-11 02:00:11.000 1989-09-29 2024-10-11 02:00:11 +7212 7212 7213 721.2 1442.4 7212 1989-09-30 2024-10-11 02:00:12.000 1989-09-30 2024-10-11 02:00:12 +7213 7213 7214 721.3 1442.6000000000001 7213 1989-10-01 2024-10-11 02:00:13.000 1989-10-01 2024-10-11 02:00:13 +7214 7214 7215 721.4 1442.8000000000002 7214 1989-10-02 2024-10-11 02:00:14.000 1989-10-02 2024-10-11 02:00:14 +7215 7215 7216 721.5 1443 7215 1989-10-03 2024-10-11 02:00:15.000 1989-10-03 2024-10-11 02:00:15 +7216 7216 7217 721.6 1443.2 7216 1989-10-04 2024-10-11 02:00:16.000 1989-10-04 2024-10-11 02:00:16 +7217 7217 7218 721.7 1443.4 7217 1989-10-05 2024-10-11 02:00:17.000 1989-10-05 2024-10-11 02:00:17 +7218 7218 7219 721.8 1443.6000000000001 7218 1989-10-06 2024-10-11 02:00:18.000 1989-10-06 2024-10-11 02:00:18 +7219 7219 7220 721.9 1443.8000000000002 7219 1989-10-07 2024-10-11 02:00:19.000 1989-10-07 2024-10-11 02:00:19 +7220 7220 7221 722 1444 7220 1989-10-08 2024-10-11 02:00:20.000 1989-10-08 2024-10-11 02:00:20 +7221 7221 7222 722.1 1444.2 7221 1989-10-09 2024-10-11 02:00:21.000 1989-10-09 2024-10-11 02:00:21 +7222 7222 7223 722.2 1444.4 7222 1989-10-10 2024-10-11 02:00:22.000 1989-10-10 2024-10-11 02:00:22 +7223 7223 7224 722.3 1444.6000000000001 7223 1989-10-11 2024-10-11 02:00:23.000 1989-10-11 2024-10-11 02:00:23 +7224 7224 7225 722.4 1444.8000000000002 7224 1989-10-12 2024-10-11 02:00:24.000 1989-10-12 2024-10-11 02:00:24 +7225 7225 7226 722.5 1445 7225 1989-10-13 2024-10-11 02:00:25.000 1989-10-13 2024-10-11 02:00:25 +7226 7226 7227 722.6 1445.2 7226 1989-10-14 2024-10-11 02:00:26.000 1989-10-14 2024-10-11 02:00:26 +7227 7227 7228 722.7 1445.4 7227 1989-10-15 2024-10-11 02:00:27.000 1989-10-15 2024-10-11 02:00:27 +7228 7228 7229 722.8 1445.6000000000001 7228 1989-10-16 2024-10-11 02:00:28.000 1989-10-16 2024-10-11 02:00:28 +7229 7229 7230 722.9 1445.8000000000002 7229 1989-10-17 2024-10-11 02:00:29.000 1989-10-17 2024-10-11 02:00:29 +7230 7230 7231 723 1446 7230 1989-10-18 2024-10-11 02:00:30.000 1989-10-18 2024-10-11 02:00:30 +7231 7231 7232 723.1 1446.2 7231 1989-10-19 2024-10-11 02:00:31.000 1989-10-19 2024-10-11 02:00:31 +7232 7232 7233 723.2 1446.4 7232 1989-10-20 2024-10-11 02:00:32.000 1989-10-20 2024-10-11 02:00:32 +7233 7233 7234 723.3 1446.6000000000001 7233 1989-10-21 2024-10-11 02:00:33.000 1989-10-21 2024-10-11 02:00:33 +7234 7234 7235 723.4 1446.8000000000002 7234 1989-10-22 2024-10-11 02:00:34.000 1989-10-22 2024-10-11 02:00:34 +7235 7235 7236 723.5 1447 7235 1989-10-23 2024-10-11 02:00:35.000 1989-10-23 2024-10-11 02:00:35 +7236 7236 7237 723.6 1447.2 7236 1989-10-24 2024-10-11 02:00:36.000 1989-10-24 2024-10-11 02:00:36 +7237 7237 7238 723.7 1447.4 7237 1989-10-25 2024-10-11 02:00:37.000 1989-10-25 2024-10-11 02:00:37 +7238 7238 7239 723.8 1447.6000000000001 7238 1989-10-26 2024-10-11 02:00:38.000 1989-10-26 2024-10-11 02:00:38 +7239 7239 7240 723.9 1447.8000000000002 7239 1989-10-27 2024-10-11 02:00:39.000 1989-10-27 2024-10-11 02:00:39 +7240 7240 7241 724 1448 7240 1989-10-28 2024-10-11 02:00:40.000 1989-10-28 2024-10-11 02:00:40 +7241 7241 7242 724.1 1448.2 7241 1989-10-29 2024-10-11 02:00:41.000 1989-10-29 2024-10-11 02:00:41 +7242 7242 7243 724.2 1448.4 7242 1989-10-30 2024-10-11 02:00:42.000 1989-10-30 2024-10-11 02:00:42 +7243 7243 7244 724.3 1448.6000000000001 7243 1989-10-31 2024-10-11 02:00:43.000 1989-10-31 2024-10-11 02:00:43 +7244 7244 7245 724.4 1448.8000000000002 7244 1989-11-01 2024-10-11 02:00:44.000 1989-11-01 2024-10-11 02:00:44 +7245 7245 7246 724.5 1449 7245 1989-11-02 2024-10-11 02:00:45.000 1989-11-02 2024-10-11 02:00:45 +7246 7246 7247 724.6 1449.2 7246 1989-11-03 2024-10-11 02:00:46.000 1989-11-03 2024-10-11 02:00:46 +7247 7247 7248 724.7 1449.4 7247 1989-11-04 2024-10-11 02:00:47.000 1989-11-04 2024-10-11 02:00:47 +7248 7248 7249 724.8 1449.6000000000001 7248 1989-11-05 2024-10-11 02:00:48.000 1989-11-05 2024-10-11 02:00:48 +7249 7249 7250 724.9 1449.8000000000002 7249 1989-11-06 2024-10-11 02:00:49.000 1989-11-06 2024-10-11 02:00:49 +7250 7250 7251 725 1450 7250 1989-11-07 2024-10-11 02:00:50.000 1989-11-07 2024-10-11 02:00:50 +7251 7251 7252 725.1 1450.2 7251 1989-11-08 2024-10-11 02:00:51.000 1989-11-08 2024-10-11 02:00:51 +7252 7252 7253 725.2 1450.4 7252 1989-11-09 2024-10-11 02:00:52.000 1989-11-09 2024-10-11 02:00:52 +7253 7253 7254 725.3 1450.6000000000001 7253 1989-11-10 2024-10-11 02:00:53.000 1989-11-10 2024-10-11 02:00:53 +7254 7254 7255 725.4 1450.8000000000002 7254 1989-11-11 2024-10-11 02:00:54.000 1989-11-11 2024-10-11 02:00:54 +7255 7255 7256 725.5 1451 7255 1989-11-12 2024-10-11 02:00:55.000 1989-11-12 2024-10-11 02:00:55 +7256 7256 7257 725.6 1451.2 7256 1989-11-13 2024-10-11 02:00:56.000 1989-11-13 2024-10-11 02:00:56 +7257 7257 7258 725.7 1451.4 7257 1989-11-14 2024-10-11 02:00:57.000 1989-11-14 2024-10-11 02:00:57 +7258 7258 7259 725.8 1451.6000000000001 7258 1989-11-15 2024-10-11 02:00:58.000 1989-11-15 2024-10-11 02:00:58 +7259 7259 7260 725.9 1451.8000000000002 7259 1989-11-16 2024-10-11 02:00:59.000 1989-11-16 2024-10-11 02:00:59 +7260 7260 7261 726 1452 7260 1989-11-17 2024-10-11 02:01:00.000 1989-11-17 2024-10-11 02:01:00 +7261 7261 7262 726.1 1452.2 7261 1989-11-18 2024-10-11 02:01:01.000 1989-11-18 2024-10-11 02:01:01 +7262 7262 7263 726.2 1452.4 7262 1989-11-19 2024-10-11 02:01:02.000 1989-11-19 2024-10-11 02:01:02 +7263 7263 7264 726.3 1452.6000000000001 7263 1989-11-20 2024-10-11 02:01:03.000 1989-11-20 2024-10-11 02:01:03 +7264 7264 7265 726.4 1452.8000000000002 7264 1989-11-21 2024-10-11 02:01:04.000 1989-11-21 2024-10-11 02:01:04 +7265 7265 7266 726.5 1453 7265 1989-11-22 2024-10-11 02:01:05.000 1989-11-22 2024-10-11 02:01:05 +7266 7266 7267 726.6 1453.2 7266 1989-11-23 2024-10-11 02:01:06.000 1989-11-23 2024-10-11 02:01:06 +7267 7267 7268 726.7 1453.4 7267 1989-11-24 2024-10-11 02:01:07.000 1989-11-24 2024-10-11 02:01:07 +7268 7268 7269 726.8 1453.6000000000001 7268 1989-11-25 2024-10-11 02:01:08.000 1989-11-25 2024-10-11 02:01:08 +7269 7269 7270 726.9 1453.8000000000002 7269 1989-11-26 2024-10-11 02:01:09.000 1989-11-26 2024-10-11 02:01:09 +7270 7270 7271 727 1454 7270 1989-11-27 2024-10-11 02:01:10.000 1989-11-27 2024-10-11 02:01:10 +7271 7271 7272 727.1 1454.2 7271 1989-11-28 2024-10-11 02:01:11.000 1989-11-28 2024-10-11 02:01:11 +7272 7272 7273 727.2 1454.4 7272 1989-11-29 2024-10-11 02:01:12.000 1989-11-29 2024-10-11 02:01:12 +7273 7273 7274 727.3 1454.6000000000001 7273 1989-11-30 2024-10-11 02:01:13.000 1989-11-30 2024-10-11 02:01:13 +7274 7274 7275 727.4 1454.8000000000002 7274 1989-12-01 2024-10-11 02:01:14.000 1989-12-01 2024-10-11 02:01:14 +7275 7275 7276 727.5 1455 7275 1989-12-02 2024-10-11 02:01:15.000 1989-12-02 2024-10-11 02:01:15 +7276 7276 7277 727.6 1455.2 7276 1989-12-03 2024-10-11 02:01:16.000 1989-12-03 2024-10-11 02:01:16 +7277 7277 7278 727.7 1455.4 7277 1989-12-04 2024-10-11 02:01:17.000 1989-12-04 2024-10-11 02:01:17 +7278 7278 7279 727.8 1455.6000000000001 7278 1989-12-05 2024-10-11 02:01:18.000 1989-12-05 2024-10-11 02:01:18 +7279 7279 7280 727.9 1455.8000000000002 7279 1989-12-06 2024-10-11 02:01:19.000 1989-12-06 2024-10-11 02:01:19 +7280 7280 7281 728 1456 7280 1989-12-07 2024-10-11 02:01:20.000 1989-12-07 2024-10-11 02:01:20 +7281 7281 7282 728.1 1456.2 7281 1989-12-08 2024-10-11 02:01:21.000 1989-12-08 2024-10-11 02:01:21 +7282 7282 7283 728.2 1456.4 7282 1989-12-09 2024-10-11 02:01:22.000 1989-12-09 2024-10-11 02:01:22 +7283 7283 7284 728.3 1456.6000000000001 7283 1989-12-10 2024-10-11 02:01:23.000 1989-12-10 2024-10-11 02:01:23 +7284 7284 7285 728.4 1456.8000000000002 7284 1989-12-11 2024-10-11 02:01:24.000 1989-12-11 2024-10-11 02:01:24 +7285 7285 7286 728.5 1457 7285 1989-12-12 2024-10-11 02:01:25.000 1989-12-12 2024-10-11 02:01:25 +7286 7286 7287 728.6 1457.2 7286 1989-12-13 2024-10-11 02:01:26.000 1989-12-13 2024-10-11 02:01:26 +7287 7287 7288 728.7 1457.4 7287 1989-12-14 2024-10-11 02:01:27.000 1989-12-14 2024-10-11 02:01:27 +7288 7288 7289 728.8 1457.6000000000001 7288 1989-12-15 2024-10-11 02:01:28.000 1989-12-15 2024-10-11 02:01:28 +7289 7289 7290 728.9 1457.8000000000002 7289 1989-12-16 2024-10-11 02:01:29.000 1989-12-16 2024-10-11 02:01:29 +7290 7290 7291 729 1458 7290 1989-12-17 2024-10-11 02:01:30.000 1989-12-17 2024-10-11 02:01:30 +7291 7291 7292 729.1 1458.2 7291 1989-12-18 2024-10-11 02:01:31.000 1989-12-18 2024-10-11 02:01:31 +7292 7292 7293 729.2 1458.4 7292 1989-12-19 2024-10-11 02:01:32.000 1989-12-19 2024-10-11 02:01:32 +7293 7293 7294 729.3 1458.6000000000001 7293 1989-12-20 2024-10-11 02:01:33.000 1989-12-20 2024-10-11 02:01:33 +7294 7294 7295 729.4 1458.8000000000002 7294 1989-12-21 2024-10-11 02:01:34.000 1989-12-21 2024-10-11 02:01:34 +7295 7295 7296 729.5 1459 7295 1989-12-22 2024-10-11 02:01:35.000 1989-12-22 2024-10-11 02:01:35 +7296 7296 7297 729.6 1459.2 7296 1989-12-23 2024-10-11 02:01:36.000 1989-12-23 2024-10-11 02:01:36 +7297 7297 7298 729.7 1459.4 7297 1989-12-24 2024-10-11 02:01:37.000 1989-12-24 2024-10-11 02:01:37 +7298 7298 7299 729.8 1459.6000000000001 7298 1989-12-25 2024-10-11 02:01:38.000 1989-12-25 2024-10-11 02:01:38 +7299 7299 7300 729.9 1459.8000000000002 7299 1989-12-26 2024-10-11 02:01:39.000 1989-12-26 2024-10-11 02:01:39 +7300 7300 7301 730 1460 7300 1989-12-27 2024-10-11 02:01:40.000 1989-12-27 2024-10-11 02:01:40 +7301 7301 7302 730.1 1460.2 7301 1989-12-28 2024-10-11 02:01:41.000 1989-12-28 2024-10-11 02:01:41 +7302 7302 7303 730.2 1460.4 7302 1989-12-29 2024-10-11 02:01:42.000 1989-12-29 2024-10-11 02:01:42 +7303 7303 7304 730.3 1460.6000000000001 7303 1989-12-30 2024-10-11 02:01:43.000 1989-12-30 2024-10-11 02:01:43 +7304 7304 7305 730.4 1460.8000000000002 7304 1989-12-31 2024-10-11 02:01:44.000 1989-12-31 2024-10-11 02:01:44 +7305 7305 7306 730.5 1461 7305 1990-01-01 2024-10-11 02:01:45.000 1990-01-01 2024-10-11 02:01:45 +7306 7306 7307 730.6 1461.2 7306 1990-01-02 2024-10-11 02:01:46.000 1990-01-02 2024-10-11 02:01:46 +7307 7307 7308 730.7 1461.4 7307 1990-01-03 2024-10-11 02:01:47.000 1990-01-03 2024-10-11 02:01:47 +7308 7308 7309 730.8 1461.6000000000001 7308 1990-01-04 2024-10-11 02:01:48.000 1990-01-04 2024-10-11 02:01:48 +7309 7309 7310 730.9 1461.8000000000002 7309 1990-01-05 2024-10-11 02:01:49.000 1990-01-05 2024-10-11 02:01:49 +7310 7310 7311 731 1462 7310 1990-01-06 2024-10-11 02:01:50.000 1990-01-06 2024-10-11 02:01:50 +7311 7311 7312 731.1 1462.2 7311 1990-01-07 2024-10-11 02:01:51.000 1990-01-07 2024-10-11 02:01:51 +7312 7312 7313 731.2 1462.4 7312 1990-01-08 2024-10-11 02:01:52.000 1990-01-08 2024-10-11 02:01:52 +7313 7313 7314 731.3 1462.6000000000001 7313 1990-01-09 2024-10-11 02:01:53.000 1990-01-09 2024-10-11 02:01:53 +7314 7314 7315 731.4 1462.8000000000002 7314 1990-01-10 2024-10-11 02:01:54.000 1990-01-10 2024-10-11 02:01:54 +7315 7315 7316 731.5 1463 7315 1990-01-11 2024-10-11 02:01:55.000 1990-01-11 2024-10-11 02:01:55 +7316 7316 7317 731.6 1463.2 7316 1990-01-12 2024-10-11 02:01:56.000 1990-01-12 2024-10-11 02:01:56 +7317 7317 7318 731.7 1463.4 7317 1990-01-13 2024-10-11 02:01:57.000 1990-01-13 2024-10-11 02:01:57 +7318 7318 7319 731.8 1463.6000000000001 7318 1990-01-14 2024-10-11 02:01:58.000 1990-01-14 2024-10-11 02:01:58 +7319 7319 7320 731.9 1463.8000000000002 7319 1990-01-15 2024-10-11 02:01:59.000 1990-01-15 2024-10-11 02:01:59 +7320 7320 7321 732 1464 7320 1990-01-16 2024-10-11 02:02:00.000 1990-01-16 2024-10-11 02:02:00 +7321 7321 7322 732.1 1464.2 7321 1990-01-17 2024-10-11 02:02:01.000 1990-01-17 2024-10-11 02:02:01 +7322 7322 7323 732.2 1464.4 7322 1990-01-18 2024-10-11 02:02:02.000 1990-01-18 2024-10-11 02:02:02 +7323 7323 7324 732.3 1464.6000000000001 7323 1990-01-19 2024-10-11 02:02:03.000 1990-01-19 2024-10-11 02:02:03 +7324 7324 7325 732.4 1464.8000000000002 7324 1990-01-20 2024-10-11 02:02:04.000 1990-01-20 2024-10-11 02:02:04 +7325 7325 7326 732.5 1465 7325 1990-01-21 2024-10-11 02:02:05.000 1990-01-21 2024-10-11 02:02:05 +7326 7326 7327 732.6 1465.2 7326 1990-01-22 2024-10-11 02:02:06.000 1990-01-22 2024-10-11 02:02:06 +7327 7327 7328 732.7 1465.4 7327 1990-01-23 2024-10-11 02:02:07.000 1990-01-23 2024-10-11 02:02:07 +7328 7328 7329 732.8 1465.6000000000001 7328 1990-01-24 2024-10-11 02:02:08.000 1990-01-24 2024-10-11 02:02:08 +7329 7329 7330 732.9 1465.8000000000002 7329 1990-01-25 2024-10-11 02:02:09.000 1990-01-25 2024-10-11 02:02:09 +7330 7330 7331 733 1466 7330 1990-01-26 2024-10-11 02:02:10.000 1990-01-26 2024-10-11 02:02:10 +7331 7331 7332 733.1 1466.2 7331 1990-01-27 2024-10-11 02:02:11.000 1990-01-27 2024-10-11 02:02:11 +7332 7332 7333 733.2 1466.4 7332 1990-01-28 2024-10-11 02:02:12.000 1990-01-28 2024-10-11 02:02:12 +7333 7333 7334 733.3 1466.6000000000001 7333 1990-01-29 2024-10-11 02:02:13.000 1990-01-29 2024-10-11 02:02:13 +7334 7334 7335 733.4 1466.8000000000002 7334 1990-01-30 2024-10-11 02:02:14.000 1990-01-30 2024-10-11 02:02:14 +7335 7335 7336 733.5 1467 7335 1990-01-31 2024-10-11 02:02:15.000 1990-01-31 2024-10-11 02:02:15 +7336 7336 7337 733.6 1467.2 7336 1990-02-01 2024-10-11 02:02:16.000 1990-02-01 2024-10-11 02:02:16 +7337 7337 7338 733.7 1467.4 7337 1990-02-02 2024-10-11 02:02:17.000 1990-02-02 2024-10-11 02:02:17 +7338 7338 7339 733.8 1467.6000000000001 7338 1990-02-03 2024-10-11 02:02:18.000 1990-02-03 2024-10-11 02:02:18 +7339 7339 7340 733.9 1467.8000000000002 7339 1990-02-04 2024-10-11 02:02:19.000 1990-02-04 2024-10-11 02:02:19 +7340 7340 7341 734 1468 7340 1990-02-05 2024-10-11 02:02:20.000 1990-02-05 2024-10-11 02:02:20 +7341 7341 7342 734.1 1468.2 7341 1990-02-06 2024-10-11 02:02:21.000 1990-02-06 2024-10-11 02:02:21 +7342 7342 7343 734.2 1468.4 7342 1990-02-07 2024-10-11 02:02:22.000 1990-02-07 2024-10-11 02:02:22 +7343 7343 7344 734.3 1468.6000000000001 7343 1990-02-08 2024-10-11 02:02:23.000 1990-02-08 2024-10-11 02:02:23 +7344 7344 7345 734.4 1468.8000000000002 7344 1990-02-09 2024-10-11 02:02:24.000 1990-02-09 2024-10-11 02:02:24 +7345 7345 7346 734.5 1469 7345 1990-02-10 2024-10-11 02:02:25.000 1990-02-10 2024-10-11 02:02:25 +7346 7346 7347 734.6 1469.2 7346 1990-02-11 2024-10-11 02:02:26.000 1990-02-11 2024-10-11 02:02:26 +7347 7347 7348 734.7 1469.4 7347 1990-02-12 2024-10-11 02:02:27.000 1990-02-12 2024-10-11 02:02:27 +7348 7348 7349 734.8 1469.6000000000001 7348 1990-02-13 2024-10-11 02:02:28.000 1990-02-13 2024-10-11 02:02:28 +7349 7349 7350 734.9 1469.8000000000002 7349 1990-02-14 2024-10-11 02:02:29.000 1990-02-14 2024-10-11 02:02:29 +7350 7350 7351 735 1470 7350 1990-02-15 2024-10-11 02:02:30.000 1990-02-15 2024-10-11 02:02:30 +7351 7351 7352 735.1 1470.2 7351 1990-02-16 2024-10-11 02:02:31.000 1990-02-16 2024-10-11 02:02:31 +7352 7352 7353 735.2 1470.4 7352 1990-02-17 2024-10-11 02:02:32.000 1990-02-17 2024-10-11 02:02:32 +7353 7353 7354 735.3 1470.6000000000001 7353 1990-02-18 2024-10-11 02:02:33.000 1990-02-18 2024-10-11 02:02:33 +7354 7354 7355 735.4 1470.8000000000002 7354 1990-02-19 2024-10-11 02:02:34.000 1990-02-19 2024-10-11 02:02:34 +7355 7355 7356 735.5 1471 7355 1990-02-20 2024-10-11 02:02:35.000 1990-02-20 2024-10-11 02:02:35 +7356 7356 7357 735.6 1471.2 7356 1990-02-21 2024-10-11 02:02:36.000 1990-02-21 2024-10-11 02:02:36 +7357 7357 7358 735.7 1471.4 7357 1990-02-22 2024-10-11 02:02:37.000 1990-02-22 2024-10-11 02:02:37 +7358 7358 7359 735.8 1471.6000000000001 7358 1990-02-23 2024-10-11 02:02:38.000 1990-02-23 2024-10-11 02:02:38 +7359 7359 7360 735.9 1471.8000000000002 7359 1990-02-24 2024-10-11 02:02:39.000 1990-02-24 2024-10-11 02:02:39 +7360 7360 7361 736 1472 7360 1990-02-25 2024-10-11 02:02:40.000 1990-02-25 2024-10-11 02:02:40 +7361 7361 7362 736.1 1472.2 7361 1990-02-26 2024-10-11 02:02:41.000 1990-02-26 2024-10-11 02:02:41 +7362 7362 7363 736.2 1472.4 7362 1990-02-27 2024-10-11 02:02:42.000 1990-02-27 2024-10-11 02:02:42 +7363 7363 7364 736.3 1472.6000000000001 7363 1990-02-28 2024-10-11 02:02:43.000 1990-02-28 2024-10-11 02:02:43 +7364 7364 7365 736.4 1472.8000000000002 7364 1990-03-01 2024-10-11 02:02:44.000 1990-03-01 2024-10-11 02:02:44 +7365 7365 7366 736.5 1473 7365 1990-03-02 2024-10-11 02:02:45.000 1990-03-02 2024-10-11 02:02:45 +7366 7366 7367 736.6 1473.2 7366 1990-03-03 2024-10-11 02:02:46.000 1990-03-03 2024-10-11 02:02:46 +7367 7367 7368 736.7 1473.4 7367 1990-03-04 2024-10-11 02:02:47.000 1990-03-04 2024-10-11 02:02:47 +7368 7368 7369 736.8 1473.6000000000001 7368 1990-03-05 2024-10-11 02:02:48.000 1990-03-05 2024-10-11 02:02:48 +7369 7369 7370 736.9 1473.8000000000002 7369 1990-03-06 2024-10-11 02:02:49.000 1990-03-06 2024-10-11 02:02:49 +7370 7370 7371 737 1474 7370 1990-03-07 2024-10-11 02:02:50.000 1990-03-07 2024-10-11 02:02:50 +7371 7371 7372 737.1 1474.2 7371 1990-03-08 2024-10-11 02:02:51.000 1990-03-08 2024-10-11 02:02:51 +7372 7372 7373 737.2 1474.4 7372 1990-03-09 2024-10-11 02:02:52.000 1990-03-09 2024-10-11 02:02:52 +7373 7373 7374 737.3 1474.6000000000001 7373 1990-03-10 2024-10-11 02:02:53.000 1990-03-10 2024-10-11 02:02:53 +7374 7374 7375 737.4 1474.8000000000002 7374 1990-03-11 2024-10-11 02:02:54.000 1990-03-11 2024-10-11 02:02:54 +7375 7375 7376 737.5 1475 7375 1990-03-12 2024-10-11 02:02:55.000 1990-03-12 2024-10-11 02:02:55 +7376 7376 7377 737.6 1475.2 7376 1990-03-13 2024-10-11 02:02:56.000 1990-03-13 2024-10-11 02:02:56 +7377 7377 7378 737.7 1475.4 7377 1990-03-14 2024-10-11 02:02:57.000 1990-03-14 2024-10-11 02:02:57 +7378 7378 7379 737.8 1475.6000000000001 7378 1990-03-15 2024-10-11 02:02:58.000 1990-03-15 2024-10-11 02:02:58 +7379 7379 7380 737.9 1475.8000000000002 7379 1990-03-16 2024-10-11 02:02:59.000 1990-03-16 2024-10-11 02:02:59 +7380 7380 7381 738 1476 7380 1990-03-17 2024-10-11 02:03:00.000 1990-03-17 2024-10-11 02:03:00 +7381 7381 7382 738.1 1476.2 7381 1990-03-18 2024-10-11 02:03:01.000 1990-03-18 2024-10-11 02:03:01 +7382 7382 7383 738.2 1476.4 7382 1990-03-19 2024-10-11 02:03:02.000 1990-03-19 2024-10-11 02:03:02 +7383 7383 7384 738.3 1476.6000000000001 7383 1990-03-20 2024-10-11 02:03:03.000 1990-03-20 2024-10-11 02:03:03 +7384 7384 7385 738.4 1476.8000000000002 7384 1990-03-21 2024-10-11 02:03:04.000 1990-03-21 2024-10-11 02:03:04 +7385 7385 7386 738.5 1477 7385 1990-03-22 2024-10-11 02:03:05.000 1990-03-22 2024-10-11 02:03:05 +7386 7386 7387 738.6 1477.2 7386 1990-03-23 2024-10-11 02:03:06.000 1990-03-23 2024-10-11 02:03:06 +7387 7387 7388 738.7 1477.4 7387 1990-03-24 2024-10-11 02:03:07.000 1990-03-24 2024-10-11 02:03:07 +7388 7388 7389 738.8 1477.6000000000001 7388 1990-03-25 2024-10-11 02:03:08.000 1990-03-25 2024-10-11 02:03:08 +7389 7389 7390 738.9 1477.8000000000002 7389 1990-03-26 2024-10-11 02:03:09.000 1990-03-26 2024-10-11 02:03:09 +7390 7390 7391 739 1478 7390 1990-03-27 2024-10-11 02:03:10.000 1990-03-27 2024-10-11 02:03:10 +7391 7391 7392 739.1 1478.2 7391 1990-03-28 2024-10-11 02:03:11.000 1990-03-28 2024-10-11 02:03:11 +7392 7392 7393 739.2 1478.4 7392 1990-03-29 2024-10-11 02:03:12.000 1990-03-29 2024-10-11 02:03:12 +7393 7393 7394 739.3 1478.6000000000001 7393 1990-03-30 2024-10-11 02:03:13.000 1990-03-30 2024-10-11 02:03:13 +7394 7394 7395 739.4 1478.8000000000002 7394 1990-03-31 2024-10-11 02:03:14.000 1990-03-31 2024-10-11 02:03:14 +7395 7395 7396 739.5 1479 7395 1990-04-01 2024-10-11 02:03:15.000 1990-04-01 2024-10-11 02:03:15 +7396 7396 7397 739.6 1479.2 7396 1990-04-02 2024-10-11 02:03:16.000 1990-04-02 2024-10-11 02:03:16 +7397 7397 7398 739.7 1479.4 7397 1990-04-03 2024-10-11 02:03:17.000 1990-04-03 2024-10-11 02:03:17 +7398 7398 7399 739.8 1479.6000000000001 7398 1990-04-04 2024-10-11 02:03:18.000 1990-04-04 2024-10-11 02:03:18 +7399 7399 7400 739.9 1479.8000000000002 7399 1990-04-05 2024-10-11 02:03:19.000 1990-04-05 2024-10-11 02:03:19 +7400 7400 7401 740 1480 7400 1990-04-06 2024-10-11 02:03:20.000 1990-04-06 2024-10-11 02:03:20 +7401 7401 7402 740.1 1480.2 7401 1990-04-07 2024-10-11 02:03:21.000 1990-04-07 2024-10-11 02:03:21 +7402 7402 7403 740.2 1480.4 7402 1990-04-08 2024-10-11 02:03:22.000 1990-04-08 2024-10-11 02:03:22 +7403 7403 7404 740.3 1480.6000000000001 7403 1990-04-09 2024-10-11 02:03:23.000 1990-04-09 2024-10-11 02:03:23 +7404 7404 7405 740.4 1480.8000000000002 7404 1990-04-10 2024-10-11 02:03:24.000 1990-04-10 2024-10-11 02:03:24 +7405 7405 7406 740.5 1481 7405 1990-04-11 2024-10-11 02:03:25.000 1990-04-11 2024-10-11 02:03:25 +7406 7406 7407 740.6 1481.2 7406 1990-04-12 2024-10-11 02:03:26.000 1990-04-12 2024-10-11 02:03:26 +7407 7407 7408 740.7 1481.4 7407 1990-04-13 2024-10-11 02:03:27.000 1990-04-13 2024-10-11 02:03:27 +7408 7408 7409 740.8 1481.6000000000001 7408 1990-04-14 2024-10-11 02:03:28.000 1990-04-14 2024-10-11 02:03:28 +7409 7409 7410 740.9 1481.8000000000002 7409 1990-04-15 2024-10-11 02:03:29.000 1990-04-15 2024-10-11 02:03:29 +7410 7410 7411 741 1482 7410 1990-04-16 2024-10-11 02:03:30.000 1990-04-16 2024-10-11 02:03:30 +7411 7411 7412 741.1 1482.2 7411 1990-04-17 2024-10-11 02:03:31.000 1990-04-17 2024-10-11 02:03:31 +7412 7412 7413 741.2 1482.4 7412 1990-04-18 2024-10-11 02:03:32.000 1990-04-18 2024-10-11 02:03:32 +7413 7413 7414 741.3 1482.6000000000001 7413 1990-04-19 2024-10-11 02:03:33.000 1990-04-19 2024-10-11 02:03:33 +7414 7414 7415 741.4 1482.8000000000002 7414 1990-04-20 2024-10-11 02:03:34.000 1990-04-20 2024-10-11 02:03:34 +7415 7415 7416 741.5 1483 7415 1990-04-21 2024-10-11 02:03:35.000 1990-04-21 2024-10-11 02:03:35 +7416 7416 7417 741.6 1483.2 7416 1990-04-22 2024-10-11 02:03:36.000 1990-04-22 2024-10-11 02:03:36 +7417 7417 7418 741.7 1483.4 7417 1990-04-23 2024-10-11 02:03:37.000 1990-04-23 2024-10-11 02:03:37 +7418 7418 7419 741.8 1483.6000000000001 7418 1990-04-24 2024-10-11 02:03:38.000 1990-04-24 2024-10-11 02:03:38 +7419 7419 7420 741.9 1483.8000000000002 7419 1990-04-25 2024-10-11 02:03:39.000 1990-04-25 2024-10-11 02:03:39 +7420 7420 7421 742 1484 7420 1990-04-26 2024-10-11 02:03:40.000 1990-04-26 2024-10-11 02:03:40 +7421 7421 7422 742.1 1484.2 7421 1990-04-27 2024-10-11 02:03:41.000 1990-04-27 2024-10-11 02:03:41 +7422 7422 7423 742.2 1484.4 7422 1990-04-28 2024-10-11 02:03:42.000 1990-04-28 2024-10-11 02:03:42 +7423 7423 7424 742.3 1484.6000000000001 7423 1990-04-29 2024-10-11 02:03:43.000 1990-04-29 2024-10-11 02:03:43 +7424 7424 7425 742.4 1484.8000000000002 7424 1990-04-30 2024-10-11 02:03:44.000 1990-04-30 2024-10-11 02:03:44 +7425 7425 7426 742.5 1485 7425 1990-05-01 2024-10-11 02:03:45.000 1990-05-01 2024-10-11 02:03:45 +7426 7426 7427 742.6 1485.2 7426 1990-05-02 2024-10-11 02:03:46.000 1990-05-02 2024-10-11 02:03:46 +7427 7427 7428 742.7 1485.4 7427 1990-05-03 2024-10-11 02:03:47.000 1990-05-03 2024-10-11 02:03:47 +7428 7428 7429 742.8 1485.6000000000001 7428 1990-05-04 2024-10-11 02:03:48.000 1990-05-04 2024-10-11 02:03:48 +7429 7429 7430 742.9 1485.8000000000002 7429 1990-05-05 2024-10-11 02:03:49.000 1990-05-05 2024-10-11 02:03:49 +7430 7430 7431 743 1486 7430 1990-05-06 2024-10-11 02:03:50.000 1990-05-06 2024-10-11 02:03:50 +7431 7431 7432 743.1 1486.2 7431 1990-05-07 2024-10-11 02:03:51.000 1990-05-07 2024-10-11 02:03:51 +7432 7432 7433 743.2 1486.4 7432 1990-05-08 2024-10-11 02:03:52.000 1990-05-08 2024-10-11 02:03:52 +7433 7433 7434 743.3 1486.6000000000001 7433 1990-05-09 2024-10-11 02:03:53.000 1990-05-09 2024-10-11 02:03:53 +7434 7434 7435 743.4 1486.8000000000002 7434 1990-05-10 2024-10-11 02:03:54.000 1990-05-10 2024-10-11 02:03:54 +7435 7435 7436 743.5 1487 7435 1990-05-11 2024-10-11 02:03:55.000 1990-05-11 2024-10-11 02:03:55 +7436 7436 7437 743.6 1487.2 7436 1990-05-12 2024-10-11 02:03:56.000 1990-05-12 2024-10-11 02:03:56 +7437 7437 7438 743.7 1487.4 7437 1990-05-13 2024-10-11 02:03:57.000 1990-05-13 2024-10-11 02:03:57 +7438 7438 7439 743.8 1487.6000000000001 7438 1990-05-14 2024-10-11 02:03:58.000 1990-05-14 2024-10-11 02:03:58 +7439 7439 7440 743.9 1487.8000000000002 7439 1990-05-15 2024-10-11 02:03:59.000 1990-05-15 2024-10-11 02:03:59 +7440 7440 7441 744 1488 7440 1990-05-16 2024-10-11 02:04:00.000 1990-05-16 2024-10-11 02:04:00 +7441 7441 7442 744.1 1488.2 7441 1990-05-17 2024-10-11 02:04:01.000 1990-05-17 2024-10-11 02:04:01 +7442 7442 7443 744.2 1488.4 7442 1990-05-18 2024-10-11 02:04:02.000 1990-05-18 2024-10-11 02:04:02 +7443 7443 7444 744.3 1488.6000000000001 7443 1990-05-19 2024-10-11 02:04:03.000 1990-05-19 2024-10-11 02:04:03 +7444 7444 7445 744.4 1488.8000000000002 7444 1990-05-20 2024-10-11 02:04:04.000 1990-05-20 2024-10-11 02:04:04 +7445 7445 7446 744.5 1489 7445 1990-05-21 2024-10-11 02:04:05.000 1990-05-21 2024-10-11 02:04:05 +7446 7446 7447 744.6 1489.2 7446 1990-05-22 2024-10-11 02:04:06.000 1990-05-22 2024-10-11 02:04:06 +7447 7447 7448 744.7 1489.4 7447 1990-05-23 2024-10-11 02:04:07.000 1990-05-23 2024-10-11 02:04:07 +7448 7448 7449 744.8 1489.6000000000001 7448 1990-05-24 2024-10-11 02:04:08.000 1990-05-24 2024-10-11 02:04:08 +7449 7449 7450 744.9 1489.8000000000002 7449 1990-05-25 2024-10-11 02:04:09.000 1990-05-25 2024-10-11 02:04:09 +7450 7450 7451 745 1490 7450 1990-05-26 2024-10-11 02:04:10.000 1990-05-26 2024-10-11 02:04:10 +7451 7451 7452 745.1 1490.2 7451 1990-05-27 2024-10-11 02:04:11.000 1990-05-27 2024-10-11 02:04:11 +7452 7452 7453 745.2 1490.4 7452 1990-05-28 2024-10-11 02:04:12.000 1990-05-28 2024-10-11 02:04:12 +7453 7453 7454 745.3 1490.6000000000001 7453 1990-05-29 2024-10-11 02:04:13.000 1990-05-29 2024-10-11 02:04:13 +7454 7454 7455 745.4 1490.8000000000002 7454 1990-05-30 2024-10-11 02:04:14.000 1990-05-30 2024-10-11 02:04:14 +7455 7455 7456 745.5 1491 7455 1990-05-31 2024-10-11 02:04:15.000 1990-05-31 2024-10-11 02:04:15 +7456 7456 7457 745.6 1491.2 7456 1990-06-01 2024-10-11 02:04:16.000 1990-06-01 2024-10-11 02:04:16 +7457 7457 7458 745.7 1491.4 7457 1990-06-02 2024-10-11 02:04:17.000 1990-06-02 2024-10-11 02:04:17 +7458 7458 7459 745.8 1491.6000000000001 7458 1990-06-03 2024-10-11 02:04:18.000 1990-06-03 2024-10-11 02:04:18 +7459 7459 7460 745.9 1491.8000000000002 7459 1990-06-04 2024-10-11 02:04:19.000 1990-06-04 2024-10-11 02:04:19 +7460 7460 7461 746 1492 7460 1990-06-05 2024-10-11 02:04:20.000 1990-06-05 2024-10-11 02:04:20 +7461 7461 7462 746.1 1492.2 7461 1990-06-06 2024-10-11 02:04:21.000 1990-06-06 2024-10-11 02:04:21 +7462 7462 7463 746.2 1492.4 7462 1990-06-07 2024-10-11 02:04:22.000 1990-06-07 2024-10-11 02:04:22 +7463 7463 7464 746.3 1492.6000000000001 7463 1990-06-08 2024-10-11 02:04:23.000 1990-06-08 2024-10-11 02:04:23 +7464 7464 7465 746.4 1492.8000000000002 7464 1990-06-09 2024-10-11 02:04:24.000 1990-06-09 2024-10-11 02:04:24 +7465 7465 7466 746.5 1493 7465 1990-06-10 2024-10-11 02:04:25.000 1990-06-10 2024-10-11 02:04:25 +7466 7466 7467 746.6 1493.2 7466 1990-06-11 2024-10-11 02:04:26.000 1990-06-11 2024-10-11 02:04:26 +7467 7467 7468 746.7 1493.4 7467 1990-06-12 2024-10-11 02:04:27.000 1990-06-12 2024-10-11 02:04:27 +7468 7468 7469 746.8 1493.6000000000001 7468 1990-06-13 2024-10-11 02:04:28.000 1990-06-13 2024-10-11 02:04:28 +7469 7469 7470 746.9 1493.8000000000002 7469 1990-06-14 2024-10-11 02:04:29.000 1990-06-14 2024-10-11 02:04:29 +7470 7470 7471 747 1494 7470 1990-06-15 2024-10-11 02:04:30.000 1990-06-15 2024-10-11 02:04:30 +7471 7471 7472 747.1 1494.2 7471 1990-06-16 2024-10-11 02:04:31.000 1990-06-16 2024-10-11 02:04:31 +7472 7472 7473 747.2 1494.4 7472 1990-06-17 2024-10-11 02:04:32.000 1990-06-17 2024-10-11 02:04:32 +7473 7473 7474 747.3 1494.6000000000001 7473 1990-06-18 2024-10-11 02:04:33.000 1990-06-18 2024-10-11 02:04:33 +7474 7474 7475 747.4 1494.8000000000002 7474 1990-06-19 2024-10-11 02:04:34.000 1990-06-19 2024-10-11 02:04:34 +7475 7475 7476 747.5 1495 7475 1990-06-20 2024-10-11 02:04:35.000 1990-06-20 2024-10-11 02:04:35 +7476 7476 7477 747.6 1495.2 7476 1990-06-21 2024-10-11 02:04:36.000 1990-06-21 2024-10-11 02:04:36 +7477 7477 7478 747.7 1495.4 7477 1990-06-22 2024-10-11 02:04:37.000 1990-06-22 2024-10-11 02:04:37 +7478 7478 7479 747.8 1495.6000000000001 7478 1990-06-23 2024-10-11 02:04:38.000 1990-06-23 2024-10-11 02:04:38 +7479 7479 7480 747.9 1495.8000000000002 7479 1990-06-24 2024-10-11 02:04:39.000 1990-06-24 2024-10-11 02:04:39 +7480 7480 7481 748 1496 7480 1990-06-25 2024-10-11 02:04:40.000 1990-06-25 2024-10-11 02:04:40 +7481 7481 7482 748.1 1496.2 7481 1990-06-26 2024-10-11 02:04:41.000 1990-06-26 2024-10-11 02:04:41 +7482 7482 7483 748.2 1496.4 7482 1990-06-27 2024-10-11 02:04:42.000 1990-06-27 2024-10-11 02:04:42 +7483 7483 7484 748.3 1496.6000000000001 7483 1990-06-28 2024-10-11 02:04:43.000 1990-06-28 2024-10-11 02:04:43 +7484 7484 7485 748.4 1496.8000000000002 7484 1990-06-29 2024-10-11 02:04:44.000 1990-06-29 2024-10-11 02:04:44 +7485 7485 7486 748.5 1497 7485 1990-06-30 2024-10-11 02:04:45.000 1990-06-30 2024-10-11 02:04:45 +7486 7486 7487 748.6 1497.2 7486 1990-07-01 2024-10-11 02:04:46.000 1990-07-01 2024-10-11 02:04:46 +7487 7487 7488 748.7 1497.4 7487 1990-07-02 2024-10-11 02:04:47.000 1990-07-02 2024-10-11 02:04:47 +7488 7488 7489 748.8 1497.6000000000001 7488 1990-07-03 2024-10-11 02:04:48.000 1990-07-03 2024-10-11 02:04:48 +7489 7489 7490 748.9 1497.8000000000002 7489 1990-07-04 2024-10-11 02:04:49.000 1990-07-04 2024-10-11 02:04:49 +7490 7490 7491 749 1498 7490 1990-07-05 2024-10-11 02:04:50.000 1990-07-05 2024-10-11 02:04:50 +7491 7491 7492 749.1 1498.2 7491 1990-07-06 2024-10-11 02:04:51.000 1990-07-06 2024-10-11 02:04:51 +7492 7492 7493 749.2 1498.4 7492 1990-07-07 2024-10-11 02:04:52.000 1990-07-07 2024-10-11 02:04:52 +7493 7493 7494 749.3 1498.6000000000001 7493 1990-07-08 2024-10-11 02:04:53.000 1990-07-08 2024-10-11 02:04:53 +7494 7494 7495 749.4 1498.8000000000002 7494 1990-07-09 2024-10-11 02:04:54.000 1990-07-09 2024-10-11 02:04:54 +7495 7495 7496 749.5 1499 7495 1990-07-10 2024-10-11 02:04:55.000 1990-07-10 2024-10-11 02:04:55 +7496 7496 7497 749.6 1499.2 7496 1990-07-11 2024-10-11 02:04:56.000 1990-07-11 2024-10-11 02:04:56 +7497 7497 7498 749.7 1499.4 7497 1990-07-12 2024-10-11 02:04:57.000 1990-07-12 2024-10-11 02:04:57 +7498 7498 7499 749.8 1499.6000000000001 7498 1990-07-13 2024-10-11 02:04:58.000 1990-07-13 2024-10-11 02:04:58 +7499 7499 7500 749.9 1499.8000000000002 7499 1990-07-14 2024-10-11 02:04:59.000 1990-07-14 2024-10-11 02:04:59 +7500 7500 7501 750 1500 7500 1990-07-15 2024-10-11 02:05:00.000 1990-07-15 2024-10-11 02:05:00 +7501 7501 7502 750.1 1500.2 7501 1990-07-16 2024-10-11 02:05:01.000 1990-07-16 2024-10-11 02:05:01 +7502 7502 7503 750.2 1500.4 7502 1990-07-17 2024-10-11 02:05:02.000 1990-07-17 2024-10-11 02:05:02 +7503 7503 7504 750.3 1500.6000000000001 7503 1990-07-18 2024-10-11 02:05:03.000 1990-07-18 2024-10-11 02:05:03 +7504 7504 7505 750.4 1500.8000000000002 7504 1990-07-19 2024-10-11 02:05:04.000 1990-07-19 2024-10-11 02:05:04 +7505 7505 7506 750.5 1501 7505 1990-07-20 2024-10-11 02:05:05.000 1990-07-20 2024-10-11 02:05:05 +7506 7506 7507 750.6 1501.2 7506 1990-07-21 2024-10-11 02:05:06.000 1990-07-21 2024-10-11 02:05:06 +7507 7507 7508 750.7 1501.4 7507 1990-07-22 2024-10-11 02:05:07.000 1990-07-22 2024-10-11 02:05:07 +7508 7508 7509 750.8 1501.6000000000001 7508 1990-07-23 2024-10-11 02:05:08.000 1990-07-23 2024-10-11 02:05:08 +7509 7509 7510 750.9 1501.8000000000002 7509 1990-07-24 2024-10-11 02:05:09.000 1990-07-24 2024-10-11 02:05:09 +7510 7510 7511 751 1502 7510 1990-07-25 2024-10-11 02:05:10.000 1990-07-25 2024-10-11 02:05:10 +7511 7511 7512 751.1 1502.2 7511 1990-07-26 2024-10-11 02:05:11.000 1990-07-26 2024-10-11 02:05:11 +7512 7512 7513 751.2 1502.4 7512 1990-07-27 2024-10-11 02:05:12.000 1990-07-27 2024-10-11 02:05:12 +7513 7513 7514 751.3 1502.6000000000001 7513 1990-07-28 2024-10-11 02:05:13.000 1990-07-28 2024-10-11 02:05:13 +7514 7514 7515 751.4 1502.8000000000002 7514 1990-07-29 2024-10-11 02:05:14.000 1990-07-29 2024-10-11 02:05:14 +7515 7515 7516 751.5 1503 7515 1990-07-30 2024-10-11 02:05:15.000 1990-07-30 2024-10-11 02:05:15 +7516 7516 7517 751.6 1503.2 7516 1990-07-31 2024-10-11 02:05:16.000 1990-07-31 2024-10-11 02:05:16 +7517 7517 7518 751.7 1503.4 7517 1990-08-01 2024-10-11 02:05:17.000 1990-08-01 2024-10-11 02:05:17 +7518 7518 7519 751.8 1503.6000000000001 7518 1990-08-02 2024-10-11 02:05:18.000 1990-08-02 2024-10-11 02:05:18 +7519 7519 7520 751.9 1503.8000000000002 7519 1990-08-03 2024-10-11 02:05:19.000 1990-08-03 2024-10-11 02:05:19 +7520 7520 7521 752 1504 7520 1990-08-04 2024-10-11 02:05:20.000 1990-08-04 2024-10-11 02:05:20 +7521 7521 7522 752.1 1504.2 7521 1990-08-05 2024-10-11 02:05:21.000 1990-08-05 2024-10-11 02:05:21 +7522 7522 7523 752.2 1504.4 7522 1990-08-06 2024-10-11 02:05:22.000 1990-08-06 2024-10-11 02:05:22 +7523 7523 7524 752.3 1504.6000000000001 7523 1990-08-07 2024-10-11 02:05:23.000 1990-08-07 2024-10-11 02:05:23 +7524 7524 7525 752.4 1504.8000000000002 7524 1990-08-08 2024-10-11 02:05:24.000 1990-08-08 2024-10-11 02:05:24 +7525 7525 7526 752.5 1505 7525 1990-08-09 2024-10-11 02:05:25.000 1990-08-09 2024-10-11 02:05:25 +7526 7526 7527 752.6 1505.2 7526 1990-08-10 2024-10-11 02:05:26.000 1990-08-10 2024-10-11 02:05:26 +7527 7527 7528 752.7 1505.4 7527 1990-08-11 2024-10-11 02:05:27.000 1990-08-11 2024-10-11 02:05:27 +7528 7528 7529 752.8 1505.6000000000001 7528 1990-08-12 2024-10-11 02:05:28.000 1990-08-12 2024-10-11 02:05:28 +7529 7529 7530 752.9 1505.8000000000002 7529 1990-08-13 2024-10-11 02:05:29.000 1990-08-13 2024-10-11 02:05:29 +7530 7530 7531 753 1506 7530 1990-08-14 2024-10-11 02:05:30.000 1990-08-14 2024-10-11 02:05:30 +7531 7531 7532 753.1 1506.2 7531 1990-08-15 2024-10-11 02:05:31.000 1990-08-15 2024-10-11 02:05:31 +7532 7532 7533 753.2 1506.4 7532 1990-08-16 2024-10-11 02:05:32.000 1990-08-16 2024-10-11 02:05:32 +7533 7533 7534 753.3 1506.6000000000001 7533 1990-08-17 2024-10-11 02:05:33.000 1990-08-17 2024-10-11 02:05:33 +7534 7534 7535 753.4 1506.8000000000002 7534 1990-08-18 2024-10-11 02:05:34.000 1990-08-18 2024-10-11 02:05:34 +7535 7535 7536 753.5 1507 7535 1990-08-19 2024-10-11 02:05:35.000 1990-08-19 2024-10-11 02:05:35 +7536 7536 7537 753.6 1507.2 7536 1990-08-20 2024-10-11 02:05:36.000 1990-08-20 2024-10-11 02:05:36 +7537 7537 7538 753.7 1507.4 7537 1990-08-21 2024-10-11 02:05:37.000 1990-08-21 2024-10-11 02:05:37 +7538 7538 7539 753.8 1507.6000000000001 7538 1990-08-22 2024-10-11 02:05:38.000 1990-08-22 2024-10-11 02:05:38 +7539 7539 7540 753.9 1507.8000000000002 7539 1990-08-23 2024-10-11 02:05:39.000 1990-08-23 2024-10-11 02:05:39 +7540 7540 7541 754 1508 7540 1990-08-24 2024-10-11 02:05:40.000 1990-08-24 2024-10-11 02:05:40 +7541 7541 7542 754.1 1508.2 7541 1990-08-25 2024-10-11 02:05:41.000 1990-08-25 2024-10-11 02:05:41 +7542 7542 7543 754.2 1508.4 7542 1990-08-26 2024-10-11 02:05:42.000 1990-08-26 2024-10-11 02:05:42 +7543 7543 7544 754.3 1508.6000000000001 7543 1990-08-27 2024-10-11 02:05:43.000 1990-08-27 2024-10-11 02:05:43 +7544 7544 7545 754.4 1508.8000000000002 7544 1990-08-28 2024-10-11 02:05:44.000 1990-08-28 2024-10-11 02:05:44 +7545 7545 7546 754.5 1509 7545 1990-08-29 2024-10-11 02:05:45.000 1990-08-29 2024-10-11 02:05:45 +7546 7546 7547 754.6 1509.2 7546 1990-08-30 2024-10-11 02:05:46.000 1990-08-30 2024-10-11 02:05:46 +7547 7547 7548 754.7 1509.4 7547 1990-08-31 2024-10-11 02:05:47.000 1990-08-31 2024-10-11 02:05:47 +7548 7548 7549 754.8 1509.6000000000001 7548 1990-09-01 2024-10-11 02:05:48.000 1990-09-01 2024-10-11 02:05:48 +7549 7549 7550 754.9 1509.8000000000002 7549 1990-09-02 2024-10-11 02:05:49.000 1990-09-02 2024-10-11 02:05:49 +7550 7550 7551 755 1510 7550 1990-09-03 2024-10-11 02:05:50.000 1990-09-03 2024-10-11 02:05:50 +7551 7551 7552 755.1 1510.2 7551 1990-09-04 2024-10-11 02:05:51.000 1990-09-04 2024-10-11 02:05:51 +7552 7552 7553 755.2 1510.4 7552 1990-09-05 2024-10-11 02:05:52.000 1990-09-05 2024-10-11 02:05:52 +7553 7553 7554 755.3 1510.6000000000001 7553 1990-09-06 2024-10-11 02:05:53.000 1990-09-06 2024-10-11 02:05:53 +7554 7554 7555 755.4 1510.8000000000002 7554 1990-09-07 2024-10-11 02:05:54.000 1990-09-07 2024-10-11 02:05:54 +7555 7555 7556 755.5 1511 7555 1990-09-08 2024-10-11 02:05:55.000 1990-09-08 2024-10-11 02:05:55 +7556 7556 7557 755.6 1511.2 7556 1990-09-09 2024-10-11 02:05:56.000 1990-09-09 2024-10-11 02:05:56 +7557 7557 7558 755.7 1511.4 7557 1990-09-10 2024-10-11 02:05:57.000 1990-09-10 2024-10-11 02:05:57 +7558 7558 7559 755.8 1511.6000000000001 7558 1990-09-11 2024-10-11 02:05:58.000 1990-09-11 2024-10-11 02:05:58 +7559 7559 7560 755.9 1511.8000000000002 7559 1990-09-12 2024-10-11 02:05:59.000 1990-09-12 2024-10-11 02:05:59 +7560 7560 7561 756 1512 7560 1990-09-13 2024-10-11 02:06:00.000 1990-09-13 2024-10-11 02:06:00 +7561 7561 7562 756.1 1512.2 7561 1990-09-14 2024-10-11 02:06:01.000 1990-09-14 2024-10-11 02:06:01 +7562 7562 7563 756.2 1512.4 7562 1990-09-15 2024-10-11 02:06:02.000 1990-09-15 2024-10-11 02:06:02 +7563 7563 7564 756.3 1512.6000000000001 7563 1990-09-16 2024-10-11 02:06:03.000 1990-09-16 2024-10-11 02:06:03 +7564 7564 7565 756.4 1512.8000000000002 7564 1990-09-17 2024-10-11 02:06:04.000 1990-09-17 2024-10-11 02:06:04 +7565 7565 7566 756.5 1513 7565 1990-09-18 2024-10-11 02:06:05.000 1990-09-18 2024-10-11 02:06:05 +7566 7566 7567 756.6 1513.2 7566 1990-09-19 2024-10-11 02:06:06.000 1990-09-19 2024-10-11 02:06:06 +7567 7567 7568 756.7 1513.4 7567 1990-09-20 2024-10-11 02:06:07.000 1990-09-20 2024-10-11 02:06:07 +7568 7568 7569 756.8 1513.6000000000001 7568 1990-09-21 2024-10-11 02:06:08.000 1990-09-21 2024-10-11 02:06:08 +7569 7569 7570 756.9 1513.8000000000002 7569 1990-09-22 2024-10-11 02:06:09.000 1990-09-22 2024-10-11 02:06:09 +7570 7570 7571 757 1514 7570 1990-09-23 2024-10-11 02:06:10.000 1990-09-23 2024-10-11 02:06:10 +7571 7571 7572 757.1 1514.2 7571 1990-09-24 2024-10-11 02:06:11.000 1990-09-24 2024-10-11 02:06:11 +7572 7572 7573 757.2 1514.4 7572 1990-09-25 2024-10-11 02:06:12.000 1990-09-25 2024-10-11 02:06:12 +7573 7573 7574 757.3 1514.6000000000001 7573 1990-09-26 2024-10-11 02:06:13.000 1990-09-26 2024-10-11 02:06:13 +7574 7574 7575 757.4 1514.8000000000002 7574 1990-09-27 2024-10-11 02:06:14.000 1990-09-27 2024-10-11 02:06:14 +7575 7575 7576 757.5 1515 7575 1990-09-28 2024-10-11 02:06:15.000 1990-09-28 2024-10-11 02:06:15 +7576 7576 7577 757.6 1515.2 7576 1990-09-29 2024-10-11 02:06:16.000 1990-09-29 2024-10-11 02:06:16 +7577 7577 7578 757.7 1515.4 7577 1990-09-30 2024-10-11 02:06:17.000 1990-09-30 2024-10-11 02:06:17 +7578 7578 7579 757.8 1515.6000000000001 7578 1990-10-01 2024-10-11 02:06:18.000 1990-10-01 2024-10-11 02:06:18 +7579 7579 7580 757.9 1515.8000000000002 7579 1990-10-02 2024-10-11 02:06:19.000 1990-10-02 2024-10-11 02:06:19 +7580 7580 7581 758 1516 7580 1990-10-03 2024-10-11 02:06:20.000 1990-10-03 2024-10-11 02:06:20 +7581 7581 7582 758.1 1516.2 7581 1990-10-04 2024-10-11 02:06:21.000 1990-10-04 2024-10-11 02:06:21 +7582 7582 7583 758.2 1516.4 7582 1990-10-05 2024-10-11 02:06:22.000 1990-10-05 2024-10-11 02:06:22 +7583 7583 7584 758.3 1516.6000000000001 7583 1990-10-06 2024-10-11 02:06:23.000 1990-10-06 2024-10-11 02:06:23 +7584 7584 7585 758.4 1516.8000000000002 7584 1990-10-07 2024-10-11 02:06:24.000 1990-10-07 2024-10-11 02:06:24 +7585 7585 7586 758.5 1517 7585 1990-10-08 2024-10-11 02:06:25.000 1990-10-08 2024-10-11 02:06:25 +7586 7586 7587 758.6 1517.2 7586 1990-10-09 2024-10-11 02:06:26.000 1990-10-09 2024-10-11 02:06:26 +7587 7587 7588 758.7 1517.4 7587 1990-10-10 2024-10-11 02:06:27.000 1990-10-10 2024-10-11 02:06:27 +7588 7588 7589 758.8 1517.6000000000001 7588 1990-10-11 2024-10-11 02:06:28.000 1990-10-11 2024-10-11 02:06:28 +7589 7589 7590 758.9 1517.8000000000002 7589 1990-10-12 2024-10-11 02:06:29.000 1990-10-12 2024-10-11 02:06:29 +7590 7590 7591 759 1518 7590 1990-10-13 2024-10-11 02:06:30.000 1990-10-13 2024-10-11 02:06:30 +7591 7591 7592 759.1 1518.2 7591 1990-10-14 2024-10-11 02:06:31.000 1990-10-14 2024-10-11 02:06:31 +7592 7592 7593 759.2 1518.4 7592 1990-10-15 2024-10-11 02:06:32.000 1990-10-15 2024-10-11 02:06:32 +7593 7593 7594 759.3 1518.6000000000001 7593 1990-10-16 2024-10-11 02:06:33.000 1990-10-16 2024-10-11 02:06:33 +7594 7594 7595 759.4 1518.8000000000002 7594 1990-10-17 2024-10-11 02:06:34.000 1990-10-17 2024-10-11 02:06:34 +7595 7595 7596 759.5 1519 7595 1990-10-18 2024-10-11 02:06:35.000 1990-10-18 2024-10-11 02:06:35 +7596 7596 7597 759.6 1519.2 7596 1990-10-19 2024-10-11 02:06:36.000 1990-10-19 2024-10-11 02:06:36 +7597 7597 7598 759.7 1519.4 7597 1990-10-20 2024-10-11 02:06:37.000 1990-10-20 2024-10-11 02:06:37 +7598 7598 7599 759.8 1519.6000000000001 7598 1990-10-21 2024-10-11 02:06:38.000 1990-10-21 2024-10-11 02:06:38 +7599 7599 7600 759.9 1519.8000000000002 7599 1990-10-22 2024-10-11 02:06:39.000 1990-10-22 2024-10-11 02:06:39 +7600 7600 7601 760 1520 7600 1990-10-23 2024-10-11 02:06:40.000 1990-10-23 2024-10-11 02:06:40 +7601 7601 7602 760.1 1520.2 7601 1990-10-24 2024-10-11 02:06:41.000 1990-10-24 2024-10-11 02:06:41 +7602 7602 7603 760.2 1520.4 7602 1990-10-25 2024-10-11 02:06:42.000 1990-10-25 2024-10-11 02:06:42 +7603 7603 7604 760.3 1520.6000000000001 7603 1990-10-26 2024-10-11 02:06:43.000 1990-10-26 2024-10-11 02:06:43 +7604 7604 7605 760.4 1520.8000000000002 7604 1990-10-27 2024-10-11 02:06:44.000 1990-10-27 2024-10-11 02:06:44 +7605 7605 7606 760.5 1521 7605 1990-10-28 2024-10-11 02:06:45.000 1990-10-28 2024-10-11 02:06:45 +7606 7606 7607 760.6 1521.2 7606 1990-10-29 2024-10-11 02:06:46.000 1990-10-29 2024-10-11 02:06:46 +7607 7607 7608 760.7 1521.4 7607 1990-10-30 2024-10-11 02:06:47.000 1990-10-30 2024-10-11 02:06:47 +7608 7608 7609 760.8 1521.6000000000001 7608 1990-10-31 2024-10-11 02:06:48.000 1990-10-31 2024-10-11 02:06:48 +7609 7609 7610 760.9 1521.8000000000002 7609 1990-11-01 2024-10-11 02:06:49.000 1990-11-01 2024-10-11 02:06:49 +7610 7610 7611 761 1522 7610 1990-11-02 2024-10-11 02:06:50.000 1990-11-02 2024-10-11 02:06:50 +7611 7611 7612 761.1 1522.2 7611 1990-11-03 2024-10-11 02:06:51.000 1990-11-03 2024-10-11 02:06:51 +7612 7612 7613 761.2 1522.4 7612 1990-11-04 2024-10-11 02:06:52.000 1990-11-04 2024-10-11 02:06:52 +7613 7613 7614 761.3 1522.6000000000001 7613 1990-11-05 2024-10-11 02:06:53.000 1990-11-05 2024-10-11 02:06:53 +7614 7614 7615 761.4 1522.8000000000002 7614 1990-11-06 2024-10-11 02:06:54.000 1990-11-06 2024-10-11 02:06:54 +7615 7615 7616 761.5 1523 7615 1990-11-07 2024-10-11 02:06:55.000 1990-11-07 2024-10-11 02:06:55 +7616 7616 7617 761.6 1523.2 7616 1990-11-08 2024-10-11 02:06:56.000 1990-11-08 2024-10-11 02:06:56 +7617 7617 7618 761.7 1523.4 7617 1990-11-09 2024-10-11 02:06:57.000 1990-11-09 2024-10-11 02:06:57 +7618 7618 7619 761.8 1523.6000000000001 7618 1990-11-10 2024-10-11 02:06:58.000 1990-11-10 2024-10-11 02:06:58 +7619 7619 7620 761.9 1523.8000000000002 7619 1990-11-11 2024-10-11 02:06:59.000 1990-11-11 2024-10-11 02:06:59 +7620 7620 7621 762 1524 7620 1990-11-12 2024-10-11 02:07:00.000 1990-11-12 2024-10-11 02:07:00 +7621 7621 7622 762.1 1524.2 7621 1990-11-13 2024-10-11 02:07:01.000 1990-11-13 2024-10-11 02:07:01 +7622 7622 7623 762.2 1524.4 7622 1990-11-14 2024-10-11 02:07:02.000 1990-11-14 2024-10-11 02:07:02 +7623 7623 7624 762.3 1524.6000000000001 7623 1990-11-15 2024-10-11 02:07:03.000 1990-11-15 2024-10-11 02:07:03 +7624 7624 7625 762.4 1524.8000000000002 7624 1990-11-16 2024-10-11 02:07:04.000 1990-11-16 2024-10-11 02:07:04 +7625 7625 7626 762.5 1525 7625 1990-11-17 2024-10-11 02:07:05.000 1990-11-17 2024-10-11 02:07:05 +7626 7626 7627 762.6 1525.2 7626 1990-11-18 2024-10-11 02:07:06.000 1990-11-18 2024-10-11 02:07:06 +7627 7627 7628 762.7 1525.4 7627 1990-11-19 2024-10-11 02:07:07.000 1990-11-19 2024-10-11 02:07:07 +7628 7628 7629 762.8 1525.6000000000001 7628 1990-11-20 2024-10-11 02:07:08.000 1990-11-20 2024-10-11 02:07:08 +7629 7629 7630 762.9 1525.8000000000002 7629 1990-11-21 2024-10-11 02:07:09.000 1990-11-21 2024-10-11 02:07:09 +7630 7630 7631 763 1526 7630 1990-11-22 2024-10-11 02:07:10.000 1990-11-22 2024-10-11 02:07:10 +7631 7631 7632 763.1 1526.2 7631 1990-11-23 2024-10-11 02:07:11.000 1990-11-23 2024-10-11 02:07:11 +7632 7632 7633 763.2 1526.4 7632 1990-11-24 2024-10-11 02:07:12.000 1990-11-24 2024-10-11 02:07:12 +7633 7633 7634 763.3 1526.6000000000001 7633 1990-11-25 2024-10-11 02:07:13.000 1990-11-25 2024-10-11 02:07:13 +7634 7634 7635 763.4 1526.8000000000002 7634 1990-11-26 2024-10-11 02:07:14.000 1990-11-26 2024-10-11 02:07:14 +7635 7635 7636 763.5 1527 7635 1990-11-27 2024-10-11 02:07:15.000 1990-11-27 2024-10-11 02:07:15 +7636 7636 7637 763.6 1527.2 7636 1990-11-28 2024-10-11 02:07:16.000 1990-11-28 2024-10-11 02:07:16 +7637 7637 7638 763.7 1527.4 7637 1990-11-29 2024-10-11 02:07:17.000 1990-11-29 2024-10-11 02:07:17 +7638 7638 7639 763.8 1527.6000000000001 7638 1990-11-30 2024-10-11 02:07:18.000 1990-11-30 2024-10-11 02:07:18 +7639 7639 7640 763.9 1527.8000000000002 7639 1990-12-01 2024-10-11 02:07:19.000 1990-12-01 2024-10-11 02:07:19 +7640 7640 7641 764 1528 7640 1990-12-02 2024-10-11 02:07:20.000 1990-12-02 2024-10-11 02:07:20 +7641 7641 7642 764.1 1528.2 7641 1990-12-03 2024-10-11 02:07:21.000 1990-12-03 2024-10-11 02:07:21 +7642 7642 7643 764.2 1528.4 7642 1990-12-04 2024-10-11 02:07:22.000 1990-12-04 2024-10-11 02:07:22 +7643 7643 7644 764.3 1528.6000000000001 7643 1990-12-05 2024-10-11 02:07:23.000 1990-12-05 2024-10-11 02:07:23 +7644 7644 7645 764.4 1528.8000000000002 7644 1990-12-06 2024-10-11 02:07:24.000 1990-12-06 2024-10-11 02:07:24 +7645 7645 7646 764.5 1529 7645 1990-12-07 2024-10-11 02:07:25.000 1990-12-07 2024-10-11 02:07:25 +7646 7646 7647 764.6 1529.2 7646 1990-12-08 2024-10-11 02:07:26.000 1990-12-08 2024-10-11 02:07:26 +7647 7647 7648 764.7 1529.4 7647 1990-12-09 2024-10-11 02:07:27.000 1990-12-09 2024-10-11 02:07:27 +7648 7648 7649 764.8 1529.6000000000001 7648 1990-12-10 2024-10-11 02:07:28.000 1990-12-10 2024-10-11 02:07:28 +7649 7649 7650 764.9 1529.8000000000002 7649 1990-12-11 2024-10-11 02:07:29.000 1990-12-11 2024-10-11 02:07:29 +7650 7650 7651 765 1530 7650 1990-12-12 2024-10-11 02:07:30.000 1990-12-12 2024-10-11 02:07:30 +7651 7651 7652 765.1 1530.2 7651 1990-12-13 2024-10-11 02:07:31.000 1990-12-13 2024-10-11 02:07:31 +7652 7652 7653 765.2 1530.4 7652 1990-12-14 2024-10-11 02:07:32.000 1990-12-14 2024-10-11 02:07:32 +7653 7653 7654 765.3 1530.6000000000001 7653 1990-12-15 2024-10-11 02:07:33.000 1990-12-15 2024-10-11 02:07:33 +7654 7654 7655 765.4 1530.8000000000002 7654 1990-12-16 2024-10-11 02:07:34.000 1990-12-16 2024-10-11 02:07:34 +7655 7655 7656 765.5 1531 7655 1990-12-17 2024-10-11 02:07:35.000 1990-12-17 2024-10-11 02:07:35 +7656 7656 7657 765.6 1531.2 7656 1990-12-18 2024-10-11 02:07:36.000 1990-12-18 2024-10-11 02:07:36 +7657 7657 7658 765.7 1531.4 7657 1990-12-19 2024-10-11 02:07:37.000 1990-12-19 2024-10-11 02:07:37 +7658 7658 7659 765.8 1531.6000000000001 7658 1990-12-20 2024-10-11 02:07:38.000 1990-12-20 2024-10-11 02:07:38 +7659 7659 7660 765.9 1531.8000000000002 7659 1990-12-21 2024-10-11 02:07:39.000 1990-12-21 2024-10-11 02:07:39 +7660 7660 7661 766 1532 7660 1990-12-22 2024-10-11 02:07:40.000 1990-12-22 2024-10-11 02:07:40 +7661 7661 7662 766.1 1532.2 7661 1990-12-23 2024-10-11 02:07:41.000 1990-12-23 2024-10-11 02:07:41 +7662 7662 7663 766.2 1532.4 7662 1990-12-24 2024-10-11 02:07:42.000 1990-12-24 2024-10-11 02:07:42 +7663 7663 7664 766.3 1532.6000000000001 7663 1990-12-25 2024-10-11 02:07:43.000 1990-12-25 2024-10-11 02:07:43 +7664 7664 7665 766.4 1532.8000000000002 7664 1990-12-26 2024-10-11 02:07:44.000 1990-12-26 2024-10-11 02:07:44 +7665 7665 7666 766.5 1533 7665 1990-12-27 2024-10-11 02:07:45.000 1990-12-27 2024-10-11 02:07:45 +7666 7666 7667 766.6 1533.2 7666 1990-12-28 2024-10-11 02:07:46.000 1990-12-28 2024-10-11 02:07:46 +7667 7667 7668 766.7 1533.4 7667 1990-12-29 2024-10-11 02:07:47.000 1990-12-29 2024-10-11 02:07:47 +7668 7668 7669 766.8 1533.6000000000001 7668 1990-12-30 2024-10-11 02:07:48.000 1990-12-30 2024-10-11 02:07:48 +7669 7669 7670 766.9 1533.8000000000002 7669 1990-12-31 2024-10-11 02:07:49.000 1990-12-31 2024-10-11 02:07:49 +7670 7670 7671 767 1534 7670 1991-01-01 2024-10-11 02:07:50.000 1991-01-01 2024-10-11 02:07:50 +7671 7671 7672 767.1 1534.2 7671 1991-01-02 2024-10-11 02:07:51.000 1991-01-02 2024-10-11 02:07:51 +7672 7672 7673 767.2 1534.4 7672 1991-01-03 2024-10-11 02:07:52.000 1991-01-03 2024-10-11 02:07:52 +7673 7673 7674 767.3 1534.6000000000001 7673 1991-01-04 2024-10-11 02:07:53.000 1991-01-04 2024-10-11 02:07:53 +7674 7674 7675 767.4 1534.8000000000002 7674 1991-01-05 2024-10-11 02:07:54.000 1991-01-05 2024-10-11 02:07:54 +7675 7675 7676 767.5 1535 7675 1991-01-06 2024-10-11 02:07:55.000 1991-01-06 2024-10-11 02:07:55 +7676 7676 7677 767.6 1535.2 7676 1991-01-07 2024-10-11 02:07:56.000 1991-01-07 2024-10-11 02:07:56 +7677 7677 7678 767.7 1535.4 7677 1991-01-08 2024-10-11 02:07:57.000 1991-01-08 2024-10-11 02:07:57 +7678 7678 7679 767.8 1535.6000000000001 7678 1991-01-09 2024-10-11 02:07:58.000 1991-01-09 2024-10-11 02:07:58 +7679 7679 7680 767.9 1535.8000000000002 7679 1991-01-10 2024-10-11 02:07:59.000 1991-01-10 2024-10-11 02:07:59 +7680 7680 7681 768 1536 7680 1991-01-11 2024-10-11 02:08:00.000 1991-01-11 2024-10-11 02:08:00 +7681 7681 7682 768.1 1536.2 7681 1991-01-12 2024-10-11 02:08:01.000 1991-01-12 2024-10-11 02:08:01 +7682 7682 7683 768.2 1536.4 7682 1991-01-13 2024-10-11 02:08:02.000 1991-01-13 2024-10-11 02:08:02 +7683 7683 7684 768.3 1536.6000000000001 7683 1991-01-14 2024-10-11 02:08:03.000 1991-01-14 2024-10-11 02:08:03 +7684 7684 7685 768.4 1536.8000000000002 7684 1991-01-15 2024-10-11 02:08:04.000 1991-01-15 2024-10-11 02:08:04 +7685 7685 7686 768.5 1537 7685 1991-01-16 2024-10-11 02:08:05.000 1991-01-16 2024-10-11 02:08:05 +7686 7686 7687 768.6 1537.2 7686 1991-01-17 2024-10-11 02:08:06.000 1991-01-17 2024-10-11 02:08:06 +7687 7687 7688 768.7 1537.4 7687 1991-01-18 2024-10-11 02:08:07.000 1991-01-18 2024-10-11 02:08:07 +7688 7688 7689 768.8 1537.6000000000001 7688 1991-01-19 2024-10-11 02:08:08.000 1991-01-19 2024-10-11 02:08:08 +7689 7689 7690 768.9 1537.8000000000002 7689 1991-01-20 2024-10-11 02:08:09.000 1991-01-20 2024-10-11 02:08:09 +7690 7690 7691 769 1538 7690 1991-01-21 2024-10-11 02:08:10.000 1991-01-21 2024-10-11 02:08:10 +7691 7691 7692 769.1 1538.2 7691 1991-01-22 2024-10-11 02:08:11.000 1991-01-22 2024-10-11 02:08:11 +7692 7692 7693 769.2 1538.4 7692 1991-01-23 2024-10-11 02:08:12.000 1991-01-23 2024-10-11 02:08:12 +7693 7693 7694 769.3 1538.6000000000001 7693 1991-01-24 2024-10-11 02:08:13.000 1991-01-24 2024-10-11 02:08:13 +7694 7694 7695 769.4 1538.8000000000002 7694 1991-01-25 2024-10-11 02:08:14.000 1991-01-25 2024-10-11 02:08:14 +7695 7695 7696 769.5 1539 7695 1991-01-26 2024-10-11 02:08:15.000 1991-01-26 2024-10-11 02:08:15 +7696 7696 7697 769.6 1539.2 7696 1991-01-27 2024-10-11 02:08:16.000 1991-01-27 2024-10-11 02:08:16 +7697 7697 7698 769.7 1539.4 7697 1991-01-28 2024-10-11 02:08:17.000 1991-01-28 2024-10-11 02:08:17 +7698 7698 7699 769.8 1539.6000000000001 7698 1991-01-29 2024-10-11 02:08:18.000 1991-01-29 2024-10-11 02:08:18 +7699 7699 7700 769.9 1539.8000000000002 7699 1991-01-30 2024-10-11 02:08:19.000 1991-01-30 2024-10-11 02:08:19 +7700 7700 7701 770 1540 7700 1991-01-31 2024-10-11 02:08:20.000 1991-01-31 2024-10-11 02:08:20 +7701 7701 7702 770.1 1540.2 7701 1991-02-01 2024-10-11 02:08:21.000 1991-02-01 2024-10-11 02:08:21 +7702 7702 7703 770.2 1540.4 7702 1991-02-02 2024-10-11 02:08:22.000 1991-02-02 2024-10-11 02:08:22 +7703 7703 7704 770.3 1540.6000000000001 7703 1991-02-03 2024-10-11 02:08:23.000 1991-02-03 2024-10-11 02:08:23 +7704 7704 7705 770.4 1540.8000000000002 7704 1991-02-04 2024-10-11 02:08:24.000 1991-02-04 2024-10-11 02:08:24 +7705 7705 7706 770.5 1541 7705 1991-02-05 2024-10-11 02:08:25.000 1991-02-05 2024-10-11 02:08:25 +7706 7706 7707 770.6 1541.2 7706 1991-02-06 2024-10-11 02:08:26.000 1991-02-06 2024-10-11 02:08:26 +7707 7707 7708 770.7 1541.4 7707 1991-02-07 2024-10-11 02:08:27.000 1991-02-07 2024-10-11 02:08:27 +7708 7708 7709 770.8 1541.6000000000001 7708 1991-02-08 2024-10-11 02:08:28.000 1991-02-08 2024-10-11 02:08:28 +7709 7709 7710 770.9 1541.8000000000002 7709 1991-02-09 2024-10-11 02:08:29.000 1991-02-09 2024-10-11 02:08:29 +7710 7710 7711 771 1542 7710 1991-02-10 2024-10-11 02:08:30.000 1991-02-10 2024-10-11 02:08:30 +7711 7711 7712 771.1 1542.2 7711 1991-02-11 2024-10-11 02:08:31.000 1991-02-11 2024-10-11 02:08:31 +7712 7712 7713 771.2 1542.4 7712 1991-02-12 2024-10-11 02:08:32.000 1991-02-12 2024-10-11 02:08:32 +7713 7713 7714 771.3 1542.6000000000001 7713 1991-02-13 2024-10-11 02:08:33.000 1991-02-13 2024-10-11 02:08:33 +7714 7714 7715 771.4 1542.8000000000002 7714 1991-02-14 2024-10-11 02:08:34.000 1991-02-14 2024-10-11 02:08:34 +7715 7715 7716 771.5 1543 7715 1991-02-15 2024-10-11 02:08:35.000 1991-02-15 2024-10-11 02:08:35 +7716 7716 7717 771.6 1543.2 7716 1991-02-16 2024-10-11 02:08:36.000 1991-02-16 2024-10-11 02:08:36 +7717 7717 7718 771.7 1543.4 7717 1991-02-17 2024-10-11 02:08:37.000 1991-02-17 2024-10-11 02:08:37 +7718 7718 7719 771.8 1543.6000000000001 7718 1991-02-18 2024-10-11 02:08:38.000 1991-02-18 2024-10-11 02:08:38 +7719 7719 7720 771.9 1543.8000000000002 7719 1991-02-19 2024-10-11 02:08:39.000 1991-02-19 2024-10-11 02:08:39 +7720 7720 7721 772 1544 7720 1991-02-20 2024-10-11 02:08:40.000 1991-02-20 2024-10-11 02:08:40 +7721 7721 7722 772.1 1544.2 7721 1991-02-21 2024-10-11 02:08:41.000 1991-02-21 2024-10-11 02:08:41 +7722 7722 7723 772.2 1544.4 7722 1991-02-22 2024-10-11 02:08:42.000 1991-02-22 2024-10-11 02:08:42 +7723 7723 7724 772.3 1544.6000000000001 7723 1991-02-23 2024-10-11 02:08:43.000 1991-02-23 2024-10-11 02:08:43 +7724 7724 7725 772.4 1544.8000000000002 7724 1991-02-24 2024-10-11 02:08:44.000 1991-02-24 2024-10-11 02:08:44 +7725 7725 7726 772.5 1545 7725 1991-02-25 2024-10-11 02:08:45.000 1991-02-25 2024-10-11 02:08:45 +7726 7726 7727 772.6 1545.2 7726 1991-02-26 2024-10-11 02:08:46.000 1991-02-26 2024-10-11 02:08:46 +7727 7727 7728 772.7 1545.4 7727 1991-02-27 2024-10-11 02:08:47.000 1991-02-27 2024-10-11 02:08:47 +7728 7728 7729 772.8 1545.6000000000001 7728 1991-02-28 2024-10-11 02:08:48.000 1991-02-28 2024-10-11 02:08:48 +7729 7729 7730 772.9 1545.8000000000002 7729 1991-03-01 2024-10-11 02:08:49.000 1991-03-01 2024-10-11 02:08:49 +7730 7730 7731 773 1546 7730 1991-03-02 2024-10-11 02:08:50.000 1991-03-02 2024-10-11 02:08:50 +7731 7731 7732 773.1 1546.2 7731 1991-03-03 2024-10-11 02:08:51.000 1991-03-03 2024-10-11 02:08:51 +7732 7732 7733 773.2 1546.4 7732 1991-03-04 2024-10-11 02:08:52.000 1991-03-04 2024-10-11 02:08:52 +7733 7733 7734 773.3 1546.6000000000001 7733 1991-03-05 2024-10-11 02:08:53.000 1991-03-05 2024-10-11 02:08:53 +7734 7734 7735 773.4 1546.8000000000002 7734 1991-03-06 2024-10-11 02:08:54.000 1991-03-06 2024-10-11 02:08:54 +7735 7735 7736 773.5 1547 7735 1991-03-07 2024-10-11 02:08:55.000 1991-03-07 2024-10-11 02:08:55 +7736 7736 7737 773.6 1547.2 7736 1991-03-08 2024-10-11 02:08:56.000 1991-03-08 2024-10-11 02:08:56 +7737 7737 7738 773.7 1547.4 7737 1991-03-09 2024-10-11 02:08:57.000 1991-03-09 2024-10-11 02:08:57 +7738 7738 7739 773.8 1547.6000000000001 7738 1991-03-10 2024-10-11 02:08:58.000 1991-03-10 2024-10-11 02:08:58 +7739 7739 7740 773.9 1547.8000000000002 7739 1991-03-11 2024-10-11 02:08:59.000 1991-03-11 2024-10-11 02:08:59 +7740 7740 7741 774 1548 7740 1991-03-12 2024-10-11 02:09:00.000 1991-03-12 2024-10-11 02:09:00 +7741 7741 7742 774.1 1548.2 7741 1991-03-13 2024-10-11 02:09:01.000 1991-03-13 2024-10-11 02:09:01 +7742 7742 7743 774.2 1548.4 7742 1991-03-14 2024-10-11 02:09:02.000 1991-03-14 2024-10-11 02:09:02 +7743 7743 7744 774.3 1548.6000000000001 7743 1991-03-15 2024-10-11 02:09:03.000 1991-03-15 2024-10-11 02:09:03 +7744 7744 7745 774.4 1548.8000000000002 7744 1991-03-16 2024-10-11 02:09:04.000 1991-03-16 2024-10-11 02:09:04 +7745 7745 7746 774.5 1549 7745 1991-03-17 2024-10-11 02:09:05.000 1991-03-17 2024-10-11 02:09:05 +7746 7746 7747 774.6 1549.2 7746 1991-03-18 2024-10-11 02:09:06.000 1991-03-18 2024-10-11 02:09:06 +7747 7747 7748 774.7 1549.4 7747 1991-03-19 2024-10-11 02:09:07.000 1991-03-19 2024-10-11 02:09:07 +7748 7748 7749 774.8 1549.6000000000001 7748 1991-03-20 2024-10-11 02:09:08.000 1991-03-20 2024-10-11 02:09:08 +7749 7749 7750 774.9 1549.8000000000002 7749 1991-03-21 2024-10-11 02:09:09.000 1991-03-21 2024-10-11 02:09:09 +7750 7750 7751 775 1550 7750 1991-03-22 2024-10-11 02:09:10.000 1991-03-22 2024-10-11 02:09:10 +7751 7751 7752 775.1 1550.2 7751 1991-03-23 2024-10-11 02:09:11.000 1991-03-23 2024-10-11 02:09:11 +7752 7752 7753 775.2 1550.4 7752 1991-03-24 2024-10-11 02:09:12.000 1991-03-24 2024-10-11 02:09:12 +7753 7753 7754 775.3 1550.6000000000001 7753 1991-03-25 2024-10-11 02:09:13.000 1991-03-25 2024-10-11 02:09:13 +7754 7754 7755 775.4 1550.8000000000002 7754 1991-03-26 2024-10-11 02:09:14.000 1991-03-26 2024-10-11 02:09:14 +7755 7755 7756 775.5 1551 7755 1991-03-27 2024-10-11 02:09:15.000 1991-03-27 2024-10-11 02:09:15 +7756 7756 7757 775.6 1551.2 7756 1991-03-28 2024-10-11 02:09:16.000 1991-03-28 2024-10-11 02:09:16 +7757 7757 7758 775.7 1551.4 7757 1991-03-29 2024-10-11 02:09:17.000 1991-03-29 2024-10-11 02:09:17 +7758 7758 7759 775.8 1551.6000000000001 7758 1991-03-30 2024-10-11 02:09:18.000 1991-03-30 2024-10-11 02:09:18 +7759 7759 7760 775.9 1551.8000000000002 7759 1991-03-31 2024-10-11 02:09:19.000 1991-03-31 2024-10-11 02:09:19 +7760 7760 7761 776 1552 7760 1991-04-01 2024-10-11 02:09:20.000 1991-04-01 2024-10-11 02:09:20 +7761 7761 7762 776.1 1552.2 7761 1991-04-02 2024-10-11 02:09:21.000 1991-04-02 2024-10-11 02:09:21 +7762 7762 7763 776.2 1552.4 7762 1991-04-03 2024-10-11 02:09:22.000 1991-04-03 2024-10-11 02:09:22 +7763 7763 7764 776.3 1552.6000000000001 7763 1991-04-04 2024-10-11 02:09:23.000 1991-04-04 2024-10-11 02:09:23 +7764 7764 7765 776.4 1552.8000000000002 7764 1991-04-05 2024-10-11 02:09:24.000 1991-04-05 2024-10-11 02:09:24 +7765 7765 7766 776.5 1553 7765 1991-04-06 2024-10-11 02:09:25.000 1991-04-06 2024-10-11 02:09:25 +7766 7766 7767 776.6 1553.2 7766 1991-04-07 2024-10-11 02:09:26.000 1991-04-07 2024-10-11 02:09:26 +7767 7767 7768 776.7 1553.4 7767 1991-04-08 2024-10-11 02:09:27.000 1991-04-08 2024-10-11 02:09:27 +7768 7768 7769 776.8 1553.6000000000001 7768 1991-04-09 2024-10-11 02:09:28.000 1991-04-09 2024-10-11 02:09:28 +7769 7769 7770 776.9 1553.8000000000002 7769 1991-04-10 2024-10-11 02:09:29.000 1991-04-10 2024-10-11 02:09:29 +7770 7770 7771 777 1554 7770 1991-04-11 2024-10-11 02:09:30.000 1991-04-11 2024-10-11 02:09:30 +7771 7771 7772 777.1 1554.2 7771 1991-04-12 2024-10-11 02:09:31.000 1991-04-12 2024-10-11 02:09:31 +7772 7772 7773 777.2 1554.4 7772 1991-04-13 2024-10-11 02:09:32.000 1991-04-13 2024-10-11 02:09:32 +7773 7773 7774 777.3 1554.6000000000001 7773 1991-04-14 2024-10-11 02:09:33.000 1991-04-14 2024-10-11 02:09:33 +7774 7774 7775 777.4 1554.8000000000002 7774 1991-04-15 2024-10-11 02:09:34.000 1991-04-15 2024-10-11 02:09:34 +7775 7775 7776 777.5 1555 7775 1991-04-16 2024-10-11 02:09:35.000 1991-04-16 2024-10-11 02:09:35 +7776 7776 7777 777.6 1555.2 7776 1991-04-17 2024-10-11 02:09:36.000 1991-04-17 2024-10-11 02:09:36 +7777 7777 7778 777.7 1555.4 7777 1991-04-18 2024-10-11 02:09:37.000 1991-04-18 2024-10-11 02:09:37 +7778 7778 7779 777.8 1555.6000000000001 7778 1991-04-19 2024-10-11 02:09:38.000 1991-04-19 2024-10-11 02:09:38 +7779 7779 7780 777.9 1555.8000000000002 7779 1991-04-20 2024-10-11 02:09:39.000 1991-04-20 2024-10-11 02:09:39 +7780 7780 7781 778 1556 7780 1991-04-21 2024-10-11 02:09:40.000 1991-04-21 2024-10-11 02:09:40 +7781 7781 7782 778.1 1556.2 7781 1991-04-22 2024-10-11 02:09:41.000 1991-04-22 2024-10-11 02:09:41 +7782 7782 7783 778.2 1556.4 7782 1991-04-23 2024-10-11 02:09:42.000 1991-04-23 2024-10-11 02:09:42 +7783 7783 7784 778.3 1556.6000000000001 7783 1991-04-24 2024-10-11 02:09:43.000 1991-04-24 2024-10-11 02:09:43 +7784 7784 7785 778.4 1556.8000000000002 7784 1991-04-25 2024-10-11 02:09:44.000 1991-04-25 2024-10-11 02:09:44 +7785 7785 7786 778.5 1557 7785 1991-04-26 2024-10-11 02:09:45.000 1991-04-26 2024-10-11 02:09:45 +7786 7786 7787 778.6 1557.2 7786 1991-04-27 2024-10-11 02:09:46.000 1991-04-27 2024-10-11 02:09:46 +7787 7787 7788 778.7 1557.4 7787 1991-04-28 2024-10-11 02:09:47.000 1991-04-28 2024-10-11 02:09:47 +7788 7788 7789 778.8 1557.6000000000001 7788 1991-04-29 2024-10-11 02:09:48.000 1991-04-29 2024-10-11 02:09:48 +7789 7789 7790 778.9 1557.8000000000002 7789 1991-04-30 2024-10-11 02:09:49.000 1991-04-30 2024-10-11 02:09:49 +7790 7790 7791 779 1558 7790 1991-05-01 2024-10-11 02:09:50.000 1991-05-01 2024-10-11 02:09:50 +7791 7791 7792 779.1 1558.2 7791 1991-05-02 2024-10-11 02:09:51.000 1991-05-02 2024-10-11 02:09:51 +7792 7792 7793 779.2 1558.4 7792 1991-05-03 2024-10-11 02:09:52.000 1991-05-03 2024-10-11 02:09:52 +7793 7793 7794 779.3 1558.6000000000001 7793 1991-05-04 2024-10-11 02:09:53.000 1991-05-04 2024-10-11 02:09:53 +7794 7794 7795 779.4 1558.8000000000002 7794 1991-05-05 2024-10-11 02:09:54.000 1991-05-05 2024-10-11 02:09:54 +7795 7795 7796 779.5 1559 7795 1991-05-06 2024-10-11 02:09:55.000 1991-05-06 2024-10-11 02:09:55 +7796 7796 7797 779.6 1559.2 7796 1991-05-07 2024-10-11 02:09:56.000 1991-05-07 2024-10-11 02:09:56 +7797 7797 7798 779.7 1559.4 7797 1991-05-08 2024-10-11 02:09:57.000 1991-05-08 2024-10-11 02:09:57 +7798 7798 7799 779.8 1559.6000000000001 7798 1991-05-09 2024-10-11 02:09:58.000 1991-05-09 2024-10-11 02:09:58 +7799 7799 7800 779.9 1559.8000000000002 7799 1991-05-10 2024-10-11 02:09:59.000 1991-05-10 2024-10-11 02:09:59 +7800 7800 7801 780 1560 7800 1991-05-11 2024-10-11 02:10:00.000 1991-05-11 2024-10-11 02:10:00 +7801 7801 7802 780.1 1560.2 7801 1991-05-12 2024-10-11 02:10:01.000 1991-05-12 2024-10-11 02:10:01 +7802 7802 7803 780.2 1560.4 7802 1991-05-13 2024-10-11 02:10:02.000 1991-05-13 2024-10-11 02:10:02 +7803 7803 7804 780.3 1560.6000000000001 7803 1991-05-14 2024-10-11 02:10:03.000 1991-05-14 2024-10-11 02:10:03 +7804 7804 7805 780.4 1560.8000000000002 7804 1991-05-15 2024-10-11 02:10:04.000 1991-05-15 2024-10-11 02:10:04 +7805 7805 7806 780.5 1561 7805 1991-05-16 2024-10-11 02:10:05.000 1991-05-16 2024-10-11 02:10:05 +7806 7806 7807 780.6 1561.2 7806 1991-05-17 2024-10-11 02:10:06.000 1991-05-17 2024-10-11 02:10:06 +7807 7807 7808 780.7 1561.4 7807 1991-05-18 2024-10-11 02:10:07.000 1991-05-18 2024-10-11 02:10:07 +7808 7808 7809 780.8 1561.6000000000001 7808 1991-05-19 2024-10-11 02:10:08.000 1991-05-19 2024-10-11 02:10:08 +7809 7809 7810 780.9 1561.8000000000002 7809 1991-05-20 2024-10-11 02:10:09.000 1991-05-20 2024-10-11 02:10:09 +7810 7810 7811 781 1562 7810 1991-05-21 2024-10-11 02:10:10.000 1991-05-21 2024-10-11 02:10:10 +7811 7811 7812 781.1 1562.2 7811 1991-05-22 2024-10-11 02:10:11.000 1991-05-22 2024-10-11 02:10:11 +7812 7812 7813 781.2 1562.4 7812 1991-05-23 2024-10-11 02:10:12.000 1991-05-23 2024-10-11 02:10:12 +7813 7813 7814 781.3 1562.6000000000001 7813 1991-05-24 2024-10-11 02:10:13.000 1991-05-24 2024-10-11 02:10:13 +7814 7814 7815 781.4 1562.8000000000002 7814 1991-05-25 2024-10-11 02:10:14.000 1991-05-25 2024-10-11 02:10:14 +7815 7815 7816 781.5 1563 7815 1991-05-26 2024-10-11 02:10:15.000 1991-05-26 2024-10-11 02:10:15 +7816 7816 7817 781.6 1563.2 7816 1991-05-27 2024-10-11 02:10:16.000 1991-05-27 2024-10-11 02:10:16 +7817 7817 7818 781.7 1563.4 7817 1991-05-28 2024-10-11 02:10:17.000 1991-05-28 2024-10-11 02:10:17 +7818 7818 7819 781.8 1563.6000000000001 7818 1991-05-29 2024-10-11 02:10:18.000 1991-05-29 2024-10-11 02:10:18 +7819 7819 7820 781.9 1563.8000000000002 7819 1991-05-30 2024-10-11 02:10:19.000 1991-05-30 2024-10-11 02:10:19 +7820 7820 7821 782 1564 7820 1991-05-31 2024-10-11 02:10:20.000 1991-05-31 2024-10-11 02:10:20 +7821 7821 7822 782.1 1564.2 7821 1991-06-01 2024-10-11 02:10:21.000 1991-06-01 2024-10-11 02:10:21 +7822 7822 7823 782.2 1564.4 7822 1991-06-02 2024-10-11 02:10:22.000 1991-06-02 2024-10-11 02:10:22 +7823 7823 7824 782.3 1564.6000000000001 7823 1991-06-03 2024-10-11 02:10:23.000 1991-06-03 2024-10-11 02:10:23 +7824 7824 7825 782.4 1564.8000000000002 7824 1991-06-04 2024-10-11 02:10:24.000 1991-06-04 2024-10-11 02:10:24 +7825 7825 7826 782.5 1565 7825 1991-06-05 2024-10-11 02:10:25.000 1991-06-05 2024-10-11 02:10:25 +7826 7826 7827 782.6 1565.2 7826 1991-06-06 2024-10-11 02:10:26.000 1991-06-06 2024-10-11 02:10:26 +7827 7827 7828 782.7 1565.4 7827 1991-06-07 2024-10-11 02:10:27.000 1991-06-07 2024-10-11 02:10:27 +7828 7828 7829 782.8 1565.6000000000001 7828 1991-06-08 2024-10-11 02:10:28.000 1991-06-08 2024-10-11 02:10:28 +7829 7829 7830 782.9 1565.8000000000002 7829 1991-06-09 2024-10-11 02:10:29.000 1991-06-09 2024-10-11 02:10:29 +7830 7830 7831 783 1566 7830 1991-06-10 2024-10-11 02:10:30.000 1991-06-10 2024-10-11 02:10:30 +7831 7831 7832 783.1 1566.2 7831 1991-06-11 2024-10-11 02:10:31.000 1991-06-11 2024-10-11 02:10:31 +7832 7832 7833 783.2 1566.4 7832 1991-06-12 2024-10-11 02:10:32.000 1991-06-12 2024-10-11 02:10:32 +7833 7833 7834 783.3 1566.6000000000001 7833 1991-06-13 2024-10-11 02:10:33.000 1991-06-13 2024-10-11 02:10:33 +7834 7834 7835 783.4 1566.8000000000002 7834 1991-06-14 2024-10-11 02:10:34.000 1991-06-14 2024-10-11 02:10:34 +7835 7835 7836 783.5 1567 7835 1991-06-15 2024-10-11 02:10:35.000 1991-06-15 2024-10-11 02:10:35 +7836 7836 7837 783.6 1567.2 7836 1991-06-16 2024-10-11 02:10:36.000 1991-06-16 2024-10-11 02:10:36 +7837 7837 7838 783.7 1567.4 7837 1991-06-17 2024-10-11 02:10:37.000 1991-06-17 2024-10-11 02:10:37 +7838 7838 7839 783.8 1567.6000000000001 7838 1991-06-18 2024-10-11 02:10:38.000 1991-06-18 2024-10-11 02:10:38 +7839 7839 7840 783.9 1567.8000000000002 7839 1991-06-19 2024-10-11 02:10:39.000 1991-06-19 2024-10-11 02:10:39 +7840 7840 7841 784 1568 7840 1991-06-20 2024-10-11 02:10:40.000 1991-06-20 2024-10-11 02:10:40 +7841 7841 7842 784.1 1568.2 7841 1991-06-21 2024-10-11 02:10:41.000 1991-06-21 2024-10-11 02:10:41 +7842 7842 7843 784.2 1568.4 7842 1991-06-22 2024-10-11 02:10:42.000 1991-06-22 2024-10-11 02:10:42 +7843 7843 7844 784.3 1568.6000000000001 7843 1991-06-23 2024-10-11 02:10:43.000 1991-06-23 2024-10-11 02:10:43 +7844 7844 7845 784.4 1568.8000000000002 7844 1991-06-24 2024-10-11 02:10:44.000 1991-06-24 2024-10-11 02:10:44 +7845 7845 7846 784.5 1569 7845 1991-06-25 2024-10-11 02:10:45.000 1991-06-25 2024-10-11 02:10:45 +7846 7846 7847 784.6 1569.2 7846 1991-06-26 2024-10-11 02:10:46.000 1991-06-26 2024-10-11 02:10:46 +7847 7847 7848 784.7 1569.4 7847 1991-06-27 2024-10-11 02:10:47.000 1991-06-27 2024-10-11 02:10:47 +7848 7848 7849 784.8 1569.6000000000001 7848 1991-06-28 2024-10-11 02:10:48.000 1991-06-28 2024-10-11 02:10:48 +7849 7849 7850 784.9 1569.8000000000002 7849 1991-06-29 2024-10-11 02:10:49.000 1991-06-29 2024-10-11 02:10:49 +7850 7850 7851 785 1570 7850 1991-06-30 2024-10-11 02:10:50.000 1991-06-30 2024-10-11 02:10:50 +7851 7851 7852 785.1 1570.2 7851 1991-07-01 2024-10-11 02:10:51.000 1991-07-01 2024-10-11 02:10:51 +7852 7852 7853 785.2 1570.4 7852 1991-07-02 2024-10-11 02:10:52.000 1991-07-02 2024-10-11 02:10:52 +7853 7853 7854 785.3 1570.6000000000001 7853 1991-07-03 2024-10-11 02:10:53.000 1991-07-03 2024-10-11 02:10:53 +7854 7854 7855 785.4 1570.8000000000002 7854 1991-07-04 2024-10-11 02:10:54.000 1991-07-04 2024-10-11 02:10:54 +7855 7855 7856 785.5 1571 7855 1991-07-05 2024-10-11 02:10:55.000 1991-07-05 2024-10-11 02:10:55 +7856 7856 7857 785.6 1571.2 7856 1991-07-06 2024-10-11 02:10:56.000 1991-07-06 2024-10-11 02:10:56 +7857 7857 7858 785.7 1571.4 7857 1991-07-07 2024-10-11 02:10:57.000 1991-07-07 2024-10-11 02:10:57 +7858 7858 7859 785.8 1571.6000000000001 7858 1991-07-08 2024-10-11 02:10:58.000 1991-07-08 2024-10-11 02:10:58 +7859 7859 7860 785.9 1571.8000000000002 7859 1991-07-09 2024-10-11 02:10:59.000 1991-07-09 2024-10-11 02:10:59 +7860 7860 7861 786 1572 7860 1991-07-10 2024-10-11 02:11:00.000 1991-07-10 2024-10-11 02:11:00 +7861 7861 7862 786.1 1572.2 7861 1991-07-11 2024-10-11 02:11:01.000 1991-07-11 2024-10-11 02:11:01 +7862 7862 7863 786.2 1572.4 7862 1991-07-12 2024-10-11 02:11:02.000 1991-07-12 2024-10-11 02:11:02 +7863 7863 7864 786.3 1572.6000000000001 7863 1991-07-13 2024-10-11 02:11:03.000 1991-07-13 2024-10-11 02:11:03 +7864 7864 7865 786.4 1572.8000000000002 7864 1991-07-14 2024-10-11 02:11:04.000 1991-07-14 2024-10-11 02:11:04 +7865 7865 7866 786.5 1573 7865 1991-07-15 2024-10-11 02:11:05.000 1991-07-15 2024-10-11 02:11:05 +7866 7866 7867 786.6 1573.2 7866 1991-07-16 2024-10-11 02:11:06.000 1991-07-16 2024-10-11 02:11:06 +7867 7867 7868 786.7 1573.4 7867 1991-07-17 2024-10-11 02:11:07.000 1991-07-17 2024-10-11 02:11:07 +7868 7868 7869 786.8 1573.6000000000001 7868 1991-07-18 2024-10-11 02:11:08.000 1991-07-18 2024-10-11 02:11:08 +7869 7869 7870 786.9 1573.8000000000002 7869 1991-07-19 2024-10-11 02:11:09.000 1991-07-19 2024-10-11 02:11:09 +7870 7870 7871 787 1574 7870 1991-07-20 2024-10-11 02:11:10.000 1991-07-20 2024-10-11 02:11:10 +7871 7871 7872 787.1 1574.2 7871 1991-07-21 2024-10-11 02:11:11.000 1991-07-21 2024-10-11 02:11:11 +7872 7872 7873 787.2 1574.4 7872 1991-07-22 2024-10-11 02:11:12.000 1991-07-22 2024-10-11 02:11:12 +7873 7873 7874 787.3 1574.6000000000001 7873 1991-07-23 2024-10-11 02:11:13.000 1991-07-23 2024-10-11 02:11:13 +7874 7874 7875 787.4 1574.8000000000002 7874 1991-07-24 2024-10-11 02:11:14.000 1991-07-24 2024-10-11 02:11:14 +7875 7875 7876 787.5 1575 7875 1991-07-25 2024-10-11 02:11:15.000 1991-07-25 2024-10-11 02:11:15 +7876 7876 7877 787.6 1575.2 7876 1991-07-26 2024-10-11 02:11:16.000 1991-07-26 2024-10-11 02:11:16 +7877 7877 7878 787.7 1575.4 7877 1991-07-27 2024-10-11 02:11:17.000 1991-07-27 2024-10-11 02:11:17 +7878 7878 7879 787.8 1575.6000000000001 7878 1991-07-28 2024-10-11 02:11:18.000 1991-07-28 2024-10-11 02:11:18 +7879 7879 7880 787.9 1575.8000000000002 7879 1991-07-29 2024-10-11 02:11:19.000 1991-07-29 2024-10-11 02:11:19 +7880 7880 7881 788 1576 7880 1991-07-30 2024-10-11 02:11:20.000 1991-07-30 2024-10-11 02:11:20 +7881 7881 7882 788.1 1576.2 7881 1991-07-31 2024-10-11 02:11:21.000 1991-07-31 2024-10-11 02:11:21 +7882 7882 7883 788.2 1576.4 7882 1991-08-01 2024-10-11 02:11:22.000 1991-08-01 2024-10-11 02:11:22 +7883 7883 7884 788.3 1576.6000000000001 7883 1991-08-02 2024-10-11 02:11:23.000 1991-08-02 2024-10-11 02:11:23 +7884 7884 7885 788.4 1576.8000000000002 7884 1991-08-03 2024-10-11 02:11:24.000 1991-08-03 2024-10-11 02:11:24 +7885 7885 7886 788.5 1577 7885 1991-08-04 2024-10-11 02:11:25.000 1991-08-04 2024-10-11 02:11:25 +7886 7886 7887 788.6 1577.2 7886 1991-08-05 2024-10-11 02:11:26.000 1991-08-05 2024-10-11 02:11:26 +7887 7887 7888 788.7 1577.4 7887 1991-08-06 2024-10-11 02:11:27.000 1991-08-06 2024-10-11 02:11:27 +7888 7888 7889 788.8 1577.6000000000001 7888 1991-08-07 2024-10-11 02:11:28.000 1991-08-07 2024-10-11 02:11:28 +7889 7889 7890 788.9 1577.8000000000002 7889 1991-08-08 2024-10-11 02:11:29.000 1991-08-08 2024-10-11 02:11:29 +7890 7890 7891 789 1578 7890 1991-08-09 2024-10-11 02:11:30.000 1991-08-09 2024-10-11 02:11:30 +7891 7891 7892 789.1 1578.2 7891 1991-08-10 2024-10-11 02:11:31.000 1991-08-10 2024-10-11 02:11:31 +7892 7892 7893 789.2 1578.4 7892 1991-08-11 2024-10-11 02:11:32.000 1991-08-11 2024-10-11 02:11:32 +7893 7893 7894 789.3 1578.6000000000001 7893 1991-08-12 2024-10-11 02:11:33.000 1991-08-12 2024-10-11 02:11:33 +7894 7894 7895 789.4 1578.8000000000002 7894 1991-08-13 2024-10-11 02:11:34.000 1991-08-13 2024-10-11 02:11:34 +7895 7895 7896 789.5 1579 7895 1991-08-14 2024-10-11 02:11:35.000 1991-08-14 2024-10-11 02:11:35 +7896 7896 7897 789.6 1579.2 7896 1991-08-15 2024-10-11 02:11:36.000 1991-08-15 2024-10-11 02:11:36 +7897 7897 7898 789.7 1579.4 7897 1991-08-16 2024-10-11 02:11:37.000 1991-08-16 2024-10-11 02:11:37 +7898 7898 7899 789.8 1579.6000000000001 7898 1991-08-17 2024-10-11 02:11:38.000 1991-08-17 2024-10-11 02:11:38 +7899 7899 7900 789.9 1579.8000000000002 7899 1991-08-18 2024-10-11 02:11:39.000 1991-08-18 2024-10-11 02:11:39 +7900 7900 7901 790 1580 7900 1991-08-19 2024-10-11 02:11:40.000 1991-08-19 2024-10-11 02:11:40 +7901 7901 7902 790.1 1580.2 7901 1991-08-20 2024-10-11 02:11:41.000 1991-08-20 2024-10-11 02:11:41 +7902 7902 7903 790.2 1580.4 7902 1991-08-21 2024-10-11 02:11:42.000 1991-08-21 2024-10-11 02:11:42 +7903 7903 7904 790.3 1580.6000000000001 7903 1991-08-22 2024-10-11 02:11:43.000 1991-08-22 2024-10-11 02:11:43 +7904 7904 7905 790.4 1580.8000000000002 7904 1991-08-23 2024-10-11 02:11:44.000 1991-08-23 2024-10-11 02:11:44 +7905 7905 7906 790.5 1581 7905 1991-08-24 2024-10-11 02:11:45.000 1991-08-24 2024-10-11 02:11:45 +7906 7906 7907 790.6 1581.2 7906 1991-08-25 2024-10-11 02:11:46.000 1991-08-25 2024-10-11 02:11:46 +7907 7907 7908 790.7 1581.4 7907 1991-08-26 2024-10-11 02:11:47.000 1991-08-26 2024-10-11 02:11:47 +7908 7908 7909 790.8 1581.6000000000001 7908 1991-08-27 2024-10-11 02:11:48.000 1991-08-27 2024-10-11 02:11:48 +7909 7909 7910 790.9 1581.8000000000002 7909 1991-08-28 2024-10-11 02:11:49.000 1991-08-28 2024-10-11 02:11:49 +7910 7910 7911 791 1582 7910 1991-08-29 2024-10-11 02:11:50.000 1991-08-29 2024-10-11 02:11:50 +7911 7911 7912 791.1 1582.2 7911 1991-08-30 2024-10-11 02:11:51.000 1991-08-30 2024-10-11 02:11:51 +7912 7912 7913 791.2 1582.4 7912 1991-08-31 2024-10-11 02:11:52.000 1991-08-31 2024-10-11 02:11:52 +7913 7913 7914 791.3 1582.6000000000001 7913 1991-09-01 2024-10-11 02:11:53.000 1991-09-01 2024-10-11 02:11:53 +7914 7914 7915 791.4 1582.8000000000002 7914 1991-09-02 2024-10-11 02:11:54.000 1991-09-02 2024-10-11 02:11:54 +7915 7915 7916 791.5 1583 7915 1991-09-03 2024-10-11 02:11:55.000 1991-09-03 2024-10-11 02:11:55 +7916 7916 7917 791.6 1583.2 7916 1991-09-04 2024-10-11 02:11:56.000 1991-09-04 2024-10-11 02:11:56 +7917 7917 7918 791.7 1583.4 7917 1991-09-05 2024-10-11 02:11:57.000 1991-09-05 2024-10-11 02:11:57 +7918 7918 7919 791.8 1583.6000000000001 7918 1991-09-06 2024-10-11 02:11:58.000 1991-09-06 2024-10-11 02:11:58 +7919 7919 7920 791.9 1583.8000000000002 7919 1991-09-07 2024-10-11 02:11:59.000 1991-09-07 2024-10-11 02:11:59 +7920 7920 7921 792 1584 7920 1991-09-08 2024-10-11 02:12:00.000 1991-09-08 2024-10-11 02:12:00 +7921 7921 7922 792.1 1584.2 7921 1991-09-09 2024-10-11 02:12:01.000 1991-09-09 2024-10-11 02:12:01 +7922 7922 7923 792.2 1584.4 7922 1991-09-10 2024-10-11 02:12:02.000 1991-09-10 2024-10-11 02:12:02 +7923 7923 7924 792.3 1584.6000000000001 7923 1991-09-11 2024-10-11 02:12:03.000 1991-09-11 2024-10-11 02:12:03 +7924 7924 7925 792.4 1584.8000000000002 7924 1991-09-12 2024-10-11 02:12:04.000 1991-09-12 2024-10-11 02:12:04 +7925 7925 7926 792.5 1585 7925 1991-09-13 2024-10-11 02:12:05.000 1991-09-13 2024-10-11 02:12:05 +7926 7926 7927 792.6 1585.2 7926 1991-09-14 2024-10-11 02:12:06.000 1991-09-14 2024-10-11 02:12:06 +7927 7927 7928 792.7 1585.4 7927 1991-09-15 2024-10-11 02:12:07.000 1991-09-15 2024-10-11 02:12:07 +7928 7928 7929 792.8 1585.6000000000001 7928 1991-09-16 2024-10-11 02:12:08.000 1991-09-16 2024-10-11 02:12:08 +7929 7929 7930 792.9 1585.8000000000002 7929 1991-09-17 2024-10-11 02:12:09.000 1991-09-17 2024-10-11 02:12:09 +7930 7930 7931 793 1586 7930 1991-09-18 2024-10-11 02:12:10.000 1991-09-18 2024-10-11 02:12:10 +7931 7931 7932 793.1 1586.2 7931 1991-09-19 2024-10-11 02:12:11.000 1991-09-19 2024-10-11 02:12:11 +7932 7932 7933 793.2 1586.4 7932 1991-09-20 2024-10-11 02:12:12.000 1991-09-20 2024-10-11 02:12:12 +7933 7933 7934 793.3 1586.6000000000001 7933 1991-09-21 2024-10-11 02:12:13.000 1991-09-21 2024-10-11 02:12:13 +7934 7934 7935 793.4 1586.8000000000002 7934 1991-09-22 2024-10-11 02:12:14.000 1991-09-22 2024-10-11 02:12:14 +7935 7935 7936 793.5 1587 7935 1991-09-23 2024-10-11 02:12:15.000 1991-09-23 2024-10-11 02:12:15 +7936 7936 7937 793.6 1587.2 7936 1991-09-24 2024-10-11 02:12:16.000 1991-09-24 2024-10-11 02:12:16 +7937 7937 7938 793.7 1587.4 7937 1991-09-25 2024-10-11 02:12:17.000 1991-09-25 2024-10-11 02:12:17 +7938 7938 7939 793.8 1587.6000000000001 7938 1991-09-26 2024-10-11 02:12:18.000 1991-09-26 2024-10-11 02:12:18 +7939 7939 7940 793.9 1587.8000000000002 7939 1991-09-27 2024-10-11 02:12:19.000 1991-09-27 2024-10-11 02:12:19 +7940 7940 7941 794 1588 7940 1991-09-28 2024-10-11 02:12:20.000 1991-09-28 2024-10-11 02:12:20 +7941 7941 7942 794.1 1588.2 7941 1991-09-29 2024-10-11 02:12:21.000 1991-09-29 2024-10-11 02:12:21 +7942 7942 7943 794.2 1588.4 7942 1991-09-30 2024-10-11 02:12:22.000 1991-09-30 2024-10-11 02:12:22 +7943 7943 7944 794.3 1588.6000000000001 7943 1991-10-01 2024-10-11 02:12:23.000 1991-10-01 2024-10-11 02:12:23 +7944 7944 7945 794.4 1588.8000000000002 7944 1991-10-02 2024-10-11 02:12:24.000 1991-10-02 2024-10-11 02:12:24 +7945 7945 7946 794.5 1589 7945 1991-10-03 2024-10-11 02:12:25.000 1991-10-03 2024-10-11 02:12:25 +7946 7946 7947 794.6 1589.2 7946 1991-10-04 2024-10-11 02:12:26.000 1991-10-04 2024-10-11 02:12:26 +7947 7947 7948 794.7 1589.4 7947 1991-10-05 2024-10-11 02:12:27.000 1991-10-05 2024-10-11 02:12:27 +7948 7948 7949 794.8 1589.6000000000001 7948 1991-10-06 2024-10-11 02:12:28.000 1991-10-06 2024-10-11 02:12:28 +7949 7949 7950 794.9 1589.8000000000002 7949 1991-10-07 2024-10-11 02:12:29.000 1991-10-07 2024-10-11 02:12:29 +7950 7950 7951 795 1590 7950 1991-10-08 2024-10-11 02:12:30.000 1991-10-08 2024-10-11 02:12:30 +7951 7951 7952 795.1 1590.2 7951 1991-10-09 2024-10-11 02:12:31.000 1991-10-09 2024-10-11 02:12:31 +7952 7952 7953 795.2 1590.4 7952 1991-10-10 2024-10-11 02:12:32.000 1991-10-10 2024-10-11 02:12:32 +7953 7953 7954 795.3 1590.6000000000001 7953 1991-10-11 2024-10-11 02:12:33.000 1991-10-11 2024-10-11 02:12:33 +7954 7954 7955 795.4 1590.8000000000002 7954 1991-10-12 2024-10-11 02:12:34.000 1991-10-12 2024-10-11 02:12:34 +7955 7955 7956 795.5 1591 7955 1991-10-13 2024-10-11 02:12:35.000 1991-10-13 2024-10-11 02:12:35 +7956 7956 7957 795.6 1591.2 7956 1991-10-14 2024-10-11 02:12:36.000 1991-10-14 2024-10-11 02:12:36 +7957 7957 7958 795.7 1591.4 7957 1991-10-15 2024-10-11 02:12:37.000 1991-10-15 2024-10-11 02:12:37 +7958 7958 7959 795.8 1591.6000000000001 7958 1991-10-16 2024-10-11 02:12:38.000 1991-10-16 2024-10-11 02:12:38 +7959 7959 7960 795.9 1591.8000000000002 7959 1991-10-17 2024-10-11 02:12:39.000 1991-10-17 2024-10-11 02:12:39 +7960 7960 7961 796 1592 7960 1991-10-18 2024-10-11 02:12:40.000 1991-10-18 2024-10-11 02:12:40 +7961 7961 7962 796.1 1592.2 7961 1991-10-19 2024-10-11 02:12:41.000 1991-10-19 2024-10-11 02:12:41 +7962 7962 7963 796.2 1592.4 7962 1991-10-20 2024-10-11 02:12:42.000 1991-10-20 2024-10-11 02:12:42 +7963 7963 7964 796.3 1592.6000000000001 7963 1991-10-21 2024-10-11 02:12:43.000 1991-10-21 2024-10-11 02:12:43 +7964 7964 7965 796.4 1592.8000000000002 7964 1991-10-22 2024-10-11 02:12:44.000 1991-10-22 2024-10-11 02:12:44 +7965 7965 7966 796.5 1593 7965 1991-10-23 2024-10-11 02:12:45.000 1991-10-23 2024-10-11 02:12:45 +7966 7966 7967 796.6 1593.2 7966 1991-10-24 2024-10-11 02:12:46.000 1991-10-24 2024-10-11 02:12:46 +7967 7967 7968 796.7 1593.4 7967 1991-10-25 2024-10-11 02:12:47.000 1991-10-25 2024-10-11 02:12:47 +7968 7968 7969 796.8 1593.6000000000001 7968 1991-10-26 2024-10-11 02:12:48.000 1991-10-26 2024-10-11 02:12:48 +7969 7969 7970 796.9 1593.8000000000002 7969 1991-10-27 2024-10-11 02:12:49.000 1991-10-27 2024-10-11 02:12:49 +7970 7970 7971 797 1594 7970 1991-10-28 2024-10-11 02:12:50.000 1991-10-28 2024-10-11 02:12:50 +7971 7971 7972 797.1 1594.2 7971 1991-10-29 2024-10-11 02:12:51.000 1991-10-29 2024-10-11 02:12:51 +7972 7972 7973 797.2 1594.4 7972 1991-10-30 2024-10-11 02:12:52.000 1991-10-30 2024-10-11 02:12:52 +7973 7973 7974 797.3 1594.6000000000001 7973 1991-10-31 2024-10-11 02:12:53.000 1991-10-31 2024-10-11 02:12:53 +7974 7974 7975 797.4 1594.8000000000002 7974 1991-11-01 2024-10-11 02:12:54.000 1991-11-01 2024-10-11 02:12:54 +7975 7975 7976 797.5 1595 7975 1991-11-02 2024-10-11 02:12:55.000 1991-11-02 2024-10-11 02:12:55 +7976 7976 7977 797.6 1595.2 7976 1991-11-03 2024-10-11 02:12:56.000 1991-11-03 2024-10-11 02:12:56 +7977 7977 7978 797.7 1595.4 7977 1991-11-04 2024-10-11 02:12:57.000 1991-11-04 2024-10-11 02:12:57 +7978 7978 7979 797.8 1595.6000000000001 7978 1991-11-05 2024-10-11 02:12:58.000 1991-11-05 2024-10-11 02:12:58 +7979 7979 7980 797.9 1595.8000000000002 7979 1991-11-06 2024-10-11 02:12:59.000 1991-11-06 2024-10-11 02:12:59 +7980 7980 7981 798 1596 7980 1991-11-07 2024-10-11 02:13:00.000 1991-11-07 2024-10-11 02:13:00 +7981 7981 7982 798.1 1596.2 7981 1991-11-08 2024-10-11 02:13:01.000 1991-11-08 2024-10-11 02:13:01 +7982 7982 7983 798.2 1596.4 7982 1991-11-09 2024-10-11 02:13:02.000 1991-11-09 2024-10-11 02:13:02 +7983 7983 7984 798.3 1596.6000000000001 7983 1991-11-10 2024-10-11 02:13:03.000 1991-11-10 2024-10-11 02:13:03 +7984 7984 7985 798.4 1596.8000000000002 7984 1991-11-11 2024-10-11 02:13:04.000 1991-11-11 2024-10-11 02:13:04 +7985 7985 7986 798.5 1597 7985 1991-11-12 2024-10-11 02:13:05.000 1991-11-12 2024-10-11 02:13:05 +7986 7986 7987 798.6 1597.2 7986 1991-11-13 2024-10-11 02:13:06.000 1991-11-13 2024-10-11 02:13:06 +7987 7987 7988 798.7 1597.4 7987 1991-11-14 2024-10-11 02:13:07.000 1991-11-14 2024-10-11 02:13:07 +7988 7988 7989 798.8 1597.6000000000001 7988 1991-11-15 2024-10-11 02:13:08.000 1991-11-15 2024-10-11 02:13:08 +7989 7989 7990 798.9 1597.8000000000002 7989 1991-11-16 2024-10-11 02:13:09.000 1991-11-16 2024-10-11 02:13:09 +7990 7990 7991 799 1598 7990 1991-11-17 2024-10-11 02:13:10.000 1991-11-17 2024-10-11 02:13:10 +7991 7991 7992 799.1 1598.2 7991 1991-11-18 2024-10-11 02:13:11.000 1991-11-18 2024-10-11 02:13:11 +7992 7992 7993 799.2 1598.4 7992 1991-11-19 2024-10-11 02:13:12.000 1991-11-19 2024-10-11 02:13:12 +7993 7993 7994 799.3 1598.6000000000001 7993 1991-11-20 2024-10-11 02:13:13.000 1991-11-20 2024-10-11 02:13:13 +7994 7994 7995 799.4 1598.8000000000002 7994 1991-11-21 2024-10-11 02:13:14.000 1991-11-21 2024-10-11 02:13:14 +7995 7995 7996 799.5 1599 7995 1991-11-22 2024-10-11 02:13:15.000 1991-11-22 2024-10-11 02:13:15 +7996 7996 7997 799.6 1599.2 7996 1991-11-23 2024-10-11 02:13:16.000 1991-11-23 2024-10-11 02:13:16 +7997 7997 7998 799.7 1599.4 7997 1991-11-24 2024-10-11 02:13:17.000 1991-11-24 2024-10-11 02:13:17 +7998 7998 7999 799.8 1599.6000000000001 7998 1991-11-25 2024-10-11 02:13:18.000 1991-11-25 2024-10-11 02:13:18 +7999 7999 8000 799.9 1599.8000000000002 7999 1991-11-26 2024-10-11 02:13:19.000 1991-11-26 2024-10-11 02:13:19 +8000 8000 8001 800 1600 8000 1991-11-27 2024-10-11 02:13:20.000 1991-11-27 2024-10-11 02:13:20 +8001 8001 8002 800.1 1600.2 8001 1991-11-28 2024-10-11 02:13:21.000 1991-11-28 2024-10-11 02:13:21 +8002 8002 8003 800.2 1600.4 8002 1991-11-29 2024-10-11 02:13:22.000 1991-11-29 2024-10-11 02:13:22 +8003 8003 8004 800.3 1600.6000000000001 8003 1991-11-30 2024-10-11 02:13:23.000 1991-11-30 2024-10-11 02:13:23 +8004 8004 8005 800.4 1600.8000000000002 8004 1991-12-01 2024-10-11 02:13:24.000 1991-12-01 2024-10-11 02:13:24 +8005 8005 8006 800.5 1601 8005 1991-12-02 2024-10-11 02:13:25.000 1991-12-02 2024-10-11 02:13:25 +8006 8006 8007 800.6 1601.2 8006 1991-12-03 2024-10-11 02:13:26.000 1991-12-03 2024-10-11 02:13:26 +8007 8007 8008 800.7 1601.4 8007 1991-12-04 2024-10-11 02:13:27.000 1991-12-04 2024-10-11 02:13:27 +8008 8008 8009 800.8 1601.6000000000001 8008 1991-12-05 2024-10-11 02:13:28.000 1991-12-05 2024-10-11 02:13:28 +8009 8009 8010 800.9 1601.8000000000002 8009 1991-12-06 2024-10-11 02:13:29.000 1991-12-06 2024-10-11 02:13:29 +8010 8010 8011 801 1602 8010 1991-12-07 2024-10-11 02:13:30.000 1991-12-07 2024-10-11 02:13:30 +8011 8011 8012 801.1 1602.2 8011 1991-12-08 2024-10-11 02:13:31.000 1991-12-08 2024-10-11 02:13:31 +8012 8012 8013 801.2 1602.4 8012 1991-12-09 2024-10-11 02:13:32.000 1991-12-09 2024-10-11 02:13:32 +8013 8013 8014 801.3 1602.6000000000001 8013 1991-12-10 2024-10-11 02:13:33.000 1991-12-10 2024-10-11 02:13:33 +8014 8014 8015 801.4 1602.8000000000002 8014 1991-12-11 2024-10-11 02:13:34.000 1991-12-11 2024-10-11 02:13:34 +8015 8015 8016 801.5 1603 8015 1991-12-12 2024-10-11 02:13:35.000 1991-12-12 2024-10-11 02:13:35 +8016 8016 8017 801.6 1603.2 8016 1991-12-13 2024-10-11 02:13:36.000 1991-12-13 2024-10-11 02:13:36 +8017 8017 8018 801.7 1603.4 8017 1991-12-14 2024-10-11 02:13:37.000 1991-12-14 2024-10-11 02:13:37 +8018 8018 8019 801.8 1603.6000000000001 8018 1991-12-15 2024-10-11 02:13:38.000 1991-12-15 2024-10-11 02:13:38 +8019 8019 8020 801.9 1603.8000000000002 8019 1991-12-16 2024-10-11 02:13:39.000 1991-12-16 2024-10-11 02:13:39 +8020 8020 8021 802 1604 8020 1991-12-17 2024-10-11 02:13:40.000 1991-12-17 2024-10-11 02:13:40 +8021 8021 8022 802.1 1604.2 8021 1991-12-18 2024-10-11 02:13:41.000 1991-12-18 2024-10-11 02:13:41 +8022 8022 8023 802.2 1604.4 8022 1991-12-19 2024-10-11 02:13:42.000 1991-12-19 2024-10-11 02:13:42 +8023 8023 8024 802.3 1604.6000000000001 8023 1991-12-20 2024-10-11 02:13:43.000 1991-12-20 2024-10-11 02:13:43 +8024 8024 8025 802.4 1604.8000000000002 8024 1991-12-21 2024-10-11 02:13:44.000 1991-12-21 2024-10-11 02:13:44 +8025 8025 8026 802.5 1605 8025 1991-12-22 2024-10-11 02:13:45.000 1991-12-22 2024-10-11 02:13:45 +8026 8026 8027 802.6 1605.2 8026 1991-12-23 2024-10-11 02:13:46.000 1991-12-23 2024-10-11 02:13:46 +8027 8027 8028 802.7 1605.4 8027 1991-12-24 2024-10-11 02:13:47.000 1991-12-24 2024-10-11 02:13:47 +8028 8028 8029 802.8 1605.6000000000001 8028 1991-12-25 2024-10-11 02:13:48.000 1991-12-25 2024-10-11 02:13:48 +8029 8029 8030 802.9 1605.8000000000002 8029 1991-12-26 2024-10-11 02:13:49.000 1991-12-26 2024-10-11 02:13:49 +8030 8030 8031 803 1606 8030 1991-12-27 2024-10-11 02:13:50.000 1991-12-27 2024-10-11 02:13:50 +8031 8031 8032 803.1 1606.2 8031 1991-12-28 2024-10-11 02:13:51.000 1991-12-28 2024-10-11 02:13:51 +8032 8032 8033 803.2 1606.4 8032 1991-12-29 2024-10-11 02:13:52.000 1991-12-29 2024-10-11 02:13:52 +8033 8033 8034 803.3 1606.6000000000001 8033 1991-12-30 2024-10-11 02:13:53.000 1991-12-30 2024-10-11 02:13:53 +8034 8034 8035 803.4 1606.8000000000002 8034 1991-12-31 2024-10-11 02:13:54.000 1991-12-31 2024-10-11 02:13:54 +8035 8035 8036 803.5 1607 8035 1992-01-01 2024-10-11 02:13:55.000 1992-01-01 2024-10-11 02:13:55 +8036 8036 8037 803.6 1607.2 8036 1992-01-02 2024-10-11 02:13:56.000 1992-01-02 2024-10-11 02:13:56 +8037 8037 8038 803.7 1607.4 8037 1992-01-03 2024-10-11 02:13:57.000 1992-01-03 2024-10-11 02:13:57 +8038 8038 8039 803.8 1607.6000000000001 8038 1992-01-04 2024-10-11 02:13:58.000 1992-01-04 2024-10-11 02:13:58 +8039 8039 8040 803.9 1607.8000000000002 8039 1992-01-05 2024-10-11 02:13:59.000 1992-01-05 2024-10-11 02:13:59 +8040 8040 8041 804 1608 8040 1992-01-06 2024-10-11 02:14:00.000 1992-01-06 2024-10-11 02:14:00 +8041 8041 8042 804.1 1608.2 8041 1992-01-07 2024-10-11 02:14:01.000 1992-01-07 2024-10-11 02:14:01 +8042 8042 8043 804.2 1608.4 8042 1992-01-08 2024-10-11 02:14:02.000 1992-01-08 2024-10-11 02:14:02 +8043 8043 8044 804.3 1608.6000000000001 8043 1992-01-09 2024-10-11 02:14:03.000 1992-01-09 2024-10-11 02:14:03 +8044 8044 8045 804.4 1608.8000000000002 8044 1992-01-10 2024-10-11 02:14:04.000 1992-01-10 2024-10-11 02:14:04 +8045 8045 8046 804.5 1609 8045 1992-01-11 2024-10-11 02:14:05.000 1992-01-11 2024-10-11 02:14:05 +8046 8046 8047 804.6 1609.2 8046 1992-01-12 2024-10-11 02:14:06.000 1992-01-12 2024-10-11 02:14:06 +8047 8047 8048 804.7 1609.4 8047 1992-01-13 2024-10-11 02:14:07.000 1992-01-13 2024-10-11 02:14:07 +8048 8048 8049 804.8 1609.6000000000001 8048 1992-01-14 2024-10-11 02:14:08.000 1992-01-14 2024-10-11 02:14:08 +8049 8049 8050 804.9 1609.8000000000002 8049 1992-01-15 2024-10-11 02:14:09.000 1992-01-15 2024-10-11 02:14:09 +8050 8050 8051 805 1610 8050 1992-01-16 2024-10-11 02:14:10.000 1992-01-16 2024-10-11 02:14:10 +8051 8051 8052 805.1 1610.2 8051 1992-01-17 2024-10-11 02:14:11.000 1992-01-17 2024-10-11 02:14:11 +8052 8052 8053 805.2 1610.4 8052 1992-01-18 2024-10-11 02:14:12.000 1992-01-18 2024-10-11 02:14:12 +8053 8053 8054 805.3 1610.6000000000001 8053 1992-01-19 2024-10-11 02:14:13.000 1992-01-19 2024-10-11 02:14:13 +8054 8054 8055 805.4 1610.8000000000002 8054 1992-01-20 2024-10-11 02:14:14.000 1992-01-20 2024-10-11 02:14:14 +8055 8055 8056 805.5 1611 8055 1992-01-21 2024-10-11 02:14:15.000 1992-01-21 2024-10-11 02:14:15 +8056 8056 8057 805.6 1611.2 8056 1992-01-22 2024-10-11 02:14:16.000 1992-01-22 2024-10-11 02:14:16 +8057 8057 8058 805.7 1611.4 8057 1992-01-23 2024-10-11 02:14:17.000 1992-01-23 2024-10-11 02:14:17 +8058 8058 8059 805.8 1611.6000000000001 8058 1992-01-24 2024-10-11 02:14:18.000 1992-01-24 2024-10-11 02:14:18 +8059 8059 8060 805.9 1611.8000000000002 8059 1992-01-25 2024-10-11 02:14:19.000 1992-01-25 2024-10-11 02:14:19 +8060 8060 8061 806 1612 8060 1992-01-26 2024-10-11 02:14:20.000 1992-01-26 2024-10-11 02:14:20 +8061 8061 8062 806.1 1612.2 8061 1992-01-27 2024-10-11 02:14:21.000 1992-01-27 2024-10-11 02:14:21 +8062 8062 8063 806.2 1612.4 8062 1992-01-28 2024-10-11 02:14:22.000 1992-01-28 2024-10-11 02:14:22 +8063 8063 8064 806.3 1612.6000000000001 8063 1992-01-29 2024-10-11 02:14:23.000 1992-01-29 2024-10-11 02:14:23 +8064 8064 8065 806.4 1612.8000000000002 8064 1992-01-30 2024-10-11 02:14:24.000 1992-01-30 2024-10-11 02:14:24 +8065 8065 8066 806.5 1613 8065 1992-01-31 2024-10-11 02:14:25.000 1992-01-31 2024-10-11 02:14:25 +8066 8066 8067 806.6 1613.2 8066 1992-02-01 2024-10-11 02:14:26.000 1992-02-01 2024-10-11 02:14:26 +8067 8067 8068 806.7 1613.4 8067 1992-02-02 2024-10-11 02:14:27.000 1992-02-02 2024-10-11 02:14:27 +8068 8068 8069 806.8 1613.6000000000001 8068 1992-02-03 2024-10-11 02:14:28.000 1992-02-03 2024-10-11 02:14:28 +8069 8069 8070 806.9 1613.8000000000002 8069 1992-02-04 2024-10-11 02:14:29.000 1992-02-04 2024-10-11 02:14:29 +8070 8070 8071 807 1614 8070 1992-02-05 2024-10-11 02:14:30.000 1992-02-05 2024-10-11 02:14:30 +8071 8071 8072 807.1 1614.2 8071 1992-02-06 2024-10-11 02:14:31.000 1992-02-06 2024-10-11 02:14:31 +8072 8072 8073 807.2 1614.4 8072 1992-02-07 2024-10-11 02:14:32.000 1992-02-07 2024-10-11 02:14:32 +8073 8073 8074 807.3 1614.6000000000001 8073 1992-02-08 2024-10-11 02:14:33.000 1992-02-08 2024-10-11 02:14:33 +8074 8074 8075 807.4 1614.8000000000002 8074 1992-02-09 2024-10-11 02:14:34.000 1992-02-09 2024-10-11 02:14:34 +8075 8075 8076 807.5 1615 8075 1992-02-10 2024-10-11 02:14:35.000 1992-02-10 2024-10-11 02:14:35 +8076 8076 8077 807.6 1615.2 8076 1992-02-11 2024-10-11 02:14:36.000 1992-02-11 2024-10-11 02:14:36 +8077 8077 8078 807.7 1615.4 8077 1992-02-12 2024-10-11 02:14:37.000 1992-02-12 2024-10-11 02:14:37 +8078 8078 8079 807.8 1615.6000000000001 8078 1992-02-13 2024-10-11 02:14:38.000 1992-02-13 2024-10-11 02:14:38 +8079 8079 8080 807.9 1615.8000000000002 8079 1992-02-14 2024-10-11 02:14:39.000 1992-02-14 2024-10-11 02:14:39 +8080 8080 8081 808 1616 8080 1992-02-15 2024-10-11 02:14:40.000 1992-02-15 2024-10-11 02:14:40 +8081 8081 8082 808.1 1616.2 8081 1992-02-16 2024-10-11 02:14:41.000 1992-02-16 2024-10-11 02:14:41 +8082 8082 8083 808.2 1616.4 8082 1992-02-17 2024-10-11 02:14:42.000 1992-02-17 2024-10-11 02:14:42 +8083 8083 8084 808.3 1616.6000000000001 8083 1992-02-18 2024-10-11 02:14:43.000 1992-02-18 2024-10-11 02:14:43 +8084 8084 8085 808.4 1616.8000000000002 8084 1992-02-19 2024-10-11 02:14:44.000 1992-02-19 2024-10-11 02:14:44 +8085 8085 8086 808.5 1617 8085 1992-02-20 2024-10-11 02:14:45.000 1992-02-20 2024-10-11 02:14:45 +8086 8086 8087 808.6 1617.2 8086 1992-02-21 2024-10-11 02:14:46.000 1992-02-21 2024-10-11 02:14:46 +8087 8087 8088 808.7 1617.4 8087 1992-02-22 2024-10-11 02:14:47.000 1992-02-22 2024-10-11 02:14:47 +8088 8088 8089 808.8 1617.6000000000001 8088 1992-02-23 2024-10-11 02:14:48.000 1992-02-23 2024-10-11 02:14:48 +8089 8089 8090 808.9 1617.8000000000002 8089 1992-02-24 2024-10-11 02:14:49.000 1992-02-24 2024-10-11 02:14:49 +8090 8090 8091 809 1618 8090 1992-02-25 2024-10-11 02:14:50.000 1992-02-25 2024-10-11 02:14:50 +8091 8091 8092 809.1 1618.2 8091 1992-02-26 2024-10-11 02:14:51.000 1992-02-26 2024-10-11 02:14:51 +8092 8092 8093 809.2 1618.4 8092 1992-02-27 2024-10-11 02:14:52.000 1992-02-27 2024-10-11 02:14:52 +8093 8093 8094 809.3 1618.6000000000001 8093 1992-02-28 2024-10-11 02:14:53.000 1992-02-28 2024-10-11 02:14:53 +8094 8094 8095 809.4 1618.8000000000002 8094 1992-02-29 2024-10-11 02:14:54.000 1992-02-29 2024-10-11 02:14:54 +8095 8095 8096 809.5 1619 8095 1992-03-01 2024-10-11 02:14:55.000 1992-03-01 2024-10-11 02:14:55 +8096 8096 8097 809.6 1619.2 8096 1992-03-02 2024-10-11 02:14:56.000 1992-03-02 2024-10-11 02:14:56 +8097 8097 8098 809.7 1619.4 8097 1992-03-03 2024-10-11 02:14:57.000 1992-03-03 2024-10-11 02:14:57 +8098 8098 8099 809.8 1619.6000000000001 8098 1992-03-04 2024-10-11 02:14:58.000 1992-03-04 2024-10-11 02:14:58 +8099 8099 8100 809.9 1619.8000000000002 8099 1992-03-05 2024-10-11 02:14:59.000 1992-03-05 2024-10-11 02:14:59 +8100 8100 8101 810 1620 8100 1992-03-06 2024-10-11 02:15:00.000 1992-03-06 2024-10-11 02:15:00 +8101 8101 8102 810.1 1620.2 8101 1992-03-07 2024-10-11 02:15:01.000 1992-03-07 2024-10-11 02:15:01 +8102 8102 8103 810.2 1620.4 8102 1992-03-08 2024-10-11 02:15:02.000 1992-03-08 2024-10-11 02:15:02 +8103 8103 8104 810.3 1620.6000000000001 8103 1992-03-09 2024-10-11 02:15:03.000 1992-03-09 2024-10-11 02:15:03 +8104 8104 8105 810.4 1620.8000000000002 8104 1992-03-10 2024-10-11 02:15:04.000 1992-03-10 2024-10-11 02:15:04 +8105 8105 8106 810.5 1621 8105 1992-03-11 2024-10-11 02:15:05.000 1992-03-11 2024-10-11 02:15:05 +8106 8106 8107 810.6 1621.2 8106 1992-03-12 2024-10-11 02:15:06.000 1992-03-12 2024-10-11 02:15:06 +8107 8107 8108 810.7 1621.4 8107 1992-03-13 2024-10-11 02:15:07.000 1992-03-13 2024-10-11 02:15:07 +8108 8108 8109 810.8 1621.6000000000001 8108 1992-03-14 2024-10-11 02:15:08.000 1992-03-14 2024-10-11 02:15:08 +8109 8109 8110 810.9 1621.8000000000002 8109 1992-03-15 2024-10-11 02:15:09.000 1992-03-15 2024-10-11 02:15:09 +8110 8110 8111 811 1622 8110 1992-03-16 2024-10-11 02:15:10.000 1992-03-16 2024-10-11 02:15:10 +8111 8111 8112 811.1 1622.2 8111 1992-03-17 2024-10-11 02:15:11.000 1992-03-17 2024-10-11 02:15:11 +8112 8112 8113 811.2 1622.4 8112 1992-03-18 2024-10-11 02:15:12.000 1992-03-18 2024-10-11 02:15:12 +8113 8113 8114 811.3 1622.6000000000001 8113 1992-03-19 2024-10-11 02:15:13.000 1992-03-19 2024-10-11 02:15:13 +8114 8114 8115 811.4 1622.8000000000002 8114 1992-03-20 2024-10-11 02:15:14.000 1992-03-20 2024-10-11 02:15:14 +8115 8115 8116 811.5 1623 8115 1992-03-21 2024-10-11 02:15:15.000 1992-03-21 2024-10-11 02:15:15 +8116 8116 8117 811.6 1623.2 8116 1992-03-22 2024-10-11 02:15:16.000 1992-03-22 2024-10-11 02:15:16 +8117 8117 8118 811.7 1623.4 8117 1992-03-23 2024-10-11 02:15:17.000 1992-03-23 2024-10-11 02:15:17 +8118 8118 8119 811.8 1623.6000000000001 8118 1992-03-24 2024-10-11 02:15:18.000 1992-03-24 2024-10-11 02:15:18 +8119 8119 8120 811.9 1623.8000000000002 8119 1992-03-25 2024-10-11 02:15:19.000 1992-03-25 2024-10-11 02:15:19 +8120 8120 8121 812 1624 8120 1992-03-26 2024-10-11 02:15:20.000 1992-03-26 2024-10-11 02:15:20 +8121 8121 8122 812.1 1624.2 8121 1992-03-27 2024-10-11 02:15:21.000 1992-03-27 2024-10-11 02:15:21 +8122 8122 8123 812.2 1624.4 8122 1992-03-28 2024-10-11 02:15:22.000 1992-03-28 2024-10-11 02:15:22 +8123 8123 8124 812.3 1624.6000000000001 8123 1992-03-29 2024-10-11 02:15:23.000 1992-03-29 2024-10-11 02:15:23 +8124 8124 8125 812.4 1624.8000000000002 8124 1992-03-30 2024-10-11 02:15:24.000 1992-03-30 2024-10-11 02:15:24 +8125 8125 8126 812.5 1625 8125 1992-03-31 2024-10-11 02:15:25.000 1992-03-31 2024-10-11 02:15:25 +8126 8126 8127 812.6 1625.2 8126 1992-04-01 2024-10-11 02:15:26.000 1992-04-01 2024-10-11 02:15:26 +8127 8127 8128 812.7 1625.4 8127 1992-04-02 2024-10-11 02:15:27.000 1992-04-02 2024-10-11 02:15:27 +8128 8128 8129 812.8 1625.6000000000001 8128 1992-04-03 2024-10-11 02:15:28.000 1992-04-03 2024-10-11 02:15:28 +8129 8129 8130 812.9 1625.8000000000002 8129 1992-04-04 2024-10-11 02:15:29.000 1992-04-04 2024-10-11 02:15:29 +8130 8130 8131 813 1626 8130 1992-04-05 2024-10-11 02:15:30.000 1992-04-05 2024-10-11 02:15:30 +8131 8131 8132 813.1 1626.2 8131 1992-04-06 2024-10-11 02:15:31.000 1992-04-06 2024-10-11 02:15:31 +8132 8132 8133 813.2 1626.4 8132 1992-04-07 2024-10-11 02:15:32.000 1992-04-07 2024-10-11 02:15:32 +8133 8133 8134 813.3 1626.6000000000001 8133 1992-04-08 2024-10-11 02:15:33.000 1992-04-08 2024-10-11 02:15:33 +8134 8134 8135 813.4 1626.8000000000002 8134 1992-04-09 2024-10-11 02:15:34.000 1992-04-09 2024-10-11 02:15:34 +8135 8135 8136 813.5 1627 8135 1992-04-10 2024-10-11 02:15:35.000 1992-04-10 2024-10-11 02:15:35 +8136 8136 8137 813.6 1627.2 8136 1992-04-11 2024-10-11 02:15:36.000 1992-04-11 2024-10-11 02:15:36 +8137 8137 8138 813.7 1627.4 8137 1992-04-12 2024-10-11 02:15:37.000 1992-04-12 2024-10-11 02:15:37 +8138 8138 8139 813.8 1627.6000000000001 8138 1992-04-13 2024-10-11 02:15:38.000 1992-04-13 2024-10-11 02:15:38 +8139 8139 8140 813.9 1627.8000000000002 8139 1992-04-14 2024-10-11 02:15:39.000 1992-04-14 2024-10-11 02:15:39 +8140 8140 8141 814 1628 8140 1992-04-15 2024-10-11 02:15:40.000 1992-04-15 2024-10-11 02:15:40 +8141 8141 8142 814.1 1628.2 8141 1992-04-16 2024-10-11 02:15:41.000 1992-04-16 2024-10-11 02:15:41 +8142 8142 8143 814.2 1628.4 8142 1992-04-17 2024-10-11 02:15:42.000 1992-04-17 2024-10-11 02:15:42 +8143 8143 8144 814.3 1628.6000000000001 8143 1992-04-18 2024-10-11 02:15:43.000 1992-04-18 2024-10-11 02:15:43 +8144 8144 8145 814.4 1628.8000000000002 8144 1992-04-19 2024-10-11 02:15:44.000 1992-04-19 2024-10-11 02:15:44 +8145 8145 8146 814.5 1629 8145 1992-04-20 2024-10-11 02:15:45.000 1992-04-20 2024-10-11 02:15:45 +8146 8146 8147 814.6 1629.2 8146 1992-04-21 2024-10-11 02:15:46.000 1992-04-21 2024-10-11 02:15:46 +8147 8147 8148 814.7 1629.4 8147 1992-04-22 2024-10-11 02:15:47.000 1992-04-22 2024-10-11 02:15:47 +8148 8148 8149 814.8 1629.6000000000001 8148 1992-04-23 2024-10-11 02:15:48.000 1992-04-23 2024-10-11 02:15:48 +8149 8149 8150 814.9 1629.8000000000002 8149 1992-04-24 2024-10-11 02:15:49.000 1992-04-24 2024-10-11 02:15:49 +8150 8150 8151 815 1630 8150 1992-04-25 2024-10-11 02:15:50.000 1992-04-25 2024-10-11 02:15:50 +8151 8151 8152 815.1 1630.2 8151 1992-04-26 2024-10-11 02:15:51.000 1992-04-26 2024-10-11 02:15:51 +8152 8152 8153 815.2 1630.4 8152 1992-04-27 2024-10-11 02:15:52.000 1992-04-27 2024-10-11 02:15:52 +8153 8153 8154 815.3 1630.6000000000001 8153 1992-04-28 2024-10-11 02:15:53.000 1992-04-28 2024-10-11 02:15:53 +8154 8154 8155 815.4 1630.8000000000002 8154 1992-04-29 2024-10-11 02:15:54.000 1992-04-29 2024-10-11 02:15:54 +8155 8155 8156 815.5 1631 8155 1992-04-30 2024-10-11 02:15:55.000 1992-04-30 2024-10-11 02:15:55 +8156 8156 8157 815.6 1631.2 8156 1992-05-01 2024-10-11 02:15:56.000 1992-05-01 2024-10-11 02:15:56 +8157 8157 8158 815.7 1631.4 8157 1992-05-02 2024-10-11 02:15:57.000 1992-05-02 2024-10-11 02:15:57 +8158 8158 8159 815.8 1631.6000000000001 8158 1992-05-03 2024-10-11 02:15:58.000 1992-05-03 2024-10-11 02:15:58 +8159 8159 8160 815.9 1631.8000000000002 8159 1992-05-04 2024-10-11 02:15:59.000 1992-05-04 2024-10-11 02:15:59 +8160 8160 8161 816 1632 8160 1992-05-05 2024-10-11 02:16:00.000 1992-05-05 2024-10-11 02:16:00 +8161 8161 8162 816.1 1632.2 8161 1992-05-06 2024-10-11 02:16:01.000 1992-05-06 2024-10-11 02:16:01 +8162 8162 8163 816.2 1632.4 8162 1992-05-07 2024-10-11 02:16:02.000 1992-05-07 2024-10-11 02:16:02 +8163 8163 8164 816.3 1632.6000000000001 8163 1992-05-08 2024-10-11 02:16:03.000 1992-05-08 2024-10-11 02:16:03 +8164 8164 8165 816.4 1632.8000000000002 8164 1992-05-09 2024-10-11 02:16:04.000 1992-05-09 2024-10-11 02:16:04 +8165 8165 8166 816.5 1633 8165 1992-05-10 2024-10-11 02:16:05.000 1992-05-10 2024-10-11 02:16:05 +8166 8166 8167 816.6 1633.2 8166 1992-05-11 2024-10-11 02:16:06.000 1992-05-11 2024-10-11 02:16:06 +8167 8167 8168 816.7 1633.4 8167 1992-05-12 2024-10-11 02:16:07.000 1992-05-12 2024-10-11 02:16:07 +8168 8168 8169 816.8 1633.6000000000001 8168 1992-05-13 2024-10-11 02:16:08.000 1992-05-13 2024-10-11 02:16:08 +8169 8169 8170 816.9 1633.8000000000002 8169 1992-05-14 2024-10-11 02:16:09.000 1992-05-14 2024-10-11 02:16:09 +8170 8170 8171 817 1634 8170 1992-05-15 2024-10-11 02:16:10.000 1992-05-15 2024-10-11 02:16:10 +8171 8171 8172 817.1 1634.2 8171 1992-05-16 2024-10-11 02:16:11.000 1992-05-16 2024-10-11 02:16:11 +8172 8172 8173 817.2 1634.4 8172 1992-05-17 2024-10-11 02:16:12.000 1992-05-17 2024-10-11 02:16:12 +8173 8173 8174 817.3 1634.6000000000001 8173 1992-05-18 2024-10-11 02:16:13.000 1992-05-18 2024-10-11 02:16:13 +8174 8174 8175 817.4 1634.8000000000002 8174 1992-05-19 2024-10-11 02:16:14.000 1992-05-19 2024-10-11 02:16:14 +8175 8175 8176 817.5 1635 8175 1992-05-20 2024-10-11 02:16:15.000 1992-05-20 2024-10-11 02:16:15 +8176 8176 8177 817.6 1635.2 8176 1992-05-21 2024-10-11 02:16:16.000 1992-05-21 2024-10-11 02:16:16 +8177 8177 8178 817.7 1635.4 8177 1992-05-22 2024-10-11 02:16:17.000 1992-05-22 2024-10-11 02:16:17 +8178 8178 8179 817.8 1635.6000000000001 8178 1992-05-23 2024-10-11 02:16:18.000 1992-05-23 2024-10-11 02:16:18 +8179 8179 8180 817.9 1635.8000000000002 8179 1992-05-24 2024-10-11 02:16:19.000 1992-05-24 2024-10-11 02:16:19 +8180 8180 8181 818 1636 8180 1992-05-25 2024-10-11 02:16:20.000 1992-05-25 2024-10-11 02:16:20 +8181 8181 8182 818.1 1636.2 8181 1992-05-26 2024-10-11 02:16:21.000 1992-05-26 2024-10-11 02:16:21 +8182 8182 8183 818.2 1636.4 8182 1992-05-27 2024-10-11 02:16:22.000 1992-05-27 2024-10-11 02:16:22 +8183 8183 8184 818.3 1636.6000000000001 8183 1992-05-28 2024-10-11 02:16:23.000 1992-05-28 2024-10-11 02:16:23 +8184 8184 8185 818.4 1636.8000000000002 8184 1992-05-29 2024-10-11 02:16:24.000 1992-05-29 2024-10-11 02:16:24 +8185 8185 8186 818.5 1637 8185 1992-05-30 2024-10-11 02:16:25.000 1992-05-30 2024-10-11 02:16:25 +8186 8186 8187 818.6 1637.2 8186 1992-05-31 2024-10-11 02:16:26.000 1992-05-31 2024-10-11 02:16:26 +8187 8187 8188 818.7 1637.4 8187 1992-06-01 2024-10-11 02:16:27.000 1992-06-01 2024-10-11 02:16:27 +8188 8188 8189 818.8 1637.6000000000001 8188 1992-06-02 2024-10-11 02:16:28.000 1992-06-02 2024-10-11 02:16:28 +8189 8189 8190 818.9 1637.8000000000002 8189 1992-06-03 2024-10-11 02:16:29.000 1992-06-03 2024-10-11 02:16:29 +8190 8190 8191 819 1638 8190 1992-06-04 2024-10-11 02:16:30.000 1992-06-04 2024-10-11 02:16:30 +8191 8191 8192 819.1 1638.2 8191 1992-06-05 2024-10-11 02:16:31.000 1992-06-05 2024-10-11 02:16:31 +8192 8192 8193 819.2 1638.4 8192 1992-06-06 2024-10-11 02:16:32.000 1992-06-06 2024-10-11 02:16:32 +8193 8193 8194 819.3 1638.6000000000001 8193 1992-06-07 2024-10-11 02:16:33.000 1992-06-07 2024-10-11 02:16:33 +8194 8194 8195 819.4 1638.8000000000002 8194 1992-06-08 2024-10-11 02:16:34.000 1992-06-08 2024-10-11 02:16:34 +8195 8195 8196 819.5 1639 8195 1992-06-09 2024-10-11 02:16:35.000 1992-06-09 2024-10-11 02:16:35 +8196 8196 8197 819.6 1639.2 8196 1992-06-10 2024-10-11 02:16:36.000 1992-06-10 2024-10-11 02:16:36 +8197 8197 8198 819.7 1639.4 8197 1992-06-11 2024-10-11 02:16:37.000 1992-06-11 2024-10-11 02:16:37 +8198 8198 8199 819.8 1639.6000000000001 8198 1992-06-12 2024-10-11 02:16:38.000 1992-06-12 2024-10-11 02:16:38 +8199 8199 8200 819.9 1639.8000000000002 8199 1992-06-13 2024-10-11 02:16:39.000 1992-06-13 2024-10-11 02:16:39 +8200 8200 8201 820 1640 8200 1992-06-14 2024-10-11 02:16:40.000 1992-06-14 2024-10-11 02:16:40 +8201 8201 8202 820.1 1640.2 8201 1992-06-15 2024-10-11 02:16:41.000 1992-06-15 2024-10-11 02:16:41 +8202 8202 8203 820.2 1640.4 8202 1992-06-16 2024-10-11 02:16:42.000 1992-06-16 2024-10-11 02:16:42 +8203 8203 8204 820.3 1640.6000000000001 8203 1992-06-17 2024-10-11 02:16:43.000 1992-06-17 2024-10-11 02:16:43 +8204 8204 8205 820.4 1640.8000000000002 8204 1992-06-18 2024-10-11 02:16:44.000 1992-06-18 2024-10-11 02:16:44 +8205 8205 8206 820.5 1641 8205 1992-06-19 2024-10-11 02:16:45.000 1992-06-19 2024-10-11 02:16:45 +8206 8206 8207 820.6 1641.2 8206 1992-06-20 2024-10-11 02:16:46.000 1992-06-20 2024-10-11 02:16:46 +8207 8207 8208 820.7 1641.4 8207 1992-06-21 2024-10-11 02:16:47.000 1992-06-21 2024-10-11 02:16:47 +8208 8208 8209 820.8 1641.6000000000001 8208 1992-06-22 2024-10-11 02:16:48.000 1992-06-22 2024-10-11 02:16:48 +8209 8209 8210 820.9 1641.8000000000002 8209 1992-06-23 2024-10-11 02:16:49.000 1992-06-23 2024-10-11 02:16:49 +8210 8210 8211 821 1642 8210 1992-06-24 2024-10-11 02:16:50.000 1992-06-24 2024-10-11 02:16:50 +8211 8211 8212 821.1 1642.2 8211 1992-06-25 2024-10-11 02:16:51.000 1992-06-25 2024-10-11 02:16:51 +8212 8212 8213 821.2 1642.4 8212 1992-06-26 2024-10-11 02:16:52.000 1992-06-26 2024-10-11 02:16:52 +8213 8213 8214 821.3 1642.6000000000001 8213 1992-06-27 2024-10-11 02:16:53.000 1992-06-27 2024-10-11 02:16:53 +8214 8214 8215 821.4 1642.8000000000002 8214 1992-06-28 2024-10-11 02:16:54.000 1992-06-28 2024-10-11 02:16:54 +8215 8215 8216 821.5 1643 8215 1992-06-29 2024-10-11 02:16:55.000 1992-06-29 2024-10-11 02:16:55 +8216 8216 8217 821.6 1643.2 8216 1992-06-30 2024-10-11 02:16:56.000 1992-06-30 2024-10-11 02:16:56 +8217 8217 8218 821.7 1643.4 8217 1992-07-01 2024-10-11 02:16:57.000 1992-07-01 2024-10-11 02:16:57 +8218 8218 8219 821.8 1643.6000000000001 8218 1992-07-02 2024-10-11 02:16:58.000 1992-07-02 2024-10-11 02:16:58 +8219 8219 8220 821.9 1643.8000000000002 8219 1992-07-03 2024-10-11 02:16:59.000 1992-07-03 2024-10-11 02:16:59 +8220 8220 8221 822 1644 8220 1992-07-04 2024-10-11 02:17:00.000 1992-07-04 2024-10-11 02:17:00 +8221 8221 8222 822.1 1644.2 8221 1992-07-05 2024-10-11 02:17:01.000 1992-07-05 2024-10-11 02:17:01 +8222 8222 8223 822.2 1644.4 8222 1992-07-06 2024-10-11 02:17:02.000 1992-07-06 2024-10-11 02:17:02 +8223 8223 8224 822.3 1644.6000000000001 8223 1992-07-07 2024-10-11 02:17:03.000 1992-07-07 2024-10-11 02:17:03 +8224 8224 8225 822.4 1644.8000000000002 8224 1992-07-08 2024-10-11 02:17:04.000 1992-07-08 2024-10-11 02:17:04 +8225 8225 8226 822.5 1645 8225 1992-07-09 2024-10-11 02:17:05.000 1992-07-09 2024-10-11 02:17:05 +8226 8226 8227 822.6 1645.2 8226 1992-07-10 2024-10-11 02:17:06.000 1992-07-10 2024-10-11 02:17:06 +8227 8227 8228 822.7 1645.4 8227 1992-07-11 2024-10-11 02:17:07.000 1992-07-11 2024-10-11 02:17:07 +8228 8228 8229 822.8 1645.6000000000001 8228 1992-07-12 2024-10-11 02:17:08.000 1992-07-12 2024-10-11 02:17:08 +8229 8229 8230 822.9 1645.8000000000002 8229 1992-07-13 2024-10-11 02:17:09.000 1992-07-13 2024-10-11 02:17:09 +8230 8230 8231 823 1646 8230 1992-07-14 2024-10-11 02:17:10.000 1992-07-14 2024-10-11 02:17:10 +8231 8231 8232 823.1 1646.2 8231 1992-07-15 2024-10-11 02:17:11.000 1992-07-15 2024-10-11 02:17:11 +8232 8232 8233 823.2 1646.4 8232 1992-07-16 2024-10-11 02:17:12.000 1992-07-16 2024-10-11 02:17:12 +8233 8233 8234 823.3 1646.6000000000001 8233 1992-07-17 2024-10-11 02:17:13.000 1992-07-17 2024-10-11 02:17:13 +8234 8234 8235 823.4 1646.8000000000002 8234 1992-07-18 2024-10-11 02:17:14.000 1992-07-18 2024-10-11 02:17:14 +8235 8235 8236 823.5 1647 8235 1992-07-19 2024-10-11 02:17:15.000 1992-07-19 2024-10-11 02:17:15 +8236 8236 8237 823.6 1647.2 8236 1992-07-20 2024-10-11 02:17:16.000 1992-07-20 2024-10-11 02:17:16 +8237 8237 8238 823.7 1647.4 8237 1992-07-21 2024-10-11 02:17:17.000 1992-07-21 2024-10-11 02:17:17 +8238 8238 8239 823.8 1647.6000000000001 8238 1992-07-22 2024-10-11 02:17:18.000 1992-07-22 2024-10-11 02:17:18 +8239 8239 8240 823.9 1647.8000000000002 8239 1992-07-23 2024-10-11 02:17:19.000 1992-07-23 2024-10-11 02:17:19 +8240 8240 8241 824 1648 8240 1992-07-24 2024-10-11 02:17:20.000 1992-07-24 2024-10-11 02:17:20 +8241 8241 8242 824.1 1648.2 8241 1992-07-25 2024-10-11 02:17:21.000 1992-07-25 2024-10-11 02:17:21 +8242 8242 8243 824.2 1648.4 8242 1992-07-26 2024-10-11 02:17:22.000 1992-07-26 2024-10-11 02:17:22 +8243 8243 8244 824.3 1648.6000000000001 8243 1992-07-27 2024-10-11 02:17:23.000 1992-07-27 2024-10-11 02:17:23 +8244 8244 8245 824.4 1648.8000000000002 8244 1992-07-28 2024-10-11 02:17:24.000 1992-07-28 2024-10-11 02:17:24 +8245 8245 8246 824.5 1649 8245 1992-07-29 2024-10-11 02:17:25.000 1992-07-29 2024-10-11 02:17:25 +8246 8246 8247 824.6 1649.2 8246 1992-07-30 2024-10-11 02:17:26.000 1992-07-30 2024-10-11 02:17:26 +8247 8247 8248 824.7 1649.4 8247 1992-07-31 2024-10-11 02:17:27.000 1992-07-31 2024-10-11 02:17:27 +8248 8248 8249 824.8 1649.6000000000001 8248 1992-08-01 2024-10-11 02:17:28.000 1992-08-01 2024-10-11 02:17:28 +8249 8249 8250 824.9 1649.8000000000002 8249 1992-08-02 2024-10-11 02:17:29.000 1992-08-02 2024-10-11 02:17:29 +8250 8250 8251 825 1650 8250 1992-08-03 2024-10-11 02:17:30.000 1992-08-03 2024-10-11 02:17:30 +8251 8251 8252 825.1 1650.2 8251 1992-08-04 2024-10-11 02:17:31.000 1992-08-04 2024-10-11 02:17:31 +8252 8252 8253 825.2 1650.4 8252 1992-08-05 2024-10-11 02:17:32.000 1992-08-05 2024-10-11 02:17:32 +8253 8253 8254 825.3 1650.6000000000001 8253 1992-08-06 2024-10-11 02:17:33.000 1992-08-06 2024-10-11 02:17:33 +8254 8254 8255 825.4 1650.8000000000002 8254 1992-08-07 2024-10-11 02:17:34.000 1992-08-07 2024-10-11 02:17:34 +8255 8255 8256 825.5 1651 8255 1992-08-08 2024-10-11 02:17:35.000 1992-08-08 2024-10-11 02:17:35 +8256 8256 8257 825.6 1651.2 8256 1992-08-09 2024-10-11 02:17:36.000 1992-08-09 2024-10-11 02:17:36 +8257 8257 8258 825.7 1651.4 8257 1992-08-10 2024-10-11 02:17:37.000 1992-08-10 2024-10-11 02:17:37 +8258 8258 8259 825.8 1651.6000000000001 8258 1992-08-11 2024-10-11 02:17:38.000 1992-08-11 2024-10-11 02:17:38 +8259 8259 8260 825.9 1651.8000000000002 8259 1992-08-12 2024-10-11 02:17:39.000 1992-08-12 2024-10-11 02:17:39 +8260 8260 8261 826 1652 8260 1992-08-13 2024-10-11 02:17:40.000 1992-08-13 2024-10-11 02:17:40 +8261 8261 8262 826.1 1652.2 8261 1992-08-14 2024-10-11 02:17:41.000 1992-08-14 2024-10-11 02:17:41 +8262 8262 8263 826.2 1652.4 8262 1992-08-15 2024-10-11 02:17:42.000 1992-08-15 2024-10-11 02:17:42 +8263 8263 8264 826.3 1652.6000000000001 8263 1992-08-16 2024-10-11 02:17:43.000 1992-08-16 2024-10-11 02:17:43 +8264 8264 8265 826.4 1652.8000000000002 8264 1992-08-17 2024-10-11 02:17:44.000 1992-08-17 2024-10-11 02:17:44 +8265 8265 8266 826.5 1653 8265 1992-08-18 2024-10-11 02:17:45.000 1992-08-18 2024-10-11 02:17:45 +8266 8266 8267 826.6 1653.2 8266 1992-08-19 2024-10-11 02:17:46.000 1992-08-19 2024-10-11 02:17:46 +8267 8267 8268 826.7 1653.4 8267 1992-08-20 2024-10-11 02:17:47.000 1992-08-20 2024-10-11 02:17:47 +8268 8268 8269 826.8 1653.6000000000001 8268 1992-08-21 2024-10-11 02:17:48.000 1992-08-21 2024-10-11 02:17:48 +8269 8269 8270 826.9 1653.8000000000002 8269 1992-08-22 2024-10-11 02:17:49.000 1992-08-22 2024-10-11 02:17:49 +8270 8270 8271 827 1654 8270 1992-08-23 2024-10-11 02:17:50.000 1992-08-23 2024-10-11 02:17:50 +8271 8271 8272 827.1 1654.2 8271 1992-08-24 2024-10-11 02:17:51.000 1992-08-24 2024-10-11 02:17:51 +8272 8272 8273 827.2 1654.4 8272 1992-08-25 2024-10-11 02:17:52.000 1992-08-25 2024-10-11 02:17:52 +8273 8273 8274 827.3 1654.6000000000001 8273 1992-08-26 2024-10-11 02:17:53.000 1992-08-26 2024-10-11 02:17:53 +8274 8274 8275 827.4 1654.8000000000002 8274 1992-08-27 2024-10-11 02:17:54.000 1992-08-27 2024-10-11 02:17:54 +8275 8275 8276 827.5 1655 8275 1992-08-28 2024-10-11 02:17:55.000 1992-08-28 2024-10-11 02:17:55 +8276 8276 8277 827.6 1655.2 8276 1992-08-29 2024-10-11 02:17:56.000 1992-08-29 2024-10-11 02:17:56 +8277 8277 8278 827.7 1655.4 8277 1992-08-30 2024-10-11 02:17:57.000 1992-08-30 2024-10-11 02:17:57 +8278 8278 8279 827.8 1655.6000000000001 8278 1992-08-31 2024-10-11 02:17:58.000 1992-08-31 2024-10-11 02:17:58 +8279 8279 8280 827.9 1655.8000000000002 8279 1992-09-01 2024-10-11 02:17:59.000 1992-09-01 2024-10-11 02:17:59 +8280 8280 8281 828 1656 8280 1992-09-02 2024-10-11 02:18:00.000 1992-09-02 2024-10-11 02:18:00 +8281 8281 8282 828.1 1656.2 8281 1992-09-03 2024-10-11 02:18:01.000 1992-09-03 2024-10-11 02:18:01 +8282 8282 8283 828.2 1656.4 8282 1992-09-04 2024-10-11 02:18:02.000 1992-09-04 2024-10-11 02:18:02 +8283 8283 8284 828.3 1656.6000000000001 8283 1992-09-05 2024-10-11 02:18:03.000 1992-09-05 2024-10-11 02:18:03 +8284 8284 8285 828.4 1656.8000000000002 8284 1992-09-06 2024-10-11 02:18:04.000 1992-09-06 2024-10-11 02:18:04 +8285 8285 8286 828.5 1657 8285 1992-09-07 2024-10-11 02:18:05.000 1992-09-07 2024-10-11 02:18:05 +8286 8286 8287 828.6 1657.2 8286 1992-09-08 2024-10-11 02:18:06.000 1992-09-08 2024-10-11 02:18:06 +8287 8287 8288 828.7 1657.4 8287 1992-09-09 2024-10-11 02:18:07.000 1992-09-09 2024-10-11 02:18:07 +8288 8288 8289 828.8 1657.6000000000001 8288 1992-09-10 2024-10-11 02:18:08.000 1992-09-10 2024-10-11 02:18:08 +8289 8289 8290 828.9 1657.8000000000002 8289 1992-09-11 2024-10-11 02:18:09.000 1992-09-11 2024-10-11 02:18:09 +8290 8290 8291 829 1658 8290 1992-09-12 2024-10-11 02:18:10.000 1992-09-12 2024-10-11 02:18:10 +8291 8291 8292 829.1 1658.2 8291 1992-09-13 2024-10-11 02:18:11.000 1992-09-13 2024-10-11 02:18:11 +8292 8292 8293 829.2 1658.4 8292 1992-09-14 2024-10-11 02:18:12.000 1992-09-14 2024-10-11 02:18:12 +8293 8293 8294 829.3 1658.6000000000001 8293 1992-09-15 2024-10-11 02:18:13.000 1992-09-15 2024-10-11 02:18:13 +8294 8294 8295 829.4 1658.8000000000002 8294 1992-09-16 2024-10-11 02:18:14.000 1992-09-16 2024-10-11 02:18:14 +8295 8295 8296 829.5 1659 8295 1992-09-17 2024-10-11 02:18:15.000 1992-09-17 2024-10-11 02:18:15 +8296 8296 8297 829.6 1659.2 8296 1992-09-18 2024-10-11 02:18:16.000 1992-09-18 2024-10-11 02:18:16 +8297 8297 8298 829.7 1659.4 8297 1992-09-19 2024-10-11 02:18:17.000 1992-09-19 2024-10-11 02:18:17 +8298 8298 8299 829.8 1659.6000000000001 8298 1992-09-20 2024-10-11 02:18:18.000 1992-09-20 2024-10-11 02:18:18 +8299 8299 8300 829.9 1659.8000000000002 8299 1992-09-21 2024-10-11 02:18:19.000 1992-09-21 2024-10-11 02:18:19 +8300 8300 8301 830 1660 8300 1992-09-22 2024-10-11 02:18:20.000 1992-09-22 2024-10-11 02:18:20 +8301 8301 8302 830.1 1660.2 8301 1992-09-23 2024-10-11 02:18:21.000 1992-09-23 2024-10-11 02:18:21 +8302 8302 8303 830.2 1660.4 8302 1992-09-24 2024-10-11 02:18:22.000 1992-09-24 2024-10-11 02:18:22 +8303 8303 8304 830.3 1660.6000000000001 8303 1992-09-25 2024-10-11 02:18:23.000 1992-09-25 2024-10-11 02:18:23 +8304 8304 8305 830.4 1660.8000000000002 8304 1992-09-26 2024-10-11 02:18:24.000 1992-09-26 2024-10-11 02:18:24 +8305 8305 8306 830.5 1661 8305 1992-09-27 2024-10-11 02:18:25.000 1992-09-27 2024-10-11 02:18:25 +8306 8306 8307 830.6 1661.2 8306 1992-09-28 2024-10-11 02:18:26.000 1992-09-28 2024-10-11 02:18:26 +8307 8307 8308 830.7 1661.4 8307 1992-09-29 2024-10-11 02:18:27.000 1992-09-29 2024-10-11 02:18:27 +8308 8308 8309 830.8 1661.6000000000001 8308 1992-09-30 2024-10-11 02:18:28.000 1992-09-30 2024-10-11 02:18:28 +8309 8309 8310 830.9 1661.8000000000002 8309 1992-10-01 2024-10-11 02:18:29.000 1992-10-01 2024-10-11 02:18:29 +8310 8310 8311 831 1662 8310 1992-10-02 2024-10-11 02:18:30.000 1992-10-02 2024-10-11 02:18:30 +8311 8311 8312 831.1 1662.2 8311 1992-10-03 2024-10-11 02:18:31.000 1992-10-03 2024-10-11 02:18:31 +8312 8312 8313 831.2 1662.4 8312 1992-10-04 2024-10-11 02:18:32.000 1992-10-04 2024-10-11 02:18:32 +8313 8313 8314 831.3 1662.6000000000001 8313 1992-10-05 2024-10-11 02:18:33.000 1992-10-05 2024-10-11 02:18:33 +8314 8314 8315 831.4 1662.8000000000002 8314 1992-10-06 2024-10-11 02:18:34.000 1992-10-06 2024-10-11 02:18:34 +8315 8315 8316 831.5 1663 8315 1992-10-07 2024-10-11 02:18:35.000 1992-10-07 2024-10-11 02:18:35 +8316 8316 8317 831.6 1663.2 8316 1992-10-08 2024-10-11 02:18:36.000 1992-10-08 2024-10-11 02:18:36 +8317 8317 8318 831.7 1663.4 8317 1992-10-09 2024-10-11 02:18:37.000 1992-10-09 2024-10-11 02:18:37 +8318 8318 8319 831.8 1663.6000000000001 8318 1992-10-10 2024-10-11 02:18:38.000 1992-10-10 2024-10-11 02:18:38 +8319 8319 8320 831.9 1663.8000000000002 8319 1992-10-11 2024-10-11 02:18:39.000 1992-10-11 2024-10-11 02:18:39 +8320 8320 8321 832 1664 8320 1992-10-12 2024-10-11 02:18:40.000 1992-10-12 2024-10-11 02:18:40 +8321 8321 8322 832.1 1664.2 8321 1992-10-13 2024-10-11 02:18:41.000 1992-10-13 2024-10-11 02:18:41 +8322 8322 8323 832.2 1664.4 8322 1992-10-14 2024-10-11 02:18:42.000 1992-10-14 2024-10-11 02:18:42 +8323 8323 8324 832.3 1664.6000000000001 8323 1992-10-15 2024-10-11 02:18:43.000 1992-10-15 2024-10-11 02:18:43 +8324 8324 8325 832.4 1664.8000000000002 8324 1992-10-16 2024-10-11 02:18:44.000 1992-10-16 2024-10-11 02:18:44 +8325 8325 8326 832.5 1665 8325 1992-10-17 2024-10-11 02:18:45.000 1992-10-17 2024-10-11 02:18:45 +8326 8326 8327 832.6 1665.2 8326 1992-10-18 2024-10-11 02:18:46.000 1992-10-18 2024-10-11 02:18:46 +8327 8327 8328 832.7 1665.4 8327 1992-10-19 2024-10-11 02:18:47.000 1992-10-19 2024-10-11 02:18:47 +8328 8328 8329 832.8 1665.6000000000001 8328 1992-10-20 2024-10-11 02:18:48.000 1992-10-20 2024-10-11 02:18:48 +8329 8329 8330 832.9 1665.8000000000002 8329 1992-10-21 2024-10-11 02:18:49.000 1992-10-21 2024-10-11 02:18:49 +8330 8330 8331 833 1666 8330 1992-10-22 2024-10-11 02:18:50.000 1992-10-22 2024-10-11 02:18:50 +8331 8331 8332 833.1 1666.2 8331 1992-10-23 2024-10-11 02:18:51.000 1992-10-23 2024-10-11 02:18:51 +8332 8332 8333 833.2 1666.4 8332 1992-10-24 2024-10-11 02:18:52.000 1992-10-24 2024-10-11 02:18:52 +8333 8333 8334 833.3 1666.6000000000001 8333 1992-10-25 2024-10-11 02:18:53.000 1992-10-25 2024-10-11 02:18:53 +8334 8334 8335 833.4 1666.8000000000002 8334 1992-10-26 2024-10-11 02:18:54.000 1992-10-26 2024-10-11 02:18:54 +8335 8335 8336 833.5 1667 8335 1992-10-27 2024-10-11 02:18:55.000 1992-10-27 2024-10-11 02:18:55 +8336 8336 8337 833.6 1667.2 8336 1992-10-28 2024-10-11 02:18:56.000 1992-10-28 2024-10-11 02:18:56 +8337 8337 8338 833.7 1667.4 8337 1992-10-29 2024-10-11 02:18:57.000 1992-10-29 2024-10-11 02:18:57 +8338 8338 8339 833.8 1667.6000000000001 8338 1992-10-30 2024-10-11 02:18:58.000 1992-10-30 2024-10-11 02:18:58 +8339 8339 8340 833.9 1667.8000000000002 8339 1992-10-31 2024-10-11 02:18:59.000 1992-10-31 2024-10-11 02:18:59 +8340 8340 8341 834 1668 8340 1992-11-01 2024-10-11 02:19:00.000 1992-11-01 2024-10-11 02:19:00 +8341 8341 8342 834.1 1668.2 8341 1992-11-02 2024-10-11 02:19:01.000 1992-11-02 2024-10-11 02:19:01 +8342 8342 8343 834.2 1668.4 8342 1992-11-03 2024-10-11 02:19:02.000 1992-11-03 2024-10-11 02:19:02 +8343 8343 8344 834.3 1668.6000000000001 8343 1992-11-04 2024-10-11 02:19:03.000 1992-11-04 2024-10-11 02:19:03 +8344 8344 8345 834.4 1668.8000000000002 8344 1992-11-05 2024-10-11 02:19:04.000 1992-11-05 2024-10-11 02:19:04 +8345 8345 8346 834.5 1669 8345 1992-11-06 2024-10-11 02:19:05.000 1992-11-06 2024-10-11 02:19:05 +8346 8346 8347 834.6 1669.2 8346 1992-11-07 2024-10-11 02:19:06.000 1992-11-07 2024-10-11 02:19:06 +8347 8347 8348 834.7 1669.4 8347 1992-11-08 2024-10-11 02:19:07.000 1992-11-08 2024-10-11 02:19:07 +8348 8348 8349 834.8 1669.6000000000001 8348 1992-11-09 2024-10-11 02:19:08.000 1992-11-09 2024-10-11 02:19:08 +8349 8349 8350 834.9 1669.8000000000002 8349 1992-11-10 2024-10-11 02:19:09.000 1992-11-10 2024-10-11 02:19:09 +8350 8350 8351 835 1670 8350 1992-11-11 2024-10-11 02:19:10.000 1992-11-11 2024-10-11 02:19:10 +8351 8351 8352 835.1 1670.2 8351 1992-11-12 2024-10-11 02:19:11.000 1992-11-12 2024-10-11 02:19:11 +8352 8352 8353 835.2 1670.4 8352 1992-11-13 2024-10-11 02:19:12.000 1992-11-13 2024-10-11 02:19:12 +8353 8353 8354 835.3 1670.6000000000001 8353 1992-11-14 2024-10-11 02:19:13.000 1992-11-14 2024-10-11 02:19:13 +8354 8354 8355 835.4 1670.8000000000002 8354 1992-11-15 2024-10-11 02:19:14.000 1992-11-15 2024-10-11 02:19:14 +8355 8355 8356 835.5 1671 8355 1992-11-16 2024-10-11 02:19:15.000 1992-11-16 2024-10-11 02:19:15 +8356 8356 8357 835.6 1671.2 8356 1992-11-17 2024-10-11 02:19:16.000 1992-11-17 2024-10-11 02:19:16 +8357 8357 8358 835.7 1671.4 8357 1992-11-18 2024-10-11 02:19:17.000 1992-11-18 2024-10-11 02:19:17 +8358 8358 8359 835.8 1671.6000000000001 8358 1992-11-19 2024-10-11 02:19:18.000 1992-11-19 2024-10-11 02:19:18 +8359 8359 8360 835.9 1671.8000000000002 8359 1992-11-20 2024-10-11 02:19:19.000 1992-11-20 2024-10-11 02:19:19 +8360 8360 8361 836 1672 8360 1992-11-21 2024-10-11 02:19:20.000 1992-11-21 2024-10-11 02:19:20 +8361 8361 8362 836.1 1672.2 8361 1992-11-22 2024-10-11 02:19:21.000 1992-11-22 2024-10-11 02:19:21 +8362 8362 8363 836.2 1672.4 8362 1992-11-23 2024-10-11 02:19:22.000 1992-11-23 2024-10-11 02:19:22 +8363 8363 8364 836.3 1672.6000000000001 8363 1992-11-24 2024-10-11 02:19:23.000 1992-11-24 2024-10-11 02:19:23 +8364 8364 8365 836.4 1672.8000000000002 8364 1992-11-25 2024-10-11 02:19:24.000 1992-11-25 2024-10-11 02:19:24 +8365 8365 8366 836.5 1673 8365 1992-11-26 2024-10-11 02:19:25.000 1992-11-26 2024-10-11 02:19:25 +8366 8366 8367 836.6 1673.2 8366 1992-11-27 2024-10-11 02:19:26.000 1992-11-27 2024-10-11 02:19:26 +8367 8367 8368 836.7 1673.4 8367 1992-11-28 2024-10-11 02:19:27.000 1992-11-28 2024-10-11 02:19:27 +8368 8368 8369 836.8 1673.6000000000001 8368 1992-11-29 2024-10-11 02:19:28.000 1992-11-29 2024-10-11 02:19:28 +8369 8369 8370 836.9 1673.8000000000002 8369 1992-11-30 2024-10-11 02:19:29.000 1992-11-30 2024-10-11 02:19:29 +8370 8370 8371 837 1674 8370 1992-12-01 2024-10-11 02:19:30.000 1992-12-01 2024-10-11 02:19:30 +8371 8371 8372 837.1 1674.2 8371 1992-12-02 2024-10-11 02:19:31.000 1992-12-02 2024-10-11 02:19:31 +8372 8372 8373 837.2 1674.4 8372 1992-12-03 2024-10-11 02:19:32.000 1992-12-03 2024-10-11 02:19:32 +8373 8373 8374 837.3 1674.6000000000001 8373 1992-12-04 2024-10-11 02:19:33.000 1992-12-04 2024-10-11 02:19:33 +8374 8374 8375 837.4 1674.8000000000002 8374 1992-12-05 2024-10-11 02:19:34.000 1992-12-05 2024-10-11 02:19:34 +8375 8375 8376 837.5 1675 8375 1992-12-06 2024-10-11 02:19:35.000 1992-12-06 2024-10-11 02:19:35 +8376 8376 8377 837.6 1675.2 8376 1992-12-07 2024-10-11 02:19:36.000 1992-12-07 2024-10-11 02:19:36 +8377 8377 8378 837.7 1675.4 8377 1992-12-08 2024-10-11 02:19:37.000 1992-12-08 2024-10-11 02:19:37 +8378 8378 8379 837.8 1675.6000000000001 8378 1992-12-09 2024-10-11 02:19:38.000 1992-12-09 2024-10-11 02:19:38 +8379 8379 8380 837.9 1675.8000000000002 8379 1992-12-10 2024-10-11 02:19:39.000 1992-12-10 2024-10-11 02:19:39 +8380 8380 8381 838 1676 8380 1992-12-11 2024-10-11 02:19:40.000 1992-12-11 2024-10-11 02:19:40 +8381 8381 8382 838.1 1676.2 8381 1992-12-12 2024-10-11 02:19:41.000 1992-12-12 2024-10-11 02:19:41 +8382 8382 8383 838.2 1676.4 8382 1992-12-13 2024-10-11 02:19:42.000 1992-12-13 2024-10-11 02:19:42 +8383 8383 8384 838.3 1676.6000000000001 8383 1992-12-14 2024-10-11 02:19:43.000 1992-12-14 2024-10-11 02:19:43 +8384 8384 8385 838.4 1676.8000000000002 8384 1992-12-15 2024-10-11 02:19:44.000 1992-12-15 2024-10-11 02:19:44 +8385 8385 8386 838.5 1677 8385 1992-12-16 2024-10-11 02:19:45.000 1992-12-16 2024-10-11 02:19:45 +8386 8386 8387 838.6 1677.2 8386 1992-12-17 2024-10-11 02:19:46.000 1992-12-17 2024-10-11 02:19:46 +8387 8387 8388 838.7 1677.4 8387 1992-12-18 2024-10-11 02:19:47.000 1992-12-18 2024-10-11 02:19:47 +8388 8388 8389 838.8 1677.6000000000001 8388 1992-12-19 2024-10-11 02:19:48.000 1992-12-19 2024-10-11 02:19:48 +8389 8389 8390 838.9 1677.8000000000002 8389 1992-12-20 2024-10-11 02:19:49.000 1992-12-20 2024-10-11 02:19:49 +8390 8390 8391 839 1678 8390 1992-12-21 2024-10-11 02:19:50.000 1992-12-21 2024-10-11 02:19:50 +8391 8391 8392 839.1 1678.2 8391 1992-12-22 2024-10-11 02:19:51.000 1992-12-22 2024-10-11 02:19:51 +8392 8392 8393 839.2 1678.4 8392 1992-12-23 2024-10-11 02:19:52.000 1992-12-23 2024-10-11 02:19:52 +8393 8393 8394 839.3 1678.6000000000001 8393 1992-12-24 2024-10-11 02:19:53.000 1992-12-24 2024-10-11 02:19:53 +8394 8394 8395 839.4 1678.8000000000002 8394 1992-12-25 2024-10-11 02:19:54.000 1992-12-25 2024-10-11 02:19:54 +8395 8395 8396 839.5 1679 8395 1992-12-26 2024-10-11 02:19:55.000 1992-12-26 2024-10-11 02:19:55 +8396 8396 8397 839.6 1679.2 8396 1992-12-27 2024-10-11 02:19:56.000 1992-12-27 2024-10-11 02:19:56 +8397 8397 8398 839.7 1679.4 8397 1992-12-28 2024-10-11 02:19:57.000 1992-12-28 2024-10-11 02:19:57 +8398 8398 8399 839.8 1679.6000000000001 8398 1992-12-29 2024-10-11 02:19:58.000 1992-12-29 2024-10-11 02:19:58 +8399 8399 8400 839.9 1679.8000000000002 8399 1992-12-30 2024-10-11 02:19:59.000 1992-12-30 2024-10-11 02:19:59 +8400 8400 8401 840 1680 8400 1992-12-31 2024-10-11 02:20:00.000 1992-12-31 2024-10-11 02:20:00 +8401 8401 8402 840.1 1680.2 8401 1993-01-01 2024-10-11 02:20:01.000 1993-01-01 2024-10-11 02:20:01 +8402 8402 8403 840.2 1680.4 8402 1993-01-02 2024-10-11 02:20:02.000 1993-01-02 2024-10-11 02:20:02 +8403 8403 8404 840.3 1680.6000000000001 8403 1993-01-03 2024-10-11 02:20:03.000 1993-01-03 2024-10-11 02:20:03 +8404 8404 8405 840.4 1680.8000000000002 8404 1993-01-04 2024-10-11 02:20:04.000 1993-01-04 2024-10-11 02:20:04 +8405 8405 8406 840.5 1681 8405 1993-01-05 2024-10-11 02:20:05.000 1993-01-05 2024-10-11 02:20:05 +8406 8406 8407 840.6 1681.2 8406 1993-01-06 2024-10-11 02:20:06.000 1993-01-06 2024-10-11 02:20:06 +8407 8407 8408 840.7 1681.4 8407 1993-01-07 2024-10-11 02:20:07.000 1993-01-07 2024-10-11 02:20:07 +8408 8408 8409 840.8 1681.6000000000001 8408 1993-01-08 2024-10-11 02:20:08.000 1993-01-08 2024-10-11 02:20:08 +8409 8409 8410 840.9 1681.8000000000002 8409 1993-01-09 2024-10-11 02:20:09.000 1993-01-09 2024-10-11 02:20:09 +8410 8410 8411 841 1682 8410 1993-01-10 2024-10-11 02:20:10.000 1993-01-10 2024-10-11 02:20:10 +8411 8411 8412 841.1 1682.2 8411 1993-01-11 2024-10-11 02:20:11.000 1993-01-11 2024-10-11 02:20:11 +8412 8412 8413 841.2 1682.4 8412 1993-01-12 2024-10-11 02:20:12.000 1993-01-12 2024-10-11 02:20:12 +8413 8413 8414 841.3 1682.6000000000001 8413 1993-01-13 2024-10-11 02:20:13.000 1993-01-13 2024-10-11 02:20:13 +8414 8414 8415 841.4 1682.8000000000002 8414 1993-01-14 2024-10-11 02:20:14.000 1993-01-14 2024-10-11 02:20:14 +8415 8415 8416 841.5 1683 8415 1993-01-15 2024-10-11 02:20:15.000 1993-01-15 2024-10-11 02:20:15 +8416 8416 8417 841.6 1683.2 8416 1993-01-16 2024-10-11 02:20:16.000 1993-01-16 2024-10-11 02:20:16 +8417 8417 8418 841.7 1683.4 8417 1993-01-17 2024-10-11 02:20:17.000 1993-01-17 2024-10-11 02:20:17 +8418 8418 8419 841.8 1683.6000000000001 8418 1993-01-18 2024-10-11 02:20:18.000 1993-01-18 2024-10-11 02:20:18 +8419 8419 8420 841.9 1683.8000000000002 8419 1993-01-19 2024-10-11 02:20:19.000 1993-01-19 2024-10-11 02:20:19 +8420 8420 8421 842 1684 8420 1993-01-20 2024-10-11 02:20:20.000 1993-01-20 2024-10-11 02:20:20 +8421 8421 8422 842.1 1684.2 8421 1993-01-21 2024-10-11 02:20:21.000 1993-01-21 2024-10-11 02:20:21 +8422 8422 8423 842.2 1684.4 8422 1993-01-22 2024-10-11 02:20:22.000 1993-01-22 2024-10-11 02:20:22 +8423 8423 8424 842.3 1684.6000000000001 8423 1993-01-23 2024-10-11 02:20:23.000 1993-01-23 2024-10-11 02:20:23 +8424 8424 8425 842.4 1684.8000000000002 8424 1993-01-24 2024-10-11 02:20:24.000 1993-01-24 2024-10-11 02:20:24 +8425 8425 8426 842.5 1685 8425 1993-01-25 2024-10-11 02:20:25.000 1993-01-25 2024-10-11 02:20:25 +8426 8426 8427 842.6 1685.2 8426 1993-01-26 2024-10-11 02:20:26.000 1993-01-26 2024-10-11 02:20:26 +8427 8427 8428 842.7 1685.4 8427 1993-01-27 2024-10-11 02:20:27.000 1993-01-27 2024-10-11 02:20:27 +8428 8428 8429 842.8 1685.6000000000001 8428 1993-01-28 2024-10-11 02:20:28.000 1993-01-28 2024-10-11 02:20:28 +8429 8429 8430 842.9 1685.8000000000002 8429 1993-01-29 2024-10-11 02:20:29.000 1993-01-29 2024-10-11 02:20:29 +8430 8430 8431 843 1686 8430 1993-01-30 2024-10-11 02:20:30.000 1993-01-30 2024-10-11 02:20:30 +8431 8431 8432 843.1 1686.2 8431 1993-01-31 2024-10-11 02:20:31.000 1993-01-31 2024-10-11 02:20:31 +8432 8432 8433 843.2 1686.4 8432 1993-02-01 2024-10-11 02:20:32.000 1993-02-01 2024-10-11 02:20:32 +8433 8433 8434 843.3 1686.6000000000001 8433 1993-02-02 2024-10-11 02:20:33.000 1993-02-02 2024-10-11 02:20:33 +8434 8434 8435 843.4 1686.8000000000002 8434 1993-02-03 2024-10-11 02:20:34.000 1993-02-03 2024-10-11 02:20:34 +8435 8435 8436 843.5 1687 8435 1993-02-04 2024-10-11 02:20:35.000 1993-02-04 2024-10-11 02:20:35 +8436 8436 8437 843.6 1687.2 8436 1993-02-05 2024-10-11 02:20:36.000 1993-02-05 2024-10-11 02:20:36 +8437 8437 8438 843.7 1687.4 8437 1993-02-06 2024-10-11 02:20:37.000 1993-02-06 2024-10-11 02:20:37 +8438 8438 8439 843.8 1687.6000000000001 8438 1993-02-07 2024-10-11 02:20:38.000 1993-02-07 2024-10-11 02:20:38 +8439 8439 8440 843.9 1687.8000000000002 8439 1993-02-08 2024-10-11 02:20:39.000 1993-02-08 2024-10-11 02:20:39 +8440 8440 8441 844 1688 8440 1993-02-09 2024-10-11 02:20:40.000 1993-02-09 2024-10-11 02:20:40 +8441 8441 8442 844.1 1688.2 8441 1993-02-10 2024-10-11 02:20:41.000 1993-02-10 2024-10-11 02:20:41 +8442 8442 8443 844.2 1688.4 8442 1993-02-11 2024-10-11 02:20:42.000 1993-02-11 2024-10-11 02:20:42 +8443 8443 8444 844.3 1688.6000000000001 8443 1993-02-12 2024-10-11 02:20:43.000 1993-02-12 2024-10-11 02:20:43 +8444 8444 8445 844.4 1688.8000000000002 8444 1993-02-13 2024-10-11 02:20:44.000 1993-02-13 2024-10-11 02:20:44 +8445 8445 8446 844.5 1689 8445 1993-02-14 2024-10-11 02:20:45.000 1993-02-14 2024-10-11 02:20:45 +8446 8446 8447 844.6 1689.2 8446 1993-02-15 2024-10-11 02:20:46.000 1993-02-15 2024-10-11 02:20:46 +8447 8447 8448 844.7 1689.4 8447 1993-02-16 2024-10-11 02:20:47.000 1993-02-16 2024-10-11 02:20:47 +8448 8448 8449 844.8 1689.6000000000001 8448 1993-02-17 2024-10-11 02:20:48.000 1993-02-17 2024-10-11 02:20:48 +8449 8449 8450 844.9 1689.8000000000002 8449 1993-02-18 2024-10-11 02:20:49.000 1993-02-18 2024-10-11 02:20:49 +8450 8450 8451 845 1690 8450 1993-02-19 2024-10-11 02:20:50.000 1993-02-19 2024-10-11 02:20:50 +8451 8451 8452 845.1 1690.2 8451 1993-02-20 2024-10-11 02:20:51.000 1993-02-20 2024-10-11 02:20:51 +8452 8452 8453 845.2 1690.4 8452 1993-02-21 2024-10-11 02:20:52.000 1993-02-21 2024-10-11 02:20:52 +8453 8453 8454 845.3 1690.6000000000001 8453 1993-02-22 2024-10-11 02:20:53.000 1993-02-22 2024-10-11 02:20:53 +8454 8454 8455 845.4 1690.8000000000002 8454 1993-02-23 2024-10-11 02:20:54.000 1993-02-23 2024-10-11 02:20:54 +8455 8455 8456 845.5 1691 8455 1993-02-24 2024-10-11 02:20:55.000 1993-02-24 2024-10-11 02:20:55 +8456 8456 8457 845.6 1691.2 8456 1993-02-25 2024-10-11 02:20:56.000 1993-02-25 2024-10-11 02:20:56 +8457 8457 8458 845.7 1691.4 8457 1993-02-26 2024-10-11 02:20:57.000 1993-02-26 2024-10-11 02:20:57 +8458 8458 8459 845.8 1691.6000000000001 8458 1993-02-27 2024-10-11 02:20:58.000 1993-02-27 2024-10-11 02:20:58 +8459 8459 8460 845.9 1691.8000000000002 8459 1993-02-28 2024-10-11 02:20:59.000 1993-02-28 2024-10-11 02:20:59 +8460 8460 8461 846 1692 8460 1993-03-01 2024-10-11 02:21:00.000 1993-03-01 2024-10-11 02:21:00 +8461 8461 8462 846.1 1692.2 8461 1993-03-02 2024-10-11 02:21:01.000 1993-03-02 2024-10-11 02:21:01 +8462 8462 8463 846.2 1692.4 8462 1993-03-03 2024-10-11 02:21:02.000 1993-03-03 2024-10-11 02:21:02 +8463 8463 8464 846.3 1692.6000000000001 8463 1993-03-04 2024-10-11 02:21:03.000 1993-03-04 2024-10-11 02:21:03 +8464 8464 8465 846.4 1692.8000000000002 8464 1993-03-05 2024-10-11 02:21:04.000 1993-03-05 2024-10-11 02:21:04 +8465 8465 8466 846.5 1693 8465 1993-03-06 2024-10-11 02:21:05.000 1993-03-06 2024-10-11 02:21:05 +8466 8466 8467 846.6 1693.2 8466 1993-03-07 2024-10-11 02:21:06.000 1993-03-07 2024-10-11 02:21:06 +8467 8467 8468 846.7 1693.4 8467 1993-03-08 2024-10-11 02:21:07.000 1993-03-08 2024-10-11 02:21:07 +8468 8468 8469 846.8 1693.6000000000001 8468 1993-03-09 2024-10-11 02:21:08.000 1993-03-09 2024-10-11 02:21:08 +8469 8469 8470 846.9 1693.8000000000002 8469 1993-03-10 2024-10-11 02:21:09.000 1993-03-10 2024-10-11 02:21:09 +8470 8470 8471 847 1694 8470 1993-03-11 2024-10-11 02:21:10.000 1993-03-11 2024-10-11 02:21:10 +8471 8471 8472 847.1 1694.2 8471 1993-03-12 2024-10-11 02:21:11.000 1993-03-12 2024-10-11 02:21:11 +8472 8472 8473 847.2 1694.4 8472 1993-03-13 2024-10-11 02:21:12.000 1993-03-13 2024-10-11 02:21:12 +8473 8473 8474 847.3 1694.6000000000001 8473 1993-03-14 2024-10-11 02:21:13.000 1993-03-14 2024-10-11 02:21:13 +8474 8474 8475 847.4 1694.8000000000002 8474 1993-03-15 2024-10-11 02:21:14.000 1993-03-15 2024-10-11 02:21:14 +8475 8475 8476 847.5 1695 8475 1993-03-16 2024-10-11 02:21:15.000 1993-03-16 2024-10-11 02:21:15 +8476 8476 8477 847.6 1695.2 8476 1993-03-17 2024-10-11 02:21:16.000 1993-03-17 2024-10-11 02:21:16 +8477 8477 8478 847.7 1695.4 8477 1993-03-18 2024-10-11 02:21:17.000 1993-03-18 2024-10-11 02:21:17 +8478 8478 8479 847.8 1695.6000000000001 8478 1993-03-19 2024-10-11 02:21:18.000 1993-03-19 2024-10-11 02:21:18 +8479 8479 8480 847.9 1695.8000000000002 8479 1993-03-20 2024-10-11 02:21:19.000 1993-03-20 2024-10-11 02:21:19 +8480 8480 8481 848 1696 8480 1993-03-21 2024-10-11 02:21:20.000 1993-03-21 2024-10-11 02:21:20 +8481 8481 8482 848.1 1696.2 8481 1993-03-22 2024-10-11 02:21:21.000 1993-03-22 2024-10-11 02:21:21 +8482 8482 8483 848.2 1696.4 8482 1993-03-23 2024-10-11 02:21:22.000 1993-03-23 2024-10-11 02:21:22 +8483 8483 8484 848.3 1696.6000000000001 8483 1993-03-24 2024-10-11 02:21:23.000 1993-03-24 2024-10-11 02:21:23 +8484 8484 8485 848.4 1696.8000000000002 8484 1993-03-25 2024-10-11 02:21:24.000 1993-03-25 2024-10-11 02:21:24 +8485 8485 8486 848.5 1697 8485 1993-03-26 2024-10-11 02:21:25.000 1993-03-26 2024-10-11 02:21:25 +8486 8486 8487 848.6 1697.2 8486 1993-03-27 2024-10-11 02:21:26.000 1993-03-27 2024-10-11 02:21:26 +8487 8487 8488 848.7 1697.4 8487 1993-03-28 2024-10-11 02:21:27.000 1993-03-28 2024-10-11 02:21:27 +8488 8488 8489 848.8 1697.6000000000001 8488 1993-03-29 2024-10-11 02:21:28.000 1993-03-29 2024-10-11 02:21:28 +8489 8489 8490 848.9 1697.8000000000002 8489 1993-03-30 2024-10-11 02:21:29.000 1993-03-30 2024-10-11 02:21:29 +8490 8490 8491 849 1698 8490 1993-03-31 2024-10-11 02:21:30.000 1993-03-31 2024-10-11 02:21:30 +8491 8491 8492 849.1 1698.2 8491 1993-04-01 2024-10-11 02:21:31.000 1993-04-01 2024-10-11 02:21:31 +8492 8492 8493 849.2 1698.4 8492 1993-04-02 2024-10-11 02:21:32.000 1993-04-02 2024-10-11 02:21:32 +8493 8493 8494 849.3 1698.6000000000001 8493 1993-04-03 2024-10-11 02:21:33.000 1993-04-03 2024-10-11 02:21:33 +8494 8494 8495 849.4 1698.8000000000002 8494 1993-04-04 2024-10-11 02:21:34.000 1993-04-04 2024-10-11 02:21:34 +8495 8495 8496 849.5 1699 8495 1993-04-05 2024-10-11 02:21:35.000 1993-04-05 2024-10-11 02:21:35 +8496 8496 8497 849.6 1699.2 8496 1993-04-06 2024-10-11 02:21:36.000 1993-04-06 2024-10-11 02:21:36 +8497 8497 8498 849.7 1699.4 8497 1993-04-07 2024-10-11 02:21:37.000 1993-04-07 2024-10-11 02:21:37 +8498 8498 8499 849.8 1699.6000000000001 8498 1993-04-08 2024-10-11 02:21:38.000 1993-04-08 2024-10-11 02:21:38 +8499 8499 8500 849.9 1699.8000000000002 8499 1993-04-09 2024-10-11 02:21:39.000 1993-04-09 2024-10-11 02:21:39 +8500 8500 8501 850 1700 8500 1993-04-10 2024-10-11 02:21:40.000 1993-04-10 2024-10-11 02:21:40 +8501 8501 8502 850.1 1700.2 8501 1993-04-11 2024-10-11 02:21:41.000 1993-04-11 2024-10-11 02:21:41 +8502 8502 8503 850.2 1700.4 8502 1993-04-12 2024-10-11 02:21:42.000 1993-04-12 2024-10-11 02:21:42 +8503 8503 8504 850.3 1700.6000000000001 8503 1993-04-13 2024-10-11 02:21:43.000 1993-04-13 2024-10-11 02:21:43 +8504 8504 8505 850.4 1700.8000000000002 8504 1993-04-14 2024-10-11 02:21:44.000 1993-04-14 2024-10-11 02:21:44 +8505 8505 8506 850.5 1701 8505 1993-04-15 2024-10-11 02:21:45.000 1993-04-15 2024-10-11 02:21:45 +8506 8506 8507 850.6 1701.2 8506 1993-04-16 2024-10-11 02:21:46.000 1993-04-16 2024-10-11 02:21:46 +8507 8507 8508 850.7 1701.4 8507 1993-04-17 2024-10-11 02:21:47.000 1993-04-17 2024-10-11 02:21:47 +8508 8508 8509 850.8 1701.6000000000001 8508 1993-04-18 2024-10-11 02:21:48.000 1993-04-18 2024-10-11 02:21:48 +8509 8509 8510 850.9 1701.8000000000002 8509 1993-04-19 2024-10-11 02:21:49.000 1993-04-19 2024-10-11 02:21:49 +8510 8510 8511 851 1702 8510 1993-04-20 2024-10-11 02:21:50.000 1993-04-20 2024-10-11 02:21:50 +8511 8511 8512 851.1 1702.2 8511 1993-04-21 2024-10-11 02:21:51.000 1993-04-21 2024-10-11 02:21:51 +8512 8512 8513 851.2 1702.4 8512 1993-04-22 2024-10-11 02:21:52.000 1993-04-22 2024-10-11 02:21:52 +8513 8513 8514 851.3 1702.6000000000001 8513 1993-04-23 2024-10-11 02:21:53.000 1993-04-23 2024-10-11 02:21:53 +8514 8514 8515 851.4 1702.8000000000002 8514 1993-04-24 2024-10-11 02:21:54.000 1993-04-24 2024-10-11 02:21:54 +8515 8515 8516 851.5 1703 8515 1993-04-25 2024-10-11 02:21:55.000 1993-04-25 2024-10-11 02:21:55 +8516 8516 8517 851.6 1703.2 8516 1993-04-26 2024-10-11 02:21:56.000 1993-04-26 2024-10-11 02:21:56 +8517 8517 8518 851.7 1703.4 8517 1993-04-27 2024-10-11 02:21:57.000 1993-04-27 2024-10-11 02:21:57 +8518 8518 8519 851.8 1703.6000000000001 8518 1993-04-28 2024-10-11 02:21:58.000 1993-04-28 2024-10-11 02:21:58 +8519 8519 8520 851.9 1703.8000000000002 8519 1993-04-29 2024-10-11 02:21:59.000 1993-04-29 2024-10-11 02:21:59 +8520 8520 8521 852 1704 8520 1993-04-30 2024-10-11 02:22:00.000 1993-04-30 2024-10-11 02:22:00 +8521 8521 8522 852.1 1704.2 8521 1993-05-01 2024-10-11 02:22:01.000 1993-05-01 2024-10-11 02:22:01 +8522 8522 8523 852.2 1704.4 8522 1993-05-02 2024-10-11 02:22:02.000 1993-05-02 2024-10-11 02:22:02 +8523 8523 8524 852.3 1704.6000000000001 8523 1993-05-03 2024-10-11 02:22:03.000 1993-05-03 2024-10-11 02:22:03 +8524 8524 8525 852.4 1704.8000000000002 8524 1993-05-04 2024-10-11 02:22:04.000 1993-05-04 2024-10-11 02:22:04 +8525 8525 8526 852.5 1705 8525 1993-05-05 2024-10-11 02:22:05.000 1993-05-05 2024-10-11 02:22:05 +8526 8526 8527 852.6 1705.2 8526 1993-05-06 2024-10-11 02:22:06.000 1993-05-06 2024-10-11 02:22:06 +8527 8527 8528 852.7 1705.4 8527 1993-05-07 2024-10-11 02:22:07.000 1993-05-07 2024-10-11 02:22:07 +8528 8528 8529 852.8 1705.6000000000001 8528 1993-05-08 2024-10-11 02:22:08.000 1993-05-08 2024-10-11 02:22:08 +8529 8529 8530 852.9 1705.8000000000002 8529 1993-05-09 2024-10-11 02:22:09.000 1993-05-09 2024-10-11 02:22:09 +8530 8530 8531 853 1706 8530 1993-05-10 2024-10-11 02:22:10.000 1993-05-10 2024-10-11 02:22:10 +8531 8531 8532 853.1 1706.2 8531 1993-05-11 2024-10-11 02:22:11.000 1993-05-11 2024-10-11 02:22:11 +8532 8532 8533 853.2 1706.4 8532 1993-05-12 2024-10-11 02:22:12.000 1993-05-12 2024-10-11 02:22:12 +8533 8533 8534 853.3 1706.6000000000001 8533 1993-05-13 2024-10-11 02:22:13.000 1993-05-13 2024-10-11 02:22:13 +8534 8534 8535 853.4 1706.8000000000002 8534 1993-05-14 2024-10-11 02:22:14.000 1993-05-14 2024-10-11 02:22:14 +8535 8535 8536 853.5 1707 8535 1993-05-15 2024-10-11 02:22:15.000 1993-05-15 2024-10-11 02:22:15 +8536 8536 8537 853.6 1707.2 8536 1993-05-16 2024-10-11 02:22:16.000 1993-05-16 2024-10-11 02:22:16 +8537 8537 8538 853.7 1707.4 8537 1993-05-17 2024-10-11 02:22:17.000 1993-05-17 2024-10-11 02:22:17 +8538 8538 8539 853.8 1707.6000000000001 8538 1993-05-18 2024-10-11 02:22:18.000 1993-05-18 2024-10-11 02:22:18 +8539 8539 8540 853.9 1707.8000000000002 8539 1993-05-19 2024-10-11 02:22:19.000 1993-05-19 2024-10-11 02:22:19 +8540 8540 8541 854 1708 8540 1993-05-20 2024-10-11 02:22:20.000 1993-05-20 2024-10-11 02:22:20 +8541 8541 8542 854.1 1708.2 8541 1993-05-21 2024-10-11 02:22:21.000 1993-05-21 2024-10-11 02:22:21 +8542 8542 8543 854.2 1708.4 8542 1993-05-22 2024-10-11 02:22:22.000 1993-05-22 2024-10-11 02:22:22 +8543 8543 8544 854.3 1708.6000000000001 8543 1993-05-23 2024-10-11 02:22:23.000 1993-05-23 2024-10-11 02:22:23 +8544 8544 8545 854.4 1708.8000000000002 8544 1993-05-24 2024-10-11 02:22:24.000 1993-05-24 2024-10-11 02:22:24 +8545 8545 8546 854.5 1709 8545 1993-05-25 2024-10-11 02:22:25.000 1993-05-25 2024-10-11 02:22:25 +8546 8546 8547 854.6 1709.2 8546 1993-05-26 2024-10-11 02:22:26.000 1993-05-26 2024-10-11 02:22:26 +8547 8547 8548 854.7 1709.4 8547 1993-05-27 2024-10-11 02:22:27.000 1993-05-27 2024-10-11 02:22:27 +8548 8548 8549 854.8 1709.6000000000001 8548 1993-05-28 2024-10-11 02:22:28.000 1993-05-28 2024-10-11 02:22:28 +8549 8549 8550 854.9 1709.8000000000002 8549 1993-05-29 2024-10-11 02:22:29.000 1993-05-29 2024-10-11 02:22:29 +8550 8550 8551 855 1710 8550 1993-05-30 2024-10-11 02:22:30.000 1993-05-30 2024-10-11 02:22:30 +8551 8551 8552 855.1 1710.2 8551 1993-05-31 2024-10-11 02:22:31.000 1993-05-31 2024-10-11 02:22:31 +8552 8552 8553 855.2 1710.4 8552 1993-06-01 2024-10-11 02:22:32.000 1993-06-01 2024-10-11 02:22:32 +8553 8553 8554 855.3 1710.6000000000001 8553 1993-06-02 2024-10-11 02:22:33.000 1993-06-02 2024-10-11 02:22:33 +8554 8554 8555 855.4 1710.8000000000002 8554 1993-06-03 2024-10-11 02:22:34.000 1993-06-03 2024-10-11 02:22:34 +8555 8555 8556 855.5 1711 8555 1993-06-04 2024-10-11 02:22:35.000 1993-06-04 2024-10-11 02:22:35 +8556 8556 8557 855.6 1711.2 8556 1993-06-05 2024-10-11 02:22:36.000 1993-06-05 2024-10-11 02:22:36 +8557 8557 8558 855.7 1711.4 8557 1993-06-06 2024-10-11 02:22:37.000 1993-06-06 2024-10-11 02:22:37 +8558 8558 8559 855.8 1711.6000000000001 8558 1993-06-07 2024-10-11 02:22:38.000 1993-06-07 2024-10-11 02:22:38 +8559 8559 8560 855.9 1711.8000000000002 8559 1993-06-08 2024-10-11 02:22:39.000 1993-06-08 2024-10-11 02:22:39 +8560 8560 8561 856 1712 8560 1993-06-09 2024-10-11 02:22:40.000 1993-06-09 2024-10-11 02:22:40 +8561 8561 8562 856.1 1712.2 8561 1993-06-10 2024-10-11 02:22:41.000 1993-06-10 2024-10-11 02:22:41 +8562 8562 8563 856.2 1712.4 8562 1993-06-11 2024-10-11 02:22:42.000 1993-06-11 2024-10-11 02:22:42 +8563 8563 8564 856.3 1712.6000000000001 8563 1993-06-12 2024-10-11 02:22:43.000 1993-06-12 2024-10-11 02:22:43 +8564 8564 8565 856.4 1712.8000000000002 8564 1993-06-13 2024-10-11 02:22:44.000 1993-06-13 2024-10-11 02:22:44 +8565 8565 8566 856.5 1713 8565 1993-06-14 2024-10-11 02:22:45.000 1993-06-14 2024-10-11 02:22:45 +8566 8566 8567 856.6 1713.2 8566 1993-06-15 2024-10-11 02:22:46.000 1993-06-15 2024-10-11 02:22:46 +8567 8567 8568 856.7 1713.4 8567 1993-06-16 2024-10-11 02:22:47.000 1993-06-16 2024-10-11 02:22:47 +8568 8568 8569 856.8 1713.6000000000001 8568 1993-06-17 2024-10-11 02:22:48.000 1993-06-17 2024-10-11 02:22:48 +8569 8569 8570 856.9 1713.8000000000002 8569 1993-06-18 2024-10-11 02:22:49.000 1993-06-18 2024-10-11 02:22:49 +8570 8570 8571 857 1714 8570 1993-06-19 2024-10-11 02:22:50.000 1993-06-19 2024-10-11 02:22:50 +8571 8571 8572 857.1 1714.2 8571 1993-06-20 2024-10-11 02:22:51.000 1993-06-20 2024-10-11 02:22:51 +8572 8572 8573 857.2 1714.4 8572 1993-06-21 2024-10-11 02:22:52.000 1993-06-21 2024-10-11 02:22:52 +8573 8573 8574 857.3 1714.6000000000001 8573 1993-06-22 2024-10-11 02:22:53.000 1993-06-22 2024-10-11 02:22:53 +8574 8574 8575 857.4 1714.8000000000002 8574 1993-06-23 2024-10-11 02:22:54.000 1993-06-23 2024-10-11 02:22:54 +8575 8575 8576 857.5 1715 8575 1993-06-24 2024-10-11 02:22:55.000 1993-06-24 2024-10-11 02:22:55 +8576 8576 8577 857.6 1715.2 8576 1993-06-25 2024-10-11 02:22:56.000 1993-06-25 2024-10-11 02:22:56 +8577 8577 8578 857.7 1715.4 8577 1993-06-26 2024-10-11 02:22:57.000 1993-06-26 2024-10-11 02:22:57 +8578 8578 8579 857.8 1715.6000000000001 8578 1993-06-27 2024-10-11 02:22:58.000 1993-06-27 2024-10-11 02:22:58 +8579 8579 8580 857.9 1715.8000000000002 8579 1993-06-28 2024-10-11 02:22:59.000 1993-06-28 2024-10-11 02:22:59 +8580 8580 8581 858 1716 8580 1993-06-29 2024-10-11 02:23:00.000 1993-06-29 2024-10-11 02:23:00 +8581 8581 8582 858.1 1716.2 8581 1993-06-30 2024-10-11 02:23:01.000 1993-06-30 2024-10-11 02:23:01 +8582 8582 8583 858.2 1716.4 8582 1993-07-01 2024-10-11 02:23:02.000 1993-07-01 2024-10-11 02:23:02 +8583 8583 8584 858.3 1716.6000000000001 8583 1993-07-02 2024-10-11 02:23:03.000 1993-07-02 2024-10-11 02:23:03 +8584 8584 8585 858.4 1716.8000000000002 8584 1993-07-03 2024-10-11 02:23:04.000 1993-07-03 2024-10-11 02:23:04 +8585 8585 8586 858.5 1717 8585 1993-07-04 2024-10-11 02:23:05.000 1993-07-04 2024-10-11 02:23:05 +8586 8586 8587 858.6 1717.2 8586 1993-07-05 2024-10-11 02:23:06.000 1993-07-05 2024-10-11 02:23:06 +8587 8587 8588 858.7 1717.4 8587 1993-07-06 2024-10-11 02:23:07.000 1993-07-06 2024-10-11 02:23:07 +8588 8588 8589 858.8 1717.6000000000001 8588 1993-07-07 2024-10-11 02:23:08.000 1993-07-07 2024-10-11 02:23:08 +8589 8589 8590 858.9 1717.8000000000002 8589 1993-07-08 2024-10-11 02:23:09.000 1993-07-08 2024-10-11 02:23:09 +8590 8590 8591 859 1718 8590 1993-07-09 2024-10-11 02:23:10.000 1993-07-09 2024-10-11 02:23:10 +8591 8591 8592 859.1 1718.2 8591 1993-07-10 2024-10-11 02:23:11.000 1993-07-10 2024-10-11 02:23:11 +8592 8592 8593 859.2 1718.4 8592 1993-07-11 2024-10-11 02:23:12.000 1993-07-11 2024-10-11 02:23:12 +8593 8593 8594 859.3 1718.6000000000001 8593 1993-07-12 2024-10-11 02:23:13.000 1993-07-12 2024-10-11 02:23:13 +8594 8594 8595 859.4 1718.8000000000002 8594 1993-07-13 2024-10-11 02:23:14.000 1993-07-13 2024-10-11 02:23:14 +8595 8595 8596 859.5 1719 8595 1993-07-14 2024-10-11 02:23:15.000 1993-07-14 2024-10-11 02:23:15 +8596 8596 8597 859.6 1719.2 8596 1993-07-15 2024-10-11 02:23:16.000 1993-07-15 2024-10-11 02:23:16 +8597 8597 8598 859.7 1719.4 8597 1993-07-16 2024-10-11 02:23:17.000 1993-07-16 2024-10-11 02:23:17 +8598 8598 8599 859.8 1719.6000000000001 8598 1993-07-17 2024-10-11 02:23:18.000 1993-07-17 2024-10-11 02:23:18 +8599 8599 8600 859.9 1719.8000000000002 8599 1993-07-18 2024-10-11 02:23:19.000 1993-07-18 2024-10-11 02:23:19 +8600 8600 8601 860 1720 8600 1993-07-19 2024-10-11 02:23:20.000 1993-07-19 2024-10-11 02:23:20 +8601 8601 8602 860.1 1720.2 8601 1993-07-20 2024-10-11 02:23:21.000 1993-07-20 2024-10-11 02:23:21 +8602 8602 8603 860.2 1720.4 8602 1993-07-21 2024-10-11 02:23:22.000 1993-07-21 2024-10-11 02:23:22 +8603 8603 8604 860.3 1720.6000000000001 8603 1993-07-22 2024-10-11 02:23:23.000 1993-07-22 2024-10-11 02:23:23 +8604 8604 8605 860.4 1720.8000000000002 8604 1993-07-23 2024-10-11 02:23:24.000 1993-07-23 2024-10-11 02:23:24 +8605 8605 8606 860.5 1721 8605 1993-07-24 2024-10-11 02:23:25.000 1993-07-24 2024-10-11 02:23:25 +8606 8606 8607 860.6 1721.2 8606 1993-07-25 2024-10-11 02:23:26.000 1993-07-25 2024-10-11 02:23:26 +8607 8607 8608 860.7 1721.4 8607 1993-07-26 2024-10-11 02:23:27.000 1993-07-26 2024-10-11 02:23:27 +8608 8608 8609 860.8 1721.6000000000001 8608 1993-07-27 2024-10-11 02:23:28.000 1993-07-27 2024-10-11 02:23:28 +8609 8609 8610 860.9 1721.8000000000002 8609 1993-07-28 2024-10-11 02:23:29.000 1993-07-28 2024-10-11 02:23:29 +8610 8610 8611 861 1722 8610 1993-07-29 2024-10-11 02:23:30.000 1993-07-29 2024-10-11 02:23:30 +8611 8611 8612 861.1 1722.2 8611 1993-07-30 2024-10-11 02:23:31.000 1993-07-30 2024-10-11 02:23:31 +8612 8612 8613 861.2 1722.4 8612 1993-07-31 2024-10-11 02:23:32.000 1993-07-31 2024-10-11 02:23:32 +8613 8613 8614 861.3 1722.6000000000001 8613 1993-08-01 2024-10-11 02:23:33.000 1993-08-01 2024-10-11 02:23:33 +8614 8614 8615 861.4 1722.8000000000002 8614 1993-08-02 2024-10-11 02:23:34.000 1993-08-02 2024-10-11 02:23:34 +8615 8615 8616 861.5 1723 8615 1993-08-03 2024-10-11 02:23:35.000 1993-08-03 2024-10-11 02:23:35 +8616 8616 8617 861.6 1723.2 8616 1993-08-04 2024-10-11 02:23:36.000 1993-08-04 2024-10-11 02:23:36 +8617 8617 8618 861.7 1723.4 8617 1993-08-05 2024-10-11 02:23:37.000 1993-08-05 2024-10-11 02:23:37 +8618 8618 8619 861.8 1723.6000000000001 8618 1993-08-06 2024-10-11 02:23:38.000 1993-08-06 2024-10-11 02:23:38 +8619 8619 8620 861.9 1723.8000000000002 8619 1993-08-07 2024-10-11 02:23:39.000 1993-08-07 2024-10-11 02:23:39 +8620 8620 8621 862 1724 8620 1993-08-08 2024-10-11 02:23:40.000 1993-08-08 2024-10-11 02:23:40 +8621 8621 8622 862.1 1724.2 8621 1993-08-09 2024-10-11 02:23:41.000 1993-08-09 2024-10-11 02:23:41 +8622 8622 8623 862.2 1724.4 8622 1993-08-10 2024-10-11 02:23:42.000 1993-08-10 2024-10-11 02:23:42 +8623 8623 8624 862.3 1724.6000000000001 8623 1993-08-11 2024-10-11 02:23:43.000 1993-08-11 2024-10-11 02:23:43 +8624 8624 8625 862.4 1724.8000000000002 8624 1993-08-12 2024-10-11 02:23:44.000 1993-08-12 2024-10-11 02:23:44 +8625 8625 8626 862.5 1725 8625 1993-08-13 2024-10-11 02:23:45.000 1993-08-13 2024-10-11 02:23:45 +8626 8626 8627 862.6 1725.2 8626 1993-08-14 2024-10-11 02:23:46.000 1993-08-14 2024-10-11 02:23:46 +8627 8627 8628 862.7 1725.4 8627 1993-08-15 2024-10-11 02:23:47.000 1993-08-15 2024-10-11 02:23:47 +8628 8628 8629 862.8 1725.6000000000001 8628 1993-08-16 2024-10-11 02:23:48.000 1993-08-16 2024-10-11 02:23:48 +8629 8629 8630 862.9 1725.8000000000002 8629 1993-08-17 2024-10-11 02:23:49.000 1993-08-17 2024-10-11 02:23:49 +8630 8630 8631 863 1726 8630 1993-08-18 2024-10-11 02:23:50.000 1993-08-18 2024-10-11 02:23:50 +8631 8631 8632 863.1 1726.2 8631 1993-08-19 2024-10-11 02:23:51.000 1993-08-19 2024-10-11 02:23:51 +8632 8632 8633 863.2 1726.4 8632 1993-08-20 2024-10-11 02:23:52.000 1993-08-20 2024-10-11 02:23:52 +8633 8633 8634 863.3 1726.6000000000001 8633 1993-08-21 2024-10-11 02:23:53.000 1993-08-21 2024-10-11 02:23:53 +8634 8634 8635 863.4 1726.8000000000002 8634 1993-08-22 2024-10-11 02:23:54.000 1993-08-22 2024-10-11 02:23:54 +8635 8635 8636 863.5 1727 8635 1993-08-23 2024-10-11 02:23:55.000 1993-08-23 2024-10-11 02:23:55 +8636 8636 8637 863.6 1727.2 8636 1993-08-24 2024-10-11 02:23:56.000 1993-08-24 2024-10-11 02:23:56 +8637 8637 8638 863.7 1727.4 8637 1993-08-25 2024-10-11 02:23:57.000 1993-08-25 2024-10-11 02:23:57 +8638 8638 8639 863.8 1727.6000000000001 8638 1993-08-26 2024-10-11 02:23:58.000 1993-08-26 2024-10-11 02:23:58 +8639 8639 8640 863.9 1727.8000000000002 8639 1993-08-27 2024-10-11 02:23:59.000 1993-08-27 2024-10-11 02:23:59 +8640 8640 8641 864 1728 8640 1993-08-28 2024-10-11 02:24:00.000 1993-08-28 2024-10-11 02:24:00 +8641 8641 8642 864.1 1728.2 8641 1993-08-29 2024-10-11 02:24:01.000 1993-08-29 2024-10-11 02:24:01 +8642 8642 8643 864.2 1728.4 8642 1993-08-30 2024-10-11 02:24:02.000 1993-08-30 2024-10-11 02:24:02 +8643 8643 8644 864.3 1728.6000000000001 8643 1993-08-31 2024-10-11 02:24:03.000 1993-08-31 2024-10-11 02:24:03 +8644 8644 8645 864.4 1728.8000000000002 8644 1993-09-01 2024-10-11 02:24:04.000 1993-09-01 2024-10-11 02:24:04 +8645 8645 8646 864.5 1729 8645 1993-09-02 2024-10-11 02:24:05.000 1993-09-02 2024-10-11 02:24:05 +8646 8646 8647 864.6 1729.2 8646 1993-09-03 2024-10-11 02:24:06.000 1993-09-03 2024-10-11 02:24:06 +8647 8647 8648 864.7 1729.4 8647 1993-09-04 2024-10-11 02:24:07.000 1993-09-04 2024-10-11 02:24:07 +8648 8648 8649 864.8 1729.6000000000001 8648 1993-09-05 2024-10-11 02:24:08.000 1993-09-05 2024-10-11 02:24:08 +8649 8649 8650 864.9 1729.8000000000002 8649 1993-09-06 2024-10-11 02:24:09.000 1993-09-06 2024-10-11 02:24:09 +8650 8650 8651 865 1730 8650 1993-09-07 2024-10-11 02:24:10.000 1993-09-07 2024-10-11 02:24:10 +8651 8651 8652 865.1 1730.2 8651 1993-09-08 2024-10-11 02:24:11.000 1993-09-08 2024-10-11 02:24:11 +8652 8652 8653 865.2 1730.4 8652 1993-09-09 2024-10-11 02:24:12.000 1993-09-09 2024-10-11 02:24:12 +8653 8653 8654 865.3 1730.6000000000001 8653 1993-09-10 2024-10-11 02:24:13.000 1993-09-10 2024-10-11 02:24:13 +8654 8654 8655 865.4 1730.8000000000002 8654 1993-09-11 2024-10-11 02:24:14.000 1993-09-11 2024-10-11 02:24:14 +8655 8655 8656 865.5 1731 8655 1993-09-12 2024-10-11 02:24:15.000 1993-09-12 2024-10-11 02:24:15 +8656 8656 8657 865.6 1731.2 8656 1993-09-13 2024-10-11 02:24:16.000 1993-09-13 2024-10-11 02:24:16 +8657 8657 8658 865.7 1731.4 8657 1993-09-14 2024-10-11 02:24:17.000 1993-09-14 2024-10-11 02:24:17 +8658 8658 8659 865.8 1731.6000000000001 8658 1993-09-15 2024-10-11 02:24:18.000 1993-09-15 2024-10-11 02:24:18 +8659 8659 8660 865.9 1731.8000000000002 8659 1993-09-16 2024-10-11 02:24:19.000 1993-09-16 2024-10-11 02:24:19 +8660 8660 8661 866 1732 8660 1993-09-17 2024-10-11 02:24:20.000 1993-09-17 2024-10-11 02:24:20 +8661 8661 8662 866.1 1732.2 8661 1993-09-18 2024-10-11 02:24:21.000 1993-09-18 2024-10-11 02:24:21 +8662 8662 8663 866.2 1732.4 8662 1993-09-19 2024-10-11 02:24:22.000 1993-09-19 2024-10-11 02:24:22 +8663 8663 8664 866.3 1732.6000000000001 8663 1993-09-20 2024-10-11 02:24:23.000 1993-09-20 2024-10-11 02:24:23 +8664 8664 8665 866.4 1732.8000000000002 8664 1993-09-21 2024-10-11 02:24:24.000 1993-09-21 2024-10-11 02:24:24 +8665 8665 8666 866.5 1733 8665 1993-09-22 2024-10-11 02:24:25.000 1993-09-22 2024-10-11 02:24:25 +8666 8666 8667 866.6 1733.2 8666 1993-09-23 2024-10-11 02:24:26.000 1993-09-23 2024-10-11 02:24:26 +8667 8667 8668 866.7 1733.4 8667 1993-09-24 2024-10-11 02:24:27.000 1993-09-24 2024-10-11 02:24:27 +8668 8668 8669 866.8 1733.6000000000001 8668 1993-09-25 2024-10-11 02:24:28.000 1993-09-25 2024-10-11 02:24:28 +8669 8669 8670 866.9 1733.8000000000002 8669 1993-09-26 2024-10-11 02:24:29.000 1993-09-26 2024-10-11 02:24:29 +8670 8670 8671 867 1734 8670 1993-09-27 2024-10-11 02:24:30.000 1993-09-27 2024-10-11 02:24:30 +8671 8671 8672 867.1 1734.2 8671 1993-09-28 2024-10-11 02:24:31.000 1993-09-28 2024-10-11 02:24:31 +8672 8672 8673 867.2 1734.4 8672 1993-09-29 2024-10-11 02:24:32.000 1993-09-29 2024-10-11 02:24:32 +8673 8673 8674 867.3 1734.6000000000001 8673 1993-09-30 2024-10-11 02:24:33.000 1993-09-30 2024-10-11 02:24:33 +8674 8674 8675 867.4 1734.8000000000002 8674 1993-10-01 2024-10-11 02:24:34.000 1993-10-01 2024-10-11 02:24:34 +8675 8675 8676 867.5 1735 8675 1993-10-02 2024-10-11 02:24:35.000 1993-10-02 2024-10-11 02:24:35 +8676 8676 8677 867.6 1735.2 8676 1993-10-03 2024-10-11 02:24:36.000 1993-10-03 2024-10-11 02:24:36 +8677 8677 8678 867.7 1735.4 8677 1993-10-04 2024-10-11 02:24:37.000 1993-10-04 2024-10-11 02:24:37 +8678 8678 8679 867.8 1735.6000000000001 8678 1993-10-05 2024-10-11 02:24:38.000 1993-10-05 2024-10-11 02:24:38 +8679 8679 8680 867.9 1735.8000000000002 8679 1993-10-06 2024-10-11 02:24:39.000 1993-10-06 2024-10-11 02:24:39 +8680 8680 8681 868 1736 8680 1993-10-07 2024-10-11 02:24:40.000 1993-10-07 2024-10-11 02:24:40 +8681 8681 8682 868.1 1736.2 8681 1993-10-08 2024-10-11 02:24:41.000 1993-10-08 2024-10-11 02:24:41 +8682 8682 8683 868.2 1736.4 8682 1993-10-09 2024-10-11 02:24:42.000 1993-10-09 2024-10-11 02:24:42 +8683 8683 8684 868.3 1736.6000000000001 8683 1993-10-10 2024-10-11 02:24:43.000 1993-10-10 2024-10-11 02:24:43 +8684 8684 8685 868.4 1736.8000000000002 8684 1993-10-11 2024-10-11 02:24:44.000 1993-10-11 2024-10-11 02:24:44 +8685 8685 8686 868.5 1737 8685 1993-10-12 2024-10-11 02:24:45.000 1993-10-12 2024-10-11 02:24:45 +8686 8686 8687 868.6 1737.2 8686 1993-10-13 2024-10-11 02:24:46.000 1993-10-13 2024-10-11 02:24:46 +8687 8687 8688 868.7 1737.4 8687 1993-10-14 2024-10-11 02:24:47.000 1993-10-14 2024-10-11 02:24:47 +8688 8688 8689 868.8 1737.6000000000001 8688 1993-10-15 2024-10-11 02:24:48.000 1993-10-15 2024-10-11 02:24:48 +8689 8689 8690 868.9 1737.8000000000002 8689 1993-10-16 2024-10-11 02:24:49.000 1993-10-16 2024-10-11 02:24:49 +8690 8690 8691 869 1738 8690 1993-10-17 2024-10-11 02:24:50.000 1993-10-17 2024-10-11 02:24:50 +8691 8691 8692 869.1 1738.2 8691 1993-10-18 2024-10-11 02:24:51.000 1993-10-18 2024-10-11 02:24:51 +8692 8692 8693 869.2 1738.4 8692 1993-10-19 2024-10-11 02:24:52.000 1993-10-19 2024-10-11 02:24:52 +8693 8693 8694 869.3 1738.6000000000001 8693 1993-10-20 2024-10-11 02:24:53.000 1993-10-20 2024-10-11 02:24:53 +8694 8694 8695 869.4 1738.8000000000002 8694 1993-10-21 2024-10-11 02:24:54.000 1993-10-21 2024-10-11 02:24:54 +8695 8695 8696 869.5 1739 8695 1993-10-22 2024-10-11 02:24:55.000 1993-10-22 2024-10-11 02:24:55 +8696 8696 8697 869.6 1739.2 8696 1993-10-23 2024-10-11 02:24:56.000 1993-10-23 2024-10-11 02:24:56 +8697 8697 8698 869.7 1739.4 8697 1993-10-24 2024-10-11 02:24:57.000 1993-10-24 2024-10-11 02:24:57 +8698 8698 8699 869.8 1739.6000000000001 8698 1993-10-25 2024-10-11 02:24:58.000 1993-10-25 2024-10-11 02:24:58 +8699 8699 8700 869.9 1739.8000000000002 8699 1993-10-26 2024-10-11 02:24:59.000 1993-10-26 2024-10-11 02:24:59 +8700 8700 8701 870 1740 8700 1993-10-27 2024-10-11 02:25:00.000 1993-10-27 2024-10-11 02:25:00 +8701 8701 8702 870.1 1740.2 8701 1993-10-28 2024-10-11 02:25:01.000 1993-10-28 2024-10-11 02:25:01 +8702 8702 8703 870.2 1740.4 8702 1993-10-29 2024-10-11 02:25:02.000 1993-10-29 2024-10-11 02:25:02 +8703 8703 8704 870.3 1740.6000000000001 8703 1993-10-30 2024-10-11 02:25:03.000 1993-10-30 2024-10-11 02:25:03 +8704 8704 8705 870.4 1740.8000000000002 8704 1993-10-31 2024-10-11 02:25:04.000 1993-10-31 2024-10-11 02:25:04 +8705 8705 8706 870.5 1741 8705 1993-11-01 2024-10-11 02:25:05.000 1993-11-01 2024-10-11 02:25:05 +8706 8706 8707 870.6 1741.2 8706 1993-11-02 2024-10-11 02:25:06.000 1993-11-02 2024-10-11 02:25:06 +8707 8707 8708 870.7 1741.4 8707 1993-11-03 2024-10-11 02:25:07.000 1993-11-03 2024-10-11 02:25:07 +8708 8708 8709 870.8 1741.6000000000001 8708 1993-11-04 2024-10-11 02:25:08.000 1993-11-04 2024-10-11 02:25:08 +8709 8709 8710 870.9 1741.8000000000002 8709 1993-11-05 2024-10-11 02:25:09.000 1993-11-05 2024-10-11 02:25:09 +8710 8710 8711 871 1742 8710 1993-11-06 2024-10-11 02:25:10.000 1993-11-06 2024-10-11 02:25:10 +8711 8711 8712 871.1 1742.2 8711 1993-11-07 2024-10-11 02:25:11.000 1993-11-07 2024-10-11 02:25:11 +8712 8712 8713 871.2 1742.4 8712 1993-11-08 2024-10-11 02:25:12.000 1993-11-08 2024-10-11 02:25:12 +8713 8713 8714 871.3 1742.6000000000001 8713 1993-11-09 2024-10-11 02:25:13.000 1993-11-09 2024-10-11 02:25:13 +8714 8714 8715 871.4 1742.8000000000002 8714 1993-11-10 2024-10-11 02:25:14.000 1993-11-10 2024-10-11 02:25:14 +8715 8715 8716 871.5 1743 8715 1993-11-11 2024-10-11 02:25:15.000 1993-11-11 2024-10-11 02:25:15 +8716 8716 8717 871.6 1743.2 8716 1993-11-12 2024-10-11 02:25:16.000 1993-11-12 2024-10-11 02:25:16 +8717 8717 8718 871.7 1743.4 8717 1993-11-13 2024-10-11 02:25:17.000 1993-11-13 2024-10-11 02:25:17 +8718 8718 8719 871.8 1743.6000000000001 8718 1993-11-14 2024-10-11 02:25:18.000 1993-11-14 2024-10-11 02:25:18 +8719 8719 8720 871.9 1743.8000000000002 8719 1993-11-15 2024-10-11 02:25:19.000 1993-11-15 2024-10-11 02:25:19 +8720 8720 8721 872 1744 8720 1993-11-16 2024-10-11 02:25:20.000 1993-11-16 2024-10-11 02:25:20 +8721 8721 8722 872.1 1744.2 8721 1993-11-17 2024-10-11 02:25:21.000 1993-11-17 2024-10-11 02:25:21 +8722 8722 8723 872.2 1744.4 8722 1993-11-18 2024-10-11 02:25:22.000 1993-11-18 2024-10-11 02:25:22 +8723 8723 8724 872.3 1744.6000000000001 8723 1993-11-19 2024-10-11 02:25:23.000 1993-11-19 2024-10-11 02:25:23 +8724 8724 8725 872.4 1744.8000000000002 8724 1993-11-20 2024-10-11 02:25:24.000 1993-11-20 2024-10-11 02:25:24 +8725 8725 8726 872.5 1745 8725 1993-11-21 2024-10-11 02:25:25.000 1993-11-21 2024-10-11 02:25:25 +8726 8726 8727 872.6 1745.2 8726 1993-11-22 2024-10-11 02:25:26.000 1993-11-22 2024-10-11 02:25:26 +8727 8727 8728 872.7 1745.4 8727 1993-11-23 2024-10-11 02:25:27.000 1993-11-23 2024-10-11 02:25:27 +8728 8728 8729 872.8 1745.6000000000001 8728 1993-11-24 2024-10-11 02:25:28.000 1993-11-24 2024-10-11 02:25:28 +8729 8729 8730 872.9 1745.8000000000002 8729 1993-11-25 2024-10-11 02:25:29.000 1993-11-25 2024-10-11 02:25:29 +8730 8730 8731 873 1746 8730 1993-11-26 2024-10-11 02:25:30.000 1993-11-26 2024-10-11 02:25:30 +8731 8731 8732 873.1 1746.2 8731 1993-11-27 2024-10-11 02:25:31.000 1993-11-27 2024-10-11 02:25:31 +8732 8732 8733 873.2 1746.4 8732 1993-11-28 2024-10-11 02:25:32.000 1993-11-28 2024-10-11 02:25:32 +8733 8733 8734 873.3 1746.6000000000001 8733 1993-11-29 2024-10-11 02:25:33.000 1993-11-29 2024-10-11 02:25:33 +8734 8734 8735 873.4 1746.8000000000002 8734 1993-11-30 2024-10-11 02:25:34.000 1993-11-30 2024-10-11 02:25:34 +8735 8735 8736 873.5 1747 8735 1993-12-01 2024-10-11 02:25:35.000 1993-12-01 2024-10-11 02:25:35 +8736 8736 8737 873.6 1747.2 8736 1993-12-02 2024-10-11 02:25:36.000 1993-12-02 2024-10-11 02:25:36 +8737 8737 8738 873.7 1747.4 8737 1993-12-03 2024-10-11 02:25:37.000 1993-12-03 2024-10-11 02:25:37 +8738 8738 8739 873.8 1747.6000000000001 8738 1993-12-04 2024-10-11 02:25:38.000 1993-12-04 2024-10-11 02:25:38 +8739 8739 8740 873.9 1747.8000000000002 8739 1993-12-05 2024-10-11 02:25:39.000 1993-12-05 2024-10-11 02:25:39 +8740 8740 8741 874 1748 8740 1993-12-06 2024-10-11 02:25:40.000 1993-12-06 2024-10-11 02:25:40 +8741 8741 8742 874.1 1748.2 8741 1993-12-07 2024-10-11 02:25:41.000 1993-12-07 2024-10-11 02:25:41 +8742 8742 8743 874.2 1748.4 8742 1993-12-08 2024-10-11 02:25:42.000 1993-12-08 2024-10-11 02:25:42 +8743 8743 8744 874.3 1748.6000000000001 8743 1993-12-09 2024-10-11 02:25:43.000 1993-12-09 2024-10-11 02:25:43 +8744 8744 8745 874.4 1748.8000000000002 8744 1993-12-10 2024-10-11 02:25:44.000 1993-12-10 2024-10-11 02:25:44 +8745 8745 8746 874.5 1749 8745 1993-12-11 2024-10-11 02:25:45.000 1993-12-11 2024-10-11 02:25:45 +8746 8746 8747 874.6 1749.2 8746 1993-12-12 2024-10-11 02:25:46.000 1993-12-12 2024-10-11 02:25:46 +8747 8747 8748 874.7 1749.4 8747 1993-12-13 2024-10-11 02:25:47.000 1993-12-13 2024-10-11 02:25:47 +8748 8748 8749 874.8 1749.6000000000001 8748 1993-12-14 2024-10-11 02:25:48.000 1993-12-14 2024-10-11 02:25:48 +8749 8749 8750 874.9 1749.8000000000002 8749 1993-12-15 2024-10-11 02:25:49.000 1993-12-15 2024-10-11 02:25:49 +8750 8750 8751 875 1750 8750 1993-12-16 2024-10-11 02:25:50.000 1993-12-16 2024-10-11 02:25:50 +8751 8751 8752 875.1 1750.2 8751 1993-12-17 2024-10-11 02:25:51.000 1993-12-17 2024-10-11 02:25:51 +8752 8752 8753 875.2 1750.4 8752 1993-12-18 2024-10-11 02:25:52.000 1993-12-18 2024-10-11 02:25:52 +8753 8753 8754 875.3 1750.6000000000001 8753 1993-12-19 2024-10-11 02:25:53.000 1993-12-19 2024-10-11 02:25:53 +8754 8754 8755 875.4 1750.8000000000002 8754 1993-12-20 2024-10-11 02:25:54.000 1993-12-20 2024-10-11 02:25:54 +8755 8755 8756 875.5 1751 8755 1993-12-21 2024-10-11 02:25:55.000 1993-12-21 2024-10-11 02:25:55 +8756 8756 8757 875.6 1751.2 8756 1993-12-22 2024-10-11 02:25:56.000 1993-12-22 2024-10-11 02:25:56 +8757 8757 8758 875.7 1751.4 8757 1993-12-23 2024-10-11 02:25:57.000 1993-12-23 2024-10-11 02:25:57 +8758 8758 8759 875.8 1751.6000000000001 8758 1993-12-24 2024-10-11 02:25:58.000 1993-12-24 2024-10-11 02:25:58 +8759 8759 8760 875.9 1751.8000000000002 8759 1993-12-25 2024-10-11 02:25:59.000 1993-12-25 2024-10-11 02:25:59 +8760 8760 8761 876 1752 8760 1993-12-26 2024-10-11 02:26:00.000 1993-12-26 2024-10-11 02:26:00 +8761 8761 8762 876.1 1752.2 8761 1993-12-27 2024-10-11 02:26:01.000 1993-12-27 2024-10-11 02:26:01 +8762 8762 8763 876.2 1752.4 8762 1993-12-28 2024-10-11 02:26:02.000 1993-12-28 2024-10-11 02:26:02 +8763 8763 8764 876.3 1752.6000000000001 8763 1993-12-29 2024-10-11 02:26:03.000 1993-12-29 2024-10-11 02:26:03 +8764 8764 8765 876.4 1752.8000000000002 8764 1993-12-30 2024-10-11 02:26:04.000 1993-12-30 2024-10-11 02:26:04 +8765 8765 8766 876.5 1753 8765 1993-12-31 2024-10-11 02:26:05.000 1993-12-31 2024-10-11 02:26:05 +8766 8766 8767 876.6 1753.2 8766 1994-01-01 2024-10-11 02:26:06.000 1994-01-01 2024-10-11 02:26:06 +8767 8767 8768 876.7 1753.4 8767 1994-01-02 2024-10-11 02:26:07.000 1994-01-02 2024-10-11 02:26:07 +8768 8768 8769 876.8 1753.6000000000001 8768 1994-01-03 2024-10-11 02:26:08.000 1994-01-03 2024-10-11 02:26:08 +8769 8769 8770 876.9 1753.8000000000002 8769 1994-01-04 2024-10-11 02:26:09.000 1994-01-04 2024-10-11 02:26:09 +8770 8770 8771 877 1754 8770 1994-01-05 2024-10-11 02:26:10.000 1994-01-05 2024-10-11 02:26:10 +8771 8771 8772 877.1 1754.2 8771 1994-01-06 2024-10-11 02:26:11.000 1994-01-06 2024-10-11 02:26:11 +8772 8772 8773 877.2 1754.4 8772 1994-01-07 2024-10-11 02:26:12.000 1994-01-07 2024-10-11 02:26:12 +8773 8773 8774 877.3 1754.6000000000001 8773 1994-01-08 2024-10-11 02:26:13.000 1994-01-08 2024-10-11 02:26:13 +8774 8774 8775 877.4 1754.8000000000002 8774 1994-01-09 2024-10-11 02:26:14.000 1994-01-09 2024-10-11 02:26:14 +8775 8775 8776 877.5 1755 8775 1994-01-10 2024-10-11 02:26:15.000 1994-01-10 2024-10-11 02:26:15 +8776 8776 8777 877.6 1755.2 8776 1994-01-11 2024-10-11 02:26:16.000 1994-01-11 2024-10-11 02:26:16 +8777 8777 8778 877.7 1755.4 8777 1994-01-12 2024-10-11 02:26:17.000 1994-01-12 2024-10-11 02:26:17 +8778 8778 8779 877.8 1755.6000000000001 8778 1994-01-13 2024-10-11 02:26:18.000 1994-01-13 2024-10-11 02:26:18 +8779 8779 8780 877.9 1755.8000000000002 8779 1994-01-14 2024-10-11 02:26:19.000 1994-01-14 2024-10-11 02:26:19 +8780 8780 8781 878 1756 8780 1994-01-15 2024-10-11 02:26:20.000 1994-01-15 2024-10-11 02:26:20 +8781 8781 8782 878.1 1756.2 8781 1994-01-16 2024-10-11 02:26:21.000 1994-01-16 2024-10-11 02:26:21 +8782 8782 8783 878.2 1756.4 8782 1994-01-17 2024-10-11 02:26:22.000 1994-01-17 2024-10-11 02:26:22 +8783 8783 8784 878.3 1756.6000000000001 8783 1994-01-18 2024-10-11 02:26:23.000 1994-01-18 2024-10-11 02:26:23 +8784 8784 8785 878.4 1756.8000000000002 8784 1994-01-19 2024-10-11 02:26:24.000 1994-01-19 2024-10-11 02:26:24 +8785 8785 8786 878.5 1757 8785 1994-01-20 2024-10-11 02:26:25.000 1994-01-20 2024-10-11 02:26:25 +8786 8786 8787 878.6 1757.2 8786 1994-01-21 2024-10-11 02:26:26.000 1994-01-21 2024-10-11 02:26:26 +8787 8787 8788 878.7 1757.4 8787 1994-01-22 2024-10-11 02:26:27.000 1994-01-22 2024-10-11 02:26:27 +8788 8788 8789 878.8 1757.6000000000001 8788 1994-01-23 2024-10-11 02:26:28.000 1994-01-23 2024-10-11 02:26:28 +8789 8789 8790 878.9 1757.8000000000002 8789 1994-01-24 2024-10-11 02:26:29.000 1994-01-24 2024-10-11 02:26:29 +8790 8790 8791 879 1758 8790 1994-01-25 2024-10-11 02:26:30.000 1994-01-25 2024-10-11 02:26:30 +8791 8791 8792 879.1 1758.2 8791 1994-01-26 2024-10-11 02:26:31.000 1994-01-26 2024-10-11 02:26:31 +8792 8792 8793 879.2 1758.4 8792 1994-01-27 2024-10-11 02:26:32.000 1994-01-27 2024-10-11 02:26:32 +8793 8793 8794 879.3 1758.6000000000001 8793 1994-01-28 2024-10-11 02:26:33.000 1994-01-28 2024-10-11 02:26:33 +8794 8794 8795 879.4 1758.8000000000002 8794 1994-01-29 2024-10-11 02:26:34.000 1994-01-29 2024-10-11 02:26:34 +8795 8795 8796 879.5 1759 8795 1994-01-30 2024-10-11 02:26:35.000 1994-01-30 2024-10-11 02:26:35 +8796 8796 8797 879.6 1759.2 8796 1994-01-31 2024-10-11 02:26:36.000 1994-01-31 2024-10-11 02:26:36 +8797 8797 8798 879.7 1759.4 8797 1994-02-01 2024-10-11 02:26:37.000 1994-02-01 2024-10-11 02:26:37 +8798 8798 8799 879.8 1759.6000000000001 8798 1994-02-02 2024-10-11 02:26:38.000 1994-02-02 2024-10-11 02:26:38 +8799 8799 8800 879.9 1759.8000000000002 8799 1994-02-03 2024-10-11 02:26:39.000 1994-02-03 2024-10-11 02:26:39 +8800 8800 8801 880 1760 8800 1994-02-04 2024-10-11 02:26:40.000 1994-02-04 2024-10-11 02:26:40 +8801 8801 8802 880.1 1760.2 8801 1994-02-05 2024-10-11 02:26:41.000 1994-02-05 2024-10-11 02:26:41 +8802 8802 8803 880.2 1760.4 8802 1994-02-06 2024-10-11 02:26:42.000 1994-02-06 2024-10-11 02:26:42 +8803 8803 8804 880.3 1760.6000000000001 8803 1994-02-07 2024-10-11 02:26:43.000 1994-02-07 2024-10-11 02:26:43 +8804 8804 8805 880.4 1760.8000000000002 8804 1994-02-08 2024-10-11 02:26:44.000 1994-02-08 2024-10-11 02:26:44 +8805 8805 8806 880.5 1761 8805 1994-02-09 2024-10-11 02:26:45.000 1994-02-09 2024-10-11 02:26:45 +8806 8806 8807 880.6 1761.2 8806 1994-02-10 2024-10-11 02:26:46.000 1994-02-10 2024-10-11 02:26:46 +8807 8807 8808 880.7 1761.4 8807 1994-02-11 2024-10-11 02:26:47.000 1994-02-11 2024-10-11 02:26:47 +8808 8808 8809 880.8 1761.6000000000001 8808 1994-02-12 2024-10-11 02:26:48.000 1994-02-12 2024-10-11 02:26:48 +8809 8809 8810 880.9 1761.8000000000002 8809 1994-02-13 2024-10-11 02:26:49.000 1994-02-13 2024-10-11 02:26:49 +8810 8810 8811 881 1762 8810 1994-02-14 2024-10-11 02:26:50.000 1994-02-14 2024-10-11 02:26:50 +8811 8811 8812 881.1 1762.2 8811 1994-02-15 2024-10-11 02:26:51.000 1994-02-15 2024-10-11 02:26:51 +8812 8812 8813 881.2 1762.4 8812 1994-02-16 2024-10-11 02:26:52.000 1994-02-16 2024-10-11 02:26:52 +8813 8813 8814 881.3 1762.6000000000001 8813 1994-02-17 2024-10-11 02:26:53.000 1994-02-17 2024-10-11 02:26:53 +8814 8814 8815 881.4 1762.8000000000002 8814 1994-02-18 2024-10-11 02:26:54.000 1994-02-18 2024-10-11 02:26:54 +8815 8815 8816 881.5 1763 8815 1994-02-19 2024-10-11 02:26:55.000 1994-02-19 2024-10-11 02:26:55 +8816 8816 8817 881.6 1763.2 8816 1994-02-20 2024-10-11 02:26:56.000 1994-02-20 2024-10-11 02:26:56 +8817 8817 8818 881.7 1763.4 8817 1994-02-21 2024-10-11 02:26:57.000 1994-02-21 2024-10-11 02:26:57 +8818 8818 8819 881.8 1763.6000000000001 8818 1994-02-22 2024-10-11 02:26:58.000 1994-02-22 2024-10-11 02:26:58 +8819 8819 8820 881.9 1763.8000000000002 8819 1994-02-23 2024-10-11 02:26:59.000 1994-02-23 2024-10-11 02:26:59 +8820 8820 8821 882 1764 8820 1994-02-24 2024-10-11 02:27:00.000 1994-02-24 2024-10-11 02:27:00 +8821 8821 8822 882.1 1764.2 8821 1994-02-25 2024-10-11 02:27:01.000 1994-02-25 2024-10-11 02:27:01 +8822 8822 8823 882.2 1764.4 8822 1994-02-26 2024-10-11 02:27:02.000 1994-02-26 2024-10-11 02:27:02 +8823 8823 8824 882.3 1764.6000000000001 8823 1994-02-27 2024-10-11 02:27:03.000 1994-02-27 2024-10-11 02:27:03 +8824 8824 8825 882.4 1764.8000000000002 8824 1994-02-28 2024-10-11 02:27:04.000 1994-02-28 2024-10-11 02:27:04 +8825 8825 8826 882.5 1765 8825 1994-03-01 2024-10-11 02:27:05.000 1994-03-01 2024-10-11 02:27:05 +8826 8826 8827 882.6 1765.2 8826 1994-03-02 2024-10-11 02:27:06.000 1994-03-02 2024-10-11 02:27:06 +8827 8827 8828 882.7 1765.4 8827 1994-03-03 2024-10-11 02:27:07.000 1994-03-03 2024-10-11 02:27:07 +8828 8828 8829 882.8 1765.6000000000001 8828 1994-03-04 2024-10-11 02:27:08.000 1994-03-04 2024-10-11 02:27:08 +8829 8829 8830 882.9 1765.8000000000002 8829 1994-03-05 2024-10-11 02:27:09.000 1994-03-05 2024-10-11 02:27:09 +8830 8830 8831 883 1766 8830 1994-03-06 2024-10-11 02:27:10.000 1994-03-06 2024-10-11 02:27:10 +8831 8831 8832 883.1 1766.2 8831 1994-03-07 2024-10-11 02:27:11.000 1994-03-07 2024-10-11 02:27:11 +8832 8832 8833 883.2 1766.4 8832 1994-03-08 2024-10-11 02:27:12.000 1994-03-08 2024-10-11 02:27:12 +8833 8833 8834 883.3 1766.6000000000001 8833 1994-03-09 2024-10-11 02:27:13.000 1994-03-09 2024-10-11 02:27:13 +8834 8834 8835 883.4 1766.8000000000002 8834 1994-03-10 2024-10-11 02:27:14.000 1994-03-10 2024-10-11 02:27:14 +8835 8835 8836 883.5 1767 8835 1994-03-11 2024-10-11 02:27:15.000 1994-03-11 2024-10-11 02:27:15 +8836 8836 8837 883.6 1767.2 8836 1994-03-12 2024-10-11 02:27:16.000 1994-03-12 2024-10-11 02:27:16 +8837 8837 8838 883.7 1767.4 8837 1994-03-13 2024-10-11 02:27:17.000 1994-03-13 2024-10-11 02:27:17 +8838 8838 8839 883.8 1767.6000000000001 8838 1994-03-14 2024-10-11 02:27:18.000 1994-03-14 2024-10-11 02:27:18 +8839 8839 8840 883.9 1767.8000000000002 8839 1994-03-15 2024-10-11 02:27:19.000 1994-03-15 2024-10-11 02:27:19 +8840 8840 8841 884 1768 8840 1994-03-16 2024-10-11 02:27:20.000 1994-03-16 2024-10-11 02:27:20 +8841 8841 8842 884.1 1768.2 8841 1994-03-17 2024-10-11 02:27:21.000 1994-03-17 2024-10-11 02:27:21 +8842 8842 8843 884.2 1768.4 8842 1994-03-18 2024-10-11 02:27:22.000 1994-03-18 2024-10-11 02:27:22 +8843 8843 8844 884.3 1768.6000000000001 8843 1994-03-19 2024-10-11 02:27:23.000 1994-03-19 2024-10-11 02:27:23 +8844 8844 8845 884.4 1768.8000000000002 8844 1994-03-20 2024-10-11 02:27:24.000 1994-03-20 2024-10-11 02:27:24 +8845 8845 8846 884.5 1769 8845 1994-03-21 2024-10-11 02:27:25.000 1994-03-21 2024-10-11 02:27:25 +8846 8846 8847 884.6 1769.2 8846 1994-03-22 2024-10-11 02:27:26.000 1994-03-22 2024-10-11 02:27:26 +8847 8847 8848 884.7 1769.4 8847 1994-03-23 2024-10-11 02:27:27.000 1994-03-23 2024-10-11 02:27:27 +8848 8848 8849 884.8 1769.6000000000001 8848 1994-03-24 2024-10-11 02:27:28.000 1994-03-24 2024-10-11 02:27:28 +8849 8849 8850 884.9 1769.8000000000002 8849 1994-03-25 2024-10-11 02:27:29.000 1994-03-25 2024-10-11 02:27:29 +8850 8850 8851 885 1770 8850 1994-03-26 2024-10-11 02:27:30.000 1994-03-26 2024-10-11 02:27:30 +8851 8851 8852 885.1 1770.2 8851 1994-03-27 2024-10-11 02:27:31.000 1994-03-27 2024-10-11 02:27:31 +8852 8852 8853 885.2 1770.4 8852 1994-03-28 2024-10-11 02:27:32.000 1994-03-28 2024-10-11 02:27:32 +8853 8853 8854 885.3 1770.6000000000001 8853 1994-03-29 2024-10-11 02:27:33.000 1994-03-29 2024-10-11 02:27:33 +8854 8854 8855 885.4 1770.8000000000002 8854 1994-03-30 2024-10-11 02:27:34.000 1994-03-30 2024-10-11 02:27:34 +8855 8855 8856 885.5 1771 8855 1994-03-31 2024-10-11 02:27:35.000 1994-03-31 2024-10-11 02:27:35 +8856 8856 8857 885.6 1771.2 8856 1994-04-01 2024-10-11 02:27:36.000 1994-04-01 2024-10-11 02:27:36 +8857 8857 8858 885.7 1771.4 8857 1994-04-02 2024-10-11 02:27:37.000 1994-04-02 2024-10-11 02:27:37 +8858 8858 8859 885.8 1771.6000000000001 8858 1994-04-03 2024-10-11 02:27:38.000 1994-04-03 2024-10-11 02:27:38 +8859 8859 8860 885.9 1771.8000000000002 8859 1994-04-04 2024-10-11 02:27:39.000 1994-04-04 2024-10-11 02:27:39 +8860 8860 8861 886 1772 8860 1994-04-05 2024-10-11 02:27:40.000 1994-04-05 2024-10-11 02:27:40 +8861 8861 8862 886.1 1772.2 8861 1994-04-06 2024-10-11 02:27:41.000 1994-04-06 2024-10-11 02:27:41 +8862 8862 8863 886.2 1772.4 8862 1994-04-07 2024-10-11 02:27:42.000 1994-04-07 2024-10-11 02:27:42 +8863 8863 8864 886.3 1772.6000000000001 8863 1994-04-08 2024-10-11 02:27:43.000 1994-04-08 2024-10-11 02:27:43 +8864 8864 8865 886.4 1772.8000000000002 8864 1994-04-09 2024-10-11 02:27:44.000 1994-04-09 2024-10-11 02:27:44 +8865 8865 8866 886.5 1773 8865 1994-04-10 2024-10-11 02:27:45.000 1994-04-10 2024-10-11 02:27:45 +8866 8866 8867 886.6 1773.2 8866 1994-04-11 2024-10-11 02:27:46.000 1994-04-11 2024-10-11 02:27:46 +8867 8867 8868 886.7 1773.4 8867 1994-04-12 2024-10-11 02:27:47.000 1994-04-12 2024-10-11 02:27:47 +8868 8868 8869 886.8 1773.6000000000001 8868 1994-04-13 2024-10-11 02:27:48.000 1994-04-13 2024-10-11 02:27:48 +8869 8869 8870 886.9 1773.8000000000002 8869 1994-04-14 2024-10-11 02:27:49.000 1994-04-14 2024-10-11 02:27:49 +8870 8870 8871 887 1774 8870 1994-04-15 2024-10-11 02:27:50.000 1994-04-15 2024-10-11 02:27:50 +8871 8871 8872 887.1 1774.2 8871 1994-04-16 2024-10-11 02:27:51.000 1994-04-16 2024-10-11 02:27:51 +8872 8872 8873 887.2 1774.4 8872 1994-04-17 2024-10-11 02:27:52.000 1994-04-17 2024-10-11 02:27:52 +8873 8873 8874 887.3 1774.6000000000001 8873 1994-04-18 2024-10-11 02:27:53.000 1994-04-18 2024-10-11 02:27:53 +8874 8874 8875 887.4 1774.8000000000002 8874 1994-04-19 2024-10-11 02:27:54.000 1994-04-19 2024-10-11 02:27:54 +8875 8875 8876 887.5 1775 8875 1994-04-20 2024-10-11 02:27:55.000 1994-04-20 2024-10-11 02:27:55 +8876 8876 8877 887.6 1775.2 8876 1994-04-21 2024-10-11 02:27:56.000 1994-04-21 2024-10-11 02:27:56 +8877 8877 8878 887.7 1775.4 8877 1994-04-22 2024-10-11 02:27:57.000 1994-04-22 2024-10-11 02:27:57 +8878 8878 8879 887.8 1775.6000000000001 8878 1994-04-23 2024-10-11 02:27:58.000 1994-04-23 2024-10-11 02:27:58 +8879 8879 8880 887.9 1775.8000000000002 8879 1994-04-24 2024-10-11 02:27:59.000 1994-04-24 2024-10-11 02:27:59 +8880 8880 8881 888 1776 8880 1994-04-25 2024-10-11 02:28:00.000 1994-04-25 2024-10-11 02:28:00 +8881 8881 8882 888.1 1776.2 8881 1994-04-26 2024-10-11 02:28:01.000 1994-04-26 2024-10-11 02:28:01 +8882 8882 8883 888.2 1776.4 8882 1994-04-27 2024-10-11 02:28:02.000 1994-04-27 2024-10-11 02:28:02 +8883 8883 8884 888.3 1776.6000000000001 8883 1994-04-28 2024-10-11 02:28:03.000 1994-04-28 2024-10-11 02:28:03 +8884 8884 8885 888.4 1776.8000000000002 8884 1994-04-29 2024-10-11 02:28:04.000 1994-04-29 2024-10-11 02:28:04 +8885 8885 8886 888.5 1777 8885 1994-04-30 2024-10-11 02:28:05.000 1994-04-30 2024-10-11 02:28:05 +8886 8886 8887 888.6 1777.2 8886 1994-05-01 2024-10-11 02:28:06.000 1994-05-01 2024-10-11 02:28:06 +8887 8887 8888 888.7 1777.4 8887 1994-05-02 2024-10-11 02:28:07.000 1994-05-02 2024-10-11 02:28:07 +8888 8888 8889 888.8 1777.6000000000001 8888 1994-05-03 2024-10-11 02:28:08.000 1994-05-03 2024-10-11 02:28:08 +8889 8889 8890 888.9 1777.8000000000002 8889 1994-05-04 2024-10-11 02:28:09.000 1994-05-04 2024-10-11 02:28:09 +8890 8890 8891 889 1778 8890 1994-05-05 2024-10-11 02:28:10.000 1994-05-05 2024-10-11 02:28:10 +8891 8891 8892 889.1 1778.2 8891 1994-05-06 2024-10-11 02:28:11.000 1994-05-06 2024-10-11 02:28:11 +8892 8892 8893 889.2 1778.4 8892 1994-05-07 2024-10-11 02:28:12.000 1994-05-07 2024-10-11 02:28:12 +8893 8893 8894 889.3 1778.6000000000001 8893 1994-05-08 2024-10-11 02:28:13.000 1994-05-08 2024-10-11 02:28:13 +8894 8894 8895 889.4 1778.8000000000002 8894 1994-05-09 2024-10-11 02:28:14.000 1994-05-09 2024-10-11 02:28:14 +8895 8895 8896 889.5 1779 8895 1994-05-10 2024-10-11 02:28:15.000 1994-05-10 2024-10-11 02:28:15 +8896 8896 8897 889.6 1779.2 8896 1994-05-11 2024-10-11 02:28:16.000 1994-05-11 2024-10-11 02:28:16 +8897 8897 8898 889.7 1779.4 8897 1994-05-12 2024-10-11 02:28:17.000 1994-05-12 2024-10-11 02:28:17 +8898 8898 8899 889.8 1779.6000000000001 8898 1994-05-13 2024-10-11 02:28:18.000 1994-05-13 2024-10-11 02:28:18 +8899 8899 8900 889.9 1779.8000000000002 8899 1994-05-14 2024-10-11 02:28:19.000 1994-05-14 2024-10-11 02:28:19 +8900 8900 8901 890 1780 8900 1994-05-15 2024-10-11 02:28:20.000 1994-05-15 2024-10-11 02:28:20 +8901 8901 8902 890.1 1780.2 8901 1994-05-16 2024-10-11 02:28:21.000 1994-05-16 2024-10-11 02:28:21 +8902 8902 8903 890.2 1780.4 8902 1994-05-17 2024-10-11 02:28:22.000 1994-05-17 2024-10-11 02:28:22 +8903 8903 8904 890.3 1780.6000000000001 8903 1994-05-18 2024-10-11 02:28:23.000 1994-05-18 2024-10-11 02:28:23 +8904 8904 8905 890.4 1780.8000000000002 8904 1994-05-19 2024-10-11 02:28:24.000 1994-05-19 2024-10-11 02:28:24 +8905 8905 8906 890.5 1781 8905 1994-05-20 2024-10-11 02:28:25.000 1994-05-20 2024-10-11 02:28:25 +8906 8906 8907 890.6 1781.2 8906 1994-05-21 2024-10-11 02:28:26.000 1994-05-21 2024-10-11 02:28:26 +8907 8907 8908 890.7 1781.4 8907 1994-05-22 2024-10-11 02:28:27.000 1994-05-22 2024-10-11 02:28:27 +8908 8908 8909 890.8 1781.6000000000001 8908 1994-05-23 2024-10-11 02:28:28.000 1994-05-23 2024-10-11 02:28:28 +8909 8909 8910 890.9 1781.8000000000002 8909 1994-05-24 2024-10-11 02:28:29.000 1994-05-24 2024-10-11 02:28:29 +8910 8910 8911 891 1782 8910 1994-05-25 2024-10-11 02:28:30.000 1994-05-25 2024-10-11 02:28:30 +8911 8911 8912 891.1 1782.2 8911 1994-05-26 2024-10-11 02:28:31.000 1994-05-26 2024-10-11 02:28:31 +8912 8912 8913 891.2 1782.4 8912 1994-05-27 2024-10-11 02:28:32.000 1994-05-27 2024-10-11 02:28:32 +8913 8913 8914 891.3 1782.6000000000001 8913 1994-05-28 2024-10-11 02:28:33.000 1994-05-28 2024-10-11 02:28:33 +8914 8914 8915 891.4 1782.8000000000002 8914 1994-05-29 2024-10-11 02:28:34.000 1994-05-29 2024-10-11 02:28:34 +8915 8915 8916 891.5 1783 8915 1994-05-30 2024-10-11 02:28:35.000 1994-05-30 2024-10-11 02:28:35 +8916 8916 8917 891.6 1783.2 8916 1994-05-31 2024-10-11 02:28:36.000 1994-05-31 2024-10-11 02:28:36 +8917 8917 8918 891.7 1783.4 8917 1994-06-01 2024-10-11 02:28:37.000 1994-06-01 2024-10-11 02:28:37 +8918 8918 8919 891.8 1783.6000000000001 8918 1994-06-02 2024-10-11 02:28:38.000 1994-06-02 2024-10-11 02:28:38 +8919 8919 8920 891.9 1783.8000000000002 8919 1994-06-03 2024-10-11 02:28:39.000 1994-06-03 2024-10-11 02:28:39 +8920 8920 8921 892 1784 8920 1994-06-04 2024-10-11 02:28:40.000 1994-06-04 2024-10-11 02:28:40 +8921 8921 8922 892.1 1784.2 8921 1994-06-05 2024-10-11 02:28:41.000 1994-06-05 2024-10-11 02:28:41 +8922 8922 8923 892.2 1784.4 8922 1994-06-06 2024-10-11 02:28:42.000 1994-06-06 2024-10-11 02:28:42 +8923 8923 8924 892.3 1784.6000000000001 8923 1994-06-07 2024-10-11 02:28:43.000 1994-06-07 2024-10-11 02:28:43 +8924 8924 8925 892.4 1784.8000000000002 8924 1994-06-08 2024-10-11 02:28:44.000 1994-06-08 2024-10-11 02:28:44 +8925 8925 8926 892.5 1785 8925 1994-06-09 2024-10-11 02:28:45.000 1994-06-09 2024-10-11 02:28:45 +8926 8926 8927 892.6 1785.2 8926 1994-06-10 2024-10-11 02:28:46.000 1994-06-10 2024-10-11 02:28:46 +8927 8927 8928 892.7 1785.4 8927 1994-06-11 2024-10-11 02:28:47.000 1994-06-11 2024-10-11 02:28:47 +8928 8928 8929 892.8 1785.6000000000001 8928 1994-06-12 2024-10-11 02:28:48.000 1994-06-12 2024-10-11 02:28:48 +8929 8929 8930 892.9 1785.8000000000002 8929 1994-06-13 2024-10-11 02:28:49.000 1994-06-13 2024-10-11 02:28:49 +8930 8930 8931 893 1786 8930 1994-06-14 2024-10-11 02:28:50.000 1994-06-14 2024-10-11 02:28:50 +8931 8931 8932 893.1 1786.2 8931 1994-06-15 2024-10-11 02:28:51.000 1994-06-15 2024-10-11 02:28:51 +8932 8932 8933 893.2 1786.4 8932 1994-06-16 2024-10-11 02:28:52.000 1994-06-16 2024-10-11 02:28:52 +8933 8933 8934 893.3 1786.6000000000001 8933 1994-06-17 2024-10-11 02:28:53.000 1994-06-17 2024-10-11 02:28:53 +8934 8934 8935 893.4 1786.8000000000002 8934 1994-06-18 2024-10-11 02:28:54.000 1994-06-18 2024-10-11 02:28:54 +8935 8935 8936 893.5 1787 8935 1994-06-19 2024-10-11 02:28:55.000 1994-06-19 2024-10-11 02:28:55 +8936 8936 8937 893.6 1787.2 8936 1994-06-20 2024-10-11 02:28:56.000 1994-06-20 2024-10-11 02:28:56 +8937 8937 8938 893.7 1787.4 8937 1994-06-21 2024-10-11 02:28:57.000 1994-06-21 2024-10-11 02:28:57 +8938 8938 8939 893.8 1787.6000000000001 8938 1994-06-22 2024-10-11 02:28:58.000 1994-06-22 2024-10-11 02:28:58 +8939 8939 8940 893.9 1787.8000000000002 8939 1994-06-23 2024-10-11 02:28:59.000 1994-06-23 2024-10-11 02:28:59 +8940 8940 8941 894 1788 8940 1994-06-24 2024-10-11 02:29:00.000 1994-06-24 2024-10-11 02:29:00 +8941 8941 8942 894.1 1788.2 8941 1994-06-25 2024-10-11 02:29:01.000 1994-06-25 2024-10-11 02:29:01 +8942 8942 8943 894.2 1788.4 8942 1994-06-26 2024-10-11 02:29:02.000 1994-06-26 2024-10-11 02:29:02 +8943 8943 8944 894.3 1788.6000000000001 8943 1994-06-27 2024-10-11 02:29:03.000 1994-06-27 2024-10-11 02:29:03 +8944 8944 8945 894.4 1788.8000000000002 8944 1994-06-28 2024-10-11 02:29:04.000 1994-06-28 2024-10-11 02:29:04 +8945 8945 8946 894.5 1789 8945 1994-06-29 2024-10-11 02:29:05.000 1994-06-29 2024-10-11 02:29:05 +8946 8946 8947 894.6 1789.2 8946 1994-06-30 2024-10-11 02:29:06.000 1994-06-30 2024-10-11 02:29:06 +8947 8947 8948 894.7 1789.4 8947 1994-07-01 2024-10-11 02:29:07.000 1994-07-01 2024-10-11 02:29:07 +8948 8948 8949 894.8 1789.6000000000001 8948 1994-07-02 2024-10-11 02:29:08.000 1994-07-02 2024-10-11 02:29:08 +8949 8949 8950 894.9 1789.8000000000002 8949 1994-07-03 2024-10-11 02:29:09.000 1994-07-03 2024-10-11 02:29:09 +8950 8950 8951 895 1790 8950 1994-07-04 2024-10-11 02:29:10.000 1994-07-04 2024-10-11 02:29:10 +8951 8951 8952 895.1 1790.2 8951 1994-07-05 2024-10-11 02:29:11.000 1994-07-05 2024-10-11 02:29:11 +8952 8952 8953 895.2 1790.4 8952 1994-07-06 2024-10-11 02:29:12.000 1994-07-06 2024-10-11 02:29:12 +8953 8953 8954 895.3 1790.6000000000001 8953 1994-07-07 2024-10-11 02:29:13.000 1994-07-07 2024-10-11 02:29:13 +8954 8954 8955 895.4 1790.8000000000002 8954 1994-07-08 2024-10-11 02:29:14.000 1994-07-08 2024-10-11 02:29:14 +8955 8955 8956 895.5 1791 8955 1994-07-09 2024-10-11 02:29:15.000 1994-07-09 2024-10-11 02:29:15 +8956 8956 8957 895.6 1791.2 8956 1994-07-10 2024-10-11 02:29:16.000 1994-07-10 2024-10-11 02:29:16 +8957 8957 8958 895.7 1791.4 8957 1994-07-11 2024-10-11 02:29:17.000 1994-07-11 2024-10-11 02:29:17 +8958 8958 8959 895.8 1791.6000000000001 8958 1994-07-12 2024-10-11 02:29:18.000 1994-07-12 2024-10-11 02:29:18 +8959 8959 8960 895.9 1791.8000000000002 8959 1994-07-13 2024-10-11 02:29:19.000 1994-07-13 2024-10-11 02:29:19 +8960 8960 8961 896 1792 8960 1994-07-14 2024-10-11 02:29:20.000 1994-07-14 2024-10-11 02:29:20 +8961 8961 8962 896.1 1792.2 8961 1994-07-15 2024-10-11 02:29:21.000 1994-07-15 2024-10-11 02:29:21 +8962 8962 8963 896.2 1792.4 8962 1994-07-16 2024-10-11 02:29:22.000 1994-07-16 2024-10-11 02:29:22 +8963 8963 8964 896.3 1792.6000000000001 8963 1994-07-17 2024-10-11 02:29:23.000 1994-07-17 2024-10-11 02:29:23 +8964 8964 8965 896.4 1792.8000000000002 8964 1994-07-18 2024-10-11 02:29:24.000 1994-07-18 2024-10-11 02:29:24 +8965 8965 8966 896.5 1793 8965 1994-07-19 2024-10-11 02:29:25.000 1994-07-19 2024-10-11 02:29:25 +8966 8966 8967 896.6 1793.2 8966 1994-07-20 2024-10-11 02:29:26.000 1994-07-20 2024-10-11 02:29:26 +8967 8967 8968 896.7 1793.4 8967 1994-07-21 2024-10-11 02:29:27.000 1994-07-21 2024-10-11 02:29:27 +8968 8968 8969 896.8 1793.6000000000001 8968 1994-07-22 2024-10-11 02:29:28.000 1994-07-22 2024-10-11 02:29:28 +8969 8969 8970 896.9 1793.8000000000002 8969 1994-07-23 2024-10-11 02:29:29.000 1994-07-23 2024-10-11 02:29:29 +8970 8970 8971 897 1794 8970 1994-07-24 2024-10-11 02:29:30.000 1994-07-24 2024-10-11 02:29:30 +8971 8971 8972 897.1 1794.2 8971 1994-07-25 2024-10-11 02:29:31.000 1994-07-25 2024-10-11 02:29:31 +8972 8972 8973 897.2 1794.4 8972 1994-07-26 2024-10-11 02:29:32.000 1994-07-26 2024-10-11 02:29:32 +8973 8973 8974 897.3 1794.6000000000001 8973 1994-07-27 2024-10-11 02:29:33.000 1994-07-27 2024-10-11 02:29:33 +8974 8974 8975 897.4 1794.8000000000002 8974 1994-07-28 2024-10-11 02:29:34.000 1994-07-28 2024-10-11 02:29:34 +8975 8975 8976 897.5 1795 8975 1994-07-29 2024-10-11 02:29:35.000 1994-07-29 2024-10-11 02:29:35 +8976 8976 8977 897.6 1795.2 8976 1994-07-30 2024-10-11 02:29:36.000 1994-07-30 2024-10-11 02:29:36 +8977 8977 8978 897.7 1795.4 8977 1994-07-31 2024-10-11 02:29:37.000 1994-07-31 2024-10-11 02:29:37 +8978 8978 8979 897.8 1795.6000000000001 8978 1994-08-01 2024-10-11 02:29:38.000 1994-08-01 2024-10-11 02:29:38 +8979 8979 8980 897.9 1795.8000000000002 8979 1994-08-02 2024-10-11 02:29:39.000 1994-08-02 2024-10-11 02:29:39 +8980 8980 8981 898 1796 8980 1994-08-03 2024-10-11 02:29:40.000 1994-08-03 2024-10-11 02:29:40 +8981 8981 8982 898.1 1796.2 8981 1994-08-04 2024-10-11 02:29:41.000 1994-08-04 2024-10-11 02:29:41 +8982 8982 8983 898.2 1796.4 8982 1994-08-05 2024-10-11 02:29:42.000 1994-08-05 2024-10-11 02:29:42 +8983 8983 8984 898.3 1796.6000000000001 8983 1994-08-06 2024-10-11 02:29:43.000 1994-08-06 2024-10-11 02:29:43 +8984 8984 8985 898.4 1796.8000000000002 8984 1994-08-07 2024-10-11 02:29:44.000 1994-08-07 2024-10-11 02:29:44 +8985 8985 8986 898.5 1797 8985 1994-08-08 2024-10-11 02:29:45.000 1994-08-08 2024-10-11 02:29:45 +8986 8986 8987 898.6 1797.2 8986 1994-08-09 2024-10-11 02:29:46.000 1994-08-09 2024-10-11 02:29:46 +8987 8987 8988 898.7 1797.4 8987 1994-08-10 2024-10-11 02:29:47.000 1994-08-10 2024-10-11 02:29:47 +8988 8988 8989 898.8 1797.6000000000001 8988 1994-08-11 2024-10-11 02:29:48.000 1994-08-11 2024-10-11 02:29:48 +8989 8989 8990 898.9 1797.8000000000002 8989 1994-08-12 2024-10-11 02:29:49.000 1994-08-12 2024-10-11 02:29:49 +8990 8990 8991 899 1798 8990 1994-08-13 2024-10-11 02:29:50.000 1994-08-13 2024-10-11 02:29:50 +8991 8991 8992 899.1 1798.2 8991 1994-08-14 2024-10-11 02:29:51.000 1994-08-14 2024-10-11 02:29:51 +8992 8992 8993 899.2 1798.4 8992 1994-08-15 2024-10-11 02:29:52.000 1994-08-15 2024-10-11 02:29:52 +8993 8993 8994 899.3 1798.6000000000001 8993 1994-08-16 2024-10-11 02:29:53.000 1994-08-16 2024-10-11 02:29:53 +8994 8994 8995 899.4 1798.8000000000002 8994 1994-08-17 2024-10-11 02:29:54.000 1994-08-17 2024-10-11 02:29:54 +8995 8995 8996 899.5 1799 8995 1994-08-18 2024-10-11 02:29:55.000 1994-08-18 2024-10-11 02:29:55 +8996 8996 8997 899.6 1799.2 8996 1994-08-19 2024-10-11 02:29:56.000 1994-08-19 2024-10-11 02:29:56 +8997 8997 8998 899.7 1799.4 8997 1994-08-20 2024-10-11 02:29:57.000 1994-08-20 2024-10-11 02:29:57 +8998 8998 8999 899.8 1799.6000000000001 8998 1994-08-21 2024-10-11 02:29:58.000 1994-08-21 2024-10-11 02:29:58 +8999 8999 9000 899.9 1799.8000000000002 8999 1994-08-22 2024-10-11 02:29:59.000 1994-08-22 2024-10-11 02:29:59 +9000 9000 9001 900 1800 9000 1994-08-23 2024-10-11 02:30:00.000 1994-08-23 2024-10-11 02:30:00 +9001 9001 9002 900.1 1800.2 9001 1994-08-24 2024-10-11 02:30:01.000 1994-08-24 2024-10-11 02:30:01 +9002 9002 9003 900.2 1800.4 9002 1994-08-25 2024-10-11 02:30:02.000 1994-08-25 2024-10-11 02:30:02 +9003 9003 9004 900.3 1800.6000000000001 9003 1994-08-26 2024-10-11 02:30:03.000 1994-08-26 2024-10-11 02:30:03 +9004 9004 9005 900.4 1800.8000000000002 9004 1994-08-27 2024-10-11 02:30:04.000 1994-08-27 2024-10-11 02:30:04 +9005 9005 9006 900.5 1801 9005 1994-08-28 2024-10-11 02:30:05.000 1994-08-28 2024-10-11 02:30:05 +9006 9006 9007 900.6 1801.2 9006 1994-08-29 2024-10-11 02:30:06.000 1994-08-29 2024-10-11 02:30:06 +9007 9007 9008 900.7 1801.4 9007 1994-08-30 2024-10-11 02:30:07.000 1994-08-30 2024-10-11 02:30:07 +9008 9008 9009 900.8 1801.6000000000001 9008 1994-08-31 2024-10-11 02:30:08.000 1994-08-31 2024-10-11 02:30:08 +9009 9009 9010 900.9 1801.8000000000002 9009 1994-09-01 2024-10-11 02:30:09.000 1994-09-01 2024-10-11 02:30:09 +9010 9010 9011 901 1802 9010 1994-09-02 2024-10-11 02:30:10.000 1994-09-02 2024-10-11 02:30:10 +9011 9011 9012 901.1 1802.2 9011 1994-09-03 2024-10-11 02:30:11.000 1994-09-03 2024-10-11 02:30:11 +9012 9012 9013 901.2 1802.4 9012 1994-09-04 2024-10-11 02:30:12.000 1994-09-04 2024-10-11 02:30:12 +9013 9013 9014 901.3 1802.6000000000001 9013 1994-09-05 2024-10-11 02:30:13.000 1994-09-05 2024-10-11 02:30:13 +9014 9014 9015 901.4 1802.8000000000002 9014 1994-09-06 2024-10-11 02:30:14.000 1994-09-06 2024-10-11 02:30:14 +9015 9015 9016 901.5 1803 9015 1994-09-07 2024-10-11 02:30:15.000 1994-09-07 2024-10-11 02:30:15 +9016 9016 9017 901.6 1803.2 9016 1994-09-08 2024-10-11 02:30:16.000 1994-09-08 2024-10-11 02:30:16 +9017 9017 9018 901.7 1803.4 9017 1994-09-09 2024-10-11 02:30:17.000 1994-09-09 2024-10-11 02:30:17 +9018 9018 9019 901.8 1803.6000000000001 9018 1994-09-10 2024-10-11 02:30:18.000 1994-09-10 2024-10-11 02:30:18 +9019 9019 9020 901.9 1803.8000000000002 9019 1994-09-11 2024-10-11 02:30:19.000 1994-09-11 2024-10-11 02:30:19 +9020 9020 9021 902 1804 9020 1994-09-12 2024-10-11 02:30:20.000 1994-09-12 2024-10-11 02:30:20 +9021 9021 9022 902.1 1804.2 9021 1994-09-13 2024-10-11 02:30:21.000 1994-09-13 2024-10-11 02:30:21 +9022 9022 9023 902.2 1804.4 9022 1994-09-14 2024-10-11 02:30:22.000 1994-09-14 2024-10-11 02:30:22 +9023 9023 9024 902.3 1804.6000000000001 9023 1994-09-15 2024-10-11 02:30:23.000 1994-09-15 2024-10-11 02:30:23 +9024 9024 9025 902.4 1804.8000000000002 9024 1994-09-16 2024-10-11 02:30:24.000 1994-09-16 2024-10-11 02:30:24 +9025 9025 9026 902.5 1805 9025 1994-09-17 2024-10-11 02:30:25.000 1994-09-17 2024-10-11 02:30:25 +9026 9026 9027 902.6 1805.2 9026 1994-09-18 2024-10-11 02:30:26.000 1994-09-18 2024-10-11 02:30:26 +9027 9027 9028 902.7 1805.4 9027 1994-09-19 2024-10-11 02:30:27.000 1994-09-19 2024-10-11 02:30:27 +9028 9028 9029 902.8 1805.6000000000001 9028 1994-09-20 2024-10-11 02:30:28.000 1994-09-20 2024-10-11 02:30:28 +9029 9029 9030 902.9 1805.8000000000002 9029 1994-09-21 2024-10-11 02:30:29.000 1994-09-21 2024-10-11 02:30:29 +9030 9030 9031 903 1806 9030 1994-09-22 2024-10-11 02:30:30.000 1994-09-22 2024-10-11 02:30:30 +9031 9031 9032 903.1 1806.2 9031 1994-09-23 2024-10-11 02:30:31.000 1994-09-23 2024-10-11 02:30:31 +9032 9032 9033 903.2 1806.4 9032 1994-09-24 2024-10-11 02:30:32.000 1994-09-24 2024-10-11 02:30:32 +9033 9033 9034 903.3 1806.6000000000001 9033 1994-09-25 2024-10-11 02:30:33.000 1994-09-25 2024-10-11 02:30:33 +9034 9034 9035 903.4 1806.8000000000002 9034 1994-09-26 2024-10-11 02:30:34.000 1994-09-26 2024-10-11 02:30:34 +9035 9035 9036 903.5 1807 9035 1994-09-27 2024-10-11 02:30:35.000 1994-09-27 2024-10-11 02:30:35 +9036 9036 9037 903.6 1807.2 9036 1994-09-28 2024-10-11 02:30:36.000 1994-09-28 2024-10-11 02:30:36 +9037 9037 9038 903.7 1807.4 9037 1994-09-29 2024-10-11 02:30:37.000 1994-09-29 2024-10-11 02:30:37 +9038 9038 9039 903.8 1807.6000000000001 9038 1994-09-30 2024-10-11 02:30:38.000 1994-09-30 2024-10-11 02:30:38 +9039 9039 9040 903.9 1807.8000000000002 9039 1994-10-01 2024-10-11 02:30:39.000 1994-10-01 2024-10-11 02:30:39 +9040 9040 9041 904 1808 9040 1994-10-02 2024-10-11 02:30:40.000 1994-10-02 2024-10-11 02:30:40 +9041 9041 9042 904.1 1808.2 9041 1994-10-03 2024-10-11 02:30:41.000 1994-10-03 2024-10-11 02:30:41 +9042 9042 9043 904.2 1808.4 9042 1994-10-04 2024-10-11 02:30:42.000 1994-10-04 2024-10-11 02:30:42 +9043 9043 9044 904.3 1808.6000000000001 9043 1994-10-05 2024-10-11 02:30:43.000 1994-10-05 2024-10-11 02:30:43 +9044 9044 9045 904.4 1808.8000000000002 9044 1994-10-06 2024-10-11 02:30:44.000 1994-10-06 2024-10-11 02:30:44 +9045 9045 9046 904.5 1809 9045 1994-10-07 2024-10-11 02:30:45.000 1994-10-07 2024-10-11 02:30:45 +9046 9046 9047 904.6 1809.2 9046 1994-10-08 2024-10-11 02:30:46.000 1994-10-08 2024-10-11 02:30:46 +9047 9047 9048 904.7 1809.4 9047 1994-10-09 2024-10-11 02:30:47.000 1994-10-09 2024-10-11 02:30:47 +9048 9048 9049 904.8 1809.6000000000001 9048 1994-10-10 2024-10-11 02:30:48.000 1994-10-10 2024-10-11 02:30:48 +9049 9049 9050 904.9 1809.8000000000002 9049 1994-10-11 2024-10-11 02:30:49.000 1994-10-11 2024-10-11 02:30:49 +9050 9050 9051 905 1810 9050 1994-10-12 2024-10-11 02:30:50.000 1994-10-12 2024-10-11 02:30:50 +9051 9051 9052 905.1 1810.2 9051 1994-10-13 2024-10-11 02:30:51.000 1994-10-13 2024-10-11 02:30:51 +9052 9052 9053 905.2 1810.4 9052 1994-10-14 2024-10-11 02:30:52.000 1994-10-14 2024-10-11 02:30:52 +9053 9053 9054 905.3 1810.6000000000001 9053 1994-10-15 2024-10-11 02:30:53.000 1994-10-15 2024-10-11 02:30:53 +9054 9054 9055 905.4 1810.8000000000002 9054 1994-10-16 2024-10-11 02:30:54.000 1994-10-16 2024-10-11 02:30:54 +9055 9055 9056 905.5 1811 9055 1994-10-17 2024-10-11 02:30:55.000 1994-10-17 2024-10-11 02:30:55 +9056 9056 9057 905.6 1811.2 9056 1994-10-18 2024-10-11 02:30:56.000 1994-10-18 2024-10-11 02:30:56 +9057 9057 9058 905.7 1811.4 9057 1994-10-19 2024-10-11 02:30:57.000 1994-10-19 2024-10-11 02:30:57 +9058 9058 9059 905.8 1811.6000000000001 9058 1994-10-20 2024-10-11 02:30:58.000 1994-10-20 2024-10-11 02:30:58 +9059 9059 9060 905.9 1811.8000000000002 9059 1994-10-21 2024-10-11 02:30:59.000 1994-10-21 2024-10-11 02:30:59 +9060 9060 9061 906 1812 9060 1994-10-22 2024-10-11 02:31:00.000 1994-10-22 2024-10-11 02:31:00 +9061 9061 9062 906.1 1812.2 9061 1994-10-23 2024-10-11 02:31:01.000 1994-10-23 2024-10-11 02:31:01 +9062 9062 9063 906.2 1812.4 9062 1994-10-24 2024-10-11 02:31:02.000 1994-10-24 2024-10-11 02:31:02 +9063 9063 9064 906.3 1812.6000000000001 9063 1994-10-25 2024-10-11 02:31:03.000 1994-10-25 2024-10-11 02:31:03 +9064 9064 9065 906.4 1812.8000000000002 9064 1994-10-26 2024-10-11 02:31:04.000 1994-10-26 2024-10-11 02:31:04 +9065 9065 9066 906.5 1813 9065 1994-10-27 2024-10-11 02:31:05.000 1994-10-27 2024-10-11 02:31:05 +9066 9066 9067 906.6 1813.2 9066 1994-10-28 2024-10-11 02:31:06.000 1994-10-28 2024-10-11 02:31:06 +9067 9067 9068 906.7 1813.4 9067 1994-10-29 2024-10-11 02:31:07.000 1994-10-29 2024-10-11 02:31:07 +9068 9068 9069 906.8 1813.6000000000001 9068 1994-10-30 2024-10-11 02:31:08.000 1994-10-30 2024-10-11 02:31:08 +9069 9069 9070 906.9 1813.8000000000002 9069 1994-10-31 2024-10-11 02:31:09.000 1994-10-31 2024-10-11 02:31:09 +9070 9070 9071 907 1814 9070 1994-11-01 2024-10-11 02:31:10.000 1994-11-01 2024-10-11 02:31:10 +9071 9071 9072 907.1 1814.2 9071 1994-11-02 2024-10-11 02:31:11.000 1994-11-02 2024-10-11 02:31:11 +9072 9072 9073 907.2 1814.4 9072 1994-11-03 2024-10-11 02:31:12.000 1994-11-03 2024-10-11 02:31:12 +9073 9073 9074 907.3 1814.6000000000001 9073 1994-11-04 2024-10-11 02:31:13.000 1994-11-04 2024-10-11 02:31:13 +9074 9074 9075 907.4 1814.8000000000002 9074 1994-11-05 2024-10-11 02:31:14.000 1994-11-05 2024-10-11 02:31:14 +9075 9075 9076 907.5 1815 9075 1994-11-06 2024-10-11 02:31:15.000 1994-11-06 2024-10-11 02:31:15 +9076 9076 9077 907.6 1815.2 9076 1994-11-07 2024-10-11 02:31:16.000 1994-11-07 2024-10-11 02:31:16 +9077 9077 9078 907.7 1815.4 9077 1994-11-08 2024-10-11 02:31:17.000 1994-11-08 2024-10-11 02:31:17 +9078 9078 9079 907.8 1815.6000000000001 9078 1994-11-09 2024-10-11 02:31:18.000 1994-11-09 2024-10-11 02:31:18 +9079 9079 9080 907.9 1815.8000000000002 9079 1994-11-10 2024-10-11 02:31:19.000 1994-11-10 2024-10-11 02:31:19 +9080 9080 9081 908 1816 9080 1994-11-11 2024-10-11 02:31:20.000 1994-11-11 2024-10-11 02:31:20 +9081 9081 9082 908.1 1816.2 9081 1994-11-12 2024-10-11 02:31:21.000 1994-11-12 2024-10-11 02:31:21 +9082 9082 9083 908.2 1816.4 9082 1994-11-13 2024-10-11 02:31:22.000 1994-11-13 2024-10-11 02:31:22 +9083 9083 9084 908.3 1816.6000000000001 9083 1994-11-14 2024-10-11 02:31:23.000 1994-11-14 2024-10-11 02:31:23 +9084 9084 9085 908.4 1816.8000000000002 9084 1994-11-15 2024-10-11 02:31:24.000 1994-11-15 2024-10-11 02:31:24 +9085 9085 9086 908.5 1817 9085 1994-11-16 2024-10-11 02:31:25.000 1994-11-16 2024-10-11 02:31:25 +9086 9086 9087 908.6 1817.2 9086 1994-11-17 2024-10-11 02:31:26.000 1994-11-17 2024-10-11 02:31:26 +9087 9087 9088 908.7 1817.4 9087 1994-11-18 2024-10-11 02:31:27.000 1994-11-18 2024-10-11 02:31:27 +9088 9088 9089 908.8 1817.6000000000001 9088 1994-11-19 2024-10-11 02:31:28.000 1994-11-19 2024-10-11 02:31:28 +9089 9089 9090 908.9 1817.8000000000002 9089 1994-11-20 2024-10-11 02:31:29.000 1994-11-20 2024-10-11 02:31:29 +9090 9090 9091 909 1818 9090 1994-11-21 2024-10-11 02:31:30.000 1994-11-21 2024-10-11 02:31:30 +9091 9091 9092 909.1 1818.2 9091 1994-11-22 2024-10-11 02:31:31.000 1994-11-22 2024-10-11 02:31:31 +9092 9092 9093 909.2 1818.4 9092 1994-11-23 2024-10-11 02:31:32.000 1994-11-23 2024-10-11 02:31:32 +9093 9093 9094 909.3 1818.6000000000001 9093 1994-11-24 2024-10-11 02:31:33.000 1994-11-24 2024-10-11 02:31:33 +9094 9094 9095 909.4 1818.8000000000002 9094 1994-11-25 2024-10-11 02:31:34.000 1994-11-25 2024-10-11 02:31:34 +9095 9095 9096 909.5 1819 9095 1994-11-26 2024-10-11 02:31:35.000 1994-11-26 2024-10-11 02:31:35 +9096 9096 9097 909.6 1819.2 9096 1994-11-27 2024-10-11 02:31:36.000 1994-11-27 2024-10-11 02:31:36 +9097 9097 9098 909.7 1819.4 9097 1994-11-28 2024-10-11 02:31:37.000 1994-11-28 2024-10-11 02:31:37 +9098 9098 9099 909.8 1819.6000000000001 9098 1994-11-29 2024-10-11 02:31:38.000 1994-11-29 2024-10-11 02:31:38 +9099 9099 9100 909.9 1819.8000000000002 9099 1994-11-30 2024-10-11 02:31:39.000 1994-11-30 2024-10-11 02:31:39 +9100 9100 9101 910 1820 9100 1994-12-01 2024-10-11 02:31:40.000 1994-12-01 2024-10-11 02:31:40 +9101 9101 9102 910.1 1820.2 9101 1994-12-02 2024-10-11 02:31:41.000 1994-12-02 2024-10-11 02:31:41 +9102 9102 9103 910.2 1820.4 9102 1994-12-03 2024-10-11 02:31:42.000 1994-12-03 2024-10-11 02:31:42 +9103 9103 9104 910.3 1820.6000000000001 9103 1994-12-04 2024-10-11 02:31:43.000 1994-12-04 2024-10-11 02:31:43 +9104 9104 9105 910.4 1820.8000000000002 9104 1994-12-05 2024-10-11 02:31:44.000 1994-12-05 2024-10-11 02:31:44 +9105 9105 9106 910.5 1821 9105 1994-12-06 2024-10-11 02:31:45.000 1994-12-06 2024-10-11 02:31:45 +9106 9106 9107 910.6 1821.2 9106 1994-12-07 2024-10-11 02:31:46.000 1994-12-07 2024-10-11 02:31:46 +9107 9107 9108 910.7 1821.4 9107 1994-12-08 2024-10-11 02:31:47.000 1994-12-08 2024-10-11 02:31:47 +9108 9108 9109 910.8 1821.6000000000001 9108 1994-12-09 2024-10-11 02:31:48.000 1994-12-09 2024-10-11 02:31:48 +9109 9109 9110 910.9 1821.8000000000002 9109 1994-12-10 2024-10-11 02:31:49.000 1994-12-10 2024-10-11 02:31:49 +9110 9110 9111 911 1822 9110 1994-12-11 2024-10-11 02:31:50.000 1994-12-11 2024-10-11 02:31:50 +9111 9111 9112 911.1 1822.2 9111 1994-12-12 2024-10-11 02:31:51.000 1994-12-12 2024-10-11 02:31:51 +9112 9112 9113 911.2 1822.4 9112 1994-12-13 2024-10-11 02:31:52.000 1994-12-13 2024-10-11 02:31:52 +9113 9113 9114 911.3 1822.6000000000001 9113 1994-12-14 2024-10-11 02:31:53.000 1994-12-14 2024-10-11 02:31:53 +9114 9114 9115 911.4 1822.8000000000002 9114 1994-12-15 2024-10-11 02:31:54.000 1994-12-15 2024-10-11 02:31:54 +9115 9115 9116 911.5 1823 9115 1994-12-16 2024-10-11 02:31:55.000 1994-12-16 2024-10-11 02:31:55 +9116 9116 9117 911.6 1823.2 9116 1994-12-17 2024-10-11 02:31:56.000 1994-12-17 2024-10-11 02:31:56 +9117 9117 9118 911.7 1823.4 9117 1994-12-18 2024-10-11 02:31:57.000 1994-12-18 2024-10-11 02:31:57 +9118 9118 9119 911.8 1823.6000000000001 9118 1994-12-19 2024-10-11 02:31:58.000 1994-12-19 2024-10-11 02:31:58 +9119 9119 9120 911.9 1823.8000000000002 9119 1994-12-20 2024-10-11 02:31:59.000 1994-12-20 2024-10-11 02:31:59 +9120 9120 9121 912 1824 9120 1994-12-21 2024-10-11 02:32:00.000 1994-12-21 2024-10-11 02:32:00 +9121 9121 9122 912.1 1824.2 9121 1994-12-22 2024-10-11 02:32:01.000 1994-12-22 2024-10-11 02:32:01 +9122 9122 9123 912.2 1824.4 9122 1994-12-23 2024-10-11 02:32:02.000 1994-12-23 2024-10-11 02:32:02 +9123 9123 9124 912.3 1824.6000000000001 9123 1994-12-24 2024-10-11 02:32:03.000 1994-12-24 2024-10-11 02:32:03 +9124 9124 9125 912.4 1824.8000000000002 9124 1994-12-25 2024-10-11 02:32:04.000 1994-12-25 2024-10-11 02:32:04 +9125 9125 9126 912.5 1825 9125 1994-12-26 2024-10-11 02:32:05.000 1994-12-26 2024-10-11 02:32:05 +9126 9126 9127 912.6 1825.2 9126 1994-12-27 2024-10-11 02:32:06.000 1994-12-27 2024-10-11 02:32:06 +9127 9127 9128 912.7 1825.4 9127 1994-12-28 2024-10-11 02:32:07.000 1994-12-28 2024-10-11 02:32:07 +9128 9128 9129 912.8 1825.6000000000001 9128 1994-12-29 2024-10-11 02:32:08.000 1994-12-29 2024-10-11 02:32:08 +9129 9129 9130 912.9 1825.8000000000002 9129 1994-12-30 2024-10-11 02:32:09.000 1994-12-30 2024-10-11 02:32:09 +9130 9130 9131 913 1826 9130 1994-12-31 2024-10-11 02:32:10.000 1994-12-31 2024-10-11 02:32:10 +9131 9131 9132 913.1 1826.2 9131 1995-01-01 2024-10-11 02:32:11.000 1995-01-01 2024-10-11 02:32:11 +9132 9132 9133 913.2 1826.4 9132 1995-01-02 2024-10-11 02:32:12.000 1995-01-02 2024-10-11 02:32:12 +9133 9133 9134 913.3 1826.6000000000001 9133 1995-01-03 2024-10-11 02:32:13.000 1995-01-03 2024-10-11 02:32:13 +9134 9134 9135 913.4 1826.8000000000002 9134 1995-01-04 2024-10-11 02:32:14.000 1995-01-04 2024-10-11 02:32:14 +9135 9135 9136 913.5 1827 9135 1995-01-05 2024-10-11 02:32:15.000 1995-01-05 2024-10-11 02:32:15 +9136 9136 9137 913.6 1827.2 9136 1995-01-06 2024-10-11 02:32:16.000 1995-01-06 2024-10-11 02:32:16 +9137 9137 9138 913.7 1827.4 9137 1995-01-07 2024-10-11 02:32:17.000 1995-01-07 2024-10-11 02:32:17 +9138 9138 9139 913.8 1827.6000000000001 9138 1995-01-08 2024-10-11 02:32:18.000 1995-01-08 2024-10-11 02:32:18 +9139 9139 9140 913.9 1827.8000000000002 9139 1995-01-09 2024-10-11 02:32:19.000 1995-01-09 2024-10-11 02:32:19 +9140 9140 9141 914 1828 9140 1995-01-10 2024-10-11 02:32:20.000 1995-01-10 2024-10-11 02:32:20 +9141 9141 9142 914.1 1828.2 9141 1995-01-11 2024-10-11 02:32:21.000 1995-01-11 2024-10-11 02:32:21 +9142 9142 9143 914.2 1828.4 9142 1995-01-12 2024-10-11 02:32:22.000 1995-01-12 2024-10-11 02:32:22 +9143 9143 9144 914.3 1828.6000000000001 9143 1995-01-13 2024-10-11 02:32:23.000 1995-01-13 2024-10-11 02:32:23 +9144 9144 9145 914.4 1828.8000000000002 9144 1995-01-14 2024-10-11 02:32:24.000 1995-01-14 2024-10-11 02:32:24 +9145 9145 9146 914.5 1829 9145 1995-01-15 2024-10-11 02:32:25.000 1995-01-15 2024-10-11 02:32:25 +9146 9146 9147 914.6 1829.2 9146 1995-01-16 2024-10-11 02:32:26.000 1995-01-16 2024-10-11 02:32:26 +9147 9147 9148 914.7 1829.4 9147 1995-01-17 2024-10-11 02:32:27.000 1995-01-17 2024-10-11 02:32:27 +9148 9148 9149 914.8 1829.6000000000001 9148 1995-01-18 2024-10-11 02:32:28.000 1995-01-18 2024-10-11 02:32:28 +9149 9149 9150 914.9 1829.8000000000002 9149 1995-01-19 2024-10-11 02:32:29.000 1995-01-19 2024-10-11 02:32:29 +9150 9150 9151 915 1830 9150 1995-01-20 2024-10-11 02:32:30.000 1995-01-20 2024-10-11 02:32:30 +9151 9151 9152 915.1 1830.2 9151 1995-01-21 2024-10-11 02:32:31.000 1995-01-21 2024-10-11 02:32:31 +9152 9152 9153 915.2 1830.4 9152 1995-01-22 2024-10-11 02:32:32.000 1995-01-22 2024-10-11 02:32:32 +9153 9153 9154 915.3 1830.6000000000001 9153 1995-01-23 2024-10-11 02:32:33.000 1995-01-23 2024-10-11 02:32:33 +9154 9154 9155 915.4 1830.8000000000002 9154 1995-01-24 2024-10-11 02:32:34.000 1995-01-24 2024-10-11 02:32:34 +9155 9155 9156 915.5 1831 9155 1995-01-25 2024-10-11 02:32:35.000 1995-01-25 2024-10-11 02:32:35 +9156 9156 9157 915.6 1831.2 9156 1995-01-26 2024-10-11 02:32:36.000 1995-01-26 2024-10-11 02:32:36 +9157 9157 9158 915.7 1831.4 9157 1995-01-27 2024-10-11 02:32:37.000 1995-01-27 2024-10-11 02:32:37 +9158 9158 9159 915.8 1831.6000000000001 9158 1995-01-28 2024-10-11 02:32:38.000 1995-01-28 2024-10-11 02:32:38 +9159 9159 9160 915.9 1831.8000000000002 9159 1995-01-29 2024-10-11 02:32:39.000 1995-01-29 2024-10-11 02:32:39 +9160 9160 9161 916 1832 9160 1995-01-30 2024-10-11 02:32:40.000 1995-01-30 2024-10-11 02:32:40 +9161 9161 9162 916.1 1832.2 9161 1995-01-31 2024-10-11 02:32:41.000 1995-01-31 2024-10-11 02:32:41 +9162 9162 9163 916.2 1832.4 9162 1995-02-01 2024-10-11 02:32:42.000 1995-02-01 2024-10-11 02:32:42 +9163 9163 9164 916.3 1832.6000000000001 9163 1995-02-02 2024-10-11 02:32:43.000 1995-02-02 2024-10-11 02:32:43 +9164 9164 9165 916.4 1832.8000000000002 9164 1995-02-03 2024-10-11 02:32:44.000 1995-02-03 2024-10-11 02:32:44 +9165 9165 9166 916.5 1833 9165 1995-02-04 2024-10-11 02:32:45.000 1995-02-04 2024-10-11 02:32:45 +9166 9166 9167 916.6 1833.2 9166 1995-02-05 2024-10-11 02:32:46.000 1995-02-05 2024-10-11 02:32:46 +9167 9167 9168 916.7 1833.4 9167 1995-02-06 2024-10-11 02:32:47.000 1995-02-06 2024-10-11 02:32:47 +9168 9168 9169 916.8 1833.6000000000001 9168 1995-02-07 2024-10-11 02:32:48.000 1995-02-07 2024-10-11 02:32:48 +9169 9169 9170 916.9 1833.8000000000002 9169 1995-02-08 2024-10-11 02:32:49.000 1995-02-08 2024-10-11 02:32:49 +9170 9170 9171 917 1834 9170 1995-02-09 2024-10-11 02:32:50.000 1995-02-09 2024-10-11 02:32:50 +9171 9171 9172 917.1 1834.2 9171 1995-02-10 2024-10-11 02:32:51.000 1995-02-10 2024-10-11 02:32:51 +9172 9172 9173 917.2 1834.4 9172 1995-02-11 2024-10-11 02:32:52.000 1995-02-11 2024-10-11 02:32:52 +9173 9173 9174 917.3 1834.6000000000001 9173 1995-02-12 2024-10-11 02:32:53.000 1995-02-12 2024-10-11 02:32:53 +9174 9174 9175 917.4 1834.8000000000002 9174 1995-02-13 2024-10-11 02:32:54.000 1995-02-13 2024-10-11 02:32:54 +9175 9175 9176 917.5 1835 9175 1995-02-14 2024-10-11 02:32:55.000 1995-02-14 2024-10-11 02:32:55 +9176 9176 9177 917.6 1835.2 9176 1995-02-15 2024-10-11 02:32:56.000 1995-02-15 2024-10-11 02:32:56 +9177 9177 9178 917.7 1835.4 9177 1995-02-16 2024-10-11 02:32:57.000 1995-02-16 2024-10-11 02:32:57 +9178 9178 9179 917.8 1835.6000000000001 9178 1995-02-17 2024-10-11 02:32:58.000 1995-02-17 2024-10-11 02:32:58 +9179 9179 9180 917.9 1835.8000000000002 9179 1995-02-18 2024-10-11 02:32:59.000 1995-02-18 2024-10-11 02:32:59 +9180 9180 9181 918 1836 9180 1995-02-19 2024-10-11 02:33:00.000 1995-02-19 2024-10-11 02:33:00 +9181 9181 9182 918.1 1836.2 9181 1995-02-20 2024-10-11 02:33:01.000 1995-02-20 2024-10-11 02:33:01 +9182 9182 9183 918.2 1836.4 9182 1995-02-21 2024-10-11 02:33:02.000 1995-02-21 2024-10-11 02:33:02 +9183 9183 9184 918.3 1836.6000000000001 9183 1995-02-22 2024-10-11 02:33:03.000 1995-02-22 2024-10-11 02:33:03 +9184 9184 9185 918.4 1836.8000000000002 9184 1995-02-23 2024-10-11 02:33:04.000 1995-02-23 2024-10-11 02:33:04 +9185 9185 9186 918.5 1837 9185 1995-02-24 2024-10-11 02:33:05.000 1995-02-24 2024-10-11 02:33:05 +9186 9186 9187 918.6 1837.2 9186 1995-02-25 2024-10-11 02:33:06.000 1995-02-25 2024-10-11 02:33:06 +9187 9187 9188 918.7 1837.4 9187 1995-02-26 2024-10-11 02:33:07.000 1995-02-26 2024-10-11 02:33:07 +9188 9188 9189 918.8 1837.6000000000001 9188 1995-02-27 2024-10-11 02:33:08.000 1995-02-27 2024-10-11 02:33:08 +9189 9189 9190 918.9 1837.8000000000002 9189 1995-02-28 2024-10-11 02:33:09.000 1995-02-28 2024-10-11 02:33:09 +9190 9190 9191 919 1838 9190 1995-03-01 2024-10-11 02:33:10.000 1995-03-01 2024-10-11 02:33:10 +9191 9191 9192 919.1 1838.2 9191 1995-03-02 2024-10-11 02:33:11.000 1995-03-02 2024-10-11 02:33:11 +9192 9192 9193 919.2 1838.4 9192 1995-03-03 2024-10-11 02:33:12.000 1995-03-03 2024-10-11 02:33:12 +9193 9193 9194 919.3 1838.6000000000001 9193 1995-03-04 2024-10-11 02:33:13.000 1995-03-04 2024-10-11 02:33:13 +9194 9194 9195 919.4 1838.8000000000002 9194 1995-03-05 2024-10-11 02:33:14.000 1995-03-05 2024-10-11 02:33:14 +9195 9195 9196 919.5 1839 9195 1995-03-06 2024-10-11 02:33:15.000 1995-03-06 2024-10-11 02:33:15 +9196 9196 9197 919.6 1839.2 9196 1995-03-07 2024-10-11 02:33:16.000 1995-03-07 2024-10-11 02:33:16 +9197 9197 9198 919.7 1839.4 9197 1995-03-08 2024-10-11 02:33:17.000 1995-03-08 2024-10-11 02:33:17 +9198 9198 9199 919.8 1839.6000000000001 9198 1995-03-09 2024-10-11 02:33:18.000 1995-03-09 2024-10-11 02:33:18 +9199 9199 9200 919.9 1839.8000000000002 9199 1995-03-10 2024-10-11 02:33:19.000 1995-03-10 2024-10-11 02:33:19 +9200 9200 9201 920 1840 9200 1995-03-11 2024-10-11 02:33:20.000 1995-03-11 2024-10-11 02:33:20 +9201 9201 9202 920.1 1840.2 9201 1995-03-12 2024-10-11 02:33:21.000 1995-03-12 2024-10-11 02:33:21 +9202 9202 9203 920.2 1840.4 9202 1995-03-13 2024-10-11 02:33:22.000 1995-03-13 2024-10-11 02:33:22 +9203 9203 9204 920.3 1840.6000000000001 9203 1995-03-14 2024-10-11 02:33:23.000 1995-03-14 2024-10-11 02:33:23 +9204 9204 9205 920.4 1840.8000000000002 9204 1995-03-15 2024-10-11 02:33:24.000 1995-03-15 2024-10-11 02:33:24 +9205 9205 9206 920.5 1841 9205 1995-03-16 2024-10-11 02:33:25.000 1995-03-16 2024-10-11 02:33:25 +9206 9206 9207 920.6 1841.2 9206 1995-03-17 2024-10-11 02:33:26.000 1995-03-17 2024-10-11 02:33:26 +9207 9207 9208 920.7 1841.4 9207 1995-03-18 2024-10-11 02:33:27.000 1995-03-18 2024-10-11 02:33:27 +9208 9208 9209 920.8 1841.6000000000001 9208 1995-03-19 2024-10-11 02:33:28.000 1995-03-19 2024-10-11 02:33:28 +9209 9209 9210 920.9 1841.8000000000002 9209 1995-03-20 2024-10-11 02:33:29.000 1995-03-20 2024-10-11 02:33:29 +9210 9210 9211 921 1842 9210 1995-03-21 2024-10-11 02:33:30.000 1995-03-21 2024-10-11 02:33:30 +9211 9211 9212 921.1 1842.2 9211 1995-03-22 2024-10-11 02:33:31.000 1995-03-22 2024-10-11 02:33:31 +9212 9212 9213 921.2 1842.4 9212 1995-03-23 2024-10-11 02:33:32.000 1995-03-23 2024-10-11 02:33:32 +9213 9213 9214 921.3 1842.6000000000001 9213 1995-03-24 2024-10-11 02:33:33.000 1995-03-24 2024-10-11 02:33:33 +9214 9214 9215 921.4 1842.8000000000002 9214 1995-03-25 2024-10-11 02:33:34.000 1995-03-25 2024-10-11 02:33:34 +9215 9215 9216 921.5 1843 9215 1995-03-26 2024-10-11 02:33:35.000 1995-03-26 2024-10-11 02:33:35 +9216 9216 9217 921.6 1843.2 9216 1995-03-27 2024-10-11 02:33:36.000 1995-03-27 2024-10-11 02:33:36 +9217 9217 9218 921.7 1843.4 9217 1995-03-28 2024-10-11 02:33:37.000 1995-03-28 2024-10-11 02:33:37 +9218 9218 9219 921.8 1843.6000000000001 9218 1995-03-29 2024-10-11 02:33:38.000 1995-03-29 2024-10-11 02:33:38 +9219 9219 9220 921.9 1843.8000000000002 9219 1995-03-30 2024-10-11 02:33:39.000 1995-03-30 2024-10-11 02:33:39 +9220 9220 9221 922 1844 9220 1995-03-31 2024-10-11 02:33:40.000 1995-03-31 2024-10-11 02:33:40 +9221 9221 9222 922.1 1844.2 9221 1995-04-01 2024-10-11 02:33:41.000 1995-04-01 2024-10-11 02:33:41 +9222 9222 9223 922.2 1844.4 9222 1995-04-02 2024-10-11 02:33:42.000 1995-04-02 2024-10-11 02:33:42 +9223 9223 9224 922.3 1844.6000000000001 9223 1995-04-03 2024-10-11 02:33:43.000 1995-04-03 2024-10-11 02:33:43 +9224 9224 9225 922.4 1844.8000000000002 9224 1995-04-04 2024-10-11 02:33:44.000 1995-04-04 2024-10-11 02:33:44 +9225 9225 9226 922.5 1845 9225 1995-04-05 2024-10-11 02:33:45.000 1995-04-05 2024-10-11 02:33:45 +9226 9226 9227 922.6 1845.2 9226 1995-04-06 2024-10-11 02:33:46.000 1995-04-06 2024-10-11 02:33:46 +9227 9227 9228 922.7 1845.4 9227 1995-04-07 2024-10-11 02:33:47.000 1995-04-07 2024-10-11 02:33:47 +9228 9228 9229 922.8 1845.6000000000001 9228 1995-04-08 2024-10-11 02:33:48.000 1995-04-08 2024-10-11 02:33:48 +9229 9229 9230 922.9 1845.8000000000002 9229 1995-04-09 2024-10-11 02:33:49.000 1995-04-09 2024-10-11 02:33:49 +9230 9230 9231 923 1846 9230 1995-04-10 2024-10-11 02:33:50.000 1995-04-10 2024-10-11 02:33:50 +9231 9231 9232 923.1 1846.2 9231 1995-04-11 2024-10-11 02:33:51.000 1995-04-11 2024-10-11 02:33:51 +9232 9232 9233 923.2 1846.4 9232 1995-04-12 2024-10-11 02:33:52.000 1995-04-12 2024-10-11 02:33:52 +9233 9233 9234 923.3 1846.6000000000001 9233 1995-04-13 2024-10-11 02:33:53.000 1995-04-13 2024-10-11 02:33:53 +9234 9234 9235 923.4 1846.8000000000002 9234 1995-04-14 2024-10-11 02:33:54.000 1995-04-14 2024-10-11 02:33:54 +9235 9235 9236 923.5 1847 9235 1995-04-15 2024-10-11 02:33:55.000 1995-04-15 2024-10-11 02:33:55 +9236 9236 9237 923.6 1847.2 9236 1995-04-16 2024-10-11 02:33:56.000 1995-04-16 2024-10-11 02:33:56 +9237 9237 9238 923.7 1847.4 9237 1995-04-17 2024-10-11 02:33:57.000 1995-04-17 2024-10-11 02:33:57 +9238 9238 9239 923.8 1847.6000000000001 9238 1995-04-18 2024-10-11 02:33:58.000 1995-04-18 2024-10-11 02:33:58 +9239 9239 9240 923.9 1847.8000000000002 9239 1995-04-19 2024-10-11 02:33:59.000 1995-04-19 2024-10-11 02:33:59 +9240 9240 9241 924 1848 9240 1995-04-20 2024-10-11 02:34:00.000 1995-04-20 2024-10-11 02:34:00 +9241 9241 9242 924.1 1848.2 9241 1995-04-21 2024-10-11 02:34:01.000 1995-04-21 2024-10-11 02:34:01 +9242 9242 9243 924.2 1848.4 9242 1995-04-22 2024-10-11 02:34:02.000 1995-04-22 2024-10-11 02:34:02 +9243 9243 9244 924.3 1848.6000000000001 9243 1995-04-23 2024-10-11 02:34:03.000 1995-04-23 2024-10-11 02:34:03 +9244 9244 9245 924.4 1848.8000000000002 9244 1995-04-24 2024-10-11 02:34:04.000 1995-04-24 2024-10-11 02:34:04 +9245 9245 9246 924.5 1849 9245 1995-04-25 2024-10-11 02:34:05.000 1995-04-25 2024-10-11 02:34:05 +9246 9246 9247 924.6 1849.2 9246 1995-04-26 2024-10-11 02:34:06.000 1995-04-26 2024-10-11 02:34:06 +9247 9247 9248 924.7 1849.4 9247 1995-04-27 2024-10-11 02:34:07.000 1995-04-27 2024-10-11 02:34:07 +9248 9248 9249 924.8 1849.6000000000001 9248 1995-04-28 2024-10-11 02:34:08.000 1995-04-28 2024-10-11 02:34:08 +9249 9249 9250 924.9 1849.8000000000002 9249 1995-04-29 2024-10-11 02:34:09.000 1995-04-29 2024-10-11 02:34:09 +9250 9250 9251 925 1850 9250 1995-04-30 2024-10-11 02:34:10.000 1995-04-30 2024-10-11 02:34:10 +9251 9251 9252 925.1 1850.2 9251 1995-05-01 2024-10-11 02:34:11.000 1995-05-01 2024-10-11 02:34:11 +9252 9252 9253 925.2 1850.4 9252 1995-05-02 2024-10-11 02:34:12.000 1995-05-02 2024-10-11 02:34:12 +9253 9253 9254 925.3 1850.6000000000001 9253 1995-05-03 2024-10-11 02:34:13.000 1995-05-03 2024-10-11 02:34:13 +9254 9254 9255 925.4 1850.8000000000002 9254 1995-05-04 2024-10-11 02:34:14.000 1995-05-04 2024-10-11 02:34:14 +9255 9255 9256 925.5 1851 9255 1995-05-05 2024-10-11 02:34:15.000 1995-05-05 2024-10-11 02:34:15 +9256 9256 9257 925.6 1851.2 9256 1995-05-06 2024-10-11 02:34:16.000 1995-05-06 2024-10-11 02:34:16 +9257 9257 9258 925.7 1851.4 9257 1995-05-07 2024-10-11 02:34:17.000 1995-05-07 2024-10-11 02:34:17 +9258 9258 9259 925.8 1851.6000000000001 9258 1995-05-08 2024-10-11 02:34:18.000 1995-05-08 2024-10-11 02:34:18 +9259 9259 9260 925.9 1851.8000000000002 9259 1995-05-09 2024-10-11 02:34:19.000 1995-05-09 2024-10-11 02:34:19 +9260 9260 9261 926 1852 9260 1995-05-10 2024-10-11 02:34:20.000 1995-05-10 2024-10-11 02:34:20 +9261 9261 9262 926.1 1852.2 9261 1995-05-11 2024-10-11 02:34:21.000 1995-05-11 2024-10-11 02:34:21 +9262 9262 9263 926.2 1852.4 9262 1995-05-12 2024-10-11 02:34:22.000 1995-05-12 2024-10-11 02:34:22 +9263 9263 9264 926.3 1852.6000000000001 9263 1995-05-13 2024-10-11 02:34:23.000 1995-05-13 2024-10-11 02:34:23 +9264 9264 9265 926.4 1852.8000000000002 9264 1995-05-14 2024-10-11 02:34:24.000 1995-05-14 2024-10-11 02:34:24 +9265 9265 9266 926.5 1853 9265 1995-05-15 2024-10-11 02:34:25.000 1995-05-15 2024-10-11 02:34:25 +9266 9266 9267 926.6 1853.2 9266 1995-05-16 2024-10-11 02:34:26.000 1995-05-16 2024-10-11 02:34:26 +9267 9267 9268 926.7 1853.4 9267 1995-05-17 2024-10-11 02:34:27.000 1995-05-17 2024-10-11 02:34:27 +9268 9268 9269 926.8 1853.6000000000001 9268 1995-05-18 2024-10-11 02:34:28.000 1995-05-18 2024-10-11 02:34:28 +9269 9269 9270 926.9 1853.8000000000002 9269 1995-05-19 2024-10-11 02:34:29.000 1995-05-19 2024-10-11 02:34:29 +9270 9270 9271 927 1854 9270 1995-05-20 2024-10-11 02:34:30.000 1995-05-20 2024-10-11 02:34:30 +9271 9271 9272 927.1 1854.2 9271 1995-05-21 2024-10-11 02:34:31.000 1995-05-21 2024-10-11 02:34:31 +9272 9272 9273 927.2 1854.4 9272 1995-05-22 2024-10-11 02:34:32.000 1995-05-22 2024-10-11 02:34:32 +9273 9273 9274 927.3 1854.6000000000001 9273 1995-05-23 2024-10-11 02:34:33.000 1995-05-23 2024-10-11 02:34:33 +9274 9274 9275 927.4 1854.8000000000002 9274 1995-05-24 2024-10-11 02:34:34.000 1995-05-24 2024-10-11 02:34:34 +9275 9275 9276 927.5 1855 9275 1995-05-25 2024-10-11 02:34:35.000 1995-05-25 2024-10-11 02:34:35 +9276 9276 9277 927.6 1855.2 9276 1995-05-26 2024-10-11 02:34:36.000 1995-05-26 2024-10-11 02:34:36 +9277 9277 9278 927.7 1855.4 9277 1995-05-27 2024-10-11 02:34:37.000 1995-05-27 2024-10-11 02:34:37 +9278 9278 9279 927.8 1855.6000000000001 9278 1995-05-28 2024-10-11 02:34:38.000 1995-05-28 2024-10-11 02:34:38 +9279 9279 9280 927.9 1855.8000000000002 9279 1995-05-29 2024-10-11 02:34:39.000 1995-05-29 2024-10-11 02:34:39 +9280 9280 9281 928 1856 9280 1995-05-30 2024-10-11 02:34:40.000 1995-05-30 2024-10-11 02:34:40 +9281 9281 9282 928.1 1856.2 9281 1995-05-31 2024-10-11 02:34:41.000 1995-05-31 2024-10-11 02:34:41 +9282 9282 9283 928.2 1856.4 9282 1995-06-01 2024-10-11 02:34:42.000 1995-06-01 2024-10-11 02:34:42 +9283 9283 9284 928.3 1856.6000000000001 9283 1995-06-02 2024-10-11 02:34:43.000 1995-06-02 2024-10-11 02:34:43 +9284 9284 9285 928.4 1856.8000000000002 9284 1995-06-03 2024-10-11 02:34:44.000 1995-06-03 2024-10-11 02:34:44 +9285 9285 9286 928.5 1857 9285 1995-06-04 2024-10-11 02:34:45.000 1995-06-04 2024-10-11 02:34:45 +9286 9286 9287 928.6 1857.2 9286 1995-06-05 2024-10-11 02:34:46.000 1995-06-05 2024-10-11 02:34:46 +9287 9287 9288 928.7 1857.4 9287 1995-06-06 2024-10-11 02:34:47.000 1995-06-06 2024-10-11 02:34:47 +9288 9288 9289 928.8 1857.6000000000001 9288 1995-06-07 2024-10-11 02:34:48.000 1995-06-07 2024-10-11 02:34:48 +9289 9289 9290 928.9 1857.8000000000002 9289 1995-06-08 2024-10-11 02:34:49.000 1995-06-08 2024-10-11 02:34:49 +9290 9290 9291 929 1858 9290 1995-06-09 2024-10-11 02:34:50.000 1995-06-09 2024-10-11 02:34:50 +9291 9291 9292 929.1 1858.2 9291 1995-06-10 2024-10-11 02:34:51.000 1995-06-10 2024-10-11 02:34:51 +9292 9292 9293 929.2 1858.4 9292 1995-06-11 2024-10-11 02:34:52.000 1995-06-11 2024-10-11 02:34:52 +9293 9293 9294 929.3 1858.6000000000001 9293 1995-06-12 2024-10-11 02:34:53.000 1995-06-12 2024-10-11 02:34:53 +9294 9294 9295 929.4 1858.8000000000002 9294 1995-06-13 2024-10-11 02:34:54.000 1995-06-13 2024-10-11 02:34:54 +9295 9295 9296 929.5 1859 9295 1995-06-14 2024-10-11 02:34:55.000 1995-06-14 2024-10-11 02:34:55 +9296 9296 9297 929.6 1859.2 9296 1995-06-15 2024-10-11 02:34:56.000 1995-06-15 2024-10-11 02:34:56 +9297 9297 9298 929.7 1859.4 9297 1995-06-16 2024-10-11 02:34:57.000 1995-06-16 2024-10-11 02:34:57 +9298 9298 9299 929.8 1859.6000000000001 9298 1995-06-17 2024-10-11 02:34:58.000 1995-06-17 2024-10-11 02:34:58 +9299 9299 9300 929.9 1859.8000000000002 9299 1995-06-18 2024-10-11 02:34:59.000 1995-06-18 2024-10-11 02:34:59 +9300 9300 9301 930 1860 9300 1995-06-19 2024-10-11 02:35:00.000 1995-06-19 2024-10-11 02:35:00 +9301 9301 9302 930.1 1860.2 9301 1995-06-20 2024-10-11 02:35:01.000 1995-06-20 2024-10-11 02:35:01 +9302 9302 9303 930.2 1860.4 9302 1995-06-21 2024-10-11 02:35:02.000 1995-06-21 2024-10-11 02:35:02 +9303 9303 9304 930.3 1860.6000000000001 9303 1995-06-22 2024-10-11 02:35:03.000 1995-06-22 2024-10-11 02:35:03 +9304 9304 9305 930.4 1860.8000000000002 9304 1995-06-23 2024-10-11 02:35:04.000 1995-06-23 2024-10-11 02:35:04 +9305 9305 9306 930.5 1861 9305 1995-06-24 2024-10-11 02:35:05.000 1995-06-24 2024-10-11 02:35:05 +9306 9306 9307 930.6 1861.2 9306 1995-06-25 2024-10-11 02:35:06.000 1995-06-25 2024-10-11 02:35:06 +9307 9307 9308 930.7 1861.4 9307 1995-06-26 2024-10-11 02:35:07.000 1995-06-26 2024-10-11 02:35:07 +9308 9308 9309 930.8 1861.6000000000001 9308 1995-06-27 2024-10-11 02:35:08.000 1995-06-27 2024-10-11 02:35:08 +9309 9309 9310 930.9 1861.8000000000002 9309 1995-06-28 2024-10-11 02:35:09.000 1995-06-28 2024-10-11 02:35:09 +9310 9310 9311 931 1862 9310 1995-06-29 2024-10-11 02:35:10.000 1995-06-29 2024-10-11 02:35:10 +9311 9311 9312 931.1 1862.2 9311 1995-06-30 2024-10-11 02:35:11.000 1995-06-30 2024-10-11 02:35:11 +9312 9312 9313 931.2 1862.4 9312 1995-07-01 2024-10-11 02:35:12.000 1995-07-01 2024-10-11 02:35:12 +9313 9313 9314 931.3 1862.6000000000001 9313 1995-07-02 2024-10-11 02:35:13.000 1995-07-02 2024-10-11 02:35:13 +9314 9314 9315 931.4 1862.8000000000002 9314 1995-07-03 2024-10-11 02:35:14.000 1995-07-03 2024-10-11 02:35:14 +9315 9315 9316 931.5 1863 9315 1995-07-04 2024-10-11 02:35:15.000 1995-07-04 2024-10-11 02:35:15 +9316 9316 9317 931.6 1863.2 9316 1995-07-05 2024-10-11 02:35:16.000 1995-07-05 2024-10-11 02:35:16 +9317 9317 9318 931.7 1863.4 9317 1995-07-06 2024-10-11 02:35:17.000 1995-07-06 2024-10-11 02:35:17 +9318 9318 9319 931.8 1863.6000000000001 9318 1995-07-07 2024-10-11 02:35:18.000 1995-07-07 2024-10-11 02:35:18 +9319 9319 9320 931.9 1863.8000000000002 9319 1995-07-08 2024-10-11 02:35:19.000 1995-07-08 2024-10-11 02:35:19 +9320 9320 9321 932 1864 9320 1995-07-09 2024-10-11 02:35:20.000 1995-07-09 2024-10-11 02:35:20 +9321 9321 9322 932.1 1864.2 9321 1995-07-10 2024-10-11 02:35:21.000 1995-07-10 2024-10-11 02:35:21 +9322 9322 9323 932.2 1864.4 9322 1995-07-11 2024-10-11 02:35:22.000 1995-07-11 2024-10-11 02:35:22 +9323 9323 9324 932.3 1864.6000000000001 9323 1995-07-12 2024-10-11 02:35:23.000 1995-07-12 2024-10-11 02:35:23 +9324 9324 9325 932.4 1864.8000000000002 9324 1995-07-13 2024-10-11 02:35:24.000 1995-07-13 2024-10-11 02:35:24 +9325 9325 9326 932.5 1865 9325 1995-07-14 2024-10-11 02:35:25.000 1995-07-14 2024-10-11 02:35:25 +9326 9326 9327 932.6 1865.2 9326 1995-07-15 2024-10-11 02:35:26.000 1995-07-15 2024-10-11 02:35:26 +9327 9327 9328 932.7 1865.4 9327 1995-07-16 2024-10-11 02:35:27.000 1995-07-16 2024-10-11 02:35:27 +9328 9328 9329 932.8 1865.6000000000001 9328 1995-07-17 2024-10-11 02:35:28.000 1995-07-17 2024-10-11 02:35:28 +9329 9329 9330 932.9 1865.8000000000002 9329 1995-07-18 2024-10-11 02:35:29.000 1995-07-18 2024-10-11 02:35:29 +9330 9330 9331 933 1866 9330 1995-07-19 2024-10-11 02:35:30.000 1995-07-19 2024-10-11 02:35:30 +9331 9331 9332 933.1 1866.2 9331 1995-07-20 2024-10-11 02:35:31.000 1995-07-20 2024-10-11 02:35:31 +9332 9332 9333 933.2 1866.4 9332 1995-07-21 2024-10-11 02:35:32.000 1995-07-21 2024-10-11 02:35:32 +9333 9333 9334 933.3 1866.6000000000001 9333 1995-07-22 2024-10-11 02:35:33.000 1995-07-22 2024-10-11 02:35:33 +9334 9334 9335 933.4 1866.8000000000002 9334 1995-07-23 2024-10-11 02:35:34.000 1995-07-23 2024-10-11 02:35:34 +9335 9335 9336 933.5 1867 9335 1995-07-24 2024-10-11 02:35:35.000 1995-07-24 2024-10-11 02:35:35 +9336 9336 9337 933.6 1867.2 9336 1995-07-25 2024-10-11 02:35:36.000 1995-07-25 2024-10-11 02:35:36 +9337 9337 9338 933.7 1867.4 9337 1995-07-26 2024-10-11 02:35:37.000 1995-07-26 2024-10-11 02:35:37 +9338 9338 9339 933.8 1867.6000000000001 9338 1995-07-27 2024-10-11 02:35:38.000 1995-07-27 2024-10-11 02:35:38 +9339 9339 9340 933.9 1867.8000000000002 9339 1995-07-28 2024-10-11 02:35:39.000 1995-07-28 2024-10-11 02:35:39 +9340 9340 9341 934 1868 9340 1995-07-29 2024-10-11 02:35:40.000 1995-07-29 2024-10-11 02:35:40 +9341 9341 9342 934.1 1868.2 9341 1995-07-30 2024-10-11 02:35:41.000 1995-07-30 2024-10-11 02:35:41 +9342 9342 9343 934.2 1868.4 9342 1995-07-31 2024-10-11 02:35:42.000 1995-07-31 2024-10-11 02:35:42 +9343 9343 9344 934.3 1868.6000000000001 9343 1995-08-01 2024-10-11 02:35:43.000 1995-08-01 2024-10-11 02:35:43 +9344 9344 9345 934.4 1868.8000000000002 9344 1995-08-02 2024-10-11 02:35:44.000 1995-08-02 2024-10-11 02:35:44 +9345 9345 9346 934.5 1869 9345 1995-08-03 2024-10-11 02:35:45.000 1995-08-03 2024-10-11 02:35:45 +9346 9346 9347 934.6 1869.2 9346 1995-08-04 2024-10-11 02:35:46.000 1995-08-04 2024-10-11 02:35:46 +9347 9347 9348 934.7 1869.4 9347 1995-08-05 2024-10-11 02:35:47.000 1995-08-05 2024-10-11 02:35:47 +9348 9348 9349 934.8 1869.6000000000001 9348 1995-08-06 2024-10-11 02:35:48.000 1995-08-06 2024-10-11 02:35:48 +9349 9349 9350 934.9 1869.8000000000002 9349 1995-08-07 2024-10-11 02:35:49.000 1995-08-07 2024-10-11 02:35:49 +9350 9350 9351 935 1870 9350 1995-08-08 2024-10-11 02:35:50.000 1995-08-08 2024-10-11 02:35:50 +9351 9351 9352 935.1 1870.2 9351 1995-08-09 2024-10-11 02:35:51.000 1995-08-09 2024-10-11 02:35:51 +9352 9352 9353 935.2 1870.4 9352 1995-08-10 2024-10-11 02:35:52.000 1995-08-10 2024-10-11 02:35:52 +9353 9353 9354 935.3 1870.6000000000001 9353 1995-08-11 2024-10-11 02:35:53.000 1995-08-11 2024-10-11 02:35:53 +9354 9354 9355 935.4 1870.8000000000002 9354 1995-08-12 2024-10-11 02:35:54.000 1995-08-12 2024-10-11 02:35:54 +9355 9355 9356 935.5 1871 9355 1995-08-13 2024-10-11 02:35:55.000 1995-08-13 2024-10-11 02:35:55 +9356 9356 9357 935.6 1871.2 9356 1995-08-14 2024-10-11 02:35:56.000 1995-08-14 2024-10-11 02:35:56 +9357 9357 9358 935.7 1871.4 9357 1995-08-15 2024-10-11 02:35:57.000 1995-08-15 2024-10-11 02:35:57 +9358 9358 9359 935.8 1871.6000000000001 9358 1995-08-16 2024-10-11 02:35:58.000 1995-08-16 2024-10-11 02:35:58 +9359 9359 9360 935.9 1871.8000000000002 9359 1995-08-17 2024-10-11 02:35:59.000 1995-08-17 2024-10-11 02:35:59 +9360 9360 9361 936 1872 9360 1995-08-18 2024-10-11 02:36:00.000 1995-08-18 2024-10-11 02:36:00 +9361 9361 9362 936.1 1872.2 9361 1995-08-19 2024-10-11 02:36:01.000 1995-08-19 2024-10-11 02:36:01 +9362 9362 9363 936.2 1872.4 9362 1995-08-20 2024-10-11 02:36:02.000 1995-08-20 2024-10-11 02:36:02 +9363 9363 9364 936.3 1872.6000000000001 9363 1995-08-21 2024-10-11 02:36:03.000 1995-08-21 2024-10-11 02:36:03 +9364 9364 9365 936.4 1872.8000000000002 9364 1995-08-22 2024-10-11 02:36:04.000 1995-08-22 2024-10-11 02:36:04 +9365 9365 9366 936.5 1873 9365 1995-08-23 2024-10-11 02:36:05.000 1995-08-23 2024-10-11 02:36:05 +9366 9366 9367 936.6 1873.2 9366 1995-08-24 2024-10-11 02:36:06.000 1995-08-24 2024-10-11 02:36:06 +9367 9367 9368 936.7 1873.4 9367 1995-08-25 2024-10-11 02:36:07.000 1995-08-25 2024-10-11 02:36:07 +9368 9368 9369 936.8 1873.6000000000001 9368 1995-08-26 2024-10-11 02:36:08.000 1995-08-26 2024-10-11 02:36:08 +9369 9369 9370 936.9 1873.8000000000002 9369 1995-08-27 2024-10-11 02:36:09.000 1995-08-27 2024-10-11 02:36:09 +9370 9370 9371 937 1874 9370 1995-08-28 2024-10-11 02:36:10.000 1995-08-28 2024-10-11 02:36:10 +9371 9371 9372 937.1 1874.2 9371 1995-08-29 2024-10-11 02:36:11.000 1995-08-29 2024-10-11 02:36:11 +9372 9372 9373 937.2 1874.4 9372 1995-08-30 2024-10-11 02:36:12.000 1995-08-30 2024-10-11 02:36:12 +9373 9373 9374 937.3 1874.6000000000001 9373 1995-08-31 2024-10-11 02:36:13.000 1995-08-31 2024-10-11 02:36:13 +9374 9374 9375 937.4 1874.8000000000002 9374 1995-09-01 2024-10-11 02:36:14.000 1995-09-01 2024-10-11 02:36:14 +9375 9375 9376 937.5 1875 9375 1995-09-02 2024-10-11 02:36:15.000 1995-09-02 2024-10-11 02:36:15 +9376 9376 9377 937.6 1875.2 9376 1995-09-03 2024-10-11 02:36:16.000 1995-09-03 2024-10-11 02:36:16 +9377 9377 9378 937.7 1875.4 9377 1995-09-04 2024-10-11 02:36:17.000 1995-09-04 2024-10-11 02:36:17 +9378 9378 9379 937.8 1875.6000000000001 9378 1995-09-05 2024-10-11 02:36:18.000 1995-09-05 2024-10-11 02:36:18 +9379 9379 9380 937.9 1875.8000000000002 9379 1995-09-06 2024-10-11 02:36:19.000 1995-09-06 2024-10-11 02:36:19 +9380 9380 9381 938 1876 9380 1995-09-07 2024-10-11 02:36:20.000 1995-09-07 2024-10-11 02:36:20 +9381 9381 9382 938.1 1876.2 9381 1995-09-08 2024-10-11 02:36:21.000 1995-09-08 2024-10-11 02:36:21 +9382 9382 9383 938.2 1876.4 9382 1995-09-09 2024-10-11 02:36:22.000 1995-09-09 2024-10-11 02:36:22 +9383 9383 9384 938.3 1876.6000000000001 9383 1995-09-10 2024-10-11 02:36:23.000 1995-09-10 2024-10-11 02:36:23 +9384 9384 9385 938.4 1876.8000000000002 9384 1995-09-11 2024-10-11 02:36:24.000 1995-09-11 2024-10-11 02:36:24 +9385 9385 9386 938.5 1877 9385 1995-09-12 2024-10-11 02:36:25.000 1995-09-12 2024-10-11 02:36:25 +9386 9386 9387 938.6 1877.2 9386 1995-09-13 2024-10-11 02:36:26.000 1995-09-13 2024-10-11 02:36:26 +9387 9387 9388 938.7 1877.4 9387 1995-09-14 2024-10-11 02:36:27.000 1995-09-14 2024-10-11 02:36:27 +9388 9388 9389 938.8 1877.6000000000001 9388 1995-09-15 2024-10-11 02:36:28.000 1995-09-15 2024-10-11 02:36:28 +9389 9389 9390 938.9 1877.8000000000002 9389 1995-09-16 2024-10-11 02:36:29.000 1995-09-16 2024-10-11 02:36:29 +9390 9390 9391 939 1878 9390 1995-09-17 2024-10-11 02:36:30.000 1995-09-17 2024-10-11 02:36:30 +9391 9391 9392 939.1 1878.2 9391 1995-09-18 2024-10-11 02:36:31.000 1995-09-18 2024-10-11 02:36:31 +9392 9392 9393 939.2 1878.4 9392 1995-09-19 2024-10-11 02:36:32.000 1995-09-19 2024-10-11 02:36:32 +9393 9393 9394 939.3 1878.6000000000001 9393 1995-09-20 2024-10-11 02:36:33.000 1995-09-20 2024-10-11 02:36:33 +9394 9394 9395 939.4 1878.8000000000002 9394 1995-09-21 2024-10-11 02:36:34.000 1995-09-21 2024-10-11 02:36:34 +9395 9395 9396 939.5 1879 9395 1995-09-22 2024-10-11 02:36:35.000 1995-09-22 2024-10-11 02:36:35 +9396 9396 9397 939.6 1879.2 9396 1995-09-23 2024-10-11 02:36:36.000 1995-09-23 2024-10-11 02:36:36 +9397 9397 9398 939.7 1879.4 9397 1995-09-24 2024-10-11 02:36:37.000 1995-09-24 2024-10-11 02:36:37 +9398 9398 9399 939.8 1879.6000000000001 9398 1995-09-25 2024-10-11 02:36:38.000 1995-09-25 2024-10-11 02:36:38 +9399 9399 9400 939.9 1879.8000000000002 9399 1995-09-26 2024-10-11 02:36:39.000 1995-09-26 2024-10-11 02:36:39 +9400 9400 9401 940 1880 9400 1995-09-27 2024-10-11 02:36:40.000 1995-09-27 2024-10-11 02:36:40 +9401 9401 9402 940.1 1880.2 9401 1995-09-28 2024-10-11 02:36:41.000 1995-09-28 2024-10-11 02:36:41 +9402 9402 9403 940.2 1880.4 9402 1995-09-29 2024-10-11 02:36:42.000 1995-09-29 2024-10-11 02:36:42 +9403 9403 9404 940.3 1880.6000000000001 9403 1995-09-30 2024-10-11 02:36:43.000 1995-09-30 2024-10-11 02:36:43 +9404 9404 9405 940.4 1880.8000000000002 9404 1995-10-01 2024-10-11 02:36:44.000 1995-10-01 2024-10-11 02:36:44 +9405 9405 9406 940.5 1881 9405 1995-10-02 2024-10-11 02:36:45.000 1995-10-02 2024-10-11 02:36:45 +9406 9406 9407 940.6 1881.2 9406 1995-10-03 2024-10-11 02:36:46.000 1995-10-03 2024-10-11 02:36:46 +9407 9407 9408 940.7 1881.4 9407 1995-10-04 2024-10-11 02:36:47.000 1995-10-04 2024-10-11 02:36:47 +9408 9408 9409 940.8 1881.6000000000001 9408 1995-10-05 2024-10-11 02:36:48.000 1995-10-05 2024-10-11 02:36:48 +9409 9409 9410 940.9 1881.8000000000002 9409 1995-10-06 2024-10-11 02:36:49.000 1995-10-06 2024-10-11 02:36:49 +9410 9410 9411 941 1882 9410 1995-10-07 2024-10-11 02:36:50.000 1995-10-07 2024-10-11 02:36:50 +9411 9411 9412 941.1 1882.2 9411 1995-10-08 2024-10-11 02:36:51.000 1995-10-08 2024-10-11 02:36:51 +9412 9412 9413 941.2 1882.4 9412 1995-10-09 2024-10-11 02:36:52.000 1995-10-09 2024-10-11 02:36:52 +9413 9413 9414 941.3 1882.6000000000001 9413 1995-10-10 2024-10-11 02:36:53.000 1995-10-10 2024-10-11 02:36:53 +9414 9414 9415 941.4 1882.8000000000002 9414 1995-10-11 2024-10-11 02:36:54.000 1995-10-11 2024-10-11 02:36:54 +9415 9415 9416 941.5 1883 9415 1995-10-12 2024-10-11 02:36:55.000 1995-10-12 2024-10-11 02:36:55 +9416 9416 9417 941.6 1883.2 9416 1995-10-13 2024-10-11 02:36:56.000 1995-10-13 2024-10-11 02:36:56 +9417 9417 9418 941.7 1883.4 9417 1995-10-14 2024-10-11 02:36:57.000 1995-10-14 2024-10-11 02:36:57 +9418 9418 9419 941.8 1883.6000000000001 9418 1995-10-15 2024-10-11 02:36:58.000 1995-10-15 2024-10-11 02:36:58 +9419 9419 9420 941.9 1883.8000000000002 9419 1995-10-16 2024-10-11 02:36:59.000 1995-10-16 2024-10-11 02:36:59 +9420 9420 9421 942 1884 9420 1995-10-17 2024-10-11 02:37:00.000 1995-10-17 2024-10-11 02:37:00 +9421 9421 9422 942.1 1884.2 9421 1995-10-18 2024-10-11 02:37:01.000 1995-10-18 2024-10-11 02:37:01 +9422 9422 9423 942.2 1884.4 9422 1995-10-19 2024-10-11 02:37:02.000 1995-10-19 2024-10-11 02:37:02 +9423 9423 9424 942.3 1884.6000000000001 9423 1995-10-20 2024-10-11 02:37:03.000 1995-10-20 2024-10-11 02:37:03 +9424 9424 9425 942.4 1884.8000000000002 9424 1995-10-21 2024-10-11 02:37:04.000 1995-10-21 2024-10-11 02:37:04 +9425 9425 9426 942.5 1885 9425 1995-10-22 2024-10-11 02:37:05.000 1995-10-22 2024-10-11 02:37:05 +9426 9426 9427 942.6 1885.2 9426 1995-10-23 2024-10-11 02:37:06.000 1995-10-23 2024-10-11 02:37:06 +9427 9427 9428 942.7 1885.4 9427 1995-10-24 2024-10-11 02:37:07.000 1995-10-24 2024-10-11 02:37:07 +9428 9428 9429 942.8 1885.6000000000001 9428 1995-10-25 2024-10-11 02:37:08.000 1995-10-25 2024-10-11 02:37:08 +9429 9429 9430 942.9 1885.8000000000002 9429 1995-10-26 2024-10-11 02:37:09.000 1995-10-26 2024-10-11 02:37:09 +9430 9430 9431 943 1886 9430 1995-10-27 2024-10-11 02:37:10.000 1995-10-27 2024-10-11 02:37:10 +9431 9431 9432 943.1 1886.2 9431 1995-10-28 2024-10-11 02:37:11.000 1995-10-28 2024-10-11 02:37:11 +9432 9432 9433 943.2 1886.4 9432 1995-10-29 2024-10-11 02:37:12.000 1995-10-29 2024-10-11 02:37:12 +9433 9433 9434 943.3 1886.6000000000001 9433 1995-10-30 2024-10-11 02:37:13.000 1995-10-30 2024-10-11 02:37:13 +9434 9434 9435 943.4 1886.8000000000002 9434 1995-10-31 2024-10-11 02:37:14.000 1995-10-31 2024-10-11 02:37:14 +9435 9435 9436 943.5 1887 9435 1995-11-01 2024-10-11 02:37:15.000 1995-11-01 2024-10-11 02:37:15 +9436 9436 9437 943.6 1887.2 9436 1995-11-02 2024-10-11 02:37:16.000 1995-11-02 2024-10-11 02:37:16 +9437 9437 9438 943.7 1887.4 9437 1995-11-03 2024-10-11 02:37:17.000 1995-11-03 2024-10-11 02:37:17 +9438 9438 9439 943.8 1887.6000000000001 9438 1995-11-04 2024-10-11 02:37:18.000 1995-11-04 2024-10-11 02:37:18 +9439 9439 9440 943.9 1887.8000000000002 9439 1995-11-05 2024-10-11 02:37:19.000 1995-11-05 2024-10-11 02:37:19 +9440 9440 9441 944 1888 9440 1995-11-06 2024-10-11 02:37:20.000 1995-11-06 2024-10-11 02:37:20 +9441 9441 9442 944.1 1888.2 9441 1995-11-07 2024-10-11 02:37:21.000 1995-11-07 2024-10-11 02:37:21 +9442 9442 9443 944.2 1888.4 9442 1995-11-08 2024-10-11 02:37:22.000 1995-11-08 2024-10-11 02:37:22 +9443 9443 9444 944.3 1888.6000000000001 9443 1995-11-09 2024-10-11 02:37:23.000 1995-11-09 2024-10-11 02:37:23 +9444 9444 9445 944.4 1888.8000000000002 9444 1995-11-10 2024-10-11 02:37:24.000 1995-11-10 2024-10-11 02:37:24 +9445 9445 9446 944.5 1889 9445 1995-11-11 2024-10-11 02:37:25.000 1995-11-11 2024-10-11 02:37:25 +9446 9446 9447 944.6 1889.2 9446 1995-11-12 2024-10-11 02:37:26.000 1995-11-12 2024-10-11 02:37:26 +9447 9447 9448 944.7 1889.4 9447 1995-11-13 2024-10-11 02:37:27.000 1995-11-13 2024-10-11 02:37:27 +9448 9448 9449 944.8 1889.6000000000001 9448 1995-11-14 2024-10-11 02:37:28.000 1995-11-14 2024-10-11 02:37:28 +9449 9449 9450 944.9 1889.8000000000002 9449 1995-11-15 2024-10-11 02:37:29.000 1995-11-15 2024-10-11 02:37:29 +9450 9450 9451 945 1890 9450 1995-11-16 2024-10-11 02:37:30.000 1995-11-16 2024-10-11 02:37:30 +9451 9451 9452 945.1 1890.2 9451 1995-11-17 2024-10-11 02:37:31.000 1995-11-17 2024-10-11 02:37:31 +9452 9452 9453 945.2 1890.4 9452 1995-11-18 2024-10-11 02:37:32.000 1995-11-18 2024-10-11 02:37:32 +9453 9453 9454 945.3 1890.6000000000001 9453 1995-11-19 2024-10-11 02:37:33.000 1995-11-19 2024-10-11 02:37:33 +9454 9454 9455 945.4 1890.8000000000002 9454 1995-11-20 2024-10-11 02:37:34.000 1995-11-20 2024-10-11 02:37:34 +9455 9455 9456 945.5 1891 9455 1995-11-21 2024-10-11 02:37:35.000 1995-11-21 2024-10-11 02:37:35 +9456 9456 9457 945.6 1891.2 9456 1995-11-22 2024-10-11 02:37:36.000 1995-11-22 2024-10-11 02:37:36 +9457 9457 9458 945.7 1891.4 9457 1995-11-23 2024-10-11 02:37:37.000 1995-11-23 2024-10-11 02:37:37 +9458 9458 9459 945.8 1891.6000000000001 9458 1995-11-24 2024-10-11 02:37:38.000 1995-11-24 2024-10-11 02:37:38 +9459 9459 9460 945.9 1891.8000000000002 9459 1995-11-25 2024-10-11 02:37:39.000 1995-11-25 2024-10-11 02:37:39 +9460 9460 9461 946 1892 9460 1995-11-26 2024-10-11 02:37:40.000 1995-11-26 2024-10-11 02:37:40 +9461 9461 9462 946.1 1892.2 9461 1995-11-27 2024-10-11 02:37:41.000 1995-11-27 2024-10-11 02:37:41 +9462 9462 9463 946.2 1892.4 9462 1995-11-28 2024-10-11 02:37:42.000 1995-11-28 2024-10-11 02:37:42 +9463 9463 9464 946.3 1892.6000000000001 9463 1995-11-29 2024-10-11 02:37:43.000 1995-11-29 2024-10-11 02:37:43 +9464 9464 9465 946.4 1892.8000000000002 9464 1995-11-30 2024-10-11 02:37:44.000 1995-11-30 2024-10-11 02:37:44 +9465 9465 9466 946.5 1893 9465 1995-12-01 2024-10-11 02:37:45.000 1995-12-01 2024-10-11 02:37:45 +9466 9466 9467 946.6 1893.2 9466 1995-12-02 2024-10-11 02:37:46.000 1995-12-02 2024-10-11 02:37:46 +9467 9467 9468 946.7 1893.4 9467 1995-12-03 2024-10-11 02:37:47.000 1995-12-03 2024-10-11 02:37:47 +9468 9468 9469 946.8 1893.6000000000001 9468 1995-12-04 2024-10-11 02:37:48.000 1995-12-04 2024-10-11 02:37:48 +9469 9469 9470 946.9 1893.8000000000002 9469 1995-12-05 2024-10-11 02:37:49.000 1995-12-05 2024-10-11 02:37:49 +9470 9470 9471 947 1894 9470 1995-12-06 2024-10-11 02:37:50.000 1995-12-06 2024-10-11 02:37:50 +9471 9471 9472 947.1 1894.2 9471 1995-12-07 2024-10-11 02:37:51.000 1995-12-07 2024-10-11 02:37:51 +9472 9472 9473 947.2 1894.4 9472 1995-12-08 2024-10-11 02:37:52.000 1995-12-08 2024-10-11 02:37:52 +9473 9473 9474 947.3 1894.6000000000001 9473 1995-12-09 2024-10-11 02:37:53.000 1995-12-09 2024-10-11 02:37:53 +9474 9474 9475 947.4 1894.8000000000002 9474 1995-12-10 2024-10-11 02:37:54.000 1995-12-10 2024-10-11 02:37:54 +9475 9475 9476 947.5 1895 9475 1995-12-11 2024-10-11 02:37:55.000 1995-12-11 2024-10-11 02:37:55 +9476 9476 9477 947.6 1895.2 9476 1995-12-12 2024-10-11 02:37:56.000 1995-12-12 2024-10-11 02:37:56 +9477 9477 9478 947.7 1895.4 9477 1995-12-13 2024-10-11 02:37:57.000 1995-12-13 2024-10-11 02:37:57 +9478 9478 9479 947.8 1895.6000000000001 9478 1995-12-14 2024-10-11 02:37:58.000 1995-12-14 2024-10-11 02:37:58 +9479 9479 9480 947.9 1895.8000000000002 9479 1995-12-15 2024-10-11 02:37:59.000 1995-12-15 2024-10-11 02:37:59 +9480 9480 9481 948 1896 9480 1995-12-16 2024-10-11 02:38:00.000 1995-12-16 2024-10-11 02:38:00 +9481 9481 9482 948.1 1896.2 9481 1995-12-17 2024-10-11 02:38:01.000 1995-12-17 2024-10-11 02:38:01 +9482 9482 9483 948.2 1896.4 9482 1995-12-18 2024-10-11 02:38:02.000 1995-12-18 2024-10-11 02:38:02 +9483 9483 9484 948.3 1896.6000000000001 9483 1995-12-19 2024-10-11 02:38:03.000 1995-12-19 2024-10-11 02:38:03 +9484 9484 9485 948.4 1896.8000000000002 9484 1995-12-20 2024-10-11 02:38:04.000 1995-12-20 2024-10-11 02:38:04 +9485 9485 9486 948.5 1897 9485 1995-12-21 2024-10-11 02:38:05.000 1995-12-21 2024-10-11 02:38:05 +9486 9486 9487 948.6 1897.2 9486 1995-12-22 2024-10-11 02:38:06.000 1995-12-22 2024-10-11 02:38:06 +9487 9487 9488 948.7 1897.4 9487 1995-12-23 2024-10-11 02:38:07.000 1995-12-23 2024-10-11 02:38:07 +9488 9488 9489 948.8 1897.6000000000001 9488 1995-12-24 2024-10-11 02:38:08.000 1995-12-24 2024-10-11 02:38:08 +9489 9489 9490 948.9 1897.8000000000002 9489 1995-12-25 2024-10-11 02:38:09.000 1995-12-25 2024-10-11 02:38:09 +9490 9490 9491 949 1898 9490 1995-12-26 2024-10-11 02:38:10.000 1995-12-26 2024-10-11 02:38:10 +9491 9491 9492 949.1 1898.2 9491 1995-12-27 2024-10-11 02:38:11.000 1995-12-27 2024-10-11 02:38:11 +9492 9492 9493 949.2 1898.4 9492 1995-12-28 2024-10-11 02:38:12.000 1995-12-28 2024-10-11 02:38:12 +9493 9493 9494 949.3 1898.6000000000001 9493 1995-12-29 2024-10-11 02:38:13.000 1995-12-29 2024-10-11 02:38:13 +9494 9494 9495 949.4 1898.8000000000002 9494 1995-12-30 2024-10-11 02:38:14.000 1995-12-30 2024-10-11 02:38:14 +9495 9495 9496 949.5 1899 9495 1995-12-31 2024-10-11 02:38:15.000 1995-12-31 2024-10-11 02:38:15 +9496 9496 9497 949.6 1899.2 9496 1996-01-01 2024-10-11 02:38:16.000 1996-01-01 2024-10-11 02:38:16 +9497 9497 9498 949.7 1899.4 9497 1996-01-02 2024-10-11 02:38:17.000 1996-01-02 2024-10-11 02:38:17 +9498 9498 9499 949.8 1899.6000000000001 9498 1996-01-03 2024-10-11 02:38:18.000 1996-01-03 2024-10-11 02:38:18 +9499 9499 9500 949.9 1899.8000000000002 9499 1996-01-04 2024-10-11 02:38:19.000 1996-01-04 2024-10-11 02:38:19 +9500 9500 9501 950 1900 9500 1996-01-05 2024-10-11 02:38:20.000 1996-01-05 2024-10-11 02:38:20 +9501 9501 9502 950.1 1900.2 9501 1996-01-06 2024-10-11 02:38:21.000 1996-01-06 2024-10-11 02:38:21 +9502 9502 9503 950.2 1900.4 9502 1996-01-07 2024-10-11 02:38:22.000 1996-01-07 2024-10-11 02:38:22 +9503 9503 9504 950.3 1900.6000000000001 9503 1996-01-08 2024-10-11 02:38:23.000 1996-01-08 2024-10-11 02:38:23 +9504 9504 9505 950.4 1900.8000000000002 9504 1996-01-09 2024-10-11 02:38:24.000 1996-01-09 2024-10-11 02:38:24 +9505 9505 9506 950.5 1901 9505 1996-01-10 2024-10-11 02:38:25.000 1996-01-10 2024-10-11 02:38:25 +9506 9506 9507 950.6 1901.2 9506 1996-01-11 2024-10-11 02:38:26.000 1996-01-11 2024-10-11 02:38:26 +9507 9507 9508 950.7 1901.4 9507 1996-01-12 2024-10-11 02:38:27.000 1996-01-12 2024-10-11 02:38:27 +9508 9508 9509 950.8 1901.6000000000001 9508 1996-01-13 2024-10-11 02:38:28.000 1996-01-13 2024-10-11 02:38:28 +9509 9509 9510 950.9 1901.8000000000002 9509 1996-01-14 2024-10-11 02:38:29.000 1996-01-14 2024-10-11 02:38:29 +9510 9510 9511 951 1902 9510 1996-01-15 2024-10-11 02:38:30.000 1996-01-15 2024-10-11 02:38:30 +9511 9511 9512 951.1 1902.2 9511 1996-01-16 2024-10-11 02:38:31.000 1996-01-16 2024-10-11 02:38:31 +9512 9512 9513 951.2 1902.4 9512 1996-01-17 2024-10-11 02:38:32.000 1996-01-17 2024-10-11 02:38:32 +9513 9513 9514 951.3 1902.6000000000001 9513 1996-01-18 2024-10-11 02:38:33.000 1996-01-18 2024-10-11 02:38:33 +9514 9514 9515 951.4 1902.8000000000002 9514 1996-01-19 2024-10-11 02:38:34.000 1996-01-19 2024-10-11 02:38:34 +9515 9515 9516 951.5 1903 9515 1996-01-20 2024-10-11 02:38:35.000 1996-01-20 2024-10-11 02:38:35 +9516 9516 9517 951.6 1903.2 9516 1996-01-21 2024-10-11 02:38:36.000 1996-01-21 2024-10-11 02:38:36 +9517 9517 9518 951.7 1903.4 9517 1996-01-22 2024-10-11 02:38:37.000 1996-01-22 2024-10-11 02:38:37 +9518 9518 9519 951.8 1903.6000000000001 9518 1996-01-23 2024-10-11 02:38:38.000 1996-01-23 2024-10-11 02:38:38 +9519 9519 9520 951.9 1903.8000000000002 9519 1996-01-24 2024-10-11 02:38:39.000 1996-01-24 2024-10-11 02:38:39 +9520 9520 9521 952 1904 9520 1996-01-25 2024-10-11 02:38:40.000 1996-01-25 2024-10-11 02:38:40 +9521 9521 9522 952.1 1904.2 9521 1996-01-26 2024-10-11 02:38:41.000 1996-01-26 2024-10-11 02:38:41 +9522 9522 9523 952.2 1904.4 9522 1996-01-27 2024-10-11 02:38:42.000 1996-01-27 2024-10-11 02:38:42 +9523 9523 9524 952.3 1904.6000000000001 9523 1996-01-28 2024-10-11 02:38:43.000 1996-01-28 2024-10-11 02:38:43 +9524 9524 9525 952.4 1904.8000000000002 9524 1996-01-29 2024-10-11 02:38:44.000 1996-01-29 2024-10-11 02:38:44 +9525 9525 9526 952.5 1905 9525 1996-01-30 2024-10-11 02:38:45.000 1996-01-30 2024-10-11 02:38:45 +9526 9526 9527 952.6 1905.2 9526 1996-01-31 2024-10-11 02:38:46.000 1996-01-31 2024-10-11 02:38:46 +9527 9527 9528 952.7 1905.4 9527 1996-02-01 2024-10-11 02:38:47.000 1996-02-01 2024-10-11 02:38:47 +9528 9528 9529 952.8 1905.6000000000001 9528 1996-02-02 2024-10-11 02:38:48.000 1996-02-02 2024-10-11 02:38:48 +9529 9529 9530 952.9 1905.8000000000002 9529 1996-02-03 2024-10-11 02:38:49.000 1996-02-03 2024-10-11 02:38:49 +9530 9530 9531 953 1906 9530 1996-02-04 2024-10-11 02:38:50.000 1996-02-04 2024-10-11 02:38:50 +9531 9531 9532 953.1 1906.2 9531 1996-02-05 2024-10-11 02:38:51.000 1996-02-05 2024-10-11 02:38:51 +9532 9532 9533 953.2 1906.4 9532 1996-02-06 2024-10-11 02:38:52.000 1996-02-06 2024-10-11 02:38:52 +9533 9533 9534 953.3 1906.6000000000001 9533 1996-02-07 2024-10-11 02:38:53.000 1996-02-07 2024-10-11 02:38:53 +9534 9534 9535 953.4 1906.8000000000002 9534 1996-02-08 2024-10-11 02:38:54.000 1996-02-08 2024-10-11 02:38:54 +9535 9535 9536 953.5 1907 9535 1996-02-09 2024-10-11 02:38:55.000 1996-02-09 2024-10-11 02:38:55 +9536 9536 9537 953.6 1907.2 9536 1996-02-10 2024-10-11 02:38:56.000 1996-02-10 2024-10-11 02:38:56 +9537 9537 9538 953.7 1907.4 9537 1996-02-11 2024-10-11 02:38:57.000 1996-02-11 2024-10-11 02:38:57 +9538 9538 9539 953.8 1907.6000000000001 9538 1996-02-12 2024-10-11 02:38:58.000 1996-02-12 2024-10-11 02:38:58 +9539 9539 9540 953.9 1907.8000000000002 9539 1996-02-13 2024-10-11 02:38:59.000 1996-02-13 2024-10-11 02:38:59 +9540 9540 9541 954 1908 9540 1996-02-14 2024-10-11 02:39:00.000 1996-02-14 2024-10-11 02:39:00 +9541 9541 9542 954.1 1908.2 9541 1996-02-15 2024-10-11 02:39:01.000 1996-02-15 2024-10-11 02:39:01 +9542 9542 9543 954.2 1908.4 9542 1996-02-16 2024-10-11 02:39:02.000 1996-02-16 2024-10-11 02:39:02 +9543 9543 9544 954.3 1908.6000000000001 9543 1996-02-17 2024-10-11 02:39:03.000 1996-02-17 2024-10-11 02:39:03 +9544 9544 9545 954.4 1908.8000000000002 9544 1996-02-18 2024-10-11 02:39:04.000 1996-02-18 2024-10-11 02:39:04 +9545 9545 9546 954.5 1909 9545 1996-02-19 2024-10-11 02:39:05.000 1996-02-19 2024-10-11 02:39:05 +9546 9546 9547 954.6 1909.2 9546 1996-02-20 2024-10-11 02:39:06.000 1996-02-20 2024-10-11 02:39:06 +9547 9547 9548 954.7 1909.4 9547 1996-02-21 2024-10-11 02:39:07.000 1996-02-21 2024-10-11 02:39:07 +9548 9548 9549 954.8 1909.6000000000001 9548 1996-02-22 2024-10-11 02:39:08.000 1996-02-22 2024-10-11 02:39:08 +9549 9549 9550 954.9 1909.8000000000002 9549 1996-02-23 2024-10-11 02:39:09.000 1996-02-23 2024-10-11 02:39:09 +9550 9550 9551 955 1910 9550 1996-02-24 2024-10-11 02:39:10.000 1996-02-24 2024-10-11 02:39:10 +9551 9551 9552 955.1 1910.2 9551 1996-02-25 2024-10-11 02:39:11.000 1996-02-25 2024-10-11 02:39:11 +9552 9552 9553 955.2 1910.4 9552 1996-02-26 2024-10-11 02:39:12.000 1996-02-26 2024-10-11 02:39:12 +9553 9553 9554 955.3 1910.6000000000001 9553 1996-02-27 2024-10-11 02:39:13.000 1996-02-27 2024-10-11 02:39:13 +9554 9554 9555 955.4 1910.8000000000002 9554 1996-02-28 2024-10-11 02:39:14.000 1996-02-28 2024-10-11 02:39:14 +9555 9555 9556 955.5 1911 9555 1996-02-29 2024-10-11 02:39:15.000 1996-02-29 2024-10-11 02:39:15 +9556 9556 9557 955.6 1911.2 9556 1996-03-01 2024-10-11 02:39:16.000 1996-03-01 2024-10-11 02:39:16 +9557 9557 9558 955.7 1911.4 9557 1996-03-02 2024-10-11 02:39:17.000 1996-03-02 2024-10-11 02:39:17 +9558 9558 9559 955.8 1911.6000000000001 9558 1996-03-03 2024-10-11 02:39:18.000 1996-03-03 2024-10-11 02:39:18 +9559 9559 9560 955.9 1911.8000000000002 9559 1996-03-04 2024-10-11 02:39:19.000 1996-03-04 2024-10-11 02:39:19 +9560 9560 9561 956 1912 9560 1996-03-05 2024-10-11 02:39:20.000 1996-03-05 2024-10-11 02:39:20 +9561 9561 9562 956.1 1912.2 9561 1996-03-06 2024-10-11 02:39:21.000 1996-03-06 2024-10-11 02:39:21 +9562 9562 9563 956.2 1912.4 9562 1996-03-07 2024-10-11 02:39:22.000 1996-03-07 2024-10-11 02:39:22 +9563 9563 9564 956.3 1912.6000000000001 9563 1996-03-08 2024-10-11 02:39:23.000 1996-03-08 2024-10-11 02:39:23 +9564 9564 9565 956.4 1912.8000000000002 9564 1996-03-09 2024-10-11 02:39:24.000 1996-03-09 2024-10-11 02:39:24 +9565 9565 9566 956.5 1913 9565 1996-03-10 2024-10-11 02:39:25.000 1996-03-10 2024-10-11 02:39:25 +9566 9566 9567 956.6 1913.2 9566 1996-03-11 2024-10-11 02:39:26.000 1996-03-11 2024-10-11 02:39:26 +9567 9567 9568 956.7 1913.4 9567 1996-03-12 2024-10-11 02:39:27.000 1996-03-12 2024-10-11 02:39:27 +9568 9568 9569 956.8 1913.6000000000001 9568 1996-03-13 2024-10-11 02:39:28.000 1996-03-13 2024-10-11 02:39:28 +9569 9569 9570 956.9 1913.8000000000002 9569 1996-03-14 2024-10-11 02:39:29.000 1996-03-14 2024-10-11 02:39:29 +9570 9570 9571 957 1914 9570 1996-03-15 2024-10-11 02:39:30.000 1996-03-15 2024-10-11 02:39:30 +9571 9571 9572 957.1 1914.2 9571 1996-03-16 2024-10-11 02:39:31.000 1996-03-16 2024-10-11 02:39:31 +9572 9572 9573 957.2 1914.4 9572 1996-03-17 2024-10-11 02:39:32.000 1996-03-17 2024-10-11 02:39:32 +9573 9573 9574 957.3 1914.6000000000001 9573 1996-03-18 2024-10-11 02:39:33.000 1996-03-18 2024-10-11 02:39:33 +9574 9574 9575 957.4 1914.8000000000002 9574 1996-03-19 2024-10-11 02:39:34.000 1996-03-19 2024-10-11 02:39:34 +9575 9575 9576 957.5 1915 9575 1996-03-20 2024-10-11 02:39:35.000 1996-03-20 2024-10-11 02:39:35 +9576 9576 9577 957.6 1915.2 9576 1996-03-21 2024-10-11 02:39:36.000 1996-03-21 2024-10-11 02:39:36 +9577 9577 9578 957.7 1915.4 9577 1996-03-22 2024-10-11 02:39:37.000 1996-03-22 2024-10-11 02:39:37 +9578 9578 9579 957.8 1915.6000000000001 9578 1996-03-23 2024-10-11 02:39:38.000 1996-03-23 2024-10-11 02:39:38 +9579 9579 9580 957.9 1915.8000000000002 9579 1996-03-24 2024-10-11 02:39:39.000 1996-03-24 2024-10-11 02:39:39 +9580 9580 9581 958 1916 9580 1996-03-25 2024-10-11 02:39:40.000 1996-03-25 2024-10-11 02:39:40 +9581 9581 9582 958.1 1916.2 9581 1996-03-26 2024-10-11 02:39:41.000 1996-03-26 2024-10-11 02:39:41 +9582 9582 9583 958.2 1916.4 9582 1996-03-27 2024-10-11 02:39:42.000 1996-03-27 2024-10-11 02:39:42 +9583 9583 9584 958.3 1916.6000000000001 9583 1996-03-28 2024-10-11 02:39:43.000 1996-03-28 2024-10-11 02:39:43 +9584 9584 9585 958.4 1916.8000000000002 9584 1996-03-29 2024-10-11 02:39:44.000 1996-03-29 2024-10-11 02:39:44 +9585 9585 9586 958.5 1917 9585 1996-03-30 2024-10-11 02:39:45.000 1996-03-30 2024-10-11 02:39:45 +9586 9586 9587 958.6 1917.2 9586 1996-03-31 2024-10-11 02:39:46.000 1996-03-31 2024-10-11 02:39:46 +9587 9587 9588 958.7 1917.4 9587 1996-04-01 2024-10-11 02:39:47.000 1996-04-01 2024-10-11 02:39:47 +9588 9588 9589 958.8 1917.6000000000001 9588 1996-04-02 2024-10-11 02:39:48.000 1996-04-02 2024-10-11 02:39:48 +9589 9589 9590 958.9 1917.8000000000002 9589 1996-04-03 2024-10-11 02:39:49.000 1996-04-03 2024-10-11 02:39:49 +9590 9590 9591 959 1918 9590 1996-04-04 2024-10-11 02:39:50.000 1996-04-04 2024-10-11 02:39:50 +9591 9591 9592 959.1 1918.2 9591 1996-04-05 2024-10-11 02:39:51.000 1996-04-05 2024-10-11 02:39:51 +9592 9592 9593 959.2 1918.4 9592 1996-04-06 2024-10-11 02:39:52.000 1996-04-06 2024-10-11 02:39:52 +9593 9593 9594 959.3 1918.6000000000001 9593 1996-04-07 2024-10-11 02:39:53.000 1996-04-07 2024-10-11 02:39:53 +9594 9594 9595 959.4 1918.8000000000002 9594 1996-04-08 2024-10-11 02:39:54.000 1996-04-08 2024-10-11 02:39:54 +9595 9595 9596 959.5 1919 9595 1996-04-09 2024-10-11 02:39:55.000 1996-04-09 2024-10-11 02:39:55 +9596 9596 9597 959.6 1919.2 9596 1996-04-10 2024-10-11 02:39:56.000 1996-04-10 2024-10-11 02:39:56 +9597 9597 9598 959.7 1919.4 9597 1996-04-11 2024-10-11 02:39:57.000 1996-04-11 2024-10-11 02:39:57 +9598 9598 9599 959.8 1919.6000000000001 9598 1996-04-12 2024-10-11 02:39:58.000 1996-04-12 2024-10-11 02:39:58 +9599 9599 9600 959.9 1919.8000000000002 9599 1996-04-13 2024-10-11 02:39:59.000 1996-04-13 2024-10-11 02:39:59 +9600 9600 9601 960 1920 9600 1996-04-14 2024-10-11 02:40:00.000 1996-04-14 2024-10-11 02:40:00 +9601 9601 9602 960.1 1920.2 9601 1996-04-15 2024-10-11 02:40:01.000 1996-04-15 2024-10-11 02:40:01 +9602 9602 9603 960.2 1920.4 9602 1996-04-16 2024-10-11 02:40:02.000 1996-04-16 2024-10-11 02:40:02 +9603 9603 9604 960.3 1920.6000000000001 9603 1996-04-17 2024-10-11 02:40:03.000 1996-04-17 2024-10-11 02:40:03 +9604 9604 9605 960.4 1920.8000000000002 9604 1996-04-18 2024-10-11 02:40:04.000 1996-04-18 2024-10-11 02:40:04 +9605 9605 9606 960.5 1921 9605 1996-04-19 2024-10-11 02:40:05.000 1996-04-19 2024-10-11 02:40:05 +9606 9606 9607 960.6 1921.2 9606 1996-04-20 2024-10-11 02:40:06.000 1996-04-20 2024-10-11 02:40:06 +9607 9607 9608 960.7 1921.4 9607 1996-04-21 2024-10-11 02:40:07.000 1996-04-21 2024-10-11 02:40:07 +9608 9608 9609 960.8 1921.6000000000001 9608 1996-04-22 2024-10-11 02:40:08.000 1996-04-22 2024-10-11 02:40:08 +9609 9609 9610 960.9 1921.8000000000002 9609 1996-04-23 2024-10-11 02:40:09.000 1996-04-23 2024-10-11 02:40:09 +9610 9610 9611 961 1922 9610 1996-04-24 2024-10-11 02:40:10.000 1996-04-24 2024-10-11 02:40:10 +9611 9611 9612 961.1 1922.2 9611 1996-04-25 2024-10-11 02:40:11.000 1996-04-25 2024-10-11 02:40:11 +9612 9612 9613 961.2 1922.4 9612 1996-04-26 2024-10-11 02:40:12.000 1996-04-26 2024-10-11 02:40:12 +9613 9613 9614 961.3 1922.6000000000001 9613 1996-04-27 2024-10-11 02:40:13.000 1996-04-27 2024-10-11 02:40:13 +9614 9614 9615 961.4 1922.8000000000002 9614 1996-04-28 2024-10-11 02:40:14.000 1996-04-28 2024-10-11 02:40:14 +9615 9615 9616 961.5 1923 9615 1996-04-29 2024-10-11 02:40:15.000 1996-04-29 2024-10-11 02:40:15 +9616 9616 9617 961.6 1923.2 9616 1996-04-30 2024-10-11 02:40:16.000 1996-04-30 2024-10-11 02:40:16 +9617 9617 9618 961.7 1923.4 9617 1996-05-01 2024-10-11 02:40:17.000 1996-05-01 2024-10-11 02:40:17 +9618 9618 9619 961.8 1923.6000000000001 9618 1996-05-02 2024-10-11 02:40:18.000 1996-05-02 2024-10-11 02:40:18 +9619 9619 9620 961.9 1923.8000000000002 9619 1996-05-03 2024-10-11 02:40:19.000 1996-05-03 2024-10-11 02:40:19 +9620 9620 9621 962 1924 9620 1996-05-04 2024-10-11 02:40:20.000 1996-05-04 2024-10-11 02:40:20 +9621 9621 9622 962.1 1924.2 9621 1996-05-05 2024-10-11 02:40:21.000 1996-05-05 2024-10-11 02:40:21 +9622 9622 9623 962.2 1924.4 9622 1996-05-06 2024-10-11 02:40:22.000 1996-05-06 2024-10-11 02:40:22 +9623 9623 9624 962.3 1924.6000000000001 9623 1996-05-07 2024-10-11 02:40:23.000 1996-05-07 2024-10-11 02:40:23 +9624 9624 9625 962.4 1924.8000000000002 9624 1996-05-08 2024-10-11 02:40:24.000 1996-05-08 2024-10-11 02:40:24 +9625 9625 9626 962.5 1925 9625 1996-05-09 2024-10-11 02:40:25.000 1996-05-09 2024-10-11 02:40:25 +9626 9626 9627 962.6 1925.2 9626 1996-05-10 2024-10-11 02:40:26.000 1996-05-10 2024-10-11 02:40:26 +9627 9627 9628 962.7 1925.4 9627 1996-05-11 2024-10-11 02:40:27.000 1996-05-11 2024-10-11 02:40:27 +9628 9628 9629 962.8 1925.6000000000001 9628 1996-05-12 2024-10-11 02:40:28.000 1996-05-12 2024-10-11 02:40:28 +9629 9629 9630 962.9 1925.8000000000002 9629 1996-05-13 2024-10-11 02:40:29.000 1996-05-13 2024-10-11 02:40:29 +9630 9630 9631 963 1926 9630 1996-05-14 2024-10-11 02:40:30.000 1996-05-14 2024-10-11 02:40:30 +9631 9631 9632 963.1 1926.2 9631 1996-05-15 2024-10-11 02:40:31.000 1996-05-15 2024-10-11 02:40:31 +9632 9632 9633 963.2 1926.4 9632 1996-05-16 2024-10-11 02:40:32.000 1996-05-16 2024-10-11 02:40:32 +9633 9633 9634 963.3 1926.6000000000001 9633 1996-05-17 2024-10-11 02:40:33.000 1996-05-17 2024-10-11 02:40:33 +9634 9634 9635 963.4 1926.8000000000002 9634 1996-05-18 2024-10-11 02:40:34.000 1996-05-18 2024-10-11 02:40:34 +9635 9635 9636 963.5 1927 9635 1996-05-19 2024-10-11 02:40:35.000 1996-05-19 2024-10-11 02:40:35 +9636 9636 9637 963.6 1927.2 9636 1996-05-20 2024-10-11 02:40:36.000 1996-05-20 2024-10-11 02:40:36 +9637 9637 9638 963.7 1927.4 9637 1996-05-21 2024-10-11 02:40:37.000 1996-05-21 2024-10-11 02:40:37 +9638 9638 9639 963.8 1927.6000000000001 9638 1996-05-22 2024-10-11 02:40:38.000 1996-05-22 2024-10-11 02:40:38 +9639 9639 9640 963.9 1927.8000000000002 9639 1996-05-23 2024-10-11 02:40:39.000 1996-05-23 2024-10-11 02:40:39 +9640 9640 9641 964 1928 9640 1996-05-24 2024-10-11 02:40:40.000 1996-05-24 2024-10-11 02:40:40 +9641 9641 9642 964.1 1928.2 9641 1996-05-25 2024-10-11 02:40:41.000 1996-05-25 2024-10-11 02:40:41 +9642 9642 9643 964.2 1928.4 9642 1996-05-26 2024-10-11 02:40:42.000 1996-05-26 2024-10-11 02:40:42 +9643 9643 9644 964.3 1928.6000000000001 9643 1996-05-27 2024-10-11 02:40:43.000 1996-05-27 2024-10-11 02:40:43 +9644 9644 9645 964.4 1928.8000000000002 9644 1996-05-28 2024-10-11 02:40:44.000 1996-05-28 2024-10-11 02:40:44 +9645 9645 9646 964.5 1929 9645 1996-05-29 2024-10-11 02:40:45.000 1996-05-29 2024-10-11 02:40:45 +9646 9646 9647 964.6 1929.2 9646 1996-05-30 2024-10-11 02:40:46.000 1996-05-30 2024-10-11 02:40:46 +9647 9647 9648 964.7 1929.4 9647 1996-05-31 2024-10-11 02:40:47.000 1996-05-31 2024-10-11 02:40:47 +9648 9648 9649 964.8 1929.6000000000001 9648 1996-06-01 2024-10-11 02:40:48.000 1996-06-01 2024-10-11 02:40:48 +9649 9649 9650 964.9 1929.8000000000002 9649 1996-06-02 2024-10-11 02:40:49.000 1996-06-02 2024-10-11 02:40:49 +9650 9650 9651 965 1930 9650 1996-06-03 2024-10-11 02:40:50.000 1996-06-03 2024-10-11 02:40:50 +9651 9651 9652 965.1 1930.2 9651 1996-06-04 2024-10-11 02:40:51.000 1996-06-04 2024-10-11 02:40:51 +9652 9652 9653 965.2 1930.4 9652 1996-06-05 2024-10-11 02:40:52.000 1996-06-05 2024-10-11 02:40:52 +9653 9653 9654 965.3 1930.6000000000001 9653 1996-06-06 2024-10-11 02:40:53.000 1996-06-06 2024-10-11 02:40:53 +9654 9654 9655 965.4 1930.8000000000002 9654 1996-06-07 2024-10-11 02:40:54.000 1996-06-07 2024-10-11 02:40:54 +9655 9655 9656 965.5 1931 9655 1996-06-08 2024-10-11 02:40:55.000 1996-06-08 2024-10-11 02:40:55 +9656 9656 9657 965.6 1931.2 9656 1996-06-09 2024-10-11 02:40:56.000 1996-06-09 2024-10-11 02:40:56 +9657 9657 9658 965.7 1931.4 9657 1996-06-10 2024-10-11 02:40:57.000 1996-06-10 2024-10-11 02:40:57 +9658 9658 9659 965.8 1931.6000000000001 9658 1996-06-11 2024-10-11 02:40:58.000 1996-06-11 2024-10-11 02:40:58 +9659 9659 9660 965.9 1931.8000000000002 9659 1996-06-12 2024-10-11 02:40:59.000 1996-06-12 2024-10-11 02:40:59 +9660 9660 9661 966 1932 9660 1996-06-13 2024-10-11 02:41:00.000 1996-06-13 2024-10-11 02:41:00 +9661 9661 9662 966.1 1932.2 9661 1996-06-14 2024-10-11 02:41:01.000 1996-06-14 2024-10-11 02:41:01 +9662 9662 9663 966.2 1932.4 9662 1996-06-15 2024-10-11 02:41:02.000 1996-06-15 2024-10-11 02:41:02 +9663 9663 9664 966.3 1932.6000000000001 9663 1996-06-16 2024-10-11 02:41:03.000 1996-06-16 2024-10-11 02:41:03 +9664 9664 9665 966.4 1932.8000000000002 9664 1996-06-17 2024-10-11 02:41:04.000 1996-06-17 2024-10-11 02:41:04 +9665 9665 9666 966.5 1933 9665 1996-06-18 2024-10-11 02:41:05.000 1996-06-18 2024-10-11 02:41:05 +9666 9666 9667 966.6 1933.2 9666 1996-06-19 2024-10-11 02:41:06.000 1996-06-19 2024-10-11 02:41:06 +9667 9667 9668 966.7 1933.4 9667 1996-06-20 2024-10-11 02:41:07.000 1996-06-20 2024-10-11 02:41:07 +9668 9668 9669 966.8 1933.6000000000001 9668 1996-06-21 2024-10-11 02:41:08.000 1996-06-21 2024-10-11 02:41:08 +9669 9669 9670 966.9 1933.8000000000002 9669 1996-06-22 2024-10-11 02:41:09.000 1996-06-22 2024-10-11 02:41:09 +9670 9670 9671 967 1934 9670 1996-06-23 2024-10-11 02:41:10.000 1996-06-23 2024-10-11 02:41:10 +9671 9671 9672 967.1 1934.2 9671 1996-06-24 2024-10-11 02:41:11.000 1996-06-24 2024-10-11 02:41:11 +9672 9672 9673 967.2 1934.4 9672 1996-06-25 2024-10-11 02:41:12.000 1996-06-25 2024-10-11 02:41:12 +9673 9673 9674 967.3 1934.6000000000001 9673 1996-06-26 2024-10-11 02:41:13.000 1996-06-26 2024-10-11 02:41:13 +9674 9674 9675 967.4 1934.8000000000002 9674 1996-06-27 2024-10-11 02:41:14.000 1996-06-27 2024-10-11 02:41:14 +9675 9675 9676 967.5 1935 9675 1996-06-28 2024-10-11 02:41:15.000 1996-06-28 2024-10-11 02:41:15 +9676 9676 9677 967.6 1935.2 9676 1996-06-29 2024-10-11 02:41:16.000 1996-06-29 2024-10-11 02:41:16 +9677 9677 9678 967.7 1935.4 9677 1996-06-30 2024-10-11 02:41:17.000 1996-06-30 2024-10-11 02:41:17 +9678 9678 9679 967.8 1935.6000000000001 9678 1996-07-01 2024-10-11 02:41:18.000 1996-07-01 2024-10-11 02:41:18 +9679 9679 9680 967.9 1935.8000000000002 9679 1996-07-02 2024-10-11 02:41:19.000 1996-07-02 2024-10-11 02:41:19 +9680 9680 9681 968 1936 9680 1996-07-03 2024-10-11 02:41:20.000 1996-07-03 2024-10-11 02:41:20 +9681 9681 9682 968.1 1936.2 9681 1996-07-04 2024-10-11 02:41:21.000 1996-07-04 2024-10-11 02:41:21 +9682 9682 9683 968.2 1936.4 9682 1996-07-05 2024-10-11 02:41:22.000 1996-07-05 2024-10-11 02:41:22 +9683 9683 9684 968.3 1936.6000000000001 9683 1996-07-06 2024-10-11 02:41:23.000 1996-07-06 2024-10-11 02:41:23 +9684 9684 9685 968.4 1936.8000000000002 9684 1996-07-07 2024-10-11 02:41:24.000 1996-07-07 2024-10-11 02:41:24 +9685 9685 9686 968.5 1937 9685 1996-07-08 2024-10-11 02:41:25.000 1996-07-08 2024-10-11 02:41:25 +9686 9686 9687 968.6 1937.2 9686 1996-07-09 2024-10-11 02:41:26.000 1996-07-09 2024-10-11 02:41:26 +9687 9687 9688 968.7 1937.4 9687 1996-07-10 2024-10-11 02:41:27.000 1996-07-10 2024-10-11 02:41:27 +9688 9688 9689 968.8 1937.6000000000001 9688 1996-07-11 2024-10-11 02:41:28.000 1996-07-11 2024-10-11 02:41:28 +9689 9689 9690 968.9 1937.8000000000002 9689 1996-07-12 2024-10-11 02:41:29.000 1996-07-12 2024-10-11 02:41:29 +9690 9690 9691 969 1938 9690 1996-07-13 2024-10-11 02:41:30.000 1996-07-13 2024-10-11 02:41:30 +9691 9691 9692 969.1 1938.2 9691 1996-07-14 2024-10-11 02:41:31.000 1996-07-14 2024-10-11 02:41:31 +9692 9692 9693 969.2 1938.4 9692 1996-07-15 2024-10-11 02:41:32.000 1996-07-15 2024-10-11 02:41:32 +9693 9693 9694 969.3 1938.6000000000001 9693 1996-07-16 2024-10-11 02:41:33.000 1996-07-16 2024-10-11 02:41:33 +9694 9694 9695 969.4 1938.8000000000002 9694 1996-07-17 2024-10-11 02:41:34.000 1996-07-17 2024-10-11 02:41:34 +9695 9695 9696 969.5 1939 9695 1996-07-18 2024-10-11 02:41:35.000 1996-07-18 2024-10-11 02:41:35 +9696 9696 9697 969.6 1939.2 9696 1996-07-19 2024-10-11 02:41:36.000 1996-07-19 2024-10-11 02:41:36 +9697 9697 9698 969.7 1939.4 9697 1996-07-20 2024-10-11 02:41:37.000 1996-07-20 2024-10-11 02:41:37 +9698 9698 9699 969.8 1939.6000000000001 9698 1996-07-21 2024-10-11 02:41:38.000 1996-07-21 2024-10-11 02:41:38 +9699 9699 9700 969.9 1939.8000000000002 9699 1996-07-22 2024-10-11 02:41:39.000 1996-07-22 2024-10-11 02:41:39 +9700 9700 9701 970 1940 9700 1996-07-23 2024-10-11 02:41:40.000 1996-07-23 2024-10-11 02:41:40 +9701 9701 9702 970.1 1940.2 9701 1996-07-24 2024-10-11 02:41:41.000 1996-07-24 2024-10-11 02:41:41 +9702 9702 9703 970.2 1940.4 9702 1996-07-25 2024-10-11 02:41:42.000 1996-07-25 2024-10-11 02:41:42 +9703 9703 9704 970.3 1940.6000000000001 9703 1996-07-26 2024-10-11 02:41:43.000 1996-07-26 2024-10-11 02:41:43 +9704 9704 9705 970.4 1940.8000000000002 9704 1996-07-27 2024-10-11 02:41:44.000 1996-07-27 2024-10-11 02:41:44 +9705 9705 9706 970.5 1941 9705 1996-07-28 2024-10-11 02:41:45.000 1996-07-28 2024-10-11 02:41:45 +9706 9706 9707 970.6 1941.2 9706 1996-07-29 2024-10-11 02:41:46.000 1996-07-29 2024-10-11 02:41:46 +9707 9707 9708 970.7 1941.4 9707 1996-07-30 2024-10-11 02:41:47.000 1996-07-30 2024-10-11 02:41:47 +9708 9708 9709 970.8 1941.6000000000001 9708 1996-07-31 2024-10-11 02:41:48.000 1996-07-31 2024-10-11 02:41:48 +9709 9709 9710 970.9 1941.8000000000002 9709 1996-08-01 2024-10-11 02:41:49.000 1996-08-01 2024-10-11 02:41:49 +9710 9710 9711 971 1942 9710 1996-08-02 2024-10-11 02:41:50.000 1996-08-02 2024-10-11 02:41:50 +9711 9711 9712 971.1 1942.2 9711 1996-08-03 2024-10-11 02:41:51.000 1996-08-03 2024-10-11 02:41:51 +9712 9712 9713 971.2 1942.4 9712 1996-08-04 2024-10-11 02:41:52.000 1996-08-04 2024-10-11 02:41:52 +9713 9713 9714 971.3 1942.6000000000001 9713 1996-08-05 2024-10-11 02:41:53.000 1996-08-05 2024-10-11 02:41:53 +9714 9714 9715 971.4 1942.8000000000002 9714 1996-08-06 2024-10-11 02:41:54.000 1996-08-06 2024-10-11 02:41:54 +9715 9715 9716 971.5 1943 9715 1996-08-07 2024-10-11 02:41:55.000 1996-08-07 2024-10-11 02:41:55 +9716 9716 9717 971.6 1943.2 9716 1996-08-08 2024-10-11 02:41:56.000 1996-08-08 2024-10-11 02:41:56 +9717 9717 9718 971.7 1943.4 9717 1996-08-09 2024-10-11 02:41:57.000 1996-08-09 2024-10-11 02:41:57 +9718 9718 9719 971.8 1943.6000000000001 9718 1996-08-10 2024-10-11 02:41:58.000 1996-08-10 2024-10-11 02:41:58 +9719 9719 9720 971.9 1943.8000000000002 9719 1996-08-11 2024-10-11 02:41:59.000 1996-08-11 2024-10-11 02:41:59 +9720 9720 9721 972 1944 9720 1996-08-12 2024-10-11 02:42:00.000 1996-08-12 2024-10-11 02:42:00 +9721 9721 9722 972.1 1944.2 9721 1996-08-13 2024-10-11 02:42:01.000 1996-08-13 2024-10-11 02:42:01 +9722 9722 9723 972.2 1944.4 9722 1996-08-14 2024-10-11 02:42:02.000 1996-08-14 2024-10-11 02:42:02 +9723 9723 9724 972.3 1944.6000000000001 9723 1996-08-15 2024-10-11 02:42:03.000 1996-08-15 2024-10-11 02:42:03 +9724 9724 9725 972.4 1944.8000000000002 9724 1996-08-16 2024-10-11 02:42:04.000 1996-08-16 2024-10-11 02:42:04 +9725 9725 9726 972.5 1945 9725 1996-08-17 2024-10-11 02:42:05.000 1996-08-17 2024-10-11 02:42:05 +9726 9726 9727 972.6 1945.2 9726 1996-08-18 2024-10-11 02:42:06.000 1996-08-18 2024-10-11 02:42:06 +9727 9727 9728 972.7 1945.4 9727 1996-08-19 2024-10-11 02:42:07.000 1996-08-19 2024-10-11 02:42:07 +9728 9728 9729 972.8 1945.6000000000001 9728 1996-08-20 2024-10-11 02:42:08.000 1996-08-20 2024-10-11 02:42:08 +9729 9729 9730 972.9 1945.8000000000002 9729 1996-08-21 2024-10-11 02:42:09.000 1996-08-21 2024-10-11 02:42:09 +9730 9730 9731 973 1946 9730 1996-08-22 2024-10-11 02:42:10.000 1996-08-22 2024-10-11 02:42:10 +9731 9731 9732 973.1 1946.2 9731 1996-08-23 2024-10-11 02:42:11.000 1996-08-23 2024-10-11 02:42:11 +9732 9732 9733 973.2 1946.4 9732 1996-08-24 2024-10-11 02:42:12.000 1996-08-24 2024-10-11 02:42:12 +9733 9733 9734 973.3 1946.6000000000001 9733 1996-08-25 2024-10-11 02:42:13.000 1996-08-25 2024-10-11 02:42:13 +9734 9734 9735 973.4 1946.8000000000002 9734 1996-08-26 2024-10-11 02:42:14.000 1996-08-26 2024-10-11 02:42:14 +9735 9735 9736 973.5 1947 9735 1996-08-27 2024-10-11 02:42:15.000 1996-08-27 2024-10-11 02:42:15 +9736 9736 9737 973.6 1947.2 9736 1996-08-28 2024-10-11 02:42:16.000 1996-08-28 2024-10-11 02:42:16 +9737 9737 9738 973.7 1947.4 9737 1996-08-29 2024-10-11 02:42:17.000 1996-08-29 2024-10-11 02:42:17 +9738 9738 9739 973.8 1947.6000000000001 9738 1996-08-30 2024-10-11 02:42:18.000 1996-08-30 2024-10-11 02:42:18 +9739 9739 9740 973.9 1947.8000000000002 9739 1996-08-31 2024-10-11 02:42:19.000 1996-08-31 2024-10-11 02:42:19 +9740 9740 9741 974 1948 9740 1996-09-01 2024-10-11 02:42:20.000 1996-09-01 2024-10-11 02:42:20 +9741 9741 9742 974.1 1948.2 9741 1996-09-02 2024-10-11 02:42:21.000 1996-09-02 2024-10-11 02:42:21 +9742 9742 9743 974.2 1948.4 9742 1996-09-03 2024-10-11 02:42:22.000 1996-09-03 2024-10-11 02:42:22 +9743 9743 9744 974.3 1948.6000000000001 9743 1996-09-04 2024-10-11 02:42:23.000 1996-09-04 2024-10-11 02:42:23 +9744 9744 9745 974.4 1948.8000000000002 9744 1996-09-05 2024-10-11 02:42:24.000 1996-09-05 2024-10-11 02:42:24 +9745 9745 9746 974.5 1949 9745 1996-09-06 2024-10-11 02:42:25.000 1996-09-06 2024-10-11 02:42:25 +9746 9746 9747 974.6 1949.2 9746 1996-09-07 2024-10-11 02:42:26.000 1996-09-07 2024-10-11 02:42:26 +9747 9747 9748 974.7 1949.4 9747 1996-09-08 2024-10-11 02:42:27.000 1996-09-08 2024-10-11 02:42:27 +9748 9748 9749 974.8 1949.6000000000001 9748 1996-09-09 2024-10-11 02:42:28.000 1996-09-09 2024-10-11 02:42:28 +9749 9749 9750 974.9 1949.8000000000002 9749 1996-09-10 2024-10-11 02:42:29.000 1996-09-10 2024-10-11 02:42:29 +9750 9750 9751 975 1950 9750 1996-09-11 2024-10-11 02:42:30.000 1996-09-11 2024-10-11 02:42:30 +9751 9751 9752 975.1 1950.2 9751 1996-09-12 2024-10-11 02:42:31.000 1996-09-12 2024-10-11 02:42:31 +9752 9752 9753 975.2 1950.4 9752 1996-09-13 2024-10-11 02:42:32.000 1996-09-13 2024-10-11 02:42:32 +9753 9753 9754 975.3 1950.6000000000001 9753 1996-09-14 2024-10-11 02:42:33.000 1996-09-14 2024-10-11 02:42:33 +9754 9754 9755 975.4 1950.8000000000002 9754 1996-09-15 2024-10-11 02:42:34.000 1996-09-15 2024-10-11 02:42:34 +9755 9755 9756 975.5 1951 9755 1996-09-16 2024-10-11 02:42:35.000 1996-09-16 2024-10-11 02:42:35 +9756 9756 9757 975.6 1951.2 9756 1996-09-17 2024-10-11 02:42:36.000 1996-09-17 2024-10-11 02:42:36 +9757 9757 9758 975.7 1951.4 9757 1996-09-18 2024-10-11 02:42:37.000 1996-09-18 2024-10-11 02:42:37 +9758 9758 9759 975.8 1951.6000000000001 9758 1996-09-19 2024-10-11 02:42:38.000 1996-09-19 2024-10-11 02:42:38 +9759 9759 9760 975.9 1951.8000000000002 9759 1996-09-20 2024-10-11 02:42:39.000 1996-09-20 2024-10-11 02:42:39 +9760 9760 9761 976 1952 9760 1996-09-21 2024-10-11 02:42:40.000 1996-09-21 2024-10-11 02:42:40 +9761 9761 9762 976.1 1952.2 9761 1996-09-22 2024-10-11 02:42:41.000 1996-09-22 2024-10-11 02:42:41 +9762 9762 9763 976.2 1952.4 9762 1996-09-23 2024-10-11 02:42:42.000 1996-09-23 2024-10-11 02:42:42 +9763 9763 9764 976.3 1952.6000000000001 9763 1996-09-24 2024-10-11 02:42:43.000 1996-09-24 2024-10-11 02:42:43 +9764 9764 9765 976.4 1952.8000000000002 9764 1996-09-25 2024-10-11 02:42:44.000 1996-09-25 2024-10-11 02:42:44 +9765 9765 9766 976.5 1953 9765 1996-09-26 2024-10-11 02:42:45.000 1996-09-26 2024-10-11 02:42:45 +9766 9766 9767 976.6 1953.2 9766 1996-09-27 2024-10-11 02:42:46.000 1996-09-27 2024-10-11 02:42:46 +9767 9767 9768 976.7 1953.4 9767 1996-09-28 2024-10-11 02:42:47.000 1996-09-28 2024-10-11 02:42:47 +9768 9768 9769 976.8 1953.6000000000001 9768 1996-09-29 2024-10-11 02:42:48.000 1996-09-29 2024-10-11 02:42:48 +9769 9769 9770 976.9 1953.8000000000002 9769 1996-09-30 2024-10-11 02:42:49.000 1996-09-30 2024-10-11 02:42:49 +9770 9770 9771 977 1954 9770 1996-10-01 2024-10-11 02:42:50.000 1996-10-01 2024-10-11 02:42:50 +9771 9771 9772 977.1 1954.2 9771 1996-10-02 2024-10-11 02:42:51.000 1996-10-02 2024-10-11 02:42:51 +9772 9772 9773 977.2 1954.4 9772 1996-10-03 2024-10-11 02:42:52.000 1996-10-03 2024-10-11 02:42:52 +9773 9773 9774 977.3 1954.6000000000001 9773 1996-10-04 2024-10-11 02:42:53.000 1996-10-04 2024-10-11 02:42:53 +9774 9774 9775 977.4 1954.8000000000002 9774 1996-10-05 2024-10-11 02:42:54.000 1996-10-05 2024-10-11 02:42:54 +9775 9775 9776 977.5 1955 9775 1996-10-06 2024-10-11 02:42:55.000 1996-10-06 2024-10-11 02:42:55 +9776 9776 9777 977.6 1955.2 9776 1996-10-07 2024-10-11 02:42:56.000 1996-10-07 2024-10-11 02:42:56 +9777 9777 9778 977.7 1955.4 9777 1996-10-08 2024-10-11 02:42:57.000 1996-10-08 2024-10-11 02:42:57 +9778 9778 9779 977.8 1955.6000000000001 9778 1996-10-09 2024-10-11 02:42:58.000 1996-10-09 2024-10-11 02:42:58 +9779 9779 9780 977.9 1955.8000000000002 9779 1996-10-10 2024-10-11 02:42:59.000 1996-10-10 2024-10-11 02:42:59 +9780 9780 9781 978 1956 9780 1996-10-11 2024-10-11 02:43:00.000 1996-10-11 2024-10-11 02:43:00 +9781 9781 9782 978.1 1956.2 9781 1996-10-12 2024-10-11 02:43:01.000 1996-10-12 2024-10-11 02:43:01 +9782 9782 9783 978.2 1956.4 9782 1996-10-13 2024-10-11 02:43:02.000 1996-10-13 2024-10-11 02:43:02 +9783 9783 9784 978.3 1956.6000000000001 9783 1996-10-14 2024-10-11 02:43:03.000 1996-10-14 2024-10-11 02:43:03 +9784 9784 9785 978.4 1956.8000000000002 9784 1996-10-15 2024-10-11 02:43:04.000 1996-10-15 2024-10-11 02:43:04 +9785 9785 9786 978.5 1957 9785 1996-10-16 2024-10-11 02:43:05.000 1996-10-16 2024-10-11 02:43:05 +9786 9786 9787 978.6 1957.2 9786 1996-10-17 2024-10-11 02:43:06.000 1996-10-17 2024-10-11 02:43:06 +9787 9787 9788 978.7 1957.4 9787 1996-10-18 2024-10-11 02:43:07.000 1996-10-18 2024-10-11 02:43:07 +9788 9788 9789 978.8 1957.6000000000001 9788 1996-10-19 2024-10-11 02:43:08.000 1996-10-19 2024-10-11 02:43:08 +9789 9789 9790 978.9 1957.8000000000002 9789 1996-10-20 2024-10-11 02:43:09.000 1996-10-20 2024-10-11 02:43:09 +9790 9790 9791 979 1958 9790 1996-10-21 2024-10-11 02:43:10.000 1996-10-21 2024-10-11 02:43:10 +9791 9791 9792 979.1 1958.2 9791 1996-10-22 2024-10-11 02:43:11.000 1996-10-22 2024-10-11 02:43:11 +9792 9792 9793 979.2 1958.4 9792 1996-10-23 2024-10-11 02:43:12.000 1996-10-23 2024-10-11 02:43:12 +9793 9793 9794 979.3 1958.6000000000001 9793 1996-10-24 2024-10-11 02:43:13.000 1996-10-24 2024-10-11 02:43:13 +9794 9794 9795 979.4 1958.8000000000002 9794 1996-10-25 2024-10-11 02:43:14.000 1996-10-25 2024-10-11 02:43:14 +9795 9795 9796 979.5 1959 9795 1996-10-26 2024-10-11 02:43:15.000 1996-10-26 2024-10-11 02:43:15 +9796 9796 9797 979.6 1959.2 9796 1996-10-27 2024-10-11 02:43:16.000 1996-10-27 2024-10-11 02:43:16 +9797 9797 9798 979.7 1959.4 9797 1996-10-28 2024-10-11 02:43:17.000 1996-10-28 2024-10-11 02:43:17 +9798 9798 9799 979.8 1959.6000000000001 9798 1996-10-29 2024-10-11 02:43:18.000 1996-10-29 2024-10-11 02:43:18 +9799 9799 9800 979.9 1959.8000000000002 9799 1996-10-30 2024-10-11 02:43:19.000 1996-10-30 2024-10-11 02:43:19 +9800 9800 9801 980 1960 9800 1996-10-31 2024-10-11 02:43:20.000 1996-10-31 2024-10-11 02:43:20 +9801 9801 9802 980.1 1960.2 9801 1996-11-01 2024-10-11 02:43:21.000 1996-11-01 2024-10-11 02:43:21 +9802 9802 9803 980.2 1960.4 9802 1996-11-02 2024-10-11 02:43:22.000 1996-11-02 2024-10-11 02:43:22 +9803 9803 9804 980.3 1960.6000000000001 9803 1996-11-03 2024-10-11 02:43:23.000 1996-11-03 2024-10-11 02:43:23 +9804 9804 9805 980.4 1960.8000000000002 9804 1996-11-04 2024-10-11 02:43:24.000 1996-11-04 2024-10-11 02:43:24 +9805 9805 9806 980.5 1961 9805 1996-11-05 2024-10-11 02:43:25.000 1996-11-05 2024-10-11 02:43:25 +9806 9806 9807 980.6 1961.2 9806 1996-11-06 2024-10-11 02:43:26.000 1996-11-06 2024-10-11 02:43:26 +9807 9807 9808 980.7 1961.4 9807 1996-11-07 2024-10-11 02:43:27.000 1996-11-07 2024-10-11 02:43:27 +9808 9808 9809 980.8 1961.6000000000001 9808 1996-11-08 2024-10-11 02:43:28.000 1996-11-08 2024-10-11 02:43:28 +9809 9809 9810 980.9 1961.8000000000002 9809 1996-11-09 2024-10-11 02:43:29.000 1996-11-09 2024-10-11 02:43:29 +9810 9810 9811 981 1962 9810 1996-11-10 2024-10-11 02:43:30.000 1996-11-10 2024-10-11 02:43:30 +9811 9811 9812 981.1 1962.2 9811 1996-11-11 2024-10-11 02:43:31.000 1996-11-11 2024-10-11 02:43:31 +9812 9812 9813 981.2 1962.4 9812 1996-11-12 2024-10-11 02:43:32.000 1996-11-12 2024-10-11 02:43:32 +9813 9813 9814 981.3 1962.6000000000001 9813 1996-11-13 2024-10-11 02:43:33.000 1996-11-13 2024-10-11 02:43:33 +9814 9814 9815 981.4 1962.8000000000002 9814 1996-11-14 2024-10-11 02:43:34.000 1996-11-14 2024-10-11 02:43:34 +9815 9815 9816 981.5 1963 9815 1996-11-15 2024-10-11 02:43:35.000 1996-11-15 2024-10-11 02:43:35 +9816 9816 9817 981.6 1963.2 9816 1996-11-16 2024-10-11 02:43:36.000 1996-11-16 2024-10-11 02:43:36 +9817 9817 9818 981.7 1963.4 9817 1996-11-17 2024-10-11 02:43:37.000 1996-11-17 2024-10-11 02:43:37 +9818 9818 9819 981.8 1963.6000000000001 9818 1996-11-18 2024-10-11 02:43:38.000 1996-11-18 2024-10-11 02:43:38 +9819 9819 9820 981.9 1963.8000000000002 9819 1996-11-19 2024-10-11 02:43:39.000 1996-11-19 2024-10-11 02:43:39 +9820 9820 9821 982 1964 9820 1996-11-20 2024-10-11 02:43:40.000 1996-11-20 2024-10-11 02:43:40 +9821 9821 9822 982.1 1964.2 9821 1996-11-21 2024-10-11 02:43:41.000 1996-11-21 2024-10-11 02:43:41 +9822 9822 9823 982.2 1964.4 9822 1996-11-22 2024-10-11 02:43:42.000 1996-11-22 2024-10-11 02:43:42 +9823 9823 9824 982.3 1964.6000000000001 9823 1996-11-23 2024-10-11 02:43:43.000 1996-11-23 2024-10-11 02:43:43 +9824 9824 9825 982.4 1964.8000000000002 9824 1996-11-24 2024-10-11 02:43:44.000 1996-11-24 2024-10-11 02:43:44 +9825 9825 9826 982.5 1965 9825 1996-11-25 2024-10-11 02:43:45.000 1996-11-25 2024-10-11 02:43:45 +9826 9826 9827 982.6 1965.2 9826 1996-11-26 2024-10-11 02:43:46.000 1996-11-26 2024-10-11 02:43:46 +9827 9827 9828 982.7 1965.4 9827 1996-11-27 2024-10-11 02:43:47.000 1996-11-27 2024-10-11 02:43:47 +9828 9828 9829 982.8 1965.6000000000001 9828 1996-11-28 2024-10-11 02:43:48.000 1996-11-28 2024-10-11 02:43:48 +9829 9829 9830 982.9 1965.8000000000002 9829 1996-11-29 2024-10-11 02:43:49.000 1996-11-29 2024-10-11 02:43:49 +9830 9830 9831 983 1966 9830 1996-11-30 2024-10-11 02:43:50.000 1996-11-30 2024-10-11 02:43:50 +9831 9831 9832 983.1 1966.2 9831 1996-12-01 2024-10-11 02:43:51.000 1996-12-01 2024-10-11 02:43:51 +9832 9832 9833 983.2 1966.4 9832 1996-12-02 2024-10-11 02:43:52.000 1996-12-02 2024-10-11 02:43:52 +9833 9833 9834 983.3 1966.6000000000001 9833 1996-12-03 2024-10-11 02:43:53.000 1996-12-03 2024-10-11 02:43:53 +9834 9834 9835 983.4 1966.8000000000002 9834 1996-12-04 2024-10-11 02:43:54.000 1996-12-04 2024-10-11 02:43:54 +9835 9835 9836 983.5 1967 9835 1996-12-05 2024-10-11 02:43:55.000 1996-12-05 2024-10-11 02:43:55 +9836 9836 9837 983.6 1967.2 9836 1996-12-06 2024-10-11 02:43:56.000 1996-12-06 2024-10-11 02:43:56 +9837 9837 9838 983.7 1967.4 9837 1996-12-07 2024-10-11 02:43:57.000 1996-12-07 2024-10-11 02:43:57 +9838 9838 9839 983.8 1967.6000000000001 9838 1996-12-08 2024-10-11 02:43:58.000 1996-12-08 2024-10-11 02:43:58 +9839 9839 9840 983.9 1967.8000000000002 9839 1996-12-09 2024-10-11 02:43:59.000 1996-12-09 2024-10-11 02:43:59 +9840 9840 9841 984 1968 9840 1996-12-10 2024-10-11 02:44:00.000 1996-12-10 2024-10-11 02:44:00 +9841 9841 9842 984.1 1968.2 9841 1996-12-11 2024-10-11 02:44:01.000 1996-12-11 2024-10-11 02:44:01 +9842 9842 9843 984.2 1968.4 9842 1996-12-12 2024-10-11 02:44:02.000 1996-12-12 2024-10-11 02:44:02 +9843 9843 9844 984.3 1968.6000000000001 9843 1996-12-13 2024-10-11 02:44:03.000 1996-12-13 2024-10-11 02:44:03 +9844 9844 9845 984.4 1968.8000000000002 9844 1996-12-14 2024-10-11 02:44:04.000 1996-12-14 2024-10-11 02:44:04 +9845 9845 9846 984.5 1969 9845 1996-12-15 2024-10-11 02:44:05.000 1996-12-15 2024-10-11 02:44:05 +9846 9846 9847 984.6 1969.2 9846 1996-12-16 2024-10-11 02:44:06.000 1996-12-16 2024-10-11 02:44:06 +9847 9847 9848 984.7 1969.4 9847 1996-12-17 2024-10-11 02:44:07.000 1996-12-17 2024-10-11 02:44:07 +9848 9848 9849 984.8 1969.6000000000001 9848 1996-12-18 2024-10-11 02:44:08.000 1996-12-18 2024-10-11 02:44:08 +9849 9849 9850 984.9 1969.8000000000002 9849 1996-12-19 2024-10-11 02:44:09.000 1996-12-19 2024-10-11 02:44:09 +9850 9850 9851 985 1970 9850 1996-12-20 2024-10-11 02:44:10.000 1996-12-20 2024-10-11 02:44:10 +9851 9851 9852 985.1 1970.2 9851 1996-12-21 2024-10-11 02:44:11.000 1996-12-21 2024-10-11 02:44:11 +9852 9852 9853 985.2 1970.4 9852 1996-12-22 2024-10-11 02:44:12.000 1996-12-22 2024-10-11 02:44:12 +9853 9853 9854 985.3 1970.6000000000001 9853 1996-12-23 2024-10-11 02:44:13.000 1996-12-23 2024-10-11 02:44:13 +9854 9854 9855 985.4 1970.8000000000002 9854 1996-12-24 2024-10-11 02:44:14.000 1996-12-24 2024-10-11 02:44:14 +9855 9855 9856 985.5 1971 9855 1996-12-25 2024-10-11 02:44:15.000 1996-12-25 2024-10-11 02:44:15 +9856 9856 9857 985.6 1971.2 9856 1996-12-26 2024-10-11 02:44:16.000 1996-12-26 2024-10-11 02:44:16 +9857 9857 9858 985.7 1971.4 9857 1996-12-27 2024-10-11 02:44:17.000 1996-12-27 2024-10-11 02:44:17 +9858 9858 9859 985.8 1971.6000000000001 9858 1996-12-28 2024-10-11 02:44:18.000 1996-12-28 2024-10-11 02:44:18 +9859 9859 9860 985.9 1971.8000000000002 9859 1996-12-29 2024-10-11 02:44:19.000 1996-12-29 2024-10-11 02:44:19 +9860 9860 9861 986 1972 9860 1996-12-30 2024-10-11 02:44:20.000 1996-12-30 2024-10-11 02:44:20 +9861 9861 9862 986.1 1972.2 9861 1996-12-31 2024-10-11 02:44:21.000 1996-12-31 2024-10-11 02:44:21 +9862 9862 9863 986.2 1972.4 9862 1997-01-01 2024-10-11 02:44:22.000 1997-01-01 2024-10-11 02:44:22 +9863 9863 9864 986.3 1972.6000000000001 9863 1997-01-02 2024-10-11 02:44:23.000 1997-01-02 2024-10-11 02:44:23 +9864 9864 9865 986.4 1972.8000000000002 9864 1997-01-03 2024-10-11 02:44:24.000 1997-01-03 2024-10-11 02:44:24 +9865 9865 9866 986.5 1973 9865 1997-01-04 2024-10-11 02:44:25.000 1997-01-04 2024-10-11 02:44:25 +9866 9866 9867 986.6 1973.2 9866 1997-01-05 2024-10-11 02:44:26.000 1997-01-05 2024-10-11 02:44:26 +9867 9867 9868 986.7 1973.4 9867 1997-01-06 2024-10-11 02:44:27.000 1997-01-06 2024-10-11 02:44:27 +9868 9868 9869 986.8 1973.6000000000001 9868 1997-01-07 2024-10-11 02:44:28.000 1997-01-07 2024-10-11 02:44:28 +9869 9869 9870 986.9 1973.8000000000002 9869 1997-01-08 2024-10-11 02:44:29.000 1997-01-08 2024-10-11 02:44:29 +9870 9870 9871 987 1974 9870 1997-01-09 2024-10-11 02:44:30.000 1997-01-09 2024-10-11 02:44:30 +9871 9871 9872 987.1 1974.2 9871 1997-01-10 2024-10-11 02:44:31.000 1997-01-10 2024-10-11 02:44:31 +9872 9872 9873 987.2 1974.4 9872 1997-01-11 2024-10-11 02:44:32.000 1997-01-11 2024-10-11 02:44:32 +9873 9873 9874 987.3 1974.6000000000001 9873 1997-01-12 2024-10-11 02:44:33.000 1997-01-12 2024-10-11 02:44:33 +9874 9874 9875 987.4 1974.8000000000002 9874 1997-01-13 2024-10-11 02:44:34.000 1997-01-13 2024-10-11 02:44:34 +9875 9875 9876 987.5 1975 9875 1997-01-14 2024-10-11 02:44:35.000 1997-01-14 2024-10-11 02:44:35 +9876 9876 9877 987.6 1975.2 9876 1997-01-15 2024-10-11 02:44:36.000 1997-01-15 2024-10-11 02:44:36 +9877 9877 9878 987.7 1975.4 9877 1997-01-16 2024-10-11 02:44:37.000 1997-01-16 2024-10-11 02:44:37 +9878 9878 9879 987.8 1975.6000000000001 9878 1997-01-17 2024-10-11 02:44:38.000 1997-01-17 2024-10-11 02:44:38 +9879 9879 9880 987.9 1975.8000000000002 9879 1997-01-18 2024-10-11 02:44:39.000 1997-01-18 2024-10-11 02:44:39 +9880 9880 9881 988 1976 9880 1997-01-19 2024-10-11 02:44:40.000 1997-01-19 2024-10-11 02:44:40 +9881 9881 9882 988.1 1976.2 9881 1997-01-20 2024-10-11 02:44:41.000 1997-01-20 2024-10-11 02:44:41 +9882 9882 9883 988.2 1976.4 9882 1997-01-21 2024-10-11 02:44:42.000 1997-01-21 2024-10-11 02:44:42 +9883 9883 9884 988.3 1976.6000000000001 9883 1997-01-22 2024-10-11 02:44:43.000 1997-01-22 2024-10-11 02:44:43 +9884 9884 9885 988.4 1976.8000000000002 9884 1997-01-23 2024-10-11 02:44:44.000 1997-01-23 2024-10-11 02:44:44 +9885 9885 9886 988.5 1977 9885 1997-01-24 2024-10-11 02:44:45.000 1997-01-24 2024-10-11 02:44:45 +9886 9886 9887 988.6 1977.2 9886 1997-01-25 2024-10-11 02:44:46.000 1997-01-25 2024-10-11 02:44:46 +9887 9887 9888 988.7 1977.4 9887 1997-01-26 2024-10-11 02:44:47.000 1997-01-26 2024-10-11 02:44:47 +9888 9888 9889 988.8 1977.6000000000001 9888 1997-01-27 2024-10-11 02:44:48.000 1997-01-27 2024-10-11 02:44:48 +9889 9889 9890 988.9 1977.8000000000002 9889 1997-01-28 2024-10-11 02:44:49.000 1997-01-28 2024-10-11 02:44:49 +9890 9890 9891 989 1978 9890 1997-01-29 2024-10-11 02:44:50.000 1997-01-29 2024-10-11 02:44:50 +9891 9891 9892 989.1 1978.2 9891 1997-01-30 2024-10-11 02:44:51.000 1997-01-30 2024-10-11 02:44:51 +9892 9892 9893 989.2 1978.4 9892 1997-01-31 2024-10-11 02:44:52.000 1997-01-31 2024-10-11 02:44:52 +9893 9893 9894 989.3 1978.6000000000001 9893 1997-02-01 2024-10-11 02:44:53.000 1997-02-01 2024-10-11 02:44:53 +9894 9894 9895 989.4 1978.8000000000002 9894 1997-02-02 2024-10-11 02:44:54.000 1997-02-02 2024-10-11 02:44:54 +9895 9895 9896 989.5 1979 9895 1997-02-03 2024-10-11 02:44:55.000 1997-02-03 2024-10-11 02:44:55 +9896 9896 9897 989.6 1979.2 9896 1997-02-04 2024-10-11 02:44:56.000 1997-02-04 2024-10-11 02:44:56 +9897 9897 9898 989.7 1979.4 9897 1997-02-05 2024-10-11 02:44:57.000 1997-02-05 2024-10-11 02:44:57 +9898 9898 9899 989.8 1979.6000000000001 9898 1997-02-06 2024-10-11 02:44:58.000 1997-02-06 2024-10-11 02:44:58 +9899 9899 9900 989.9 1979.8000000000002 9899 1997-02-07 2024-10-11 02:44:59.000 1997-02-07 2024-10-11 02:44:59 +9900 9900 9901 990 1980 9900 1997-02-08 2024-10-11 02:45:00.000 1997-02-08 2024-10-11 02:45:00 +9901 9901 9902 990.1 1980.2 9901 1997-02-09 2024-10-11 02:45:01.000 1997-02-09 2024-10-11 02:45:01 +9902 9902 9903 990.2 1980.4 9902 1997-02-10 2024-10-11 02:45:02.000 1997-02-10 2024-10-11 02:45:02 +9903 9903 9904 990.3 1980.6000000000001 9903 1997-02-11 2024-10-11 02:45:03.000 1997-02-11 2024-10-11 02:45:03 +9904 9904 9905 990.4 1980.8000000000002 9904 1997-02-12 2024-10-11 02:45:04.000 1997-02-12 2024-10-11 02:45:04 +9905 9905 9906 990.5 1981 9905 1997-02-13 2024-10-11 02:45:05.000 1997-02-13 2024-10-11 02:45:05 +9906 9906 9907 990.6 1981.2 9906 1997-02-14 2024-10-11 02:45:06.000 1997-02-14 2024-10-11 02:45:06 +9907 9907 9908 990.7 1981.4 9907 1997-02-15 2024-10-11 02:45:07.000 1997-02-15 2024-10-11 02:45:07 +9908 9908 9909 990.8 1981.6000000000001 9908 1997-02-16 2024-10-11 02:45:08.000 1997-02-16 2024-10-11 02:45:08 +9909 9909 9910 990.9 1981.8000000000002 9909 1997-02-17 2024-10-11 02:45:09.000 1997-02-17 2024-10-11 02:45:09 +9910 9910 9911 991 1982 9910 1997-02-18 2024-10-11 02:45:10.000 1997-02-18 2024-10-11 02:45:10 +9911 9911 9912 991.1 1982.2 9911 1997-02-19 2024-10-11 02:45:11.000 1997-02-19 2024-10-11 02:45:11 +9912 9912 9913 991.2 1982.4 9912 1997-02-20 2024-10-11 02:45:12.000 1997-02-20 2024-10-11 02:45:12 +9913 9913 9914 991.3 1982.6000000000001 9913 1997-02-21 2024-10-11 02:45:13.000 1997-02-21 2024-10-11 02:45:13 +9914 9914 9915 991.4 1982.8000000000002 9914 1997-02-22 2024-10-11 02:45:14.000 1997-02-22 2024-10-11 02:45:14 +9915 9915 9916 991.5 1983 9915 1997-02-23 2024-10-11 02:45:15.000 1997-02-23 2024-10-11 02:45:15 +9916 9916 9917 991.6 1983.2 9916 1997-02-24 2024-10-11 02:45:16.000 1997-02-24 2024-10-11 02:45:16 +9917 9917 9918 991.7 1983.4 9917 1997-02-25 2024-10-11 02:45:17.000 1997-02-25 2024-10-11 02:45:17 +9918 9918 9919 991.8 1983.6000000000001 9918 1997-02-26 2024-10-11 02:45:18.000 1997-02-26 2024-10-11 02:45:18 +9919 9919 9920 991.9 1983.8000000000002 9919 1997-02-27 2024-10-11 02:45:19.000 1997-02-27 2024-10-11 02:45:19 +9920 9920 9921 992 1984 9920 1997-02-28 2024-10-11 02:45:20.000 1997-02-28 2024-10-11 02:45:20 +9921 9921 9922 992.1 1984.2 9921 1997-03-01 2024-10-11 02:45:21.000 1997-03-01 2024-10-11 02:45:21 +9922 9922 9923 992.2 1984.4 9922 1997-03-02 2024-10-11 02:45:22.000 1997-03-02 2024-10-11 02:45:22 +9923 9923 9924 992.3 1984.6000000000001 9923 1997-03-03 2024-10-11 02:45:23.000 1997-03-03 2024-10-11 02:45:23 +9924 9924 9925 992.4 1984.8000000000002 9924 1997-03-04 2024-10-11 02:45:24.000 1997-03-04 2024-10-11 02:45:24 +9925 9925 9926 992.5 1985 9925 1997-03-05 2024-10-11 02:45:25.000 1997-03-05 2024-10-11 02:45:25 +9926 9926 9927 992.6 1985.2 9926 1997-03-06 2024-10-11 02:45:26.000 1997-03-06 2024-10-11 02:45:26 +9927 9927 9928 992.7 1985.4 9927 1997-03-07 2024-10-11 02:45:27.000 1997-03-07 2024-10-11 02:45:27 +9928 9928 9929 992.8 1985.6000000000001 9928 1997-03-08 2024-10-11 02:45:28.000 1997-03-08 2024-10-11 02:45:28 +9929 9929 9930 992.9 1985.8000000000002 9929 1997-03-09 2024-10-11 02:45:29.000 1997-03-09 2024-10-11 02:45:29 +9930 9930 9931 993 1986 9930 1997-03-10 2024-10-11 02:45:30.000 1997-03-10 2024-10-11 02:45:30 +9931 9931 9932 993.1 1986.2 9931 1997-03-11 2024-10-11 02:45:31.000 1997-03-11 2024-10-11 02:45:31 +9932 9932 9933 993.2 1986.4 9932 1997-03-12 2024-10-11 02:45:32.000 1997-03-12 2024-10-11 02:45:32 +9933 9933 9934 993.3 1986.6000000000001 9933 1997-03-13 2024-10-11 02:45:33.000 1997-03-13 2024-10-11 02:45:33 +9934 9934 9935 993.4 1986.8000000000002 9934 1997-03-14 2024-10-11 02:45:34.000 1997-03-14 2024-10-11 02:45:34 +9935 9935 9936 993.5 1987 9935 1997-03-15 2024-10-11 02:45:35.000 1997-03-15 2024-10-11 02:45:35 +9936 9936 9937 993.6 1987.2 9936 1997-03-16 2024-10-11 02:45:36.000 1997-03-16 2024-10-11 02:45:36 +9937 9937 9938 993.7 1987.4 9937 1997-03-17 2024-10-11 02:45:37.000 1997-03-17 2024-10-11 02:45:37 +9938 9938 9939 993.8 1987.6000000000001 9938 1997-03-18 2024-10-11 02:45:38.000 1997-03-18 2024-10-11 02:45:38 +9939 9939 9940 993.9 1987.8000000000002 9939 1997-03-19 2024-10-11 02:45:39.000 1997-03-19 2024-10-11 02:45:39 +9940 9940 9941 994 1988 9940 1997-03-20 2024-10-11 02:45:40.000 1997-03-20 2024-10-11 02:45:40 +9941 9941 9942 994.1 1988.2 9941 1997-03-21 2024-10-11 02:45:41.000 1997-03-21 2024-10-11 02:45:41 +9942 9942 9943 994.2 1988.4 9942 1997-03-22 2024-10-11 02:45:42.000 1997-03-22 2024-10-11 02:45:42 +9943 9943 9944 994.3 1988.6000000000001 9943 1997-03-23 2024-10-11 02:45:43.000 1997-03-23 2024-10-11 02:45:43 +9944 9944 9945 994.4 1988.8000000000002 9944 1997-03-24 2024-10-11 02:45:44.000 1997-03-24 2024-10-11 02:45:44 +9945 9945 9946 994.5 1989 9945 1997-03-25 2024-10-11 02:45:45.000 1997-03-25 2024-10-11 02:45:45 +9946 9946 9947 994.6 1989.2 9946 1997-03-26 2024-10-11 02:45:46.000 1997-03-26 2024-10-11 02:45:46 +9947 9947 9948 994.7 1989.4 9947 1997-03-27 2024-10-11 02:45:47.000 1997-03-27 2024-10-11 02:45:47 +9948 9948 9949 994.8 1989.6000000000001 9948 1997-03-28 2024-10-11 02:45:48.000 1997-03-28 2024-10-11 02:45:48 +9949 9949 9950 994.9 1989.8000000000002 9949 1997-03-29 2024-10-11 02:45:49.000 1997-03-29 2024-10-11 02:45:49 +9950 9950 9951 995 1990 9950 1997-03-30 2024-10-11 02:45:50.000 1997-03-30 2024-10-11 02:45:50 +9951 9951 9952 995.1 1990.2 9951 1997-03-31 2024-10-11 02:45:51.000 1997-03-31 2024-10-11 02:45:51 +9952 9952 9953 995.2 1990.4 9952 1997-04-01 2024-10-11 02:45:52.000 1997-04-01 2024-10-11 02:45:52 +9953 9953 9954 995.3 1990.6000000000001 9953 1997-04-02 2024-10-11 02:45:53.000 1997-04-02 2024-10-11 02:45:53 +9954 9954 9955 995.4 1990.8000000000002 9954 1997-04-03 2024-10-11 02:45:54.000 1997-04-03 2024-10-11 02:45:54 +9955 9955 9956 995.5 1991 9955 1997-04-04 2024-10-11 02:45:55.000 1997-04-04 2024-10-11 02:45:55 +9956 9956 9957 995.6 1991.2 9956 1997-04-05 2024-10-11 02:45:56.000 1997-04-05 2024-10-11 02:45:56 +9957 9957 9958 995.7 1991.4 9957 1997-04-06 2024-10-11 02:45:57.000 1997-04-06 2024-10-11 02:45:57 +9958 9958 9959 995.8 1991.6000000000001 9958 1997-04-07 2024-10-11 02:45:58.000 1997-04-07 2024-10-11 02:45:58 +9959 9959 9960 995.9 1991.8000000000002 9959 1997-04-08 2024-10-11 02:45:59.000 1997-04-08 2024-10-11 02:45:59 +9960 9960 9961 996 1992 9960 1997-04-09 2024-10-11 02:46:00.000 1997-04-09 2024-10-11 02:46:00 +9961 9961 9962 996.1 1992.2 9961 1997-04-10 2024-10-11 02:46:01.000 1997-04-10 2024-10-11 02:46:01 +9962 9962 9963 996.2 1992.4 9962 1997-04-11 2024-10-11 02:46:02.000 1997-04-11 2024-10-11 02:46:02 +9963 9963 9964 996.3 1992.6000000000001 9963 1997-04-12 2024-10-11 02:46:03.000 1997-04-12 2024-10-11 02:46:03 +9964 9964 9965 996.4 1992.8000000000002 9964 1997-04-13 2024-10-11 02:46:04.000 1997-04-13 2024-10-11 02:46:04 +9965 9965 9966 996.5 1993 9965 1997-04-14 2024-10-11 02:46:05.000 1997-04-14 2024-10-11 02:46:05 +9966 9966 9967 996.6 1993.2 9966 1997-04-15 2024-10-11 02:46:06.000 1997-04-15 2024-10-11 02:46:06 +9967 9967 9968 996.7 1993.4 9967 1997-04-16 2024-10-11 02:46:07.000 1997-04-16 2024-10-11 02:46:07 +9968 9968 9969 996.8 1993.6000000000001 9968 1997-04-17 2024-10-11 02:46:08.000 1997-04-17 2024-10-11 02:46:08 +9969 9969 9970 996.9 1993.8000000000002 9969 1997-04-18 2024-10-11 02:46:09.000 1997-04-18 2024-10-11 02:46:09 +9970 9970 9971 997 1994 9970 1997-04-19 2024-10-11 02:46:10.000 1997-04-19 2024-10-11 02:46:10 +9971 9971 9972 997.1 1994.2 9971 1997-04-20 2024-10-11 02:46:11.000 1997-04-20 2024-10-11 02:46:11 +9972 9972 9973 997.2 1994.4 9972 1997-04-21 2024-10-11 02:46:12.000 1997-04-21 2024-10-11 02:46:12 +9973 9973 9974 997.3 1994.6000000000001 9973 1997-04-22 2024-10-11 02:46:13.000 1997-04-22 2024-10-11 02:46:13 +9974 9974 9975 997.4 1994.8000000000002 9974 1997-04-23 2024-10-11 02:46:14.000 1997-04-23 2024-10-11 02:46:14 +9975 9975 9976 997.5 1995 9975 1997-04-24 2024-10-11 02:46:15.000 1997-04-24 2024-10-11 02:46:15 +9976 9976 9977 997.6 1995.2 9976 1997-04-25 2024-10-11 02:46:16.000 1997-04-25 2024-10-11 02:46:16 +9977 9977 9978 997.7 1995.4 9977 1997-04-26 2024-10-11 02:46:17.000 1997-04-26 2024-10-11 02:46:17 +9978 9978 9979 997.8 1995.6000000000001 9978 1997-04-27 2024-10-11 02:46:18.000 1997-04-27 2024-10-11 02:46:18 +9979 9979 9980 997.9 1995.8000000000002 9979 1997-04-28 2024-10-11 02:46:19.000 1997-04-28 2024-10-11 02:46:19 +9980 9980 9981 998 1996 9980 1997-04-29 2024-10-11 02:46:20.000 1997-04-29 2024-10-11 02:46:20 +9981 9981 9982 998.1 1996.2 9981 1997-04-30 2024-10-11 02:46:21.000 1997-04-30 2024-10-11 02:46:21 +9982 9982 9983 998.2 1996.4 9982 1997-05-01 2024-10-11 02:46:22.000 1997-05-01 2024-10-11 02:46:22 +9983 9983 9984 998.3 1996.6000000000001 9983 1997-05-02 2024-10-11 02:46:23.000 1997-05-02 2024-10-11 02:46:23 +9984 9984 9985 998.4 1996.8000000000002 9984 1997-05-03 2024-10-11 02:46:24.000 1997-05-03 2024-10-11 02:46:24 +9985 9985 9986 998.5 1997 9985 1997-05-04 2024-10-11 02:46:25.000 1997-05-04 2024-10-11 02:46:25 +9986 9986 9987 998.6 1997.2 9986 1997-05-05 2024-10-11 02:46:26.000 1997-05-05 2024-10-11 02:46:26 +9987 9987 9988 998.7 1997.4 9987 1997-05-06 2024-10-11 02:46:27.000 1997-05-06 2024-10-11 02:46:27 +9988 9988 9989 998.8 1997.6000000000001 9988 1997-05-07 2024-10-11 02:46:28.000 1997-05-07 2024-10-11 02:46:28 +9989 9989 9990 998.9 1997.8000000000002 9989 1997-05-08 2024-10-11 02:46:29.000 1997-05-08 2024-10-11 02:46:29 +9990 9990 9991 999 1998 9990 1997-05-09 2024-10-11 02:46:30.000 1997-05-09 2024-10-11 02:46:30 +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9995 9995 9996 999.5 1999 9995 1997-05-14 2024-10-11 02:46:35.000 1997-05-14 2024-10-11 02:46:35 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +-- test datetime +select max(time) from test_native_parquet; +2024-10-11 02:46:39 diff --git a/tests/queries/0_stateless/03214_native_parquet.sql b/tests/queries/0_stateless/03214_native_parquet.sql index e798906544a..3c0f196fa05 100644 --- a/tests/queries/0_stateless/03214_native_parquet.sql +++ b/tests/queries/0_stateless/03214_native_parquet.sql @@ -1,44 +1,71 @@ +-- { echoOn } +-- support data types: Int16, Int32, Int64, Float32, Float64, String, Date32, DateTime64, Date, DateTime drop table if exists test_native_parquet; -create table test_native_parquet (i16 Int16, i32 Int32, i64 Int64, float Float32, double Float64, string String, date Date32, time DateTime64) engine=File(Parquet) settings input_format_parquet_use_native_reader=true; -insert into test_native_parquet select number, number, number+1, 0.1*number, 0.2*number, toString(number), number, now64() + number from numbers(10000); - +create table test_native_parquet (i16 Int16, i32 Int32, i64 Int64, float Float32, double Float64, string String, date32 Date32, time64 DateTime64, date Date, time DateTime) engine=File(Parquet) settings input_format_parquet_use_native_reader=true; +insert into test_native_parquet select number, number, number+1, 0.1*number, 0.2*number, toString(number), number, toDateTime('2024-10-11 00:00:00') + number, number, toDateTime('2024-10-11 00:00:00') + number from numbers(10000); +-- test int16 +select sum(i16) from test_native_parquet; select * from test_native_parquet where i16 < 10; select * from test_native_parquet where i16 <= 10; select * from test_native_parquet where i16 between 10 and 20; select * from test_native_parquet where i16 > 9990; select * from test_native_parquet where i16 >= 9990; +-- test int32 +select sum(i32) from test_native_parquet; select * from test_native_parquet where i32 < 10; select * from test_native_parquet where i32 <= 10; select * from test_native_parquet where i32 between 10 and 20; select * from test_native_parquet where i32 > 9990; select * from test_native_parquet where i32 >= 9990; +-- test int64 +select sum(i64) from test_native_parquet; select * from test_native_parquet where i64 < 10; select * from test_native_parquet where i64 <= 10; select * from test_native_parquet where i64 between 10 and 20; select * from test_native_parquet where i64 > 9990; select * from test_native_parquet where i64 >= 9990; +-- test float +select sum(float) from test_native_parquet; select * from test_native_parquet where float < 1; select * from test_native_parquet where float <= 1; select * from test_native_parquet where float between 1 and 2; select * from test_native_parquet where float > 999; select * from test_native_parquet where float >= 999; +-- test double +select sum(double) from test_native_parquet; select * from test_native_parquet where double < 2; select * from test_native_parquet where double <= 2; select * from test_native_parquet where double between 2 and 4; select * from test_native_parquet where double > 9990 *0.2; select * from test_native_parquet where double >= 9990 *0.2; +-- test date +select max(date32) from test_native_parquet; +select * from test_native_parquet where date32 < '1970-01-10'; +select * from test_native_parquet where date32 <= '1970-01-10'; +select * from test_native_parquet where date32 between '1970-01-10' and '1970-01-20'; +select * from test_native_parquet where date32 > '1970-01-10'; +select * from test_native_parquet where date32 >= '1970-01-10'; + +-- test datetime +select max(time64) from test_native_parquet; + +-- test String +select max(string) from test_native_parquet; +select * from test_native_parquet where string = '1'; +select * from test_native_parquet where string in ('1','2','3'); + +-- test date +select max(date) from test_native_parquet; select * from test_native_parquet where date < '1970-01-10'; select * from test_native_parquet where date <= '1970-01-10'; select * from test_native_parquet where date between '1970-01-10' and '1970-01-20'; select * from test_native_parquet where date > '1970-01-10'; select * from test_native_parquet where date >= '1970-01-10'; -select * from test_native_parquet where string = '1'; -select * from test_native_parquet where string in ('1','2','3'); - -drop table if exists test_native_parquet; +-- test datetime +select max(time) from test_native_parquet; From 11b8b367804a6ae5fca3f2f943ea43bc24888470 Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Fri, 11 Oct 2024 20:51:09 +0800 Subject: [PATCH 27/34] add nullable test --- .../03214_native_parquet.reference | 32295 +++++++++++++++- .../0_stateless/03214_native_parquet.sql | 70 + 2 files changed, 32364 insertions(+), 1 deletion(-) diff --git a/tests/queries/0_stateless/03214_native_parquet.reference b/tests/queries/0_stateless/03214_native_parquet.reference index 60198799886..800cc1a99de 100644 --- a/tests/queries/0_stateless/03214_native_parquet.reference +++ b/tests/queries/0_stateless/03214_native_parquet.reference @@ -1,7 +1,7 @@ -- { echoOn } -- support data types: Int16, Int32, Int64, Float32, Float64, String, Date32, DateTime64, Date, DateTime drop table if exists test_native_parquet; -create table test_native_parquet (i16 Int16, i32 Int32, i64 Int64, float Float32, double Float64, string String, date32 Date32, time64 DateTime64, date Date, time DateTime) engine=File(Parquet) settings input_format_parquet_use_native_reader=true; +create table test_native_parquet (i16 Int16, i32 Int32, i64 Int64, float Float32, double Float64, string String, date32 Date32, time64 DateTime64, date Date, time DateTime) engine=File(Parquet) settings input_format_parquet_use_native_reader=false; insert into test_native_parquet select number, number, number+1, 0.1*number, 0.2*number, toString(number), number, toDateTime('2024-10-11 00:00:00') + number, number, toDateTime('2024-10-11 00:00:00') + number from numbers(10000); -- test int16 select sum(i16) from test_native_parquet; @@ -40351,3 +40351,32296 @@ select * from test_native_parquet where date >= '1970-01-10'; -- test datetime select max(time) from test_native_parquet; 2024-10-11 02:46:39 +drop table if exists test_nullable_native_parquet; +create table test_nullable_native_parquet (i16 Nullable(Int16), i32 Nullable(Int32), i64 Nullable(Int64), float Nullable(Float32), double Nullable(Float64), string Nullable(String), date32 Nullable(Date32), time64 Nullable(DateTime64), date Nullable(Date), time Nullable(DateTime)) engine=File(Parquet) settings input_format_parquet_use_native_reader=false; +insert into test_nullable_native_parquet select if(number%5, number, NULL), if(number%5, number, NULL), if(number%5, number+1, NULL), if(number%5, 0.1*number, NULL), if(number%5, 0.2*number, NULL), toString(number), if(number%5, number, NULL), if(number%5, toDateTime('2024-10-11 00:00:00') + number, NULL), if(number%5, number, NULL), if(number%5, toDateTime('2024-10-11 00:00:00') + number, NULL) from numbers(10000); +-- test int16 +select sum(i16) from test_nullable_native_parquet; +40000000 +select * from test_nullable_native_parquet where i16 < 10; +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +select * from test_nullable_native_parquet where i16 <= 10; +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +select * from test_nullable_native_parquet where i16 between 10 and 20; +11 11 12 1.1 2.2 11 1970-01-12 2024-10-11 00:00:11.000 1970-01-12 2024-10-11 00:00:11 +12 12 13 1.2 2.4000000000000004 12 1970-01-13 2024-10-11 00:00:12.000 1970-01-13 2024-10-11 00:00:12 +13 13 14 1.3 2.6 13 1970-01-14 2024-10-11 00:00:13.000 1970-01-14 2024-10-11 00:00:13 +14 14 15 1.4 2.8000000000000003 14 1970-01-15 2024-10-11 00:00:14.000 1970-01-15 2024-10-11 00:00:14 +16 16 17 1.6 3.2 16 1970-01-17 2024-10-11 00:00:16.000 1970-01-17 2024-10-11 00:00:16 +17 17 18 1.7 3.4000000000000004 17 1970-01-18 2024-10-11 00:00:17.000 1970-01-18 2024-10-11 00:00:17 +18 18 19 1.8 3.6 18 1970-01-19 2024-10-11 00:00:18.000 1970-01-19 2024-10-11 00:00:18 +19 19 20 1.9 3.8000000000000003 19 1970-01-20 2024-10-11 00:00:19.000 1970-01-20 2024-10-11 00:00:19 +select * from test_nullable_native_parquet where i16 > 9990; +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +select * from test_nullable_native_parquet where i16 >= 9990; +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +-- test int32 +select sum(i32) from test_nullable_native_parquet; +40000000 +select * from test_nullable_native_parquet where i32 < 10; +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +select * from test_nullable_native_parquet where i32 <= 10; +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +select * from test_nullable_native_parquet where i32 between 10 and 20; +11 11 12 1.1 2.2 11 1970-01-12 2024-10-11 00:00:11.000 1970-01-12 2024-10-11 00:00:11 +12 12 13 1.2 2.4000000000000004 12 1970-01-13 2024-10-11 00:00:12.000 1970-01-13 2024-10-11 00:00:12 +13 13 14 1.3 2.6 13 1970-01-14 2024-10-11 00:00:13.000 1970-01-14 2024-10-11 00:00:13 +14 14 15 1.4 2.8000000000000003 14 1970-01-15 2024-10-11 00:00:14.000 1970-01-15 2024-10-11 00:00:14 +16 16 17 1.6 3.2 16 1970-01-17 2024-10-11 00:00:16.000 1970-01-17 2024-10-11 00:00:16 +17 17 18 1.7 3.4000000000000004 17 1970-01-18 2024-10-11 00:00:17.000 1970-01-18 2024-10-11 00:00:17 +18 18 19 1.8 3.6 18 1970-01-19 2024-10-11 00:00:18.000 1970-01-19 2024-10-11 00:00:18 +19 19 20 1.9 3.8000000000000003 19 1970-01-20 2024-10-11 00:00:19.000 1970-01-20 2024-10-11 00:00:19 +select * from test_nullable_native_parquet where i32 > 9990; +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +select * from test_nullable_native_parquet where i32 >= 9990; +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +-- test int64 +select sum(i64) from test_nullable_native_parquet; +40008000 +select * from test_nullable_native_parquet where i64 < 10; +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +select * from test_nullable_native_parquet where i64 <= 10; +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +select * from test_nullable_native_parquet where i64 between 10 and 20; +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +11 11 12 1.1 2.2 11 1970-01-12 2024-10-11 00:00:11.000 1970-01-12 2024-10-11 00:00:11 +12 12 13 1.2 2.4000000000000004 12 1970-01-13 2024-10-11 00:00:12.000 1970-01-13 2024-10-11 00:00:12 +13 13 14 1.3 2.6 13 1970-01-14 2024-10-11 00:00:13.000 1970-01-14 2024-10-11 00:00:13 +14 14 15 1.4 2.8000000000000003 14 1970-01-15 2024-10-11 00:00:14.000 1970-01-15 2024-10-11 00:00:14 +16 16 17 1.6 3.2 16 1970-01-17 2024-10-11 00:00:16.000 1970-01-17 2024-10-11 00:00:16 +17 17 18 1.7 3.4000000000000004 17 1970-01-18 2024-10-11 00:00:17.000 1970-01-18 2024-10-11 00:00:17 +18 18 19 1.8 3.6 18 1970-01-19 2024-10-11 00:00:18.000 1970-01-19 2024-10-11 00:00:18 +19 19 20 1.9 3.8000000000000003 19 1970-01-20 2024-10-11 00:00:19.000 1970-01-20 2024-10-11 00:00:19 +select * from test_nullable_native_parquet where i64 > 9990; +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +select * from test_nullable_native_parquet where i64 >= 9990; +9989 9989 9990 998.9 1997.8000000000002 9989 1997-05-08 2024-10-11 02:46:29.000 1997-05-08 2024-10-11 02:46:29 +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +-- test float +select sum(float) from test_nullable_native_parquet; +4000000.0000000224 +select * from test_nullable_native_parquet where float < 1; +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +select * from test_nullable_native_parquet where float <= 1; +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +select * from test_nullable_native_parquet where float between 1 and 2; +11 11 12 1.1 2.2 11 1970-01-12 2024-10-11 00:00:11.000 1970-01-12 2024-10-11 00:00:11 +12 12 13 1.2 2.4000000000000004 12 1970-01-13 2024-10-11 00:00:12.000 1970-01-13 2024-10-11 00:00:12 +13 13 14 1.3 2.6 13 1970-01-14 2024-10-11 00:00:13.000 1970-01-14 2024-10-11 00:00:13 +14 14 15 1.4 2.8000000000000003 14 1970-01-15 2024-10-11 00:00:14.000 1970-01-15 2024-10-11 00:00:14 +16 16 17 1.6 3.2 16 1970-01-17 2024-10-11 00:00:16.000 1970-01-17 2024-10-11 00:00:16 +17 17 18 1.7 3.4000000000000004 17 1970-01-18 2024-10-11 00:00:17.000 1970-01-18 2024-10-11 00:00:17 +18 18 19 1.8 3.6 18 1970-01-19 2024-10-11 00:00:18.000 1970-01-19 2024-10-11 00:00:18 +19 19 20 1.9 3.8000000000000003 19 1970-01-20 2024-10-11 00:00:19.000 1970-01-20 2024-10-11 00:00:19 +select * from test_nullable_native_parquet where float > 999; +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +select * from test_nullable_native_parquet where float >= 999; +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +-- test double +select sum(double) from test_nullable_native_parquet; +8000000 +select * from test_nullable_native_parquet where double < 2; +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +select * from test_nullable_native_parquet where double <= 2; +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +select * from test_nullable_native_parquet where double between 2 and 4; +11 11 12 1.1 2.2 11 1970-01-12 2024-10-11 00:00:11.000 1970-01-12 2024-10-11 00:00:11 +12 12 13 1.2 2.4000000000000004 12 1970-01-13 2024-10-11 00:00:12.000 1970-01-13 2024-10-11 00:00:12 +13 13 14 1.3 2.6 13 1970-01-14 2024-10-11 00:00:13.000 1970-01-14 2024-10-11 00:00:13 +14 14 15 1.4 2.8000000000000003 14 1970-01-15 2024-10-11 00:00:14.000 1970-01-15 2024-10-11 00:00:14 +16 16 17 1.6 3.2 16 1970-01-17 2024-10-11 00:00:16.000 1970-01-17 2024-10-11 00:00:16 +17 17 18 1.7 3.4000000000000004 17 1970-01-18 2024-10-11 00:00:17.000 1970-01-18 2024-10-11 00:00:17 +18 18 19 1.8 3.6 18 1970-01-19 2024-10-11 00:00:18.000 1970-01-19 2024-10-11 00:00:18 +19 19 20 1.9 3.8000000000000003 19 1970-01-20 2024-10-11 00:00:19.000 1970-01-20 2024-10-11 00:00:19 +select * from test_nullable_native_parquet where double > 9990 *0.2; +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +select * from test_nullable_native_parquet where double >= 9990 *0.2; +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +-- test date +select max(date32) from test_nullable_native_parquet; +1997-05-18 +select * from test_nullable_native_parquet where date32 < '1970-01-10'; +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +select * from test_nullable_native_parquet where date32 <= '1970-01-10'; +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +select * from test_nullable_native_parquet where date32 between '1970-01-10' and '1970-01-20'; +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +11 11 12 1.1 2.2 11 1970-01-12 2024-10-11 00:00:11.000 1970-01-12 2024-10-11 00:00:11 +12 12 13 1.2 2.4000000000000004 12 1970-01-13 2024-10-11 00:00:12.000 1970-01-13 2024-10-11 00:00:12 +13 13 14 1.3 2.6 13 1970-01-14 2024-10-11 00:00:13.000 1970-01-14 2024-10-11 00:00:13 +14 14 15 1.4 2.8000000000000003 14 1970-01-15 2024-10-11 00:00:14.000 1970-01-15 2024-10-11 00:00:14 +16 16 17 1.6 3.2 16 1970-01-17 2024-10-11 00:00:16.000 1970-01-17 2024-10-11 00:00:16 +17 17 18 1.7 3.4000000000000004 17 1970-01-18 2024-10-11 00:00:17.000 1970-01-18 2024-10-11 00:00:17 +18 18 19 1.8 3.6 18 1970-01-19 2024-10-11 00:00:18.000 1970-01-19 2024-10-11 00:00:18 +19 19 20 1.9 3.8000000000000003 19 1970-01-20 2024-10-11 00:00:19.000 1970-01-20 2024-10-11 00:00:19 +select * from test_nullable_native_parquet where date32 > '1970-01-10'; +11 11 12 1.1 2.2 11 1970-01-12 2024-10-11 00:00:11.000 1970-01-12 2024-10-11 00:00:11 +12 12 13 1.2 2.4000000000000004 12 1970-01-13 2024-10-11 00:00:12.000 1970-01-13 2024-10-11 00:00:12 +13 13 14 1.3 2.6 13 1970-01-14 2024-10-11 00:00:13.000 1970-01-14 2024-10-11 00:00:13 +14 14 15 1.4 2.8000000000000003 14 1970-01-15 2024-10-11 00:00:14.000 1970-01-15 2024-10-11 00:00:14 +16 16 17 1.6 3.2 16 1970-01-17 2024-10-11 00:00:16.000 1970-01-17 2024-10-11 00:00:16 +17 17 18 1.7 3.4000000000000004 17 1970-01-18 2024-10-11 00:00:17.000 1970-01-18 2024-10-11 00:00:17 +18 18 19 1.8 3.6 18 1970-01-19 2024-10-11 00:00:18.000 1970-01-19 2024-10-11 00:00:18 +19 19 20 1.9 3.8000000000000003 19 1970-01-20 2024-10-11 00:00:19.000 1970-01-20 2024-10-11 00:00:19 +21 21 22 2.1 4.2 21 1970-01-22 2024-10-11 00:00:21.000 1970-01-22 2024-10-11 00:00:21 +22 22 23 2.2 4.4 22 1970-01-23 2024-10-11 00:00:22.000 1970-01-23 2024-10-11 00:00:22 +23 23 24 2.3 4.6000000000000005 23 1970-01-24 2024-10-11 00:00:23.000 1970-01-24 2024-10-11 00:00:23 +24 24 25 2.4 4.800000000000001 24 1970-01-25 2024-10-11 00:00:24.000 1970-01-25 2024-10-11 00:00:24 +26 26 27 2.6 5.2 26 1970-01-27 2024-10-11 00:00:26.000 1970-01-27 2024-10-11 00:00:26 +27 27 28 2.7 5.4 27 1970-01-28 2024-10-11 00:00:27.000 1970-01-28 2024-10-11 00:00:27 +28 28 29 2.8 5.6000000000000005 28 1970-01-29 2024-10-11 00:00:28.000 1970-01-29 2024-10-11 00:00:28 +29 29 30 2.9 5.800000000000001 29 1970-01-30 2024-10-11 00:00:29.000 1970-01-30 2024-10-11 00:00:29 +31 31 32 3.1 6.2 31 1970-02-01 2024-10-11 00:00:31.000 1970-02-01 2024-10-11 00:00:31 +32 32 33 3.2 6.4 32 1970-02-02 2024-10-11 00:00:32.000 1970-02-02 2024-10-11 00:00:32 +33 33 34 3.3 6.6000000000000005 33 1970-02-03 2024-10-11 00:00:33.000 1970-02-03 2024-10-11 00:00:33 +34 34 35 3.4 6.800000000000001 34 1970-02-04 2024-10-11 00:00:34.000 1970-02-04 2024-10-11 00:00:34 +36 36 37 3.6 7.2 36 1970-02-06 2024-10-11 00:00:36.000 1970-02-06 2024-10-11 00:00:36 +37 37 38 3.7 7.4 37 1970-02-07 2024-10-11 00:00:37.000 1970-02-07 2024-10-11 00:00:37 +38 38 39 3.8 7.6000000000000005 38 1970-02-08 2024-10-11 00:00:38.000 1970-02-08 2024-10-11 00:00:38 +39 39 40 3.9 7.800000000000001 39 1970-02-09 2024-10-11 00:00:39.000 1970-02-09 2024-10-11 00:00:39 +41 41 42 4.1 8.200000000000001 41 1970-02-11 2024-10-11 00:00:41.000 1970-02-11 2024-10-11 00:00:41 +42 42 43 4.2 8.4 42 1970-02-12 2024-10-11 00:00:42.000 1970-02-12 2024-10-11 00:00:42 +43 43 44 4.3 8.6 43 1970-02-13 2024-10-11 00:00:43.000 1970-02-13 2024-10-11 00:00:43 +44 44 45 4.4 8.8 44 1970-02-14 2024-10-11 00:00:44.000 1970-02-14 2024-10-11 00:00:44 +46 46 47 4.6 9.200000000000001 46 1970-02-16 2024-10-11 00:00:46.000 1970-02-16 2024-10-11 00:00:46 +47 47 48 4.7 9.4 47 1970-02-17 2024-10-11 00:00:47.000 1970-02-17 2024-10-11 00:00:47 +48 48 49 4.8 9.600000000000001 48 1970-02-18 2024-10-11 00:00:48.000 1970-02-18 2024-10-11 00:00:48 +49 49 50 4.9 9.8 49 1970-02-19 2024-10-11 00:00:49.000 1970-02-19 2024-10-11 00:00:49 +51 51 52 5.1 10.200000000000001 51 1970-02-21 2024-10-11 00:00:51.000 1970-02-21 2024-10-11 00:00:51 +52 52 53 5.2 10.4 52 1970-02-22 2024-10-11 00:00:52.000 1970-02-22 2024-10-11 00:00:52 +53 53 54 5.3 10.600000000000001 53 1970-02-23 2024-10-11 00:00:53.000 1970-02-23 2024-10-11 00:00:53 +54 54 55 5.4 10.8 54 1970-02-24 2024-10-11 00:00:54.000 1970-02-24 2024-10-11 00:00:54 +56 56 57 5.6 11.200000000000001 56 1970-02-26 2024-10-11 00:00:56.000 1970-02-26 2024-10-11 00:00:56 +57 57 58 5.7 11.4 57 1970-02-27 2024-10-11 00:00:57.000 1970-02-27 2024-10-11 00:00:57 +58 58 59 5.8 11.600000000000001 58 1970-02-28 2024-10-11 00:00:58.000 1970-02-28 2024-10-11 00:00:58 +59 59 60 5.9 11.8 59 1970-03-01 2024-10-11 00:00:59.000 1970-03-01 2024-10-11 00:00:59 +61 61 62 6.1 12.200000000000001 61 1970-03-03 2024-10-11 00:01:01.000 1970-03-03 2024-10-11 00:01:01 +62 62 63 6.2 12.4 62 1970-03-04 2024-10-11 00:01:02.000 1970-03-04 2024-10-11 00:01:02 +63 63 64 6.3 12.600000000000001 63 1970-03-05 2024-10-11 00:01:03.000 1970-03-05 2024-10-11 00:01:03 +64 64 65 6.4 12.8 64 1970-03-06 2024-10-11 00:01:04.000 1970-03-06 2024-10-11 00:01:04 +66 66 67 6.6 13.200000000000001 66 1970-03-08 2024-10-11 00:01:06.000 1970-03-08 2024-10-11 00:01:06 +67 67 68 6.7 13.4 67 1970-03-09 2024-10-11 00:01:07.000 1970-03-09 2024-10-11 00:01:07 +68 68 69 6.8 13.600000000000001 68 1970-03-10 2024-10-11 00:01:08.000 1970-03-10 2024-10-11 00:01:08 +69 69 70 6.9 13.8 69 1970-03-11 2024-10-11 00:01:09.000 1970-03-11 2024-10-11 00:01:09 +71 71 72 7.1 14.200000000000001 71 1970-03-13 2024-10-11 00:01:11.000 1970-03-13 2024-10-11 00:01:11 +72 72 73 7.2 14.4 72 1970-03-14 2024-10-11 00:01:12.000 1970-03-14 2024-10-11 00:01:12 +73 73 74 7.3 14.600000000000001 73 1970-03-15 2024-10-11 00:01:13.000 1970-03-15 2024-10-11 00:01:13 +74 74 75 7.4 14.8 74 1970-03-16 2024-10-11 00:01:14.000 1970-03-16 2024-10-11 00:01:14 +76 76 77 7.6 15.200000000000001 76 1970-03-18 2024-10-11 00:01:16.000 1970-03-18 2024-10-11 00:01:16 +77 77 78 7.7 15.4 77 1970-03-19 2024-10-11 00:01:17.000 1970-03-19 2024-10-11 00:01:17 +78 78 79 7.8 15.600000000000001 78 1970-03-20 2024-10-11 00:01:18.000 1970-03-20 2024-10-11 00:01:18 +79 79 80 7.9 15.8 79 1970-03-21 2024-10-11 00:01:19.000 1970-03-21 2024-10-11 00:01:19 +81 81 82 8.1 16.2 81 1970-03-23 2024-10-11 00:01:21.000 1970-03-23 2024-10-11 00:01:21 +82 82 83 8.2 16.400000000000002 82 1970-03-24 2024-10-11 00:01:22.000 1970-03-24 2024-10-11 00:01:22 +83 83 84 8.3 16.6 83 1970-03-25 2024-10-11 00:01:23.000 1970-03-25 2024-10-11 00:01:23 +84 84 85 8.4 16.8 84 1970-03-26 2024-10-11 00:01:24.000 1970-03-26 2024-10-11 00:01:24 +86 86 87 8.6 17.2 86 1970-03-28 2024-10-11 00:01:26.000 1970-03-28 2024-10-11 00:01:26 +87 87 88 8.7 17.400000000000002 87 1970-03-29 2024-10-11 00:01:27.000 1970-03-29 2024-10-11 00:01:27 +88 88 89 8.8 17.6 88 1970-03-30 2024-10-11 00:01:28.000 1970-03-30 2024-10-11 00:01:28 +89 89 90 8.9 17.8 89 1970-03-31 2024-10-11 00:01:29.000 1970-03-31 2024-10-11 00:01:29 +91 91 92 9.1 18.2 91 1970-04-02 2024-10-11 00:01:31.000 1970-04-02 2024-10-11 00:01:31 +92 92 93 9.2 18.400000000000002 92 1970-04-03 2024-10-11 00:01:32.000 1970-04-03 2024-10-11 00:01:32 +93 93 94 9.3 18.6 93 1970-04-04 2024-10-11 00:01:33.000 1970-04-04 2024-10-11 00:01:33 +94 94 95 9.4 18.8 94 1970-04-05 2024-10-11 00:01:34.000 1970-04-05 2024-10-11 00:01:34 +96 96 97 9.6 19.200000000000003 96 1970-04-07 2024-10-11 00:01:36.000 1970-04-07 2024-10-11 00:01:36 +97 97 98 9.7 19.400000000000002 97 1970-04-08 2024-10-11 00:01:37.000 1970-04-08 2024-10-11 00:01:37 +98 98 99 9.8 19.6 98 1970-04-09 2024-10-11 00:01:38.000 1970-04-09 2024-10-11 00:01:38 +99 99 100 9.9 19.8 99 1970-04-10 2024-10-11 00:01:39.000 1970-04-10 2024-10-11 00:01:39 +101 101 102 10.1 20.200000000000003 101 1970-04-12 2024-10-11 00:01:41.000 1970-04-12 2024-10-11 00:01:41 +102 102 103 10.2 20.400000000000002 102 1970-04-13 2024-10-11 00:01:42.000 1970-04-13 2024-10-11 00:01:42 +103 103 104 10.3 20.6 103 1970-04-14 2024-10-11 00:01:43.000 1970-04-14 2024-10-11 00:01:43 +104 104 105 10.4 20.8 104 1970-04-15 2024-10-11 00:01:44.000 1970-04-15 2024-10-11 00:01:44 +106 106 107 10.6 21.200000000000003 106 1970-04-17 2024-10-11 00:01:46.000 1970-04-17 2024-10-11 00:01:46 +107 107 108 10.7 21.400000000000002 107 1970-04-18 2024-10-11 00:01:47.000 1970-04-18 2024-10-11 00:01:47 +108 108 109 10.8 21.6 108 1970-04-19 2024-10-11 00:01:48.000 1970-04-19 2024-10-11 00:01:48 +109 109 110 10.9 21.8 109 1970-04-20 2024-10-11 00:01:49.000 1970-04-20 2024-10-11 00:01:49 +111 111 112 11.1 22.200000000000003 111 1970-04-22 2024-10-11 00:01:51.000 1970-04-22 2024-10-11 00:01:51 +112 112 113 11.2 22.400000000000002 112 1970-04-23 2024-10-11 00:01:52.000 1970-04-23 2024-10-11 00:01:52 +113 113 114 11.3 22.6 113 1970-04-24 2024-10-11 00:01:53.000 1970-04-24 2024-10-11 00:01:53 +114 114 115 11.4 22.8 114 1970-04-25 2024-10-11 00:01:54.000 1970-04-25 2024-10-11 00:01:54 +116 116 117 11.6 23.200000000000003 116 1970-04-27 2024-10-11 00:01:56.000 1970-04-27 2024-10-11 00:01:56 +117 117 118 11.7 23.400000000000002 117 1970-04-28 2024-10-11 00:01:57.000 1970-04-28 2024-10-11 00:01:57 +118 118 119 11.8 23.6 118 1970-04-29 2024-10-11 00:01:58.000 1970-04-29 2024-10-11 00:01:58 +119 119 120 11.9 23.8 119 1970-04-30 2024-10-11 00:01:59.000 1970-04-30 2024-10-11 00:01:59 +121 121 122 12.1 24.200000000000003 121 1970-05-02 2024-10-11 00:02:01.000 1970-05-02 2024-10-11 00:02:01 +122 122 123 12.2 24.400000000000002 122 1970-05-03 2024-10-11 00:02:02.000 1970-05-03 2024-10-11 00:02:02 +123 123 124 12.3 24.6 123 1970-05-04 2024-10-11 00:02:03.000 1970-05-04 2024-10-11 00:02:03 +124 124 125 12.4 24.8 124 1970-05-05 2024-10-11 00:02:04.000 1970-05-05 2024-10-11 00:02:04 +126 126 127 12.6 25.200000000000003 126 1970-05-07 2024-10-11 00:02:06.000 1970-05-07 2024-10-11 00:02:06 +127 127 128 12.7 25.400000000000002 127 1970-05-08 2024-10-11 00:02:07.000 1970-05-08 2024-10-11 00:02:07 +128 128 129 12.8 25.6 128 1970-05-09 2024-10-11 00:02:08.000 1970-05-09 2024-10-11 00:02:08 +129 129 130 12.9 25.8 129 1970-05-10 2024-10-11 00:02:09.000 1970-05-10 2024-10-11 00:02:09 +131 131 132 13.1 26.200000000000003 131 1970-05-12 2024-10-11 00:02:11.000 1970-05-12 2024-10-11 00:02:11 +132 132 133 13.2 26.400000000000002 132 1970-05-13 2024-10-11 00:02:12.000 1970-05-13 2024-10-11 00:02:12 +133 133 134 13.3 26.6 133 1970-05-14 2024-10-11 00:02:13.000 1970-05-14 2024-10-11 00:02:13 +134 134 135 13.4 26.8 134 1970-05-15 2024-10-11 00:02:14.000 1970-05-15 2024-10-11 00:02:14 +136 136 137 13.6 27.200000000000003 136 1970-05-17 2024-10-11 00:02:16.000 1970-05-17 2024-10-11 00:02:16 +137 137 138 13.7 27.400000000000002 137 1970-05-18 2024-10-11 00:02:17.000 1970-05-18 2024-10-11 00:02:17 +138 138 139 13.8 27.6 138 1970-05-19 2024-10-11 00:02:18.000 1970-05-19 2024-10-11 00:02:18 +139 139 140 13.9 27.8 139 1970-05-20 2024-10-11 00:02:19.000 1970-05-20 2024-10-11 00:02:19 +141 141 142 14.1 28.200000000000003 141 1970-05-22 2024-10-11 00:02:21.000 1970-05-22 2024-10-11 00:02:21 +142 142 143 14.2 28.400000000000002 142 1970-05-23 2024-10-11 00:02:22.000 1970-05-23 2024-10-11 00:02:22 +143 143 144 14.3 28.6 143 1970-05-24 2024-10-11 00:02:23.000 1970-05-24 2024-10-11 00:02:23 +144 144 145 14.4 28.8 144 1970-05-25 2024-10-11 00:02:24.000 1970-05-25 2024-10-11 00:02:24 +146 146 147 14.6 29.200000000000003 146 1970-05-27 2024-10-11 00:02:26.000 1970-05-27 2024-10-11 00:02:26 +147 147 148 14.7 29.400000000000002 147 1970-05-28 2024-10-11 00:02:27.000 1970-05-28 2024-10-11 00:02:27 +148 148 149 14.8 29.6 148 1970-05-29 2024-10-11 00:02:28.000 1970-05-29 2024-10-11 00:02:28 +149 149 150 14.9 29.8 149 1970-05-30 2024-10-11 00:02:29.000 1970-05-30 2024-10-11 00:02:29 +151 151 152 15.1 30.200000000000003 151 1970-06-01 2024-10-11 00:02:31.000 1970-06-01 2024-10-11 00:02:31 +152 152 153 15.2 30.400000000000002 152 1970-06-02 2024-10-11 00:02:32.000 1970-06-02 2024-10-11 00:02:32 +153 153 154 15.3 30.6 153 1970-06-03 2024-10-11 00:02:33.000 1970-06-03 2024-10-11 00:02:33 +154 154 155 15.4 30.8 154 1970-06-04 2024-10-11 00:02:34.000 1970-06-04 2024-10-11 00:02:34 +156 156 157 15.6 31.200000000000003 156 1970-06-06 2024-10-11 00:02:36.000 1970-06-06 2024-10-11 00:02:36 +157 157 158 15.7 31.400000000000002 157 1970-06-07 2024-10-11 00:02:37.000 1970-06-07 2024-10-11 00:02:37 +158 158 159 15.8 31.6 158 1970-06-08 2024-10-11 00:02:38.000 1970-06-08 2024-10-11 00:02:38 +159 159 160 15.9 31.8 159 1970-06-09 2024-10-11 00:02:39.000 1970-06-09 2024-10-11 00:02:39 +161 161 162 16.1 32.2 161 1970-06-11 2024-10-11 00:02:41.000 1970-06-11 2024-10-11 00:02:41 +162 162 163 16.2 32.4 162 1970-06-12 2024-10-11 00:02:42.000 1970-06-12 2024-10-11 00:02:42 +163 163 164 16.3 32.6 163 1970-06-13 2024-10-11 00:02:43.000 1970-06-13 2024-10-11 00:02:43 +164 164 165 16.4 32.800000000000004 164 1970-06-14 2024-10-11 00:02:44.000 1970-06-14 2024-10-11 00:02:44 +166 166 167 16.6 33.2 166 1970-06-16 2024-10-11 00:02:46.000 1970-06-16 2024-10-11 00:02:46 +167 167 168 16.7 33.4 167 1970-06-17 2024-10-11 00:02:47.000 1970-06-17 2024-10-11 00:02:47 +168 168 169 16.8 33.6 168 1970-06-18 2024-10-11 00:02:48.000 1970-06-18 2024-10-11 00:02:48 +169 169 170 16.9 33.800000000000004 169 1970-06-19 2024-10-11 00:02:49.000 1970-06-19 2024-10-11 00:02:49 +171 171 172 17.1 34.2 171 1970-06-21 2024-10-11 00:02:51.000 1970-06-21 2024-10-11 00:02:51 +172 172 173 17.2 34.4 172 1970-06-22 2024-10-11 00:02:52.000 1970-06-22 2024-10-11 00:02:52 +173 173 174 17.3 34.6 173 1970-06-23 2024-10-11 00:02:53.000 1970-06-23 2024-10-11 00:02:53 +174 174 175 17.4 34.800000000000004 174 1970-06-24 2024-10-11 00:02:54.000 1970-06-24 2024-10-11 00:02:54 +176 176 177 17.6 35.2 176 1970-06-26 2024-10-11 00:02:56.000 1970-06-26 2024-10-11 00:02:56 +177 177 178 17.7 35.4 177 1970-06-27 2024-10-11 00:02:57.000 1970-06-27 2024-10-11 00:02:57 +178 178 179 17.8 35.6 178 1970-06-28 2024-10-11 00:02:58.000 1970-06-28 2024-10-11 00:02:58 +179 179 180 17.9 35.800000000000004 179 1970-06-29 2024-10-11 00:02:59.000 1970-06-29 2024-10-11 00:02:59 +181 181 182 18.1 36.2 181 1970-07-01 2024-10-11 00:03:01.000 1970-07-01 2024-10-11 00:03:01 +182 182 183 18.2 36.4 182 1970-07-02 2024-10-11 00:03:02.000 1970-07-02 2024-10-11 00:03:02 +183 183 184 18.3 36.6 183 1970-07-03 2024-10-11 00:03:03.000 1970-07-03 2024-10-11 00:03:03 +184 184 185 18.4 36.800000000000004 184 1970-07-04 2024-10-11 00:03:04.000 1970-07-04 2024-10-11 00:03:04 +186 186 187 18.6 37.2 186 1970-07-06 2024-10-11 00:03:06.000 1970-07-06 2024-10-11 00:03:06 +187 187 188 18.7 37.4 187 1970-07-07 2024-10-11 00:03:07.000 1970-07-07 2024-10-11 00:03:07 +188 188 189 18.8 37.6 188 1970-07-08 2024-10-11 00:03:08.000 1970-07-08 2024-10-11 00:03:08 +189 189 190 18.9 37.800000000000004 189 1970-07-09 2024-10-11 00:03:09.000 1970-07-09 2024-10-11 00:03:09 +191 191 192 19.1 38.2 191 1970-07-11 2024-10-11 00:03:11.000 1970-07-11 2024-10-11 00:03:11 +192 192 193 19.2 38.400000000000006 192 1970-07-12 2024-10-11 00:03:12.000 1970-07-12 2024-10-11 00:03:12 +193 193 194 19.3 38.6 193 1970-07-13 2024-10-11 00:03:13.000 1970-07-13 2024-10-11 00:03:13 +194 194 195 19.4 38.800000000000004 194 1970-07-14 2024-10-11 00:03:14.000 1970-07-14 2024-10-11 00:03:14 +196 196 197 19.6 39.2 196 1970-07-16 2024-10-11 00:03:16.000 1970-07-16 2024-10-11 00:03:16 +197 197 198 19.7 39.400000000000006 197 1970-07-17 2024-10-11 00:03:17.000 1970-07-17 2024-10-11 00:03:17 +198 198 199 19.8 39.6 198 1970-07-18 2024-10-11 00:03:18.000 1970-07-18 2024-10-11 00:03:18 +199 199 200 19.9 39.800000000000004 199 1970-07-19 2024-10-11 00:03:19.000 1970-07-19 2024-10-11 00:03:19 +201 201 202 20.1 40.2 201 1970-07-21 2024-10-11 00:03:21.000 1970-07-21 2024-10-11 00:03:21 +202 202 203 20.2 40.400000000000006 202 1970-07-22 2024-10-11 00:03:22.000 1970-07-22 2024-10-11 00:03:22 +203 203 204 20.3 40.6 203 1970-07-23 2024-10-11 00:03:23.000 1970-07-23 2024-10-11 00:03:23 +204 204 205 20.4 40.800000000000004 204 1970-07-24 2024-10-11 00:03:24.000 1970-07-24 2024-10-11 00:03:24 +206 206 207 20.6 41.2 206 1970-07-26 2024-10-11 00:03:26.000 1970-07-26 2024-10-11 00:03:26 +207 207 208 20.7 41.400000000000006 207 1970-07-27 2024-10-11 00:03:27.000 1970-07-27 2024-10-11 00:03:27 +208 208 209 20.8 41.6 208 1970-07-28 2024-10-11 00:03:28.000 1970-07-28 2024-10-11 00:03:28 +209 209 210 20.9 41.800000000000004 209 1970-07-29 2024-10-11 00:03:29.000 1970-07-29 2024-10-11 00:03:29 +211 211 212 21.1 42.2 211 1970-07-31 2024-10-11 00:03:31.000 1970-07-31 2024-10-11 00:03:31 +212 212 213 21.2 42.400000000000006 212 1970-08-01 2024-10-11 00:03:32.000 1970-08-01 2024-10-11 00:03:32 +213 213 214 21.3 42.6 213 1970-08-02 2024-10-11 00:03:33.000 1970-08-02 2024-10-11 00:03:33 +214 214 215 21.4 42.800000000000004 214 1970-08-03 2024-10-11 00:03:34.000 1970-08-03 2024-10-11 00:03:34 +216 216 217 21.6 43.2 216 1970-08-05 2024-10-11 00:03:36.000 1970-08-05 2024-10-11 00:03:36 +217 217 218 21.7 43.400000000000006 217 1970-08-06 2024-10-11 00:03:37.000 1970-08-06 2024-10-11 00:03:37 +218 218 219 21.8 43.6 218 1970-08-07 2024-10-11 00:03:38.000 1970-08-07 2024-10-11 00:03:38 +219 219 220 21.9 43.800000000000004 219 1970-08-08 2024-10-11 00:03:39.000 1970-08-08 2024-10-11 00:03:39 +221 221 222 22.1 44.2 221 1970-08-10 2024-10-11 00:03:41.000 1970-08-10 2024-10-11 00:03:41 +222 222 223 22.2 44.400000000000006 222 1970-08-11 2024-10-11 00:03:42.000 1970-08-11 2024-10-11 00:03:42 +223 223 224 22.3 44.6 223 1970-08-12 2024-10-11 00:03:43.000 1970-08-12 2024-10-11 00:03:43 +224 224 225 22.4 44.800000000000004 224 1970-08-13 2024-10-11 00:03:44.000 1970-08-13 2024-10-11 00:03:44 +226 226 227 22.6 45.2 226 1970-08-15 2024-10-11 00:03:46.000 1970-08-15 2024-10-11 00:03:46 +227 227 228 22.7 45.400000000000006 227 1970-08-16 2024-10-11 00:03:47.000 1970-08-16 2024-10-11 00:03:47 +228 228 229 22.8 45.6 228 1970-08-17 2024-10-11 00:03:48.000 1970-08-17 2024-10-11 00:03:48 +229 229 230 22.9 45.800000000000004 229 1970-08-18 2024-10-11 00:03:49.000 1970-08-18 2024-10-11 00:03:49 +231 231 232 23.1 46.2 231 1970-08-20 2024-10-11 00:03:51.000 1970-08-20 2024-10-11 00:03:51 +232 232 233 23.2 46.400000000000006 232 1970-08-21 2024-10-11 00:03:52.000 1970-08-21 2024-10-11 00:03:52 +233 233 234 23.3 46.6 233 1970-08-22 2024-10-11 00:03:53.000 1970-08-22 2024-10-11 00:03:53 +234 234 235 23.4 46.800000000000004 234 1970-08-23 2024-10-11 00:03:54.000 1970-08-23 2024-10-11 00:03:54 +236 236 237 23.6 47.2 236 1970-08-25 2024-10-11 00:03:56.000 1970-08-25 2024-10-11 00:03:56 +237 237 238 23.7 47.400000000000006 237 1970-08-26 2024-10-11 00:03:57.000 1970-08-26 2024-10-11 00:03:57 +238 238 239 23.8 47.6 238 1970-08-27 2024-10-11 00:03:58.000 1970-08-27 2024-10-11 00:03:58 +239 239 240 23.9 47.800000000000004 239 1970-08-28 2024-10-11 00:03:59.000 1970-08-28 2024-10-11 00:03:59 +241 241 242 24.1 48.2 241 1970-08-30 2024-10-11 00:04:01.000 1970-08-30 2024-10-11 00:04:01 +242 242 243 24.2 48.400000000000006 242 1970-08-31 2024-10-11 00:04:02.000 1970-08-31 2024-10-11 00:04:02 +243 243 244 24.3 48.6 243 1970-09-01 2024-10-11 00:04:03.000 1970-09-01 2024-10-11 00:04:03 +244 244 245 24.4 48.800000000000004 244 1970-09-02 2024-10-11 00:04:04.000 1970-09-02 2024-10-11 00:04:04 +246 246 247 24.6 49.2 246 1970-09-04 2024-10-11 00:04:06.000 1970-09-04 2024-10-11 00:04:06 +247 247 248 24.7 49.400000000000006 247 1970-09-05 2024-10-11 00:04:07.000 1970-09-05 2024-10-11 00:04:07 +248 248 249 24.8 49.6 248 1970-09-06 2024-10-11 00:04:08.000 1970-09-06 2024-10-11 00:04:08 +249 249 250 24.9 49.800000000000004 249 1970-09-07 2024-10-11 00:04:09.000 1970-09-07 2024-10-11 00:04:09 +251 251 252 25.1 50.2 251 1970-09-09 2024-10-11 00:04:11.000 1970-09-09 2024-10-11 00:04:11 +252 252 253 25.2 50.400000000000006 252 1970-09-10 2024-10-11 00:04:12.000 1970-09-10 2024-10-11 00:04:12 +253 253 254 25.3 50.6 253 1970-09-11 2024-10-11 00:04:13.000 1970-09-11 2024-10-11 00:04:13 +254 254 255 25.4 50.800000000000004 254 1970-09-12 2024-10-11 00:04:14.000 1970-09-12 2024-10-11 00:04:14 +256 256 257 25.6 51.2 256 1970-09-14 2024-10-11 00:04:16.000 1970-09-14 2024-10-11 00:04:16 +257 257 258 25.7 51.400000000000006 257 1970-09-15 2024-10-11 00:04:17.000 1970-09-15 2024-10-11 00:04:17 +258 258 259 25.8 51.6 258 1970-09-16 2024-10-11 00:04:18.000 1970-09-16 2024-10-11 00:04:18 +259 259 260 25.9 51.800000000000004 259 1970-09-17 2024-10-11 00:04:19.000 1970-09-17 2024-10-11 00:04:19 +261 261 262 26.1 52.2 261 1970-09-19 2024-10-11 00:04:21.000 1970-09-19 2024-10-11 00:04:21 +262 262 263 26.2 52.400000000000006 262 1970-09-20 2024-10-11 00:04:22.000 1970-09-20 2024-10-11 00:04:22 +263 263 264 26.3 52.6 263 1970-09-21 2024-10-11 00:04:23.000 1970-09-21 2024-10-11 00:04:23 +264 264 265 26.4 52.800000000000004 264 1970-09-22 2024-10-11 00:04:24.000 1970-09-22 2024-10-11 00:04:24 +266 266 267 26.6 53.2 266 1970-09-24 2024-10-11 00:04:26.000 1970-09-24 2024-10-11 00:04:26 +267 267 268 26.7 53.400000000000006 267 1970-09-25 2024-10-11 00:04:27.000 1970-09-25 2024-10-11 00:04:27 +268 268 269 26.8 53.6 268 1970-09-26 2024-10-11 00:04:28.000 1970-09-26 2024-10-11 00:04:28 +269 269 270 26.9 53.800000000000004 269 1970-09-27 2024-10-11 00:04:29.000 1970-09-27 2024-10-11 00:04:29 +271 271 272 27.1 54.2 271 1970-09-29 2024-10-11 00:04:31.000 1970-09-29 2024-10-11 00:04:31 +272 272 273 27.2 54.400000000000006 272 1970-09-30 2024-10-11 00:04:32.000 1970-09-30 2024-10-11 00:04:32 +273 273 274 27.3 54.6 273 1970-10-01 2024-10-11 00:04:33.000 1970-10-01 2024-10-11 00:04:33 +274 274 275 27.4 54.800000000000004 274 1970-10-02 2024-10-11 00:04:34.000 1970-10-02 2024-10-11 00:04:34 +276 276 277 27.6 55.2 276 1970-10-04 2024-10-11 00:04:36.000 1970-10-04 2024-10-11 00:04:36 +277 277 278 27.7 55.400000000000006 277 1970-10-05 2024-10-11 00:04:37.000 1970-10-05 2024-10-11 00:04:37 +278 278 279 27.8 55.6 278 1970-10-06 2024-10-11 00:04:38.000 1970-10-06 2024-10-11 00:04:38 +279 279 280 27.9 55.800000000000004 279 1970-10-07 2024-10-11 00:04:39.000 1970-10-07 2024-10-11 00:04:39 +281 281 282 28.1 56.2 281 1970-10-09 2024-10-11 00:04:41.000 1970-10-09 2024-10-11 00:04:41 +282 282 283 28.2 56.400000000000006 282 1970-10-10 2024-10-11 00:04:42.000 1970-10-10 2024-10-11 00:04:42 +283 283 284 28.3 56.6 283 1970-10-11 2024-10-11 00:04:43.000 1970-10-11 2024-10-11 00:04:43 +284 284 285 28.4 56.800000000000004 284 1970-10-12 2024-10-11 00:04:44.000 1970-10-12 2024-10-11 00:04:44 +286 286 287 28.6 57.2 286 1970-10-14 2024-10-11 00:04:46.000 1970-10-14 2024-10-11 00:04:46 +287 287 288 28.7 57.400000000000006 287 1970-10-15 2024-10-11 00:04:47.000 1970-10-15 2024-10-11 00:04:47 +288 288 289 28.8 57.6 288 1970-10-16 2024-10-11 00:04:48.000 1970-10-16 2024-10-11 00:04:48 +289 289 290 28.9 57.800000000000004 289 1970-10-17 2024-10-11 00:04:49.000 1970-10-17 2024-10-11 00:04:49 +291 291 292 29.1 58.2 291 1970-10-19 2024-10-11 00:04:51.000 1970-10-19 2024-10-11 00:04:51 +292 292 293 29.2 58.400000000000006 292 1970-10-20 2024-10-11 00:04:52.000 1970-10-20 2024-10-11 00:04:52 +293 293 294 29.3 58.6 293 1970-10-21 2024-10-11 00:04:53.000 1970-10-21 2024-10-11 00:04:53 +294 294 295 29.4 58.800000000000004 294 1970-10-22 2024-10-11 00:04:54.000 1970-10-22 2024-10-11 00:04:54 +296 296 297 29.6 59.2 296 1970-10-24 2024-10-11 00:04:56.000 1970-10-24 2024-10-11 00:04:56 +297 297 298 29.7 59.400000000000006 297 1970-10-25 2024-10-11 00:04:57.000 1970-10-25 2024-10-11 00:04:57 +298 298 299 29.8 59.6 298 1970-10-26 2024-10-11 00:04:58.000 1970-10-26 2024-10-11 00:04:58 +299 299 300 29.9 59.800000000000004 299 1970-10-27 2024-10-11 00:04:59.000 1970-10-27 2024-10-11 00:04:59 +301 301 302 30.1 60.2 301 1970-10-29 2024-10-11 00:05:01.000 1970-10-29 2024-10-11 00:05:01 +302 302 303 30.2 60.400000000000006 302 1970-10-30 2024-10-11 00:05:02.000 1970-10-30 2024-10-11 00:05:02 +303 303 304 30.3 60.6 303 1970-10-31 2024-10-11 00:05:03.000 1970-10-31 2024-10-11 00:05:03 +304 304 305 30.4 60.800000000000004 304 1970-11-01 2024-10-11 00:05:04.000 1970-11-01 2024-10-11 00:05:04 +306 306 307 30.6 61.2 306 1970-11-03 2024-10-11 00:05:06.000 1970-11-03 2024-10-11 00:05:06 +307 307 308 30.7 61.400000000000006 307 1970-11-04 2024-10-11 00:05:07.000 1970-11-04 2024-10-11 00:05:07 +308 308 309 30.8 61.6 308 1970-11-05 2024-10-11 00:05:08.000 1970-11-05 2024-10-11 00:05:08 +309 309 310 30.9 61.800000000000004 309 1970-11-06 2024-10-11 00:05:09.000 1970-11-06 2024-10-11 00:05:09 +311 311 312 31.1 62.2 311 1970-11-08 2024-10-11 00:05:11.000 1970-11-08 2024-10-11 00:05:11 +312 312 313 31.2 62.400000000000006 312 1970-11-09 2024-10-11 00:05:12.000 1970-11-09 2024-10-11 00:05:12 +313 313 314 31.3 62.6 313 1970-11-10 2024-10-11 00:05:13.000 1970-11-10 2024-10-11 00:05:13 +314 314 315 31.4 62.800000000000004 314 1970-11-11 2024-10-11 00:05:14.000 1970-11-11 2024-10-11 00:05:14 +316 316 317 31.6 63.2 316 1970-11-13 2024-10-11 00:05:16.000 1970-11-13 2024-10-11 00:05:16 +317 317 318 31.7 63.400000000000006 317 1970-11-14 2024-10-11 00:05:17.000 1970-11-14 2024-10-11 00:05:17 +318 318 319 31.8 63.6 318 1970-11-15 2024-10-11 00:05:18.000 1970-11-15 2024-10-11 00:05:18 +319 319 320 31.9 63.800000000000004 319 1970-11-16 2024-10-11 00:05:19.000 1970-11-16 2024-10-11 00:05:19 +321 321 322 32.1 64.2 321 1970-11-18 2024-10-11 00:05:21.000 1970-11-18 2024-10-11 00:05:21 +322 322 323 32.2 64.4 322 1970-11-19 2024-10-11 00:05:22.000 1970-11-19 2024-10-11 00:05:22 +323 323 324 32.3 64.60000000000001 323 1970-11-20 2024-10-11 00:05:23.000 1970-11-20 2024-10-11 00:05:23 +324 324 325 32.4 64.8 324 1970-11-21 2024-10-11 00:05:24.000 1970-11-21 2024-10-11 00:05:24 +326 326 327 32.6 65.2 326 1970-11-23 2024-10-11 00:05:26.000 1970-11-23 2024-10-11 00:05:26 +327 327 328 32.7 65.4 327 1970-11-24 2024-10-11 00:05:27.000 1970-11-24 2024-10-11 00:05:27 +328 328 329 32.8 65.60000000000001 328 1970-11-25 2024-10-11 00:05:28.000 1970-11-25 2024-10-11 00:05:28 +329 329 330 32.9 65.8 329 1970-11-26 2024-10-11 00:05:29.000 1970-11-26 2024-10-11 00:05:29 +331 331 332 33.1 66.2 331 1970-11-28 2024-10-11 00:05:31.000 1970-11-28 2024-10-11 00:05:31 +332 332 333 33.2 66.4 332 1970-11-29 2024-10-11 00:05:32.000 1970-11-29 2024-10-11 00:05:32 +333 333 334 33.3 66.60000000000001 333 1970-11-30 2024-10-11 00:05:33.000 1970-11-30 2024-10-11 00:05:33 +334 334 335 33.4 66.8 334 1970-12-01 2024-10-11 00:05:34.000 1970-12-01 2024-10-11 00:05:34 +336 336 337 33.6 67.2 336 1970-12-03 2024-10-11 00:05:36.000 1970-12-03 2024-10-11 00:05:36 +337 337 338 33.7 67.4 337 1970-12-04 2024-10-11 00:05:37.000 1970-12-04 2024-10-11 00:05:37 +338 338 339 33.8 67.60000000000001 338 1970-12-05 2024-10-11 00:05:38.000 1970-12-05 2024-10-11 00:05:38 +339 339 340 33.9 67.8 339 1970-12-06 2024-10-11 00:05:39.000 1970-12-06 2024-10-11 00:05:39 +341 341 342 34.1 68.2 341 1970-12-08 2024-10-11 00:05:41.000 1970-12-08 2024-10-11 00:05:41 +342 342 343 34.2 68.4 342 1970-12-09 2024-10-11 00:05:42.000 1970-12-09 2024-10-11 00:05:42 +343 343 344 34.3 68.60000000000001 343 1970-12-10 2024-10-11 00:05:43.000 1970-12-10 2024-10-11 00:05:43 +344 344 345 34.4 68.8 344 1970-12-11 2024-10-11 00:05:44.000 1970-12-11 2024-10-11 00:05:44 +346 346 347 34.6 69.2 346 1970-12-13 2024-10-11 00:05:46.000 1970-12-13 2024-10-11 00:05:46 +347 347 348 34.7 69.4 347 1970-12-14 2024-10-11 00:05:47.000 1970-12-14 2024-10-11 00:05:47 +348 348 349 34.8 69.60000000000001 348 1970-12-15 2024-10-11 00:05:48.000 1970-12-15 2024-10-11 00:05:48 +349 349 350 34.9 69.8 349 1970-12-16 2024-10-11 00:05:49.000 1970-12-16 2024-10-11 00:05:49 +351 351 352 35.1 70.2 351 1970-12-18 2024-10-11 00:05:51.000 1970-12-18 2024-10-11 00:05:51 +352 352 353 35.2 70.4 352 1970-12-19 2024-10-11 00:05:52.000 1970-12-19 2024-10-11 00:05:52 +353 353 354 35.3 70.60000000000001 353 1970-12-20 2024-10-11 00:05:53.000 1970-12-20 2024-10-11 00:05:53 +354 354 355 35.4 70.8 354 1970-12-21 2024-10-11 00:05:54.000 1970-12-21 2024-10-11 00:05:54 +356 356 357 35.6 71.2 356 1970-12-23 2024-10-11 00:05:56.000 1970-12-23 2024-10-11 00:05:56 +357 357 358 35.7 71.4 357 1970-12-24 2024-10-11 00:05:57.000 1970-12-24 2024-10-11 00:05:57 +358 358 359 35.8 71.60000000000001 358 1970-12-25 2024-10-11 00:05:58.000 1970-12-25 2024-10-11 00:05:58 +359 359 360 35.9 71.8 359 1970-12-26 2024-10-11 00:05:59.000 1970-12-26 2024-10-11 00:05:59 +361 361 362 36.1 72.2 361 1970-12-28 2024-10-11 00:06:01.000 1970-12-28 2024-10-11 00:06:01 +362 362 363 36.2 72.4 362 1970-12-29 2024-10-11 00:06:02.000 1970-12-29 2024-10-11 00:06:02 +363 363 364 36.3 72.60000000000001 363 1970-12-30 2024-10-11 00:06:03.000 1970-12-30 2024-10-11 00:06:03 +364 364 365 36.4 72.8 364 1970-12-31 2024-10-11 00:06:04.000 1970-12-31 2024-10-11 00:06:04 +366 366 367 36.6 73.2 366 1971-01-02 2024-10-11 00:06:06.000 1971-01-02 2024-10-11 00:06:06 +367 367 368 36.7 73.4 367 1971-01-03 2024-10-11 00:06:07.000 1971-01-03 2024-10-11 00:06:07 +368 368 369 36.8 73.60000000000001 368 1971-01-04 2024-10-11 00:06:08.000 1971-01-04 2024-10-11 00:06:08 +369 369 370 36.9 73.8 369 1971-01-05 2024-10-11 00:06:09.000 1971-01-05 2024-10-11 00:06:09 +371 371 372 37.1 74.2 371 1971-01-07 2024-10-11 00:06:11.000 1971-01-07 2024-10-11 00:06:11 +372 372 373 37.2 74.4 372 1971-01-08 2024-10-11 00:06:12.000 1971-01-08 2024-10-11 00:06:12 +373 373 374 37.3 74.60000000000001 373 1971-01-09 2024-10-11 00:06:13.000 1971-01-09 2024-10-11 00:06:13 +374 374 375 37.4 74.8 374 1971-01-10 2024-10-11 00:06:14.000 1971-01-10 2024-10-11 00:06:14 +376 376 377 37.6 75.2 376 1971-01-12 2024-10-11 00:06:16.000 1971-01-12 2024-10-11 00:06:16 +377 377 378 37.7 75.4 377 1971-01-13 2024-10-11 00:06:17.000 1971-01-13 2024-10-11 00:06:17 +378 378 379 37.8 75.60000000000001 378 1971-01-14 2024-10-11 00:06:18.000 1971-01-14 2024-10-11 00:06:18 +379 379 380 37.9 75.8 379 1971-01-15 2024-10-11 00:06:19.000 1971-01-15 2024-10-11 00:06:19 +381 381 382 38.1 76.2 381 1971-01-17 2024-10-11 00:06:21.000 1971-01-17 2024-10-11 00:06:21 +382 382 383 38.2 76.4 382 1971-01-18 2024-10-11 00:06:22.000 1971-01-18 2024-10-11 00:06:22 +383 383 384 38.3 76.60000000000001 383 1971-01-19 2024-10-11 00:06:23.000 1971-01-19 2024-10-11 00:06:23 +384 384 385 38.4 76.80000000000001 384 1971-01-20 2024-10-11 00:06:24.000 1971-01-20 2024-10-11 00:06:24 +386 386 387 38.6 77.2 386 1971-01-22 2024-10-11 00:06:26.000 1971-01-22 2024-10-11 00:06:26 +387 387 388 38.7 77.4 387 1971-01-23 2024-10-11 00:06:27.000 1971-01-23 2024-10-11 00:06:27 +388 388 389 38.8 77.60000000000001 388 1971-01-24 2024-10-11 00:06:28.000 1971-01-24 2024-10-11 00:06:28 +389 389 390 38.9 77.80000000000001 389 1971-01-25 2024-10-11 00:06:29.000 1971-01-25 2024-10-11 00:06:29 +391 391 392 39.1 78.2 391 1971-01-27 2024-10-11 00:06:31.000 1971-01-27 2024-10-11 00:06:31 +392 392 393 39.2 78.4 392 1971-01-28 2024-10-11 00:06:32.000 1971-01-28 2024-10-11 00:06:32 +393 393 394 39.3 78.60000000000001 393 1971-01-29 2024-10-11 00:06:33.000 1971-01-29 2024-10-11 00:06:33 +394 394 395 39.4 78.80000000000001 394 1971-01-30 2024-10-11 00:06:34.000 1971-01-30 2024-10-11 00:06:34 +396 396 397 39.6 79.2 396 1971-02-01 2024-10-11 00:06:36.000 1971-02-01 2024-10-11 00:06:36 +397 397 398 39.7 79.4 397 1971-02-02 2024-10-11 00:06:37.000 1971-02-02 2024-10-11 00:06:37 +398 398 399 39.8 79.60000000000001 398 1971-02-03 2024-10-11 00:06:38.000 1971-02-03 2024-10-11 00:06:38 +399 399 400 39.9 79.80000000000001 399 1971-02-04 2024-10-11 00:06:39.000 1971-02-04 2024-10-11 00:06:39 +401 401 402 40.1 80.2 401 1971-02-06 2024-10-11 00:06:41.000 1971-02-06 2024-10-11 00:06:41 +402 402 403 40.2 80.4 402 1971-02-07 2024-10-11 00:06:42.000 1971-02-07 2024-10-11 00:06:42 +403 403 404 40.3 80.60000000000001 403 1971-02-08 2024-10-11 00:06:43.000 1971-02-08 2024-10-11 00:06:43 +404 404 405 40.4 80.80000000000001 404 1971-02-09 2024-10-11 00:06:44.000 1971-02-09 2024-10-11 00:06:44 +406 406 407 40.6 81.2 406 1971-02-11 2024-10-11 00:06:46.000 1971-02-11 2024-10-11 00:06:46 +407 407 408 40.7 81.4 407 1971-02-12 2024-10-11 00:06:47.000 1971-02-12 2024-10-11 00:06:47 +408 408 409 40.8 81.60000000000001 408 1971-02-13 2024-10-11 00:06:48.000 1971-02-13 2024-10-11 00:06:48 +409 409 410 40.9 81.80000000000001 409 1971-02-14 2024-10-11 00:06:49.000 1971-02-14 2024-10-11 00:06:49 +411 411 412 41.1 82.2 411 1971-02-16 2024-10-11 00:06:51.000 1971-02-16 2024-10-11 00:06:51 +412 412 413 41.2 82.4 412 1971-02-17 2024-10-11 00:06:52.000 1971-02-17 2024-10-11 00:06:52 +413 413 414 41.3 82.60000000000001 413 1971-02-18 2024-10-11 00:06:53.000 1971-02-18 2024-10-11 00:06:53 +414 414 415 41.4 82.80000000000001 414 1971-02-19 2024-10-11 00:06:54.000 1971-02-19 2024-10-11 00:06:54 +416 416 417 41.6 83.2 416 1971-02-21 2024-10-11 00:06:56.000 1971-02-21 2024-10-11 00:06:56 +417 417 418 41.7 83.4 417 1971-02-22 2024-10-11 00:06:57.000 1971-02-22 2024-10-11 00:06:57 +418 418 419 41.8 83.60000000000001 418 1971-02-23 2024-10-11 00:06:58.000 1971-02-23 2024-10-11 00:06:58 +419 419 420 41.9 83.80000000000001 419 1971-02-24 2024-10-11 00:06:59.000 1971-02-24 2024-10-11 00:06:59 +421 421 422 42.1 84.2 421 1971-02-26 2024-10-11 00:07:01.000 1971-02-26 2024-10-11 00:07:01 +422 422 423 42.2 84.4 422 1971-02-27 2024-10-11 00:07:02.000 1971-02-27 2024-10-11 00:07:02 +423 423 424 42.3 84.60000000000001 423 1971-02-28 2024-10-11 00:07:03.000 1971-02-28 2024-10-11 00:07:03 +424 424 425 42.4 84.80000000000001 424 1971-03-01 2024-10-11 00:07:04.000 1971-03-01 2024-10-11 00:07:04 +426 426 427 42.6 85.2 426 1971-03-03 2024-10-11 00:07:06.000 1971-03-03 2024-10-11 00:07:06 +427 427 428 42.7 85.4 427 1971-03-04 2024-10-11 00:07:07.000 1971-03-04 2024-10-11 00:07:07 +428 428 429 42.8 85.60000000000001 428 1971-03-05 2024-10-11 00:07:08.000 1971-03-05 2024-10-11 00:07:08 +429 429 430 42.9 85.80000000000001 429 1971-03-06 2024-10-11 00:07:09.000 1971-03-06 2024-10-11 00:07:09 +431 431 432 43.1 86.2 431 1971-03-08 2024-10-11 00:07:11.000 1971-03-08 2024-10-11 00:07:11 +432 432 433 43.2 86.4 432 1971-03-09 2024-10-11 00:07:12.000 1971-03-09 2024-10-11 00:07:12 +433 433 434 43.3 86.60000000000001 433 1971-03-10 2024-10-11 00:07:13.000 1971-03-10 2024-10-11 00:07:13 +434 434 435 43.4 86.80000000000001 434 1971-03-11 2024-10-11 00:07:14.000 1971-03-11 2024-10-11 00:07:14 +436 436 437 43.6 87.2 436 1971-03-13 2024-10-11 00:07:16.000 1971-03-13 2024-10-11 00:07:16 +437 437 438 43.7 87.4 437 1971-03-14 2024-10-11 00:07:17.000 1971-03-14 2024-10-11 00:07:17 +438 438 439 43.8 87.60000000000001 438 1971-03-15 2024-10-11 00:07:18.000 1971-03-15 2024-10-11 00:07:18 +439 439 440 43.9 87.80000000000001 439 1971-03-16 2024-10-11 00:07:19.000 1971-03-16 2024-10-11 00:07:19 +441 441 442 44.1 88.2 441 1971-03-18 2024-10-11 00:07:21.000 1971-03-18 2024-10-11 00:07:21 +442 442 443 44.2 88.4 442 1971-03-19 2024-10-11 00:07:22.000 1971-03-19 2024-10-11 00:07:22 +443 443 444 44.3 88.60000000000001 443 1971-03-20 2024-10-11 00:07:23.000 1971-03-20 2024-10-11 00:07:23 +444 444 445 44.4 88.80000000000001 444 1971-03-21 2024-10-11 00:07:24.000 1971-03-21 2024-10-11 00:07:24 +446 446 447 44.6 89.2 446 1971-03-23 2024-10-11 00:07:26.000 1971-03-23 2024-10-11 00:07:26 +447 447 448 44.7 89.4 447 1971-03-24 2024-10-11 00:07:27.000 1971-03-24 2024-10-11 00:07:27 +448 448 449 44.8 89.60000000000001 448 1971-03-25 2024-10-11 00:07:28.000 1971-03-25 2024-10-11 00:07:28 +449 449 450 44.9 89.80000000000001 449 1971-03-26 2024-10-11 00:07:29.000 1971-03-26 2024-10-11 00:07:29 +451 451 452 45.1 90.2 451 1971-03-28 2024-10-11 00:07:31.000 1971-03-28 2024-10-11 00:07:31 +452 452 453 45.2 90.4 452 1971-03-29 2024-10-11 00:07:32.000 1971-03-29 2024-10-11 00:07:32 +453 453 454 45.3 90.60000000000001 453 1971-03-30 2024-10-11 00:07:33.000 1971-03-30 2024-10-11 00:07:33 +454 454 455 45.4 90.80000000000001 454 1971-03-31 2024-10-11 00:07:34.000 1971-03-31 2024-10-11 00:07:34 +456 456 457 45.6 91.2 456 1971-04-02 2024-10-11 00:07:36.000 1971-04-02 2024-10-11 00:07:36 +457 457 458 45.7 91.4 457 1971-04-03 2024-10-11 00:07:37.000 1971-04-03 2024-10-11 00:07:37 +458 458 459 45.8 91.60000000000001 458 1971-04-04 2024-10-11 00:07:38.000 1971-04-04 2024-10-11 00:07:38 +459 459 460 45.9 91.80000000000001 459 1971-04-05 2024-10-11 00:07:39.000 1971-04-05 2024-10-11 00:07:39 +461 461 462 46.1 92.2 461 1971-04-07 2024-10-11 00:07:41.000 1971-04-07 2024-10-11 00:07:41 +462 462 463 46.2 92.4 462 1971-04-08 2024-10-11 00:07:42.000 1971-04-08 2024-10-11 00:07:42 +463 463 464 46.3 92.60000000000001 463 1971-04-09 2024-10-11 00:07:43.000 1971-04-09 2024-10-11 00:07:43 +464 464 465 46.4 92.80000000000001 464 1971-04-10 2024-10-11 00:07:44.000 1971-04-10 2024-10-11 00:07:44 +466 466 467 46.6 93.2 466 1971-04-12 2024-10-11 00:07:46.000 1971-04-12 2024-10-11 00:07:46 +467 467 468 46.7 93.4 467 1971-04-13 2024-10-11 00:07:47.000 1971-04-13 2024-10-11 00:07:47 +468 468 469 46.8 93.60000000000001 468 1971-04-14 2024-10-11 00:07:48.000 1971-04-14 2024-10-11 00:07:48 +469 469 470 46.9 93.80000000000001 469 1971-04-15 2024-10-11 00:07:49.000 1971-04-15 2024-10-11 00:07:49 +471 471 472 47.1 94.2 471 1971-04-17 2024-10-11 00:07:51.000 1971-04-17 2024-10-11 00:07:51 +472 472 473 47.2 94.4 472 1971-04-18 2024-10-11 00:07:52.000 1971-04-18 2024-10-11 00:07:52 +473 473 474 47.3 94.60000000000001 473 1971-04-19 2024-10-11 00:07:53.000 1971-04-19 2024-10-11 00:07:53 +474 474 475 47.4 94.80000000000001 474 1971-04-20 2024-10-11 00:07:54.000 1971-04-20 2024-10-11 00:07:54 +476 476 477 47.6 95.2 476 1971-04-22 2024-10-11 00:07:56.000 1971-04-22 2024-10-11 00:07:56 +477 477 478 47.7 95.4 477 1971-04-23 2024-10-11 00:07:57.000 1971-04-23 2024-10-11 00:07:57 +478 478 479 47.8 95.60000000000001 478 1971-04-24 2024-10-11 00:07:58.000 1971-04-24 2024-10-11 00:07:58 +479 479 480 47.9 95.80000000000001 479 1971-04-25 2024-10-11 00:07:59.000 1971-04-25 2024-10-11 00:07:59 +481 481 482 48.1 96.2 481 1971-04-27 2024-10-11 00:08:01.000 1971-04-27 2024-10-11 00:08:01 +482 482 483 48.2 96.4 482 1971-04-28 2024-10-11 00:08:02.000 1971-04-28 2024-10-11 00:08:02 +483 483 484 48.3 96.60000000000001 483 1971-04-29 2024-10-11 00:08:03.000 1971-04-29 2024-10-11 00:08:03 +484 484 485 48.4 96.80000000000001 484 1971-04-30 2024-10-11 00:08:04.000 1971-04-30 2024-10-11 00:08:04 +486 486 487 48.6 97.2 486 1971-05-02 2024-10-11 00:08:06.000 1971-05-02 2024-10-11 00:08:06 +487 487 488 48.7 97.4 487 1971-05-03 2024-10-11 00:08:07.000 1971-05-03 2024-10-11 00:08:07 +488 488 489 48.8 97.60000000000001 488 1971-05-04 2024-10-11 00:08:08.000 1971-05-04 2024-10-11 00:08:08 +489 489 490 48.9 97.80000000000001 489 1971-05-05 2024-10-11 00:08:09.000 1971-05-05 2024-10-11 00:08:09 +491 491 492 49.1 98.2 491 1971-05-07 2024-10-11 00:08:11.000 1971-05-07 2024-10-11 00:08:11 +492 492 493 49.2 98.4 492 1971-05-08 2024-10-11 00:08:12.000 1971-05-08 2024-10-11 00:08:12 +493 493 494 49.3 98.60000000000001 493 1971-05-09 2024-10-11 00:08:13.000 1971-05-09 2024-10-11 00:08:13 +494 494 495 49.4 98.80000000000001 494 1971-05-10 2024-10-11 00:08:14.000 1971-05-10 2024-10-11 00:08:14 +496 496 497 49.6 99.2 496 1971-05-12 2024-10-11 00:08:16.000 1971-05-12 2024-10-11 00:08:16 +497 497 498 49.7 99.4 497 1971-05-13 2024-10-11 00:08:17.000 1971-05-13 2024-10-11 00:08:17 +498 498 499 49.8 99.60000000000001 498 1971-05-14 2024-10-11 00:08:18.000 1971-05-14 2024-10-11 00:08:18 +499 499 500 49.9 99.80000000000001 499 1971-05-15 2024-10-11 00:08:19.000 1971-05-15 2024-10-11 00:08:19 +501 501 502 50.1 100.2 501 1971-05-17 2024-10-11 00:08:21.000 1971-05-17 2024-10-11 00:08:21 +502 502 503 50.2 100.4 502 1971-05-18 2024-10-11 00:08:22.000 1971-05-18 2024-10-11 00:08:22 +503 503 504 50.3 100.60000000000001 503 1971-05-19 2024-10-11 00:08:23.000 1971-05-19 2024-10-11 00:08:23 +504 504 505 50.4 100.80000000000001 504 1971-05-20 2024-10-11 00:08:24.000 1971-05-20 2024-10-11 00:08:24 +506 506 507 50.6 101.2 506 1971-05-22 2024-10-11 00:08:26.000 1971-05-22 2024-10-11 00:08:26 +507 507 508 50.7 101.4 507 1971-05-23 2024-10-11 00:08:27.000 1971-05-23 2024-10-11 00:08:27 +508 508 509 50.8 101.60000000000001 508 1971-05-24 2024-10-11 00:08:28.000 1971-05-24 2024-10-11 00:08:28 +509 509 510 50.9 101.80000000000001 509 1971-05-25 2024-10-11 00:08:29.000 1971-05-25 2024-10-11 00:08:29 +511 511 512 51.1 102.2 511 1971-05-27 2024-10-11 00:08:31.000 1971-05-27 2024-10-11 00:08:31 +512 512 513 51.2 102.4 512 1971-05-28 2024-10-11 00:08:32.000 1971-05-28 2024-10-11 00:08:32 +513 513 514 51.3 102.60000000000001 513 1971-05-29 2024-10-11 00:08:33.000 1971-05-29 2024-10-11 00:08:33 +514 514 515 51.4 102.80000000000001 514 1971-05-30 2024-10-11 00:08:34.000 1971-05-30 2024-10-11 00:08:34 +516 516 517 51.6 103.2 516 1971-06-01 2024-10-11 00:08:36.000 1971-06-01 2024-10-11 00:08:36 +517 517 518 51.7 103.4 517 1971-06-02 2024-10-11 00:08:37.000 1971-06-02 2024-10-11 00:08:37 +518 518 519 51.8 103.60000000000001 518 1971-06-03 2024-10-11 00:08:38.000 1971-06-03 2024-10-11 00:08:38 +519 519 520 51.9 103.80000000000001 519 1971-06-04 2024-10-11 00:08:39.000 1971-06-04 2024-10-11 00:08:39 +521 521 522 52.1 104.2 521 1971-06-06 2024-10-11 00:08:41.000 1971-06-06 2024-10-11 00:08:41 +522 522 523 52.2 104.4 522 1971-06-07 2024-10-11 00:08:42.000 1971-06-07 2024-10-11 00:08:42 +523 523 524 52.3 104.60000000000001 523 1971-06-08 2024-10-11 00:08:43.000 1971-06-08 2024-10-11 00:08:43 +524 524 525 52.4 104.80000000000001 524 1971-06-09 2024-10-11 00:08:44.000 1971-06-09 2024-10-11 00:08:44 +526 526 527 52.6 105.2 526 1971-06-11 2024-10-11 00:08:46.000 1971-06-11 2024-10-11 00:08:46 +527 527 528 52.7 105.4 527 1971-06-12 2024-10-11 00:08:47.000 1971-06-12 2024-10-11 00:08:47 +528 528 529 52.8 105.60000000000001 528 1971-06-13 2024-10-11 00:08:48.000 1971-06-13 2024-10-11 00:08:48 +529 529 530 52.9 105.80000000000001 529 1971-06-14 2024-10-11 00:08:49.000 1971-06-14 2024-10-11 00:08:49 +531 531 532 53.1 106.2 531 1971-06-16 2024-10-11 00:08:51.000 1971-06-16 2024-10-11 00:08:51 +532 532 533 53.2 106.4 532 1971-06-17 2024-10-11 00:08:52.000 1971-06-17 2024-10-11 00:08:52 +533 533 534 53.3 106.60000000000001 533 1971-06-18 2024-10-11 00:08:53.000 1971-06-18 2024-10-11 00:08:53 +534 534 535 53.4 106.80000000000001 534 1971-06-19 2024-10-11 00:08:54.000 1971-06-19 2024-10-11 00:08:54 +536 536 537 53.6 107.2 536 1971-06-21 2024-10-11 00:08:56.000 1971-06-21 2024-10-11 00:08:56 +537 537 538 53.7 107.4 537 1971-06-22 2024-10-11 00:08:57.000 1971-06-22 2024-10-11 00:08:57 +538 538 539 53.8 107.60000000000001 538 1971-06-23 2024-10-11 00:08:58.000 1971-06-23 2024-10-11 00:08:58 +539 539 540 53.9 107.80000000000001 539 1971-06-24 2024-10-11 00:08:59.000 1971-06-24 2024-10-11 00:08:59 +541 541 542 54.1 108.2 541 1971-06-26 2024-10-11 00:09:01.000 1971-06-26 2024-10-11 00:09:01 +542 542 543 54.2 108.4 542 1971-06-27 2024-10-11 00:09:02.000 1971-06-27 2024-10-11 00:09:02 +543 543 544 54.3 108.60000000000001 543 1971-06-28 2024-10-11 00:09:03.000 1971-06-28 2024-10-11 00:09:03 +544 544 545 54.4 108.80000000000001 544 1971-06-29 2024-10-11 00:09:04.000 1971-06-29 2024-10-11 00:09:04 +546 546 547 54.6 109.2 546 1971-07-01 2024-10-11 00:09:06.000 1971-07-01 2024-10-11 00:09:06 +547 547 548 54.7 109.4 547 1971-07-02 2024-10-11 00:09:07.000 1971-07-02 2024-10-11 00:09:07 +548 548 549 54.8 109.60000000000001 548 1971-07-03 2024-10-11 00:09:08.000 1971-07-03 2024-10-11 00:09:08 +549 549 550 54.9 109.80000000000001 549 1971-07-04 2024-10-11 00:09:09.000 1971-07-04 2024-10-11 00:09:09 +551 551 552 55.1 110.2 551 1971-07-06 2024-10-11 00:09:11.000 1971-07-06 2024-10-11 00:09:11 +552 552 553 55.2 110.4 552 1971-07-07 2024-10-11 00:09:12.000 1971-07-07 2024-10-11 00:09:12 +553 553 554 55.3 110.60000000000001 553 1971-07-08 2024-10-11 00:09:13.000 1971-07-08 2024-10-11 00:09:13 +554 554 555 55.4 110.80000000000001 554 1971-07-09 2024-10-11 00:09:14.000 1971-07-09 2024-10-11 00:09:14 +556 556 557 55.6 111.2 556 1971-07-11 2024-10-11 00:09:16.000 1971-07-11 2024-10-11 00:09:16 +557 557 558 55.7 111.4 557 1971-07-12 2024-10-11 00:09:17.000 1971-07-12 2024-10-11 00:09:17 +558 558 559 55.8 111.60000000000001 558 1971-07-13 2024-10-11 00:09:18.000 1971-07-13 2024-10-11 00:09:18 +559 559 560 55.9 111.80000000000001 559 1971-07-14 2024-10-11 00:09:19.000 1971-07-14 2024-10-11 00:09:19 +561 561 562 56.1 112.2 561 1971-07-16 2024-10-11 00:09:21.000 1971-07-16 2024-10-11 00:09:21 +562 562 563 56.2 112.4 562 1971-07-17 2024-10-11 00:09:22.000 1971-07-17 2024-10-11 00:09:22 +563 563 564 56.3 112.60000000000001 563 1971-07-18 2024-10-11 00:09:23.000 1971-07-18 2024-10-11 00:09:23 +564 564 565 56.4 112.80000000000001 564 1971-07-19 2024-10-11 00:09:24.000 1971-07-19 2024-10-11 00:09:24 +566 566 567 56.6 113.2 566 1971-07-21 2024-10-11 00:09:26.000 1971-07-21 2024-10-11 00:09:26 +567 567 568 56.7 113.4 567 1971-07-22 2024-10-11 00:09:27.000 1971-07-22 2024-10-11 00:09:27 +568 568 569 56.8 113.60000000000001 568 1971-07-23 2024-10-11 00:09:28.000 1971-07-23 2024-10-11 00:09:28 +569 569 570 56.9 113.80000000000001 569 1971-07-24 2024-10-11 00:09:29.000 1971-07-24 2024-10-11 00:09:29 +571 571 572 57.1 114.2 571 1971-07-26 2024-10-11 00:09:31.000 1971-07-26 2024-10-11 00:09:31 +572 572 573 57.2 114.4 572 1971-07-27 2024-10-11 00:09:32.000 1971-07-27 2024-10-11 00:09:32 +573 573 574 57.3 114.60000000000001 573 1971-07-28 2024-10-11 00:09:33.000 1971-07-28 2024-10-11 00:09:33 +574 574 575 57.4 114.80000000000001 574 1971-07-29 2024-10-11 00:09:34.000 1971-07-29 2024-10-11 00:09:34 +576 576 577 57.6 115.2 576 1971-07-31 2024-10-11 00:09:36.000 1971-07-31 2024-10-11 00:09:36 +577 577 578 57.7 115.4 577 1971-08-01 2024-10-11 00:09:37.000 1971-08-01 2024-10-11 00:09:37 +578 578 579 57.8 115.60000000000001 578 1971-08-02 2024-10-11 00:09:38.000 1971-08-02 2024-10-11 00:09:38 +579 579 580 57.9 115.80000000000001 579 1971-08-03 2024-10-11 00:09:39.000 1971-08-03 2024-10-11 00:09:39 +581 581 582 58.1 116.2 581 1971-08-05 2024-10-11 00:09:41.000 1971-08-05 2024-10-11 00:09:41 +582 582 583 58.2 116.4 582 1971-08-06 2024-10-11 00:09:42.000 1971-08-06 2024-10-11 00:09:42 +583 583 584 58.3 116.60000000000001 583 1971-08-07 2024-10-11 00:09:43.000 1971-08-07 2024-10-11 00:09:43 +584 584 585 58.4 116.80000000000001 584 1971-08-08 2024-10-11 00:09:44.000 1971-08-08 2024-10-11 00:09:44 +586 586 587 58.6 117.2 586 1971-08-10 2024-10-11 00:09:46.000 1971-08-10 2024-10-11 00:09:46 +587 587 588 58.7 117.4 587 1971-08-11 2024-10-11 00:09:47.000 1971-08-11 2024-10-11 00:09:47 +588 588 589 58.8 117.60000000000001 588 1971-08-12 2024-10-11 00:09:48.000 1971-08-12 2024-10-11 00:09:48 +589 589 590 58.9 117.80000000000001 589 1971-08-13 2024-10-11 00:09:49.000 1971-08-13 2024-10-11 00:09:49 +591 591 592 59.1 118.2 591 1971-08-15 2024-10-11 00:09:51.000 1971-08-15 2024-10-11 00:09:51 +592 592 593 59.2 118.4 592 1971-08-16 2024-10-11 00:09:52.000 1971-08-16 2024-10-11 00:09:52 +593 593 594 59.3 118.60000000000001 593 1971-08-17 2024-10-11 00:09:53.000 1971-08-17 2024-10-11 00:09:53 +594 594 595 59.4 118.80000000000001 594 1971-08-18 2024-10-11 00:09:54.000 1971-08-18 2024-10-11 00:09:54 +596 596 597 59.6 119.2 596 1971-08-20 2024-10-11 00:09:56.000 1971-08-20 2024-10-11 00:09:56 +597 597 598 59.7 119.4 597 1971-08-21 2024-10-11 00:09:57.000 1971-08-21 2024-10-11 00:09:57 +598 598 599 59.8 119.60000000000001 598 1971-08-22 2024-10-11 00:09:58.000 1971-08-22 2024-10-11 00:09:58 +599 599 600 59.9 119.80000000000001 599 1971-08-23 2024-10-11 00:09:59.000 1971-08-23 2024-10-11 00:09:59 +601 601 602 60.1 120.2 601 1971-08-25 2024-10-11 00:10:01.000 1971-08-25 2024-10-11 00:10:01 +602 602 603 60.2 120.4 602 1971-08-26 2024-10-11 00:10:02.000 1971-08-26 2024-10-11 00:10:02 +603 603 604 60.3 120.60000000000001 603 1971-08-27 2024-10-11 00:10:03.000 1971-08-27 2024-10-11 00:10:03 +604 604 605 60.4 120.80000000000001 604 1971-08-28 2024-10-11 00:10:04.000 1971-08-28 2024-10-11 00:10:04 +606 606 607 60.6 121.2 606 1971-08-30 2024-10-11 00:10:06.000 1971-08-30 2024-10-11 00:10:06 +607 607 608 60.7 121.4 607 1971-08-31 2024-10-11 00:10:07.000 1971-08-31 2024-10-11 00:10:07 +608 608 609 60.8 121.60000000000001 608 1971-09-01 2024-10-11 00:10:08.000 1971-09-01 2024-10-11 00:10:08 +609 609 610 60.9 121.80000000000001 609 1971-09-02 2024-10-11 00:10:09.000 1971-09-02 2024-10-11 00:10:09 +611 611 612 61.1 122.2 611 1971-09-04 2024-10-11 00:10:11.000 1971-09-04 2024-10-11 00:10:11 +612 612 613 61.2 122.4 612 1971-09-05 2024-10-11 00:10:12.000 1971-09-05 2024-10-11 00:10:12 +613 613 614 61.3 122.60000000000001 613 1971-09-06 2024-10-11 00:10:13.000 1971-09-06 2024-10-11 00:10:13 +614 614 615 61.4 122.80000000000001 614 1971-09-07 2024-10-11 00:10:14.000 1971-09-07 2024-10-11 00:10:14 +616 616 617 61.6 123.2 616 1971-09-09 2024-10-11 00:10:16.000 1971-09-09 2024-10-11 00:10:16 +617 617 618 61.7 123.4 617 1971-09-10 2024-10-11 00:10:17.000 1971-09-10 2024-10-11 00:10:17 +618 618 619 61.8 123.60000000000001 618 1971-09-11 2024-10-11 00:10:18.000 1971-09-11 2024-10-11 00:10:18 +619 619 620 61.9 123.80000000000001 619 1971-09-12 2024-10-11 00:10:19.000 1971-09-12 2024-10-11 00:10:19 +621 621 622 62.1 124.2 621 1971-09-14 2024-10-11 00:10:21.000 1971-09-14 2024-10-11 00:10:21 +622 622 623 62.2 124.4 622 1971-09-15 2024-10-11 00:10:22.000 1971-09-15 2024-10-11 00:10:22 +623 623 624 62.3 124.60000000000001 623 1971-09-16 2024-10-11 00:10:23.000 1971-09-16 2024-10-11 00:10:23 +624 624 625 62.4 124.80000000000001 624 1971-09-17 2024-10-11 00:10:24.000 1971-09-17 2024-10-11 00:10:24 +626 626 627 62.6 125.2 626 1971-09-19 2024-10-11 00:10:26.000 1971-09-19 2024-10-11 00:10:26 +627 627 628 62.7 125.4 627 1971-09-20 2024-10-11 00:10:27.000 1971-09-20 2024-10-11 00:10:27 +628 628 629 62.8 125.60000000000001 628 1971-09-21 2024-10-11 00:10:28.000 1971-09-21 2024-10-11 00:10:28 +629 629 630 62.9 125.80000000000001 629 1971-09-22 2024-10-11 00:10:29.000 1971-09-22 2024-10-11 00:10:29 +631 631 632 63.1 126.2 631 1971-09-24 2024-10-11 00:10:31.000 1971-09-24 2024-10-11 00:10:31 +632 632 633 63.2 126.4 632 1971-09-25 2024-10-11 00:10:32.000 1971-09-25 2024-10-11 00:10:32 +633 633 634 63.3 126.60000000000001 633 1971-09-26 2024-10-11 00:10:33.000 1971-09-26 2024-10-11 00:10:33 +634 634 635 63.4 126.80000000000001 634 1971-09-27 2024-10-11 00:10:34.000 1971-09-27 2024-10-11 00:10:34 +636 636 637 63.6 127.2 636 1971-09-29 2024-10-11 00:10:36.000 1971-09-29 2024-10-11 00:10:36 +637 637 638 63.7 127.4 637 1971-09-30 2024-10-11 00:10:37.000 1971-09-30 2024-10-11 00:10:37 +638 638 639 63.8 127.60000000000001 638 1971-10-01 2024-10-11 00:10:38.000 1971-10-01 2024-10-11 00:10:38 +639 639 640 63.9 127.80000000000001 639 1971-10-02 2024-10-11 00:10:39.000 1971-10-02 2024-10-11 00:10:39 +641 641 642 64.1 128.20000000000002 641 1971-10-04 2024-10-11 00:10:41.000 1971-10-04 2024-10-11 00:10:41 +642 642 643 64.2 128.4 642 1971-10-05 2024-10-11 00:10:42.000 1971-10-05 2024-10-11 00:10:42 +643 643 644 64.3 128.6 643 1971-10-06 2024-10-11 00:10:43.000 1971-10-06 2024-10-11 00:10:43 +644 644 645 64.4 128.8 644 1971-10-07 2024-10-11 00:10:44.000 1971-10-07 2024-10-11 00:10:44 +646 646 647 64.6 129.20000000000002 646 1971-10-09 2024-10-11 00:10:46.000 1971-10-09 2024-10-11 00:10:46 +647 647 648 64.7 129.4 647 1971-10-10 2024-10-11 00:10:47.000 1971-10-10 2024-10-11 00:10:47 +648 648 649 64.8 129.6 648 1971-10-11 2024-10-11 00:10:48.000 1971-10-11 2024-10-11 00:10:48 +649 649 650 64.9 129.8 649 1971-10-12 2024-10-11 00:10:49.000 1971-10-12 2024-10-11 00:10:49 +651 651 652 65.1 130.20000000000002 651 1971-10-14 2024-10-11 00:10:51.000 1971-10-14 2024-10-11 00:10:51 +652 652 653 65.2 130.4 652 1971-10-15 2024-10-11 00:10:52.000 1971-10-15 2024-10-11 00:10:52 +653 653 654 65.3 130.6 653 1971-10-16 2024-10-11 00:10:53.000 1971-10-16 2024-10-11 00:10:53 +654 654 655 65.4 130.8 654 1971-10-17 2024-10-11 00:10:54.000 1971-10-17 2024-10-11 00:10:54 +656 656 657 65.6 131.20000000000002 656 1971-10-19 2024-10-11 00:10:56.000 1971-10-19 2024-10-11 00:10:56 +657 657 658 65.7 131.4 657 1971-10-20 2024-10-11 00:10:57.000 1971-10-20 2024-10-11 00:10:57 +658 658 659 65.8 131.6 658 1971-10-21 2024-10-11 00:10:58.000 1971-10-21 2024-10-11 00:10:58 +659 659 660 65.9 131.8 659 1971-10-22 2024-10-11 00:10:59.000 1971-10-22 2024-10-11 00:10:59 +661 661 662 66.1 132.20000000000002 661 1971-10-24 2024-10-11 00:11:01.000 1971-10-24 2024-10-11 00:11:01 +662 662 663 66.2 132.4 662 1971-10-25 2024-10-11 00:11:02.000 1971-10-25 2024-10-11 00:11:02 +663 663 664 66.3 132.6 663 1971-10-26 2024-10-11 00:11:03.000 1971-10-26 2024-10-11 00:11:03 +664 664 665 66.4 132.8 664 1971-10-27 2024-10-11 00:11:04.000 1971-10-27 2024-10-11 00:11:04 +666 666 667 66.6 133.20000000000002 666 1971-10-29 2024-10-11 00:11:06.000 1971-10-29 2024-10-11 00:11:06 +667 667 668 66.7 133.4 667 1971-10-30 2024-10-11 00:11:07.000 1971-10-30 2024-10-11 00:11:07 +668 668 669 66.8 133.6 668 1971-10-31 2024-10-11 00:11:08.000 1971-10-31 2024-10-11 00:11:08 +669 669 670 66.9 133.8 669 1971-11-01 2024-10-11 00:11:09.000 1971-11-01 2024-10-11 00:11:09 +671 671 672 67.1 134.20000000000002 671 1971-11-03 2024-10-11 00:11:11.000 1971-11-03 2024-10-11 00:11:11 +672 672 673 67.2 134.4 672 1971-11-04 2024-10-11 00:11:12.000 1971-11-04 2024-10-11 00:11:12 +673 673 674 67.3 134.6 673 1971-11-05 2024-10-11 00:11:13.000 1971-11-05 2024-10-11 00:11:13 +674 674 675 67.4 134.8 674 1971-11-06 2024-10-11 00:11:14.000 1971-11-06 2024-10-11 00:11:14 +676 676 677 67.6 135.20000000000002 676 1971-11-08 2024-10-11 00:11:16.000 1971-11-08 2024-10-11 00:11:16 +677 677 678 67.7 135.4 677 1971-11-09 2024-10-11 00:11:17.000 1971-11-09 2024-10-11 00:11:17 +678 678 679 67.8 135.6 678 1971-11-10 2024-10-11 00:11:18.000 1971-11-10 2024-10-11 00:11:18 +679 679 680 67.9 135.8 679 1971-11-11 2024-10-11 00:11:19.000 1971-11-11 2024-10-11 00:11:19 +681 681 682 68.1 136.20000000000002 681 1971-11-13 2024-10-11 00:11:21.000 1971-11-13 2024-10-11 00:11:21 +682 682 683 68.2 136.4 682 1971-11-14 2024-10-11 00:11:22.000 1971-11-14 2024-10-11 00:11:22 +683 683 684 68.3 136.6 683 1971-11-15 2024-10-11 00:11:23.000 1971-11-15 2024-10-11 00:11:23 +684 684 685 68.4 136.8 684 1971-11-16 2024-10-11 00:11:24.000 1971-11-16 2024-10-11 00:11:24 +686 686 687 68.6 137.20000000000002 686 1971-11-18 2024-10-11 00:11:26.000 1971-11-18 2024-10-11 00:11:26 +687 687 688 68.7 137.4 687 1971-11-19 2024-10-11 00:11:27.000 1971-11-19 2024-10-11 00:11:27 +688 688 689 68.8 137.6 688 1971-11-20 2024-10-11 00:11:28.000 1971-11-20 2024-10-11 00:11:28 +689 689 690 68.9 137.8 689 1971-11-21 2024-10-11 00:11:29.000 1971-11-21 2024-10-11 00:11:29 +691 691 692 69.1 138.20000000000002 691 1971-11-23 2024-10-11 00:11:31.000 1971-11-23 2024-10-11 00:11:31 +692 692 693 69.2 138.4 692 1971-11-24 2024-10-11 00:11:32.000 1971-11-24 2024-10-11 00:11:32 +693 693 694 69.3 138.6 693 1971-11-25 2024-10-11 00:11:33.000 1971-11-25 2024-10-11 00:11:33 +694 694 695 69.4 138.8 694 1971-11-26 2024-10-11 00:11:34.000 1971-11-26 2024-10-11 00:11:34 +696 696 697 69.6 139.20000000000002 696 1971-11-28 2024-10-11 00:11:36.000 1971-11-28 2024-10-11 00:11:36 +697 697 698 69.7 139.4 697 1971-11-29 2024-10-11 00:11:37.000 1971-11-29 2024-10-11 00:11:37 +698 698 699 69.8 139.6 698 1971-11-30 2024-10-11 00:11:38.000 1971-11-30 2024-10-11 00:11:38 +699 699 700 69.9 139.8 699 1971-12-01 2024-10-11 00:11:39.000 1971-12-01 2024-10-11 00:11:39 +701 701 702 70.1 140.20000000000002 701 1971-12-03 2024-10-11 00:11:41.000 1971-12-03 2024-10-11 00:11:41 +702 702 703 70.2 140.4 702 1971-12-04 2024-10-11 00:11:42.000 1971-12-04 2024-10-11 00:11:42 +703 703 704 70.3 140.6 703 1971-12-05 2024-10-11 00:11:43.000 1971-12-05 2024-10-11 00:11:43 +704 704 705 70.4 140.8 704 1971-12-06 2024-10-11 00:11:44.000 1971-12-06 2024-10-11 00:11:44 +706 706 707 70.6 141.20000000000002 706 1971-12-08 2024-10-11 00:11:46.000 1971-12-08 2024-10-11 00:11:46 +707 707 708 70.7 141.4 707 1971-12-09 2024-10-11 00:11:47.000 1971-12-09 2024-10-11 00:11:47 +708 708 709 70.8 141.6 708 1971-12-10 2024-10-11 00:11:48.000 1971-12-10 2024-10-11 00:11:48 +709 709 710 70.9 141.8 709 1971-12-11 2024-10-11 00:11:49.000 1971-12-11 2024-10-11 00:11:49 +711 711 712 71.1 142.20000000000002 711 1971-12-13 2024-10-11 00:11:51.000 1971-12-13 2024-10-11 00:11:51 +712 712 713 71.2 142.4 712 1971-12-14 2024-10-11 00:11:52.000 1971-12-14 2024-10-11 00:11:52 +713 713 714 71.3 142.6 713 1971-12-15 2024-10-11 00:11:53.000 1971-12-15 2024-10-11 00:11:53 +714 714 715 71.4 142.8 714 1971-12-16 2024-10-11 00:11:54.000 1971-12-16 2024-10-11 00:11:54 +716 716 717 71.6 143.20000000000002 716 1971-12-18 2024-10-11 00:11:56.000 1971-12-18 2024-10-11 00:11:56 +717 717 718 71.7 143.4 717 1971-12-19 2024-10-11 00:11:57.000 1971-12-19 2024-10-11 00:11:57 +718 718 719 71.8 143.6 718 1971-12-20 2024-10-11 00:11:58.000 1971-12-20 2024-10-11 00:11:58 +719 719 720 71.9 143.8 719 1971-12-21 2024-10-11 00:11:59.000 1971-12-21 2024-10-11 00:11:59 +721 721 722 72.1 144.20000000000002 721 1971-12-23 2024-10-11 00:12:01.000 1971-12-23 2024-10-11 00:12:01 +722 722 723 72.2 144.4 722 1971-12-24 2024-10-11 00:12:02.000 1971-12-24 2024-10-11 00:12:02 +723 723 724 72.3 144.6 723 1971-12-25 2024-10-11 00:12:03.000 1971-12-25 2024-10-11 00:12:03 +724 724 725 72.4 144.8 724 1971-12-26 2024-10-11 00:12:04.000 1971-12-26 2024-10-11 00:12:04 +726 726 727 72.6 145.20000000000002 726 1971-12-28 2024-10-11 00:12:06.000 1971-12-28 2024-10-11 00:12:06 +727 727 728 72.7 145.4 727 1971-12-29 2024-10-11 00:12:07.000 1971-12-29 2024-10-11 00:12:07 +728 728 729 72.8 145.6 728 1971-12-30 2024-10-11 00:12:08.000 1971-12-30 2024-10-11 00:12:08 +729 729 730 72.9 145.8 729 1971-12-31 2024-10-11 00:12:09.000 1971-12-31 2024-10-11 00:12:09 +731 731 732 73.1 146.20000000000002 731 1972-01-02 2024-10-11 00:12:11.000 1972-01-02 2024-10-11 00:12:11 +732 732 733 73.2 146.4 732 1972-01-03 2024-10-11 00:12:12.000 1972-01-03 2024-10-11 00:12:12 +733 733 734 73.3 146.6 733 1972-01-04 2024-10-11 00:12:13.000 1972-01-04 2024-10-11 00:12:13 +734 734 735 73.4 146.8 734 1972-01-05 2024-10-11 00:12:14.000 1972-01-05 2024-10-11 00:12:14 +736 736 737 73.6 147.20000000000002 736 1972-01-07 2024-10-11 00:12:16.000 1972-01-07 2024-10-11 00:12:16 +737 737 738 73.7 147.4 737 1972-01-08 2024-10-11 00:12:17.000 1972-01-08 2024-10-11 00:12:17 +738 738 739 73.8 147.6 738 1972-01-09 2024-10-11 00:12:18.000 1972-01-09 2024-10-11 00:12:18 +739 739 740 73.9 147.8 739 1972-01-10 2024-10-11 00:12:19.000 1972-01-10 2024-10-11 00:12:19 +741 741 742 74.1 148.20000000000002 741 1972-01-12 2024-10-11 00:12:21.000 1972-01-12 2024-10-11 00:12:21 +742 742 743 74.2 148.4 742 1972-01-13 2024-10-11 00:12:22.000 1972-01-13 2024-10-11 00:12:22 +743 743 744 74.3 148.6 743 1972-01-14 2024-10-11 00:12:23.000 1972-01-14 2024-10-11 00:12:23 +744 744 745 74.4 148.8 744 1972-01-15 2024-10-11 00:12:24.000 1972-01-15 2024-10-11 00:12:24 +746 746 747 74.6 149.20000000000002 746 1972-01-17 2024-10-11 00:12:26.000 1972-01-17 2024-10-11 00:12:26 +747 747 748 74.7 149.4 747 1972-01-18 2024-10-11 00:12:27.000 1972-01-18 2024-10-11 00:12:27 +748 748 749 74.8 149.6 748 1972-01-19 2024-10-11 00:12:28.000 1972-01-19 2024-10-11 00:12:28 +749 749 750 74.9 149.8 749 1972-01-20 2024-10-11 00:12:29.000 1972-01-20 2024-10-11 00:12:29 +751 751 752 75.1 150.20000000000002 751 1972-01-22 2024-10-11 00:12:31.000 1972-01-22 2024-10-11 00:12:31 +752 752 753 75.2 150.4 752 1972-01-23 2024-10-11 00:12:32.000 1972-01-23 2024-10-11 00:12:32 +753 753 754 75.3 150.6 753 1972-01-24 2024-10-11 00:12:33.000 1972-01-24 2024-10-11 00:12:33 +754 754 755 75.4 150.8 754 1972-01-25 2024-10-11 00:12:34.000 1972-01-25 2024-10-11 00:12:34 +756 756 757 75.6 151.20000000000002 756 1972-01-27 2024-10-11 00:12:36.000 1972-01-27 2024-10-11 00:12:36 +757 757 758 75.7 151.4 757 1972-01-28 2024-10-11 00:12:37.000 1972-01-28 2024-10-11 00:12:37 +758 758 759 75.8 151.6 758 1972-01-29 2024-10-11 00:12:38.000 1972-01-29 2024-10-11 00:12:38 +759 759 760 75.9 151.8 759 1972-01-30 2024-10-11 00:12:39.000 1972-01-30 2024-10-11 00:12:39 +761 761 762 76.1 152.20000000000002 761 1972-02-01 2024-10-11 00:12:41.000 1972-02-01 2024-10-11 00:12:41 +762 762 763 76.2 152.4 762 1972-02-02 2024-10-11 00:12:42.000 1972-02-02 2024-10-11 00:12:42 +763 763 764 76.3 152.6 763 1972-02-03 2024-10-11 00:12:43.000 1972-02-03 2024-10-11 00:12:43 +764 764 765 76.4 152.8 764 1972-02-04 2024-10-11 00:12:44.000 1972-02-04 2024-10-11 00:12:44 +766 766 767 76.6 153.20000000000002 766 1972-02-06 2024-10-11 00:12:46.000 1972-02-06 2024-10-11 00:12:46 +767 767 768 76.7 153.4 767 1972-02-07 2024-10-11 00:12:47.000 1972-02-07 2024-10-11 00:12:47 +768 768 769 76.8 153.60000000000002 768 1972-02-08 2024-10-11 00:12:48.000 1972-02-08 2024-10-11 00:12:48 +769 769 770 76.9 153.8 769 1972-02-09 2024-10-11 00:12:49.000 1972-02-09 2024-10-11 00:12:49 +771 771 772 77.1 154.20000000000002 771 1972-02-11 2024-10-11 00:12:51.000 1972-02-11 2024-10-11 00:12:51 +772 772 773 77.2 154.4 772 1972-02-12 2024-10-11 00:12:52.000 1972-02-12 2024-10-11 00:12:52 +773 773 774 77.3 154.60000000000002 773 1972-02-13 2024-10-11 00:12:53.000 1972-02-13 2024-10-11 00:12:53 +774 774 775 77.4 154.8 774 1972-02-14 2024-10-11 00:12:54.000 1972-02-14 2024-10-11 00:12:54 +776 776 777 77.6 155.20000000000002 776 1972-02-16 2024-10-11 00:12:56.000 1972-02-16 2024-10-11 00:12:56 +777 777 778 77.7 155.4 777 1972-02-17 2024-10-11 00:12:57.000 1972-02-17 2024-10-11 00:12:57 +778 778 779 77.8 155.60000000000002 778 1972-02-18 2024-10-11 00:12:58.000 1972-02-18 2024-10-11 00:12:58 +779 779 780 77.9 155.8 779 1972-02-19 2024-10-11 00:12:59.000 1972-02-19 2024-10-11 00:12:59 +781 781 782 78.1 156.20000000000002 781 1972-02-21 2024-10-11 00:13:01.000 1972-02-21 2024-10-11 00:13:01 +782 782 783 78.2 156.4 782 1972-02-22 2024-10-11 00:13:02.000 1972-02-22 2024-10-11 00:13:02 +783 783 784 78.3 156.60000000000002 783 1972-02-23 2024-10-11 00:13:03.000 1972-02-23 2024-10-11 00:13:03 +784 784 785 78.4 156.8 784 1972-02-24 2024-10-11 00:13:04.000 1972-02-24 2024-10-11 00:13:04 +786 786 787 78.6 157.20000000000002 786 1972-02-26 2024-10-11 00:13:06.000 1972-02-26 2024-10-11 00:13:06 +787 787 788 78.7 157.4 787 1972-02-27 2024-10-11 00:13:07.000 1972-02-27 2024-10-11 00:13:07 +788 788 789 78.8 157.60000000000002 788 1972-02-28 2024-10-11 00:13:08.000 1972-02-28 2024-10-11 00:13:08 +789 789 790 78.9 157.8 789 1972-02-29 2024-10-11 00:13:09.000 1972-02-29 2024-10-11 00:13:09 +791 791 792 79.1 158.20000000000002 791 1972-03-02 2024-10-11 00:13:11.000 1972-03-02 2024-10-11 00:13:11 +792 792 793 79.2 158.4 792 1972-03-03 2024-10-11 00:13:12.000 1972-03-03 2024-10-11 00:13:12 +793 793 794 79.3 158.60000000000002 793 1972-03-04 2024-10-11 00:13:13.000 1972-03-04 2024-10-11 00:13:13 +794 794 795 79.4 158.8 794 1972-03-05 2024-10-11 00:13:14.000 1972-03-05 2024-10-11 00:13:14 +796 796 797 79.6 159.20000000000002 796 1972-03-07 2024-10-11 00:13:16.000 1972-03-07 2024-10-11 00:13:16 +797 797 798 79.7 159.4 797 1972-03-08 2024-10-11 00:13:17.000 1972-03-08 2024-10-11 00:13:17 +798 798 799 79.8 159.60000000000002 798 1972-03-09 2024-10-11 00:13:18.000 1972-03-09 2024-10-11 00:13:18 +799 799 800 79.9 159.8 799 1972-03-10 2024-10-11 00:13:19.000 1972-03-10 2024-10-11 00:13:19 +801 801 802 80.1 160.20000000000002 801 1972-03-12 2024-10-11 00:13:21.000 1972-03-12 2024-10-11 00:13:21 +802 802 803 80.2 160.4 802 1972-03-13 2024-10-11 00:13:22.000 1972-03-13 2024-10-11 00:13:22 +803 803 804 80.3 160.60000000000002 803 1972-03-14 2024-10-11 00:13:23.000 1972-03-14 2024-10-11 00:13:23 +804 804 805 80.4 160.8 804 1972-03-15 2024-10-11 00:13:24.000 1972-03-15 2024-10-11 00:13:24 +806 806 807 80.6 161.20000000000002 806 1972-03-17 2024-10-11 00:13:26.000 1972-03-17 2024-10-11 00:13:26 +807 807 808 80.7 161.4 807 1972-03-18 2024-10-11 00:13:27.000 1972-03-18 2024-10-11 00:13:27 +808 808 809 80.8 161.60000000000002 808 1972-03-19 2024-10-11 00:13:28.000 1972-03-19 2024-10-11 00:13:28 +809 809 810 80.9 161.8 809 1972-03-20 2024-10-11 00:13:29.000 1972-03-20 2024-10-11 00:13:29 +811 811 812 81.1 162.20000000000002 811 1972-03-22 2024-10-11 00:13:31.000 1972-03-22 2024-10-11 00:13:31 +812 812 813 81.2 162.4 812 1972-03-23 2024-10-11 00:13:32.000 1972-03-23 2024-10-11 00:13:32 +813 813 814 81.3 162.60000000000002 813 1972-03-24 2024-10-11 00:13:33.000 1972-03-24 2024-10-11 00:13:33 +814 814 815 81.4 162.8 814 1972-03-25 2024-10-11 00:13:34.000 1972-03-25 2024-10-11 00:13:34 +816 816 817 81.6 163.20000000000002 816 1972-03-27 2024-10-11 00:13:36.000 1972-03-27 2024-10-11 00:13:36 +817 817 818 81.7 163.4 817 1972-03-28 2024-10-11 00:13:37.000 1972-03-28 2024-10-11 00:13:37 +818 818 819 81.8 163.60000000000002 818 1972-03-29 2024-10-11 00:13:38.000 1972-03-29 2024-10-11 00:13:38 +819 819 820 81.9 163.8 819 1972-03-30 2024-10-11 00:13:39.000 1972-03-30 2024-10-11 00:13:39 +821 821 822 82.1 164.20000000000002 821 1972-04-01 2024-10-11 00:13:41.000 1972-04-01 2024-10-11 00:13:41 +822 822 823 82.2 164.4 822 1972-04-02 2024-10-11 00:13:42.000 1972-04-02 2024-10-11 00:13:42 +823 823 824 82.3 164.60000000000002 823 1972-04-03 2024-10-11 00:13:43.000 1972-04-03 2024-10-11 00:13:43 +824 824 825 82.4 164.8 824 1972-04-04 2024-10-11 00:13:44.000 1972-04-04 2024-10-11 00:13:44 +826 826 827 82.6 165.20000000000002 826 1972-04-06 2024-10-11 00:13:46.000 1972-04-06 2024-10-11 00:13:46 +827 827 828 82.7 165.4 827 1972-04-07 2024-10-11 00:13:47.000 1972-04-07 2024-10-11 00:13:47 +828 828 829 82.8 165.60000000000002 828 1972-04-08 2024-10-11 00:13:48.000 1972-04-08 2024-10-11 00:13:48 +829 829 830 82.9 165.8 829 1972-04-09 2024-10-11 00:13:49.000 1972-04-09 2024-10-11 00:13:49 +831 831 832 83.1 166.20000000000002 831 1972-04-11 2024-10-11 00:13:51.000 1972-04-11 2024-10-11 00:13:51 +832 832 833 83.2 166.4 832 1972-04-12 2024-10-11 00:13:52.000 1972-04-12 2024-10-11 00:13:52 +833 833 834 83.3 166.60000000000002 833 1972-04-13 2024-10-11 00:13:53.000 1972-04-13 2024-10-11 00:13:53 +834 834 835 83.4 166.8 834 1972-04-14 2024-10-11 00:13:54.000 1972-04-14 2024-10-11 00:13:54 +836 836 837 83.6 167.20000000000002 836 1972-04-16 2024-10-11 00:13:56.000 1972-04-16 2024-10-11 00:13:56 +837 837 838 83.7 167.4 837 1972-04-17 2024-10-11 00:13:57.000 1972-04-17 2024-10-11 00:13:57 +838 838 839 83.8 167.60000000000002 838 1972-04-18 2024-10-11 00:13:58.000 1972-04-18 2024-10-11 00:13:58 +839 839 840 83.9 167.8 839 1972-04-19 2024-10-11 00:13:59.000 1972-04-19 2024-10-11 00:13:59 +841 841 842 84.1 168.20000000000002 841 1972-04-21 2024-10-11 00:14:01.000 1972-04-21 2024-10-11 00:14:01 +842 842 843 84.2 168.4 842 1972-04-22 2024-10-11 00:14:02.000 1972-04-22 2024-10-11 00:14:02 +843 843 844 84.3 168.60000000000002 843 1972-04-23 2024-10-11 00:14:03.000 1972-04-23 2024-10-11 00:14:03 +844 844 845 84.4 168.8 844 1972-04-24 2024-10-11 00:14:04.000 1972-04-24 2024-10-11 00:14:04 +846 846 847 84.6 169.20000000000002 846 1972-04-26 2024-10-11 00:14:06.000 1972-04-26 2024-10-11 00:14:06 +847 847 848 84.7 169.4 847 1972-04-27 2024-10-11 00:14:07.000 1972-04-27 2024-10-11 00:14:07 +848 848 849 84.8 169.60000000000002 848 1972-04-28 2024-10-11 00:14:08.000 1972-04-28 2024-10-11 00:14:08 +849 849 850 84.9 169.8 849 1972-04-29 2024-10-11 00:14:09.000 1972-04-29 2024-10-11 00:14:09 +851 851 852 85.1 170.20000000000002 851 1972-05-01 2024-10-11 00:14:11.000 1972-05-01 2024-10-11 00:14:11 +852 852 853 85.2 170.4 852 1972-05-02 2024-10-11 00:14:12.000 1972-05-02 2024-10-11 00:14:12 +853 853 854 85.3 170.60000000000002 853 1972-05-03 2024-10-11 00:14:13.000 1972-05-03 2024-10-11 00:14:13 +854 854 855 85.4 170.8 854 1972-05-04 2024-10-11 00:14:14.000 1972-05-04 2024-10-11 00:14:14 +856 856 857 85.6 171.20000000000002 856 1972-05-06 2024-10-11 00:14:16.000 1972-05-06 2024-10-11 00:14:16 +857 857 858 85.7 171.4 857 1972-05-07 2024-10-11 00:14:17.000 1972-05-07 2024-10-11 00:14:17 +858 858 859 85.8 171.60000000000002 858 1972-05-08 2024-10-11 00:14:18.000 1972-05-08 2024-10-11 00:14:18 +859 859 860 85.9 171.8 859 1972-05-09 2024-10-11 00:14:19.000 1972-05-09 2024-10-11 00:14:19 +861 861 862 86.1 172.20000000000002 861 1972-05-11 2024-10-11 00:14:21.000 1972-05-11 2024-10-11 00:14:21 +862 862 863 86.2 172.4 862 1972-05-12 2024-10-11 00:14:22.000 1972-05-12 2024-10-11 00:14:22 +863 863 864 86.3 172.60000000000002 863 1972-05-13 2024-10-11 00:14:23.000 1972-05-13 2024-10-11 00:14:23 +864 864 865 86.4 172.8 864 1972-05-14 2024-10-11 00:14:24.000 1972-05-14 2024-10-11 00:14:24 +866 866 867 86.6 173.20000000000002 866 1972-05-16 2024-10-11 00:14:26.000 1972-05-16 2024-10-11 00:14:26 +867 867 868 86.7 173.4 867 1972-05-17 2024-10-11 00:14:27.000 1972-05-17 2024-10-11 00:14:27 +868 868 869 86.8 173.60000000000002 868 1972-05-18 2024-10-11 00:14:28.000 1972-05-18 2024-10-11 00:14:28 +869 869 870 86.9 173.8 869 1972-05-19 2024-10-11 00:14:29.000 1972-05-19 2024-10-11 00:14:29 +871 871 872 87.1 174.20000000000002 871 1972-05-21 2024-10-11 00:14:31.000 1972-05-21 2024-10-11 00:14:31 +872 872 873 87.2 174.4 872 1972-05-22 2024-10-11 00:14:32.000 1972-05-22 2024-10-11 00:14:32 +873 873 874 87.3 174.60000000000002 873 1972-05-23 2024-10-11 00:14:33.000 1972-05-23 2024-10-11 00:14:33 +874 874 875 87.4 174.8 874 1972-05-24 2024-10-11 00:14:34.000 1972-05-24 2024-10-11 00:14:34 +876 876 877 87.6 175.20000000000002 876 1972-05-26 2024-10-11 00:14:36.000 1972-05-26 2024-10-11 00:14:36 +877 877 878 87.7 175.4 877 1972-05-27 2024-10-11 00:14:37.000 1972-05-27 2024-10-11 00:14:37 +878 878 879 87.8 175.60000000000002 878 1972-05-28 2024-10-11 00:14:38.000 1972-05-28 2024-10-11 00:14:38 +879 879 880 87.9 175.8 879 1972-05-29 2024-10-11 00:14:39.000 1972-05-29 2024-10-11 00:14:39 +881 881 882 88.1 176.20000000000002 881 1972-05-31 2024-10-11 00:14:41.000 1972-05-31 2024-10-11 00:14:41 +882 882 883 88.2 176.4 882 1972-06-01 2024-10-11 00:14:42.000 1972-06-01 2024-10-11 00:14:42 +883 883 884 88.3 176.60000000000002 883 1972-06-02 2024-10-11 00:14:43.000 1972-06-02 2024-10-11 00:14:43 +884 884 885 88.4 176.8 884 1972-06-03 2024-10-11 00:14:44.000 1972-06-03 2024-10-11 00:14:44 +886 886 887 88.6 177.20000000000002 886 1972-06-05 2024-10-11 00:14:46.000 1972-06-05 2024-10-11 00:14:46 +887 887 888 88.7 177.4 887 1972-06-06 2024-10-11 00:14:47.000 1972-06-06 2024-10-11 00:14:47 +888 888 889 88.8 177.60000000000002 888 1972-06-07 2024-10-11 00:14:48.000 1972-06-07 2024-10-11 00:14:48 +889 889 890 88.9 177.8 889 1972-06-08 2024-10-11 00:14:49.000 1972-06-08 2024-10-11 00:14:49 +891 891 892 89.1 178.20000000000002 891 1972-06-10 2024-10-11 00:14:51.000 1972-06-10 2024-10-11 00:14:51 +892 892 893 89.2 178.4 892 1972-06-11 2024-10-11 00:14:52.000 1972-06-11 2024-10-11 00:14:52 +893 893 894 89.3 178.60000000000002 893 1972-06-12 2024-10-11 00:14:53.000 1972-06-12 2024-10-11 00:14:53 +894 894 895 89.4 178.8 894 1972-06-13 2024-10-11 00:14:54.000 1972-06-13 2024-10-11 00:14:54 +896 896 897 89.6 179.20000000000002 896 1972-06-15 2024-10-11 00:14:56.000 1972-06-15 2024-10-11 00:14:56 +897 897 898 89.7 179.4 897 1972-06-16 2024-10-11 00:14:57.000 1972-06-16 2024-10-11 00:14:57 +898 898 899 89.8 179.60000000000002 898 1972-06-17 2024-10-11 00:14:58.000 1972-06-17 2024-10-11 00:14:58 +899 899 900 89.9 179.8 899 1972-06-18 2024-10-11 00:14:59.000 1972-06-18 2024-10-11 00:14:59 +901 901 902 90.1 180.20000000000002 901 1972-06-20 2024-10-11 00:15:01.000 1972-06-20 2024-10-11 00:15:01 +902 902 903 90.2 180.4 902 1972-06-21 2024-10-11 00:15:02.000 1972-06-21 2024-10-11 00:15:02 +903 903 904 90.3 180.60000000000002 903 1972-06-22 2024-10-11 00:15:03.000 1972-06-22 2024-10-11 00:15:03 +904 904 905 90.4 180.8 904 1972-06-23 2024-10-11 00:15:04.000 1972-06-23 2024-10-11 00:15:04 +906 906 907 90.6 181.20000000000002 906 1972-06-25 2024-10-11 00:15:06.000 1972-06-25 2024-10-11 00:15:06 +907 907 908 90.7 181.4 907 1972-06-26 2024-10-11 00:15:07.000 1972-06-26 2024-10-11 00:15:07 +908 908 909 90.8 181.60000000000002 908 1972-06-27 2024-10-11 00:15:08.000 1972-06-27 2024-10-11 00:15:08 +909 909 910 90.9 181.8 909 1972-06-28 2024-10-11 00:15:09.000 1972-06-28 2024-10-11 00:15:09 +911 911 912 91.1 182.20000000000002 911 1972-06-30 2024-10-11 00:15:11.000 1972-06-30 2024-10-11 00:15:11 +912 912 913 91.2 182.4 912 1972-07-01 2024-10-11 00:15:12.000 1972-07-01 2024-10-11 00:15:12 +913 913 914 91.3 182.60000000000002 913 1972-07-02 2024-10-11 00:15:13.000 1972-07-02 2024-10-11 00:15:13 +914 914 915 91.4 182.8 914 1972-07-03 2024-10-11 00:15:14.000 1972-07-03 2024-10-11 00:15:14 +916 916 917 91.6 183.20000000000002 916 1972-07-05 2024-10-11 00:15:16.000 1972-07-05 2024-10-11 00:15:16 +917 917 918 91.7 183.4 917 1972-07-06 2024-10-11 00:15:17.000 1972-07-06 2024-10-11 00:15:17 +918 918 919 91.8 183.60000000000002 918 1972-07-07 2024-10-11 00:15:18.000 1972-07-07 2024-10-11 00:15:18 +919 919 920 91.9 183.8 919 1972-07-08 2024-10-11 00:15:19.000 1972-07-08 2024-10-11 00:15:19 +921 921 922 92.1 184.20000000000002 921 1972-07-10 2024-10-11 00:15:21.000 1972-07-10 2024-10-11 00:15:21 +922 922 923 92.2 184.4 922 1972-07-11 2024-10-11 00:15:22.000 1972-07-11 2024-10-11 00:15:22 +923 923 924 92.3 184.60000000000002 923 1972-07-12 2024-10-11 00:15:23.000 1972-07-12 2024-10-11 00:15:23 +924 924 925 92.4 184.8 924 1972-07-13 2024-10-11 00:15:24.000 1972-07-13 2024-10-11 00:15:24 +926 926 927 92.6 185.20000000000002 926 1972-07-15 2024-10-11 00:15:26.000 1972-07-15 2024-10-11 00:15:26 +927 927 928 92.7 185.4 927 1972-07-16 2024-10-11 00:15:27.000 1972-07-16 2024-10-11 00:15:27 +928 928 929 92.8 185.60000000000002 928 1972-07-17 2024-10-11 00:15:28.000 1972-07-17 2024-10-11 00:15:28 +929 929 930 92.9 185.8 929 1972-07-18 2024-10-11 00:15:29.000 1972-07-18 2024-10-11 00:15:29 +931 931 932 93.1 186.20000000000002 931 1972-07-20 2024-10-11 00:15:31.000 1972-07-20 2024-10-11 00:15:31 +932 932 933 93.2 186.4 932 1972-07-21 2024-10-11 00:15:32.000 1972-07-21 2024-10-11 00:15:32 +933 933 934 93.3 186.60000000000002 933 1972-07-22 2024-10-11 00:15:33.000 1972-07-22 2024-10-11 00:15:33 +934 934 935 93.4 186.8 934 1972-07-23 2024-10-11 00:15:34.000 1972-07-23 2024-10-11 00:15:34 +936 936 937 93.6 187.20000000000002 936 1972-07-25 2024-10-11 00:15:36.000 1972-07-25 2024-10-11 00:15:36 +937 937 938 93.7 187.4 937 1972-07-26 2024-10-11 00:15:37.000 1972-07-26 2024-10-11 00:15:37 +938 938 939 93.8 187.60000000000002 938 1972-07-27 2024-10-11 00:15:38.000 1972-07-27 2024-10-11 00:15:38 +939 939 940 93.9 187.8 939 1972-07-28 2024-10-11 00:15:39.000 1972-07-28 2024-10-11 00:15:39 +941 941 942 94.1 188.20000000000002 941 1972-07-30 2024-10-11 00:15:41.000 1972-07-30 2024-10-11 00:15:41 +942 942 943 94.2 188.4 942 1972-07-31 2024-10-11 00:15:42.000 1972-07-31 2024-10-11 00:15:42 +943 943 944 94.3 188.60000000000002 943 1972-08-01 2024-10-11 00:15:43.000 1972-08-01 2024-10-11 00:15:43 +944 944 945 94.4 188.8 944 1972-08-02 2024-10-11 00:15:44.000 1972-08-02 2024-10-11 00:15:44 +946 946 947 94.6 189.20000000000002 946 1972-08-04 2024-10-11 00:15:46.000 1972-08-04 2024-10-11 00:15:46 +947 947 948 94.7 189.4 947 1972-08-05 2024-10-11 00:15:47.000 1972-08-05 2024-10-11 00:15:47 +948 948 949 94.8 189.60000000000002 948 1972-08-06 2024-10-11 00:15:48.000 1972-08-06 2024-10-11 00:15:48 +949 949 950 94.9 189.8 949 1972-08-07 2024-10-11 00:15:49.000 1972-08-07 2024-10-11 00:15:49 +951 951 952 95.1 190.20000000000002 951 1972-08-09 2024-10-11 00:15:51.000 1972-08-09 2024-10-11 00:15:51 +952 952 953 95.2 190.4 952 1972-08-10 2024-10-11 00:15:52.000 1972-08-10 2024-10-11 00:15:52 +953 953 954 95.3 190.60000000000002 953 1972-08-11 2024-10-11 00:15:53.000 1972-08-11 2024-10-11 00:15:53 +954 954 955 95.4 190.8 954 1972-08-12 2024-10-11 00:15:54.000 1972-08-12 2024-10-11 00:15:54 +956 956 957 95.6 191.20000000000002 956 1972-08-14 2024-10-11 00:15:56.000 1972-08-14 2024-10-11 00:15:56 +957 957 958 95.7 191.4 957 1972-08-15 2024-10-11 00:15:57.000 1972-08-15 2024-10-11 00:15:57 +958 958 959 95.8 191.60000000000002 958 1972-08-16 2024-10-11 00:15:58.000 1972-08-16 2024-10-11 00:15:58 +959 959 960 95.9 191.8 959 1972-08-17 2024-10-11 00:15:59.000 1972-08-17 2024-10-11 00:15:59 +961 961 962 96.1 192.20000000000002 961 1972-08-19 2024-10-11 00:16:01.000 1972-08-19 2024-10-11 00:16:01 +962 962 963 96.2 192.4 962 1972-08-20 2024-10-11 00:16:02.000 1972-08-20 2024-10-11 00:16:02 +963 963 964 96.3 192.60000000000002 963 1972-08-21 2024-10-11 00:16:03.000 1972-08-21 2024-10-11 00:16:03 +964 964 965 96.4 192.8 964 1972-08-22 2024-10-11 00:16:04.000 1972-08-22 2024-10-11 00:16:04 +966 966 967 96.6 193.20000000000002 966 1972-08-24 2024-10-11 00:16:06.000 1972-08-24 2024-10-11 00:16:06 +967 967 968 96.7 193.4 967 1972-08-25 2024-10-11 00:16:07.000 1972-08-25 2024-10-11 00:16:07 +968 968 969 96.8 193.60000000000002 968 1972-08-26 2024-10-11 00:16:08.000 1972-08-26 2024-10-11 00:16:08 +969 969 970 96.9 193.8 969 1972-08-27 2024-10-11 00:16:09.000 1972-08-27 2024-10-11 00:16:09 +971 971 972 97.1 194.20000000000002 971 1972-08-29 2024-10-11 00:16:11.000 1972-08-29 2024-10-11 00:16:11 +972 972 973 97.2 194.4 972 1972-08-30 2024-10-11 00:16:12.000 1972-08-30 2024-10-11 00:16:12 +973 973 974 97.3 194.60000000000002 973 1972-08-31 2024-10-11 00:16:13.000 1972-08-31 2024-10-11 00:16:13 +974 974 975 97.4 194.8 974 1972-09-01 2024-10-11 00:16:14.000 1972-09-01 2024-10-11 00:16:14 +976 976 977 97.6 195.20000000000002 976 1972-09-03 2024-10-11 00:16:16.000 1972-09-03 2024-10-11 00:16:16 +977 977 978 97.7 195.4 977 1972-09-04 2024-10-11 00:16:17.000 1972-09-04 2024-10-11 00:16:17 +978 978 979 97.8 195.60000000000002 978 1972-09-05 2024-10-11 00:16:18.000 1972-09-05 2024-10-11 00:16:18 +979 979 980 97.9 195.8 979 1972-09-06 2024-10-11 00:16:19.000 1972-09-06 2024-10-11 00:16:19 +981 981 982 98.1 196.20000000000002 981 1972-09-08 2024-10-11 00:16:21.000 1972-09-08 2024-10-11 00:16:21 +982 982 983 98.2 196.4 982 1972-09-09 2024-10-11 00:16:22.000 1972-09-09 2024-10-11 00:16:22 +983 983 984 98.3 196.60000000000002 983 1972-09-10 2024-10-11 00:16:23.000 1972-09-10 2024-10-11 00:16:23 +984 984 985 98.4 196.8 984 1972-09-11 2024-10-11 00:16:24.000 1972-09-11 2024-10-11 00:16:24 +986 986 987 98.6 197.20000000000002 986 1972-09-13 2024-10-11 00:16:26.000 1972-09-13 2024-10-11 00:16:26 +987 987 988 98.7 197.4 987 1972-09-14 2024-10-11 00:16:27.000 1972-09-14 2024-10-11 00:16:27 +988 988 989 98.8 197.60000000000002 988 1972-09-15 2024-10-11 00:16:28.000 1972-09-15 2024-10-11 00:16:28 +989 989 990 98.9 197.8 989 1972-09-16 2024-10-11 00:16:29.000 1972-09-16 2024-10-11 00:16:29 +991 991 992 99.1 198.20000000000002 991 1972-09-18 2024-10-11 00:16:31.000 1972-09-18 2024-10-11 00:16:31 +992 992 993 99.2 198.4 992 1972-09-19 2024-10-11 00:16:32.000 1972-09-19 2024-10-11 00:16:32 +993 993 994 99.3 198.60000000000002 993 1972-09-20 2024-10-11 00:16:33.000 1972-09-20 2024-10-11 00:16:33 +994 994 995 99.4 198.8 994 1972-09-21 2024-10-11 00:16:34.000 1972-09-21 2024-10-11 00:16:34 +996 996 997 99.6 199.20000000000002 996 1972-09-23 2024-10-11 00:16:36.000 1972-09-23 2024-10-11 00:16:36 +997 997 998 99.7 199.4 997 1972-09-24 2024-10-11 00:16:37.000 1972-09-24 2024-10-11 00:16:37 +998 998 999 99.8 199.60000000000002 998 1972-09-25 2024-10-11 00:16:38.000 1972-09-25 2024-10-11 00:16:38 +999 999 1000 99.9 199.8 999 1972-09-26 2024-10-11 00:16:39.000 1972-09-26 2024-10-11 00:16:39 +1001 1001 1002 100.1 200.20000000000002 1001 1972-09-28 2024-10-11 00:16:41.000 1972-09-28 2024-10-11 00:16:41 +1002 1002 1003 100.2 200.4 1002 1972-09-29 2024-10-11 00:16:42.000 1972-09-29 2024-10-11 00:16:42 +1003 1003 1004 100.3 200.60000000000002 1003 1972-09-30 2024-10-11 00:16:43.000 1972-09-30 2024-10-11 00:16:43 +1004 1004 1005 100.4 200.8 1004 1972-10-01 2024-10-11 00:16:44.000 1972-10-01 2024-10-11 00:16:44 +1006 1006 1007 100.6 201.20000000000002 1006 1972-10-03 2024-10-11 00:16:46.000 1972-10-03 2024-10-11 00:16:46 +1007 1007 1008 100.7 201.4 1007 1972-10-04 2024-10-11 00:16:47.000 1972-10-04 2024-10-11 00:16:47 +1008 1008 1009 100.8 201.60000000000002 1008 1972-10-05 2024-10-11 00:16:48.000 1972-10-05 2024-10-11 00:16:48 +1009 1009 1010 100.9 201.8 1009 1972-10-06 2024-10-11 00:16:49.000 1972-10-06 2024-10-11 00:16:49 +1011 1011 1012 101.1 202.20000000000002 1011 1972-10-08 2024-10-11 00:16:51.000 1972-10-08 2024-10-11 00:16:51 +1012 1012 1013 101.2 202.4 1012 1972-10-09 2024-10-11 00:16:52.000 1972-10-09 2024-10-11 00:16:52 +1013 1013 1014 101.3 202.60000000000002 1013 1972-10-10 2024-10-11 00:16:53.000 1972-10-10 2024-10-11 00:16:53 +1014 1014 1015 101.4 202.8 1014 1972-10-11 2024-10-11 00:16:54.000 1972-10-11 2024-10-11 00:16:54 +1016 1016 1017 101.6 203.20000000000002 1016 1972-10-13 2024-10-11 00:16:56.000 1972-10-13 2024-10-11 00:16:56 +1017 1017 1018 101.7 203.4 1017 1972-10-14 2024-10-11 00:16:57.000 1972-10-14 2024-10-11 00:16:57 +1018 1018 1019 101.8 203.60000000000002 1018 1972-10-15 2024-10-11 00:16:58.000 1972-10-15 2024-10-11 00:16:58 +1019 1019 1020 101.9 203.8 1019 1972-10-16 2024-10-11 00:16:59.000 1972-10-16 2024-10-11 00:16:59 +1021 1021 1022 102.1 204.20000000000002 1021 1972-10-18 2024-10-11 00:17:01.000 1972-10-18 2024-10-11 00:17:01 +1022 1022 1023 102.2 204.4 1022 1972-10-19 2024-10-11 00:17:02.000 1972-10-19 2024-10-11 00:17:02 +1023 1023 1024 102.3 204.60000000000002 1023 1972-10-20 2024-10-11 00:17:03.000 1972-10-20 2024-10-11 00:17:03 +1024 1024 1025 102.4 204.8 1024 1972-10-21 2024-10-11 00:17:04.000 1972-10-21 2024-10-11 00:17:04 +1026 1026 1027 102.6 205.20000000000002 1026 1972-10-23 2024-10-11 00:17:06.000 1972-10-23 2024-10-11 00:17:06 +1027 1027 1028 102.7 205.4 1027 1972-10-24 2024-10-11 00:17:07.000 1972-10-24 2024-10-11 00:17:07 +1028 1028 1029 102.8 205.60000000000002 1028 1972-10-25 2024-10-11 00:17:08.000 1972-10-25 2024-10-11 00:17:08 +1029 1029 1030 102.9 205.8 1029 1972-10-26 2024-10-11 00:17:09.000 1972-10-26 2024-10-11 00:17:09 +1031 1031 1032 103.1 206.20000000000002 1031 1972-10-28 2024-10-11 00:17:11.000 1972-10-28 2024-10-11 00:17:11 +1032 1032 1033 103.2 206.4 1032 1972-10-29 2024-10-11 00:17:12.000 1972-10-29 2024-10-11 00:17:12 +1033 1033 1034 103.3 206.60000000000002 1033 1972-10-30 2024-10-11 00:17:13.000 1972-10-30 2024-10-11 00:17:13 +1034 1034 1035 103.4 206.8 1034 1972-10-31 2024-10-11 00:17:14.000 1972-10-31 2024-10-11 00:17:14 +1036 1036 1037 103.6 207.20000000000002 1036 1972-11-02 2024-10-11 00:17:16.000 1972-11-02 2024-10-11 00:17:16 +1037 1037 1038 103.7 207.4 1037 1972-11-03 2024-10-11 00:17:17.000 1972-11-03 2024-10-11 00:17:17 +1038 1038 1039 103.8 207.60000000000002 1038 1972-11-04 2024-10-11 00:17:18.000 1972-11-04 2024-10-11 00:17:18 +1039 1039 1040 103.9 207.8 1039 1972-11-05 2024-10-11 00:17:19.000 1972-11-05 2024-10-11 00:17:19 +1041 1041 1042 104.1 208.20000000000002 1041 1972-11-07 2024-10-11 00:17:21.000 1972-11-07 2024-10-11 00:17:21 +1042 1042 1043 104.2 208.4 1042 1972-11-08 2024-10-11 00:17:22.000 1972-11-08 2024-10-11 00:17:22 +1043 1043 1044 104.3 208.60000000000002 1043 1972-11-09 2024-10-11 00:17:23.000 1972-11-09 2024-10-11 00:17:23 +1044 1044 1045 104.4 208.8 1044 1972-11-10 2024-10-11 00:17:24.000 1972-11-10 2024-10-11 00:17:24 +1046 1046 1047 104.6 209.20000000000002 1046 1972-11-12 2024-10-11 00:17:26.000 1972-11-12 2024-10-11 00:17:26 +1047 1047 1048 104.7 209.4 1047 1972-11-13 2024-10-11 00:17:27.000 1972-11-13 2024-10-11 00:17:27 +1048 1048 1049 104.8 209.60000000000002 1048 1972-11-14 2024-10-11 00:17:28.000 1972-11-14 2024-10-11 00:17:28 +1049 1049 1050 104.9 209.8 1049 1972-11-15 2024-10-11 00:17:29.000 1972-11-15 2024-10-11 00:17:29 +1051 1051 1052 105.1 210.20000000000002 1051 1972-11-17 2024-10-11 00:17:31.000 1972-11-17 2024-10-11 00:17:31 +1052 1052 1053 105.2 210.4 1052 1972-11-18 2024-10-11 00:17:32.000 1972-11-18 2024-10-11 00:17:32 +1053 1053 1054 105.3 210.60000000000002 1053 1972-11-19 2024-10-11 00:17:33.000 1972-11-19 2024-10-11 00:17:33 +1054 1054 1055 105.4 210.8 1054 1972-11-20 2024-10-11 00:17:34.000 1972-11-20 2024-10-11 00:17:34 +1056 1056 1057 105.6 211.20000000000002 1056 1972-11-22 2024-10-11 00:17:36.000 1972-11-22 2024-10-11 00:17:36 +1057 1057 1058 105.7 211.4 1057 1972-11-23 2024-10-11 00:17:37.000 1972-11-23 2024-10-11 00:17:37 +1058 1058 1059 105.8 211.60000000000002 1058 1972-11-24 2024-10-11 00:17:38.000 1972-11-24 2024-10-11 00:17:38 +1059 1059 1060 105.9 211.8 1059 1972-11-25 2024-10-11 00:17:39.000 1972-11-25 2024-10-11 00:17:39 +1061 1061 1062 106.1 212.20000000000002 1061 1972-11-27 2024-10-11 00:17:41.000 1972-11-27 2024-10-11 00:17:41 +1062 1062 1063 106.2 212.4 1062 1972-11-28 2024-10-11 00:17:42.000 1972-11-28 2024-10-11 00:17:42 +1063 1063 1064 106.3 212.60000000000002 1063 1972-11-29 2024-10-11 00:17:43.000 1972-11-29 2024-10-11 00:17:43 +1064 1064 1065 106.4 212.8 1064 1972-11-30 2024-10-11 00:17:44.000 1972-11-30 2024-10-11 00:17:44 +1066 1066 1067 106.6 213.20000000000002 1066 1972-12-02 2024-10-11 00:17:46.000 1972-12-02 2024-10-11 00:17:46 +1067 1067 1068 106.7 213.4 1067 1972-12-03 2024-10-11 00:17:47.000 1972-12-03 2024-10-11 00:17:47 +1068 1068 1069 106.8 213.60000000000002 1068 1972-12-04 2024-10-11 00:17:48.000 1972-12-04 2024-10-11 00:17:48 +1069 1069 1070 106.9 213.8 1069 1972-12-05 2024-10-11 00:17:49.000 1972-12-05 2024-10-11 00:17:49 +1071 1071 1072 107.1 214.20000000000002 1071 1972-12-07 2024-10-11 00:17:51.000 1972-12-07 2024-10-11 00:17:51 +1072 1072 1073 107.2 214.4 1072 1972-12-08 2024-10-11 00:17:52.000 1972-12-08 2024-10-11 00:17:52 +1073 1073 1074 107.3 214.60000000000002 1073 1972-12-09 2024-10-11 00:17:53.000 1972-12-09 2024-10-11 00:17:53 +1074 1074 1075 107.4 214.8 1074 1972-12-10 2024-10-11 00:17:54.000 1972-12-10 2024-10-11 00:17:54 +1076 1076 1077 107.6 215.20000000000002 1076 1972-12-12 2024-10-11 00:17:56.000 1972-12-12 2024-10-11 00:17:56 +1077 1077 1078 107.7 215.4 1077 1972-12-13 2024-10-11 00:17:57.000 1972-12-13 2024-10-11 00:17:57 +1078 1078 1079 107.8 215.60000000000002 1078 1972-12-14 2024-10-11 00:17:58.000 1972-12-14 2024-10-11 00:17:58 +1079 1079 1080 107.9 215.8 1079 1972-12-15 2024-10-11 00:17:59.000 1972-12-15 2024-10-11 00:17:59 +1081 1081 1082 108.1 216.20000000000002 1081 1972-12-17 2024-10-11 00:18:01.000 1972-12-17 2024-10-11 00:18:01 +1082 1082 1083 108.2 216.4 1082 1972-12-18 2024-10-11 00:18:02.000 1972-12-18 2024-10-11 00:18:02 +1083 1083 1084 108.3 216.60000000000002 1083 1972-12-19 2024-10-11 00:18:03.000 1972-12-19 2024-10-11 00:18:03 +1084 1084 1085 108.4 216.8 1084 1972-12-20 2024-10-11 00:18:04.000 1972-12-20 2024-10-11 00:18:04 +1086 1086 1087 108.6 217.20000000000002 1086 1972-12-22 2024-10-11 00:18:06.000 1972-12-22 2024-10-11 00:18:06 +1087 1087 1088 108.7 217.4 1087 1972-12-23 2024-10-11 00:18:07.000 1972-12-23 2024-10-11 00:18:07 +1088 1088 1089 108.8 217.60000000000002 1088 1972-12-24 2024-10-11 00:18:08.000 1972-12-24 2024-10-11 00:18:08 +1089 1089 1090 108.9 217.8 1089 1972-12-25 2024-10-11 00:18:09.000 1972-12-25 2024-10-11 00:18:09 +1091 1091 1092 109.1 218.20000000000002 1091 1972-12-27 2024-10-11 00:18:11.000 1972-12-27 2024-10-11 00:18:11 +1092 1092 1093 109.2 218.4 1092 1972-12-28 2024-10-11 00:18:12.000 1972-12-28 2024-10-11 00:18:12 +1093 1093 1094 109.3 218.60000000000002 1093 1972-12-29 2024-10-11 00:18:13.000 1972-12-29 2024-10-11 00:18:13 +1094 1094 1095 109.4 218.8 1094 1972-12-30 2024-10-11 00:18:14.000 1972-12-30 2024-10-11 00:18:14 +1096 1096 1097 109.6 219.20000000000002 1096 1973-01-01 2024-10-11 00:18:16.000 1973-01-01 2024-10-11 00:18:16 +1097 1097 1098 109.7 219.4 1097 1973-01-02 2024-10-11 00:18:17.000 1973-01-02 2024-10-11 00:18:17 +1098 1098 1099 109.8 219.60000000000002 1098 1973-01-03 2024-10-11 00:18:18.000 1973-01-03 2024-10-11 00:18:18 +1099 1099 1100 109.9 219.8 1099 1973-01-04 2024-10-11 00:18:19.000 1973-01-04 2024-10-11 00:18:19 +1101 1101 1102 110.1 220.20000000000002 1101 1973-01-06 2024-10-11 00:18:21.000 1973-01-06 2024-10-11 00:18:21 +1102 1102 1103 110.2 220.4 1102 1973-01-07 2024-10-11 00:18:22.000 1973-01-07 2024-10-11 00:18:22 +1103 1103 1104 110.3 220.60000000000002 1103 1973-01-08 2024-10-11 00:18:23.000 1973-01-08 2024-10-11 00:18:23 +1104 1104 1105 110.4 220.8 1104 1973-01-09 2024-10-11 00:18:24.000 1973-01-09 2024-10-11 00:18:24 +1106 1106 1107 110.6 221.20000000000002 1106 1973-01-11 2024-10-11 00:18:26.000 1973-01-11 2024-10-11 00:18:26 +1107 1107 1108 110.7 221.4 1107 1973-01-12 2024-10-11 00:18:27.000 1973-01-12 2024-10-11 00:18:27 +1108 1108 1109 110.8 221.60000000000002 1108 1973-01-13 2024-10-11 00:18:28.000 1973-01-13 2024-10-11 00:18:28 +1109 1109 1110 110.9 221.8 1109 1973-01-14 2024-10-11 00:18:29.000 1973-01-14 2024-10-11 00:18:29 +1111 1111 1112 111.1 222.20000000000002 1111 1973-01-16 2024-10-11 00:18:31.000 1973-01-16 2024-10-11 00:18:31 +1112 1112 1113 111.2 222.4 1112 1973-01-17 2024-10-11 00:18:32.000 1973-01-17 2024-10-11 00:18:32 +1113 1113 1114 111.3 222.60000000000002 1113 1973-01-18 2024-10-11 00:18:33.000 1973-01-18 2024-10-11 00:18:33 +1114 1114 1115 111.4 222.8 1114 1973-01-19 2024-10-11 00:18:34.000 1973-01-19 2024-10-11 00:18:34 +1116 1116 1117 111.6 223.20000000000002 1116 1973-01-21 2024-10-11 00:18:36.000 1973-01-21 2024-10-11 00:18:36 +1117 1117 1118 111.7 223.4 1117 1973-01-22 2024-10-11 00:18:37.000 1973-01-22 2024-10-11 00:18:37 +1118 1118 1119 111.8 223.60000000000002 1118 1973-01-23 2024-10-11 00:18:38.000 1973-01-23 2024-10-11 00:18:38 +1119 1119 1120 111.9 223.8 1119 1973-01-24 2024-10-11 00:18:39.000 1973-01-24 2024-10-11 00:18:39 +1121 1121 1122 112.1 224.20000000000002 1121 1973-01-26 2024-10-11 00:18:41.000 1973-01-26 2024-10-11 00:18:41 +1122 1122 1123 112.2 224.4 1122 1973-01-27 2024-10-11 00:18:42.000 1973-01-27 2024-10-11 00:18:42 +1123 1123 1124 112.3 224.60000000000002 1123 1973-01-28 2024-10-11 00:18:43.000 1973-01-28 2024-10-11 00:18:43 +1124 1124 1125 112.4 224.8 1124 1973-01-29 2024-10-11 00:18:44.000 1973-01-29 2024-10-11 00:18:44 +1126 1126 1127 112.6 225.20000000000002 1126 1973-01-31 2024-10-11 00:18:46.000 1973-01-31 2024-10-11 00:18:46 +1127 1127 1128 112.7 225.4 1127 1973-02-01 2024-10-11 00:18:47.000 1973-02-01 2024-10-11 00:18:47 +1128 1128 1129 112.8 225.60000000000002 1128 1973-02-02 2024-10-11 00:18:48.000 1973-02-02 2024-10-11 00:18:48 +1129 1129 1130 112.9 225.8 1129 1973-02-03 2024-10-11 00:18:49.000 1973-02-03 2024-10-11 00:18:49 +1131 1131 1132 113.1 226.20000000000002 1131 1973-02-05 2024-10-11 00:18:51.000 1973-02-05 2024-10-11 00:18:51 +1132 1132 1133 113.2 226.4 1132 1973-02-06 2024-10-11 00:18:52.000 1973-02-06 2024-10-11 00:18:52 +1133 1133 1134 113.3 226.60000000000002 1133 1973-02-07 2024-10-11 00:18:53.000 1973-02-07 2024-10-11 00:18:53 +1134 1134 1135 113.4 226.8 1134 1973-02-08 2024-10-11 00:18:54.000 1973-02-08 2024-10-11 00:18:54 +1136 1136 1137 113.6 227.20000000000002 1136 1973-02-10 2024-10-11 00:18:56.000 1973-02-10 2024-10-11 00:18:56 +1137 1137 1138 113.7 227.4 1137 1973-02-11 2024-10-11 00:18:57.000 1973-02-11 2024-10-11 00:18:57 +1138 1138 1139 113.8 227.60000000000002 1138 1973-02-12 2024-10-11 00:18:58.000 1973-02-12 2024-10-11 00:18:58 +1139 1139 1140 113.9 227.8 1139 1973-02-13 2024-10-11 00:18:59.000 1973-02-13 2024-10-11 00:18:59 +1141 1141 1142 114.1 228.20000000000002 1141 1973-02-15 2024-10-11 00:19:01.000 1973-02-15 2024-10-11 00:19:01 +1142 1142 1143 114.2 228.4 1142 1973-02-16 2024-10-11 00:19:02.000 1973-02-16 2024-10-11 00:19:02 +1143 1143 1144 114.3 228.60000000000002 1143 1973-02-17 2024-10-11 00:19:03.000 1973-02-17 2024-10-11 00:19:03 +1144 1144 1145 114.4 228.8 1144 1973-02-18 2024-10-11 00:19:04.000 1973-02-18 2024-10-11 00:19:04 +1146 1146 1147 114.6 229.20000000000002 1146 1973-02-20 2024-10-11 00:19:06.000 1973-02-20 2024-10-11 00:19:06 +1147 1147 1148 114.7 229.4 1147 1973-02-21 2024-10-11 00:19:07.000 1973-02-21 2024-10-11 00:19:07 +1148 1148 1149 114.8 229.60000000000002 1148 1973-02-22 2024-10-11 00:19:08.000 1973-02-22 2024-10-11 00:19:08 +1149 1149 1150 114.9 229.8 1149 1973-02-23 2024-10-11 00:19:09.000 1973-02-23 2024-10-11 00:19:09 +1151 1151 1152 115.1 230.20000000000002 1151 1973-02-25 2024-10-11 00:19:11.000 1973-02-25 2024-10-11 00:19:11 +1152 1152 1153 115.2 230.4 1152 1973-02-26 2024-10-11 00:19:12.000 1973-02-26 2024-10-11 00:19:12 +1153 1153 1154 115.3 230.60000000000002 1153 1973-02-27 2024-10-11 00:19:13.000 1973-02-27 2024-10-11 00:19:13 +1154 1154 1155 115.4 230.8 1154 1973-02-28 2024-10-11 00:19:14.000 1973-02-28 2024-10-11 00:19:14 +1156 1156 1157 115.6 231.20000000000002 1156 1973-03-02 2024-10-11 00:19:16.000 1973-03-02 2024-10-11 00:19:16 +1157 1157 1158 115.7 231.4 1157 1973-03-03 2024-10-11 00:19:17.000 1973-03-03 2024-10-11 00:19:17 +1158 1158 1159 115.8 231.60000000000002 1158 1973-03-04 2024-10-11 00:19:18.000 1973-03-04 2024-10-11 00:19:18 +1159 1159 1160 115.9 231.8 1159 1973-03-05 2024-10-11 00:19:19.000 1973-03-05 2024-10-11 00:19:19 +1161 1161 1162 116.1 232.20000000000002 1161 1973-03-07 2024-10-11 00:19:21.000 1973-03-07 2024-10-11 00:19:21 +1162 1162 1163 116.2 232.4 1162 1973-03-08 2024-10-11 00:19:22.000 1973-03-08 2024-10-11 00:19:22 +1163 1163 1164 116.3 232.60000000000002 1163 1973-03-09 2024-10-11 00:19:23.000 1973-03-09 2024-10-11 00:19:23 +1164 1164 1165 116.4 232.8 1164 1973-03-10 2024-10-11 00:19:24.000 1973-03-10 2024-10-11 00:19:24 +1166 1166 1167 116.6 233.20000000000002 1166 1973-03-12 2024-10-11 00:19:26.000 1973-03-12 2024-10-11 00:19:26 +1167 1167 1168 116.7 233.4 1167 1973-03-13 2024-10-11 00:19:27.000 1973-03-13 2024-10-11 00:19:27 +1168 1168 1169 116.8 233.60000000000002 1168 1973-03-14 2024-10-11 00:19:28.000 1973-03-14 2024-10-11 00:19:28 +1169 1169 1170 116.9 233.8 1169 1973-03-15 2024-10-11 00:19:29.000 1973-03-15 2024-10-11 00:19:29 +1171 1171 1172 117.1 234.20000000000002 1171 1973-03-17 2024-10-11 00:19:31.000 1973-03-17 2024-10-11 00:19:31 +1172 1172 1173 117.2 234.4 1172 1973-03-18 2024-10-11 00:19:32.000 1973-03-18 2024-10-11 00:19:32 +1173 1173 1174 117.3 234.60000000000002 1173 1973-03-19 2024-10-11 00:19:33.000 1973-03-19 2024-10-11 00:19:33 +1174 1174 1175 117.4 234.8 1174 1973-03-20 2024-10-11 00:19:34.000 1973-03-20 2024-10-11 00:19:34 +1176 1176 1177 117.6 235.20000000000002 1176 1973-03-22 2024-10-11 00:19:36.000 1973-03-22 2024-10-11 00:19:36 +1177 1177 1178 117.7 235.4 1177 1973-03-23 2024-10-11 00:19:37.000 1973-03-23 2024-10-11 00:19:37 +1178 1178 1179 117.8 235.60000000000002 1178 1973-03-24 2024-10-11 00:19:38.000 1973-03-24 2024-10-11 00:19:38 +1179 1179 1180 117.9 235.8 1179 1973-03-25 2024-10-11 00:19:39.000 1973-03-25 2024-10-11 00:19:39 +1181 1181 1182 118.1 236.20000000000002 1181 1973-03-27 2024-10-11 00:19:41.000 1973-03-27 2024-10-11 00:19:41 +1182 1182 1183 118.2 236.4 1182 1973-03-28 2024-10-11 00:19:42.000 1973-03-28 2024-10-11 00:19:42 +1183 1183 1184 118.3 236.60000000000002 1183 1973-03-29 2024-10-11 00:19:43.000 1973-03-29 2024-10-11 00:19:43 +1184 1184 1185 118.4 236.8 1184 1973-03-30 2024-10-11 00:19:44.000 1973-03-30 2024-10-11 00:19:44 +1186 1186 1187 118.6 237.20000000000002 1186 1973-04-01 2024-10-11 00:19:46.000 1973-04-01 2024-10-11 00:19:46 +1187 1187 1188 118.7 237.4 1187 1973-04-02 2024-10-11 00:19:47.000 1973-04-02 2024-10-11 00:19:47 +1188 1188 1189 118.8 237.60000000000002 1188 1973-04-03 2024-10-11 00:19:48.000 1973-04-03 2024-10-11 00:19:48 +1189 1189 1190 118.9 237.8 1189 1973-04-04 2024-10-11 00:19:49.000 1973-04-04 2024-10-11 00:19:49 +1191 1191 1192 119.1 238.20000000000002 1191 1973-04-06 2024-10-11 00:19:51.000 1973-04-06 2024-10-11 00:19:51 +1192 1192 1193 119.2 238.4 1192 1973-04-07 2024-10-11 00:19:52.000 1973-04-07 2024-10-11 00:19:52 +1193 1193 1194 119.3 238.60000000000002 1193 1973-04-08 2024-10-11 00:19:53.000 1973-04-08 2024-10-11 00:19:53 +1194 1194 1195 119.4 238.8 1194 1973-04-09 2024-10-11 00:19:54.000 1973-04-09 2024-10-11 00:19:54 +1196 1196 1197 119.6 239.20000000000002 1196 1973-04-11 2024-10-11 00:19:56.000 1973-04-11 2024-10-11 00:19:56 +1197 1197 1198 119.7 239.4 1197 1973-04-12 2024-10-11 00:19:57.000 1973-04-12 2024-10-11 00:19:57 +1198 1198 1199 119.8 239.60000000000002 1198 1973-04-13 2024-10-11 00:19:58.000 1973-04-13 2024-10-11 00:19:58 +1199 1199 1200 119.9 239.8 1199 1973-04-14 2024-10-11 00:19:59.000 1973-04-14 2024-10-11 00:19:59 +1201 1201 1202 120.1 240.20000000000002 1201 1973-04-16 2024-10-11 00:20:01.000 1973-04-16 2024-10-11 00:20:01 +1202 1202 1203 120.2 240.4 1202 1973-04-17 2024-10-11 00:20:02.000 1973-04-17 2024-10-11 00:20:02 +1203 1203 1204 120.3 240.60000000000002 1203 1973-04-18 2024-10-11 00:20:03.000 1973-04-18 2024-10-11 00:20:03 +1204 1204 1205 120.4 240.8 1204 1973-04-19 2024-10-11 00:20:04.000 1973-04-19 2024-10-11 00:20:04 +1206 1206 1207 120.6 241.20000000000002 1206 1973-04-21 2024-10-11 00:20:06.000 1973-04-21 2024-10-11 00:20:06 +1207 1207 1208 120.7 241.4 1207 1973-04-22 2024-10-11 00:20:07.000 1973-04-22 2024-10-11 00:20:07 +1208 1208 1209 120.8 241.60000000000002 1208 1973-04-23 2024-10-11 00:20:08.000 1973-04-23 2024-10-11 00:20:08 +1209 1209 1210 120.9 241.8 1209 1973-04-24 2024-10-11 00:20:09.000 1973-04-24 2024-10-11 00:20:09 +1211 1211 1212 121.1 242.20000000000002 1211 1973-04-26 2024-10-11 00:20:11.000 1973-04-26 2024-10-11 00:20:11 +1212 1212 1213 121.2 242.4 1212 1973-04-27 2024-10-11 00:20:12.000 1973-04-27 2024-10-11 00:20:12 +1213 1213 1214 121.3 242.60000000000002 1213 1973-04-28 2024-10-11 00:20:13.000 1973-04-28 2024-10-11 00:20:13 +1214 1214 1215 121.4 242.8 1214 1973-04-29 2024-10-11 00:20:14.000 1973-04-29 2024-10-11 00:20:14 +1216 1216 1217 121.6 243.20000000000002 1216 1973-05-01 2024-10-11 00:20:16.000 1973-05-01 2024-10-11 00:20:16 +1217 1217 1218 121.7 243.4 1217 1973-05-02 2024-10-11 00:20:17.000 1973-05-02 2024-10-11 00:20:17 +1218 1218 1219 121.8 243.60000000000002 1218 1973-05-03 2024-10-11 00:20:18.000 1973-05-03 2024-10-11 00:20:18 +1219 1219 1220 121.9 243.8 1219 1973-05-04 2024-10-11 00:20:19.000 1973-05-04 2024-10-11 00:20:19 +1221 1221 1222 122.1 244.20000000000002 1221 1973-05-06 2024-10-11 00:20:21.000 1973-05-06 2024-10-11 00:20:21 +1222 1222 1223 122.2 244.4 1222 1973-05-07 2024-10-11 00:20:22.000 1973-05-07 2024-10-11 00:20:22 +1223 1223 1224 122.3 244.60000000000002 1223 1973-05-08 2024-10-11 00:20:23.000 1973-05-08 2024-10-11 00:20:23 +1224 1224 1225 122.4 244.8 1224 1973-05-09 2024-10-11 00:20:24.000 1973-05-09 2024-10-11 00:20:24 +1226 1226 1227 122.6 245.20000000000002 1226 1973-05-11 2024-10-11 00:20:26.000 1973-05-11 2024-10-11 00:20:26 +1227 1227 1228 122.7 245.4 1227 1973-05-12 2024-10-11 00:20:27.000 1973-05-12 2024-10-11 00:20:27 +1228 1228 1229 122.8 245.60000000000002 1228 1973-05-13 2024-10-11 00:20:28.000 1973-05-13 2024-10-11 00:20:28 +1229 1229 1230 122.9 245.8 1229 1973-05-14 2024-10-11 00:20:29.000 1973-05-14 2024-10-11 00:20:29 +1231 1231 1232 123.1 246.20000000000002 1231 1973-05-16 2024-10-11 00:20:31.000 1973-05-16 2024-10-11 00:20:31 +1232 1232 1233 123.2 246.4 1232 1973-05-17 2024-10-11 00:20:32.000 1973-05-17 2024-10-11 00:20:32 +1233 1233 1234 123.3 246.60000000000002 1233 1973-05-18 2024-10-11 00:20:33.000 1973-05-18 2024-10-11 00:20:33 +1234 1234 1235 123.4 246.8 1234 1973-05-19 2024-10-11 00:20:34.000 1973-05-19 2024-10-11 00:20:34 +1236 1236 1237 123.6 247.20000000000002 1236 1973-05-21 2024-10-11 00:20:36.000 1973-05-21 2024-10-11 00:20:36 +1237 1237 1238 123.7 247.4 1237 1973-05-22 2024-10-11 00:20:37.000 1973-05-22 2024-10-11 00:20:37 +1238 1238 1239 123.8 247.60000000000002 1238 1973-05-23 2024-10-11 00:20:38.000 1973-05-23 2024-10-11 00:20:38 +1239 1239 1240 123.9 247.8 1239 1973-05-24 2024-10-11 00:20:39.000 1973-05-24 2024-10-11 00:20:39 +1241 1241 1242 124.1 248.20000000000002 1241 1973-05-26 2024-10-11 00:20:41.000 1973-05-26 2024-10-11 00:20:41 +1242 1242 1243 124.2 248.4 1242 1973-05-27 2024-10-11 00:20:42.000 1973-05-27 2024-10-11 00:20:42 +1243 1243 1244 124.3 248.60000000000002 1243 1973-05-28 2024-10-11 00:20:43.000 1973-05-28 2024-10-11 00:20:43 +1244 1244 1245 124.4 248.8 1244 1973-05-29 2024-10-11 00:20:44.000 1973-05-29 2024-10-11 00:20:44 +1246 1246 1247 124.6 249.20000000000002 1246 1973-05-31 2024-10-11 00:20:46.000 1973-05-31 2024-10-11 00:20:46 +1247 1247 1248 124.7 249.4 1247 1973-06-01 2024-10-11 00:20:47.000 1973-06-01 2024-10-11 00:20:47 +1248 1248 1249 124.8 249.60000000000002 1248 1973-06-02 2024-10-11 00:20:48.000 1973-06-02 2024-10-11 00:20:48 +1249 1249 1250 124.9 249.8 1249 1973-06-03 2024-10-11 00:20:49.000 1973-06-03 2024-10-11 00:20:49 +1251 1251 1252 125.1 250.20000000000002 1251 1973-06-05 2024-10-11 00:20:51.000 1973-06-05 2024-10-11 00:20:51 +1252 1252 1253 125.2 250.4 1252 1973-06-06 2024-10-11 00:20:52.000 1973-06-06 2024-10-11 00:20:52 +1253 1253 1254 125.3 250.60000000000002 1253 1973-06-07 2024-10-11 00:20:53.000 1973-06-07 2024-10-11 00:20:53 +1254 1254 1255 125.4 250.8 1254 1973-06-08 2024-10-11 00:20:54.000 1973-06-08 2024-10-11 00:20:54 +1256 1256 1257 125.6 251.20000000000002 1256 1973-06-10 2024-10-11 00:20:56.000 1973-06-10 2024-10-11 00:20:56 +1257 1257 1258 125.7 251.4 1257 1973-06-11 2024-10-11 00:20:57.000 1973-06-11 2024-10-11 00:20:57 +1258 1258 1259 125.8 251.60000000000002 1258 1973-06-12 2024-10-11 00:20:58.000 1973-06-12 2024-10-11 00:20:58 +1259 1259 1260 125.9 251.8 1259 1973-06-13 2024-10-11 00:20:59.000 1973-06-13 2024-10-11 00:20:59 +1261 1261 1262 126.1 252.20000000000002 1261 1973-06-15 2024-10-11 00:21:01.000 1973-06-15 2024-10-11 00:21:01 +1262 1262 1263 126.2 252.4 1262 1973-06-16 2024-10-11 00:21:02.000 1973-06-16 2024-10-11 00:21:02 +1263 1263 1264 126.3 252.60000000000002 1263 1973-06-17 2024-10-11 00:21:03.000 1973-06-17 2024-10-11 00:21:03 +1264 1264 1265 126.4 252.8 1264 1973-06-18 2024-10-11 00:21:04.000 1973-06-18 2024-10-11 00:21:04 +1266 1266 1267 126.6 253.20000000000002 1266 1973-06-20 2024-10-11 00:21:06.000 1973-06-20 2024-10-11 00:21:06 +1267 1267 1268 126.7 253.4 1267 1973-06-21 2024-10-11 00:21:07.000 1973-06-21 2024-10-11 00:21:07 +1268 1268 1269 126.8 253.60000000000002 1268 1973-06-22 2024-10-11 00:21:08.000 1973-06-22 2024-10-11 00:21:08 +1269 1269 1270 126.9 253.8 1269 1973-06-23 2024-10-11 00:21:09.000 1973-06-23 2024-10-11 00:21:09 +1271 1271 1272 127.1 254.20000000000002 1271 1973-06-25 2024-10-11 00:21:11.000 1973-06-25 2024-10-11 00:21:11 +1272 1272 1273 127.2 254.4 1272 1973-06-26 2024-10-11 00:21:12.000 1973-06-26 2024-10-11 00:21:12 +1273 1273 1274 127.3 254.60000000000002 1273 1973-06-27 2024-10-11 00:21:13.000 1973-06-27 2024-10-11 00:21:13 +1274 1274 1275 127.4 254.8 1274 1973-06-28 2024-10-11 00:21:14.000 1973-06-28 2024-10-11 00:21:14 +1276 1276 1277 127.6 255.20000000000002 1276 1973-06-30 2024-10-11 00:21:16.000 1973-06-30 2024-10-11 00:21:16 +1277 1277 1278 127.7 255.4 1277 1973-07-01 2024-10-11 00:21:17.000 1973-07-01 2024-10-11 00:21:17 +1278 1278 1279 127.8 255.60000000000002 1278 1973-07-02 2024-10-11 00:21:18.000 1973-07-02 2024-10-11 00:21:18 +1279 1279 1280 127.9 255.8 1279 1973-07-03 2024-10-11 00:21:19.000 1973-07-03 2024-10-11 00:21:19 +1281 1281 1282 128.1 256.2 1281 1973-07-05 2024-10-11 00:21:21.000 1973-07-05 2024-10-11 00:21:21 +1282 1282 1283 128.2 256.40000000000003 1282 1973-07-06 2024-10-11 00:21:22.000 1973-07-06 2024-10-11 00:21:22 +1283 1283 1284 128.3 256.6 1283 1973-07-07 2024-10-11 00:21:23.000 1973-07-07 2024-10-11 00:21:23 +1284 1284 1285 128.4 256.8 1284 1973-07-08 2024-10-11 00:21:24.000 1973-07-08 2024-10-11 00:21:24 +1286 1286 1287 128.6 257.2 1286 1973-07-10 2024-10-11 00:21:26.000 1973-07-10 2024-10-11 00:21:26 +1287 1287 1288 128.7 257.40000000000003 1287 1973-07-11 2024-10-11 00:21:27.000 1973-07-11 2024-10-11 00:21:27 +1288 1288 1289 128.8 257.6 1288 1973-07-12 2024-10-11 00:21:28.000 1973-07-12 2024-10-11 00:21:28 +1289 1289 1290 128.9 257.8 1289 1973-07-13 2024-10-11 00:21:29.000 1973-07-13 2024-10-11 00:21:29 +1291 1291 1292 129.1 258.2 1291 1973-07-15 2024-10-11 00:21:31.000 1973-07-15 2024-10-11 00:21:31 +1292 1292 1293 129.2 258.40000000000003 1292 1973-07-16 2024-10-11 00:21:32.000 1973-07-16 2024-10-11 00:21:32 +1293 1293 1294 129.3 258.6 1293 1973-07-17 2024-10-11 00:21:33.000 1973-07-17 2024-10-11 00:21:33 +1294 1294 1295 129.4 258.8 1294 1973-07-18 2024-10-11 00:21:34.000 1973-07-18 2024-10-11 00:21:34 +1296 1296 1297 129.6 259.2 1296 1973-07-20 2024-10-11 00:21:36.000 1973-07-20 2024-10-11 00:21:36 +1297 1297 1298 129.7 259.40000000000003 1297 1973-07-21 2024-10-11 00:21:37.000 1973-07-21 2024-10-11 00:21:37 +1298 1298 1299 129.8 259.6 1298 1973-07-22 2024-10-11 00:21:38.000 1973-07-22 2024-10-11 00:21:38 +1299 1299 1300 129.9 259.8 1299 1973-07-23 2024-10-11 00:21:39.000 1973-07-23 2024-10-11 00:21:39 +1301 1301 1302 130.1 260.2 1301 1973-07-25 2024-10-11 00:21:41.000 1973-07-25 2024-10-11 00:21:41 +1302 1302 1303 130.2 260.40000000000003 1302 1973-07-26 2024-10-11 00:21:42.000 1973-07-26 2024-10-11 00:21:42 +1303 1303 1304 130.3 260.6 1303 1973-07-27 2024-10-11 00:21:43.000 1973-07-27 2024-10-11 00:21:43 +1304 1304 1305 130.4 260.8 1304 1973-07-28 2024-10-11 00:21:44.000 1973-07-28 2024-10-11 00:21:44 +1306 1306 1307 130.6 261.2 1306 1973-07-30 2024-10-11 00:21:46.000 1973-07-30 2024-10-11 00:21:46 +1307 1307 1308 130.7 261.40000000000003 1307 1973-07-31 2024-10-11 00:21:47.000 1973-07-31 2024-10-11 00:21:47 +1308 1308 1309 130.8 261.6 1308 1973-08-01 2024-10-11 00:21:48.000 1973-08-01 2024-10-11 00:21:48 +1309 1309 1310 130.9 261.8 1309 1973-08-02 2024-10-11 00:21:49.000 1973-08-02 2024-10-11 00:21:49 +1311 1311 1312 131.1 262.2 1311 1973-08-04 2024-10-11 00:21:51.000 1973-08-04 2024-10-11 00:21:51 +1312 1312 1313 131.2 262.40000000000003 1312 1973-08-05 2024-10-11 00:21:52.000 1973-08-05 2024-10-11 00:21:52 +1313 1313 1314 131.3 262.6 1313 1973-08-06 2024-10-11 00:21:53.000 1973-08-06 2024-10-11 00:21:53 +1314 1314 1315 131.4 262.8 1314 1973-08-07 2024-10-11 00:21:54.000 1973-08-07 2024-10-11 00:21:54 +1316 1316 1317 131.6 263.2 1316 1973-08-09 2024-10-11 00:21:56.000 1973-08-09 2024-10-11 00:21:56 +1317 1317 1318 131.7 263.40000000000003 1317 1973-08-10 2024-10-11 00:21:57.000 1973-08-10 2024-10-11 00:21:57 +1318 1318 1319 131.8 263.6 1318 1973-08-11 2024-10-11 00:21:58.000 1973-08-11 2024-10-11 00:21:58 +1319 1319 1320 131.9 263.8 1319 1973-08-12 2024-10-11 00:21:59.000 1973-08-12 2024-10-11 00:21:59 +1321 1321 1322 132.1 264.2 1321 1973-08-14 2024-10-11 00:22:01.000 1973-08-14 2024-10-11 00:22:01 +1322 1322 1323 132.2 264.40000000000003 1322 1973-08-15 2024-10-11 00:22:02.000 1973-08-15 2024-10-11 00:22:02 +1323 1323 1324 132.3 264.6 1323 1973-08-16 2024-10-11 00:22:03.000 1973-08-16 2024-10-11 00:22:03 +1324 1324 1325 132.4 264.8 1324 1973-08-17 2024-10-11 00:22:04.000 1973-08-17 2024-10-11 00:22:04 +1326 1326 1327 132.6 265.2 1326 1973-08-19 2024-10-11 00:22:06.000 1973-08-19 2024-10-11 00:22:06 +1327 1327 1328 132.7 265.40000000000003 1327 1973-08-20 2024-10-11 00:22:07.000 1973-08-20 2024-10-11 00:22:07 +1328 1328 1329 132.8 265.6 1328 1973-08-21 2024-10-11 00:22:08.000 1973-08-21 2024-10-11 00:22:08 +1329 1329 1330 132.9 265.8 1329 1973-08-22 2024-10-11 00:22:09.000 1973-08-22 2024-10-11 00:22:09 +1331 1331 1332 133.1 266.2 1331 1973-08-24 2024-10-11 00:22:11.000 1973-08-24 2024-10-11 00:22:11 +1332 1332 1333 133.2 266.40000000000003 1332 1973-08-25 2024-10-11 00:22:12.000 1973-08-25 2024-10-11 00:22:12 +1333 1333 1334 133.3 266.6 1333 1973-08-26 2024-10-11 00:22:13.000 1973-08-26 2024-10-11 00:22:13 +1334 1334 1335 133.4 266.8 1334 1973-08-27 2024-10-11 00:22:14.000 1973-08-27 2024-10-11 00:22:14 +1336 1336 1337 133.6 267.2 1336 1973-08-29 2024-10-11 00:22:16.000 1973-08-29 2024-10-11 00:22:16 +1337 1337 1338 133.7 267.40000000000003 1337 1973-08-30 2024-10-11 00:22:17.000 1973-08-30 2024-10-11 00:22:17 +1338 1338 1339 133.8 267.6 1338 1973-08-31 2024-10-11 00:22:18.000 1973-08-31 2024-10-11 00:22:18 +1339 1339 1340 133.9 267.8 1339 1973-09-01 2024-10-11 00:22:19.000 1973-09-01 2024-10-11 00:22:19 +1341 1341 1342 134.1 268.2 1341 1973-09-03 2024-10-11 00:22:21.000 1973-09-03 2024-10-11 00:22:21 +1342 1342 1343 134.2 268.40000000000003 1342 1973-09-04 2024-10-11 00:22:22.000 1973-09-04 2024-10-11 00:22:22 +1343 1343 1344 134.3 268.6 1343 1973-09-05 2024-10-11 00:22:23.000 1973-09-05 2024-10-11 00:22:23 +1344 1344 1345 134.4 268.8 1344 1973-09-06 2024-10-11 00:22:24.000 1973-09-06 2024-10-11 00:22:24 +1346 1346 1347 134.6 269.2 1346 1973-09-08 2024-10-11 00:22:26.000 1973-09-08 2024-10-11 00:22:26 +1347 1347 1348 134.7 269.40000000000003 1347 1973-09-09 2024-10-11 00:22:27.000 1973-09-09 2024-10-11 00:22:27 +1348 1348 1349 134.8 269.6 1348 1973-09-10 2024-10-11 00:22:28.000 1973-09-10 2024-10-11 00:22:28 +1349 1349 1350 134.9 269.8 1349 1973-09-11 2024-10-11 00:22:29.000 1973-09-11 2024-10-11 00:22:29 +1351 1351 1352 135.1 270.2 1351 1973-09-13 2024-10-11 00:22:31.000 1973-09-13 2024-10-11 00:22:31 +1352 1352 1353 135.2 270.40000000000003 1352 1973-09-14 2024-10-11 00:22:32.000 1973-09-14 2024-10-11 00:22:32 +1353 1353 1354 135.3 270.6 1353 1973-09-15 2024-10-11 00:22:33.000 1973-09-15 2024-10-11 00:22:33 +1354 1354 1355 135.4 270.8 1354 1973-09-16 2024-10-11 00:22:34.000 1973-09-16 2024-10-11 00:22:34 +1356 1356 1357 135.6 271.2 1356 1973-09-18 2024-10-11 00:22:36.000 1973-09-18 2024-10-11 00:22:36 +1357 1357 1358 135.7 271.40000000000003 1357 1973-09-19 2024-10-11 00:22:37.000 1973-09-19 2024-10-11 00:22:37 +1358 1358 1359 135.8 271.6 1358 1973-09-20 2024-10-11 00:22:38.000 1973-09-20 2024-10-11 00:22:38 +1359 1359 1360 135.9 271.8 1359 1973-09-21 2024-10-11 00:22:39.000 1973-09-21 2024-10-11 00:22:39 +1361 1361 1362 136.1 272.2 1361 1973-09-23 2024-10-11 00:22:41.000 1973-09-23 2024-10-11 00:22:41 +1362 1362 1363 136.2 272.40000000000003 1362 1973-09-24 2024-10-11 00:22:42.000 1973-09-24 2024-10-11 00:22:42 +1363 1363 1364 136.3 272.6 1363 1973-09-25 2024-10-11 00:22:43.000 1973-09-25 2024-10-11 00:22:43 +1364 1364 1365 136.4 272.8 1364 1973-09-26 2024-10-11 00:22:44.000 1973-09-26 2024-10-11 00:22:44 +1366 1366 1367 136.6 273.2 1366 1973-09-28 2024-10-11 00:22:46.000 1973-09-28 2024-10-11 00:22:46 +1367 1367 1368 136.7 273.40000000000003 1367 1973-09-29 2024-10-11 00:22:47.000 1973-09-29 2024-10-11 00:22:47 +1368 1368 1369 136.8 273.6 1368 1973-09-30 2024-10-11 00:22:48.000 1973-09-30 2024-10-11 00:22:48 +1369 1369 1370 136.9 273.8 1369 1973-10-01 2024-10-11 00:22:49.000 1973-10-01 2024-10-11 00:22:49 +1371 1371 1372 137.1 274.2 1371 1973-10-03 2024-10-11 00:22:51.000 1973-10-03 2024-10-11 00:22:51 +1372 1372 1373 137.2 274.40000000000003 1372 1973-10-04 2024-10-11 00:22:52.000 1973-10-04 2024-10-11 00:22:52 +1373 1373 1374 137.3 274.6 1373 1973-10-05 2024-10-11 00:22:53.000 1973-10-05 2024-10-11 00:22:53 +1374 1374 1375 137.4 274.8 1374 1973-10-06 2024-10-11 00:22:54.000 1973-10-06 2024-10-11 00:22:54 +1376 1376 1377 137.6 275.2 1376 1973-10-08 2024-10-11 00:22:56.000 1973-10-08 2024-10-11 00:22:56 +1377 1377 1378 137.7 275.40000000000003 1377 1973-10-09 2024-10-11 00:22:57.000 1973-10-09 2024-10-11 00:22:57 +1378 1378 1379 137.8 275.6 1378 1973-10-10 2024-10-11 00:22:58.000 1973-10-10 2024-10-11 00:22:58 +1379 1379 1380 137.9 275.8 1379 1973-10-11 2024-10-11 00:22:59.000 1973-10-11 2024-10-11 00:22:59 +1381 1381 1382 138.1 276.2 1381 1973-10-13 2024-10-11 00:23:01.000 1973-10-13 2024-10-11 00:23:01 +1382 1382 1383 138.2 276.40000000000003 1382 1973-10-14 2024-10-11 00:23:02.000 1973-10-14 2024-10-11 00:23:02 +1383 1383 1384 138.3 276.6 1383 1973-10-15 2024-10-11 00:23:03.000 1973-10-15 2024-10-11 00:23:03 +1384 1384 1385 138.4 276.8 1384 1973-10-16 2024-10-11 00:23:04.000 1973-10-16 2024-10-11 00:23:04 +1386 1386 1387 138.6 277.2 1386 1973-10-18 2024-10-11 00:23:06.000 1973-10-18 2024-10-11 00:23:06 +1387 1387 1388 138.7 277.40000000000003 1387 1973-10-19 2024-10-11 00:23:07.000 1973-10-19 2024-10-11 00:23:07 +1388 1388 1389 138.8 277.6 1388 1973-10-20 2024-10-11 00:23:08.000 1973-10-20 2024-10-11 00:23:08 +1389 1389 1390 138.9 277.8 1389 1973-10-21 2024-10-11 00:23:09.000 1973-10-21 2024-10-11 00:23:09 +1391 1391 1392 139.1 278.2 1391 1973-10-23 2024-10-11 00:23:11.000 1973-10-23 2024-10-11 00:23:11 +1392 1392 1393 139.2 278.40000000000003 1392 1973-10-24 2024-10-11 00:23:12.000 1973-10-24 2024-10-11 00:23:12 +1393 1393 1394 139.3 278.6 1393 1973-10-25 2024-10-11 00:23:13.000 1973-10-25 2024-10-11 00:23:13 +1394 1394 1395 139.4 278.8 1394 1973-10-26 2024-10-11 00:23:14.000 1973-10-26 2024-10-11 00:23:14 +1396 1396 1397 139.6 279.2 1396 1973-10-28 2024-10-11 00:23:16.000 1973-10-28 2024-10-11 00:23:16 +1397 1397 1398 139.7 279.40000000000003 1397 1973-10-29 2024-10-11 00:23:17.000 1973-10-29 2024-10-11 00:23:17 +1398 1398 1399 139.8 279.6 1398 1973-10-30 2024-10-11 00:23:18.000 1973-10-30 2024-10-11 00:23:18 +1399 1399 1400 139.9 279.8 1399 1973-10-31 2024-10-11 00:23:19.000 1973-10-31 2024-10-11 00:23:19 +1401 1401 1402 140.1 280.2 1401 1973-11-02 2024-10-11 00:23:21.000 1973-11-02 2024-10-11 00:23:21 +1402 1402 1403 140.2 280.40000000000003 1402 1973-11-03 2024-10-11 00:23:22.000 1973-11-03 2024-10-11 00:23:22 +1403 1403 1404 140.3 280.6 1403 1973-11-04 2024-10-11 00:23:23.000 1973-11-04 2024-10-11 00:23:23 +1404 1404 1405 140.4 280.8 1404 1973-11-05 2024-10-11 00:23:24.000 1973-11-05 2024-10-11 00:23:24 +1406 1406 1407 140.6 281.2 1406 1973-11-07 2024-10-11 00:23:26.000 1973-11-07 2024-10-11 00:23:26 +1407 1407 1408 140.7 281.40000000000003 1407 1973-11-08 2024-10-11 00:23:27.000 1973-11-08 2024-10-11 00:23:27 +1408 1408 1409 140.8 281.6 1408 1973-11-09 2024-10-11 00:23:28.000 1973-11-09 2024-10-11 00:23:28 +1409 1409 1410 140.9 281.8 1409 1973-11-10 2024-10-11 00:23:29.000 1973-11-10 2024-10-11 00:23:29 +1411 1411 1412 141.1 282.2 1411 1973-11-12 2024-10-11 00:23:31.000 1973-11-12 2024-10-11 00:23:31 +1412 1412 1413 141.2 282.40000000000003 1412 1973-11-13 2024-10-11 00:23:32.000 1973-11-13 2024-10-11 00:23:32 +1413 1413 1414 141.3 282.6 1413 1973-11-14 2024-10-11 00:23:33.000 1973-11-14 2024-10-11 00:23:33 +1414 1414 1415 141.4 282.8 1414 1973-11-15 2024-10-11 00:23:34.000 1973-11-15 2024-10-11 00:23:34 +1416 1416 1417 141.6 283.2 1416 1973-11-17 2024-10-11 00:23:36.000 1973-11-17 2024-10-11 00:23:36 +1417 1417 1418 141.7 283.40000000000003 1417 1973-11-18 2024-10-11 00:23:37.000 1973-11-18 2024-10-11 00:23:37 +1418 1418 1419 141.8 283.6 1418 1973-11-19 2024-10-11 00:23:38.000 1973-11-19 2024-10-11 00:23:38 +1419 1419 1420 141.9 283.8 1419 1973-11-20 2024-10-11 00:23:39.000 1973-11-20 2024-10-11 00:23:39 +1421 1421 1422 142.1 284.2 1421 1973-11-22 2024-10-11 00:23:41.000 1973-11-22 2024-10-11 00:23:41 +1422 1422 1423 142.2 284.40000000000003 1422 1973-11-23 2024-10-11 00:23:42.000 1973-11-23 2024-10-11 00:23:42 +1423 1423 1424 142.3 284.6 1423 1973-11-24 2024-10-11 00:23:43.000 1973-11-24 2024-10-11 00:23:43 +1424 1424 1425 142.4 284.8 1424 1973-11-25 2024-10-11 00:23:44.000 1973-11-25 2024-10-11 00:23:44 +1426 1426 1427 142.6 285.2 1426 1973-11-27 2024-10-11 00:23:46.000 1973-11-27 2024-10-11 00:23:46 +1427 1427 1428 142.7 285.40000000000003 1427 1973-11-28 2024-10-11 00:23:47.000 1973-11-28 2024-10-11 00:23:47 +1428 1428 1429 142.8 285.6 1428 1973-11-29 2024-10-11 00:23:48.000 1973-11-29 2024-10-11 00:23:48 +1429 1429 1430 142.9 285.8 1429 1973-11-30 2024-10-11 00:23:49.000 1973-11-30 2024-10-11 00:23:49 +1431 1431 1432 143.1 286.2 1431 1973-12-02 2024-10-11 00:23:51.000 1973-12-02 2024-10-11 00:23:51 +1432 1432 1433 143.2 286.40000000000003 1432 1973-12-03 2024-10-11 00:23:52.000 1973-12-03 2024-10-11 00:23:52 +1433 1433 1434 143.3 286.6 1433 1973-12-04 2024-10-11 00:23:53.000 1973-12-04 2024-10-11 00:23:53 +1434 1434 1435 143.4 286.8 1434 1973-12-05 2024-10-11 00:23:54.000 1973-12-05 2024-10-11 00:23:54 +1436 1436 1437 143.6 287.2 1436 1973-12-07 2024-10-11 00:23:56.000 1973-12-07 2024-10-11 00:23:56 +1437 1437 1438 143.7 287.40000000000003 1437 1973-12-08 2024-10-11 00:23:57.000 1973-12-08 2024-10-11 00:23:57 +1438 1438 1439 143.8 287.6 1438 1973-12-09 2024-10-11 00:23:58.000 1973-12-09 2024-10-11 00:23:58 +1439 1439 1440 143.9 287.8 1439 1973-12-10 2024-10-11 00:23:59.000 1973-12-10 2024-10-11 00:23:59 +1441 1441 1442 144.1 288.2 1441 1973-12-12 2024-10-11 00:24:01.000 1973-12-12 2024-10-11 00:24:01 +1442 1442 1443 144.2 288.40000000000003 1442 1973-12-13 2024-10-11 00:24:02.000 1973-12-13 2024-10-11 00:24:02 +1443 1443 1444 144.3 288.6 1443 1973-12-14 2024-10-11 00:24:03.000 1973-12-14 2024-10-11 00:24:03 +1444 1444 1445 144.4 288.8 1444 1973-12-15 2024-10-11 00:24:04.000 1973-12-15 2024-10-11 00:24:04 +1446 1446 1447 144.6 289.2 1446 1973-12-17 2024-10-11 00:24:06.000 1973-12-17 2024-10-11 00:24:06 +1447 1447 1448 144.7 289.40000000000003 1447 1973-12-18 2024-10-11 00:24:07.000 1973-12-18 2024-10-11 00:24:07 +1448 1448 1449 144.8 289.6 1448 1973-12-19 2024-10-11 00:24:08.000 1973-12-19 2024-10-11 00:24:08 +1449 1449 1450 144.9 289.8 1449 1973-12-20 2024-10-11 00:24:09.000 1973-12-20 2024-10-11 00:24:09 +1451 1451 1452 145.1 290.2 1451 1973-12-22 2024-10-11 00:24:11.000 1973-12-22 2024-10-11 00:24:11 +1452 1452 1453 145.2 290.40000000000003 1452 1973-12-23 2024-10-11 00:24:12.000 1973-12-23 2024-10-11 00:24:12 +1453 1453 1454 145.3 290.6 1453 1973-12-24 2024-10-11 00:24:13.000 1973-12-24 2024-10-11 00:24:13 +1454 1454 1455 145.4 290.8 1454 1973-12-25 2024-10-11 00:24:14.000 1973-12-25 2024-10-11 00:24:14 +1456 1456 1457 145.6 291.2 1456 1973-12-27 2024-10-11 00:24:16.000 1973-12-27 2024-10-11 00:24:16 +1457 1457 1458 145.7 291.40000000000003 1457 1973-12-28 2024-10-11 00:24:17.000 1973-12-28 2024-10-11 00:24:17 +1458 1458 1459 145.8 291.6 1458 1973-12-29 2024-10-11 00:24:18.000 1973-12-29 2024-10-11 00:24:18 +1459 1459 1460 145.9 291.8 1459 1973-12-30 2024-10-11 00:24:19.000 1973-12-30 2024-10-11 00:24:19 +1461 1461 1462 146.1 292.2 1461 1974-01-01 2024-10-11 00:24:21.000 1974-01-01 2024-10-11 00:24:21 +1462 1462 1463 146.2 292.40000000000003 1462 1974-01-02 2024-10-11 00:24:22.000 1974-01-02 2024-10-11 00:24:22 +1463 1463 1464 146.3 292.6 1463 1974-01-03 2024-10-11 00:24:23.000 1974-01-03 2024-10-11 00:24:23 +1464 1464 1465 146.4 292.8 1464 1974-01-04 2024-10-11 00:24:24.000 1974-01-04 2024-10-11 00:24:24 +1466 1466 1467 146.6 293.2 1466 1974-01-06 2024-10-11 00:24:26.000 1974-01-06 2024-10-11 00:24:26 +1467 1467 1468 146.7 293.40000000000003 1467 1974-01-07 2024-10-11 00:24:27.000 1974-01-07 2024-10-11 00:24:27 +1468 1468 1469 146.8 293.6 1468 1974-01-08 2024-10-11 00:24:28.000 1974-01-08 2024-10-11 00:24:28 +1469 1469 1470 146.9 293.8 1469 1974-01-09 2024-10-11 00:24:29.000 1974-01-09 2024-10-11 00:24:29 +1471 1471 1472 147.1 294.2 1471 1974-01-11 2024-10-11 00:24:31.000 1974-01-11 2024-10-11 00:24:31 +1472 1472 1473 147.2 294.40000000000003 1472 1974-01-12 2024-10-11 00:24:32.000 1974-01-12 2024-10-11 00:24:32 +1473 1473 1474 147.3 294.6 1473 1974-01-13 2024-10-11 00:24:33.000 1974-01-13 2024-10-11 00:24:33 +1474 1474 1475 147.4 294.8 1474 1974-01-14 2024-10-11 00:24:34.000 1974-01-14 2024-10-11 00:24:34 +1476 1476 1477 147.6 295.2 1476 1974-01-16 2024-10-11 00:24:36.000 1974-01-16 2024-10-11 00:24:36 +1477 1477 1478 147.7 295.40000000000003 1477 1974-01-17 2024-10-11 00:24:37.000 1974-01-17 2024-10-11 00:24:37 +1478 1478 1479 147.8 295.6 1478 1974-01-18 2024-10-11 00:24:38.000 1974-01-18 2024-10-11 00:24:38 +1479 1479 1480 147.9 295.8 1479 1974-01-19 2024-10-11 00:24:39.000 1974-01-19 2024-10-11 00:24:39 +1481 1481 1482 148.1 296.2 1481 1974-01-21 2024-10-11 00:24:41.000 1974-01-21 2024-10-11 00:24:41 +1482 1482 1483 148.2 296.40000000000003 1482 1974-01-22 2024-10-11 00:24:42.000 1974-01-22 2024-10-11 00:24:42 +1483 1483 1484 148.3 296.6 1483 1974-01-23 2024-10-11 00:24:43.000 1974-01-23 2024-10-11 00:24:43 +1484 1484 1485 148.4 296.8 1484 1974-01-24 2024-10-11 00:24:44.000 1974-01-24 2024-10-11 00:24:44 +1486 1486 1487 148.6 297.2 1486 1974-01-26 2024-10-11 00:24:46.000 1974-01-26 2024-10-11 00:24:46 +1487 1487 1488 148.7 297.40000000000003 1487 1974-01-27 2024-10-11 00:24:47.000 1974-01-27 2024-10-11 00:24:47 +1488 1488 1489 148.8 297.6 1488 1974-01-28 2024-10-11 00:24:48.000 1974-01-28 2024-10-11 00:24:48 +1489 1489 1490 148.9 297.8 1489 1974-01-29 2024-10-11 00:24:49.000 1974-01-29 2024-10-11 00:24:49 +1491 1491 1492 149.1 298.2 1491 1974-01-31 2024-10-11 00:24:51.000 1974-01-31 2024-10-11 00:24:51 +1492 1492 1493 149.2 298.40000000000003 1492 1974-02-01 2024-10-11 00:24:52.000 1974-02-01 2024-10-11 00:24:52 +1493 1493 1494 149.3 298.6 1493 1974-02-02 2024-10-11 00:24:53.000 1974-02-02 2024-10-11 00:24:53 +1494 1494 1495 149.4 298.8 1494 1974-02-03 2024-10-11 00:24:54.000 1974-02-03 2024-10-11 00:24:54 +1496 1496 1497 149.6 299.2 1496 1974-02-05 2024-10-11 00:24:56.000 1974-02-05 2024-10-11 00:24:56 +1497 1497 1498 149.7 299.40000000000003 1497 1974-02-06 2024-10-11 00:24:57.000 1974-02-06 2024-10-11 00:24:57 +1498 1498 1499 149.8 299.6 1498 1974-02-07 2024-10-11 00:24:58.000 1974-02-07 2024-10-11 00:24:58 +1499 1499 1500 149.9 299.8 1499 1974-02-08 2024-10-11 00:24:59.000 1974-02-08 2024-10-11 00:24:59 +1501 1501 1502 150.1 300.2 1501 1974-02-10 2024-10-11 00:25:01.000 1974-02-10 2024-10-11 00:25:01 +1502 1502 1503 150.2 300.40000000000003 1502 1974-02-11 2024-10-11 00:25:02.000 1974-02-11 2024-10-11 00:25:02 +1503 1503 1504 150.3 300.6 1503 1974-02-12 2024-10-11 00:25:03.000 1974-02-12 2024-10-11 00:25:03 +1504 1504 1505 150.4 300.8 1504 1974-02-13 2024-10-11 00:25:04.000 1974-02-13 2024-10-11 00:25:04 +1506 1506 1507 150.6 301.2 1506 1974-02-15 2024-10-11 00:25:06.000 1974-02-15 2024-10-11 00:25:06 +1507 1507 1508 150.7 301.40000000000003 1507 1974-02-16 2024-10-11 00:25:07.000 1974-02-16 2024-10-11 00:25:07 +1508 1508 1509 150.8 301.6 1508 1974-02-17 2024-10-11 00:25:08.000 1974-02-17 2024-10-11 00:25:08 +1509 1509 1510 150.9 301.8 1509 1974-02-18 2024-10-11 00:25:09.000 1974-02-18 2024-10-11 00:25:09 +1511 1511 1512 151.1 302.2 1511 1974-02-20 2024-10-11 00:25:11.000 1974-02-20 2024-10-11 00:25:11 +1512 1512 1513 151.2 302.40000000000003 1512 1974-02-21 2024-10-11 00:25:12.000 1974-02-21 2024-10-11 00:25:12 +1513 1513 1514 151.3 302.6 1513 1974-02-22 2024-10-11 00:25:13.000 1974-02-22 2024-10-11 00:25:13 +1514 1514 1515 151.4 302.8 1514 1974-02-23 2024-10-11 00:25:14.000 1974-02-23 2024-10-11 00:25:14 +1516 1516 1517 151.6 303.2 1516 1974-02-25 2024-10-11 00:25:16.000 1974-02-25 2024-10-11 00:25:16 +1517 1517 1518 151.7 303.40000000000003 1517 1974-02-26 2024-10-11 00:25:17.000 1974-02-26 2024-10-11 00:25:17 +1518 1518 1519 151.8 303.6 1518 1974-02-27 2024-10-11 00:25:18.000 1974-02-27 2024-10-11 00:25:18 +1519 1519 1520 151.9 303.8 1519 1974-02-28 2024-10-11 00:25:19.000 1974-02-28 2024-10-11 00:25:19 +1521 1521 1522 152.1 304.2 1521 1974-03-02 2024-10-11 00:25:21.000 1974-03-02 2024-10-11 00:25:21 +1522 1522 1523 152.2 304.40000000000003 1522 1974-03-03 2024-10-11 00:25:22.000 1974-03-03 2024-10-11 00:25:22 +1523 1523 1524 152.3 304.6 1523 1974-03-04 2024-10-11 00:25:23.000 1974-03-04 2024-10-11 00:25:23 +1524 1524 1525 152.4 304.8 1524 1974-03-05 2024-10-11 00:25:24.000 1974-03-05 2024-10-11 00:25:24 +1526 1526 1527 152.6 305.2 1526 1974-03-07 2024-10-11 00:25:26.000 1974-03-07 2024-10-11 00:25:26 +1527 1527 1528 152.7 305.40000000000003 1527 1974-03-08 2024-10-11 00:25:27.000 1974-03-08 2024-10-11 00:25:27 +1528 1528 1529 152.8 305.6 1528 1974-03-09 2024-10-11 00:25:28.000 1974-03-09 2024-10-11 00:25:28 +1529 1529 1530 152.9 305.8 1529 1974-03-10 2024-10-11 00:25:29.000 1974-03-10 2024-10-11 00:25:29 +1531 1531 1532 153.1 306.2 1531 1974-03-12 2024-10-11 00:25:31.000 1974-03-12 2024-10-11 00:25:31 +1532 1532 1533 153.2 306.40000000000003 1532 1974-03-13 2024-10-11 00:25:32.000 1974-03-13 2024-10-11 00:25:32 +1533 1533 1534 153.3 306.6 1533 1974-03-14 2024-10-11 00:25:33.000 1974-03-14 2024-10-11 00:25:33 +1534 1534 1535 153.4 306.8 1534 1974-03-15 2024-10-11 00:25:34.000 1974-03-15 2024-10-11 00:25:34 +1536 1536 1537 153.6 307.20000000000005 1536 1974-03-17 2024-10-11 00:25:36.000 1974-03-17 2024-10-11 00:25:36 +1537 1537 1538 153.7 307.40000000000003 1537 1974-03-18 2024-10-11 00:25:37.000 1974-03-18 2024-10-11 00:25:37 +1538 1538 1539 153.8 307.6 1538 1974-03-19 2024-10-11 00:25:38.000 1974-03-19 2024-10-11 00:25:38 +1539 1539 1540 153.9 307.8 1539 1974-03-20 2024-10-11 00:25:39.000 1974-03-20 2024-10-11 00:25:39 +1541 1541 1542 154.1 308.20000000000005 1541 1974-03-22 2024-10-11 00:25:41.000 1974-03-22 2024-10-11 00:25:41 +1542 1542 1543 154.2 308.40000000000003 1542 1974-03-23 2024-10-11 00:25:42.000 1974-03-23 2024-10-11 00:25:42 +1543 1543 1544 154.3 308.6 1543 1974-03-24 2024-10-11 00:25:43.000 1974-03-24 2024-10-11 00:25:43 +1544 1544 1545 154.4 308.8 1544 1974-03-25 2024-10-11 00:25:44.000 1974-03-25 2024-10-11 00:25:44 +1546 1546 1547 154.6 309.20000000000005 1546 1974-03-27 2024-10-11 00:25:46.000 1974-03-27 2024-10-11 00:25:46 +1547 1547 1548 154.7 309.40000000000003 1547 1974-03-28 2024-10-11 00:25:47.000 1974-03-28 2024-10-11 00:25:47 +1548 1548 1549 154.8 309.6 1548 1974-03-29 2024-10-11 00:25:48.000 1974-03-29 2024-10-11 00:25:48 +1549 1549 1550 154.9 309.8 1549 1974-03-30 2024-10-11 00:25:49.000 1974-03-30 2024-10-11 00:25:49 +1551 1551 1552 155.1 310.20000000000005 1551 1974-04-01 2024-10-11 00:25:51.000 1974-04-01 2024-10-11 00:25:51 +1552 1552 1553 155.2 310.40000000000003 1552 1974-04-02 2024-10-11 00:25:52.000 1974-04-02 2024-10-11 00:25:52 +1553 1553 1554 155.3 310.6 1553 1974-04-03 2024-10-11 00:25:53.000 1974-04-03 2024-10-11 00:25:53 +1554 1554 1555 155.4 310.8 1554 1974-04-04 2024-10-11 00:25:54.000 1974-04-04 2024-10-11 00:25:54 +1556 1556 1557 155.6 311.20000000000005 1556 1974-04-06 2024-10-11 00:25:56.000 1974-04-06 2024-10-11 00:25:56 +1557 1557 1558 155.7 311.40000000000003 1557 1974-04-07 2024-10-11 00:25:57.000 1974-04-07 2024-10-11 00:25:57 +1558 1558 1559 155.8 311.6 1558 1974-04-08 2024-10-11 00:25:58.000 1974-04-08 2024-10-11 00:25:58 +1559 1559 1560 155.9 311.8 1559 1974-04-09 2024-10-11 00:25:59.000 1974-04-09 2024-10-11 00:25:59 +1561 1561 1562 156.1 312.20000000000005 1561 1974-04-11 2024-10-11 00:26:01.000 1974-04-11 2024-10-11 00:26:01 +1562 1562 1563 156.2 312.40000000000003 1562 1974-04-12 2024-10-11 00:26:02.000 1974-04-12 2024-10-11 00:26:02 +1563 1563 1564 156.3 312.6 1563 1974-04-13 2024-10-11 00:26:03.000 1974-04-13 2024-10-11 00:26:03 +1564 1564 1565 156.4 312.8 1564 1974-04-14 2024-10-11 00:26:04.000 1974-04-14 2024-10-11 00:26:04 +1566 1566 1567 156.6 313.20000000000005 1566 1974-04-16 2024-10-11 00:26:06.000 1974-04-16 2024-10-11 00:26:06 +1567 1567 1568 156.7 313.40000000000003 1567 1974-04-17 2024-10-11 00:26:07.000 1974-04-17 2024-10-11 00:26:07 +1568 1568 1569 156.8 313.6 1568 1974-04-18 2024-10-11 00:26:08.000 1974-04-18 2024-10-11 00:26:08 +1569 1569 1570 156.9 313.8 1569 1974-04-19 2024-10-11 00:26:09.000 1974-04-19 2024-10-11 00:26:09 +1571 1571 1572 157.1 314.20000000000005 1571 1974-04-21 2024-10-11 00:26:11.000 1974-04-21 2024-10-11 00:26:11 +1572 1572 1573 157.2 314.40000000000003 1572 1974-04-22 2024-10-11 00:26:12.000 1974-04-22 2024-10-11 00:26:12 +1573 1573 1574 157.3 314.6 1573 1974-04-23 2024-10-11 00:26:13.000 1974-04-23 2024-10-11 00:26:13 +1574 1574 1575 157.4 314.8 1574 1974-04-24 2024-10-11 00:26:14.000 1974-04-24 2024-10-11 00:26:14 +1576 1576 1577 157.6 315.20000000000005 1576 1974-04-26 2024-10-11 00:26:16.000 1974-04-26 2024-10-11 00:26:16 +1577 1577 1578 157.7 315.40000000000003 1577 1974-04-27 2024-10-11 00:26:17.000 1974-04-27 2024-10-11 00:26:17 +1578 1578 1579 157.8 315.6 1578 1974-04-28 2024-10-11 00:26:18.000 1974-04-28 2024-10-11 00:26:18 +1579 1579 1580 157.9 315.8 1579 1974-04-29 2024-10-11 00:26:19.000 1974-04-29 2024-10-11 00:26:19 +1581 1581 1582 158.1 316.20000000000005 1581 1974-05-01 2024-10-11 00:26:21.000 1974-05-01 2024-10-11 00:26:21 +1582 1582 1583 158.2 316.40000000000003 1582 1974-05-02 2024-10-11 00:26:22.000 1974-05-02 2024-10-11 00:26:22 +1583 1583 1584 158.3 316.6 1583 1974-05-03 2024-10-11 00:26:23.000 1974-05-03 2024-10-11 00:26:23 +1584 1584 1585 158.4 316.8 1584 1974-05-04 2024-10-11 00:26:24.000 1974-05-04 2024-10-11 00:26:24 +1586 1586 1587 158.6 317.20000000000005 1586 1974-05-06 2024-10-11 00:26:26.000 1974-05-06 2024-10-11 00:26:26 +1587 1587 1588 158.7 317.40000000000003 1587 1974-05-07 2024-10-11 00:26:27.000 1974-05-07 2024-10-11 00:26:27 +1588 1588 1589 158.8 317.6 1588 1974-05-08 2024-10-11 00:26:28.000 1974-05-08 2024-10-11 00:26:28 +1589 1589 1590 158.9 317.8 1589 1974-05-09 2024-10-11 00:26:29.000 1974-05-09 2024-10-11 00:26:29 +1591 1591 1592 159.1 318.20000000000005 1591 1974-05-11 2024-10-11 00:26:31.000 1974-05-11 2024-10-11 00:26:31 +1592 1592 1593 159.2 318.40000000000003 1592 1974-05-12 2024-10-11 00:26:32.000 1974-05-12 2024-10-11 00:26:32 +1593 1593 1594 159.3 318.6 1593 1974-05-13 2024-10-11 00:26:33.000 1974-05-13 2024-10-11 00:26:33 +1594 1594 1595 159.4 318.8 1594 1974-05-14 2024-10-11 00:26:34.000 1974-05-14 2024-10-11 00:26:34 +1596 1596 1597 159.6 319.20000000000005 1596 1974-05-16 2024-10-11 00:26:36.000 1974-05-16 2024-10-11 00:26:36 +1597 1597 1598 159.7 319.40000000000003 1597 1974-05-17 2024-10-11 00:26:37.000 1974-05-17 2024-10-11 00:26:37 +1598 1598 1599 159.8 319.6 1598 1974-05-18 2024-10-11 00:26:38.000 1974-05-18 2024-10-11 00:26:38 +1599 1599 1600 159.9 319.8 1599 1974-05-19 2024-10-11 00:26:39.000 1974-05-19 2024-10-11 00:26:39 +1601 1601 1602 160.1 320.20000000000005 1601 1974-05-21 2024-10-11 00:26:41.000 1974-05-21 2024-10-11 00:26:41 +1602 1602 1603 160.2 320.40000000000003 1602 1974-05-22 2024-10-11 00:26:42.000 1974-05-22 2024-10-11 00:26:42 +1603 1603 1604 160.3 320.6 1603 1974-05-23 2024-10-11 00:26:43.000 1974-05-23 2024-10-11 00:26:43 +1604 1604 1605 160.4 320.8 1604 1974-05-24 2024-10-11 00:26:44.000 1974-05-24 2024-10-11 00:26:44 +1606 1606 1607 160.6 321.20000000000005 1606 1974-05-26 2024-10-11 00:26:46.000 1974-05-26 2024-10-11 00:26:46 +1607 1607 1608 160.7 321.40000000000003 1607 1974-05-27 2024-10-11 00:26:47.000 1974-05-27 2024-10-11 00:26:47 +1608 1608 1609 160.8 321.6 1608 1974-05-28 2024-10-11 00:26:48.000 1974-05-28 2024-10-11 00:26:48 +1609 1609 1610 160.9 321.8 1609 1974-05-29 2024-10-11 00:26:49.000 1974-05-29 2024-10-11 00:26:49 +1611 1611 1612 161.1 322.20000000000005 1611 1974-05-31 2024-10-11 00:26:51.000 1974-05-31 2024-10-11 00:26:51 +1612 1612 1613 161.2 322.40000000000003 1612 1974-06-01 2024-10-11 00:26:52.000 1974-06-01 2024-10-11 00:26:52 +1613 1613 1614 161.3 322.6 1613 1974-06-02 2024-10-11 00:26:53.000 1974-06-02 2024-10-11 00:26:53 +1614 1614 1615 161.4 322.8 1614 1974-06-03 2024-10-11 00:26:54.000 1974-06-03 2024-10-11 00:26:54 +1616 1616 1617 161.6 323.20000000000005 1616 1974-06-05 2024-10-11 00:26:56.000 1974-06-05 2024-10-11 00:26:56 +1617 1617 1618 161.7 323.40000000000003 1617 1974-06-06 2024-10-11 00:26:57.000 1974-06-06 2024-10-11 00:26:57 +1618 1618 1619 161.8 323.6 1618 1974-06-07 2024-10-11 00:26:58.000 1974-06-07 2024-10-11 00:26:58 +1619 1619 1620 161.9 323.8 1619 1974-06-08 2024-10-11 00:26:59.000 1974-06-08 2024-10-11 00:26:59 +1621 1621 1622 162.1 324.20000000000005 1621 1974-06-10 2024-10-11 00:27:01.000 1974-06-10 2024-10-11 00:27:01 +1622 1622 1623 162.2 324.40000000000003 1622 1974-06-11 2024-10-11 00:27:02.000 1974-06-11 2024-10-11 00:27:02 +1623 1623 1624 162.3 324.6 1623 1974-06-12 2024-10-11 00:27:03.000 1974-06-12 2024-10-11 00:27:03 +1624 1624 1625 162.4 324.8 1624 1974-06-13 2024-10-11 00:27:04.000 1974-06-13 2024-10-11 00:27:04 +1626 1626 1627 162.6 325.20000000000005 1626 1974-06-15 2024-10-11 00:27:06.000 1974-06-15 2024-10-11 00:27:06 +1627 1627 1628 162.7 325.40000000000003 1627 1974-06-16 2024-10-11 00:27:07.000 1974-06-16 2024-10-11 00:27:07 +1628 1628 1629 162.8 325.6 1628 1974-06-17 2024-10-11 00:27:08.000 1974-06-17 2024-10-11 00:27:08 +1629 1629 1630 162.9 325.8 1629 1974-06-18 2024-10-11 00:27:09.000 1974-06-18 2024-10-11 00:27:09 +1631 1631 1632 163.1 326.20000000000005 1631 1974-06-20 2024-10-11 00:27:11.000 1974-06-20 2024-10-11 00:27:11 +1632 1632 1633 163.2 326.40000000000003 1632 1974-06-21 2024-10-11 00:27:12.000 1974-06-21 2024-10-11 00:27:12 +1633 1633 1634 163.3 326.6 1633 1974-06-22 2024-10-11 00:27:13.000 1974-06-22 2024-10-11 00:27:13 +1634 1634 1635 163.4 326.8 1634 1974-06-23 2024-10-11 00:27:14.000 1974-06-23 2024-10-11 00:27:14 +1636 1636 1637 163.6 327.20000000000005 1636 1974-06-25 2024-10-11 00:27:16.000 1974-06-25 2024-10-11 00:27:16 +1637 1637 1638 163.7 327.40000000000003 1637 1974-06-26 2024-10-11 00:27:17.000 1974-06-26 2024-10-11 00:27:17 +1638 1638 1639 163.8 327.6 1638 1974-06-27 2024-10-11 00:27:18.000 1974-06-27 2024-10-11 00:27:18 +1639 1639 1640 163.9 327.8 1639 1974-06-28 2024-10-11 00:27:19.000 1974-06-28 2024-10-11 00:27:19 +1641 1641 1642 164.1 328.20000000000005 1641 1974-06-30 2024-10-11 00:27:21.000 1974-06-30 2024-10-11 00:27:21 +1642 1642 1643 164.2 328.40000000000003 1642 1974-07-01 2024-10-11 00:27:22.000 1974-07-01 2024-10-11 00:27:22 +1643 1643 1644 164.3 328.6 1643 1974-07-02 2024-10-11 00:27:23.000 1974-07-02 2024-10-11 00:27:23 +1644 1644 1645 164.4 328.8 1644 1974-07-03 2024-10-11 00:27:24.000 1974-07-03 2024-10-11 00:27:24 +1646 1646 1647 164.6 329.20000000000005 1646 1974-07-05 2024-10-11 00:27:26.000 1974-07-05 2024-10-11 00:27:26 +1647 1647 1648 164.7 329.40000000000003 1647 1974-07-06 2024-10-11 00:27:27.000 1974-07-06 2024-10-11 00:27:27 +1648 1648 1649 164.8 329.6 1648 1974-07-07 2024-10-11 00:27:28.000 1974-07-07 2024-10-11 00:27:28 +1649 1649 1650 164.9 329.8 1649 1974-07-08 2024-10-11 00:27:29.000 1974-07-08 2024-10-11 00:27:29 +1651 1651 1652 165.1 330.20000000000005 1651 1974-07-10 2024-10-11 00:27:31.000 1974-07-10 2024-10-11 00:27:31 +1652 1652 1653 165.2 330.40000000000003 1652 1974-07-11 2024-10-11 00:27:32.000 1974-07-11 2024-10-11 00:27:32 +1653 1653 1654 165.3 330.6 1653 1974-07-12 2024-10-11 00:27:33.000 1974-07-12 2024-10-11 00:27:33 +1654 1654 1655 165.4 330.8 1654 1974-07-13 2024-10-11 00:27:34.000 1974-07-13 2024-10-11 00:27:34 +1656 1656 1657 165.6 331.20000000000005 1656 1974-07-15 2024-10-11 00:27:36.000 1974-07-15 2024-10-11 00:27:36 +1657 1657 1658 165.7 331.40000000000003 1657 1974-07-16 2024-10-11 00:27:37.000 1974-07-16 2024-10-11 00:27:37 +1658 1658 1659 165.8 331.6 1658 1974-07-17 2024-10-11 00:27:38.000 1974-07-17 2024-10-11 00:27:38 +1659 1659 1660 165.9 331.8 1659 1974-07-18 2024-10-11 00:27:39.000 1974-07-18 2024-10-11 00:27:39 +1661 1661 1662 166.1 332.20000000000005 1661 1974-07-20 2024-10-11 00:27:41.000 1974-07-20 2024-10-11 00:27:41 +1662 1662 1663 166.2 332.40000000000003 1662 1974-07-21 2024-10-11 00:27:42.000 1974-07-21 2024-10-11 00:27:42 +1663 1663 1664 166.3 332.6 1663 1974-07-22 2024-10-11 00:27:43.000 1974-07-22 2024-10-11 00:27:43 +1664 1664 1665 166.4 332.8 1664 1974-07-23 2024-10-11 00:27:44.000 1974-07-23 2024-10-11 00:27:44 +1666 1666 1667 166.6 333.20000000000005 1666 1974-07-25 2024-10-11 00:27:46.000 1974-07-25 2024-10-11 00:27:46 +1667 1667 1668 166.7 333.40000000000003 1667 1974-07-26 2024-10-11 00:27:47.000 1974-07-26 2024-10-11 00:27:47 +1668 1668 1669 166.8 333.6 1668 1974-07-27 2024-10-11 00:27:48.000 1974-07-27 2024-10-11 00:27:48 +1669 1669 1670 166.9 333.8 1669 1974-07-28 2024-10-11 00:27:49.000 1974-07-28 2024-10-11 00:27:49 +1671 1671 1672 167.1 334.20000000000005 1671 1974-07-30 2024-10-11 00:27:51.000 1974-07-30 2024-10-11 00:27:51 +1672 1672 1673 167.2 334.40000000000003 1672 1974-07-31 2024-10-11 00:27:52.000 1974-07-31 2024-10-11 00:27:52 +1673 1673 1674 167.3 334.6 1673 1974-08-01 2024-10-11 00:27:53.000 1974-08-01 2024-10-11 00:27:53 +1674 1674 1675 167.4 334.8 1674 1974-08-02 2024-10-11 00:27:54.000 1974-08-02 2024-10-11 00:27:54 +1676 1676 1677 167.6 335.20000000000005 1676 1974-08-04 2024-10-11 00:27:56.000 1974-08-04 2024-10-11 00:27:56 +1677 1677 1678 167.7 335.40000000000003 1677 1974-08-05 2024-10-11 00:27:57.000 1974-08-05 2024-10-11 00:27:57 +1678 1678 1679 167.8 335.6 1678 1974-08-06 2024-10-11 00:27:58.000 1974-08-06 2024-10-11 00:27:58 +1679 1679 1680 167.9 335.8 1679 1974-08-07 2024-10-11 00:27:59.000 1974-08-07 2024-10-11 00:27:59 +1681 1681 1682 168.1 336.20000000000005 1681 1974-08-09 2024-10-11 00:28:01.000 1974-08-09 2024-10-11 00:28:01 +1682 1682 1683 168.2 336.40000000000003 1682 1974-08-10 2024-10-11 00:28:02.000 1974-08-10 2024-10-11 00:28:02 +1683 1683 1684 168.3 336.6 1683 1974-08-11 2024-10-11 00:28:03.000 1974-08-11 2024-10-11 00:28:03 +1684 1684 1685 168.4 336.8 1684 1974-08-12 2024-10-11 00:28:04.000 1974-08-12 2024-10-11 00:28:04 +1686 1686 1687 168.6 337.20000000000005 1686 1974-08-14 2024-10-11 00:28:06.000 1974-08-14 2024-10-11 00:28:06 +1687 1687 1688 168.7 337.40000000000003 1687 1974-08-15 2024-10-11 00:28:07.000 1974-08-15 2024-10-11 00:28:07 +1688 1688 1689 168.8 337.6 1688 1974-08-16 2024-10-11 00:28:08.000 1974-08-16 2024-10-11 00:28:08 +1689 1689 1690 168.9 337.8 1689 1974-08-17 2024-10-11 00:28:09.000 1974-08-17 2024-10-11 00:28:09 +1691 1691 1692 169.1 338.20000000000005 1691 1974-08-19 2024-10-11 00:28:11.000 1974-08-19 2024-10-11 00:28:11 +1692 1692 1693 169.2 338.40000000000003 1692 1974-08-20 2024-10-11 00:28:12.000 1974-08-20 2024-10-11 00:28:12 +1693 1693 1694 169.3 338.6 1693 1974-08-21 2024-10-11 00:28:13.000 1974-08-21 2024-10-11 00:28:13 +1694 1694 1695 169.4 338.8 1694 1974-08-22 2024-10-11 00:28:14.000 1974-08-22 2024-10-11 00:28:14 +1696 1696 1697 169.6 339.20000000000005 1696 1974-08-24 2024-10-11 00:28:16.000 1974-08-24 2024-10-11 00:28:16 +1697 1697 1698 169.7 339.40000000000003 1697 1974-08-25 2024-10-11 00:28:17.000 1974-08-25 2024-10-11 00:28:17 +1698 1698 1699 169.8 339.6 1698 1974-08-26 2024-10-11 00:28:18.000 1974-08-26 2024-10-11 00:28:18 +1699 1699 1700 169.9 339.8 1699 1974-08-27 2024-10-11 00:28:19.000 1974-08-27 2024-10-11 00:28:19 +1701 1701 1702 170.1 340.20000000000005 1701 1974-08-29 2024-10-11 00:28:21.000 1974-08-29 2024-10-11 00:28:21 +1702 1702 1703 170.2 340.40000000000003 1702 1974-08-30 2024-10-11 00:28:22.000 1974-08-30 2024-10-11 00:28:22 +1703 1703 1704 170.3 340.6 1703 1974-08-31 2024-10-11 00:28:23.000 1974-08-31 2024-10-11 00:28:23 +1704 1704 1705 170.4 340.8 1704 1974-09-01 2024-10-11 00:28:24.000 1974-09-01 2024-10-11 00:28:24 +1706 1706 1707 170.6 341.20000000000005 1706 1974-09-03 2024-10-11 00:28:26.000 1974-09-03 2024-10-11 00:28:26 +1707 1707 1708 170.7 341.40000000000003 1707 1974-09-04 2024-10-11 00:28:27.000 1974-09-04 2024-10-11 00:28:27 +1708 1708 1709 170.8 341.6 1708 1974-09-05 2024-10-11 00:28:28.000 1974-09-05 2024-10-11 00:28:28 +1709 1709 1710 170.9 341.8 1709 1974-09-06 2024-10-11 00:28:29.000 1974-09-06 2024-10-11 00:28:29 +1711 1711 1712 171.1 342.20000000000005 1711 1974-09-08 2024-10-11 00:28:31.000 1974-09-08 2024-10-11 00:28:31 +1712 1712 1713 171.2 342.40000000000003 1712 1974-09-09 2024-10-11 00:28:32.000 1974-09-09 2024-10-11 00:28:32 +1713 1713 1714 171.3 342.6 1713 1974-09-10 2024-10-11 00:28:33.000 1974-09-10 2024-10-11 00:28:33 +1714 1714 1715 171.4 342.8 1714 1974-09-11 2024-10-11 00:28:34.000 1974-09-11 2024-10-11 00:28:34 +1716 1716 1717 171.6 343.20000000000005 1716 1974-09-13 2024-10-11 00:28:36.000 1974-09-13 2024-10-11 00:28:36 +1717 1717 1718 171.7 343.40000000000003 1717 1974-09-14 2024-10-11 00:28:37.000 1974-09-14 2024-10-11 00:28:37 +1718 1718 1719 171.8 343.6 1718 1974-09-15 2024-10-11 00:28:38.000 1974-09-15 2024-10-11 00:28:38 +1719 1719 1720 171.9 343.8 1719 1974-09-16 2024-10-11 00:28:39.000 1974-09-16 2024-10-11 00:28:39 +1721 1721 1722 172.1 344.20000000000005 1721 1974-09-18 2024-10-11 00:28:41.000 1974-09-18 2024-10-11 00:28:41 +1722 1722 1723 172.2 344.40000000000003 1722 1974-09-19 2024-10-11 00:28:42.000 1974-09-19 2024-10-11 00:28:42 +1723 1723 1724 172.3 344.6 1723 1974-09-20 2024-10-11 00:28:43.000 1974-09-20 2024-10-11 00:28:43 +1724 1724 1725 172.4 344.8 1724 1974-09-21 2024-10-11 00:28:44.000 1974-09-21 2024-10-11 00:28:44 +1726 1726 1727 172.6 345.20000000000005 1726 1974-09-23 2024-10-11 00:28:46.000 1974-09-23 2024-10-11 00:28:46 +1727 1727 1728 172.7 345.40000000000003 1727 1974-09-24 2024-10-11 00:28:47.000 1974-09-24 2024-10-11 00:28:47 +1728 1728 1729 172.8 345.6 1728 1974-09-25 2024-10-11 00:28:48.000 1974-09-25 2024-10-11 00:28:48 +1729 1729 1730 172.9 345.8 1729 1974-09-26 2024-10-11 00:28:49.000 1974-09-26 2024-10-11 00:28:49 +1731 1731 1732 173.1 346.20000000000005 1731 1974-09-28 2024-10-11 00:28:51.000 1974-09-28 2024-10-11 00:28:51 +1732 1732 1733 173.2 346.40000000000003 1732 1974-09-29 2024-10-11 00:28:52.000 1974-09-29 2024-10-11 00:28:52 +1733 1733 1734 173.3 346.6 1733 1974-09-30 2024-10-11 00:28:53.000 1974-09-30 2024-10-11 00:28:53 +1734 1734 1735 173.4 346.8 1734 1974-10-01 2024-10-11 00:28:54.000 1974-10-01 2024-10-11 00:28:54 +1736 1736 1737 173.6 347.20000000000005 1736 1974-10-03 2024-10-11 00:28:56.000 1974-10-03 2024-10-11 00:28:56 +1737 1737 1738 173.7 347.40000000000003 1737 1974-10-04 2024-10-11 00:28:57.000 1974-10-04 2024-10-11 00:28:57 +1738 1738 1739 173.8 347.6 1738 1974-10-05 2024-10-11 00:28:58.000 1974-10-05 2024-10-11 00:28:58 +1739 1739 1740 173.9 347.8 1739 1974-10-06 2024-10-11 00:28:59.000 1974-10-06 2024-10-11 00:28:59 +1741 1741 1742 174.1 348.20000000000005 1741 1974-10-08 2024-10-11 00:29:01.000 1974-10-08 2024-10-11 00:29:01 +1742 1742 1743 174.2 348.40000000000003 1742 1974-10-09 2024-10-11 00:29:02.000 1974-10-09 2024-10-11 00:29:02 +1743 1743 1744 174.3 348.6 1743 1974-10-10 2024-10-11 00:29:03.000 1974-10-10 2024-10-11 00:29:03 +1744 1744 1745 174.4 348.8 1744 1974-10-11 2024-10-11 00:29:04.000 1974-10-11 2024-10-11 00:29:04 +1746 1746 1747 174.6 349.20000000000005 1746 1974-10-13 2024-10-11 00:29:06.000 1974-10-13 2024-10-11 00:29:06 +1747 1747 1748 174.7 349.40000000000003 1747 1974-10-14 2024-10-11 00:29:07.000 1974-10-14 2024-10-11 00:29:07 +1748 1748 1749 174.8 349.6 1748 1974-10-15 2024-10-11 00:29:08.000 1974-10-15 2024-10-11 00:29:08 +1749 1749 1750 174.9 349.8 1749 1974-10-16 2024-10-11 00:29:09.000 1974-10-16 2024-10-11 00:29:09 +1751 1751 1752 175.1 350.20000000000005 1751 1974-10-18 2024-10-11 00:29:11.000 1974-10-18 2024-10-11 00:29:11 +1752 1752 1753 175.2 350.40000000000003 1752 1974-10-19 2024-10-11 00:29:12.000 1974-10-19 2024-10-11 00:29:12 +1753 1753 1754 175.3 350.6 1753 1974-10-20 2024-10-11 00:29:13.000 1974-10-20 2024-10-11 00:29:13 +1754 1754 1755 175.4 350.8 1754 1974-10-21 2024-10-11 00:29:14.000 1974-10-21 2024-10-11 00:29:14 +1756 1756 1757 175.6 351.20000000000005 1756 1974-10-23 2024-10-11 00:29:16.000 1974-10-23 2024-10-11 00:29:16 +1757 1757 1758 175.7 351.40000000000003 1757 1974-10-24 2024-10-11 00:29:17.000 1974-10-24 2024-10-11 00:29:17 +1758 1758 1759 175.8 351.6 1758 1974-10-25 2024-10-11 00:29:18.000 1974-10-25 2024-10-11 00:29:18 +1759 1759 1760 175.9 351.8 1759 1974-10-26 2024-10-11 00:29:19.000 1974-10-26 2024-10-11 00:29:19 +1761 1761 1762 176.1 352.20000000000005 1761 1974-10-28 2024-10-11 00:29:21.000 1974-10-28 2024-10-11 00:29:21 +1762 1762 1763 176.2 352.40000000000003 1762 1974-10-29 2024-10-11 00:29:22.000 1974-10-29 2024-10-11 00:29:22 +1763 1763 1764 176.3 352.6 1763 1974-10-30 2024-10-11 00:29:23.000 1974-10-30 2024-10-11 00:29:23 +1764 1764 1765 176.4 352.8 1764 1974-10-31 2024-10-11 00:29:24.000 1974-10-31 2024-10-11 00:29:24 +1766 1766 1767 176.6 353.20000000000005 1766 1974-11-02 2024-10-11 00:29:26.000 1974-11-02 2024-10-11 00:29:26 +1767 1767 1768 176.7 353.40000000000003 1767 1974-11-03 2024-10-11 00:29:27.000 1974-11-03 2024-10-11 00:29:27 +1768 1768 1769 176.8 353.6 1768 1974-11-04 2024-10-11 00:29:28.000 1974-11-04 2024-10-11 00:29:28 +1769 1769 1770 176.9 353.8 1769 1974-11-05 2024-10-11 00:29:29.000 1974-11-05 2024-10-11 00:29:29 +1771 1771 1772 177.1 354.20000000000005 1771 1974-11-07 2024-10-11 00:29:31.000 1974-11-07 2024-10-11 00:29:31 +1772 1772 1773 177.2 354.40000000000003 1772 1974-11-08 2024-10-11 00:29:32.000 1974-11-08 2024-10-11 00:29:32 +1773 1773 1774 177.3 354.6 1773 1974-11-09 2024-10-11 00:29:33.000 1974-11-09 2024-10-11 00:29:33 +1774 1774 1775 177.4 354.8 1774 1974-11-10 2024-10-11 00:29:34.000 1974-11-10 2024-10-11 00:29:34 +1776 1776 1777 177.6 355.20000000000005 1776 1974-11-12 2024-10-11 00:29:36.000 1974-11-12 2024-10-11 00:29:36 +1777 1777 1778 177.7 355.40000000000003 1777 1974-11-13 2024-10-11 00:29:37.000 1974-11-13 2024-10-11 00:29:37 +1778 1778 1779 177.8 355.6 1778 1974-11-14 2024-10-11 00:29:38.000 1974-11-14 2024-10-11 00:29:38 +1779 1779 1780 177.9 355.8 1779 1974-11-15 2024-10-11 00:29:39.000 1974-11-15 2024-10-11 00:29:39 +1781 1781 1782 178.1 356.20000000000005 1781 1974-11-17 2024-10-11 00:29:41.000 1974-11-17 2024-10-11 00:29:41 +1782 1782 1783 178.2 356.40000000000003 1782 1974-11-18 2024-10-11 00:29:42.000 1974-11-18 2024-10-11 00:29:42 +1783 1783 1784 178.3 356.6 1783 1974-11-19 2024-10-11 00:29:43.000 1974-11-19 2024-10-11 00:29:43 +1784 1784 1785 178.4 356.8 1784 1974-11-20 2024-10-11 00:29:44.000 1974-11-20 2024-10-11 00:29:44 +1786 1786 1787 178.6 357.20000000000005 1786 1974-11-22 2024-10-11 00:29:46.000 1974-11-22 2024-10-11 00:29:46 +1787 1787 1788 178.7 357.40000000000003 1787 1974-11-23 2024-10-11 00:29:47.000 1974-11-23 2024-10-11 00:29:47 +1788 1788 1789 178.8 357.6 1788 1974-11-24 2024-10-11 00:29:48.000 1974-11-24 2024-10-11 00:29:48 +1789 1789 1790 178.9 357.8 1789 1974-11-25 2024-10-11 00:29:49.000 1974-11-25 2024-10-11 00:29:49 +1791 1791 1792 179.1 358.20000000000005 1791 1974-11-27 2024-10-11 00:29:51.000 1974-11-27 2024-10-11 00:29:51 +1792 1792 1793 179.2 358.40000000000003 1792 1974-11-28 2024-10-11 00:29:52.000 1974-11-28 2024-10-11 00:29:52 +1793 1793 1794 179.3 358.6 1793 1974-11-29 2024-10-11 00:29:53.000 1974-11-29 2024-10-11 00:29:53 +1794 1794 1795 179.4 358.8 1794 1974-11-30 2024-10-11 00:29:54.000 1974-11-30 2024-10-11 00:29:54 +1796 1796 1797 179.6 359.20000000000005 1796 1974-12-02 2024-10-11 00:29:56.000 1974-12-02 2024-10-11 00:29:56 +1797 1797 1798 179.7 359.40000000000003 1797 1974-12-03 2024-10-11 00:29:57.000 1974-12-03 2024-10-11 00:29:57 +1798 1798 1799 179.8 359.6 1798 1974-12-04 2024-10-11 00:29:58.000 1974-12-04 2024-10-11 00:29:58 +1799 1799 1800 179.9 359.8 1799 1974-12-05 2024-10-11 00:29:59.000 1974-12-05 2024-10-11 00:29:59 +1801 1801 1802 180.1 360.20000000000005 1801 1974-12-07 2024-10-11 00:30:01.000 1974-12-07 2024-10-11 00:30:01 +1802 1802 1803 180.2 360.40000000000003 1802 1974-12-08 2024-10-11 00:30:02.000 1974-12-08 2024-10-11 00:30:02 +1803 1803 1804 180.3 360.6 1803 1974-12-09 2024-10-11 00:30:03.000 1974-12-09 2024-10-11 00:30:03 +1804 1804 1805 180.4 360.8 1804 1974-12-10 2024-10-11 00:30:04.000 1974-12-10 2024-10-11 00:30:04 +1806 1806 1807 180.6 361.20000000000005 1806 1974-12-12 2024-10-11 00:30:06.000 1974-12-12 2024-10-11 00:30:06 +1807 1807 1808 180.7 361.40000000000003 1807 1974-12-13 2024-10-11 00:30:07.000 1974-12-13 2024-10-11 00:30:07 +1808 1808 1809 180.8 361.6 1808 1974-12-14 2024-10-11 00:30:08.000 1974-12-14 2024-10-11 00:30:08 +1809 1809 1810 180.9 361.8 1809 1974-12-15 2024-10-11 00:30:09.000 1974-12-15 2024-10-11 00:30:09 +1811 1811 1812 181.1 362.20000000000005 1811 1974-12-17 2024-10-11 00:30:11.000 1974-12-17 2024-10-11 00:30:11 +1812 1812 1813 181.2 362.40000000000003 1812 1974-12-18 2024-10-11 00:30:12.000 1974-12-18 2024-10-11 00:30:12 +1813 1813 1814 181.3 362.6 1813 1974-12-19 2024-10-11 00:30:13.000 1974-12-19 2024-10-11 00:30:13 +1814 1814 1815 181.4 362.8 1814 1974-12-20 2024-10-11 00:30:14.000 1974-12-20 2024-10-11 00:30:14 +1816 1816 1817 181.6 363.20000000000005 1816 1974-12-22 2024-10-11 00:30:16.000 1974-12-22 2024-10-11 00:30:16 +1817 1817 1818 181.7 363.40000000000003 1817 1974-12-23 2024-10-11 00:30:17.000 1974-12-23 2024-10-11 00:30:17 +1818 1818 1819 181.8 363.6 1818 1974-12-24 2024-10-11 00:30:18.000 1974-12-24 2024-10-11 00:30:18 +1819 1819 1820 181.9 363.8 1819 1974-12-25 2024-10-11 00:30:19.000 1974-12-25 2024-10-11 00:30:19 +1821 1821 1822 182.1 364.20000000000005 1821 1974-12-27 2024-10-11 00:30:21.000 1974-12-27 2024-10-11 00:30:21 +1822 1822 1823 182.2 364.40000000000003 1822 1974-12-28 2024-10-11 00:30:22.000 1974-12-28 2024-10-11 00:30:22 +1823 1823 1824 182.3 364.6 1823 1974-12-29 2024-10-11 00:30:23.000 1974-12-29 2024-10-11 00:30:23 +1824 1824 1825 182.4 364.8 1824 1974-12-30 2024-10-11 00:30:24.000 1974-12-30 2024-10-11 00:30:24 +1826 1826 1827 182.6 365.20000000000005 1826 1975-01-01 2024-10-11 00:30:26.000 1975-01-01 2024-10-11 00:30:26 +1827 1827 1828 182.7 365.40000000000003 1827 1975-01-02 2024-10-11 00:30:27.000 1975-01-02 2024-10-11 00:30:27 +1828 1828 1829 182.8 365.6 1828 1975-01-03 2024-10-11 00:30:28.000 1975-01-03 2024-10-11 00:30:28 +1829 1829 1830 182.9 365.8 1829 1975-01-04 2024-10-11 00:30:29.000 1975-01-04 2024-10-11 00:30:29 +1831 1831 1832 183.1 366.20000000000005 1831 1975-01-06 2024-10-11 00:30:31.000 1975-01-06 2024-10-11 00:30:31 +1832 1832 1833 183.2 366.40000000000003 1832 1975-01-07 2024-10-11 00:30:32.000 1975-01-07 2024-10-11 00:30:32 +1833 1833 1834 183.3 366.6 1833 1975-01-08 2024-10-11 00:30:33.000 1975-01-08 2024-10-11 00:30:33 +1834 1834 1835 183.4 366.8 1834 1975-01-09 2024-10-11 00:30:34.000 1975-01-09 2024-10-11 00:30:34 +1836 1836 1837 183.6 367.20000000000005 1836 1975-01-11 2024-10-11 00:30:36.000 1975-01-11 2024-10-11 00:30:36 +1837 1837 1838 183.7 367.40000000000003 1837 1975-01-12 2024-10-11 00:30:37.000 1975-01-12 2024-10-11 00:30:37 +1838 1838 1839 183.8 367.6 1838 1975-01-13 2024-10-11 00:30:38.000 1975-01-13 2024-10-11 00:30:38 +1839 1839 1840 183.9 367.8 1839 1975-01-14 2024-10-11 00:30:39.000 1975-01-14 2024-10-11 00:30:39 +1841 1841 1842 184.1 368.20000000000005 1841 1975-01-16 2024-10-11 00:30:41.000 1975-01-16 2024-10-11 00:30:41 +1842 1842 1843 184.2 368.40000000000003 1842 1975-01-17 2024-10-11 00:30:42.000 1975-01-17 2024-10-11 00:30:42 +1843 1843 1844 184.3 368.6 1843 1975-01-18 2024-10-11 00:30:43.000 1975-01-18 2024-10-11 00:30:43 +1844 1844 1845 184.4 368.8 1844 1975-01-19 2024-10-11 00:30:44.000 1975-01-19 2024-10-11 00:30:44 +1846 1846 1847 184.6 369.20000000000005 1846 1975-01-21 2024-10-11 00:30:46.000 1975-01-21 2024-10-11 00:30:46 +1847 1847 1848 184.7 369.40000000000003 1847 1975-01-22 2024-10-11 00:30:47.000 1975-01-22 2024-10-11 00:30:47 +1848 1848 1849 184.8 369.6 1848 1975-01-23 2024-10-11 00:30:48.000 1975-01-23 2024-10-11 00:30:48 +1849 1849 1850 184.9 369.8 1849 1975-01-24 2024-10-11 00:30:49.000 1975-01-24 2024-10-11 00:30:49 +1851 1851 1852 185.1 370.20000000000005 1851 1975-01-26 2024-10-11 00:30:51.000 1975-01-26 2024-10-11 00:30:51 +1852 1852 1853 185.2 370.40000000000003 1852 1975-01-27 2024-10-11 00:30:52.000 1975-01-27 2024-10-11 00:30:52 +1853 1853 1854 185.3 370.6 1853 1975-01-28 2024-10-11 00:30:53.000 1975-01-28 2024-10-11 00:30:53 +1854 1854 1855 185.4 370.8 1854 1975-01-29 2024-10-11 00:30:54.000 1975-01-29 2024-10-11 00:30:54 +1856 1856 1857 185.6 371.20000000000005 1856 1975-01-31 2024-10-11 00:30:56.000 1975-01-31 2024-10-11 00:30:56 +1857 1857 1858 185.7 371.40000000000003 1857 1975-02-01 2024-10-11 00:30:57.000 1975-02-01 2024-10-11 00:30:57 +1858 1858 1859 185.8 371.6 1858 1975-02-02 2024-10-11 00:30:58.000 1975-02-02 2024-10-11 00:30:58 +1859 1859 1860 185.9 371.8 1859 1975-02-03 2024-10-11 00:30:59.000 1975-02-03 2024-10-11 00:30:59 +1861 1861 1862 186.1 372.20000000000005 1861 1975-02-05 2024-10-11 00:31:01.000 1975-02-05 2024-10-11 00:31:01 +1862 1862 1863 186.2 372.40000000000003 1862 1975-02-06 2024-10-11 00:31:02.000 1975-02-06 2024-10-11 00:31:02 +1863 1863 1864 186.3 372.6 1863 1975-02-07 2024-10-11 00:31:03.000 1975-02-07 2024-10-11 00:31:03 +1864 1864 1865 186.4 372.8 1864 1975-02-08 2024-10-11 00:31:04.000 1975-02-08 2024-10-11 00:31:04 +1866 1866 1867 186.6 373.20000000000005 1866 1975-02-10 2024-10-11 00:31:06.000 1975-02-10 2024-10-11 00:31:06 +1867 1867 1868 186.7 373.40000000000003 1867 1975-02-11 2024-10-11 00:31:07.000 1975-02-11 2024-10-11 00:31:07 +1868 1868 1869 186.8 373.6 1868 1975-02-12 2024-10-11 00:31:08.000 1975-02-12 2024-10-11 00:31:08 +1869 1869 1870 186.9 373.8 1869 1975-02-13 2024-10-11 00:31:09.000 1975-02-13 2024-10-11 00:31:09 +1871 1871 1872 187.1 374.20000000000005 1871 1975-02-15 2024-10-11 00:31:11.000 1975-02-15 2024-10-11 00:31:11 +1872 1872 1873 187.2 374.40000000000003 1872 1975-02-16 2024-10-11 00:31:12.000 1975-02-16 2024-10-11 00:31:12 +1873 1873 1874 187.3 374.6 1873 1975-02-17 2024-10-11 00:31:13.000 1975-02-17 2024-10-11 00:31:13 +1874 1874 1875 187.4 374.8 1874 1975-02-18 2024-10-11 00:31:14.000 1975-02-18 2024-10-11 00:31:14 +1876 1876 1877 187.6 375.20000000000005 1876 1975-02-20 2024-10-11 00:31:16.000 1975-02-20 2024-10-11 00:31:16 +1877 1877 1878 187.7 375.40000000000003 1877 1975-02-21 2024-10-11 00:31:17.000 1975-02-21 2024-10-11 00:31:17 +1878 1878 1879 187.8 375.6 1878 1975-02-22 2024-10-11 00:31:18.000 1975-02-22 2024-10-11 00:31:18 +1879 1879 1880 187.9 375.8 1879 1975-02-23 2024-10-11 00:31:19.000 1975-02-23 2024-10-11 00:31:19 +1881 1881 1882 188.1 376.20000000000005 1881 1975-02-25 2024-10-11 00:31:21.000 1975-02-25 2024-10-11 00:31:21 +1882 1882 1883 188.2 376.40000000000003 1882 1975-02-26 2024-10-11 00:31:22.000 1975-02-26 2024-10-11 00:31:22 +1883 1883 1884 188.3 376.6 1883 1975-02-27 2024-10-11 00:31:23.000 1975-02-27 2024-10-11 00:31:23 +1884 1884 1885 188.4 376.8 1884 1975-02-28 2024-10-11 00:31:24.000 1975-02-28 2024-10-11 00:31:24 +1886 1886 1887 188.6 377.20000000000005 1886 1975-03-02 2024-10-11 00:31:26.000 1975-03-02 2024-10-11 00:31:26 +1887 1887 1888 188.7 377.40000000000003 1887 1975-03-03 2024-10-11 00:31:27.000 1975-03-03 2024-10-11 00:31:27 +1888 1888 1889 188.8 377.6 1888 1975-03-04 2024-10-11 00:31:28.000 1975-03-04 2024-10-11 00:31:28 +1889 1889 1890 188.9 377.8 1889 1975-03-05 2024-10-11 00:31:29.000 1975-03-05 2024-10-11 00:31:29 +1891 1891 1892 189.1 378.20000000000005 1891 1975-03-07 2024-10-11 00:31:31.000 1975-03-07 2024-10-11 00:31:31 +1892 1892 1893 189.2 378.40000000000003 1892 1975-03-08 2024-10-11 00:31:32.000 1975-03-08 2024-10-11 00:31:32 +1893 1893 1894 189.3 378.6 1893 1975-03-09 2024-10-11 00:31:33.000 1975-03-09 2024-10-11 00:31:33 +1894 1894 1895 189.4 378.8 1894 1975-03-10 2024-10-11 00:31:34.000 1975-03-10 2024-10-11 00:31:34 +1896 1896 1897 189.6 379.20000000000005 1896 1975-03-12 2024-10-11 00:31:36.000 1975-03-12 2024-10-11 00:31:36 +1897 1897 1898 189.7 379.40000000000003 1897 1975-03-13 2024-10-11 00:31:37.000 1975-03-13 2024-10-11 00:31:37 +1898 1898 1899 189.8 379.6 1898 1975-03-14 2024-10-11 00:31:38.000 1975-03-14 2024-10-11 00:31:38 +1899 1899 1900 189.9 379.8 1899 1975-03-15 2024-10-11 00:31:39.000 1975-03-15 2024-10-11 00:31:39 +1901 1901 1902 190.1 380.20000000000005 1901 1975-03-17 2024-10-11 00:31:41.000 1975-03-17 2024-10-11 00:31:41 +1902 1902 1903 190.2 380.40000000000003 1902 1975-03-18 2024-10-11 00:31:42.000 1975-03-18 2024-10-11 00:31:42 +1903 1903 1904 190.3 380.6 1903 1975-03-19 2024-10-11 00:31:43.000 1975-03-19 2024-10-11 00:31:43 +1904 1904 1905 190.4 380.8 1904 1975-03-20 2024-10-11 00:31:44.000 1975-03-20 2024-10-11 00:31:44 +1906 1906 1907 190.6 381.20000000000005 1906 1975-03-22 2024-10-11 00:31:46.000 1975-03-22 2024-10-11 00:31:46 +1907 1907 1908 190.7 381.40000000000003 1907 1975-03-23 2024-10-11 00:31:47.000 1975-03-23 2024-10-11 00:31:47 +1908 1908 1909 190.8 381.6 1908 1975-03-24 2024-10-11 00:31:48.000 1975-03-24 2024-10-11 00:31:48 +1909 1909 1910 190.9 381.8 1909 1975-03-25 2024-10-11 00:31:49.000 1975-03-25 2024-10-11 00:31:49 +1911 1911 1912 191.1 382.20000000000005 1911 1975-03-27 2024-10-11 00:31:51.000 1975-03-27 2024-10-11 00:31:51 +1912 1912 1913 191.2 382.40000000000003 1912 1975-03-28 2024-10-11 00:31:52.000 1975-03-28 2024-10-11 00:31:52 +1913 1913 1914 191.3 382.6 1913 1975-03-29 2024-10-11 00:31:53.000 1975-03-29 2024-10-11 00:31:53 +1914 1914 1915 191.4 382.8 1914 1975-03-30 2024-10-11 00:31:54.000 1975-03-30 2024-10-11 00:31:54 +1916 1916 1917 191.6 383.20000000000005 1916 1975-04-01 2024-10-11 00:31:56.000 1975-04-01 2024-10-11 00:31:56 +1917 1917 1918 191.7 383.40000000000003 1917 1975-04-02 2024-10-11 00:31:57.000 1975-04-02 2024-10-11 00:31:57 +1918 1918 1919 191.8 383.6 1918 1975-04-03 2024-10-11 00:31:58.000 1975-04-03 2024-10-11 00:31:58 +1919 1919 1920 191.9 383.8 1919 1975-04-04 2024-10-11 00:31:59.000 1975-04-04 2024-10-11 00:31:59 +1921 1921 1922 192.1 384.20000000000005 1921 1975-04-06 2024-10-11 00:32:01.000 1975-04-06 2024-10-11 00:32:01 +1922 1922 1923 192.2 384.40000000000003 1922 1975-04-07 2024-10-11 00:32:02.000 1975-04-07 2024-10-11 00:32:02 +1923 1923 1924 192.3 384.6 1923 1975-04-08 2024-10-11 00:32:03.000 1975-04-08 2024-10-11 00:32:03 +1924 1924 1925 192.4 384.8 1924 1975-04-09 2024-10-11 00:32:04.000 1975-04-09 2024-10-11 00:32:04 +1926 1926 1927 192.6 385.20000000000005 1926 1975-04-11 2024-10-11 00:32:06.000 1975-04-11 2024-10-11 00:32:06 +1927 1927 1928 192.7 385.40000000000003 1927 1975-04-12 2024-10-11 00:32:07.000 1975-04-12 2024-10-11 00:32:07 +1928 1928 1929 192.8 385.6 1928 1975-04-13 2024-10-11 00:32:08.000 1975-04-13 2024-10-11 00:32:08 +1929 1929 1930 192.9 385.8 1929 1975-04-14 2024-10-11 00:32:09.000 1975-04-14 2024-10-11 00:32:09 +1931 1931 1932 193.1 386.20000000000005 1931 1975-04-16 2024-10-11 00:32:11.000 1975-04-16 2024-10-11 00:32:11 +1932 1932 1933 193.2 386.40000000000003 1932 1975-04-17 2024-10-11 00:32:12.000 1975-04-17 2024-10-11 00:32:12 +1933 1933 1934 193.3 386.6 1933 1975-04-18 2024-10-11 00:32:13.000 1975-04-18 2024-10-11 00:32:13 +1934 1934 1935 193.4 386.8 1934 1975-04-19 2024-10-11 00:32:14.000 1975-04-19 2024-10-11 00:32:14 +1936 1936 1937 193.6 387.20000000000005 1936 1975-04-21 2024-10-11 00:32:16.000 1975-04-21 2024-10-11 00:32:16 +1937 1937 1938 193.7 387.40000000000003 1937 1975-04-22 2024-10-11 00:32:17.000 1975-04-22 2024-10-11 00:32:17 +1938 1938 1939 193.8 387.6 1938 1975-04-23 2024-10-11 00:32:18.000 1975-04-23 2024-10-11 00:32:18 +1939 1939 1940 193.9 387.8 1939 1975-04-24 2024-10-11 00:32:19.000 1975-04-24 2024-10-11 00:32:19 +1941 1941 1942 194.1 388.20000000000005 1941 1975-04-26 2024-10-11 00:32:21.000 1975-04-26 2024-10-11 00:32:21 +1942 1942 1943 194.2 388.40000000000003 1942 1975-04-27 2024-10-11 00:32:22.000 1975-04-27 2024-10-11 00:32:22 +1943 1943 1944 194.3 388.6 1943 1975-04-28 2024-10-11 00:32:23.000 1975-04-28 2024-10-11 00:32:23 +1944 1944 1945 194.4 388.8 1944 1975-04-29 2024-10-11 00:32:24.000 1975-04-29 2024-10-11 00:32:24 +1946 1946 1947 194.6 389.20000000000005 1946 1975-05-01 2024-10-11 00:32:26.000 1975-05-01 2024-10-11 00:32:26 +1947 1947 1948 194.7 389.40000000000003 1947 1975-05-02 2024-10-11 00:32:27.000 1975-05-02 2024-10-11 00:32:27 +1948 1948 1949 194.8 389.6 1948 1975-05-03 2024-10-11 00:32:28.000 1975-05-03 2024-10-11 00:32:28 +1949 1949 1950 194.9 389.8 1949 1975-05-04 2024-10-11 00:32:29.000 1975-05-04 2024-10-11 00:32:29 +1951 1951 1952 195.1 390.20000000000005 1951 1975-05-06 2024-10-11 00:32:31.000 1975-05-06 2024-10-11 00:32:31 +1952 1952 1953 195.2 390.40000000000003 1952 1975-05-07 2024-10-11 00:32:32.000 1975-05-07 2024-10-11 00:32:32 +1953 1953 1954 195.3 390.6 1953 1975-05-08 2024-10-11 00:32:33.000 1975-05-08 2024-10-11 00:32:33 +1954 1954 1955 195.4 390.8 1954 1975-05-09 2024-10-11 00:32:34.000 1975-05-09 2024-10-11 00:32:34 +1956 1956 1957 195.6 391.20000000000005 1956 1975-05-11 2024-10-11 00:32:36.000 1975-05-11 2024-10-11 00:32:36 +1957 1957 1958 195.7 391.40000000000003 1957 1975-05-12 2024-10-11 00:32:37.000 1975-05-12 2024-10-11 00:32:37 +1958 1958 1959 195.8 391.6 1958 1975-05-13 2024-10-11 00:32:38.000 1975-05-13 2024-10-11 00:32:38 +1959 1959 1960 195.9 391.8 1959 1975-05-14 2024-10-11 00:32:39.000 1975-05-14 2024-10-11 00:32:39 +1961 1961 1962 196.1 392.20000000000005 1961 1975-05-16 2024-10-11 00:32:41.000 1975-05-16 2024-10-11 00:32:41 +1962 1962 1963 196.2 392.40000000000003 1962 1975-05-17 2024-10-11 00:32:42.000 1975-05-17 2024-10-11 00:32:42 +1963 1963 1964 196.3 392.6 1963 1975-05-18 2024-10-11 00:32:43.000 1975-05-18 2024-10-11 00:32:43 +1964 1964 1965 196.4 392.8 1964 1975-05-19 2024-10-11 00:32:44.000 1975-05-19 2024-10-11 00:32:44 +1966 1966 1967 196.6 393.20000000000005 1966 1975-05-21 2024-10-11 00:32:46.000 1975-05-21 2024-10-11 00:32:46 +1967 1967 1968 196.7 393.40000000000003 1967 1975-05-22 2024-10-11 00:32:47.000 1975-05-22 2024-10-11 00:32:47 +1968 1968 1969 196.8 393.6 1968 1975-05-23 2024-10-11 00:32:48.000 1975-05-23 2024-10-11 00:32:48 +1969 1969 1970 196.9 393.8 1969 1975-05-24 2024-10-11 00:32:49.000 1975-05-24 2024-10-11 00:32:49 +1971 1971 1972 197.1 394.20000000000005 1971 1975-05-26 2024-10-11 00:32:51.000 1975-05-26 2024-10-11 00:32:51 +1972 1972 1973 197.2 394.40000000000003 1972 1975-05-27 2024-10-11 00:32:52.000 1975-05-27 2024-10-11 00:32:52 +1973 1973 1974 197.3 394.6 1973 1975-05-28 2024-10-11 00:32:53.000 1975-05-28 2024-10-11 00:32:53 +1974 1974 1975 197.4 394.8 1974 1975-05-29 2024-10-11 00:32:54.000 1975-05-29 2024-10-11 00:32:54 +1976 1976 1977 197.6 395.20000000000005 1976 1975-05-31 2024-10-11 00:32:56.000 1975-05-31 2024-10-11 00:32:56 +1977 1977 1978 197.7 395.40000000000003 1977 1975-06-01 2024-10-11 00:32:57.000 1975-06-01 2024-10-11 00:32:57 +1978 1978 1979 197.8 395.6 1978 1975-06-02 2024-10-11 00:32:58.000 1975-06-02 2024-10-11 00:32:58 +1979 1979 1980 197.9 395.8 1979 1975-06-03 2024-10-11 00:32:59.000 1975-06-03 2024-10-11 00:32:59 +1981 1981 1982 198.1 396.20000000000005 1981 1975-06-05 2024-10-11 00:33:01.000 1975-06-05 2024-10-11 00:33:01 +1982 1982 1983 198.2 396.40000000000003 1982 1975-06-06 2024-10-11 00:33:02.000 1975-06-06 2024-10-11 00:33:02 +1983 1983 1984 198.3 396.6 1983 1975-06-07 2024-10-11 00:33:03.000 1975-06-07 2024-10-11 00:33:03 +1984 1984 1985 198.4 396.8 1984 1975-06-08 2024-10-11 00:33:04.000 1975-06-08 2024-10-11 00:33:04 +1986 1986 1987 198.6 397.20000000000005 1986 1975-06-10 2024-10-11 00:33:06.000 1975-06-10 2024-10-11 00:33:06 +1987 1987 1988 198.7 397.40000000000003 1987 1975-06-11 2024-10-11 00:33:07.000 1975-06-11 2024-10-11 00:33:07 +1988 1988 1989 198.8 397.6 1988 1975-06-12 2024-10-11 00:33:08.000 1975-06-12 2024-10-11 00:33:08 +1989 1989 1990 198.9 397.8 1989 1975-06-13 2024-10-11 00:33:09.000 1975-06-13 2024-10-11 00:33:09 +1991 1991 1992 199.1 398.20000000000005 1991 1975-06-15 2024-10-11 00:33:11.000 1975-06-15 2024-10-11 00:33:11 +1992 1992 1993 199.2 398.40000000000003 1992 1975-06-16 2024-10-11 00:33:12.000 1975-06-16 2024-10-11 00:33:12 +1993 1993 1994 199.3 398.6 1993 1975-06-17 2024-10-11 00:33:13.000 1975-06-17 2024-10-11 00:33:13 +1994 1994 1995 199.4 398.8 1994 1975-06-18 2024-10-11 00:33:14.000 1975-06-18 2024-10-11 00:33:14 +1996 1996 1997 199.6 399.20000000000005 1996 1975-06-20 2024-10-11 00:33:16.000 1975-06-20 2024-10-11 00:33:16 +1997 1997 1998 199.7 399.40000000000003 1997 1975-06-21 2024-10-11 00:33:17.000 1975-06-21 2024-10-11 00:33:17 +1998 1998 1999 199.8 399.6 1998 1975-06-22 2024-10-11 00:33:18.000 1975-06-22 2024-10-11 00:33:18 +1999 1999 2000 199.9 399.8 1999 1975-06-23 2024-10-11 00:33:19.000 1975-06-23 2024-10-11 00:33:19 +2001 2001 2002 200.1 400.20000000000005 2001 1975-06-25 2024-10-11 00:33:21.000 1975-06-25 2024-10-11 00:33:21 +2002 2002 2003 200.2 400.40000000000003 2002 1975-06-26 2024-10-11 00:33:22.000 1975-06-26 2024-10-11 00:33:22 +2003 2003 2004 200.3 400.6 2003 1975-06-27 2024-10-11 00:33:23.000 1975-06-27 2024-10-11 00:33:23 +2004 2004 2005 200.4 400.8 2004 1975-06-28 2024-10-11 00:33:24.000 1975-06-28 2024-10-11 00:33:24 +2006 2006 2007 200.6 401.20000000000005 2006 1975-06-30 2024-10-11 00:33:26.000 1975-06-30 2024-10-11 00:33:26 +2007 2007 2008 200.7 401.40000000000003 2007 1975-07-01 2024-10-11 00:33:27.000 1975-07-01 2024-10-11 00:33:27 +2008 2008 2009 200.8 401.6 2008 1975-07-02 2024-10-11 00:33:28.000 1975-07-02 2024-10-11 00:33:28 +2009 2009 2010 200.9 401.8 2009 1975-07-03 2024-10-11 00:33:29.000 1975-07-03 2024-10-11 00:33:29 +2011 2011 2012 201.1 402.20000000000005 2011 1975-07-05 2024-10-11 00:33:31.000 1975-07-05 2024-10-11 00:33:31 +2012 2012 2013 201.2 402.40000000000003 2012 1975-07-06 2024-10-11 00:33:32.000 1975-07-06 2024-10-11 00:33:32 +2013 2013 2014 201.3 402.6 2013 1975-07-07 2024-10-11 00:33:33.000 1975-07-07 2024-10-11 00:33:33 +2014 2014 2015 201.4 402.8 2014 1975-07-08 2024-10-11 00:33:34.000 1975-07-08 2024-10-11 00:33:34 +2016 2016 2017 201.6 403.20000000000005 2016 1975-07-10 2024-10-11 00:33:36.000 1975-07-10 2024-10-11 00:33:36 +2017 2017 2018 201.7 403.40000000000003 2017 1975-07-11 2024-10-11 00:33:37.000 1975-07-11 2024-10-11 00:33:37 +2018 2018 2019 201.8 403.6 2018 1975-07-12 2024-10-11 00:33:38.000 1975-07-12 2024-10-11 00:33:38 +2019 2019 2020 201.9 403.8 2019 1975-07-13 2024-10-11 00:33:39.000 1975-07-13 2024-10-11 00:33:39 +2021 2021 2022 202.1 404.20000000000005 2021 1975-07-15 2024-10-11 00:33:41.000 1975-07-15 2024-10-11 00:33:41 +2022 2022 2023 202.2 404.40000000000003 2022 1975-07-16 2024-10-11 00:33:42.000 1975-07-16 2024-10-11 00:33:42 +2023 2023 2024 202.3 404.6 2023 1975-07-17 2024-10-11 00:33:43.000 1975-07-17 2024-10-11 00:33:43 +2024 2024 2025 202.4 404.8 2024 1975-07-18 2024-10-11 00:33:44.000 1975-07-18 2024-10-11 00:33:44 +2026 2026 2027 202.6 405.20000000000005 2026 1975-07-20 2024-10-11 00:33:46.000 1975-07-20 2024-10-11 00:33:46 +2027 2027 2028 202.7 405.40000000000003 2027 1975-07-21 2024-10-11 00:33:47.000 1975-07-21 2024-10-11 00:33:47 +2028 2028 2029 202.8 405.6 2028 1975-07-22 2024-10-11 00:33:48.000 1975-07-22 2024-10-11 00:33:48 +2029 2029 2030 202.9 405.8 2029 1975-07-23 2024-10-11 00:33:49.000 1975-07-23 2024-10-11 00:33:49 +2031 2031 2032 203.1 406.20000000000005 2031 1975-07-25 2024-10-11 00:33:51.000 1975-07-25 2024-10-11 00:33:51 +2032 2032 2033 203.2 406.40000000000003 2032 1975-07-26 2024-10-11 00:33:52.000 1975-07-26 2024-10-11 00:33:52 +2033 2033 2034 203.3 406.6 2033 1975-07-27 2024-10-11 00:33:53.000 1975-07-27 2024-10-11 00:33:53 +2034 2034 2035 203.4 406.8 2034 1975-07-28 2024-10-11 00:33:54.000 1975-07-28 2024-10-11 00:33:54 +2036 2036 2037 203.6 407.20000000000005 2036 1975-07-30 2024-10-11 00:33:56.000 1975-07-30 2024-10-11 00:33:56 +2037 2037 2038 203.7 407.40000000000003 2037 1975-07-31 2024-10-11 00:33:57.000 1975-07-31 2024-10-11 00:33:57 +2038 2038 2039 203.8 407.6 2038 1975-08-01 2024-10-11 00:33:58.000 1975-08-01 2024-10-11 00:33:58 +2039 2039 2040 203.9 407.8 2039 1975-08-02 2024-10-11 00:33:59.000 1975-08-02 2024-10-11 00:33:59 +2041 2041 2042 204.1 408.20000000000005 2041 1975-08-04 2024-10-11 00:34:01.000 1975-08-04 2024-10-11 00:34:01 +2042 2042 2043 204.2 408.40000000000003 2042 1975-08-05 2024-10-11 00:34:02.000 1975-08-05 2024-10-11 00:34:02 +2043 2043 2044 204.3 408.6 2043 1975-08-06 2024-10-11 00:34:03.000 1975-08-06 2024-10-11 00:34:03 +2044 2044 2045 204.4 408.8 2044 1975-08-07 2024-10-11 00:34:04.000 1975-08-07 2024-10-11 00:34:04 +2046 2046 2047 204.6 409.20000000000005 2046 1975-08-09 2024-10-11 00:34:06.000 1975-08-09 2024-10-11 00:34:06 +2047 2047 2048 204.7 409.40000000000003 2047 1975-08-10 2024-10-11 00:34:07.000 1975-08-10 2024-10-11 00:34:07 +2048 2048 2049 204.8 409.6 2048 1975-08-11 2024-10-11 00:34:08.000 1975-08-11 2024-10-11 00:34:08 +2049 2049 2050 204.9 409.8 2049 1975-08-12 2024-10-11 00:34:09.000 1975-08-12 2024-10-11 00:34:09 +2051 2051 2052 205.1 410.20000000000005 2051 1975-08-14 2024-10-11 00:34:11.000 1975-08-14 2024-10-11 00:34:11 +2052 2052 2053 205.2 410.40000000000003 2052 1975-08-15 2024-10-11 00:34:12.000 1975-08-15 2024-10-11 00:34:12 +2053 2053 2054 205.3 410.6 2053 1975-08-16 2024-10-11 00:34:13.000 1975-08-16 2024-10-11 00:34:13 +2054 2054 2055 205.4 410.8 2054 1975-08-17 2024-10-11 00:34:14.000 1975-08-17 2024-10-11 00:34:14 +2056 2056 2057 205.6 411.20000000000005 2056 1975-08-19 2024-10-11 00:34:16.000 1975-08-19 2024-10-11 00:34:16 +2057 2057 2058 205.7 411.40000000000003 2057 1975-08-20 2024-10-11 00:34:17.000 1975-08-20 2024-10-11 00:34:17 +2058 2058 2059 205.8 411.6 2058 1975-08-21 2024-10-11 00:34:18.000 1975-08-21 2024-10-11 00:34:18 +2059 2059 2060 205.9 411.8 2059 1975-08-22 2024-10-11 00:34:19.000 1975-08-22 2024-10-11 00:34:19 +2061 2061 2062 206.1 412.20000000000005 2061 1975-08-24 2024-10-11 00:34:21.000 1975-08-24 2024-10-11 00:34:21 +2062 2062 2063 206.2 412.40000000000003 2062 1975-08-25 2024-10-11 00:34:22.000 1975-08-25 2024-10-11 00:34:22 +2063 2063 2064 206.3 412.6 2063 1975-08-26 2024-10-11 00:34:23.000 1975-08-26 2024-10-11 00:34:23 +2064 2064 2065 206.4 412.8 2064 1975-08-27 2024-10-11 00:34:24.000 1975-08-27 2024-10-11 00:34:24 +2066 2066 2067 206.6 413.20000000000005 2066 1975-08-29 2024-10-11 00:34:26.000 1975-08-29 2024-10-11 00:34:26 +2067 2067 2068 206.7 413.40000000000003 2067 1975-08-30 2024-10-11 00:34:27.000 1975-08-30 2024-10-11 00:34:27 +2068 2068 2069 206.8 413.6 2068 1975-08-31 2024-10-11 00:34:28.000 1975-08-31 2024-10-11 00:34:28 +2069 2069 2070 206.9 413.8 2069 1975-09-01 2024-10-11 00:34:29.000 1975-09-01 2024-10-11 00:34:29 +2071 2071 2072 207.1 414.20000000000005 2071 1975-09-03 2024-10-11 00:34:31.000 1975-09-03 2024-10-11 00:34:31 +2072 2072 2073 207.2 414.40000000000003 2072 1975-09-04 2024-10-11 00:34:32.000 1975-09-04 2024-10-11 00:34:32 +2073 2073 2074 207.3 414.6 2073 1975-09-05 2024-10-11 00:34:33.000 1975-09-05 2024-10-11 00:34:33 +2074 2074 2075 207.4 414.8 2074 1975-09-06 2024-10-11 00:34:34.000 1975-09-06 2024-10-11 00:34:34 +2076 2076 2077 207.6 415.20000000000005 2076 1975-09-08 2024-10-11 00:34:36.000 1975-09-08 2024-10-11 00:34:36 +2077 2077 2078 207.7 415.40000000000003 2077 1975-09-09 2024-10-11 00:34:37.000 1975-09-09 2024-10-11 00:34:37 +2078 2078 2079 207.8 415.6 2078 1975-09-10 2024-10-11 00:34:38.000 1975-09-10 2024-10-11 00:34:38 +2079 2079 2080 207.9 415.8 2079 1975-09-11 2024-10-11 00:34:39.000 1975-09-11 2024-10-11 00:34:39 +2081 2081 2082 208.1 416.20000000000005 2081 1975-09-13 2024-10-11 00:34:41.000 1975-09-13 2024-10-11 00:34:41 +2082 2082 2083 208.2 416.40000000000003 2082 1975-09-14 2024-10-11 00:34:42.000 1975-09-14 2024-10-11 00:34:42 +2083 2083 2084 208.3 416.6 2083 1975-09-15 2024-10-11 00:34:43.000 1975-09-15 2024-10-11 00:34:43 +2084 2084 2085 208.4 416.8 2084 1975-09-16 2024-10-11 00:34:44.000 1975-09-16 2024-10-11 00:34:44 +2086 2086 2087 208.6 417.20000000000005 2086 1975-09-18 2024-10-11 00:34:46.000 1975-09-18 2024-10-11 00:34:46 +2087 2087 2088 208.7 417.40000000000003 2087 1975-09-19 2024-10-11 00:34:47.000 1975-09-19 2024-10-11 00:34:47 +2088 2088 2089 208.8 417.6 2088 1975-09-20 2024-10-11 00:34:48.000 1975-09-20 2024-10-11 00:34:48 +2089 2089 2090 208.9 417.8 2089 1975-09-21 2024-10-11 00:34:49.000 1975-09-21 2024-10-11 00:34:49 +2091 2091 2092 209.1 418.20000000000005 2091 1975-09-23 2024-10-11 00:34:51.000 1975-09-23 2024-10-11 00:34:51 +2092 2092 2093 209.2 418.40000000000003 2092 1975-09-24 2024-10-11 00:34:52.000 1975-09-24 2024-10-11 00:34:52 +2093 2093 2094 209.3 418.6 2093 1975-09-25 2024-10-11 00:34:53.000 1975-09-25 2024-10-11 00:34:53 +2094 2094 2095 209.4 418.8 2094 1975-09-26 2024-10-11 00:34:54.000 1975-09-26 2024-10-11 00:34:54 +2096 2096 2097 209.6 419.20000000000005 2096 1975-09-28 2024-10-11 00:34:56.000 1975-09-28 2024-10-11 00:34:56 +2097 2097 2098 209.7 419.40000000000003 2097 1975-09-29 2024-10-11 00:34:57.000 1975-09-29 2024-10-11 00:34:57 +2098 2098 2099 209.8 419.6 2098 1975-09-30 2024-10-11 00:34:58.000 1975-09-30 2024-10-11 00:34:58 +2099 2099 2100 209.9 419.8 2099 1975-10-01 2024-10-11 00:34:59.000 1975-10-01 2024-10-11 00:34:59 +2101 2101 2102 210.1 420.20000000000005 2101 1975-10-03 2024-10-11 00:35:01.000 1975-10-03 2024-10-11 00:35:01 +2102 2102 2103 210.2 420.40000000000003 2102 1975-10-04 2024-10-11 00:35:02.000 1975-10-04 2024-10-11 00:35:02 +2103 2103 2104 210.3 420.6 2103 1975-10-05 2024-10-11 00:35:03.000 1975-10-05 2024-10-11 00:35:03 +2104 2104 2105 210.4 420.8 2104 1975-10-06 2024-10-11 00:35:04.000 1975-10-06 2024-10-11 00:35:04 +2106 2106 2107 210.6 421.20000000000005 2106 1975-10-08 2024-10-11 00:35:06.000 1975-10-08 2024-10-11 00:35:06 +2107 2107 2108 210.7 421.40000000000003 2107 1975-10-09 2024-10-11 00:35:07.000 1975-10-09 2024-10-11 00:35:07 +2108 2108 2109 210.8 421.6 2108 1975-10-10 2024-10-11 00:35:08.000 1975-10-10 2024-10-11 00:35:08 +2109 2109 2110 210.9 421.8 2109 1975-10-11 2024-10-11 00:35:09.000 1975-10-11 2024-10-11 00:35:09 +2111 2111 2112 211.1 422.20000000000005 2111 1975-10-13 2024-10-11 00:35:11.000 1975-10-13 2024-10-11 00:35:11 +2112 2112 2113 211.2 422.40000000000003 2112 1975-10-14 2024-10-11 00:35:12.000 1975-10-14 2024-10-11 00:35:12 +2113 2113 2114 211.3 422.6 2113 1975-10-15 2024-10-11 00:35:13.000 1975-10-15 2024-10-11 00:35:13 +2114 2114 2115 211.4 422.8 2114 1975-10-16 2024-10-11 00:35:14.000 1975-10-16 2024-10-11 00:35:14 +2116 2116 2117 211.6 423.20000000000005 2116 1975-10-18 2024-10-11 00:35:16.000 1975-10-18 2024-10-11 00:35:16 +2117 2117 2118 211.7 423.40000000000003 2117 1975-10-19 2024-10-11 00:35:17.000 1975-10-19 2024-10-11 00:35:17 +2118 2118 2119 211.8 423.6 2118 1975-10-20 2024-10-11 00:35:18.000 1975-10-20 2024-10-11 00:35:18 +2119 2119 2120 211.9 423.8 2119 1975-10-21 2024-10-11 00:35:19.000 1975-10-21 2024-10-11 00:35:19 +2121 2121 2122 212.1 424.20000000000005 2121 1975-10-23 2024-10-11 00:35:21.000 1975-10-23 2024-10-11 00:35:21 +2122 2122 2123 212.2 424.40000000000003 2122 1975-10-24 2024-10-11 00:35:22.000 1975-10-24 2024-10-11 00:35:22 +2123 2123 2124 212.3 424.6 2123 1975-10-25 2024-10-11 00:35:23.000 1975-10-25 2024-10-11 00:35:23 +2124 2124 2125 212.4 424.8 2124 1975-10-26 2024-10-11 00:35:24.000 1975-10-26 2024-10-11 00:35:24 +2126 2126 2127 212.6 425.20000000000005 2126 1975-10-28 2024-10-11 00:35:26.000 1975-10-28 2024-10-11 00:35:26 +2127 2127 2128 212.7 425.40000000000003 2127 1975-10-29 2024-10-11 00:35:27.000 1975-10-29 2024-10-11 00:35:27 +2128 2128 2129 212.8 425.6 2128 1975-10-30 2024-10-11 00:35:28.000 1975-10-30 2024-10-11 00:35:28 +2129 2129 2130 212.9 425.8 2129 1975-10-31 2024-10-11 00:35:29.000 1975-10-31 2024-10-11 00:35:29 +2131 2131 2132 213.1 426.20000000000005 2131 1975-11-02 2024-10-11 00:35:31.000 1975-11-02 2024-10-11 00:35:31 +2132 2132 2133 213.2 426.40000000000003 2132 1975-11-03 2024-10-11 00:35:32.000 1975-11-03 2024-10-11 00:35:32 +2133 2133 2134 213.3 426.6 2133 1975-11-04 2024-10-11 00:35:33.000 1975-11-04 2024-10-11 00:35:33 +2134 2134 2135 213.4 426.8 2134 1975-11-05 2024-10-11 00:35:34.000 1975-11-05 2024-10-11 00:35:34 +2136 2136 2137 213.6 427.20000000000005 2136 1975-11-07 2024-10-11 00:35:36.000 1975-11-07 2024-10-11 00:35:36 +2137 2137 2138 213.7 427.40000000000003 2137 1975-11-08 2024-10-11 00:35:37.000 1975-11-08 2024-10-11 00:35:37 +2138 2138 2139 213.8 427.6 2138 1975-11-09 2024-10-11 00:35:38.000 1975-11-09 2024-10-11 00:35:38 +2139 2139 2140 213.9 427.8 2139 1975-11-10 2024-10-11 00:35:39.000 1975-11-10 2024-10-11 00:35:39 +2141 2141 2142 214.1 428.20000000000005 2141 1975-11-12 2024-10-11 00:35:41.000 1975-11-12 2024-10-11 00:35:41 +2142 2142 2143 214.2 428.40000000000003 2142 1975-11-13 2024-10-11 00:35:42.000 1975-11-13 2024-10-11 00:35:42 +2143 2143 2144 214.3 428.6 2143 1975-11-14 2024-10-11 00:35:43.000 1975-11-14 2024-10-11 00:35:43 +2144 2144 2145 214.4 428.8 2144 1975-11-15 2024-10-11 00:35:44.000 1975-11-15 2024-10-11 00:35:44 +2146 2146 2147 214.6 429.20000000000005 2146 1975-11-17 2024-10-11 00:35:46.000 1975-11-17 2024-10-11 00:35:46 +2147 2147 2148 214.7 429.40000000000003 2147 1975-11-18 2024-10-11 00:35:47.000 1975-11-18 2024-10-11 00:35:47 +2148 2148 2149 214.8 429.6 2148 1975-11-19 2024-10-11 00:35:48.000 1975-11-19 2024-10-11 00:35:48 +2149 2149 2150 214.9 429.8 2149 1975-11-20 2024-10-11 00:35:49.000 1975-11-20 2024-10-11 00:35:49 +2151 2151 2152 215.1 430.20000000000005 2151 1975-11-22 2024-10-11 00:35:51.000 1975-11-22 2024-10-11 00:35:51 +2152 2152 2153 215.2 430.40000000000003 2152 1975-11-23 2024-10-11 00:35:52.000 1975-11-23 2024-10-11 00:35:52 +2153 2153 2154 215.3 430.6 2153 1975-11-24 2024-10-11 00:35:53.000 1975-11-24 2024-10-11 00:35:53 +2154 2154 2155 215.4 430.8 2154 1975-11-25 2024-10-11 00:35:54.000 1975-11-25 2024-10-11 00:35:54 +2156 2156 2157 215.6 431.20000000000005 2156 1975-11-27 2024-10-11 00:35:56.000 1975-11-27 2024-10-11 00:35:56 +2157 2157 2158 215.7 431.40000000000003 2157 1975-11-28 2024-10-11 00:35:57.000 1975-11-28 2024-10-11 00:35:57 +2158 2158 2159 215.8 431.6 2158 1975-11-29 2024-10-11 00:35:58.000 1975-11-29 2024-10-11 00:35:58 +2159 2159 2160 215.9 431.8 2159 1975-11-30 2024-10-11 00:35:59.000 1975-11-30 2024-10-11 00:35:59 +2161 2161 2162 216.1 432.20000000000005 2161 1975-12-02 2024-10-11 00:36:01.000 1975-12-02 2024-10-11 00:36:01 +2162 2162 2163 216.2 432.40000000000003 2162 1975-12-03 2024-10-11 00:36:02.000 1975-12-03 2024-10-11 00:36:02 +2163 2163 2164 216.3 432.6 2163 1975-12-04 2024-10-11 00:36:03.000 1975-12-04 2024-10-11 00:36:03 +2164 2164 2165 216.4 432.8 2164 1975-12-05 2024-10-11 00:36:04.000 1975-12-05 2024-10-11 00:36:04 +2166 2166 2167 216.6 433.20000000000005 2166 1975-12-07 2024-10-11 00:36:06.000 1975-12-07 2024-10-11 00:36:06 +2167 2167 2168 216.7 433.40000000000003 2167 1975-12-08 2024-10-11 00:36:07.000 1975-12-08 2024-10-11 00:36:07 +2168 2168 2169 216.8 433.6 2168 1975-12-09 2024-10-11 00:36:08.000 1975-12-09 2024-10-11 00:36:08 +2169 2169 2170 216.9 433.8 2169 1975-12-10 2024-10-11 00:36:09.000 1975-12-10 2024-10-11 00:36:09 +2171 2171 2172 217.1 434.20000000000005 2171 1975-12-12 2024-10-11 00:36:11.000 1975-12-12 2024-10-11 00:36:11 +2172 2172 2173 217.2 434.40000000000003 2172 1975-12-13 2024-10-11 00:36:12.000 1975-12-13 2024-10-11 00:36:12 +2173 2173 2174 217.3 434.6 2173 1975-12-14 2024-10-11 00:36:13.000 1975-12-14 2024-10-11 00:36:13 +2174 2174 2175 217.4 434.8 2174 1975-12-15 2024-10-11 00:36:14.000 1975-12-15 2024-10-11 00:36:14 +2176 2176 2177 217.6 435.20000000000005 2176 1975-12-17 2024-10-11 00:36:16.000 1975-12-17 2024-10-11 00:36:16 +2177 2177 2178 217.7 435.40000000000003 2177 1975-12-18 2024-10-11 00:36:17.000 1975-12-18 2024-10-11 00:36:17 +2178 2178 2179 217.8 435.6 2178 1975-12-19 2024-10-11 00:36:18.000 1975-12-19 2024-10-11 00:36:18 +2179 2179 2180 217.9 435.8 2179 1975-12-20 2024-10-11 00:36:19.000 1975-12-20 2024-10-11 00:36:19 +2181 2181 2182 218.1 436.20000000000005 2181 1975-12-22 2024-10-11 00:36:21.000 1975-12-22 2024-10-11 00:36:21 +2182 2182 2183 218.2 436.40000000000003 2182 1975-12-23 2024-10-11 00:36:22.000 1975-12-23 2024-10-11 00:36:22 +2183 2183 2184 218.3 436.6 2183 1975-12-24 2024-10-11 00:36:23.000 1975-12-24 2024-10-11 00:36:23 +2184 2184 2185 218.4 436.8 2184 1975-12-25 2024-10-11 00:36:24.000 1975-12-25 2024-10-11 00:36:24 +2186 2186 2187 218.6 437.20000000000005 2186 1975-12-27 2024-10-11 00:36:26.000 1975-12-27 2024-10-11 00:36:26 +2187 2187 2188 218.7 437.40000000000003 2187 1975-12-28 2024-10-11 00:36:27.000 1975-12-28 2024-10-11 00:36:27 +2188 2188 2189 218.8 437.6 2188 1975-12-29 2024-10-11 00:36:28.000 1975-12-29 2024-10-11 00:36:28 +2189 2189 2190 218.9 437.8 2189 1975-12-30 2024-10-11 00:36:29.000 1975-12-30 2024-10-11 00:36:29 +2191 2191 2192 219.1 438.20000000000005 2191 1976-01-01 2024-10-11 00:36:31.000 1976-01-01 2024-10-11 00:36:31 +2192 2192 2193 219.2 438.40000000000003 2192 1976-01-02 2024-10-11 00:36:32.000 1976-01-02 2024-10-11 00:36:32 +2193 2193 2194 219.3 438.6 2193 1976-01-03 2024-10-11 00:36:33.000 1976-01-03 2024-10-11 00:36:33 +2194 2194 2195 219.4 438.8 2194 1976-01-04 2024-10-11 00:36:34.000 1976-01-04 2024-10-11 00:36:34 +2196 2196 2197 219.6 439.20000000000005 2196 1976-01-06 2024-10-11 00:36:36.000 1976-01-06 2024-10-11 00:36:36 +2197 2197 2198 219.7 439.40000000000003 2197 1976-01-07 2024-10-11 00:36:37.000 1976-01-07 2024-10-11 00:36:37 +2198 2198 2199 219.8 439.6 2198 1976-01-08 2024-10-11 00:36:38.000 1976-01-08 2024-10-11 00:36:38 +2199 2199 2200 219.9 439.8 2199 1976-01-09 2024-10-11 00:36:39.000 1976-01-09 2024-10-11 00:36:39 +2201 2201 2202 220.1 440.20000000000005 2201 1976-01-11 2024-10-11 00:36:41.000 1976-01-11 2024-10-11 00:36:41 +2202 2202 2203 220.2 440.40000000000003 2202 1976-01-12 2024-10-11 00:36:42.000 1976-01-12 2024-10-11 00:36:42 +2203 2203 2204 220.3 440.6 2203 1976-01-13 2024-10-11 00:36:43.000 1976-01-13 2024-10-11 00:36:43 +2204 2204 2205 220.4 440.8 2204 1976-01-14 2024-10-11 00:36:44.000 1976-01-14 2024-10-11 00:36:44 +2206 2206 2207 220.6 441.20000000000005 2206 1976-01-16 2024-10-11 00:36:46.000 1976-01-16 2024-10-11 00:36:46 +2207 2207 2208 220.7 441.40000000000003 2207 1976-01-17 2024-10-11 00:36:47.000 1976-01-17 2024-10-11 00:36:47 +2208 2208 2209 220.8 441.6 2208 1976-01-18 2024-10-11 00:36:48.000 1976-01-18 2024-10-11 00:36:48 +2209 2209 2210 220.9 441.8 2209 1976-01-19 2024-10-11 00:36:49.000 1976-01-19 2024-10-11 00:36:49 +2211 2211 2212 221.1 442.20000000000005 2211 1976-01-21 2024-10-11 00:36:51.000 1976-01-21 2024-10-11 00:36:51 +2212 2212 2213 221.2 442.40000000000003 2212 1976-01-22 2024-10-11 00:36:52.000 1976-01-22 2024-10-11 00:36:52 +2213 2213 2214 221.3 442.6 2213 1976-01-23 2024-10-11 00:36:53.000 1976-01-23 2024-10-11 00:36:53 +2214 2214 2215 221.4 442.8 2214 1976-01-24 2024-10-11 00:36:54.000 1976-01-24 2024-10-11 00:36:54 +2216 2216 2217 221.6 443.20000000000005 2216 1976-01-26 2024-10-11 00:36:56.000 1976-01-26 2024-10-11 00:36:56 +2217 2217 2218 221.7 443.40000000000003 2217 1976-01-27 2024-10-11 00:36:57.000 1976-01-27 2024-10-11 00:36:57 +2218 2218 2219 221.8 443.6 2218 1976-01-28 2024-10-11 00:36:58.000 1976-01-28 2024-10-11 00:36:58 +2219 2219 2220 221.9 443.8 2219 1976-01-29 2024-10-11 00:36:59.000 1976-01-29 2024-10-11 00:36:59 +2221 2221 2222 222.1 444.20000000000005 2221 1976-01-31 2024-10-11 00:37:01.000 1976-01-31 2024-10-11 00:37:01 +2222 2222 2223 222.2 444.40000000000003 2222 1976-02-01 2024-10-11 00:37:02.000 1976-02-01 2024-10-11 00:37:02 +2223 2223 2224 222.3 444.6 2223 1976-02-02 2024-10-11 00:37:03.000 1976-02-02 2024-10-11 00:37:03 +2224 2224 2225 222.4 444.8 2224 1976-02-03 2024-10-11 00:37:04.000 1976-02-03 2024-10-11 00:37:04 +2226 2226 2227 222.6 445.20000000000005 2226 1976-02-05 2024-10-11 00:37:06.000 1976-02-05 2024-10-11 00:37:06 +2227 2227 2228 222.7 445.40000000000003 2227 1976-02-06 2024-10-11 00:37:07.000 1976-02-06 2024-10-11 00:37:07 +2228 2228 2229 222.8 445.6 2228 1976-02-07 2024-10-11 00:37:08.000 1976-02-07 2024-10-11 00:37:08 +2229 2229 2230 222.9 445.8 2229 1976-02-08 2024-10-11 00:37:09.000 1976-02-08 2024-10-11 00:37:09 +2231 2231 2232 223.1 446.20000000000005 2231 1976-02-10 2024-10-11 00:37:11.000 1976-02-10 2024-10-11 00:37:11 +2232 2232 2233 223.2 446.40000000000003 2232 1976-02-11 2024-10-11 00:37:12.000 1976-02-11 2024-10-11 00:37:12 +2233 2233 2234 223.3 446.6 2233 1976-02-12 2024-10-11 00:37:13.000 1976-02-12 2024-10-11 00:37:13 +2234 2234 2235 223.4 446.8 2234 1976-02-13 2024-10-11 00:37:14.000 1976-02-13 2024-10-11 00:37:14 +2236 2236 2237 223.6 447.20000000000005 2236 1976-02-15 2024-10-11 00:37:16.000 1976-02-15 2024-10-11 00:37:16 +2237 2237 2238 223.7 447.40000000000003 2237 1976-02-16 2024-10-11 00:37:17.000 1976-02-16 2024-10-11 00:37:17 +2238 2238 2239 223.8 447.6 2238 1976-02-17 2024-10-11 00:37:18.000 1976-02-17 2024-10-11 00:37:18 +2239 2239 2240 223.9 447.8 2239 1976-02-18 2024-10-11 00:37:19.000 1976-02-18 2024-10-11 00:37:19 +2241 2241 2242 224.1 448.20000000000005 2241 1976-02-20 2024-10-11 00:37:21.000 1976-02-20 2024-10-11 00:37:21 +2242 2242 2243 224.2 448.40000000000003 2242 1976-02-21 2024-10-11 00:37:22.000 1976-02-21 2024-10-11 00:37:22 +2243 2243 2244 224.3 448.6 2243 1976-02-22 2024-10-11 00:37:23.000 1976-02-22 2024-10-11 00:37:23 +2244 2244 2245 224.4 448.8 2244 1976-02-23 2024-10-11 00:37:24.000 1976-02-23 2024-10-11 00:37:24 +2246 2246 2247 224.6 449.20000000000005 2246 1976-02-25 2024-10-11 00:37:26.000 1976-02-25 2024-10-11 00:37:26 +2247 2247 2248 224.7 449.40000000000003 2247 1976-02-26 2024-10-11 00:37:27.000 1976-02-26 2024-10-11 00:37:27 +2248 2248 2249 224.8 449.6 2248 1976-02-27 2024-10-11 00:37:28.000 1976-02-27 2024-10-11 00:37:28 +2249 2249 2250 224.9 449.8 2249 1976-02-28 2024-10-11 00:37:29.000 1976-02-28 2024-10-11 00:37:29 +2251 2251 2252 225.1 450.20000000000005 2251 1976-03-01 2024-10-11 00:37:31.000 1976-03-01 2024-10-11 00:37:31 +2252 2252 2253 225.2 450.40000000000003 2252 1976-03-02 2024-10-11 00:37:32.000 1976-03-02 2024-10-11 00:37:32 +2253 2253 2254 225.3 450.6 2253 1976-03-03 2024-10-11 00:37:33.000 1976-03-03 2024-10-11 00:37:33 +2254 2254 2255 225.4 450.8 2254 1976-03-04 2024-10-11 00:37:34.000 1976-03-04 2024-10-11 00:37:34 +2256 2256 2257 225.6 451.20000000000005 2256 1976-03-06 2024-10-11 00:37:36.000 1976-03-06 2024-10-11 00:37:36 +2257 2257 2258 225.7 451.40000000000003 2257 1976-03-07 2024-10-11 00:37:37.000 1976-03-07 2024-10-11 00:37:37 +2258 2258 2259 225.8 451.6 2258 1976-03-08 2024-10-11 00:37:38.000 1976-03-08 2024-10-11 00:37:38 +2259 2259 2260 225.9 451.8 2259 1976-03-09 2024-10-11 00:37:39.000 1976-03-09 2024-10-11 00:37:39 +2261 2261 2262 226.1 452.20000000000005 2261 1976-03-11 2024-10-11 00:37:41.000 1976-03-11 2024-10-11 00:37:41 +2262 2262 2263 226.2 452.40000000000003 2262 1976-03-12 2024-10-11 00:37:42.000 1976-03-12 2024-10-11 00:37:42 +2263 2263 2264 226.3 452.6 2263 1976-03-13 2024-10-11 00:37:43.000 1976-03-13 2024-10-11 00:37:43 +2264 2264 2265 226.4 452.8 2264 1976-03-14 2024-10-11 00:37:44.000 1976-03-14 2024-10-11 00:37:44 +2266 2266 2267 226.6 453.20000000000005 2266 1976-03-16 2024-10-11 00:37:46.000 1976-03-16 2024-10-11 00:37:46 +2267 2267 2268 226.7 453.40000000000003 2267 1976-03-17 2024-10-11 00:37:47.000 1976-03-17 2024-10-11 00:37:47 +2268 2268 2269 226.8 453.6 2268 1976-03-18 2024-10-11 00:37:48.000 1976-03-18 2024-10-11 00:37:48 +2269 2269 2270 226.9 453.8 2269 1976-03-19 2024-10-11 00:37:49.000 1976-03-19 2024-10-11 00:37:49 +2271 2271 2272 227.1 454.20000000000005 2271 1976-03-21 2024-10-11 00:37:51.000 1976-03-21 2024-10-11 00:37:51 +2272 2272 2273 227.2 454.40000000000003 2272 1976-03-22 2024-10-11 00:37:52.000 1976-03-22 2024-10-11 00:37:52 +2273 2273 2274 227.3 454.6 2273 1976-03-23 2024-10-11 00:37:53.000 1976-03-23 2024-10-11 00:37:53 +2274 2274 2275 227.4 454.8 2274 1976-03-24 2024-10-11 00:37:54.000 1976-03-24 2024-10-11 00:37:54 +2276 2276 2277 227.6 455.20000000000005 2276 1976-03-26 2024-10-11 00:37:56.000 1976-03-26 2024-10-11 00:37:56 +2277 2277 2278 227.7 455.40000000000003 2277 1976-03-27 2024-10-11 00:37:57.000 1976-03-27 2024-10-11 00:37:57 +2278 2278 2279 227.8 455.6 2278 1976-03-28 2024-10-11 00:37:58.000 1976-03-28 2024-10-11 00:37:58 +2279 2279 2280 227.9 455.8 2279 1976-03-29 2024-10-11 00:37:59.000 1976-03-29 2024-10-11 00:37:59 +2281 2281 2282 228.1 456.20000000000005 2281 1976-03-31 2024-10-11 00:38:01.000 1976-03-31 2024-10-11 00:38:01 +2282 2282 2283 228.2 456.40000000000003 2282 1976-04-01 2024-10-11 00:38:02.000 1976-04-01 2024-10-11 00:38:02 +2283 2283 2284 228.3 456.6 2283 1976-04-02 2024-10-11 00:38:03.000 1976-04-02 2024-10-11 00:38:03 +2284 2284 2285 228.4 456.8 2284 1976-04-03 2024-10-11 00:38:04.000 1976-04-03 2024-10-11 00:38:04 +2286 2286 2287 228.6 457.20000000000005 2286 1976-04-05 2024-10-11 00:38:06.000 1976-04-05 2024-10-11 00:38:06 +2287 2287 2288 228.7 457.40000000000003 2287 1976-04-06 2024-10-11 00:38:07.000 1976-04-06 2024-10-11 00:38:07 +2288 2288 2289 228.8 457.6 2288 1976-04-07 2024-10-11 00:38:08.000 1976-04-07 2024-10-11 00:38:08 +2289 2289 2290 228.9 457.8 2289 1976-04-08 2024-10-11 00:38:09.000 1976-04-08 2024-10-11 00:38:09 +2291 2291 2292 229.1 458.20000000000005 2291 1976-04-10 2024-10-11 00:38:11.000 1976-04-10 2024-10-11 00:38:11 +2292 2292 2293 229.2 458.40000000000003 2292 1976-04-11 2024-10-11 00:38:12.000 1976-04-11 2024-10-11 00:38:12 +2293 2293 2294 229.3 458.6 2293 1976-04-12 2024-10-11 00:38:13.000 1976-04-12 2024-10-11 00:38:13 +2294 2294 2295 229.4 458.8 2294 1976-04-13 2024-10-11 00:38:14.000 1976-04-13 2024-10-11 00:38:14 +2296 2296 2297 229.6 459.20000000000005 2296 1976-04-15 2024-10-11 00:38:16.000 1976-04-15 2024-10-11 00:38:16 +2297 2297 2298 229.7 459.40000000000003 2297 1976-04-16 2024-10-11 00:38:17.000 1976-04-16 2024-10-11 00:38:17 +2298 2298 2299 229.8 459.6 2298 1976-04-17 2024-10-11 00:38:18.000 1976-04-17 2024-10-11 00:38:18 +2299 2299 2300 229.9 459.8 2299 1976-04-18 2024-10-11 00:38:19.000 1976-04-18 2024-10-11 00:38:19 +2301 2301 2302 230.1 460.20000000000005 2301 1976-04-20 2024-10-11 00:38:21.000 1976-04-20 2024-10-11 00:38:21 +2302 2302 2303 230.2 460.40000000000003 2302 1976-04-21 2024-10-11 00:38:22.000 1976-04-21 2024-10-11 00:38:22 +2303 2303 2304 230.3 460.6 2303 1976-04-22 2024-10-11 00:38:23.000 1976-04-22 2024-10-11 00:38:23 +2304 2304 2305 230.4 460.8 2304 1976-04-23 2024-10-11 00:38:24.000 1976-04-23 2024-10-11 00:38:24 +2306 2306 2307 230.6 461.20000000000005 2306 1976-04-25 2024-10-11 00:38:26.000 1976-04-25 2024-10-11 00:38:26 +2307 2307 2308 230.7 461.40000000000003 2307 1976-04-26 2024-10-11 00:38:27.000 1976-04-26 2024-10-11 00:38:27 +2308 2308 2309 230.8 461.6 2308 1976-04-27 2024-10-11 00:38:28.000 1976-04-27 2024-10-11 00:38:28 +2309 2309 2310 230.9 461.8 2309 1976-04-28 2024-10-11 00:38:29.000 1976-04-28 2024-10-11 00:38:29 +2311 2311 2312 231.1 462.20000000000005 2311 1976-04-30 2024-10-11 00:38:31.000 1976-04-30 2024-10-11 00:38:31 +2312 2312 2313 231.2 462.40000000000003 2312 1976-05-01 2024-10-11 00:38:32.000 1976-05-01 2024-10-11 00:38:32 +2313 2313 2314 231.3 462.6 2313 1976-05-02 2024-10-11 00:38:33.000 1976-05-02 2024-10-11 00:38:33 +2314 2314 2315 231.4 462.8 2314 1976-05-03 2024-10-11 00:38:34.000 1976-05-03 2024-10-11 00:38:34 +2316 2316 2317 231.6 463.20000000000005 2316 1976-05-05 2024-10-11 00:38:36.000 1976-05-05 2024-10-11 00:38:36 +2317 2317 2318 231.7 463.40000000000003 2317 1976-05-06 2024-10-11 00:38:37.000 1976-05-06 2024-10-11 00:38:37 +2318 2318 2319 231.8 463.6 2318 1976-05-07 2024-10-11 00:38:38.000 1976-05-07 2024-10-11 00:38:38 +2319 2319 2320 231.9 463.8 2319 1976-05-08 2024-10-11 00:38:39.000 1976-05-08 2024-10-11 00:38:39 +2321 2321 2322 232.1 464.20000000000005 2321 1976-05-10 2024-10-11 00:38:41.000 1976-05-10 2024-10-11 00:38:41 +2322 2322 2323 232.2 464.40000000000003 2322 1976-05-11 2024-10-11 00:38:42.000 1976-05-11 2024-10-11 00:38:42 +2323 2323 2324 232.3 464.6 2323 1976-05-12 2024-10-11 00:38:43.000 1976-05-12 2024-10-11 00:38:43 +2324 2324 2325 232.4 464.8 2324 1976-05-13 2024-10-11 00:38:44.000 1976-05-13 2024-10-11 00:38:44 +2326 2326 2327 232.6 465.20000000000005 2326 1976-05-15 2024-10-11 00:38:46.000 1976-05-15 2024-10-11 00:38:46 +2327 2327 2328 232.7 465.40000000000003 2327 1976-05-16 2024-10-11 00:38:47.000 1976-05-16 2024-10-11 00:38:47 +2328 2328 2329 232.8 465.6 2328 1976-05-17 2024-10-11 00:38:48.000 1976-05-17 2024-10-11 00:38:48 +2329 2329 2330 232.9 465.8 2329 1976-05-18 2024-10-11 00:38:49.000 1976-05-18 2024-10-11 00:38:49 +2331 2331 2332 233.1 466.20000000000005 2331 1976-05-20 2024-10-11 00:38:51.000 1976-05-20 2024-10-11 00:38:51 +2332 2332 2333 233.2 466.40000000000003 2332 1976-05-21 2024-10-11 00:38:52.000 1976-05-21 2024-10-11 00:38:52 +2333 2333 2334 233.3 466.6 2333 1976-05-22 2024-10-11 00:38:53.000 1976-05-22 2024-10-11 00:38:53 +2334 2334 2335 233.4 466.8 2334 1976-05-23 2024-10-11 00:38:54.000 1976-05-23 2024-10-11 00:38:54 +2336 2336 2337 233.6 467.20000000000005 2336 1976-05-25 2024-10-11 00:38:56.000 1976-05-25 2024-10-11 00:38:56 +2337 2337 2338 233.7 467.40000000000003 2337 1976-05-26 2024-10-11 00:38:57.000 1976-05-26 2024-10-11 00:38:57 +2338 2338 2339 233.8 467.6 2338 1976-05-27 2024-10-11 00:38:58.000 1976-05-27 2024-10-11 00:38:58 +2339 2339 2340 233.9 467.8 2339 1976-05-28 2024-10-11 00:38:59.000 1976-05-28 2024-10-11 00:38:59 +2341 2341 2342 234.1 468.20000000000005 2341 1976-05-30 2024-10-11 00:39:01.000 1976-05-30 2024-10-11 00:39:01 +2342 2342 2343 234.2 468.40000000000003 2342 1976-05-31 2024-10-11 00:39:02.000 1976-05-31 2024-10-11 00:39:02 +2343 2343 2344 234.3 468.6 2343 1976-06-01 2024-10-11 00:39:03.000 1976-06-01 2024-10-11 00:39:03 +2344 2344 2345 234.4 468.8 2344 1976-06-02 2024-10-11 00:39:04.000 1976-06-02 2024-10-11 00:39:04 +2346 2346 2347 234.6 469.20000000000005 2346 1976-06-04 2024-10-11 00:39:06.000 1976-06-04 2024-10-11 00:39:06 +2347 2347 2348 234.7 469.40000000000003 2347 1976-06-05 2024-10-11 00:39:07.000 1976-06-05 2024-10-11 00:39:07 +2348 2348 2349 234.8 469.6 2348 1976-06-06 2024-10-11 00:39:08.000 1976-06-06 2024-10-11 00:39:08 +2349 2349 2350 234.9 469.8 2349 1976-06-07 2024-10-11 00:39:09.000 1976-06-07 2024-10-11 00:39:09 +2351 2351 2352 235.1 470.20000000000005 2351 1976-06-09 2024-10-11 00:39:11.000 1976-06-09 2024-10-11 00:39:11 +2352 2352 2353 235.2 470.40000000000003 2352 1976-06-10 2024-10-11 00:39:12.000 1976-06-10 2024-10-11 00:39:12 +2353 2353 2354 235.3 470.6 2353 1976-06-11 2024-10-11 00:39:13.000 1976-06-11 2024-10-11 00:39:13 +2354 2354 2355 235.4 470.8 2354 1976-06-12 2024-10-11 00:39:14.000 1976-06-12 2024-10-11 00:39:14 +2356 2356 2357 235.6 471.20000000000005 2356 1976-06-14 2024-10-11 00:39:16.000 1976-06-14 2024-10-11 00:39:16 +2357 2357 2358 235.7 471.40000000000003 2357 1976-06-15 2024-10-11 00:39:17.000 1976-06-15 2024-10-11 00:39:17 +2358 2358 2359 235.8 471.6 2358 1976-06-16 2024-10-11 00:39:18.000 1976-06-16 2024-10-11 00:39:18 +2359 2359 2360 235.9 471.8 2359 1976-06-17 2024-10-11 00:39:19.000 1976-06-17 2024-10-11 00:39:19 +2361 2361 2362 236.1 472.20000000000005 2361 1976-06-19 2024-10-11 00:39:21.000 1976-06-19 2024-10-11 00:39:21 +2362 2362 2363 236.2 472.40000000000003 2362 1976-06-20 2024-10-11 00:39:22.000 1976-06-20 2024-10-11 00:39:22 +2363 2363 2364 236.3 472.6 2363 1976-06-21 2024-10-11 00:39:23.000 1976-06-21 2024-10-11 00:39:23 +2364 2364 2365 236.4 472.8 2364 1976-06-22 2024-10-11 00:39:24.000 1976-06-22 2024-10-11 00:39:24 +2366 2366 2367 236.6 473.20000000000005 2366 1976-06-24 2024-10-11 00:39:26.000 1976-06-24 2024-10-11 00:39:26 +2367 2367 2368 236.7 473.40000000000003 2367 1976-06-25 2024-10-11 00:39:27.000 1976-06-25 2024-10-11 00:39:27 +2368 2368 2369 236.8 473.6 2368 1976-06-26 2024-10-11 00:39:28.000 1976-06-26 2024-10-11 00:39:28 +2369 2369 2370 236.9 473.8 2369 1976-06-27 2024-10-11 00:39:29.000 1976-06-27 2024-10-11 00:39:29 +2371 2371 2372 237.1 474.20000000000005 2371 1976-06-29 2024-10-11 00:39:31.000 1976-06-29 2024-10-11 00:39:31 +2372 2372 2373 237.2 474.40000000000003 2372 1976-06-30 2024-10-11 00:39:32.000 1976-06-30 2024-10-11 00:39:32 +2373 2373 2374 237.3 474.6 2373 1976-07-01 2024-10-11 00:39:33.000 1976-07-01 2024-10-11 00:39:33 +2374 2374 2375 237.4 474.8 2374 1976-07-02 2024-10-11 00:39:34.000 1976-07-02 2024-10-11 00:39:34 +2376 2376 2377 237.6 475.20000000000005 2376 1976-07-04 2024-10-11 00:39:36.000 1976-07-04 2024-10-11 00:39:36 +2377 2377 2378 237.7 475.40000000000003 2377 1976-07-05 2024-10-11 00:39:37.000 1976-07-05 2024-10-11 00:39:37 +2378 2378 2379 237.8 475.6 2378 1976-07-06 2024-10-11 00:39:38.000 1976-07-06 2024-10-11 00:39:38 +2379 2379 2380 237.9 475.8 2379 1976-07-07 2024-10-11 00:39:39.000 1976-07-07 2024-10-11 00:39:39 +2381 2381 2382 238.1 476.20000000000005 2381 1976-07-09 2024-10-11 00:39:41.000 1976-07-09 2024-10-11 00:39:41 +2382 2382 2383 238.2 476.40000000000003 2382 1976-07-10 2024-10-11 00:39:42.000 1976-07-10 2024-10-11 00:39:42 +2383 2383 2384 238.3 476.6 2383 1976-07-11 2024-10-11 00:39:43.000 1976-07-11 2024-10-11 00:39:43 +2384 2384 2385 238.4 476.8 2384 1976-07-12 2024-10-11 00:39:44.000 1976-07-12 2024-10-11 00:39:44 +2386 2386 2387 238.6 477.20000000000005 2386 1976-07-14 2024-10-11 00:39:46.000 1976-07-14 2024-10-11 00:39:46 +2387 2387 2388 238.7 477.40000000000003 2387 1976-07-15 2024-10-11 00:39:47.000 1976-07-15 2024-10-11 00:39:47 +2388 2388 2389 238.8 477.6 2388 1976-07-16 2024-10-11 00:39:48.000 1976-07-16 2024-10-11 00:39:48 +2389 2389 2390 238.9 477.8 2389 1976-07-17 2024-10-11 00:39:49.000 1976-07-17 2024-10-11 00:39:49 +2391 2391 2392 239.1 478.20000000000005 2391 1976-07-19 2024-10-11 00:39:51.000 1976-07-19 2024-10-11 00:39:51 +2392 2392 2393 239.2 478.40000000000003 2392 1976-07-20 2024-10-11 00:39:52.000 1976-07-20 2024-10-11 00:39:52 +2393 2393 2394 239.3 478.6 2393 1976-07-21 2024-10-11 00:39:53.000 1976-07-21 2024-10-11 00:39:53 +2394 2394 2395 239.4 478.8 2394 1976-07-22 2024-10-11 00:39:54.000 1976-07-22 2024-10-11 00:39:54 +2396 2396 2397 239.6 479.20000000000005 2396 1976-07-24 2024-10-11 00:39:56.000 1976-07-24 2024-10-11 00:39:56 +2397 2397 2398 239.7 479.40000000000003 2397 1976-07-25 2024-10-11 00:39:57.000 1976-07-25 2024-10-11 00:39:57 +2398 2398 2399 239.8 479.6 2398 1976-07-26 2024-10-11 00:39:58.000 1976-07-26 2024-10-11 00:39:58 +2399 2399 2400 239.9 479.8 2399 1976-07-27 2024-10-11 00:39:59.000 1976-07-27 2024-10-11 00:39:59 +2401 2401 2402 240.1 480.20000000000005 2401 1976-07-29 2024-10-11 00:40:01.000 1976-07-29 2024-10-11 00:40:01 +2402 2402 2403 240.2 480.40000000000003 2402 1976-07-30 2024-10-11 00:40:02.000 1976-07-30 2024-10-11 00:40:02 +2403 2403 2404 240.3 480.6 2403 1976-07-31 2024-10-11 00:40:03.000 1976-07-31 2024-10-11 00:40:03 +2404 2404 2405 240.4 480.8 2404 1976-08-01 2024-10-11 00:40:04.000 1976-08-01 2024-10-11 00:40:04 +2406 2406 2407 240.6 481.20000000000005 2406 1976-08-03 2024-10-11 00:40:06.000 1976-08-03 2024-10-11 00:40:06 +2407 2407 2408 240.7 481.40000000000003 2407 1976-08-04 2024-10-11 00:40:07.000 1976-08-04 2024-10-11 00:40:07 +2408 2408 2409 240.8 481.6 2408 1976-08-05 2024-10-11 00:40:08.000 1976-08-05 2024-10-11 00:40:08 +2409 2409 2410 240.9 481.8 2409 1976-08-06 2024-10-11 00:40:09.000 1976-08-06 2024-10-11 00:40:09 +2411 2411 2412 241.1 482.20000000000005 2411 1976-08-08 2024-10-11 00:40:11.000 1976-08-08 2024-10-11 00:40:11 +2412 2412 2413 241.2 482.40000000000003 2412 1976-08-09 2024-10-11 00:40:12.000 1976-08-09 2024-10-11 00:40:12 +2413 2413 2414 241.3 482.6 2413 1976-08-10 2024-10-11 00:40:13.000 1976-08-10 2024-10-11 00:40:13 +2414 2414 2415 241.4 482.8 2414 1976-08-11 2024-10-11 00:40:14.000 1976-08-11 2024-10-11 00:40:14 +2416 2416 2417 241.6 483.20000000000005 2416 1976-08-13 2024-10-11 00:40:16.000 1976-08-13 2024-10-11 00:40:16 +2417 2417 2418 241.7 483.40000000000003 2417 1976-08-14 2024-10-11 00:40:17.000 1976-08-14 2024-10-11 00:40:17 +2418 2418 2419 241.8 483.6 2418 1976-08-15 2024-10-11 00:40:18.000 1976-08-15 2024-10-11 00:40:18 +2419 2419 2420 241.9 483.8 2419 1976-08-16 2024-10-11 00:40:19.000 1976-08-16 2024-10-11 00:40:19 +2421 2421 2422 242.1 484.20000000000005 2421 1976-08-18 2024-10-11 00:40:21.000 1976-08-18 2024-10-11 00:40:21 +2422 2422 2423 242.2 484.40000000000003 2422 1976-08-19 2024-10-11 00:40:22.000 1976-08-19 2024-10-11 00:40:22 +2423 2423 2424 242.3 484.6 2423 1976-08-20 2024-10-11 00:40:23.000 1976-08-20 2024-10-11 00:40:23 +2424 2424 2425 242.4 484.8 2424 1976-08-21 2024-10-11 00:40:24.000 1976-08-21 2024-10-11 00:40:24 +2426 2426 2427 242.6 485.20000000000005 2426 1976-08-23 2024-10-11 00:40:26.000 1976-08-23 2024-10-11 00:40:26 +2427 2427 2428 242.7 485.40000000000003 2427 1976-08-24 2024-10-11 00:40:27.000 1976-08-24 2024-10-11 00:40:27 +2428 2428 2429 242.8 485.6 2428 1976-08-25 2024-10-11 00:40:28.000 1976-08-25 2024-10-11 00:40:28 +2429 2429 2430 242.9 485.8 2429 1976-08-26 2024-10-11 00:40:29.000 1976-08-26 2024-10-11 00:40:29 +2431 2431 2432 243.1 486.20000000000005 2431 1976-08-28 2024-10-11 00:40:31.000 1976-08-28 2024-10-11 00:40:31 +2432 2432 2433 243.2 486.40000000000003 2432 1976-08-29 2024-10-11 00:40:32.000 1976-08-29 2024-10-11 00:40:32 +2433 2433 2434 243.3 486.6 2433 1976-08-30 2024-10-11 00:40:33.000 1976-08-30 2024-10-11 00:40:33 +2434 2434 2435 243.4 486.8 2434 1976-08-31 2024-10-11 00:40:34.000 1976-08-31 2024-10-11 00:40:34 +2436 2436 2437 243.6 487.20000000000005 2436 1976-09-02 2024-10-11 00:40:36.000 1976-09-02 2024-10-11 00:40:36 +2437 2437 2438 243.7 487.40000000000003 2437 1976-09-03 2024-10-11 00:40:37.000 1976-09-03 2024-10-11 00:40:37 +2438 2438 2439 243.8 487.6 2438 1976-09-04 2024-10-11 00:40:38.000 1976-09-04 2024-10-11 00:40:38 +2439 2439 2440 243.9 487.8 2439 1976-09-05 2024-10-11 00:40:39.000 1976-09-05 2024-10-11 00:40:39 +2441 2441 2442 244.1 488.20000000000005 2441 1976-09-07 2024-10-11 00:40:41.000 1976-09-07 2024-10-11 00:40:41 +2442 2442 2443 244.2 488.40000000000003 2442 1976-09-08 2024-10-11 00:40:42.000 1976-09-08 2024-10-11 00:40:42 +2443 2443 2444 244.3 488.6 2443 1976-09-09 2024-10-11 00:40:43.000 1976-09-09 2024-10-11 00:40:43 +2444 2444 2445 244.4 488.8 2444 1976-09-10 2024-10-11 00:40:44.000 1976-09-10 2024-10-11 00:40:44 +2446 2446 2447 244.6 489.20000000000005 2446 1976-09-12 2024-10-11 00:40:46.000 1976-09-12 2024-10-11 00:40:46 +2447 2447 2448 244.7 489.40000000000003 2447 1976-09-13 2024-10-11 00:40:47.000 1976-09-13 2024-10-11 00:40:47 +2448 2448 2449 244.8 489.6 2448 1976-09-14 2024-10-11 00:40:48.000 1976-09-14 2024-10-11 00:40:48 +2449 2449 2450 244.9 489.8 2449 1976-09-15 2024-10-11 00:40:49.000 1976-09-15 2024-10-11 00:40:49 +2451 2451 2452 245.1 490.20000000000005 2451 1976-09-17 2024-10-11 00:40:51.000 1976-09-17 2024-10-11 00:40:51 +2452 2452 2453 245.2 490.40000000000003 2452 1976-09-18 2024-10-11 00:40:52.000 1976-09-18 2024-10-11 00:40:52 +2453 2453 2454 245.3 490.6 2453 1976-09-19 2024-10-11 00:40:53.000 1976-09-19 2024-10-11 00:40:53 +2454 2454 2455 245.4 490.8 2454 1976-09-20 2024-10-11 00:40:54.000 1976-09-20 2024-10-11 00:40:54 +2456 2456 2457 245.6 491.20000000000005 2456 1976-09-22 2024-10-11 00:40:56.000 1976-09-22 2024-10-11 00:40:56 +2457 2457 2458 245.7 491.40000000000003 2457 1976-09-23 2024-10-11 00:40:57.000 1976-09-23 2024-10-11 00:40:57 +2458 2458 2459 245.8 491.6 2458 1976-09-24 2024-10-11 00:40:58.000 1976-09-24 2024-10-11 00:40:58 +2459 2459 2460 245.9 491.8 2459 1976-09-25 2024-10-11 00:40:59.000 1976-09-25 2024-10-11 00:40:59 +2461 2461 2462 246.1 492.20000000000005 2461 1976-09-27 2024-10-11 00:41:01.000 1976-09-27 2024-10-11 00:41:01 +2462 2462 2463 246.2 492.40000000000003 2462 1976-09-28 2024-10-11 00:41:02.000 1976-09-28 2024-10-11 00:41:02 +2463 2463 2464 246.3 492.6 2463 1976-09-29 2024-10-11 00:41:03.000 1976-09-29 2024-10-11 00:41:03 +2464 2464 2465 246.4 492.8 2464 1976-09-30 2024-10-11 00:41:04.000 1976-09-30 2024-10-11 00:41:04 +2466 2466 2467 246.6 493.20000000000005 2466 1976-10-02 2024-10-11 00:41:06.000 1976-10-02 2024-10-11 00:41:06 +2467 2467 2468 246.7 493.40000000000003 2467 1976-10-03 2024-10-11 00:41:07.000 1976-10-03 2024-10-11 00:41:07 +2468 2468 2469 246.8 493.6 2468 1976-10-04 2024-10-11 00:41:08.000 1976-10-04 2024-10-11 00:41:08 +2469 2469 2470 246.9 493.8 2469 1976-10-05 2024-10-11 00:41:09.000 1976-10-05 2024-10-11 00:41:09 +2471 2471 2472 247.1 494.20000000000005 2471 1976-10-07 2024-10-11 00:41:11.000 1976-10-07 2024-10-11 00:41:11 +2472 2472 2473 247.2 494.40000000000003 2472 1976-10-08 2024-10-11 00:41:12.000 1976-10-08 2024-10-11 00:41:12 +2473 2473 2474 247.3 494.6 2473 1976-10-09 2024-10-11 00:41:13.000 1976-10-09 2024-10-11 00:41:13 +2474 2474 2475 247.4 494.8 2474 1976-10-10 2024-10-11 00:41:14.000 1976-10-10 2024-10-11 00:41:14 +2476 2476 2477 247.6 495.20000000000005 2476 1976-10-12 2024-10-11 00:41:16.000 1976-10-12 2024-10-11 00:41:16 +2477 2477 2478 247.7 495.40000000000003 2477 1976-10-13 2024-10-11 00:41:17.000 1976-10-13 2024-10-11 00:41:17 +2478 2478 2479 247.8 495.6 2478 1976-10-14 2024-10-11 00:41:18.000 1976-10-14 2024-10-11 00:41:18 +2479 2479 2480 247.9 495.8 2479 1976-10-15 2024-10-11 00:41:19.000 1976-10-15 2024-10-11 00:41:19 +2481 2481 2482 248.1 496.20000000000005 2481 1976-10-17 2024-10-11 00:41:21.000 1976-10-17 2024-10-11 00:41:21 +2482 2482 2483 248.2 496.40000000000003 2482 1976-10-18 2024-10-11 00:41:22.000 1976-10-18 2024-10-11 00:41:22 +2483 2483 2484 248.3 496.6 2483 1976-10-19 2024-10-11 00:41:23.000 1976-10-19 2024-10-11 00:41:23 +2484 2484 2485 248.4 496.8 2484 1976-10-20 2024-10-11 00:41:24.000 1976-10-20 2024-10-11 00:41:24 +2486 2486 2487 248.6 497.20000000000005 2486 1976-10-22 2024-10-11 00:41:26.000 1976-10-22 2024-10-11 00:41:26 +2487 2487 2488 248.7 497.40000000000003 2487 1976-10-23 2024-10-11 00:41:27.000 1976-10-23 2024-10-11 00:41:27 +2488 2488 2489 248.8 497.6 2488 1976-10-24 2024-10-11 00:41:28.000 1976-10-24 2024-10-11 00:41:28 +2489 2489 2490 248.9 497.8 2489 1976-10-25 2024-10-11 00:41:29.000 1976-10-25 2024-10-11 00:41:29 +2491 2491 2492 249.1 498.20000000000005 2491 1976-10-27 2024-10-11 00:41:31.000 1976-10-27 2024-10-11 00:41:31 +2492 2492 2493 249.2 498.40000000000003 2492 1976-10-28 2024-10-11 00:41:32.000 1976-10-28 2024-10-11 00:41:32 +2493 2493 2494 249.3 498.6 2493 1976-10-29 2024-10-11 00:41:33.000 1976-10-29 2024-10-11 00:41:33 +2494 2494 2495 249.4 498.8 2494 1976-10-30 2024-10-11 00:41:34.000 1976-10-30 2024-10-11 00:41:34 +2496 2496 2497 249.6 499.20000000000005 2496 1976-11-01 2024-10-11 00:41:36.000 1976-11-01 2024-10-11 00:41:36 +2497 2497 2498 249.7 499.40000000000003 2497 1976-11-02 2024-10-11 00:41:37.000 1976-11-02 2024-10-11 00:41:37 +2498 2498 2499 249.8 499.6 2498 1976-11-03 2024-10-11 00:41:38.000 1976-11-03 2024-10-11 00:41:38 +2499 2499 2500 249.9 499.8 2499 1976-11-04 2024-10-11 00:41:39.000 1976-11-04 2024-10-11 00:41:39 +2501 2501 2502 250.1 500.20000000000005 2501 1976-11-06 2024-10-11 00:41:41.000 1976-11-06 2024-10-11 00:41:41 +2502 2502 2503 250.2 500.40000000000003 2502 1976-11-07 2024-10-11 00:41:42.000 1976-11-07 2024-10-11 00:41:42 +2503 2503 2504 250.3 500.6 2503 1976-11-08 2024-10-11 00:41:43.000 1976-11-08 2024-10-11 00:41:43 +2504 2504 2505 250.4 500.8 2504 1976-11-09 2024-10-11 00:41:44.000 1976-11-09 2024-10-11 00:41:44 +2506 2506 2507 250.6 501.20000000000005 2506 1976-11-11 2024-10-11 00:41:46.000 1976-11-11 2024-10-11 00:41:46 +2507 2507 2508 250.7 501.40000000000003 2507 1976-11-12 2024-10-11 00:41:47.000 1976-11-12 2024-10-11 00:41:47 +2508 2508 2509 250.8 501.6 2508 1976-11-13 2024-10-11 00:41:48.000 1976-11-13 2024-10-11 00:41:48 +2509 2509 2510 250.9 501.8 2509 1976-11-14 2024-10-11 00:41:49.000 1976-11-14 2024-10-11 00:41:49 +2511 2511 2512 251.1 502.20000000000005 2511 1976-11-16 2024-10-11 00:41:51.000 1976-11-16 2024-10-11 00:41:51 +2512 2512 2513 251.2 502.40000000000003 2512 1976-11-17 2024-10-11 00:41:52.000 1976-11-17 2024-10-11 00:41:52 +2513 2513 2514 251.3 502.6 2513 1976-11-18 2024-10-11 00:41:53.000 1976-11-18 2024-10-11 00:41:53 +2514 2514 2515 251.4 502.8 2514 1976-11-19 2024-10-11 00:41:54.000 1976-11-19 2024-10-11 00:41:54 +2516 2516 2517 251.6 503.20000000000005 2516 1976-11-21 2024-10-11 00:41:56.000 1976-11-21 2024-10-11 00:41:56 +2517 2517 2518 251.7 503.40000000000003 2517 1976-11-22 2024-10-11 00:41:57.000 1976-11-22 2024-10-11 00:41:57 +2518 2518 2519 251.8 503.6 2518 1976-11-23 2024-10-11 00:41:58.000 1976-11-23 2024-10-11 00:41:58 +2519 2519 2520 251.9 503.8 2519 1976-11-24 2024-10-11 00:41:59.000 1976-11-24 2024-10-11 00:41:59 +2521 2521 2522 252.1 504.20000000000005 2521 1976-11-26 2024-10-11 00:42:01.000 1976-11-26 2024-10-11 00:42:01 +2522 2522 2523 252.2 504.40000000000003 2522 1976-11-27 2024-10-11 00:42:02.000 1976-11-27 2024-10-11 00:42:02 +2523 2523 2524 252.3 504.6 2523 1976-11-28 2024-10-11 00:42:03.000 1976-11-28 2024-10-11 00:42:03 +2524 2524 2525 252.4 504.8 2524 1976-11-29 2024-10-11 00:42:04.000 1976-11-29 2024-10-11 00:42:04 +2526 2526 2527 252.6 505.20000000000005 2526 1976-12-01 2024-10-11 00:42:06.000 1976-12-01 2024-10-11 00:42:06 +2527 2527 2528 252.7 505.40000000000003 2527 1976-12-02 2024-10-11 00:42:07.000 1976-12-02 2024-10-11 00:42:07 +2528 2528 2529 252.8 505.6 2528 1976-12-03 2024-10-11 00:42:08.000 1976-12-03 2024-10-11 00:42:08 +2529 2529 2530 252.9 505.8 2529 1976-12-04 2024-10-11 00:42:09.000 1976-12-04 2024-10-11 00:42:09 +2531 2531 2532 253.1 506.20000000000005 2531 1976-12-06 2024-10-11 00:42:11.000 1976-12-06 2024-10-11 00:42:11 +2532 2532 2533 253.2 506.40000000000003 2532 1976-12-07 2024-10-11 00:42:12.000 1976-12-07 2024-10-11 00:42:12 +2533 2533 2534 253.3 506.6 2533 1976-12-08 2024-10-11 00:42:13.000 1976-12-08 2024-10-11 00:42:13 +2534 2534 2535 253.4 506.8 2534 1976-12-09 2024-10-11 00:42:14.000 1976-12-09 2024-10-11 00:42:14 +2536 2536 2537 253.6 507.20000000000005 2536 1976-12-11 2024-10-11 00:42:16.000 1976-12-11 2024-10-11 00:42:16 +2537 2537 2538 253.7 507.40000000000003 2537 1976-12-12 2024-10-11 00:42:17.000 1976-12-12 2024-10-11 00:42:17 +2538 2538 2539 253.8 507.6 2538 1976-12-13 2024-10-11 00:42:18.000 1976-12-13 2024-10-11 00:42:18 +2539 2539 2540 253.9 507.8 2539 1976-12-14 2024-10-11 00:42:19.000 1976-12-14 2024-10-11 00:42:19 +2541 2541 2542 254.1 508.20000000000005 2541 1976-12-16 2024-10-11 00:42:21.000 1976-12-16 2024-10-11 00:42:21 +2542 2542 2543 254.2 508.40000000000003 2542 1976-12-17 2024-10-11 00:42:22.000 1976-12-17 2024-10-11 00:42:22 +2543 2543 2544 254.3 508.6 2543 1976-12-18 2024-10-11 00:42:23.000 1976-12-18 2024-10-11 00:42:23 +2544 2544 2545 254.4 508.8 2544 1976-12-19 2024-10-11 00:42:24.000 1976-12-19 2024-10-11 00:42:24 +2546 2546 2547 254.6 509.20000000000005 2546 1976-12-21 2024-10-11 00:42:26.000 1976-12-21 2024-10-11 00:42:26 +2547 2547 2548 254.7 509.40000000000003 2547 1976-12-22 2024-10-11 00:42:27.000 1976-12-22 2024-10-11 00:42:27 +2548 2548 2549 254.8 509.6 2548 1976-12-23 2024-10-11 00:42:28.000 1976-12-23 2024-10-11 00:42:28 +2549 2549 2550 254.9 509.8 2549 1976-12-24 2024-10-11 00:42:29.000 1976-12-24 2024-10-11 00:42:29 +2551 2551 2552 255.1 510.20000000000005 2551 1976-12-26 2024-10-11 00:42:31.000 1976-12-26 2024-10-11 00:42:31 +2552 2552 2553 255.2 510.40000000000003 2552 1976-12-27 2024-10-11 00:42:32.000 1976-12-27 2024-10-11 00:42:32 +2553 2553 2554 255.3 510.6 2553 1976-12-28 2024-10-11 00:42:33.000 1976-12-28 2024-10-11 00:42:33 +2554 2554 2555 255.4 510.8 2554 1976-12-29 2024-10-11 00:42:34.000 1976-12-29 2024-10-11 00:42:34 +2556 2556 2557 255.6 511.20000000000005 2556 1976-12-31 2024-10-11 00:42:36.000 1976-12-31 2024-10-11 00:42:36 +2557 2557 2558 255.7 511.40000000000003 2557 1977-01-01 2024-10-11 00:42:37.000 1977-01-01 2024-10-11 00:42:37 +2558 2558 2559 255.8 511.6 2558 1977-01-02 2024-10-11 00:42:38.000 1977-01-02 2024-10-11 00:42:38 +2559 2559 2560 255.9 511.8 2559 1977-01-03 2024-10-11 00:42:39.000 1977-01-03 2024-10-11 00:42:39 +2561 2561 2562 256.1 512.2 2561 1977-01-05 2024-10-11 00:42:41.000 1977-01-05 2024-10-11 00:42:41 +2562 2562 2563 256.2 512.4 2562 1977-01-06 2024-10-11 00:42:42.000 1977-01-06 2024-10-11 00:42:42 +2563 2563 2564 256.3 512.6 2563 1977-01-07 2024-10-11 00:42:43.000 1977-01-07 2024-10-11 00:42:43 +2564 2564 2565 256.4 512.8000000000001 2564 1977-01-08 2024-10-11 00:42:44.000 1977-01-08 2024-10-11 00:42:44 +2566 2566 2567 256.6 513.2 2566 1977-01-10 2024-10-11 00:42:46.000 1977-01-10 2024-10-11 00:42:46 +2567 2567 2568 256.7 513.4 2567 1977-01-11 2024-10-11 00:42:47.000 1977-01-11 2024-10-11 00:42:47 +2568 2568 2569 256.8 513.6 2568 1977-01-12 2024-10-11 00:42:48.000 1977-01-12 2024-10-11 00:42:48 +2569 2569 2570 256.9 513.8000000000001 2569 1977-01-13 2024-10-11 00:42:49.000 1977-01-13 2024-10-11 00:42:49 +2571 2571 2572 257.1 514.2 2571 1977-01-15 2024-10-11 00:42:51.000 1977-01-15 2024-10-11 00:42:51 +2572 2572 2573 257.2 514.4 2572 1977-01-16 2024-10-11 00:42:52.000 1977-01-16 2024-10-11 00:42:52 +2573 2573 2574 257.3 514.6 2573 1977-01-17 2024-10-11 00:42:53.000 1977-01-17 2024-10-11 00:42:53 +2574 2574 2575 257.4 514.8000000000001 2574 1977-01-18 2024-10-11 00:42:54.000 1977-01-18 2024-10-11 00:42:54 +2576 2576 2577 257.6 515.2 2576 1977-01-20 2024-10-11 00:42:56.000 1977-01-20 2024-10-11 00:42:56 +2577 2577 2578 257.7 515.4 2577 1977-01-21 2024-10-11 00:42:57.000 1977-01-21 2024-10-11 00:42:57 +2578 2578 2579 257.8 515.6 2578 1977-01-22 2024-10-11 00:42:58.000 1977-01-22 2024-10-11 00:42:58 +2579 2579 2580 257.9 515.8000000000001 2579 1977-01-23 2024-10-11 00:42:59.000 1977-01-23 2024-10-11 00:42:59 +2581 2581 2582 258.1 516.2 2581 1977-01-25 2024-10-11 00:43:01.000 1977-01-25 2024-10-11 00:43:01 +2582 2582 2583 258.2 516.4 2582 1977-01-26 2024-10-11 00:43:02.000 1977-01-26 2024-10-11 00:43:02 +2583 2583 2584 258.3 516.6 2583 1977-01-27 2024-10-11 00:43:03.000 1977-01-27 2024-10-11 00:43:03 +2584 2584 2585 258.4 516.8000000000001 2584 1977-01-28 2024-10-11 00:43:04.000 1977-01-28 2024-10-11 00:43:04 +2586 2586 2587 258.6 517.2 2586 1977-01-30 2024-10-11 00:43:06.000 1977-01-30 2024-10-11 00:43:06 +2587 2587 2588 258.7 517.4 2587 1977-01-31 2024-10-11 00:43:07.000 1977-01-31 2024-10-11 00:43:07 +2588 2588 2589 258.8 517.6 2588 1977-02-01 2024-10-11 00:43:08.000 1977-02-01 2024-10-11 00:43:08 +2589 2589 2590 258.9 517.8000000000001 2589 1977-02-02 2024-10-11 00:43:09.000 1977-02-02 2024-10-11 00:43:09 +2591 2591 2592 259.1 518.2 2591 1977-02-04 2024-10-11 00:43:11.000 1977-02-04 2024-10-11 00:43:11 +2592 2592 2593 259.2 518.4 2592 1977-02-05 2024-10-11 00:43:12.000 1977-02-05 2024-10-11 00:43:12 +2593 2593 2594 259.3 518.6 2593 1977-02-06 2024-10-11 00:43:13.000 1977-02-06 2024-10-11 00:43:13 +2594 2594 2595 259.4 518.8000000000001 2594 1977-02-07 2024-10-11 00:43:14.000 1977-02-07 2024-10-11 00:43:14 +2596 2596 2597 259.6 519.2 2596 1977-02-09 2024-10-11 00:43:16.000 1977-02-09 2024-10-11 00:43:16 +2597 2597 2598 259.7 519.4 2597 1977-02-10 2024-10-11 00:43:17.000 1977-02-10 2024-10-11 00:43:17 +2598 2598 2599 259.8 519.6 2598 1977-02-11 2024-10-11 00:43:18.000 1977-02-11 2024-10-11 00:43:18 +2599 2599 2600 259.9 519.8000000000001 2599 1977-02-12 2024-10-11 00:43:19.000 1977-02-12 2024-10-11 00:43:19 +2601 2601 2602 260.1 520.2 2601 1977-02-14 2024-10-11 00:43:21.000 1977-02-14 2024-10-11 00:43:21 +2602 2602 2603 260.2 520.4 2602 1977-02-15 2024-10-11 00:43:22.000 1977-02-15 2024-10-11 00:43:22 +2603 2603 2604 260.3 520.6 2603 1977-02-16 2024-10-11 00:43:23.000 1977-02-16 2024-10-11 00:43:23 +2604 2604 2605 260.4 520.8000000000001 2604 1977-02-17 2024-10-11 00:43:24.000 1977-02-17 2024-10-11 00:43:24 +2606 2606 2607 260.6 521.2 2606 1977-02-19 2024-10-11 00:43:26.000 1977-02-19 2024-10-11 00:43:26 +2607 2607 2608 260.7 521.4 2607 1977-02-20 2024-10-11 00:43:27.000 1977-02-20 2024-10-11 00:43:27 +2608 2608 2609 260.8 521.6 2608 1977-02-21 2024-10-11 00:43:28.000 1977-02-21 2024-10-11 00:43:28 +2609 2609 2610 260.9 521.8000000000001 2609 1977-02-22 2024-10-11 00:43:29.000 1977-02-22 2024-10-11 00:43:29 +2611 2611 2612 261.1 522.2 2611 1977-02-24 2024-10-11 00:43:31.000 1977-02-24 2024-10-11 00:43:31 +2612 2612 2613 261.2 522.4 2612 1977-02-25 2024-10-11 00:43:32.000 1977-02-25 2024-10-11 00:43:32 +2613 2613 2614 261.3 522.6 2613 1977-02-26 2024-10-11 00:43:33.000 1977-02-26 2024-10-11 00:43:33 +2614 2614 2615 261.4 522.8000000000001 2614 1977-02-27 2024-10-11 00:43:34.000 1977-02-27 2024-10-11 00:43:34 +2616 2616 2617 261.6 523.2 2616 1977-03-01 2024-10-11 00:43:36.000 1977-03-01 2024-10-11 00:43:36 +2617 2617 2618 261.7 523.4 2617 1977-03-02 2024-10-11 00:43:37.000 1977-03-02 2024-10-11 00:43:37 +2618 2618 2619 261.8 523.6 2618 1977-03-03 2024-10-11 00:43:38.000 1977-03-03 2024-10-11 00:43:38 +2619 2619 2620 261.9 523.8000000000001 2619 1977-03-04 2024-10-11 00:43:39.000 1977-03-04 2024-10-11 00:43:39 +2621 2621 2622 262.1 524.2 2621 1977-03-06 2024-10-11 00:43:41.000 1977-03-06 2024-10-11 00:43:41 +2622 2622 2623 262.2 524.4 2622 1977-03-07 2024-10-11 00:43:42.000 1977-03-07 2024-10-11 00:43:42 +2623 2623 2624 262.3 524.6 2623 1977-03-08 2024-10-11 00:43:43.000 1977-03-08 2024-10-11 00:43:43 +2624 2624 2625 262.4 524.8000000000001 2624 1977-03-09 2024-10-11 00:43:44.000 1977-03-09 2024-10-11 00:43:44 +2626 2626 2627 262.6 525.2 2626 1977-03-11 2024-10-11 00:43:46.000 1977-03-11 2024-10-11 00:43:46 +2627 2627 2628 262.7 525.4 2627 1977-03-12 2024-10-11 00:43:47.000 1977-03-12 2024-10-11 00:43:47 +2628 2628 2629 262.8 525.6 2628 1977-03-13 2024-10-11 00:43:48.000 1977-03-13 2024-10-11 00:43:48 +2629 2629 2630 262.9 525.8000000000001 2629 1977-03-14 2024-10-11 00:43:49.000 1977-03-14 2024-10-11 00:43:49 +2631 2631 2632 263.1 526.2 2631 1977-03-16 2024-10-11 00:43:51.000 1977-03-16 2024-10-11 00:43:51 +2632 2632 2633 263.2 526.4 2632 1977-03-17 2024-10-11 00:43:52.000 1977-03-17 2024-10-11 00:43:52 +2633 2633 2634 263.3 526.6 2633 1977-03-18 2024-10-11 00:43:53.000 1977-03-18 2024-10-11 00:43:53 +2634 2634 2635 263.4 526.8000000000001 2634 1977-03-19 2024-10-11 00:43:54.000 1977-03-19 2024-10-11 00:43:54 +2636 2636 2637 263.6 527.2 2636 1977-03-21 2024-10-11 00:43:56.000 1977-03-21 2024-10-11 00:43:56 +2637 2637 2638 263.7 527.4 2637 1977-03-22 2024-10-11 00:43:57.000 1977-03-22 2024-10-11 00:43:57 +2638 2638 2639 263.8 527.6 2638 1977-03-23 2024-10-11 00:43:58.000 1977-03-23 2024-10-11 00:43:58 +2639 2639 2640 263.9 527.8000000000001 2639 1977-03-24 2024-10-11 00:43:59.000 1977-03-24 2024-10-11 00:43:59 +2641 2641 2642 264.1 528.2 2641 1977-03-26 2024-10-11 00:44:01.000 1977-03-26 2024-10-11 00:44:01 +2642 2642 2643 264.2 528.4 2642 1977-03-27 2024-10-11 00:44:02.000 1977-03-27 2024-10-11 00:44:02 +2643 2643 2644 264.3 528.6 2643 1977-03-28 2024-10-11 00:44:03.000 1977-03-28 2024-10-11 00:44:03 +2644 2644 2645 264.4 528.8000000000001 2644 1977-03-29 2024-10-11 00:44:04.000 1977-03-29 2024-10-11 00:44:04 +2646 2646 2647 264.6 529.2 2646 1977-03-31 2024-10-11 00:44:06.000 1977-03-31 2024-10-11 00:44:06 +2647 2647 2648 264.7 529.4 2647 1977-04-01 2024-10-11 00:44:07.000 1977-04-01 2024-10-11 00:44:07 +2648 2648 2649 264.8 529.6 2648 1977-04-02 2024-10-11 00:44:08.000 1977-04-02 2024-10-11 00:44:08 +2649 2649 2650 264.9 529.8000000000001 2649 1977-04-03 2024-10-11 00:44:09.000 1977-04-03 2024-10-11 00:44:09 +2651 2651 2652 265.1 530.2 2651 1977-04-05 2024-10-11 00:44:11.000 1977-04-05 2024-10-11 00:44:11 +2652 2652 2653 265.2 530.4 2652 1977-04-06 2024-10-11 00:44:12.000 1977-04-06 2024-10-11 00:44:12 +2653 2653 2654 265.3 530.6 2653 1977-04-07 2024-10-11 00:44:13.000 1977-04-07 2024-10-11 00:44:13 +2654 2654 2655 265.4 530.8000000000001 2654 1977-04-08 2024-10-11 00:44:14.000 1977-04-08 2024-10-11 00:44:14 +2656 2656 2657 265.6 531.2 2656 1977-04-10 2024-10-11 00:44:16.000 1977-04-10 2024-10-11 00:44:16 +2657 2657 2658 265.7 531.4 2657 1977-04-11 2024-10-11 00:44:17.000 1977-04-11 2024-10-11 00:44:17 +2658 2658 2659 265.8 531.6 2658 1977-04-12 2024-10-11 00:44:18.000 1977-04-12 2024-10-11 00:44:18 +2659 2659 2660 265.9 531.8000000000001 2659 1977-04-13 2024-10-11 00:44:19.000 1977-04-13 2024-10-11 00:44:19 +2661 2661 2662 266.1 532.2 2661 1977-04-15 2024-10-11 00:44:21.000 1977-04-15 2024-10-11 00:44:21 +2662 2662 2663 266.2 532.4 2662 1977-04-16 2024-10-11 00:44:22.000 1977-04-16 2024-10-11 00:44:22 +2663 2663 2664 266.3 532.6 2663 1977-04-17 2024-10-11 00:44:23.000 1977-04-17 2024-10-11 00:44:23 +2664 2664 2665 266.4 532.8000000000001 2664 1977-04-18 2024-10-11 00:44:24.000 1977-04-18 2024-10-11 00:44:24 +2666 2666 2667 266.6 533.2 2666 1977-04-20 2024-10-11 00:44:26.000 1977-04-20 2024-10-11 00:44:26 +2667 2667 2668 266.7 533.4 2667 1977-04-21 2024-10-11 00:44:27.000 1977-04-21 2024-10-11 00:44:27 +2668 2668 2669 266.8 533.6 2668 1977-04-22 2024-10-11 00:44:28.000 1977-04-22 2024-10-11 00:44:28 +2669 2669 2670 266.9 533.8000000000001 2669 1977-04-23 2024-10-11 00:44:29.000 1977-04-23 2024-10-11 00:44:29 +2671 2671 2672 267.1 534.2 2671 1977-04-25 2024-10-11 00:44:31.000 1977-04-25 2024-10-11 00:44:31 +2672 2672 2673 267.2 534.4 2672 1977-04-26 2024-10-11 00:44:32.000 1977-04-26 2024-10-11 00:44:32 +2673 2673 2674 267.3 534.6 2673 1977-04-27 2024-10-11 00:44:33.000 1977-04-27 2024-10-11 00:44:33 +2674 2674 2675 267.4 534.8000000000001 2674 1977-04-28 2024-10-11 00:44:34.000 1977-04-28 2024-10-11 00:44:34 +2676 2676 2677 267.6 535.2 2676 1977-04-30 2024-10-11 00:44:36.000 1977-04-30 2024-10-11 00:44:36 +2677 2677 2678 267.7 535.4 2677 1977-05-01 2024-10-11 00:44:37.000 1977-05-01 2024-10-11 00:44:37 +2678 2678 2679 267.8 535.6 2678 1977-05-02 2024-10-11 00:44:38.000 1977-05-02 2024-10-11 00:44:38 +2679 2679 2680 267.9 535.8000000000001 2679 1977-05-03 2024-10-11 00:44:39.000 1977-05-03 2024-10-11 00:44:39 +2681 2681 2682 268.1 536.2 2681 1977-05-05 2024-10-11 00:44:41.000 1977-05-05 2024-10-11 00:44:41 +2682 2682 2683 268.2 536.4 2682 1977-05-06 2024-10-11 00:44:42.000 1977-05-06 2024-10-11 00:44:42 +2683 2683 2684 268.3 536.6 2683 1977-05-07 2024-10-11 00:44:43.000 1977-05-07 2024-10-11 00:44:43 +2684 2684 2685 268.4 536.8000000000001 2684 1977-05-08 2024-10-11 00:44:44.000 1977-05-08 2024-10-11 00:44:44 +2686 2686 2687 268.6 537.2 2686 1977-05-10 2024-10-11 00:44:46.000 1977-05-10 2024-10-11 00:44:46 +2687 2687 2688 268.7 537.4 2687 1977-05-11 2024-10-11 00:44:47.000 1977-05-11 2024-10-11 00:44:47 +2688 2688 2689 268.8 537.6 2688 1977-05-12 2024-10-11 00:44:48.000 1977-05-12 2024-10-11 00:44:48 +2689 2689 2690 268.9 537.8000000000001 2689 1977-05-13 2024-10-11 00:44:49.000 1977-05-13 2024-10-11 00:44:49 +2691 2691 2692 269.1 538.2 2691 1977-05-15 2024-10-11 00:44:51.000 1977-05-15 2024-10-11 00:44:51 +2692 2692 2693 269.2 538.4 2692 1977-05-16 2024-10-11 00:44:52.000 1977-05-16 2024-10-11 00:44:52 +2693 2693 2694 269.3 538.6 2693 1977-05-17 2024-10-11 00:44:53.000 1977-05-17 2024-10-11 00:44:53 +2694 2694 2695 269.4 538.8000000000001 2694 1977-05-18 2024-10-11 00:44:54.000 1977-05-18 2024-10-11 00:44:54 +2696 2696 2697 269.6 539.2 2696 1977-05-20 2024-10-11 00:44:56.000 1977-05-20 2024-10-11 00:44:56 +2697 2697 2698 269.7 539.4 2697 1977-05-21 2024-10-11 00:44:57.000 1977-05-21 2024-10-11 00:44:57 +2698 2698 2699 269.8 539.6 2698 1977-05-22 2024-10-11 00:44:58.000 1977-05-22 2024-10-11 00:44:58 +2699 2699 2700 269.9 539.8000000000001 2699 1977-05-23 2024-10-11 00:44:59.000 1977-05-23 2024-10-11 00:44:59 +2701 2701 2702 270.1 540.2 2701 1977-05-25 2024-10-11 00:45:01.000 1977-05-25 2024-10-11 00:45:01 +2702 2702 2703 270.2 540.4 2702 1977-05-26 2024-10-11 00:45:02.000 1977-05-26 2024-10-11 00:45:02 +2703 2703 2704 270.3 540.6 2703 1977-05-27 2024-10-11 00:45:03.000 1977-05-27 2024-10-11 00:45:03 +2704 2704 2705 270.4 540.8000000000001 2704 1977-05-28 2024-10-11 00:45:04.000 1977-05-28 2024-10-11 00:45:04 +2706 2706 2707 270.6 541.2 2706 1977-05-30 2024-10-11 00:45:06.000 1977-05-30 2024-10-11 00:45:06 +2707 2707 2708 270.7 541.4 2707 1977-05-31 2024-10-11 00:45:07.000 1977-05-31 2024-10-11 00:45:07 +2708 2708 2709 270.8 541.6 2708 1977-06-01 2024-10-11 00:45:08.000 1977-06-01 2024-10-11 00:45:08 +2709 2709 2710 270.9 541.8000000000001 2709 1977-06-02 2024-10-11 00:45:09.000 1977-06-02 2024-10-11 00:45:09 +2711 2711 2712 271.1 542.2 2711 1977-06-04 2024-10-11 00:45:11.000 1977-06-04 2024-10-11 00:45:11 +2712 2712 2713 271.2 542.4 2712 1977-06-05 2024-10-11 00:45:12.000 1977-06-05 2024-10-11 00:45:12 +2713 2713 2714 271.3 542.6 2713 1977-06-06 2024-10-11 00:45:13.000 1977-06-06 2024-10-11 00:45:13 +2714 2714 2715 271.4 542.8000000000001 2714 1977-06-07 2024-10-11 00:45:14.000 1977-06-07 2024-10-11 00:45:14 +2716 2716 2717 271.6 543.2 2716 1977-06-09 2024-10-11 00:45:16.000 1977-06-09 2024-10-11 00:45:16 +2717 2717 2718 271.7 543.4 2717 1977-06-10 2024-10-11 00:45:17.000 1977-06-10 2024-10-11 00:45:17 +2718 2718 2719 271.8 543.6 2718 1977-06-11 2024-10-11 00:45:18.000 1977-06-11 2024-10-11 00:45:18 +2719 2719 2720 271.9 543.8000000000001 2719 1977-06-12 2024-10-11 00:45:19.000 1977-06-12 2024-10-11 00:45:19 +2721 2721 2722 272.1 544.2 2721 1977-06-14 2024-10-11 00:45:21.000 1977-06-14 2024-10-11 00:45:21 +2722 2722 2723 272.2 544.4 2722 1977-06-15 2024-10-11 00:45:22.000 1977-06-15 2024-10-11 00:45:22 +2723 2723 2724 272.3 544.6 2723 1977-06-16 2024-10-11 00:45:23.000 1977-06-16 2024-10-11 00:45:23 +2724 2724 2725 272.4 544.8000000000001 2724 1977-06-17 2024-10-11 00:45:24.000 1977-06-17 2024-10-11 00:45:24 +2726 2726 2727 272.6 545.2 2726 1977-06-19 2024-10-11 00:45:26.000 1977-06-19 2024-10-11 00:45:26 +2727 2727 2728 272.7 545.4 2727 1977-06-20 2024-10-11 00:45:27.000 1977-06-20 2024-10-11 00:45:27 +2728 2728 2729 272.8 545.6 2728 1977-06-21 2024-10-11 00:45:28.000 1977-06-21 2024-10-11 00:45:28 +2729 2729 2730 272.9 545.8000000000001 2729 1977-06-22 2024-10-11 00:45:29.000 1977-06-22 2024-10-11 00:45:29 +2731 2731 2732 273.1 546.2 2731 1977-06-24 2024-10-11 00:45:31.000 1977-06-24 2024-10-11 00:45:31 +2732 2732 2733 273.2 546.4 2732 1977-06-25 2024-10-11 00:45:32.000 1977-06-25 2024-10-11 00:45:32 +2733 2733 2734 273.3 546.6 2733 1977-06-26 2024-10-11 00:45:33.000 1977-06-26 2024-10-11 00:45:33 +2734 2734 2735 273.4 546.8000000000001 2734 1977-06-27 2024-10-11 00:45:34.000 1977-06-27 2024-10-11 00:45:34 +2736 2736 2737 273.6 547.2 2736 1977-06-29 2024-10-11 00:45:36.000 1977-06-29 2024-10-11 00:45:36 +2737 2737 2738 273.7 547.4 2737 1977-06-30 2024-10-11 00:45:37.000 1977-06-30 2024-10-11 00:45:37 +2738 2738 2739 273.8 547.6 2738 1977-07-01 2024-10-11 00:45:38.000 1977-07-01 2024-10-11 00:45:38 +2739 2739 2740 273.9 547.8000000000001 2739 1977-07-02 2024-10-11 00:45:39.000 1977-07-02 2024-10-11 00:45:39 +2741 2741 2742 274.1 548.2 2741 1977-07-04 2024-10-11 00:45:41.000 1977-07-04 2024-10-11 00:45:41 +2742 2742 2743 274.2 548.4 2742 1977-07-05 2024-10-11 00:45:42.000 1977-07-05 2024-10-11 00:45:42 +2743 2743 2744 274.3 548.6 2743 1977-07-06 2024-10-11 00:45:43.000 1977-07-06 2024-10-11 00:45:43 +2744 2744 2745 274.4 548.8000000000001 2744 1977-07-07 2024-10-11 00:45:44.000 1977-07-07 2024-10-11 00:45:44 +2746 2746 2747 274.6 549.2 2746 1977-07-09 2024-10-11 00:45:46.000 1977-07-09 2024-10-11 00:45:46 +2747 2747 2748 274.7 549.4 2747 1977-07-10 2024-10-11 00:45:47.000 1977-07-10 2024-10-11 00:45:47 +2748 2748 2749 274.8 549.6 2748 1977-07-11 2024-10-11 00:45:48.000 1977-07-11 2024-10-11 00:45:48 +2749 2749 2750 274.9 549.8000000000001 2749 1977-07-12 2024-10-11 00:45:49.000 1977-07-12 2024-10-11 00:45:49 +2751 2751 2752 275.1 550.2 2751 1977-07-14 2024-10-11 00:45:51.000 1977-07-14 2024-10-11 00:45:51 +2752 2752 2753 275.2 550.4 2752 1977-07-15 2024-10-11 00:45:52.000 1977-07-15 2024-10-11 00:45:52 +2753 2753 2754 275.3 550.6 2753 1977-07-16 2024-10-11 00:45:53.000 1977-07-16 2024-10-11 00:45:53 +2754 2754 2755 275.4 550.8000000000001 2754 1977-07-17 2024-10-11 00:45:54.000 1977-07-17 2024-10-11 00:45:54 +2756 2756 2757 275.6 551.2 2756 1977-07-19 2024-10-11 00:45:56.000 1977-07-19 2024-10-11 00:45:56 +2757 2757 2758 275.7 551.4 2757 1977-07-20 2024-10-11 00:45:57.000 1977-07-20 2024-10-11 00:45:57 +2758 2758 2759 275.8 551.6 2758 1977-07-21 2024-10-11 00:45:58.000 1977-07-21 2024-10-11 00:45:58 +2759 2759 2760 275.9 551.8000000000001 2759 1977-07-22 2024-10-11 00:45:59.000 1977-07-22 2024-10-11 00:45:59 +2761 2761 2762 276.1 552.2 2761 1977-07-24 2024-10-11 00:46:01.000 1977-07-24 2024-10-11 00:46:01 +2762 2762 2763 276.2 552.4 2762 1977-07-25 2024-10-11 00:46:02.000 1977-07-25 2024-10-11 00:46:02 +2763 2763 2764 276.3 552.6 2763 1977-07-26 2024-10-11 00:46:03.000 1977-07-26 2024-10-11 00:46:03 +2764 2764 2765 276.4 552.8000000000001 2764 1977-07-27 2024-10-11 00:46:04.000 1977-07-27 2024-10-11 00:46:04 +2766 2766 2767 276.6 553.2 2766 1977-07-29 2024-10-11 00:46:06.000 1977-07-29 2024-10-11 00:46:06 +2767 2767 2768 276.7 553.4 2767 1977-07-30 2024-10-11 00:46:07.000 1977-07-30 2024-10-11 00:46:07 +2768 2768 2769 276.8 553.6 2768 1977-07-31 2024-10-11 00:46:08.000 1977-07-31 2024-10-11 00:46:08 +2769 2769 2770 276.9 553.8000000000001 2769 1977-08-01 2024-10-11 00:46:09.000 1977-08-01 2024-10-11 00:46:09 +2771 2771 2772 277.1 554.2 2771 1977-08-03 2024-10-11 00:46:11.000 1977-08-03 2024-10-11 00:46:11 +2772 2772 2773 277.2 554.4 2772 1977-08-04 2024-10-11 00:46:12.000 1977-08-04 2024-10-11 00:46:12 +2773 2773 2774 277.3 554.6 2773 1977-08-05 2024-10-11 00:46:13.000 1977-08-05 2024-10-11 00:46:13 +2774 2774 2775 277.4 554.8000000000001 2774 1977-08-06 2024-10-11 00:46:14.000 1977-08-06 2024-10-11 00:46:14 +2776 2776 2777 277.6 555.2 2776 1977-08-08 2024-10-11 00:46:16.000 1977-08-08 2024-10-11 00:46:16 +2777 2777 2778 277.7 555.4 2777 1977-08-09 2024-10-11 00:46:17.000 1977-08-09 2024-10-11 00:46:17 +2778 2778 2779 277.8 555.6 2778 1977-08-10 2024-10-11 00:46:18.000 1977-08-10 2024-10-11 00:46:18 +2779 2779 2780 277.9 555.8000000000001 2779 1977-08-11 2024-10-11 00:46:19.000 1977-08-11 2024-10-11 00:46:19 +2781 2781 2782 278.1 556.2 2781 1977-08-13 2024-10-11 00:46:21.000 1977-08-13 2024-10-11 00:46:21 +2782 2782 2783 278.2 556.4 2782 1977-08-14 2024-10-11 00:46:22.000 1977-08-14 2024-10-11 00:46:22 +2783 2783 2784 278.3 556.6 2783 1977-08-15 2024-10-11 00:46:23.000 1977-08-15 2024-10-11 00:46:23 +2784 2784 2785 278.4 556.8000000000001 2784 1977-08-16 2024-10-11 00:46:24.000 1977-08-16 2024-10-11 00:46:24 +2786 2786 2787 278.6 557.2 2786 1977-08-18 2024-10-11 00:46:26.000 1977-08-18 2024-10-11 00:46:26 +2787 2787 2788 278.7 557.4 2787 1977-08-19 2024-10-11 00:46:27.000 1977-08-19 2024-10-11 00:46:27 +2788 2788 2789 278.8 557.6 2788 1977-08-20 2024-10-11 00:46:28.000 1977-08-20 2024-10-11 00:46:28 +2789 2789 2790 278.9 557.8000000000001 2789 1977-08-21 2024-10-11 00:46:29.000 1977-08-21 2024-10-11 00:46:29 +2791 2791 2792 279.1 558.2 2791 1977-08-23 2024-10-11 00:46:31.000 1977-08-23 2024-10-11 00:46:31 +2792 2792 2793 279.2 558.4 2792 1977-08-24 2024-10-11 00:46:32.000 1977-08-24 2024-10-11 00:46:32 +2793 2793 2794 279.3 558.6 2793 1977-08-25 2024-10-11 00:46:33.000 1977-08-25 2024-10-11 00:46:33 +2794 2794 2795 279.4 558.8000000000001 2794 1977-08-26 2024-10-11 00:46:34.000 1977-08-26 2024-10-11 00:46:34 +2796 2796 2797 279.6 559.2 2796 1977-08-28 2024-10-11 00:46:36.000 1977-08-28 2024-10-11 00:46:36 +2797 2797 2798 279.7 559.4 2797 1977-08-29 2024-10-11 00:46:37.000 1977-08-29 2024-10-11 00:46:37 +2798 2798 2799 279.8 559.6 2798 1977-08-30 2024-10-11 00:46:38.000 1977-08-30 2024-10-11 00:46:38 +2799 2799 2800 279.9 559.8000000000001 2799 1977-08-31 2024-10-11 00:46:39.000 1977-08-31 2024-10-11 00:46:39 +2801 2801 2802 280.1 560.2 2801 1977-09-02 2024-10-11 00:46:41.000 1977-09-02 2024-10-11 00:46:41 +2802 2802 2803 280.2 560.4 2802 1977-09-03 2024-10-11 00:46:42.000 1977-09-03 2024-10-11 00:46:42 +2803 2803 2804 280.3 560.6 2803 1977-09-04 2024-10-11 00:46:43.000 1977-09-04 2024-10-11 00:46:43 +2804 2804 2805 280.4 560.8000000000001 2804 1977-09-05 2024-10-11 00:46:44.000 1977-09-05 2024-10-11 00:46:44 +2806 2806 2807 280.6 561.2 2806 1977-09-07 2024-10-11 00:46:46.000 1977-09-07 2024-10-11 00:46:46 +2807 2807 2808 280.7 561.4 2807 1977-09-08 2024-10-11 00:46:47.000 1977-09-08 2024-10-11 00:46:47 +2808 2808 2809 280.8 561.6 2808 1977-09-09 2024-10-11 00:46:48.000 1977-09-09 2024-10-11 00:46:48 +2809 2809 2810 280.9 561.8000000000001 2809 1977-09-10 2024-10-11 00:46:49.000 1977-09-10 2024-10-11 00:46:49 +2811 2811 2812 281.1 562.2 2811 1977-09-12 2024-10-11 00:46:51.000 1977-09-12 2024-10-11 00:46:51 +2812 2812 2813 281.2 562.4 2812 1977-09-13 2024-10-11 00:46:52.000 1977-09-13 2024-10-11 00:46:52 +2813 2813 2814 281.3 562.6 2813 1977-09-14 2024-10-11 00:46:53.000 1977-09-14 2024-10-11 00:46:53 +2814 2814 2815 281.4 562.8000000000001 2814 1977-09-15 2024-10-11 00:46:54.000 1977-09-15 2024-10-11 00:46:54 +2816 2816 2817 281.6 563.2 2816 1977-09-17 2024-10-11 00:46:56.000 1977-09-17 2024-10-11 00:46:56 +2817 2817 2818 281.7 563.4 2817 1977-09-18 2024-10-11 00:46:57.000 1977-09-18 2024-10-11 00:46:57 +2818 2818 2819 281.8 563.6 2818 1977-09-19 2024-10-11 00:46:58.000 1977-09-19 2024-10-11 00:46:58 +2819 2819 2820 281.9 563.8000000000001 2819 1977-09-20 2024-10-11 00:46:59.000 1977-09-20 2024-10-11 00:46:59 +2821 2821 2822 282.1 564.2 2821 1977-09-22 2024-10-11 00:47:01.000 1977-09-22 2024-10-11 00:47:01 +2822 2822 2823 282.2 564.4 2822 1977-09-23 2024-10-11 00:47:02.000 1977-09-23 2024-10-11 00:47:02 +2823 2823 2824 282.3 564.6 2823 1977-09-24 2024-10-11 00:47:03.000 1977-09-24 2024-10-11 00:47:03 +2824 2824 2825 282.4 564.8000000000001 2824 1977-09-25 2024-10-11 00:47:04.000 1977-09-25 2024-10-11 00:47:04 +2826 2826 2827 282.6 565.2 2826 1977-09-27 2024-10-11 00:47:06.000 1977-09-27 2024-10-11 00:47:06 +2827 2827 2828 282.7 565.4 2827 1977-09-28 2024-10-11 00:47:07.000 1977-09-28 2024-10-11 00:47:07 +2828 2828 2829 282.8 565.6 2828 1977-09-29 2024-10-11 00:47:08.000 1977-09-29 2024-10-11 00:47:08 +2829 2829 2830 282.9 565.8000000000001 2829 1977-09-30 2024-10-11 00:47:09.000 1977-09-30 2024-10-11 00:47:09 +2831 2831 2832 283.1 566.2 2831 1977-10-02 2024-10-11 00:47:11.000 1977-10-02 2024-10-11 00:47:11 +2832 2832 2833 283.2 566.4 2832 1977-10-03 2024-10-11 00:47:12.000 1977-10-03 2024-10-11 00:47:12 +2833 2833 2834 283.3 566.6 2833 1977-10-04 2024-10-11 00:47:13.000 1977-10-04 2024-10-11 00:47:13 +2834 2834 2835 283.4 566.8000000000001 2834 1977-10-05 2024-10-11 00:47:14.000 1977-10-05 2024-10-11 00:47:14 +2836 2836 2837 283.6 567.2 2836 1977-10-07 2024-10-11 00:47:16.000 1977-10-07 2024-10-11 00:47:16 +2837 2837 2838 283.7 567.4 2837 1977-10-08 2024-10-11 00:47:17.000 1977-10-08 2024-10-11 00:47:17 +2838 2838 2839 283.8 567.6 2838 1977-10-09 2024-10-11 00:47:18.000 1977-10-09 2024-10-11 00:47:18 +2839 2839 2840 283.9 567.8000000000001 2839 1977-10-10 2024-10-11 00:47:19.000 1977-10-10 2024-10-11 00:47:19 +2841 2841 2842 284.1 568.2 2841 1977-10-12 2024-10-11 00:47:21.000 1977-10-12 2024-10-11 00:47:21 +2842 2842 2843 284.2 568.4 2842 1977-10-13 2024-10-11 00:47:22.000 1977-10-13 2024-10-11 00:47:22 +2843 2843 2844 284.3 568.6 2843 1977-10-14 2024-10-11 00:47:23.000 1977-10-14 2024-10-11 00:47:23 +2844 2844 2845 284.4 568.8000000000001 2844 1977-10-15 2024-10-11 00:47:24.000 1977-10-15 2024-10-11 00:47:24 +2846 2846 2847 284.6 569.2 2846 1977-10-17 2024-10-11 00:47:26.000 1977-10-17 2024-10-11 00:47:26 +2847 2847 2848 284.7 569.4 2847 1977-10-18 2024-10-11 00:47:27.000 1977-10-18 2024-10-11 00:47:27 +2848 2848 2849 284.8 569.6 2848 1977-10-19 2024-10-11 00:47:28.000 1977-10-19 2024-10-11 00:47:28 +2849 2849 2850 284.9 569.8000000000001 2849 1977-10-20 2024-10-11 00:47:29.000 1977-10-20 2024-10-11 00:47:29 +2851 2851 2852 285.1 570.2 2851 1977-10-22 2024-10-11 00:47:31.000 1977-10-22 2024-10-11 00:47:31 +2852 2852 2853 285.2 570.4 2852 1977-10-23 2024-10-11 00:47:32.000 1977-10-23 2024-10-11 00:47:32 +2853 2853 2854 285.3 570.6 2853 1977-10-24 2024-10-11 00:47:33.000 1977-10-24 2024-10-11 00:47:33 +2854 2854 2855 285.4 570.8000000000001 2854 1977-10-25 2024-10-11 00:47:34.000 1977-10-25 2024-10-11 00:47:34 +2856 2856 2857 285.6 571.2 2856 1977-10-27 2024-10-11 00:47:36.000 1977-10-27 2024-10-11 00:47:36 +2857 2857 2858 285.7 571.4 2857 1977-10-28 2024-10-11 00:47:37.000 1977-10-28 2024-10-11 00:47:37 +2858 2858 2859 285.8 571.6 2858 1977-10-29 2024-10-11 00:47:38.000 1977-10-29 2024-10-11 00:47:38 +2859 2859 2860 285.9 571.8000000000001 2859 1977-10-30 2024-10-11 00:47:39.000 1977-10-30 2024-10-11 00:47:39 +2861 2861 2862 286.1 572.2 2861 1977-11-01 2024-10-11 00:47:41.000 1977-11-01 2024-10-11 00:47:41 +2862 2862 2863 286.2 572.4 2862 1977-11-02 2024-10-11 00:47:42.000 1977-11-02 2024-10-11 00:47:42 +2863 2863 2864 286.3 572.6 2863 1977-11-03 2024-10-11 00:47:43.000 1977-11-03 2024-10-11 00:47:43 +2864 2864 2865 286.4 572.8000000000001 2864 1977-11-04 2024-10-11 00:47:44.000 1977-11-04 2024-10-11 00:47:44 +2866 2866 2867 286.6 573.2 2866 1977-11-06 2024-10-11 00:47:46.000 1977-11-06 2024-10-11 00:47:46 +2867 2867 2868 286.7 573.4 2867 1977-11-07 2024-10-11 00:47:47.000 1977-11-07 2024-10-11 00:47:47 +2868 2868 2869 286.8 573.6 2868 1977-11-08 2024-10-11 00:47:48.000 1977-11-08 2024-10-11 00:47:48 +2869 2869 2870 286.9 573.8000000000001 2869 1977-11-09 2024-10-11 00:47:49.000 1977-11-09 2024-10-11 00:47:49 +2871 2871 2872 287.1 574.2 2871 1977-11-11 2024-10-11 00:47:51.000 1977-11-11 2024-10-11 00:47:51 +2872 2872 2873 287.2 574.4 2872 1977-11-12 2024-10-11 00:47:52.000 1977-11-12 2024-10-11 00:47:52 +2873 2873 2874 287.3 574.6 2873 1977-11-13 2024-10-11 00:47:53.000 1977-11-13 2024-10-11 00:47:53 +2874 2874 2875 287.4 574.8000000000001 2874 1977-11-14 2024-10-11 00:47:54.000 1977-11-14 2024-10-11 00:47:54 +2876 2876 2877 287.6 575.2 2876 1977-11-16 2024-10-11 00:47:56.000 1977-11-16 2024-10-11 00:47:56 +2877 2877 2878 287.7 575.4 2877 1977-11-17 2024-10-11 00:47:57.000 1977-11-17 2024-10-11 00:47:57 +2878 2878 2879 287.8 575.6 2878 1977-11-18 2024-10-11 00:47:58.000 1977-11-18 2024-10-11 00:47:58 +2879 2879 2880 287.9 575.8000000000001 2879 1977-11-19 2024-10-11 00:47:59.000 1977-11-19 2024-10-11 00:47:59 +2881 2881 2882 288.1 576.2 2881 1977-11-21 2024-10-11 00:48:01.000 1977-11-21 2024-10-11 00:48:01 +2882 2882 2883 288.2 576.4 2882 1977-11-22 2024-10-11 00:48:02.000 1977-11-22 2024-10-11 00:48:02 +2883 2883 2884 288.3 576.6 2883 1977-11-23 2024-10-11 00:48:03.000 1977-11-23 2024-10-11 00:48:03 +2884 2884 2885 288.4 576.8000000000001 2884 1977-11-24 2024-10-11 00:48:04.000 1977-11-24 2024-10-11 00:48:04 +2886 2886 2887 288.6 577.2 2886 1977-11-26 2024-10-11 00:48:06.000 1977-11-26 2024-10-11 00:48:06 +2887 2887 2888 288.7 577.4 2887 1977-11-27 2024-10-11 00:48:07.000 1977-11-27 2024-10-11 00:48:07 +2888 2888 2889 288.8 577.6 2888 1977-11-28 2024-10-11 00:48:08.000 1977-11-28 2024-10-11 00:48:08 +2889 2889 2890 288.9 577.8000000000001 2889 1977-11-29 2024-10-11 00:48:09.000 1977-11-29 2024-10-11 00:48:09 +2891 2891 2892 289.1 578.2 2891 1977-12-01 2024-10-11 00:48:11.000 1977-12-01 2024-10-11 00:48:11 +2892 2892 2893 289.2 578.4 2892 1977-12-02 2024-10-11 00:48:12.000 1977-12-02 2024-10-11 00:48:12 +2893 2893 2894 289.3 578.6 2893 1977-12-03 2024-10-11 00:48:13.000 1977-12-03 2024-10-11 00:48:13 +2894 2894 2895 289.4 578.8000000000001 2894 1977-12-04 2024-10-11 00:48:14.000 1977-12-04 2024-10-11 00:48:14 +2896 2896 2897 289.6 579.2 2896 1977-12-06 2024-10-11 00:48:16.000 1977-12-06 2024-10-11 00:48:16 +2897 2897 2898 289.7 579.4 2897 1977-12-07 2024-10-11 00:48:17.000 1977-12-07 2024-10-11 00:48:17 +2898 2898 2899 289.8 579.6 2898 1977-12-08 2024-10-11 00:48:18.000 1977-12-08 2024-10-11 00:48:18 +2899 2899 2900 289.9 579.8000000000001 2899 1977-12-09 2024-10-11 00:48:19.000 1977-12-09 2024-10-11 00:48:19 +2901 2901 2902 290.1 580.2 2901 1977-12-11 2024-10-11 00:48:21.000 1977-12-11 2024-10-11 00:48:21 +2902 2902 2903 290.2 580.4 2902 1977-12-12 2024-10-11 00:48:22.000 1977-12-12 2024-10-11 00:48:22 +2903 2903 2904 290.3 580.6 2903 1977-12-13 2024-10-11 00:48:23.000 1977-12-13 2024-10-11 00:48:23 +2904 2904 2905 290.4 580.8000000000001 2904 1977-12-14 2024-10-11 00:48:24.000 1977-12-14 2024-10-11 00:48:24 +2906 2906 2907 290.6 581.2 2906 1977-12-16 2024-10-11 00:48:26.000 1977-12-16 2024-10-11 00:48:26 +2907 2907 2908 290.7 581.4 2907 1977-12-17 2024-10-11 00:48:27.000 1977-12-17 2024-10-11 00:48:27 +2908 2908 2909 290.8 581.6 2908 1977-12-18 2024-10-11 00:48:28.000 1977-12-18 2024-10-11 00:48:28 +2909 2909 2910 290.9 581.8000000000001 2909 1977-12-19 2024-10-11 00:48:29.000 1977-12-19 2024-10-11 00:48:29 +2911 2911 2912 291.1 582.2 2911 1977-12-21 2024-10-11 00:48:31.000 1977-12-21 2024-10-11 00:48:31 +2912 2912 2913 291.2 582.4 2912 1977-12-22 2024-10-11 00:48:32.000 1977-12-22 2024-10-11 00:48:32 +2913 2913 2914 291.3 582.6 2913 1977-12-23 2024-10-11 00:48:33.000 1977-12-23 2024-10-11 00:48:33 +2914 2914 2915 291.4 582.8000000000001 2914 1977-12-24 2024-10-11 00:48:34.000 1977-12-24 2024-10-11 00:48:34 +2916 2916 2917 291.6 583.2 2916 1977-12-26 2024-10-11 00:48:36.000 1977-12-26 2024-10-11 00:48:36 +2917 2917 2918 291.7 583.4 2917 1977-12-27 2024-10-11 00:48:37.000 1977-12-27 2024-10-11 00:48:37 +2918 2918 2919 291.8 583.6 2918 1977-12-28 2024-10-11 00:48:38.000 1977-12-28 2024-10-11 00:48:38 +2919 2919 2920 291.9 583.8000000000001 2919 1977-12-29 2024-10-11 00:48:39.000 1977-12-29 2024-10-11 00:48:39 +2921 2921 2922 292.1 584.2 2921 1977-12-31 2024-10-11 00:48:41.000 1977-12-31 2024-10-11 00:48:41 +2922 2922 2923 292.2 584.4 2922 1978-01-01 2024-10-11 00:48:42.000 1978-01-01 2024-10-11 00:48:42 +2923 2923 2924 292.3 584.6 2923 1978-01-02 2024-10-11 00:48:43.000 1978-01-02 2024-10-11 00:48:43 +2924 2924 2925 292.4 584.8000000000001 2924 1978-01-03 2024-10-11 00:48:44.000 1978-01-03 2024-10-11 00:48:44 +2926 2926 2927 292.6 585.2 2926 1978-01-05 2024-10-11 00:48:46.000 1978-01-05 2024-10-11 00:48:46 +2927 2927 2928 292.7 585.4 2927 1978-01-06 2024-10-11 00:48:47.000 1978-01-06 2024-10-11 00:48:47 +2928 2928 2929 292.8 585.6 2928 1978-01-07 2024-10-11 00:48:48.000 1978-01-07 2024-10-11 00:48:48 +2929 2929 2930 292.9 585.8000000000001 2929 1978-01-08 2024-10-11 00:48:49.000 1978-01-08 2024-10-11 00:48:49 +2931 2931 2932 293.1 586.2 2931 1978-01-10 2024-10-11 00:48:51.000 1978-01-10 2024-10-11 00:48:51 +2932 2932 2933 293.2 586.4 2932 1978-01-11 2024-10-11 00:48:52.000 1978-01-11 2024-10-11 00:48:52 +2933 2933 2934 293.3 586.6 2933 1978-01-12 2024-10-11 00:48:53.000 1978-01-12 2024-10-11 00:48:53 +2934 2934 2935 293.4 586.8000000000001 2934 1978-01-13 2024-10-11 00:48:54.000 1978-01-13 2024-10-11 00:48:54 +2936 2936 2937 293.6 587.2 2936 1978-01-15 2024-10-11 00:48:56.000 1978-01-15 2024-10-11 00:48:56 +2937 2937 2938 293.7 587.4 2937 1978-01-16 2024-10-11 00:48:57.000 1978-01-16 2024-10-11 00:48:57 +2938 2938 2939 293.8 587.6 2938 1978-01-17 2024-10-11 00:48:58.000 1978-01-17 2024-10-11 00:48:58 +2939 2939 2940 293.9 587.8000000000001 2939 1978-01-18 2024-10-11 00:48:59.000 1978-01-18 2024-10-11 00:48:59 +2941 2941 2942 294.1 588.2 2941 1978-01-20 2024-10-11 00:49:01.000 1978-01-20 2024-10-11 00:49:01 +2942 2942 2943 294.2 588.4 2942 1978-01-21 2024-10-11 00:49:02.000 1978-01-21 2024-10-11 00:49:02 +2943 2943 2944 294.3 588.6 2943 1978-01-22 2024-10-11 00:49:03.000 1978-01-22 2024-10-11 00:49:03 +2944 2944 2945 294.4 588.8000000000001 2944 1978-01-23 2024-10-11 00:49:04.000 1978-01-23 2024-10-11 00:49:04 +2946 2946 2947 294.6 589.2 2946 1978-01-25 2024-10-11 00:49:06.000 1978-01-25 2024-10-11 00:49:06 +2947 2947 2948 294.7 589.4 2947 1978-01-26 2024-10-11 00:49:07.000 1978-01-26 2024-10-11 00:49:07 +2948 2948 2949 294.8 589.6 2948 1978-01-27 2024-10-11 00:49:08.000 1978-01-27 2024-10-11 00:49:08 +2949 2949 2950 294.9 589.8000000000001 2949 1978-01-28 2024-10-11 00:49:09.000 1978-01-28 2024-10-11 00:49:09 +2951 2951 2952 295.1 590.2 2951 1978-01-30 2024-10-11 00:49:11.000 1978-01-30 2024-10-11 00:49:11 +2952 2952 2953 295.2 590.4 2952 1978-01-31 2024-10-11 00:49:12.000 1978-01-31 2024-10-11 00:49:12 +2953 2953 2954 295.3 590.6 2953 1978-02-01 2024-10-11 00:49:13.000 1978-02-01 2024-10-11 00:49:13 +2954 2954 2955 295.4 590.8000000000001 2954 1978-02-02 2024-10-11 00:49:14.000 1978-02-02 2024-10-11 00:49:14 +2956 2956 2957 295.6 591.2 2956 1978-02-04 2024-10-11 00:49:16.000 1978-02-04 2024-10-11 00:49:16 +2957 2957 2958 295.7 591.4 2957 1978-02-05 2024-10-11 00:49:17.000 1978-02-05 2024-10-11 00:49:17 +2958 2958 2959 295.8 591.6 2958 1978-02-06 2024-10-11 00:49:18.000 1978-02-06 2024-10-11 00:49:18 +2959 2959 2960 295.9 591.8000000000001 2959 1978-02-07 2024-10-11 00:49:19.000 1978-02-07 2024-10-11 00:49:19 +2961 2961 2962 296.1 592.2 2961 1978-02-09 2024-10-11 00:49:21.000 1978-02-09 2024-10-11 00:49:21 +2962 2962 2963 296.2 592.4 2962 1978-02-10 2024-10-11 00:49:22.000 1978-02-10 2024-10-11 00:49:22 +2963 2963 2964 296.3 592.6 2963 1978-02-11 2024-10-11 00:49:23.000 1978-02-11 2024-10-11 00:49:23 +2964 2964 2965 296.4 592.8000000000001 2964 1978-02-12 2024-10-11 00:49:24.000 1978-02-12 2024-10-11 00:49:24 +2966 2966 2967 296.6 593.2 2966 1978-02-14 2024-10-11 00:49:26.000 1978-02-14 2024-10-11 00:49:26 +2967 2967 2968 296.7 593.4 2967 1978-02-15 2024-10-11 00:49:27.000 1978-02-15 2024-10-11 00:49:27 +2968 2968 2969 296.8 593.6 2968 1978-02-16 2024-10-11 00:49:28.000 1978-02-16 2024-10-11 00:49:28 +2969 2969 2970 296.9 593.8000000000001 2969 1978-02-17 2024-10-11 00:49:29.000 1978-02-17 2024-10-11 00:49:29 +2971 2971 2972 297.1 594.2 2971 1978-02-19 2024-10-11 00:49:31.000 1978-02-19 2024-10-11 00:49:31 +2972 2972 2973 297.2 594.4 2972 1978-02-20 2024-10-11 00:49:32.000 1978-02-20 2024-10-11 00:49:32 +2973 2973 2974 297.3 594.6 2973 1978-02-21 2024-10-11 00:49:33.000 1978-02-21 2024-10-11 00:49:33 +2974 2974 2975 297.4 594.8000000000001 2974 1978-02-22 2024-10-11 00:49:34.000 1978-02-22 2024-10-11 00:49:34 +2976 2976 2977 297.6 595.2 2976 1978-02-24 2024-10-11 00:49:36.000 1978-02-24 2024-10-11 00:49:36 +2977 2977 2978 297.7 595.4 2977 1978-02-25 2024-10-11 00:49:37.000 1978-02-25 2024-10-11 00:49:37 +2978 2978 2979 297.8 595.6 2978 1978-02-26 2024-10-11 00:49:38.000 1978-02-26 2024-10-11 00:49:38 +2979 2979 2980 297.9 595.8000000000001 2979 1978-02-27 2024-10-11 00:49:39.000 1978-02-27 2024-10-11 00:49:39 +2981 2981 2982 298.1 596.2 2981 1978-03-01 2024-10-11 00:49:41.000 1978-03-01 2024-10-11 00:49:41 +2982 2982 2983 298.2 596.4 2982 1978-03-02 2024-10-11 00:49:42.000 1978-03-02 2024-10-11 00:49:42 +2983 2983 2984 298.3 596.6 2983 1978-03-03 2024-10-11 00:49:43.000 1978-03-03 2024-10-11 00:49:43 +2984 2984 2985 298.4 596.8000000000001 2984 1978-03-04 2024-10-11 00:49:44.000 1978-03-04 2024-10-11 00:49:44 +2986 2986 2987 298.6 597.2 2986 1978-03-06 2024-10-11 00:49:46.000 1978-03-06 2024-10-11 00:49:46 +2987 2987 2988 298.7 597.4 2987 1978-03-07 2024-10-11 00:49:47.000 1978-03-07 2024-10-11 00:49:47 +2988 2988 2989 298.8 597.6 2988 1978-03-08 2024-10-11 00:49:48.000 1978-03-08 2024-10-11 00:49:48 +2989 2989 2990 298.9 597.8000000000001 2989 1978-03-09 2024-10-11 00:49:49.000 1978-03-09 2024-10-11 00:49:49 +2991 2991 2992 299.1 598.2 2991 1978-03-11 2024-10-11 00:49:51.000 1978-03-11 2024-10-11 00:49:51 +2992 2992 2993 299.2 598.4 2992 1978-03-12 2024-10-11 00:49:52.000 1978-03-12 2024-10-11 00:49:52 +2993 2993 2994 299.3 598.6 2993 1978-03-13 2024-10-11 00:49:53.000 1978-03-13 2024-10-11 00:49:53 +2994 2994 2995 299.4 598.8000000000001 2994 1978-03-14 2024-10-11 00:49:54.000 1978-03-14 2024-10-11 00:49:54 +2996 2996 2997 299.6 599.2 2996 1978-03-16 2024-10-11 00:49:56.000 1978-03-16 2024-10-11 00:49:56 +2997 2997 2998 299.7 599.4 2997 1978-03-17 2024-10-11 00:49:57.000 1978-03-17 2024-10-11 00:49:57 +2998 2998 2999 299.8 599.6 2998 1978-03-18 2024-10-11 00:49:58.000 1978-03-18 2024-10-11 00:49:58 +2999 2999 3000 299.9 599.8000000000001 2999 1978-03-19 2024-10-11 00:49:59.000 1978-03-19 2024-10-11 00:49:59 +3001 3001 3002 300.1 600.2 3001 1978-03-21 2024-10-11 00:50:01.000 1978-03-21 2024-10-11 00:50:01 +3002 3002 3003 300.2 600.4 3002 1978-03-22 2024-10-11 00:50:02.000 1978-03-22 2024-10-11 00:50:02 +3003 3003 3004 300.3 600.6 3003 1978-03-23 2024-10-11 00:50:03.000 1978-03-23 2024-10-11 00:50:03 +3004 3004 3005 300.4 600.8000000000001 3004 1978-03-24 2024-10-11 00:50:04.000 1978-03-24 2024-10-11 00:50:04 +3006 3006 3007 300.6 601.2 3006 1978-03-26 2024-10-11 00:50:06.000 1978-03-26 2024-10-11 00:50:06 +3007 3007 3008 300.7 601.4 3007 1978-03-27 2024-10-11 00:50:07.000 1978-03-27 2024-10-11 00:50:07 +3008 3008 3009 300.8 601.6 3008 1978-03-28 2024-10-11 00:50:08.000 1978-03-28 2024-10-11 00:50:08 +3009 3009 3010 300.9 601.8000000000001 3009 1978-03-29 2024-10-11 00:50:09.000 1978-03-29 2024-10-11 00:50:09 +3011 3011 3012 301.1 602.2 3011 1978-03-31 2024-10-11 00:50:11.000 1978-03-31 2024-10-11 00:50:11 +3012 3012 3013 301.2 602.4 3012 1978-04-01 2024-10-11 00:50:12.000 1978-04-01 2024-10-11 00:50:12 +3013 3013 3014 301.3 602.6 3013 1978-04-02 2024-10-11 00:50:13.000 1978-04-02 2024-10-11 00:50:13 +3014 3014 3015 301.4 602.8000000000001 3014 1978-04-03 2024-10-11 00:50:14.000 1978-04-03 2024-10-11 00:50:14 +3016 3016 3017 301.6 603.2 3016 1978-04-05 2024-10-11 00:50:16.000 1978-04-05 2024-10-11 00:50:16 +3017 3017 3018 301.7 603.4 3017 1978-04-06 2024-10-11 00:50:17.000 1978-04-06 2024-10-11 00:50:17 +3018 3018 3019 301.8 603.6 3018 1978-04-07 2024-10-11 00:50:18.000 1978-04-07 2024-10-11 00:50:18 +3019 3019 3020 301.9 603.8000000000001 3019 1978-04-08 2024-10-11 00:50:19.000 1978-04-08 2024-10-11 00:50:19 +3021 3021 3022 302.1 604.2 3021 1978-04-10 2024-10-11 00:50:21.000 1978-04-10 2024-10-11 00:50:21 +3022 3022 3023 302.2 604.4 3022 1978-04-11 2024-10-11 00:50:22.000 1978-04-11 2024-10-11 00:50:22 +3023 3023 3024 302.3 604.6 3023 1978-04-12 2024-10-11 00:50:23.000 1978-04-12 2024-10-11 00:50:23 +3024 3024 3025 302.4 604.8000000000001 3024 1978-04-13 2024-10-11 00:50:24.000 1978-04-13 2024-10-11 00:50:24 +3026 3026 3027 302.6 605.2 3026 1978-04-15 2024-10-11 00:50:26.000 1978-04-15 2024-10-11 00:50:26 +3027 3027 3028 302.7 605.4 3027 1978-04-16 2024-10-11 00:50:27.000 1978-04-16 2024-10-11 00:50:27 +3028 3028 3029 302.8 605.6 3028 1978-04-17 2024-10-11 00:50:28.000 1978-04-17 2024-10-11 00:50:28 +3029 3029 3030 302.9 605.8000000000001 3029 1978-04-18 2024-10-11 00:50:29.000 1978-04-18 2024-10-11 00:50:29 +3031 3031 3032 303.1 606.2 3031 1978-04-20 2024-10-11 00:50:31.000 1978-04-20 2024-10-11 00:50:31 +3032 3032 3033 303.2 606.4 3032 1978-04-21 2024-10-11 00:50:32.000 1978-04-21 2024-10-11 00:50:32 +3033 3033 3034 303.3 606.6 3033 1978-04-22 2024-10-11 00:50:33.000 1978-04-22 2024-10-11 00:50:33 +3034 3034 3035 303.4 606.8000000000001 3034 1978-04-23 2024-10-11 00:50:34.000 1978-04-23 2024-10-11 00:50:34 +3036 3036 3037 303.6 607.2 3036 1978-04-25 2024-10-11 00:50:36.000 1978-04-25 2024-10-11 00:50:36 +3037 3037 3038 303.7 607.4 3037 1978-04-26 2024-10-11 00:50:37.000 1978-04-26 2024-10-11 00:50:37 +3038 3038 3039 303.8 607.6 3038 1978-04-27 2024-10-11 00:50:38.000 1978-04-27 2024-10-11 00:50:38 +3039 3039 3040 303.9 607.8000000000001 3039 1978-04-28 2024-10-11 00:50:39.000 1978-04-28 2024-10-11 00:50:39 +3041 3041 3042 304.1 608.2 3041 1978-04-30 2024-10-11 00:50:41.000 1978-04-30 2024-10-11 00:50:41 +3042 3042 3043 304.2 608.4 3042 1978-05-01 2024-10-11 00:50:42.000 1978-05-01 2024-10-11 00:50:42 +3043 3043 3044 304.3 608.6 3043 1978-05-02 2024-10-11 00:50:43.000 1978-05-02 2024-10-11 00:50:43 +3044 3044 3045 304.4 608.8000000000001 3044 1978-05-03 2024-10-11 00:50:44.000 1978-05-03 2024-10-11 00:50:44 +3046 3046 3047 304.6 609.2 3046 1978-05-05 2024-10-11 00:50:46.000 1978-05-05 2024-10-11 00:50:46 +3047 3047 3048 304.7 609.4 3047 1978-05-06 2024-10-11 00:50:47.000 1978-05-06 2024-10-11 00:50:47 +3048 3048 3049 304.8 609.6 3048 1978-05-07 2024-10-11 00:50:48.000 1978-05-07 2024-10-11 00:50:48 +3049 3049 3050 304.9 609.8000000000001 3049 1978-05-08 2024-10-11 00:50:49.000 1978-05-08 2024-10-11 00:50:49 +3051 3051 3052 305.1 610.2 3051 1978-05-10 2024-10-11 00:50:51.000 1978-05-10 2024-10-11 00:50:51 +3052 3052 3053 305.2 610.4 3052 1978-05-11 2024-10-11 00:50:52.000 1978-05-11 2024-10-11 00:50:52 +3053 3053 3054 305.3 610.6 3053 1978-05-12 2024-10-11 00:50:53.000 1978-05-12 2024-10-11 00:50:53 +3054 3054 3055 305.4 610.8000000000001 3054 1978-05-13 2024-10-11 00:50:54.000 1978-05-13 2024-10-11 00:50:54 +3056 3056 3057 305.6 611.2 3056 1978-05-15 2024-10-11 00:50:56.000 1978-05-15 2024-10-11 00:50:56 +3057 3057 3058 305.7 611.4 3057 1978-05-16 2024-10-11 00:50:57.000 1978-05-16 2024-10-11 00:50:57 +3058 3058 3059 305.8 611.6 3058 1978-05-17 2024-10-11 00:50:58.000 1978-05-17 2024-10-11 00:50:58 +3059 3059 3060 305.9 611.8000000000001 3059 1978-05-18 2024-10-11 00:50:59.000 1978-05-18 2024-10-11 00:50:59 +3061 3061 3062 306.1 612.2 3061 1978-05-20 2024-10-11 00:51:01.000 1978-05-20 2024-10-11 00:51:01 +3062 3062 3063 306.2 612.4 3062 1978-05-21 2024-10-11 00:51:02.000 1978-05-21 2024-10-11 00:51:02 +3063 3063 3064 306.3 612.6 3063 1978-05-22 2024-10-11 00:51:03.000 1978-05-22 2024-10-11 00:51:03 +3064 3064 3065 306.4 612.8000000000001 3064 1978-05-23 2024-10-11 00:51:04.000 1978-05-23 2024-10-11 00:51:04 +3066 3066 3067 306.6 613.2 3066 1978-05-25 2024-10-11 00:51:06.000 1978-05-25 2024-10-11 00:51:06 +3067 3067 3068 306.7 613.4 3067 1978-05-26 2024-10-11 00:51:07.000 1978-05-26 2024-10-11 00:51:07 +3068 3068 3069 306.8 613.6 3068 1978-05-27 2024-10-11 00:51:08.000 1978-05-27 2024-10-11 00:51:08 +3069 3069 3070 306.9 613.8000000000001 3069 1978-05-28 2024-10-11 00:51:09.000 1978-05-28 2024-10-11 00:51:09 +3071 3071 3072 307.1 614.2 3071 1978-05-30 2024-10-11 00:51:11.000 1978-05-30 2024-10-11 00:51:11 +3072 3072 3073 307.2 614.4000000000001 3072 1978-05-31 2024-10-11 00:51:12.000 1978-05-31 2024-10-11 00:51:12 +3073 3073 3074 307.3 614.6 3073 1978-06-01 2024-10-11 00:51:13.000 1978-06-01 2024-10-11 00:51:13 +3074 3074 3075 307.4 614.8000000000001 3074 1978-06-02 2024-10-11 00:51:14.000 1978-06-02 2024-10-11 00:51:14 +3076 3076 3077 307.6 615.2 3076 1978-06-04 2024-10-11 00:51:16.000 1978-06-04 2024-10-11 00:51:16 +3077 3077 3078 307.7 615.4000000000001 3077 1978-06-05 2024-10-11 00:51:17.000 1978-06-05 2024-10-11 00:51:17 +3078 3078 3079 307.8 615.6 3078 1978-06-06 2024-10-11 00:51:18.000 1978-06-06 2024-10-11 00:51:18 +3079 3079 3080 307.9 615.8000000000001 3079 1978-06-07 2024-10-11 00:51:19.000 1978-06-07 2024-10-11 00:51:19 +3081 3081 3082 308.1 616.2 3081 1978-06-09 2024-10-11 00:51:21.000 1978-06-09 2024-10-11 00:51:21 +3082 3082 3083 308.2 616.4000000000001 3082 1978-06-10 2024-10-11 00:51:22.000 1978-06-10 2024-10-11 00:51:22 +3083 3083 3084 308.3 616.6 3083 1978-06-11 2024-10-11 00:51:23.000 1978-06-11 2024-10-11 00:51:23 +3084 3084 3085 308.4 616.8000000000001 3084 1978-06-12 2024-10-11 00:51:24.000 1978-06-12 2024-10-11 00:51:24 +3086 3086 3087 308.6 617.2 3086 1978-06-14 2024-10-11 00:51:26.000 1978-06-14 2024-10-11 00:51:26 +3087 3087 3088 308.7 617.4000000000001 3087 1978-06-15 2024-10-11 00:51:27.000 1978-06-15 2024-10-11 00:51:27 +3088 3088 3089 308.8 617.6 3088 1978-06-16 2024-10-11 00:51:28.000 1978-06-16 2024-10-11 00:51:28 +3089 3089 3090 308.9 617.8000000000001 3089 1978-06-17 2024-10-11 00:51:29.000 1978-06-17 2024-10-11 00:51:29 +3091 3091 3092 309.1 618.2 3091 1978-06-19 2024-10-11 00:51:31.000 1978-06-19 2024-10-11 00:51:31 +3092 3092 3093 309.2 618.4000000000001 3092 1978-06-20 2024-10-11 00:51:32.000 1978-06-20 2024-10-11 00:51:32 +3093 3093 3094 309.3 618.6 3093 1978-06-21 2024-10-11 00:51:33.000 1978-06-21 2024-10-11 00:51:33 +3094 3094 3095 309.4 618.8000000000001 3094 1978-06-22 2024-10-11 00:51:34.000 1978-06-22 2024-10-11 00:51:34 +3096 3096 3097 309.6 619.2 3096 1978-06-24 2024-10-11 00:51:36.000 1978-06-24 2024-10-11 00:51:36 +3097 3097 3098 309.7 619.4000000000001 3097 1978-06-25 2024-10-11 00:51:37.000 1978-06-25 2024-10-11 00:51:37 +3098 3098 3099 309.8 619.6 3098 1978-06-26 2024-10-11 00:51:38.000 1978-06-26 2024-10-11 00:51:38 +3099 3099 3100 309.9 619.8000000000001 3099 1978-06-27 2024-10-11 00:51:39.000 1978-06-27 2024-10-11 00:51:39 +3101 3101 3102 310.1 620.2 3101 1978-06-29 2024-10-11 00:51:41.000 1978-06-29 2024-10-11 00:51:41 +3102 3102 3103 310.2 620.4000000000001 3102 1978-06-30 2024-10-11 00:51:42.000 1978-06-30 2024-10-11 00:51:42 +3103 3103 3104 310.3 620.6 3103 1978-07-01 2024-10-11 00:51:43.000 1978-07-01 2024-10-11 00:51:43 +3104 3104 3105 310.4 620.8000000000001 3104 1978-07-02 2024-10-11 00:51:44.000 1978-07-02 2024-10-11 00:51:44 +3106 3106 3107 310.6 621.2 3106 1978-07-04 2024-10-11 00:51:46.000 1978-07-04 2024-10-11 00:51:46 +3107 3107 3108 310.7 621.4000000000001 3107 1978-07-05 2024-10-11 00:51:47.000 1978-07-05 2024-10-11 00:51:47 +3108 3108 3109 310.8 621.6 3108 1978-07-06 2024-10-11 00:51:48.000 1978-07-06 2024-10-11 00:51:48 +3109 3109 3110 310.9 621.8000000000001 3109 1978-07-07 2024-10-11 00:51:49.000 1978-07-07 2024-10-11 00:51:49 +3111 3111 3112 311.1 622.2 3111 1978-07-09 2024-10-11 00:51:51.000 1978-07-09 2024-10-11 00:51:51 +3112 3112 3113 311.2 622.4000000000001 3112 1978-07-10 2024-10-11 00:51:52.000 1978-07-10 2024-10-11 00:51:52 +3113 3113 3114 311.3 622.6 3113 1978-07-11 2024-10-11 00:51:53.000 1978-07-11 2024-10-11 00:51:53 +3114 3114 3115 311.4 622.8000000000001 3114 1978-07-12 2024-10-11 00:51:54.000 1978-07-12 2024-10-11 00:51:54 +3116 3116 3117 311.6 623.2 3116 1978-07-14 2024-10-11 00:51:56.000 1978-07-14 2024-10-11 00:51:56 +3117 3117 3118 311.7 623.4000000000001 3117 1978-07-15 2024-10-11 00:51:57.000 1978-07-15 2024-10-11 00:51:57 +3118 3118 3119 311.8 623.6 3118 1978-07-16 2024-10-11 00:51:58.000 1978-07-16 2024-10-11 00:51:58 +3119 3119 3120 311.9 623.8000000000001 3119 1978-07-17 2024-10-11 00:51:59.000 1978-07-17 2024-10-11 00:51:59 +3121 3121 3122 312.1 624.2 3121 1978-07-19 2024-10-11 00:52:01.000 1978-07-19 2024-10-11 00:52:01 +3122 3122 3123 312.2 624.4000000000001 3122 1978-07-20 2024-10-11 00:52:02.000 1978-07-20 2024-10-11 00:52:02 +3123 3123 3124 312.3 624.6 3123 1978-07-21 2024-10-11 00:52:03.000 1978-07-21 2024-10-11 00:52:03 +3124 3124 3125 312.4 624.8000000000001 3124 1978-07-22 2024-10-11 00:52:04.000 1978-07-22 2024-10-11 00:52:04 +3126 3126 3127 312.6 625.2 3126 1978-07-24 2024-10-11 00:52:06.000 1978-07-24 2024-10-11 00:52:06 +3127 3127 3128 312.7 625.4000000000001 3127 1978-07-25 2024-10-11 00:52:07.000 1978-07-25 2024-10-11 00:52:07 +3128 3128 3129 312.8 625.6 3128 1978-07-26 2024-10-11 00:52:08.000 1978-07-26 2024-10-11 00:52:08 +3129 3129 3130 312.9 625.8000000000001 3129 1978-07-27 2024-10-11 00:52:09.000 1978-07-27 2024-10-11 00:52:09 +3131 3131 3132 313.1 626.2 3131 1978-07-29 2024-10-11 00:52:11.000 1978-07-29 2024-10-11 00:52:11 +3132 3132 3133 313.2 626.4000000000001 3132 1978-07-30 2024-10-11 00:52:12.000 1978-07-30 2024-10-11 00:52:12 +3133 3133 3134 313.3 626.6 3133 1978-07-31 2024-10-11 00:52:13.000 1978-07-31 2024-10-11 00:52:13 +3134 3134 3135 313.4 626.8000000000001 3134 1978-08-01 2024-10-11 00:52:14.000 1978-08-01 2024-10-11 00:52:14 +3136 3136 3137 313.6 627.2 3136 1978-08-03 2024-10-11 00:52:16.000 1978-08-03 2024-10-11 00:52:16 +3137 3137 3138 313.7 627.4000000000001 3137 1978-08-04 2024-10-11 00:52:17.000 1978-08-04 2024-10-11 00:52:17 +3138 3138 3139 313.8 627.6 3138 1978-08-05 2024-10-11 00:52:18.000 1978-08-05 2024-10-11 00:52:18 +3139 3139 3140 313.9 627.8000000000001 3139 1978-08-06 2024-10-11 00:52:19.000 1978-08-06 2024-10-11 00:52:19 +3141 3141 3142 314.1 628.2 3141 1978-08-08 2024-10-11 00:52:21.000 1978-08-08 2024-10-11 00:52:21 +3142 3142 3143 314.2 628.4000000000001 3142 1978-08-09 2024-10-11 00:52:22.000 1978-08-09 2024-10-11 00:52:22 +3143 3143 3144 314.3 628.6 3143 1978-08-10 2024-10-11 00:52:23.000 1978-08-10 2024-10-11 00:52:23 +3144 3144 3145 314.4 628.8000000000001 3144 1978-08-11 2024-10-11 00:52:24.000 1978-08-11 2024-10-11 00:52:24 +3146 3146 3147 314.6 629.2 3146 1978-08-13 2024-10-11 00:52:26.000 1978-08-13 2024-10-11 00:52:26 +3147 3147 3148 314.7 629.4000000000001 3147 1978-08-14 2024-10-11 00:52:27.000 1978-08-14 2024-10-11 00:52:27 +3148 3148 3149 314.8 629.6 3148 1978-08-15 2024-10-11 00:52:28.000 1978-08-15 2024-10-11 00:52:28 +3149 3149 3150 314.9 629.8000000000001 3149 1978-08-16 2024-10-11 00:52:29.000 1978-08-16 2024-10-11 00:52:29 +3151 3151 3152 315.1 630.2 3151 1978-08-18 2024-10-11 00:52:31.000 1978-08-18 2024-10-11 00:52:31 +3152 3152 3153 315.2 630.4000000000001 3152 1978-08-19 2024-10-11 00:52:32.000 1978-08-19 2024-10-11 00:52:32 +3153 3153 3154 315.3 630.6 3153 1978-08-20 2024-10-11 00:52:33.000 1978-08-20 2024-10-11 00:52:33 +3154 3154 3155 315.4 630.8000000000001 3154 1978-08-21 2024-10-11 00:52:34.000 1978-08-21 2024-10-11 00:52:34 +3156 3156 3157 315.6 631.2 3156 1978-08-23 2024-10-11 00:52:36.000 1978-08-23 2024-10-11 00:52:36 +3157 3157 3158 315.7 631.4000000000001 3157 1978-08-24 2024-10-11 00:52:37.000 1978-08-24 2024-10-11 00:52:37 +3158 3158 3159 315.8 631.6 3158 1978-08-25 2024-10-11 00:52:38.000 1978-08-25 2024-10-11 00:52:38 +3159 3159 3160 315.9 631.8000000000001 3159 1978-08-26 2024-10-11 00:52:39.000 1978-08-26 2024-10-11 00:52:39 +3161 3161 3162 316.1 632.2 3161 1978-08-28 2024-10-11 00:52:41.000 1978-08-28 2024-10-11 00:52:41 +3162 3162 3163 316.2 632.4000000000001 3162 1978-08-29 2024-10-11 00:52:42.000 1978-08-29 2024-10-11 00:52:42 +3163 3163 3164 316.3 632.6 3163 1978-08-30 2024-10-11 00:52:43.000 1978-08-30 2024-10-11 00:52:43 +3164 3164 3165 316.4 632.8000000000001 3164 1978-08-31 2024-10-11 00:52:44.000 1978-08-31 2024-10-11 00:52:44 +3166 3166 3167 316.6 633.2 3166 1978-09-02 2024-10-11 00:52:46.000 1978-09-02 2024-10-11 00:52:46 +3167 3167 3168 316.7 633.4000000000001 3167 1978-09-03 2024-10-11 00:52:47.000 1978-09-03 2024-10-11 00:52:47 +3168 3168 3169 316.8 633.6 3168 1978-09-04 2024-10-11 00:52:48.000 1978-09-04 2024-10-11 00:52:48 +3169 3169 3170 316.9 633.8000000000001 3169 1978-09-05 2024-10-11 00:52:49.000 1978-09-05 2024-10-11 00:52:49 +3171 3171 3172 317.1 634.2 3171 1978-09-07 2024-10-11 00:52:51.000 1978-09-07 2024-10-11 00:52:51 +3172 3172 3173 317.2 634.4000000000001 3172 1978-09-08 2024-10-11 00:52:52.000 1978-09-08 2024-10-11 00:52:52 +3173 3173 3174 317.3 634.6 3173 1978-09-09 2024-10-11 00:52:53.000 1978-09-09 2024-10-11 00:52:53 +3174 3174 3175 317.4 634.8000000000001 3174 1978-09-10 2024-10-11 00:52:54.000 1978-09-10 2024-10-11 00:52:54 +3176 3176 3177 317.6 635.2 3176 1978-09-12 2024-10-11 00:52:56.000 1978-09-12 2024-10-11 00:52:56 +3177 3177 3178 317.7 635.4000000000001 3177 1978-09-13 2024-10-11 00:52:57.000 1978-09-13 2024-10-11 00:52:57 +3178 3178 3179 317.8 635.6 3178 1978-09-14 2024-10-11 00:52:58.000 1978-09-14 2024-10-11 00:52:58 +3179 3179 3180 317.9 635.8000000000001 3179 1978-09-15 2024-10-11 00:52:59.000 1978-09-15 2024-10-11 00:52:59 +3181 3181 3182 318.1 636.2 3181 1978-09-17 2024-10-11 00:53:01.000 1978-09-17 2024-10-11 00:53:01 +3182 3182 3183 318.2 636.4000000000001 3182 1978-09-18 2024-10-11 00:53:02.000 1978-09-18 2024-10-11 00:53:02 +3183 3183 3184 318.3 636.6 3183 1978-09-19 2024-10-11 00:53:03.000 1978-09-19 2024-10-11 00:53:03 +3184 3184 3185 318.4 636.8000000000001 3184 1978-09-20 2024-10-11 00:53:04.000 1978-09-20 2024-10-11 00:53:04 +3186 3186 3187 318.6 637.2 3186 1978-09-22 2024-10-11 00:53:06.000 1978-09-22 2024-10-11 00:53:06 +3187 3187 3188 318.7 637.4000000000001 3187 1978-09-23 2024-10-11 00:53:07.000 1978-09-23 2024-10-11 00:53:07 +3188 3188 3189 318.8 637.6 3188 1978-09-24 2024-10-11 00:53:08.000 1978-09-24 2024-10-11 00:53:08 +3189 3189 3190 318.9 637.8000000000001 3189 1978-09-25 2024-10-11 00:53:09.000 1978-09-25 2024-10-11 00:53:09 +3191 3191 3192 319.1 638.2 3191 1978-09-27 2024-10-11 00:53:11.000 1978-09-27 2024-10-11 00:53:11 +3192 3192 3193 319.2 638.4000000000001 3192 1978-09-28 2024-10-11 00:53:12.000 1978-09-28 2024-10-11 00:53:12 +3193 3193 3194 319.3 638.6 3193 1978-09-29 2024-10-11 00:53:13.000 1978-09-29 2024-10-11 00:53:13 +3194 3194 3195 319.4 638.8000000000001 3194 1978-09-30 2024-10-11 00:53:14.000 1978-09-30 2024-10-11 00:53:14 +3196 3196 3197 319.6 639.2 3196 1978-10-02 2024-10-11 00:53:16.000 1978-10-02 2024-10-11 00:53:16 +3197 3197 3198 319.7 639.4000000000001 3197 1978-10-03 2024-10-11 00:53:17.000 1978-10-03 2024-10-11 00:53:17 +3198 3198 3199 319.8 639.6 3198 1978-10-04 2024-10-11 00:53:18.000 1978-10-04 2024-10-11 00:53:18 +3199 3199 3200 319.9 639.8000000000001 3199 1978-10-05 2024-10-11 00:53:19.000 1978-10-05 2024-10-11 00:53:19 +3201 3201 3202 320.1 640.2 3201 1978-10-07 2024-10-11 00:53:21.000 1978-10-07 2024-10-11 00:53:21 +3202 3202 3203 320.2 640.4000000000001 3202 1978-10-08 2024-10-11 00:53:22.000 1978-10-08 2024-10-11 00:53:22 +3203 3203 3204 320.3 640.6 3203 1978-10-09 2024-10-11 00:53:23.000 1978-10-09 2024-10-11 00:53:23 +3204 3204 3205 320.4 640.8000000000001 3204 1978-10-10 2024-10-11 00:53:24.000 1978-10-10 2024-10-11 00:53:24 +3206 3206 3207 320.6 641.2 3206 1978-10-12 2024-10-11 00:53:26.000 1978-10-12 2024-10-11 00:53:26 +3207 3207 3208 320.7 641.4000000000001 3207 1978-10-13 2024-10-11 00:53:27.000 1978-10-13 2024-10-11 00:53:27 +3208 3208 3209 320.8 641.6 3208 1978-10-14 2024-10-11 00:53:28.000 1978-10-14 2024-10-11 00:53:28 +3209 3209 3210 320.9 641.8000000000001 3209 1978-10-15 2024-10-11 00:53:29.000 1978-10-15 2024-10-11 00:53:29 +3211 3211 3212 321.1 642.2 3211 1978-10-17 2024-10-11 00:53:31.000 1978-10-17 2024-10-11 00:53:31 +3212 3212 3213 321.2 642.4000000000001 3212 1978-10-18 2024-10-11 00:53:32.000 1978-10-18 2024-10-11 00:53:32 +3213 3213 3214 321.3 642.6 3213 1978-10-19 2024-10-11 00:53:33.000 1978-10-19 2024-10-11 00:53:33 +3214 3214 3215 321.4 642.8000000000001 3214 1978-10-20 2024-10-11 00:53:34.000 1978-10-20 2024-10-11 00:53:34 +3216 3216 3217 321.6 643.2 3216 1978-10-22 2024-10-11 00:53:36.000 1978-10-22 2024-10-11 00:53:36 +3217 3217 3218 321.7 643.4000000000001 3217 1978-10-23 2024-10-11 00:53:37.000 1978-10-23 2024-10-11 00:53:37 +3218 3218 3219 321.8 643.6 3218 1978-10-24 2024-10-11 00:53:38.000 1978-10-24 2024-10-11 00:53:38 +3219 3219 3220 321.9 643.8000000000001 3219 1978-10-25 2024-10-11 00:53:39.000 1978-10-25 2024-10-11 00:53:39 +3221 3221 3222 322.1 644.2 3221 1978-10-27 2024-10-11 00:53:41.000 1978-10-27 2024-10-11 00:53:41 +3222 3222 3223 322.2 644.4000000000001 3222 1978-10-28 2024-10-11 00:53:42.000 1978-10-28 2024-10-11 00:53:42 +3223 3223 3224 322.3 644.6 3223 1978-10-29 2024-10-11 00:53:43.000 1978-10-29 2024-10-11 00:53:43 +3224 3224 3225 322.4 644.8000000000001 3224 1978-10-30 2024-10-11 00:53:44.000 1978-10-30 2024-10-11 00:53:44 +3226 3226 3227 322.6 645.2 3226 1978-11-01 2024-10-11 00:53:46.000 1978-11-01 2024-10-11 00:53:46 +3227 3227 3228 322.7 645.4000000000001 3227 1978-11-02 2024-10-11 00:53:47.000 1978-11-02 2024-10-11 00:53:47 +3228 3228 3229 322.8 645.6 3228 1978-11-03 2024-10-11 00:53:48.000 1978-11-03 2024-10-11 00:53:48 +3229 3229 3230 322.9 645.8000000000001 3229 1978-11-04 2024-10-11 00:53:49.000 1978-11-04 2024-10-11 00:53:49 +3231 3231 3232 323.1 646.2 3231 1978-11-06 2024-10-11 00:53:51.000 1978-11-06 2024-10-11 00:53:51 +3232 3232 3233 323.2 646.4000000000001 3232 1978-11-07 2024-10-11 00:53:52.000 1978-11-07 2024-10-11 00:53:52 +3233 3233 3234 323.3 646.6 3233 1978-11-08 2024-10-11 00:53:53.000 1978-11-08 2024-10-11 00:53:53 +3234 3234 3235 323.4 646.8000000000001 3234 1978-11-09 2024-10-11 00:53:54.000 1978-11-09 2024-10-11 00:53:54 +3236 3236 3237 323.6 647.2 3236 1978-11-11 2024-10-11 00:53:56.000 1978-11-11 2024-10-11 00:53:56 +3237 3237 3238 323.7 647.4000000000001 3237 1978-11-12 2024-10-11 00:53:57.000 1978-11-12 2024-10-11 00:53:57 +3238 3238 3239 323.8 647.6 3238 1978-11-13 2024-10-11 00:53:58.000 1978-11-13 2024-10-11 00:53:58 +3239 3239 3240 323.9 647.8000000000001 3239 1978-11-14 2024-10-11 00:53:59.000 1978-11-14 2024-10-11 00:53:59 +3241 3241 3242 324.1 648.2 3241 1978-11-16 2024-10-11 00:54:01.000 1978-11-16 2024-10-11 00:54:01 +3242 3242 3243 324.2 648.4000000000001 3242 1978-11-17 2024-10-11 00:54:02.000 1978-11-17 2024-10-11 00:54:02 +3243 3243 3244 324.3 648.6 3243 1978-11-18 2024-10-11 00:54:03.000 1978-11-18 2024-10-11 00:54:03 +3244 3244 3245 324.4 648.8000000000001 3244 1978-11-19 2024-10-11 00:54:04.000 1978-11-19 2024-10-11 00:54:04 +3246 3246 3247 324.6 649.2 3246 1978-11-21 2024-10-11 00:54:06.000 1978-11-21 2024-10-11 00:54:06 +3247 3247 3248 324.7 649.4000000000001 3247 1978-11-22 2024-10-11 00:54:07.000 1978-11-22 2024-10-11 00:54:07 +3248 3248 3249 324.8 649.6 3248 1978-11-23 2024-10-11 00:54:08.000 1978-11-23 2024-10-11 00:54:08 +3249 3249 3250 324.9 649.8000000000001 3249 1978-11-24 2024-10-11 00:54:09.000 1978-11-24 2024-10-11 00:54:09 +3251 3251 3252 325.1 650.2 3251 1978-11-26 2024-10-11 00:54:11.000 1978-11-26 2024-10-11 00:54:11 +3252 3252 3253 325.2 650.4000000000001 3252 1978-11-27 2024-10-11 00:54:12.000 1978-11-27 2024-10-11 00:54:12 +3253 3253 3254 325.3 650.6 3253 1978-11-28 2024-10-11 00:54:13.000 1978-11-28 2024-10-11 00:54:13 +3254 3254 3255 325.4 650.8000000000001 3254 1978-11-29 2024-10-11 00:54:14.000 1978-11-29 2024-10-11 00:54:14 +3256 3256 3257 325.6 651.2 3256 1978-12-01 2024-10-11 00:54:16.000 1978-12-01 2024-10-11 00:54:16 +3257 3257 3258 325.7 651.4000000000001 3257 1978-12-02 2024-10-11 00:54:17.000 1978-12-02 2024-10-11 00:54:17 +3258 3258 3259 325.8 651.6 3258 1978-12-03 2024-10-11 00:54:18.000 1978-12-03 2024-10-11 00:54:18 +3259 3259 3260 325.9 651.8000000000001 3259 1978-12-04 2024-10-11 00:54:19.000 1978-12-04 2024-10-11 00:54:19 +3261 3261 3262 326.1 652.2 3261 1978-12-06 2024-10-11 00:54:21.000 1978-12-06 2024-10-11 00:54:21 +3262 3262 3263 326.2 652.4000000000001 3262 1978-12-07 2024-10-11 00:54:22.000 1978-12-07 2024-10-11 00:54:22 +3263 3263 3264 326.3 652.6 3263 1978-12-08 2024-10-11 00:54:23.000 1978-12-08 2024-10-11 00:54:23 +3264 3264 3265 326.4 652.8000000000001 3264 1978-12-09 2024-10-11 00:54:24.000 1978-12-09 2024-10-11 00:54:24 +3266 3266 3267 326.6 653.2 3266 1978-12-11 2024-10-11 00:54:26.000 1978-12-11 2024-10-11 00:54:26 +3267 3267 3268 326.7 653.4000000000001 3267 1978-12-12 2024-10-11 00:54:27.000 1978-12-12 2024-10-11 00:54:27 +3268 3268 3269 326.8 653.6 3268 1978-12-13 2024-10-11 00:54:28.000 1978-12-13 2024-10-11 00:54:28 +3269 3269 3270 326.9 653.8000000000001 3269 1978-12-14 2024-10-11 00:54:29.000 1978-12-14 2024-10-11 00:54:29 +3271 3271 3272 327.1 654.2 3271 1978-12-16 2024-10-11 00:54:31.000 1978-12-16 2024-10-11 00:54:31 +3272 3272 3273 327.2 654.4000000000001 3272 1978-12-17 2024-10-11 00:54:32.000 1978-12-17 2024-10-11 00:54:32 +3273 3273 3274 327.3 654.6 3273 1978-12-18 2024-10-11 00:54:33.000 1978-12-18 2024-10-11 00:54:33 +3274 3274 3275 327.4 654.8000000000001 3274 1978-12-19 2024-10-11 00:54:34.000 1978-12-19 2024-10-11 00:54:34 +3276 3276 3277 327.6 655.2 3276 1978-12-21 2024-10-11 00:54:36.000 1978-12-21 2024-10-11 00:54:36 +3277 3277 3278 327.7 655.4000000000001 3277 1978-12-22 2024-10-11 00:54:37.000 1978-12-22 2024-10-11 00:54:37 +3278 3278 3279 327.8 655.6 3278 1978-12-23 2024-10-11 00:54:38.000 1978-12-23 2024-10-11 00:54:38 +3279 3279 3280 327.9 655.8000000000001 3279 1978-12-24 2024-10-11 00:54:39.000 1978-12-24 2024-10-11 00:54:39 +3281 3281 3282 328.1 656.2 3281 1978-12-26 2024-10-11 00:54:41.000 1978-12-26 2024-10-11 00:54:41 +3282 3282 3283 328.2 656.4000000000001 3282 1978-12-27 2024-10-11 00:54:42.000 1978-12-27 2024-10-11 00:54:42 +3283 3283 3284 328.3 656.6 3283 1978-12-28 2024-10-11 00:54:43.000 1978-12-28 2024-10-11 00:54:43 +3284 3284 3285 328.4 656.8000000000001 3284 1978-12-29 2024-10-11 00:54:44.000 1978-12-29 2024-10-11 00:54:44 +3286 3286 3287 328.6 657.2 3286 1978-12-31 2024-10-11 00:54:46.000 1978-12-31 2024-10-11 00:54:46 +3287 3287 3288 328.7 657.4000000000001 3287 1979-01-01 2024-10-11 00:54:47.000 1979-01-01 2024-10-11 00:54:47 +3288 3288 3289 328.8 657.6 3288 1979-01-02 2024-10-11 00:54:48.000 1979-01-02 2024-10-11 00:54:48 +3289 3289 3290 328.9 657.8000000000001 3289 1979-01-03 2024-10-11 00:54:49.000 1979-01-03 2024-10-11 00:54:49 +3291 3291 3292 329.1 658.2 3291 1979-01-05 2024-10-11 00:54:51.000 1979-01-05 2024-10-11 00:54:51 +3292 3292 3293 329.2 658.4000000000001 3292 1979-01-06 2024-10-11 00:54:52.000 1979-01-06 2024-10-11 00:54:52 +3293 3293 3294 329.3 658.6 3293 1979-01-07 2024-10-11 00:54:53.000 1979-01-07 2024-10-11 00:54:53 +3294 3294 3295 329.4 658.8000000000001 3294 1979-01-08 2024-10-11 00:54:54.000 1979-01-08 2024-10-11 00:54:54 +3296 3296 3297 329.6 659.2 3296 1979-01-10 2024-10-11 00:54:56.000 1979-01-10 2024-10-11 00:54:56 +3297 3297 3298 329.7 659.4000000000001 3297 1979-01-11 2024-10-11 00:54:57.000 1979-01-11 2024-10-11 00:54:57 +3298 3298 3299 329.8 659.6 3298 1979-01-12 2024-10-11 00:54:58.000 1979-01-12 2024-10-11 00:54:58 +3299 3299 3300 329.9 659.8000000000001 3299 1979-01-13 2024-10-11 00:54:59.000 1979-01-13 2024-10-11 00:54:59 +3301 3301 3302 330.1 660.2 3301 1979-01-15 2024-10-11 00:55:01.000 1979-01-15 2024-10-11 00:55:01 +3302 3302 3303 330.2 660.4000000000001 3302 1979-01-16 2024-10-11 00:55:02.000 1979-01-16 2024-10-11 00:55:02 +3303 3303 3304 330.3 660.6 3303 1979-01-17 2024-10-11 00:55:03.000 1979-01-17 2024-10-11 00:55:03 +3304 3304 3305 330.4 660.8000000000001 3304 1979-01-18 2024-10-11 00:55:04.000 1979-01-18 2024-10-11 00:55:04 +3306 3306 3307 330.6 661.2 3306 1979-01-20 2024-10-11 00:55:06.000 1979-01-20 2024-10-11 00:55:06 +3307 3307 3308 330.7 661.4000000000001 3307 1979-01-21 2024-10-11 00:55:07.000 1979-01-21 2024-10-11 00:55:07 +3308 3308 3309 330.8 661.6 3308 1979-01-22 2024-10-11 00:55:08.000 1979-01-22 2024-10-11 00:55:08 +3309 3309 3310 330.9 661.8000000000001 3309 1979-01-23 2024-10-11 00:55:09.000 1979-01-23 2024-10-11 00:55:09 +3311 3311 3312 331.1 662.2 3311 1979-01-25 2024-10-11 00:55:11.000 1979-01-25 2024-10-11 00:55:11 +3312 3312 3313 331.2 662.4000000000001 3312 1979-01-26 2024-10-11 00:55:12.000 1979-01-26 2024-10-11 00:55:12 +3313 3313 3314 331.3 662.6 3313 1979-01-27 2024-10-11 00:55:13.000 1979-01-27 2024-10-11 00:55:13 +3314 3314 3315 331.4 662.8000000000001 3314 1979-01-28 2024-10-11 00:55:14.000 1979-01-28 2024-10-11 00:55:14 +3316 3316 3317 331.6 663.2 3316 1979-01-30 2024-10-11 00:55:16.000 1979-01-30 2024-10-11 00:55:16 +3317 3317 3318 331.7 663.4000000000001 3317 1979-01-31 2024-10-11 00:55:17.000 1979-01-31 2024-10-11 00:55:17 +3318 3318 3319 331.8 663.6 3318 1979-02-01 2024-10-11 00:55:18.000 1979-02-01 2024-10-11 00:55:18 +3319 3319 3320 331.9 663.8000000000001 3319 1979-02-02 2024-10-11 00:55:19.000 1979-02-02 2024-10-11 00:55:19 +3321 3321 3322 332.1 664.2 3321 1979-02-04 2024-10-11 00:55:21.000 1979-02-04 2024-10-11 00:55:21 +3322 3322 3323 332.2 664.4000000000001 3322 1979-02-05 2024-10-11 00:55:22.000 1979-02-05 2024-10-11 00:55:22 +3323 3323 3324 332.3 664.6 3323 1979-02-06 2024-10-11 00:55:23.000 1979-02-06 2024-10-11 00:55:23 +3324 3324 3325 332.4 664.8000000000001 3324 1979-02-07 2024-10-11 00:55:24.000 1979-02-07 2024-10-11 00:55:24 +3326 3326 3327 332.6 665.2 3326 1979-02-09 2024-10-11 00:55:26.000 1979-02-09 2024-10-11 00:55:26 +3327 3327 3328 332.7 665.4000000000001 3327 1979-02-10 2024-10-11 00:55:27.000 1979-02-10 2024-10-11 00:55:27 +3328 3328 3329 332.8 665.6 3328 1979-02-11 2024-10-11 00:55:28.000 1979-02-11 2024-10-11 00:55:28 +3329 3329 3330 332.9 665.8000000000001 3329 1979-02-12 2024-10-11 00:55:29.000 1979-02-12 2024-10-11 00:55:29 +3331 3331 3332 333.1 666.2 3331 1979-02-14 2024-10-11 00:55:31.000 1979-02-14 2024-10-11 00:55:31 +3332 3332 3333 333.2 666.4000000000001 3332 1979-02-15 2024-10-11 00:55:32.000 1979-02-15 2024-10-11 00:55:32 +3333 3333 3334 333.3 666.6 3333 1979-02-16 2024-10-11 00:55:33.000 1979-02-16 2024-10-11 00:55:33 +3334 3334 3335 333.4 666.8000000000001 3334 1979-02-17 2024-10-11 00:55:34.000 1979-02-17 2024-10-11 00:55:34 +3336 3336 3337 333.6 667.2 3336 1979-02-19 2024-10-11 00:55:36.000 1979-02-19 2024-10-11 00:55:36 +3337 3337 3338 333.7 667.4000000000001 3337 1979-02-20 2024-10-11 00:55:37.000 1979-02-20 2024-10-11 00:55:37 +3338 3338 3339 333.8 667.6 3338 1979-02-21 2024-10-11 00:55:38.000 1979-02-21 2024-10-11 00:55:38 +3339 3339 3340 333.9 667.8000000000001 3339 1979-02-22 2024-10-11 00:55:39.000 1979-02-22 2024-10-11 00:55:39 +3341 3341 3342 334.1 668.2 3341 1979-02-24 2024-10-11 00:55:41.000 1979-02-24 2024-10-11 00:55:41 +3342 3342 3343 334.2 668.4000000000001 3342 1979-02-25 2024-10-11 00:55:42.000 1979-02-25 2024-10-11 00:55:42 +3343 3343 3344 334.3 668.6 3343 1979-02-26 2024-10-11 00:55:43.000 1979-02-26 2024-10-11 00:55:43 +3344 3344 3345 334.4 668.8000000000001 3344 1979-02-27 2024-10-11 00:55:44.000 1979-02-27 2024-10-11 00:55:44 +3346 3346 3347 334.6 669.2 3346 1979-03-01 2024-10-11 00:55:46.000 1979-03-01 2024-10-11 00:55:46 +3347 3347 3348 334.7 669.4000000000001 3347 1979-03-02 2024-10-11 00:55:47.000 1979-03-02 2024-10-11 00:55:47 +3348 3348 3349 334.8 669.6 3348 1979-03-03 2024-10-11 00:55:48.000 1979-03-03 2024-10-11 00:55:48 +3349 3349 3350 334.9 669.8000000000001 3349 1979-03-04 2024-10-11 00:55:49.000 1979-03-04 2024-10-11 00:55:49 +3351 3351 3352 335.1 670.2 3351 1979-03-06 2024-10-11 00:55:51.000 1979-03-06 2024-10-11 00:55:51 +3352 3352 3353 335.2 670.4000000000001 3352 1979-03-07 2024-10-11 00:55:52.000 1979-03-07 2024-10-11 00:55:52 +3353 3353 3354 335.3 670.6 3353 1979-03-08 2024-10-11 00:55:53.000 1979-03-08 2024-10-11 00:55:53 +3354 3354 3355 335.4 670.8000000000001 3354 1979-03-09 2024-10-11 00:55:54.000 1979-03-09 2024-10-11 00:55:54 +3356 3356 3357 335.6 671.2 3356 1979-03-11 2024-10-11 00:55:56.000 1979-03-11 2024-10-11 00:55:56 +3357 3357 3358 335.7 671.4000000000001 3357 1979-03-12 2024-10-11 00:55:57.000 1979-03-12 2024-10-11 00:55:57 +3358 3358 3359 335.8 671.6 3358 1979-03-13 2024-10-11 00:55:58.000 1979-03-13 2024-10-11 00:55:58 +3359 3359 3360 335.9 671.8000000000001 3359 1979-03-14 2024-10-11 00:55:59.000 1979-03-14 2024-10-11 00:55:59 +3361 3361 3362 336.1 672.2 3361 1979-03-16 2024-10-11 00:56:01.000 1979-03-16 2024-10-11 00:56:01 +3362 3362 3363 336.2 672.4000000000001 3362 1979-03-17 2024-10-11 00:56:02.000 1979-03-17 2024-10-11 00:56:02 +3363 3363 3364 336.3 672.6 3363 1979-03-18 2024-10-11 00:56:03.000 1979-03-18 2024-10-11 00:56:03 +3364 3364 3365 336.4 672.8000000000001 3364 1979-03-19 2024-10-11 00:56:04.000 1979-03-19 2024-10-11 00:56:04 +3366 3366 3367 336.6 673.2 3366 1979-03-21 2024-10-11 00:56:06.000 1979-03-21 2024-10-11 00:56:06 +3367 3367 3368 336.7 673.4000000000001 3367 1979-03-22 2024-10-11 00:56:07.000 1979-03-22 2024-10-11 00:56:07 +3368 3368 3369 336.8 673.6 3368 1979-03-23 2024-10-11 00:56:08.000 1979-03-23 2024-10-11 00:56:08 +3369 3369 3370 336.9 673.8000000000001 3369 1979-03-24 2024-10-11 00:56:09.000 1979-03-24 2024-10-11 00:56:09 +3371 3371 3372 337.1 674.2 3371 1979-03-26 2024-10-11 00:56:11.000 1979-03-26 2024-10-11 00:56:11 +3372 3372 3373 337.2 674.4000000000001 3372 1979-03-27 2024-10-11 00:56:12.000 1979-03-27 2024-10-11 00:56:12 +3373 3373 3374 337.3 674.6 3373 1979-03-28 2024-10-11 00:56:13.000 1979-03-28 2024-10-11 00:56:13 +3374 3374 3375 337.4 674.8000000000001 3374 1979-03-29 2024-10-11 00:56:14.000 1979-03-29 2024-10-11 00:56:14 +3376 3376 3377 337.6 675.2 3376 1979-03-31 2024-10-11 00:56:16.000 1979-03-31 2024-10-11 00:56:16 +3377 3377 3378 337.7 675.4000000000001 3377 1979-04-01 2024-10-11 00:56:17.000 1979-04-01 2024-10-11 00:56:17 +3378 3378 3379 337.8 675.6 3378 1979-04-02 2024-10-11 00:56:18.000 1979-04-02 2024-10-11 00:56:18 +3379 3379 3380 337.9 675.8000000000001 3379 1979-04-03 2024-10-11 00:56:19.000 1979-04-03 2024-10-11 00:56:19 +3381 3381 3382 338.1 676.2 3381 1979-04-05 2024-10-11 00:56:21.000 1979-04-05 2024-10-11 00:56:21 +3382 3382 3383 338.2 676.4000000000001 3382 1979-04-06 2024-10-11 00:56:22.000 1979-04-06 2024-10-11 00:56:22 +3383 3383 3384 338.3 676.6 3383 1979-04-07 2024-10-11 00:56:23.000 1979-04-07 2024-10-11 00:56:23 +3384 3384 3385 338.4 676.8000000000001 3384 1979-04-08 2024-10-11 00:56:24.000 1979-04-08 2024-10-11 00:56:24 +3386 3386 3387 338.6 677.2 3386 1979-04-10 2024-10-11 00:56:26.000 1979-04-10 2024-10-11 00:56:26 +3387 3387 3388 338.7 677.4000000000001 3387 1979-04-11 2024-10-11 00:56:27.000 1979-04-11 2024-10-11 00:56:27 +3388 3388 3389 338.8 677.6 3388 1979-04-12 2024-10-11 00:56:28.000 1979-04-12 2024-10-11 00:56:28 +3389 3389 3390 338.9 677.8000000000001 3389 1979-04-13 2024-10-11 00:56:29.000 1979-04-13 2024-10-11 00:56:29 +3391 3391 3392 339.1 678.2 3391 1979-04-15 2024-10-11 00:56:31.000 1979-04-15 2024-10-11 00:56:31 +3392 3392 3393 339.2 678.4000000000001 3392 1979-04-16 2024-10-11 00:56:32.000 1979-04-16 2024-10-11 00:56:32 +3393 3393 3394 339.3 678.6 3393 1979-04-17 2024-10-11 00:56:33.000 1979-04-17 2024-10-11 00:56:33 +3394 3394 3395 339.4 678.8000000000001 3394 1979-04-18 2024-10-11 00:56:34.000 1979-04-18 2024-10-11 00:56:34 +3396 3396 3397 339.6 679.2 3396 1979-04-20 2024-10-11 00:56:36.000 1979-04-20 2024-10-11 00:56:36 +3397 3397 3398 339.7 679.4000000000001 3397 1979-04-21 2024-10-11 00:56:37.000 1979-04-21 2024-10-11 00:56:37 +3398 3398 3399 339.8 679.6 3398 1979-04-22 2024-10-11 00:56:38.000 1979-04-22 2024-10-11 00:56:38 +3399 3399 3400 339.9 679.8000000000001 3399 1979-04-23 2024-10-11 00:56:39.000 1979-04-23 2024-10-11 00:56:39 +3401 3401 3402 340.1 680.2 3401 1979-04-25 2024-10-11 00:56:41.000 1979-04-25 2024-10-11 00:56:41 +3402 3402 3403 340.2 680.4000000000001 3402 1979-04-26 2024-10-11 00:56:42.000 1979-04-26 2024-10-11 00:56:42 +3403 3403 3404 340.3 680.6 3403 1979-04-27 2024-10-11 00:56:43.000 1979-04-27 2024-10-11 00:56:43 +3404 3404 3405 340.4 680.8000000000001 3404 1979-04-28 2024-10-11 00:56:44.000 1979-04-28 2024-10-11 00:56:44 +3406 3406 3407 340.6 681.2 3406 1979-04-30 2024-10-11 00:56:46.000 1979-04-30 2024-10-11 00:56:46 +3407 3407 3408 340.7 681.4000000000001 3407 1979-05-01 2024-10-11 00:56:47.000 1979-05-01 2024-10-11 00:56:47 +3408 3408 3409 340.8 681.6 3408 1979-05-02 2024-10-11 00:56:48.000 1979-05-02 2024-10-11 00:56:48 +3409 3409 3410 340.9 681.8000000000001 3409 1979-05-03 2024-10-11 00:56:49.000 1979-05-03 2024-10-11 00:56:49 +3411 3411 3412 341.1 682.2 3411 1979-05-05 2024-10-11 00:56:51.000 1979-05-05 2024-10-11 00:56:51 +3412 3412 3413 341.2 682.4000000000001 3412 1979-05-06 2024-10-11 00:56:52.000 1979-05-06 2024-10-11 00:56:52 +3413 3413 3414 341.3 682.6 3413 1979-05-07 2024-10-11 00:56:53.000 1979-05-07 2024-10-11 00:56:53 +3414 3414 3415 341.4 682.8000000000001 3414 1979-05-08 2024-10-11 00:56:54.000 1979-05-08 2024-10-11 00:56:54 +3416 3416 3417 341.6 683.2 3416 1979-05-10 2024-10-11 00:56:56.000 1979-05-10 2024-10-11 00:56:56 +3417 3417 3418 341.7 683.4000000000001 3417 1979-05-11 2024-10-11 00:56:57.000 1979-05-11 2024-10-11 00:56:57 +3418 3418 3419 341.8 683.6 3418 1979-05-12 2024-10-11 00:56:58.000 1979-05-12 2024-10-11 00:56:58 +3419 3419 3420 341.9 683.8000000000001 3419 1979-05-13 2024-10-11 00:56:59.000 1979-05-13 2024-10-11 00:56:59 +3421 3421 3422 342.1 684.2 3421 1979-05-15 2024-10-11 00:57:01.000 1979-05-15 2024-10-11 00:57:01 +3422 3422 3423 342.2 684.4000000000001 3422 1979-05-16 2024-10-11 00:57:02.000 1979-05-16 2024-10-11 00:57:02 +3423 3423 3424 342.3 684.6 3423 1979-05-17 2024-10-11 00:57:03.000 1979-05-17 2024-10-11 00:57:03 +3424 3424 3425 342.4 684.8000000000001 3424 1979-05-18 2024-10-11 00:57:04.000 1979-05-18 2024-10-11 00:57:04 +3426 3426 3427 342.6 685.2 3426 1979-05-20 2024-10-11 00:57:06.000 1979-05-20 2024-10-11 00:57:06 +3427 3427 3428 342.7 685.4000000000001 3427 1979-05-21 2024-10-11 00:57:07.000 1979-05-21 2024-10-11 00:57:07 +3428 3428 3429 342.8 685.6 3428 1979-05-22 2024-10-11 00:57:08.000 1979-05-22 2024-10-11 00:57:08 +3429 3429 3430 342.9 685.8000000000001 3429 1979-05-23 2024-10-11 00:57:09.000 1979-05-23 2024-10-11 00:57:09 +3431 3431 3432 343.1 686.2 3431 1979-05-25 2024-10-11 00:57:11.000 1979-05-25 2024-10-11 00:57:11 +3432 3432 3433 343.2 686.4000000000001 3432 1979-05-26 2024-10-11 00:57:12.000 1979-05-26 2024-10-11 00:57:12 +3433 3433 3434 343.3 686.6 3433 1979-05-27 2024-10-11 00:57:13.000 1979-05-27 2024-10-11 00:57:13 +3434 3434 3435 343.4 686.8000000000001 3434 1979-05-28 2024-10-11 00:57:14.000 1979-05-28 2024-10-11 00:57:14 +3436 3436 3437 343.6 687.2 3436 1979-05-30 2024-10-11 00:57:16.000 1979-05-30 2024-10-11 00:57:16 +3437 3437 3438 343.7 687.4000000000001 3437 1979-05-31 2024-10-11 00:57:17.000 1979-05-31 2024-10-11 00:57:17 +3438 3438 3439 343.8 687.6 3438 1979-06-01 2024-10-11 00:57:18.000 1979-06-01 2024-10-11 00:57:18 +3439 3439 3440 343.9 687.8000000000001 3439 1979-06-02 2024-10-11 00:57:19.000 1979-06-02 2024-10-11 00:57:19 +3441 3441 3442 344.1 688.2 3441 1979-06-04 2024-10-11 00:57:21.000 1979-06-04 2024-10-11 00:57:21 +3442 3442 3443 344.2 688.4000000000001 3442 1979-06-05 2024-10-11 00:57:22.000 1979-06-05 2024-10-11 00:57:22 +3443 3443 3444 344.3 688.6 3443 1979-06-06 2024-10-11 00:57:23.000 1979-06-06 2024-10-11 00:57:23 +3444 3444 3445 344.4 688.8000000000001 3444 1979-06-07 2024-10-11 00:57:24.000 1979-06-07 2024-10-11 00:57:24 +3446 3446 3447 344.6 689.2 3446 1979-06-09 2024-10-11 00:57:26.000 1979-06-09 2024-10-11 00:57:26 +3447 3447 3448 344.7 689.4000000000001 3447 1979-06-10 2024-10-11 00:57:27.000 1979-06-10 2024-10-11 00:57:27 +3448 3448 3449 344.8 689.6 3448 1979-06-11 2024-10-11 00:57:28.000 1979-06-11 2024-10-11 00:57:28 +3449 3449 3450 344.9 689.8000000000001 3449 1979-06-12 2024-10-11 00:57:29.000 1979-06-12 2024-10-11 00:57:29 +3451 3451 3452 345.1 690.2 3451 1979-06-14 2024-10-11 00:57:31.000 1979-06-14 2024-10-11 00:57:31 +3452 3452 3453 345.2 690.4000000000001 3452 1979-06-15 2024-10-11 00:57:32.000 1979-06-15 2024-10-11 00:57:32 +3453 3453 3454 345.3 690.6 3453 1979-06-16 2024-10-11 00:57:33.000 1979-06-16 2024-10-11 00:57:33 +3454 3454 3455 345.4 690.8000000000001 3454 1979-06-17 2024-10-11 00:57:34.000 1979-06-17 2024-10-11 00:57:34 +3456 3456 3457 345.6 691.2 3456 1979-06-19 2024-10-11 00:57:36.000 1979-06-19 2024-10-11 00:57:36 +3457 3457 3458 345.7 691.4000000000001 3457 1979-06-20 2024-10-11 00:57:37.000 1979-06-20 2024-10-11 00:57:37 +3458 3458 3459 345.8 691.6 3458 1979-06-21 2024-10-11 00:57:38.000 1979-06-21 2024-10-11 00:57:38 +3459 3459 3460 345.9 691.8000000000001 3459 1979-06-22 2024-10-11 00:57:39.000 1979-06-22 2024-10-11 00:57:39 +3461 3461 3462 346.1 692.2 3461 1979-06-24 2024-10-11 00:57:41.000 1979-06-24 2024-10-11 00:57:41 +3462 3462 3463 346.2 692.4000000000001 3462 1979-06-25 2024-10-11 00:57:42.000 1979-06-25 2024-10-11 00:57:42 +3463 3463 3464 346.3 692.6 3463 1979-06-26 2024-10-11 00:57:43.000 1979-06-26 2024-10-11 00:57:43 +3464 3464 3465 346.4 692.8000000000001 3464 1979-06-27 2024-10-11 00:57:44.000 1979-06-27 2024-10-11 00:57:44 +3466 3466 3467 346.6 693.2 3466 1979-06-29 2024-10-11 00:57:46.000 1979-06-29 2024-10-11 00:57:46 +3467 3467 3468 346.7 693.4000000000001 3467 1979-06-30 2024-10-11 00:57:47.000 1979-06-30 2024-10-11 00:57:47 +3468 3468 3469 346.8 693.6 3468 1979-07-01 2024-10-11 00:57:48.000 1979-07-01 2024-10-11 00:57:48 +3469 3469 3470 346.9 693.8000000000001 3469 1979-07-02 2024-10-11 00:57:49.000 1979-07-02 2024-10-11 00:57:49 +3471 3471 3472 347.1 694.2 3471 1979-07-04 2024-10-11 00:57:51.000 1979-07-04 2024-10-11 00:57:51 +3472 3472 3473 347.2 694.4000000000001 3472 1979-07-05 2024-10-11 00:57:52.000 1979-07-05 2024-10-11 00:57:52 +3473 3473 3474 347.3 694.6 3473 1979-07-06 2024-10-11 00:57:53.000 1979-07-06 2024-10-11 00:57:53 +3474 3474 3475 347.4 694.8000000000001 3474 1979-07-07 2024-10-11 00:57:54.000 1979-07-07 2024-10-11 00:57:54 +3476 3476 3477 347.6 695.2 3476 1979-07-09 2024-10-11 00:57:56.000 1979-07-09 2024-10-11 00:57:56 +3477 3477 3478 347.7 695.4000000000001 3477 1979-07-10 2024-10-11 00:57:57.000 1979-07-10 2024-10-11 00:57:57 +3478 3478 3479 347.8 695.6 3478 1979-07-11 2024-10-11 00:57:58.000 1979-07-11 2024-10-11 00:57:58 +3479 3479 3480 347.9 695.8000000000001 3479 1979-07-12 2024-10-11 00:57:59.000 1979-07-12 2024-10-11 00:57:59 +3481 3481 3482 348.1 696.2 3481 1979-07-14 2024-10-11 00:58:01.000 1979-07-14 2024-10-11 00:58:01 +3482 3482 3483 348.2 696.4000000000001 3482 1979-07-15 2024-10-11 00:58:02.000 1979-07-15 2024-10-11 00:58:02 +3483 3483 3484 348.3 696.6 3483 1979-07-16 2024-10-11 00:58:03.000 1979-07-16 2024-10-11 00:58:03 +3484 3484 3485 348.4 696.8000000000001 3484 1979-07-17 2024-10-11 00:58:04.000 1979-07-17 2024-10-11 00:58:04 +3486 3486 3487 348.6 697.2 3486 1979-07-19 2024-10-11 00:58:06.000 1979-07-19 2024-10-11 00:58:06 +3487 3487 3488 348.7 697.4000000000001 3487 1979-07-20 2024-10-11 00:58:07.000 1979-07-20 2024-10-11 00:58:07 +3488 3488 3489 348.8 697.6 3488 1979-07-21 2024-10-11 00:58:08.000 1979-07-21 2024-10-11 00:58:08 +3489 3489 3490 348.9 697.8000000000001 3489 1979-07-22 2024-10-11 00:58:09.000 1979-07-22 2024-10-11 00:58:09 +3491 3491 3492 349.1 698.2 3491 1979-07-24 2024-10-11 00:58:11.000 1979-07-24 2024-10-11 00:58:11 +3492 3492 3493 349.2 698.4000000000001 3492 1979-07-25 2024-10-11 00:58:12.000 1979-07-25 2024-10-11 00:58:12 +3493 3493 3494 349.3 698.6 3493 1979-07-26 2024-10-11 00:58:13.000 1979-07-26 2024-10-11 00:58:13 +3494 3494 3495 349.4 698.8000000000001 3494 1979-07-27 2024-10-11 00:58:14.000 1979-07-27 2024-10-11 00:58:14 +3496 3496 3497 349.6 699.2 3496 1979-07-29 2024-10-11 00:58:16.000 1979-07-29 2024-10-11 00:58:16 +3497 3497 3498 349.7 699.4000000000001 3497 1979-07-30 2024-10-11 00:58:17.000 1979-07-30 2024-10-11 00:58:17 +3498 3498 3499 349.8 699.6 3498 1979-07-31 2024-10-11 00:58:18.000 1979-07-31 2024-10-11 00:58:18 +3499 3499 3500 349.9 699.8000000000001 3499 1979-08-01 2024-10-11 00:58:19.000 1979-08-01 2024-10-11 00:58:19 +3501 3501 3502 350.1 700.2 3501 1979-08-03 2024-10-11 00:58:21.000 1979-08-03 2024-10-11 00:58:21 +3502 3502 3503 350.2 700.4000000000001 3502 1979-08-04 2024-10-11 00:58:22.000 1979-08-04 2024-10-11 00:58:22 +3503 3503 3504 350.3 700.6 3503 1979-08-05 2024-10-11 00:58:23.000 1979-08-05 2024-10-11 00:58:23 +3504 3504 3505 350.4 700.8000000000001 3504 1979-08-06 2024-10-11 00:58:24.000 1979-08-06 2024-10-11 00:58:24 +3506 3506 3507 350.6 701.2 3506 1979-08-08 2024-10-11 00:58:26.000 1979-08-08 2024-10-11 00:58:26 +3507 3507 3508 350.7 701.4000000000001 3507 1979-08-09 2024-10-11 00:58:27.000 1979-08-09 2024-10-11 00:58:27 +3508 3508 3509 350.8 701.6 3508 1979-08-10 2024-10-11 00:58:28.000 1979-08-10 2024-10-11 00:58:28 +3509 3509 3510 350.9 701.8000000000001 3509 1979-08-11 2024-10-11 00:58:29.000 1979-08-11 2024-10-11 00:58:29 +3511 3511 3512 351.1 702.2 3511 1979-08-13 2024-10-11 00:58:31.000 1979-08-13 2024-10-11 00:58:31 +3512 3512 3513 351.2 702.4000000000001 3512 1979-08-14 2024-10-11 00:58:32.000 1979-08-14 2024-10-11 00:58:32 +3513 3513 3514 351.3 702.6 3513 1979-08-15 2024-10-11 00:58:33.000 1979-08-15 2024-10-11 00:58:33 +3514 3514 3515 351.4 702.8000000000001 3514 1979-08-16 2024-10-11 00:58:34.000 1979-08-16 2024-10-11 00:58:34 +3516 3516 3517 351.6 703.2 3516 1979-08-18 2024-10-11 00:58:36.000 1979-08-18 2024-10-11 00:58:36 +3517 3517 3518 351.7 703.4000000000001 3517 1979-08-19 2024-10-11 00:58:37.000 1979-08-19 2024-10-11 00:58:37 +3518 3518 3519 351.8 703.6 3518 1979-08-20 2024-10-11 00:58:38.000 1979-08-20 2024-10-11 00:58:38 +3519 3519 3520 351.9 703.8000000000001 3519 1979-08-21 2024-10-11 00:58:39.000 1979-08-21 2024-10-11 00:58:39 +3521 3521 3522 352.1 704.2 3521 1979-08-23 2024-10-11 00:58:41.000 1979-08-23 2024-10-11 00:58:41 +3522 3522 3523 352.2 704.4000000000001 3522 1979-08-24 2024-10-11 00:58:42.000 1979-08-24 2024-10-11 00:58:42 +3523 3523 3524 352.3 704.6 3523 1979-08-25 2024-10-11 00:58:43.000 1979-08-25 2024-10-11 00:58:43 +3524 3524 3525 352.4 704.8000000000001 3524 1979-08-26 2024-10-11 00:58:44.000 1979-08-26 2024-10-11 00:58:44 +3526 3526 3527 352.6 705.2 3526 1979-08-28 2024-10-11 00:58:46.000 1979-08-28 2024-10-11 00:58:46 +3527 3527 3528 352.7 705.4000000000001 3527 1979-08-29 2024-10-11 00:58:47.000 1979-08-29 2024-10-11 00:58:47 +3528 3528 3529 352.8 705.6 3528 1979-08-30 2024-10-11 00:58:48.000 1979-08-30 2024-10-11 00:58:48 +3529 3529 3530 352.9 705.8000000000001 3529 1979-08-31 2024-10-11 00:58:49.000 1979-08-31 2024-10-11 00:58:49 +3531 3531 3532 353.1 706.2 3531 1979-09-02 2024-10-11 00:58:51.000 1979-09-02 2024-10-11 00:58:51 +3532 3532 3533 353.2 706.4000000000001 3532 1979-09-03 2024-10-11 00:58:52.000 1979-09-03 2024-10-11 00:58:52 +3533 3533 3534 353.3 706.6 3533 1979-09-04 2024-10-11 00:58:53.000 1979-09-04 2024-10-11 00:58:53 +3534 3534 3535 353.4 706.8000000000001 3534 1979-09-05 2024-10-11 00:58:54.000 1979-09-05 2024-10-11 00:58:54 +3536 3536 3537 353.6 707.2 3536 1979-09-07 2024-10-11 00:58:56.000 1979-09-07 2024-10-11 00:58:56 +3537 3537 3538 353.7 707.4000000000001 3537 1979-09-08 2024-10-11 00:58:57.000 1979-09-08 2024-10-11 00:58:57 +3538 3538 3539 353.8 707.6 3538 1979-09-09 2024-10-11 00:58:58.000 1979-09-09 2024-10-11 00:58:58 +3539 3539 3540 353.9 707.8000000000001 3539 1979-09-10 2024-10-11 00:58:59.000 1979-09-10 2024-10-11 00:58:59 +3541 3541 3542 354.1 708.2 3541 1979-09-12 2024-10-11 00:59:01.000 1979-09-12 2024-10-11 00:59:01 +3542 3542 3543 354.2 708.4000000000001 3542 1979-09-13 2024-10-11 00:59:02.000 1979-09-13 2024-10-11 00:59:02 +3543 3543 3544 354.3 708.6 3543 1979-09-14 2024-10-11 00:59:03.000 1979-09-14 2024-10-11 00:59:03 +3544 3544 3545 354.4 708.8000000000001 3544 1979-09-15 2024-10-11 00:59:04.000 1979-09-15 2024-10-11 00:59:04 +3546 3546 3547 354.6 709.2 3546 1979-09-17 2024-10-11 00:59:06.000 1979-09-17 2024-10-11 00:59:06 +3547 3547 3548 354.7 709.4000000000001 3547 1979-09-18 2024-10-11 00:59:07.000 1979-09-18 2024-10-11 00:59:07 +3548 3548 3549 354.8 709.6 3548 1979-09-19 2024-10-11 00:59:08.000 1979-09-19 2024-10-11 00:59:08 +3549 3549 3550 354.9 709.8000000000001 3549 1979-09-20 2024-10-11 00:59:09.000 1979-09-20 2024-10-11 00:59:09 +3551 3551 3552 355.1 710.2 3551 1979-09-22 2024-10-11 00:59:11.000 1979-09-22 2024-10-11 00:59:11 +3552 3552 3553 355.2 710.4000000000001 3552 1979-09-23 2024-10-11 00:59:12.000 1979-09-23 2024-10-11 00:59:12 +3553 3553 3554 355.3 710.6 3553 1979-09-24 2024-10-11 00:59:13.000 1979-09-24 2024-10-11 00:59:13 +3554 3554 3555 355.4 710.8000000000001 3554 1979-09-25 2024-10-11 00:59:14.000 1979-09-25 2024-10-11 00:59:14 +3556 3556 3557 355.6 711.2 3556 1979-09-27 2024-10-11 00:59:16.000 1979-09-27 2024-10-11 00:59:16 +3557 3557 3558 355.7 711.4000000000001 3557 1979-09-28 2024-10-11 00:59:17.000 1979-09-28 2024-10-11 00:59:17 +3558 3558 3559 355.8 711.6 3558 1979-09-29 2024-10-11 00:59:18.000 1979-09-29 2024-10-11 00:59:18 +3559 3559 3560 355.9 711.8000000000001 3559 1979-09-30 2024-10-11 00:59:19.000 1979-09-30 2024-10-11 00:59:19 +3561 3561 3562 356.1 712.2 3561 1979-10-02 2024-10-11 00:59:21.000 1979-10-02 2024-10-11 00:59:21 +3562 3562 3563 356.2 712.4000000000001 3562 1979-10-03 2024-10-11 00:59:22.000 1979-10-03 2024-10-11 00:59:22 +3563 3563 3564 356.3 712.6 3563 1979-10-04 2024-10-11 00:59:23.000 1979-10-04 2024-10-11 00:59:23 +3564 3564 3565 356.4 712.8000000000001 3564 1979-10-05 2024-10-11 00:59:24.000 1979-10-05 2024-10-11 00:59:24 +3566 3566 3567 356.6 713.2 3566 1979-10-07 2024-10-11 00:59:26.000 1979-10-07 2024-10-11 00:59:26 +3567 3567 3568 356.7 713.4000000000001 3567 1979-10-08 2024-10-11 00:59:27.000 1979-10-08 2024-10-11 00:59:27 +3568 3568 3569 356.8 713.6 3568 1979-10-09 2024-10-11 00:59:28.000 1979-10-09 2024-10-11 00:59:28 +3569 3569 3570 356.9 713.8000000000001 3569 1979-10-10 2024-10-11 00:59:29.000 1979-10-10 2024-10-11 00:59:29 +3571 3571 3572 357.1 714.2 3571 1979-10-12 2024-10-11 00:59:31.000 1979-10-12 2024-10-11 00:59:31 +3572 3572 3573 357.2 714.4000000000001 3572 1979-10-13 2024-10-11 00:59:32.000 1979-10-13 2024-10-11 00:59:32 +3573 3573 3574 357.3 714.6 3573 1979-10-14 2024-10-11 00:59:33.000 1979-10-14 2024-10-11 00:59:33 +3574 3574 3575 357.4 714.8000000000001 3574 1979-10-15 2024-10-11 00:59:34.000 1979-10-15 2024-10-11 00:59:34 +3576 3576 3577 357.6 715.2 3576 1979-10-17 2024-10-11 00:59:36.000 1979-10-17 2024-10-11 00:59:36 +3577 3577 3578 357.7 715.4000000000001 3577 1979-10-18 2024-10-11 00:59:37.000 1979-10-18 2024-10-11 00:59:37 +3578 3578 3579 357.8 715.6 3578 1979-10-19 2024-10-11 00:59:38.000 1979-10-19 2024-10-11 00:59:38 +3579 3579 3580 357.9 715.8000000000001 3579 1979-10-20 2024-10-11 00:59:39.000 1979-10-20 2024-10-11 00:59:39 +3581 3581 3582 358.1 716.2 3581 1979-10-22 2024-10-11 00:59:41.000 1979-10-22 2024-10-11 00:59:41 +3582 3582 3583 358.2 716.4000000000001 3582 1979-10-23 2024-10-11 00:59:42.000 1979-10-23 2024-10-11 00:59:42 +3583 3583 3584 358.3 716.6 3583 1979-10-24 2024-10-11 00:59:43.000 1979-10-24 2024-10-11 00:59:43 +3584 3584 3585 358.4 716.8000000000001 3584 1979-10-25 2024-10-11 00:59:44.000 1979-10-25 2024-10-11 00:59:44 +3586 3586 3587 358.6 717.2 3586 1979-10-27 2024-10-11 00:59:46.000 1979-10-27 2024-10-11 00:59:46 +3587 3587 3588 358.7 717.4000000000001 3587 1979-10-28 2024-10-11 00:59:47.000 1979-10-28 2024-10-11 00:59:47 +3588 3588 3589 358.8 717.6 3588 1979-10-29 2024-10-11 00:59:48.000 1979-10-29 2024-10-11 00:59:48 +3589 3589 3590 358.9 717.8000000000001 3589 1979-10-30 2024-10-11 00:59:49.000 1979-10-30 2024-10-11 00:59:49 +3591 3591 3592 359.1 718.2 3591 1979-11-01 2024-10-11 00:59:51.000 1979-11-01 2024-10-11 00:59:51 +3592 3592 3593 359.2 718.4000000000001 3592 1979-11-02 2024-10-11 00:59:52.000 1979-11-02 2024-10-11 00:59:52 +3593 3593 3594 359.3 718.6 3593 1979-11-03 2024-10-11 00:59:53.000 1979-11-03 2024-10-11 00:59:53 +3594 3594 3595 359.4 718.8000000000001 3594 1979-11-04 2024-10-11 00:59:54.000 1979-11-04 2024-10-11 00:59:54 +3596 3596 3597 359.6 719.2 3596 1979-11-06 2024-10-11 00:59:56.000 1979-11-06 2024-10-11 00:59:56 +3597 3597 3598 359.7 719.4000000000001 3597 1979-11-07 2024-10-11 00:59:57.000 1979-11-07 2024-10-11 00:59:57 +3598 3598 3599 359.8 719.6 3598 1979-11-08 2024-10-11 00:59:58.000 1979-11-08 2024-10-11 00:59:58 +3599 3599 3600 359.9 719.8000000000001 3599 1979-11-09 2024-10-11 00:59:59.000 1979-11-09 2024-10-11 00:59:59 +3601 3601 3602 360.1 720.2 3601 1979-11-11 2024-10-11 01:00:01.000 1979-11-11 2024-10-11 01:00:01 +3602 3602 3603 360.2 720.4000000000001 3602 1979-11-12 2024-10-11 01:00:02.000 1979-11-12 2024-10-11 01:00:02 +3603 3603 3604 360.3 720.6 3603 1979-11-13 2024-10-11 01:00:03.000 1979-11-13 2024-10-11 01:00:03 +3604 3604 3605 360.4 720.8000000000001 3604 1979-11-14 2024-10-11 01:00:04.000 1979-11-14 2024-10-11 01:00:04 +3606 3606 3607 360.6 721.2 3606 1979-11-16 2024-10-11 01:00:06.000 1979-11-16 2024-10-11 01:00:06 +3607 3607 3608 360.7 721.4000000000001 3607 1979-11-17 2024-10-11 01:00:07.000 1979-11-17 2024-10-11 01:00:07 +3608 3608 3609 360.8 721.6 3608 1979-11-18 2024-10-11 01:00:08.000 1979-11-18 2024-10-11 01:00:08 +3609 3609 3610 360.9 721.8000000000001 3609 1979-11-19 2024-10-11 01:00:09.000 1979-11-19 2024-10-11 01:00:09 +3611 3611 3612 361.1 722.2 3611 1979-11-21 2024-10-11 01:00:11.000 1979-11-21 2024-10-11 01:00:11 +3612 3612 3613 361.2 722.4000000000001 3612 1979-11-22 2024-10-11 01:00:12.000 1979-11-22 2024-10-11 01:00:12 +3613 3613 3614 361.3 722.6 3613 1979-11-23 2024-10-11 01:00:13.000 1979-11-23 2024-10-11 01:00:13 +3614 3614 3615 361.4 722.8000000000001 3614 1979-11-24 2024-10-11 01:00:14.000 1979-11-24 2024-10-11 01:00:14 +3616 3616 3617 361.6 723.2 3616 1979-11-26 2024-10-11 01:00:16.000 1979-11-26 2024-10-11 01:00:16 +3617 3617 3618 361.7 723.4000000000001 3617 1979-11-27 2024-10-11 01:00:17.000 1979-11-27 2024-10-11 01:00:17 +3618 3618 3619 361.8 723.6 3618 1979-11-28 2024-10-11 01:00:18.000 1979-11-28 2024-10-11 01:00:18 +3619 3619 3620 361.9 723.8000000000001 3619 1979-11-29 2024-10-11 01:00:19.000 1979-11-29 2024-10-11 01:00:19 +3621 3621 3622 362.1 724.2 3621 1979-12-01 2024-10-11 01:00:21.000 1979-12-01 2024-10-11 01:00:21 +3622 3622 3623 362.2 724.4000000000001 3622 1979-12-02 2024-10-11 01:00:22.000 1979-12-02 2024-10-11 01:00:22 +3623 3623 3624 362.3 724.6 3623 1979-12-03 2024-10-11 01:00:23.000 1979-12-03 2024-10-11 01:00:23 +3624 3624 3625 362.4 724.8000000000001 3624 1979-12-04 2024-10-11 01:00:24.000 1979-12-04 2024-10-11 01:00:24 +3626 3626 3627 362.6 725.2 3626 1979-12-06 2024-10-11 01:00:26.000 1979-12-06 2024-10-11 01:00:26 +3627 3627 3628 362.7 725.4000000000001 3627 1979-12-07 2024-10-11 01:00:27.000 1979-12-07 2024-10-11 01:00:27 +3628 3628 3629 362.8 725.6 3628 1979-12-08 2024-10-11 01:00:28.000 1979-12-08 2024-10-11 01:00:28 +3629 3629 3630 362.9 725.8000000000001 3629 1979-12-09 2024-10-11 01:00:29.000 1979-12-09 2024-10-11 01:00:29 +3631 3631 3632 363.1 726.2 3631 1979-12-11 2024-10-11 01:00:31.000 1979-12-11 2024-10-11 01:00:31 +3632 3632 3633 363.2 726.4000000000001 3632 1979-12-12 2024-10-11 01:00:32.000 1979-12-12 2024-10-11 01:00:32 +3633 3633 3634 363.3 726.6 3633 1979-12-13 2024-10-11 01:00:33.000 1979-12-13 2024-10-11 01:00:33 +3634 3634 3635 363.4 726.8000000000001 3634 1979-12-14 2024-10-11 01:00:34.000 1979-12-14 2024-10-11 01:00:34 +3636 3636 3637 363.6 727.2 3636 1979-12-16 2024-10-11 01:00:36.000 1979-12-16 2024-10-11 01:00:36 +3637 3637 3638 363.7 727.4000000000001 3637 1979-12-17 2024-10-11 01:00:37.000 1979-12-17 2024-10-11 01:00:37 +3638 3638 3639 363.8 727.6 3638 1979-12-18 2024-10-11 01:00:38.000 1979-12-18 2024-10-11 01:00:38 +3639 3639 3640 363.9 727.8000000000001 3639 1979-12-19 2024-10-11 01:00:39.000 1979-12-19 2024-10-11 01:00:39 +3641 3641 3642 364.1 728.2 3641 1979-12-21 2024-10-11 01:00:41.000 1979-12-21 2024-10-11 01:00:41 +3642 3642 3643 364.2 728.4000000000001 3642 1979-12-22 2024-10-11 01:00:42.000 1979-12-22 2024-10-11 01:00:42 +3643 3643 3644 364.3 728.6 3643 1979-12-23 2024-10-11 01:00:43.000 1979-12-23 2024-10-11 01:00:43 +3644 3644 3645 364.4 728.8000000000001 3644 1979-12-24 2024-10-11 01:00:44.000 1979-12-24 2024-10-11 01:00:44 +3646 3646 3647 364.6 729.2 3646 1979-12-26 2024-10-11 01:00:46.000 1979-12-26 2024-10-11 01:00:46 +3647 3647 3648 364.7 729.4000000000001 3647 1979-12-27 2024-10-11 01:00:47.000 1979-12-27 2024-10-11 01:00:47 +3648 3648 3649 364.8 729.6 3648 1979-12-28 2024-10-11 01:00:48.000 1979-12-28 2024-10-11 01:00:48 +3649 3649 3650 364.9 729.8000000000001 3649 1979-12-29 2024-10-11 01:00:49.000 1979-12-29 2024-10-11 01:00:49 +3651 3651 3652 365.1 730.2 3651 1979-12-31 2024-10-11 01:00:51.000 1979-12-31 2024-10-11 01:00:51 +3652 3652 3653 365.2 730.4000000000001 3652 1980-01-01 2024-10-11 01:00:52.000 1980-01-01 2024-10-11 01:00:52 +3653 3653 3654 365.3 730.6 3653 1980-01-02 2024-10-11 01:00:53.000 1980-01-02 2024-10-11 01:00:53 +3654 3654 3655 365.4 730.8000000000001 3654 1980-01-03 2024-10-11 01:00:54.000 1980-01-03 2024-10-11 01:00:54 +3656 3656 3657 365.6 731.2 3656 1980-01-05 2024-10-11 01:00:56.000 1980-01-05 2024-10-11 01:00:56 +3657 3657 3658 365.7 731.4000000000001 3657 1980-01-06 2024-10-11 01:00:57.000 1980-01-06 2024-10-11 01:00:57 +3658 3658 3659 365.8 731.6 3658 1980-01-07 2024-10-11 01:00:58.000 1980-01-07 2024-10-11 01:00:58 +3659 3659 3660 365.9 731.8000000000001 3659 1980-01-08 2024-10-11 01:00:59.000 1980-01-08 2024-10-11 01:00:59 +3661 3661 3662 366.1 732.2 3661 1980-01-10 2024-10-11 01:01:01.000 1980-01-10 2024-10-11 01:01:01 +3662 3662 3663 366.2 732.4000000000001 3662 1980-01-11 2024-10-11 01:01:02.000 1980-01-11 2024-10-11 01:01:02 +3663 3663 3664 366.3 732.6 3663 1980-01-12 2024-10-11 01:01:03.000 1980-01-12 2024-10-11 01:01:03 +3664 3664 3665 366.4 732.8000000000001 3664 1980-01-13 2024-10-11 01:01:04.000 1980-01-13 2024-10-11 01:01:04 +3666 3666 3667 366.6 733.2 3666 1980-01-15 2024-10-11 01:01:06.000 1980-01-15 2024-10-11 01:01:06 +3667 3667 3668 366.7 733.4000000000001 3667 1980-01-16 2024-10-11 01:01:07.000 1980-01-16 2024-10-11 01:01:07 +3668 3668 3669 366.8 733.6 3668 1980-01-17 2024-10-11 01:01:08.000 1980-01-17 2024-10-11 01:01:08 +3669 3669 3670 366.9 733.8000000000001 3669 1980-01-18 2024-10-11 01:01:09.000 1980-01-18 2024-10-11 01:01:09 +3671 3671 3672 367.1 734.2 3671 1980-01-20 2024-10-11 01:01:11.000 1980-01-20 2024-10-11 01:01:11 +3672 3672 3673 367.2 734.4000000000001 3672 1980-01-21 2024-10-11 01:01:12.000 1980-01-21 2024-10-11 01:01:12 +3673 3673 3674 367.3 734.6 3673 1980-01-22 2024-10-11 01:01:13.000 1980-01-22 2024-10-11 01:01:13 +3674 3674 3675 367.4 734.8000000000001 3674 1980-01-23 2024-10-11 01:01:14.000 1980-01-23 2024-10-11 01:01:14 +3676 3676 3677 367.6 735.2 3676 1980-01-25 2024-10-11 01:01:16.000 1980-01-25 2024-10-11 01:01:16 +3677 3677 3678 367.7 735.4000000000001 3677 1980-01-26 2024-10-11 01:01:17.000 1980-01-26 2024-10-11 01:01:17 +3678 3678 3679 367.8 735.6 3678 1980-01-27 2024-10-11 01:01:18.000 1980-01-27 2024-10-11 01:01:18 +3679 3679 3680 367.9 735.8000000000001 3679 1980-01-28 2024-10-11 01:01:19.000 1980-01-28 2024-10-11 01:01:19 +3681 3681 3682 368.1 736.2 3681 1980-01-30 2024-10-11 01:01:21.000 1980-01-30 2024-10-11 01:01:21 +3682 3682 3683 368.2 736.4000000000001 3682 1980-01-31 2024-10-11 01:01:22.000 1980-01-31 2024-10-11 01:01:22 +3683 3683 3684 368.3 736.6 3683 1980-02-01 2024-10-11 01:01:23.000 1980-02-01 2024-10-11 01:01:23 +3684 3684 3685 368.4 736.8000000000001 3684 1980-02-02 2024-10-11 01:01:24.000 1980-02-02 2024-10-11 01:01:24 +3686 3686 3687 368.6 737.2 3686 1980-02-04 2024-10-11 01:01:26.000 1980-02-04 2024-10-11 01:01:26 +3687 3687 3688 368.7 737.4000000000001 3687 1980-02-05 2024-10-11 01:01:27.000 1980-02-05 2024-10-11 01:01:27 +3688 3688 3689 368.8 737.6 3688 1980-02-06 2024-10-11 01:01:28.000 1980-02-06 2024-10-11 01:01:28 +3689 3689 3690 368.9 737.8000000000001 3689 1980-02-07 2024-10-11 01:01:29.000 1980-02-07 2024-10-11 01:01:29 +3691 3691 3692 369.1 738.2 3691 1980-02-09 2024-10-11 01:01:31.000 1980-02-09 2024-10-11 01:01:31 +3692 3692 3693 369.2 738.4000000000001 3692 1980-02-10 2024-10-11 01:01:32.000 1980-02-10 2024-10-11 01:01:32 +3693 3693 3694 369.3 738.6 3693 1980-02-11 2024-10-11 01:01:33.000 1980-02-11 2024-10-11 01:01:33 +3694 3694 3695 369.4 738.8000000000001 3694 1980-02-12 2024-10-11 01:01:34.000 1980-02-12 2024-10-11 01:01:34 +3696 3696 3697 369.6 739.2 3696 1980-02-14 2024-10-11 01:01:36.000 1980-02-14 2024-10-11 01:01:36 +3697 3697 3698 369.7 739.4000000000001 3697 1980-02-15 2024-10-11 01:01:37.000 1980-02-15 2024-10-11 01:01:37 +3698 3698 3699 369.8 739.6 3698 1980-02-16 2024-10-11 01:01:38.000 1980-02-16 2024-10-11 01:01:38 +3699 3699 3700 369.9 739.8000000000001 3699 1980-02-17 2024-10-11 01:01:39.000 1980-02-17 2024-10-11 01:01:39 +3701 3701 3702 370.1 740.2 3701 1980-02-19 2024-10-11 01:01:41.000 1980-02-19 2024-10-11 01:01:41 +3702 3702 3703 370.2 740.4000000000001 3702 1980-02-20 2024-10-11 01:01:42.000 1980-02-20 2024-10-11 01:01:42 +3703 3703 3704 370.3 740.6 3703 1980-02-21 2024-10-11 01:01:43.000 1980-02-21 2024-10-11 01:01:43 +3704 3704 3705 370.4 740.8000000000001 3704 1980-02-22 2024-10-11 01:01:44.000 1980-02-22 2024-10-11 01:01:44 +3706 3706 3707 370.6 741.2 3706 1980-02-24 2024-10-11 01:01:46.000 1980-02-24 2024-10-11 01:01:46 +3707 3707 3708 370.7 741.4000000000001 3707 1980-02-25 2024-10-11 01:01:47.000 1980-02-25 2024-10-11 01:01:47 +3708 3708 3709 370.8 741.6 3708 1980-02-26 2024-10-11 01:01:48.000 1980-02-26 2024-10-11 01:01:48 +3709 3709 3710 370.9 741.8000000000001 3709 1980-02-27 2024-10-11 01:01:49.000 1980-02-27 2024-10-11 01:01:49 +3711 3711 3712 371.1 742.2 3711 1980-02-29 2024-10-11 01:01:51.000 1980-02-29 2024-10-11 01:01:51 +3712 3712 3713 371.2 742.4000000000001 3712 1980-03-01 2024-10-11 01:01:52.000 1980-03-01 2024-10-11 01:01:52 +3713 3713 3714 371.3 742.6 3713 1980-03-02 2024-10-11 01:01:53.000 1980-03-02 2024-10-11 01:01:53 +3714 3714 3715 371.4 742.8000000000001 3714 1980-03-03 2024-10-11 01:01:54.000 1980-03-03 2024-10-11 01:01:54 +3716 3716 3717 371.6 743.2 3716 1980-03-05 2024-10-11 01:01:56.000 1980-03-05 2024-10-11 01:01:56 +3717 3717 3718 371.7 743.4000000000001 3717 1980-03-06 2024-10-11 01:01:57.000 1980-03-06 2024-10-11 01:01:57 +3718 3718 3719 371.8 743.6 3718 1980-03-07 2024-10-11 01:01:58.000 1980-03-07 2024-10-11 01:01:58 +3719 3719 3720 371.9 743.8000000000001 3719 1980-03-08 2024-10-11 01:01:59.000 1980-03-08 2024-10-11 01:01:59 +3721 3721 3722 372.1 744.2 3721 1980-03-10 2024-10-11 01:02:01.000 1980-03-10 2024-10-11 01:02:01 +3722 3722 3723 372.2 744.4000000000001 3722 1980-03-11 2024-10-11 01:02:02.000 1980-03-11 2024-10-11 01:02:02 +3723 3723 3724 372.3 744.6 3723 1980-03-12 2024-10-11 01:02:03.000 1980-03-12 2024-10-11 01:02:03 +3724 3724 3725 372.4 744.8000000000001 3724 1980-03-13 2024-10-11 01:02:04.000 1980-03-13 2024-10-11 01:02:04 +3726 3726 3727 372.6 745.2 3726 1980-03-15 2024-10-11 01:02:06.000 1980-03-15 2024-10-11 01:02:06 +3727 3727 3728 372.7 745.4000000000001 3727 1980-03-16 2024-10-11 01:02:07.000 1980-03-16 2024-10-11 01:02:07 +3728 3728 3729 372.8 745.6 3728 1980-03-17 2024-10-11 01:02:08.000 1980-03-17 2024-10-11 01:02:08 +3729 3729 3730 372.9 745.8000000000001 3729 1980-03-18 2024-10-11 01:02:09.000 1980-03-18 2024-10-11 01:02:09 +3731 3731 3732 373.1 746.2 3731 1980-03-20 2024-10-11 01:02:11.000 1980-03-20 2024-10-11 01:02:11 +3732 3732 3733 373.2 746.4000000000001 3732 1980-03-21 2024-10-11 01:02:12.000 1980-03-21 2024-10-11 01:02:12 +3733 3733 3734 373.3 746.6 3733 1980-03-22 2024-10-11 01:02:13.000 1980-03-22 2024-10-11 01:02:13 +3734 3734 3735 373.4 746.8000000000001 3734 1980-03-23 2024-10-11 01:02:14.000 1980-03-23 2024-10-11 01:02:14 +3736 3736 3737 373.6 747.2 3736 1980-03-25 2024-10-11 01:02:16.000 1980-03-25 2024-10-11 01:02:16 +3737 3737 3738 373.7 747.4000000000001 3737 1980-03-26 2024-10-11 01:02:17.000 1980-03-26 2024-10-11 01:02:17 +3738 3738 3739 373.8 747.6 3738 1980-03-27 2024-10-11 01:02:18.000 1980-03-27 2024-10-11 01:02:18 +3739 3739 3740 373.9 747.8000000000001 3739 1980-03-28 2024-10-11 01:02:19.000 1980-03-28 2024-10-11 01:02:19 +3741 3741 3742 374.1 748.2 3741 1980-03-30 2024-10-11 01:02:21.000 1980-03-30 2024-10-11 01:02:21 +3742 3742 3743 374.2 748.4000000000001 3742 1980-03-31 2024-10-11 01:02:22.000 1980-03-31 2024-10-11 01:02:22 +3743 3743 3744 374.3 748.6 3743 1980-04-01 2024-10-11 01:02:23.000 1980-04-01 2024-10-11 01:02:23 +3744 3744 3745 374.4 748.8000000000001 3744 1980-04-02 2024-10-11 01:02:24.000 1980-04-02 2024-10-11 01:02:24 +3746 3746 3747 374.6 749.2 3746 1980-04-04 2024-10-11 01:02:26.000 1980-04-04 2024-10-11 01:02:26 +3747 3747 3748 374.7 749.4000000000001 3747 1980-04-05 2024-10-11 01:02:27.000 1980-04-05 2024-10-11 01:02:27 +3748 3748 3749 374.8 749.6 3748 1980-04-06 2024-10-11 01:02:28.000 1980-04-06 2024-10-11 01:02:28 +3749 3749 3750 374.9 749.8000000000001 3749 1980-04-07 2024-10-11 01:02:29.000 1980-04-07 2024-10-11 01:02:29 +3751 3751 3752 375.1 750.2 3751 1980-04-09 2024-10-11 01:02:31.000 1980-04-09 2024-10-11 01:02:31 +3752 3752 3753 375.2 750.4000000000001 3752 1980-04-10 2024-10-11 01:02:32.000 1980-04-10 2024-10-11 01:02:32 +3753 3753 3754 375.3 750.6 3753 1980-04-11 2024-10-11 01:02:33.000 1980-04-11 2024-10-11 01:02:33 +3754 3754 3755 375.4 750.8000000000001 3754 1980-04-12 2024-10-11 01:02:34.000 1980-04-12 2024-10-11 01:02:34 +3756 3756 3757 375.6 751.2 3756 1980-04-14 2024-10-11 01:02:36.000 1980-04-14 2024-10-11 01:02:36 +3757 3757 3758 375.7 751.4000000000001 3757 1980-04-15 2024-10-11 01:02:37.000 1980-04-15 2024-10-11 01:02:37 +3758 3758 3759 375.8 751.6 3758 1980-04-16 2024-10-11 01:02:38.000 1980-04-16 2024-10-11 01:02:38 +3759 3759 3760 375.9 751.8000000000001 3759 1980-04-17 2024-10-11 01:02:39.000 1980-04-17 2024-10-11 01:02:39 +3761 3761 3762 376.1 752.2 3761 1980-04-19 2024-10-11 01:02:41.000 1980-04-19 2024-10-11 01:02:41 +3762 3762 3763 376.2 752.4000000000001 3762 1980-04-20 2024-10-11 01:02:42.000 1980-04-20 2024-10-11 01:02:42 +3763 3763 3764 376.3 752.6 3763 1980-04-21 2024-10-11 01:02:43.000 1980-04-21 2024-10-11 01:02:43 +3764 3764 3765 376.4 752.8000000000001 3764 1980-04-22 2024-10-11 01:02:44.000 1980-04-22 2024-10-11 01:02:44 +3766 3766 3767 376.6 753.2 3766 1980-04-24 2024-10-11 01:02:46.000 1980-04-24 2024-10-11 01:02:46 +3767 3767 3768 376.7 753.4000000000001 3767 1980-04-25 2024-10-11 01:02:47.000 1980-04-25 2024-10-11 01:02:47 +3768 3768 3769 376.8 753.6 3768 1980-04-26 2024-10-11 01:02:48.000 1980-04-26 2024-10-11 01:02:48 +3769 3769 3770 376.9 753.8000000000001 3769 1980-04-27 2024-10-11 01:02:49.000 1980-04-27 2024-10-11 01:02:49 +3771 3771 3772 377.1 754.2 3771 1980-04-29 2024-10-11 01:02:51.000 1980-04-29 2024-10-11 01:02:51 +3772 3772 3773 377.2 754.4000000000001 3772 1980-04-30 2024-10-11 01:02:52.000 1980-04-30 2024-10-11 01:02:52 +3773 3773 3774 377.3 754.6 3773 1980-05-01 2024-10-11 01:02:53.000 1980-05-01 2024-10-11 01:02:53 +3774 3774 3775 377.4 754.8000000000001 3774 1980-05-02 2024-10-11 01:02:54.000 1980-05-02 2024-10-11 01:02:54 +3776 3776 3777 377.6 755.2 3776 1980-05-04 2024-10-11 01:02:56.000 1980-05-04 2024-10-11 01:02:56 +3777 3777 3778 377.7 755.4000000000001 3777 1980-05-05 2024-10-11 01:02:57.000 1980-05-05 2024-10-11 01:02:57 +3778 3778 3779 377.8 755.6 3778 1980-05-06 2024-10-11 01:02:58.000 1980-05-06 2024-10-11 01:02:58 +3779 3779 3780 377.9 755.8000000000001 3779 1980-05-07 2024-10-11 01:02:59.000 1980-05-07 2024-10-11 01:02:59 +3781 3781 3782 378.1 756.2 3781 1980-05-09 2024-10-11 01:03:01.000 1980-05-09 2024-10-11 01:03:01 +3782 3782 3783 378.2 756.4000000000001 3782 1980-05-10 2024-10-11 01:03:02.000 1980-05-10 2024-10-11 01:03:02 +3783 3783 3784 378.3 756.6 3783 1980-05-11 2024-10-11 01:03:03.000 1980-05-11 2024-10-11 01:03:03 +3784 3784 3785 378.4 756.8000000000001 3784 1980-05-12 2024-10-11 01:03:04.000 1980-05-12 2024-10-11 01:03:04 +3786 3786 3787 378.6 757.2 3786 1980-05-14 2024-10-11 01:03:06.000 1980-05-14 2024-10-11 01:03:06 +3787 3787 3788 378.7 757.4000000000001 3787 1980-05-15 2024-10-11 01:03:07.000 1980-05-15 2024-10-11 01:03:07 +3788 3788 3789 378.8 757.6 3788 1980-05-16 2024-10-11 01:03:08.000 1980-05-16 2024-10-11 01:03:08 +3789 3789 3790 378.9 757.8000000000001 3789 1980-05-17 2024-10-11 01:03:09.000 1980-05-17 2024-10-11 01:03:09 +3791 3791 3792 379.1 758.2 3791 1980-05-19 2024-10-11 01:03:11.000 1980-05-19 2024-10-11 01:03:11 +3792 3792 3793 379.2 758.4000000000001 3792 1980-05-20 2024-10-11 01:03:12.000 1980-05-20 2024-10-11 01:03:12 +3793 3793 3794 379.3 758.6 3793 1980-05-21 2024-10-11 01:03:13.000 1980-05-21 2024-10-11 01:03:13 +3794 3794 3795 379.4 758.8000000000001 3794 1980-05-22 2024-10-11 01:03:14.000 1980-05-22 2024-10-11 01:03:14 +3796 3796 3797 379.6 759.2 3796 1980-05-24 2024-10-11 01:03:16.000 1980-05-24 2024-10-11 01:03:16 +3797 3797 3798 379.7 759.4000000000001 3797 1980-05-25 2024-10-11 01:03:17.000 1980-05-25 2024-10-11 01:03:17 +3798 3798 3799 379.8 759.6 3798 1980-05-26 2024-10-11 01:03:18.000 1980-05-26 2024-10-11 01:03:18 +3799 3799 3800 379.9 759.8000000000001 3799 1980-05-27 2024-10-11 01:03:19.000 1980-05-27 2024-10-11 01:03:19 +3801 3801 3802 380.1 760.2 3801 1980-05-29 2024-10-11 01:03:21.000 1980-05-29 2024-10-11 01:03:21 +3802 3802 3803 380.2 760.4000000000001 3802 1980-05-30 2024-10-11 01:03:22.000 1980-05-30 2024-10-11 01:03:22 +3803 3803 3804 380.3 760.6 3803 1980-05-31 2024-10-11 01:03:23.000 1980-05-31 2024-10-11 01:03:23 +3804 3804 3805 380.4 760.8000000000001 3804 1980-06-01 2024-10-11 01:03:24.000 1980-06-01 2024-10-11 01:03:24 +3806 3806 3807 380.6 761.2 3806 1980-06-03 2024-10-11 01:03:26.000 1980-06-03 2024-10-11 01:03:26 +3807 3807 3808 380.7 761.4000000000001 3807 1980-06-04 2024-10-11 01:03:27.000 1980-06-04 2024-10-11 01:03:27 +3808 3808 3809 380.8 761.6 3808 1980-06-05 2024-10-11 01:03:28.000 1980-06-05 2024-10-11 01:03:28 +3809 3809 3810 380.9 761.8000000000001 3809 1980-06-06 2024-10-11 01:03:29.000 1980-06-06 2024-10-11 01:03:29 +3811 3811 3812 381.1 762.2 3811 1980-06-08 2024-10-11 01:03:31.000 1980-06-08 2024-10-11 01:03:31 +3812 3812 3813 381.2 762.4000000000001 3812 1980-06-09 2024-10-11 01:03:32.000 1980-06-09 2024-10-11 01:03:32 +3813 3813 3814 381.3 762.6 3813 1980-06-10 2024-10-11 01:03:33.000 1980-06-10 2024-10-11 01:03:33 +3814 3814 3815 381.4 762.8000000000001 3814 1980-06-11 2024-10-11 01:03:34.000 1980-06-11 2024-10-11 01:03:34 +3816 3816 3817 381.6 763.2 3816 1980-06-13 2024-10-11 01:03:36.000 1980-06-13 2024-10-11 01:03:36 +3817 3817 3818 381.7 763.4000000000001 3817 1980-06-14 2024-10-11 01:03:37.000 1980-06-14 2024-10-11 01:03:37 +3818 3818 3819 381.8 763.6 3818 1980-06-15 2024-10-11 01:03:38.000 1980-06-15 2024-10-11 01:03:38 +3819 3819 3820 381.9 763.8000000000001 3819 1980-06-16 2024-10-11 01:03:39.000 1980-06-16 2024-10-11 01:03:39 +3821 3821 3822 382.1 764.2 3821 1980-06-18 2024-10-11 01:03:41.000 1980-06-18 2024-10-11 01:03:41 +3822 3822 3823 382.2 764.4000000000001 3822 1980-06-19 2024-10-11 01:03:42.000 1980-06-19 2024-10-11 01:03:42 +3823 3823 3824 382.3 764.6 3823 1980-06-20 2024-10-11 01:03:43.000 1980-06-20 2024-10-11 01:03:43 +3824 3824 3825 382.4 764.8000000000001 3824 1980-06-21 2024-10-11 01:03:44.000 1980-06-21 2024-10-11 01:03:44 +3826 3826 3827 382.6 765.2 3826 1980-06-23 2024-10-11 01:03:46.000 1980-06-23 2024-10-11 01:03:46 +3827 3827 3828 382.7 765.4000000000001 3827 1980-06-24 2024-10-11 01:03:47.000 1980-06-24 2024-10-11 01:03:47 +3828 3828 3829 382.8 765.6 3828 1980-06-25 2024-10-11 01:03:48.000 1980-06-25 2024-10-11 01:03:48 +3829 3829 3830 382.9 765.8000000000001 3829 1980-06-26 2024-10-11 01:03:49.000 1980-06-26 2024-10-11 01:03:49 +3831 3831 3832 383.1 766.2 3831 1980-06-28 2024-10-11 01:03:51.000 1980-06-28 2024-10-11 01:03:51 +3832 3832 3833 383.2 766.4000000000001 3832 1980-06-29 2024-10-11 01:03:52.000 1980-06-29 2024-10-11 01:03:52 +3833 3833 3834 383.3 766.6 3833 1980-06-30 2024-10-11 01:03:53.000 1980-06-30 2024-10-11 01:03:53 +3834 3834 3835 383.4 766.8000000000001 3834 1980-07-01 2024-10-11 01:03:54.000 1980-07-01 2024-10-11 01:03:54 +3836 3836 3837 383.6 767.2 3836 1980-07-03 2024-10-11 01:03:56.000 1980-07-03 2024-10-11 01:03:56 +3837 3837 3838 383.7 767.4000000000001 3837 1980-07-04 2024-10-11 01:03:57.000 1980-07-04 2024-10-11 01:03:57 +3838 3838 3839 383.8 767.6 3838 1980-07-05 2024-10-11 01:03:58.000 1980-07-05 2024-10-11 01:03:58 +3839 3839 3840 383.9 767.8000000000001 3839 1980-07-06 2024-10-11 01:03:59.000 1980-07-06 2024-10-11 01:03:59 +3841 3841 3842 384.1 768.2 3841 1980-07-08 2024-10-11 01:04:01.000 1980-07-08 2024-10-11 01:04:01 +3842 3842 3843 384.2 768.4000000000001 3842 1980-07-09 2024-10-11 01:04:02.000 1980-07-09 2024-10-11 01:04:02 +3843 3843 3844 384.3 768.6 3843 1980-07-10 2024-10-11 01:04:03.000 1980-07-10 2024-10-11 01:04:03 +3844 3844 3845 384.4 768.8000000000001 3844 1980-07-11 2024-10-11 01:04:04.000 1980-07-11 2024-10-11 01:04:04 +3846 3846 3847 384.6 769.2 3846 1980-07-13 2024-10-11 01:04:06.000 1980-07-13 2024-10-11 01:04:06 +3847 3847 3848 384.7 769.4000000000001 3847 1980-07-14 2024-10-11 01:04:07.000 1980-07-14 2024-10-11 01:04:07 +3848 3848 3849 384.8 769.6 3848 1980-07-15 2024-10-11 01:04:08.000 1980-07-15 2024-10-11 01:04:08 +3849 3849 3850 384.9 769.8000000000001 3849 1980-07-16 2024-10-11 01:04:09.000 1980-07-16 2024-10-11 01:04:09 +3851 3851 3852 385.1 770.2 3851 1980-07-18 2024-10-11 01:04:11.000 1980-07-18 2024-10-11 01:04:11 +3852 3852 3853 385.2 770.4000000000001 3852 1980-07-19 2024-10-11 01:04:12.000 1980-07-19 2024-10-11 01:04:12 +3853 3853 3854 385.3 770.6 3853 1980-07-20 2024-10-11 01:04:13.000 1980-07-20 2024-10-11 01:04:13 +3854 3854 3855 385.4 770.8000000000001 3854 1980-07-21 2024-10-11 01:04:14.000 1980-07-21 2024-10-11 01:04:14 +3856 3856 3857 385.6 771.2 3856 1980-07-23 2024-10-11 01:04:16.000 1980-07-23 2024-10-11 01:04:16 +3857 3857 3858 385.7 771.4000000000001 3857 1980-07-24 2024-10-11 01:04:17.000 1980-07-24 2024-10-11 01:04:17 +3858 3858 3859 385.8 771.6 3858 1980-07-25 2024-10-11 01:04:18.000 1980-07-25 2024-10-11 01:04:18 +3859 3859 3860 385.9 771.8000000000001 3859 1980-07-26 2024-10-11 01:04:19.000 1980-07-26 2024-10-11 01:04:19 +3861 3861 3862 386.1 772.2 3861 1980-07-28 2024-10-11 01:04:21.000 1980-07-28 2024-10-11 01:04:21 +3862 3862 3863 386.2 772.4000000000001 3862 1980-07-29 2024-10-11 01:04:22.000 1980-07-29 2024-10-11 01:04:22 +3863 3863 3864 386.3 772.6 3863 1980-07-30 2024-10-11 01:04:23.000 1980-07-30 2024-10-11 01:04:23 +3864 3864 3865 386.4 772.8000000000001 3864 1980-07-31 2024-10-11 01:04:24.000 1980-07-31 2024-10-11 01:04:24 +3866 3866 3867 386.6 773.2 3866 1980-08-02 2024-10-11 01:04:26.000 1980-08-02 2024-10-11 01:04:26 +3867 3867 3868 386.7 773.4000000000001 3867 1980-08-03 2024-10-11 01:04:27.000 1980-08-03 2024-10-11 01:04:27 +3868 3868 3869 386.8 773.6 3868 1980-08-04 2024-10-11 01:04:28.000 1980-08-04 2024-10-11 01:04:28 +3869 3869 3870 386.9 773.8000000000001 3869 1980-08-05 2024-10-11 01:04:29.000 1980-08-05 2024-10-11 01:04:29 +3871 3871 3872 387.1 774.2 3871 1980-08-07 2024-10-11 01:04:31.000 1980-08-07 2024-10-11 01:04:31 +3872 3872 3873 387.2 774.4000000000001 3872 1980-08-08 2024-10-11 01:04:32.000 1980-08-08 2024-10-11 01:04:32 +3873 3873 3874 387.3 774.6 3873 1980-08-09 2024-10-11 01:04:33.000 1980-08-09 2024-10-11 01:04:33 +3874 3874 3875 387.4 774.8000000000001 3874 1980-08-10 2024-10-11 01:04:34.000 1980-08-10 2024-10-11 01:04:34 +3876 3876 3877 387.6 775.2 3876 1980-08-12 2024-10-11 01:04:36.000 1980-08-12 2024-10-11 01:04:36 +3877 3877 3878 387.7 775.4000000000001 3877 1980-08-13 2024-10-11 01:04:37.000 1980-08-13 2024-10-11 01:04:37 +3878 3878 3879 387.8 775.6 3878 1980-08-14 2024-10-11 01:04:38.000 1980-08-14 2024-10-11 01:04:38 +3879 3879 3880 387.9 775.8000000000001 3879 1980-08-15 2024-10-11 01:04:39.000 1980-08-15 2024-10-11 01:04:39 +3881 3881 3882 388.1 776.2 3881 1980-08-17 2024-10-11 01:04:41.000 1980-08-17 2024-10-11 01:04:41 +3882 3882 3883 388.2 776.4000000000001 3882 1980-08-18 2024-10-11 01:04:42.000 1980-08-18 2024-10-11 01:04:42 +3883 3883 3884 388.3 776.6 3883 1980-08-19 2024-10-11 01:04:43.000 1980-08-19 2024-10-11 01:04:43 +3884 3884 3885 388.4 776.8000000000001 3884 1980-08-20 2024-10-11 01:04:44.000 1980-08-20 2024-10-11 01:04:44 +3886 3886 3887 388.6 777.2 3886 1980-08-22 2024-10-11 01:04:46.000 1980-08-22 2024-10-11 01:04:46 +3887 3887 3888 388.7 777.4000000000001 3887 1980-08-23 2024-10-11 01:04:47.000 1980-08-23 2024-10-11 01:04:47 +3888 3888 3889 388.8 777.6 3888 1980-08-24 2024-10-11 01:04:48.000 1980-08-24 2024-10-11 01:04:48 +3889 3889 3890 388.9 777.8000000000001 3889 1980-08-25 2024-10-11 01:04:49.000 1980-08-25 2024-10-11 01:04:49 +3891 3891 3892 389.1 778.2 3891 1980-08-27 2024-10-11 01:04:51.000 1980-08-27 2024-10-11 01:04:51 +3892 3892 3893 389.2 778.4000000000001 3892 1980-08-28 2024-10-11 01:04:52.000 1980-08-28 2024-10-11 01:04:52 +3893 3893 3894 389.3 778.6 3893 1980-08-29 2024-10-11 01:04:53.000 1980-08-29 2024-10-11 01:04:53 +3894 3894 3895 389.4 778.8000000000001 3894 1980-08-30 2024-10-11 01:04:54.000 1980-08-30 2024-10-11 01:04:54 +3896 3896 3897 389.6 779.2 3896 1980-09-01 2024-10-11 01:04:56.000 1980-09-01 2024-10-11 01:04:56 +3897 3897 3898 389.7 779.4000000000001 3897 1980-09-02 2024-10-11 01:04:57.000 1980-09-02 2024-10-11 01:04:57 +3898 3898 3899 389.8 779.6 3898 1980-09-03 2024-10-11 01:04:58.000 1980-09-03 2024-10-11 01:04:58 +3899 3899 3900 389.9 779.8000000000001 3899 1980-09-04 2024-10-11 01:04:59.000 1980-09-04 2024-10-11 01:04:59 +3901 3901 3902 390.1 780.2 3901 1980-09-06 2024-10-11 01:05:01.000 1980-09-06 2024-10-11 01:05:01 +3902 3902 3903 390.2 780.4000000000001 3902 1980-09-07 2024-10-11 01:05:02.000 1980-09-07 2024-10-11 01:05:02 +3903 3903 3904 390.3 780.6 3903 1980-09-08 2024-10-11 01:05:03.000 1980-09-08 2024-10-11 01:05:03 +3904 3904 3905 390.4 780.8000000000001 3904 1980-09-09 2024-10-11 01:05:04.000 1980-09-09 2024-10-11 01:05:04 +3906 3906 3907 390.6 781.2 3906 1980-09-11 2024-10-11 01:05:06.000 1980-09-11 2024-10-11 01:05:06 +3907 3907 3908 390.7 781.4000000000001 3907 1980-09-12 2024-10-11 01:05:07.000 1980-09-12 2024-10-11 01:05:07 +3908 3908 3909 390.8 781.6 3908 1980-09-13 2024-10-11 01:05:08.000 1980-09-13 2024-10-11 01:05:08 +3909 3909 3910 390.9 781.8000000000001 3909 1980-09-14 2024-10-11 01:05:09.000 1980-09-14 2024-10-11 01:05:09 +3911 3911 3912 391.1 782.2 3911 1980-09-16 2024-10-11 01:05:11.000 1980-09-16 2024-10-11 01:05:11 +3912 3912 3913 391.2 782.4000000000001 3912 1980-09-17 2024-10-11 01:05:12.000 1980-09-17 2024-10-11 01:05:12 +3913 3913 3914 391.3 782.6 3913 1980-09-18 2024-10-11 01:05:13.000 1980-09-18 2024-10-11 01:05:13 +3914 3914 3915 391.4 782.8000000000001 3914 1980-09-19 2024-10-11 01:05:14.000 1980-09-19 2024-10-11 01:05:14 +3916 3916 3917 391.6 783.2 3916 1980-09-21 2024-10-11 01:05:16.000 1980-09-21 2024-10-11 01:05:16 +3917 3917 3918 391.7 783.4000000000001 3917 1980-09-22 2024-10-11 01:05:17.000 1980-09-22 2024-10-11 01:05:17 +3918 3918 3919 391.8 783.6 3918 1980-09-23 2024-10-11 01:05:18.000 1980-09-23 2024-10-11 01:05:18 +3919 3919 3920 391.9 783.8000000000001 3919 1980-09-24 2024-10-11 01:05:19.000 1980-09-24 2024-10-11 01:05:19 +3921 3921 3922 392.1 784.2 3921 1980-09-26 2024-10-11 01:05:21.000 1980-09-26 2024-10-11 01:05:21 +3922 3922 3923 392.2 784.4000000000001 3922 1980-09-27 2024-10-11 01:05:22.000 1980-09-27 2024-10-11 01:05:22 +3923 3923 3924 392.3 784.6 3923 1980-09-28 2024-10-11 01:05:23.000 1980-09-28 2024-10-11 01:05:23 +3924 3924 3925 392.4 784.8000000000001 3924 1980-09-29 2024-10-11 01:05:24.000 1980-09-29 2024-10-11 01:05:24 +3926 3926 3927 392.6 785.2 3926 1980-10-01 2024-10-11 01:05:26.000 1980-10-01 2024-10-11 01:05:26 +3927 3927 3928 392.7 785.4000000000001 3927 1980-10-02 2024-10-11 01:05:27.000 1980-10-02 2024-10-11 01:05:27 +3928 3928 3929 392.8 785.6 3928 1980-10-03 2024-10-11 01:05:28.000 1980-10-03 2024-10-11 01:05:28 +3929 3929 3930 392.9 785.8000000000001 3929 1980-10-04 2024-10-11 01:05:29.000 1980-10-04 2024-10-11 01:05:29 +3931 3931 3932 393.1 786.2 3931 1980-10-06 2024-10-11 01:05:31.000 1980-10-06 2024-10-11 01:05:31 +3932 3932 3933 393.2 786.4000000000001 3932 1980-10-07 2024-10-11 01:05:32.000 1980-10-07 2024-10-11 01:05:32 +3933 3933 3934 393.3 786.6 3933 1980-10-08 2024-10-11 01:05:33.000 1980-10-08 2024-10-11 01:05:33 +3934 3934 3935 393.4 786.8000000000001 3934 1980-10-09 2024-10-11 01:05:34.000 1980-10-09 2024-10-11 01:05:34 +3936 3936 3937 393.6 787.2 3936 1980-10-11 2024-10-11 01:05:36.000 1980-10-11 2024-10-11 01:05:36 +3937 3937 3938 393.7 787.4000000000001 3937 1980-10-12 2024-10-11 01:05:37.000 1980-10-12 2024-10-11 01:05:37 +3938 3938 3939 393.8 787.6 3938 1980-10-13 2024-10-11 01:05:38.000 1980-10-13 2024-10-11 01:05:38 +3939 3939 3940 393.9 787.8000000000001 3939 1980-10-14 2024-10-11 01:05:39.000 1980-10-14 2024-10-11 01:05:39 +3941 3941 3942 394.1 788.2 3941 1980-10-16 2024-10-11 01:05:41.000 1980-10-16 2024-10-11 01:05:41 +3942 3942 3943 394.2 788.4000000000001 3942 1980-10-17 2024-10-11 01:05:42.000 1980-10-17 2024-10-11 01:05:42 +3943 3943 3944 394.3 788.6 3943 1980-10-18 2024-10-11 01:05:43.000 1980-10-18 2024-10-11 01:05:43 +3944 3944 3945 394.4 788.8000000000001 3944 1980-10-19 2024-10-11 01:05:44.000 1980-10-19 2024-10-11 01:05:44 +3946 3946 3947 394.6 789.2 3946 1980-10-21 2024-10-11 01:05:46.000 1980-10-21 2024-10-11 01:05:46 +3947 3947 3948 394.7 789.4000000000001 3947 1980-10-22 2024-10-11 01:05:47.000 1980-10-22 2024-10-11 01:05:47 +3948 3948 3949 394.8 789.6 3948 1980-10-23 2024-10-11 01:05:48.000 1980-10-23 2024-10-11 01:05:48 +3949 3949 3950 394.9 789.8000000000001 3949 1980-10-24 2024-10-11 01:05:49.000 1980-10-24 2024-10-11 01:05:49 +3951 3951 3952 395.1 790.2 3951 1980-10-26 2024-10-11 01:05:51.000 1980-10-26 2024-10-11 01:05:51 +3952 3952 3953 395.2 790.4000000000001 3952 1980-10-27 2024-10-11 01:05:52.000 1980-10-27 2024-10-11 01:05:52 +3953 3953 3954 395.3 790.6 3953 1980-10-28 2024-10-11 01:05:53.000 1980-10-28 2024-10-11 01:05:53 +3954 3954 3955 395.4 790.8000000000001 3954 1980-10-29 2024-10-11 01:05:54.000 1980-10-29 2024-10-11 01:05:54 +3956 3956 3957 395.6 791.2 3956 1980-10-31 2024-10-11 01:05:56.000 1980-10-31 2024-10-11 01:05:56 +3957 3957 3958 395.7 791.4000000000001 3957 1980-11-01 2024-10-11 01:05:57.000 1980-11-01 2024-10-11 01:05:57 +3958 3958 3959 395.8 791.6 3958 1980-11-02 2024-10-11 01:05:58.000 1980-11-02 2024-10-11 01:05:58 +3959 3959 3960 395.9 791.8000000000001 3959 1980-11-03 2024-10-11 01:05:59.000 1980-11-03 2024-10-11 01:05:59 +3961 3961 3962 396.1 792.2 3961 1980-11-05 2024-10-11 01:06:01.000 1980-11-05 2024-10-11 01:06:01 +3962 3962 3963 396.2 792.4000000000001 3962 1980-11-06 2024-10-11 01:06:02.000 1980-11-06 2024-10-11 01:06:02 +3963 3963 3964 396.3 792.6 3963 1980-11-07 2024-10-11 01:06:03.000 1980-11-07 2024-10-11 01:06:03 +3964 3964 3965 396.4 792.8000000000001 3964 1980-11-08 2024-10-11 01:06:04.000 1980-11-08 2024-10-11 01:06:04 +3966 3966 3967 396.6 793.2 3966 1980-11-10 2024-10-11 01:06:06.000 1980-11-10 2024-10-11 01:06:06 +3967 3967 3968 396.7 793.4000000000001 3967 1980-11-11 2024-10-11 01:06:07.000 1980-11-11 2024-10-11 01:06:07 +3968 3968 3969 396.8 793.6 3968 1980-11-12 2024-10-11 01:06:08.000 1980-11-12 2024-10-11 01:06:08 +3969 3969 3970 396.9 793.8000000000001 3969 1980-11-13 2024-10-11 01:06:09.000 1980-11-13 2024-10-11 01:06:09 +3971 3971 3972 397.1 794.2 3971 1980-11-15 2024-10-11 01:06:11.000 1980-11-15 2024-10-11 01:06:11 +3972 3972 3973 397.2 794.4000000000001 3972 1980-11-16 2024-10-11 01:06:12.000 1980-11-16 2024-10-11 01:06:12 +3973 3973 3974 397.3 794.6 3973 1980-11-17 2024-10-11 01:06:13.000 1980-11-17 2024-10-11 01:06:13 +3974 3974 3975 397.4 794.8000000000001 3974 1980-11-18 2024-10-11 01:06:14.000 1980-11-18 2024-10-11 01:06:14 +3976 3976 3977 397.6 795.2 3976 1980-11-20 2024-10-11 01:06:16.000 1980-11-20 2024-10-11 01:06:16 +3977 3977 3978 397.7 795.4000000000001 3977 1980-11-21 2024-10-11 01:06:17.000 1980-11-21 2024-10-11 01:06:17 +3978 3978 3979 397.8 795.6 3978 1980-11-22 2024-10-11 01:06:18.000 1980-11-22 2024-10-11 01:06:18 +3979 3979 3980 397.9 795.8000000000001 3979 1980-11-23 2024-10-11 01:06:19.000 1980-11-23 2024-10-11 01:06:19 +3981 3981 3982 398.1 796.2 3981 1980-11-25 2024-10-11 01:06:21.000 1980-11-25 2024-10-11 01:06:21 +3982 3982 3983 398.2 796.4000000000001 3982 1980-11-26 2024-10-11 01:06:22.000 1980-11-26 2024-10-11 01:06:22 +3983 3983 3984 398.3 796.6 3983 1980-11-27 2024-10-11 01:06:23.000 1980-11-27 2024-10-11 01:06:23 +3984 3984 3985 398.4 796.8000000000001 3984 1980-11-28 2024-10-11 01:06:24.000 1980-11-28 2024-10-11 01:06:24 +3986 3986 3987 398.6 797.2 3986 1980-11-30 2024-10-11 01:06:26.000 1980-11-30 2024-10-11 01:06:26 +3987 3987 3988 398.7 797.4000000000001 3987 1980-12-01 2024-10-11 01:06:27.000 1980-12-01 2024-10-11 01:06:27 +3988 3988 3989 398.8 797.6 3988 1980-12-02 2024-10-11 01:06:28.000 1980-12-02 2024-10-11 01:06:28 +3989 3989 3990 398.9 797.8000000000001 3989 1980-12-03 2024-10-11 01:06:29.000 1980-12-03 2024-10-11 01:06:29 +3991 3991 3992 399.1 798.2 3991 1980-12-05 2024-10-11 01:06:31.000 1980-12-05 2024-10-11 01:06:31 +3992 3992 3993 399.2 798.4000000000001 3992 1980-12-06 2024-10-11 01:06:32.000 1980-12-06 2024-10-11 01:06:32 +3993 3993 3994 399.3 798.6 3993 1980-12-07 2024-10-11 01:06:33.000 1980-12-07 2024-10-11 01:06:33 +3994 3994 3995 399.4 798.8000000000001 3994 1980-12-08 2024-10-11 01:06:34.000 1980-12-08 2024-10-11 01:06:34 +3996 3996 3997 399.6 799.2 3996 1980-12-10 2024-10-11 01:06:36.000 1980-12-10 2024-10-11 01:06:36 +3997 3997 3998 399.7 799.4000000000001 3997 1980-12-11 2024-10-11 01:06:37.000 1980-12-11 2024-10-11 01:06:37 +3998 3998 3999 399.8 799.6 3998 1980-12-12 2024-10-11 01:06:38.000 1980-12-12 2024-10-11 01:06:38 +3999 3999 4000 399.9 799.8000000000001 3999 1980-12-13 2024-10-11 01:06:39.000 1980-12-13 2024-10-11 01:06:39 +4001 4001 4002 400.1 800.2 4001 1980-12-15 2024-10-11 01:06:41.000 1980-12-15 2024-10-11 01:06:41 +4002 4002 4003 400.2 800.4000000000001 4002 1980-12-16 2024-10-11 01:06:42.000 1980-12-16 2024-10-11 01:06:42 +4003 4003 4004 400.3 800.6 4003 1980-12-17 2024-10-11 01:06:43.000 1980-12-17 2024-10-11 01:06:43 +4004 4004 4005 400.4 800.8000000000001 4004 1980-12-18 2024-10-11 01:06:44.000 1980-12-18 2024-10-11 01:06:44 +4006 4006 4007 400.6 801.2 4006 1980-12-20 2024-10-11 01:06:46.000 1980-12-20 2024-10-11 01:06:46 +4007 4007 4008 400.7 801.4000000000001 4007 1980-12-21 2024-10-11 01:06:47.000 1980-12-21 2024-10-11 01:06:47 +4008 4008 4009 400.8 801.6 4008 1980-12-22 2024-10-11 01:06:48.000 1980-12-22 2024-10-11 01:06:48 +4009 4009 4010 400.9 801.8000000000001 4009 1980-12-23 2024-10-11 01:06:49.000 1980-12-23 2024-10-11 01:06:49 +4011 4011 4012 401.1 802.2 4011 1980-12-25 2024-10-11 01:06:51.000 1980-12-25 2024-10-11 01:06:51 +4012 4012 4013 401.2 802.4000000000001 4012 1980-12-26 2024-10-11 01:06:52.000 1980-12-26 2024-10-11 01:06:52 +4013 4013 4014 401.3 802.6 4013 1980-12-27 2024-10-11 01:06:53.000 1980-12-27 2024-10-11 01:06:53 +4014 4014 4015 401.4 802.8000000000001 4014 1980-12-28 2024-10-11 01:06:54.000 1980-12-28 2024-10-11 01:06:54 +4016 4016 4017 401.6 803.2 4016 1980-12-30 2024-10-11 01:06:56.000 1980-12-30 2024-10-11 01:06:56 +4017 4017 4018 401.7 803.4000000000001 4017 1980-12-31 2024-10-11 01:06:57.000 1980-12-31 2024-10-11 01:06:57 +4018 4018 4019 401.8 803.6 4018 1981-01-01 2024-10-11 01:06:58.000 1981-01-01 2024-10-11 01:06:58 +4019 4019 4020 401.9 803.8000000000001 4019 1981-01-02 2024-10-11 01:06:59.000 1981-01-02 2024-10-11 01:06:59 +4021 4021 4022 402.1 804.2 4021 1981-01-04 2024-10-11 01:07:01.000 1981-01-04 2024-10-11 01:07:01 +4022 4022 4023 402.2 804.4000000000001 4022 1981-01-05 2024-10-11 01:07:02.000 1981-01-05 2024-10-11 01:07:02 +4023 4023 4024 402.3 804.6 4023 1981-01-06 2024-10-11 01:07:03.000 1981-01-06 2024-10-11 01:07:03 +4024 4024 4025 402.4 804.8000000000001 4024 1981-01-07 2024-10-11 01:07:04.000 1981-01-07 2024-10-11 01:07:04 +4026 4026 4027 402.6 805.2 4026 1981-01-09 2024-10-11 01:07:06.000 1981-01-09 2024-10-11 01:07:06 +4027 4027 4028 402.7 805.4000000000001 4027 1981-01-10 2024-10-11 01:07:07.000 1981-01-10 2024-10-11 01:07:07 +4028 4028 4029 402.8 805.6 4028 1981-01-11 2024-10-11 01:07:08.000 1981-01-11 2024-10-11 01:07:08 +4029 4029 4030 402.9 805.8000000000001 4029 1981-01-12 2024-10-11 01:07:09.000 1981-01-12 2024-10-11 01:07:09 +4031 4031 4032 403.1 806.2 4031 1981-01-14 2024-10-11 01:07:11.000 1981-01-14 2024-10-11 01:07:11 +4032 4032 4033 403.2 806.4000000000001 4032 1981-01-15 2024-10-11 01:07:12.000 1981-01-15 2024-10-11 01:07:12 +4033 4033 4034 403.3 806.6 4033 1981-01-16 2024-10-11 01:07:13.000 1981-01-16 2024-10-11 01:07:13 +4034 4034 4035 403.4 806.8000000000001 4034 1981-01-17 2024-10-11 01:07:14.000 1981-01-17 2024-10-11 01:07:14 +4036 4036 4037 403.6 807.2 4036 1981-01-19 2024-10-11 01:07:16.000 1981-01-19 2024-10-11 01:07:16 +4037 4037 4038 403.7 807.4000000000001 4037 1981-01-20 2024-10-11 01:07:17.000 1981-01-20 2024-10-11 01:07:17 +4038 4038 4039 403.8 807.6 4038 1981-01-21 2024-10-11 01:07:18.000 1981-01-21 2024-10-11 01:07:18 +4039 4039 4040 403.9 807.8000000000001 4039 1981-01-22 2024-10-11 01:07:19.000 1981-01-22 2024-10-11 01:07:19 +4041 4041 4042 404.1 808.2 4041 1981-01-24 2024-10-11 01:07:21.000 1981-01-24 2024-10-11 01:07:21 +4042 4042 4043 404.2 808.4000000000001 4042 1981-01-25 2024-10-11 01:07:22.000 1981-01-25 2024-10-11 01:07:22 +4043 4043 4044 404.3 808.6 4043 1981-01-26 2024-10-11 01:07:23.000 1981-01-26 2024-10-11 01:07:23 +4044 4044 4045 404.4 808.8000000000001 4044 1981-01-27 2024-10-11 01:07:24.000 1981-01-27 2024-10-11 01:07:24 +4046 4046 4047 404.6 809.2 4046 1981-01-29 2024-10-11 01:07:26.000 1981-01-29 2024-10-11 01:07:26 +4047 4047 4048 404.7 809.4000000000001 4047 1981-01-30 2024-10-11 01:07:27.000 1981-01-30 2024-10-11 01:07:27 +4048 4048 4049 404.8 809.6 4048 1981-01-31 2024-10-11 01:07:28.000 1981-01-31 2024-10-11 01:07:28 +4049 4049 4050 404.9 809.8000000000001 4049 1981-02-01 2024-10-11 01:07:29.000 1981-02-01 2024-10-11 01:07:29 +4051 4051 4052 405.1 810.2 4051 1981-02-03 2024-10-11 01:07:31.000 1981-02-03 2024-10-11 01:07:31 +4052 4052 4053 405.2 810.4000000000001 4052 1981-02-04 2024-10-11 01:07:32.000 1981-02-04 2024-10-11 01:07:32 +4053 4053 4054 405.3 810.6 4053 1981-02-05 2024-10-11 01:07:33.000 1981-02-05 2024-10-11 01:07:33 +4054 4054 4055 405.4 810.8000000000001 4054 1981-02-06 2024-10-11 01:07:34.000 1981-02-06 2024-10-11 01:07:34 +4056 4056 4057 405.6 811.2 4056 1981-02-08 2024-10-11 01:07:36.000 1981-02-08 2024-10-11 01:07:36 +4057 4057 4058 405.7 811.4000000000001 4057 1981-02-09 2024-10-11 01:07:37.000 1981-02-09 2024-10-11 01:07:37 +4058 4058 4059 405.8 811.6 4058 1981-02-10 2024-10-11 01:07:38.000 1981-02-10 2024-10-11 01:07:38 +4059 4059 4060 405.9 811.8000000000001 4059 1981-02-11 2024-10-11 01:07:39.000 1981-02-11 2024-10-11 01:07:39 +4061 4061 4062 406.1 812.2 4061 1981-02-13 2024-10-11 01:07:41.000 1981-02-13 2024-10-11 01:07:41 +4062 4062 4063 406.2 812.4000000000001 4062 1981-02-14 2024-10-11 01:07:42.000 1981-02-14 2024-10-11 01:07:42 +4063 4063 4064 406.3 812.6 4063 1981-02-15 2024-10-11 01:07:43.000 1981-02-15 2024-10-11 01:07:43 +4064 4064 4065 406.4 812.8000000000001 4064 1981-02-16 2024-10-11 01:07:44.000 1981-02-16 2024-10-11 01:07:44 +4066 4066 4067 406.6 813.2 4066 1981-02-18 2024-10-11 01:07:46.000 1981-02-18 2024-10-11 01:07:46 +4067 4067 4068 406.7 813.4000000000001 4067 1981-02-19 2024-10-11 01:07:47.000 1981-02-19 2024-10-11 01:07:47 +4068 4068 4069 406.8 813.6 4068 1981-02-20 2024-10-11 01:07:48.000 1981-02-20 2024-10-11 01:07:48 +4069 4069 4070 406.9 813.8000000000001 4069 1981-02-21 2024-10-11 01:07:49.000 1981-02-21 2024-10-11 01:07:49 +4071 4071 4072 407.1 814.2 4071 1981-02-23 2024-10-11 01:07:51.000 1981-02-23 2024-10-11 01:07:51 +4072 4072 4073 407.2 814.4000000000001 4072 1981-02-24 2024-10-11 01:07:52.000 1981-02-24 2024-10-11 01:07:52 +4073 4073 4074 407.3 814.6 4073 1981-02-25 2024-10-11 01:07:53.000 1981-02-25 2024-10-11 01:07:53 +4074 4074 4075 407.4 814.8000000000001 4074 1981-02-26 2024-10-11 01:07:54.000 1981-02-26 2024-10-11 01:07:54 +4076 4076 4077 407.6 815.2 4076 1981-02-28 2024-10-11 01:07:56.000 1981-02-28 2024-10-11 01:07:56 +4077 4077 4078 407.7 815.4000000000001 4077 1981-03-01 2024-10-11 01:07:57.000 1981-03-01 2024-10-11 01:07:57 +4078 4078 4079 407.8 815.6 4078 1981-03-02 2024-10-11 01:07:58.000 1981-03-02 2024-10-11 01:07:58 +4079 4079 4080 407.9 815.8000000000001 4079 1981-03-03 2024-10-11 01:07:59.000 1981-03-03 2024-10-11 01:07:59 +4081 4081 4082 408.1 816.2 4081 1981-03-05 2024-10-11 01:08:01.000 1981-03-05 2024-10-11 01:08:01 +4082 4082 4083 408.2 816.4000000000001 4082 1981-03-06 2024-10-11 01:08:02.000 1981-03-06 2024-10-11 01:08:02 +4083 4083 4084 408.3 816.6 4083 1981-03-07 2024-10-11 01:08:03.000 1981-03-07 2024-10-11 01:08:03 +4084 4084 4085 408.4 816.8000000000001 4084 1981-03-08 2024-10-11 01:08:04.000 1981-03-08 2024-10-11 01:08:04 +4086 4086 4087 408.6 817.2 4086 1981-03-10 2024-10-11 01:08:06.000 1981-03-10 2024-10-11 01:08:06 +4087 4087 4088 408.7 817.4000000000001 4087 1981-03-11 2024-10-11 01:08:07.000 1981-03-11 2024-10-11 01:08:07 +4088 4088 4089 408.8 817.6 4088 1981-03-12 2024-10-11 01:08:08.000 1981-03-12 2024-10-11 01:08:08 +4089 4089 4090 408.9 817.8000000000001 4089 1981-03-13 2024-10-11 01:08:09.000 1981-03-13 2024-10-11 01:08:09 +4091 4091 4092 409.1 818.2 4091 1981-03-15 2024-10-11 01:08:11.000 1981-03-15 2024-10-11 01:08:11 +4092 4092 4093 409.2 818.4000000000001 4092 1981-03-16 2024-10-11 01:08:12.000 1981-03-16 2024-10-11 01:08:12 +4093 4093 4094 409.3 818.6 4093 1981-03-17 2024-10-11 01:08:13.000 1981-03-17 2024-10-11 01:08:13 +4094 4094 4095 409.4 818.8000000000001 4094 1981-03-18 2024-10-11 01:08:14.000 1981-03-18 2024-10-11 01:08:14 +4096 4096 4097 409.6 819.2 4096 1981-03-20 2024-10-11 01:08:16.000 1981-03-20 2024-10-11 01:08:16 +4097 4097 4098 409.7 819.4000000000001 4097 1981-03-21 2024-10-11 01:08:17.000 1981-03-21 2024-10-11 01:08:17 +4098 4098 4099 409.8 819.6 4098 1981-03-22 2024-10-11 01:08:18.000 1981-03-22 2024-10-11 01:08:18 +4099 4099 4100 409.9 819.8000000000001 4099 1981-03-23 2024-10-11 01:08:19.000 1981-03-23 2024-10-11 01:08:19 +4101 4101 4102 410.1 820.2 4101 1981-03-25 2024-10-11 01:08:21.000 1981-03-25 2024-10-11 01:08:21 +4102 4102 4103 410.2 820.4000000000001 4102 1981-03-26 2024-10-11 01:08:22.000 1981-03-26 2024-10-11 01:08:22 +4103 4103 4104 410.3 820.6 4103 1981-03-27 2024-10-11 01:08:23.000 1981-03-27 2024-10-11 01:08:23 +4104 4104 4105 410.4 820.8000000000001 4104 1981-03-28 2024-10-11 01:08:24.000 1981-03-28 2024-10-11 01:08:24 +4106 4106 4107 410.6 821.2 4106 1981-03-30 2024-10-11 01:08:26.000 1981-03-30 2024-10-11 01:08:26 +4107 4107 4108 410.7 821.4000000000001 4107 1981-03-31 2024-10-11 01:08:27.000 1981-03-31 2024-10-11 01:08:27 +4108 4108 4109 410.8 821.6 4108 1981-04-01 2024-10-11 01:08:28.000 1981-04-01 2024-10-11 01:08:28 +4109 4109 4110 410.9 821.8000000000001 4109 1981-04-02 2024-10-11 01:08:29.000 1981-04-02 2024-10-11 01:08:29 +4111 4111 4112 411.1 822.2 4111 1981-04-04 2024-10-11 01:08:31.000 1981-04-04 2024-10-11 01:08:31 +4112 4112 4113 411.2 822.4000000000001 4112 1981-04-05 2024-10-11 01:08:32.000 1981-04-05 2024-10-11 01:08:32 +4113 4113 4114 411.3 822.6 4113 1981-04-06 2024-10-11 01:08:33.000 1981-04-06 2024-10-11 01:08:33 +4114 4114 4115 411.4 822.8000000000001 4114 1981-04-07 2024-10-11 01:08:34.000 1981-04-07 2024-10-11 01:08:34 +4116 4116 4117 411.6 823.2 4116 1981-04-09 2024-10-11 01:08:36.000 1981-04-09 2024-10-11 01:08:36 +4117 4117 4118 411.7 823.4000000000001 4117 1981-04-10 2024-10-11 01:08:37.000 1981-04-10 2024-10-11 01:08:37 +4118 4118 4119 411.8 823.6 4118 1981-04-11 2024-10-11 01:08:38.000 1981-04-11 2024-10-11 01:08:38 +4119 4119 4120 411.9 823.8000000000001 4119 1981-04-12 2024-10-11 01:08:39.000 1981-04-12 2024-10-11 01:08:39 +4121 4121 4122 412.1 824.2 4121 1981-04-14 2024-10-11 01:08:41.000 1981-04-14 2024-10-11 01:08:41 +4122 4122 4123 412.2 824.4000000000001 4122 1981-04-15 2024-10-11 01:08:42.000 1981-04-15 2024-10-11 01:08:42 +4123 4123 4124 412.3 824.6 4123 1981-04-16 2024-10-11 01:08:43.000 1981-04-16 2024-10-11 01:08:43 +4124 4124 4125 412.4 824.8000000000001 4124 1981-04-17 2024-10-11 01:08:44.000 1981-04-17 2024-10-11 01:08:44 +4126 4126 4127 412.6 825.2 4126 1981-04-19 2024-10-11 01:08:46.000 1981-04-19 2024-10-11 01:08:46 +4127 4127 4128 412.7 825.4000000000001 4127 1981-04-20 2024-10-11 01:08:47.000 1981-04-20 2024-10-11 01:08:47 +4128 4128 4129 412.8 825.6 4128 1981-04-21 2024-10-11 01:08:48.000 1981-04-21 2024-10-11 01:08:48 +4129 4129 4130 412.9 825.8000000000001 4129 1981-04-22 2024-10-11 01:08:49.000 1981-04-22 2024-10-11 01:08:49 +4131 4131 4132 413.1 826.2 4131 1981-04-24 2024-10-11 01:08:51.000 1981-04-24 2024-10-11 01:08:51 +4132 4132 4133 413.2 826.4000000000001 4132 1981-04-25 2024-10-11 01:08:52.000 1981-04-25 2024-10-11 01:08:52 +4133 4133 4134 413.3 826.6 4133 1981-04-26 2024-10-11 01:08:53.000 1981-04-26 2024-10-11 01:08:53 +4134 4134 4135 413.4 826.8000000000001 4134 1981-04-27 2024-10-11 01:08:54.000 1981-04-27 2024-10-11 01:08:54 +4136 4136 4137 413.6 827.2 4136 1981-04-29 2024-10-11 01:08:56.000 1981-04-29 2024-10-11 01:08:56 +4137 4137 4138 413.7 827.4000000000001 4137 1981-04-30 2024-10-11 01:08:57.000 1981-04-30 2024-10-11 01:08:57 +4138 4138 4139 413.8 827.6 4138 1981-05-01 2024-10-11 01:08:58.000 1981-05-01 2024-10-11 01:08:58 +4139 4139 4140 413.9 827.8000000000001 4139 1981-05-02 2024-10-11 01:08:59.000 1981-05-02 2024-10-11 01:08:59 +4141 4141 4142 414.1 828.2 4141 1981-05-04 2024-10-11 01:09:01.000 1981-05-04 2024-10-11 01:09:01 +4142 4142 4143 414.2 828.4000000000001 4142 1981-05-05 2024-10-11 01:09:02.000 1981-05-05 2024-10-11 01:09:02 +4143 4143 4144 414.3 828.6 4143 1981-05-06 2024-10-11 01:09:03.000 1981-05-06 2024-10-11 01:09:03 +4144 4144 4145 414.4 828.8000000000001 4144 1981-05-07 2024-10-11 01:09:04.000 1981-05-07 2024-10-11 01:09:04 +4146 4146 4147 414.6 829.2 4146 1981-05-09 2024-10-11 01:09:06.000 1981-05-09 2024-10-11 01:09:06 +4147 4147 4148 414.7 829.4000000000001 4147 1981-05-10 2024-10-11 01:09:07.000 1981-05-10 2024-10-11 01:09:07 +4148 4148 4149 414.8 829.6 4148 1981-05-11 2024-10-11 01:09:08.000 1981-05-11 2024-10-11 01:09:08 +4149 4149 4150 414.9 829.8000000000001 4149 1981-05-12 2024-10-11 01:09:09.000 1981-05-12 2024-10-11 01:09:09 +4151 4151 4152 415.1 830.2 4151 1981-05-14 2024-10-11 01:09:11.000 1981-05-14 2024-10-11 01:09:11 +4152 4152 4153 415.2 830.4000000000001 4152 1981-05-15 2024-10-11 01:09:12.000 1981-05-15 2024-10-11 01:09:12 +4153 4153 4154 415.3 830.6 4153 1981-05-16 2024-10-11 01:09:13.000 1981-05-16 2024-10-11 01:09:13 +4154 4154 4155 415.4 830.8000000000001 4154 1981-05-17 2024-10-11 01:09:14.000 1981-05-17 2024-10-11 01:09:14 +4156 4156 4157 415.6 831.2 4156 1981-05-19 2024-10-11 01:09:16.000 1981-05-19 2024-10-11 01:09:16 +4157 4157 4158 415.7 831.4000000000001 4157 1981-05-20 2024-10-11 01:09:17.000 1981-05-20 2024-10-11 01:09:17 +4158 4158 4159 415.8 831.6 4158 1981-05-21 2024-10-11 01:09:18.000 1981-05-21 2024-10-11 01:09:18 +4159 4159 4160 415.9 831.8000000000001 4159 1981-05-22 2024-10-11 01:09:19.000 1981-05-22 2024-10-11 01:09:19 +4161 4161 4162 416.1 832.2 4161 1981-05-24 2024-10-11 01:09:21.000 1981-05-24 2024-10-11 01:09:21 +4162 4162 4163 416.2 832.4000000000001 4162 1981-05-25 2024-10-11 01:09:22.000 1981-05-25 2024-10-11 01:09:22 +4163 4163 4164 416.3 832.6 4163 1981-05-26 2024-10-11 01:09:23.000 1981-05-26 2024-10-11 01:09:23 +4164 4164 4165 416.4 832.8000000000001 4164 1981-05-27 2024-10-11 01:09:24.000 1981-05-27 2024-10-11 01:09:24 +4166 4166 4167 416.6 833.2 4166 1981-05-29 2024-10-11 01:09:26.000 1981-05-29 2024-10-11 01:09:26 +4167 4167 4168 416.7 833.4000000000001 4167 1981-05-30 2024-10-11 01:09:27.000 1981-05-30 2024-10-11 01:09:27 +4168 4168 4169 416.8 833.6 4168 1981-05-31 2024-10-11 01:09:28.000 1981-05-31 2024-10-11 01:09:28 +4169 4169 4170 416.9 833.8000000000001 4169 1981-06-01 2024-10-11 01:09:29.000 1981-06-01 2024-10-11 01:09:29 +4171 4171 4172 417.1 834.2 4171 1981-06-03 2024-10-11 01:09:31.000 1981-06-03 2024-10-11 01:09:31 +4172 4172 4173 417.2 834.4000000000001 4172 1981-06-04 2024-10-11 01:09:32.000 1981-06-04 2024-10-11 01:09:32 +4173 4173 4174 417.3 834.6 4173 1981-06-05 2024-10-11 01:09:33.000 1981-06-05 2024-10-11 01:09:33 +4174 4174 4175 417.4 834.8000000000001 4174 1981-06-06 2024-10-11 01:09:34.000 1981-06-06 2024-10-11 01:09:34 +4176 4176 4177 417.6 835.2 4176 1981-06-08 2024-10-11 01:09:36.000 1981-06-08 2024-10-11 01:09:36 +4177 4177 4178 417.7 835.4000000000001 4177 1981-06-09 2024-10-11 01:09:37.000 1981-06-09 2024-10-11 01:09:37 +4178 4178 4179 417.8 835.6 4178 1981-06-10 2024-10-11 01:09:38.000 1981-06-10 2024-10-11 01:09:38 +4179 4179 4180 417.9 835.8000000000001 4179 1981-06-11 2024-10-11 01:09:39.000 1981-06-11 2024-10-11 01:09:39 +4181 4181 4182 418.1 836.2 4181 1981-06-13 2024-10-11 01:09:41.000 1981-06-13 2024-10-11 01:09:41 +4182 4182 4183 418.2 836.4000000000001 4182 1981-06-14 2024-10-11 01:09:42.000 1981-06-14 2024-10-11 01:09:42 +4183 4183 4184 418.3 836.6 4183 1981-06-15 2024-10-11 01:09:43.000 1981-06-15 2024-10-11 01:09:43 +4184 4184 4185 418.4 836.8000000000001 4184 1981-06-16 2024-10-11 01:09:44.000 1981-06-16 2024-10-11 01:09:44 +4186 4186 4187 418.6 837.2 4186 1981-06-18 2024-10-11 01:09:46.000 1981-06-18 2024-10-11 01:09:46 +4187 4187 4188 418.7 837.4000000000001 4187 1981-06-19 2024-10-11 01:09:47.000 1981-06-19 2024-10-11 01:09:47 +4188 4188 4189 418.8 837.6 4188 1981-06-20 2024-10-11 01:09:48.000 1981-06-20 2024-10-11 01:09:48 +4189 4189 4190 418.9 837.8000000000001 4189 1981-06-21 2024-10-11 01:09:49.000 1981-06-21 2024-10-11 01:09:49 +4191 4191 4192 419.1 838.2 4191 1981-06-23 2024-10-11 01:09:51.000 1981-06-23 2024-10-11 01:09:51 +4192 4192 4193 419.2 838.4000000000001 4192 1981-06-24 2024-10-11 01:09:52.000 1981-06-24 2024-10-11 01:09:52 +4193 4193 4194 419.3 838.6 4193 1981-06-25 2024-10-11 01:09:53.000 1981-06-25 2024-10-11 01:09:53 +4194 4194 4195 419.4 838.8000000000001 4194 1981-06-26 2024-10-11 01:09:54.000 1981-06-26 2024-10-11 01:09:54 +4196 4196 4197 419.6 839.2 4196 1981-06-28 2024-10-11 01:09:56.000 1981-06-28 2024-10-11 01:09:56 +4197 4197 4198 419.7 839.4000000000001 4197 1981-06-29 2024-10-11 01:09:57.000 1981-06-29 2024-10-11 01:09:57 +4198 4198 4199 419.8 839.6 4198 1981-06-30 2024-10-11 01:09:58.000 1981-06-30 2024-10-11 01:09:58 +4199 4199 4200 419.9 839.8000000000001 4199 1981-07-01 2024-10-11 01:09:59.000 1981-07-01 2024-10-11 01:09:59 +4201 4201 4202 420.1 840.2 4201 1981-07-03 2024-10-11 01:10:01.000 1981-07-03 2024-10-11 01:10:01 +4202 4202 4203 420.2 840.4000000000001 4202 1981-07-04 2024-10-11 01:10:02.000 1981-07-04 2024-10-11 01:10:02 +4203 4203 4204 420.3 840.6 4203 1981-07-05 2024-10-11 01:10:03.000 1981-07-05 2024-10-11 01:10:03 +4204 4204 4205 420.4 840.8000000000001 4204 1981-07-06 2024-10-11 01:10:04.000 1981-07-06 2024-10-11 01:10:04 +4206 4206 4207 420.6 841.2 4206 1981-07-08 2024-10-11 01:10:06.000 1981-07-08 2024-10-11 01:10:06 +4207 4207 4208 420.7 841.4000000000001 4207 1981-07-09 2024-10-11 01:10:07.000 1981-07-09 2024-10-11 01:10:07 +4208 4208 4209 420.8 841.6 4208 1981-07-10 2024-10-11 01:10:08.000 1981-07-10 2024-10-11 01:10:08 +4209 4209 4210 420.9 841.8000000000001 4209 1981-07-11 2024-10-11 01:10:09.000 1981-07-11 2024-10-11 01:10:09 +4211 4211 4212 421.1 842.2 4211 1981-07-13 2024-10-11 01:10:11.000 1981-07-13 2024-10-11 01:10:11 +4212 4212 4213 421.2 842.4000000000001 4212 1981-07-14 2024-10-11 01:10:12.000 1981-07-14 2024-10-11 01:10:12 +4213 4213 4214 421.3 842.6 4213 1981-07-15 2024-10-11 01:10:13.000 1981-07-15 2024-10-11 01:10:13 +4214 4214 4215 421.4 842.8000000000001 4214 1981-07-16 2024-10-11 01:10:14.000 1981-07-16 2024-10-11 01:10:14 +4216 4216 4217 421.6 843.2 4216 1981-07-18 2024-10-11 01:10:16.000 1981-07-18 2024-10-11 01:10:16 +4217 4217 4218 421.7 843.4000000000001 4217 1981-07-19 2024-10-11 01:10:17.000 1981-07-19 2024-10-11 01:10:17 +4218 4218 4219 421.8 843.6 4218 1981-07-20 2024-10-11 01:10:18.000 1981-07-20 2024-10-11 01:10:18 +4219 4219 4220 421.9 843.8000000000001 4219 1981-07-21 2024-10-11 01:10:19.000 1981-07-21 2024-10-11 01:10:19 +4221 4221 4222 422.1 844.2 4221 1981-07-23 2024-10-11 01:10:21.000 1981-07-23 2024-10-11 01:10:21 +4222 4222 4223 422.2 844.4000000000001 4222 1981-07-24 2024-10-11 01:10:22.000 1981-07-24 2024-10-11 01:10:22 +4223 4223 4224 422.3 844.6 4223 1981-07-25 2024-10-11 01:10:23.000 1981-07-25 2024-10-11 01:10:23 +4224 4224 4225 422.4 844.8000000000001 4224 1981-07-26 2024-10-11 01:10:24.000 1981-07-26 2024-10-11 01:10:24 +4226 4226 4227 422.6 845.2 4226 1981-07-28 2024-10-11 01:10:26.000 1981-07-28 2024-10-11 01:10:26 +4227 4227 4228 422.7 845.4000000000001 4227 1981-07-29 2024-10-11 01:10:27.000 1981-07-29 2024-10-11 01:10:27 +4228 4228 4229 422.8 845.6 4228 1981-07-30 2024-10-11 01:10:28.000 1981-07-30 2024-10-11 01:10:28 +4229 4229 4230 422.9 845.8000000000001 4229 1981-07-31 2024-10-11 01:10:29.000 1981-07-31 2024-10-11 01:10:29 +4231 4231 4232 423.1 846.2 4231 1981-08-02 2024-10-11 01:10:31.000 1981-08-02 2024-10-11 01:10:31 +4232 4232 4233 423.2 846.4000000000001 4232 1981-08-03 2024-10-11 01:10:32.000 1981-08-03 2024-10-11 01:10:32 +4233 4233 4234 423.3 846.6 4233 1981-08-04 2024-10-11 01:10:33.000 1981-08-04 2024-10-11 01:10:33 +4234 4234 4235 423.4 846.8000000000001 4234 1981-08-05 2024-10-11 01:10:34.000 1981-08-05 2024-10-11 01:10:34 +4236 4236 4237 423.6 847.2 4236 1981-08-07 2024-10-11 01:10:36.000 1981-08-07 2024-10-11 01:10:36 +4237 4237 4238 423.7 847.4000000000001 4237 1981-08-08 2024-10-11 01:10:37.000 1981-08-08 2024-10-11 01:10:37 +4238 4238 4239 423.8 847.6 4238 1981-08-09 2024-10-11 01:10:38.000 1981-08-09 2024-10-11 01:10:38 +4239 4239 4240 423.9 847.8000000000001 4239 1981-08-10 2024-10-11 01:10:39.000 1981-08-10 2024-10-11 01:10:39 +4241 4241 4242 424.1 848.2 4241 1981-08-12 2024-10-11 01:10:41.000 1981-08-12 2024-10-11 01:10:41 +4242 4242 4243 424.2 848.4000000000001 4242 1981-08-13 2024-10-11 01:10:42.000 1981-08-13 2024-10-11 01:10:42 +4243 4243 4244 424.3 848.6 4243 1981-08-14 2024-10-11 01:10:43.000 1981-08-14 2024-10-11 01:10:43 +4244 4244 4245 424.4 848.8000000000001 4244 1981-08-15 2024-10-11 01:10:44.000 1981-08-15 2024-10-11 01:10:44 +4246 4246 4247 424.6 849.2 4246 1981-08-17 2024-10-11 01:10:46.000 1981-08-17 2024-10-11 01:10:46 +4247 4247 4248 424.7 849.4000000000001 4247 1981-08-18 2024-10-11 01:10:47.000 1981-08-18 2024-10-11 01:10:47 +4248 4248 4249 424.8 849.6 4248 1981-08-19 2024-10-11 01:10:48.000 1981-08-19 2024-10-11 01:10:48 +4249 4249 4250 424.9 849.8000000000001 4249 1981-08-20 2024-10-11 01:10:49.000 1981-08-20 2024-10-11 01:10:49 +4251 4251 4252 425.1 850.2 4251 1981-08-22 2024-10-11 01:10:51.000 1981-08-22 2024-10-11 01:10:51 +4252 4252 4253 425.2 850.4000000000001 4252 1981-08-23 2024-10-11 01:10:52.000 1981-08-23 2024-10-11 01:10:52 +4253 4253 4254 425.3 850.6 4253 1981-08-24 2024-10-11 01:10:53.000 1981-08-24 2024-10-11 01:10:53 +4254 4254 4255 425.4 850.8000000000001 4254 1981-08-25 2024-10-11 01:10:54.000 1981-08-25 2024-10-11 01:10:54 +4256 4256 4257 425.6 851.2 4256 1981-08-27 2024-10-11 01:10:56.000 1981-08-27 2024-10-11 01:10:56 +4257 4257 4258 425.7 851.4000000000001 4257 1981-08-28 2024-10-11 01:10:57.000 1981-08-28 2024-10-11 01:10:57 +4258 4258 4259 425.8 851.6 4258 1981-08-29 2024-10-11 01:10:58.000 1981-08-29 2024-10-11 01:10:58 +4259 4259 4260 425.9 851.8000000000001 4259 1981-08-30 2024-10-11 01:10:59.000 1981-08-30 2024-10-11 01:10:59 +4261 4261 4262 426.1 852.2 4261 1981-09-01 2024-10-11 01:11:01.000 1981-09-01 2024-10-11 01:11:01 +4262 4262 4263 426.2 852.4000000000001 4262 1981-09-02 2024-10-11 01:11:02.000 1981-09-02 2024-10-11 01:11:02 +4263 4263 4264 426.3 852.6 4263 1981-09-03 2024-10-11 01:11:03.000 1981-09-03 2024-10-11 01:11:03 +4264 4264 4265 426.4 852.8000000000001 4264 1981-09-04 2024-10-11 01:11:04.000 1981-09-04 2024-10-11 01:11:04 +4266 4266 4267 426.6 853.2 4266 1981-09-06 2024-10-11 01:11:06.000 1981-09-06 2024-10-11 01:11:06 +4267 4267 4268 426.7 853.4000000000001 4267 1981-09-07 2024-10-11 01:11:07.000 1981-09-07 2024-10-11 01:11:07 +4268 4268 4269 426.8 853.6 4268 1981-09-08 2024-10-11 01:11:08.000 1981-09-08 2024-10-11 01:11:08 +4269 4269 4270 426.9 853.8000000000001 4269 1981-09-09 2024-10-11 01:11:09.000 1981-09-09 2024-10-11 01:11:09 +4271 4271 4272 427.1 854.2 4271 1981-09-11 2024-10-11 01:11:11.000 1981-09-11 2024-10-11 01:11:11 +4272 4272 4273 427.2 854.4000000000001 4272 1981-09-12 2024-10-11 01:11:12.000 1981-09-12 2024-10-11 01:11:12 +4273 4273 4274 427.3 854.6 4273 1981-09-13 2024-10-11 01:11:13.000 1981-09-13 2024-10-11 01:11:13 +4274 4274 4275 427.4 854.8000000000001 4274 1981-09-14 2024-10-11 01:11:14.000 1981-09-14 2024-10-11 01:11:14 +4276 4276 4277 427.6 855.2 4276 1981-09-16 2024-10-11 01:11:16.000 1981-09-16 2024-10-11 01:11:16 +4277 4277 4278 427.7 855.4000000000001 4277 1981-09-17 2024-10-11 01:11:17.000 1981-09-17 2024-10-11 01:11:17 +4278 4278 4279 427.8 855.6 4278 1981-09-18 2024-10-11 01:11:18.000 1981-09-18 2024-10-11 01:11:18 +4279 4279 4280 427.9 855.8000000000001 4279 1981-09-19 2024-10-11 01:11:19.000 1981-09-19 2024-10-11 01:11:19 +4281 4281 4282 428.1 856.2 4281 1981-09-21 2024-10-11 01:11:21.000 1981-09-21 2024-10-11 01:11:21 +4282 4282 4283 428.2 856.4000000000001 4282 1981-09-22 2024-10-11 01:11:22.000 1981-09-22 2024-10-11 01:11:22 +4283 4283 4284 428.3 856.6 4283 1981-09-23 2024-10-11 01:11:23.000 1981-09-23 2024-10-11 01:11:23 +4284 4284 4285 428.4 856.8000000000001 4284 1981-09-24 2024-10-11 01:11:24.000 1981-09-24 2024-10-11 01:11:24 +4286 4286 4287 428.6 857.2 4286 1981-09-26 2024-10-11 01:11:26.000 1981-09-26 2024-10-11 01:11:26 +4287 4287 4288 428.7 857.4000000000001 4287 1981-09-27 2024-10-11 01:11:27.000 1981-09-27 2024-10-11 01:11:27 +4288 4288 4289 428.8 857.6 4288 1981-09-28 2024-10-11 01:11:28.000 1981-09-28 2024-10-11 01:11:28 +4289 4289 4290 428.9 857.8000000000001 4289 1981-09-29 2024-10-11 01:11:29.000 1981-09-29 2024-10-11 01:11:29 +4291 4291 4292 429.1 858.2 4291 1981-10-01 2024-10-11 01:11:31.000 1981-10-01 2024-10-11 01:11:31 +4292 4292 4293 429.2 858.4000000000001 4292 1981-10-02 2024-10-11 01:11:32.000 1981-10-02 2024-10-11 01:11:32 +4293 4293 4294 429.3 858.6 4293 1981-10-03 2024-10-11 01:11:33.000 1981-10-03 2024-10-11 01:11:33 +4294 4294 4295 429.4 858.8000000000001 4294 1981-10-04 2024-10-11 01:11:34.000 1981-10-04 2024-10-11 01:11:34 +4296 4296 4297 429.6 859.2 4296 1981-10-06 2024-10-11 01:11:36.000 1981-10-06 2024-10-11 01:11:36 +4297 4297 4298 429.7 859.4000000000001 4297 1981-10-07 2024-10-11 01:11:37.000 1981-10-07 2024-10-11 01:11:37 +4298 4298 4299 429.8 859.6 4298 1981-10-08 2024-10-11 01:11:38.000 1981-10-08 2024-10-11 01:11:38 +4299 4299 4300 429.9 859.8000000000001 4299 1981-10-09 2024-10-11 01:11:39.000 1981-10-09 2024-10-11 01:11:39 +4301 4301 4302 430.1 860.2 4301 1981-10-11 2024-10-11 01:11:41.000 1981-10-11 2024-10-11 01:11:41 +4302 4302 4303 430.2 860.4000000000001 4302 1981-10-12 2024-10-11 01:11:42.000 1981-10-12 2024-10-11 01:11:42 +4303 4303 4304 430.3 860.6 4303 1981-10-13 2024-10-11 01:11:43.000 1981-10-13 2024-10-11 01:11:43 +4304 4304 4305 430.4 860.8000000000001 4304 1981-10-14 2024-10-11 01:11:44.000 1981-10-14 2024-10-11 01:11:44 +4306 4306 4307 430.6 861.2 4306 1981-10-16 2024-10-11 01:11:46.000 1981-10-16 2024-10-11 01:11:46 +4307 4307 4308 430.7 861.4000000000001 4307 1981-10-17 2024-10-11 01:11:47.000 1981-10-17 2024-10-11 01:11:47 +4308 4308 4309 430.8 861.6 4308 1981-10-18 2024-10-11 01:11:48.000 1981-10-18 2024-10-11 01:11:48 +4309 4309 4310 430.9 861.8000000000001 4309 1981-10-19 2024-10-11 01:11:49.000 1981-10-19 2024-10-11 01:11:49 +4311 4311 4312 431.1 862.2 4311 1981-10-21 2024-10-11 01:11:51.000 1981-10-21 2024-10-11 01:11:51 +4312 4312 4313 431.2 862.4000000000001 4312 1981-10-22 2024-10-11 01:11:52.000 1981-10-22 2024-10-11 01:11:52 +4313 4313 4314 431.3 862.6 4313 1981-10-23 2024-10-11 01:11:53.000 1981-10-23 2024-10-11 01:11:53 +4314 4314 4315 431.4 862.8000000000001 4314 1981-10-24 2024-10-11 01:11:54.000 1981-10-24 2024-10-11 01:11:54 +4316 4316 4317 431.6 863.2 4316 1981-10-26 2024-10-11 01:11:56.000 1981-10-26 2024-10-11 01:11:56 +4317 4317 4318 431.7 863.4000000000001 4317 1981-10-27 2024-10-11 01:11:57.000 1981-10-27 2024-10-11 01:11:57 +4318 4318 4319 431.8 863.6 4318 1981-10-28 2024-10-11 01:11:58.000 1981-10-28 2024-10-11 01:11:58 +4319 4319 4320 431.9 863.8000000000001 4319 1981-10-29 2024-10-11 01:11:59.000 1981-10-29 2024-10-11 01:11:59 +4321 4321 4322 432.1 864.2 4321 1981-10-31 2024-10-11 01:12:01.000 1981-10-31 2024-10-11 01:12:01 +4322 4322 4323 432.2 864.4000000000001 4322 1981-11-01 2024-10-11 01:12:02.000 1981-11-01 2024-10-11 01:12:02 +4323 4323 4324 432.3 864.6 4323 1981-11-02 2024-10-11 01:12:03.000 1981-11-02 2024-10-11 01:12:03 +4324 4324 4325 432.4 864.8000000000001 4324 1981-11-03 2024-10-11 01:12:04.000 1981-11-03 2024-10-11 01:12:04 +4326 4326 4327 432.6 865.2 4326 1981-11-05 2024-10-11 01:12:06.000 1981-11-05 2024-10-11 01:12:06 +4327 4327 4328 432.7 865.4000000000001 4327 1981-11-06 2024-10-11 01:12:07.000 1981-11-06 2024-10-11 01:12:07 +4328 4328 4329 432.8 865.6 4328 1981-11-07 2024-10-11 01:12:08.000 1981-11-07 2024-10-11 01:12:08 +4329 4329 4330 432.9 865.8000000000001 4329 1981-11-08 2024-10-11 01:12:09.000 1981-11-08 2024-10-11 01:12:09 +4331 4331 4332 433.1 866.2 4331 1981-11-10 2024-10-11 01:12:11.000 1981-11-10 2024-10-11 01:12:11 +4332 4332 4333 433.2 866.4000000000001 4332 1981-11-11 2024-10-11 01:12:12.000 1981-11-11 2024-10-11 01:12:12 +4333 4333 4334 433.3 866.6 4333 1981-11-12 2024-10-11 01:12:13.000 1981-11-12 2024-10-11 01:12:13 +4334 4334 4335 433.4 866.8000000000001 4334 1981-11-13 2024-10-11 01:12:14.000 1981-11-13 2024-10-11 01:12:14 +4336 4336 4337 433.6 867.2 4336 1981-11-15 2024-10-11 01:12:16.000 1981-11-15 2024-10-11 01:12:16 +4337 4337 4338 433.7 867.4000000000001 4337 1981-11-16 2024-10-11 01:12:17.000 1981-11-16 2024-10-11 01:12:17 +4338 4338 4339 433.8 867.6 4338 1981-11-17 2024-10-11 01:12:18.000 1981-11-17 2024-10-11 01:12:18 +4339 4339 4340 433.9 867.8000000000001 4339 1981-11-18 2024-10-11 01:12:19.000 1981-11-18 2024-10-11 01:12:19 +4341 4341 4342 434.1 868.2 4341 1981-11-20 2024-10-11 01:12:21.000 1981-11-20 2024-10-11 01:12:21 +4342 4342 4343 434.2 868.4000000000001 4342 1981-11-21 2024-10-11 01:12:22.000 1981-11-21 2024-10-11 01:12:22 +4343 4343 4344 434.3 868.6 4343 1981-11-22 2024-10-11 01:12:23.000 1981-11-22 2024-10-11 01:12:23 +4344 4344 4345 434.4 868.8000000000001 4344 1981-11-23 2024-10-11 01:12:24.000 1981-11-23 2024-10-11 01:12:24 +4346 4346 4347 434.6 869.2 4346 1981-11-25 2024-10-11 01:12:26.000 1981-11-25 2024-10-11 01:12:26 +4347 4347 4348 434.7 869.4000000000001 4347 1981-11-26 2024-10-11 01:12:27.000 1981-11-26 2024-10-11 01:12:27 +4348 4348 4349 434.8 869.6 4348 1981-11-27 2024-10-11 01:12:28.000 1981-11-27 2024-10-11 01:12:28 +4349 4349 4350 434.9 869.8000000000001 4349 1981-11-28 2024-10-11 01:12:29.000 1981-11-28 2024-10-11 01:12:29 +4351 4351 4352 435.1 870.2 4351 1981-11-30 2024-10-11 01:12:31.000 1981-11-30 2024-10-11 01:12:31 +4352 4352 4353 435.2 870.4000000000001 4352 1981-12-01 2024-10-11 01:12:32.000 1981-12-01 2024-10-11 01:12:32 +4353 4353 4354 435.3 870.6 4353 1981-12-02 2024-10-11 01:12:33.000 1981-12-02 2024-10-11 01:12:33 +4354 4354 4355 435.4 870.8000000000001 4354 1981-12-03 2024-10-11 01:12:34.000 1981-12-03 2024-10-11 01:12:34 +4356 4356 4357 435.6 871.2 4356 1981-12-05 2024-10-11 01:12:36.000 1981-12-05 2024-10-11 01:12:36 +4357 4357 4358 435.7 871.4000000000001 4357 1981-12-06 2024-10-11 01:12:37.000 1981-12-06 2024-10-11 01:12:37 +4358 4358 4359 435.8 871.6 4358 1981-12-07 2024-10-11 01:12:38.000 1981-12-07 2024-10-11 01:12:38 +4359 4359 4360 435.9 871.8000000000001 4359 1981-12-08 2024-10-11 01:12:39.000 1981-12-08 2024-10-11 01:12:39 +4361 4361 4362 436.1 872.2 4361 1981-12-10 2024-10-11 01:12:41.000 1981-12-10 2024-10-11 01:12:41 +4362 4362 4363 436.2 872.4000000000001 4362 1981-12-11 2024-10-11 01:12:42.000 1981-12-11 2024-10-11 01:12:42 +4363 4363 4364 436.3 872.6 4363 1981-12-12 2024-10-11 01:12:43.000 1981-12-12 2024-10-11 01:12:43 +4364 4364 4365 436.4 872.8000000000001 4364 1981-12-13 2024-10-11 01:12:44.000 1981-12-13 2024-10-11 01:12:44 +4366 4366 4367 436.6 873.2 4366 1981-12-15 2024-10-11 01:12:46.000 1981-12-15 2024-10-11 01:12:46 +4367 4367 4368 436.7 873.4000000000001 4367 1981-12-16 2024-10-11 01:12:47.000 1981-12-16 2024-10-11 01:12:47 +4368 4368 4369 436.8 873.6 4368 1981-12-17 2024-10-11 01:12:48.000 1981-12-17 2024-10-11 01:12:48 +4369 4369 4370 436.9 873.8000000000001 4369 1981-12-18 2024-10-11 01:12:49.000 1981-12-18 2024-10-11 01:12:49 +4371 4371 4372 437.1 874.2 4371 1981-12-20 2024-10-11 01:12:51.000 1981-12-20 2024-10-11 01:12:51 +4372 4372 4373 437.2 874.4000000000001 4372 1981-12-21 2024-10-11 01:12:52.000 1981-12-21 2024-10-11 01:12:52 +4373 4373 4374 437.3 874.6 4373 1981-12-22 2024-10-11 01:12:53.000 1981-12-22 2024-10-11 01:12:53 +4374 4374 4375 437.4 874.8000000000001 4374 1981-12-23 2024-10-11 01:12:54.000 1981-12-23 2024-10-11 01:12:54 +4376 4376 4377 437.6 875.2 4376 1981-12-25 2024-10-11 01:12:56.000 1981-12-25 2024-10-11 01:12:56 +4377 4377 4378 437.7 875.4000000000001 4377 1981-12-26 2024-10-11 01:12:57.000 1981-12-26 2024-10-11 01:12:57 +4378 4378 4379 437.8 875.6 4378 1981-12-27 2024-10-11 01:12:58.000 1981-12-27 2024-10-11 01:12:58 +4379 4379 4380 437.9 875.8000000000001 4379 1981-12-28 2024-10-11 01:12:59.000 1981-12-28 2024-10-11 01:12:59 +4381 4381 4382 438.1 876.2 4381 1981-12-30 2024-10-11 01:13:01.000 1981-12-30 2024-10-11 01:13:01 +4382 4382 4383 438.2 876.4000000000001 4382 1981-12-31 2024-10-11 01:13:02.000 1981-12-31 2024-10-11 01:13:02 +4383 4383 4384 438.3 876.6 4383 1982-01-01 2024-10-11 01:13:03.000 1982-01-01 2024-10-11 01:13:03 +4384 4384 4385 438.4 876.8000000000001 4384 1982-01-02 2024-10-11 01:13:04.000 1982-01-02 2024-10-11 01:13:04 +4386 4386 4387 438.6 877.2 4386 1982-01-04 2024-10-11 01:13:06.000 1982-01-04 2024-10-11 01:13:06 +4387 4387 4388 438.7 877.4000000000001 4387 1982-01-05 2024-10-11 01:13:07.000 1982-01-05 2024-10-11 01:13:07 +4388 4388 4389 438.8 877.6 4388 1982-01-06 2024-10-11 01:13:08.000 1982-01-06 2024-10-11 01:13:08 +4389 4389 4390 438.9 877.8000000000001 4389 1982-01-07 2024-10-11 01:13:09.000 1982-01-07 2024-10-11 01:13:09 +4391 4391 4392 439.1 878.2 4391 1982-01-09 2024-10-11 01:13:11.000 1982-01-09 2024-10-11 01:13:11 +4392 4392 4393 439.2 878.4000000000001 4392 1982-01-10 2024-10-11 01:13:12.000 1982-01-10 2024-10-11 01:13:12 +4393 4393 4394 439.3 878.6 4393 1982-01-11 2024-10-11 01:13:13.000 1982-01-11 2024-10-11 01:13:13 +4394 4394 4395 439.4 878.8000000000001 4394 1982-01-12 2024-10-11 01:13:14.000 1982-01-12 2024-10-11 01:13:14 +4396 4396 4397 439.6 879.2 4396 1982-01-14 2024-10-11 01:13:16.000 1982-01-14 2024-10-11 01:13:16 +4397 4397 4398 439.7 879.4000000000001 4397 1982-01-15 2024-10-11 01:13:17.000 1982-01-15 2024-10-11 01:13:17 +4398 4398 4399 439.8 879.6 4398 1982-01-16 2024-10-11 01:13:18.000 1982-01-16 2024-10-11 01:13:18 +4399 4399 4400 439.9 879.8000000000001 4399 1982-01-17 2024-10-11 01:13:19.000 1982-01-17 2024-10-11 01:13:19 +4401 4401 4402 440.1 880.2 4401 1982-01-19 2024-10-11 01:13:21.000 1982-01-19 2024-10-11 01:13:21 +4402 4402 4403 440.2 880.4000000000001 4402 1982-01-20 2024-10-11 01:13:22.000 1982-01-20 2024-10-11 01:13:22 +4403 4403 4404 440.3 880.6 4403 1982-01-21 2024-10-11 01:13:23.000 1982-01-21 2024-10-11 01:13:23 +4404 4404 4405 440.4 880.8000000000001 4404 1982-01-22 2024-10-11 01:13:24.000 1982-01-22 2024-10-11 01:13:24 +4406 4406 4407 440.6 881.2 4406 1982-01-24 2024-10-11 01:13:26.000 1982-01-24 2024-10-11 01:13:26 +4407 4407 4408 440.7 881.4000000000001 4407 1982-01-25 2024-10-11 01:13:27.000 1982-01-25 2024-10-11 01:13:27 +4408 4408 4409 440.8 881.6 4408 1982-01-26 2024-10-11 01:13:28.000 1982-01-26 2024-10-11 01:13:28 +4409 4409 4410 440.9 881.8000000000001 4409 1982-01-27 2024-10-11 01:13:29.000 1982-01-27 2024-10-11 01:13:29 +4411 4411 4412 441.1 882.2 4411 1982-01-29 2024-10-11 01:13:31.000 1982-01-29 2024-10-11 01:13:31 +4412 4412 4413 441.2 882.4000000000001 4412 1982-01-30 2024-10-11 01:13:32.000 1982-01-30 2024-10-11 01:13:32 +4413 4413 4414 441.3 882.6 4413 1982-01-31 2024-10-11 01:13:33.000 1982-01-31 2024-10-11 01:13:33 +4414 4414 4415 441.4 882.8000000000001 4414 1982-02-01 2024-10-11 01:13:34.000 1982-02-01 2024-10-11 01:13:34 +4416 4416 4417 441.6 883.2 4416 1982-02-03 2024-10-11 01:13:36.000 1982-02-03 2024-10-11 01:13:36 +4417 4417 4418 441.7 883.4000000000001 4417 1982-02-04 2024-10-11 01:13:37.000 1982-02-04 2024-10-11 01:13:37 +4418 4418 4419 441.8 883.6 4418 1982-02-05 2024-10-11 01:13:38.000 1982-02-05 2024-10-11 01:13:38 +4419 4419 4420 441.9 883.8000000000001 4419 1982-02-06 2024-10-11 01:13:39.000 1982-02-06 2024-10-11 01:13:39 +4421 4421 4422 442.1 884.2 4421 1982-02-08 2024-10-11 01:13:41.000 1982-02-08 2024-10-11 01:13:41 +4422 4422 4423 442.2 884.4000000000001 4422 1982-02-09 2024-10-11 01:13:42.000 1982-02-09 2024-10-11 01:13:42 +4423 4423 4424 442.3 884.6 4423 1982-02-10 2024-10-11 01:13:43.000 1982-02-10 2024-10-11 01:13:43 +4424 4424 4425 442.4 884.8000000000001 4424 1982-02-11 2024-10-11 01:13:44.000 1982-02-11 2024-10-11 01:13:44 +4426 4426 4427 442.6 885.2 4426 1982-02-13 2024-10-11 01:13:46.000 1982-02-13 2024-10-11 01:13:46 +4427 4427 4428 442.7 885.4000000000001 4427 1982-02-14 2024-10-11 01:13:47.000 1982-02-14 2024-10-11 01:13:47 +4428 4428 4429 442.8 885.6 4428 1982-02-15 2024-10-11 01:13:48.000 1982-02-15 2024-10-11 01:13:48 +4429 4429 4430 442.9 885.8000000000001 4429 1982-02-16 2024-10-11 01:13:49.000 1982-02-16 2024-10-11 01:13:49 +4431 4431 4432 443.1 886.2 4431 1982-02-18 2024-10-11 01:13:51.000 1982-02-18 2024-10-11 01:13:51 +4432 4432 4433 443.2 886.4000000000001 4432 1982-02-19 2024-10-11 01:13:52.000 1982-02-19 2024-10-11 01:13:52 +4433 4433 4434 443.3 886.6 4433 1982-02-20 2024-10-11 01:13:53.000 1982-02-20 2024-10-11 01:13:53 +4434 4434 4435 443.4 886.8000000000001 4434 1982-02-21 2024-10-11 01:13:54.000 1982-02-21 2024-10-11 01:13:54 +4436 4436 4437 443.6 887.2 4436 1982-02-23 2024-10-11 01:13:56.000 1982-02-23 2024-10-11 01:13:56 +4437 4437 4438 443.7 887.4000000000001 4437 1982-02-24 2024-10-11 01:13:57.000 1982-02-24 2024-10-11 01:13:57 +4438 4438 4439 443.8 887.6 4438 1982-02-25 2024-10-11 01:13:58.000 1982-02-25 2024-10-11 01:13:58 +4439 4439 4440 443.9 887.8000000000001 4439 1982-02-26 2024-10-11 01:13:59.000 1982-02-26 2024-10-11 01:13:59 +4441 4441 4442 444.1 888.2 4441 1982-02-28 2024-10-11 01:14:01.000 1982-02-28 2024-10-11 01:14:01 +4442 4442 4443 444.2 888.4000000000001 4442 1982-03-01 2024-10-11 01:14:02.000 1982-03-01 2024-10-11 01:14:02 +4443 4443 4444 444.3 888.6 4443 1982-03-02 2024-10-11 01:14:03.000 1982-03-02 2024-10-11 01:14:03 +4444 4444 4445 444.4 888.8000000000001 4444 1982-03-03 2024-10-11 01:14:04.000 1982-03-03 2024-10-11 01:14:04 +4446 4446 4447 444.6 889.2 4446 1982-03-05 2024-10-11 01:14:06.000 1982-03-05 2024-10-11 01:14:06 +4447 4447 4448 444.7 889.4000000000001 4447 1982-03-06 2024-10-11 01:14:07.000 1982-03-06 2024-10-11 01:14:07 +4448 4448 4449 444.8 889.6 4448 1982-03-07 2024-10-11 01:14:08.000 1982-03-07 2024-10-11 01:14:08 +4449 4449 4450 444.9 889.8000000000001 4449 1982-03-08 2024-10-11 01:14:09.000 1982-03-08 2024-10-11 01:14:09 +4451 4451 4452 445.1 890.2 4451 1982-03-10 2024-10-11 01:14:11.000 1982-03-10 2024-10-11 01:14:11 +4452 4452 4453 445.2 890.4000000000001 4452 1982-03-11 2024-10-11 01:14:12.000 1982-03-11 2024-10-11 01:14:12 +4453 4453 4454 445.3 890.6 4453 1982-03-12 2024-10-11 01:14:13.000 1982-03-12 2024-10-11 01:14:13 +4454 4454 4455 445.4 890.8000000000001 4454 1982-03-13 2024-10-11 01:14:14.000 1982-03-13 2024-10-11 01:14:14 +4456 4456 4457 445.6 891.2 4456 1982-03-15 2024-10-11 01:14:16.000 1982-03-15 2024-10-11 01:14:16 +4457 4457 4458 445.7 891.4000000000001 4457 1982-03-16 2024-10-11 01:14:17.000 1982-03-16 2024-10-11 01:14:17 +4458 4458 4459 445.8 891.6 4458 1982-03-17 2024-10-11 01:14:18.000 1982-03-17 2024-10-11 01:14:18 +4459 4459 4460 445.9 891.8000000000001 4459 1982-03-18 2024-10-11 01:14:19.000 1982-03-18 2024-10-11 01:14:19 +4461 4461 4462 446.1 892.2 4461 1982-03-20 2024-10-11 01:14:21.000 1982-03-20 2024-10-11 01:14:21 +4462 4462 4463 446.2 892.4000000000001 4462 1982-03-21 2024-10-11 01:14:22.000 1982-03-21 2024-10-11 01:14:22 +4463 4463 4464 446.3 892.6 4463 1982-03-22 2024-10-11 01:14:23.000 1982-03-22 2024-10-11 01:14:23 +4464 4464 4465 446.4 892.8000000000001 4464 1982-03-23 2024-10-11 01:14:24.000 1982-03-23 2024-10-11 01:14:24 +4466 4466 4467 446.6 893.2 4466 1982-03-25 2024-10-11 01:14:26.000 1982-03-25 2024-10-11 01:14:26 +4467 4467 4468 446.7 893.4000000000001 4467 1982-03-26 2024-10-11 01:14:27.000 1982-03-26 2024-10-11 01:14:27 +4468 4468 4469 446.8 893.6 4468 1982-03-27 2024-10-11 01:14:28.000 1982-03-27 2024-10-11 01:14:28 +4469 4469 4470 446.9 893.8000000000001 4469 1982-03-28 2024-10-11 01:14:29.000 1982-03-28 2024-10-11 01:14:29 +4471 4471 4472 447.1 894.2 4471 1982-03-30 2024-10-11 01:14:31.000 1982-03-30 2024-10-11 01:14:31 +4472 4472 4473 447.2 894.4000000000001 4472 1982-03-31 2024-10-11 01:14:32.000 1982-03-31 2024-10-11 01:14:32 +4473 4473 4474 447.3 894.6 4473 1982-04-01 2024-10-11 01:14:33.000 1982-04-01 2024-10-11 01:14:33 +4474 4474 4475 447.4 894.8000000000001 4474 1982-04-02 2024-10-11 01:14:34.000 1982-04-02 2024-10-11 01:14:34 +4476 4476 4477 447.6 895.2 4476 1982-04-04 2024-10-11 01:14:36.000 1982-04-04 2024-10-11 01:14:36 +4477 4477 4478 447.7 895.4000000000001 4477 1982-04-05 2024-10-11 01:14:37.000 1982-04-05 2024-10-11 01:14:37 +4478 4478 4479 447.8 895.6 4478 1982-04-06 2024-10-11 01:14:38.000 1982-04-06 2024-10-11 01:14:38 +4479 4479 4480 447.9 895.8000000000001 4479 1982-04-07 2024-10-11 01:14:39.000 1982-04-07 2024-10-11 01:14:39 +4481 4481 4482 448.1 896.2 4481 1982-04-09 2024-10-11 01:14:41.000 1982-04-09 2024-10-11 01:14:41 +4482 4482 4483 448.2 896.4000000000001 4482 1982-04-10 2024-10-11 01:14:42.000 1982-04-10 2024-10-11 01:14:42 +4483 4483 4484 448.3 896.6 4483 1982-04-11 2024-10-11 01:14:43.000 1982-04-11 2024-10-11 01:14:43 +4484 4484 4485 448.4 896.8000000000001 4484 1982-04-12 2024-10-11 01:14:44.000 1982-04-12 2024-10-11 01:14:44 +4486 4486 4487 448.6 897.2 4486 1982-04-14 2024-10-11 01:14:46.000 1982-04-14 2024-10-11 01:14:46 +4487 4487 4488 448.7 897.4000000000001 4487 1982-04-15 2024-10-11 01:14:47.000 1982-04-15 2024-10-11 01:14:47 +4488 4488 4489 448.8 897.6 4488 1982-04-16 2024-10-11 01:14:48.000 1982-04-16 2024-10-11 01:14:48 +4489 4489 4490 448.9 897.8000000000001 4489 1982-04-17 2024-10-11 01:14:49.000 1982-04-17 2024-10-11 01:14:49 +4491 4491 4492 449.1 898.2 4491 1982-04-19 2024-10-11 01:14:51.000 1982-04-19 2024-10-11 01:14:51 +4492 4492 4493 449.2 898.4000000000001 4492 1982-04-20 2024-10-11 01:14:52.000 1982-04-20 2024-10-11 01:14:52 +4493 4493 4494 449.3 898.6 4493 1982-04-21 2024-10-11 01:14:53.000 1982-04-21 2024-10-11 01:14:53 +4494 4494 4495 449.4 898.8000000000001 4494 1982-04-22 2024-10-11 01:14:54.000 1982-04-22 2024-10-11 01:14:54 +4496 4496 4497 449.6 899.2 4496 1982-04-24 2024-10-11 01:14:56.000 1982-04-24 2024-10-11 01:14:56 +4497 4497 4498 449.7 899.4000000000001 4497 1982-04-25 2024-10-11 01:14:57.000 1982-04-25 2024-10-11 01:14:57 +4498 4498 4499 449.8 899.6 4498 1982-04-26 2024-10-11 01:14:58.000 1982-04-26 2024-10-11 01:14:58 +4499 4499 4500 449.9 899.8000000000001 4499 1982-04-27 2024-10-11 01:14:59.000 1982-04-27 2024-10-11 01:14:59 +4501 4501 4502 450.1 900.2 4501 1982-04-29 2024-10-11 01:15:01.000 1982-04-29 2024-10-11 01:15:01 +4502 4502 4503 450.2 900.4000000000001 4502 1982-04-30 2024-10-11 01:15:02.000 1982-04-30 2024-10-11 01:15:02 +4503 4503 4504 450.3 900.6 4503 1982-05-01 2024-10-11 01:15:03.000 1982-05-01 2024-10-11 01:15:03 +4504 4504 4505 450.4 900.8000000000001 4504 1982-05-02 2024-10-11 01:15:04.000 1982-05-02 2024-10-11 01:15:04 +4506 4506 4507 450.6 901.2 4506 1982-05-04 2024-10-11 01:15:06.000 1982-05-04 2024-10-11 01:15:06 +4507 4507 4508 450.7 901.4000000000001 4507 1982-05-05 2024-10-11 01:15:07.000 1982-05-05 2024-10-11 01:15:07 +4508 4508 4509 450.8 901.6 4508 1982-05-06 2024-10-11 01:15:08.000 1982-05-06 2024-10-11 01:15:08 +4509 4509 4510 450.9 901.8000000000001 4509 1982-05-07 2024-10-11 01:15:09.000 1982-05-07 2024-10-11 01:15:09 +4511 4511 4512 451.1 902.2 4511 1982-05-09 2024-10-11 01:15:11.000 1982-05-09 2024-10-11 01:15:11 +4512 4512 4513 451.2 902.4000000000001 4512 1982-05-10 2024-10-11 01:15:12.000 1982-05-10 2024-10-11 01:15:12 +4513 4513 4514 451.3 902.6 4513 1982-05-11 2024-10-11 01:15:13.000 1982-05-11 2024-10-11 01:15:13 +4514 4514 4515 451.4 902.8000000000001 4514 1982-05-12 2024-10-11 01:15:14.000 1982-05-12 2024-10-11 01:15:14 +4516 4516 4517 451.6 903.2 4516 1982-05-14 2024-10-11 01:15:16.000 1982-05-14 2024-10-11 01:15:16 +4517 4517 4518 451.7 903.4000000000001 4517 1982-05-15 2024-10-11 01:15:17.000 1982-05-15 2024-10-11 01:15:17 +4518 4518 4519 451.8 903.6 4518 1982-05-16 2024-10-11 01:15:18.000 1982-05-16 2024-10-11 01:15:18 +4519 4519 4520 451.9 903.8000000000001 4519 1982-05-17 2024-10-11 01:15:19.000 1982-05-17 2024-10-11 01:15:19 +4521 4521 4522 452.1 904.2 4521 1982-05-19 2024-10-11 01:15:21.000 1982-05-19 2024-10-11 01:15:21 +4522 4522 4523 452.2 904.4000000000001 4522 1982-05-20 2024-10-11 01:15:22.000 1982-05-20 2024-10-11 01:15:22 +4523 4523 4524 452.3 904.6 4523 1982-05-21 2024-10-11 01:15:23.000 1982-05-21 2024-10-11 01:15:23 +4524 4524 4525 452.4 904.8000000000001 4524 1982-05-22 2024-10-11 01:15:24.000 1982-05-22 2024-10-11 01:15:24 +4526 4526 4527 452.6 905.2 4526 1982-05-24 2024-10-11 01:15:26.000 1982-05-24 2024-10-11 01:15:26 +4527 4527 4528 452.7 905.4000000000001 4527 1982-05-25 2024-10-11 01:15:27.000 1982-05-25 2024-10-11 01:15:27 +4528 4528 4529 452.8 905.6 4528 1982-05-26 2024-10-11 01:15:28.000 1982-05-26 2024-10-11 01:15:28 +4529 4529 4530 452.9 905.8000000000001 4529 1982-05-27 2024-10-11 01:15:29.000 1982-05-27 2024-10-11 01:15:29 +4531 4531 4532 453.1 906.2 4531 1982-05-29 2024-10-11 01:15:31.000 1982-05-29 2024-10-11 01:15:31 +4532 4532 4533 453.2 906.4000000000001 4532 1982-05-30 2024-10-11 01:15:32.000 1982-05-30 2024-10-11 01:15:32 +4533 4533 4534 453.3 906.6 4533 1982-05-31 2024-10-11 01:15:33.000 1982-05-31 2024-10-11 01:15:33 +4534 4534 4535 453.4 906.8000000000001 4534 1982-06-01 2024-10-11 01:15:34.000 1982-06-01 2024-10-11 01:15:34 +4536 4536 4537 453.6 907.2 4536 1982-06-03 2024-10-11 01:15:36.000 1982-06-03 2024-10-11 01:15:36 +4537 4537 4538 453.7 907.4000000000001 4537 1982-06-04 2024-10-11 01:15:37.000 1982-06-04 2024-10-11 01:15:37 +4538 4538 4539 453.8 907.6 4538 1982-06-05 2024-10-11 01:15:38.000 1982-06-05 2024-10-11 01:15:38 +4539 4539 4540 453.9 907.8000000000001 4539 1982-06-06 2024-10-11 01:15:39.000 1982-06-06 2024-10-11 01:15:39 +4541 4541 4542 454.1 908.2 4541 1982-06-08 2024-10-11 01:15:41.000 1982-06-08 2024-10-11 01:15:41 +4542 4542 4543 454.2 908.4000000000001 4542 1982-06-09 2024-10-11 01:15:42.000 1982-06-09 2024-10-11 01:15:42 +4543 4543 4544 454.3 908.6 4543 1982-06-10 2024-10-11 01:15:43.000 1982-06-10 2024-10-11 01:15:43 +4544 4544 4545 454.4 908.8000000000001 4544 1982-06-11 2024-10-11 01:15:44.000 1982-06-11 2024-10-11 01:15:44 +4546 4546 4547 454.6 909.2 4546 1982-06-13 2024-10-11 01:15:46.000 1982-06-13 2024-10-11 01:15:46 +4547 4547 4548 454.7 909.4000000000001 4547 1982-06-14 2024-10-11 01:15:47.000 1982-06-14 2024-10-11 01:15:47 +4548 4548 4549 454.8 909.6 4548 1982-06-15 2024-10-11 01:15:48.000 1982-06-15 2024-10-11 01:15:48 +4549 4549 4550 454.9 909.8000000000001 4549 1982-06-16 2024-10-11 01:15:49.000 1982-06-16 2024-10-11 01:15:49 +4551 4551 4552 455.1 910.2 4551 1982-06-18 2024-10-11 01:15:51.000 1982-06-18 2024-10-11 01:15:51 +4552 4552 4553 455.2 910.4000000000001 4552 1982-06-19 2024-10-11 01:15:52.000 1982-06-19 2024-10-11 01:15:52 +4553 4553 4554 455.3 910.6 4553 1982-06-20 2024-10-11 01:15:53.000 1982-06-20 2024-10-11 01:15:53 +4554 4554 4555 455.4 910.8000000000001 4554 1982-06-21 2024-10-11 01:15:54.000 1982-06-21 2024-10-11 01:15:54 +4556 4556 4557 455.6 911.2 4556 1982-06-23 2024-10-11 01:15:56.000 1982-06-23 2024-10-11 01:15:56 +4557 4557 4558 455.7 911.4000000000001 4557 1982-06-24 2024-10-11 01:15:57.000 1982-06-24 2024-10-11 01:15:57 +4558 4558 4559 455.8 911.6 4558 1982-06-25 2024-10-11 01:15:58.000 1982-06-25 2024-10-11 01:15:58 +4559 4559 4560 455.9 911.8000000000001 4559 1982-06-26 2024-10-11 01:15:59.000 1982-06-26 2024-10-11 01:15:59 +4561 4561 4562 456.1 912.2 4561 1982-06-28 2024-10-11 01:16:01.000 1982-06-28 2024-10-11 01:16:01 +4562 4562 4563 456.2 912.4000000000001 4562 1982-06-29 2024-10-11 01:16:02.000 1982-06-29 2024-10-11 01:16:02 +4563 4563 4564 456.3 912.6 4563 1982-06-30 2024-10-11 01:16:03.000 1982-06-30 2024-10-11 01:16:03 +4564 4564 4565 456.4 912.8000000000001 4564 1982-07-01 2024-10-11 01:16:04.000 1982-07-01 2024-10-11 01:16:04 +4566 4566 4567 456.6 913.2 4566 1982-07-03 2024-10-11 01:16:06.000 1982-07-03 2024-10-11 01:16:06 +4567 4567 4568 456.7 913.4000000000001 4567 1982-07-04 2024-10-11 01:16:07.000 1982-07-04 2024-10-11 01:16:07 +4568 4568 4569 456.8 913.6 4568 1982-07-05 2024-10-11 01:16:08.000 1982-07-05 2024-10-11 01:16:08 +4569 4569 4570 456.9 913.8000000000001 4569 1982-07-06 2024-10-11 01:16:09.000 1982-07-06 2024-10-11 01:16:09 +4571 4571 4572 457.1 914.2 4571 1982-07-08 2024-10-11 01:16:11.000 1982-07-08 2024-10-11 01:16:11 +4572 4572 4573 457.2 914.4000000000001 4572 1982-07-09 2024-10-11 01:16:12.000 1982-07-09 2024-10-11 01:16:12 +4573 4573 4574 457.3 914.6 4573 1982-07-10 2024-10-11 01:16:13.000 1982-07-10 2024-10-11 01:16:13 +4574 4574 4575 457.4 914.8000000000001 4574 1982-07-11 2024-10-11 01:16:14.000 1982-07-11 2024-10-11 01:16:14 +4576 4576 4577 457.6 915.2 4576 1982-07-13 2024-10-11 01:16:16.000 1982-07-13 2024-10-11 01:16:16 +4577 4577 4578 457.7 915.4000000000001 4577 1982-07-14 2024-10-11 01:16:17.000 1982-07-14 2024-10-11 01:16:17 +4578 4578 4579 457.8 915.6 4578 1982-07-15 2024-10-11 01:16:18.000 1982-07-15 2024-10-11 01:16:18 +4579 4579 4580 457.9 915.8000000000001 4579 1982-07-16 2024-10-11 01:16:19.000 1982-07-16 2024-10-11 01:16:19 +4581 4581 4582 458.1 916.2 4581 1982-07-18 2024-10-11 01:16:21.000 1982-07-18 2024-10-11 01:16:21 +4582 4582 4583 458.2 916.4000000000001 4582 1982-07-19 2024-10-11 01:16:22.000 1982-07-19 2024-10-11 01:16:22 +4583 4583 4584 458.3 916.6 4583 1982-07-20 2024-10-11 01:16:23.000 1982-07-20 2024-10-11 01:16:23 +4584 4584 4585 458.4 916.8000000000001 4584 1982-07-21 2024-10-11 01:16:24.000 1982-07-21 2024-10-11 01:16:24 +4586 4586 4587 458.6 917.2 4586 1982-07-23 2024-10-11 01:16:26.000 1982-07-23 2024-10-11 01:16:26 +4587 4587 4588 458.7 917.4000000000001 4587 1982-07-24 2024-10-11 01:16:27.000 1982-07-24 2024-10-11 01:16:27 +4588 4588 4589 458.8 917.6 4588 1982-07-25 2024-10-11 01:16:28.000 1982-07-25 2024-10-11 01:16:28 +4589 4589 4590 458.9 917.8000000000001 4589 1982-07-26 2024-10-11 01:16:29.000 1982-07-26 2024-10-11 01:16:29 +4591 4591 4592 459.1 918.2 4591 1982-07-28 2024-10-11 01:16:31.000 1982-07-28 2024-10-11 01:16:31 +4592 4592 4593 459.2 918.4000000000001 4592 1982-07-29 2024-10-11 01:16:32.000 1982-07-29 2024-10-11 01:16:32 +4593 4593 4594 459.3 918.6 4593 1982-07-30 2024-10-11 01:16:33.000 1982-07-30 2024-10-11 01:16:33 +4594 4594 4595 459.4 918.8000000000001 4594 1982-07-31 2024-10-11 01:16:34.000 1982-07-31 2024-10-11 01:16:34 +4596 4596 4597 459.6 919.2 4596 1982-08-02 2024-10-11 01:16:36.000 1982-08-02 2024-10-11 01:16:36 +4597 4597 4598 459.7 919.4000000000001 4597 1982-08-03 2024-10-11 01:16:37.000 1982-08-03 2024-10-11 01:16:37 +4598 4598 4599 459.8 919.6 4598 1982-08-04 2024-10-11 01:16:38.000 1982-08-04 2024-10-11 01:16:38 +4599 4599 4600 459.9 919.8000000000001 4599 1982-08-05 2024-10-11 01:16:39.000 1982-08-05 2024-10-11 01:16:39 +4601 4601 4602 460.1 920.2 4601 1982-08-07 2024-10-11 01:16:41.000 1982-08-07 2024-10-11 01:16:41 +4602 4602 4603 460.2 920.4000000000001 4602 1982-08-08 2024-10-11 01:16:42.000 1982-08-08 2024-10-11 01:16:42 +4603 4603 4604 460.3 920.6 4603 1982-08-09 2024-10-11 01:16:43.000 1982-08-09 2024-10-11 01:16:43 +4604 4604 4605 460.4 920.8000000000001 4604 1982-08-10 2024-10-11 01:16:44.000 1982-08-10 2024-10-11 01:16:44 +4606 4606 4607 460.6 921.2 4606 1982-08-12 2024-10-11 01:16:46.000 1982-08-12 2024-10-11 01:16:46 +4607 4607 4608 460.7 921.4000000000001 4607 1982-08-13 2024-10-11 01:16:47.000 1982-08-13 2024-10-11 01:16:47 +4608 4608 4609 460.8 921.6 4608 1982-08-14 2024-10-11 01:16:48.000 1982-08-14 2024-10-11 01:16:48 +4609 4609 4610 460.9 921.8000000000001 4609 1982-08-15 2024-10-11 01:16:49.000 1982-08-15 2024-10-11 01:16:49 +4611 4611 4612 461.1 922.2 4611 1982-08-17 2024-10-11 01:16:51.000 1982-08-17 2024-10-11 01:16:51 +4612 4612 4613 461.2 922.4000000000001 4612 1982-08-18 2024-10-11 01:16:52.000 1982-08-18 2024-10-11 01:16:52 +4613 4613 4614 461.3 922.6 4613 1982-08-19 2024-10-11 01:16:53.000 1982-08-19 2024-10-11 01:16:53 +4614 4614 4615 461.4 922.8000000000001 4614 1982-08-20 2024-10-11 01:16:54.000 1982-08-20 2024-10-11 01:16:54 +4616 4616 4617 461.6 923.2 4616 1982-08-22 2024-10-11 01:16:56.000 1982-08-22 2024-10-11 01:16:56 +4617 4617 4618 461.7 923.4000000000001 4617 1982-08-23 2024-10-11 01:16:57.000 1982-08-23 2024-10-11 01:16:57 +4618 4618 4619 461.8 923.6 4618 1982-08-24 2024-10-11 01:16:58.000 1982-08-24 2024-10-11 01:16:58 +4619 4619 4620 461.9 923.8000000000001 4619 1982-08-25 2024-10-11 01:16:59.000 1982-08-25 2024-10-11 01:16:59 +4621 4621 4622 462.1 924.2 4621 1982-08-27 2024-10-11 01:17:01.000 1982-08-27 2024-10-11 01:17:01 +4622 4622 4623 462.2 924.4000000000001 4622 1982-08-28 2024-10-11 01:17:02.000 1982-08-28 2024-10-11 01:17:02 +4623 4623 4624 462.3 924.6 4623 1982-08-29 2024-10-11 01:17:03.000 1982-08-29 2024-10-11 01:17:03 +4624 4624 4625 462.4 924.8000000000001 4624 1982-08-30 2024-10-11 01:17:04.000 1982-08-30 2024-10-11 01:17:04 +4626 4626 4627 462.6 925.2 4626 1982-09-01 2024-10-11 01:17:06.000 1982-09-01 2024-10-11 01:17:06 +4627 4627 4628 462.7 925.4000000000001 4627 1982-09-02 2024-10-11 01:17:07.000 1982-09-02 2024-10-11 01:17:07 +4628 4628 4629 462.8 925.6 4628 1982-09-03 2024-10-11 01:17:08.000 1982-09-03 2024-10-11 01:17:08 +4629 4629 4630 462.9 925.8000000000001 4629 1982-09-04 2024-10-11 01:17:09.000 1982-09-04 2024-10-11 01:17:09 +4631 4631 4632 463.1 926.2 4631 1982-09-06 2024-10-11 01:17:11.000 1982-09-06 2024-10-11 01:17:11 +4632 4632 4633 463.2 926.4000000000001 4632 1982-09-07 2024-10-11 01:17:12.000 1982-09-07 2024-10-11 01:17:12 +4633 4633 4634 463.3 926.6 4633 1982-09-08 2024-10-11 01:17:13.000 1982-09-08 2024-10-11 01:17:13 +4634 4634 4635 463.4 926.8000000000001 4634 1982-09-09 2024-10-11 01:17:14.000 1982-09-09 2024-10-11 01:17:14 +4636 4636 4637 463.6 927.2 4636 1982-09-11 2024-10-11 01:17:16.000 1982-09-11 2024-10-11 01:17:16 +4637 4637 4638 463.7 927.4000000000001 4637 1982-09-12 2024-10-11 01:17:17.000 1982-09-12 2024-10-11 01:17:17 +4638 4638 4639 463.8 927.6 4638 1982-09-13 2024-10-11 01:17:18.000 1982-09-13 2024-10-11 01:17:18 +4639 4639 4640 463.9 927.8000000000001 4639 1982-09-14 2024-10-11 01:17:19.000 1982-09-14 2024-10-11 01:17:19 +4641 4641 4642 464.1 928.2 4641 1982-09-16 2024-10-11 01:17:21.000 1982-09-16 2024-10-11 01:17:21 +4642 4642 4643 464.2 928.4000000000001 4642 1982-09-17 2024-10-11 01:17:22.000 1982-09-17 2024-10-11 01:17:22 +4643 4643 4644 464.3 928.6 4643 1982-09-18 2024-10-11 01:17:23.000 1982-09-18 2024-10-11 01:17:23 +4644 4644 4645 464.4 928.8000000000001 4644 1982-09-19 2024-10-11 01:17:24.000 1982-09-19 2024-10-11 01:17:24 +4646 4646 4647 464.6 929.2 4646 1982-09-21 2024-10-11 01:17:26.000 1982-09-21 2024-10-11 01:17:26 +4647 4647 4648 464.7 929.4000000000001 4647 1982-09-22 2024-10-11 01:17:27.000 1982-09-22 2024-10-11 01:17:27 +4648 4648 4649 464.8 929.6 4648 1982-09-23 2024-10-11 01:17:28.000 1982-09-23 2024-10-11 01:17:28 +4649 4649 4650 464.9 929.8000000000001 4649 1982-09-24 2024-10-11 01:17:29.000 1982-09-24 2024-10-11 01:17:29 +4651 4651 4652 465.1 930.2 4651 1982-09-26 2024-10-11 01:17:31.000 1982-09-26 2024-10-11 01:17:31 +4652 4652 4653 465.2 930.4000000000001 4652 1982-09-27 2024-10-11 01:17:32.000 1982-09-27 2024-10-11 01:17:32 +4653 4653 4654 465.3 930.6 4653 1982-09-28 2024-10-11 01:17:33.000 1982-09-28 2024-10-11 01:17:33 +4654 4654 4655 465.4 930.8000000000001 4654 1982-09-29 2024-10-11 01:17:34.000 1982-09-29 2024-10-11 01:17:34 +4656 4656 4657 465.6 931.2 4656 1982-10-01 2024-10-11 01:17:36.000 1982-10-01 2024-10-11 01:17:36 +4657 4657 4658 465.7 931.4000000000001 4657 1982-10-02 2024-10-11 01:17:37.000 1982-10-02 2024-10-11 01:17:37 +4658 4658 4659 465.8 931.6 4658 1982-10-03 2024-10-11 01:17:38.000 1982-10-03 2024-10-11 01:17:38 +4659 4659 4660 465.9 931.8000000000001 4659 1982-10-04 2024-10-11 01:17:39.000 1982-10-04 2024-10-11 01:17:39 +4661 4661 4662 466.1 932.2 4661 1982-10-06 2024-10-11 01:17:41.000 1982-10-06 2024-10-11 01:17:41 +4662 4662 4663 466.2 932.4000000000001 4662 1982-10-07 2024-10-11 01:17:42.000 1982-10-07 2024-10-11 01:17:42 +4663 4663 4664 466.3 932.6 4663 1982-10-08 2024-10-11 01:17:43.000 1982-10-08 2024-10-11 01:17:43 +4664 4664 4665 466.4 932.8000000000001 4664 1982-10-09 2024-10-11 01:17:44.000 1982-10-09 2024-10-11 01:17:44 +4666 4666 4667 466.6 933.2 4666 1982-10-11 2024-10-11 01:17:46.000 1982-10-11 2024-10-11 01:17:46 +4667 4667 4668 466.7 933.4000000000001 4667 1982-10-12 2024-10-11 01:17:47.000 1982-10-12 2024-10-11 01:17:47 +4668 4668 4669 466.8 933.6 4668 1982-10-13 2024-10-11 01:17:48.000 1982-10-13 2024-10-11 01:17:48 +4669 4669 4670 466.9 933.8000000000001 4669 1982-10-14 2024-10-11 01:17:49.000 1982-10-14 2024-10-11 01:17:49 +4671 4671 4672 467.1 934.2 4671 1982-10-16 2024-10-11 01:17:51.000 1982-10-16 2024-10-11 01:17:51 +4672 4672 4673 467.2 934.4000000000001 4672 1982-10-17 2024-10-11 01:17:52.000 1982-10-17 2024-10-11 01:17:52 +4673 4673 4674 467.3 934.6 4673 1982-10-18 2024-10-11 01:17:53.000 1982-10-18 2024-10-11 01:17:53 +4674 4674 4675 467.4 934.8000000000001 4674 1982-10-19 2024-10-11 01:17:54.000 1982-10-19 2024-10-11 01:17:54 +4676 4676 4677 467.6 935.2 4676 1982-10-21 2024-10-11 01:17:56.000 1982-10-21 2024-10-11 01:17:56 +4677 4677 4678 467.7 935.4000000000001 4677 1982-10-22 2024-10-11 01:17:57.000 1982-10-22 2024-10-11 01:17:57 +4678 4678 4679 467.8 935.6 4678 1982-10-23 2024-10-11 01:17:58.000 1982-10-23 2024-10-11 01:17:58 +4679 4679 4680 467.9 935.8000000000001 4679 1982-10-24 2024-10-11 01:17:59.000 1982-10-24 2024-10-11 01:17:59 +4681 4681 4682 468.1 936.2 4681 1982-10-26 2024-10-11 01:18:01.000 1982-10-26 2024-10-11 01:18:01 +4682 4682 4683 468.2 936.4000000000001 4682 1982-10-27 2024-10-11 01:18:02.000 1982-10-27 2024-10-11 01:18:02 +4683 4683 4684 468.3 936.6 4683 1982-10-28 2024-10-11 01:18:03.000 1982-10-28 2024-10-11 01:18:03 +4684 4684 4685 468.4 936.8000000000001 4684 1982-10-29 2024-10-11 01:18:04.000 1982-10-29 2024-10-11 01:18:04 +4686 4686 4687 468.6 937.2 4686 1982-10-31 2024-10-11 01:18:06.000 1982-10-31 2024-10-11 01:18:06 +4687 4687 4688 468.7 937.4000000000001 4687 1982-11-01 2024-10-11 01:18:07.000 1982-11-01 2024-10-11 01:18:07 +4688 4688 4689 468.8 937.6 4688 1982-11-02 2024-10-11 01:18:08.000 1982-11-02 2024-10-11 01:18:08 +4689 4689 4690 468.9 937.8000000000001 4689 1982-11-03 2024-10-11 01:18:09.000 1982-11-03 2024-10-11 01:18:09 +4691 4691 4692 469.1 938.2 4691 1982-11-05 2024-10-11 01:18:11.000 1982-11-05 2024-10-11 01:18:11 +4692 4692 4693 469.2 938.4000000000001 4692 1982-11-06 2024-10-11 01:18:12.000 1982-11-06 2024-10-11 01:18:12 +4693 4693 4694 469.3 938.6 4693 1982-11-07 2024-10-11 01:18:13.000 1982-11-07 2024-10-11 01:18:13 +4694 4694 4695 469.4 938.8000000000001 4694 1982-11-08 2024-10-11 01:18:14.000 1982-11-08 2024-10-11 01:18:14 +4696 4696 4697 469.6 939.2 4696 1982-11-10 2024-10-11 01:18:16.000 1982-11-10 2024-10-11 01:18:16 +4697 4697 4698 469.7 939.4000000000001 4697 1982-11-11 2024-10-11 01:18:17.000 1982-11-11 2024-10-11 01:18:17 +4698 4698 4699 469.8 939.6 4698 1982-11-12 2024-10-11 01:18:18.000 1982-11-12 2024-10-11 01:18:18 +4699 4699 4700 469.9 939.8000000000001 4699 1982-11-13 2024-10-11 01:18:19.000 1982-11-13 2024-10-11 01:18:19 +4701 4701 4702 470.1 940.2 4701 1982-11-15 2024-10-11 01:18:21.000 1982-11-15 2024-10-11 01:18:21 +4702 4702 4703 470.2 940.4000000000001 4702 1982-11-16 2024-10-11 01:18:22.000 1982-11-16 2024-10-11 01:18:22 +4703 4703 4704 470.3 940.6 4703 1982-11-17 2024-10-11 01:18:23.000 1982-11-17 2024-10-11 01:18:23 +4704 4704 4705 470.4 940.8000000000001 4704 1982-11-18 2024-10-11 01:18:24.000 1982-11-18 2024-10-11 01:18:24 +4706 4706 4707 470.6 941.2 4706 1982-11-20 2024-10-11 01:18:26.000 1982-11-20 2024-10-11 01:18:26 +4707 4707 4708 470.7 941.4000000000001 4707 1982-11-21 2024-10-11 01:18:27.000 1982-11-21 2024-10-11 01:18:27 +4708 4708 4709 470.8 941.6 4708 1982-11-22 2024-10-11 01:18:28.000 1982-11-22 2024-10-11 01:18:28 +4709 4709 4710 470.9 941.8000000000001 4709 1982-11-23 2024-10-11 01:18:29.000 1982-11-23 2024-10-11 01:18:29 +4711 4711 4712 471.1 942.2 4711 1982-11-25 2024-10-11 01:18:31.000 1982-11-25 2024-10-11 01:18:31 +4712 4712 4713 471.2 942.4000000000001 4712 1982-11-26 2024-10-11 01:18:32.000 1982-11-26 2024-10-11 01:18:32 +4713 4713 4714 471.3 942.6 4713 1982-11-27 2024-10-11 01:18:33.000 1982-11-27 2024-10-11 01:18:33 +4714 4714 4715 471.4 942.8000000000001 4714 1982-11-28 2024-10-11 01:18:34.000 1982-11-28 2024-10-11 01:18:34 +4716 4716 4717 471.6 943.2 4716 1982-11-30 2024-10-11 01:18:36.000 1982-11-30 2024-10-11 01:18:36 +4717 4717 4718 471.7 943.4000000000001 4717 1982-12-01 2024-10-11 01:18:37.000 1982-12-01 2024-10-11 01:18:37 +4718 4718 4719 471.8 943.6 4718 1982-12-02 2024-10-11 01:18:38.000 1982-12-02 2024-10-11 01:18:38 +4719 4719 4720 471.9 943.8000000000001 4719 1982-12-03 2024-10-11 01:18:39.000 1982-12-03 2024-10-11 01:18:39 +4721 4721 4722 472.1 944.2 4721 1982-12-05 2024-10-11 01:18:41.000 1982-12-05 2024-10-11 01:18:41 +4722 4722 4723 472.2 944.4000000000001 4722 1982-12-06 2024-10-11 01:18:42.000 1982-12-06 2024-10-11 01:18:42 +4723 4723 4724 472.3 944.6 4723 1982-12-07 2024-10-11 01:18:43.000 1982-12-07 2024-10-11 01:18:43 +4724 4724 4725 472.4 944.8000000000001 4724 1982-12-08 2024-10-11 01:18:44.000 1982-12-08 2024-10-11 01:18:44 +4726 4726 4727 472.6 945.2 4726 1982-12-10 2024-10-11 01:18:46.000 1982-12-10 2024-10-11 01:18:46 +4727 4727 4728 472.7 945.4000000000001 4727 1982-12-11 2024-10-11 01:18:47.000 1982-12-11 2024-10-11 01:18:47 +4728 4728 4729 472.8 945.6 4728 1982-12-12 2024-10-11 01:18:48.000 1982-12-12 2024-10-11 01:18:48 +4729 4729 4730 472.9 945.8000000000001 4729 1982-12-13 2024-10-11 01:18:49.000 1982-12-13 2024-10-11 01:18:49 +4731 4731 4732 473.1 946.2 4731 1982-12-15 2024-10-11 01:18:51.000 1982-12-15 2024-10-11 01:18:51 +4732 4732 4733 473.2 946.4000000000001 4732 1982-12-16 2024-10-11 01:18:52.000 1982-12-16 2024-10-11 01:18:52 +4733 4733 4734 473.3 946.6 4733 1982-12-17 2024-10-11 01:18:53.000 1982-12-17 2024-10-11 01:18:53 +4734 4734 4735 473.4 946.8000000000001 4734 1982-12-18 2024-10-11 01:18:54.000 1982-12-18 2024-10-11 01:18:54 +4736 4736 4737 473.6 947.2 4736 1982-12-20 2024-10-11 01:18:56.000 1982-12-20 2024-10-11 01:18:56 +4737 4737 4738 473.7 947.4000000000001 4737 1982-12-21 2024-10-11 01:18:57.000 1982-12-21 2024-10-11 01:18:57 +4738 4738 4739 473.8 947.6 4738 1982-12-22 2024-10-11 01:18:58.000 1982-12-22 2024-10-11 01:18:58 +4739 4739 4740 473.9 947.8000000000001 4739 1982-12-23 2024-10-11 01:18:59.000 1982-12-23 2024-10-11 01:18:59 +4741 4741 4742 474.1 948.2 4741 1982-12-25 2024-10-11 01:19:01.000 1982-12-25 2024-10-11 01:19:01 +4742 4742 4743 474.2 948.4000000000001 4742 1982-12-26 2024-10-11 01:19:02.000 1982-12-26 2024-10-11 01:19:02 +4743 4743 4744 474.3 948.6 4743 1982-12-27 2024-10-11 01:19:03.000 1982-12-27 2024-10-11 01:19:03 +4744 4744 4745 474.4 948.8000000000001 4744 1982-12-28 2024-10-11 01:19:04.000 1982-12-28 2024-10-11 01:19:04 +4746 4746 4747 474.6 949.2 4746 1982-12-30 2024-10-11 01:19:06.000 1982-12-30 2024-10-11 01:19:06 +4747 4747 4748 474.7 949.4000000000001 4747 1982-12-31 2024-10-11 01:19:07.000 1982-12-31 2024-10-11 01:19:07 +4748 4748 4749 474.8 949.6 4748 1983-01-01 2024-10-11 01:19:08.000 1983-01-01 2024-10-11 01:19:08 +4749 4749 4750 474.9 949.8000000000001 4749 1983-01-02 2024-10-11 01:19:09.000 1983-01-02 2024-10-11 01:19:09 +4751 4751 4752 475.1 950.2 4751 1983-01-04 2024-10-11 01:19:11.000 1983-01-04 2024-10-11 01:19:11 +4752 4752 4753 475.2 950.4000000000001 4752 1983-01-05 2024-10-11 01:19:12.000 1983-01-05 2024-10-11 01:19:12 +4753 4753 4754 475.3 950.6 4753 1983-01-06 2024-10-11 01:19:13.000 1983-01-06 2024-10-11 01:19:13 +4754 4754 4755 475.4 950.8000000000001 4754 1983-01-07 2024-10-11 01:19:14.000 1983-01-07 2024-10-11 01:19:14 +4756 4756 4757 475.6 951.2 4756 1983-01-09 2024-10-11 01:19:16.000 1983-01-09 2024-10-11 01:19:16 +4757 4757 4758 475.7 951.4000000000001 4757 1983-01-10 2024-10-11 01:19:17.000 1983-01-10 2024-10-11 01:19:17 +4758 4758 4759 475.8 951.6 4758 1983-01-11 2024-10-11 01:19:18.000 1983-01-11 2024-10-11 01:19:18 +4759 4759 4760 475.9 951.8000000000001 4759 1983-01-12 2024-10-11 01:19:19.000 1983-01-12 2024-10-11 01:19:19 +4761 4761 4762 476.1 952.2 4761 1983-01-14 2024-10-11 01:19:21.000 1983-01-14 2024-10-11 01:19:21 +4762 4762 4763 476.2 952.4000000000001 4762 1983-01-15 2024-10-11 01:19:22.000 1983-01-15 2024-10-11 01:19:22 +4763 4763 4764 476.3 952.6 4763 1983-01-16 2024-10-11 01:19:23.000 1983-01-16 2024-10-11 01:19:23 +4764 4764 4765 476.4 952.8000000000001 4764 1983-01-17 2024-10-11 01:19:24.000 1983-01-17 2024-10-11 01:19:24 +4766 4766 4767 476.6 953.2 4766 1983-01-19 2024-10-11 01:19:26.000 1983-01-19 2024-10-11 01:19:26 +4767 4767 4768 476.7 953.4000000000001 4767 1983-01-20 2024-10-11 01:19:27.000 1983-01-20 2024-10-11 01:19:27 +4768 4768 4769 476.8 953.6 4768 1983-01-21 2024-10-11 01:19:28.000 1983-01-21 2024-10-11 01:19:28 +4769 4769 4770 476.9 953.8000000000001 4769 1983-01-22 2024-10-11 01:19:29.000 1983-01-22 2024-10-11 01:19:29 +4771 4771 4772 477.1 954.2 4771 1983-01-24 2024-10-11 01:19:31.000 1983-01-24 2024-10-11 01:19:31 +4772 4772 4773 477.2 954.4000000000001 4772 1983-01-25 2024-10-11 01:19:32.000 1983-01-25 2024-10-11 01:19:32 +4773 4773 4774 477.3 954.6 4773 1983-01-26 2024-10-11 01:19:33.000 1983-01-26 2024-10-11 01:19:33 +4774 4774 4775 477.4 954.8000000000001 4774 1983-01-27 2024-10-11 01:19:34.000 1983-01-27 2024-10-11 01:19:34 +4776 4776 4777 477.6 955.2 4776 1983-01-29 2024-10-11 01:19:36.000 1983-01-29 2024-10-11 01:19:36 +4777 4777 4778 477.7 955.4000000000001 4777 1983-01-30 2024-10-11 01:19:37.000 1983-01-30 2024-10-11 01:19:37 +4778 4778 4779 477.8 955.6 4778 1983-01-31 2024-10-11 01:19:38.000 1983-01-31 2024-10-11 01:19:38 +4779 4779 4780 477.9 955.8000000000001 4779 1983-02-01 2024-10-11 01:19:39.000 1983-02-01 2024-10-11 01:19:39 +4781 4781 4782 478.1 956.2 4781 1983-02-03 2024-10-11 01:19:41.000 1983-02-03 2024-10-11 01:19:41 +4782 4782 4783 478.2 956.4000000000001 4782 1983-02-04 2024-10-11 01:19:42.000 1983-02-04 2024-10-11 01:19:42 +4783 4783 4784 478.3 956.6 4783 1983-02-05 2024-10-11 01:19:43.000 1983-02-05 2024-10-11 01:19:43 +4784 4784 4785 478.4 956.8000000000001 4784 1983-02-06 2024-10-11 01:19:44.000 1983-02-06 2024-10-11 01:19:44 +4786 4786 4787 478.6 957.2 4786 1983-02-08 2024-10-11 01:19:46.000 1983-02-08 2024-10-11 01:19:46 +4787 4787 4788 478.7 957.4000000000001 4787 1983-02-09 2024-10-11 01:19:47.000 1983-02-09 2024-10-11 01:19:47 +4788 4788 4789 478.8 957.6 4788 1983-02-10 2024-10-11 01:19:48.000 1983-02-10 2024-10-11 01:19:48 +4789 4789 4790 478.9 957.8000000000001 4789 1983-02-11 2024-10-11 01:19:49.000 1983-02-11 2024-10-11 01:19:49 +4791 4791 4792 479.1 958.2 4791 1983-02-13 2024-10-11 01:19:51.000 1983-02-13 2024-10-11 01:19:51 +4792 4792 4793 479.2 958.4000000000001 4792 1983-02-14 2024-10-11 01:19:52.000 1983-02-14 2024-10-11 01:19:52 +4793 4793 4794 479.3 958.6 4793 1983-02-15 2024-10-11 01:19:53.000 1983-02-15 2024-10-11 01:19:53 +4794 4794 4795 479.4 958.8000000000001 4794 1983-02-16 2024-10-11 01:19:54.000 1983-02-16 2024-10-11 01:19:54 +4796 4796 4797 479.6 959.2 4796 1983-02-18 2024-10-11 01:19:56.000 1983-02-18 2024-10-11 01:19:56 +4797 4797 4798 479.7 959.4000000000001 4797 1983-02-19 2024-10-11 01:19:57.000 1983-02-19 2024-10-11 01:19:57 +4798 4798 4799 479.8 959.6 4798 1983-02-20 2024-10-11 01:19:58.000 1983-02-20 2024-10-11 01:19:58 +4799 4799 4800 479.9 959.8000000000001 4799 1983-02-21 2024-10-11 01:19:59.000 1983-02-21 2024-10-11 01:19:59 +4801 4801 4802 480.1 960.2 4801 1983-02-23 2024-10-11 01:20:01.000 1983-02-23 2024-10-11 01:20:01 +4802 4802 4803 480.2 960.4000000000001 4802 1983-02-24 2024-10-11 01:20:02.000 1983-02-24 2024-10-11 01:20:02 +4803 4803 4804 480.3 960.6 4803 1983-02-25 2024-10-11 01:20:03.000 1983-02-25 2024-10-11 01:20:03 +4804 4804 4805 480.4 960.8000000000001 4804 1983-02-26 2024-10-11 01:20:04.000 1983-02-26 2024-10-11 01:20:04 +4806 4806 4807 480.6 961.2 4806 1983-02-28 2024-10-11 01:20:06.000 1983-02-28 2024-10-11 01:20:06 +4807 4807 4808 480.7 961.4000000000001 4807 1983-03-01 2024-10-11 01:20:07.000 1983-03-01 2024-10-11 01:20:07 +4808 4808 4809 480.8 961.6 4808 1983-03-02 2024-10-11 01:20:08.000 1983-03-02 2024-10-11 01:20:08 +4809 4809 4810 480.9 961.8000000000001 4809 1983-03-03 2024-10-11 01:20:09.000 1983-03-03 2024-10-11 01:20:09 +4811 4811 4812 481.1 962.2 4811 1983-03-05 2024-10-11 01:20:11.000 1983-03-05 2024-10-11 01:20:11 +4812 4812 4813 481.2 962.4000000000001 4812 1983-03-06 2024-10-11 01:20:12.000 1983-03-06 2024-10-11 01:20:12 +4813 4813 4814 481.3 962.6 4813 1983-03-07 2024-10-11 01:20:13.000 1983-03-07 2024-10-11 01:20:13 +4814 4814 4815 481.4 962.8000000000001 4814 1983-03-08 2024-10-11 01:20:14.000 1983-03-08 2024-10-11 01:20:14 +4816 4816 4817 481.6 963.2 4816 1983-03-10 2024-10-11 01:20:16.000 1983-03-10 2024-10-11 01:20:16 +4817 4817 4818 481.7 963.4000000000001 4817 1983-03-11 2024-10-11 01:20:17.000 1983-03-11 2024-10-11 01:20:17 +4818 4818 4819 481.8 963.6 4818 1983-03-12 2024-10-11 01:20:18.000 1983-03-12 2024-10-11 01:20:18 +4819 4819 4820 481.9 963.8000000000001 4819 1983-03-13 2024-10-11 01:20:19.000 1983-03-13 2024-10-11 01:20:19 +4821 4821 4822 482.1 964.2 4821 1983-03-15 2024-10-11 01:20:21.000 1983-03-15 2024-10-11 01:20:21 +4822 4822 4823 482.2 964.4000000000001 4822 1983-03-16 2024-10-11 01:20:22.000 1983-03-16 2024-10-11 01:20:22 +4823 4823 4824 482.3 964.6 4823 1983-03-17 2024-10-11 01:20:23.000 1983-03-17 2024-10-11 01:20:23 +4824 4824 4825 482.4 964.8000000000001 4824 1983-03-18 2024-10-11 01:20:24.000 1983-03-18 2024-10-11 01:20:24 +4826 4826 4827 482.6 965.2 4826 1983-03-20 2024-10-11 01:20:26.000 1983-03-20 2024-10-11 01:20:26 +4827 4827 4828 482.7 965.4000000000001 4827 1983-03-21 2024-10-11 01:20:27.000 1983-03-21 2024-10-11 01:20:27 +4828 4828 4829 482.8 965.6 4828 1983-03-22 2024-10-11 01:20:28.000 1983-03-22 2024-10-11 01:20:28 +4829 4829 4830 482.9 965.8000000000001 4829 1983-03-23 2024-10-11 01:20:29.000 1983-03-23 2024-10-11 01:20:29 +4831 4831 4832 483.1 966.2 4831 1983-03-25 2024-10-11 01:20:31.000 1983-03-25 2024-10-11 01:20:31 +4832 4832 4833 483.2 966.4000000000001 4832 1983-03-26 2024-10-11 01:20:32.000 1983-03-26 2024-10-11 01:20:32 +4833 4833 4834 483.3 966.6 4833 1983-03-27 2024-10-11 01:20:33.000 1983-03-27 2024-10-11 01:20:33 +4834 4834 4835 483.4 966.8000000000001 4834 1983-03-28 2024-10-11 01:20:34.000 1983-03-28 2024-10-11 01:20:34 +4836 4836 4837 483.6 967.2 4836 1983-03-30 2024-10-11 01:20:36.000 1983-03-30 2024-10-11 01:20:36 +4837 4837 4838 483.7 967.4000000000001 4837 1983-03-31 2024-10-11 01:20:37.000 1983-03-31 2024-10-11 01:20:37 +4838 4838 4839 483.8 967.6 4838 1983-04-01 2024-10-11 01:20:38.000 1983-04-01 2024-10-11 01:20:38 +4839 4839 4840 483.9 967.8000000000001 4839 1983-04-02 2024-10-11 01:20:39.000 1983-04-02 2024-10-11 01:20:39 +4841 4841 4842 484.1 968.2 4841 1983-04-04 2024-10-11 01:20:41.000 1983-04-04 2024-10-11 01:20:41 +4842 4842 4843 484.2 968.4000000000001 4842 1983-04-05 2024-10-11 01:20:42.000 1983-04-05 2024-10-11 01:20:42 +4843 4843 4844 484.3 968.6 4843 1983-04-06 2024-10-11 01:20:43.000 1983-04-06 2024-10-11 01:20:43 +4844 4844 4845 484.4 968.8000000000001 4844 1983-04-07 2024-10-11 01:20:44.000 1983-04-07 2024-10-11 01:20:44 +4846 4846 4847 484.6 969.2 4846 1983-04-09 2024-10-11 01:20:46.000 1983-04-09 2024-10-11 01:20:46 +4847 4847 4848 484.7 969.4000000000001 4847 1983-04-10 2024-10-11 01:20:47.000 1983-04-10 2024-10-11 01:20:47 +4848 4848 4849 484.8 969.6 4848 1983-04-11 2024-10-11 01:20:48.000 1983-04-11 2024-10-11 01:20:48 +4849 4849 4850 484.9 969.8000000000001 4849 1983-04-12 2024-10-11 01:20:49.000 1983-04-12 2024-10-11 01:20:49 +4851 4851 4852 485.1 970.2 4851 1983-04-14 2024-10-11 01:20:51.000 1983-04-14 2024-10-11 01:20:51 +4852 4852 4853 485.2 970.4000000000001 4852 1983-04-15 2024-10-11 01:20:52.000 1983-04-15 2024-10-11 01:20:52 +4853 4853 4854 485.3 970.6 4853 1983-04-16 2024-10-11 01:20:53.000 1983-04-16 2024-10-11 01:20:53 +4854 4854 4855 485.4 970.8000000000001 4854 1983-04-17 2024-10-11 01:20:54.000 1983-04-17 2024-10-11 01:20:54 +4856 4856 4857 485.6 971.2 4856 1983-04-19 2024-10-11 01:20:56.000 1983-04-19 2024-10-11 01:20:56 +4857 4857 4858 485.7 971.4000000000001 4857 1983-04-20 2024-10-11 01:20:57.000 1983-04-20 2024-10-11 01:20:57 +4858 4858 4859 485.8 971.6 4858 1983-04-21 2024-10-11 01:20:58.000 1983-04-21 2024-10-11 01:20:58 +4859 4859 4860 485.9 971.8000000000001 4859 1983-04-22 2024-10-11 01:20:59.000 1983-04-22 2024-10-11 01:20:59 +4861 4861 4862 486.1 972.2 4861 1983-04-24 2024-10-11 01:21:01.000 1983-04-24 2024-10-11 01:21:01 +4862 4862 4863 486.2 972.4000000000001 4862 1983-04-25 2024-10-11 01:21:02.000 1983-04-25 2024-10-11 01:21:02 +4863 4863 4864 486.3 972.6 4863 1983-04-26 2024-10-11 01:21:03.000 1983-04-26 2024-10-11 01:21:03 +4864 4864 4865 486.4 972.8000000000001 4864 1983-04-27 2024-10-11 01:21:04.000 1983-04-27 2024-10-11 01:21:04 +4866 4866 4867 486.6 973.2 4866 1983-04-29 2024-10-11 01:21:06.000 1983-04-29 2024-10-11 01:21:06 +4867 4867 4868 486.7 973.4000000000001 4867 1983-04-30 2024-10-11 01:21:07.000 1983-04-30 2024-10-11 01:21:07 +4868 4868 4869 486.8 973.6 4868 1983-05-01 2024-10-11 01:21:08.000 1983-05-01 2024-10-11 01:21:08 +4869 4869 4870 486.9 973.8000000000001 4869 1983-05-02 2024-10-11 01:21:09.000 1983-05-02 2024-10-11 01:21:09 +4871 4871 4872 487.1 974.2 4871 1983-05-04 2024-10-11 01:21:11.000 1983-05-04 2024-10-11 01:21:11 +4872 4872 4873 487.2 974.4000000000001 4872 1983-05-05 2024-10-11 01:21:12.000 1983-05-05 2024-10-11 01:21:12 +4873 4873 4874 487.3 974.6 4873 1983-05-06 2024-10-11 01:21:13.000 1983-05-06 2024-10-11 01:21:13 +4874 4874 4875 487.4 974.8000000000001 4874 1983-05-07 2024-10-11 01:21:14.000 1983-05-07 2024-10-11 01:21:14 +4876 4876 4877 487.6 975.2 4876 1983-05-09 2024-10-11 01:21:16.000 1983-05-09 2024-10-11 01:21:16 +4877 4877 4878 487.7 975.4000000000001 4877 1983-05-10 2024-10-11 01:21:17.000 1983-05-10 2024-10-11 01:21:17 +4878 4878 4879 487.8 975.6 4878 1983-05-11 2024-10-11 01:21:18.000 1983-05-11 2024-10-11 01:21:18 +4879 4879 4880 487.9 975.8000000000001 4879 1983-05-12 2024-10-11 01:21:19.000 1983-05-12 2024-10-11 01:21:19 +4881 4881 4882 488.1 976.2 4881 1983-05-14 2024-10-11 01:21:21.000 1983-05-14 2024-10-11 01:21:21 +4882 4882 4883 488.2 976.4000000000001 4882 1983-05-15 2024-10-11 01:21:22.000 1983-05-15 2024-10-11 01:21:22 +4883 4883 4884 488.3 976.6 4883 1983-05-16 2024-10-11 01:21:23.000 1983-05-16 2024-10-11 01:21:23 +4884 4884 4885 488.4 976.8000000000001 4884 1983-05-17 2024-10-11 01:21:24.000 1983-05-17 2024-10-11 01:21:24 +4886 4886 4887 488.6 977.2 4886 1983-05-19 2024-10-11 01:21:26.000 1983-05-19 2024-10-11 01:21:26 +4887 4887 4888 488.7 977.4000000000001 4887 1983-05-20 2024-10-11 01:21:27.000 1983-05-20 2024-10-11 01:21:27 +4888 4888 4889 488.8 977.6 4888 1983-05-21 2024-10-11 01:21:28.000 1983-05-21 2024-10-11 01:21:28 +4889 4889 4890 488.9 977.8000000000001 4889 1983-05-22 2024-10-11 01:21:29.000 1983-05-22 2024-10-11 01:21:29 +4891 4891 4892 489.1 978.2 4891 1983-05-24 2024-10-11 01:21:31.000 1983-05-24 2024-10-11 01:21:31 +4892 4892 4893 489.2 978.4000000000001 4892 1983-05-25 2024-10-11 01:21:32.000 1983-05-25 2024-10-11 01:21:32 +4893 4893 4894 489.3 978.6 4893 1983-05-26 2024-10-11 01:21:33.000 1983-05-26 2024-10-11 01:21:33 +4894 4894 4895 489.4 978.8000000000001 4894 1983-05-27 2024-10-11 01:21:34.000 1983-05-27 2024-10-11 01:21:34 +4896 4896 4897 489.6 979.2 4896 1983-05-29 2024-10-11 01:21:36.000 1983-05-29 2024-10-11 01:21:36 +4897 4897 4898 489.7 979.4000000000001 4897 1983-05-30 2024-10-11 01:21:37.000 1983-05-30 2024-10-11 01:21:37 +4898 4898 4899 489.8 979.6 4898 1983-05-31 2024-10-11 01:21:38.000 1983-05-31 2024-10-11 01:21:38 +4899 4899 4900 489.9 979.8000000000001 4899 1983-06-01 2024-10-11 01:21:39.000 1983-06-01 2024-10-11 01:21:39 +4901 4901 4902 490.1 980.2 4901 1983-06-03 2024-10-11 01:21:41.000 1983-06-03 2024-10-11 01:21:41 +4902 4902 4903 490.2 980.4000000000001 4902 1983-06-04 2024-10-11 01:21:42.000 1983-06-04 2024-10-11 01:21:42 +4903 4903 4904 490.3 980.6 4903 1983-06-05 2024-10-11 01:21:43.000 1983-06-05 2024-10-11 01:21:43 +4904 4904 4905 490.4 980.8000000000001 4904 1983-06-06 2024-10-11 01:21:44.000 1983-06-06 2024-10-11 01:21:44 +4906 4906 4907 490.6 981.2 4906 1983-06-08 2024-10-11 01:21:46.000 1983-06-08 2024-10-11 01:21:46 +4907 4907 4908 490.7 981.4000000000001 4907 1983-06-09 2024-10-11 01:21:47.000 1983-06-09 2024-10-11 01:21:47 +4908 4908 4909 490.8 981.6 4908 1983-06-10 2024-10-11 01:21:48.000 1983-06-10 2024-10-11 01:21:48 +4909 4909 4910 490.9 981.8000000000001 4909 1983-06-11 2024-10-11 01:21:49.000 1983-06-11 2024-10-11 01:21:49 +4911 4911 4912 491.1 982.2 4911 1983-06-13 2024-10-11 01:21:51.000 1983-06-13 2024-10-11 01:21:51 +4912 4912 4913 491.2 982.4000000000001 4912 1983-06-14 2024-10-11 01:21:52.000 1983-06-14 2024-10-11 01:21:52 +4913 4913 4914 491.3 982.6 4913 1983-06-15 2024-10-11 01:21:53.000 1983-06-15 2024-10-11 01:21:53 +4914 4914 4915 491.4 982.8000000000001 4914 1983-06-16 2024-10-11 01:21:54.000 1983-06-16 2024-10-11 01:21:54 +4916 4916 4917 491.6 983.2 4916 1983-06-18 2024-10-11 01:21:56.000 1983-06-18 2024-10-11 01:21:56 +4917 4917 4918 491.7 983.4000000000001 4917 1983-06-19 2024-10-11 01:21:57.000 1983-06-19 2024-10-11 01:21:57 +4918 4918 4919 491.8 983.6 4918 1983-06-20 2024-10-11 01:21:58.000 1983-06-20 2024-10-11 01:21:58 +4919 4919 4920 491.9 983.8000000000001 4919 1983-06-21 2024-10-11 01:21:59.000 1983-06-21 2024-10-11 01:21:59 +4921 4921 4922 492.1 984.2 4921 1983-06-23 2024-10-11 01:22:01.000 1983-06-23 2024-10-11 01:22:01 +4922 4922 4923 492.2 984.4000000000001 4922 1983-06-24 2024-10-11 01:22:02.000 1983-06-24 2024-10-11 01:22:02 +4923 4923 4924 492.3 984.6 4923 1983-06-25 2024-10-11 01:22:03.000 1983-06-25 2024-10-11 01:22:03 +4924 4924 4925 492.4 984.8000000000001 4924 1983-06-26 2024-10-11 01:22:04.000 1983-06-26 2024-10-11 01:22:04 +4926 4926 4927 492.6 985.2 4926 1983-06-28 2024-10-11 01:22:06.000 1983-06-28 2024-10-11 01:22:06 +4927 4927 4928 492.7 985.4000000000001 4927 1983-06-29 2024-10-11 01:22:07.000 1983-06-29 2024-10-11 01:22:07 +4928 4928 4929 492.8 985.6 4928 1983-06-30 2024-10-11 01:22:08.000 1983-06-30 2024-10-11 01:22:08 +4929 4929 4930 492.9 985.8000000000001 4929 1983-07-01 2024-10-11 01:22:09.000 1983-07-01 2024-10-11 01:22:09 +4931 4931 4932 493.1 986.2 4931 1983-07-03 2024-10-11 01:22:11.000 1983-07-03 2024-10-11 01:22:11 +4932 4932 4933 493.2 986.4000000000001 4932 1983-07-04 2024-10-11 01:22:12.000 1983-07-04 2024-10-11 01:22:12 +4933 4933 4934 493.3 986.6 4933 1983-07-05 2024-10-11 01:22:13.000 1983-07-05 2024-10-11 01:22:13 +4934 4934 4935 493.4 986.8000000000001 4934 1983-07-06 2024-10-11 01:22:14.000 1983-07-06 2024-10-11 01:22:14 +4936 4936 4937 493.6 987.2 4936 1983-07-08 2024-10-11 01:22:16.000 1983-07-08 2024-10-11 01:22:16 +4937 4937 4938 493.7 987.4000000000001 4937 1983-07-09 2024-10-11 01:22:17.000 1983-07-09 2024-10-11 01:22:17 +4938 4938 4939 493.8 987.6 4938 1983-07-10 2024-10-11 01:22:18.000 1983-07-10 2024-10-11 01:22:18 +4939 4939 4940 493.9 987.8000000000001 4939 1983-07-11 2024-10-11 01:22:19.000 1983-07-11 2024-10-11 01:22:19 +4941 4941 4942 494.1 988.2 4941 1983-07-13 2024-10-11 01:22:21.000 1983-07-13 2024-10-11 01:22:21 +4942 4942 4943 494.2 988.4000000000001 4942 1983-07-14 2024-10-11 01:22:22.000 1983-07-14 2024-10-11 01:22:22 +4943 4943 4944 494.3 988.6 4943 1983-07-15 2024-10-11 01:22:23.000 1983-07-15 2024-10-11 01:22:23 +4944 4944 4945 494.4 988.8000000000001 4944 1983-07-16 2024-10-11 01:22:24.000 1983-07-16 2024-10-11 01:22:24 +4946 4946 4947 494.6 989.2 4946 1983-07-18 2024-10-11 01:22:26.000 1983-07-18 2024-10-11 01:22:26 +4947 4947 4948 494.7 989.4000000000001 4947 1983-07-19 2024-10-11 01:22:27.000 1983-07-19 2024-10-11 01:22:27 +4948 4948 4949 494.8 989.6 4948 1983-07-20 2024-10-11 01:22:28.000 1983-07-20 2024-10-11 01:22:28 +4949 4949 4950 494.9 989.8000000000001 4949 1983-07-21 2024-10-11 01:22:29.000 1983-07-21 2024-10-11 01:22:29 +4951 4951 4952 495.1 990.2 4951 1983-07-23 2024-10-11 01:22:31.000 1983-07-23 2024-10-11 01:22:31 +4952 4952 4953 495.2 990.4000000000001 4952 1983-07-24 2024-10-11 01:22:32.000 1983-07-24 2024-10-11 01:22:32 +4953 4953 4954 495.3 990.6 4953 1983-07-25 2024-10-11 01:22:33.000 1983-07-25 2024-10-11 01:22:33 +4954 4954 4955 495.4 990.8000000000001 4954 1983-07-26 2024-10-11 01:22:34.000 1983-07-26 2024-10-11 01:22:34 +4956 4956 4957 495.6 991.2 4956 1983-07-28 2024-10-11 01:22:36.000 1983-07-28 2024-10-11 01:22:36 +4957 4957 4958 495.7 991.4000000000001 4957 1983-07-29 2024-10-11 01:22:37.000 1983-07-29 2024-10-11 01:22:37 +4958 4958 4959 495.8 991.6 4958 1983-07-30 2024-10-11 01:22:38.000 1983-07-30 2024-10-11 01:22:38 +4959 4959 4960 495.9 991.8000000000001 4959 1983-07-31 2024-10-11 01:22:39.000 1983-07-31 2024-10-11 01:22:39 +4961 4961 4962 496.1 992.2 4961 1983-08-02 2024-10-11 01:22:41.000 1983-08-02 2024-10-11 01:22:41 +4962 4962 4963 496.2 992.4000000000001 4962 1983-08-03 2024-10-11 01:22:42.000 1983-08-03 2024-10-11 01:22:42 +4963 4963 4964 496.3 992.6 4963 1983-08-04 2024-10-11 01:22:43.000 1983-08-04 2024-10-11 01:22:43 +4964 4964 4965 496.4 992.8000000000001 4964 1983-08-05 2024-10-11 01:22:44.000 1983-08-05 2024-10-11 01:22:44 +4966 4966 4967 496.6 993.2 4966 1983-08-07 2024-10-11 01:22:46.000 1983-08-07 2024-10-11 01:22:46 +4967 4967 4968 496.7 993.4000000000001 4967 1983-08-08 2024-10-11 01:22:47.000 1983-08-08 2024-10-11 01:22:47 +4968 4968 4969 496.8 993.6 4968 1983-08-09 2024-10-11 01:22:48.000 1983-08-09 2024-10-11 01:22:48 +4969 4969 4970 496.9 993.8000000000001 4969 1983-08-10 2024-10-11 01:22:49.000 1983-08-10 2024-10-11 01:22:49 +4971 4971 4972 497.1 994.2 4971 1983-08-12 2024-10-11 01:22:51.000 1983-08-12 2024-10-11 01:22:51 +4972 4972 4973 497.2 994.4000000000001 4972 1983-08-13 2024-10-11 01:22:52.000 1983-08-13 2024-10-11 01:22:52 +4973 4973 4974 497.3 994.6 4973 1983-08-14 2024-10-11 01:22:53.000 1983-08-14 2024-10-11 01:22:53 +4974 4974 4975 497.4 994.8000000000001 4974 1983-08-15 2024-10-11 01:22:54.000 1983-08-15 2024-10-11 01:22:54 +4976 4976 4977 497.6 995.2 4976 1983-08-17 2024-10-11 01:22:56.000 1983-08-17 2024-10-11 01:22:56 +4977 4977 4978 497.7 995.4000000000001 4977 1983-08-18 2024-10-11 01:22:57.000 1983-08-18 2024-10-11 01:22:57 +4978 4978 4979 497.8 995.6 4978 1983-08-19 2024-10-11 01:22:58.000 1983-08-19 2024-10-11 01:22:58 +4979 4979 4980 497.9 995.8000000000001 4979 1983-08-20 2024-10-11 01:22:59.000 1983-08-20 2024-10-11 01:22:59 +4981 4981 4982 498.1 996.2 4981 1983-08-22 2024-10-11 01:23:01.000 1983-08-22 2024-10-11 01:23:01 +4982 4982 4983 498.2 996.4000000000001 4982 1983-08-23 2024-10-11 01:23:02.000 1983-08-23 2024-10-11 01:23:02 +4983 4983 4984 498.3 996.6 4983 1983-08-24 2024-10-11 01:23:03.000 1983-08-24 2024-10-11 01:23:03 +4984 4984 4985 498.4 996.8000000000001 4984 1983-08-25 2024-10-11 01:23:04.000 1983-08-25 2024-10-11 01:23:04 +4986 4986 4987 498.6 997.2 4986 1983-08-27 2024-10-11 01:23:06.000 1983-08-27 2024-10-11 01:23:06 +4987 4987 4988 498.7 997.4000000000001 4987 1983-08-28 2024-10-11 01:23:07.000 1983-08-28 2024-10-11 01:23:07 +4988 4988 4989 498.8 997.6 4988 1983-08-29 2024-10-11 01:23:08.000 1983-08-29 2024-10-11 01:23:08 +4989 4989 4990 498.9 997.8000000000001 4989 1983-08-30 2024-10-11 01:23:09.000 1983-08-30 2024-10-11 01:23:09 +4991 4991 4992 499.1 998.2 4991 1983-09-01 2024-10-11 01:23:11.000 1983-09-01 2024-10-11 01:23:11 +4992 4992 4993 499.2 998.4000000000001 4992 1983-09-02 2024-10-11 01:23:12.000 1983-09-02 2024-10-11 01:23:12 +4993 4993 4994 499.3 998.6 4993 1983-09-03 2024-10-11 01:23:13.000 1983-09-03 2024-10-11 01:23:13 +4994 4994 4995 499.4 998.8000000000001 4994 1983-09-04 2024-10-11 01:23:14.000 1983-09-04 2024-10-11 01:23:14 +4996 4996 4997 499.6 999.2 4996 1983-09-06 2024-10-11 01:23:16.000 1983-09-06 2024-10-11 01:23:16 +4997 4997 4998 499.7 999.4000000000001 4997 1983-09-07 2024-10-11 01:23:17.000 1983-09-07 2024-10-11 01:23:17 +4998 4998 4999 499.8 999.6 4998 1983-09-08 2024-10-11 01:23:18.000 1983-09-08 2024-10-11 01:23:18 +4999 4999 5000 499.9 999.8000000000001 4999 1983-09-09 2024-10-11 01:23:19.000 1983-09-09 2024-10-11 01:23:19 +5001 5001 5002 500.1 1000.2 5001 1983-09-11 2024-10-11 01:23:21.000 1983-09-11 2024-10-11 01:23:21 +5002 5002 5003 500.2 1000.4000000000001 5002 1983-09-12 2024-10-11 01:23:22.000 1983-09-12 2024-10-11 01:23:22 +5003 5003 5004 500.3 1000.6 5003 1983-09-13 2024-10-11 01:23:23.000 1983-09-13 2024-10-11 01:23:23 +5004 5004 5005 500.4 1000.8000000000001 5004 1983-09-14 2024-10-11 01:23:24.000 1983-09-14 2024-10-11 01:23:24 +5006 5006 5007 500.6 1001.2 5006 1983-09-16 2024-10-11 01:23:26.000 1983-09-16 2024-10-11 01:23:26 +5007 5007 5008 500.7 1001.4000000000001 5007 1983-09-17 2024-10-11 01:23:27.000 1983-09-17 2024-10-11 01:23:27 +5008 5008 5009 500.8 1001.6 5008 1983-09-18 2024-10-11 01:23:28.000 1983-09-18 2024-10-11 01:23:28 +5009 5009 5010 500.9 1001.8000000000001 5009 1983-09-19 2024-10-11 01:23:29.000 1983-09-19 2024-10-11 01:23:29 +5011 5011 5012 501.1 1002.2 5011 1983-09-21 2024-10-11 01:23:31.000 1983-09-21 2024-10-11 01:23:31 +5012 5012 5013 501.2 1002.4000000000001 5012 1983-09-22 2024-10-11 01:23:32.000 1983-09-22 2024-10-11 01:23:32 +5013 5013 5014 501.3 1002.6 5013 1983-09-23 2024-10-11 01:23:33.000 1983-09-23 2024-10-11 01:23:33 +5014 5014 5015 501.4 1002.8000000000001 5014 1983-09-24 2024-10-11 01:23:34.000 1983-09-24 2024-10-11 01:23:34 +5016 5016 5017 501.6 1003.2 5016 1983-09-26 2024-10-11 01:23:36.000 1983-09-26 2024-10-11 01:23:36 +5017 5017 5018 501.7 1003.4000000000001 5017 1983-09-27 2024-10-11 01:23:37.000 1983-09-27 2024-10-11 01:23:37 +5018 5018 5019 501.8 1003.6 5018 1983-09-28 2024-10-11 01:23:38.000 1983-09-28 2024-10-11 01:23:38 +5019 5019 5020 501.9 1003.8000000000001 5019 1983-09-29 2024-10-11 01:23:39.000 1983-09-29 2024-10-11 01:23:39 +5021 5021 5022 502.1 1004.2 5021 1983-10-01 2024-10-11 01:23:41.000 1983-10-01 2024-10-11 01:23:41 +5022 5022 5023 502.2 1004.4000000000001 5022 1983-10-02 2024-10-11 01:23:42.000 1983-10-02 2024-10-11 01:23:42 +5023 5023 5024 502.3 1004.6 5023 1983-10-03 2024-10-11 01:23:43.000 1983-10-03 2024-10-11 01:23:43 +5024 5024 5025 502.4 1004.8000000000001 5024 1983-10-04 2024-10-11 01:23:44.000 1983-10-04 2024-10-11 01:23:44 +5026 5026 5027 502.6 1005.2 5026 1983-10-06 2024-10-11 01:23:46.000 1983-10-06 2024-10-11 01:23:46 +5027 5027 5028 502.7 1005.4000000000001 5027 1983-10-07 2024-10-11 01:23:47.000 1983-10-07 2024-10-11 01:23:47 +5028 5028 5029 502.8 1005.6 5028 1983-10-08 2024-10-11 01:23:48.000 1983-10-08 2024-10-11 01:23:48 +5029 5029 5030 502.9 1005.8000000000001 5029 1983-10-09 2024-10-11 01:23:49.000 1983-10-09 2024-10-11 01:23:49 +5031 5031 5032 503.1 1006.2 5031 1983-10-11 2024-10-11 01:23:51.000 1983-10-11 2024-10-11 01:23:51 +5032 5032 5033 503.2 1006.4000000000001 5032 1983-10-12 2024-10-11 01:23:52.000 1983-10-12 2024-10-11 01:23:52 +5033 5033 5034 503.3 1006.6 5033 1983-10-13 2024-10-11 01:23:53.000 1983-10-13 2024-10-11 01:23:53 +5034 5034 5035 503.4 1006.8000000000001 5034 1983-10-14 2024-10-11 01:23:54.000 1983-10-14 2024-10-11 01:23:54 +5036 5036 5037 503.6 1007.2 5036 1983-10-16 2024-10-11 01:23:56.000 1983-10-16 2024-10-11 01:23:56 +5037 5037 5038 503.7 1007.4000000000001 5037 1983-10-17 2024-10-11 01:23:57.000 1983-10-17 2024-10-11 01:23:57 +5038 5038 5039 503.8 1007.6 5038 1983-10-18 2024-10-11 01:23:58.000 1983-10-18 2024-10-11 01:23:58 +5039 5039 5040 503.9 1007.8000000000001 5039 1983-10-19 2024-10-11 01:23:59.000 1983-10-19 2024-10-11 01:23:59 +5041 5041 5042 504.1 1008.2 5041 1983-10-21 2024-10-11 01:24:01.000 1983-10-21 2024-10-11 01:24:01 +5042 5042 5043 504.2 1008.4000000000001 5042 1983-10-22 2024-10-11 01:24:02.000 1983-10-22 2024-10-11 01:24:02 +5043 5043 5044 504.3 1008.6 5043 1983-10-23 2024-10-11 01:24:03.000 1983-10-23 2024-10-11 01:24:03 +5044 5044 5045 504.4 1008.8000000000001 5044 1983-10-24 2024-10-11 01:24:04.000 1983-10-24 2024-10-11 01:24:04 +5046 5046 5047 504.6 1009.2 5046 1983-10-26 2024-10-11 01:24:06.000 1983-10-26 2024-10-11 01:24:06 +5047 5047 5048 504.7 1009.4000000000001 5047 1983-10-27 2024-10-11 01:24:07.000 1983-10-27 2024-10-11 01:24:07 +5048 5048 5049 504.8 1009.6 5048 1983-10-28 2024-10-11 01:24:08.000 1983-10-28 2024-10-11 01:24:08 +5049 5049 5050 504.9 1009.8000000000001 5049 1983-10-29 2024-10-11 01:24:09.000 1983-10-29 2024-10-11 01:24:09 +5051 5051 5052 505.1 1010.2 5051 1983-10-31 2024-10-11 01:24:11.000 1983-10-31 2024-10-11 01:24:11 +5052 5052 5053 505.2 1010.4000000000001 5052 1983-11-01 2024-10-11 01:24:12.000 1983-11-01 2024-10-11 01:24:12 +5053 5053 5054 505.3 1010.6 5053 1983-11-02 2024-10-11 01:24:13.000 1983-11-02 2024-10-11 01:24:13 +5054 5054 5055 505.4 1010.8000000000001 5054 1983-11-03 2024-10-11 01:24:14.000 1983-11-03 2024-10-11 01:24:14 +5056 5056 5057 505.6 1011.2 5056 1983-11-05 2024-10-11 01:24:16.000 1983-11-05 2024-10-11 01:24:16 +5057 5057 5058 505.7 1011.4000000000001 5057 1983-11-06 2024-10-11 01:24:17.000 1983-11-06 2024-10-11 01:24:17 +5058 5058 5059 505.8 1011.6 5058 1983-11-07 2024-10-11 01:24:18.000 1983-11-07 2024-10-11 01:24:18 +5059 5059 5060 505.9 1011.8000000000001 5059 1983-11-08 2024-10-11 01:24:19.000 1983-11-08 2024-10-11 01:24:19 +5061 5061 5062 506.1 1012.2 5061 1983-11-10 2024-10-11 01:24:21.000 1983-11-10 2024-10-11 01:24:21 +5062 5062 5063 506.2 1012.4000000000001 5062 1983-11-11 2024-10-11 01:24:22.000 1983-11-11 2024-10-11 01:24:22 +5063 5063 5064 506.3 1012.6 5063 1983-11-12 2024-10-11 01:24:23.000 1983-11-12 2024-10-11 01:24:23 +5064 5064 5065 506.4 1012.8000000000001 5064 1983-11-13 2024-10-11 01:24:24.000 1983-11-13 2024-10-11 01:24:24 +5066 5066 5067 506.6 1013.2 5066 1983-11-15 2024-10-11 01:24:26.000 1983-11-15 2024-10-11 01:24:26 +5067 5067 5068 506.7 1013.4000000000001 5067 1983-11-16 2024-10-11 01:24:27.000 1983-11-16 2024-10-11 01:24:27 +5068 5068 5069 506.8 1013.6 5068 1983-11-17 2024-10-11 01:24:28.000 1983-11-17 2024-10-11 01:24:28 +5069 5069 5070 506.9 1013.8000000000001 5069 1983-11-18 2024-10-11 01:24:29.000 1983-11-18 2024-10-11 01:24:29 +5071 5071 5072 507.1 1014.2 5071 1983-11-20 2024-10-11 01:24:31.000 1983-11-20 2024-10-11 01:24:31 +5072 5072 5073 507.2 1014.4000000000001 5072 1983-11-21 2024-10-11 01:24:32.000 1983-11-21 2024-10-11 01:24:32 +5073 5073 5074 507.3 1014.6 5073 1983-11-22 2024-10-11 01:24:33.000 1983-11-22 2024-10-11 01:24:33 +5074 5074 5075 507.4 1014.8000000000001 5074 1983-11-23 2024-10-11 01:24:34.000 1983-11-23 2024-10-11 01:24:34 +5076 5076 5077 507.6 1015.2 5076 1983-11-25 2024-10-11 01:24:36.000 1983-11-25 2024-10-11 01:24:36 +5077 5077 5078 507.7 1015.4000000000001 5077 1983-11-26 2024-10-11 01:24:37.000 1983-11-26 2024-10-11 01:24:37 +5078 5078 5079 507.8 1015.6 5078 1983-11-27 2024-10-11 01:24:38.000 1983-11-27 2024-10-11 01:24:38 +5079 5079 5080 507.9 1015.8000000000001 5079 1983-11-28 2024-10-11 01:24:39.000 1983-11-28 2024-10-11 01:24:39 +5081 5081 5082 508.1 1016.2 5081 1983-11-30 2024-10-11 01:24:41.000 1983-11-30 2024-10-11 01:24:41 +5082 5082 5083 508.2 1016.4000000000001 5082 1983-12-01 2024-10-11 01:24:42.000 1983-12-01 2024-10-11 01:24:42 +5083 5083 5084 508.3 1016.6 5083 1983-12-02 2024-10-11 01:24:43.000 1983-12-02 2024-10-11 01:24:43 +5084 5084 5085 508.4 1016.8000000000001 5084 1983-12-03 2024-10-11 01:24:44.000 1983-12-03 2024-10-11 01:24:44 +5086 5086 5087 508.6 1017.2 5086 1983-12-05 2024-10-11 01:24:46.000 1983-12-05 2024-10-11 01:24:46 +5087 5087 5088 508.7 1017.4000000000001 5087 1983-12-06 2024-10-11 01:24:47.000 1983-12-06 2024-10-11 01:24:47 +5088 5088 5089 508.8 1017.6 5088 1983-12-07 2024-10-11 01:24:48.000 1983-12-07 2024-10-11 01:24:48 +5089 5089 5090 508.9 1017.8000000000001 5089 1983-12-08 2024-10-11 01:24:49.000 1983-12-08 2024-10-11 01:24:49 +5091 5091 5092 509.1 1018.2 5091 1983-12-10 2024-10-11 01:24:51.000 1983-12-10 2024-10-11 01:24:51 +5092 5092 5093 509.2 1018.4000000000001 5092 1983-12-11 2024-10-11 01:24:52.000 1983-12-11 2024-10-11 01:24:52 +5093 5093 5094 509.3 1018.6 5093 1983-12-12 2024-10-11 01:24:53.000 1983-12-12 2024-10-11 01:24:53 +5094 5094 5095 509.4 1018.8000000000001 5094 1983-12-13 2024-10-11 01:24:54.000 1983-12-13 2024-10-11 01:24:54 +5096 5096 5097 509.6 1019.2 5096 1983-12-15 2024-10-11 01:24:56.000 1983-12-15 2024-10-11 01:24:56 +5097 5097 5098 509.7 1019.4000000000001 5097 1983-12-16 2024-10-11 01:24:57.000 1983-12-16 2024-10-11 01:24:57 +5098 5098 5099 509.8 1019.6 5098 1983-12-17 2024-10-11 01:24:58.000 1983-12-17 2024-10-11 01:24:58 +5099 5099 5100 509.9 1019.8000000000001 5099 1983-12-18 2024-10-11 01:24:59.000 1983-12-18 2024-10-11 01:24:59 +5101 5101 5102 510.1 1020.2 5101 1983-12-20 2024-10-11 01:25:01.000 1983-12-20 2024-10-11 01:25:01 +5102 5102 5103 510.2 1020.4000000000001 5102 1983-12-21 2024-10-11 01:25:02.000 1983-12-21 2024-10-11 01:25:02 +5103 5103 5104 510.3 1020.6 5103 1983-12-22 2024-10-11 01:25:03.000 1983-12-22 2024-10-11 01:25:03 +5104 5104 5105 510.4 1020.8000000000001 5104 1983-12-23 2024-10-11 01:25:04.000 1983-12-23 2024-10-11 01:25:04 +5106 5106 5107 510.6 1021.2 5106 1983-12-25 2024-10-11 01:25:06.000 1983-12-25 2024-10-11 01:25:06 +5107 5107 5108 510.7 1021.4000000000001 5107 1983-12-26 2024-10-11 01:25:07.000 1983-12-26 2024-10-11 01:25:07 +5108 5108 5109 510.8 1021.6 5108 1983-12-27 2024-10-11 01:25:08.000 1983-12-27 2024-10-11 01:25:08 +5109 5109 5110 510.9 1021.8000000000001 5109 1983-12-28 2024-10-11 01:25:09.000 1983-12-28 2024-10-11 01:25:09 +5111 5111 5112 511.1 1022.2 5111 1983-12-30 2024-10-11 01:25:11.000 1983-12-30 2024-10-11 01:25:11 +5112 5112 5113 511.2 1022.4000000000001 5112 1983-12-31 2024-10-11 01:25:12.000 1983-12-31 2024-10-11 01:25:12 +5113 5113 5114 511.3 1022.6 5113 1984-01-01 2024-10-11 01:25:13.000 1984-01-01 2024-10-11 01:25:13 +5114 5114 5115 511.4 1022.8000000000001 5114 1984-01-02 2024-10-11 01:25:14.000 1984-01-02 2024-10-11 01:25:14 +5116 5116 5117 511.6 1023.2 5116 1984-01-04 2024-10-11 01:25:16.000 1984-01-04 2024-10-11 01:25:16 +5117 5117 5118 511.7 1023.4000000000001 5117 1984-01-05 2024-10-11 01:25:17.000 1984-01-05 2024-10-11 01:25:17 +5118 5118 5119 511.8 1023.6 5118 1984-01-06 2024-10-11 01:25:18.000 1984-01-06 2024-10-11 01:25:18 +5119 5119 5120 511.9 1023.8000000000001 5119 1984-01-07 2024-10-11 01:25:19.000 1984-01-07 2024-10-11 01:25:19 +5121 5121 5122 512.1 1024.2 5121 1984-01-09 2024-10-11 01:25:21.000 1984-01-09 2024-10-11 01:25:21 +5122 5122 5123 512.2 1024.4 5122 1984-01-10 2024-10-11 01:25:22.000 1984-01-10 2024-10-11 01:25:22 +5123 5123 5124 512.3 1024.6000000000001 5123 1984-01-11 2024-10-11 01:25:23.000 1984-01-11 2024-10-11 01:25:23 +5124 5124 5125 512.4 1024.8 5124 1984-01-12 2024-10-11 01:25:24.000 1984-01-12 2024-10-11 01:25:24 +5126 5126 5127 512.6 1025.2 5126 1984-01-14 2024-10-11 01:25:26.000 1984-01-14 2024-10-11 01:25:26 +5127 5127 5128 512.7 1025.4 5127 1984-01-15 2024-10-11 01:25:27.000 1984-01-15 2024-10-11 01:25:27 +5128 5128 5129 512.8 1025.6000000000001 5128 1984-01-16 2024-10-11 01:25:28.000 1984-01-16 2024-10-11 01:25:28 +5129 5129 5130 512.9 1025.8 5129 1984-01-17 2024-10-11 01:25:29.000 1984-01-17 2024-10-11 01:25:29 +5131 5131 5132 513.1 1026.2 5131 1984-01-19 2024-10-11 01:25:31.000 1984-01-19 2024-10-11 01:25:31 +5132 5132 5133 513.2 1026.4 5132 1984-01-20 2024-10-11 01:25:32.000 1984-01-20 2024-10-11 01:25:32 +5133 5133 5134 513.3 1026.6000000000001 5133 1984-01-21 2024-10-11 01:25:33.000 1984-01-21 2024-10-11 01:25:33 +5134 5134 5135 513.4 1026.8 5134 1984-01-22 2024-10-11 01:25:34.000 1984-01-22 2024-10-11 01:25:34 +5136 5136 5137 513.6 1027.2 5136 1984-01-24 2024-10-11 01:25:36.000 1984-01-24 2024-10-11 01:25:36 +5137 5137 5138 513.7 1027.4 5137 1984-01-25 2024-10-11 01:25:37.000 1984-01-25 2024-10-11 01:25:37 +5138 5138 5139 513.8 1027.6000000000001 5138 1984-01-26 2024-10-11 01:25:38.000 1984-01-26 2024-10-11 01:25:38 +5139 5139 5140 513.9 1027.8 5139 1984-01-27 2024-10-11 01:25:39.000 1984-01-27 2024-10-11 01:25:39 +5141 5141 5142 514.1 1028.2 5141 1984-01-29 2024-10-11 01:25:41.000 1984-01-29 2024-10-11 01:25:41 +5142 5142 5143 514.2 1028.4 5142 1984-01-30 2024-10-11 01:25:42.000 1984-01-30 2024-10-11 01:25:42 +5143 5143 5144 514.3 1028.6000000000001 5143 1984-01-31 2024-10-11 01:25:43.000 1984-01-31 2024-10-11 01:25:43 +5144 5144 5145 514.4 1028.8 5144 1984-02-01 2024-10-11 01:25:44.000 1984-02-01 2024-10-11 01:25:44 +5146 5146 5147 514.6 1029.2 5146 1984-02-03 2024-10-11 01:25:46.000 1984-02-03 2024-10-11 01:25:46 +5147 5147 5148 514.7 1029.4 5147 1984-02-04 2024-10-11 01:25:47.000 1984-02-04 2024-10-11 01:25:47 +5148 5148 5149 514.8 1029.6000000000001 5148 1984-02-05 2024-10-11 01:25:48.000 1984-02-05 2024-10-11 01:25:48 +5149 5149 5150 514.9 1029.8 5149 1984-02-06 2024-10-11 01:25:49.000 1984-02-06 2024-10-11 01:25:49 +5151 5151 5152 515.1 1030.2 5151 1984-02-08 2024-10-11 01:25:51.000 1984-02-08 2024-10-11 01:25:51 +5152 5152 5153 515.2 1030.4 5152 1984-02-09 2024-10-11 01:25:52.000 1984-02-09 2024-10-11 01:25:52 +5153 5153 5154 515.3 1030.6000000000001 5153 1984-02-10 2024-10-11 01:25:53.000 1984-02-10 2024-10-11 01:25:53 +5154 5154 5155 515.4 1030.8 5154 1984-02-11 2024-10-11 01:25:54.000 1984-02-11 2024-10-11 01:25:54 +5156 5156 5157 515.6 1031.2 5156 1984-02-13 2024-10-11 01:25:56.000 1984-02-13 2024-10-11 01:25:56 +5157 5157 5158 515.7 1031.4 5157 1984-02-14 2024-10-11 01:25:57.000 1984-02-14 2024-10-11 01:25:57 +5158 5158 5159 515.8 1031.6000000000001 5158 1984-02-15 2024-10-11 01:25:58.000 1984-02-15 2024-10-11 01:25:58 +5159 5159 5160 515.9 1031.8 5159 1984-02-16 2024-10-11 01:25:59.000 1984-02-16 2024-10-11 01:25:59 +5161 5161 5162 516.1 1032.2 5161 1984-02-18 2024-10-11 01:26:01.000 1984-02-18 2024-10-11 01:26:01 +5162 5162 5163 516.2 1032.4 5162 1984-02-19 2024-10-11 01:26:02.000 1984-02-19 2024-10-11 01:26:02 +5163 5163 5164 516.3 1032.6000000000001 5163 1984-02-20 2024-10-11 01:26:03.000 1984-02-20 2024-10-11 01:26:03 +5164 5164 5165 516.4 1032.8 5164 1984-02-21 2024-10-11 01:26:04.000 1984-02-21 2024-10-11 01:26:04 +5166 5166 5167 516.6 1033.2 5166 1984-02-23 2024-10-11 01:26:06.000 1984-02-23 2024-10-11 01:26:06 +5167 5167 5168 516.7 1033.4 5167 1984-02-24 2024-10-11 01:26:07.000 1984-02-24 2024-10-11 01:26:07 +5168 5168 5169 516.8 1033.6000000000001 5168 1984-02-25 2024-10-11 01:26:08.000 1984-02-25 2024-10-11 01:26:08 +5169 5169 5170 516.9 1033.8 5169 1984-02-26 2024-10-11 01:26:09.000 1984-02-26 2024-10-11 01:26:09 +5171 5171 5172 517.1 1034.2 5171 1984-02-28 2024-10-11 01:26:11.000 1984-02-28 2024-10-11 01:26:11 +5172 5172 5173 517.2 1034.4 5172 1984-02-29 2024-10-11 01:26:12.000 1984-02-29 2024-10-11 01:26:12 +5173 5173 5174 517.3 1034.6000000000001 5173 1984-03-01 2024-10-11 01:26:13.000 1984-03-01 2024-10-11 01:26:13 +5174 5174 5175 517.4 1034.8 5174 1984-03-02 2024-10-11 01:26:14.000 1984-03-02 2024-10-11 01:26:14 +5176 5176 5177 517.6 1035.2 5176 1984-03-04 2024-10-11 01:26:16.000 1984-03-04 2024-10-11 01:26:16 +5177 5177 5178 517.7 1035.4 5177 1984-03-05 2024-10-11 01:26:17.000 1984-03-05 2024-10-11 01:26:17 +5178 5178 5179 517.8 1035.6000000000001 5178 1984-03-06 2024-10-11 01:26:18.000 1984-03-06 2024-10-11 01:26:18 +5179 5179 5180 517.9 1035.8 5179 1984-03-07 2024-10-11 01:26:19.000 1984-03-07 2024-10-11 01:26:19 +5181 5181 5182 518.1 1036.2 5181 1984-03-09 2024-10-11 01:26:21.000 1984-03-09 2024-10-11 01:26:21 +5182 5182 5183 518.2 1036.4 5182 1984-03-10 2024-10-11 01:26:22.000 1984-03-10 2024-10-11 01:26:22 +5183 5183 5184 518.3 1036.6000000000001 5183 1984-03-11 2024-10-11 01:26:23.000 1984-03-11 2024-10-11 01:26:23 +5184 5184 5185 518.4 1036.8 5184 1984-03-12 2024-10-11 01:26:24.000 1984-03-12 2024-10-11 01:26:24 +5186 5186 5187 518.6 1037.2 5186 1984-03-14 2024-10-11 01:26:26.000 1984-03-14 2024-10-11 01:26:26 +5187 5187 5188 518.7 1037.4 5187 1984-03-15 2024-10-11 01:26:27.000 1984-03-15 2024-10-11 01:26:27 +5188 5188 5189 518.8 1037.6000000000001 5188 1984-03-16 2024-10-11 01:26:28.000 1984-03-16 2024-10-11 01:26:28 +5189 5189 5190 518.9 1037.8 5189 1984-03-17 2024-10-11 01:26:29.000 1984-03-17 2024-10-11 01:26:29 +5191 5191 5192 519.1 1038.2 5191 1984-03-19 2024-10-11 01:26:31.000 1984-03-19 2024-10-11 01:26:31 +5192 5192 5193 519.2 1038.4 5192 1984-03-20 2024-10-11 01:26:32.000 1984-03-20 2024-10-11 01:26:32 +5193 5193 5194 519.3 1038.6000000000001 5193 1984-03-21 2024-10-11 01:26:33.000 1984-03-21 2024-10-11 01:26:33 +5194 5194 5195 519.4 1038.8 5194 1984-03-22 2024-10-11 01:26:34.000 1984-03-22 2024-10-11 01:26:34 +5196 5196 5197 519.6 1039.2 5196 1984-03-24 2024-10-11 01:26:36.000 1984-03-24 2024-10-11 01:26:36 +5197 5197 5198 519.7 1039.4 5197 1984-03-25 2024-10-11 01:26:37.000 1984-03-25 2024-10-11 01:26:37 +5198 5198 5199 519.8 1039.6000000000001 5198 1984-03-26 2024-10-11 01:26:38.000 1984-03-26 2024-10-11 01:26:38 +5199 5199 5200 519.9 1039.8 5199 1984-03-27 2024-10-11 01:26:39.000 1984-03-27 2024-10-11 01:26:39 +5201 5201 5202 520.1 1040.2 5201 1984-03-29 2024-10-11 01:26:41.000 1984-03-29 2024-10-11 01:26:41 +5202 5202 5203 520.2 1040.4 5202 1984-03-30 2024-10-11 01:26:42.000 1984-03-30 2024-10-11 01:26:42 +5203 5203 5204 520.3 1040.6000000000001 5203 1984-03-31 2024-10-11 01:26:43.000 1984-03-31 2024-10-11 01:26:43 +5204 5204 5205 520.4 1040.8 5204 1984-04-01 2024-10-11 01:26:44.000 1984-04-01 2024-10-11 01:26:44 +5206 5206 5207 520.6 1041.2 5206 1984-04-03 2024-10-11 01:26:46.000 1984-04-03 2024-10-11 01:26:46 +5207 5207 5208 520.7 1041.4 5207 1984-04-04 2024-10-11 01:26:47.000 1984-04-04 2024-10-11 01:26:47 +5208 5208 5209 520.8 1041.6000000000001 5208 1984-04-05 2024-10-11 01:26:48.000 1984-04-05 2024-10-11 01:26:48 +5209 5209 5210 520.9 1041.8 5209 1984-04-06 2024-10-11 01:26:49.000 1984-04-06 2024-10-11 01:26:49 +5211 5211 5212 521.1 1042.2 5211 1984-04-08 2024-10-11 01:26:51.000 1984-04-08 2024-10-11 01:26:51 +5212 5212 5213 521.2 1042.4 5212 1984-04-09 2024-10-11 01:26:52.000 1984-04-09 2024-10-11 01:26:52 +5213 5213 5214 521.3 1042.6000000000001 5213 1984-04-10 2024-10-11 01:26:53.000 1984-04-10 2024-10-11 01:26:53 +5214 5214 5215 521.4 1042.8 5214 1984-04-11 2024-10-11 01:26:54.000 1984-04-11 2024-10-11 01:26:54 +5216 5216 5217 521.6 1043.2 5216 1984-04-13 2024-10-11 01:26:56.000 1984-04-13 2024-10-11 01:26:56 +5217 5217 5218 521.7 1043.4 5217 1984-04-14 2024-10-11 01:26:57.000 1984-04-14 2024-10-11 01:26:57 +5218 5218 5219 521.8 1043.6000000000001 5218 1984-04-15 2024-10-11 01:26:58.000 1984-04-15 2024-10-11 01:26:58 +5219 5219 5220 521.9 1043.8 5219 1984-04-16 2024-10-11 01:26:59.000 1984-04-16 2024-10-11 01:26:59 +5221 5221 5222 522.1 1044.2 5221 1984-04-18 2024-10-11 01:27:01.000 1984-04-18 2024-10-11 01:27:01 +5222 5222 5223 522.2 1044.4 5222 1984-04-19 2024-10-11 01:27:02.000 1984-04-19 2024-10-11 01:27:02 +5223 5223 5224 522.3 1044.6000000000001 5223 1984-04-20 2024-10-11 01:27:03.000 1984-04-20 2024-10-11 01:27:03 +5224 5224 5225 522.4 1044.8 5224 1984-04-21 2024-10-11 01:27:04.000 1984-04-21 2024-10-11 01:27:04 +5226 5226 5227 522.6 1045.2 5226 1984-04-23 2024-10-11 01:27:06.000 1984-04-23 2024-10-11 01:27:06 +5227 5227 5228 522.7 1045.4 5227 1984-04-24 2024-10-11 01:27:07.000 1984-04-24 2024-10-11 01:27:07 +5228 5228 5229 522.8 1045.6000000000001 5228 1984-04-25 2024-10-11 01:27:08.000 1984-04-25 2024-10-11 01:27:08 +5229 5229 5230 522.9 1045.8 5229 1984-04-26 2024-10-11 01:27:09.000 1984-04-26 2024-10-11 01:27:09 +5231 5231 5232 523.1 1046.2 5231 1984-04-28 2024-10-11 01:27:11.000 1984-04-28 2024-10-11 01:27:11 +5232 5232 5233 523.2 1046.4 5232 1984-04-29 2024-10-11 01:27:12.000 1984-04-29 2024-10-11 01:27:12 +5233 5233 5234 523.3 1046.6000000000001 5233 1984-04-30 2024-10-11 01:27:13.000 1984-04-30 2024-10-11 01:27:13 +5234 5234 5235 523.4 1046.8 5234 1984-05-01 2024-10-11 01:27:14.000 1984-05-01 2024-10-11 01:27:14 +5236 5236 5237 523.6 1047.2 5236 1984-05-03 2024-10-11 01:27:16.000 1984-05-03 2024-10-11 01:27:16 +5237 5237 5238 523.7 1047.4 5237 1984-05-04 2024-10-11 01:27:17.000 1984-05-04 2024-10-11 01:27:17 +5238 5238 5239 523.8 1047.6000000000001 5238 1984-05-05 2024-10-11 01:27:18.000 1984-05-05 2024-10-11 01:27:18 +5239 5239 5240 523.9 1047.8 5239 1984-05-06 2024-10-11 01:27:19.000 1984-05-06 2024-10-11 01:27:19 +5241 5241 5242 524.1 1048.2 5241 1984-05-08 2024-10-11 01:27:21.000 1984-05-08 2024-10-11 01:27:21 +5242 5242 5243 524.2 1048.4 5242 1984-05-09 2024-10-11 01:27:22.000 1984-05-09 2024-10-11 01:27:22 +5243 5243 5244 524.3 1048.6000000000001 5243 1984-05-10 2024-10-11 01:27:23.000 1984-05-10 2024-10-11 01:27:23 +5244 5244 5245 524.4 1048.8 5244 1984-05-11 2024-10-11 01:27:24.000 1984-05-11 2024-10-11 01:27:24 +5246 5246 5247 524.6 1049.2 5246 1984-05-13 2024-10-11 01:27:26.000 1984-05-13 2024-10-11 01:27:26 +5247 5247 5248 524.7 1049.4 5247 1984-05-14 2024-10-11 01:27:27.000 1984-05-14 2024-10-11 01:27:27 +5248 5248 5249 524.8 1049.6000000000001 5248 1984-05-15 2024-10-11 01:27:28.000 1984-05-15 2024-10-11 01:27:28 +5249 5249 5250 524.9 1049.8 5249 1984-05-16 2024-10-11 01:27:29.000 1984-05-16 2024-10-11 01:27:29 +5251 5251 5252 525.1 1050.2 5251 1984-05-18 2024-10-11 01:27:31.000 1984-05-18 2024-10-11 01:27:31 +5252 5252 5253 525.2 1050.4 5252 1984-05-19 2024-10-11 01:27:32.000 1984-05-19 2024-10-11 01:27:32 +5253 5253 5254 525.3 1050.6000000000001 5253 1984-05-20 2024-10-11 01:27:33.000 1984-05-20 2024-10-11 01:27:33 +5254 5254 5255 525.4 1050.8 5254 1984-05-21 2024-10-11 01:27:34.000 1984-05-21 2024-10-11 01:27:34 +5256 5256 5257 525.6 1051.2 5256 1984-05-23 2024-10-11 01:27:36.000 1984-05-23 2024-10-11 01:27:36 +5257 5257 5258 525.7 1051.4 5257 1984-05-24 2024-10-11 01:27:37.000 1984-05-24 2024-10-11 01:27:37 +5258 5258 5259 525.8 1051.6000000000001 5258 1984-05-25 2024-10-11 01:27:38.000 1984-05-25 2024-10-11 01:27:38 +5259 5259 5260 525.9 1051.8 5259 1984-05-26 2024-10-11 01:27:39.000 1984-05-26 2024-10-11 01:27:39 +5261 5261 5262 526.1 1052.2 5261 1984-05-28 2024-10-11 01:27:41.000 1984-05-28 2024-10-11 01:27:41 +5262 5262 5263 526.2 1052.4 5262 1984-05-29 2024-10-11 01:27:42.000 1984-05-29 2024-10-11 01:27:42 +5263 5263 5264 526.3 1052.6000000000001 5263 1984-05-30 2024-10-11 01:27:43.000 1984-05-30 2024-10-11 01:27:43 +5264 5264 5265 526.4 1052.8 5264 1984-05-31 2024-10-11 01:27:44.000 1984-05-31 2024-10-11 01:27:44 +5266 5266 5267 526.6 1053.2 5266 1984-06-02 2024-10-11 01:27:46.000 1984-06-02 2024-10-11 01:27:46 +5267 5267 5268 526.7 1053.4 5267 1984-06-03 2024-10-11 01:27:47.000 1984-06-03 2024-10-11 01:27:47 +5268 5268 5269 526.8 1053.6000000000001 5268 1984-06-04 2024-10-11 01:27:48.000 1984-06-04 2024-10-11 01:27:48 +5269 5269 5270 526.9 1053.8 5269 1984-06-05 2024-10-11 01:27:49.000 1984-06-05 2024-10-11 01:27:49 +5271 5271 5272 527.1 1054.2 5271 1984-06-07 2024-10-11 01:27:51.000 1984-06-07 2024-10-11 01:27:51 +5272 5272 5273 527.2 1054.4 5272 1984-06-08 2024-10-11 01:27:52.000 1984-06-08 2024-10-11 01:27:52 +5273 5273 5274 527.3 1054.6000000000001 5273 1984-06-09 2024-10-11 01:27:53.000 1984-06-09 2024-10-11 01:27:53 +5274 5274 5275 527.4 1054.8 5274 1984-06-10 2024-10-11 01:27:54.000 1984-06-10 2024-10-11 01:27:54 +5276 5276 5277 527.6 1055.2 5276 1984-06-12 2024-10-11 01:27:56.000 1984-06-12 2024-10-11 01:27:56 +5277 5277 5278 527.7 1055.4 5277 1984-06-13 2024-10-11 01:27:57.000 1984-06-13 2024-10-11 01:27:57 +5278 5278 5279 527.8 1055.6000000000001 5278 1984-06-14 2024-10-11 01:27:58.000 1984-06-14 2024-10-11 01:27:58 +5279 5279 5280 527.9 1055.8 5279 1984-06-15 2024-10-11 01:27:59.000 1984-06-15 2024-10-11 01:27:59 +5281 5281 5282 528.1 1056.2 5281 1984-06-17 2024-10-11 01:28:01.000 1984-06-17 2024-10-11 01:28:01 +5282 5282 5283 528.2 1056.4 5282 1984-06-18 2024-10-11 01:28:02.000 1984-06-18 2024-10-11 01:28:02 +5283 5283 5284 528.3 1056.6000000000001 5283 1984-06-19 2024-10-11 01:28:03.000 1984-06-19 2024-10-11 01:28:03 +5284 5284 5285 528.4 1056.8 5284 1984-06-20 2024-10-11 01:28:04.000 1984-06-20 2024-10-11 01:28:04 +5286 5286 5287 528.6 1057.2 5286 1984-06-22 2024-10-11 01:28:06.000 1984-06-22 2024-10-11 01:28:06 +5287 5287 5288 528.7 1057.4 5287 1984-06-23 2024-10-11 01:28:07.000 1984-06-23 2024-10-11 01:28:07 +5288 5288 5289 528.8 1057.6000000000001 5288 1984-06-24 2024-10-11 01:28:08.000 1984-06-24 2024-10-11 01:28:08 +5289 5289 5290 528.9 1057.8 5289 1984-06-25 2024-10-11 01:28:09.000 1984-06-25 2024-10-11 01:28:09 +5291 5291 5292 529.1 1058.2 5291 1984-06-27 2024-10-11 01:28:11.000 1984-06-27 2024-10-11 01:28:11 +5292 5292 5293 529.2 1058.4 5292 1984-06-28 2024-10-11 01:28:12.000 1984-06-28 2024-10-11 01:28:12 +5293 5293 5294 529.3 1058.6000000000001 5293 1984-06-29 2024-10-11 01:28:13.000 1984-06-29 2024-10-11 01:28:13 +5294 5294 5295 529.4 1058.8 5294 1984-06-30 2024-10-11 01:28:14.000 1984-06-30 2024-10-11 01:28:14 +5296 5296 5297 529.6 1059.2 5296 1984-07-02 2024-10-11 01:28:16.000 1984-07-02 2024-10-11 01:28:16 +5297 5297 5298 529.7 1059.4 5297 1984-07-03 2024-10-11 01:28:17.000 1984-07-03 2024-10-11 01:28:17 +5298 5298 5299 529.8 1059.6000000000001 5298 1984-07-04 2024-10-11 01:28:18.000 1984-07-04 2024-10-11 01:28:18 +5299 5299 5300 529.9 1059.8 5299 1984-07-05 2024-10-11 01:28:19.000 1984-07-05 2024-10-11 01:28:19 +5301 5301 5302 530.1 1060.2 5301 1984-07-07 2024-10-11 01:28:21.000 1984-07-07 2024-10-11 01:28:21 +5302 5302 5303 530.2 1060.4 5302 1984-07-08 2024-10-11 01:28:22.000 1984-07-08 2024-10-11 01:28:22 +5303 5303 5304 530.3 1060.6000000000001 5303 1984-07-09 2024-10-11 01:28:23.000 1984-07-09 2024-10-11 01:28:23 +5304 5304 5305 530.4 1060.8 5304 1984-07-10 2024-10-11 01:28:24.000 1984-07-10 2024-10-11 01:28:24 +5306 5306 5307 530.6 1061.2 5306 1984-07-12 2024-10-11 01:28:26.000 1984-07-12 2024-10-11 01:28:26 +5307 5307 5308 530.7 1061.4 5307 1984-07-13 2024-10-11 01:28:27.000 1984-07-13 2024-10-11 01:28:27 +5308 5308 5309 530.8 1061.6000000000001 5308 1984-07-14 2024-10-11 01:28:28.000 1984-07-14 2024-10-11 01:28:28 +5309 5309 5310 530.9 1061.8 5309 1984-07-15 2024-10-11 01:28:29.000 1984-07-15 2024-10-11 01:28:29 +5311 5311 5312 531.1 1062.2 5311 1984-07-17 2024-10-11 01:28:31.000 1984-07-17 2024-10-11 01:28:31 +5312 5312 5313 531.2 1062.4 5312 1984-07-18 2024-10-11 01:28:32.000 1984-07-18 2024-10-11 01:28:32 +5313 5313 5314 531.3 1062.6000000000001 5313 1984-07-19 2024-10-11 01:28:33.000 1984-07-19 2024-10-11 01:28:33 +5314 5314 5315 531.4 1062.8 5314 1984-07-20 2024-10-11 01:28:34.000 1984-07-20 2024-10-11 01:28:34 +5316 5316 5317 531.6 1063.2 5316 1984-07-22 2024-10-11 01:28:36.000 1984-07-22 2024-10-11 01:28:36 +5317 5317 5318 531.7 1063.4 5317 1984-07-23 2024-10-11 01:28:37.000 1984-07-23 2024-10-11 01:28:37 +5318 5318 5319 531.8 1063.6000000000001 5318 1984-07-24 2024-10-11 01:28:38.000 1984-07-24 2024-10-11 01:28:38 +5319 5319 5320 531.9 1063.8 5319 1984-07-25 2024-10-11 01:28:39.000 1984-07-25 2024-10-11 01:28:39 +5321 5321 5322 532.1 1064.2 5321 1984-07-27 2024-10-11 01:28:41.000 1984-07-27 2024-10-11 01:28:41 +5322 5322 5323 532.2 1064.4 5322 1984-07-28 2024-10-11 01:28:42.000 1984-07-28 2024-10-11 01:28:42 +5323 5323 5324 532.3 1064.6000000000001 5323 1984-07-29 2024-10-11 01:28:43.000 1984-07-29 2024-10-11 01:28:43 +5324 5324 5325 532.4 1064.8 5324 1984-07-30 2024-10-11 01:28:44.000 1984-07-30 2024-10-11 01:28:44 +5326 5326 5327 532.6 1065.2 5326 1984-08-01 2024-10-11 01:28:46.000 1984-08-01 2024-10-11 01:28:46 +5327 5327 5328 532.7 1065.4 5327 1984-08-02 2024-10-11 01:28:47.000 1984-08-02 2024-10-11 01:28:47 +5328 5328 5329 532.8 1065.6000000000001 5328 1984-08-03 2024-10-11 01:28:48.000 1984-08-03 2024-10-11 01:28:48 +5329 5329 5330 532.9 1065.8 5329 1984-08-04 2024-10-11 01:28:49.000 1984-08-04 2024-10-11 01:28:49 +5331 5331 5332 533.1 1066.2 5331 1984-08-06 2024-10-11 01:28:51.000 1984-08-06 2024-10-11 01:28:51 +5332 5332 5333 533.2 1066.4 5332 1984-08-07 2024-10-11 01:28:52.000 1984-08-07 2024-10-11 01:28:52 +5333 5333 5334 533.3 1066.6000000000001 5333 1984-08-08 2024-10-11 01:28:53.000 1984-08-08 2024-10-11 01:28:53 +5334 5334 5335 533.4 1066.8 5334 1984-08-09 2024-10-11 01:28:54.000 1984-08-09 2024-10-11 01:28:54 +5336 5336 5337 533.6 1067.2 5336 1984-08-11 2024-10-11 01:28:56.000 1984-08-11 2024-10-11 01:28:56 +5337 5337 5338 533.7 1067.4 5337 1984-08-12 2024-10-11 01:28:57.000 1984-08-12 2024-10-11 01:28:57 +5338 5338 5339 533.8 1067.6000000000001 5338 1984-08-13 2024-10-11 01:28:58.000 1984-08-13 2024-10-11 01:28:58 +5339 5339 5340 533.9 1067.8 5339 1984-08-14 2024-10-11 01:28:59.000 1984-08-14 2024-10-11 01:28:59 +5341 5341 5342 534.1 1068.2 5341 1984-08-16 2024-10-11 01:29:01.000 1984-08-16 2024-10-11 01:29:01 +5342 5342 5343 534.2 1068.4 5342 1984-08-17 2024-10-11 01:29:02.000 1984-08-17 2024-10-11 01:29:02 +5343 5343 5344 534.3 1068.6000000000001 5343 1984-08-18 2024-10-11 01:29:03.000 1984-08-18 2024-10-11 01:29:03 +5344 5344 5345 534.4 1068.8 5344 1984-08-19 2024-10-11 01:29:04.000 1984-08-19 2024-10-11 01:29:04 +5346 5346 5347 534.6 1069.2 5346 1984-08-21 2024-10-11 01:29:06.000 1984-08-21 2024-10-11 01:29:06 +5347 5347 5348 534.7 1069.4 5347 1984-08-22 2024-10-11 01:29:07.000 1984-08-22 2024-10-11 01:29:07 +5348 5348 5349 534.8 1069.6000000000001 5348 1984-08-23 2024-10-11 01:29:08.000 1984-08-23 2024-10-11 01:29:08 +5349 5349 5350 534.9 1069.8 5349 1984-08-24 2024-10-11 01:29:09.000 1984-08-24 2024-10-11 01:29:09 +5351 5351 5352 535.1 1070.2 5351 1984-08-26 2024-10-11 01:29:11.000 1984-08-26 2024-10-11 01:29:11 +5352 5352 5353 535.2 1070.4 5352 1984-08-27 2024-10-11 01:29:12.000 1984-08-27 2024-10-11 01:29:12 +5353 5353 5354 535.3 1070.6000000000001 5353 1984-08-28 2024-10-11 01:29:13.000 1984-08-28 2024-10-11 01:29:13 +5354 5354 5355 535.4 1070.8 5354 1984-08-29 2024-10-11 01:29:14.000 1984-08-29 2024-10-11 01:29:14 +5356 5356 5357 535.6 1071.2 5356 1984-08-31 2024-10-11 01:29:16.000 1984-08-31 2024-10-11 01:29:16 +5357 5357 5358 535.7 1071.4 5357 1984-09-01 2024-10-11 01:29:17.000 1984-09-01 2024-10-11 01:29:17 +5358 5358 5359 535.8 1071.6000000000001 5358 1984-09-02 2024-10-11 01:29:18.000 1984-09-02 2024-10-11 01:29:18 +5359 5359 5360 535.9 1071.8 5359 1984-09-03 2024-10-11 01:29:19.000 1984-09-03 2024-10-11 01:29:19 +5361 5361 5362 536.1 1072.2 5361 1984-09-05 2024-10-11 01:29:21.000 1984-09-05 2024-10-11 01:29:21 +5362 5362 5363 536.2 1072.4 5362 1984-09-06 2024-10-11 01:29:22.000 1984-09-06 2024-10-11 01:29:22 +5363 5363 5364 536.3 1072.6000000000001 5363 1984-09-07 2024-10-11 01:29:23.000 1984-09-07 2024-10-11 01:29:23 +5364 5364 5365 536.4 1072.8 5364 1984-09-08 2024-10-11 01:29:24.000 1984-09-08 2024-10-11 01:29:24 +5366 5366 5367 536.6 1073.2 5366 1984-09-10 2024-10-11 01:29:26.000 1984-09-10 2024-10-11 01:29:26 +5367 5367 5368 536.7 1073.4 5367 1984-09-11 2024-10-11 01:29:27.000 1984-09-11 2024-10-11 01:29:27 +5368 5368 5369 536.8 1073.6000000000001 5368 1984-09-12 2024-10-11 01:29:28.000 1984-09-12 2024-10-11 01:29:28 +5369 5369 5370 536.9 1073.8 5369 1984-09-13 2024-10-11 01:29:29.000 1984-09-13 2024-10-11 01:29:29 +5371 5371 5372 537.1 1074.2 5371 1984-09-15 2024-10-11 01:29:31.000 1984-09-15 2024-10-11 01:29:31 +5372 5372 5373 537.2 1074.4 5372 1984-09-16 2024-10-11 01:29:32.000 1984-09-16 2024-10-11 01:29:32 +5373 5373 5374 537.3 1074.6000000000001 5373 1984-09-17 2024-10-11 01:29:33.000 1984-09-17 2024-10-11 01:29:33 +5374 5374 5375 537.4 1074.8 5374 1984-09-18 2024-10-11 01:29:34.000 1984-09-18 2024-10-11 01:29:34 +5376 5376 5377 537.6 1075.2 5376 1984-09-20 2024-10-11 01:29:36.000 1984-09-20 2024-10-11 01:29:36 +5377 5377 5378 537.7 1075.4 5377 1984-09-21 2024-10-11 01:29:37.000 1984-09-21 2024-10-11 01:29:37 +5378 5378 5379 537.8 1075.6000000000001 5378 1984-09-22 2024-10-11 01:29:38.000 1984-09-22 2024-10-11 01:29:38 +5379 5379 5380 537.9 1075.8 5379 1984-09-23 2024-10-11 01:29:39.000 1984-09-23 2024-10-11 01:29:39 +5381 5381 5382 538.1 1076.2 5381 1984-09-25 2024-10-11 01:29:41.000 1984-09-25 2024-10-11 01:29:41 +5382 5382 5383 538.2 1076.4 5382 1984-09-26 2024-10-11 01:29:42.000 1984-09-26 2024-10-11 01:29:42 +5383 5383 5384 538.3 1076.6000000000001 5383 1984-09-27 2024-10-11 01:29:43.000 1984-09-27 2024-10-11 01:29:43 +5384 5384 5385 538.4 1076.8 5384 1984-09-28 2024-10-11 01:29:44.000 1984-09-28 2024-10-11 01:29:44 +5386 5386 5387 538.6 1077.2 5386 1984-09-30 2024-10-11 01:29:46.000 1984-09-30 2024-10-11 01:29:46 +5387 5387 5388 538.7 1077.4 5387 1984-10-01 2024-10-11 01:29:47.000 1984-10-01 2024-10-11 01:29:47 +5388 5388 5389 538.8 1077.6000000000001 5388 1984-10-02 2024-10-11 01:29:48.000 1984-10-02 2024-10-11 01:29:48 +5389 5389 5390 538.9 1077.8 5389 1984-10-03 2024-10-11 01:29:49.000 1984-10-03 2024-10-11 01:29:49 +5391 5391 5392 539.1 1078.2 5391 1984-10-05 2024-10-11 01:29:51.000 1984-10-05 2024-10-11 01:29:51 +5392 5392 5393 539.2 1078.4 5392 1984-10-06 2024-10-11 01:29:52.000 1984-10-06 2024-10-11 01:29:52 +5393 5393 5394 539.3 1078.6000000000001 5393 1984-10-07 2024-10-11 01:29:53.000 1984-10-07 2024-10-11 01:29:53 +5394 5394 5395 539.4 1078.8 5394 1984-10-08 2024-10-11 01:29:54.000 1984-10-08 2024-10-11 01:29:54 +5396 5396 5397 539.6 1079.2 5396 1984-10-10 2024-10-11 01:29:56.000 1984-10-10 2024-10-11 01:29:56 +5397 5397 5398 539.7 1079.4 5397 1984-10-11 2024-10-11 01:29:57.000 1984-10-11 2024-10-11 01:29:57 +5398 5398 5399 539.8 1079.6000000000001 5398 1984-10-12 2024-10-11 01:29:58.000 1984-10-12 2024-10-11 01:29:58 +5399 5399 5400 539.9 1079.8 5399 1984-10-13 2024-10-11 01:29:59.000 1984-10-13 2024-10-11 01:29:59 +5401 5401 5402 540.1 1080.2 5401 1984-10-15 2024-10-11 01:30:01.000 1984-10-15 2024-10-11 01:30:01 +5402 5402 5403 540.2 1080.4 5402 1984-10-16 2024-10-11 01:30:02.000 1984-10-16 2024-10-11 01:30:02 +5403 5403 5404 540.3 1080.6000000000001 5403 1984-10-17 2024-10-11 01:30:03.000 1984-10-17 2024-10-11 01:30:03 +5404 5404 5405 540.4 1080.8 5404 1984-10-18 2024-10-11 01:30:04.000 1984-10-18 2024-10-11 01:30:04 +5406 5406 5407 540.6 1081.2 5406 1984-10-20 2024-10-11 01:30:06.000 1984-10-20 2024-10-11 01:30:06 +5407 5407 5408 540.7 1081.4 5407 1984-10-21 2024-10-11 01:30:07.000 1984-10-21 2024-10-11 01:30:07 +5408 5408 5409 540.8 1081.6000000000001 5408 1984-10-22 2024-10-11 01:30:08.000 1984-10-22 2024-10-11 01:30:08 +5409 5409 5410 540.9 1081.8 5409 1984-10-23 2024-10-11 01:30:09.000 1984-10-23 2024-10-11 01:30:09 +5411 5411 5412 541.1 1082.2 5411 1984-10-25 2024-10-11 01:30:11.000 1984-10-25 2024-10-11 01:30:11 +5412 5412 5413 541.2 1082.4 5412 1984-10-26 2024-10-11 01:30:12.000 1984-10-26 2024-10-11 01:30:12 +5413 5413 5414 541.3 1082.6000000000001 5413 1984-10-27 2024-10-11 01:30:13.000 1984-10-27 2024-10-11 01:30:13 +5414 5414 5415 541.4 1082.8 5414 1984-10-28 2024-10-11 01:30:14.000 1984-10-28 2024-10-11 01:30:14 +5416 5416 5417 541.6 1083.2 5416 1984-10-30 2024-10-11 01:30:16.000 1984-10-30 2024-10-11 01:30:16 +5417 5417 5418 541.7 1083.4 5417 1984-10-31 2024-10-11 01:30:17.000 1984-10-31 2024-10-11 01:30:17 +5418 5418 5419 541.8 1083.6000000000001 5418 1984-11-01 2024-10-11 01:30:18.000 1984-11-01 2024-10-11 01:30:18 +5419 5419 5420 541.9 1083.8 5419 1984-11-02 2024-10-11 01:30:19.000 1984-11-02 2024-10-11 01:30:19 +5421 5421 5422 542.1 1084.2 5421 1984-11-04 2024-10-11 01:30:21.000 1984-11-04 2024-10-11 01:30:21 +5422 5422 5423 542.2 1084.4 5422 1984-11-05 2024-10-11 01:30:22.000 1984-11-05 2024-10-11 01:30:22 +5423 5423 5424 542.3 1084.6000000000001 5423 1984-11-06 2024-10-11 01:30:23.000 1984-11-06 2024-10-11 01:30:23 +5424 5424 5425 542.4 1084.8 5424 1984-11-07 2024-10-11 01:30:24.000 1984-11-07 2024-10-11 01:30:24 +5426 5426 5427 542.6 1085.2 5426 1984-11-09 2024-10-11 01:30:26.000 1984-11-09 2024-10-11 01:30:26 +5427 5427 5428 542.7 1085.4 5427 1984-11-10 2024-10-11 01:30:27.000 1984-11-10 2024-10-11 01:30:27 +5428 5428 5429 542.8 1085.6000000000001 5428 1984-11-11 2024-10-11 01:30:28.000 1984-11-11 2024-10-11 01:30:28 +5429 5429 5430 542.9 1085.8 5429 1984-11-12 2024-10-11 01:30:29.000 1984-11-12 2024-10-11 01:30:29 +5431 5431 5432 543.1 1086.2 5431 1984-11-14 2024-10-11 01:30:31.000 1984-11-14 2024-10-11 01:30:31 +5432 5432 5433 543.2 1086.4 5432 1984-11-15 2024-10-11 01:30:32.000 1984-11-15 2024-10-11 01:30:32 +5433 5433 5434 543.3 1086.6000000000001 5433 1984-11-16 2024-10-11 01:30:33.000 1984-11-16 2024-10-11 01:30:33 +5434 5434 5435 543.4 1086.8 5434 1984-11-17 2024-10-11 01:30:34.000 1984-11-17 2024-10-11 01:30:34 +5436 5436 5437 543.6 1087.2 5436 1984-11-19 2024-10-11 01:30:36.000 1984-11-19 2024-10-11 01:30:36 +5437 5437 5438 543.7 1087.4 5437 1984-11-20 2024-10-11 01:30:37.000 1984-11-20 2024-10-11 01:30:37 +5438 5438 5439 543.8 1087.6000000000001 5438 1984-11-21 2024-10-11 01:30:38.000 1984-11-21 2024-10-11 01:30:38 +5439 5439 5440 543.9 1087.8 5439 1984-11-22 2024-10-11 01:30:39.000 1984-11-22 2024-10-11 01:30:39 +5441 5441 5442 544.1 1088.2 5441 1984-11-24 2024-10-11 01:30:41.000 1984-11-24 2024-10-11 01:30:41 +5442 5442 5443 544.2 1088.4 5442 1984-11-25 2024-10-11 01:30:42.000 1984-11-25 2024-10-11 01:30:42 +5443 5443 5444 544.3 1088.6000000000001 5443 1984-11-26 2024-10-11 01:30:43.000 1984-11-26 2024-10-11 01:30:43 +5444 5444 5445 544.4 1088.8 5444 1984-11-27 2024-10-11 01:30:44.000 1984-11-27 2024-10-11 01:30:44 +5446 5446 5447 544.6 1089.2 5446 1984-11-29 2024-10-11 01:30:46.000 1984-11-29 2024-10-11 01:30:46 +5447 5447 5448 544.7 1089.4 5447 1984-11-30 2024-10-11 01:30:47.000 1984-11-30 2024-10-11 01:30:47 +5448 5448 5449 544.8 1089.6000000000001 5448 1984-12-01 2024-10-11 01:30:48.000 1984-12-01 2024-10-11 01:30:48 +5449 5449 5450 544.9 1089.8 5449 1984-12-02 2024-10-11 01:30:49.000 1984-12-02 2024-10-11 01:30:49 +5451 5451 5452 545.1 1090.2 5451 1984-12-04 2024-10-11 01:30:51.000 1984-12-04 2024-10-11 01:30:51 +5452 5452 5453 545.2 1090.4 5452 1984-12-05 2024-10-11 01:30:52.000 1984-12-05 2024-10-11 01:30:52 +5453 5453 5454 545.3 1090.6000000000001 5453 1984-12-06 2024-10-11 01:30:53.000 1984-12-06 2024-10-11 01:30:53 +5454 5454 5455 545.4 1090.8 5454 1984-12-07 2024-10-11 01:30:54.000 1984-12-07 2024-10-11 01:30:54 +5456 5456 5457 545.6 1091.2 5456 1984-12-09 2024-10-11 01:30:56.000 1984-12-09 2024-10-11 01:30:56 +5457 5457 5458 545.7 1091.4 5457 1984-12-10 2024-10-11 01:30:57.000 1984-12-10 2024-10-11 01:30:57 +5458 5458 5459 545.8 1091.6000000000001 5458 1984-12-11 2024-10-11 01:30:58.000 1984-12-11 2024-10-11 01:30:58 +5459 5459 5460 545.9 1091.8 5459 1984-12-12 2024-10-11 01:30:59.000 1984-12-12 2024-10-11 01:30:59 +5461 5461 5462 546.1 1092.2 5461 1984-12-14 2024-10-11 01:31:01.000 1984-12-14 2024-10-11 01:31:01 +5462 5462 5463 546.2 1092.4 5462 1984-12-15 2024-10-11 01:31:02.000 1984-12-15 2024-10-11 01:31:02 +5463 5463 5464 546.3 1092.6000000000001 5463 1984-12-16 2024-10-11 01:31:03.000 1984-12-16 2024-10-11 01:31:03 +5464 5464 5465 546.4 1092.8 5464 1984-12-17 2024-10-11 01:31:04.000 1984-12-17 2024-10-11 01:31:04 +5466 5466 5467 546.6 1093.2 5466 1984-12-19 2024-10-11 01:31:06.000 1984-12-19 2024-10-11 01:31:06 +5467 5467 5468 546.7 1093.4 5467 1984-12-20 2024-10-11 01:31:07.000 1984-12-20 2024-10-11 01:31:07 +5468 5468 5469 546.8 1093.6000000000001 5468 1984-12-21 2024-10-11 01:31:08.000 1984-12-21 2024-10-11 01:31:08 +5469 5469 5470 546.9 1093.8 5469 1984-12-22 2024-10-11 01:31:09.000 1984-12-22 2024-10-11 01:31:09 +5471 5471 5472 547.1 1094.2 5471 1984-12-24 2024-10-11 01:31:11.000 1984-12-24 2024-10-11 01:31:11 +5472 5472 5473 547.2 1094.4 5472 1984-12-25 2024-10-11 01:31:12.000 1984-12-25 2024-10-11 01:31:12 +5473 5473 5474 547.3 1094.6000000000001 5473 1984-12-26 2024-10-11 01:31:13.000 1984-12-26 2024-10-11 01:31:13 +5474 5474 5475 547.4 1094.8 5474 1984-12-27 2024-10-11 01:31:14.000 1984-12-27 2024-10-11 01:31:14 +5476 5476 5477 547.6 1095.2 5476 1984-12-29 2024-10-11 01:31:16.000 1984-12-29 2024-10-11 01:31:16 +5477 5477 5478 547.7 1095.4 5477 1984-12-30 2024-10-11 01:31:17.000 1984-12-30 2024-10-11 01:31:17 +5478 5478 5479 547.8 1095.6000000000001 5478 1984-12-31 2024-10-11 01:31:18.000 1984-12-31 2024-10-11 01:31:18 +5479 5479 5480 547.9 1095.8 5479 1985-01-01 2024-10-11 01:31:19.000 1985-01-01 2024-10-11 01:31:19 +5481 5481 5482 548.1 1096.2 5481 1985-01-03 2024-10-11 01:31:21.000 1985-01-03 2024-10-11 01:31:21 +5482 5482 5483 548.2 1096.4 5482 1985-01-04 2024-10-11 01:31:22.000 1985-01-04 2024-10-11 01:31:22 +5483 5483 5484 548.3 1096.6000000000001 5483 1985-01-05 2024-10-11 01:31:23.000 1985-01-05 2024-10-11 01:31:23 +5484 5484 5485 548.4 1096.8 5484 1985-01-06 2024-10-11 01:31:24.000 1985-01-06 2024-10-11 01:31:24 +5486 5486 5487 548.6 1097.2 5486 1985-01-08 2024-10-11 01:31:26.000 1985-01-08 2024-10-11 01:31:26 +5487 5487 5488 548.7 1097.4 5487 1985-01-09 2024-10-11 01:31:27.000 1985-01-09 2024-10-11 01:31:27 +5488 5488 5489 548.8 1097.6000000000001 5488 1985-01-10 2024-10-11 01:31:28.000 1985-01-10 2024-10-11 01:31:28 +5489 5489 5490 548.9 1097.8 5489 1985-01-11 2024-10-11 01:31:29.000 1985-01-11 2024-10-11 01:31:29 +5491 5491 5492 549.1 1098.2 5491 1985-01-13 2024-10-11 01:31:31.000 1985-01-13 2024-10-11 01:31:31 +5492 5492 5493 549.2 1098.4 5492 1985-01-14 2024-10-11 01:31:32.000 1985-01-14 2024-10-11 01:31:32 +5493 5493 5494 549.3 1098.6000000000001 5493 1985-01-15 2024-10-11 01:31:33.000 1985-01-15 2024-10-11 01:31:33 +5494 5494 5495 549.4 1098.8 5494 1985-01-16 2024-10-11 01:31:34.000 1985-01-16 2024-10-11 01:31:34 +5496 5496 5497 549.6 1099.2 5496 1985-01-18 2024-10-11 01:31:36.000 1985-01-18 2024-10-11 01:31:36 +5497 5497 5498 549.7 1099.4 5497 1985-01-19 2024-10-11 01:31:37.000 1985-01-19 2024-10-11 01:31:37 +5498 5498 5499 549.8 1099.6000000000001 5498 1985-01-20 2024-10-11 01:31:38.000 1985-01-20 2024-10-11 01:31:38 +5499 5499 5500 549.9 1099.8 5499 1985-01-21 2024-10-11 01:31:39.000 1985-01-21 2024-10-11 01:31:39 +5501 5501 5502 550.1 1100.2 5501 1985-01-23 2024-10-11 01:31:41.000 1985-01-23 2024-10-11 01:31:41 +5502 5502 5503 550.2 1100.4 5502 1985-01-24 2024-10-11 01:31:42.000 1985-01-24 2024-10-11 01:31:42 +5503 5503 5504 550.3 1100.6000000000001 5503 1985-01-25 2024-10-11 01:31:43.000 1985-01-25 2024-10-11 01:31:43 +5504 5504 5505 550.4 1100.8 5504 1985-01-26 2024-10-11 01:31:44.000 1985-01-26 2024-10-11 01:31:44 +5506 5506 5507 550.6 1101.2 5506 1985-01-28 2024-10-11 01:31:46.000 1985-01-28 2024-10-11 01:31:46 +5507 5507 5508 550.7 1101.4 5507 1985-01-29 2024-10-11 01:31:47.000 1985-01-29 2024-10-11 01:31:47 +5508 5508 5509 550.8 1101.6000000000001 5508 1985-01-30 2024-10-11 01:31:48.000 1985-01-30 2024-10-11 01:31:48 +5509 5509 5510 550.9 1101.8 5509 1985-01-31 2024-10-11 01:31:49.000 1985-01-31 2024-10-11 01:31:49 +5511 5511 5512 551.1 1102.2 5511 1985-02-02 2024-10-11 01:31:51.000 1985-02-02 2024-10-11 01:31:51 +5512 5512 5513 551.2 1102.4 5512 1985-02-03 2024-10-11 01:31:52.000 1985-02-03 2024-10-11 01:31:52 +5513 5513 5514 551.3 1102.6000000000001 5513 1985-02-04 2024-10-11 01:31:53.000 1985-02-04 2024-10-11 01:31:53 +5514 5514 5515 551.4 1102.8 5514 1985-02-05 2024-10-11 01:31:54.000 1985-02-05 2024-10-11 01:31:54 +5516 5516 5517 551.6 1103.2 5516 1985-02-07 2024-10-11 01:31:56.000 1985-02-07 2024-10-11 01:31:56 +5517 5517 5518 551.7 1103.4 5517 1985-02-08 2024-10-11 01:31:57.000 1985-02-08 2024-10-11 01:31:57 +5518 5518 5519 551.8 1103.6000000000001 5518 1985-02-09 2024-10-11 01:31:58.000 1985-02-09 2024-10-11 01:31:58 +5519 5519 5520 551.9 1103.8 5519 1985-02-10 2024-10-11 01:31:59.000 1985-02-10 2024-10-11 01:31:59 +5521 5521 5522 552.1 1104.2 5521 1985-02-12 2024-10-11 01:32:01.000 1985-02-12 2024-10-11 01:32:01 +5522 5522 5523 552.2 1104.4 5522 1985-02-13 2024-10-11 01:32:02.000 1985-02-13 2024-10-11 01:32:02 +5523 5523 5524 552.3 1104.6000000000001 5523 1985-02-14 2024-10-11 01:32:03.000 1985-02-14 2024-10-11 01:32:03 +5524 5524 5525 552.4 1104.8 5524 1985-02-15 2024-10-11 01:32:04.000 1985-02-15 2024-10-11 01:32:04 +5526 5526 5527 552.6 1105.2 5526 1985-02-17 2024-10-11 01:32:06.000 1985-02-17 2024-10-11 01:32:06 +5527 5527 5528 552.7 1105.4 5527 1985-02-18 2024-10-11 01:32:07.000 1985-02-18 2024-10-11 01:32:07 +5528 5528 5529 552.8 1105.6000000000001 5528 1985-02-19 2024-10-11 01:32:08.000 1985-02-19 2024-10-11 01:32:08 +5529 5529 5530 552.9 1105.8 5529 1985-02-20 2024-10-11 01:32:09.000 1985-02-20 2024-10-11 01:32:09 +5531 5531 5532 553.1 1106.2 5531 1985-02-22 2024-10-11 01:32:11.000 1985-02-22 2024-10-11 01:32:11 +5532 5532 5533 553.2 1106.4 5532 1985-02-23 2024-10-11 01:32:12.000 1985-02-23 2024-10-11 01:32:12 +5533 5533 5534 553.3 1106.6000000000001 5533 1985-02-24 2024-10-11 01:32:13.000 1985-02-24 2024-10-11 01:32:13 +5534 5534 5535 553.4 1106.8 5534 1985-02-25 2024-10-11 01:32:14.000 1985-02-25 2024-10-11 01:32:14 +5536 5536 5537 553.6 1107.2 5536 1985-02-27 2024-10-11 01:32:16.000 1985-02-27 2024-10-11 01:32:16 +5537 5537 5538 553.7 1107.4 5537 1985-02-28 2024-10-11 01:32:17.000 1985-02-28 2024-10-11 01:32:17 +5538 5538 5539 553.8 1107.6000000000001 5538 1985-03-01 2024-10-11 01:32:18.000 1985-03-01 2024-10-11 01:32:18 +5539 5539 5540 553.9 1107.8 5539 1985-03-02 2024-10-11 01:32:19.000 1985-03-02 2024-10-11 01:32:19 +5541 5541 5542 554.1 1108.2 5541 1985-03-04 2024-10-11 01:32:21.000 1985-03-04 2024-10-11 01:32:21 +5542 5542 5543 554.2 1108.4 5542 1985-03-05 2024-10-11 01:32:22.000 1985-03-05 2024-10-11 01:32:22 +5543 5543 5544 554.3 1108.6000000000001 5543 1985-03-06 2024-10-11 01:32:23.000 1985-03-06 2024-10-11 01:32:23 +5544 5544 5545 554.4 1108.8 5544 1985-03-07 2024-10-11 01:32:24.000 1985-03-07 2024-10-11 01:32:24 +5546 5546 5547 554.6 1109.2 5546 1985-03-09 2024-10-11 01:32:26.000 1985-03-09 2024-10-11 01:32:26 +5547 5547 5548 554.7 1109.4 5547 1985-03-10 2024-10-11 01:32:27.000 1985-03-10 2024-10-11 01:32:27 +5548 5548 5549 554.8 1109.6000000000001 5548 1985-03-11 2024-10-11 01:32:28.000 1985-03-11 2024-10-11 01:32:28 +5549 5549 5550 554.9 1109.8 5549 1985-03-12 2024-10-11 01:32:29.000 1985-03-12 2024-10-11 01:32:29 +5551 5551 5552 555.1 1110.2 5551 1985-03-14 2024-10-11 01:32:31.000 1985-03-14 2024-10-11 01:32:31 +5552 5552 5553 555.2 1110.4 5552 1985-03-15 2024-10-11 01:32:32.000 1985-03-15 2024-10-11 01:32:32 +5553 5553 5554 555.3 1110.6000000000001 5553 1985-03-16 2024-10-11 01:32:33.000 1985-03-16 2024-10-11 01:32:33 +5554 5554 5555 555.4 1110.8 5554 1985-03-17 2024-10-11 01:32:34.000 1985-03-17 2024-10-11 01:32:34 +5556 5556 5557 555.6 1111.2 5556 1985-03-19 2024-10-11 01:32:36.000 1985-03-19 2024-10-11 01:32:36 +5557 5557 5558 555.7 1111.4 5557 1985-03-20 2024-10-11 01:32:37.000 1985-03-20 2024-10-11 01:32:37 +5558 5558 5559 555.8 1111.6000000000001 5558 1985-03-21 2024-10-11 01:32:38.000 1985-03-21 2024-10-11 01:32:38 +5559 5559 5560 555.9 1111.8 5559 1985-03-22 2024-10-11 01:32:39.000 1985-03-22 2024-10-11 01:32:39 +5561 5561 5562 556.1 1112.2 5561 1985-03-24 2024-10-11 01:32:41.000 1985-03-24 2024-10-11 01:32:41 +5562 5562 5563 556.2 1112.4 5562 1985-03-25 2024-10-11 01:32:42.000 1985-03-25 2024-10-11 01:32:42 +5563 5563 5564 556.3 1112.6000000000001 5563 1985-03-26 2024-10-11 01:32:43.000 1985-03-26 2024-10-11 01:32:43 +5564 5564 5565 556.4 1112.8 5564 1985-03-27 2024-10-11 01:32:44.000 1985-03-27 2024-10-11 01:32:44 +5566 5566 5567 556.6 1113.2 5566 1985-03-29 2024-10-11 01:32:46.000 1985-03-29 2024-10-11 01:32:46 +5567 5567 5568 556.7 1113.4 5567 1985-03-30 2024-10-11 01:32:47.000 1985-03-30 2024-10-11 01:32:47 +5568 5568 5569 556.8 1113.6000000000001 5568 1985-03-31 2024-10-11 01:32:48.000 1985-03-31 2024-10-11 01:32:48 +5569 5569 5570 556.9 1113.8 5569 1985-04-01 2024-10-11 01:32:49.000 1985-04-01 2024-10-11 01:32:49 +5571 5571 5572 557.1 1114.2 5571 1985-04-03 2024-10-11 01:32:51.000 1985-04-03 2024-10-11 01:32:51 +5572 5572 5573 557.2 1114.4 5572 1985-04-04 2024-10-11 01:32:52.000 1985-04-04 2024-10-11 01:32:52 +5573 5573 5574 557.3 1114.6000000000001 5573 1985-04-05 2024-10-11 01:32:53.000 1985-04-05 2024-10-11 01:32:53 +5574 5574 5575 557.4 1114.8 5574 1985-04-06 2024-10-11 01:32:54.000 1985-04-06 2024-10-11 01:32:54 +5576 5576 5577 557.6 1115.2 5576 1985-04-08 2024-10-11 01:32:56.000 1985-04-08 2024-10-11 01:32:56 +5577 5577 5578 557.7 1115.4 5577 1985-04-09 2024-10-11 01:32:57.000 1985-04-09 2024-10-11 01:32:57 +5578 5578 5579 557.8 1115.6000000000001 5578 1985-04-10 2024-10-11 01:32:58.000 1985-04-10 2024-10-11 01:32:58 +5579 5579 5580 557.9 1115.8 5579 1985-04-11 2024-10-11 01:32:59.000 1985-04-11 2024-10-11 01:32:59 +5581 5581 5582 558.1 1116.2 5581 1985-04-13 2024-10-11 01:33:01.000 1985-04-13 2024-10-11 01:33:01 +5582 5582 5583 558.2 1116.4 5582 1985-04-14 2024-10-11 01:33:02.000 1985-04-14 2024-10-11 01:33:02 +5583 5583 5584 558.3 1116.6000000000001 5583 1985-04-15 2024-10-11 01:33:03.000 1985-04-15 2024-10-11 01:33:03 +5584 5584 5585 558.4 1116.8 5584 1985-04-16 2024-10-11 01:33:04.000 1985-04-16 2024-10-11 01:33:04 +5586 5586 5587 558.6 1117.2 5586 1985-04-18 2024-10-11 01:33:06.000 1985-04-18 2024-10-11 01:33:06 +5587 5587 5588 558.7 1117.4 5587 1985-04-19 2024-10-11 01:33:07.000 1985-04-19 2024-10-11 01:33:07 +5588 5588 5589 558.8 1117.6000000000001 5588 1985-04-20 2024-10-11 01:33:08.000 1985-04-20 2024-10-11 01:33:08 +5589 5589 5590 558.9 1117.8 5589 1985-04-21 2024-10-11 01:33:09.000 1985-04-21 2024-10-11 01:33:09 +5591 5591 5592 559.1 1118.2 5591 1985-04-23 2024-10-11 01:33:11.000 1985-04-23 2024-10-11 01:33:11 +5592 5592 5593 559.2 1118.4 5592 1985-04-24 2024-10-11 01:33:12.000 1985-04-24 2024-10-11 01:33:12 +5593 5593 5594 559.3 1118.6000000000001 5593 1985-04-25 2024-10-11 01:33:13.000 1985-04-25 2024-10-11 01:33:13 +5594 5594 5595 559.4 1118.8 5594 1985-04-26 2024-10-11 01:33:14.000 1985-04-26 2024-10-11 01:33:14 +5596 5596 5597 559.6 1119.2 5596 1985-04-28 2024-10-11 01:33:16.000 1985-04-28 2024-10-11 01:33:16 +5597 5597 5598 559.7 1119.4 5597 1985-04-29 2024-10-11 01:33:17.000 1985-04-29 2024-10-11 01:33:17 +5598 5598 5599 559.8 1119.6000000000001 5598 1985-04-30 2024-10-11 01:33:18.000 1985-04-30 2024-10-11 01:33:18 +5599 5599 5600 559.9 1119.8 5599 1985-05-01 2024-10-11 01:33:19.000 1985-05-01 2024-10-11 01:33:19 +5601 5601 5602 560.1 1120.2 5601 1985-05-03 2024-10-11 01:33:21.000 1985-05-03 2024-10-11 01:33:21 +5602 5602 5603 560.2 1120.4 5602 1985-05-04 2024-10-11 01:33:22.000 1985-05-04 2024-10-11 01:33:22 +5603 5603 5604 560.3 1120.6000000000001 5603 1985-05-05 2024-10-11 01:33:23.000 1985-05-05 2024-10-11 01:33:23 +5604 5604 5605 560.4 1120.8 5604 1985-05-06 2024-10-11 01:33:24.000 1985-05-06 2024-10-11 01:33:24 +5606 5606 5607 560.6 1121.2 5606 1985-05-08 2024-10-11 01:33:26.000 1985-05-08 2024-10-11 01:33:26 +5607 5607 5608 560.7 1121.4 5607 1985-05-09 2024-10-11 01:33:27.000 1985-05-09 2024-10-11 01:33:27 +5608 5608 5609 560.8 1121.6000000000001 5608 1985-05-10 2024-10-11 01:33:28.000 1985-05-10 2024-10-11 01:33:28 +5609 5609 5610 560.9 1121.8 5609 1985-05-11 2024-10-11 01:33:29.000 1985-05-11 2024-10-11 01:33:29 +5611 5611 5612 561.1 1122.2 5611 1985-05-13 2024-10-11 01:33:31.000 1985-05-13 2024-10-11 01:33:31 +5612 5612 5613 561.2 1122.4 5612 1985-05-14 2024-10-11 01:33:32.000 1985-05-14 2024-10-11 01:33:32 +5613 5613 5614 561.3 1122.6000000000001 5613 1985-05-15 2024-10-11 01:33:33.000 1985-05-15 2024-10-11 01:33:33 +5614 5614 5615 561.4 1122.8 5614 1985-05-16 2024-10-11 01:33:34.000 1985-05-16 2024-10-11 01:33:34 +5616 5616 5617 561.6 1123.2 5616 1985-05-18 2024-10-11 01:33:36.000 1985-05-18 2024-10-11 01:33:36 +5617 5617 5618 561.7 1123.4 5617 1985-05-19 2024-10-11 01:33:37.000 1985-05-19 2024-10-11 01:33:37 +5618 5618 5619 561.8 1123.6000000000001 5618 1985-05-20 2024-10-11 01:33:38.000 1985-05-20 2024-10-11 01:33:38 +5619 5619 5620 561.9 1123.8 5619 1985-05-21 2024-10-11 01:33:39.000 1985-05-21 2024-10-11 01:33:39 +5621 5621 5622 562.1 1124.2 5621 1985-05-23 2024-10-11 01:33:41.000 1985-05-23 2024-10-11 01:33:41 +5622 5622 5623 562.2 1124.4 5622 1985-05-24 2024-10-11 01:33:42.000 1985-05-24 2024-10-11 01:33:42 +5623 5623 5624 562.3 1124.6000000000001 5623 1985-05-25 2024-10-11 01:33:43.000 1985-05-25 2024-10-11 01:33:43 +5624 5624 5625 562.4 1124.8 5624 1985-05-26 2024-10-11 01:33:44.000 1985-05-26 2024-10-11 01:33:44 +5626 5626 5627 562.6 1125.2 5626 1985-05-28 2024-10-11 01:33:46.000 1985-05-28 2024-10-11 01:33:46 +5627 5627 5628 562.7 1125.4 5627 1985-05-29 2024-10-11 01:33:47.000 1985-05-29 2024-10-11 01:33:47 +5628 5628 5629 562.8 1125.6000000000001 5628 1985-05-30 2024-10-11 01:33:48.000 1985-05-30 2024-10-11 01:33:48 +5629 5629 5630 562.9 1125.8 5629 1985-05-31 2024-10-11 01:33:49.000 1985-05-31 2024-10-11 01:33:49 +5631 5631 5632 563.1 1126.2 5631 1985-06-02 2024-10-11 01:33:51.000 1985-06-02 2024-10-11 01:33:51 +5632 5632 5633 563.2 1126.4 5632 1985-06-03 2024-10-11 01:33:52.000 1985-06-03 2024-10-11 01:33:52 +5633 5633 5634 563.3 1126.6000000000001 5633 1985-06-04 2024-10-11 01:33:53.000 1985-06-04 2024-10-11 01:33:53 +5634 5634 5635 563.4 1126.8 5634 1985-06-05 2024-10-11 01:33:54.000 1985-06-05 2024-10-11 01:33:54 +5636 5636 5637 563.6 1127.2 5636 1985-06-07 2024-10-11 01:33:56.000 1985-06-07 2024-10-11 01:33:56 +5637 5637 5638 563.7 1127.4 5637 1985-06-08 2024-10-11 01:33:57.000 1985-06-08 2024-10-11 01:33:57 +5638 5638 5639 563.8 1127.6000000000001 5638 1985-06-09 2024-10-11 01:33:58.000 1985-06-09 2024-10-11 01:33:58 +5639 5639 5640 563.9 1127.8 5639 1985-06-10 2024-10-11 01:33:59.000 1985-06-10 2024-10-11 01:33:59 +5641 5641 5642 564.1 1128.2 5641 1985-06-12 2024-10-11 01:34:01.000 1985-06-12 2024-10-11 01:34:01 +5642 5642 5643 564.2 1128.4 5642 1985-06-13 2024-10-11 01:34:02.000 1985-06-13 2024-10-11 01:34:02 +5643 5643 5644 564.3 1128.6000000000001 5643 1985-06-14 2024-10-11 01:34:03.000 1985-06-14 2024-10-11 01:34:03 +5644 5644 5645 564.4 1128.8 5644 1985-06-15 2024-10-11 01:34:04.000 1985-06-15 2024-10-11 01:34:04 +5646 5646 5647 564.6 1129.2 5646 1985-06-17 2024-10-11 01:34:06.000 1985-06-17 2024-10-11 01:34:06 +5647 5647 5648 564.7 1129.4 5647 1985-06-18 2024-10-11 01:34:07.000 1985-06-18 2024-10-11 01:34:07 +5648 5648 5649 564.8 1129.6000000000001 5648 1985-06-19 2024-10-11 01:34:08.000 1985-06-19 2024-10-11 01:34:08 +5649 5649 5650 564.9 1129.8 5649 1985-06-20 2024-10-11 01:34:09.000 1985-06-20 2024-10-11 01:34:09 +5651 5651 5652 565.1 1130.2 5651 1985-06-22 2024-10-11 01:34:11.000 1985-06-22 2024-10-11 01:34:11 +5652 5652 5653 565.2 1130.4 5652 1985-06-23 2024-10-11 01:34:12.000 1985-06-23 2024-10-11 01:34:12 +5653 5653 5654 565.3 1130.6000000000001 5653 1985-06-24 2024-10-11 01:34:13.000 1985-06-24 2024-10-11 01:34:13 +5654 5654 5655 565.4 1130.8 5654 1985-06-25 2024-10-11 01:34:14.000 1985-06-25 2024-10-11 01:34:14 +5656 5656 5657 565.6 1131.2 5656 1985-06-27 2024-10-11 01:34:16.000 1985-06-27 2024-10-11 01:34:16 +5657 5657 5658 565.7 1131.4 5657 1985-06-28 2024-10-11 01:34:17.000 1985-06-28 2024-10-11 01:34:17 +5658 5658 5659 565.8 1131.6000000000001 5658 1985-06-29 2024-10-11 01:34:18.000 1985-06-29 2024-10-11 01:34:18 +5659 5659 5660 565.9 1131.8 5659 1985-06-30 2024-10-11 01:34:19.000 1985-06-30 2024-10-11 01:34:19 +5661 5661 5662 566.1 1132.2 5661 1985-07-02 2024-10-11 01:34:21.000 1985-07-02 2024-10-11 01:34:21 +5662 5662 5663 566.2 1132.4 5662 1985-07-03 2024-10-11 01:34:22.000 1985-07-03 2024-10-11 01:34:22 +5663 5663 5664 566.3 1132.6000000000001 5663 1985-07-04 2024-10-11 01:34:23.000 1985-07-04 2024-10-11 01:34:23 +5664 5664 5665 566.4 1132.8 5664 1985-07-05 2024-10-11 01:34:24.000 1985-07-05 2024-10-11 01:34:24 +5666 5666 5667 566.6 1133.2 5666 1985-07-07 2024-10-11 01:34:26.000 1985-07-07 2024-10-11 01:34:26 +5667 5667 5668 566.7 1133.4 5667 1985-07-08 2024-10-11 01:34:27.000 1985-07-08 2024-10-11 01:34:27 +5668 5668 5669 566.8 1133.6000000000001 5668 1985-07-09 2024-10-11 01:34:28.000 1985-07-09 2024-10-11 01:34:28 +5669 5669 5670 566.9 1133.8 5669 1985-07-10 2024-10-11 01:34:29.000 1985-07-10 2024-10-11 01:34:29 +5671 5671 5672 567.1 1134.2 5671 1985-07-12 2024-10-11 01:34:31.000 1985-07-12 2024-10-11 01:34:31 +5672 5672 5673 567.2 1134.4 5672 1985-07-13 2024-10-11 01:34:32.000 1985-07-13 2024-10-11 01:34:32 +5673 5673 5674 567.3 1134.6000000000001 5673 1985-07-14 2024-10-11 01:34:33.000 1985-07-14 2024-10-11 01:34:33 +5674 5674 5675 567.4 1134.8 5674 1985-07-15 2024-10-11 01:34:34.000 1985-07-15 2024-10-11 01:34:34 +5676 5676 5677 567.6 1135.2 5676 1985-07-17 2024-10-11 01:34:36.000 1985-07-17 2024-10-11 01:34:36 +5677 5677 5678 567.7 1135.4 5677 1985-07-18 2024-10-11 01:34:37.000 1985-07-18 2024-10-11 01:34:37 +5678 5678 5679 567.8 1135.6000000000001 5678 1985-07-19 2024-10-11 01:34:38.000 1985-07-19 2024-10-11 01:34:38 +5679 5679 5680 567.9 1135.8 5679 1985-07-20 2024-10-11 01:34:39.000 1985-07-20 2024-10-11 01:34:39 +5681 5681 5682 568.1 1136.2 5681 1985-07-22 2024-10-11 01:34:41.000 1985-07-22 2024-10-11 01:34:41 +5682 5682 5683 568.2 1136.4 5682 1985-07-23 2024-10-11 01:34:42.000 1985-07-23 2024-10-11 01:34:42 +5683 5683 5684 568.3 1136.6000000000001 5683 1985-07-24 2024-10-11 01:34:43.000 1985-07-24 2024-10-11 01:34:43 +5684 5684 5685 568.4 1136.8 5684 1985-07-25 2024-10-11 01:34:44.000 1985-07-25 2024-10-11 01:34:44 +5686 5686 5687 568.6 1137.2 5686 1985-07-27 2024-10-11 01:34:46.000 1985-07-27 2024-10-11 01:34:46 +5687 5687 5688 568.7 1137.4 5687 1985-07-28 2024-10-11 01:34:47.000 1985-07-28 2024-10-11 01:34:47 +5688 5688 5689 568.8 1137.6000000000001 5688 1985-07-29 2024-10-11 01:34:48.000 1985-07-29 2024-10-11 01:34:48 +5689 5689 5690 568.9 1137.8 5689 1985-07-30 2024-10-11 01:34:49.000 1985-07-30 2024-10-11 01:34:49 +5691 5691 5692 569.1 1138.2 5691 1985-08-01 2024-10-11 01:34:51.000 1985-08-01 2024-10-11 01:34:51 +5692 5692 5693 569.2 1138.4 5692 1985-08-02 2024-10-11 01:34:52.000 1985-08-02 2024-10-11 01:34:52 +5693 5693 5694 569.3 1138.6000000000001 5693 1985-08-03 2024-10-11 01:34:53.000 1985-08-03 2024-10-11 01:34:53 +5694 5694 5695 569.4 1138.8 5694 1985-08-04 2024-10-11 01:34:54.000 1985-08-04 2024-10-11 01:34:54 +5696 5696 5697 569.6 1139.2 5696 1985-08-06 2024-10-11 01:34:56.000 1985-08-06 2024-10-11 01:34:56 +5697 5697 5698 569.7 1139.4 5697 1985-08-07 2024-10-11 01:34:57.000 1985-08-07 2024-10-11 01:34:57 +5698 5698 5699 569.8 1139.6000000000001 5698 1985-08-08 2024-10-11 01:34:58.000 1985-08-08 2024-10-11 01:34:58 +5699 5699 5700 569.9 1139.8 5699 1985-08-09 2024-10-11 01:34:59.000 1985-08-09 2024-10-11 01:34:59 +5701 5701 5702 570.1 1140.2 5701 1985-08-11 2024-10-11 01:35:01.000 1985-08-11 2024-10-11 01:35:01 +5702 5702 5703 570.2 1140.4 5702 1985-08-12 2024-10-11 01:35:02.000 1985-08-12 2024-10-11 01:35:02 +5703 5703 5704 570.3 1140.6000000000001 5703 1985-08-13 2024-10-11 01:35:03.000 1985-08-13 2024-10-11 01:35:03 +5704 5704 5705 570.4 1140.8 5704 1985-08-14 2024-10-11 01:35:04.000 1985-08-14 2024-10-11 01:35:04 +5706 5706 5707 570.6 1141.2 5706 1985-08-16 2024-10-11 01:35:06.000 1985-08-16 2024-10-11 01:35:06 +5707 5707 5708 570.7 1141.4 5707 1985-08-17 2024-10-11 01:35:07.000 1985-08-17 2024-10-11 01:35:07 +5708 5708 5709 570.8 1141.6000000000001 5708 1985-08-18 2024-10-11 01:35:08.000 1985-08-18 2024-10-11 01:35:08 +5709 5709 5710 570.9 1141.8 5709 1985-08-19 2024-10-11 01:35:09.000 1985-08-19 2024-10-11 01:35:09 +5711 5711 5712 571.1 1142.2 5711 1985-08-21 2024-10-11 01:35:11.000 1985-08-21 2024-10-11 01:35:11 +5712 5712 5713 571.2 1142.4 5712 1985-08-22 2024-10-11 01:35:12.000 1985-08-22 2024-10-11 01:35:12 +5713 5713 5714 571.3 1142.6000000000001 5713 1985-08-23 2024-10-11 01:35:13.000 1985-08-23 2024-10-11 01:35:13 +5714 5714 5715 571.4 1142.8 5714 1985-08-24 2024-10-11 01:35:14.000 1985-08-24 2024-10-11 01:35:14 +5716 5716 5717 571.6 1143.2 5716 1985-08-26 2024-10-11 01:35:16.000 1985-08-26 2024-10-11 01:35:16 +5717 5717 5718 571.7 1143.4 5717 1985-08-27 2024-10-11 01:35:17.000 1985-08-27 2024-10-11 01:35:17 +5718 5718 5719 571.8 1143.6000000000001 5718 1985-08-28 2024-10-11 01:35:18.000 1985-08-28 2024-10-11 01:35:18 +5719 5719 5720 571.9 1143.8 5719 1985-08-29 2024-10-11 01:35:19.000 1985-08-29 2024-10-11 01:35:19 +5721 5721 5722 572.1 1144.2 5721 1985-08-31 2024-10-11 01:35:21.000 1985-08-31 2024-10-11 01:35:21 +5722 5722 5723 572.2 1144.4 5722 1985-09-01 2024-10-11 01:35:22.000 1985-09-01 2024-10-11 01:35:22 +5723 5723 5724 572.3 1144.6000000000001 5723 1985-09-02 2024-10-11 01:35:23.000 1985-09-02 2024-10-11 01:35:23 +5724 5724 5725 572.4 1144.8 5724 1985-09-03 2024-10-11 01:35:24.000 1985-09-03 2024-10-11 01:35:24 +5726 5726 5727 572.6 1145.2 5726 1985-09-05 2024-10-11 01:35:26.000 1985-09-05 2024-10-11 01:35:26 +5727 5727 5728 572.7 1145.4 5727 1985-09-06 2024-10-11 01:35:27.000 1985-09-06 2024-10-11 01:35:27 +5728 5728 5729 572.8 1145.6000000000001 5728 1985-09-07 2024-10-11 01:35:28.000 1985-09-07 2024-10-11 01:35:28 +5729 5729 5730 572.9 1145.8 5729 1985-09-08 2024-10-11 01:35:29.000 1985-09-08 2024-10-11 01:35:29 +5731 5731 5732 573.1 1146.2 5731 1985-09-10 2024-10-11 01:35:31.000 1985-09-10 2024-10-11 01:35:31 +5732 5732 5733 573.2 1146.4 5732 1985-09-11 2024-10-11 01:35:32.000 1985-09-11 2024-10-11 01:35:32 +5733 5733 5734 573.3 1146.6000000000001 5733 1985-09-12 2024-10-11 01:35:33.000 1985-09-12 2024-10-11 01:35:33 +5734 5734 5735 573.4 1146.8 5734 1985-09-13 2024-10-11 01:35:34.000 1985-09-13 2024-10-11 01:35:34 +5736 5736 5737 573.6 1147.2 5736 1985-09-15 2024-10-11 01:35:36.000 1985-09-15 2024-10-11 01:35:36 +5737 5737 5738 573.7 1147.4 5737 1985-09-16 2024-10-11 01:35:37.000 1985-09-16 2024-10-11 01:35:37 +5738 5738 5739 573.8 1147.6000000000001 5738 1985-09-17 2024-10-11 01:35:38.000 1985-09-17 2024-10-11 01:35:38 +5739 5739 5740 573.9 1147.8 5739 1985-09-18 2024-10-11 01:35:39.000 1985-09-18 2024-10-11 01:35:39 +5741 5741 5742 574.1 1148.2 5741 1985-09-20 2024-10-11 01:35:41.000 1985-09-20 2024-10-11 01:35:41 +5742 5742 5743 574.2 1148.4 5742 1985-09-21 2024-10-11 01:35:42.000 1985-09-21 2024-10-11 01:35:42 +5743 5743 5744 574.3 1148.6000000000001 5743 1985-09-22 2024-10-11 01:35:43.000 1985-09-22 2024-10-11 01:35:43 +5744 5744 5745 574.4 1148.8 5744 1985-09-23 2024-10-11 01:35:44.000 1985-09-23 2024-10-11 01:35:44 +5746 5746 5747 574.6 1149.2 5746 1985-09-25 2024-10-11 01:35:46.000 1985-09-25 2024-10-11 01:35:46 +5747 5747 5748 574.7 1149.4 5747 1985-09-26 2024-10-11 01:35:47.000 1985-09-26 2024-10-11 01:35:47 +5748 5748 5749 574.8 1149.6000000000001 5748 1985-09-27 2024-10-11 01:35:48.000 1985-09-27 2024-10-11 01:35:48 +5749 5749 5750 574.9 1149.8 5749 1985-09-28 2024-10-11 01:35:49.000 1985-09-28 2024-10-11 01:35:49 +5751 5751 5752 575.1 1150.2 5751 1985-09-30 2024-10-11 01:35:51.000 1985-09-30 2024-10-11 01:35:51 +5752 5752 5753 575.2 1150.4 5752 1985-10-01 2024-10-11 01:35:52.000 1985-10-01 2024-10-11 01:35:52 +5753 5753 5754 575.3 1150.6000000000001 5753 1985-10-02 2024-10-11 01:35:53.000 1985-10-02 2024-10-11 01:35:53 +5754 5754 5755 575.4 1150.8 5754 1985-10-03 2024-10-11 01:35:54.000 1985-10-03 2024-10-11 01:35:54 +5756 5756 5757 575.6 1151.2 5756 1985-10-05 2024-10-11 01:35:56.000 1985-10-05 2024-10-11 01:35:56 +5757 5757 5758 575.7 1151.4 5757 1985-10-06 2024-10-11 01:35:57.000 1985-10-06 2024-10-11 01:35:57 +5758 5758 5759 575.8 1151.6000000000001 5758 1985-10-07 2024-10-11 01:35:58.000 1985-10-07 2024-10-11 01:35:58 +5759 5759 5760 575.9 1151.8 5759 1985-10-08 2024-10-11 01:35:59.000 1985-10-08 2024-10-11 01:35:59 +5761 5761 5762 576.1 1152.2 5761 1985-10-10 2024-10-11 01:36:01.000 1985-10-10 2024-10-11 01:36:01 +5762 5762 5763 576.2 1152.4 5762 1985-10-11 2024-10-11 01:36:02.000 1985-10-11 2024-10-11 01:36:02 +5763 5763 5764 576.3 1152.6000000000001 5763 1985-10-12 2024-10-11 01:36:03.000 1985-10-12 2024-10-11 01:36:03 +5764 5764 5765 576.4 1152.8 5764 1985-10-13 2024-10-11 01:36:04.000 1985-10-13 2024-10-11 01:36:04 +5766 5766 5767 576.6 1153.2 5766 1985-10-15 2024-10-11 01:36:06.000 1985-10-15 2024-10-11 01:36:06 +5767 5767 5768 576.7 1153.4 5767 1985-10-16 2024-10-11 01:36:07.000 1985-10-16 2024-10-11 01:36:07 +5768 5768 5769 576.8 1153.6000000000001 5768 1985-10-17 2024-10-11 01:36:08.000 1985-10-17 2024-10-11 01:36:08 +5769 5769 5770 576.9 1153.8 5769 1985-10-18 2024-10-11 01:36:09.000 1985-10-18 2024-10-11 01:36:09 +5771 5771 5772 577.1 1154.2 5771 1985-10-20 2024-10-11 01:36:11.000 1985-10-20 2024-10-11 01:36:11 +5772 5772 5773 577.2 1154.4 5772 1985-10-21 2024-10-11 01:36:12.000 1985-10-21 2024-10-11 01:36:12 +5773 5773 5774 577.3 1154.6000000000001 5773 1985-10-22 2024-10-11 01:36:13.000 1985-10-22 2024-10-11 01:36:13 +5774 5774 5775 577.4 1154.8 5774 1985-10-23 2024-10-11 01:36:14.000 1985-10-23 2024-10-11 01:36:14 +5776 5776 5777 577.6 1155.2 5776 1985-10-25 2024-10-11 01:36:16.000 1985-10-25 2024-10-11 01:36:16 +5777 5777 5778 577.7 1155.4 5777 1985-10-26 2024-10-11 01:36:17.000 1985-10-26 2024-10-11 01:36:17 +5778 5778 5779 577.8 1155.6000000000001 5778 1985-10-27 2024-10-11 01:36:18.000 1985-10-27 2024-10-11 01:36:18 +5779 5779 5780 577.9 1155.8 5779 1985-10-28 2024-10-11 01:36:19.000 1985-10-28 2024-10-11 01:36:19 +5781 5781 5782 578.1 1156.2 5781 1985-10-30 2024-10-11 01:36:21.000 1985-10-30 2024-10-11 01:36:21 +5782 5782 5783 578.2 1156.4 5782 1985-10-31 2024-10-11 01:36:22.000 1985-10-31 2024-10-11 01:36:22 +5783 5783 5784 578.3 1156.6000000000001 5783 1985-11-01 2024-10-11 01:36:23.000 1985-11-01 2024-10-11 01:36:23 +5784 5784 5785 578.4 1156.8 5784 1985-11-02 2024-10-11 01:36:24.000 1985-11-02 2024-10-11 01:36:24 +5786 5786 5787 578.6 1157.2 5786 1985-11-04 2024-10-11 01:36:26.000 1985-11-04 2024-10-11 01:36:26 +5787 5787 5788 578.7 1157.4 5787 1985-11-05 2024-10-11 01:36:27.000 1985-11-05 2024-10-11 01:36:27 +5788 5788 5789 578.8 1157.6000000000001 5788 1985-11-06 2024-10-11 01:36:28.000 1985-11-06 2024-10-11 01:36:28 +5789 5789 5790 578.9 1157.8 5789 1985-11-07 2024-10-11 01:36:29.000 1985-11-07 2024-10-11 01:36:29 +5791 5791 5792 579.1 1158.2 5791 1985-11-09 2024-10-11 01:36:31.000 1985-11-09 2024-10-11 01:36:31 +5792 5792 5793 579.2 1158.4 5792 1985-11-10 2024-10-11 01:36:32.000 1985-11-10 2024-10-11 01:36:32 +5793 5793 5794 579.3 1158.6000000000001 5793 1985-11-11 2024-10-11 01:36:33.000 1985-11-11 2024-10-11 01:36:33 +5794 5794 5795 579.4 1158.8 5794 1985-11-12 2024-10-11 01:36:34.000 1985-11-12 2024-10-11 01:36:34 +5796 5796 5797 579.6 1159.2 5796 1985-11-14 2024-10-11 01:36:36.000 1985-11-14 2024-10-11 01:36:36 +5797 5797 5798 579.7 1159.4 5797 1985-11-15 2024-10-11 01:36:37.000 1985-11-15 2024-10-11 01:36:37 +5798 5798 5799 579.8 1159.6000000000001 5798 1985-11-16 2024-10-11 01:36:38.000 1985-11-16 2024-10-11 01:36:38 +5799 5799 5800 579.9 1159.8 5799 1985-11-17 2024-10-11 01:36:39.000 1985-11-17 2024-10-11 01:36:39 +5801 5801 5802 580.1 1160.2 5801 1985-11-19 2024-10-11 01:36:41.000 1985-11-19 2024-10-11 01:36:41 +5802 5802 5803 580.2 1160.4 5802 1985-11-20 2024-10-11 01:36:42.000 1985-11-20 2024-10-11 01:36:42 +5803 5803 5804 580.3 1160.6000000000001 5803 1985-11-21 2024-10-11 01:36:43.000 1985-11-21 2024-10-11 01:36:43 +5804 5804 5805 580.4 1160.8 5804 1985-11-22 2024-10-11 01:36:44.000 1985-11-22 2024-10-11 01:36:44 +5806 5806 5807 580.6 1161.2 5806 1985-11-24 2024-10-11 01:36:46.000 1985-11-24 2024-10-11 01:36:46 +5807 5807 5808 580.7 1161.4 5807 1985-11-25 2024-10-11 01:36:47.000 1985-11-25 2024-10-11 01:36:47 +5808 5808 5809 580.8 1161.6000000000001 5808 1985-11-26 2024-10-11 01:36:48.000 1985-11-26 2024-10-11 01:36:48 +5809 5809 5810 580.9 1161.8 5809 1985-11-27 2024-10-11 01:36:49.000 1985-11-27 2024-10-11 01:36:49 +5811 5811 5812 581.1 1162.2 5811 1985-11-29 2024-10-11 01:36:51.000 1985-11-29 2024-10-11 01:36:51 +5812 5812 5813 581.2 1162.4 5812 1985-11-30 2024-10-11 01:36:52.000 1985-11-30 2024-10-11 01:36:52 +5813 5813 5814 581.3 1162.6000000000001 5813 1985-12-01 2024-10-11 01:36:53.000 1985-12-01 2024-10-11 01:36:53 +5814 5814 5815 581.4 1162.8 5814 1985-12-02 2024-10-11 01:36:54.000 1985-12-02 2024-10-11 01:36:54 +5816 5816 5817 581.6 1163.2 5816 1985-12-04 2024-10-11 01:36:56.000 1985-12-04 2024-10-11 01:36:56 +5817 5817 5818 581.7 1163.4 5817 1985-12-05 2024-10-11 01:36:57.000 1985-12-05 2024-10-11 01:36:57 +5818 5818 5819 581.8 1163.6000000000001 5818 1985-12-06 2024-10-11 01:36:58.000 1985-12-06 2024-10-11 01:36:58 +5819 5819 5820 581.9 1163.8 5819 1985-12-07 2024-10-11 01:36:59.000 1985-12-07 2024-10-11 01:36:59 +5821 5821 5822 582.1 1164.2 5821 1985-12-09 2024-10-11 01:37:01.000 1985-12-09 2024-10-11 01:37:01 +5822 5822 5823 582.2 1164.4 5822 1985-12-10 2024-10-11 01:37:02.000 1985-12-10 2024-10-11 01:37:02 +5823 5823 5824 582.3 1164.6000000000001 5823 1985-12-11 2024-10-11 01:37:03.000 1985-12-11 2024-10-11 01:37:03 +5824 5824 5825 582.4 1164.8 5824 1985-12-12 2024-10-11 01:37:04.000 1985-12-12 2024-10-11 01:37:04 +5826 5826 5827 582.6 1165.2 5826 1985-12-14 2024-10-11 01:37:06.000 1985-12-14 2024-10-11 01:37:06 +5827 5827 5828 582.7 1165.4 5827 1985-12-15 2024-10-11 01:37:07.000 1985-12-15 2024-10-11 01:37:07 +5828 5828 5829 582.8 1165.6000000000001 5828 1985-12-16 2024-10-11 01:37:08.000 1985-12-16 2024-10-11 01:37:08 +5829 5829 5830 582.9 1165.8 5829 1985-12-17 2024-10-11 01:37:09.000 1985-12-17 2024-10-11 01:37:09 +5831 5831 5832 583.1 1166.2 5831 1985-12-19 2024-10-11 01:37:11.000 1985-12-19 2024-10-11 01:37:11 +5832 5832 5833 583.2 1166.4 5832 1985-12-20 2024-10-11 01:37:12.000 1985-12-20 2024-10-11 01:37:12 +5833 5833 5834 583.3 1166.6000000000001 5833 1985-12-21 2024-10-11 01:37:13.000 1985-12-21 2024-10-11 01:37:13 +5834 5834 5835 583.4 1166.8 5834 1985-12-22 2024-10-11 01:37:14.000 1985-12-22 2024-10-11 01:37:14 +5836 5836 5837 583.6 1167.2 5836 1985-12-24 2024-10-11 01:37:16.000 1985-12-24 2024-10-11 01:37:16 +5837 5837 5838 583.7 1167.4 5837 1985-12-25 2024-10-11 01:37:17.000 1985-12-25 2024-10-11 01:37:17 +5838 5838 5839 583.8 1167.6000000000001 5838 1985-12-26 2024-10-11 01:37:18.000 1985-12-26 2024-10-11 01:37:18 +5839 5839 5840 583.9 1167.8 5839 1985-12-27 2024-10-11 01:37:19.000 1985-12-27 2024-10-11 01:37:19 +5841 5841 5842 584.1 1168.2 5841 1985-12-29 2024-10-11 01:37:21.000 1985-12-29 2024-10-11 01:37:21 +5842 5842 5843 584.2 1168.4 5842 1985-12-30 2024-10-11 01:37:22.000 1985-12-30 2024-10-11 01:37:22 +5843 5843 5844 584.3 1168.6000000000001 5843 1985-12-31 2024-10-11 01:37:23.000 1985-12-31 2024-10-11 01:37:23 +5844 5844 5845 584.4 1168.8 5844 1986-01-01 2024-10-11 01:37:24.000 1986-01-01 2024-10-11 01:37:24 +5846 5846 5847 584.6 1169.2 5846 1986-01-03 2024-10-11 01:37:26.000 1986-01-03 2024-10-11 01:37:26 +5847 5847 5848 584.7 1169.4 5847 1986-01-04 2024-10-11 01:37:27.000 1986-01-04 2024-10-11 01:37:27 +5848 5848 5849 584.8 1169.6000000000001 5848 1986-01-05 2024-10-11 01:37:28.000 1986-01-05 2024-10-11 01:37:28 +5849 5849 5850 584.9 1169.8 5849 1986-01-06 2024-10-11 01:37:29.000 1986-01-06 2024-10-11 01:37:29 +5851 5851 5852 585.1 1170.2 5851 1986-01-08 2024-10-11 01:37:31.000 1986-01-08 2024-10-11 01:37:31 +5852 5852 5853 585.2 1170.4 5852 1986-01-09 2024-10-11 01:37:32.000 1986-01-09 2024-10-11 01:37:32 +5853 5853 5854 585.3 1170.6000000000001 5853 1986-01-10 2024-10-11 01:37:33.000 1986-01-10 2024-10-11 01:37:33 +5854 5854 5855 585.4 1170.8 5854 1986-01-11 2024-10-11 01:37:34.000 1986-01-11 2024-10-11 01:37:34 +5856 5856 5857 585.6 1171.2 5856 1986-01-13 2024-10-11 01:37:36.000 1986-01-13 2024-10-11 01:37:36 +5857 5857 5858 585.7 1171.4 5857 1986-01-14 2024-10-11 01:37:37.000 1986-01-14 2024-10-11 01:37:37 +5858 5858 5859 585.8 1171.6000000000001 5858 1986-01-15 2024-10-11 01:37:38.000 1986-01-15 2024-10-11 01:37:38 +5859 5859 5860 585.9 1171.8 5859 1986-01-16 2024-10-11 01:37:39.000 1986-01-16 2024-10-11 01:37:39 +5861 5861 5862 586.1 1172.2 5861 1986-01-18 2024-10-11 01:37:41.000 1986-01-18 2024-10-11 01:37:41 +5862 5862 5863 586.2 1172.4 5862 1986-01-19 2024-10-11 01:37:42.000 1986-01-19 2024-10-11 01:37:42 +5863 5863 5864 586.3 1172.6000000000001 5863 1986-01-20 2024-10-11 01:37:43.000 1986-01-20 2024-10-11 01:37:43 +5864 5864 5865 586.4 1172.8 5864 1986-01-21 2024-10-11 01:37:44.000 1986-01-21 2024-10-11 01:37:44 +5866 5866 5867 586.6 1173.2 5866 1986-01-23 2024-10-11 01:37:46.000 1986-01-23 2024-10-11 01:37:46 +5867 5867 5868 586.7 1173.4 5867 1986-01-24 2024-10-11 01:37:47.000 1986-01-24 2024-10-11 01:37:47 +5868 5868 5869 586.8 1173.6000000000001 5868 1986-01-25 2024-10-11 01:37:48.000 1986-01-25 2024-10-11 01:37:48 +5869 5869 5870 586.9 1173.8 5869 1986-01-26 2024-10-11 01:37:49.000 1986-01-26 2024-10-11 01:37:49 +5871 5871 5872 587.1 1174.2 5871 1986-01-28 2024-10-11 01:37:51.000 1986-01-28 2024-10-11 01:37:51 +5872 5872 5873 587.2 1174.4 5872 1986-01-29 2024-10-11 01:37:52.000 1986-01-29 2024-10-11 01:37:52 +5873 5873 5874 587.3 1174.6000000000001 5873 1986-01-30 2024-10-11 01:37:53.000 1986-01-30 2024-10-11 01:37:53 +5874 5874 5875 587.4 1174.8 5874 1986-01-31 2024-10-11 01:37:54.000 1986-01-31 2024-10-11 01:37:54 +5876 5876 5877 587.6 1175.2 5876 1986-02-02 2024-10-11 01:37:56.000 1986-02-02 2024-10-11 01:37:56 +5877 5877 5878 587.7 1175.4 5877 1986-02-03 2024-10-11 01:37:57.000 1986-02-03 2024-10-11 01:37:57 +5878 5878 5879 587.8 1175.6000000000001 5878 1986-02-04 2024-10-11 01:37:58.000 1986-02-04 2024-10-11 01:37:58 +5879 5879 5880 587.9 1175.8 5879 1986-02-05 2024-10-11 01:37:59.000 1986-02-05 2024-10-11 01:37:59 +5881 5881 5882 588.1 1176.2 5881 1986-02-07 2024-10-11 01:38:01.000 1986-02-07 2024-10-11 01:38:01 +5882 5882 5883 588.2 1176.4 5882 1986-02-08 2024-10-11 01:38:02.000 1986-02-08 2024-10-11 01:38:02 +5883 5883 5884 588.3 1176.6000000000001 5883 1986-02-09 2024-10-11 01:38:03.000 1986-02-09 2024-10-11 01:38:03 +5884 5884 5885 588.4 1176.8 5884 1986-02-10 2024-10-11 01:38:04.000 1986-02-10 2024-10-11 01:38:04 +5886 5886 5887 588.6 1177.2 5886 1986-02-12 2024-10-11 01:38:06.000 1986-02-12 2024-10-11 01:38:06 +5887 5887 5888 588.7 1177.4 5887 1986-02-13 2024-10-11 01:38:07.000 1986-02-13 2024-10-11 01:38:07 +5888 5888 5889 588.8 1177.6000000000001 5888 1986-02-14 2024-10-11 01:38:08.000 1986-02-14 2024-10-11 01:38:08 +5889 5889 5890 588.9 1177.8 5889 1986-02-15 2024-10-11 01:38:09.000 1986-02-15 2024-10-11 01:38:09 +5891 5891 5892 589.1 1178.2 5891 1986-02-17 2024-10-11 01:38:11.000 1986-02-17 2024-10-11 01:38:11 +5892 5892 5893 589.2 1178.4 5892 1986-02-18 2024-10-11 01:38:12.000 1986-02-18 2024-10-11 01:38:12 +5893 5893 5894 589.3 1178.6000000000001 5893 1986-02-19 2024-10-11 01:38:13.000 1986-02-19 2024-10-11 01:38:13 +5894 5894 5895 589.4 1178.8 5894 1986-02-20 2024-10-11 01:38:14.000 1986-02-20 2024-10-11 01:38:14 +5896 5896 5897 589.6 1179.2 5896 1986-02-22 2024-10-11 01:38:16.000 1986-02-22 2024-10-11 01:38:16 +5897 5897 5898 589.7 1179.4 5897 1986-02-23 2024-10-11 01:38:17.000 1986-02-23 2024-10-11 01:38:17 +5898 5898 5899 589.8 1179.6000000000001 5898 1986-02-24 2024-10-11 01:38:18.000 1986-02-24 2024-10-11 01:38:18 +5899 5899 5900 589.9 1179.8 5899 1986-02-25 2024-10-11 01:38:19.000 1986-02-25 2024-10-11 01:38:19 +5901 5901 5902 590.1 1180.2 5901 1986-02-27 2024-10-11 01:38:21.000 1986-02-27 2024-10-11 01:38:21 +5902 5902 5903 590.2 1180.4 5902 1986-02-28 2024-10-11 01:38:22.000 1986-02-28 2024-10-11 01:38:22 +5903 5903 5904 590.3 1180.6000000000001 5903 1986-03-01 2024-10-11 01:38:23.000 1986-03-01 2024-10-11 01:38:23 +5904 5904 5905 590.4 1180.8 5904 1986-03-02 2024-10-11 01:38:24.000 1986-03-02 2024-10-11 01:38:24 +5906 5906 5907 590.6 1181.2 5906 1986-03-04 2024-10-11 01:38:26.000 1986-03-04 2024-10-11 01:38:26 +5907 5907 5908 590.7 1181.4 5907 1986-03-05 2024-10-11 01:38:27.000 1986-03-05 2024-10-11 01:38:27 +5908 5908 5909 590.8 1181.6000000000001 5908 1986-03-06 2024-10-11 01:38:28.000 1986-03-06 2024-10-11 01:38:28 +5909 5909 5910 590.9 1181.8 5909 1986-03-07 2024-10-11 01:38:29.000 1986-03-07 2024-10-11 01:38:29 +5911 5911 5912 591.1 1182.2 5911 1986-03-09 2024-10-11 01:38:31.000 1986-03-09 2024-10-11 01:38:31 +5912 5912 5913 591.2 1182.4 5912 1986-03-10 2024-10-11 01:38:32.000 1986-03-10 2024-10-11 01:38:32 +5913 5913 5914 591.3 1182.6000000000001 5913 1986-03-11 2024-10-11 01:38:33.000 1986-03-11 2024-10-11 01:38:33 +5914 5914 5915 591.4 1182.8 5914 1986-03-12 2024-10-11 01:38:34.000 1986-03-12 2024-10-11 01:38:34 +5916 5916 5917 591.6 1183.2 5916 1986-03-14 2024-10-11 01:38:36.000 1986-03-14 2024-10-11 01:38:36 +5917 5917 5918 591.7 1183.4 5917 1986-03-15 2024-10-11 01:38:37.000 1986-03-15 2024-10-11 01:38:37 +5918 5918 5919 591.8 1183.6000000000001 5918 1986-03-16 2024-10-11 01:38:38.000 1986-03-16 2024-10-11 01:38:38 +5919 5919 5920 591.9 1183.8 5919 1986-03-17 2024-10-11 01:38:39.000 1986-03-17 2024-10-11 01:38:39 +5921 5921 5922 592.1 1184.2 5921 1986-03-19 2024-10-11 01:38:41.000 1986-03-19 2024-10-11 01:38:41 +5922 5922 5923 592.2 1184.4 5922 1986-03-20 2024-10-11 01:38:42.000 1986-03-20 2024-10-11 01:38:42 +5923 5923 5924 592.3 1184.6000000000001 5923 1986-03-21 2024-10-11 01:38:43.000 1986-03-21 2024-10-11 01:38:43 +5924 5924 5925 592.4 1184.8 5924 1986-03-22 2024-10-11 01:38:44.000 1986-03-22 2024-10-11 01:38:44 +5926 5926 5927 592.6 1185.2 5926 1986-03-24 2024-10-11 01:38:46.000 1986-03-24 2024-10-11 01:38:46 +5927 5927 5928 592.7 1185.4 5927 1986-03-25 2024-10-11 01:38:47.000 1986-03-25 2024-10-11 01:38:47 +5928 5928 5929 592.8 1185.6000000000001 5928 1986-03-26 2024-10-11 01:38:48.000 1986-03-26 2024-10-11 01:38:48 +5929 5929 5930 592.9 1185.8 5929 1986-03-27 2024-10-11 01:38:49.000 1986-03-27 2024-10-11 01:38:49 +5931 5931 5932 593.1 1186.2 5931 1986-03-29 2024-10-11 01:38:51.000 1986-03-29 2024-10-11 01:38:51 +5932 5932 5933 593.2 1186.4 5932 1986-03-30 2024-10-11 01:38:52.000 1986-03-30 2024-10-11 01:38:52 +5933 5933 5934 593.3 1186.6000000000001 5933 1986-03-31 2024-10-11 01:38:53.000 1986-03-31 2024-10-11 01:38:53 +5934 5934 5935 593.4 1186.8 5934 1986-04-01 2024-10-11 01:38:54.000 1986-04-01 2024-10-11 01:38:54 +5936 5936 5937 593.6 1187.2 5936 1986-04-03 2024-10-11 01:38:56.000 1986-04-03 2024-10-11 01:38:56 +5937 5937 5938 593.7 1187.4 5937 1986-04-04 2024-10-11 01:38:57.000 1986-04-04 2024-10-11 01:38:57 +5938 5938 5939 593.8 1187.6000000000001 5938 1986-04-05 2024-10-11 01:38:58.000 1986-04-05 2024-10-11 01:38:58 +5939 5939 5940 593.9 1187.8 5939 1986-04-06 2024-10-11 01:38:59.000 1986-04-06 2024-10-11 01:38:59 +5941 5941 5942 594.1 1188.2 5941 1986-04-08 2024-10-11 01:39:01.000 1986-04-08 2024-10-11 01:39:01 +5942 5942 5943 594.2 1188.4 5942 1986-04-09 2024-10-11 01:39:02.000 1986-04-09 2024-10-11 01:39:02 +5943 5943 5944 594.3 1188.6000000000001 5943 1986-04-10 2024-10-11 01:39:03.000 1986-04-10 2024-10-11 01:39:03 +5944 5944 5945 594.4 1188.8 5944 1986-04-11 2024-10-11 01:39:04.000 1986-04-11 2024-10-11 01:39:04 +5946 5946 5947 594.6 1189.2 5946 1986-04-13 2024-10-11 01:39:06.000 1986-04-13 2024-10-11 01:39:06 +5947 5947 5948 594.7 1189.4 5947 1986-04-14 2024-10-11 01:39:07.000 1986-04-14 2024-10-11 01:39:07 +5948 5948 5949 594.8 1189.6000000000001 5948 1986-04-15 2024-10-11 01:39:08.000 1986-04-15 2024-10-11 01:39:08 +5949 5949 5950 594.9 1189.8 5949 1986-04-16 2024-10-11 01:39:09.000 1986-04-16 2024-10-11 01:39:09 +5951 5951 5952 595.1 1190.2 5951 1986-04-18 2024-10-11 01:39:11.000 1986-04-18 2024-10-11 01:39:11 +5952 5952 5953 595.2 1190.4 5952 1986-04-19 2024-10-11 01:39:12.000 1986-04-19 2024-10-11 01:39:12 +5953 5953 5954 595.3 1190.6000000000001 5953 1986-04-20 2024-10-11 01:39:13.000 1986-04-20 2024-10-11 01:39:13 +5954 5954 5955 595.4 1190.8 5954 1986-04-21 2024-10-11 01:39:14.000 1986-04-21 2024-10-11 01:39:14 +5956 5956 5957 595.6 1191.2 5956 1986-04-23 2024-10-11 01:39:16.000 1986-04-23 2024-10-11 01:39:16 +5957 5957 5958 595.7 1191.4 5957 1986-04-24 2024-10-11 01:39:17.000 1986-04-24 2024-10-11 01:39:17 +5958 5958 5959 595.8 1191.6000000000001 5958 1986-04-25 2024-10-11 01:39:18.000 1986-04-25 2024-10-11 01:39:18 +5959 5959 5960 595.9 1191.8 5959 1986-04-26 2024-10-11 01:39:19.000 1986-04-26 2024-10-11 01:39:19 +5961 5961 5962 596.1 1192.2 5961 1986-04-28 2024-10-11 01:39:21.000 1986-04-28 2024-10-11 01:39:21 +5962 5962 5963 596.2 1192.4 5962 1986-04-29 2024-10-11 01:39:22.000 1986-04-29 2024-10-11 01:39:22 +5963 5963 5964 596.3 1192.6000000000001 5963 1986-04-30 2024-10-11 01:39:23.000 1986-04-30 2024-10-11 01:39:23 +5964 5964 5965 596.4 1192.8 5964 1986-05-01 2024-10-11 01:39:24.000 1986-05-01 2024-10-11 01:39:24 +5966 5966 5967 596.6 1193.2 5966 1986-05-03 2024-10-11 01:39:26.000 1986-05-03 2024-10-11 01:39:26 +5967 5967 5968 596.7 1193.4 5967 1986-05-04 2024-10-11 01:39:27.000 1986-05-04 2024-10-11 01:39:27 +5968 5968 5969 596.8 1193.6000000000001 5968 1986-05-05 2024-10-11 01:39:28.000 1986-05-05 2024-10-11 01:39:28 +5969 5969 5970 596.9 1193.8 5969 1986-05-06 2024-10-11 01:39:29.000 1986-05-06 2024-10-11 01:39:29 +5971 5971 5972 597.1 1194.2 5971 1986-05-08 2024-10-11 01:39:31.000 1986-05-08 2024-10-11 01:39:31 +5972 5972 5973 597.2 1194.4 5972 1986-05-09 2024-10-11 01:39:32.000 1986-05-09 2024-10-11 01:39:32 +5973 5973 5974 597.3 1194.6000000000001 5973 1986-05-10 2024-10-11 01:39:33.000 1986-05-10 2024-10-11 01:39:33 +5974 5974 5975 597.4 1194.8 5974 1986-05-11 2024-10-11 01:39:34.000 1986-05-11 2024-10-11 01:39:34 +5976 5976 5977 597.6 1195.2 5976 1986-05-13 2024-10-11 01:39:36.000 1986-05-13 2024-10-11 01:39:36 +5977 5977 5978 597.7 1195.4 5977 1986-05-14 2024-10-11 01:39:37.000 1986-05-14 2024-10-11 01:39:37 +5978 5978 5979 597.8 1195.6000000000001 5978 1986-05-15 2024-10-11 01:39:38.000 1986-05-15 2024-10-11 01:39:38 +5979 5979 5980 597.9 1195.8 5979 1986-05-16 2024-10-11 01:39:39.000 1986-05-16 2024-10-11 01:39:39 +5981 5981 5982 598.1 1196.2 5981 1986-05-18 2024-10-11 01:39:41.000 1986-05-18 2024-10-11 01:39:41 +5982 5982 5983 598.2 1196.4 5982 1986-05-19 2024-10-11 01:39:42.000 1986-05-19 2024-10-11 01:39:42 +5983 5983 5984 598.3 1196.6000000000001 5983 1986-05-20 2024-10-11 01:39:43.000 1986-05-20 2024-10-11 01:39:43 +5984 5984 5985 598.4 1196.8 5984 1986-05-21 2024-10-11 01:39:44.000 1986-05-21 2024-10-11 01:39:44 +5986 5986 5987 598.6 1197.2 5986 1986-05-23 2024-10-11 01:39:46.000 1986-05-23 2024-10-11 01:39:46 +5987 5987 5988 598.7 1197.4 5987 1986-05-24 2024-10-11 01:39:47.000 1986-05-24 2024-10-11 01:39:47 +5988 5988 5989 598.8 1197.6000000000001 5988 1986-05-25 2024-10-11 01:39:48.000 1986-05-25 2024-10-11 01:39:48 +5989 5989 5990 598.9 1197.8 5989 1986-05-26 2024-10-11 01:39:49.000 1986-05-26 2024-10-11 01:39:49 +5991 5991 5992 599.1 1198.2 5991 1986-05-28 2024-10-11 01:39:51.000 1986-05-28 2024-10-11 01:39:51 +5992 5992 5993 599.2 1198.4 5992 1986-05-29 2024-10-11 01:39:52.000 1986-05-29 2024-10-11 01:39:52 +5993 5993 5994 599.3 1198.6000000000001 5993 1986-05-30 2024-10-11 01:39:53.000 1986-05-30 2024-10-11 01:39:53 +5994 5994 5995 599.4 1198.8 5994 1986-05-31 2024-10-11 01:39:54.000 1986-05-31 2024-10-11 01:39:54 +5996 5996 5997 599.6 1199.2 5996 1986-06-02 2024-10-11 01:39:56.000 1986-06-02 2024-10-11 01:39:56 +5997 5997 5998 599.7 1199.4 5997 1986-06-03 2024-10-11 01:39:57.000 1986-06-03 2024-10-11 01:39:57 +5998 5998 5999 599.8 1199.6000000000001 5998 1986-06-04 2024-10-11 01:39:58.000 1986-06-04 2024-10-11 01:39:58 +5999 5999 6000 599.9 1199.8 5999 1986-06-05 2024-10-11 01:39:59.000 1986-06-05 2024-10-11 01:39:59 +6001 6001 6002 600.1 1200.2 6001 1986-06-07 2024-10-11 01:40:01.000 1986-06-07 2024-10-11 01:40:01 +6002 6002 6003 600.2 1200.4 6002 1986-06-08 2024-10-11 01:40:02.000 1986-06-08 2024-10-11 01:40:02 +6003 6003 6004 600.3 1200.6000000000001 6003 1986-06-09 2024-10-11 01:40:03.000 1986-06-09 2024-10-11 01:40:03 +6004 6004 6005 600.4 1200.8 6004 1986-06-10 2024-10-11 01:40:04.000 1986-06-10 2024-10-11 01:40:04 +6006 6006 6007 600.6 1201.2 6006 1986-06-12 2024-10-11 01:40:06.000 1986-06-12 2024-10-11 01:40:06 +6007 6007 6008 600.7 1201.4 6007 1986-06-13 2024-10-11 01:40:07.000 1986-06-13 2024-10-11 01:40:07 +6008 6008 6009 600.8 1201.6000000000001 6008 1986-06-14 2024-10-11 01:40:08.000 1986-06-14 2024-10-11 01:40:08 +6009 6009 6010 600.9 1201.8 6009 1986-06-15 2024-10-11 01:40:09.000 1986-06-15 2024-10-11 01:40:09 +6011 6011 6012 601.1 1202.2 6011 1986-06-17 2024-10-11 01:40:11.000 1986-06-17 2024-10-11 01:40:11 +6012 6012 6013 601.2 1202.4 6012 1986-06-18 2024-10-11 01:40:12.000 1986-06-18 2024-10-11 01:40:12 +6013 6013 6014 601.3 1202.6000000000001 6013 1986-06-19 2024-10-11 01:40:13.000 1986-06-19 2024-10-11 01:40:13 +6014 6014 6015 601.4 1202.8 6014 1986-06-20 2024-10-11 01:40:14.000 1986-06-20 2024-10-11 01:40:14 +6016 6016 6017 601.6 1203.2 6016 1986-06-22 2024-10-11 01:40:16.000 1986-06-22 2024-10-11 01:40:16 +6017 6017 6018 601.7 1203.4 6017 1986-06-23 2024-10-11 01:40:17.000 1986-06-23 2024-10-11 01:40:17 +6018 6018 6019 601.8 1203.6000000000001 6018 1986-06-24 2024-10-11 01:40:18.000 1986-06-24 2024-10-11 01:40:18 +6019 6019 6020 601.9 1203.8 6019 1986-06-25 2024-10-11 01:40:19.000 1986-06-25 2024-10-11 01:40:19 +6021 6021 6022 602.1 1204.2 6021 1986-06-27 2024-10-11 01:40:21.000 1986-06-27 2024-10-11 01:40:21 +6022 6022 6023 602.2 1204.4 6022 1986-06-28 2024-10-11 01:40:22.000 1986-06-28 2024-10-11 01:40:22 +6023 6023 6024 602.3 1204.6000000000001 6023 1986-06-29 2024-10-11 01:40:23.000 1986-06-29 2024-10-11 01:40:23 +6024 6024 6025 602.4 1204.8 6024 1986-06-30 2024-10-11 01:40:24.000 1986-06-30 2024-10-11 01:40:24 +6026 6026 6027 602.6 1205.2 6026 1986-07-02 2024-10-11 01:40:26.000 1986-07-02 2024-10-11 01:40:26 +6027 6027 6028 602.7 1205.4 6027 1986-07-03 2024-10-11 01:40:27.000 1986-07-03 2024-10-11 01:40:27 +6028 6028 6029 602.8 1205.6000000000001 6028 1986-07-04 2024-10-11 01:40:28.000 1986-07-04 2024-10-11 01:40:28 +6029 6029 6030 602.9 1205.8 6029 1986-07-05 2024-10-11 01:40:29.000 1986-07-05 2024-10-11 01:40:29 +6031 6031 6032 603.1 1206.2 6031 1986-07-07 2024-10-11 01:40:31.000 1986-07-07 2024-10-11 01:40:31 +6032 6032 6033 603.2 1206.4 6032 1986-07-08 2024-10-11 01:40:32.000 1986-07-08 2024-10-11 01:40:32 +6033 6033 6034 603.3 1206.6000000000001 6033 1986-07-09 2024-10-11 01:40:33.000 1986-07-09 2024-10-11 01:40:33 +6034 6034 6035 603.4 1206.8 6034 1986-07-10 2024-10-11 01:40:34.000 1986-07-10 2024-10-11 01:40:34 +6036 6036 6037 603.6 1207.2 6036 1986-07-12 2024-10-11 01:40:36.000 1986-07-12 2024-10-11 01:40:36 +6037 6037 6038 603.7 1207.4 6037 1986-07-13 2024-10-11 01:40:37.000 1986-07-13 2024-10-11 01:40:37 +6038 6038 6039 603.8 1207.6000000000001 6038 1986-07-14 2024-10-11 01:40:38.000 1986-07-14 2024-10-11 01:40:38 +6039 6039 6040 603.9 1207.8 6039 1986-07-15 2024-10-11 01:40:39.000 1986-07-15 2024-10-11 01:40:39 +6041 6041 6042 604.1 1208.2 6041 1986-07-17 2024-10-11 01:40:41.000 1986-07-17 2024-10-11 01:40:41 +6042 6042 6043 604.2 1208.4 6042 1986-07-18 2024-10-11 01:40:42.000 1986-07-18 2024-10-11 01:40:42 +6043 6043 6044 604.3 1208.6000000000001 6043 1986-07-19 2024-10-11 01:40:43.000 1986-07-19 2024-10-11 01:40:43 +6044 6044 6045 604.4 1208.8 6044 1986-07-20 2024-10-11 01:40:44.000 1986-07-20 2024-10-11 01:40:44 +6046 6046 6047 604.6 1209.2 6046 1986-07-22 2024-10-11 01:40:46.000 1986-07-22 2024-10-11 01:40:46 +6047 6047 6048 604.7 1209.4 6047 1986-07-23 2024-10-11 01:40:47.000 1986-07-23 2024-10-11 01:40:47 +6048 6048 6049 604.8 1209.6000000000001 6048 1986-07-24 2024-10-11 01:40:48.000 1986-07-24 2024-10-11 01:40:48 +6049 6049 6050 604.9 1209.8 6049 1986-07-25 2024-10-11 01:40:49.000 1986-07-25 2024-10-11 01:40:49 +6051 6051 6052 605.1 1210.2 6051 1986-07-27 2024-10-11 01:40:51.000 1986-07-27 2024-10-11 01:40:51 +6052 6052 6053 605.2 1210.4 6052 1986-07-28 2024-10-11 01:40:52.000 1986-07-28 2024-10-11 01:40:52 +6053 6053 6054 605.3 1210.6000000000001 6053 1986-07-29 2024-10-11 01:40:53.000 1986-07-29 2024-10-11 01:40:53 +6054 6054 6055 605.4 1210.8 6054 1986-07-30 2024-10-11 01:40:54.000 1986-07-30 2024-10-11 01:40:54 +6056 6056 6057 605.6 1211.2 6056 1986-08-01 2024-10-11 01:40:56.000 1986-08-01 2024-10-11 01:40:56 +6057 6057 6058 605.7 1211.4 6057 1986-08-02 2024-10-11 01:40:57.000 1986-08-02 2024-10-11 01:40:57 +6058 6058 6059 605.8 1211.6000000000001 6058 1986-08-03 2024-10-11 01:40:58.000 1986-08-03 2024-10-11 01:40:58 +6059 6059 6060 605.9 1211.8 6059 1986-08-04 2024-10-11 01:40:59.000 1986-08-04 2024-10-11 01:40:59 +6061 6061 6062 606.1 1212.2 6061 1986-08-06 2024-10-11 01:41:01.000 1986-08-06 2024-10-11 01:41:01 +6062 6062 6063 606.2 1212.4 6062 1986-08-07 2024-10-11 01:41:02.000 1986-08-07 2024-10-11 01:41:02 +6063 6063 6064 606.3 1212.6000000000001 6063 1986-08-08 2024-10-11 01:41:03.000 1986-08-08 2024-10-11 01:41:03 +6064 6064 6065 606.4 1212.8 6064 1986-08-09 2024-10-11 01:41:04.000 1986-08-09 2024-10-11 01:41:04 +6066 6066 6067 606.6 1213.2 6066 1986-08-11 2024-10-11 01:41:06.000 1986-08-11 2024-10-11 01:41:06 +6067 6067 6068 606.7 1213.4 6067 1986-08-12 2024-10-11 01:41:07.000 1986-08-12 2024-10-11 01:41:07 +6068 6068 6069 606.8 1213.6000000000001 6068 1986-08-13 2024-10-11 01:41:08.000 1986-08-13 2024-10-11 01:41:08 +6069 6069 6070 606.9 1213.8 6069 1986-08-14 2024-10-11 01:41:09.000 1986-08-14 2024-10-11 01:41:09 +6071 6071 6072 607.1 1214.2 6071 1986-08-16 2024-10-11 01:41:11.000 1986-08-16 2024-10-11 01:41:11 +6072 6072 6073 607.2 1214.4 6072 1986-08-17 2024-10-11 01:41:12.000 1986-08-17 2024-10-11 01:41:12 +6073 6073 6074 607.3 1214.6000000000001 6073 1986-08-18 2024-10-11 01:41:13.000 1986-08-18 2024-10-11 01:41:13 +6074 6074 6075 607.4 1214.8 6074 1986-08-19 2024-10-11 01:41:14.000 1986-08-19 2024-10-11 01:41:14 +6076 6076 6077 607.6 1215.2 6076 1986-08-21 2024-10-11 01:41:16.000 1986-08-21 2024-10-11 01:41:16 +6077 6077 6078 607.7 1215.4 6077 1986-08-22 2024-10-11 01:41:17.000 1986-08-22 2024-10-11 01:41:17 +6078 6078 6079 607.8 1215.6000000000001 6078 1986-08-23 2024-10-11 01:41:18.000 1986-08-23 2024-10-11 01:41:18 +6079 6079 6080 607.9 1215.8 6079 1986-08-24 2024-10-11 01:41:19.000 1986-08-24 2024-10-11 01:41:19 +6081 6081 6082 608.1 1216.2 6081 1986-08-26 2024-10-11 01:41:21.000 1986-08-26 2024-10-11 01:41:21 +6082 6082 6083 608.2 1216.4 6082 1986-08-27 2024-10-11 01:41:22.000 1986-08-27 2024-10-11 01:41:22 +6083 6083 6084 608.3 1216.6000000000001 6083 1986-08-28 2024-10-11 01:41:23.000 1986-08-28 2024-10-11 01:41:23 +6084 6084 6085 608.4 1216.8 6084 1986-08-29 2024-10-11 01:41:24.000 1986-08-29 2024-10-11 01:41:24 +6086 6086 6087 608.6 1217.2 6086 1986-08-31 2024-10-11 01:41:26.000 1986-08-31 2024-10-11 01:41:26 +6087 6087 6088 608.7 1217.4 6087 1986-09-01 2024-10-11 01:41:27.000 1986-09-01 2024-10-11 01:41:27 +6088 6088 6089 608.8 1217.6000000000001 6088 1986-09-02 2024-10-11 01:41:28.000 1986-09-02 2024-10-11 01:41:28 +6089 6089 6090 608.9 1217.8 6089 1986-09-03 2024-10-11 01:41:29.000 1986-09-03 2024-10-11 01:41:29 +6091 6091 6092 609.1 1218.2 6091 1986-09-05 2024-10-11 01:41:31.000 1986-09-05 2024-10-11 01:41:31 +6092 6092 6093 609.2 1218.4 6092 1986-09-06 2024-10-11 01:41:32.000 1986-09-06 2024-10-11 01:41:32 +6093 6093 6094 609.3 1218.6000000000001 6093 1986-09-07 2024-10-11 01:41:33.000 1986-09-07 2024-10-11 01:41:33 +6094 6094 6095 609.4 1218.8 6094 1986-09-08 2024-10-11 01:41:34.000 1986-09-08 2024-10-11 01:41:34 +6096 6096 6097 609.6 1219.2 6096 1986-09-10 2024-10-11 01:41:36.000 1986-09-10 2024-10-11 01:41:36 +6097 6097 6098 609.7 1219.4 6097 1986-09-11 2024-10-11 01:41:37.000 1986-09-11 2024-10-11 01:41:37 +6098 6098 6099 609.8 1219.6000000000001 6098 1986-09-12 2024-10-11 01:41:38.000 1986-09-12 2024-10-11 01:41:38 +6099 6099 6100 609.9 1219.8 6099 1986-09-13 2024-10-11 01:41:39.000 1986-09-13 2024-10-11 01:41:39 +6101 6101 6102 610.1 1220.2 6101 1986-09-15 2024-10-11 01:41:41.000 1986-09-15 2024-10-11 01:41:41 +6102 6102 6103 610.2 1220.4 6102 1986-09-16 2024-10-11 01:41:42.000 1986-09-16 2024-10-11 01:41:42 +6103 6103 6104 610.3 1220.6000000000001 6103 1986-09-17 2024-10-11 01:41:43.000 1986-09-17 2024-10-11 01:41:43 +6104 6104 6105 610.4 1220.8 6104 1986-09-18 2024-10-11 01:41:44.000 1986-09-18 2024-10-11 01:41:44 +6106 6106 6107 610.6 1221.2 6106 1986-09-20 2024-10-11 01:41:46.000 1986-09-20 2024-10-11 01:41:46 +6107 6107 6108 610.7 1221.4 6107 1986-09-21 2024-10-11 01:41:47.000 1986-09-21 2024-10-11 01:41:47 +6108 6108 6109 610.8 1221.6000000000001 6108 1986-09-22 2024-10-11 01:41:48.000 1986-09-22 2024-10-11 01:41:48 +6109 6109 6110 610.9 1221.8 6109 1986-09-23 2024-10-11 01:41:49.000 1986-09-23 2024-10-11 01:41:49 +6111 6111 6112 611.1 1222.2 6111 1986-09-25 2024-10-11 01:41:51.000 1986-09-25 2024-10-11 01:41:51 +6112 6112 6113 611.2 1222.4 6112 1986-09-26 2024-10-11 01:41:52.000 1986-09-26 2024-10-11 01:41:52 +6113 6113 6114 611.3 1222.6000000000001 6113 1986-09-27 2024-10-11 01:41:53.000 1986-09-27 2024-10-11 01:41:53 +6114 6114 6115 611.4 1222.8 6114 1986-09-28 2024-10-11 01:41:54.000 1986-09-28 2024-10-11 01:41:54 +6116 6116 6117 611.6 1223.2 6116 1986-09-30 2024-10-11 01:41:56.000 1986-09-30 2024-10-11 01:41:56 +6117 6117 6118 611.7 1223.4 6117 1986-10-01 2024-10-11 01:41:57.000 1986-10-01 2024-10-11 01:41:57 +6118 6118 6119 611.8 1223.6000000000001 6118 1986-10-02 2024-10-11 01:41:58.000 1986-10-02 2024-10-11 01:41:58 +6119 6119 6120 611.9 1223.8 6119 1986-10-03 2024-10-11 01:41:59.000 1986-10-03 2024-10-11 01:41:59 +6121 6121 6122 612.1 1224.2 6121 1986-10-05 2024-10-11 01:42:01.000 1986-10-05 2024-10-11 01:42:01 +6122 6122 6123 612.2 1224.4 6122 1986-10-06 2024-10-11 01:42:02.000 1986-10-06 2024-10-11 01:42:02 +6123 6123 6124 612.3 1224.6000000000001 6123 1986-10-07 2024-10-11 01:42:03.000 1986-10-07 2024-10-11 01:42:03 +6124 6124 6125 612.4 1224.8 6124 1986-10-08 2024-10-11 01:42:04.000 1986-10-08 2024-10-11 01:42:04 +6126 6126 6127 612.6 1225.2 6126 1986-10-10 2024-10-11 01:42:06.000 1986-10-10 2024-10-11 01:42:06 +6127 6127 6128 612.7 1225.4 6127 1986-10-11 2024-10-11 01:42:07.000 1986-10-11 2024-10-11 01:42:07 +6128 6128 6129 612.8 1225.6000000000001 6128 1986-10-12 2024-10-11 01:42:08.000 1986-10-12 2024-10-11 01:42:08 +6129 6129 6130 612.9 1225.8 6129 1986-10-13 2024-10-11 01:42:09.000 1986-10-13 2024-10-11 01:42:09 +6131 6131 6132 613.1 1226.2 6131 1986-10-15 2024-10-11 01:42:11.000 1986-10-15 2024-10-11 01:42:11 +6132 6132 6133 613.2 1226.4 6132 1986-10-16 2024-10-11 01:42:12.000 1986-10-16 2024-10-11 01:42:12 +6133 6133 6134 613.3 1226.6000000000001 6133 1986-10-17 2024-10-11 01:42:13.000 1986-10-17 2024-10-11 01:42:13 +6134 6134 6135 613.4 1226.8 6134 1986-10-18 2024-10-11 01:42:14.000 1986-10-18 2024-10-11 01:42:14 +6136 6136 6137 613.6 1227.2 6136 1986-10-20 2024-10-11 01:42:16.000 1986-10-20 2024-10-11 01:42:16 +6137 6137 6138 613.7 1227.4 6137 1986-10-21 2024-10-11 01:42:17.000 1986-10-21 2024-10-11 01:42:17 +6138 6138 6139 613.8 1227.6000000000001 6138 1986-10-22 2024-10-11 01:42:18.000 1986-10-22 2024-10-11 01:42:18 +6139 6139 6140 613.9 1227.8 6139 1986-10-23 2024-10-11 01:42:19.000 1986-10-23 2024-10-11 01:42:19 +6141 6141 6142 614.1 1228.2 6141 1986-10-25 2024-10-11 01:42:21.000 1986-10-25 2024-10-11 01:42:21 +6142 6142 6143 614.2 1228.4 6142 1986-10-26 2024-10-11 01:42:22.000 1986-10-26 2024-10-11 01:42:22 +6143 6143 6144 614.3 1228.6000000000001 6143 1986-10-27 2024-10-11 01:42:23.000 1986-10-27 2024-10-11 01:42:23 +6144 6144 6145 614.4 1228.8000000000002 6144 1986-10-28 2024-10-11 01:42:24.000 1986-10-28 2024-10-11 01:42:24 +6146 6146 6147 614.6 1229.2 6146 1986-10-30 2024-10-11 01:42:26.000 1986-10-30 2024-10-11 01:42:26 +6147 6147 6148 614.7 1229.4 6147 1986-10-31 2024-10-11 01:42:27.000 1986-10-31 2024-10-11 01:42:27 +6148 6148 6149 614.8 1229.6000000000001 6148 1986-11-01 2024-10-11 01:42:28.000 1986-11-01 2024-10-11 01:42:28 +6149 6149 6150 614.9 1229.8000000000002 6149 1986-11-02 2024-10-11 01:42:29.000 1986-11-02 2024-10-11 01:42:29 +6151 6151 6152 615.1 1230.2 6151 1986-11-04 2024-10-11 01:42:31.000 1986-11-04 2024-10-11 01:42:31 +6152 6152 6153 615.2 1230.4 6152 1986-11-05 2024-10-11 01:42:32.000 1986-11-05 2024-10-11 01:42:32 +6153 6153 6154 615.3 1230.6000000000001 6153 1986-11-06 2024-10-11 01:42:33.000 1986-11-06 2024-10-11 01:42:33 +6154 6154 6155 615.4 1230.8000000000002 6154 1986-11-07 2024-10-11 01:42:34.000 1986-11-07 2024-10-11 01:42:34 +6156 6156 6157 615.6 1231.2 6156 1986-11-09 2024-10-11 01:42:36.000 1986-11-09 2024-10-11 01:42:36 +6157 6157 6158 615.7 1231.4 6157 1986-11-10 2024-10-11 01:42:37.000 1986-11-10 2024-10-11 01:42:37 +6158 6158 6159 615.8 1231.6000000000001 6158 1986-11-11 2024-10-11 01:42:38.000 1986-11-11 2024-10-11 01:42:38 +6159 6159 6160 615.9 1231.8000000000002 6159 1986-11-12 2024-10-11 01:42:39.000 1986-11-12 2024-10-11 01:42:39 +6161 6161 6162 616.1 1232.2 6161 1986-11-14 2024-10-11 01:42:41.000 1986-11-14 2024-10-11 01:42:41 +6162 6162 6163 616.2 1232.4 6162 1986-11-15 2024-10-11 01:42:42.000 1986-11-15 2024-10-11 01:42:42 +6163 6163 6164 616.3 1232.6000000000001 6163 1986-11-16 2024-10-11 01:42:43.000 1986-11-16 2024-10-11 01:42:43 +6164 6164 6165 616.4 1232.8000000000002 6164 1986-11-17 2024-10-11 01:42:44.000 1986-11-17 2024-10-11 01:42:44 +6166 6166 6167 616.6 1233.2 6166 1986-11-19 2024-10-11 01:42:46.000 1986-11-19 2024-10-11 01:42:46 +6167 6167 6168 616.7 1233.4 6167 1986-11-20 2024-10-11 01:42:47.000 1986-11-20 2024-10-11 01:42:47 +6168 6168 6169 616.8 1233.6000000000001 6168 1986-11-21 2024-10-11 01:42:48.000 1986-11-21 2024-10-11 01:42:48 +6169 6169 6170 616.9 1233.8000000000002 6169 1986-11-22 2024-10-11 01:42:49.000 1986-11-22 2024-10-11 01:42:49 +6171 6171 6172 617.1 1234.2 6171 1986-11-24 2024-10-11 01:42:51.000 1986-11-24 2024-10-11 01:42:51 +6172 6172 6173 617.2 1234.4 6172 1986-11-25 2024-10-11 01:42:52.000 1986-11-25 2024-10-11 01:42:52 +6173 6173 6174 617.3 1234.6000000000001 6173 1986-11-26 2024-10-11 01:42:53.000 1986-11-26 2024-10-11 01:42:53 +6174 6174 6175 617.4 1234.8000000000002 6174 1986-11-27 2024-10-11 01:42:54.000 1986-11-27 2024-10-11 01:42:54 +6176 6176 6177 617.6 1235.2 6176 1986-11-29 2024-10-11 01:42:56.000 1986-11-29 2024-10-11 01:42:56 +6177 6177 6178 617.7 1235.4 6177 1986-11-30 2024-10-11 01:42:57.000 1986-11-30 2024-10-11 01:42:57 +6178 6178 6179 617.8 1235.6000000000001 6178 1986-12-01 2024-10-11 01:42:58.000 1986-12-01 2024-10-11 01:42:58 +6179 6179 6180 617.9 1235.8000000000002 6179 1986-12-02 2024-10-11 01:42:59.000 1986-12-02 2024-10-11 01:42:59 +6181 6181 6182 618.1 1236.2 6181 1986-12-04 2024-10-11 01:43:01.000 1986-12-04 2024-10-11 01:43:01 +6182 6182 6183 618.2 1236.4 6182 1986-12-05 2024-10-11 01:43:02.000 1986-12-05 2024-10-11 01:43:02 +6183 6183 6184 618.3 1236.6000000000001 6183 1986-12-06 2024-10-11 01:43:03.000 1986-12-06 2024-10-11 01:43:03 +6184 6184 6185 618.4 1236.8000000000002 6184 1986-12-07 2024-10-11 01:43:04.000 1986-12-07 2024-10-11 01:43:04 +6186 6186 6187 618.6 1237.2 6186 1986-12-09 2024-10-11 01:43:06.000 1986-12-09 2024-10-11 01:43:06 +6187 6187 6188 618.7 1237.4 6187 1986-12-10 2024-10-11 01:43:07.000 1986-12-10 2024-10-11 01:43:07 +6188 6188 6189 618.8 1237.6000000000001 6188 1986-12-11 2024-10-11 01:43:08.000 1986-12-11 2024-10-11 01:43:08 +6189 6189 6190 618.9 1237.8000000000002 6189 1986-12-12 2024-10-11 01:43:09.000 1986-12-12 2024-10-11 01:43:09 +6191 6191 6192 619.1 1238.2 6191 1986-12-14 2024-10-11 01:43:11.000 1986-12-14 2024-10-11 01:43:11 +6192 6192 6193 619.2 1238.4 6192 1986-12-15 2024-10-11 01:43:12.000 1986-12-15 2024-10-11 01:43:12 +6193 6193 6194 619.3 1238.6000000000001 6193 1986-12-16 2024-10-11 01:43:13.000 1986-12-16 2024-10-11 01:43:13 +6194 6194 6195 619.4 1238.8000000000002 6194 1986-12-17 2024-10-11 01:43:14.000 1986-12-17 2024-10-11 01:43:14 +6196 6196 6197 619.6 1239.2 6196 1986-12-19 2024-10-11 01:43:16.000 1986-12-19 2024-10-11 01:43:16 +6197 6197 6198 619.7 1239.4 6197 1986-12-20 2024-10-11 01:43:17.000 1986-12-20 2024-10-11 01:43:17 +6198 6198 6199 619.8 1239.6000000000001 6198 1986-12-21 2024-10-11 01:43:18.000 1986-12-21 2024-10-11 01:43:18 +6199 6199 6200 619.9 1239.8000000000002 6199 1986-12-22 2024-10-11 01:43:19.000 1986-12-22 2024-10-11 01:43:19 +6201 6201 6202 620.1 1240.2 6201 1986-12-24 2024-10-11 01:43:21.000 1986-12-24 2024-10-11 01:43:21 +6202 6202 6203 620.2 1240.4 6202 1986-12-25 2024-10-11 01:43:22.000 1986-12-25 2024-10-11 01:43:22 +6203 6203 6204 620.3 1240.6000000000001 6203 1986-12-26 2024-10-11 01:43:23.000 1986-12-26 2024-10-11 01:43:23 +6204 6204 6205 620.4 1240.8000000000002 6204 1986-12-27 2024-10-11 01:43:24.000 1986-12-27 2024-10-11 01:43:24 +6206 6206 6207 620.6 1241.2 6206 1986-12-29 2024-10-11 01:43:26.000 1986-12-29 2024-10-11 01:43:26 +6207 6207 6208 620.7 1241.4 6207 1986-12-30 2024-10-11 01:43:27.000 1986-12-30 2024-10-11 01:43:27 +6208 6208 6209 620.8 1241.6000000000001 6208 1986-12-31 2024-10-11 01:43:28.000 1986-12-31 2024-10-11 01:43:28 +6209 6209 6210 620.9 1241.8000000000002 6209 1987-01-01 2024-10-11 01:43:29.000 1987-01-01 2024-10-11 01:43:29 +6211 6211 6212 621.1 1242.2 6211 1987-01-03 2024-10-11 01:43:31.000 1987-01-03 2024-10-11 01:43:31 +6212 6212 6213 621.2 1242.4 6212 1987-01-04 2024-10-11 01:43:32.000 1987-01-04 2024-10-11 01:43:32 +6213 6213 6214 621.3 1242.6000000000001 6213 1987-01-05 2024-10-11 01:43:33.000 1987-01-05 2024-10-11 01:43:33 +6214 6214 6215 621.4 1242.8000000000002 6214 1987-01-06 2024-10-11 01:43:34.000 1987-01-06 2024-10-11 01:43:34 +6216 6216 6217 621.6 1243.2 6216 1987-01-08 2024-10-11 01:43:36.000 1987-01-08 2024-10-11 01:43:36 +6217 6217 6218 621.7 1243.4 6217 1987-01-09 2024-10-11 01:43:37.000 1987-01-09 2024-10-11 01:43:37 +6218 6218 6219 621.8 1243.6000000000001 6218 1987-01-10 2024-10-11 01:43:38.000 1987-01-10 2024-10-11 01:43:38 +6219 6219 6220 621.9 1243.8000000000002 6219 1987-01-11 2024-10-11 01:43:39.000 1987-01-11 2024-10-11 01:43:39 +6221 6221 6222 622.1 1244.2 6221 1987-01-13 2024-10-11 01:43:41.000 1987-01-13 2024-10-11 01:43:41 +6222 6222 6223 622.2 1244.4 6222 1987-01-14 2024-10-11 01:43:42.000 1987-01-14 2024-10-11 01:43:42 +6223 6223 6224 622.3 1244.6000000000001 6223 1987-01-15 2024-10-11 01:43:43.000 1987-01-15 2024-10-11 01:43:43 +6224 6224 6225 622.4 1244.8000000000002 6224 1987-01-16 2024-10-11 01:43:44.000 1987-01-16 2024-10-11 01:43:44 +6226 6226 6227 622.6 1245.2 6226 1987-01-18 2024-10-11 01:43:46.000 1987-01-18 2024-10-11 01:43:46 +6227 6227 6228 622.7 1245.4 6227 1987-01-19 2024-10-11 01:43:47.000 1987-01-19 2024-10-11 01:43:47 +6228 6228 6229 622.8 1245.6000000000001 6228 1987-01-20 2024-10-11 01:43:48.000 1987-01-20 2024-10-11 01:43:48 +6229 6229 6230 622.9 1245.8000000000002 6229 1987-01-21 2024-10-11 01:43:49.000 1987-01-21 2024-10-11 01:43:49 +6231 6231 6232 623.1 1246.2 6231 1987-01-23 2024-10-11 01:43:51.000 1987-01-23 2024-10-11 01:43:51 +6232 6232 6233 623.2 1246.4 6232 1987-01-24 2024-10-11 01:43:52.000 1987-01-24 2024-10-11 01:43:52 +6233 6233 6234 623.3 1246.6000000000001 6233 1987-01-25 2024-10-11 01:43:53.000 1987-01-25 2024-10-11 01:43:53 +6234 6234 6235 623.4 1246.8000000000002 6234 1987-01-26 2024-10-11 01:43:54.000 1987-01-26 2024-10-11 01:43:54 +6236 6236 6237 623.6 1247.2 6236 1987-01-28 2024-10-11 01:43:56.000 1987-01-28 2024-10-11 01:43:56 +6237 6237 6238 623.7 1247.4 6237 1987-01-29 2024-10-11 01:43:57.000 1987-01-29 2024-10-11 01:43:57 +6238 6238 6239 623.8 1247.6000000000001 6238 1987-01-30 2024-10-11 01:43:58.000 1987-01-30 2024-10-11 01:43:58 +6239 6239 6240 623.9 1247.8000000000002 6239 1987-01-31 2024-10-11 01:43:59.000 1987-01-31 2024-10-11 01:43:59 +6241 6241 6242 624.1 1248.2 6241 1987-02-02 2024-10-11 01:44:01.000 1987-02-02 2024-10-11 01:44:01 +6242 6242 6243 624.2 1248.4 6242 1987-02-03 2024-10-11 01:44:02.000 1987-02-03 2024-10-11 01:44:02 +6243 6243 6244 624.3 1248.6000000000001 6243 1987-02-04 2024-10-11 01:44:03.000 1987-02-04 2024-10-11 01:44:03 +6244 6244 6245 624.4 1248.8000000000002 6244 1987-02-05 2024-10-11 01:44:04.000 1987-02-05 2024-10-11 01:44:04 +6246 6246 6247 624.6 1249.2 6246 1987-02-07 2024-10-11 01:44:06.000 1987-02-07 2024-10-11 01:44:06 +6247 6247 6248 624.7 1249.4 6247 1987-02-08 2024-10-11 01:44:07.000 1987-02-08 2024-10-11 01:44:07 +6248 6248 6249 624.8 1249.6000000000001 6248 1987-02-09 2024-10-11 01:44:08.000 1987-02-09 2024-10-11 01:44:08 +6249 6249 6250 624.9 1249.8000000000002 6249 1987-02-10 2024-10-11 01:44:09.000 1987-02-10 2024-10-11 01:44:09 +6251 6251 6252 625.1 1250.2 6251 1987-02-12 2024-10-11 01:44:11.000 1987-02-12 2024-10-11 01:44:11 +6252 6252 6253 625.2 1250.4 6252 1987-02-13 2024-10-11 01:44:12.000 1987-02-13 2024-10-11 01:44:12 +6253 6253 6254 625.3 1250.6000000000001 6253 1987-02-14 2024-10-11 01:44:13.000 1987-02-14 2024-10-11 01:44:13 +6254 6254 6255 625.4 1250.8000000000002 6254 1987-02-15 2024-10-11 01:44:14.000 1987-02-15 2024-10-11 01:44:14 +6256 6256 6257 625.6 1251.2 6256 1987-02-17 2024-10-11 01:44:16.000 1987-02-17 2024-10-11 01:44:16 +6257 6257 6258 625.7 1251.4 6257 1987-02-18 2024-10-11 01:44:17.000 1987-02-18 2024-10-11 01:44:17 +6258 6258 6259 625.8 1251.6000000000001 6258 1987-02-19 2024-10-11 01:44:18.000 1987-02-19 2024-10-11 01:44:18 +6259 6259 6260 625.9 1251.8000000000002 6259 1987-02-20 2024-10-11 01:44:19.000 1987-02-20 2024-10-11 01:44:19 +6261 6261 6262 626.1 1252.2 6261 1987-02-22 2024-10-11 01:44:21.000 1987-02-22 2024-10-11 01:44:21 +6262 6262 6263 626.2 1252.4 6262 1987-02-23 2024-10-11 01:44:22.000 1987-02-23 2024-10-11 01:44:22 +6263 6263 6264 626.3 1252.6000000000001 6263 1987-02-24 2024-10-11 01:44:23.000 1987-02-24 2024-10-11 01:44:23 +6264 6264 6265 626.4 1252.8000000000002 6264 1987-02-25 2024-10-11 01:44:24.000 1987-02-25 2024-10-11 01:44:24 +6266 6266 6267 626.6 1253.2 6266 1987-02-27 2024-10-11 01:44:26.000 1987-02-27 2024-10-11 01:44:26 +6267 6267 6268 626.7 1253.4 6267 1987-02-28 2024-10-11 01:44:27.000 1987-02-28 2024-10-11 01:44:27 +6268 6268 6269 626.8 1253.6000000000001 6268 1987-03-01 2024-10-11 01:44:28.000 1987-03-01 2024-10-11 01:44:28 +6269 6269 6270 626.9 1253.8000000000002 6269 1987-03-02 2024-10-11 01:44:29.000 1987-03-02 2024-10-11 01:44:29 +6271 6271 6272 627.1 1254.2 6271 1987-03-04 2024-10-11 01:44:31.000 1987-03-04 2024-10-11 01:44:31 +6272 6272 6273 627.2 1254.4 6272 1987-03-05 2024-10-11 01:44:32.000 1987-03-05 2024-10-11 01:44:32 +6273 6273 6274 627.3 1254.6000000000001 6273 1987-03-06 2024-10-11 01:44:33.000 1987-03-06 2024-10-11 01:44:33 +6274 6274 6275 627.4 1254.8000000000002 6274 1987-03-07 2024-10-11 01:44:34.000 1987-03-07 2024-10-11 01:44:34 +6276 6276 6277 627.6 1255.2 6276 1987-03-09 2024-10-11 01:44:36.000 1987-03-09 2024-10-11 01:44:36 +6277 6277 6278 627.7 1255.4 6277 1987-03-10 2024-10-11 01:44:37.000 1987-03-10 2024-10-11 01:44:37 +6278 6278 6279 627.8 1255.6000000000001 6278 1987-03-11 2024-10-11 01:44:38.000 1987-03-11 2024-10-11 01:44:38 +6279 6279 6280 627.9 1255.8000000000002 6279 1987-03-12 2024-10-11 01:44:39.000 1987-03-12 2024-10-11 01:44:39 +6281 6281 6282 628.1 1256.2 6281 1987-03-14 2024-10-11 01:44:41.000 1987-03-14 2024-10-11 01:44:41 +6282 6282 6283 628.2 1256.4 6282 1987-03-15 2024-10-11 01:44:42.000 1987-03-15 2024-10-11 01:44:42 +6283 6283 6284 628.3 1256.6000000000001 6283 1987-03-16 2024-10-11 01:44:43.000 1987-03-16 2024-10-11 01:44:43 +6284 6284 6285 628.4 1256.8000000000002 6284 1987-03-17 2024-10-11 01:44:44.000 1987-03-17 2024-10-11 01:44:44 +6286 6286 6287 628.6 1257.2 6286 1987-03-19 2024-10-11 01:44:46.000 1987-03-19 2024-10-11 01:44:46 +6287 6287 6288 628.7 1257.4 6287 1987-03-20 2024-10-11 01:44:47.000 1987-03-20 2024-10-11 01:44:47 +6288 6288 6289 628.8 1257.6000000000001 6288 1987-03-21 2024-10-11 01:44:48.000 1987-03-21 2024-10-11 01:44:48 +6289 6289 6290 628.9 1257.8000000000002 6289 1987-03-22 2024-10-11 01:44:49.000 1987-03-22 2024-10-11 01:44:49 +6291 6291 6292 629.1 1258.2 6291 1987-03-24 2024-10-11 01:44:51.000 1987-03-24 2024-10-11 01:44:51 +6292 6292 6293 629.2 1258.4 6292 1987-03-25 2024-10-11 01:44:52.000 1987-03-25 2024-10-11 01:44:52 +6293 6293 6294 629.3 1258.6000000000001 6293 1987-03-26 2024-10-11 01:44:53.000 1987-03-26 2024-10-11 01:44:53 +6294 6294 6295 629.4 1258.8000000000002 6294 1987-03-27 2024-10-11 01:44:54.000 1987-03-27 2024-10-11 01:44:54 +6296 6296 6297 629.6 1259.2 6296 1987-03-29 2024-10-11 01:44:56.000 1987-03-29 2024-10-11 01:44:56 +6297 6297 6298 629.7 1259.4 6297 1987-03-30 2024-10-11 01:44:57.000 1987-03-30 2024-10-11 01:44:57 +6298 6298 6299 629.8 1259.6000000000001 6298 1987-03-31 2024-10-11 01:44:58.000 1987-03-31 2024-10-11 01:44:58 +6299 6299 6300 629.9 1259.8000000000002 6299 1987-04-01 2024-10-11 01:44:59.000 1987-04-01 2024-10-11 01:44:59 +6301 6301 6302 630.1 1260.2 6301 1987-04-03 2024-10-11 01:45:01.000 1987-04-03 2024-10-11 01:45:01 +6302 6302 6303 630.2 1260.4 6302 1987-04-04 2024-10-11 01:45:02.000 1987-04-04 2024-10-11 01:45:02 +6303 6303 6304 630.3 1260.6000000000001 6303 1987-04-05 2024-10-11 01:45:03.000 1987-04-05 2024-10-11 01:45:03 +6304 6304 6305 630.4 1260.8000000000002 6304 1987-04-06 2024-10-11 01:45:04.000 1987-04-06 2024-10-11 01:45:04 +6306 6306 6307 630.6 1261.2 6306 1987-04-08 2024-10-11 01:45:06.000 1987-04-08 2024-10-11 01:45:06 +6307 6307 6308 630.7 1261.4 6307 1987-04-09 2024-10-11 01:45:07.000 1987-04-09 2024-10-11 01:45:07 +6308 6308 6309 630.8 1261.6000000000001 6308 1987-04-10 2024-10-11 01:45:08.000 1987-04-10 2024-10-11 01:45:08 +6309 6309 6310 630.9 1261.8000000000002 6309 1987-04-11 2024-10-11 01:45:09.000 1987-04-11 2024-10-11 01:45:09 +6311 6311 6312 631.1 1262.2 6311 1987-04-13 2024-10-11 01:45:11.000 1987-04-13 2024-10-11 01:45:11 +6312 6312 6313 631.2 1262.4 6312 1987-04-14 2024-10-11 01:45:12.000 1987-04-14 2024-10-11 01:45:12 +6313 6313 6314 631.3 1262.6000000000001 6313 1987-04-15 2024-10-11 01:45:13.000 1987-04-15 2024-10-11 01:45:13 +6314 6314 6315 631.4 1262.8000000000002 6314 1987-04-16 2024-10-11 01:45:14.000 1987-04-16 2024-10-11 01:45:14 +6316 6316 6317 631.6 1263.2 6316 1987-04-18 2024-10-11 01:45:16.000 1987-04-18 2024-10-11 01:45:16 +6317 6317 6318 631.7 1263.4 6317 1987-04-19 2024-10-11 01:45:17.000 1987-04-19 2024-10-11 01:45:17 +6318 6318 6319 631.8 1263.6000000000001 6318 1987-04-20 2024-10-11 01:45:18.000 1987-04-20 2024-10-11 01:45:18 +6319 6319 6320 631.9 1263.8000000000002 6319 1987-04-21 2024-10-11 01:45:19.000 1987-04-21 2024-10-11 01:45:19 +6321 6321 6322 632.1 1264.2 6321 1987-04-23 2024-10-11 01:45:21.000 1987-04-23 2024-10-11 01:45:21 +6322 6322 6323 632.2 1264.4 6322 1987-04-24 2024-10-11 01:45:22.000 1987-04-24 2024-10-11 01:45:22 +6323 6323 6324 632.3 1264.6000000000001 6323 1987-04-25 2024-10-11 01:45:23.000 1987-04-25 2024-10-11 01:45:23 +6324 6324 6325 632.4 1264.8000000000002 6324 1987-04-26 2024-10-11 01:45:24.000 1987-04-26 2024-10-11 01:45:24 +6326 6326 6327 632.6 1265.2 6326 1987-04-28 2024-10-11 01:45:26.000 1987-04-28 2024-10-11 01:45:26 +6327 6327 6328 632.7 1265.4 6327 1987-04-29 2024-10-11 01:45:27.000 1987-04-29 2024-10-11 01:45:27 +6328 6328 6329 632.8 1265.6000000000001 6328 1987-04-30 2024-10-11 01:45:28.000 1987-04-30 2024-10-11 01:45:28 +6329 6329 6330 632.9 1265.8000000000002 6329 1987-05-01 2024-10-11 01:45:29.000 1987-05-01 2024-10-11 01:45:29 +6331 6331 6332 633.1 1266.2 6331 1987-05-03 2024-10-11 01:45:31.000 1987-05-03 2024-10-11 01:45:31 +6332 6332 6333 633.2 1266.4 6332 1987-05-04 2024-10-11 01:45:32.000 1987-05-04 2024-10-11 01:45:32 +6333 6333 6334 633.3 1266.6000000000001 6333 1987-05-05 2024-10-11 01:45:33.000 1987-05-05 2024-10-11 01:45:33 +6334 6334 6335 633.4 1266.8000000000002 6334 1987-05-06 2024-10-11 01:45:34.000 1987-05-06 2024-10-11 01:45:34 +6336 6336 6337 633.6 1267.2 6336 1987-05-08 2024-10-11 01:45:36.000 1987-05-08 2024-10-11 01:45:36 +6337 6337 6338 633.7 1267.4 6337 1987-05-09 2024-10-11 01:45:37.000 1987-05-09 2024-10-11 01:45:37 +6338 6338 6339 633.8 1267.6000000000001 6338 1987-05-10 2024-10-11 01:45:38.000 1987-05-10 2024-10-11 01:45:38 +6339 6339 6340 633.9 1267.8000000000002 6339 1987-05-11 2024-10-11 01:45:39.000 1987-05-11 2024-10-11 01:45:39 +6341 6341 6342 634.1 1268.2 6341 1987-05-13 2024-10-11 01:45:41.000 1987-05-13 2024-10-11 01:45:41 +6342 6342 6343 634.2 1268.4 6342 1987-05-14 2024-10-11 01:45:42.000 1987-05-14 2024-10-11 01:45:42 +6343 6343 6344 634.3 1268.6000000000001 6343 1987-05-15 2024-10-11 01:45:43.000 1987-05-15 2024-10-11 01:45:43 +6344 6344 6345 634.4 1268.8000000000002 6344 1987-05-16 2024-10-11 01:45:44.000 1987-05-16 2024-10-11 01:45:44 +6346 6346 6347 634.6 1269.2 6346 1987-05-18 2024-10-11 01:45:46.000 1987-05-18 2024-10-11 01:45:46 +6347 6347 6348 634.7 1269.4 6347 1987-05-19 2024-10-11 01:45:47.000 1987-05-19 2024-10-11 01:45:47 +6348 6348 6349 634.8 1269.6000000000001 6348 1987-05-20 2024-10-11 01:45:48.000 1987-05-20 2024-10-11 01:45:48 +6349 6349 6350 634.9 1269.8000000000002 6349 1987-05-21 2024-10-11 01:45:49.000 1987-05-21 2024-10-11 01:45:49 +6351 6351 6352 635.1 1270.2 6351 1987-05-23 2024-10-11 01:45:51.000 1987-05-23 2024-10-11 01:45:51 +6352 6352 6353 635.2 1270.4 6352 1987-05-24 2024-10-11 01:45:52.000 1987-05-24 2024-10-11 01:45:52 +6353 6353 6354 635.3 1270.6000000000001 6353 1987-05-25 2024-10-11 01:45:53.000 1987-05-25 2024-10-11 01:45:53 +6354 6354 6355 635.4 1270.8000000000002 6354 1987-05-26 2024-10-11 01:45:54.000 1987-05-26 2024-10-11 01:45:54 +6356 6356 6357 635.6 1271.2 6356 1987-05-28 2024-10-11 01:45:56.000 1987-05-28 2024-10-11 01:45:56 +6357 6357 6358 635.7 1271.4 6357 1987-05-29 2024-10-11 01:45:57.000 1987-05-29 2024-10-11 01:45:57 +6358 6358 6359 635.8 1271.6000000000001 6358 1987-05-30 2024-10-11 01:45:58.000 1987-05-30 2024-10-11 01:45:58 +6359 6359 6360 635.9 1271.8000000000002 6359 1987-05-31 2024-10-11 01:45:59.000 1987-05-31 2024-10-11 01:45:59 +6361 6361 6362 636.1 1272.2 6361 1987-06-02 2024-10-11 01:46:01.000 1987-06-02 2024-10-11 01:46:01 +6362 6362 6363 636.2 1272.4 6362 1987-06-03 2024-10-11 01:46:02.000 1987-06-03 2024-10-11 01:46:02 +6363 6363 6364 636.3 1272.6000000000001 6363 1987-06-04 2024-10-11 01:46:03.000 1987-06-04 2024-10-11 01:46:03 +6364 6364 6365 636.4 1272.8000000000002 6364 1987-06-05 2024-10-11 01:46:04.000 1987-06-05 2024-10-11 01:46:04 +6366 6366 6367 636.6 1273.2 6366 1987-06-07 2024-10-11 01:46:06.000 1987-06-07 2024-10-11 01:46:06 +6367 6367 6368 636.7 1273.4 6367 1987-06-08 2024-10-11 01:46:07.000 1987-06-08 2024-10-11 01:46:07 +6368 6368 6369 636.8 1273.6000000000001 6368 1987-06-09 2024-10-11 01:46:08.000 1987-06-09 2024-10-11 01:46:08 +6369 6369 6370 636.9 1273.8000000000002 6369 1987-06-10 2024-10-11 01:46:09.000 1987-06-10 2024-10-11 01:46:09 +6371 6371 6372 637.1 1274.2 6371 1987-06-12 2024-10-11 01:46:11.000 1987-06-12 2024-10-11 01:46:11 +6372 6372 6373 637.2 1274.4 6372 1987-06-13 2024-10-11 01:46:12.000 1987-06-13 2024-10-11 01:46:12 +6373 6373 6374 637.3 1274.6000000000001 6373 1987-06-14 2024-10-11 01:46:13.000 1987-06-14 2024-10-11 01:46:13 +6374 6374 6375 637.4 1274.8000000000002 6374 1987-06-15 2024-10-11 01:46:14.000 1987-06-15 2024-10-11 01:46:14 +6376 6376 6377 637.6 1275.2 6376 1987-06-17 2024-10-11 01:46:16.000 1987-06-17 2024-10-11 01:46:16 +6377 6377 6378 637.7 1275.4 6377 1987-06-18 2024-10-11 01:46:17.000 1987-06-18 2024-10-11 01:46:17 +6378 6378 6379 637.8 1275.6000000000001 6378 1987-06-19 2024-10-11 01:46:18.000 1987-06-19 2024-10-11 01:46:18 +6379 6379 6380 637.9 1275.8000000000002 6379 1987-06-20 2024-10-11 01:46:19.000 1987-06-20 2024-10-11 01:46:19 +6381 6381 6382 638.1 1276.2 6381 1987-06-22 2024-10-11 01:46:21.000 1987-06-22 2024-10-11 01:46:21 +6382 6382 6383 638.2 1276.4 6382 1987-06-23 2024-10-11 01:46:22.000 1987-06-23 2024-10-11 01:46:22 +6383 6383 6384 638.3 1276.6000000000001 6383 1987-06-24 2024-10-11 01:46:23.000 1987-06-24 2024-10-11 01:46:23 +6384 6384 6385 638.4 1276.8000000000002 6384 1987-06-25 2024-10-11 01:46:24.000 1987-06-25 2024-10-11 01:46:24 +6386 6386 6387 638.6 1277.2 6386 1987-06-27 2024-10-11 01:46:26.000 1987-06-27 2024-10-11 01:46:26 +6387 6387 6388 638.7 1277.4 6387 1987-06-28 2024-10-11 01:46:27.000 1987-06-28 2024-10-11 01:46:27 +6388 6388 6389 638.8 1277.6000000000001 6388 1987-06-29 2024-10-11 01:46:28.000 1987-06-29 2024-10-11 01:46:28 +6389 6389 6390 638.9 1277.8000000000002 6389 1987-06-30 2024-10-11 01:46:29.000 1987-06-30 2024-10-11 01:46:29 +6391 6391 6392 639.1 1278.2 6391 1987-07-02 2024-10-11 01:46:31.000 1987-07-02 2024-10-11 01:46:31 +6392 6392 6393 639.2 1278.4 6392 1987-07-03 2024-10-11 01:46:32.000 1987-07-03 2024-10-11 01:46:32 +6393 6393 6394 639.3 1278.6000000000001 6393 1987-07-04 2024-10-11 01:46:33.000 1987-07-04 2024-10-11 01:46:33 +6394 6394 6395 639.4 1278.8000000000002 6394 1987-07-05 2024-10-11 01:46:34.000 1987-07-05 2024-10-11 01:46:34 +6396 6396 6397 639.6 1279.2 6396 1987-07-07 2024-10-11 01:46:36.000 1987-07-07 2024-10-11 01:46:36 +6397 6397 6398 639.7 1279.4 6397 1987-07-08 2024-10-11 01:46:37.000 1987-07-08 2024-10-11 01:46:37 +6398 6398 6399 639.8 1279.6000000000001 6398 1987-07-09 2024-10-11 01:46:38.000 1987-07-09 2024-10-11 01:46:38 +6399 6399 6400 639.9 1279.8000000000002 6399 1987-07-10 2024-10-11 01:46:39.000 1987-07-10 2024-10-11 01:46:39 +6401 6401 6402 640.1 1280.2 6401 1987-07-12 2024-10-11 01:46:41.000 1987-07-12 2024-10-11 01:46:41 +6402 6402 6403 640.2 1280.4 6402 1987-07-13 2024-10-11 01:46:42.000 1987-07-13 2024-10-11 01:46:42 +6403 6403 6404 640.3 1280.6000000000001 6403 1987-07-14 2024-10-11 01:46:43.000 1987-07-14 2024-10-11 01:46:43 +6404 6404 6405 640.4 1280.8000000000002 6404 1987-07-15 2024-10-11 01:46:44.000 1987-07-15 2024-10-11 01:46:44 +6406 6406 6407 640.6 1281.2 6406 1987-07-17 2024-10-11 01:46:46.000 1987-07-17 2024-10-11 01:46:46 +6407 6407 6408 640.7 1281.4 6407 1987-07-18 2024-10-11 01:46:47.000 1987-07-18 2024-10-11 01:46:47 +6408 6408 6409 640.8 1281.6000000000001 6408 1987-07-19 2024-10-11 01:46:48.000 1987-07-19 2024-10-11 01:46:48 +6409 6409 6410 640.9 1281.8000000000002 6409 1987-07-20 2024-10-11 01:46:49.000 1987-07-20 2024-10-11 01:46:49 +6411 6411 6412 641.1 1282.2 6411 1987-07-22 2024-10-11 01:46:51.000 1987-07-22 2024-10-11 01:46:51 +6412 6412 6413 641.2 1282.4 6412 1987-07-23 2024-10-11 01:46:52.000 1987-07-23 2024-10-11 01:46:52 +6413 6413 6414 641.3 1282.6000000000001 6413 1987-07-24 2024-10-11 01:46:53.000 1987-07-24 2024-10-11 01:46:53 +6414 6414 6415 641.4 1282.8000000000002 6414 1987-07-25 2024-10-11 01:46:54.000 1987-07-25 2024-10-11 01:46:54 +6416 6416 6417 641.6 1283.2 6416 1987-07-27 2024-10-11 01:46:56.000 1987-07-27 2024-10-11 01:46:56 +6417 6417 6418 641.7 1283.4 6417 1987-07-28 2024-10-11 01:46:57.000 1987-07-28 2024-10-11 01:46:57 +6418 6418 6419 641.8 1283.6000000000001 6418 1987-07-29 2024-10-11 01:46:58.000 1987-07-29 2024-10-11 01:46:58 +6419 6419 6420 641.9 1283.8000000000002 6419 1987-07-30 2024-10-11 01:46:59.000 1987-07-30 2024-10-11 01:46:59 +6421 6421 6422 642.1 1284.2 6421 1987-08-01 2024-10-11 01:47:01.000 1987-08-01 2024-10-11 01:47:01 +6422 6422 6423 642.2 1284.4 6422 1987-08-02 2024-10-11 01:47:02.000 1987-08-02 2024-10-11 01:47:02 +6423 6423 6424 642.3 1284.6000000000001 6423 1987-08-03 2024-10-11 01:47:03.000 1987-08-03 2024-10-11 01:47:03 +6424 6424 6425 642.4 1284.8000000000002 6424 1987-08-04 2024-10-11 01:47:04.000 1987-08-04 2024-10-11 01:47:04 +6426 6426 6427 642.6 1285.2 6426 1987-08-06 2024-10-11 01:47:06.000 1987-08-06 2024-10-11 01:47:06 +6427 6427 6428 642.7 1285.4 6427 1987-08-07 2024-10-11 01:47:07.000 1987-08-07 2024-10-11 01:47:07 +6428 6428 6429 642.8 1285.6000000000001 6428 1987-08-08 2024-10-11 01:47:08.000 1987-08-08 2024-10-11 01:47:08 +6429 6429 6430 642.9 1285.8000000000002 6429 1987-08-09 2024-10-11 01:47:09.000 1987-08-09 2024-10-11 01:47:09 +6431 6431 6432 643.1 1286.2 6431 1987-08-11 2024-10-11 01:47:11.000 1987-08-11 2024-10-11 01:47:11 +6432 6432 6433 643.2 1286.4 6432 1987-08-12 2024-10-11 01:47:12.000 1987-08-12 2024-10-11 01:47:12 +6433 6433 6434 643.3 1286.6000000000001 6433 1987-08-13 2024-10-11 01:47:13.000 1987-08-13 2024-10-11 01:47:13 +6434 6434 6435 643.4 1286.8000000000002 6434 1987-08-14 2024-10-11 01:47:14.000 1987-08-14 2024-10-11 01:47:14 +6436 6436 6437 643.6 1287.2 6436 1987-08-16 2024-10-11 01:47:16.000 1987-08-16 2024-10-11 01:47:16 +6437 6437 6438 643.7 1287.4 6437 1987-08-17 2024-10-11 01:47:17.000 1987-08-17 2024-10-11 01:47:17 +6438 6438 6439 643.8 1287.6000000000001 6438 1987-08-18 2024-10-11 01:47:18.000 1987-08-18 2024-10-11 01:47:18 +6439 6439 6440 643.9 1287.8000000000002 6439 1987-08-19 2024-10-11 01:47:19.000 1987-08-19 2024-10-11 01:47:19 +6441 6441 6442 644.1 1288.2 6441 1987-08-21 2024-10-11 01:47:21.000 1987-08-21 2024-10-11 01:47:21 +6442 6442 6443 644.2 1288.4 6442 1987-08-22 2024-10-11 01:47:22.000 1987-08-22 2024-10-11 01:47:22 +6443 6443 6444 644.3 1288.6000000000001 6443 1987-08-23 2024-10-11 01:47:23.000 1987-08-23 2024-10-11 01:47:23 +6444 6444 6445 644.4 1288.8000000000002 6444 1987-08-24 2024-10-11 01:47:24.000 1987-08-24 2024-10-11 01:47:24 +6446 6446 6447 644.6 1289.2 6446 1987-08-26 2024-10-11 01:47:26.000 1987-08-26 2024-10-11 01:47:26 +6447 6447 6448 644.7 1289.4 6447 1987-08-27 2024-10-11 01:47:27.000 1987-08-27 2024-10-11 01:47:27 +6448 6448 6449 644.8 1289.6000000000001 6448 1987-08-28 2024-10-11 01:47:28.000 1987-08-28 2024-10-11 01:47:28 +6449 6449 6450 644.9 1289.8000000000002 6449 1987-08-29 2024-10-11 01:47:29.000 1987-08-29 2024-10-11 01:47:29 +6451 6451 6452 645.1 1290.2 6451 1987-08-31 2024-10-11 01:47:31.000 1987-08-31 2024-10-11 01:47:31 +6452 6452 6453 645.2 1290.4 6452 1987-09-01 2024-10-11 01:47:32.000 1987-09-01 2024-10-11 01:47:32 +6453 6453 6454 645.3 1290.6000000000001 6453 1987-09-02 2024-10-11 01:47:33.000 1987-09-02 2024-10-11 01:47:33 +6454 6454 6455 645.4 1290.8000000000002 6454 1987-09-03 2024-10-11 01:47:34.000 1987-09-03 2024-10-11 01:47:34 +6456 6456 6457 645.6 1291.2 6456 1987-09-05 2024-10-11 01:47:36.000 1987-09-05 2024-10-11 01:47:36 +6457 6457 6458 645.7 1291.4 6457 1987-09-06 2024-10-11 01:47:37.000 1987-09-06 2024-10-11 01:47:37 +6458 6458 6459 645.8 1291.6000000000001 6458 1987-09-07 2024-10-11 01:47:38.000 1987-09-07 2024-10-11 01:47:38 +6459 6459 6460 645.9 1291.8000000000002 6459 1987-09-08 2024-10-11 01:47:39.000 1987-09-08 2024-10-11 01:47:39 +6461 6461 6462 646.1 1292.2 6461 1987-09-10 2024-10-11 01:47:41.000 1987-09-10 2024-10-11 01:47:41 +6462 6462 6463 646.2 1292.4 6462 1987-09-11 2024-10-11 01:47:42.000 1987-09-11 2024-10-11 01:47:42 +6463 6463 6464 646.3 1292.6000000000001 6463 1987-09-12 2024-10-11 01:47:43.000 1987-09-12 2024-10-11 01:47:43 +6464 6464 6465 646.4 1292.8000000000002 6464 1987-09-13 2024-10-11 01:47:44.000 1987-09-13 2024-10-11 01:47:44 +6466 6466 6467 646.6 1293.2 6466 1987-09-15 2024-10-11 01:47:46.000 1987-09-15 2024-10-11 01:47:46 +6467 6467 6468 646.7 1293.4 6467 1987-09-16 2024-10-11 01:47:47.000 1987-09-16 2024-10-11 01:47:47 +6468 6468 6469 646.8 1293.6000000000001 6468 1987-09-17 2024-10-11 01:47:48.000 1987-09-17 2024-10-11 01:47:48 +6469 6469 6470 646.9 1293.8000000000002 6469 1987-09-18 2024-10-11 01:47:49.000 1987-09-18 2024-10-11 01:47:49 +6471 6471 6472 647.1 1294.2 6471 1987-09-20 2024-10-11 01:47:51.000 1987-09-20 2024-10-11 01:47:51 +6472 6472 6473 647.2 1294.4 6472 1987-09-21 2024-10-11 01:47:52.000 1987-09-21 2024-10-11 01:47:52 +6473 6473 6474 647.3 1294.6000000000001 6473 1987-09-22 2024-10-11 01:47:53.000 1987-09-22 2024-10-11 01:47:53 +6474 6474 6475 647.4 1294.8000000000002 6474 1987-09-23 2024-10-11 01:47:54.000 1987-09-23 2024-10-11 01:47:54 +6476 6476 6477 647.6 1295.2 6476 1987-09-25 2024-10-11 01:47:56.000 1987-09-25 2024-10-11 01:47:56 +6477 6477 6478 647.7 1295.4 6477 1987-09-26 2024-10-11 01:47:57.000 1987-09-26 2024-10-11 01:47:57 +6478 6478 6479 647.8 1295.6000000000001 6478 1987-09-27 2024-10-11 01:47:58.000 1987-09-27 2024-10-11 01:47:58 +6479 6479 6480 647.9 1295.8000000000002 6479 1987-09-28 2024-10-11 01:47:59.000 1987-09-28 2024-10-11 01:47:59 +6481 6481 6482 648.1 1296.2 6481 1987-09-30 2024-10-11 01:48:01.000 1987-09-30 2024-10-11 01:48:01 +6482 6482 6483 648.2 1296.4 6482 1987-10-01 2024-10-11 01:48:02.000 1987-10-01 2024-10-11 01:48:02 +6483 6483 6484 648.3 1296.6000000000001 6483 1987-10-02 2024-10-11 01:48:03.000 1987-10-02 2024-10-11 01:48:03 +6484 6484 6485 648.4 1296.8000000000002 6484 1987-10-03 2024-10-11 01:48:04.000 1987-10-03 2024-10-11 01:48:04 +6486 6486 6487 648.6 1297.2 6486 1987-10-05 2024-10-11 01:48:06.000 1987-10-05 2024-10-11 01:48:06 +6487 6487 6488 648.7 1297.4 6487 1987-10-06 2024-10-11 01:48:07.000 1987-10-06 2024-10-11 01:48:07 +6488 6488 6489 648.8 1297.6000000000001 6488 1987-10-07 2024-10-11 01:48:08.000 1987-10-07 2024-10-11 01:48:08 +6489 6489 6490 648.9 1297.8000000000002 6489 1987-10-08 2024-10-11 01:48:09.000 1987-10-08 2024-10-11 01:48:09 +6491 6491 6492 649.1 1298.2 6491 1987-10-10 2024-10-11 01:48:11.000 1987-10-10 2024-10-11 01:48:11 +6492 6492 6493 649.2 1298.4 6492 1987-10-11 2024-10-11 01:48:12.000 1987-10-11 2024-10-11 01:48:12 +6493 6493 6494 649.3 1298.6000000000001 6493 1987-10-12 2024-10-11 01:48:13.000 1987-10-12 2024-10-11 01:48:13 +6494 6494 6495 649.4 1298.8000000000002 6494 1987-10-13 2024-10-11 01:48:14.000 1987-10-13 2024-10-11 01:48:14 +6496 6496 6497 649.6 1299.2 6496 1987-10-15 2024-10-11 01:48:16.000 1987-10-15 2024-10-11 01:48:16 +6497 6497 6498 649.7 1299.4 6497 1987-10-16 2024-10-11 01:48:17.000 1987-10-16 2024-10-11 01:48:17 +6498 6498 6499 649.8 1299.6000000000001 6498 1987-10-17 2024-10-11 01:48:18.000 1987-10-17 2024-10-11 01:48:18 +6499 6499 6500 649.9 1299.8000000000002 6499 1987-10-18 2024-10-11 01:48:19.000 1987-10-18 2024-10-11 01:48:19 +6501 6501 6502 650.1 1300.2 6501 1987-10-20 2024-10-11 01:48:21.000 1987-10-20 2024-10-11 01:48:21 +6502 6502 6503 650.2 1300.4 6502 1987-10-21 2024-10-11 01:48:22.000 1987-10-21 2024-10-11 01:48:22 +6503 6503 6504 650.3 1300.6000000000001 6503 1987-10-22 2024-10-11 01:48:23.000 1987-10-22 2024-10-11 01:48:23 +6504 6504 6505 650.4 1300.8000000000002 6504 1987-10-23 2024-10-11 01:48:24.000 1987-10-23 2024-10-11 01:48:24 +6506 6506 6507 650.6 1301.2 6506 1987-10-25 2024-10-11 01:48:26.000 1987-10-25 2024-10-11 01:48:26 +6507 6507 6508 650.7 1301.4 6507 1987-10-26 2024-10-11 01:48:27.000 1987-10-26 2024-10-11 01:48:27 +6508 6508 6509 650.8 1301.6000000000001 6508 1987-10-27 2024-10-11 01:48:28.000 1987-10-27 2024-10-11 01:48:28 +6509 6509 6510 650.9 1301.8000000000002 6509 1987-10-28 2024-10-11 01:48:29.000 1987-10-28 2024-10-11 01:48:29 +6511 6511 6512 651.1 1302.2 6511 1987-10-30 2024-10-11 01:48:31.000 1987-10-30 2024-10-11 01:48:31 +6512 6512 6513 651.2 1302.4 6512 1987-10-31 2024-10-11 01:48:32.000 1987-10-31 2024-10-11 01:48:32 +6513 6513 6514 651.3 1302.6000000000001 6513 1987-11-01 2024-10-11 01:48:33.000 1987-11-01 2024-10-11 01:48:33 +6514 6514 6515 651.4 1302.8000000000002 6514 1987-11-02 2024-10-11 01:48:34.000 1987-11-02 2024-10-11 01:48:34 +6516 6516 6517 651.6 1303.2 6516 1987-11-04 2024-10-11 01:48:36.000 1987-11-04 2024-10-11 01:48:36 +6517 6517 6518 651.7 1303.4 6517 1987-11-05 2024-10-11 01:48:37.000 1987-11-05 2024-10-11 01:48:37 +6518 6518 6519 651.8 1303.6000000000001 6518 1987-11-06 2024-10-11 01:48:38.000 1987-11-06 2024-10-11 01:48:38 +6519 6519 6520 651.9 1303.8000000000002 6519 1987-11-07 2024-10-11 01:48:39.000 1987-11-07 2024-10-11 01:48:39 +6521 6521 6522 652.1 1304.2 6521 1987-11-09 2024-10-11 01:48:41.000 1987-11-09 2024-10-11 01:48:41 +6522 6522 6523 652.2 1304.4 6522 1987-11-10 2024-10-11 01:48:42.000 1987-11-10 2024-10-11 01:48:42 +6523 6523 6524 652.3 1304.6000000000001 6523 1987-11-11 2024-10-11 01:48:43.000 1987-11-11 2024-10-11 01:48:43 +6524 6524 6525 652.4 1304.8000000000002 6524 1987-11-12 2024-10-11 01:48:44.000 1987-11-12 2024-10-11 01:48:44 +6526 6526 6527 652.6 1305.2 6526 1987-11-14 2024-10-11 01:48:46.000 1987-11-14 2024-10-11 01:48:46 +6527 6527 6528 652.7 1305.4 6527 1987-11-15 2024-10-11 01:48:47.000 1987-11-15 2024-10-11 01:48:47 +6528 6528 6529 652.8 1305.6000000000001 6528 1987-11-16 2024-10-11 01:48:48.000 1987-11-16 2024-10-11 01:48:48 +6529 6529 6530 652.9 1305.8000000000002 6529 1987-11-17 2024-10-11 01:48:49.000 1987-11-17 2024-10-11 01:48:49 +6531 6531 6532 653.1 1306.2 6531 1987-11-19 2024-10-11 01:48:51.000 1987-11-19 2024-10-11 01:48:51 +6532 6532 6533 653.2 1306.4 6532 1987-11-20 2024-10-11 01:48:52.000 1987-11-20 2024-10-11 01:48:52 +6533 6533 6534 653.3 1306.6000000000001 6533 1987-11-21 2024-10-11 01:48:53.000 1987-11-21 2024-10-11 01:48:53 +6534 6534 6535 653.4 1306.8000000000002 6534 1987-11-22 2024-10-11 01:48:54.000 1987-11-22 2024-10-11 01:48:54 +6536 6536 6537 653.6 1307.2 6536 1987-11-24 2024-10-11 01:48:56.000 1987-11-24 2024-10-11 01:48:56 +6537 6537 6538 653.7 1307.4 6537 1987-11-25 2024-10-11 01:48:57.000 1987-11-25 2024-10-11 01:48:57 +6538 6538 6539 653.8 1307.6000000000001 6538 1987-11-26 2024-10-11 01:48:58.000 1987-11-26 2024-10-11 01:48:58 +6539 6539 6540 653.9 1307.8000000000002 6539 1987-11-27 2024-10-11 01:48:59.000 1987-11-27 2024-10-11 01:48:59 +6541 6541 6542 654.1 1308.2 6541 1987-11-29 2024-10-11 01:49:01.000 1987-11-29 2024-10-11 01:49:01 +6542 6542 6543 654.2 1308.4 6542 1987-11-30 2024-10-11 01:49:02.000 1987-11-30 2024-10-11 01:49:02 +6543 6543 6544 654.3 1308.6000000000001 6543 1987-12-01 2024-10-11 01:49:03.000 1987-12-01 2024-10-11 01:49:03 +6544 6544 6545 654.4 1308.8000000000002 6544 1987-12-02 2024-10-11 01:49:04.000 1987-12-02 2024-10-11 01:49:04 +6546 6546 6547 654.6 1309.2 6546 1987-12-04 2024-10-11 01:49:06.000 1987-12-04 2024-10-11 01:49:06 +6547 6547 6548 654.7 1309.4 6547 1987-12-05 2024-10-11 01:49:07.000 1987-12-05 2024-10-11 01:49:07 +6548 6548 6549 654.8 1309.6000000000001 6548 1987-12-06 2024-10-11 01:49:08.000 1987-12-06 2024-10-11 01:49:08 +6549 6549 6550 654.9 1309.8000000000002 6549 1987-12-07 2024-10-11 01:49:09.000 1987-12-07 2024-10-11 01:49:09 +6551 6551 6552 655.1 1310.2 6551 1987-12-09 2024-10-11 01:49:11.000 1987-12-09 2024-10-11 01:49:11 +6552 6552 6553 655.2 1310.4 6552 1987-12-10 2024-10-11 01:49:12.000 1987-12-10 2024-10-11 01:49:12 +6553 6553 6554 655.3 1310.6000000000001 6553 1987-12-11 2024-10-11 01:49:13.000 1987-12-11 2024-10-11 01:49:13 +6554 6554 6555 655.4 1310.8000000000002 6554 1987-12-12 2024-10-11 01:49:14.000 1987-12-12 2024-10-11 01:49:14 +6556 6556 6557 655.6 1311.2 6556 1987-12-14 2024-10-11 01:49:16.000 1987-12-14 2024-10-11 01:49:16 +6557 6557 6558 655.7 1311.4 6557 1987-12-15 2024-10-11 01:49:17.000 1987-12-15 2024-10-11 01:49:17 +6558 6558 6559 655.8 1311.6000000000001 6558 1987-12-16 2024-10-11 01:49:18.000 1987-12-16 2024-10-11 01:49:18 +6559 6559 6560 655.9 1311.8000000000002 6559 1987-12-17 2024-10-11 01:49:19.000 1987-12-17 2024-10-11 01:49:19 +6561 6561 6562 656.1 1312.2 6561 1987-12-19 2024-10-11 01:49:21.000 1987-12-19 2024-10-11 01:49:21 +6562 6562 6563 656.2 1312.4 6562 1987-12-20 2024-10-11 01:49:22.000 1987-12-20 2024-10-11 01:49:22 +6563 6563 6564 656.3 1312.6000000000001 6563 1987-12-21 2024-10-11 01:49:23.000 1987-12-21 2024-10-11 01:49:23 +6564 6564 6565 656.4 1312.8000000000002 6564 1987-12-22 2024-10-11 01:49:24.000 1987-12-22 2024-10-11 01:49:24 +6566 6566 6567 656.6 1313.2 6566 1987-12-24 2024-10-11 01:49:26.000 1987-12-24 2024-10-11 01:49:26 +6567 6567 6568 656.7 1313.4 6567 1987-12-25 2024-10-11 01:49:27.000 1987-12-25 2024-10-11 01:49:27 +6568 6568 6569 656.8 1313.6000000000001 6568 1987-12-26 2024-10-11 01:49:28.000 1987-12-26 2024-10-11 01:49:28 +6569 6569 6570 656.9 1313.8000000000002 6569 1987-12-27 2024-10-11 01:49:29.000 1987-12-27 2024-10-11 01:49:29 +6571 6571 6572 657.1 1314.2 6571 1987-12-29 2024-10-11 01:49:31.000 1987-12-29 2024-10-11 01:49:31 +6572 6572 6573 657.2 1314.4 6572 1987-12-30 2024-10-11 01:49:32.000 1987-12-30 2024-10-11 01:49:32 +6573 6573 6574 657.3 1314.6000000000001 6573 1987-12-31 2024-10-11 01:49:33.000 1987-12-31 2024-10-11 01:49:33 +6574 6574 6575 657.4 1314.8000000000002 6574 1988-01-01 2024-10-11 01:49:34.000 1988-01-01 2024-10-11 01:49:34 +6576 6576 6577 657.6 1315.2 6576 1988-01-03 2024-10-11 01:49:36.000 1988-01-03 2024-10-11 01:49:36 +6577 6577 6578 657.7 1315.4 6577 1988-01-04 2024-10-11 01:49:37.000 1988-01-04 2024-10-11 01:49:37 +6578 6578 6579 657.8 1315.6000000000001 6578 1988-01-05 2024-10-11 01:49:38.000 1988-01-05 2024-10-11 01:49:38 +6579 6579 6580 657.9 1315.8000000000002 6579 1988-01-06 2024-10-11 01:49:39.000 1988-01-06 2024-10-11 01:49:39 +6581 6581 6582 658.1 1316.2 6581 1988-01-08 2024-10-11 01:49:41.000 1988-01-08 2024-10-11 01:49:41 +6582 6582 6583 658.2 1316.4 6582 1988-01-09 2024-10-11 01:49:42.000 1988-01-09 2024-10-11 01:49:42 +6583 6583 6584 658.3 1316.6000000000001 6583 1988-01-10 2024-10-11 01:49:43.000 1988-01-10 2024-10-11 01:49:43 +6584 6584 6585 658.4 1316.8000000000002 6584 1988-01-11 2024-10-11 01:49:44.000 1988-01-11 2024-10-11 01:49:44 +6586 6586 6587 658.6 1317.2 6586 1988-01-13 2024-10-11 01:49:46.000 1988-01-13 2024-10-11 01:49:46 +6587 6587 6588 658.7 1317.4 6587 1988-01-14 2024-10-11 01:49:47.000 1988-01-14 2024-10-11 01:49:47 +6588 6588 6589 658.8 1317.6000000000001 6588 1988-01-15 2024-10-11 01:49:48.000 1988-01-15 2024-10-11 01:49:48 +6589 6589 6590 658.9 1317.8000000000002 6589 1988-01-16 2024-10-11 01:49:49.000 1988-01-16 2024-10-11 01:49:49 +6591 6591 6592 659.1 1318.2 6591 1988-01-18 2024-10-11 01:49:51.000 1988-01-18 2024-10-11 01:49:51 +6592 6592 6593 659.2 1318.4 6592 1988-01-19 2024-10-11 01:49:52.000 1988-01-19 2024-10-11 01:49:52 +6593 6593 6594 659.3 1318.6000000000001 6593 1988-01-20 2024-10-11 01:49:53.000 1988-01-20 2024-10-11 01:49:53 +6594 6594 6595 659.4 1318.8000000000002 6594 1988-01-21 2024-10-11 01:49:54.000 1988-01-21 2024-10-11 01:49:54 +6596 6596 6597 659.6 1319.2 6596 1988-01-23 2024-10-11 01:49:56.000 1988-01-23 2024-10-11 01:49:56 +6597 6597 6598 659.7 1319.4 6597 1988-01-24 2024-10-11 01:49:57.000 1988-01-24 2024-10-11 01:49:57 +6598 6598 6599 659.8 1319.6000000000001 6598 1988-01-25 2024-10-11 01:49:58.000 1988-01-25 2024-10-11 01:49:58 +6599 6599 6600 659.9 1319.8000000000002 6599 1988-01-26 2024-10-11 01:49:59.000 1988-01-26 2024-10-11 01:49:59 +6601 6601 6602 660.1 1320.2 6601 1988-01-28 2024-10-11 01:50:01.000 1988-01-28 2024-10-11 01:50:01 +6602 6602 6603 660.2 1320.4 6602 1988-01-29 2024-10-11 01:50:02.000 1988-01-29 2024-10-11 01:50:02 +6603 6603 6604 660.3 1320.6000000000001 6603 1988-01-30 2024-10-11 01:50:03.000 1988-01-30 2024-10-11 01:50:03 +6604 6604 6605 660.4 1320.8000000000002 6604 1988-01-31 2024-10-11 01:50:04.000 1988-01-31 2024-10-11 01:50:04 +6606 6606 6607 660.6 1321.2 6606 1988-02-02 2024-10-11 01:50:06.000 1988-02-02 2024-10-11 01:50:06 +6607 6607 6608 660.7 1321.4 6607 1988-02-03 2024-10-11 01:50:07.000 1988-02-03 2024-10-11 01:50:07 +6608 6608 6609 660.8 1321.6000000000001 6608 1988-02-04 2024-10-11 01:50:08.000 1988-02-04 2024-10-11 01:50:08 +6609 6609 6610 660.9 1321.8000000000002 6609 1988-02-05 2024-10-11 01:50:09.000 1988-02-05 2024-10-11 01:50:09 +6611 6611 6612 661.1 1322.2 6611 1988-02-07 2024-10-11 01:50:11.000 1988-02-07 2024-10-11 01:50:11 +6612 6612 6613 661.2 1322.4 6612 1988-02-08 2024-10-11 01:50:12.000 1988-02-08 2024-10-11 01:50:12 +6613 6613 6614 661.3 1322.6000000000001 6613 1988-02-09 2024-10-11 01:50:13.000 1988-02-09 2024-10-11 01:50:13 +6614 6614 6615 661.4 1322.8000000000002 6614 1988-02-10 2024-10-11 01:50:14.000 1988-02-10 2024-10-11 01:50:14 +6616 6616 6617 661.6 1323.2 6616 1988-02-12 2024-10-11 01:50:16.000 1988-02-12 2024-10-11 01:50:16 +6617 6617 6618 661.7 1323.4 6617 1988-02-13 2024-10-11 01:50:17.000 1988-02-13 2024-10-11 01:50:17 +6618 6618 6619 661.8 1323.6000000000001 6618 1988-02-14 2024-10-11 01:50:18.000 1988-02-14 2024-10-11 01:50:18 +6619 6619 6620 661.9 1323.8000000000002 6619 1988-02-15 2024-10-11 01:50:19.000 1988-02-15 2024-10-11 01:50:19 +6621 6621 6622 662.1 1324.2 6621 1988-02-17 2024-10-11 01:50:21.000 1988-02-17 2024-10-11 01:50:21 +6622 6622 6623 662.2 1324.4 6622 1988-02-18 2024-10-11 01:50:22.000 1988-02-18 2024-10-11 01:50:22 +6623 6623 6624 662.3 1324.6000000000001 6623 1988-02-19 2024-10-11 01:50:23.000 1988-02-19 2024-10-11 01:50:23 +6624 6624 6625 662.4 1324.8000000000002 6624 1988-02-20 2024-10-11 01:50:24.000 1988-02-20 2024-10-11 01:50:24 +6626 6626 6627 662.6 1325.2 6626 1988-02-22 2024-10-11 01:50:26.000 1988-02-22 2024-10-11 01:50:26 +6627 6627 6628 662.7 1325.4 6627 1988-02-23 2024-10-11 01:50:27.000 1988-02-23 2024-10-11 01:50:27 +6628 6628 6629 662.8 1325.6000000000001 6628 1988-02-24 2024-10-11 01:50:28.000 1988-02-24 2024-10-11 01:50:28 +6629 6629 6630 662.9 1325.8000000000002 6629 1988-02-25 2024-10-11 01:50:29.000 1988-02-25 2024-10-11 01:50:29 +6631 6631 6632 663.1 1326.2 6631 1988-02-27 2024-10-11 01:50:31.000 1988-02-27 2024-10-11 01:50:31 +6632 6632 6633 663.2 1326.4 6632 1988-02-28 2024-10-11 01:50:32.000 1988-02-28 2024-10-11 01:50:32 +6633 6633 6634 663.3 1326.6000000000001 6633 1988-02-29 2024-10-11 01:50:33.000 1988-02-29 2024-10-11 01:50:33 +6634 6634 6635 663.4 1326.8000000000002 6634 1988-03-01 2024-10-11 01:50:34.000 1988-03-01 2024-10-11 01:50:34 +6636 6636 6637 663.6 1327.2 6636 1988-03-03 2024-10-11 01:50:36.000 1988-03-03 2024-10-11 01:50:36 +6637 6637 6638 663.7 1327.4 6637 1988-03-04 2024-10-11 01:50:37.000 1988-03-04 2024-10-11 01:50:37 +6638 6638 6639 663.8 1327.6000000000001 6638 1988-03-05 2024-10-11 01:50:38.000 1988-03-05 2024-10-11 01:50:38 +6639 6639 6640 663.9 1327.8000000000002 6639 1988-03-06 2024-10-11 01:50:39.000 1988-03-06 2024-10-11 01:50:39 +6641 6641 6642 664.1 1328.2 6641 1988-03-08 2024-10-11 01:50:41.000 1988-03-08 2024-10-11 01:50:41 +6642 6642 6643 664.2 1328.4 6642 1988-03-09 2024-10-11 01:50:42.000 1988-03-09 2024-10-11 01:50:42 +6643 6643 6644 664.3 1328.6000000000001 6643 1988-03-10 2024-10-11 01:50:43.000 1988-03-10 2024-10-11 01:50:43 +6644 6644 6645 664.4 1328.8000000000002 6644 1988-03-11 2024-10-11 01:50:44.000 1988-03-11 2024-10-11 01:50:44 +6646 6646 6647 664.6 1329.2 6646 1988-03-13 2024-10-11 01:50:46.000 1988-03-13 2024-10-11 01:50:46 +6647 6647 6648 664.7 1329.4 6647 1988-03-14 2024-10-11 01:50:47.000 1988-03-14 2024-10-11 01:50:47 +6648 6648 6649 664.8 1329.6000000000001 6648 1988-03-15 2024-10-11 01:50:48.000 1988-03-15 2024-10-11 01:50:48 +6649 6649 6650 664.9 1329.8000000000002 6649 1988-03-16 2024-10-11 01:50:49.000 1988-03-16 2024-10-11 01:50:49 +6651 6651 6652 665.1 1330.2 6651 1988-03-18 2024-10-11 01:50:51.000 1988-03-18 2024-10-11 01:50:51 +6652 6652 6653 665.2 1330.4 6652 1988-03-19 2024-10-11 01:50:52.000 1988-03-19 2024-10-11 01:50:52 +6653 6653 6654 665.3 1330.6000000000001 6653 1988-03-20 2024-10-11 01:50:53.000 1988-03-20 2024-10-11 01:50:53 +6654 6654 6655 665.4 1330.8000000000002 6654 1988-03-21 2024-10-11 01:50:54.000 1988-03-21 2024-10-11 01:50:54 +6656 6656 6657 665.6 1331.2 6656 1988-03-23 2024-10-11 01:50:56.000 1988-03-23 2024-10-11 01:50:56 +6657 6657 6658 665.7 1331.4 6657 1988-03-24 2024-10-11 01:50:57.000 1988-03-24 2024-10-11 01:50:57 +6658 6658 6659 665.8 1331.6000000000001 6658 1988-03-25 2024-10-11 01:50:58.000 1988-03-25 2024-10-11 01:50:58 +6659 6659 6660 665.9 1331.8000000000002 6659 1988-03-26 2024-10-11 01:50:59.000 1988-03-26 2024-10-11 01:50:59 +6661 6661 6662 666.1 1332.2 6661 1988-03-28 2024-10-11 01:51:01.000 1988-03-28 2024-10-11 01:51:01 +6662 6662 6663 666.2 1332.4 6662 1988-03-29 2024-10-11 01:51:02.000 1988-03-29 2024-10-11 01:51:02 +6663 6663 6664 666.3 1332.6000000000001 6663 1988-03-30 2024-10-11 01:51:03.000 1988-03-30 2024-10-11 01:51:03 +6664 6664 6665 666.4 1332.8000000000002 6664 1988-03-31 2024-10-11 01:51:04.000 1988-03-31 2024-10-11 01:51:04 +6666 6666 6667 666.6 1333.2 6666 1988-04-02 2024-10-11 01:51:06.000 1988-04-02 2024-10-11 01:51:06 +6667 6667 6668 666.7 1333.4 6667 1988-04-03 2024-10-11 01:51:07.000 1988-04-03 2024-10-11 01:51:07 +6668 6668 6669 666.8 1333.6000000000001 6668 1988-04-04 2024-10-11 01:51:08.000 1988-04-04 2024-10-11 01:51:08 +6669 6669 6670 666.9 1333.8000000000002 6669 1988-04-05 2024-10-11 01:51:09.000 1988-04-05 2024-10-11 01:51:09 +6671 6671 6672 667.1 1334.2 6671 1988-04-07 2024-10-11 01:51:11.000 1988-04-07 2024-10-11 01:51:11 +6672 6672 6673 667.2 1334.4 6672 1988-04-08 2024-10-11 01:51:12.000 1988-04-08 2024-10-11 01:51:12 +6673 6673 6674 667.3 1334.6000000000001 6673 1988-04-09 2024-10-11 01:51:13.000 1988-04-09 2024-10-11 01:51:13 +6674 6674 6675 667.4 1334.8000000000002 6674 1988-04-10 2024-10-11 01:51:14.000 1988-04-10 2024-10-11 01:51:14 +6676 6676 6677 667.6 1335.2 6676 1988-04-12 2024-10-11 01:51:16.000 1988-04-12 2024-10-11 01:51:16 +6677 6677 6678 667.7 1335.4 6677 1988-04-13 2024-10-11 01:51:17.000 1988-04-13 2024-10-11 01:51:17 +6678 6678 6679 667.8 1335.6000000000001 6678 1988-04-14 2024-10-11 01:51:18.000 1988-04-14 2024-10-11 01:51:18 +6679 6679 6680 667.9 1335.8000000000002 6679 1988-04-15 2024-10-11 01:51:19.000 1988-04-15 2024-10-11 01:51:19 +6681 6681 6682 668.1 1336.2 6681 1988-04-17 2024-10-11 01:51:21.000 1988-04-17 2024-10-11 01:51:21 +6682 6682 6683 668.2 1336.4 6682 1988-04-18 2024-10-11 01:51:22.000 1988-04-18 2024-10-11 01:51:22 +6683 6683 6684 668.3 1336.6000000000001 6683 1988-04-19 2024-10-11 01:51:23.000 1988-04-19 2024-10-11 01:51:23 +6684 6684 6685 668.4 1336.8000000000002 6684 1988-04-20 2024-10-11 01:51:24.000 1988-04-20 2024-10-11 01:51:24 +6686 6686 6687 668.6 1337.2 6686 1988-04-22 2024-10-11 01:51:26.000 1988-04-22 2024-10-11 01:51:26 +6687 6687 6688 668.7 1337.4 6687 1988-04-23 2024-10-11 01:51:27.000 1988-04-23 2024-10-11 01:51:27 +6688 6688 6689 668.8 1337.6000000000001 6688 1988-04-24 2024-10-11 01:51:28.000 1988-04-24 2024-10-11 01:51:28 +6689 6689 6690 668.9 1337.8000000000002 6689 1988-04-25 2024-10-11 01:51:29.000 1988-04-25 2024-10-11 01:51:29 +6691 6691 6692 669.1 1338.2 6691 1988-04-27 2024-10-11 01:51:31.000 1988-04-27 2024-10-11 01:51:31 +6692 6692 6693 669.2 1338.4 6692 1988-04-28 2024-10-11 01:51:32.000 1988-04-28 2024-10-11 01:51:32 +6693 6693 6694 669.3 1338.6000000000001 6693 1988-04-29 2024-10-11 01:51:33.000 1988-04-29 2024-10-11 01:51:33 +6694 6694 6695 669.4 1338.8000000000002 6694 1988-04-30 2024-10-11 01:51:34.000 1988-04-30 2024-10-11 01:51:34 +6696 6696 6697 669.6 1339.2 6696 1988-05-02 2024-10-11 01:51:36.000 1988-05-02 2024-10-11 01:51:36 +6697 6697 6698 669.7 1339.4 6697 1988-05-03 2024-10-11 01:51:37.000 1988-05-03 2024-10-11 01:51:37 +6698 6698 6699 669.8 1339.6000000000001 6698 1988-05-04 2024-10-11 01:51:38.000 1988-05-04 2024-10-11 01:51:38 +6699 6699 6700 669.9 1339.8000000000002 6699 1988-05-05 2024-10-11 01:51:39.000 1988-05-05 2024-10-11 01:51:39 +6701 6701 6702 670.1 1340.2 6701 1988-05-07 2024-10-11 01:51:41.000 1988-05-07 2024-10-11 01:51:41 +6702 6702 6703 670.2 1340.4 6702 1988-05-08 2024-10-11 01:51:42.000 1988-05-08 2024-10-11 01:51:42 +6703 6703 6704 670.3 1340.6000000000001 6703 1988-05-09 2024-10-11 01:51:43.000 1988-05-09 2024-10-11 01:51:43 +6704 6704 6705 670.4 1340.8000000000002 6704 1988-05-10 2024-10-11 01:51:44.000 1988-05-10 2024-10-11 01:51:44 +6706 6706 6707 670.6 1341.2 6706 1988-05-12 2024-10-11 01:51:46.000 1988-05-12 2024-10-11 01:51:46 +6707 6707 6708 670.7 1341.4 6707 1988-05-13 2024-10-11 01:51:47.000 1988-05-13 2024-10-11 01:51:47 +6708 6708 6709 670.8 1341.6000000000001 6708 1988-05-14 2024-10-11 01:51:48.000 1988-05-14 2024-10-11 01:51:48 +6709 6709 6710 670.9 1341.8000000000002 6709 1988-05-15 2024-10-11 01:51:49.000 1988-05-15 2024-10-11 01:51:49 +6711 6711 6712 671.1 1342.2 6711 1988-05-17 2024-10-11 01:51:51.000 1988-05-17 2024-10-11 01:51:51 +6712 6712 6713 671.2 1342.4 6712 1988-05-18 2024-10-11 01:51:52.000 1988-05-18 2024-10-11 01:51:52 +6713 6713 6714 671.3 1342.6000000000001 6713 1988-05-19 2024-10-11 01:51:53.000 1988-05-19 2024-10-11 01:51:53 +6714 6714 6715 671.4 1342.8000000000002 6714 1988-05-20 2024-10-11 01:51:54.000 1988-05-20 2024-10-11 01:51:54 +6716 6716 6717 671.6 1343.2 6716 1988-05-22 2024-10-11 01:51:56.000 1988-05-22 2024-10-11 01:51:56 +6717 6717 6718 671.7 1343.4 6717 1988-05-23 2024-10-11 01:51:57.000 1988-05-23 2024-10-11 01:51:57 +6718 6718 6719 671.8 1343.6000000000001 6718 1988-05-24 2024-10-11 01:51:58.000 1988-05-24 2024-10-11 01:51:58 +6719 6719 6720 671.9 1343.8000000000002 6719 1988-05-25 2024-10-11 01:51:59.000 1988-05-25 2024-10-11 01:51:59 +6721 6721 6722 672.1 1344.2 6721 1988-05-27 2024-10-11 01:52:01.000 1988-05-27 2024-10-11 01:52:01 +6722 6722 6723 672.2 1344.4 6722 1988-05-28 2024-10-11 01:52:02.000 1988-05-28 2024-10-11 01:52:02 +6723 6723 6724 672.3 1344.6000000000001 6723 1988-05-29 2024-10-11 01:52:03.000 1988-05-29 2024-10-11 01:52:03 +6724 6724 6725 672.4 1344.8000000000002 6724 1988-05-30 2024-10-11 01:52:04.000 1988-05-30 2024-10-11 01:52:04 +6726 6726 6727 672.6 1345.2 6726 1988-06-01 2024-10-11 01:52:06.000 1988-06-01 2024-10-11 01:52:06 +6727 6727 6728 672.7 1345.4 6727 1988-06-02 2024-10-11 01:52:07.000 1988-06-02 2024-10-11 01:52:07 +6728 6728 6729 672.8 1345.6000000000001 6728 1988-06-03 2024-10-11 01:52:08.000 1988-06-03 2024-10-11 01:52:08 +6729 6729 6730 672.9 1345.8000000000002 6729 1988-06-04 2024-10-11 01:52:09.000 1988-06-04 2024-10-11 01:52:09 +6731 6731 6732 673.1 1346.2 6731 1988-06-06 2024-10-11 01:52:11.000 1988-06-06 2024-10-11 01:52:11 +6732 6732 6733 673.2 1346.4 6732 1988-06-07 2024-10-11 01:52:12.000 1988-06-07 2024-10-11 01:52:12 +6733 6733 6734 673.3 1346.6000000000001 6733 1988-06-08 2024-10-11 01:52:13.000 1988-06-08 2024-10-11 01:52:13 +6734 6734 6735 673.4 1346.8000000000002 6734 1988-06-09 2024-10-11 01:52:14.000 1988-06-09 2024-10-11 01:52:14 +6736 6736 6737 673.6 1347.2 6736 1988-06-11 2024-10-11 01:52:16.000 1988-06-11 2024-10-11 01:52:16 +6737 6737 6738 673.7 1347.4 6737 1988-06-12 2024-10-11 01:52:17.000 1988-06-12 2024-10-11 01:52:17 +6738 6738 6739 673.8 1347.6000000000001 6738 1988-06-13 2024-10-11 01:52:18.000 1988-06-13 2024-10-11 01:52:18 +6739 6739 6740 673.9 1347.8000000000002 6739 1988-06-14 2024-10-11 01:52:19.000 1988-06-14 2024-10-11 01:52:19 +6741 6741 6742 674.1 1348.2 6741 1988-06-16 2024-10-11 01:52:21.000 1988-06-16 2024-10-11 01:52:21 +6742 6742 6743 674.2 1348.4 6742 1988-06-17 2024-10-11 01:52:22.000 1988-06-17 2024-10-11 01:52:22 +6743 6743 6744 674.3 1348.6000000000001 6743 1988-06-18 2024-10-11 01:52:23.000 1988-06-18 2024-10-11 01:52:23 +6744 6744 6745 674.4 1348.8000000000002 6744 1988-06-19 2024-10-11 01:52:24.000 1988-06-19 2024-10-11 01:52:24 +6746 6746 6747 674.6 1349.2 6746 1988-06-21 2024-10-11 01:52:26.000 1988-06-21 2024-10-11 01:52:26 +6747 6747 6748 674.7 1349.4 6747 1988-06-22 2024-10-11 01:52:27.000 1988-06-22 2024-10-11 01:52:27 +6748 6748 6749 674.8 1349.6000000000001 6748 1988-06-23 2024-10-11 01:52:28.000 1988-06-23 2024-10-11 01:52:28 +6749 6749 6750 674.9 1349.8000000000002 6749 1988-06-24 2024-10-11 01:52:29.000 1988-06-24 2024-10-11 01:52:29 +6751 6751 6752 675.1 1350.2 6751 1988-06-26 2024-10-11 01:52:31.000 1988-06-26 2024-10-11 01:52:31 +6752 6752 6753 675.2 1350.4 6752 1988-06-27 2024-10-11 01:52:32.000 1988-06-27 2024-10-11 01:52:32 +6753 6753 6754 675.3 1350.6000000000001 6753 1988-06-28 2024-10-11 01:52:33.000 1988-06-28 2024-10-11 01:52:33 +6754 6754 6755 675.4 1350.8000000000002 6754 1988-06-29 2024-10-11 01:52:34.000 1988-06-29 2024-10-11 01:52:34 +6756 6756 6757 675.6 1351.2 6756 1988-07-01 2024-10-11 01:52:36.000 1988-07-01 2024-10-11 01:52:36 +6757 6757 6758 675.7 1351.4 6757 1988-07-02 2024-10-11 01:52:37.000 1988-07-02 2024-10-11 01:52:37 +6758 6758 6759 675.8 1351.6000000000001 6758 1988-07-03 2024-10-11 01:52:38.000 1988-07-03 2024-10-11 01:52:38 +6759 6759 6760 675.9 1351.8000000000002 6759 1988-07-04 2024-10-11 01:52:39.000 1988-07-04 2024-10-11 01:52:39 +6761 6761 6762 676.1 1352.2 6761 1988-07-06 2024-10-11 01:52:41.000 1988-07-06 2024-10-11 01:52:41 +6762 6762 6763 676.2 1352.4 6762 1988-07-07 2024-10-11 01:52:42.000 1988-07-07 2024-10-11 01:52:42 +6763 6763 6764 676.3 1352.6000000000001 6763 1988-07-08 2024-10-11 01:52:43.000 1988-07-08 2024-10-11 01:52:43 +6764 6764 6765 676.4 1352.8000000000002 6764 1988-07-09 2024-10-11 01:52:44.000 1988-07-09 2024-10-11 01:52:44 +6766 6766 6767 676.6 1353.2 6766 1988-07-11 2024-10-11 01:52:46.000 1988-07-11 2024-10-11 01:52:46 +6767 6767 6768 676.7 1353.4 6767 1988-07-12 2024-10-11 01:52:47.000 1988-07-12 2024-10-11 01:52:47 +6768 6768 6769 676.8 1353.6000000000001 6768 1988-07-13 2024-10-11 01:52:48.000 1988-07-13 2024-10-11 01:52:48 +6769 6769 6770 676.9 1353.8000000000002 6769 1988-07-14 2024-10-11 01:52:49.000 1988-07-14 2024-10-11 01:52:49 +6771 6771 6772 677.1 1354.2 6771 1988-07-16 2024-10-11 01:52:51.000 1988-07-16 2024-10-11 01:52:51 +6772 6772 6773 677.2 1354.4 6772 1988-07-17 2024-10-11 01:52:52.000 1988-07-17 2024-10-11 01:52:52 +6773 6773 6774 677.3 1354.6000000000001 6773 1988-07-18 2024-10-11 01:52:53.000 1988-07-18 2024-10-11 01:52:53 +6774 6774 6775 677.4 1354.8000000000002 6774 1988-07-19 2024-10-11 01:52:54.000 1988-07-19 2024-10-11 01:52:54 +6776 6776 6777 677.6 1355.2 6776 1988-07-21 2024-10-11 01:52:56.000 1988-07-21 2024-10-11 01:52:56 +6777 6777 6778 677.7 1355.4 6777 1988-07-22 2024-10-11 01:52:57.000 1988-07-22 2024-10-11 01:52:57 +6778 6778 6779 677.8 1355.6000000000001 6778 1988-07-23 2024-10-11 01:52:58.000 1988-07-23 2024-10-11 01:52:58 +6779 6779 6780 677.9 1355.8000000000002 6779 1988-07-24 2024-10-11 01:52:59.000 1988-07-24 2024-10-11 01:52:59 +6781 6781 6782 678.1 1356.2 6781 1988-07-26 2024-10-11 01:53:01.000 1988-07-26 2024-10-11 01:53:01 +6782 6782 6783 678.2 1356.4 6782 1988-07-27 2024-10-11 01:53:02.000 1988-07-27 2024-10-11 01:53:02 +6783 6783 6784 678.3 1356.6000000000001 6783 1988-07-28 2024-10-11 01:53:03.000 1988-07-28 2024-10-11 01:53:03 +6784 6784 6785 678.4 1356.8000000000002 6784 1988-07-29 2024-10-11 01:53:04.000 1988-07-29 2024-10-11 01:53:04 +6786 6786 6787 678.6 1357.2 6786 1988-07-31 2024-10-11 01:53:06.000 1988-07-31 2024-10-11 01:53:06 +6787 6787 6788 678.7 1357.4 6787 1988-08-01 2024-10-11 01:53:07.000 1988-08-01 2024-10-11 01:53:07 +6788 6788 6789 678.8 1357.6000000000001 6788 1988-08-02 2024-10-11 01:53:08.000 1988-08-02 2024-10-11 01:53:08 +6789 6789 6790 678.9 1357.8000000000002 6789 1988-08-03 2024-10-11 01:53:09.000 1988-08-03 2024-10-11 01:53:09 +6791 6791 6792 679.1 1358.2 6791 1988-08-05 2024-10-11 01:53:11.000 1988-08-05 2024-10-11 01:53:11 +6792 6792 6793 679.2 1358.4 6792 1988-08-06 2024-10-11 01:53:12.000 1988-08-06 2024-10-11 01:53:12 +6793 6793 6794 679.3 1358.6000000000001 6793 1988-08-07 2024-10-11 01:53:13.000 1988-08-07 2024-10-11 01:53:13 +6794 6794 6795 679.4 1358.8000000000002 6794 1988-08-08 2024-10-11 01:53:14.000 1988-08-08 2024-10-11 01:53:14 +6796 6796 6797 679.6 1359.2 6796 1988-08-10 2024-10-11 01:53:16.000 1988-08-10 2024-10-11 01:53:16 +6797 6797 6798 679.7 1359.4 6797 1988-08-11 2024-10-11 01:53:17.000 1988-08-11 2024-10-11 01:53:17 +6798 6798 6799 679.8 1359.6000000000001 6798 1988-08-12 2024-10-11 01:53:18.000 1988-08-12 2024-10-11 01:53:18 +6799 6799 6800 679.9 1359.8000000000002 6799 1988-08-13 2024-10-11 01:53:19.000 1988-08-13 2024-10-11 01:53:19 +6801 6801 6802 680.1 1360.2 6801 1988-08-15 2024-10-11 01:53:21.000 1988-08-15 2024-10-11 01:53:21 +6802 6802 6803 680.2 1360.4 6802 1988-08-16 2024-10-11 01:53:22.000 1988-08-16 2024-10-11 01:53:22 +6803 6803 6804 680.3 1360.6000000000001 6803 1988-08-17 2024-10-11 01:53:23.000 1988-08-17 2024-10-11 01:53:23 +6804 6804 6805 680.4 1360.8000000000002 6804 1988-08-18 2024-10-11 01:53:24.000 1988-08-18 2024-10-11 01:53:24 +6806 6806 6807 680.6 1361.2 6806 1988-08-20 2024-10-11 01:53:26.000 1988-08-20 2024-10-11 01:53:26 +6807 6807 6808 680.7 1361.4 6807 1988-08-21 2024-10-11 01:53:27.000 1988-08-21 2024-10-11 01:53:27 +6808 6808 6809 680.8 1361.6000000000001 6808 1988-08-22 2024-10-11 01:53:28.000 1988-08-22 2024-10-11 01:53:28 +6809 6809 6810 680.9 1361.8000000000002 6809 1988-08-23 2024-10-11 01:53:29.000 1988-08-23 2024-10-11 01:53:29 +6811 6811 6812 681.1 1362.2 6811 1988-08-25 2024-10-11 01:53:31.000 1988-08-25 2024-10-11 01:53:31 +6812 6812 6813 681.2 1362.4 6812 1988-08-26 2024-10-11 01:53:32.000 1988-08-26 2024-10-11 01:53:32 +6813 6813 6814 681.3 1362.6000000000001 6813 1988-08-27 2024-10-11 01:53:33.000 1988-08-27 2024-10-11 01:53:33 +6814 6814 6815 681.4 1362.8000000000002 6814 1988-08-28 2024-10-11 01:53:34.000 1988-08-28 2024-10-11 01:53:34 +6816 6816 6817 681.6 1363.2 6816 1988-08-30 2024-10-11 01:53:36.000 1988-08-30 2024-10-11 01:53:36 +6817 6817 6818 681.7 1363.4 6817 1988-08-31 2024-10-11 01:53:37.000 1988-08-31 2024-10-11 01:53:37 +6818 6818 6819 681.8 1363.6000000000001 6818 1988-09-01 2024-10-11 01:53:38.000 1988-09-01 2024-10-11 01:53:38 +6819 6819 6820 681.9 1363.8000000000002 6819 1988-09-02 2024-10-11 01:53:39.000 1988-09-02 2024-10-11 01:53:39 +6821 6821 6822 682.1 1364.2 6821 1988-09-04 2024-10-11 01:53:41.000 1988-09-04 2024-10-11 01:53:41 +6822 6822 6823 682.2 1364.4 6822 1988-09-05 2024-10-11 01:53:42.000 1988-09-05 2024-10-11 01:53:42 +6823 6823 6824 682.3 1364.6000000000001 6823 1988-09-06 2024-10-11 01:53:43.000 1988-09-06 2024-10-11 01:53:43 +6824 6824 6825 682.4 1364.8000000000002 6824 1988-09-07 2024-10-11 01:53:44.000 1988-09-07 2024-10-11 01:53:44 +6826 6826 6827 682.6 1365.2 6826 1988-09-09 2024-10-11 01:53:46.000 1988-09-09 2024-10-11 01:53:46 +6827 6827 6828 682.7 1365.4 6827 1988-09-10 2024-10-11 01:53:47.000 1988-09-10 2024-10-11 01:53:47 +6828 6828 6829 682.8 1365.6000000000001 6828 1988-09-11 2024-10-11 01:53:48.000 1988-09-11 2024-10-11 01:53:48 +6829 6829 6830 682.9 1365.8000000000002 6829 1988-09-12 2024-10-11 01:53:49.000 1988-09-12 2024-10-11 01:53:49 +6831 6831 6832 683.1 1366.2 6831 1988-09-14 2024-10-11 01:53:51.000 1988-09-14 2024-10-11 01:53:51 +6832 6832 6833 683.2 1366.4 6832 1988-09-15 2024-10-11 01:53:52.000 1988-09-15 2024-10-11 01:53:52 +6833 6833 6834 683.3 1366.6000000000001 6833 1988-09-16 2024-10-11 01:53:53.000 1988-09-16 2024-10-11 01:53:53 +6834 6834 6835 683.4 1366.8000000000002 6834 1988-09-17 2024-10-11 01:53:54.000 1988-09-17 2024-10-11 01:53:54 +6836 6836 6837 683.6 1367.2 6836 1988-09-19 2024-10-11 01:53:56.000 1988-09-19 2024-10-11 01:53:56 +6837 6837 6838 683.7 1367.4 6837 1988-09-20 2024-10-11 01:53:57.000 1988-09-20 2024-10-11 01:53:57 +6838 6838 6839 683.8 1367.6000000000001 6838 1988-09-21 2024-10-11 01:53:58.000 1988-09-21 2024-10-11 01:53:58 +6839 6839 6840 683.9 1367.8000000000002 6839 1988-09-22 2024-10-11 01:53:59.000 1988-09-22 2024-10-11 01:53:59 +6841 6841 6842 684.1 1368.2 6841 1988-09-24 2024-10-11 01:54:01.000 1988-09-24 2024-10-11 01:54:01 +6842 6842 6843 684.2 1368.4 6842 1988-09-25 2024-10-11 01:54:02.000 1988-09-25 2024-10-11 01:54:02 +6843 6843 6844 684.3 1368.6000000000001 6843 1988-09-26 2024-10-11 01:54:03.000 1988-09-26 2024-10-11 01:54:03 +6844 6844 6845 684.4 1368.8000000000002 6844 1988-09-27 2024-10-11 01:54:04.000 1988-09-27 2024-10-11 01:54:04 +6846 6846 6847 684.6 1369.2 6846 1988-09-29 2024-10-11 01:54:06.000 1988-09-29 2024-10-11 01:54:06 +6847 6847 6848 684.7 1369.4 6847 1988-09-30 2024-10-11 01:54:07.000 1988-09-30 2024-10-11 01:54:07 +6848 6848 6849 684.8 1369.6000000000001 6848 1988-10-01 2024-10-11 01:54:08.000 1988-10-01 2024-10-11 01:54:08 +6849 6849 6850 684.9 1369.8000000000002 6849 1988-10-02 2024-10-11 01:54:09.000 1988-10-02 2024-10-11 01:54:09 +6851 6851 6852 685.1 1370.2 6851 1988-10-04 2024-10-11 01:54:11.000 1988-10-04 2024-10-11 01:54:11 +6852 6852 6853 685.2 1370.4 6852 1988-10-05 2024-10-11 01:54:12.000 1988-10-05 2024-10-11 01:54:12 +6853 6853 6854 685.3 1370.6000000000001 6853 1988-10-06 2024-10-11 01:54:13.000 1988-10-06 2024-10-11 01:54:13 +6854 6854 6855 685.4 1370.8000000000002 6854 1988-10-07 2024-10-11 01:54:14.000 1988-10-07 2024-10-11 01:54:14 +6856 6856 6857 685.6 1371.2 6856 1988-10-09 2024-10-11 01:54:16.000 1988-10-09 2024-10-11 01:54:16 +6857 6857 6858 685.7 1371.4 6857 1988-10-10 2024-10-11 01:54:17.000 1988-10-10 2024-10-11 01:54:17 +6858 6858 6859 685.8 1371.6000000000001 6858 1988-10-11 2024-10-11 01:54:18.000 1988-10-11 2024-10-11 01:54:18 +6859 6859 6860 685.9 1371.8000000000002 6859 1988-10-12 2024-10-11 01:54:19.000 1988-10-12 2024-10-11 01:54:19 +6861 6861 6862 686.1 1372.2 6861 1988-10-14 2024-10-11 01:54:21.000 1988-10-14 2024-10-11 01:54:21 +6862 6862 6863 686.2 1372.4 6862 1988-10-15 2024-10-11 01:54:22.000 1988-10-15 2024-10-11 01:54:22 +6863 6863 6864 686.3 1372.6000000000001 6863 1988-10-16 2024-10-11 01:54:23.000 1988-10-16 2024-10-11 01:54:23 +6864 6864 6865 686.4 1372.8000000000002 6864 1988-10-17 2024-10-11 01:54:24.000 1988-10-17 2024-10-11 01:54:24 +6866 6866 6867 686.6 1373.2 6866 1988-10-19 2024-10-11 01:54:26.000 1988-10-19 2024-10-11 01:54:26 +6867 6867 6868 686.7 1373.4 6867 1988-10-20 2024-10-11 01:54:27.000 1988-10-20 2024-10-11 01:54:27 +6868 6868 6869 686.8 1373.6000000000001 6868 1988-10-21 2024-10-11 01:54:28.000 1988-10-21 2024-10-11 01:54:28 +6869 6869 6870 686.9 1373.8000000000002 6869 1988-10-22 2024-10-11 01:54:29.000 1988-10-22 2024-10-11 01:54:29 +6871 6871 6872 687.1 1374.2 6871 1988-10-24 2024-10-11 01:54:31.000 1988-10-24 2024-10-11 01:54:31 +6872 6872 6873 687.2 1374.4 6872 1988-10-25 2024-10-11 01:54:32.000 1988-10-25 2024-10-11 01:54:32 +6873 6873 6874 687.3 1374.6000000000001 6873 1988-10-26 2024-10-11 01:54:33.000 1988-10-26 2024-10-11 01:54:33 +6874 6874 6875 687.4 1374.8000000000002 6874 1988-10-27 2024-10-11 01:54:34.000 1988-10-27 2024-10-11 01:54:34 +6876 6876 6877 687.6 1375.2 6876 1988-10-29 2024-10-11 01:54:36.000 1988-10-29 2024-10-11 01:54:36 +6877 6877 6878 687.7 1375.4 6877 1988-10-30 2024-10-11 01:54:37.000 1988-10-30 2024-10-11 01:54:37 +6878 6878 6879 687.8 1375.6000000000001 6878 1988-10-31 2024-10-11 01:54:38.000 1988-10-31 2024-10-11 01:54:38 +6879 6879 6880 687.9 1375.8000000000002 6879 1988-11-01 2024-10-11 01:54:39.000 1988-11-01 2024-10-11 01:54:39 +6881 6881 6882 688.1 1376.2 6881 1988-11-03 2024-10-11 01:54:41.000 1988-11-03 2024-10-11 01:54:41 +6882 6882 6883 688.2 1376.4 6882 1988-11-04 2024-10-11 01:54:42.000 1988-11-04 2024-10-11 01:54:42 +6883 6883 6884 688.3 1376.6000000000001 6883 1988-11-05 2024-10-11 01:54:43.000 1988-11-05 2024-10-11 01:54:43 +6884 6884 6885 688.4 1376.8000000000002 6884 1988-11-06 2024-10-11 01:54:44.000 1988-11-06 2024-10-11 01:54:44 +6886 6886 6887 688.6 1377.2 6886 1988-11-08 2024-10-11 01:54:46.000 1988-11-08 2024-10-11 01:54:46 +6887 6887 6888 688.7 1377.4 6887 1988-11-09 2024-10-11 01:54:47.000 1988-11-09 2024-10-11 01:54:47 +6888 6888 6889 688.8 1377.6000000000001 6888 1988-11-10 2024-10-11 01:54:48.000 1988-11-10 2024-10-11 01:54:48 +6889 6889 6890 688.9 1377.8000000000002 6889 1988-11-11 2024-10-11 01:54:49.000 1988-11-11 2024-10-11 01:54:49 +6891 6891 6892 689.1 1378.2 6891 1988-11-13 2024-10-11 01:54:51.000 1988-11-13 2024-10-11 01:54:51 +6892 6892 6893 689.2 1378.4 6892 1988-11-14 2024-10-11 01:54:52.000 1988-11-14 2024-10-11 01:54:52 +6893 6893 6894 689.3 1378.6000000000001 6893 1988-11-15 2024-10-11 01:54:53.000 1988-11-15 2024-10-11 01:54:53 +6894 6894 6895 689.4 1378.8000000000002 6894 1988-11-16 2024-10-11 01:54:54.000 1988-11-16 2024-10-11 01:54:54 +6896 6896 6897 689.6 1379.2 6896 1988-11-18 2024-10-11 01:54:56.000 1988-11-18 2024-10-11 01:54:56 +6897 6897 6898 689.7 1379.4 6897 1988-11-19 2024-10-11 01:54:57.000 1988-11-19 2024-10-11 01:54:57 +6898 6898 6899 689.8 1379.6000000000001 6898 1988-11-20 2024-10-11 01:54:58.000 1988-11-20 2024-10-11 01:54:58 +6899 6899 6900 689.9 1379.8000000000002 6899 1988-11-21 2024-10-11 01:54:59.000 1988-11-21 2024-10-11 01:54:59 +6901 6901 6902 690.1 1380.2 6901 1988-11-23 2024-10-11 01:55:01.000 1988-11-23 2024-10-11 01:55:01 +6902 6902 6903 690.2 1380.4 6902 1988-11-24 2024-10-11 01:55:02.000 1988-11-24 2024-10-11 01:55:02 +6903 6903 6904 690.3 1380.6000000000001 6903 1988-11-25 2024-10-11 01:55:03.000 1988-11-25 2024-10-11 01:55:03 +6904 6904 6905 690.4 1380.8000000000002 6904 1988-11-26 2024-10-11 01:55:04.000 1988-11-26 2024-10-11 01:55:04 +6906 6906 6907 690.6 1381.2 6906 1988-11-28 2024-10-11 01:55:06.000 1988-11-28 2024-10-11 01:55:06 +6907 6907 6908 690.7 1381.4 6907 1988-11-29 2024-10-11 01:55:07.000 1988-11-29 2024-10-11 01:55:07 +6908 6908 6909 690.8 1381.6000000000001 6908 1988-11-30 2024-10-11 01:55:08.000 1988-11-30 2024-10-11 01:55:08 +6909 6909 6910 690.9 1381.8000000000002 6909 1988-12-01 2024-10-11 01:55:09.000 1988-12-01 2024-10-11 01:55:09 +6911 6911 6912 691.1 1382.2 6911 1988-12-03 2024-10-11 01:55:11.000 1988-12-03 2024-10-11 01:55:11 +6912 6912 6913 691.2 1382.4 6912 1988-12-04 2024-10-11 01:55:12.000 1988-12-04 2024-10-11 01:55:12 +6913 6913 6914 691.3 1382.6000000000001 6913 1988-12-05 2024-10-11 01:55:13.000 1988-12-05 2024-10-11 01:55:13 +6914 6914 6915 691.4 1382.8000000000002 6914 1988-12-06 2024-10-11 01:55:14.000 1988-12-06 2024-10-11 01:55:14 +6916 6916 6917 691.6 1383.2 6916 1988-12-08 2024-10-11 01:55:16.000 1988-12-08 2024-10-11 01:55:16 +6917 6917 6918 691.7 1383.4 6917 1988-12-09 2024-10-11 01:55:17.000 1988-12-09 2024-10-11 01:55:17 +6918 6918 6919 691.8 1383.6000000000001 6918 1988-12-10 2024-10-11 01:55:18.000 1988-12-10 2024-10-11 01:55:18 +6919 6919 6920 691.9 1383.8000000000002 6919 1988-12-11 2024-10-11 01:55:19.000 1988-12-11 2024-10-11 01:55:19 +6921 6921 6922 692.1 1384.2 6921 1988-12-13 2024-10-11 01:55:21.000 1988-12-13 2024-10-11 01:55:21 +6922 6922 6923 692.2 1384.4 6922 1988-12-14 2024-10-11 01:55:22.000 1988-12-14 2024-10-11 01:55:22 +6923 6923 6924 692.3 1384.6000000000001 6923 1988-12-15 2024-10-11 01:55:23.000 1988-12-15 2024-10-11 01:55:23 +6924 6924 6925 692.4 1384.8000000000002 6924 1988-12-16 2024-10-11 01:55:24.000 1988-12-16 2024-10-11 01:55:24 +6926 6926 6927 692.6 1385.2 6926 1988-12-18 2024-10-11 01:55:26.000 1988-12-18 2024-10-11 01:55:26 +6927 6927 6928 692.7 1385.4 6927 1988-12-19 2024-10-11 01:55:27.000 1988-12-19 2024-10-11 01:55:27 +6928 6928 6929 692.8 1385.6000000000001 6928 1988-12-20 2024-10-11 01:55:28.000 1988-12-20 2024-10-11 01:55:28 +6929 6929 6930 692.9 1385.8000000000002 6929 1988-12-21 2024-10-11 01:55:29.000 1988-12-21 2024-10-11 01:55:29 +6931 6931 6932 693.1 1386.2 6931 1988-12-23 2024-10-11 01:55:31.000 1988-12-23 2024-10-11 01:55:31 +6932 6932 6933 693.2 1386.4 6932 1988-12-24 2024-10-11 01:55:32.000 1988-12-24 2024-10-11 01:55:32 +6933 6933 6934 693.3 1386.6000000000001 6933 1988-12-25 2024-10-11 01:55:33.000 1988-12-25 2024-10-11 01:55:33 +6934 6934 6935 693.4 1386.8000000000002 6934 1988-12-26 2024-10-11 01:55:34.000 1988-12-26 2024-10-11 01:55:34 +6936 6936 6937 693.6 1387.2 6936 1988-12-28 2024-10-11 01:55:36.000 1988-12-28 2024-10-11 01:55:36 +6937 6937 6938 693.7 1387.4 6937 1988-12-29 2024-10-11 01:55:37.000 1988-12-29 2024-10-11 01:55:37 +6938 6938 6939 693.8 1387.6000000000001 6938 1988-12-30 2024-10-11 01:55:38.000 1988-12-30 2024-10-11 01:55:38 +6939 6939 6940 693.9 1387.8000000000002 6939 1988-12-31 2024-10-11 01:55:39.000 1988-12-31 2024-10-11 01:55:39 +6941 6941 6942 694.1 1388.2 6941 1989-01-02 2024-10-11 01:55:41.000 1989-01-02 2024-10-11 01:55:41 +6942 6942 6943 694.2 1388.4 6942 1989-01-03 2024-10-11 01:55:42.000 1989-01-03 2024-10-11 01:55:42 +6943 6943 6944 694.3 1388.6000000000001 6943 1989-01-04 2024-10-11 01:55:43.000 1989-01-04 2024-10-11 01:55:43 +6944 6944 6945 694.4 1388.8000000000002 6944 1989-01-05 2024-10-11 01:55:44.000 1989-01-05 2024-10-11 01:55:44 +6946 6946 6947 694.6 1389.2 6946 1989-01-07 2024-10-11 01:55:46.000 1989-01-07 2024-10-11 01:55:46 +6947 6947 6948 694.7 1389.4 6947 1989-01-08 2024-10-11 01:55:47.000 1989-01-08 2024-10-11 01:55:47 +6948 6948 6949 694.8 1389.6000000000001 6948 1989-01-09 2024-10-11 01:55:48.000 1989-01-09 2024-10-11 01:55:48 +6949 6949 6950 694.9 1389.8000000000002 6949 1989-01-10 2024-10-11 01:55:49.000 1989-01-10 2024-10-11 01:55:49 +6951 6951 6952 695.1 1390.2 6951 1989-01-12 2024-10-11 01:55:51.000 1989-01-12 2024-10-11 01:55:51 +6952 6952 6953 695.2 1390.4 6952 1989-01-13 2024-10-11 01:55:52.000 1989-01-13 2024-10-11 01:55:52 +6953 6953 6954 695.3 1390.6000000000001 6953 1989-01-14 2024-10-11 01:55:53.000 1989-01-14 2024-10-11 01:55:53 +6954 6954 6955 695.4 1390.8000000000002 6954 1989-01-15 2024-10-11 01:55:54.000 1989-01-15 2024-10-11 01:55:54 +6956 6956 6957 695.6 1391.2 6956 1989-01-17 2024-10-11 01:55:56.000 1989-01-17 2024-10-11 01:55:56 +6957 6957 6958 695.7 1391.4 6957 1989-01-18 2024-10-11 01:55:57.000 1989-01-18 2024-10-11 01:55:57 +6958 6958 6959 695.8 1391.6000000000001 6958 1989-01-19 2024-10-11 01:55:58.000 1989-01-19 2024-10-11 01:55:58 +6959 6959 6960 695.9 1391.8000000000002 6959 1989-01-20 2024-10-11 01:55:59.000 1989-01-20 2024-10-11 01:55:59 +6961 6961 6962 696.1 1392.2 6961 1989-01-22 2024-10-11 01:56:01.000 1989-01-22 2024-10-11 01:56:01 +6962 6962 6963 696.2 1392.4 6962 1989-01-23 2024-10-11 01:56:02.000 1989-01-23 2024-10-11 01:56:02 +6963 6963 6964 696.3 1392.6000000000001 6963 1989-01-24 2024-10-11 01:56:03.000 1989-01-24 2024-10-11 01:56:03 +6964 6964 6965 696.4 1392.8000000000002 6964 1989-01-25 2024-10-11 01:56:04.000 1989-01-25 2024-10-11 01:56:04 +6966 6966 6967 696.6 1393.2 6966 1989-01-27 2024-10-11 01:56:06.000 1989-01-27 2024-10-11 01:56:06 +6967 6967 6968 696.7 1393.4 6967 1989-01-28 2024-10-11 01:56:07.000 1989-01-28 2024-10-11 01:56:07 +6968 6968 6969 696.8 1393.6000000000001 6968 1989-01-29 2024-10-11 01:56:08.000 1989-01-29 2024-10-11 01:56:08 +6969 6969 6970 696.9 1393.8000000000002 6969 1989-01-30 2024-10-11 01:56:09.000 1989-01-30 2024-10-11 01:56:09 +6971 6971 6972 697.1 1394.2 6971 1989-02-01 2024-10-11 01:56:11.000 1989-02-01 2024-10-11 01:56:11 +6972 6972 6973 697.2 1394.4 6972 1989-02-02 2024-10-11 01:56:12.000 1989-02-02 2024-10-11 01:56:12 +6973 6973 6974 697.3 1394.6000000000001 6973 1989-02-03 2024-10-11 01:56:13.000 1989-02-03 2024-10-11 01:56:13 +6974 6974 6975 697.4 1394.8000000000002 6974 1989-02-04 2024-10-11 01:56:14.000 1989-02-04 2024-10-11 01:56:14 +6976 6976 6977 697.6 1395.2 6976 1989-02-06 2024-10-11 01:56:16.000 1989-02-06 2024-10-11 01:56:16 +6977 6977 6978 697.7 1395.4 6977 1989-02-07 2024-10-11 01:56:17.000 1989-02-07 2024-10-11 01:56:17 +6978 6978 6979 697.8 1395.6000000000001 6978 1989-02-08 2024-10-11 01:56:18.000 1989-02-08 2024-10-11 01:56:18 +6979 6979 6980 697.9 1395.8000000000002 6979 1989-02-09 2024-10-11 01:56:19.000 1989-02-09 2024-10-11 01:56:19 +6981 6981 6982 698.1 1396.2 6981 1989-02-11 2024-10-11 01:56:21.000 1989-02-11 2024-10-11 01:56:21 +6982 6982 6983 698.2 1396.4 6982 1989-02-12 2024-10-11 01:56:22.000 1989-02-12 2024-10-11 01:56:22 +6983 6983 6984 698.3 1396.6000000000001 6983 1989-02-13 2024-10-11 01:56:23.000 1989-02-13 2024-10-11 01:56:23 +6984 6984 6985 698.4 1396.8000000000002 6984 1989-02-14 2024-10-11 01:56:24.000 1989-02-14 2024-10-11 01:56:24 +6986 6986 6987 698.6 1397.2 6986 1989-02-16 2024-10-11 01:56:26.000 1989-02-16 2024-10-11 01:56:26 +6987 6987 6988 698.7 1397.4 6987 1989-02-17 2024-10-11 01:56:27.000 1989-02-17 2024-10-11 01:56:27 +6988 6988 6989 698.8 1397.6000000000001 6988 1989-02-18 2024-10-11 01:56:28.000 1989-02-18 2024-10-11 01:56:28 +6989 6989 6990 698.9 1397.8000000000002 6989 1989-02-19 2024-10-11 01:56:29.000 1989-02-19 2024-10-11 01:56:29 +6991 6991 6992 699.1 1398.2 6991 1989-02-21 2024-10-11 01:56:31.000 1989-02-21 2024-10-11 01:56:31 +6992 6992 6993 699.2 1398.4 6992 1989-02-22 2024-10-11 01:56:32.000 1989-02-22 2024-10-11 01:56:32 +6993 6993 6994 699.3 1398.6000000000001 6993 1989-02-23 2024-10-11 01:56:33.000 1989-02-23 2024-10-11 01:56:33 +6994 6994 6995 699.4 1398.8000000000002 6994 1989-02-24 2024-10-11 01:56:34.000 1989-02-24 2024-10-11 01:56:34 +6996 6996 6997 699.6 1399.2 6996 1989-02-26 2024-10-11 01:56:36.000 1989-02-26 2024-10-11 01:56:36 +6997 6997 6998 699.7 1399.4 6997 1989-02-27 2024-10-11 01:56:37.000 1989-02-27 2024-10-11 01:56:37 +6998 6998 6999 699.8 1399.6000000000001 6998 1989-02-28 2024-10-11 01:56:38.000 1989-02-28 2024-10-11 01:56:38 +6999 6999 7000 699.9 1399.8000000000002 6999 1989-03-01 2024-10-11 01:56:39.000 1989-03-01 2024-10-11 01:56:39 +7001 7001 7002 700.1 1400.2 7001 1989-03-03 2024-10-11 01:56:41.000 1989-03-03 2024-10-11 01:56:41 +7002 7002 7003 700.2 1400.4 7002 1989-03-04 2024-10-11 01:56:42.000 1989-03-04 2024-10-11 01:56:42 +7003 7003 7004 700.3 1400.6000000000001 7003 1989-03-05 2024-10-11 01:56:43.000 1989-03-05 2024-10-11 01:56:43 +7004 7004 7005 700.4 1400.8000000000002 7004 1989-03-06 2024-10-11 01:56:44.000 1989-03-06 2024-10-11 01:56:44 +7006 7006 7007 700.6 1401.2 7006 1989-03-08 2024-10-11 01:56:46.000 1989-03-08 2024-10-11 01:56:46 +7007 7007 7008 700.7 1401.4 7007 1989-03-09 2024-10-11 01:56:47.000 1989-03-09 2024-10-11 01:56:47 +7008 7008 7009 700.8 1401.6000000000001 7008 1989-03-10 2024-10-11 01:56:48.000 1989-03-10 2024-10-11 01:56:48 +7009 7009 7010 700.9 1401.8000000000002 7009 1989-03-11 2024-10-11 01:56:49.000 1989-03-11 2024-10-11 01:56:49 +7011 7011 7012 701.1 1402.2 7011 1989-03-13 2024-10-11 01:56:51.000 1989-03-13 2024-10-11 01:56:51 +7012 7012 7013 701.2 1402.4 7012 1989-03-14 2024-10-11 01:56:52.000 1989-03-14 2024-10-11 01:56:52 +7013 7013 7014 701.3 1402.6000000000001 7013 1989-03-15 2024-10-11 01:56:53.000 1989-03-15 2024-10-11 01:56:53 +7014 7014 7015 701.4 1402.8000000000002 7014 1989-03-16 2024-10-11 01:56:54.000 1989-03-16 2024-10-11 01:56:54 +7016 7016 7017 701.6 1403.2 7016 1989-03-18 2024-10-11 01:56:56.000 1989-03-18 2024-10-11 01:56:56 +7017 7017 7018 701.7 1403.4 7017 1989-03-19 2024-10-11 01:56:57.000 1989-03-19 2024-10-11 01:56:57 +7018 7018 7019 701.8 1403.6000000000001 7018 1989-03-20 2024-10-11 01:56:58.000 1989-03-20 2024-10-11 01:56:58 +7019 7019 7020 701.9 1403.8000000000002 7019 1989-03-21 2024-10-11 01:56:59.000 1989-03-21 2024-10-11 01:56:59 +7021 7021 7022 702.1 1404.2 7021 1989-03-23 2024-10-11 01:57:01.000 1989-03-23 2024-10-11 01:57:01 +7022 7022 7023 702.2 1404.4 7022 1989-03-24 2024-10-11 01:57:02.000 1989-03-24 2024-10-11 01:57:02 +7023 7023 7024 702.3 1404.6000000000001 7023 1989-03-25 2024-10-11 01:57:03.000 1989-03-25 2024-10-11 01:57:03 +7024 7024 7025 702.4 1404.8000000000002 7024 1989-03-26 2024-10-11 01:57:04.000 1989-03-26 2024-10-11 01:57:04 +7026 7026 7027 702.6 1405.2 7026 1989-03-28 2024-10-11 01:57:06.000 1989-03-28 2024-10-11 01:57:06 +7027 7027 7028 702.7 1405.4 7027 1989-03-29 2024-10-11 01:57:07.000 1989-03-29 2024-10-11 01:57:07 +7028 7028 7029 702.8 1405.6000000000001 7028 1989-03-30 2024-10-11 01:57:08.000 1989-03-30 2024-10-11 01:57:08 +7029 7029 7030 702.9 1405.8000000000002 7029 1989-03-31 2024-10-11 01:57:09.000 1989-03-31 2024-10-11 01:57:09 +7031 7031 7032 703.1 1406.2 7031 1989-04-02 2024-10-11 01:57:11.000 1989-04-02 2024-10-11 01:57:11 +7032 7032 7033 703.2 1406.4 7032 1989-04-03 2024-10-11 01:57:12.000 1989-04-03 2024-10-11 01:57:12 +7033 7033 7034 703.3 1406.6000000000001 7033 1989-04-04 2024-10-11 01:57:13.000 1989-04-04 2024-10-11 01:57:13 +7034 7034 7035 703.4 1406.8000000000002 7034 1989-04-05 2024-10-11 01:57:14.000 1989-04-05 2024-10-11 01:57:14 +7036 7036 7037 703.6 1407.2 7036 1989-04-07 2024-10-11 01:57:16.000 1989-04-07 2024-10-11 01:57:16 +7037 7037 7038 703.7 1407.4 7037 1989-04-08 2024-10-11 01:57:17.000 1989-04-08 2024-10-11 01:57:17 +7038 7038 7039 703.8 1407.6000000000001 7038 1989-04-09 2024-10-11 01:57:18.000 1989-04-09 2024-10-11 01:57:18 +7039 7039 7040 703.9 1407.8000000000002 7039 1989-04-10 2024-10-11 01:57:19.000 1989-04-10 2024-10-11 01:57:19 +7041 7041 7042 704.1 1408.2 7041 1989-04-12 2024-10-11 01:57:21.000 1989-04-12 2024-10-11 01:57:21 +7042 7042 7043 704.2 1408.4 7042 1989-04-13 2024-10-11 01:57:22.000 1989-04-13 2024-10-11 01:57:22 +7043 7043 7044 704.3 1408.6000000000001 7043 1989-04-14 2024-10-11 01:57:23.000 1989-04-14 2024-10-11 01:57:23 +7044 7044 7045 704.4 1408.8000000000002 7044 1989-04-15 2024-10-11 01:57:24.000 1989-04-15 2024-10-11 01:57:24 +7046 7046 7047 704.6 1409.2 7046 1989-04-17 2024-10-11 01:57:26.000 1989-04-17 2024-10-11 01:57:26 +7047 7047 7048 704.7 1409.4 7047 1989-04-18 2024-10-11 01:57:27.000 1989-04-18 2024-10-11 01:57:27 +7048 7048 7049 704.8 1409.6000000000001 7048 1989-04-19 2024-10-11 01:57:28.000 1989-04-19 2024-10-11 01:57:28 +7049 7049 7050 704.9 1409.8000000000002 7049 1989-04-20 2024-10-11 01:57:29.000 1989-04-20 2024-10-11 01:57:29 +7051 7051 7052 705.1 1410.2 7051 1989-04-22 2024-10-11 01:57:31.000 1989-04-22 2024-10-11 01:57:31 +7052 7052 7053 705.2 1410.4 7052 1989-04-23 2024-10-11 01:57:32.000 1989-04-23 2024-10-11 01:57:32 +7053 7053 7054 705.3 1410.6000000000001 7053 1989-04-24 2024-10-11 01:57:33.000 1989-04-24 2024-10-11 01:57:33 +7054 7054 7055 705.4 1410.8000000000002 7054 1989-04-25 2024-10-11 01:57:34.000 1989-04-25 2024-10-11 01:57:34 +7056 7056 7057 705.6 1411.2 7056 1989-04-27 2024-10-11 01:57:36.000 1989-04-27 2024-10-11 01:57:36 +7057 7057 7058 705.7 1411.4 7057 1989-04-28 2024-10-11 01:57:37.000 1989-04-28 2024-10-11 01:57:37 +7058 7058 7059 705.8 1411.6000000000001 7058 1989-04-29 2024-10-11 01:57:38.000 1989-04-29 2024-10-11 01:57:38 +7059 7059 7060 705.9 1411.8000000000002 7059 1989-04-30 2024-10-11 01:57:39.000 1989-04-30 2024-10-11 01:57:39 +7061 7061 7062 706.1 1412.2 7061 1989-05-02 2024-10-11 01:57:41.000 1989-05-02 2024-10-11 01:57:41 +7062 7062 7063 706.2 1412.4 7062 1989-05-03 2024-10-11 01:57:42.000 1989-05-03 2024-10-11 01:57:42 +7063 7063 7064 706.3 1412.6000000000001 7063 1989-05-04 2024-10-11 01:57:43.000 1989-05-04 2024-10-11 01:57:43 +7064 7064 7065 706.4 1412.8000000000002 7064 1989-05-05 2024-10-11 01:57:44.000 1989-05-05 2024-10-11 01:57:44 +7066 7066 7067 706.6 1413.2 7066 1989-05-07 2024-10-11 01:57:46.000 1989-05-07 2024-10-11 01:57:46 +7067 7067 7068 706.7 1413.4 7067 1989-05-08 2024-10-11 01:57:47.000 1989-05-08 2024-10-11 01:57:47 +7068 7068 7069 706.8 1413.6000000000001 7068 1989-05-09 2024-10-11 01:57:48.000 1989-05-09 2024-10-11 01:57:48 +7069 7069 7070 706.9 1413.8000000000002 7069 1989-05-10 2024-10-11 01:57:49.000 1989-05-10 2024-10-11 01:57:49 +7071 7071 7072 707.1 1414.2 7071 1989-05-12 2024-10-11 01:57:51.000 1989-05-12 2024-10-11 01:57:51 +7072 7072 7073 707.2 1414.4 7072 1989-05-13 2024-10-11 01:57:52.000 1989-05-13 2024-10-11 01:57:52 +7073 7073 7074 707.3 1414.6000000000001 7073 1989-05-14 2024-10-11 01:57:53.000 1989-05-14 2024-10-11 01:57:53 +7074 7074 7075 707.4 1414.8000000000002 7074 1989-05-15 2024-10-11 01:57:54.000 1989-05-15 2024-10-11 01:57:54 +7076 7076 7077 707.6 1415.2 7076 1989-05-17 2024-10-11 01:57:56.000 1989-05-17 2024-10-11 01:57:56 +7077 7077 7078 707.7 1415.4 7077 1989-05-18 2024-10-11 01:57:57.000 1989-05-18 2024-10-11 01:57:57 +7078 7078 7079 707.8 1415.6000000000001 7078 1989-05-19 2024-10-11 01:57:58.000 1989-05-19 2024-10-11 01:57:58 +7079 7079 7080 707.9 1415.8000000000002 7079 1989-05-20 2024-10-11 01:57:59.000 1989-05-20 2024-10-11 01:57:59 +7081 7081 7082 708.1 1416.2 7081 1989-05-22 2024-10-11 01:58:01.000 1989-05-22 2024-10-11 01:58:01 +7082 7082 7083 708.2 1416.4 7082 1989-05-23 2024-10-11 01:58:02.000 1989-05-23 2024-10-11 01:58:02 +7083 7083 7084 708.3 1416.6000000000001 7083 1989-05-24 2024-10-11 01:58:03.000 1989-05-24 2024-10-11 01:58:03 +7084 7084 7085 708.4 1416.8000000000002 7084 1989-05-25 2024-10-11 01:58:04.000 1989-05-25 2024-10-11 01:58:04 +7086 7086 7087 708.6 1417.2 7086 1989-05-27 2024-10-11 01:58:06.000 1989-05-27 2024-10-11 01:58:06 +7087 7087 7088 708.7 1417.4 7087 1989-05-28 2024-10-11 01:58:07.000 1989-05-28 2024-10-11 01:58:07 +7088 7088 7089 708.8 1417.6000000000001 7088 1989-05-29 2024-10-11 01:58:08.000 1989-05-29 2024-10-11 01:58:08 +7089 7089 7090 708.9 1417.8000000000002 7089 1989-05-30 2024-10-11 01:58:09.000 1989-05-30 2024-10-11 01:58:09 +7091 7091 7092 709.1 1418.2 7091 1989-06-01 2024-10-11 01:58:11.000 1989-06-01 2024-10-11 01:58:11 +7092 7092 7093 709.2 1418.4 7092 1989-06-02 2024-10-11 01:58:12.000 1989-06-02 2024-10-11 01:58:12 +7093 7093 7094 709.3 1418.6000000000001 7093 1989-06-03 2024-10-11 01:58:13.000 1989-06-03 2024-10-11 01:58:13 +7094 7094 7095 709.4 1418.8000000000002 7094 1989-06-04 2024-10-11 01:58:14.000 1989-06-04 2024-10-11 01:58:14 +7096 7096 7097 709.6 1419.2 7096 1989-06-06 2024-10-11 01:58:16.000 1989-06-06 2024-10-11 01:58:16 +7097 7097 7098 709.7 1419.4 7097 1989-06-07 2024-10-11 01:58:17.000 1989-06-07 2024-10-11 01:58:17 +7098 7098 7099 709.8 1419.6000000000001 7098 1989-06-08 2024-10-11 01:58:18.000 1989-06-08 2024-10-11 01:58:18 +7099 7099 7100 709.9 1419.8000000000002 7099 1989-06-09 2024-10-11 01:58:19.000 1989-06-09 2024-10-11 01:58:19 +7101 7101 7102 710.1 1420.2 7101 1989-06-11 2024-10-11 01:58:21.000 1989-06-11 2024-10-11 01:58:21 +7102 7102 7103 710.2 1420.4 7102 1989-06-12 2024-10-11 01:58:22.000 1989-06-12 2024-10-11 01:58:22 +7103 7103 7104 710.3 1420.6000000000001 7103 1989-06-13 2024-10-11 01:58:23.000 1989-06-13 2024-10-11 01:58:23 +7104 7104 7105 710.4 1420.8000000000002 7104 1989-06-14 2024-10-11 01:58:24.000 1989-06-14 2024-10-11 01:58:24 +7106 7106 7107 710.6 1421.2 7106 1989-06-16 2024-10-11 01:58:26.000 1989-06-16 2024-10-11 01:58:26 +7107 7107 7108 710.7 1421.4 7107 1989-06-17 2024-10-11 01:58:27.000 1989-06-17 2024-10-11 01:58:27 +7108 7108 7109 710.8 1421.6000000000001 7108 1989-06-18 2024-10-11 01:58:28.000 1989-06-18 2024-10-11 01:58:28 +7109 7109 7110 710.9 1421.8000000000002 7109 1989-06-19 2024-10-11 01:58:29.000 1989-06-19 2024-10-11 01:58:29 +7111 7111 7112 711.1 1422.2 7111 1989-06-21 2024-10-11 01:58:31.000 1989-06-21 2024-10-11 01:58:31 +7112 7112 7113 711.2 1422.4 7112 1989-06-22 2024-10-11 01:58:32.000 1989-06-22 2024-10-11 01:58:32 +7113 7113 7114 711.3 1422.6000000000001 7113 1989-06-23 2024-10-11 01:58:33.000 1989-06-23 2024-10-11 01:58:33 +7114 7114 7115 711.4 1422.8000000000002 7114 1989-06-24 2024-10-11 01:58:34.000 1989-06-24 2024-10-11 01:58:34 +7116 7116 7117 711.6 1423.2 7116 1989-06-26 2024-10-11 01:58:36.000 1989-06-26 2024-10-11 01:58:36 +7117 7117 7118 711.7 1423.4 7117 1989-06-27 2024-10-11 01:58:37.000 1989-06-27 2024-10-11 01:58:37 +7118 7118 7119 711.8 1423.6000000000001 7118 1989-06-28 2024-10-11 01:58:38.000 1989-06-28 2024-10-11 01:58:38 +7119 7119 7120 711.9 1423.8000000000002 7119 1989-06-29 2024-10-11 01:58:39.000 1989-06-29 2024-10-11 01:58:39 +7121 7121 7122 712.1 1424.2 7121 1989-07-01 2024-10-11 01:58:41.000 1989-07-01 2024-10-11 01:58:41 +7122 7122 7123 712.2 1424.4 7122 1989-07-02 2024-10-11 01:58:42.000 1989-07-02 2024-10-11 01:58:42 +7123 7123 7124 712.3 1424.6000000000001 7123 1989-07-03 2024-10-11 01:58:43.000 1989-07-03 2024-10-11 01:58:43 +7124 7124 7125 712.4 1424.8000000000002 7124 1989-07-04 2024-10-11 01:58:44.000 1989-07-04 2024-10-11 01:58:44 +7126 7126 7127 712.6 1425.2 7126 1989-07-06 2024-10-11 01:58:46.000 1989-07-06 2024-10-11 01:58:46 +7127 7127 7128 712.7 1425.4 7127 1989-07-07 2024-10-11 01:58:47.000 1989-07-07 2024-10-11 01:58:47 +7128 7128 7129 712.8 1425.6000000000001 7128 1989-07-08 2024-10-11 01:58:48.000 1989-07-08 2024-10-11 01:58:48 +7129 7129 7130 712.9 1425.8000000000002 7129 1989-07-09 2024-10-11 01:58:49.000 1989-07-09 2024-10-11 01:58:49 +7131 7131 7132 713.1 1426.2 7131 1989-07-11 2024-10-11 01:58:51.000 1989-07-11 2024-10-11 01:58:51 +7132 7132 7133 713.2 1426.4 7132 1989-07-12 2024-10-11 01:58:52.000 1989-07-12 2024-10-11 01:58:52 +7133 7133 7134 713.3 1426.6000000000001 7133 1989-07-13 2024-10-11 01:58:53.000 1989-07-13 2024-10-11 01:58:53 +7134 7134 7135 713.4 1426.8000000000002 7134 1989-07-14 2024-10-11 01:58:54.000 1989-07-14 2024-10-11 01:58:54 +7136 7136 7137 713.6 1427.2 7136 1989-07-16 2024-10-11 01:58:56.000 1989-07-16 2024-10-11 01:58:56 +7137 7137 7138 713.7 1427.4 7137 1989-07-17 2024-10-11 01:58:57.000 1989-07-17 2024-10-11 01:58:57 +7138 7138 7139 713.8 1427.6000000000001 7138 1989-07-18 2024-10-11 01:58:58.000 1989-07-18 2024-10-11 01:58:58 +7139 7139 7140 713.9 1427.8000000000002 7139 1989-07-19 2024-10-11 01:58:59.000 1989-07-19 2024-10-11 01:58:59 +7141 7141 7142 714.1 1428.2 7141 1989-07-21 2024-10-11 01:59:01.000 1989-07-21 2024-10-11 01:59:01 +7142 7142 7143 714.2 1428.4 7142 1989-07-22 2024-10-11 01:59:02.000 1989-07-22 2024-10-11 01:59:02 +7143 7143 7144 714.3 1428.6000000000001 7143 1989-07-23 2024-10-11 01:59:03.000 1989-07-23 2024-10-11 01:59:03 +7144 7144 7145 714.4 1428.8000000000002 7144 1989-07-24 2024-10-11 01:59:04.000 1989-07-24 2024-10-11 01:59:04 +7146 7146 7147 714.6 1429.2 7146 1989-07-26 2024-10-11 01:59:06.000 1989-07-26 2024-10-11 01:59:06 +7147 7147 7148 714.7 1429.4 7147 1989-07-27 2024-10-11 01:59:07.000 1989-07-27 2024-10-11 01:59:07 +7148 7148 7149 714.8 1429.6000000000001 7148 1989-07-28 2024-10-11 01:59:08.000 1989-07-28 2024-10-11 01:59:08 +7149 7149 7150 714.9 1429.8000000000002 7149 1989-07-29 2024-10-11 01:59:09.000 1989-07-29 2024-10-11 01:59:09 +7151 7151 7152 715.1 1430.2 7151 1989-07-31 2024-10-11 01:59:11.000 1989-07-31 2024-10-11 01:59:11 +7152 7152 7153 715.2 1430.4 7152 1989-08-01 2024-10-11 01:59:12.000 1989-08-01 2024-10-11 01:59:12 +7153 7153 7154 715.3 1430.6000000000001 7153 1989-08-02 2024-10-11 01:59:13.000 1989-08-02 2024-10-11 01:59:13 +7154 7154 7155 715.4 1430.8000000000002 7154 1989-08-03 2024-10-11 01:59:14.000 1989-08-03 2024-10-11 01:59:14 +7156 7156 7157 715.6 1431.2 7156 1989-08-05 2024-10-11 01:59:16.000 1989-08-05 2024-10-11 01:59:16 +7157 7157 7158 715.7 1431.4 7157 1989-08-06 2024-10-11 01:59:17.000 1989-08-06 2024-10-11 01:59:17 +7158 7158 7159 715.8 1431.6000000000001 7158 1989-08-07 2024-10-11 01:59:18.000 1989-08-07 2024-10-11 01:59:18 +7159 7159 7160 715.9 1431.8000000000002 7159 1989-08-08 2024-10-11 01:59:19.000 1989-08-08 2024-10-11 01:59:19 +7161 7161 7162 716.1 1432.2 7161 1989-08-10 2024-10-11 01:59:21.000 1989-08-10 2024-10-11 01:59:21 +7162 7162 7163 716.2 1432.4 7162 1989-08-11 2024-10-11 01:59:22.000 1989-08-11 2024-10-11 01:59:22 +7163 7163 7164 716.3 1432.6000000000001 7163 1989-08-12 2024-10-11 01:59:23.000 1989-08-12 2024-10-11 01:59:23 +7164 7164 7165 716.4 1432.8000000000002 7164 1989-08-13 2024-10-11 01:59:24.000 1989-08-13 2024-10-11 01:59:24 +7166 7166 7167 716.6 1433.2 7166 1989-08-15 2024-10-11 01:59:26.000 1989-08-15 2024-10-11 01:59:26 +7167 7167 7168 716.7 1433.4 7167 1989-08-16 2024-10-11 01:59:27.000 1989-08-16 2024-10-11 01:59:27 +7168 7168 7169 716.8 1433.6000000000001 7168 1989-08-17 2024-10-11 01:59:28.000 1989-08-17 2024-10-11 01:59:28 +7169 7169 7170 716.9 1433.8000000000002 7169 1989-08-18 2024-10-11 01:59:29.000 1989-08-18 2024-10-11 01:59:29 +7171 7171 7172 717.1 1434.2 7171 1989-08-20 2024-10-11 01:59:31.000 1989-08-20 2024-10-11 01:59:31 +7172 7172 7173 717.2 1434.4 7172 1989-08-21 2024-10-11 01:59:32.000 1989-08-21 2024-10-11 01:59:32 +7173 7173 7174 717.3 1434.6000000000001 7173 1989-08-22 2024-10-11 01:59:33.000 1989-08-22 2024-10-11 01:59:33 +7174 7174 7175 717.4 1434.8000000000002 7174 1989-08-23 2024-10-11 01:59:34.000 1989-08-23 2024-10-11 01:59:34 +7176 7176 7177 717.6 1435.2 7176 1989-08-25 2024-10-11 01:59:36.000 1989-08-25 2024-10-11 01:59:36 +7177 7177 7178 717.7 1435.4 7177 1989-08-26 2024-10-11 01:59:37.000 1989-08-26 2024-10-11 01:59:37 +7178 7178 7179 717.8 1435.6000000000001 7178 1989-08-27 2024-10-11 01:59:38.000 1989-08-27 2024-10-11 01:59:38 +7179 7179 7180 717.9 1435.8000000000002 7179 1989-08-28 2024-10-11 01:59:39.000 1989-08-28 2024-10-11 01:59:39 +7181 7181 7182 718.1 1436.2 7181 1989-08-30 2024-10-11 01:59:41.000 1989-08-30 2024-10-11 01:59:41 +7182 7182 7183 718.2 1436.4 7182 1989-08-31 2024-10-11 01:59:42.000 1989-08-31 2024-10-11 01:59:42 +7183 7183 7184 718.3 1436.6000000000001 7183 1989-09-01 2024-10-11 01:59:43.000 1989-09-01 2024-10-11 01:59:43 +7184 7184 7185 718.4 1436.8000000000002 7184 1989-09-02 2024-10-11 01:59:44.000 1989-09-02 2024-10-11 01:59:44 +7186 7186 7187 718.6 1437.2 7186 1989-09-04 2024-10-11 01:59:46.000 1989-09-04 2024-10-11 01:59:46 +7187 7187 7188 718.7 1437.4 7187 1989-09-05 2024-10-11 01:59:47.000 1989-09-05 2024-10-11 01:59:47 +7188 7188 7189 718.8 1437.6000000000001 7188 1989-09-06 2024-10-11 01:59:48.000 1989-09-06 2024-10-11 01:59:48 +7189 7189 7190 718.9 1437.8000000000002 7189 1989-09-07 2024-10-11 01:59:49.000 1989-09-07 2024-10-11 01:59:49 +7191 7191 7192 719.1 1438.2 7191 1989-09-09 2024-10-11 01:59:51.000 1989-09-09 2024-10-11 01:59:51 +7192 7192 7193 719.2 1438.4 7192 1989-09-10 2024-10-11 01:59:52.000 1989-09-10 2024-10-11 01:59:52 +7193 7193 7194 719.3 1438.6000000000001 7193 1989-09-11 2024-10-11 01:59:53.000 1989-09-11 2024-10-11 01:59:53 +7194 7194 7195 719.4 1438.8000000000002 7194 1989-09-12 2024-10-11 01:59:54.000 1989-09-12 2024-10-11 01:59:54 +7196 7196 7197 719.6 1439.2 7196 1989-09-14 2024-10-11 01:59:56.000 1989-09-14 2024-10-11 01:59:56 +7197 7197 7198 719.7 1439.4 7197 1989-09-15 2024-10-11 01:59:57.000 1989-09-15 2024-10-11 01:59:57 +7198 7198 7199 719.8 1439.6000000000001 7198 1989-09-16 2024-10-11 01:59:58.000 1989-09-16 2024-10-11 01:59:58 +7199 7199 7200 719.9 1439.8000000000002 7199 1989-09-17 2024-10-11 01:59:59.000 1989-09-17 2024-10-11 01:59:59 +7201 7201 7202 720.1 1440.2 7201 1989-09-19 2024-10-11 02:00:01.000 1989-09-19 2024-10-11 02:00:01 +7202 7202 7203 720.2 1440.4 7202 1989-09-20 2024-10-11 02:00:02.000 1989-09-20 2024-10-11 02:00:02 +7203 7203 7204 720.3 1440.6000000000001 7203 1989-09-21 2024-10-11 02:00:03.000 1989-09-21 2024-10-11 02:00:03 +7204 7204 7205 720.4 1440.8000000000002 7204 1989-09-22 2024-10-11 02:00:04.000 1989-09-22 2024-10-11 02:00:04 +7206 7206 7207 720.6 1441.2 7206 1989-09-24 2024-10-11 02:00:06.000 1989-09-24 2024-10-11 02:00:06 +7207 7207 7208 720.7 1441.4 7207 1989-09-25 2024-10-11 02:00:07.000 1989-09-25 2024-10-11 02:00:07 +7208 7208 7209 720.8 1441.6000000000001 7208 1989-09-26 2024-10-11 02:00:08.000 1989-09-26 2024-10-11 02:00:08 +7209 7209 7210 720.9 1441.8000000000002 7209 1989-09-27 2024-10-11 02:00:09.000 1989-09-27 2024-10-11 02:00:09 +7211 7211 7212 721.1 1442.2 7211 1989-09-29 2024-10-11 02:00:11.000 1989-09-29 2024-10-11 02:00:11 +7212 7212 7213 721.2 1442.4 7212 1989-09-30 2024-10-11 02:00:12.000 1989-09-30 2024-10-11 02:00:12 +7213 7213 7214 721.3 1442.6000000000001 7213 1989-10-01 2024-10-11 02:00:13.000 1989-10-01 2024-10-11 02:00:13 +7214 7214 7215 721.4 1442.8000000000002 7214 1989-10-02 2024-10-11 02:00:14.000 1989-10-02 2024-10-11 02:00:14 +7216 7216 7217 721.6 1443.2 7216 1989-10-04 2024-10-11 02:00:16.000 1989-10-04 2024-10-11 02:00:16 +7217 7217 7218 721.7 1443.4 7217 1989-10-05 2024-10-11 02:00:17.000 1989-10-05 2024-10-11 02:00:17 +7218 7218 7219 721.8 1443.6000000000001 7218 1989-10-06 2024-10-11 02:00:18.000 1989-10-06 2024-10-11 02:00:18 +7219 7219 7220 721.9 1443.8000000000002 7219 1989-10-07 2024-10-11 02:00:19.000 1989-10-07 2024-10-11 02:00:19 +7221 7221 7222 722.1 1444.2 7221 1989-10-09 2024-10-11 02:00:21.000 1989-10-09 2024-10-11 02:00:21 +7222 7222 7223 722.2 1444.4 7222 1989-10-10 2024-10-11 02:00:22.000 1989-10-10 2024-10-11 02:00:22 +7223 7223 7224 722.3 1444.6000000000001 7223 1989-10-11 2024-10-11 02:00:23.000 1989-10-11 2024-10-11 02:00:23 +7224 7224 7225 722.4 1444.8000000000002 7224 1989-10-12 2024-10-11 02:00:24.000 1989-10-12 2024-10-11 02:00:24 +7226 7226 7227 722.6 1445.2 7226 1989-10-14 2024-10-11 02:00:26.000 1989-10-14 2024-10-11 02:00:26 +7227 7227 7228 722.7 1445.4 7227 1989-10-15 2024-10-11 02:00:27.000 1989-10-15 2024-10-11 02:00:27 +7228 7228 7229 722.8 1445.6000000000001 7228 1989-10-16 2024-10-11 02:00:28.000 1989-10-16 2024-10-11 02:00:28 +7229 7229 7230 722.9 1445.8000000000002 7229 1989-10-17 2024-10-11 02:00:29.000 1989-10-17 2024-10-11 02:00:29 +7231 7231 7232 723.1 1446.2 7231 1989-10-19 2024-10-11 02:00:31.000 1989-10-19 2024-10-11 02:00:31 +7232 7232 7233 723.2 1446.4 7232 1989-10-20 2024-10-11 02:00:32.000 1989-10-20 2024-10-11 02:00:32 +7233 7233 7234 723.3 1446.6000000000001 7233 1989-10-21 2024-10-11 02:00:33.000 1989-10-21 2024-10-11 02:00:33 +7234 7234 7235 723.4 1446.8000000000002 7234 1989-10-22 2024-10-11 02:00:34.000 1989-10-22 2024-10-11 02:00:34 +7236 7236 7237 723.6 1447.2 7236 1989-10-24 2024-10-11 02:00:36.000 1989-10-24 2024-10-11 02:00:36 +7237 7237 7238 723.7 1447.4 7237 1989-10-25 2024-10-11 02:00:37.000 1989-10-25 2024-10-11 02:00:37 +7238 7238 7239 723.8 1447.6000000000001 7238 1989-10-26 2024-10-11 02:00:38.000 1989-10-26 2024-10-11 02:00:38 +7239 7239 7240 723.9 1447.8000000000002 7239 1989-10-27 2024-10-11 02:00:39.000 1989-10-27 2024-10-11 02:00:39 +7241 7241 7242 724.1 1448.2 7241 1989-10-29 2024-10-11 02:00:41.000 1989-10-29 2024-10-11 02:00:41 +7242 7242 7243 724.2 1448.4 7242 1989-10-30 2024-10-11 02:00:42.000 1989-10-30 2024-10-11 02:00:42 +7243 7243 7244 724.3 1448.6000000000001 7243 1989-10-31 2024-10-11 02:00:43.000 1989-10-31 2024-10-11 02:00:43 +7244 7244 7245 724.4 1448.8000000000002 7244 1989-11-01 2024-10-11 02:00:44.000 1989-11-01 2024-10-11 02:00:44 +7246 7246 7247 724.6 1449.2 7246 1989-11-03 2024-10-11 02:00:46.000 1989-11-03 2024-10-11 02:00:46 +7247 7247 7248 724.7 1449.4 7247 1989-11-04 2024-10-11 02:00:47.000 1989-11-04 2024-10-11 02:00:47 +7248 7248 7249 724.8 1449.6000000000001 7248 1989-11-05 2024-10-11 02:00:48.000 1989-11-05 2024-10-11 02:00:48 +7249 7249 7250 724.9 1449.8000000000002 7249 1989-11-06 2024-10-11 02:00:49.000 1989-11-06 2024-10-11 02:00:49 +7251 7251 7252 725.1 1450.2 7251 1989-11-08 2024-10-11 02:00:51.000 1989-11-08 2024-10-11 02:00:51 +7252 7252 7253 725.2 1450.4 7252 1989-11-09 2024-10-11 02:00:52.000 1989-11-09 2024-10-11 02:00:52 +7253 7253 7254 725.3 1450.6000000000001 7253 1989-11-10 2024-10-11 02:00:53.000 1989-11-10 2024-10-11 02:00:53 +7254 7254 7255 725.4 1450.8000000000002 7254 1989-11-11 2024-10-11 02:00:54.000 1989-11-11 2024-10-11 02:00:54 +7256 7256 7257 725.6 1451.2 7256 1989-11-13 2024-10-11 02:00:56.000 1989-11-13 2024-10-11 02:00:56 +7257 7257 7258 725.7 1451.4 7257 1989-11-14 2024-10-11 02:00:57.000 1989-11-14 2024-10-11 02:00:57 +7258 7258 7259 725.8 1451.6000000000001 7258 1989-11-15 2024-10-11 02:00:58.000 1989-11-15 2024-10-11 02:00:58 +7259 7259 7260 725.9 1451.8000000000002 7259 1989-11-16 2024-10-11 02:00:59.000 1989-11-16 2024-10-11 02:00:59 +7261 7261 7262 726.1 1452.2 7261 1989-11-18 2024-10-11 02:01:01.000 1989-11-18 2024-10-11 02:01:01 +7262 7262 7263 726.2 1452.4 7262 1989-11-19 2024-10-11 02:01:02.000 1989-11-19 2024-10-11 02:01:02 +7263 7263 7264 726.3 1452.6000000000001 7263 1989-11-20 2024-10-11 02:01:03.000 1989-11-20 2024-10-11 02:01:03 +7264 7264 7265 726.4 1452.8000000000002 7264 1989-11-21 2024-10-11 02:01:04.000 1989-11-21 2024-10-11 02:01:04 +7266 7266 7267 726.6 1453.2 7266 1989-11-23 2024-10-11 02:01:06.000 1989-11-23 2024-10-11 02:01:06 +7267 7267 7268 726.7 1453.4 7267 1989-11-24 2024-10-11 02:01:07.000 1989-11-24 2024-10-11 02:01:07 +7268 7268 7269 726.8 1453.6000000000001 7268 1989-11-25 2024-10-11 02:01:08.000 1989-11-25 2024-10-11 02:01:08 +7269 7269 7270 726.9 1453.8000000000002 7269 1989-11-26 2024-10-11 02:01:09.000 1989-11-26 2024-10-11 02:01:09 +7271 7271 7272 727.1 1454.2 7271 1989-11-28 2024-10-11 02:01:11.000 1989-11-28 2024-10-11 02:01:11 +7272 7272 7273 727.2 1454.4 7272 1989-11-29 2024-10-11 02:01:12.000 1989-11-29 2024-10-11 02:01:12 +7273 7273 7274 727.3 1454.6000000000001 7273 1989-11-30 2024-10-11 02:01:13.000 1989-11-30 2024-10-11 02:01:13 +7274 7274 7275 727.4 1454.8000000000002 7274 1989-12-01 2024-10-11 02:01:14.000 1989-12-01 2024-10-11 02:01:14 +7276 7276 7277 727.6 1455.2 7276 1989-12-03 2024-10-11 02:01:16.000 1989-12-03 2024-10-11 02:01:16 +7277 7277 7278 727.7 1455.4 7277 1989-12-04 2024-10-11 02:01:17.000 1989-12-04 2024-10-11 02:01:17 +7278 7278 7279 727.8 1455.6000000000001 7278 1989-12-05 2024-10-11 02:01:18.000 1989-12-05 2024-10-11 02:01:18 +7279 7279 7280 727.9 1455.8000000000002 7279 1989-12-06 2024-10-11 02:01:19.000 1989-12-06 2024-10-11 02:01:19 +7281 7281 7282 728.1 1456.2 7281 1989-12-08 2024-10-11 02:01:21.000 1989-12-08 2024-10-11 02:01:21 +7282 7282 7283 728.2 1456.4 7282 1989-12-09 2024-10-11 02:01:22.000 1989-12-09 2024-10-11 02:01:22 +7283 7283 7284 728.3 1456.6000000000001 7283 1989-12-10 2024-10-11 02:01:23.000 1989-12-10 2024-10-11 02:01:23 +7284 7284 7285 728.4 1456.8000000000002 7284 1989-12-11 2024-10-11 02:01:24.000 1989-12-11 2024-10-11 02:01:24 +7286 7286 7287 728.6 1457.2 7286 1989-12-13 2024-10-11 02:01:26.000 1989-12-13 2024-10-11 02:01:26 +7287 7287 7288 728.7 1457.4 7287 1989-12-14 2024-10-11 02:01:27.000 1989-12-14 2024-10-11 02:01:27 +7288 7288 7289 728.8 1457.6000000000001 7288 1989-12-15 2024-10-11 02:01:28.000 1989-12-15 2024-10-11 02:01:28 +7289 7289 7290 728.9 1457.8000000000002 7289 1989-12-16 2024-10-11 02:01:29.000 1989-12-16 2024-10-11 02:01:29 +7291 7291 7292 729.1 1458.2 7291 1989-12-18 2024-10-11 02:01:31.000 1989-12-18 2024-10-11 02:01:31 +7292 7292 7293 729.2 1458.4 7292 1989-12-19 2024-10-11 02:01:32.000 1989-12-19 2024-10-11 02:01:32 +7293 7293 7294 729.3 1458.6000000000001 7293 1989-12-20 2024-10-11 02:01:33.000 1989-12-20 2024-10-11 02:01:33 +7294 7294 7295 729.4 1458.8000000000002 7294 1989-12-21 2024-10-11 02:01:34.000 1989-12-21 2024-10-11 02:01:34 +7296 7296 7297 729.6 1459.2 7296 1989-12-23 2024-10-11 02:01:36.000 1989-12-23 2024-10-11 02:01:36 +7297 7297 7298 729.7 1459.4 7297 1989-12-24 2024-10-11 02:01:37.000 1989-12-24 2024-10-11 02:01:37 +7298 7298 7299 729.8 1459.6000000000001 7298 1989-12-25 2024-10-11 02:01:38.000 1989-12-25 2024-10-11 02:01:38 +7299 7299 7300 729.9 1459.8000000000002 7299 1989-12-26 2024-10-11 02:01:39.000 1989-12-26 2024-10-11 02:01:39 +7301 7301 7302 730.1 1460.2 7301 1989-12-28 2024-10-11 02:01:41.000 1989-12-28 2024-10-11 02:01:41 +7302 7302 7303 730.2 1460.4 7302 1989-12-29 2024-10-11 02:01:42.000 1989-12-29 2024-10-11 02:01:42 +7303 7303 7304 730.3 1460.6000000000001 7303 1989-12-30 2024-10-11 02:01:43.000 1989-12-30 2024-10-11 02:01:43 +7304 7304 7305 730.4 1460.8000000000002 7304 1989-12-31 2024-10-11 02:01:44.000 1989-12-31 2024-10-11 02:01:44 +7306 7306 7307 730.6 1461.2 7306 1990-01-02 2024-10-11 02:01:46.000 1990-01-02 2024-10-11 02:01:46 +7307 7307 7308 730.7 1461.4 7307 1990-01-03 2024-10-11 02:01:47.000 1990-01-03 2024-10-11 02:01:47 +7308 7308 7309 730.8 1461.6000000000001 7308 1990-01-04 2024-10-11 02:01:48.000 1990-01-04 2024-10-11 02:01:48 +7309 7309 7310 730.9 1461.8000000000002 7309 1990-01-05 2024-10-11 02:01:49.000 1990-01-05 2024-10-11 02:01:49 +7311 7311 7312 731.1 1462.2 7311 1990-01-07 2024-10-11 02:01:51.000 1990-01-07 2024-10-11 02:01:51 +7312 7312 7313 731.2 1462.4 7312 1990-01-08 2024-10-11 02:01:52.000 1990-01-08 2024-10-11 02:01:52 +7313 7313 7314 731.3 1462.6000000000001 7313 1990-01-09 2024-10-11 02:01:53.000 1990-01-09 2024-10-11 02:01:53 +7314 7314 7315 731.4 1462.8000000000002 7314 1990-01-10 2024-10-11 02:01:54.000 1990-01-10 2024-10-11 02:01:54 +7316 7316 7317 731.6 1463.2 7316 1990-01-12 2024-10-11 02:01:56.000 1990-01-12 2024-10-11 02:01:56 +7317 7317 7318 731.7 1463.4 7317 1990-01-13 2024-10-11 02:01:57.000 1990-01-13 2024-10-11 02:01:57 +7318 7318 7319 731.8 1463.6000000000001 7318 1990-01-14 2024-10-11 02:01:58.000 1990-01-14 2024-10-11 02:01:58 +7319 7319 7320 731.9 1463.8000000000002 7319 1990-01-15 2024-10-11 02:01:59.000 1990-01-15 2024-10-11 02:01:59 +7321 7321 7322 732.1 1464.2 7321 1990-01-17 2024-10-11 02:02:01.000 1990-01-17 2024-10-11 02:02:01 +7322 7322 7323 732.2 1464.4 7322 1990-01-18 2024-10-11 02:02:02.000 1990-01-18 2024-10-11 02:02:02 +7323 7323 7324 732.3 1464.6000000000001 7323 1990-01-19 2024-10-11 02:02:03.000 1990-01-19 2024-10-11 02:02:03 +7324 7324 7325 732.4 1464.8000000000002 7324 1990-01-20 2024-10-11 02:02:04.000 1990-01-20 2024-10-11 02:02:04 +7326 7326 7327 732.6 1465.2 7326 1990-01-22 2024-10-11 02:02:06.000 1990-01-22 2024-10-11 02:02:06 +7327 7327 7328 732.7 1465.4 7327 1990-01-23 2024-10-11 02:02:07.000 1990-01-23 2024-10-11 02:02:07 +7328 7328 7329 732.8 1465.6000000000001 7328 1990-01-24 2024-10-11 02:02:08.000 1990-01-24 2024-10-11 02:02:08 +7329 7329 7330 732.9 1465.8000000000002 7329 1990-01-25 2024-10-11 02:02:09.000 1990-01-25 2024-10-11 02:02:09 +7331 7331 7332 733.1 1466.2 7331 1990-01-27 2024-10-11 02:02:11.000 1990-01-27 2024-10-11 02:02:11 +7332 7332 7333 733.2 1466.4 7332 1990-01-28 2024-10-11 02:02:12.000 1990-01-28 2024-10-11 02:02:12 +7333 7333 7334 733.3 1466.6000000000001 7333 1990-01-29 2024-10-11 02:02:13.000 1990-01-29 2024-10-11 02:02:13 +7334 7334 7335 733.4 1466.8000000000002 7334 1990-01-30 2024-10-11 02:02:14.000 1990-01-30 2024-10-11 02:02:14 +7336 7336 7337 733.6 1467.2 7336 1990-02-01 2024-10-11 02:02:16.000 1990-02-01 2024-10-11 02:02:16 +7337 7337 7338 733.7 1467.4 7337 1990-02-02 2024-10-11 02:02:17.000 1990-02-02 2024-10-11 02:02:17 +7338 7338 7339 733.8 1467.6000000000001 7338 1990-02-03 2024-10-11 02:02:18.000 1990-02-03 2024-10-11 02:02:18 +7339 7339 7340 733.9 1467.8000000000002 7339 1990-02-04 2024-10-11 02:02:19.000 1990-02-04 2024-10-11 02:02:19 +7341 7341 7342 734.1 1468.2 7341 1990-02-06 2024-10-11 02:02:21.000 1990-02-06 2024-10-11 02:02:21 +7342 7342 7343 734.2 1468.4 7342 1990-02-07 2024-10-11 02:02:22.000 1990-02-07 2024-10-11 02:02:22 +7343 7343 7344 734.3 1468.6000000000001 7343 1990-02-08 2024-10-11 02:02:23.000 1990-02-08 2024-10-11 02:02:23 +7344 7344 7345 734.4 1468.8000000000002 7344 1990-02-09 2024-10-11 02:02:24.000 1990-02-09 2024-10-11 02:02:24 +7346 7346 7347 734.6 1469.2 7346 1990-02-11 2024-10-11 02:02:26.000 1990-02-11 2024-10-11 02:02:26 +7347 7347 7348 734.7 1469.4 7347 1990-02-12 2024-10-11 02:02:27.000 1990-02-12 2024-10-11 02:02:27 +7348 7348 7349 734.8 1469.6000000000001 7348 1990-02-13 2024-10-11 02:02:28.000 1990-02-13 2024-10-11 02:02:28 +7349 7349 7350 734.9 1469.8000000000002 7349 1990-02-14 2024-10-11 02:02:29.000 1990-02-14 2024-10-11 02:02:29 +7351 7351 7352 735.1 1470.2 7351 1990-02-16 2024-10-11 02:02:31.000 1990-02-16 2024-10-11 02:02:31 +7352 7352 7353 735.2 1470.4 7352 1990-02-17 2024-10-11 02:02:32.000 1990-02-17 2024-10-11 02:02:32 +7353 7353 7354 735.3 1470.6000000000001 7353 1990-02-18 2024-10-11 02:02:33.000 1990-02-18 2024-10-11 02:02:33 +7354 7354 7355 735.4 1470.8000000000002 7354 1990-02-19 2024-10-11 02:02:34.000 1990-02-19 2024-10-11 02:02:34 +7356 7356 7357 735.6 1471.2 7356 1990-02-21 2024-10-11 02:02:36.000 1990-02-21 2024-10-11 02:02:36 +7357 7357 7358 735.7 1471.4 7357 1990-02-22 2024-10-11 02:02:37.000 1990-02-22 2024-10-11 02:02:37 +7358 7358 7359 735.8 1471.6000000000001 7358 1990-02-23 2024-10-11 02:02:38.000 1990-02-23 2024-10-11 02:02:38 +7359 7359 7360 735.9 1471.8000000000002 7359 1990-02-24 2024-10-11 02:02:39.000 1990-02-24 2024-10-11 02:02:39 +7361 7361 7362 736.1 1472.2 7361 1990-02-26 2024-10-11 02:02:41.000 1990-02-26 2024-10-11 02:02:41 +7362 7362 7363 736.2 1472.4 7362 1990-02-27 2024-10-11 02:02:42.000 1990-02-27 2024-10-11 02:02:42 +7363 7363 7364 736.3 1472.6000000000001 7363 1990-02-28 2024-10-11 02:02:43.000 1990-02-28 2024-10-11 02:02:43 +7364 7364 7365 736.4 1472.8000000000002 7364 1990-03-01 2024-10-11 02:02:44.000 1990-03-01 2024-10-11 02:02:44 +7366 7366 7367 736.6 1473.2 7366 1990-03-03 2024-10-11 02:02:46.000 1990-03-03 2024-10-11 02:02:46 +7367 7367 7368 736.7 1473.4 7367 1990-03-04 2024-10-11 02:02:47.000 1990-03-04 2024-10-11 02:02:47 +7368 7368 7369 736.8 1473.6000000000001 7368 1990-03-05 2024-10-11 02:02:48.000 1990-03-05 2024-10-11 02:02:48 +7369 7369 7370 736.9 1473.8000000000002 7369 1990-03-06 2024-10-11 02:02:49.000 1990-03-06 2024-10-11 02:02:49 +7371 7371 7372 737.1 1474.2 7371 1990-03-08 2024-10-11 02:02:51.000 1990-03-08 2024-10-11 02:02:51 +7372 7372 7373 737.2 1474.4 7372 1990-03-09 2024-10-11 02:02:52.000 1990-03-09 2024-10-11 02:02:52 +7373 7373 7374 737.3 1474.6000000000001 7373 1990-03-10 2024-10-11 02:02:53.000 1990-03-10 2024-10-11 02:02:53 +7374 7374 7375 737.4 1474.8000000000002 7374 1990-03-11 2024-10-11 02:02:54.000 1990-03-11 2024-10-11 02:02:54 +7376 7376 7377 737.6 1475.2 7376 1990-03-13 2024-10-11 02:02:56.000 1990-03-13 2024-10-11 02:02:56 +7377 7377 7378 737.7 1475.4 7377 1990-03-14 2024-10-11 02:02:57.000 1990-03-14 2024-10-11 02:02:57 +7378 7378 7379 737.8 1475.6000000000001 7378 1990-03-15 2024-10-11 02:02:58.000 1990-03-15 2024-10-11 02:02:58 +7379 7379 7380 737.9 1475.8000000000002 7379 1990-03-16 2024-10-11 02:02:59.000 1990-03-16 2024-10-11 02:02:59 +7381 7381 7382 738.1 1476.2 7381 1990-03-18 2024-10-11 02:03:01.000 1990-03-18 2024-10-11 02:03:01 +7382 7382 7383 738.2 1476.4 7382 1990-03-19 2024-10-11 02:03:02.000 1990-03-19 2024-10-11 02:03:02 +7383 7383 7384 738.3 1476.6000000000001 7383 1990-03-20 2024-10-11 02:03:03.000 1990-03-20 2024-10-11 02:03:03 +7384 7384 7385 738.4 1476.8000000000002 7384 1990-03-21 2024-10-11 02:03:04.000 1990-03-21 2024-10-11 02:03:04 +7386 7386 7387 738.6 1477.2 7386 1990-03-23 2024-10-11 02:03:06.000 1990-03-23 2024-10-11 02:03:06 +7387 7387 7388 738.7 1477.4 7387 1990-03-24 2024-10-11 02:03:07.000 1990-03-24 2024-10-11 02:03:07 +7388 7388 7389 738.8 1477.6000000000001 7388 1990-03-25 2024-10-11 02:03:08.000 1990-03-25 2024-10-11 02:03:08 +7389 7389 7390 738.9 1477.8000000000002 7389 1990-03-26 2024-10-11 02:03:09.000 1990-03-26 2024-10-11 02:03:09 +7391 7391 7392 739.1 1478.2 7391 1990-03-28 2024-10-11 02:03:11.000 1990-03-28 2024-10-11 02:03:11 +7392 7392 7393 739.2 1478.4 7392 1990-03-29 2024-10-11 02:03:12.000 1990-03-29 2024-10-11 02:03:12 +7393 7393 7394 739.3 1478.6000000000001 7393 1990-03-30 2024-10-11 02:03:13.000 1990-03-30 2024-10-11 02:03:13 +7394 7394 7395 739.4 1478.8000000000002 7394 1990-03-31 2024-10-11 02:03:14.000 1990-03-31 2024-10-11 02:03:14 +7396 7396 7397 739.6 1479.2 7396 1990-04-02 2024-10-11 02:03:16.000 1990-04-02 2024-10-11 02:03:16 +7397 7397 7398 739.7 1479.4 7397 1990-04-03 2024-10-11 02:03:17.000 1990-04-03 2024-10-11 02:03:17 +7398 7398 7399 739.8 1479.6000000000001 7398 1990-04-04 2024-10-11 02:03:18.000 1990-04-04 2024-10-11 02:03:18 +7399 7399 7400 739.9 1479.8000000000002 7399 1990-04-05 2024-10-11 02:03:19.000 1990-04-05 2024-10-11 02:03:19 +7401 7401 7402 740.1 1480.2 7401 1990-04-07 2024-10-11 02:03:21.000 1990-04-07 2024-10-11 02:03:21 +7402 7402 7403 740.2 1480.4 7402 1990-04-08 2024-10-11 02:03:22.000 1990-04-08 2024-10-11 02:03:22 +7403 7403 7404 740.3 1480.6000000000001 7403 1990-04-09 2024-10-11 02:03:23.000 1990-04-09 2024-10-11 02:03:23 +7404 7404 7405 740.4 1480.8000000000002 7404 1990-04-10 2024-10-11 02:03:24.000 1990-04-10 2024-10-11 02:03:24 +7406 7406 7407 740.6 1481.2 7406 1990-04-12 2024-10-11 02:03:26.000 1990-04-12 2024-10-11 02:03:26 +7407 7407 7408 740.7 1481.4 7407 1990-04-13 2024-10-11 02:03:27.000 1990-04-13 2024-10-11 02:03:27 +7408 7408 7409 740.8 1481.6000000000001 7408 1990-04-14 2024-10-11 02:03:28.000 1990-04-14 2024-10-11 02:03:28 +7409 7409 7410 740.9 1481.8000000000002 7409 1990-04-15 2024-10-11 02:03:29.000 1990-04-15 2024-10-11 02:03:29 +7411 7411 7412 741.1 1482.2 7411 1990-04-17 2024-10-11 02:03:31.000 1990-04-17 2024-10-11 02:03:31 +7412 7412 7413 741.2 1482.4 7412 1990-04-18 2024-10-11 02:03:32.000 1990-04-18 2024-10-11 02:03:32 +7413 7413 7414 741.3 1482.6000000000001 7413 1990-04-19 2024-10-11 02:03:33.000 1990-04-19 2024-10-11 02:03:33 +7414 7414 7415 741.4 1482.8000000000002 7414 1990-04-20 2024-10-11 02:03:34.000 1990-04-20 2024-10-11 02:03:34 +7416 7416 7417 741.6 1483.2 7416 1990-04-22 2024-10-11 02:03:36.000 1990-04-22 2024-10-11 02:03:36 +7417 7417 7418 741.7 1483.4 7417 1990-04-23 2024-10-11 02:03:37.000 1990-04-23 2024-10-11 02:03:37 +7418 7418 7419 741.8 1483.6000000000001 7418 1990-04-24 2024-10-11 02:03:38.000 1990-04-24 2024-10-11 02:03:38 +7419 7419 7420 741.9 1483.8000000000002 7419 1990-04-25 2024-10-11 02:03:39.000 1990-04-25 2024-10-11 02:03:39 +7421 7421 7422 742.1 1484.2 7421 1990-04-27 2024-10-11 02:03:41.000 1990-04-27 2024-10-11 02:03:41 +7422 7422 7423 742.2 1484.4 7422 1990-04-28 2024-10-11 02:03:42.000 1990-04-28 2024-10-11 02:03:42 +7423 7423 7424 742.3 1484.6000000000001 7423 1990-04-29 2024-10-11 02:03:43.000 1990-04-29 2024-10-11 02:03:43 +7424 7424 7425 742.4 1484.8000000000002 7424 1990-04-30 2024-10-11 02:03:44.000 1990-04-30 2024-10-11 02:03:44 +7426 7426 7427 742.6 1485.2 7426 1990-05-02 2024-10-11 02:03:46.000 1990-05-02 2024-10-11 02:03:46 +7427 7427 7428 742.7 1485.4 7427 1990-05-03 2024-10-11 02:03:47.000 1990-05-03 2024-10-11 02:03:47 +7428 7428 7429 742.8 1485.6000000000001 7428 1990-05-04 2024-10-11 02:03:48.000 1990-05-04 2024-10-11 02:03:48 +7429 7429 7430 742.9 1485.8000000000002 7429 1990-05-05 2024-10-11 02:03:49.000 1990-05-05 2024-10-11 02:03:49 +7431 7431 7432 743.1 1486.2 7431 1990-05-07 2024-10-11 02:03:51.000 1990-05-07 2024-10-11 02:03:51 +7432 7432 7433 743.2 1486.4 7432 1990-05-08 2024-10-11 02:03:52.000 1990-05-08 2024-10-11 02:03:52 +7433 7433 7434 743.3 1486.6000000000001 7433 1990-05-09 2024-10-11 02:03:53.000 1990-05-09 2024-10-11 02:03:53 +7434 7434 7435 743.4 1486.8000000000002 7434 1990-05-10 2024-10-11 02:03:54.000 1990-05-10 2024-10-11 02:03:54 +7436 7436 7437 743.6 1487.2 7436 1990-05-12 2024-10-11 02:03:56.000 1990-05-12 2024-10-11 02:03:56 +7437 7437 7438 743.7 1487.4 7437 1990-05-13 2024-10-11 02:03:57.000 1990-05-13 2024-10-11 02:03:57 +7438 7438 7439 743.8 1487.6000000000001 7438 1990-05-14 2024-10-11 02:03:58.000 1990-05-14 2024-10-11 02:03:58 +7439 7439 7440 743.9 1487.8000000000002 7439 1990-05-15 2024-10-11 02:03:59.000 1990-05-15 2024-10-11 02:03:59 +7441 7441 7442 744.1 1488.2 7441 1990-05-17 2024-10-11 02:04:01.000 1990-05-17 2024-10-11 02:04:01 +7442 7442 7443 744.2 1488.4 7442 1990-05-18 2024-10-11 02:04:02.000 1990-05-18 2024-10-11 02:04:02 +7443 7443 7444 744.3 1488.6000000000001 7443 1990-05-19 2024-10-11 02:04:03.000 1990-05-19 2024-10-11 02:04:03 +7444 7444 7445 744.4 1488.8000000000002 7444 1990-05-20 2024-10-11 02:04:04.000 1990-05-20 2024-10-11 02:04:04 +7446 7446 7447 744.6 1489.2 7446 1990-05-22 2024-10-11 02:04:06.000 1990-05-22 2024-10-11 02:04:06 +7447 7447 7448 744.7 1489.4 7447 1990-05-23 2024-10-11 02:04:07.000 1990-05-23 2024-10-11 02:04:07 +7448 7448 7449 744.8 1489.6000000000001 7448 1990-05-24 2024-10-11 02:04:08.000 1990-05-24 2024-10-11 02:04:08 +7449 7449 7450 744.9 1489.8000000000002 7449 1990-05-25 2024-10-11 02:04:09.000 1990-05-25 2024-10-11 02:04:09 +7451 7451 7452 745.1 1490.2 7451 1990-05-27 2024-10-11 02:04:11.000 1990-05-27 2024-10-11 02:04:11 +7452 7452 7453 745.2 1490.4 7452 1990-05-28 2024-10-11 02:04:12.000 1990-05-28 2024-10-11 02:04:12 +7453 7453 7454 745.3 1490.6000000000001 7453 1990-05-29 2024-10-11 02:04:13.000 1990-05-29 2024-10-11 02:04:13 +7454 7454 7455 745.4 1490.8000000000002 7454 1990-05-30 2024-10-11 02:04:14.000 1990-05-30 2024-10-11 02:04:14 +7456 7456 7457 745.6 1491.2 7456 1990-06-01 2024-10-11 02:04:16.000 1990-06-01 2024-10-11 02:04:16 +7457 7457 7458 745.7 1491.4 7457 1990-06-02 2024-10-11 02:04:17.000 1990-06-02 2024-10-11 02:04:17 +7458 7458 7459 745.8 1491.6000000000001 7458 1990-06-03 2024-10-11 02:04:18.000 1990-06-03 2024-10-11 02:04:18 +7459 7459 7460 745.9 1491.8000000000002 7459 1990-06-04 2024-10-11 02:04:19.000 1990-06-04 2024-10-11 02:04:19 +7461 7461 7462 746.1 1492.2 7461 1990-06-06 2024-10-11 02:04:21.000 1990-06-06 2024-10-11 02:04:21 +7462 7462 7463 746.2 1492.4 7462 1990-06-07 2024-10-11 02:04:22.000 1990-06-07 2024-10-11 02:04:22 +7463 7463 7464 746.3 1492.6000000000001 7463 1990-06-08 2024-10-11 02:04:23.000 1990-06-08 2024-10-11 02:04:23 +7464 7464 7465 746.4 1492.8000000000002 7464 1990-06-09 2024-10-11 02:04:24.000 1990-06-09 2024-10-11 02:04:24 +7466 7466 7467 746.6 1493.2 7466 1990-06-11 2024-10-11 02:04:26.000 1990-06-11 2024-10-11 02:04:26 +7467 7467 7468 746.7 1493.4 7467 1990-06-12 2024-10-11 02:04:27.000 1990-06-12 2024-10-11 02:04:27 +7468 7468 7469 746.8 1493.6000000000001 7468 1990-06-13 2024-10-11 02:04:28.000 1990-06-13 2024-10-11 02:04:28 +7469 7469 7470 746.9 1493.8000000000002 7469 1990-06-14 2024-10-11 02:04:29.000 1990-06-14 2024-10-11 02:04:29 +7471 7471 7472 747.1 1494.2 7471 1990-06-16 2024-10-11 02:04:31.000 1990-06-16 2024-10-11 02:04:31 +7472 7472 7473 747.2 1494.4 7472 1990-06-17 2024-10-11 02:04:32.000 1990-06-17 2024-10-11 02:04:32 +7473 7473 7474 747.3 1494.6000000000001 7473 1990-06-18 2024-10-11 02:04:33.000 1990-06-18 2024-10-11 02:04:33 +7474 7474 7475 747.4 1494.8000000000002 7474 1990-06-19 2024-10-11 02:04:34.000 1990-06-19 2024-10-11 02:04:34 +7476 7476 7477 747.6 1495.2 7476 1990-06-21 2024-10-11 02:04:36.000 1990-06-21 2024-10-11 02:04:36 +7477 7477 7478 747.7 1495.4 7477 1990-06-22 2024-10-11 02:04:37.000 1990-06-22 2024-10-11 02:04:37 +7478 7478 7479 747.8 1495.6000000000001 7478 1990-06-23 2024-10-11 02:04:38.000 1990-06-23 2024-10-11 02:04:38 +7479 7479 7480 747.9 1495.8000000000002 7479 1990-06-24 2024-10-11 02:04:39.000 1990-06-24 2024-10-11 02:04:39 +7481 7481 7482 748.1 1496.2 7481 1990-06-26 2024-10-11 02:04:41.000 1990-06-26 2024-10-11 02:04:41 +7482 7482 7483 748.2 1496.4 7482 1990-06-27 2024-10-11 02:04:42.000 1990-06-27 2024-10-11 02:04:42 +7483 7483 7484 748.3 1496.6000000000001 7483 1990-06-28 2024-10-11 02:04:43.000 1990-06-28 2024-10-11 02:04:43 +7484 7484 7485 748.4 1496.8000000000002 7484 1990-06-29 2024-10-11 02:04:44.000 1990-06-29 2024-10-11 02:04:44 +7486 7486 7487 748.6 1497.2 7486 1990-07-01 2024-10-11 02:04:46.000 1990-07-01 2024-10-11 02:04:46 +7487 7487 7488 748.7 1497.4 7487 1990-07-02 2024-10-11 02:04:47.000 1990-07-02 2024-10-11 02:04:47 +7488 7488 7489 748.8 1497.6000000000001 7488 1990-07-03 2024-10-11 02:04:48.000 1990-07-03 2024-10-11 02:04:48 +7489 7489 7490 748.9 1497.8000000000002 7489 1990-07-04 2024-10-11 02:04:49.000 1990-07-04 2024-10-11 02:04:49 +7491 7491 7492 749.1 1498.2 7491 1990-07-06 2024-10-11 02:04:51.000 1990-07-06 2024-10-11 02:04:51 +7492 7492 7493 749.2 1498.4 7492 1990-07-07 2024-10-11 02:04:52.000 1990-07-07 2024-10-11 02:04:52 +7493 7493 7494 749.3 1498.6000000000001 7493 1990-07-08 2024-10-11 02:04:53.000 1990-07-08 2024-10-11 02:04:53 +7494 7494 7495 749.4 1498.8000000000002 7494 1990-07-09 2024-10-11 02:04:54.000 1990-07-09 2024-10-11 02:04:54 +7496 7496 7497 749.6 1499.2 7496 1990-07-11 2024-10-11 02:04:56.000 1990-07-11 2024-10-11 02:04:56 +7497 7497 7498 749.7 1499.4 7497 1990-07-12 2024-10-11 02:04:57.000 1990-07-12 2024-10-11 02:04:57 +7498 7498 7499 749.8 1499.6000000000001 7498 1990-07-13 2024-10-11 02:04:58.000 1990-07-13 2024-10-11 02:04:58 +7499 7499 7500 749.9 1499.8000000000002 7499 1990-07-14 2024-10-11 02:04:59.000 1990-07-14 2024-10-11 02:04:59 +7501 7501 7502 750.1 1500.2 7501 1990-07-16 2024-10-11 02:05:01.000 1990-07-16 2024-10-11 02:05:01 +7502 7502 7503 750.2 1500.4 7502 1990-07-17 2024-10-11 02:05:02.000 1990-07-17 2024-10-11 02:05:02 +7503 7503 7504 750.3 1500.6000000000001 7503 1990-07-18 2024-10-11 02:05:03.000 1990-07-18 2024-10-11 02:05:03 +7504 7504 7505 750.4 1500.8000000000002 7504 1990-07-19 2024-10-11 02:05:04.000 1990-07-19 2024-10-11 02:05:04 +7506 7506 7507 750.6 1501.2 7506 1990-07-21 2024-10-11 02:05:06.000 1990-07-21 2024-10-11 02:05:06 +7507 7507 7508 750.7 1501.4 7507 1990-07-22 2024-10-11 02:05:07.000 1990-07-22 2024-10-11 02:05:07 +7508 7508 7509 750.8 1501.6000000000001 7508 1990-07-23 2024-10-11 02:05:08.000 1990-07-23 2024-10-11 02:05:08 +7509 7509 7510 750.9 1501.8000000000002 7509 1990-07-24 2024-10-11 02:05:09.000 1990-07-24 2024-10-11 02:05:09 +7511 7511 7512 751.1 1502.2 7511 1990-07-26 2024-10-11 02:05:11.000 1990-07-26 2024-10-11 02:05:11 +7512 7512 7513 751.2 1502.4 7512 1990-07-27 2024-10-11 02:05:12.000 1990-07-27 2024-10-11 02:05:12 +7513 7513 7514 751.3 1502.6000000000001 7513 1990-07-28 2024-10-11 02:05:13.000 1990-07-28 2024-10-11 02:05:13 +7514 7514 7515 751.4 1502.8000000000002 7514 1990-07-29 2024-10-11 02:05:14.000 1990-07-29 2024-10-11 02:05:14 +7516 7516 7517 751.6 1503.2 7516 1990-07-31 2024-10-11 02:05:16.000 1990-07-31 2024-10-11 02:05:16 +7517 7517 7518 751.7 1503.4 7517 1990-08-01 2024-10-11 02:05:17.000 1990-08-01 2024-10-11 02:05:17 +7518 7518 7519 751.8 1503.6000000000001 7518 1990-08-02 2024-10-11 02:05:18.000 1990-08-02 2024-10-11 02:05:18 +7519 7519 7520 751.9 1503.8000000000002 7519 1990-08-03 2024-10-11 02:05:19.000 1990-08-03 2024-10-11 02:05:19 +7521 7521 7522 752.1 1504.2 7521 1990-08-05 2024-10-11 02:05:21.000 1990-08-05 2024-10-11 02:05:21 +7522 7522 7523 752.2 1504.4 7522 1990-08-06 2024-10-11 02:05:22.000 1990-08-06 2024-10-11 02:05:22 +7523 7523 7524 752.3 1504.6000000000001 7523 1990-08-07 2024-10-11 02:05:23.000 1990-08-07 2024-10-11 02:05:23 +7524 7524 7525 752.4 1504.8000000000002 7524 1990-08-08 2024-10-11 02:05:24.000 1990-08-08 2024-10-11 02:05:24 +7526 7526 7527 752.6 1505.2 7526 1990-08-10 2024-10-11 02:05:26.000 1990-08-10 2024-10-11 02:05:26 +7527 7527 7528 752.7 1505.4 7527 1990-08-11 2024-10-11 02:05:27.000 1990-08-11 2024-10-11 02:05:27 +7528 7528 7529 752.8 1505.6000000000001 7528 1990-08-12 2024-10-11 02:05:28.000 1990-08-12 2024-10-11 02:05:28 +7529 7529 7530 752.9 1505.8000000000002 7529 1990-08-13 2024-10-11 02:05:29.000 1990-08-13 2024-10-11 02:05:29 +7531 7531 7532 753.1 1506.2 7531 1990-08-15 2024-10-11 02:05:31.000 1990-08-15 2024-10-11 02:05:31 +7532 7532 7533 753.2 1506.4 7532 1990-08-16 2024-10-11 02:05:32.000 1990-08-16 2024-10-11 02:05:32 +7533 7533 7534 753.3 1506.6000000000001 7533 1990-08-17 2024-10-11 02:05:33.000 1990-08-17 2024-10-11 02:05:33 +7534 7534 7535 753.4 1506.8000000000002 7534 1990-08-18 2024-10-11 02:05:34.000 1990-08-18 2024-10-11 02:05:34 +7536 7536 7537 753.6 1507.2 7536 1990-08-20 2024-10-11 02:05:36.000 1990-08-20 2024-10-11 02:05:36 +7537 7537 7538 753.7 1507.4 7537 1990-08-21 2024-10-11 02:05:37.000 1990-08-21 2024-10-11 02:05:37 +7538 7538 7539 753.8 1507.6000000000001 7538 1990-08-22 2024-10-11 02:05:38.000 1990-08-22 2024-10-11 02:05:38 +7539 7539 7540 753.9 1507.8000000000002 7539 1990-08-23 2024-10-11 02:05:39.000 1990-08-23 2024-10-11 02:05:39 +7541 7541 7542 754.1 1508.2 7541 1990-08-25 2024-10-11 02:05:41.000 1990-08-25 2024-10-11 02:05:41 +7542 7542 7543 754.2 1508.4 7542 1990-08-26 2024-10-11 02:05:42.000 1990-08-26 2024-10-11 02:05:42 +7543 7543 7544 754.3 1508.6000000000001 7543 1990-08-27 2024-10-11 02:05:43.000 1990-08-27 2024-10-11 02:05:43 +7544 7544 7545 754.4 1508.8000000000002 7544 1990-08-28 2024-10-11 02:05:44.000 1990-08-28 2024-10-11 02:05:44 +7546 7546 7547 754.6 1509.2 7546 1990-08-30 2024-10-11 02:05:46.000 1990-08-30 2024-10-11 02:05:46 +7547 7547 7548 754.7 1509.4 7547 1990-08-31 2024-10-11 02:05:47.000 1990-08-31 2024-10-11 02:05:47 +7548 7548 7549 754.8 1509.6000000000001 7548 1990-09-01 2024-10-11 02:05:48.000 1990-09-01 2024-10-11 02:05:48 +7549 7549 7550 754.9 1509.8000000000002 7549 1990-09-02 2024-10-11 02:05:49.000 1990-09-02 2024-10-11 02:05:49 +7551 7551 7552 755.1 1510.2 7551 1990-09-04 2024-10-11 02:05:51.000 1990-09-04 2024-10-11 02:05:51 +7552 7552 7553 755.2 1510.4 7552 1990-09-05 2024-10-11 02:05:52.000 1990-09-05 2024-10-11 02:05:52 +7553 7553 7554 755.3 1510.6000000000001 7553 1990-09-06 2024-10-11 02:05:53.000 1990-09-06 2024-10-11 02:05:53 +7554 7554 7555 755.4 1510.8000000000002 7554 1990-09-07 2024-10-11 02:05:54.000 1990-09-07 2024-10-11 02:05:54 +7556 7556 7557 755.6 1511.2 7556 1990-09-09 2024-10-11 02:05:56.000 1990-09-09 2024-10-11 02:05:56 +7557 7557 7558 755.7 1511.4 7557 1990-09-10 2024-10-11 02:05:57.000 1990-09-10 2024-10-11 02:05:57 +7558 7558 7559 755.8 1511.6000000000001 7558 1990-09-11 2024-10-11 02:05:58.000 1990-09-11 2024-10-11 02:05:58 +7559 7559 7560 755.9 1511.8000000000002 7559 1990-09-12 2024-10-11 02:05:59.000 1990-09-12 2024-10-11 02:05:59 +7561 7561 7562 756.1 1512.2 7561 1990-09-14 2024-10-11 02:06:01.000 1990-09-14 2024-10-11 02:06:01 +7562 7562 7563 756.2 1512.4 7562 1990-09-15 2024-10-11 02:06:02.000 1990-09-15 2024-10-11 02:06:02 +7563 7563 7564 756.3 1512.6000000000001 7563 1990-09-16 2024-10-11 02:06:03.000 1990-09-16 2024-10-11 02:06:03 +7564 7564 7565 756.4 1512.8000000000002 7564 1990-09-17 2024-10-11 02:06:04.000 1990-09-17 2024-10-11 02:06:04 +7566 7566 7567 756.6 1513.2 7566 1990-09-19 2024-10-11 02:06:06.000 1990-09-19 2024-10-11 02:06:06 +7567 7567 7568 756.7 1513.4 7567 1990-09-20 2024-10-11 02:06:07.000 1990-09-20 2024-10-11 02:06:07 +7568 7568 7569 756.8 1513.6000000000001 7568 1990-09-21 2024-10-11 02:06:08.000 1990-09-21 2024-10-11 02:06:08 +7569 7569 7570 756.9 1513.8000000000002 7569 1990-09-22 2024-10-11 02:06:09.000 1990-09-22 2024-10-11 02:06:09 +7571 7571 7572 757.1 1514.2 7571 1990-09-24 2024-10-11 02:06:11.000 1990-09-24 2024-10-11 02:06:11 +7572 7572 7573 757.2 1514.4 7572 1990-09-25 2024-10-11 02:06:12.000 1990-09-25 2024-10-11 02:06:12 +7573 7573 7574 757.3 1514.6000000000001 7573 1990-09-26 2024-10-11 02:06:13.000 1990-09-26 2024-10-11 02:06:13 +7574 7574 7575 757.4 1514.8000000000002 7574 1990-09-27 2024-10-11 02:06:14.000 1990-09-27 2024-10-11 02:06:14 +7576 7576 7577 757.6 1515.2 7576 1990-09-29 2024-10-11 02:06:16.000 1990-09-29 2024-10-11 02:06:16 +7577 7577 7578 757.7 1515.4 7577 1990-09-30 2024-10-11 02:06:17.000 1990-09-30 2024-10-11 02:06:17 +7578 7578 7579 757.8 1515.6000000000001 7578 1990-10-01 2024-10-11 02:06:18.000 1990-10-01 2024-10-11 02:06:18 +7579 7579 7580 757.9 1515.8000000000002 7579 1990-10-02 2024-10-11 02:06:19.000 1990-10-02 2024-10-11 02:06:19 +7581 7581 7582 758.1 1516.2 7581 1990-10-04 2024-10-11 02:06:21.000 1990-10-04 2024-10-11 02:06:21 +7582 7582 7583 758.2 1516.4 7582 1990-10-05 2024-10-11 02:06:22.000 1990-10-05 2024-10-11 02:06:22 +7583 7583 7584 758.3 1516.6000000000001 7583 1990-10-06 2024-10-11 02:06:23.000 1990-10-06 2024-10-11 02:06:23 +7584 7584 7585 758.4 1516.8000000000002 7584 1990-10-07 2024-10-11 02:06:24.000 1990-10-07 2024-10-11 02:06:24 +7586 7586 7587 758.6 1517.2 7586 1990-10-09 2024-10-11 02:06:26.000 1990-10-09 2024-10-11 02:06:26 +7587 7587 7588 758.7 1517.4 7587 1990-10-10 2024-10-11 02:06:27.000 1990-10-10 2024-10-11 02:06:27 +7588 7588 7589 758.8 1517.6000000000001 7588 1990-10-11 2024-10-11 02:06:28.000 1990-10-11 2024-10-11 02:06:28 +7589 7589 7590 758.9 1517.8000000000002 7589 1990-10-12 2024-10-11 02:06:29.000 1990-10-12 2024-10-11 02:06:29 +7591 7591 7592 759.1 1518.2 7591 1990-10-14 2024-10-11 02:06:31.000 1990-10-14 2024-10-11 02:06:31 +7592 7592 7593 759.2 1518.4 7592 1990-10-15 2024-10-11 02:06:32.000 1990-10-15 2024-10-11 02:06:32 +7593 7593 7594 759.3 1518.6000000000001 7593 1990-10-16 2024-10-11 02:06:33.000 1990-10-16 2024-10-11 02:06:33 +7594 7594 7595 759.4 1518.8000000000002 7594 1990-10-17 2024-10-11 02:06:34.000 1990-10-17 2024-10-11 02:06:34 +7596 7596 7597 759.6 1519.2 7596 1990-10-19 2024-10-11 02:06:36.000 1990-10-19 2024-10-11 02:06:36 +7597 7597 7598 759.7 1519.4 7597 1990-10-20 2024-10-11 02:06:37.000 1990-10-20 2024-10-11 02:06:37 +7598 7598 7599 759.8 1519.6000000000001 7598 1990-10-21 2024-10-11 02:06:38.000 1990-10-21 2024-10-11 02:06:38 +7599 7599 7600 759.9 1519.8000000000002 7599 1990-10-22 2024-10-11 02:06:39.000 1990-10-22 2024-10-11 02:06:39 +7601 7601 7602 760.1 1520.2 7601 1990-10-24 2024-10-11 02:06:41.000 1990-10-24 2024-10-11 02:06:41 +7602 7602 7603 760.2 1520.4 7602 1990-10-25 2024-10-11 02:06:42.000 1990-10-25 2024-10-11 02:06:42 +7603 7603 7604 760.3 1520.6000000000001 7603 1990-10-26 2024-10-11 02:06:43.000 1990-10-26 2024-10-11 02:06:43 +7604 7604 7605 760.4 1520.8000000000002 7604 1990-10-27 2024-10-11 02:06:44.000 1990-10-27 2024-10-11 02:06:44 +7606 7606 7607 760.6 1521.2 7606 1990-10-29 2024-10-11 02:06:46.000 1990-10-29 2024-10-11 02:06:46 +7607 7607 7608 760.7 1521.4 7607 1990-10-30 2024-10-11 02:06:47.000 1990-10-30 2024-10-11 02:06:47 +7608 7608 7609 760.8 1521.6000000000001 7608 1990-10-31 2024-10-11 02:06:48.000 1990-10-31 2024-10-11 02:06:48 +7609 7609 7610 760.9 1521.8000000000002 7609 1990-11-01 2024-10-11 02:06:49.000 1990-11-01 2024-10-11 02:06:49 +7611 7611 7612 761.1 1522.2 7611 1990-11-03 2024-10-11 02:06:51.000 1990-11-03 2024-10-11 02:06:51 +7612 7612 7613 761.2 1522.4 7612 1990-11-04 2024-10-11 02:06:52.000 1990-11-04 2024-10-11 02:06:52 +7613 7613 7614 761.3 1522.6000000000001 7613 1990-11-05 2024-10-11 02:06:53.000 1990-11-05 2024-10-11 02:06:53 +7614 7614 7615 761.4 1522.8000000000002 7614 1990-11-06 2024-10-11 02:06:54.000 1990-11-06 2024-10-11 02:06:54 +7616 7616 7617 761.6 1523.2 7616 1990-11-08 2024-10-11 02:06:56.000 1990-11-08 2024-10-11 02:06:56 +7617 7617 7618 761.7 1523.4 7617 1990-11-09 2024-10-11 02:06:57.000 1990-11-09 2024-10-11 02:06:57 +7618 7618 7619 761.8 1523.6000000000001 7618 1990-11-10 2024-10-11 02:06:58.000 1990-11-10 2024-10-11 02:06:58 +7619 7619 7620 761.9 1523.8000000000002 7619 1990-11-11 2024-10-11 02:06:59.000 1990-11-11 2024-10-11 02:06:59 +7621 7621 7622 762.1 1524.2 7621 1990-11-13 2024-10-11 02:07:01.000 1990-11-13 2024-10-11 02:07:01 +7622 7622 7623 762.2 1524.4 7622 1990-11-14 2024-10-11 02:07:02.000 1990-11-14 2024-10-11 02:07:02 +7623 7623 7624 762.3 1524.6000000000001 7623 1990-11-15 2024-10-11 02:07:03.000 1990-11-15 2024-10-11 02:07:03 +7624 7624 7625 762.4 1524.8000000000002 7624 1990-11-16 2024-10-11 02:07:04.000 1990-11-16 2024-10-11 02:07:04 +7626 7626 7627 762.6 1525.2 7626 1990-11-18 2024-10-11 02:07:06.000 1990-11-18 2024-10-11 02:07:06 +7627 7627 7628 762.7 1525.4 7627 1990-11-19 2024-10-11 02:07:07.000 1990-11-19 2024-10-11 02:07:07 +7628 7628 7629 762.8 1525.6000000000001 7628 1990-11-20 2024-10-11 02:07:08.000 1990-11-20 2024-10-11 02:07:08 +7629 7629 7630 762.9 1525.8000000000002 7629 1990-11-21 2024-10-11 02:07:09.000 1990-11-21 2024-10-11 02:07:09 +7631 7631 7632 763.1 1526.2 7631 1990-11-23 2024-10-11 02:07:11.000 1990-11-23 2024-10-11 02:07:11 +7632 7632 7633 763.2 1526.4 7632 1990-11-24 2024-10-11 02:07:12.000 1990-11-24 2024-10-11 02:07:12 +7633 7633 7634 763.3 1526.6000000000001 7633 1990-11-25 2024-10-11 02:07:13.000 1990-11-25 2024-10-11 02:07:13 +7634 7634 7635 763.4 1526.8000000000002 7634 1990-11-26 2024-10-11 02:07:14.000 1990-11-26 2024-10-11 02:07:14 +7636 7636 7637 763.6 1527.2 7636 1990-11-28 2024-10-11 02:07:16.000 1990-11-28 2024-10-11 02:07:16 +7637 7637 7638 763.7 1527.4 7637 1990-11-29 2024-10-11 02:07:17.000 1990-11-29 2024-10-11 02:07:17 +7638 7638 7639 763.8 1527.6000000000001 7638 1990-11-30 2024-10-11 02:07:18.000 1990-11-30 2024-10-11 02:07:18 +7639 7639 7640 763.9 1527.8000000000002 7639 1990-12-01 2024-10-11 02:07:19.000 1990-12-01 2024-10-11 02:07:19 +7641 7641 7642 764.1 1528.2 7641 1990-12-03 2024-10-11 02:07:21.000 1990-12-03 2024-10-11 02:07:21 +7642 7642 7643 764.2 1528.4 7642 1990-12-04 2024-10-11 02:07:22.000 1990-12-04 2024-10-11 02:07:22 +7643 7643 7644 764.3 1528.6000000000001 7643 1990-12-05 2024-10-11 02:07:23.000 1990-12-05 2024-10-11 02:07:23 +7644 7644 7645 764.4 1528.8000000000002 7644 1990-12-06 2024-10-11 02:07:24.000 1990-12-06 2024-10-11 02:07:24 +7646 7646 7647 764.6 1529.2 7646 1990-12-08 2024-10-11 02:07:26.000 1990-12-08 2024-10-11 02:07:26 +7647 7647 7648 764.7 1529.4 7647 1990-12-09 2024-10-11 02:07:27.000 1990-12-09 2024-10-11 02:07:27 +7648 7648 7649 764.8 1529.6000000000001 7648 1990-12-10 2024-10-11 02:07:28.000 1990-12-10 2024-10-11 02:07:28 +7649 7649 7650 764.9 1529.8000000000002 7649 1990-12-11 2024-10-11 02:07:29.000 1990-12-11 2024-10-11 02:07:29 +7651 7651 7652 765.1 1530.2 7651 1990-12-13 2024-10-11 02:07:31.000 1990-12-13 2024-10-11 02:07:31 +7652 7652 7653 765.2 1530.4 7652 1990-12-14 2024-10-11 02:07:32.000 1990-12-14 2024-10-11 02:07:32 +7653 7653 7654 765.3 1530.6000000000001 7653 1990-12-15 2024-10-11 02:07:33.000 1990-12-15 2024-10-11 02:07:33 +7654 7654 7655 765.4 1530.8000000000002 7654 1990-12-16 2024-10-11 02:07:34.000 1990-12-16 2024-10-11 02:07:34 +7656 7656 7657 765.6 1531.2 7656 1990-12-18 2024-10-11 02:07:36.000 1990-12-18 2024-10-11 02:07:36 +7657 7657 7658 765.7 1531.4 7657 1990-12-19 2024-10-11 02:07:37.000 1990-12-19 2024-10-11 02:07:37 +7658 7658 7659 765.8 1531.6000000000001 7658 1990-12-20 2024-10-11 02:07:38.000 1990-12-20 2024-10-11 02:07:38 +7659 7659 7660 765.9 1531.8000000000002 7659 1990-12-21 2024-10-11 02:07:39.000 1990-12-21 2024-10-11 02:07:39 +7661 7661 7662 766.1 1532.2 7661 1990-12-23 2024-10-11 02:07:41.000 1990-12-23 2024-10-11 02:07:41 +7662 7662 7663 766.2 1532.4 7662 1990-12-24 2024-10-11 02:07:42.000 1990-12-24 2024-10-11 02:07:42 +7663 7663 7664 766.3 1532.6000000000001 7663 1990-12-25 2024-10-11 02:07:43.000 1990-12-25 2024-10-11 02:07:43 +7664 7664 7665 766.4 1532.8000000000002 7664 1990-12-26 2024-10-11 02:07:44.000 1990-12-26 2024-10-11 02:07:44 +7666 7666 7667 766.6 1533.2 7666 1990-12-28 2024-10-11 02:07:46.000 1990-12-28 2024-10-11 02:07:46 +7667 7667 7668 766.7 1533.4 7667 1990-12-29 2024-10-11 02:07:47.000 1990-12-29 2024-10-11 02:07:47 +7668 7668 7669 766.8 1533.6000000000001 7668 1990-12-30 2024-10-11 02:07:48.000 1990-12-30 2024-10-11 02:07:48 +7669 7669 7670 766.9 1533.8000000000002 7669 1990-12-31 2024-10-11 02:07:49.000 1990-12-31 2024-10-11 02:07:49 +7671 7671 7672 767.1 1534.2 7671 1991-01-02 2024-10-11 02:07:51.000 1991-01-02 2024-10-11 02:07:51 +7672 7672 7673 767.2 1534.4 7672 1991-01-03 2024-10-11 02:07:52.000 1991-01-03 2024-10-11 02:07:52 +7673 7673 7674 767.3 1534.6000000000001 7673 1991-01-04 2024-10-11 02:07:53.000 1991-01-04 2024-10-11 02:07:53 +7674 7674 7675 767.4 1534.8000000000002 7674 1991-01-05 2024-10-11 02:07:54.000 1991-01-05 2024-10-11 02:07:54 +7676 7676 7677 767.6 1535.2 7676 1991-01-07 2024-10-11 02:07:56.000 1991-01-07 2024-10-11 02:07:56 +7677 7677 7678 767.7 1535.4 7677 1991-01-08 2024-10-11 02:07:57.000 1991-01-08 2024-10-11 02:07:57 +7678 7678 7679 767.8 1535.6000000000001 7678 1991-01-09 2024-10-11 02:07:58.000 1991-01-09 2024-10-11 02:07:58 +7679 7679 7680 767.9 1535.8000000000002 7679 1991-01-10 2024-10-11 02:07:59.000 1991-01-10 2024-10-11 02:07:59 +7681 7681 7682 768.1 1536.2 7681 1991-01-12 2024-10-11 02:08:01.000 1991-01-12 2024-10-11 02:08:01 +7682 7682 7683 768.2 1536.4 7682 1991-01-13 2024-10-11 02:08:02.000 1991-01-13 2024-10-11 02:08:02 +7683 7683 7684 768.3 1536.6000000000001 7683 1991-01-14 2024-10-11 02:08:03.000 1991-01-14 2024-10-11 02:08:03 +7684 7684 7685 768.4 1536.8000000000002 7684 1991-01-15 2024-10-11 02:08:04.000 1991-01-15 2024-10-11 02:08:04 +7686 7686 7687 768.6 1537.2 7686 1991-01-17 2024-10-11 02:08:06.000 1991-01-17 2024-10-11 02:08:06 +7687 7687 7688 768.7 1537.4 7687 1991-01-18 2024-10-11 02:08:07.000 1991-01-18 2024-10-11 02:08:07 +7688 7688 7689 768.8 1537.6000000000001 7688 1991-01-19 2024-10-11 02:08:08.000 1991-01-19 2024-10-11 02:08:08 +7689 7689 7690 768.9 1537.8000000000002 7689 1991-01-20 2024-10-11 02:08:09.000 1991-01-20 2024-10-11 02:08:09 +7691 7691 7692 769.1 1538.2 7691 1991-01-22 2024-10-11 02:08:11.000 1991-01-22 2024-10-11 02:08:11 +7692 7692 7693 769.2 1538.4 7692 1991-01-23 2024-10-11 02:08:12.000 1991-01-23 2024-10-11 02:08:12 +7693 7693 7694 769.3 1538.6000000000001 7693 1991-01-24 2024-10-11 02:08:13.000 1991-01-24 2024-10-11 02:08:13 +7694 7694 7695 769.4 1538.8000000000002 7694 1991-01-25 2024-10-11 02:08:14.000 1991-01-25 2024-10-11 02:08:14 +7696 7696 7697 769.6 1539.2 7696 1991-01-27 2024-10-11 02:08:16.000 1991-01-27 2024-10-11 02:08:16 +7697 7697 7698 769.7 1539.4 7697 1991-01-28 2024-10-11 02:08:17.000 1991-01-28 2024-10-11 02:08:17 +7698 7698 7699 769.8 1539.6000000000001 7698 1991-01-29 2024-10-11 02:08:18.000 1991-01-29 2024-10-11 02:08:18 +7699 7699 7700 769.9 1539.8000000000002 7699 1991-01-30 2024-10-11 02:08:19.000 1991-01-30 2024-10-11 02:08:19 +7701 7701 7702 770.1 1540.2 7701 1991-02-01 2024-10-11 02:08:21.000 1991-02-01 2024-10-11 02:08:21 +7702 7702 7703 770.2 1540.4 7702 1991-02-02 2024-10-11 02:08:22.000 1991-02-02 2024-10-11 02:08:22 +7703 7703 7704 770.3 1540.6000000000001 7703 1991-02-03 2024-10-11 02:08:23.000 1991-02-03 2024-10-11 02:08:23 +7704 7704 7705 770.4 1540.8000000000002 7704 1991-02-04 2024-10-11 02:08:24.000 1991-02-04 2024-10-11 02:08:24 +7706 7706 7707 770.6 1541.2 7706 1991-02-06 2024-10-11 02:08:26.000 1991-02-06 2024-10-11 02:08:26 +7707 7707 7708 770.7 1541.4 7707 1991-02-07 2024-10-11 02:08:27.000 1991-02-07 2024-10-11 02:08:27 +7708 7708 7709 770.8 1541.6000000000001 7708 1991-02-08 2024-10-11 02:08:28.000 1991-02-08 2024-10-11 02:08:28 +7709 7709 7710 770.9 1541.8000000000002 7709 1991-02-09 2024-10-11 02:08:29.000 1991-02-09 2024-10-11 02:08:29 +7711 7711 7712 771.1 1542.2 7711 1991-02-11 2024-10-11 02:08:31.000 1991-02-11 2024-10-11 02:08:31 +7712 7712 7713 771.2 1542.4 7712 1991-02-12 2024-10-11 02:08:32.000 1991-02-12 2024-10-11 02:08:32 +7713 7713 7714 771.3 1542.6000000000001 7713 1991-02-13 2024-10-11 02:08:33.000 1991-02-13 2024-10-11 02:08:33 +7714 7714 7715 771.4 1542.8000000000002 7714 1991-02-14 2024-10-11 02:08:34.000 1991-02-14 2024-10-11 02:08:34 +7716 7716 7717 771.6 1543.2 7716 1991-02-16 2024-10-11 02:08:36.000 1991-02-16 2024-10-11 02:08:36 +7717 7717 7718 771.7 1543.4 7717 1991-02-17 2024-10-11 02:08:37.000 1991-02-17 2024-10-11 02:08:37 +7718 7718 7719 771.8 1543.6000000000001 7718 1991-02-18 2024-10-11 02:08:38.000 1991-02-18 2024-10-11 02:08:38 +7719 7719 7720 771.9 1543.8000000000002 7719 1991-02-19 2024-10-11 02:08:39.000 1991-02-19 2024-10-11 02:08:39 +7721 7721 7722 772.1 1544.2 7721 1991-02-21 2024-10-11 02:08:41.000 1991-02-21 2024-10-11 02:08:41 +7722 7722 7723 772.2 1544.4 7722 1991-02-22 2024-10-11 02:08:42.000 1991-02-22 2024-10-11 02:08:42 +7723 7723 7724 772.3 1544.6000000000001 7723 1991-02-23 2024-10-11 02:08:43.000 1991-02-23 2024-10-11 02:08:43 +7724 7724 7725 772.4 1544.8000000000002 7724 1991-02-24 2024-10-11 02:08:44.000 1991-02-24 2024-10-11 02:08:44 +7726 7726 7727 772.6 1545.2 7726 1991-02-26 2024-10-11 02:08:46.000 1991-02-26 2024-10-11 02:08:46 +7727 7727 7728 772.7 1545.4 7727 1991-02-27 2024-10-11 02:08:47.000 1991-02-27 2024-10-11 02:08:47 +7728 7728 7729 772.8 1545.6000000000001 7728 1991-02-28 2024-10-11 02:08:48.000 1991-02-28 2024-10-11 02:08:48 +7729 7729 7730 772.9 1545.8000000000002 7729 1991-03-01 2024-10-11 02:08:49.000 1991-03-01 2024-10-11 02:08:49 +7731 7731 7732 773.1 1546.2 7731 1991-03-03 2024-10-11 02:08:51.000 1991-03-03 2024-10-11 02:08:51 +7732 7732 7733 773.2 1546.4 7732 1991-03-04 2024-10-11 02:08:52.000 1991-03-04 2024-10-11 02:08:52 +7733 7733 7734 773.3 1546.6000000000001 7733 1991-03-05 2024-10-11 02:08:53.000 1991-03-05 2024-10-11 02:08:53 +7734 7734 7735 773.4 1546.8000000000002 7734 1991-03-06 2024-10-11 02:08:54.000 1991-03-06 2024-10-11 02:08:54 +7736 7736 7737 773.6 1547.2 7736 1991-03-08 2024-10-11 02:08:56.000 1991-03-08 2024-10-11 02:08:56 +7737 7737 7738 773.7 1547.4 7737 1991-03-09 2024-10-11 02:08:57.000 1991-03-09 2024-10-11 02:08:57 +7738 7738 7739 773.8 1547.6000000000001 7738 1991-03-10 2024-10-11 02:08:58.000 1991-03-10 2024-10-11 02:08:58 +7739 7739 7740 773.9 1547.8000000000002 7739 1991-03-11 2024-10-11 02:08:59.000 1991-03-11 2024-10-11 02:08:59 +7741 7741 7742 774.1 1548.2 7741 1991-03-13 2024-10-11 02:09:01.000 1991-03-13 2024-10-11 02:09:01 +7742 7742 7743 774.2 1548.4 7742 1991-03-14 2024-10-11 02:09:02.000 1991-03-14 2024-10-11 02:09:02 +7743 7743 7744 774.3 1548.6000000000001 7743 1991-03-15 2024-10-11 02:09:03.000 1991-03-15 2024-10-11 02:09:03 +7744 7744 7745 774.4 1548.8000000000002 7744 1991-03-16 2024-10-11 02:09:04.000 1991-03-16 2024-10-11 02:09:04 +7746 7746 7747 774.6 1549.2 7746 1991-03-18 2024-10-11 02:09:06.000 1991-03-18 2024-10-11 02:09:06 +7747 7747 7748 774.7 1549.4 7747 1991-03-19 2024-10-11 02:09:07.000 1991-03-19 2024-10-11 02:09:07 +7748 7748 7749 774.8 1549.6000000000001 7748 1991-03-20 2024-10-11 02:09:08.000 1991-03-20 2024-10-11 02:09:08 +7749 7749 7750 774.9 1549.8000000000002 7749 1991-03-21 2024-10-11 02:09:09.000 1991-03-21 2024-10-11 02:09:09 +7751 7751 7752 775.1 1550.2 7751 1991-03-23 2024-10-11 02:09:11.000 1991-03-23 2024-10-11 02:09:11 +7752 7752 7753 775.2 1550.4 7752 1991-03-24 2024-10-11 02:09:12.000 1991-03-24 2024-10-11 02:09:12 +7753 7753 7754 775.3 1550.6000000000001 7753 1991-03-25 2024-10-11 02:09:13.000 1991-03-25 2024-10-11 02:09:13 +7754 7754 7755 775.4 1550.8000000000002 7754 1991-03-26 2024-10-11 02:09:14.000 1991-03-26 2024-10-11 02:09:14 +7756 7756 7757 775.6 1551.2 7756 1991-03-28 2024-10-11 02:09:16.000 1991-03-28 2024-10-11 02:09:16 +7757 7757 7758 775.7 1551.4 7757 1991-03-29 2024-10-11 02:09:17.000 1991-03-29 2024-10-11 02:09:17 +7758 7758 7759 775.8 1551.6000000000001 7758 1991-03-30 2024-10-11 02:09:18.000 1991-03-30 2024-10-11 02:09:18 +7759 7759 7760 775.9 1551.8000000000002 7759 1991-03-31 2024-10-11 02:09:19.000 1991-03-31 2024-10-11 02:09:19 +7761 7761 7762 776.1 1552.2 7761 1991-04-02 2024-10-11 02:09:21.000 1991-04-02 2024-10-11 02:09:21 +7762 7762 7763 776.2 1552.4 7762 1991-04-03 2024-10-11 02:09:22.000 1991-04-03 2024-10-11 02:09:22 +7763 7763 7764 776.3 1552.6000000000001 7763 1991-04-04 2024-10-11 02:09:23.000 1991-04-04 2024-10-11 02:09:23 +7764 7764 7765 776.4 1552.8000000000002 7764 1991-04-05 2024-10-11 02:09:24.000 1991-04-05 2024-10-11 02:09:24 +7766 7766 7767 776.6 1553.2 7766 1991-04-07 2024-10-11 02:09:26.000 1991-04-07 2024-10-11 02:09:26 +7767 7767 7768 776.7 1553.4 7767 1991-04-08 2024-10-11 02:09:27.000 1991-04-08 2024-10-11 02:09:27 +7768 7768 7769 776.8 1553.6000000000001 7768 1991-04-09 2024-10-11 02:09:28.000 1991-04-09 2024-10-11 02:09:28 +7769 7769 7770 776.9 1553.8000000000002 7769 1991-04-10 2024-10-11 02:09:29.000 1991-04-10 2024-10-11 02:09:29 +7771 7771 7772 777.1 1554.2 7771 1991-04-12 2024-10-11 02:09:31.000 1991-04-12 2024-10-11 02:09:31 +7772 7772 7773 777.2 1554.4 7772 1991-04-13 2024-10-11 02:09:32.000 1991-04-13 2024-10-11 02:09:32 +7773 7773 7774 777.3 1554.6000000000001 7773 1991-04-14 2024-10-11 02:09:33.000 1991-04-14 2024-10-11 02:09:33 +7774 7774 7775 777.4 1554.8000000000002 7774 1991-04-15 2024-10-11 02:09:34.000 1991-04-15 2024-10-11 02:09:34 +7776 7776 7777 777.6 1555.2 7776 1991-04-17 2024-10-11 02:09:36.000 1991-04-17 2024-10-11 02:09:36 +7777 7777 7778 777.7 1555.4 7777 1991-04-18 2024-10-11 02:09:37.000 1991-04-18 2024-10-11 02:09:37 +7778 7778 7779 777.8 1555.6000000000001 7778 1991-04-19 2024-10-11 02:09:38.000 1991-04-19 2024-10-11 02:09:38 +7779 7779 7780 777.9 1555.8000000000002 7779 1991-04-20 2024-10-11 02:09:39.000 1991-04-20 2024-10-11 02:09:39 +7781 7781 7782 778.1 1556.2 7781 1991-04-22 2024-10-11 02:09:41.000 1991-04-22 2024-10-11 02:09:41 +7782 7782 7783 778.2 1556.4 7782 1991-04-23 2024-10-11 02:09:42.000 1991-04-23 2024-10-11 02:09:42 +7783 7783 7784 778.3 1556.6000000000001 7783 1991-04-24 2024-10-11 02:09:43.000 1991-04-24 2024-10-11 02:09:43 +7784 7784 7785 778.4 1556.8000000000002 7784 1991-04-25 2024-10-11 02:09:44.000 1991-04-25 2024-10-11 02:09:44 +7786 7786 7787 778.6 1557.2 7786 1991-04-27 2024-10-11 02:09:46.000 1991-04-27 2024-10-11 02:09:46 +7787 7787 7788 778.7 1557.4 7787 1991-04-28 2024-10-11 02:09:47.000 1991-04-28 2024-10-11 02:09:47 +7788 7788 7789 778.8 1557.6000000000001 7788 1991-04-29 2024-10-11 02:09:48.000 1991-04-29 2024-10-11 02:09:48 +7789 7789 7790 778.9 1557.8000000000002 7789 1991-04-30 2024-10-11 02:09:49.000 1991-04-30 2024-10-11 02:09:49 +7791 7791 7792 779.1 1558.2 7791 1991-05-02 2024-10-11 02:09:51.000 1991-05-02 2024-10-11 02:09:51 +7792 7792 7793 779.2 1558.4 7792 1991-05-03 2024-10-11 02:09:52.000 1991-05-03 2024-10-11 02:09:52 +7793 7793 7794 779.3 1558.6000000000001 7793 1991-05-04 2024-10-11 02:09:53.000 1991-05-04 2024-10-11 02:09:53 +7794 7794 7795 779.4 1558.8000000000002 7794 1991-05-05 2024-10-11 02:09:54.000 1991-05-05 2024-10-11 02:09:54 +7796 7796 7797 779.6 1559.2 7796 1991-05-07 2024-10-11 02:09:56.000 1991-05-07 2024-10-11 02:09:56 +7797 7797 7798 779.7 1559.4 7797 1991-05-08 2024-10-11 02:09:57.000 1991-05-08 2024-10-11 02:09:57 +7798 7798 7799 779.8 1559.6000000000001 7798 1991-05-09 2024-10-11 02:09:58.000 1991-05-09 2024-10-11 02:09:58 +7799 7799 7800 779.9 1559.8000000000002 7799 1991-05-10 2024-10-11 02:09:59.000 1991-05-10 2024-10-11 02:09:59 +7801 7801 7802 780.1 1560.2 7801 1991-05-12 2024-10-11 02:10:01.000 1991-05-12 2024-10-11 02:10:01 +7802 7802 7803 780.2 1560.4 7802 1991-05-13 2024-10-11 02:10:02.000 1991-05-13 2024-10-11 02:10:02 +7803 7803 7804 780.3 1560.6000000000001 7803 1991-05-14 2024-10-11 02:10:03.000 1991-05-14 2024-10-11 02:10:03 +7804 7804 7805 780.4 1560.8000000000002 7804 1991-05-15 2024-10-11 02:10:04.000 1991-05-15 2024-10-11 02:10:04 +7806 7806 7807 780.6 1561.2 7806 1991-05-17 2024-10-11 02:10:06.000 1991-05-17 2024-10-11 02:10:06 +7807 7807 7808 780.7 1561.4 7807 1991-05-18 2024-10-11 02:10:07.000 1991-05-18 2024-10-11 02:10:07 +7808 7808 7809 780.8 1561.6000000000001 7808 1991-05-19 2024-10-11 02:10:08.000 1991-05-19 2024-10-11 02:10:08 +7809 7809 7810 780.9 1561.8000000000002 7809 1991-05-20 2024-10-11 02:10:09.000 1991-05-20 2024-10-11 02:10:09 +7811 7811 7812 781.1 1562.2 7811 1991-05-22 2024-10-11 02:10:11.000 1991-05-22 2024-10-11 02:10:11 +7812 7812 7813 781.2 1562.4 7812 1991-05-23 2024-10-11 02:10:12.000 1991-05-23 2024-10-11 02:10:12 +7813 7813 7814 781.3 1562.6000000000001 7813 1991-05-24 2024-10-11 02:10:13.000 1991-05-24 2024-10-11 02:10:13 +7814 7814 7815 781.4 1562.8000000000002 7814 1991-05-25 2024-10-11 02:10:14.000 1991-05-25 2024-10-11 02:10:14 +7816 7816 7817 781.6 1563.2 7816 1991-05-27 2024-10-11 02:10:16.000 1991-05-27 2024-10-11 02:10:16 +7817 7817 7818 781.7 1563.4 7817 1991-05-28 2024-10-11 02:10:17.000 1991-05-28 2024-10-11 02:10:17 +7818 7818 7819 781.8 1563.6000000000001 7818 1991-05-29 2024-10-11 02:10:18.000 1991-05-29 2024-10-11 02:10:18 +7819 7819 7820 781.9 1563.8000000000002 7819 1991-05-30 2024-10-11 02:10:19.000 1991-05-30 2024-10-11 02:10:19 +7821 7821 7822 782.1 1564.2 7821 1991-06-01 2024-10-11 02:10:21.000 1991-06-01 2024-10-11 02:10:21 +7822 7822 7823 782.2 1564.4 7822 1991-06-02 2024-10-11 02:10:22.000 1991-06-02 2024-10-11 02:10:22 +7823 7823 7824 782.3 1564.6000000000001 7823 1991-06-03 2024-10-11 02:10:23.000 1991-06-03 2024-10-11 02:10:23 +7824 7824 7825 782.4 1564.8000000000002 7824 1991-06-04 2024-10-11 02:10:24.000 1991-06-04 2024-10-11 02:10:24 +7826 7826 7827 782.6 1565.2 7826 1991-06-06 2024-10-11 02:10:26.000 1991-06-06 2024-10-11 02:10:26 +7827 7827 7828 782.7 1565.4 7827 1991-06-07 2024-10-11 02:10:27.000 1991-06-07 2024-10-11 02:10:27 +7828 7828 7829 782.8 1565.6000000000001 7828 1991-06-08 2024-10-11 02:10:28.000 1991-06-08 2024-10-11 02:10:28 +7829 7829 7830 782.9 1565.8000000000002 7829 1991-06-09 2024-10-11 02:10:29.000 1991-06-09 2024-10-11 02:10:29 +7831 7831 7832 783.1 1566.2 7831 1991-06-11 2024-10-11 02:10:31.000 1991-06-11 2024-10-11 02:10:31 +7832 7832 7833 783.2 1566.4 7832 1991-06-12 2024-10-11 02:10:32.000 1991-06-12 2024-10-11 02:10:32 +7833 7833 7834 783.3 1566.6000000000001 7833 1991-06-13 2024-10-11 02:10:33.000 1991-06-13 2024-10-11 02:10:33 +7834 7834 7835 783.4 1566.8000000000002 7834 1991-06-14 2024-10-11 02:10:34.000 1991-06-14 2024-10-11 02:10:34 +7836 7836 7837 783.6 1567.2 7836 1991-06-16 2024-10-11 02:10:36.000 1991-06-16 2024-10-11 02:10:36 +7837 7837 7838 783.7 1567.4 7837 1991-06-17 2024-10-11 02:10:37.000 1991-06-17 2024-10-11 02:10:37 +7838 7838 7839 783.8 1567.6000000000001 7838 1991-06-18 2024-10-11 02:10:38.000 1991-06-18 2024-10-11 02:10:38 +7839 7839 7840 783.9 1567.8000000000002 7839 1991-06-19 2024-10-11 02:10:39.000 1991-06-19 2024-10-11 02:10:39 +7841 7841 7842 784.1 1568.2 7841 1991-06-21 2024-10-11 02:10:41.000 1991-06-21 2024-10-11 02:10:41 +7842 7842 7843 784.2 1568.4 7842 1991-06-22 2024-10-11 02:10:42.000 1991-06-22 2024-10-11 02:10:42 +7843 7843 7844 784.3 1568.6000000000001 7843 1991-06-23 2024-10-11 02:10:43.000 1991-06-23 2024-10-11 02:10:43 +7844 7844 7845 784.4 1568.8000000000002 7844 1991-06-24 2024-10-11 02:10:44.000 1991-06-24 2024-10-11 02:10:44 +7846 7846 7847 784.6 1569.2 7846 1991-06-26 2024-10-11 02:10:46.000 1991-06-26 2024-10-11 02:10:46 +7847 7847 7848 784.7 1569.4 7847 1991-06-27 2024-10-11 02:10:47.000 1991-06-27 2024-10-11 02:10:47 +7848 7848 7849 784.8 1569.6000000000001 7848 1991-06-28 2024-10-11 02:10:48.000 1991-06-28 2024-10-11 02:10:48 +7849 7849 7850 784.9 1569.8000000000002 7849 1991-06-29 2024-10-11 02:10:49.000 1991-06-29 2024-10-11 02:10:49 +7851 7851 7852 785.1 1570.2 7851 1991-07-01 2024-10-11 02:10:51.000 1991-07-01 2024-10-11 02:10:51 +7852 7852 7853 785.2 1570.4 7852 1991-07-02 2024-10-11 02:10:52.000 1991-07-02 2024-10-11 02:10:52 +7853 7853 7854 785.3 1570.6000000000001 7853 1991-07-03 2024-10-11 02:10:53.000 1991-07-03 2024-10-11 02:10:53 +7854 7854 7855 785.4 1570.8000000000002 7854 1991-07-04 2024-10-11 02:10:54.000 1991-07-04 2024-10-11 02:10:54 +7856 7856 7857 785.6 1571.2 7856 1991-07-06 2024-10-11 02:10:56.000 1991-07-06 2024-10-11 02:10:56 +7857 7857 7858 785.7 1571.4 7857 1991-07-07 2024-10-11 02:10:57.000 1991-07-07 2024-10-11 02:10:57 +7858 7858 7859 785.8 1571.6000000000001 7858 1991-07-08 2024-10-11 02:10:58.000 1991-07-08 2024-10-11 02:10:58 +7859 7859 7860 785.9 1571.8000000000002 7859 1991-07-09 2024-10-11 02:10:59.000 1991-07-09 2024-10-11 02:10:59 +7861 7861 7862 786.1 1572.2 7861 1991-07-11 2024-10-11 02:11:01.000 1991-07-11 2024-10-11 02:11:01 +7862 7862 7863 786.2 1572.4 7862 1991-07-12 2024-10-11 02:11:02.000 1991-07-12 2024-10-11 02:11:02 +7863 7863 7864 786.3 1572.6000000000001 7863 1991-07-13 2024-10-11 02:11:03.000 1991-07-13 2024-10-11 02:11:03 +7864 7864 7865 786.4 1572.8000000000002 7864 1991-07-14 2024-10-11 02:11:04.000 1991-07-14 2024-10-11 02:11:04 +7866 7866 7867 786.6 1573.2 7866 1991-07-16 2024-10-11 02:11:06.000 1991-07-16 2024-10-11 02:11:06 +7867 7867 7868 786.7 1573.4 7867 1991-07-17 2024-10-11 02:11:07.000 1991-07-17 2024-10-11 02:11:07 +7868 7868 7869 786.8 1573.6000000000001 7868 1991-07-18 2024-10-11 02:11:08.000 1991-07-18 2024-10-11 02:11:08 +7869 7869 7870 786.9 1573.8000000000002 7869 1991-07-19 2024-10-11 02:11:09.000 1991-07-19 2024-10-11 02:11:09 +7871 7871 7872 787.1 1574.2 7871 1991-07-21 2024-10-11 02:11:11.000 1991-07-21 2024-10-11 02:11:11 +7872 7872 7873 787.2 1574.4 7872 1991-07-22 2024-10-11 02:11:12.000 1991-07-22 2024-10-11 02:11:12 +7873 7873 7874 787.3 1574.6000000000001 7873 1991-07-23 2024-10-11 02:11:13.000 1991-07-23 2024-10-11 02:11:13 +7874 7874 7875 787.4 1574.8000000000002 7874 1991-07-24 2024-10-11 02:11:14.000 1991-07-24 2024-10-11 02:11:14 +7876 7876 7877 787.6 1575.2 7876 1991-07-26 2024-10-11 02:11:16.000 1991-07-26 2024-10-11 02:11:16 +7877 7877 7878 787.7 1575.4 7877 1991-07-27 2024-10-11 02:11:17.000 1991-07-27 2024-10-11 02:11:17 +7878 7878 7879 787.8 1575.6000000000001 7878 1991-07-28 2024-10-11 02:11:18.000 1991-07-28 2024-10-11 02:11:18 +7879 7879 7880 787.9 1575.8000000000002 7879 1991-07-29 2024-10-11 02:11:19.000 1991-07-29 2024-10-11 02:11:19 +7881 7881 7882 788.1 1576.2 7881 1991-07-31 2024-10-11 02:11:21.000 1991-07-31 2024-10-11 02:11:21 +7882 7882 7883 788.2 1576.4 7882 1991-08-01 2024-10-11 02:11:22.000 1991-08-01 2024-10-11 02:11:22 +7883 7883 7884 788.3 1576.6000000000001 7883 1991-08-02 2024-10-11 02:11:23.000 1991-08-02 2024-10-11 02:11:23 +7884 7884 7885 788.4 1576.8000000000002 7884 1991-08-03 2024-10-11 02:11:24.000 1991-08-03 2024-10-11 02:11:24 +7886 7886 7887 788.6 1577.2 7886 1991-08-05 2024-10-11 02:11:26.000 1991-08-05 2024-10-11 02:11:26 +7887 7887 7888 788.7 1577.4 7887 1991-08-06 2024-10-11 02:11:27.000 1991-08-06 2024-10-11 02:11:27 +7888 7888 7889 788.8 1577.6000000000001 7888 1991-08-07 2024-10-11 02:11:28.000 1991-08-07 2024-10-11 02:11:28 +7889 7889 7890 788.9 1577.8000000000002 7889 1991-08-08 2024-10-11 02:11:29.000 1991-08-08 2024-10-11 02:11:29 +7891 7891 7892 789.1 1578.2 7891 1991-08-10 2024-10-11 02:11:31.000 1991-08-10 2024-10-11 02:11:31 +7892 7892 7893 789.2 1578.4 7892 1991-08-11 2024-10-11 02:11:32.000 1991-08-11 2024-10-11 02:11:32 +7893 7893 7894 789.3 1578.6000000000001 7893 1991-08-12 2024-10-11 02:11:33.000 1991-08-12 2024-10-11 02:11:33 +7894 7894 7895 789.4 1578.8000000000002 7894 1991-08-13 2024-10-11 02:11:34.000 1991-08-13 2024-10-11 02:11:34 +7896 7896 7897 789.6 1579.2 7896 1991-08-15 2024-10-11 02:11:36.000 1991-08-15 2024-10-11 02:11:36 +7897 7897 7898 789.7 1579.4 7897 1991-08-16 2024-10-11 02:11:37.000 1991-08-16 2024-10-11 02:11:37 +7898 7898 7899 789.8 1579.6000000000001 7898 1991-08-17 2024-10-11 02:11:38.000 1991-08-17 2024-10-11 02:11:38 +7899 7899 7900 789.9 1579.8000000000002 7899 1991-08-18 2024-10-11 02:11:39.000 1991-08-18 2024-10-11 02:11:39 +7901 7901 7902 790.1 1580.2 7901 1991-08-20 2024-10-11 02:11:41.000 1991-08-20 2024-10-11 02:11:41 +7902 7902 7903 790.2 1580.4 7902 1991-08-21 2024-10-11 02:11:42.000 1991-08-21 2024-10-11 02:11:42 +7903 7903 7904 790.3 1580.6000000000001 7903 1991-08-22 2024-10-11 02:11:43.000 1991-08-22 2024-10-11 02:11:43 +7904 7904 7905 790.4 1580.8000000000002 7904 1991-08-23 2024-10-11 02:11:44.000 1991-08-23 2024-10-11 02:11:44 +7906 7906 7907 790.6 1581.2 7906 1991-08-25 2024-10-11 02:11:46.000 1991-08-25 2024-10-11 02:11:46 +7907 7907 7908 790.7 1581.4 7907 1991-08-26 2024-10-11 02:11:47.000 1991-08-26 2024-10-11 02:11:47 +7908 7908 7909 790.8 1581.6000000000001 7908 1991-08-27 2024-10-11 02:11:48.000 1991-08-27 2024-10-11 02:11:48 +7909 7909 7910 790.9 1581.8000000000002 7909 1991-08-28 2024-10-11 02:11:49.000 1991-08-28 2024-10-11 02:11:49 +7911 7911 7912 791.1 1582.2 7911 1991-08-30 2024-10-11 02:11:51.000 1991-08-30 2024-10-11 02:11:51 +7912 7912 7913 791.2 1582.4 7912 1991-08-31 2024-10-11 02:11:52.000 1991-08-31 2024-10-11 02:11:52 +7913 7913 7914 791.3 1582.6000000000001 7913 1991-09-01 2024-10-11 02:11:53.000 1991-09-01 2024-10-11 02:11:53 +7914 7914 7915 791.4 1582.8000000000002 7914 1991-09-02 2024-10-11 02:11:54.000 1991-09-02 2024-10-11 02:11:54 +7916 7916 7917 791.6 1583.2 7916 1991-09-04 2024-10-11 02:11:56.000 1991-09-04 2024-10-11 02:11:56 +7917 7917 7918 791.7 1583.4 7917 1991-09-05 2024-10-11 02:11:57.000 1991-09-05 2024-10-11 02:11:57 +7918 7918 7919 791.8 1583.6000000000001 7918 1991-09-06 2024-10-11 02:11:58.000 1991-09-06 2024-10-11 02:11:58 +7919 7919 7920 791.9 1583.8000000000002 7919 1991-09-07 2024-10-11 02:11:59.000 1991-09-07 2024-10-11 02:11:59 +7921 7921 7922 792.1 1584.2 7921 1991-09-09 2024-10-11 02:12:01.000 1991-09-09 2024-10-11 02:12:01 +7922 7922 7923 792.2 1584.4 7922 1991-09-10 2024-10-11 02:12:02.000 1991-09-10 2024-10-11 02:12:02 +7923 7923 7924 792.3 1584.6000000000001 7923 1991-09-11 2024-10-11 02:12:03.000 1991-09-11 2024-10-11 02:12:03 +7924 7924 7925 792.4 1584.8000000000002 7924 1991-09-12 2024-10-11 02:12:04.000 1991-09-12 2024-10-11 02:12:04 +7926 7926 7927 792.6 1585.2 7926 1991-09-14 2024-10-11 02:12:06.000 1991-09-14 2024-10-11 02:12:06 +7927 7927 7928 792.7 1585.4 7927 1991-09-15 2024-10-11 02:12:07.000 1991-09-15 2024-10-11 02:12:07 +7928 7928 7929 792.8 1585.6000000000001 7928 1991-09-16 2024-10-11 02:12:08.000 1991-09-16 2024-10-11 02:12:08 +7929 7929 7930 792.9 1585.8000000000002 7929 1991-09-17 2024-10-11 02:12:09.000 1991-09-17 2024-10-11 02:12:09 +7931 7931 7932 793.1 1586.2 7931 1991-09-19 2024-10-11 02:12:11.000 1991-09-19 2024-10-11 02:12:11 +7932 7932 7933 793.2 1586.4 7932 1991-09-20 2024-10-11 02:12:12.000 1991-09-20 2024-10-11 02:12:12 +7933 7933 7934 793.3 1586.6000000000001 7933 1991-09-21 2024-10-11 02:12:13.000 1991-09-21 2024-10-11 02:12:13 +7934 7934 7935 793.4 1586.8000000000002 7934 1991-09-22 2024-10-11 02:12:14.000 1991-09-22 2024-10-11 02:12:14 +7936 7936 7937 793.6 1587.2 7936 1991-09-24 2024-10-11 02:12:16.000 1991-09-24 2024-10-11 02:12:16 +7937 7937 7938 793.7 1587.4 7937 1991-09-25 2024-10-11 02:12:17.000 1991-09-25 2024-10-11 02:12:17 +7938 7938 7939 793.8 1587.6000000000001 7938 1991-09-26 2024-10-11 02:12:18.000 1991-09-26 2024-10-11 02:12:18 +7939 7939 7940 793.9 1587.8000000000002 7939 1991-09-27 2024-10-11 02:12:19.000 1991-09-27 2024-10-11 02:12:19 +7941 7941 7942 794.1 1588.2 7941 1991-09-29 2024-10-11 02:12:21.000 1991-09-29 2024-10-11 02:12:21 +7942 7942 7943 794.2 1588.4 7942 1991-09-30 2024-10-11 02:12:22.000 1991-09-30 2024-10-11 02:12:22 +7943 7943 7944 794.3 1588.6000000000001 7943 1991-10-01 2024-10-11 02:12:23.000 1991-10-01 2024-10-11 02:12:23 +7944 7944 7945 794.4 1588.8000000000002 7944 1991-10-02 2024-10-11 02:12:24.000 1991-10-02 2024-10-11 02:12:24 +7946 7946 7947 794.6 1589.2 7946 1991-10-04 2024-10-11 02:12:26.000 1991-10-04 2024-10-11 02:12:26 +7947 7947 7948 794.7 1589.4 7947 1991-10-05 2024-10-11 02:12:27.000 1991-10-05 2024-10-11 02:12:27 +7948 7948 7949 794.8 1589.6000000000001 7948 1991-10-06 2024-10-11 02:12:28.000 1991-10-06 2024-10-11 02:12:28 +7949 7949 7950 794.9 1589.8000000000002 7949 1991-10-07 2024-10-11 02:12:29.000 1991-10-07 2024-10-11 02:12:29 +7951 7951 7952 795.1 1590.2 7951 1991-10-09 2024-10-11 02:12:31.000 1991-10-09 2024-10-11 02:12:31 +7952 7952 7953 795.2 1590.4 7952 1991-10-10 2024-10-11 02:12:32.000 1991-10-10 2024-10-11 02:12:32 +7953 7953 7954 795.3 1590.6000000000001 7953 1991-10-11 2024-10-11 02:12:33.000 1991-10-11 2024-10-11 02:12:33 +7954 7954 7955 795.4 1590.8000000000002 7954 1991-10-12 2024-10-11 02:12:34.000 1991-10-12 2024-10-11 02:12:34 +7956 7956 7957 795.6 1591.2 7956 1991-10-14 2024-10-11 02:12:36.000 1991-10-14 2024-10-11 02:12:36 +7957 7957 7958 795.7 1591.4 7957 1991-10-15 2024-10-11 02:12:37.000 1991-10-15 2024-10-11 02:12:37 +7958 7958 7959 795.8 1591.6000000000001 7958 1991-10-16 2024-10-11 02:12:38.000 1991-10-16 2024-10-11 02:12:38 +7959 7959 7960 795.9 1591.8000000000002 7959 1991-10-17 2024-10-11 02:12:39.000 1991-10-17 2024-10-11 02:12:39 +7961 7961 7962 796.1 1592.2 7961 1991-10-19 2024-10-11 02:12:41.000 1991-10-19 2024-10-11 02:12:41 +7962 7962 7963 796.2 1592.4 7962 1991-10-20 2024-10-11 02:12:42.000 1991-10-20 2024-10-11 02:12:42 +7963 7963 7964 796.3 1592.6000000000001 7963 1991-10-21 2024-10-11 02:12:43.000 1991-10-21 2024-10-11 02:12:43 +7964 7964 7965 796.4 1592.8000000000002 7964 1991-10-22 2024-10-11 02:12:44.000 1991-10-22 2024-10-11 02:12:44 +7966 7966 7967 796.6 1593.2 7966 1991-10-24 2024-10-11 02:12:46.000 1991-10-24 2024-10-11 02:12:46 +7967 7967 7968 796.7 1593.4 7967 1991-10-25 2024-10-11 02:12:47.000 1991-10-25 2024-10-11 02:12:47 +7968 7968 7969 796.8 1593.6000000000001 7968 1991-10-26 2024-10-11 02:12:48.000 1991-10-26 2024-10-11 02:12:48 +7969 7969 7970 796.9 1593.8000000000002 7969 1991-10-27 2024-10-11 02:12:49.000 1991-10-27 2024-10-11 02:12:49 +7971 7971 7972 797.1 1594.2 7971 1991-10-29 2024-10-11 02:12:51.000 1991-10-29 2024-10-11 02:12:51 +7972 7972 7973 797.2 1594.4 7972 1991-10-30 2024-10-11 02:12:52.000 1991-10-30 2024-10-11 02:12:52 +7973 7973 7974 797.3 1594.6000000000001 7973 1991-10-31 2024-10-11 02:12:53.000 1991-10-31 2024-10-11 02:12:53 +7974 7974 7975 797.4 1594.8000000000002 7974 1991-11-01 2024-10-11 02:12:54.000 1991-11-01 2024-10-11 02:12:54 +7976 7976 7977 797.6 1595.2 7976 1991-11-03 2024-10-11 02:12:56.000 1991-11-03 2024-10-11 02:12:56 +7977 7977 7978 797.7 1595.4 7977 1991-11-04 2024-10-11 02:12:57.000 1991-11-04 2024-10-11 02:12:57 +7978 7978 7979 797.8 1595.6000000000001 7978 1991-11-05 2024-10-11 02:12:58.000 1991-11-05 2024-10-11 02:12:58 +7979 7979 7980 797.9 1595.8000000000002 7979 1991-11-06 2024-10-11 02:12:59.000 1991-11-06 2024-10-11 02:12:59 +7981 7981 7982 798.1 1596.2 7981 1991-11-08 2024-10-11 02:13:01.000 1991-11-08 2024-10-11 02:13:01 +7982 7982 7983 798.2 1596.4 7982 1991-11-09 2024-10-11 02:13:02.000 1991-11-09 2024-10-11 02:13:02 +7983 7983 7984 798.3 1596.6000000000001 7983 1991-11-10 2024-10-11 02:13:03.000 1991-11-10 2024-10-11 02:13:03 +7984 7984 7985 798.4 1596.8000000000002 7984 1991-11-11 2024-10-11 02:13:04.000 1991-11-11 2024-10-11 02:13:04 +7986 7986 7987 798.6 1597.2 7986 1991-11-13 2024-10-11 02:13:06.000 1991-11-13 2024-10-11 02:13:06 +7987 7987 7988 798.7 1597.4 7987 1991-11-14 2024-10-11 02:13:07.000 1991-11-14 2024-10-11 02:13:07 +7988 7988 7989 798.8 1597.6000000000001 7988 1991-11-15 2024-10-11 02:13:08.000 1991-11-15 2024-10-11 02:13:08 +7989 7989 7990 798.9 1597.8000000000002 7989 1991-11-16 2024-10-11 02:13:09.000 1991-11-16 2024-10-11 02:13:09 +7991 7991 7992 799.1 1598.2 7991 1991-11-18 2024-10-11 02:13:11.000 1991-11-18 2024-10-11 02:13:11 +7992 7992 7993 799.2 1598.4 7992 1991-11-19 2024-10-11 02:13:12.000 1991-11-19 2024-10-11 02:13:12 +7993 7993 7994 799.3 1598.6000000000001 7993 1991-11-20 2024-10-11 02:13:13.000 1991-11-20 2024-10-11 02:13:13 +7994 7994 7995 799.4 1598.8000000000002 7994 1991-11-21 2024-10-11 02:13:14.000 1991-11-21 2024-10-11 02:13:14 +7996 7996 7997 799.6 1599.2 7996 1991-11-23 2024-10-11 02:13:16.000 1991-11-23 2024-10-11 02:13:16 +7997 7997 7998 799.7 1599.4 7997 1991-11-24 2024-10-11 02:13:17.000 1991-11-24 2024-10-11 02:13:17 +7998 7998 7999 799.8 1599.6000000000001 7998 1991-11-25 2024-10-11 02:13:18.000 1991-11-25 2024-10-11 02:13:18 +7999 7999 8000 799.9 1599.8000000000002 7999 1991-11-26 2024-10-11 02:13:19.000 1991-11-26 2024-10-11 02:13:19 +8001 8001 8002 800.1 1600.2 8001 1991-11-28 2024-10-11 02:13:21.000 1991-11-28 2024-10-11 02:13:21 +8002 8002 8003 800.2 1600.4 8002 1991-11-29 2024-10-11 02:13:22.000 1991-11-29 2024-10-11 02:13:22 +8003 8003 8004 800.3 1600.6000000000001 8003 1991-11-30 2024-10-11 02:13:23.000 1991-11-30 2024-10-11 02:13:23 +8004 8004 8005 800.4 1600.8000000000002 8004 1991-12-01 2024-10-11 02:13:24.000 1991-12-01 2024-10-11 02:13:24 +8006 8006 8007 800.6 1601.2 8006 1991-12-03 2024-10-11 02:13:26.000 1991-12-03 2024-10-11 02:13:26 +8007 8007 8008 800.7 1601.4 8007 1991-12-04 2024-10-11 02:13:27.000 1991-12-04 2024-10-11 02:13:27 +8008 8008 8009 800.8 1601.6000000000001 8008 1991-12-05 2024-10-11 02:13:28.000 1991-12-05 2024-10-11 02:13:28 +8009 8009 8010 800.9 1601.8000000000002 8009 1991-12-06 2024-10-11 02:13:29.000 1991-12-06 2024-10-11 02:13:29 +8011 8011 8012 801.1 1602.2 8011 1991-12-08 2024-10-11 02:13:31.000 1991-12-08 2024-10-11 02:13:31 +8012 8012 8013 801.2 1602.4 8012 1991-12-09 2024-10-11 02:13:32.000 1991-12-09 2024-10-11 02:13:32 +8013 8013 8014 801.3 1602.6000000000001 8013 1991-12-10 2024-10-11 02:13:33.000 1991-12-10 2024-10-11 02:13:33 +8014 8014 8015 801.4 1602.8000000000002 8014 1991-12-11 2024-10-11 02:13:34.000 1991-12-11 2024-10-11 02:13:34 +8016 8016 8017 801.6 1603.2 8016 1991-12-13 2024-10-11 02:13:36.000 1991-12-13 2024-10-11 02:13:36 +8017 8017 8018 801.7 1603.4 8017 1991-12-14 2024-10-11 02:13:37.000 1991-12-14 2024-10-11 02:13:37 +8018 8018 8019 801.8 1603.6000000000001 8018 1991-12-15 2024-10-11 02:13:38.000 1991-12-15 2024-10-11 02:13:38 +8019 8019 8020 801.9 1603.8000000000002 8019 1991-12-16 2024-10-11 02:13:39.000 1991-12-16 2024-10-11 02:13:39 +8021 8021 8022 802.1 1604.2 8021 1991-12-18 2024-10-11 02:13:41.000 1991-12-18 2024-10-11 02:13:41 +8022 8022 8023 802.2 1604.4 8022 1991-12-19 2024-10-11 02:13:42.000 1991-12-19 2024-10-11 02:13:42 +8023 8023 8024 802.3 1604.6000000000001 8023 1991-12-20 2024-10-11 02:13:43.000 1991-12-20 2024-10-11 02:13:43 +8024 8024 8025 802.4 1604.8000000000002 8024 1991-12-21 2024-10-11 02:13:44.000 1991-12-21 2024-10-11 02:13:44 +8026 8026 8027 802.6 1605.2 8026 1991-12-23 2024-10-11 02:13:46.000 1991-12-23 2024-10-11 02:13:46 +8027 8027 8028 802.7 1605.4 8027 1991-12-24 2024-10-11 02:13:47.000 1991-12-24 2024-10-11 02:13:47 +8028 8028 8029 802.8 1605.6000000000001 8028 1991-12-25 2024-10-11 02:13:48.000 1991-12-25 2024-10-11 02:13:48 +8029 8029 8030 802.9 1605.8000000000002 8029 1991-12-26 2024-10-11 02:13:49.000 1991-12-26 2024-10-11 02:13:49 +8031 8031 8032 803.1 1606.2 8031 1991-12-28 2024-10-11 02:13:51.000 1991-12-28 2024-10-11 02:13:51 +8032 8032 8033 803.2 1606.4 8032 1991-12-29 2024-10-11 02:13:52.000 1991-12-29 2024-10-11 02:13:52 +8033 8033 8034 803.3 1606.6000000000001 8033 1991-12-30 2024-10-11 02:13:53.000 1991-12-30 2024-10-11 02:13:53 +8034 8034 8035 803.4 1606.8000000000002 8034 1991-12-31 2024-10-11 02:13:54.000 1991-12-31 2024-10-11 02:13:54 +8036 8036 8037 803.6 1607.2 8036 1992-01-02 2024-10-11 02:13:56.000 1992-01-02 2024-10-11 02:13:56 +8037 8037 8038 803.7 1607.4 8037 1992-01-03 2024-10-11 02:13:57.000 1992-01-03 2024-10-11 02:13:57 +8038 8038 8039 803.8 1607.6000000000001 8038 1992-01-04 2024-10-11 02:13:58.000 1992-01-04 2024-10-11 02:13:58 +8039 8039 8040 803.9 1607.8000000000002 8039 1992-01-05 2024-10-11 02:13:59.000 1992-01-05 2024-10-11 02:13:59 +8041 8041 8042 804.1 1608.2 8041 1992-01-07 2024-10-11 02:14:01.000 1992-01-07 2024-10-11 02:14:01 +8042 8042 8043 804.2 1608.4 8042 1992-01-08 2024-10-11 02:14:02.000 1992-01-08 2024-10-11 02:14:02 +8043 8043 8044 804.3 1608.6000000000001 8043 1992-01-09 2024-10-11 02:14:03.000 1992-01-09 2024-10-11 02:14:03 +8044 8044 8045 804.4 1608.8000000000002 8044 1992-01-10 2024-10-11 02:14:04.000 1992-01-10 2024-10-11 02:14:04 +8046 8046 8047 804.6 1609.2 8046 1992-01-12 2024-10-11 02:14:06.000 1992-01-12 2024-10-11 02:14:06 +8047 8047 8048 804.7 1609.4 8047 1992-01-13 2024-10-11 02:14:07.000 1992-01-13 2024-10-11 02:14:07 +8048 8048 8049 804.8 1609.6000000000001 8048 1992-01-14 2024-10-11 02:14:08.000 1992-01-14 2024-10-11 02:14:08 +8049 8049 8050 804.9 1609.8000000000002 8049 1992-01-15 2024-10-11 02:14:09.000 1992-01-15 2024-10-11 02:14:09 +8051 8051 8052 805.1 1610.2 8051 1992-01-17 2024-10-11 02:14:11.000 1992-01-17 2024-10-11 02:14:11 +8052 8052 8053 805.2 1610.4 8052 1992-01-18 2024-10-11 02:14:12.000 1992-01-18 2024-10-11 02:14:12 +8053 8053 8054 805.3 1610.6000000000001 8053 1992-01-19 2024-10-11 02:14:13.000 1992-01-19 2024-10-11 02:14:13 +8054 8054 8055 805.4 1610.8000000000002 8054 1992-01-20 2024-10-11 02:14:14.000 1992-01-20 2024-10-11 02:14:14 +8056 8056 8057 805.6 1611.2 8056 1992-01-22 2024-10-11 02:14:16.000 1992-01-22 2024-10-11 02:14:16 +8057 8057 8058 805.7 1611.4 8057 1992-01-23 2024-10-11 02:14:17.000 1992-01-23 2024-10-11 02:14:17 +8058 8058 8059 805.8 1611.6000000000001 8058 1992-01-24 2024-10-11 02:14:18.000 1992-01-24 2024-10-11 02:14:18 +8059 8059 8060 805.9 1611.8000000000002 8059 1992-01-25 2024-10-11 02:14:19.000 1992-01-25 2024-10-11 02:14:19 +8061 8061 8062 806.1 1612.2 8061 1992-01-27 2024-10-11 02:14:21.000 1992-01-27 2024-10-11 02:14:21 +8062 8062 8063 806.2 1612.4 8062 1992-01-28 2024-10-11 02:14:22.000 1992-01-28 2024-10-11 02:14:22 +8063 8063 8064 806.3 1612.6000000000001 8063 1992-01-29 2024-10-11 02:14:23.000 1992-01-29 2024-10-11 02:14:23 +8064 8064 8065 806.4 1612.8000000000002 8064 1992-01-30 2024-10-11 02:14:24.000 1992-01-30 2024-10-11 02:14:24 +8066 8066 8067 806.6 1613.2 8066 1992-02-01 2024-10-11 02:14:26.000 1992-02-01 2024-10-11 02:14:26 +8067 8067 8068 806.7 1613.4 8067 1992-02-02 2024-10-11 02:14:27.000 1992-02-02 2024-10-11 02:14:27 +8068 8068 8069 806.8 1613.6000000000001 8068 1992-02-03 2024-10-11 02:14:28.000 1992-02-03 2024-10-11 02:14:28 +8069 8069 8070 806.9 1613.8000000000002 8069 1992-02-04 2024-10-11 02:14:29.000 1992-02-04 2024-10-11 02:14:29 +8071 8071 8072 807.1 1614.2 8071 1992-02-06 2024-10-11 02:14:31.000 1992-02-06 2024-10-11 02:14:31 +8072 8072 8073 807.2 1614.4 8072 1992-02-07 2024-10-11 02:14:32.000 1992-02-07 2024-10-11 02:14:32 +8073 8073 8074 807.3 1614.6000000000001 8073 1992-02-08 2024-10-11 02:14:33.000 1992-02-08 2024-10-11 02:14:33 +8074 8074 8075 807.4 1614.8000000000002 8074 1992-02-09 2024-10-11 02:14:34.000 1992-02-09 2024-10-11 02:14:34 +8076 8076 8077 807.6 1615.2 8076 1992-02-11 2024-10-11 02:14:36.000 1992-02-11 2024-10-11 02:14:36 +8077 8077 8078 807.7 1615.4 8077 1992-02-12 2024-10-11 02:14:37.000 1992-02-12 2024-10-11 02:14:37 +8078 8078 8079 807.8 1615.6000000000001 8078 1992-02-13 2024-10-11 02:14:38.000 1992-02-13 2024-10-11 02:14:38 +8079 8079 8080 807.9 1615.8000000000002 8079 1992-02-14 2024-10-11 02:14:39.000 1992-02-14 2024-10-11 02:14:39 +8081 8081 8082 808.1 1616.2 8081 1992-02-16 2024-10-11 02:14:41.000 1992-02-16 2024-10-11 02:14:41 +8082 8082 8083 808.2 1616.4 8082 1992-02-17 2024-10-11 02:14:42.000 1992-02-17 2024-10-11 02:14:42 +8083 8083 8084 808.3 1616.6000000000001 8083 1992-02-18 2024-10-11 02:14:43.000 1992-02-18 2024-10-11 02:14:43 +8084 8084 8085 808.4 1616.8000000000002 8084 1992-02-19 2024-10-11 02:14:44.000 1992-02-19 2024-10-11 02:14:44 +8086 8086 8087 808.6 1617.2 8086 1992-02-21 2024-10-11 02:14:46.000 1992-02-21 2024-10-11 02:14:46 +8087 8087 8088 808.7 1617.4 8087 1992-02-22 2024-10-11 02:14:47.000 1992-02-22 2024-10-11 02:14:47 +8088 8088 8089 808.8 1617.6000000000001 8088 1992-02-23 2024-10-11 02:14:48.000 1992-02-23 2024-10-11 02:14:48 +8089 8089 8090 808.9 1617.8000000000002 8089 1992-02-24 2024-10-11 02:14:49.000 1992-02-24 2024-10-11 02:14:49 +8091 8091 8092 809.1 1618.2 8091 1992-02-26 2024-10-11 02:14:51.000 1992-02-26 2024-10-11 02:14:51 +8092 8092 8093 809.2 1618.4 8092 1992-02-27 2024-10-11 02:14:52.000 1992-02-27 2024-10-11 02:14:52 +8093 8093 8094 809.3 1618.6000000000001 8093 1992-02-28 2024-10-11 02:14:53.000 1992-02-28 2024-10-11 02:14:53 +8094 8094 8095 809.4 1618.8000000000002 8094 1992-02-29 2024-10-11 02:14:54.000 1992-02-29 2024-10-11 02:14:54 +8096 8096 8097 809.6 1619.2 8096 1992-03-02 2024-10-11 02:14:56.000 1992-03-02 2024-10-11 02:14:56 +8097 8097 8098 809.7 1619.4 8097 1992-03-03 2024-10-11 02:14:57.000 1992-03-03 2024-10-11 02:14:57 +8098 8098 8099 809.8 1619.6000000000001 8098 1992-03-04 2024-10-11 02:14:58.000 1992-03-04 2024-10-11 02:14:58 +8099 8099 8100 809.9 1619.8000000000002 8099 1992-03-05 2024-10-11 02:14:59.000 1992-03-05 2024-10-11 02:14:59 +8101 8101 8102 810.1 1620.2 8101 1992-03-07 2024-10-11 02:15:01.000 1992-03-07 2024-10-11 02:15:01 +8102 8102 8103 810.2 1620.4 8102 1992-03-08 2024-10-11 02:15:02.000 1992-03-08 2024-10-11 02:15:02 +8103 8103 8104 810.3 1620.6000000000001 8103 1992-03-09 2024-10-11 02:15:03.000 1992-03-09 2024-10-11 02:15:03 +8104 8104 8105 810.4 1620.8000000000002 8104 1992-03-10 2024-10-11 02:15:04.000 1992-03-10 2024-10-11 02:15:04 +8106 8106 8107 810.6 1621.2 8106 1992-03-12 2024-10-11 02:15:06.000 1992-03-12 2024-10-11 02:15:06 +8107 8107 8108 810.7 1621.4 8107 1992-03-13 2024-10-11 02:15:07.000 1992-03-13 2024-10-11 02:15:07 +8108 8108 8109 810.8 1621.6000000000001 8108 1992-03-14 2024-10-11 02:15:08.000 1992-03-14 2024-10-11 02:15:08 +8109 8109 8110 810.9 1621.8000000000002 8109 1992-03-15 2024-10-11 02:15:09.000 1992-03-15 2024-10-11 02:15:09 +8111 8111 8112 811.1 1622.2 8111 1992-03-17 2024-10-11 02:15:11.000 1992-03-17 2024-10-11 02:15:11 +8112 8112 8113 811.2 1622.4 8112 1992-03-18 2024-10-11 02:15:12.000 1992-03-18 2024-10-11 02:15:12 +8113 8113 8114 811.3 1622.6000000000001 8113 1992-03-19 2024-10-11 02:15:13.000 1992-03-19 2024-10-11 02:15:13 +8114 8114 8115 811.4 1622.8000000000002 8114 1992-03-20 2024-10-11 02:15:14.000 1992-03-20 2024-10-11 02:15:14 +8116 8116 8117 811.6 1623.2 8116 1992-03-22 2024-10-11 02:15:16.000 1992-03-22 2024-10-11 02:15:16 +8117 8117 8118 811.7 1623.4 8117 1992-03-23 2024-10-11 02:15:17.000 1992-03-23 2024-10-11 02:15:17 +8118 8118 8119 811.8 1623.6000000000001 8118 1992-03-24 2024-10-11 02:15:18.000 1992-03-24 2024-10-11 02:15:18 +8119 8119 8120 811.9 1623.8000000000002 8119 1992-03-25 2024-10-11 02:15:19.000 1992-03-25 2024-10-11 02:15:19 +8121 8121 8122 812.1 1624.2 8121 1992-03-27 2024-10-11 02:15:21.000 1992-03-27 2024-10-11 02:15:21 +8122 8122 8123 812.2 1624.4 8122 1992-03-28 2024-10-11 02:15:22.000 1992-03-28 2024-10-11 02:15:22 +8123 8123 8124 812.3 1624.6000000000001 8123 1992-03-29 2024-10-11 02:15:23.000 1992-03-29 2024-10-11 02:15:23 +8124 8124 8125 812.4 1624.8000000000002 8124 1992-03-30 2024-10-11 02:15:24.000 1992-03-30 2024-10-11 02:15:24 +8126 8126 8127 812.6 1625.2 8126 1992-04-01 2024-10-11 02:15:26.000 1992-04-01 2024-10-11 02:15:26 +8127 8127 8128 812.7 1625.4 8127 1992-04-02 2024-10-11 02:15:27.000 1992-04-02 2024-10-11 02:15:27 +8128 8128 8129 812.8 1625.6000000000001 8128 1992-04-03 2024-10-11 02:15:28.000 1992-04-03 2024-10-11 02:15:28 +8129 8129 8130 812.9 1625.8000000000002 8129 1992-04-04 2024-10-11 02:15:29.000 1992-04-04 2024-10-11 02:15:29 +8131 8131 8132 813.1 1626.2 8131 1992-04-06 2024-10-11 02:15:31.000 1992-04-06 2024-10-11 02:15:31 +8132 8132 8133 813.2 1626.4 8132 1992-04-07 2024-10-11 02:15:32.000 1992-04-07 2024-10-11 02:15:32 +8133 8133 8134 813.3 1626.6000000000001 8133 1992-04-08 2024-10-11 02:15:33.000 1992-04-08 2024-10-11 02:15:33 +8134 8134 8135 813.4 1626.8000000000002 8134 1992-04-09 2024-10-11 02:15:34.000 1992-04-09 2024-10-11 02:15:34 +8136 8136 8137 813.6 1627.2 8136 1992-04-11 2024-10-11 02:15:36.000 1992-04-11 2024-10-11 02:15:36 +8137 8137 8138 813.7 1627.4 8137 1992-04-12 2024-10-11 02:15:37.000 1992-04-12 2024-10-11 02:15:37 +8138 8138 8139 813.8 1627.6000000000001 8138 1992-04-13 2024-10-11 02:15:38.000 1992-04-13 2024-10-11 02:15:38 +8139 8139 8140 813.9 1627.8000000000002 8139 1992-04-14 2024-10-11 02:15:39.000 1992-04-14 2024-10-11 02:15:39 +8141 8141 8142 814.1 1628.2 8141 1992-04-16 2024-10-11 02:15:41.000 1992-04-16 2024-10-11 02:15:41 +8142 8142 8143 814.2 1628.4 8142 1992-04-17 2024-10-11 02:15:42.000 1992-04-17 2024-10-11 02:15:42 +8143 8143 8144 814.3 1628.6000000000001 8143 1992-04-18 2024-10-11 02:15:43.000 1992-04-18 2024-10-11 02:15:43 +8144 8144 8145 814.4 1628.8000000000002 8144 1992-04-19 2024-10-11 02:15:44.000 1992-04-19 2024-10-11 02:15:44 +8146 8146 8147 814.6 1629.2 8146 1992-04-21 2024-10-11 02:15:46.000 1992-04-21 2024-10-11 02:15:46 +8147 8147 8148 814.7 1629.4 8147 1992-04-22 2024-10-11 02:15:47.000 1992-04-22 2024-10-11 02:15:47 +8148 8148 8149 814.8 1629.6000000000001 8148 1992-04-23 2024-10-11 02:15:48.000 1992-04-23 2024-10-11 02:15:48 +8149 8149 8150 814.9 1629.8000000000002 8149 1992-04-24 2024-10-11 02:15:49.000 1992-04-24 2024-10-11 02:15:49 +8151 8151 8152 815.1 1630.2 8151 1992-04-26 2024-10-11 02:15:51.000 1992-04-26 2024-10-11 02:15:51 +8152 8152 8153 815.2 1630.4 8152 1992-04-27 2024-10-11 02:15:52.000 1992-04-27 2024-10-11 02:15:52 +8153 8153 8154 815.3 1630.6000000000001 8153 1992-04-28 2024-10-11 02:15:53.000 1992-04-28 2024-10-11 02:15:53 +8154 8154 8155 815.4 1630.8000000000002 8154 1992-04-29 2024-10-11 02:15:54.000 1992-04-29 2024-10-11 02:15:54 +8156 8156 8157 815.6 1631.2 8156 1992-05-01 2024-10-11 02:15:56.000 1992-05-01 2024-10-11 02:15:56 +8157 8157 8158 815.7 1631.4 8157 1992-05-02 2024-10-11 02:15:57.000 1992-05-02 2024-10-11 02:15:57 +8158 8158 8159 815.8 1631.6000000000001 8158 1992-05-03 2024-10-11 02:15:58.000 1992-05-03 2024-10-11 02:15:58 +8159 8159 8160 815.9 1631.8000000000002 8159 1992-05-04 2024-10-11 02:15:59.000 1992-05-04 2024-10-11 02:15:59 +8161 8161 8162 816.1 1632.2 8161 1992-05-06 2024-10-11 02:16:01.000 1992-05-06 2024-10-11 02:16:01 +8162 8162 8163 816.2 1632.4 8162 1992-05-07 2024-10-11 02:16:02.000 1992-05-07 2024-10-11 02:16:02 +8163 8163 8164 816.3 1632.6000000000001 8163 1992-05-08 2024-10-11 02:16:03.000 1992-05-08 2024-10-11 02:16:03 +8164 8164 8165 816.4 1632.8000000000002 8164 1992-05-09 2024-10-11 02:16:04.000 1992-05-09 2024-10-11 02:16:04 +8166 8166 8167 816.6 1633.2 8166 1992-05-11 2024-10-11 02:16:06.000 1992-05-11 2024-10-11 02:16:06 +8167 8167 8168 816.7 1633.4 8167 1992-05-12 2024-10-11 02:16:07.000 1992-05-12 2024-10-11 02:16:07 +8168 8168 8169 816.8 1633.6000000000001 8168 1992-05-13 2024-10-11 02:16:08.000 1992-05-13 2024-10-11 02:16:08 +8169 8169 8170 816.9 1633.8000000000002 8169 1992-05-14 2024-10-11 02:16:09.000 1992-05-14 2024-10-11 02:16:09 +8171 8171 8172 817.1 1634.2 8171 1992-05-16 2024-10-11 02:16:11.000 1992-05-16 2024-10-11 02:16:11 +8172 8172 8173 817.2 1634.4 8172 1992-05-17 2024-10-11 02:16:12.000 1992-05-17 2024-10-11 02:16:12 +8173 8173 8174 817.3 1634.6000000000001 8173 1992-05-18 2024-10-11 02:16:13.000 1992-05-18 2024-10-11 02:16:13 +8174 8174 8175 817.4 1634.8000000000002 8174 1992-05-19 2024-10-11 02:16:14.000 1992-05-19 2024-10-11 02:16:14 +8176 8176 8177 817.6 1635.2 8176 1992-05-21 2024-10-11 02:16:16.000 1992-05-21 2024-10-11 02:16:16 +8177 8177 8178 817.7 1635.4 8177 1992-05-22 2024-10-11 02:16:17.000 1992-05-22 2024-10-11 02:16:17 +8178 8178 8179 817.8 1635.6000000000001 8178 1992-05-23 2024-10-11 02:16:18.000 1992-05-23 2024-10-11 02:16:18 +8179 8179 8180 817.9 1635.8000000000002 8179 1992-05-24 2024-10-11 02:16:19.000 1992-05-24 2024-10-11 02:16:19 +8181 8181 8182 818.1 1636.2 8181 1992-05-26 2024-10-11 02:16:21.000 1992-05-26 2024-10-11 02:16:21 +8182 8182 8183 818.2 1636.4 8182 1992-05-27 2024-10-11 02:16:22.000 1992-05-27 2024-10-11 02:16:22 +8183 8183 8184 818.3 1636.6000000000001 8183 1992-05-28 2024-10-11 02:16:23.000 1992-05-28 2024-10-11 02:16:23 +8184 8184 8185 818.4 1636.8000000000002 8184 1992-05-29 2024-10-11 02:16:24.000 1992-05-29 2024-10-11 02:16:24 +8186 8186 8187 818.6 1637.2 8186 1992-05-31 2024-10-11 02:16:26.000 1992-05-31 2024-10-11 02:16:26 +8187 8187 8188 818.7 1637.4 8187 1992-06-01 2024-10-11 02:16:27.000 1992-06-01 2024-10-11 02:16:27 +8188 8188 8189 818.8 1637.6000000000001 8188 1992-06-02 2024-10-11 02:16:28.000 1992-06-02 2024-10-11 02:16:28 +8189 8189 8190 818.9 1637.8000000000002 8189 1992-06-03 2024-10-11 02:16:29.000 1992-06-03 2024-10-11 02:16:29 +8191 8191 8192 819.1 1638.2 8191 1992-06-05 2024-10-11 02:16:31.000 1992-06-05 2024-10-11 02:16:31 +8192 8192 8193 819.2 1638.4 8192 1992-06-06 2024-10-11 02:16:32.000 1992-06-06 2024-10-11 02:16:32 +8193 8193 8194 819.3 1638.6000000000001 8193 1992-06-07 2024-10-11 02:16:33.000 1992-06-07 2024-10-11 02:16:33 +8194 8194 8195 819.4 1638.8000000000002 8194 1992-06-08 2024-10-11 02:16:34.000 1992-06-08 2024-10-11 02:16:34 +8196 8196 8197 819.6 1639.2 8196 1992-06-10 2024-10-11 02:16:36.000 1992-06-10 2024-10-11 02:16:36 +8197 8197 8198 819.7 1639.4 8197 1992-06-11 2024-10-11 02:16:37.000 1992-06-11 2024-10-11 02:16:37 +8198 8198 8199 819.8 1639.6000000000001 8198 1992-06-12 2024-10-11 02:16:38.000 1992-06-12 2024-10-11 02:16:38 +8199 8199 8200 819.9 1639.8000000000002 8199 1992-06-13 2024-10-11 02:16:39.000 1992-06-13 2024-10-11 02:16:39 +8201 8201 8202 820.1 1640.2 8201 1992-06-15 2024-10-11 02:16:41.000 1992-06-15 2024-10-11 02:16:41 +8202 8202 8203 820.2 1640.4 8202 1992-06-16 2024-10-11 02:16:42.000 1992-06-16 2024-10-11 02:16:42 +8203 8203 8204 820.3 1640.6000000000001 8203 1992-06-17 2024-10-11 02:16:43.000 1992-06-17 2024-10-11 02:16:43 +8204 8204 8205 820.4 1640.8000000000002 8204 1992-06-18 2024-10-11 02:16:44.000 1992-06-18 2024-10-11 02:16:44 +8206 8206 8207 820.6 1641.2 8206 1992-06-20 2024-10-11 02:16:46.000 1992-06-20 2024-10-11 02:16:46 +8207 8207 8208 820.7 1641.4 8207 1992-06-21 2024-10-11 02:16:47.000 1992-06-21 2024-10-11 02:16:47 +8208 8208 8209 820.8 1641.6000000000001 8208 1992-06-22 2024-10-11 02:16:48.000 1992-06-22 2024-10-11 02:16:48 +8209 8209 8210 820.9 1641.8000000000002 8209 1992-06-23 2024-10-11 02:16:49.000 1992-06-23 2024-10-11 02:16:49 +8211 8211 8212 821.1 1642.2 8211 1992-06-25 2024-10-11 02:16:51.000 1992-06-25 2024-10-11 02:16:51 +8212 8212 8213 821.2 1642.4 8212 1992-06-26 2024-10-11 02:16:52.000 1992-06-26 2024-10-11 02:16:52 +8213 8213 8214 821.3 1642.6000000000001 8213 1992-06-27 2024-10-11 02:16:53.000 1992-06-27 2024-10-11 02:16:53 +8214 8214 8215 821.4 1642.8000000000002 8214 1992-06-28 2024-10-11 02:16:54.000 1992-06-28 2024-10-11 02:16:54 +8216 8216 8217 821.6 1643.2 8216 1992-06-30 2024-10-11 02:16:56.000 1992-06-30 2024-10-11 02:16:56 +8217 8217 8218 821.7 1643.4 8217 1992-07-01 2024-10-11 02:16:57.000 1992-07-01 2024-10-11 02:16:57 +8218 8218 8219 821.8 1643.6000000000001 8218 1992-07-02 2024-10-11 02:16:58.000 1992-07-02 2024-10-11 02:16:58 +8219 8219 8220 821.9 1643.8000000000002 8219 1992-07-03 2024-10-11 02:16:59.000 1992-07-03 2024-10-11 02:16:59 +8221 8221 8222 822.1 1644.2 8221 1992-07-05 2024-10-11 02:17:01.000 1992-07-05 2024-10-11 02:17:01 +8222 8222 8223 822.2 1644.4 8222 1992-07-06 2024-10-11 02:17:02.000 1992-07-06 2024-10-11 02:17:02 +8223 8223 8224 822.3 1644.6000000000001 8223 1992-07-07 2024-10-11 02:17:03.000 1992-07-07 2024-10-11 02:17:03 +8224 8224 8225 822.4 1644.8000000000002 8224 1992-07-08 2024-10-11 02:17:04.000 1992-07-08 2024-10-11 02:17:04 +8226 8226 8227 822.6 1645.2 8226 1992-07-10 2024-10-11 02:17:06.000 1992-07-10 2024-10-11 02:17:06 +8227 8227 8228 822.7 1645.4 8227 1992-07-11 2024-10-11 02:17:07.000 1992-07-11 2024-10-11 02:17:07 +8228 8228 8229 822.8 1645.6000000000001 8228 1992-07-12 2024-10-11 02:17:08.000 1992-07-12 2024-10-11 02:17:08 +8229 8229 8230 822.9 1645.8000000000002 8229 1992-07-13 2024-10-11 02:17:09.000 1992-07-13 2024-10-11 02:17:09 +8231 8231 8232 823.1 1646.2 8231 1992-07-15 2024-10-11 02:17:11.000 1992-07-15 2024-10-11 02:17:11 +8232 8232 8233 823.2 1646.4 8232 1992-07-16 2024-10-11 02:17:12.000 1992-07-16 2024-10-11 02:17:12 +8233 8233 8234 823.3 1646.6000000000001 8233 1992-07-17 2024-10-11 02:17:13.000 1992-07-17 2024-10-11 02:17:13 +8234 8234 8235 823.4 1646.8000000000002 8234 1992-07-18 2024-10-11 02:17:14.000 1992-07-18 2024-10-11 02:17:14 +8236 8236 8237 823.6 1647.2 8236 1992-07-20 2024-10-11 02:17:16.000 1992-07-20 2024-10-11 02:17:16 +8237 8237 8238 823.7 1647.4 8237 1992-07-21 2024-10-11 02:17:17.000 1992-07-21 2024-10-11 02:17:17 +8238 8238 8239 823.8 1647.6000000000001 8238 1992-07-22 2024-10-11 02:17:18.000 1992-07-22 2024-10-11 02:17:18 +8239 8239 8240 823.9 1647.8000000000002 8239 1992-07-23 2024-10-11 02:17:19.000 1992-07-23 2024-10-11 02:17:19 +8241 8241 8242 824.1 1648.2 8241 1992-07-25 2024-10-11 02:17:21.000 1992-07-25 2024-10-11 02:17:21 +8242 8242 8243 824.2 1648.4 8242 1992-07-26 2024-10-11 02:17:22.000 1992-07-26 2024-10-11 02:17:22 +8243 8243 8244 824.3 1648.6000000000001 8243 1992-07-27 2024-10-11 02:17:23.000 1992-07-27 2024-10-11 02:17:23 +8244 8244 8245 824.4 1648.8000000000002 8244 1992-07-28 2024-10-11 02:17:24.000 1992-07-28 2024-10-11 02:17:24 +8246 8246 8247 824.6 1649.2 8246 1992-07-30 2024-10-11 02:17:26.000 1992-07-30 2024-10-11 02:17:26 +8247 8247 8248 824.7 1649.4 8247 1992-07-31 2024-10-11 02:17:27.000 1992-07-31 2024-10-11 02:17:27 +8248 8248 8249 824.8 1649.6000000000001 8248 1992-08-01 2024-10-11 02:17:28.000 1992-08-01 2024-10-11 02:17:28 +8249 8249 8250 824.9 1649.8000000000002 8249 1992-08-02 2024-10-11 02:17:29.000 1992-08-02 2024-10-11 02:17:29 +8251 8251 8252 825.1 1650.2 8251 1992-08-04 2024-10-11 02:17:31.000 1992-08-04 2024-10-11 02:17:31 +8252 8252 8253 825.2 1650.4 8252 1992-08-05 2024-10-11 02:17:32.000 1992-08-05 2024-10-11 02:17:32 +8253 8253 8254 825.3 1650.6000000000001 8253 1992-08-06 2024-10-11 02:17:33.000 1992-08-06 2024-10-11 02:17:33 +8254 8254 8255 825.4 1650.8000000000002 8254 1992-08-07 2024-10-11 02:17:34.000 1992-08-07 2024-10-11 02:17:34 +8256 8256 8257 825.6 1651.2 8256 1992-08-09 2024-10-11 02:17:36.000 1992-08-09 2024-10-11 02:17:36 +8257 8257 8258 825.7 1651.4 8257 1992-08-10 2024-10-11 02:17:37.000 1992-08-10 2024-10-11 02:17:37 +8258 8258 8259 825.8 1651.6000000000001 8258 1992-08-11 2024-10-11 02:17:38.000 1992-08-11 2024-10-11 02:17:38 +8259 8259 8260 825.9 1651.8000000000002 8259 1992-08-12 2024-10-11 02:17:39.000 1992-08-12 2024-10-11 02:17:39 +8261 8261 8262 826.1 1652.2 8261 1992-08-14 2024-10-11 02:17:41.000 1992-08-14 2024-10-11 02:17:41 +8262 8262 8263 826.2 1652.4 8262 1992-08-15 2024-10-11 02:17:42.000 1992-08-15 2024-10-11 02:17:42 +8263 8263 8264 826.3 1652.6000000000001 8263 1992-08-16 2024-10-11 02:17:43.000 1992-08-16 2024-10-11 02:17:43 +8264 8264 8265 826.4 1652.8000000000002 8264 1992-08-17 2024-10-11 02:17:44.000 1992-08-17 2024-10-11 02:17:44 +8266 8266 8267 826.6 1653.2 8266 1992-08-19 2024-10-11 02:17:46.000 1992-08-19 2024-10-11 02:17:46 +8267 8267 8268 826.7 1653.4 8267 1992-08-20 2024-10-11 02:17:47.000 1992-08-20 2024-10-11 02:17:47 +8268 8268 8269 826.8 1653.6000000000001 8268 1992-08-21 2024-10-11 02:17:48.000 1992-08-21 2024-10-11 02:17:48 +8269 8269 8270 826.9 1653.8000000000002 8269 1992-08-22 2024-10-11 02:17:49.000 1992-08-22 2024-10-11 02:17:49 +8271 8271 8272 827.1 1654.2 8271 1992-08-24 2024-10-11 02:17:51.000 1992-08-24 2024-10-11 02:17:51 +8272 8272 8273 827.2 1654.4 8272 1992-08-25 2024-10-11 02:17:52.000 1992-08-25 2024-10-11 02:17:52 +8273 8273 8274 827.3 1654.6000000000001 8273 1992-08-26 2024-10-11 02:17:53.000 1992-08-26 2024-10-11 02:17:53 +8274 8274 8275 827.4 1654.8000000000002 8274 1992-08-27 2024-10-11 02:17:54.000 1992-08-27 2024-10-11 02:17:54 +8276 8276 8277 827.6 1655.2 8276 1992-08-29 2024-10-11 02:17:56.000 1992-08-29 2024-10-11 02:17:56 +8277 8277 8278 827.7 1655.4 8277 1992-08-30 2024-10-11 02:17:57.000 1992-08-30 2024-10-11 02:17:57 +8278 8278 8279 827.8 1655.6000000000001 8278 1992-08-31 2024-10-11 02:17:58.000 1992-08-31 2024-10-11 02:17:58 +8279 8279 8280 827.9 1655.8000000000002 8279 1992-09-01 2024-10-11 02:17:59.000 1992-09-01 2024-10-11 02:17:59 +8281 8281 8282 828.1 1656.2 8281 1992-09-03 2024-10-11 02:18:01.000 1992-09-03 2024-10-11 02:18:01 +8282 8282 8283 828.2 1656.4 8282 1992-09-04 2024-10-11 02:18:02.000 1992-09-04 2024-10-11 02:18:02 +8283 8283 8284 828.3 1656.6000000000001 8283 1992-09-05 2024-10-11 02:18:03.000 1992-09-05 2024-10-11 02:18:03 +8284 8284 8285 828.4 1656.8000000000002 8284 1992-09-06 2024-10-11 02:18:04.000 1992-09-06 2024-10-11 02:18:04 +8286 8286 8287 828.6 1657.2 8286 1992-09-08 2024-10-11 02:18:06.000 1992-09-08 2024-10-11 02:18:06 +8287 8287 8288 828.7 1657.4 8287 1992-09-09 2024-10-11 02:18:07.000 1992-09-09 2024-10-11 02:18:07 +8288 8288 8289 828.8 1657.6000000000001 8288 1992-09-10 2024-10-11 02:18:08.000 1992-09-10 2024-10-11 02:18:08 +8289 8289 8290 828.9 1657.8000000000002 8289 1992-09-11 2024-10-11 02:18:09.000 1992-09-11 2024-10-11 02:18:09 +8291 8291 8292 829.1 1658.2 8291 1992-09-13 2024-10-11 02:18:11.000 1992-09-13 2024-10-11 02:18:11 +8292 8292 8293 829.2 1658.4 8292 1992-09-14 2024-10-11 02:18:12.000 1992-09-14 2024-10-11 02:18:12 +8293 8293 8294 829.3 1658.6000000000001 8293 1992-09-15 2024-10-11 02:18:13.000 1992-09-15 2024-10-11 02:18:13 +8294 8294 8295 829.4 1658.8000000000002 8294 1992-09-16 2024-10-11 02:18:14.000 1992-09-16 2024-10-11 02:18:14 +8296 8296 8297 829.6 1659.2 8296 1992-09-18 2024-10-11 02:18:16.000 1992-09-18 2024-10-11 02:18:16 +8297 8297 8298 829.7 1659.4 8297 1992-09-19 2024-10-11 02:18:17.000 1992-09-19 2024-10-11 02:18:17 +8298 8298 8299 829.8 1659.6000000000001 8298 1992-09-20 2024-10-11 02:18:18.000 1992-09-20 2024-10-11 02:18:18 +8299 8299 8300 829.9 1659.8000000000002 8299 1992-09-21 2024-10-11 02:18:19.000 1992-09-21 2024-10-11 02:18:19 +8301 8301 8302 830.1 1660.2 8301 1992-09-23 2024-10-11 02:18:21.000 1992-09-23 2024-10-11 02:18:21 +8302 8302 8303 830.2 1660.4 8302 1992-09-24 2024-10-11 02:18:22.000 1992-09-24 2024-10-11 02:18:22 +8303 8303 8304 830.3 1660.6000000000001 8303 1992-09-25 2024-10-11 02:18:23.000 1992-09-25 2024-10-11 02:18:23 +8304 8304 8305 830.4 1660.8000000000002 8304 1992-09-26 2024-10-11 02:18:24.000 1992-09-26 2024-10-11 02:18:24 +8306 8306 8307 830.6 1661.2 8306 1992-09-28 2024-10-11 02:18:26.000 1992-09-28 2024-10-11 02:18:26 +8307 8307 8308 830.7 1661.4 8307 1992-09-29 2024-10-11 02:18:27.000 1992-09-29 2024-10-11 02:18:27 +8308 8308 8309 830.8 1661.6000000000001 8308 1992-09-30 2024-10-11 02:18:28.000 1992-09-30 2024-10-11 02:18:28 +8309 8309 8310 830.9 1661.8000000000002 8309 1992-10-01 2024-10-11 02:18:29.000 1992-10-01 2024-10-11 02:18:29 +8311 8311 8312 831.1 1662.2 8311 1992-10-03 2024-10-11 02:18:31.000 1992-10-03 2024-10-11 02:18:31 +8312 8312 8313 831.2 1662.4 8312 1992-10-04 2024-10-11 02:18:32.000 1992-10-04 2024-10-11 02:18:32 +8313 8313 8314 831.3 1662.6000000000001 8313 1992-10-05 2024-10-11 02:18:33.000 1992-10-05 2024-10-11 02:18:33 +8314 8314 8315 831.4 1662.8000000000002 8314 1992-10-06 2024-10-11 02:18:34.000 1992-10-06 2024-10-11 02:18:34 +8316 8316 8317 831.6 1663.2 8316 1992-10-08 2024-10-11 02:18:36.000 1992-10-08 2024-10-11 02:18:36 +8317 8317 8318 831.7 1663.4 8317 1992-10-09 2024-10-11 02:18:37.000 1992-10-09 2024-10-11 02:18:37 +8318 8318 8319 831.8 1663.6000000000001 8318 1992-10-10 2024-10-11 02:18:38.000 1992-10-10 2024-10-11 02:18:38 +8319 8319 8320 831.9 1663.8000000000002 8319 1992-10-11 2024-10-11 02:18:39.000 1992-10-11 2024-10-11 02:18:39 +8321 8321 8322 832.1 1664.2 8321 1992-10-13 2024-10-11 02:18:41.000 1992-10-13 2024-10-11 02:18:41 +8322 8322 8323 832.2 1664.4 8322 1992-10-14 2024-10-11 02:18:42.000 1992-10-14 2024-10-11 02:18:42 +8323 8323 8324 832.3 1664.6000000000001 8323 1992-10-15 2024-10-11 02:18:43.000 1992-10-15 2024-10-11 02:18:43 +8324 8324 8325 832.4 1664.8000000000002 8324 1992-10-16 2024-10-11 02:18:44.000 1992-10-16 2024-10-11 02:18:44 +8326 8326 8327 832.6 1665.2 8326 1992-10-18 2024-10-11 02:18:46.000 1992-10-18 2024-10-11 02:18:46 +8327 8327 8328 832.7 1665.4 8327 1992-10-19 2024-10-11 02:18:47.000 1992-10-19 2024-10-11 02:18:47 +8328 8328 8329 832.8 1665.6000000000001 8328 1992-10-20 2024-10-11 02:18:48.000 1992-10-20 2024-10-11 02:18:48 +8329 8329 8330 832.9 1665.8000000000002 8329 1992-10-21 2024-10-11 02:18:49.000 1992-10-21 2024-10-11 02:18:49 +8331 8331 8332 833.1 1666.2 8331 1992-10-23 2024-10-11 02:18:51.000 1992-10-23 2024-10-11 02:18:51 +8332 8332 8333 833.2 1666.4 8332 1992-10-24 2024-10-11 02:18:52.000 1992-10-24 2024-10-11 02:18:52 +8333 8333 8334 833.3 1666.6000000000001 8333 1992-10-25 2024-10-11 02:18:53.000 1992-10-25 2024-10-11 02:18:53 +8334 8334 8335 833.4 1666.8000000000002 8334 1992-10-26 2024-10-11 02:18:54.000 1992-10-26 2024-10-11 02:18:54 +8336 8336 8337 833.6 1667.2 8336 1992-10-28 2024-10-11 02:18:56.000 1992-10-28 2024-10-11 02:18:56 +8337 8337 8338 833.7 1667.4 8337 1992-10-29 2024-10-11 02:18:57.000 1992-10-29 2024-10-11 02:18:57 +8338 8338 8339 833.8 1667.6000000000001 8338 1992-10-30 2024-10-11 02:18:58.000 1992-10-30 2024-10-11 02:18:58 +8339 8339 8340 833.9 1667.8000000000002 8339 1992-10-31 2024-10-11 02:18:59.000 1992-10-31 2024-10-11 02:18:59 +8341 8341 8342 834.1 1668.2 8341 1992-11-02 2024-10-11 02:19:01.000 1992-11-02 2024-10-11 02:19:01 +8342 8342 8343 834.2 1668.4 8342 1992-11-03 2024-10-11 02:19:02.000 1992-11-03 2024-10-11 02:19:02 +8343 8343 8344 834.3 1668.6000000000001 8343 1992-11-04 2024-10-11 02:19:03.000 1992-11-04 2024-10-11 02:19:03 +8344 8344 8345 834.4 1668.8000000000002 8344 1992-11-05 2024-10-11 02:19:04.000 1992-11-05 2024-10-11 02:19:04 +8346 8346 8347 834.6 1669.2 8346 1992-11-07 2024-10-11 02:19:06.000 1992-11-07 2024-10-11 02:19:06 +8347 8347 8348 834.7 1669.4 8347 1992-11-08 2024-10-11 02:19:07.000 1992-11-08 2024-10-11 02:19:07 +8348 8348 8349 834.8 1669.6000000000001 8348 1992-11-09 2024-10-11 02:19:08.000 1992-11-09 2024-10-11 02:19:08 +8349 8349 8350 834.9 1669.8000000000002 8349 1992-11-10 2024-10-11 02:19:09.000 1992-11-10 2024-10-11 02:19:09 +8351 8351 8352 835.1 1670.2 8351 1992-11-12 2024-10-11 02:19:11.000 1992-11-12 2024-10-11 02:19:11 +8352 8352 8353 835.2 1670.4 8352 1992-11-13 2024-10-11 02:19:12.000 1992-11-13 2024-10-11 02:19:12 +8353 8353 8354 835.3 1670.6000000000001 8353 1992-11-14 2024-10-11 02:19:13.000 1992-11-14 2024-10-11 02:19:13 +8354 8354 8355 835.4 1670.8000000000002 8354 1992-11-15 2024-10-11 02:19:14.000 1992-11-15 2024-10-11 02:19:14 +8356 8356 8357 835.6 1671.2 8356 1992-11-17 2024-10-11 02:19:16.000 1992-11-17 2024-10-11 02:19:16 +8357 8357 8358 835.7 1671.4 8357 1992-11-18 2024-10-11 02:19:17.000 1992-11-18 2024-10-11 02:19:17 +8358 8358 8359 835.8 1671.6000000000001 8358 1992-11-19 2024-10-11 02:19:18.000 1992-11-19 2024-10-11 02:19:18 +8359 8359 8360 835.9 1671.8000000000002 8359 1992-11-20 2024-10-11 02:19:19.000 1992-11-20 2024-10-11 02:19:19 +8361 8361 8362 836.1 1672.2 8361 1992-11-22 2024-10-11 02:19:21.000 1992-11-22 2024-10-11 02:19:21 +8362 8362 8363 836.2 1672.4 8362 1992-11-23 2024-10-11 02:19:22.000 1992-11-23 2024-10-11 02:19:22 +8363 8363 8364 836.3 1672.6000000000001 8363 1992-11-24 2024-10-11 02:19:23.000 1992-11-24 2024-10-11 02:19:23 +8364 8364 8365 836.4 1672.8000000000002 8364 1992-11-25 2024-10-11 02:19:24.000 1992-11-25 2024-10-11 02:19:24 +8366 8366 8367 836.6 1673.2 8366 1992-11-27 2024-10-11 02:19:26.000 1992-11-27 2024-10-11 02:19:26 +8367 8367 8368 836.7 1673.4 8367 1992-11-28 2024-10-11 02:19:27.000 1992-11-28 2024-10-11 02:19:27 +8368 8368 8369 836.8 1673.6000000000001 8368 1992-11-29 2024-10-11 02:19:28.000 1992-11-29 2024-10-11 02:19:28 +8369 8369 8370 836.9 1673.8000000000002 8369 1992-11-30 2024-10-11 02:19:29.000 1992-11-30 2024-10-11 02:19:29 +8371 8371 8372 837.1 1674.2 8371 1992-12-02 2024-10-11 02:19:31.000 1992-12-02 2024-10-11 02:19:31 +8372 8372 8373 837.2 1674.4 8372 1992-12-03 2024-10-11 02:19:32.000 1992-12-03 2024-10-11 02:19:32 +8373 8373 8374 837.3 1674.6000000000001 8373 1992-12-04 2024-10-11 02:19:33.000 1992-12-04 2024-10-11 02:19:33 +8374 8374 8375 837.4 1674.8000000000002 8374 1992-12-05 2024-10-11 02:19:34.000 1992-12-05 2024-10-11 02:19:34 +8376 8376 8377 837.6 1675.2 8376 1992-12-07 2024-10-11 02:19:36.000 1992-12-07 2024-10-11 02:19:36 +8377 8377 8378 837.7 1675.4 8377 1992-12-08 2024-10-11 02:19:37.000 1992-12-08 2024-10-11 02:19:37 +8378 8378 8379 837.8 1675.6000000000001 8378 1992-12-09 2024-10-11 02:19:38.000 1992-12-09 2024-10-11 02:19:38 +8379 8379 8380 837.9 1675.8000000000002 8379 1992-12-10 2024-10-11 02:19:39.000 1992-12-10 2024-10-11 02:19:39 +8381 8381 8382 838.1 1676.2 8381 1992-12-12 2024-10-11 02:19:41.000 1992-12-12 2024-10-11 02:19:41 +8382 8382 8383 838.2 1676.4 8382 1992-12-13 2024-10-11 02:19:42.000 1992-12-13 2024-10-11 02:19:42 +8383 8383 8384 838.3 1676.6000000000001 8383 1992-12-14 2024-10-11 02:19:43.000 1992-12-14 2024-10-11 02:19:43 +8384 8384 8385 838.4 1676.8000000000002 8384 1992-12-15 2024-10-11 02:19:44.000 1992-12-15 2024-10-11 02:19:44 +8386 8386 8387 838.6 1677.2 8386 1992-12-17 2024-10-11 02:19:46.000 1992-12-17 2024-10-11 02:19:46 +8387 8387 8388 838.7 1677.4 8387 1992-12-18 2024-10-11 02:19:47.000 1992-12-18 2024-10-11 02:19:47 +8388 8388 8389 838.8 1677.6000000000001 8388 1992-12-19 2024-10-11 02:19:48.000 1992-12-19 2024-10-11 02:19:48 +8389 8389 8390 838.9 1677.8000000000002 8389 1992-12-20 2024-10-11 02:19:49.000 1992-12-20 2024-10-11 02:19:49 +8391 8391 8392 839.1 1678.2 8391 1992-12-22 2024-10-11 02:19:51.000 1992-12-22 2024-10-11 02:19:51 +8392 8392 8393 839.2 1678.4 8392 1992-12-23 2024-10-11 02:19:52.000 1992-12-23 2024-10-11 02:19:52 +8393 8393 8394 839.3 1678.6000000000001 8393 1992-12-24 2024-10-11 02:19:53.000 1992-12-24 2024-10-11 02:19:53 +8394 8394 8395 839.4 1678.8000000000002 8394 1992-12-25 2024-10-11 02:19:54.000 1992-12-25 2024-10-11 02:19:54 +8396 8396 8397 839.6 1679.2 8396 1992-12-27 2024-10-11 02:19:56.000 1992-12-27 2024-10-11 02:19:56 +8397 8397 8398 839.7 1679.4 8397 1992-12-28 2024-10-11 02:19:57.000 1992-12-28 2024-10-11 02:19:57 +8398 8398 8399 839.8 1679.6000000000001 8398 1992-12-29 2024-10-11 02:19:58.000 1992-12-29 2024-10-11 02:19:58 +8399 8399 8400 839.9 1679.8000000000002 8399 1992-12-30 2024-10-11 02:19:59.000 1992-12-30 2024-10-11 02:19:59 +8401 8401 8402 840.1 1680.2 8401 1993-01-01 2024-10-11 02:20:01.000 1993-01-01 2024-10-11 02:20:01 +8402 8402 8403 840.2 1680.4 8402 1993-01-02 2024-10-11 02:20:02.000 1993-01-02 2024-10-11 02:20:02 +8403 8403 8404 840.3 1680.6000000000001 8403 1993-01-03 2024-10-11 02:20:03.000 1993-01-03 2024-10-11 02:20:03 +8404 8404 8405 840.4 1680.8000000000002 8404 1993-01-04 2024-10-11 02:20:04.000 1993-01-04 2024-10-11 02:20:04 +8406 8406 8407 840.6 1681.2 8406 1993-01-06 2024-10-11 02:20:06.000 1993-01-06 2024-10-11 02:20:06 +8407 8407 8408 840.7 1681.4 8407 1993-01-07 2024-10-11 02:20:07.000 1993-01-07 2024-10-11 02:20:07 +8408 8408 8409 840.8 1681.6000000000001 8408 1993-01-08 2024-10-11 02:20:08.000 1993-01-08 2024-10-11 02:20:08 +8409 8409 8410 840.9 1681.8000000000002 8409 1993-01-09 2024-10-11 02:20:09.000 1993-01-09 2024-10-11 02:20:09 +8411 8411 8412 841.1 1682.2 8411 1993-01-11 2024-10-11 02:20:11.000 1993-01-11 2024-10-11 02:20:11 +8412 8412 8413 841.2 1682.4 8412 1993-01-12 2024-10-11 02:20:12.000 1993-01-12 2024-10-11 02:20:12 +8413 8413 8414 841.3 1682.6000000000001 8413 1993-01-13 2024-10-11 02:20:13.000 1993-01-13 2024-10-11 02:20:13 +8414 8414 8415 841.4 1682.8000000000002 8414 1993-01-14 2024-10-11 02:20:14.000 1993-01-14 2024-10-11 02:20:14 +8416 8416 8417 841.6 1683.2 8416 1993-01-16 2024-10-11 02:20:16.000 1993-01-16 2024-10-11 02:20:16 +8417 8417 8418 841.7 1683.4 8417 1993-01-17 2024-10-11 02:20:17.000 1993-01-17 2024-10-11 02:20:17 +8418 8418 8419 841.8 1683.6000000000001 8418 1993-01-18 2024-10-11 02:20:18.000 1993-01-18 2024-10-11 02:20:18 +8419 8419 8420 841.9 1683.8000000000002 8419 1993-01-19 2024-10-11 02:20:19.000 1993-01-19 2024-10-11 02:20:19 +8421 8421 8422 842.1 1684.2 8421 1993-01-21 2024-10-11 02:20:21.000 1993-01-21 2024-10-11 02:20:21 +8422 8422 8423 842.2 1684.4 8422 1993-01-22 2024-10-11 02:20:22.000 1993-01-22 2024-10-11 02:20:22 +8423 8423 8424 842.3 1684.6000000000001 8423 1993-01-23 2024-10-11 02:20:23.000 1993-01-23 2024-10-11 02:20:23 +8424 8424 8425 842.4 1684.8000000000002 8424 1993-01-24 2024-10-11 02:20:24.000 1993-01-24 2024-10-11 02:20:24 +8426 8426 8427 842.6 1685.2 8426 1993-01-26 2024-10-11 02:20:26.000 1993-01-26 2024-10-11 02:20:26 +8427 8427 8428 842.7 1685.4 8427 1993-01-27 2024-10-11 02:20:27.000 1993-01-27 2024-10-11 02:20:27 +8428 8428 8429 842.8 1685.6000000000001 8428 1993-01-28 2024-10-11 02:20:28.000 1993-01-28 2024-10-11 02:20:28 +8429 8429 8430 842.9 1685.8000000000002 8429 1993-01-29 2024-10-11 02:20:29.000 1993-01-29 2024-10-11 02:20:29 +8431 8431 8432 843.1 1686.2 8431 1993-01-31 2024-10-11 02:20:31.000 1993-01-31 2024-10-11 02:20:31 +8432 8432 8433 843.2 1686.4 8432 1993-02-01 2024-10-11 02:20:32.000 1993-02-01 2024-10-11 02:20:32 +8433 8433 8434 843.3 1686.6000000000001 8433 1993-02-02 2024-10-11 02:20:33.000 1993-02-02 2024-10-11 02:20:33 +8434 8434 8435 843.4 1686.8000000000002 8434 1993-02-03 2024-10-11 02:20:34.000 1993-02-03 2024-10-11 02:20:34 +8436 8436 8437 843.6 1687.2 8436 1993-02-05 2024-10-11 02:20:36.000 1993-02-05 2024-10-11 02:20:36 +8437 8437 8438 843.7 1687.4 8437 1993-02-06 2024-10-11 02:20:37.000 1993-02-06 2024-10-11 02:20:37 +8438 8438 8439 843.8 1687.6000000000001 8438 1993-02-07 2024-10-11 02:20:38.000 1993-02-07 2024-10-11 02:20:38 +8439 8439 8440 843.9 1687.8000000000002 8439 1993-02-08 2024-10-11 02:20:39.000 1993-02-08 2024-10-11 02:20:39 +8441 8441 8442 844.1 1688.2 8441 1993-02-10 2024-10-11 02:20:41.000 1993-02-10 2024-10-11 02:20:41 +8442 8442 8443 844.2 1688.4 8442 1993-02-11 2024-10-11 02:20:42.000 1993-02-11 2024-10-11 02:20:42 +8443 8443 8444 844.3 1688.6000000000001 8443 1993-02-12 2024-10-11 02:20:43.000 1993-02-12 2024-10-11 02:20:43 +8444 8444 8445 844.4 1688.8000000000002 8444 1993-02-13 2024-10-11 02:20:44.000 1993-02-13 2024-10-11 02:20:44 +8446 8446 8447 844.6 1689.2 8446 1993-02-15 2024-10-11 02:20:46.000 1993-02-15 2024-10-11 02:20:46 +8447 8447 8448 844.7 1689.4 8447 1993-02-16 2024-10-11 02:20:47.000 1993-02-16 2024-10-11 02:20:47 +8448 8448 8449 844.8 1689.6000000000001 8448 1993-02-17 2024-10-11 02:20:48.000 1993-02-17 2024-10-11 02:20:48 +8449 8449 8450 844.9 1689.8000000000002 8449 1993-02-18 2024-10-11 02:20:49.000 1993-02-18 2024-10-11 02:20:49 +8451 8451 8452 845.1 1690.2 8451 1993-02-20 2024-10-11 02:20:51.000 1993-02-20 2024-10-11 02:20:51 +8452 8452 8453 845.2 1690.4 8452 1993-02-21 2024-10-11 02:20:52.000 1993-02-21 2024-10-11 02:20:52 +8453 8453 8454 845.3 1690.6000000000001 8453 1993-02-22 2024-10-11 02:20:53.000 1993-02-22 2024-10-11 02:20:53 +8454 8454 8455 845.4 1690.8000000000002 8454 1993-02-23 2024-10-11 02:20:54.000 1993-02-23 2024-10-11 02:20:54 +8456 8456 8457 845.6 1691.2 8456 1993-02-25 2024-10-11 02:20:56.000 1993-02-25 2024-10-11 02:20:56 +8457 8457 8458 845.7 1691.4 8457 1993-02-26 2024-10-11 02:20:57.000 1993-02-26 2024-10-11 02:20:57 +8458 8458 8459 845.8 1691.6000000000001 8458 1993-02-27 2024-10-11 02:20:58.000 1993-02-27 2024-10-11 02:20:58 +8459 8459 8460 845.9 1691.8000000000002 8459 1993-02-28 2024-10-11 02:20:59.000 1993-02-28 2024-10-11 02:20:59 +8461 8461 8462 846.1 1692.2 8461 1993-03-02 2024-10-11 02:21:01.000 1993-03-02 2024-10-11 02:21:01 +8462 8462 8463 846.2 1692.4 8462 1993-03-03 2024-10-11 02:21:02.000 1993-03-03 2024-10-11 02:21:02 +8463 8463 8464 846.3 1692.6000000000001 8463 1993-03-04 2024-10-11 02:21:03.000 1993-03-04 2024-10-11 02:21:03 +8464 8464 8465 846.4 1692.8000000000002 8464 1993-03-05 2024-10-11 02:21:04.000 1993-03-05 2024-10-11 02:21:04 +8466 8466 8467 846.6 1693.2 8466 1993-03-07 2024-10-11 02:21:06.000 1993-03-07 2024-10-11 02:21:06 +8467 8467 8468 846.7 1693.4 8467 1993-03-08 2024-10-11 02:21:07.000 1993-03-08 2024-10-11 02:21:07 +8468 8468 8469 846.8 1693.6000000000001 8468 1993-03-09 2024-10-11 02:21:08.000 1993-03-09 2024-10-11 02:21:08 +8469 8469 8470 846.9 1693.8000000000002 8469 1993-03-10 2024-10-11 02:21:09.000 1993-03-10 2024-10-11 02:21:09 +8471 8471 8472 847.1 1694.2 8471 1993-03-12 2024-10-11 02:21:11.000 1993-03-12 2024-10-11 02:21:11 +8472 8472 8473 847.2 1694.4 8472 1993-03-13 2024-10-11 02:21:12.000 1993-03-13 2024-10-11 02:21:12 +8473 8473 8474 847.3 1694.6000000000001 8473 1993-03-14 2024-10-11 02:21:13.000 1993-03-14 2024-10-11 02:21:13 +8474 8474 8475 847.4 1694.8000000000002 8474 1993-03-15 2024-10-11 02:21:14.000 1993-03-15 2024-10-11 02:21:14 +8476 8476 8477 847.6 1695.2 8476 1993-03-17 2024-10-11 02:21:16.000 1993-03-17 2024-10-11 02:21:16 +8477 8477 8478 847.7 1695.4 8477 1993-03-18 2024-10-11 02:21:17.000 1993-03-18 2024-10-11 02:21:17 +8478 8478 8479 847.8 1695.6000000000001 8478 1993-03-19 2024-10-11 02:21:18.000 1993-03-19 2024-10-11 02:21:18 +8479 8479 8480 847.9 1695.8000000000002 8479 1993-03-20 2024-10-11 02:21:19.000 1993-03-20 2024-10-11 02:21:19 +8481 8481 8482 848.1 1696.2 8481 1993-03-22 2024-10-11 02:21:21.000 1993-03-22 2024-10-11 02:21:21 +8482 8482 8483 848.2 1696.4 8482 1993-03-23 2024-10-11 02:21:22.000 1993-03-23 2024-10-11 02:21:22 +8483 8483 8484 848.3 1696.6000000000001 8483 1993-03-24 2024-10-11 02:21:23.000 1993-03-24 2024-10-11 02:21:23 +8484 8484 8485 848.4 1696.8000000000002 8484 1993-03-25 2024-10-11 02:21:24.000 1993-03-25 2024-10-11 02:21:24 +8486 8486 8487 848.6 1697.2 8486 1993-03-27 2024-10-11 02:21:26.000 1993-03-27 2024-10-11 02:21:26 +8487 8487 8488 848.7 1697.4 8487 1993-03-28 2024-10-11 02:21:27.000 1993-03-28 2024-10-11 02:21:27 +8488 8488 8489 848.8 1697.6000000000001 8488 1993-03-29 2024-10-11 02:21:28.000 1993-03-29 2024-10-11 02:21:28 +8489 8489 8490 848.9 1697.8000000000002 8489 1993-03-30 2024-10-11 02:21:29.000 1993-03-30 2024-10-11 02:21:29 +8491 8491 8492 849.1 1698.2 8491 1993-04-01 2024-10-11 02:21:31.000 1993-04-01 2024-10-11 02:21:31 +8492 8492 8493 849.2 1698.4 8492 1993-04-02 2024-10-11 02:21:32.000 1993-04-02 2024-10-11 02:21:32 +8493 8493 8494 849.3 1698.6000000000001 8493 1993-04-03 2024-10-11 02:21:33.000 1993-04-03 2024-10-11 02:21:33 +8494 8494 8495 849.4 1698.8000000000002 8494 1993-04-04 2024-10-11 02:21:34.000 1993-04-04 2024-10-11 02:21:34 +8496 8496 8497 849.6 1699.2 8496 1993-04-06 2024-10-11 02:21:36.000 1993-04-06 2024-10-11 02:21:36 +8497 8497 8498 849.7 1699.4 8497 1993-04-07 2024-10-11 02:21:37.000 1993-04-07 2024-10-11 02:21:37 +8498 8498 8499 849.8 1699.6000000000001 8498 1993-04-08 2024-10-11 02:21:38.000 1993-04-08 2024-10-11 02:21:38 +8499 8499 8500 849.9 1699.8000000000002 8499 1993-04-09 2024-10-11 02:21:39.000 1993-04-09 2024-10-11 02:21:39 +8501 8501 8502 850.1 1700.2 8501 1993-04-11 2024-10-11 02:21:41.000 1993-04-11 2024-10-11 02:21:41 +8502 8502 8503 850.2 1700.4 8502 1993-04-12 2024-10-11 02:21:42.000 1993-04-12 2024-10-11 02:21:42 +8503 8503 8504 850.3 1700.6000000000001 8503 1993-04-13 2024-10-11 02:21:43.000 1993-04-13 2024-10-11 02:21:43 +8504 8504 8505 850.4 1700.8000000000002 8504 1993-04-14 2024-10-11 02:21:44.000 1993-04-14 2024-10-11 02:21:44 +8506 8506 8507 850.6 1701.2 8506 1993-04-16 2024-10-11 02:21:46.000 1993-04-16 2024-10-11 02:21:46 +8507 8507 8508 850.7 1701.4 8507 1993-04-17 2024-10-11 02:21:47.000 1993-04-17 2024-10-11 02:21:47 +8508 8508 8509 850.8 1701.6000000000001 8508 1993-04-18 2024-10-11 02:21:48.000 1993-04-18 2024-10-11 02:21:48 +8509 8509 8510 850.9 1701.8000000000002 8509 1993-04-19 2024-10-11 02:21:49.000 1993-04-19 2024-10-11 02:21:49 +8511 8511 8512 851.1 1702.2 8511 1993-04-21 2024-10-11 02:21:51.000 1993-04-21 2024-10-11 02:21:51 +8512 8512 8513 851.2 1702.4 8512 1993-04-22 2024-10-11 02:21:52.000 1993-04-22 2024-10-11 02:21:52 +8513 8513 8514 851.3 1702.6000000000001 8513 1993-04-23 2024-10-11 02:21:53.000 1993-04-23 2024-10-11 02:21:53 +8514 8514 8515 851.4 1702.8000000000002 8514 1993-04-24 2024-10-11 02:21:54.000 1993-04-24 2024-10-11 02:21:54 +8516 8516 8517 851.6 1703.2 8516 1993-04-26 2024-10-11 02:21:56.000 1993-04-26 2024-10-11 02:21:56 +8517 8517 8518 851.7 1703.4 8517 1993-04-27 2024-10-11 02:21:57.000 1993-04-27 2024-10-11 02:21:57 +8518 8518 8519 851.8 1703.6000000000001 8518 1993-04-28 2024-10-11 02:21:58.000 1993-04-28 2024-10-11 02:21:58 +8519 8519 8520 851.9 1703.8000000000002 8519 1993-04-29 2024-10-11 02:21:59.000 1993-04-29 2024-10-11 02:21:59 +8521 8521 8522 852.1 1704.2 8521 1993-05-01 2024-10-11 02:22:01.000 1993-05-01 2024-10-11 02:22:01 +8522 8522 8523 852.2 1704.4 8522 1993-05-02 2024-10-11 02:22:02.000 1993-05-02 2024-10-11 02:22:02 +8523 8523 8524 852.3 1704.6000000000001 8523 1993-05-03 2024-10-11 02:22:03.000 1993-05-03 2024-10-11 02:22:03 +8524 8524 8525 852.4 1704.8000000000002 8524 1993-05-04 2024-10-11 02:22:04.000 1993-05-04 2024-10-11 02:22:04 +8526 8526 8527 852.6 1705.2 8526 1993-05-06 2024-10-11 02:22:06.000 1993-05-06 2024-10-11 02:22:06 +8527 8527 8528 852.7 1705.4 8527 1993-05-07 2024-10-11 02:22:07.000 1993-05-07 2024-10-11 02:22:07 +8528 8528 8529 852.8 1705.6000000000001 8528 1993-05-08 2024-10-11 02:22:08.000 1993-05-08 2024-10-11 02:22:08 +8529 8529 8530 852.9 1705.8000000000002 8529 1993-05-09 2024-10-11 02:22:09.000 1993-05-09 2024-10-11 02:22:09 +8531 8531 8532 853.1 1706.2 8531 1993-05-11 2024-10-11 02:22:11.000 1993-05-11 2024-10-11 02:22:11 +8532 8532 8533 853.2 1706.4 8532 1993-05-12 2024-10-11 02:22:12.000 1993-05-12 2024-10-11 02:22:12 +8533 8533 8534 853.3 1706.6000000000001 8533 1993-05-13 2024-10-11 02:22:13.000 1993-05-13 2024-10-11 02:22:13 +8534 8534 8535 853.4 1706.8000000000002 8534 1993-05-14 2024-10-11 02:22:14.000 1993-05-14 2024-10-11 02:22:14 +8536 8536 8537 853.6 1707.2 8536 1993-05-16 2024-10-11 02:22:16.000 1993-05-16 2024-10-11 02:22:16 +8537 8537 8538 853.7 1707.4 8537 1993-05-17 2024-10-11 02:22:17.000 1993-05-17 2024-10-11 02:22:17 +8538 8538 8539 853.8 1707.6000000000001 8538 1993-05-18 2024-10-11 02:22:18.000 1993-05-18 2024-10-11 02:22:18 +8539 8539 8540 853.9 1707.8000000000002 8539 1993-05-19 2024-10-11 02:22:19.000 1993-05-19 2024-10-11 02:22:19 +8541 8541 8542 854.1 1708.2 8541 1993-05-21 2024-10-11 02:22:21.000 1993-05-21 2024-10-11 02:22:21 +8542 8542 8543 854.2 1708.4 8542 1993-05-22 2024-10-11 02:22:22.000 1993-05-22 2024-10-11 02:22:22 +8543 8543 8544 854.3 1708.6000000000001 8543 1993-05-23 2024-10-11 02:22:23.000 1993-05-23 2024-10-11 02:22:23 +8544 8544 8545 854.4 1708.8000000000002 8544 1993-05-24 2024-10-11 02:22:24.000 1993-05-24 2024-10-11 02:22:24 +8546 8546 8547 854.6 1709.2 8546 1993-05-26 2024-10-11 02:22:26.000 1993-05-26 2024-10-11 02:22:26 +8547 8547 8548 854.7 1709.4 8547 1993-05-27 2024-10-11 02:22:27.000 1993-05-27 2024-10-11 02:22:27 +8548 8548 8549 854.8 1709.6000000000001 8548 1993-05-28 2024-10-11 02:22:28.000 1993-05-28 2024-10-11 02:22:28 +8549 8549 8550 854.9 1709.8000000000002 8549 1993-05-29 2024-10-11 02:22:29.000 1993-05-29 2024-10-11 02:22:29 +8551 8551 8552 855.1 1710.2 8551 1993-05-31 2024-10-11 02:22:31.000 1993-05-31 2024-10-11 02:22:31 +8552 8552 8553 855.2 1710.4 8552 1993-06-01 2024-10-11 02:22:32.000 1993-06-01 2024-10-11 02:22:32 +8553 8553 8554 855.3 1710.6000000000001 8553 1993-06-02 2024-10-11 02:22:33.000 1993-06-02 2024-10-11 02:22:33 +8554 8554 8555 855.4 1710.8000000000002 8554 1993-06-03 2024-10-11 02:22:34.000 1993-06-03 2024-10-11 02:22:34 +8556 8556 8557 855.6 1711.2 8556 1993-06-05 2024-10-11 02:22:36.000 1993-06-05 2024-10-11 02:22:36 +8557 8557 8558 855.7 1711.4 8557 1993-06-06 2024-10-11 02:22:37.000 1993-06-06 2024-10-11 02:22:37 +8558 8558 8559 855.8 1711.6000000000001 8558 1993-06-07 2024-10-11 02:22:38.000 1993-06-07 2024-10-11 02:22:38 +8559 8559 8560 855.9 1711.8000000000002 8559 1993-06-08 2024-10-11 02:22:39.000 1993-06-08 2024-10-11 02:22:39 +8561 8561 8562 856.1 1712.2 8561 1993-06-10 2024-10-11 02:22:41.000 1993-06-10 2024-10-11 02:22:41 +8562 8562 8563 856.2 1712.4 8562 1993-06-11 2024-10-11 02:22:42.000 1993-06-11 2024-10-11 02:22:42 +8563 8563 8564 856.3 1712.6000000000001 8563 1993-06-12 2024-10-11 02:22:43.000 1993-06-12 2024-10-11 02:22:43 +8564 8564 8565 856.4 1712.8000000000002 8564 1993-06-13 2024-10-11 02:22:44.000 1993-06-13 2024-10-11 02:22:44 +8566 8566 8567 856.6 1713.2 8566 1993-06-15 2024-10-11 02:22:46.000 1993-06-15 2024-10-11 02:22:46 +8567 8567 8568 856.7 1713.4 8567 1993-06-16 2024-10-11 02:22:47.000 1993-06-16 2024-10-11 02:22:47 +8568 8568 8569 856.8 1713.6000000000001 8568 1993-06-17 2024-10-11 02:22:48.000 1993-06-17 2024-10-11 02:22:48 +8569 8569 8570 856.9 1713.8000000000002 8569 1993-06-18 2024-10-11 02:22:49.000 1993-06-18 2024-10-11 02:22:49 +8571 8571 8572 857.1 1714.2 8571 1993-06-20 2024-10-11 02:22:51.000 1993-06-20 2024-10-11 02:22:51 +8572 8572 8573 857.2 1714.4 8572 1993-06-21 2024-10-11 02:22:52.000 1993-06-21 2024-10-11 02:22:52 +8573 8573 8574 857.3 1714.6000000000001 8573 1993-06-22 2024-10-11 02:22:53.000 1993-06-22 2024-10-11 02:22:53 +8574 8574 8575 857.4 1714.8000000000002 8574 1993-06-23 2024-10-11 02:22:54.000 1993-06-23 2024-10-11 02:22:54 +8576 8576 8577 857.6 1715.2 8576 1993-06-25 2024-10-11 02:22:56.000 1993-06-25 2024-10-11 02:22:56 +8577 8577 8578 857.7 1715.4 8577 1993-06-26 2024-10-11 02:22:57.000 1993-06-26 2024-10-11 02:22:57 +8578 8578 8579 857.8 1715.6000000000001 8578 1993-06-27 2024-10-11 02:22:58.000 1993-06-27 2024-10-11 02:22:58 +8579 8579 8580 857.9 1715.8000000000002 8579 1993-06-28 2024-10-11 02:22:59.000 1993-06-28 2024-10-11 02:22:59 +8581 8581 8582 858.1 1716.2 8581 1993-06-30 2024-10-11 02:23:01.000 1993-06-30 2024-10-11 02:23:01 +8582 8582 8583 858.2 1716.4 8582 1993-07-01 2024-10-11 02:23:02.000 1993-07-01 2024-10-11 02:23:02 +8583 8583 8584 858.3 1716.6000000000001 8583 1993-07-02 2024-10-11 02:23:03.000 1993-07-02 2024-10-11 02:23:03 +8584 8584 8585 858.4 1716.8000000000002 8584 1993-07-03 2024-10-11 02:23:04.000 1993-07-03 2024-10-11 02:23:04 +8586 8586 8587 858.6 1717.2 8586 1993-07-05 2024-10-11 02:23:06.000 1993-07-05 2024-10-11 02:23:06 +8587 8587 8588 858.7 1717.4 8587 1993-07-06 2024-10-11 02:23:07.000 1993-07-06 2024-10-11 02:23:07 +8588 8588 8589 858.8 1717.6000000000001 8588 1993-07-07 2024-10-11 02:23:08.000 1993-07-07 2024-10-11 02:23:08 +8589 8589 8590 858.9 1717.8000000000002 8589 1993-07-08 2024-10-11 02:23:09.000 1993-07-08 2024-10-11 02:23:09 +8591 8591 8592 859.1 1718.2 8591 1993-07-10 2024-10-11 02:23:11.000 1993-07-10 2024-10-11 02:23:11 +8592 8592 8593 859.2 1718.4 8592 1993-07-11 2024-10-11 02:23:12.000 1993-07-11 2024-10-11 02:23:12 +8593 8593 8594 859.3 1718.6000000000001 8593 1993-07-12 2024-10-11 02:23:13.000 1993-07-12 2024-10-11 02:23:13 +8594 8594 8595 859.4 1718.8000000000002 8594 1993-07-13 2024-10-11 02:23:14.000 1993-07-13 2024-10-11 02:23:14 +8596 8596 8597 859.6 1719.2 8596 1993-07-15 2024-10-11 02:23:16.000 1993-07-15 2024-10-11 02:23:16 +8597 8597 8598 859.7 1719.4 8597 1993-07-16 2024-10-11 02:23:17.000 1993-07-16 2024-10-11 02:23:17 +8598 8598 8599 859.8 1719.6000000000001 8598 1993-07-17 2024-10-11 02:23:18.000 1993-07-17 2024-10-11 02:23:18 +8599 8599 8600 859.9 1719.8000000000002 8599 1993-07-18 2024-10-11 02:23:19.000 1993-07-18 2024-10-11 02:23:19 +8601 8601 8602 860.1 1720.2 8601 1993-07-20 2024-10-11 02:23:21.000 1993-07-20 2024-10-11 02:23:21 +8602 8602 8603 860.2 1720.4 8602 1993-07-21 2024-10-11 02:23:22.000 1993-07-21 2024-10-11 02:23:22 +8603 8603 8604 860.3 1720.6000000000001 8603 1993-07-22 2024-10-11 02:23:23.000 1993-07-22 2024-10-11 02:23:23 +8604 8604 8605 860.4 1720.8000000000002 8604 1993-07-23 2024-10-11 02:23:24.000 1993-07-23 2024-10-11 02:23:24 +8606 8606 8607 860.6 1721.2 8606 1993-07-25 2024-10-11 02:23:26.000 1993-07-25 2024-10-11 02:23:26 +8607 8607 8608 860.7 1721.4 8607 1993-07-26 2024-10-11 02:23:27.000 1993-07-26 2024-10-11 02:23:27 +8608 8608 8609 860.8 1721.6000000000001 8608 1993-07-27 2024-10-11 02:23:28.000 1993-07-27 2024-10-11 02:23:28 +8609 8609 8610 860.9 1721.8000000000002 8609 1993-07-28 2024-10-11 02:23:29.000 1993-07-28 2024-10-11 02:23:29 +8611 8611 8612 861.1 1722.2 8611 1993-07-30 2024-10-11 02:23:31.000 1993-07-30 2024-10-11 02:23:31 +8612 8612 8613 861.2 1722.4 8612 1993-07-31 2024-10-11 02:23:32.000 1993-07-31 2024-10-11 02:23:32 +8613 8613 8614 861.3 1722.6000000000001 8613 1993-08-01 2024-10-11 02:23:33.000 1993-08-01 2024-10-11 02:23:33 +8614 8614 8615 861.4 1722.8000000000002 8614 1993-08-02 2024-10-11 02:23:34.000 1993-08-02 2024-10-11 02:23:34 +8616 8616 8617 861.6 1723.2 8616 1993-08-04 2024-10-11 02:23:36.000 1993-08-04 2024-10-11 02:23:36 +8617 8617 8618 861.7 1723.4 8617 1993-08-05 2024-10-11 02:23:37.000 1993-08-05 2024-10-11 02:23:37 +8618 8618 8619 861.8 1723.6000000000001 8618 1993-08-06 2024-10-11 02:23:38.000 1993-08-06 2024-10-11 02:23:38 +8619 8619 8620 861.9 1723.8000000000002 8619 1993-08-07 2024-10-11 02:23:39.000 1993-08-07 2024-10-11 02:23:39 +8621 8621 8622 862.1 1724.2 8621 1993-08-09 2024-10-11 02:23:41.000 1993-08-09 2024-10-11 02:23:41 +8622 8622 8623 862.2 1724.4 8622 1993-08-10 2024-10-11 02:23:42.000 1993-08-10 2024-10-11 02:23:42 +8623 8623 8624 862.3 1724.6000000000001 8623 1993-08-11 2024-10-11 02:23:43.000 1993-08-11 2024-10-11 02:23:43 +8624 8624 8625 862.4 1724.8000000000002 8624 1993-08-12 2024-10-11 02:23:44.000 1993-08-12 2024-10-11 02:23:44 +8626 8626 8627 862.6 1725.2 8626 1993-08-14 2024-10-11 02:23:46.000 1993-08-14 2024-10-11 02:23:46 +8627 8627 8628 862.7 1725.4 8627 1993-08-15 2024-10-11 02:23:47.000 1993-08-15 2024-10-11 02:23:47 +8628 8628 8629 862.8 1725.6000000000001 8628 1993-08-16 2024-10-11 02:23:48.000 1993-08-16 2024-10-11 02:23:48 +8629 8629 8630 862.9 1725.8000000000002 8629 1993-08-17 2024-10-11 02:23:49.000 1993-08-17 2024-10-11 02:23:49 +8631 8631 8632 863.1 1726.2 8631 1993-08-19 2024-10-11 02:23:51.000 1993-08-19 2024-10-11 02:23:51 +8632 8632 8633 863.2 1726.4 8632 1993-08-20 2024-10-11 02:23:52.000 1993-08-20 2024-10-11 02:23:52 +8633 8633 8634 863.3 1726.6000000000001 8633 1993-08-21 2024-10-11 02:23:53.000 1993-08-21 2024-10-11 02:23:53 +8634 8634 8635 863.4 1726.8000000000002 8634 1993-08-22 2024-10-11 02:23:54.000 1993-08-22 2024-10-11 02:23:54 +8636 8636 8637 863.6 1727.2 8636 1993-08-24 2024-10-11 02:23:56.000 1993-08-24 2024-10-11 02:23:56 +8637 8637 8638 863.7 1727.4 8637 1993-08-25 2024-10-11 02:23:57.000 1993-08-25 2024-10-11 02:23:57 +8638 8638 8639 863.8 1727.6000000000001 8638 1993-08-26 2024-10-11 02:23:58.000 1993-08-26 2024-10-11 02:23:58 +8639 8639 8640 863.9 1727.8000000000002 8639 1993-08-27 2024-10-11 02:23:59.000 1993-08-27 2024-10-11 02:23:59 +8641 8641 8642 864.1 1728.2 8641 1993-08-29 2024-10-11 02:24:01.000 1993-08-29 2024-10-11 02:24:01 +8642 8642 8643 864.2 1728.4 8642 1993-08-30 2024-10-11 02:24:02.000 1993-08-30 2024-10-11 02:24:02 +8643 8643 8644 864.3 1728.6000000000001 8643 1993-08-31 2024-10-11 02:24:03.000 1993-08-31 2024-10-11 02:24:03 +8644 8644 8645 864.4 1728.8000000000002 8644 1993-09-01 2024-10-11 02:24:04.000 1993-09-01 2024-10-11 02:24:04 +8646 8646 8647 864.6 1729.2 8646 1993-09-03 2024-10-11 02:24:06.000 1993-09-03 2024-10-11 02:24:06 +8647 8647 8648 864.7 1729.4 8647 1993-09-04 2024-10-11 02:24:07.000 1993-09-04 2024-10-11 02:24:07 +8648 8648 8649 864.8 1729.6000000000001 8648 1993-09-05 2024-10-11 02:24:08.000 1993-09-05 2024-10-11 02:24:08 +8649 8649 8650 864.9 1729.8000000000002 8649 1993-09-06 2024-10-11 02:24:09.000 1993-09-06 2024-10-11 02:24:09 +8651 8651 8652 865.1 1730.2 8651 1993-09-08 2024-10-11 02:24:11.000 1993-09-08 2024-10-11 02:24:11 +8652 8652 8653 865.2 1730.4 8652 1993-09-09 2024-10-11 02:24:12.000 1993-09-09 2024-10-11 02:24:12 +8653 8653 8654 865.3 1730.6000000000001 8653 1993-09-10 2024-10-11 02:24:13.000 1993-09-10 2024-10-11 02:24:13 +8654 8654 8655 865.4 1730.8000000000002 8654 1993-09-11 2024-10-11 02:24:14.000 1993-09-11 2024-10-11 02:24:14 +8656 8656 8657 865.6 1731.2 8656 1993-09-13 2024-10-11 02:24:16.000 1993-09-13 2024-10-11 02:24:16 +8657 8657 8658 865.7 1731.4 8657 1993-09-14 2024-10-11 02:24:17.000 1993-09-14 2024-10-11 02:24:17 +8658 8658 8659 865.8 1731.6000000000001 8658 1993-09-15 2024-10-11 02:24:18.000 1993-09-15 2024-10-11 02:24:18 +8659 8659 8660 865.9 1731.8000000000002 8659 1993-09-16 2024-10-11 02:24:19.000 1993-09-16 2024-10-11 02:24:19 +8661 8661 8662 866.1 1732.2 8661 1993-09-18 2024-10-11 02:24:21.000 1993-09-18 2024-10-11 02:24:21 +8662 8662 8663 866.2 1732.4 8662 1993-09-19 2024-10-11 02:24:22.000 1993-09-19 2024-10-11 02:24:22 +8663 8663 8664 866.3 1732.6000000000001 8663 1993-09-20 2024-10-11 02:24:23.000 1993-09-20 2024-10-11 02:24:23 +8664 8664 8665 866.4 1732.8000000000002 8664 1993-09-21 2024-10-11 02:24:24.000 1993-09-21 2024-10-11 02:24:24 +8666 8666 8667 866.6 1733.2 8666 1993-09-23 2024-10-11 02:24:26.000 1993-09-23 2024-10-11 02:24:26 +8667 8667 8668 866.7 1733.4 8667 1993-09-24 2024-10-11 02:24:27.000 1993-09-24 2024-10-11 02:24:27 +8668 8668 8669 866.8 1733.6000000000001 8668 1993-09-25 2024-10-11 02:24:28.000 1993-09-25 2024-10-11 02:24:28 +8669 8669 8670 866.9 1733.8000000000002 8669 1993-09-26 2024-10-11 02:24:29.000 1993-09-26 2024-10-11 02:24:29 +8671 8671 8672 867.1 1734.2 8671 1993-09-28 2024-10-11 02:24:31.000 1993-09-28 2024-10-11 02:24:31 +8672 8672 8673 867.2 1734.4 8672 1993-09-29 2024-10-11 02:24:32.000 1993-09-29 2024-10-11 02:24:32 +8673 8673 8674 867.3 1734.6000000000001 8673 1993-09-30 2024-10-11 02:24:33.000 1993-09-30 2024-10-11 02:24:33 +8674 8674 8675 867.4 1734.8000000000002 8674 1993-10-01 2024-10-11 02:24:34.000 1993-10-01 2024-10-11 02:24:34 +8676 8676 8677 867.6 1735.2 8676 1993-10-03 2024-10-11 02:24:36.000 1993-10-03 2024-10-11 02:24:36 +8677 8677 8678 867.7 1735.4 8677 1993-10-04 2024-10-11 02:24:37.000 1993-10-04 2024-10-11 02:24:37 +8678 8678 8679 867.8 1735.6000000000001 8678 1993-10-05 2024-10-11 02:24:38.000 1993-10-05 2024-10-11 02:24:38 +8679 8679 8680 867.9 1735.8000000000002 8679 1993-10-06 2024-10-11 02:24:39.000 1993-10-06 2024-10-11 02:24:39 +8681 8681 8682 868.1 1736.2 8681 1993-10-08 2024-10-11 02:24:41.000 1993-10-08 2024-10-11 02:24:41 +8682 8682 8683 868.2 1736.4 8682 1993-10-09 2024-10-11 02:24:42.000 1993-10-09 2024-10-11 02:24:42 +8683 8683 8684 868.3 1736.6000000000001 8683 1993-10-10 2024-10-11 02:24:43.000 1993-10-10 2024-10-11 02:24:43 +8684 8684 8685 868.4 1736.8000000000002 8684 1993-10-11 2024-10-11 02:24:44.000 1993-10-11 2024-10-11 02:24:44 +8686 8686 8687 868.6 1737.2 8686 1993-10-13 2024-10-11 02:24:46.000 1993-10-13 2024-10-11 02:24:46 +8687 8687 8688 868.7 1737.4 8687 1993-10-14 2024-10-11 02:24:47.000 1993-10-14 2024-10-11 02:24:47 +8688 8688 8689 868.8 1737.6000000000001 8688 1993-10-15 2024-10-11 02:24:48.000 1993-10-15 2024-10-11 02:24:48 +8689 8689 8690 868.9 1737.8000000000002 8689 1993-10-16 2024-10-11 02:24:49.000 1993-10-16 2024-10-11 02:24:49 +8691 8691 8692 869.1 1738.2 8691 1993-10-18 2024-10-11 02:24:51.000 1993-10-18 2024-10-11 02:24:51 +8692 8692 8693 869.2 1738.4 8692 1993-10-19 2024-10-11 02:24:52.000 1993-10-19 2024-10-11 02:24:52 +8693 8693 8694 869.3 1738.6000000000001 8693 1993-10-20 2024-10-11 02:24:53.000 1993-10-20 2024-10-11 02:24:53 +8694 8694 8695 869.4 1738.8000000000002 8694 1993-10-21 2024-10-11 02:24:54.000 1993-10-21 2024-10-11 02:24:54 +8696 8696 8697 869.6 1739.2 8696 1993-10-23 2024-10-11 02:24:56.000 1993-10-23 2024-10-11 02:24:56 +8697 8697 8698 869.7 1739.4 8697 1993-10-24 2024-10-11 02:24:57.000 1993-10-24 2024-10-11 02:24:57 +8698 8698 8699 869.8 1739.6000000000001 8698 1993-10-25 2024-10-11 02:24:58.000 1993-10-25 2024-10-11 02:24:58 +8699 8699 8700 869.9 1739.8000000000002 8699 1993-10-26 2024-10-11 02:24:59.000 1993-10-26 2024-10-11 02:24:59 +8701 8701 8702 870.1 1740.2 8701 1993-10-28 2024-10-11 02:25:01.000 1993-10-28 2024-10-11 02:25:01 +8702 8702 8703 870.2 1740.4 8702 1993-10-29 2024-10-11 02:25:02.000 1993-10-29 2024-10-11 02:25:02 +8703 8703 8704 870.3 1740.6000000000001 8703 1993-10-30 2024-10-11 02:25:03.000 1993-10-30 2024-10-11 02:25:03 +8704 8704 8705 870.4 1740.8000000000002 8704 1993-10-31 2024-10-11 02:25:04.000 1993-10-31 2024-10-11 02:25:04 +8706 8706 8707 870.6 1741.2 8706 1993-11-02 2024-10-11 02:25:06.000 1993-11-02 2024-10-11 02:25:06 +8707 8707 8708 870.7 1741.4 8707 1993-11-03 2024-10-11 02:25:07.000 1993-11-03 2024-10-11 02:25:07 +8708 8708 8709 870.8 1741.6000000000001 8708 1993-11-04 2024-10-11 02:25:08.000 1993-11-04 2024-10-11 02:25:08 +8709 8709 8710 870.9 1741.8000000000002 8709 1993-11-05 2024-10-11 02:25:09.000 1993-11-05 2024-10-11 02:25:09 +8711 8711 8712 871.1 1742.2 8711 1993-11-07 2024-10-11 02:25:11.000 1993-11-07 2024-10-11 02:25:11 +8712 8712 8713 871.2 1742.4 8712 1993-11-08 2024-10-11 02:25:12.000 1993-11-08 2024-10-11 02:25:12 +8713 8713 8714 871.3 1742.6000000000001 8713 1993-11-09 2024-10-11 02:25:13.000 1993-11-09 2024-10-11 02:25:13 +8714 8714 8715 871.4 1742.8000000000002 8714 1993-11-10 2024-10-11 02:25:14.000 1993-11-10 2024-10-11 02:25:14 +8716 8716 8717 871.6 1743.2 8716 1993-11-12 2024-10-11 02:25:16.000 1993-11-12 2024-10-11 02:25:16 +8717 8717 8718 871.7 1743.4 8717 1993-11-13 2024-10-11 02:25:17.000 1993-11-13 2024-10-11 02:25:17 +8718 8718 8719 871.8 1743.6000000000001 8718 1993-11-14 2024-10-11 02:25:18.000 1993-11-14 2024-10-11 02:25:18 +8719 8719 8720 871.9 1743.8000000000002 8719 1993-11-15 2024-10-11 02:25:19.000 1993-11-15 2024-10-11 02:25:19 +8721 8721 8722 872.1 1744.2 8721 1993-11-17 2024-10-11 02:25:21.000 1993-11-17 2024-10-11 02:25:21 +8722 8722 8723 872.2 1744.4 8722 1993-11-18 2024-10-11 02:25:22.000 1993-11-18 2024-10-11 02:25:22 +8723 8723 8724 872.3 1744.6000000000001 8723 1993-11-19 2024-10-11 02:25:23.000 1993-11-19 2024-10-11 02:25:23 +8724 8724 8725 872.4 1744.8000000000002 8724 1993-11-20 2024-10-11 02:25:24.000 1993-11-20 2024-10-11 02:25:24 +8726 8726 8727 872.6 1745.2 8726 1993-11-22 2024-10-11 02:25:26.000 1993-11-22 2024-10-11 02:25:26 +8727 8727 8728 872.7 1745.4 8727 1993-11-23 2024-10-11 02:25:27.000 1993-11-23 2024-10-11 02:25:27 +8728 8728 8729 872.8 1745.6000000000001 8728 1993-11-24 2024-10-11 02:25:28.000 1993-11-24 2024-10-11 02:25:28 +8729 8729 8730 872.9 1745.8000000000002 8729 1993-11-25 2024-10-11 02:25:29.000 1993-11-25 2024-10-11 02:25:29 +8731 8731 8732 873.1 1746.2 8731 1993-11-27 2024-10-11 02:25:31.000 1993-11-27 2024-10-11 02:25:31 +8732 8732 8733 873.2 1746.4 8732 1993-11-28 2024-10-11 02:25:32.000 1993-11-28 2024-10-11 02:25:32 +8733 8733 8734 873.3 1746.6000000000001 8733 1993-11-29 2024-10-11 02:25:33.000 1993-11-29 2024-10-11 02:25:33 +8734 8734 8735 873.4 1746.8000000000002 8734 1993-11-30 2024-10-11 02:25:34.000 1993-11-30 2024-10-11 02:25:34 +8736 8736 8737 873.6 1747.2 8736 1993-12-02 2024-10-11 02:25:36.000 1993-12-02 2024-10-11 02:25:36 +8737 8737 8738 873.7 1747.4 8737 1993-12-03 2024-10-11 02:25:37.000 1993-12-03 2024-10-11 02:25:37 +8738 8738 8739 873.8 1747.6000000000001 8738 1993-12-04 2024-10-11 02:25:38.000 1993-12-04 2024-10-11 02:25:38 +8739 8739 8740 873.9 1747.8000000000002 8739 1993-12-05 2024-10-11 02:25:39.000 1993-12-05 2024-10-11 02:25:39 +8741 8741 8742 874.1 1748.2 8741 1993-12-07 2024-10-11 02:25:41.000 1993-12-07 2024-10-11 02:25:41 +8742 8742 8743 874.2 1748.4 8742 1993-12-08 2024-10-11 02:25:42.000 1993-12-08 2024-10-11 02:25:42 +8743 8743 8744 874.3 1748.6000000000001 8743 1993-12-09 2024-10-11 02:25:43.000 1993-12-09 2024-10-11 02:25:43 +8744 8744 8745 874.4 1748.8000000000002 8744 1993-12-10 2024-10-11 02:25:44.000 1993-12-10 2024-10-11 02:25:44 +8746 8746 8747 874.6 1749.2 8746 1993-12-12 2024-10-11 02:25:46.000 1993-12-12 2024-10-11 02:25:46 +8747 8747 8748 874.7 1749.4 8747 1993-12-13 2024-10-11 02:25:47.000 1993-12-13 2024-10-11 02:25:47 +8748 8748 8749 874.8 1749.6000000000001 8748 1993-12-14 2024-10-11 02:25:48.000 1993-12-14 2024-10-11 02:25:48 +8749 8749 8750 874.9 1749.8000000000002 8749 1993-12-15 2024-10-11 02:25:49.000 1993-12-15 2024-10-11 02:25:49 +8751 8751 8752 875.1 1750.2 8751 1993-12-17 2024-10-11 02:25:51.000 1993-12-17 2024-10-11 02:25:51 +8752 8752 8753 875.2 1750.4 8752 1993-12-18 2024-10-11 02:25:52.000 1993-12-18 2024-10-11 02:25:52 +8753 8753 8754 875.3 1750.6000000000001 8753 1993-12-19 2024-10-11 02:25:53.000 1993-12-19 2024-10-11 02:25:53 +8754 8754 8755 875.4 1750.8000000000002 8754 1993-12-20 2024-10-11 02:25:54.000 1993-12-20 2024-10-11 02:25:54 +8756 8756 8757 875.6 1751.2 8756 1993-12-22 2024-10-11 02:25:56.000 1993-12-22 2024-10-11 02:25:56 +8757 8757 8758 875.7 1751.4 8757 1993-12-23 2024-10-11 02:25:57.000 1993-12-23 2024-10-11 02:25:57 +8758 8758 8759 875.8 1751.6000000000001 8758 1993-12-24 2024-10-11 02:25:58.000 1993-12-24 2024-10-11 02:25:58 +8759 8759 8760 875.9 1751.8000000000002 8759 1993-12-25 2024-10-11 02:25:59.000 1993-12-25 2024-10-11 02:25:59 +8761 8761 8762 876.1 1752.2 8761 1993-12-27 2024-10-11 02:26:01.000 1993-12-27 2024-10-11 02:26:01 +8762 8762 8763 876.2 1752.4 8762 1993-12-28 2024-10-11 02:26:02.000 1993-12-28 2024-10-11 02:26:02 +8763 8763 8764 876.3 1752.6000000000001 8763 1993-12-29 2024-10-11 02:26:03.000 1993-12-29 2024-10-11 02:26:03 +8764 8764 8765 876.4 1752.8000000000002 8764 1993-12-30 2024-10-11 02:26:04.000 1993-12-30 2024-10-11 02:26:04 +8766 8766 8767 876.6 1753.2 8766 1994-01-01 2024-10-11 02:26:06.000 1994-01-01 2024-10-11 02:26:06 +8767 8767 8768 876.7 1753.4 8767 1994-01-02 2024-10-11 02:26:07.000 1994-01-02 2024-10-11 02:26:07 +8768 8768 8769 876.8 1753.6000000000001 8768 1994-01-03 2024-10-11 02:26:08.000 1994-01-03 2024-10-11 02:26:08 +8769 8769 8770 876.9 1753.8000000000002 8769 1994-01-04 2024-10-11 02:26:09.000 1994-01-04 2024-10-11 02:26:09 +8771 8771 8772 877.1 1754.2 8771 1994-01-06 2024-10-11 02:26:11.000 1994-01-06 2024-10-11 02:26:11 +8772 8772 8773 877.2 1754.4 8772 1994-01-07 2024-10-11 02:26:12.000 1994-01-07 2024-10-11 02:26:12 +8773 8773 8774 877.3 1754.6000000000001 8773 1994-01-08 2024-10-11 02:26:13.000 1994-01-08 2024-10-11 02:26:13 +8774 8774 8775 877.4 1754.8000000000002 8774 1994-01-09 2024-10-11 02:26:14.000 1994-01-09 2024-10-11 02:26:14 +8776 8776 8777 877.6 1755.2 8776 1994-01-11 2024-10-11 02:26:16.000 1994-01-11 2024-10-11 02:26:16 +8777 8777 8778 877.7 1755.4 8777 1994-01-12 2024-10-11 02:26:17.000 1994-01-12 2024-10-11 02:26:17 +8778 8778 8779 877.8 1755.6000000000001 8778 1994-01-13 2024-10-11 02:26:18.000 1994-01-13 2024-10-11 02:26:18 +8779 8779 8780 877.9 1755.8000000000002 8779 1994-01-14 2024-10-11 02:26:19.000 1994-01-14 2024-10-11 02:26:19 +8781 8781 8782 878.1 1756.2 8781 1994-01-16 2024-10-11 02:26:21.000 1994-01-16 2024-10-11 02:26:21 +8782 8782 8783 878.2 1756.4 8782 1994-01-17 2024-10-11 02:26:22.000 1994-01-17 2024-10-11 02:26:22 +8783 8783 8784 878.3 1756.6000000000001 8783 1994-01-18 2024-10-11 02:26:23.000 1994-01-18 2024-10-11 02:26:23 +8784 8784 8785 878.4 1756.8000000000002 8784 1994-01-19 2024-10-11 02:26:24.000 1994-01-19 2024-10-11 02:26:24 +8786 8786 8787 878.6 1757.2 8786 1994-01-21 2024-10-11 02:26:26.000 1994-01-21 2024-10-11 02:26:26 +8787 8787 8788 878.7 1757.4 8787 1994-01-22 2024-10-11 02:26:27.000 1994-01-22 2024-10-11 02:26:27 +8788 8788 8789 878.8 1757.6000000000001 8788 1994-01-23 2024-10-11 02:26:28.000 1994-01-23 2024-10-11 02:26:28 +8789 8789 8790 878.9 1757.8000000000002 8789 1994-01-24 2024-10-11 02:26:29.000 1994-01-24 2024-10-11 02:26:29 +8791 8791 8792 879.1 1758.2 8791 1994-01-26 2024-10-11 02:26:31.000 1994-01-26 2024-10-11 02:26:31 +8792 8792 8793 879.2 1758.4 8792 1994-01-27 2024-10-11 02:26:32.000 1994-01-27 2024-10-11 02:26:32 +8793 8793 8794 879.3 1758.6000000000001 8793 1994-01-28 2024-10-11 02:26:33.000 1994-01-28 2024-10-11 02:26:33 +8794 8794 8795 879.4 1758.8000000000002 8794 1994-01-29 2024-10-11 02:26:34.000 1994-01-29 2024-10-11 02:26:34 +8796 8796 8797 879.6 1759.2 8796 1994-01-31 2024-10-11 02:26:36.000 1994-01-31 2024-10-11 02:26:36 +8797 8797 8798 879.7 1759.4 8797 1994-02-01 2024-10-11 02:26:37.000 1994-02-01 2024-10-11 02:26:37 +8798 8798 8799 879.8 1759.6000000000001 8798 1994-02-02 2024-10-11 02:26:38.000 1994-02-02 2024-10-11 02:26:38 +8799 8799 8800 879.9 1759.8000000000002 8799 1994-02-03 2024-10-11 02:26:39.000 1994-02-03 2024-10-11 02:26:39 +8801 8801 8802 880.1 1760.2 8801 1994-02-05 2024-10-11 02:26:41.000 1994-02-05 2024-10-11 02:26:41 +8802 8802 8803 880.2 1760.4 8802 1994-02-06 2024-10-11 02:26:42.000 1994-02-06 2024-10-11 02:26:42 +8803 8803 8804 880.3 1760.6000000000001 8803 1994-02-07 2024-10-11 02:26:43.000 1994-02-07 2024-10-11 02:26:43 +8804 8804 8805 880.4 1760.8000000000002 8804 1994-02-08 2024-10-11 02:26:44.000 1994-02-08 2024-10-11 02:26:44 +8806 8806 8807 880.6 1761.2 8806 1994-02-10 2024-10-11 02:26:46.000 1994-02-10 2024-10-11 02:26:46 +8807 8807 8808 880.7 1761.4 8807 1994-02-11 2024-10-11 02:26:47.000 1994-02-11 2024-10-11 02:26:47 +8808 8808 8809 880.8 1761.6000000000001 8808 1994-02-12 2024-10-11 02:26:48.000 1994-02-12 2024-10-11 02:26:48 +8809 8809 8810 880.9 1761.8000000000002 8809 1994-02-13 2024-10-11 02:26:49.000 1994-02-13 2024-10-11 02:26:49 +8811 8811 8812 881.1 1762.2 8811 1994-02-15 2024-10-11 02:26:51.000 1994-02-15 2024-10-11 02:26:51 +8812 8812 8813 881.2 1762.4 8812 1994-02-16 2024-10-11 02:26:52.000 1994-02-16 2024-10-11 02:26:52 +8813 8813 8814 881.3 1762.6000000000001 8813 1994-02-17 2024-10-11 02:26:53.000 1994-02-17 2024-10-11 02:26:53 +8814 8814 8815 881.4 1762.8000000000002 8814 1994-02-18 2024-10-11 02:26:54.000 1994-02-18 2024-10-11 02:26:54 +8816 8816 8817 881.6 1763.2 8816 1994-02-20 2024-10-11 02:26:56.000 1994-02-20 2024-10-11 02:26:56 +8817 8817 8818 881.7 1763.4 8817 1994-02-21 2024-10-11 02:26:57.000 1994-02-21 2024-10-11 02:26:57 +8818 8818 8819 881.8 1763.6000000000001 8818 1994-02-22 2024-10-11 02:26:58.000 1994-02-22 2024-10-11 02:26:58 +8819 8819 8820 881.9 1763.8000000000002 8819 1994-02-23 2024-10-11 02:26:59.000 1994-02-23 2024-10-11 02:26:59 +8821 8821 8822 882.1 1764.2 8821 1994-02-25 2024-10-11 02:27:01.000 1994-02-25 2024-10-11 02:27:01 +8822 8822 8823 882.2 1764.4 8822 1994-02-26 2024-10-11 02:27:02.000 1994-02-26 2024-10-11 02:27:02 +8823 8823 8824 882.3 1764.6000000000001 8823 1994-02-27 2024-10-11 02:27:03.000 1994-02-27 2024-10-11 02:27:03 +8824 8824 8825 882.4 1764.8000000000002 8824 1994-02-28 2024-10-11 02:27:04.000 1994-02-28 2024-10-11 02:27:04 +8826 8826 8827 882.6 1765.2 8826 1994-03-02 2024-10-11 02:27:06.000 1994-03-02 2024-10-11 02:27:06 +8827 8827 8828 882.7 1765.4 8827 1994-03-03 2024-10-11 02:27:07.000 1994-03-03 2024-10-11 02:27:07 +8828 8828 8829 882.8 1765.6000000000001 8828 1994-03-04 2024-10-11 02:27:08.000 1994-03-04 2024-10-11 02:27:08 +8829 8829 8830 882.9 1765.8000000000002 8829 1994-03-05 2024-10-11 02:27:09.000 1994-03-05 2024-10-11 02:27:09 +8831 8831 8832 883.1 1766.2 8831 1994-03-07 2024-10-11 02:27:11.000 1994-03-07 2024-10-11 02:27:11 +8832 8832 8833 883.2 1766.4 8832 1994-03-08 2024-10-11 02:27:12.000 1994-03-08 2024-10-11 02:27:12 +8833 8833 8834 883.3 1766.6000000000001 8833 1994-03-09 2024-10-11 02:27:13.000 1994-03-09 2024-10-11 02:27:13 +8834 8834 8835 883.4 1766.8000000000002 8834 1994-03-10 2024-10-11 02:27:14.000 1994-03-10 2024-10-11 02:27:14 +8836 8836 8837 883.6 1767.2 8836 1994-03-12 2024-10-11 02:27:16.000 1994-03-12 2024-10-11 02:27:16 +8837 8837 8838 883.7 1767.4 8837 1994-03-13 2024-10-11 02:27:17.000 1994-03-13 2024-10-11 02:27:17 +8838 8838 8839 883.8 1767.6000000000001 8838 1994-03-14 2024-10-11 02:27:18.000 1994-03-14 2024-10-11 02:27:18 +8839 8839 8840 883.9 1767.8000000000002 8839 1994-03-15 2024-10-11 02:27:19.000 1994-03-15 2024-10-11 02:27:19 +8841 8841 8842 884.1 1768.2 8841 1994-03-17 2024-10-11 02:27:21.000 1994-03-17 2024-10-11 02:27:21 +8842 8842 8843 884.2 1768.4 8842 1994-03-18 2024-10-11 02:27:22.000 1994-03-18 2024-10-11 02:27:22 +8843 8843 8844 884.3 1768.6000000000001 8843 1994-03-19 2024-10-11 02:27:23.000 1994-03-19 2024-10-11 02:27:23 +8844 8844 8845 884.4 1768.8000000000002 8844 1994-03-20 2024-10-11 02:27:24.000 1994-03-20 2024-10-11 02:27:24 +8846 8846 8847 884.6 1769.2 8846 1994-03-22 2024-10-11 02:27:26.000 1994-03-22 2024-10-11 02:27:26 +8847 8847 8848 884.7 1769.4 8847 1994-03-23 2024-10-11 02:27:27.000 1994-03-23 2024-10-11 02:27:27 +8848 8848 8849 884.8 1769.6000000000001 8848 1994-03-24 2024-10-11 02:27:28.000 1994-03-24 2024-10-11 02:27:28 +8849 8849 8850 884.9 1769.8000000000002 8849 1994-03-25 2024-10-11 02:27:29.000 1994-03-25 2024-10-11 02:27:29 +8851 8851 8852 885.1 1770.2 8851 1994-03-27 2024-10-11 02:27:31.000 1994-03-27 2024-10-11 02:27:31 +8852 8852 8853 885.2 1770.4 8852 1994-03-28 2024-10-11 02:27:32.000 1994-03-28 2024-10-11 02:27:32 +8853 8853 8854 885.3 1770.6000000000001 8853 1994-03-29 2024-10-11 02:27:33.000 1994-03-29 2024-10-11 02:27:33 +8854 8854 8855 885.4 1770.8000000000002 8854 1994-03-30 2024-10-11 02:27:34.000 1994-03-30 2024-10-11 02:27:34 +8856 8856 8857 885.6 1771.2 8856 1994-04-01 2024-10-11 02:27:36.000 1994-04-01 2024-10-11 02:27:36 +8857 8857 8858 885.7 1771.4 8857 1994-04-02 2024-10-11 02:27:37.000 1994-04-02 2024-10-11 02:27:37 +8858 8858 8859 885.8 1771.6000000000001 8858 1994-04-03 2024-10-11 02:27:38.000 1994-04-03 2024-10-11 02:27:38 +8859 8859 8860 885.9 1771.8000000000002 8859 1994-04-04 2024-10-11 02:27:39.000 1994-04-04 2024-10-11 02:27:39 +8861 8861 8862 886.1 1772.2 8861 1994-04-06 2024-10-11 02:27:41.000 1994-04-06 2024-10-11 02:27:41 +8862 8862 8863 886.2 1772.4 8862 1994-04-07 2024-10-11 02:27:42.000 1994-04-07 2024-10-11 02:27:42 +8863 8863 8864 886.3 1772.6000000000001 8863 1994-04-08 2024-10-11 02:27:43.000 1994-04-08 2024-10-11 02:27:43 +8864 8864 8865 886.4 1772.8000000000002 8864 1994-04-09 2024-10-11 02:27:44.000 1994-04-09 2024-10-11 02:27:44 +8866 8866 8867 886.6 1773.2 8866 1994-04-11 2024-10-11 02:27:46.000 1994-04-11 2024-10-11 02:27:46 +8867 8867 8868 886.7 1773.4 8867 1994-04-12 2024-10-11 02:27:47.000 1994-04-12 2024-10-11 02:27:47 +8868 8868 8869 886.8 1773.6000000000001 8868 1994-04-13 2024-10-11 02:27:48.000 1994-04-13 2024-10-11 02:27:48 +8869 8869 8870 886.9 1773.8000000000002 8869 1994-04-14 2024-10-11 02:27:49.000 1994-04-14 2024-10-11 02:27:49 +8871 8871 8872 887.1 1774.2 8871 1994-04-16 2024-10-11 02:27:51.000 1994-04-16 2024-10-11 02:27:51 +8872 8872 8873 887.2 1774.4 8872 1994-04-17 2024-10-11 02:27:52.000 1994-04-17 2024-10-11 02:27:52 +8873 8873 8874 887.3 1774.6000000000001 8873 1994-04-18 2024-10-11 02:27:53.000 1994-04-18 2024-10-11 02:27:53 +8874 8874 8875 887.4 1774.8000000000002 8874 1994-04-19 2024-10-11 02:27:54.000 1994-04-19 2024-10-11 02:27:54 +8876 8876 8877 887.6 1775.2 8876 1994-04-21 2024-10-11 02:27:56.000 1994-04-21 2024-10-11 02:27:56 +8877 8877 8878 887.7 1775.4 8877 1994-04-22 2024-10-11 02:27:57.000 1994-04-22 2024-10-11 02:27:57 +8878 8878 8879 887.8 1775.6000000000001 8878 1994-04-23 2024-10-11 02:27:58.000 1994-04-23 2024-10-11 02:27:58 +8879 8879 8880 887.9 1775.8000000000002 8879 1994-04-24 2024-10-11 02:27:59.000 1994-04-24 2024-10-11 02:27:59 +8881 8881 8882 888.1 1776.2 8881 1994-04-26 2024-10-11 02:28:01.000 1994-04-26 2024-10-11 02:28:01 +8882 8882 8883 888.2 1776.4 8882 1994-04-27 2024-10-11 02:28:02.000 1994-04-27 2024-10-11 02:28:02 +8883 8883 8884 888.3 1776.6000000000001 8883 1994-04-28 2024-10-11 02:28:03.000 1994-04-28 2024-10-11 02:28:03 +8884 8884 8885 888.4 1776.8000000000002 8884 1994-04-29 2024-10-11 02:28:04.000 1994-04-29 2024-10-11 02:28:04 +8886 8886 8887 888.6 1777.2 8886 1994-05-01 2024-10-11 02:28:06.000 1994-05-01 2024-10-11 02:28:06 +8887 8887 8888 888.7 1777.4 8887 1994-05-02 2024-10-11 02:28:07.000 1994-05-02 2024-10-11 02:28:07 +8888 8888 8889 888.8 1777.6000000000001 8888 1994-05-03 2024-10-11 02:28:08.000 1994-05-03 2024-10-11 02:28:08 +8889 8889 8890 888.9 1777.8000000000002 8889 1994-05-04 2024-10-11 02:28:09.000 1994-05-04 2024-10-11 02:28:09 +8891 8891 8892 889.1 1778.2 8891 1994-05-06 2024-10-11 02:28:11.000 1994-05-06 2024-10-11 02:28:11 +8892 8892 8893 889.2 1778.4 8892 1994-05-07 2024-10-11 02:28:12.000 1994-05-07 2024-10-11 02:28:12 +8893 8893 8894 889.3 1778.6000000000001 8893 1994-05-08 2024-10-11 02:28:13.000 1994-05-08 2024-10-11 02:28:13 +8894 8894 8895 889.4 1778.8000000000002 8894 1994-05-09 2024-10-11 02:28:14.000 1994-05-09 2024-10-11 02:28:14 +8896 8896 8897 889.6 1779.2 8896 1994-05-11 2024-10-11 02:28:16.000 1994-05-11 2024-10-11 02:28:16 +8897 8897 8898 889.7 1779.4 8897 1994-05-12 2024-10-11 02:28:17.000 1994-05-12 2024-10-11 02:28:17 +8898 8898 8899 889.8 1779.6000000000001 8898 1994-05-13 2024-10-11 02:28:18.000 1994-05-13 2024-10-11 02:28:18 +8899 8899 8900 889.9 1779.8000000000002 8899 1994-05-14 2024-10-11 02:28:19.000 1994-05-14 2024-10-11 02:28:19 +8901 8901 8902 890.1 1780.2 8901 1994-05-16 2024-10-11 02:28:21.000 1994-05-16 2024-10-11 02:28:21 +8902 8902 8903 890.2 1780.4 8902 1994-05-17 2024-10-11 02:28:22.000 1994-05-17 2024-10-11 02:28:22 +8903 8903 8904 890.3 1780.6000000000001 8903 1994-05-18 2024-10-11 02:28:23.000 1994-05-18 2024-10-11 02:28:23 +8904 8904 8905 890.4 1780.8000000000002 8904 1994-05-19 2024-10-11 02:28:24.000 1994-05-19 2024-10-11 02:28:24 +8906 8906 8907 890.6 1781.2 8906 1994-05-21 2024-10-11 02:28:26.000 1994-05-21 2024-10-11 02:28:26 +8907 8907 8908 890.7 1781.4 8907 1994-05-22 2024-10-11 02:28:27.000 1994-05-22 2024-10-11 02:28:27 +8908 8908 8909 890.8 1781.6000000000001 8908 1994-05-23 2024-10-11 02:28:28.000 1994-05-23 2024-10-11 02:28:28 +8909 8909 8910 890.9 1781.8000000000002 8909 1994-05-24 2024-10-11 02:28:29.000 1994-05-24 2024-10-11 02:28:29 +8911 8911 8912 891.1 1782.2 8911 1994-05-26 2024-10-11 02:28:31.000 1994-05-26 2024-10-11 02:28:31 +8912 8912 8913 891.2 1782.4 8912 1994-05-27 2024-10-11 02:28:32.000 1994-05-27 2024-10-11 02:28:32 +8913 8913 8914 891.3 1782.6000000000001 8913 1994-05-28 2024-10-11 02:28:33.000 1994-05-28 2024-10-11 02:28:33 +8914 8914 8915 891.4 1782.8000000000002 8914 1994-05-29 2024-10-11 02:28:34.000 1994-05-29 2024-10-11 02:28:34 +8916 8916 8917 891.6 1783.2 8916 1994-05-31 2024-10-11 02:28:36.000 1994-05-31 2024-10-11 02:28:36 +8917 8917 8918 891.7 1783.4 8917 1994-06-01 2024-10-11 02:28:37.000 1994-06-01 2024-10-11 02:28:37 +8918 8918 8919 891.8 1783.6000000000001 8918 1994-06-02 2024-10-11 02:28:38.000 1994-06-02 2024-10-11 02:28:38 +8919 8919 8920 891.9 1783.8000000000002 8919 1994-06-03 2024-10-11 02:28:39.000 1994-06-03 2024-10-11 02:28:39 +8921 8921 8922 892.1 1784.2 8921 1994-06-05 2024-10-11 02:28:41.000 1994-06-05 2024-10-11 02:28:41 +8922 8922 8923 892.2 1784.4 8922 1994-06-06 2024-10-11 02:28:42.000 1994-06-06 2024-10-11 02:28:42 +8923 8923 8924 892.3 1784.6000000000001 8923 1994-06-07 2024-10-11 02:28:43.000 1994-06-07 2024-10-11 02:28:43 +8924 8924 8925 892.4 1784.8000000000002 8924 1994-06-08 2024-10-11 02:28:44.000 1994-06-08 2024-10-11 02:28:44 +8926 8926 8927 892.6 1785.2 8926 1994-06-10 2024-10-11 02:28:46.000 1994-06-10 2024-10-11 02:28:46 +8927 8927 8928 892.7 1785.4 8927 1994-06-11 2024-10-11 02:28:47.000 1994-06-11 2024-10-11 02:28:47 +8928 8928 8929 892.8 1785.6000000000001 8928 1994-06-12 2024-10-11 02:28:48.000 1994-06-12 2024-10-11 02:28:48 +8929 8929 8930 892.9 1785.8000000000002 8929 1994-06-13 2024-10-11 02:28:49.000 1994-06-13 2024-10-11 02:28:49 +8931 8931 8932 893.1 1786.2 8931 1994-06-15 2024-10-11 02:28:51.000 1994-06-15 2024-10-11 02:28:51 +8932 8932 8933 893.2 1786.4 8932 1994-06-16 2024-10-11 02:28:52.000 1994-06-16 2024-10-11 02:28:52 +8933 8933 8934 893.3 1786.6000000000001 8933 1994-06-17 2024-10-11 02:28:53.000 1994-06-17 2024-10-11 02:28:53 +8934 8934 8935 893.4 1786.8000000000002 8934 1994-06-18 2024-10-11 02:28:54.000 1994-06-18 2024-10-11 02:28:54 +8936 8936 8937 893.6 1787.2 8936 1994-06-20 2024-10-11 02:28:56.000 1994-06-20 2024-10-11 02:28:56 +8937 8937 8938 893.7 1787.4 8937 1994-06-21 2024-10-11 02:28:57.000 1994-06-21 2024-10-11 02:28:57 +8938 8938 8939 893.8 1787.6000000000001 8938 1994-06-22 2024-10-11 02:28:58.000 1994-06-22 2024-10-11 02:28:58 +8939 8939 8940 893.9 1787.8000000000002 8939 1994-06-23 2024-10-11 02:28:59.000 1994-06-23 2024-10-11 02:28:59 +8941 8941 8942 894.1 1788.2 8941 1994-06-25 2024-10-11 02:29:01.000 1994-06-25 2024-10-11 02:29:01 +8942 8942 8943 894.2 1788.4 8942 1994-06-26 2024-10-11 02:29:02.000 1994-06-26 2024-10-11 02:29:02 +8943 8943 8944 894.3 1788.6000000000001 8943 1994-06-27 2024-10-11 02:29:03.000 1994-06-27 2024-10-11 02:29:03 +8944 8944 8945 894.4 1788.8000000000002 8944 1994-06-28 2024-10-11 02:29:04.000 1994-06-28 2024-10-11 02:29:04 +8946 8946 8947 894.6 1789.2 8946 1994-06-30 2024-10-11 02:29:06.000 1994-06-30 2024-10-11 02:29:06 +8947 8947 8948 894.7 1789.4 8947 1994-07-01 2024-10-11 02:29:07.000 1994-07-01 2024-10-11 02:29:07 +8948 8948 8949 894.8 1789.6000000000001 8948 1994-07-02 2024-10-11 02:29:08.000 1994-07-02 2024-10-11 02:29:08 +8949 8949 8950 894.9 1789.8000000000002 8949 1994-07-03 2024-10-11 02:29:09.000 1994-07-03 2024-10-11 02:29:09 +8951 8951 8952 895.1 1790.2 8951 1994-07-05 2024-10-11 02:29:11.000 1994-07-05 2024-10-11 02:29:11 +8952 8952 8953 895.2 1790.4 8952 1994-07-06 2024-10-11 02:29:12.000 1994-07-06 2024-10-11 02:29:12 +8953 8953 8954 895.3 1790.6000000000001 8953 1994-07-07 2024-10-11 02:29:13.000 1994-07-07 2024-10-11 02:29:13 +8954 8954 8955 895.4 1790.8000000000002 8954 1994-07-08 2024-10-11 02:29:14.000 1994-07-08 2024-10-11 02:29:14 +8956 8956 8957 895.6 1791.2 8956 1994-07-10 2024-10-11 02:29:16.000 1994-07-10 2024-10-11 02:29:16 +8957 8957 8958 895.7 1791.4 8957 1994-07-11 2024-10-11 02:29:17.000 1994-07-11 2024-10-11 02:29:17 +8958 8958 8959 895.8 1791.6000000000001 8958 1994-07-12 2024-10-11 02:29:18.000 1994-07-12 2024-10-11 02:29:18 +8959 8959 8960 895.9 1791.8000000000002 8959 1994-07-13 2024-10-11 02:29:19.000 1994-07-13 2024-10-11 02:29:19 +8961 8961 8962 896.1 1792.2 8961 1994-07-15 2024-10-11 02:29:21.000 1994-07-15 2024-10-11 02:29:21 +8962 8962 8963 896.2 1792.4 8962 1994-07-16 2024-10-11 02:29:22.000 1994-07-16 2024-10-11 02:29:22 +8963 8963 8964 896.3 1792.6000000000001 8963 1994-07-17 2024-10-11 02:29:23.000 1994-07-17 2024-10-11 02:29:23 +8964 8964 8965 896.4 1792.8000000000002 8964 1994-07-18 2024-10-11 02:29:24.000 1994-07-18 2024-10-11 02:29:24 +8966 8966 8967 896.6 1793.2 8966 1994-07-20 2024-10-11 02:29:26.000 1994-07-20 2024-10-11 02:29:26 +8967 8967 8968 896.7 1793.4 8967 1994-07-21 2024-10-11 02:29:27.000 1994-07-21 2024-10-11 02:29:27 +8968 8968 8969 896.8 1793.6000000000001 8968 1994-07-22 2024-10-11 02:29:28.000 1994-07-22 2024-10-11 02:29:28 +8969 8969 8970 896.9 1793.8000000000002 8969 1994-07-23 2024-10-11 02:29:29.000 1994-07-23 2024-10-11 02:29:29 +8971 8971 8972 897.1 1794.2 8971 1994-07-25 2024-10-11 02:29:31.000 1994-07-25 2024-10-11 02:29:31 +8972 8972 8973 897.2 1794.4 8972 1994-07-26 2024-10-11 02:29:32.000 1994-07-26 2024-10-11 02:29:32 +8973 8973 8974 897.3 1794.6000000000001 8973 1994-07-27 2024-10-11 02:29:33.000 1994-07-27 2024-10-11 02:29:33 +8974 8974 8975 897.4 1794.8000000000002 8974 1994-07-28 2024-10-11 02:29:34.000 1994-07-28 2024-10-11 02:29:34 +8976 8976 8977 897.6 1795.2 8976 1994-07-30 2024-10-11 02:29:36.000 1994-07-30 2024-10-11 02:29:36 +8977 8977 8978 897.7 1795.4 8977 1994-07-31 2024-10-11 02:29:37.000 1994-07-31 2024-10-11 02:29:37 +8978 8978 8979 897.8 1795.6000000000001 8978 1994-08-01 2024-10-11 02:29:38.000 1994-08-01 2024-10-11 02:29:38 +8979 8979 8980 897.9 1795.8000000000002 8979 1994-08-02 2024-10-11 02:29:39.000 1994-08-02 2024-10-11 02:29:39 +8981 8981 8982 898.1 1796.2 8981 1994-08-04 2024-10-11 02:29:41.000 1994-08-04 2024-10-11 02:29:41 +8982 8982 8983 898.2 1796.4 8982 1994-08-05 2024-10-11 02:29:42.000 1994-08-05 2024-10-11 02:29:42 +8983 8983 8984 898.3 1796.6000000000001 8983 1994-08-06 2024-10-11 02:29:43.000 1994-08-06 2024-10-11 02:29:43 +8984 8984 8985 898.4 1796.8000000000002 8984 1994-08-07 2024-10-11 02:29:44.000 1994-08-07 2024-10-11 02:29:44 +8986 8986 8987 898.6 1797.2 8986 1994-08-09 2024-10-11 02:29:46.000 1994-08-09 2024-10-11 02:29:46 +8987 8987 8988 898.7 1797.4 8987 1994-08-10 2024-10-11 02:29:47.000 1994-08-10 2024-10-11 02:29:47 +8988 8988 8989 898.8 1797.6000000000001 8988 1994-08-11 2024-10-11 02:29:48.000 1994-08-11 2024-10-11 02:29:48 +8989 8989 8990 898.9 1797.8000000000002 8989 1994-08-12 2024-10-11 02:29:49.000 1994-08-12 2024-10-11 02:29:49 +8991 8991 8992 899.1 1798.2 8991 1994-08-14 2024-10-11 02:29:51.000 1994-08-14 2024-10-11 02:29:51 +8992 8992 8993 899.2 1798.4 8992 1994-08-15 2024-10-11 02:29:52.000 1994-08-15 2024-10-11 02:29:52 +8993 8993 8994 899.3 1798.6000000000001 8993 1994-08-16 2024-10-11 02:29:53.000 1994-08-16 2024-10-11 02:29:53 +8994 8994 8995 899.4 1798.8000000000002 8994 1994-08-17 2024-10-11 02:29:54.000 1994-08-17 2024-10-11 02:29:54 +8996 8996 8997 899.6 1799.2 8996 1994-08-19 2024-10-11 02:29:56.000 1994-08-19 2024-10-11 02:29:56 +8997 8997 8998 899.7 1799.4 8997 1994-08-20 2024-10-11 02:29:57.000 1994-08-20 2024-10-11 02:29:57 +8998 8998 8999 899.8 1799.6000000000001 8998 1994-08-21 2024-10-11 02:29:58.000 1994-08-21 2024-10-11 02:29:58 +8999 8999 9000 899.9 1799.8000000000002 8999 1994-08-22 2024-10-11 02:29:59.000 1994-08-22 2024-10-11 02:29:59 +9001 9001 9002 900.1 1800.2 9001 1994-08-24 2024-10-11 02:30:01.000 1994-08-24 2024-10-11 02:30:01 +9002 9002 9003 900.2 1800.4 9002 1994-08-25 2024-10-11 02:30:02.000 1994-08-25 2024-10-11 02:30:02 +9003 9003 9004 900.3 1800.6000000000001 9003 1994-08-26 2024-10-11 02:30:03.000 1994-08-26 2024-10-11 02:30:03 +9004 9004 9005 900.4 1800.8000000000002 9004 1994-08-27 2024-10-11 02:30:04.000 1994-08-27 2024-10-11 02:30:04 +9006 9006 9007 900.6 1801.2 9006 1994-08-29 2024-10-11 02:30:06.000 1994-08-29 2024-10-11 02:30:06 +9007 9007 9008 900.7 1801.4 9007 1994-08-30 2024-10-11 02:30:07.000 1994-08-30 2024-10-11 02:30:07 +9008 9008 9009 900.8 1801.6000000000001 9008 1994-08-31 2024-10-11 02:30:08.000 1994-08-31 2024-10-11 02:30:08 +9009 9009 9010 900.9 1801.8000000000002 9009 1994-09-01 2024-10-11 02:30:09.000 1994-09-01 2024-10-11 02:30:09 +9011 9011 9012 901.1 1802.2 9011 1994-09-03 2024-10-11 02:30:11.000 1994-09-03 2024-10-11 02:30:11 +9012 9012 9013 901.2 1802.4 9012 1994-09-04 2024-10-11 02:30:12.000 1994-09-04 2024-10-11 02:30:12 +9013 9013 9014 901.3 1802.6000000000001 9013 1994-09-05 2024-10-11 02:30:13.000 1994-09-05 2024-10-11 02:30:13 +9014 9014 9015 901.4 1802.8000000000002 9014 1994-09-06 2024-10-11 02:30:14.000 1994-09-06 2024-10-11 02:30:14 +9016 9016 9017 901.6 1803.2 9016 1994-09-08 2024-10-11 02:30:16.000 1994-09-08 2024-10-11 02:30:16 +9017 9017 9018 901.7 1803.4 9017 1994-09-09 2024-10-11 02:30:17.000 1994-09-09 2024-10-11 02:30:17 +9018 9018 9019 901.8 1803.6000000000001 9018 1994-09-10 2024-10-11 02:30:18.000 1994-09-10 2024-10-11 02:30:18 +9019 9019 9020 901.9 1803.8000000000002 9019 1994-09-11 2024-10-11 02:30:19.000 1994-09-11 2024-10-11 02:30:19 +9021 9021 9022 902.1 1804.2 9021 1994-09-13 2024-10-11 02:30:21.000 1994-09-13 2024-10-11 02:30:21 +9022 9022 9023 902.2 1804.4 9022 1994-09-14 2024-10-11 02:30:22.000 1994-09-14 2024-10-11 02:30:22 +9023 9023 9024 902.3 1804.6000000000001 9023 1994-09-15 2024-10-11 02:30:23.000 1994-09-15 2024-10-11 02:30:23 +9024 9024 9025 902.4 1804.8000000000002 9024 1994-09-16 2024-10-11 02:30:24.000 1994-09-16 2024-10-11 02:30:24 +9026 9026 9027 902.6 1805.2 9026 1994-09-18 2024-10-11 02:30:26.000 1994-09-18 2024-10-11 02:30:26 +9027 9027 9028 902.7 1805.4 9027 1994-09-19 2024-10-11 02:30:27.000 1994-09-19 2024-10-11 02:30:27 +9028 9028 9029 902.8 1805.6000000000001 9028 1994-09-20 2024-10-11 02:30:28.000 1994-09-20 2024-10-11 02:30:28 +9029 9029 9030 902.9 1805.8000000000002 9029 1994-09-21 2024-10-11 02:30:29.000 1994-09-21 2024-10-11 02:30:29 +9031 9031 9032 903.1 1806.2 9031 1994-09-23 2024-10-11 02:30:31.000 1994-09-23 2024-10-11 02:30:31 +9032 9032 9033 903.2 1806.4 9032 1994-09-24 2024-10-11 02:30:32.000 1994-09-24 2024-10-11 02:30:32 +9033 9033 9034 903.3 1806.6000000000001 9033 1994-09-25 2024-10-11 02:30:33.000 1994-09-25 2024-10-11 02:30:33 +9034 9034 9035 903.4 1806.8000000000002 9034 1994-09-26 2024-10-11 02:30:34.000 1994-09-26 2024-10-11 02:30:34 +9036 9036 9037 903.6 1807.2 9036 1994-09-28 2024-10-11 02:30:36.000 1994-09-28 2024-10-11 02:30:36 +9037 9037 9038 903.7 1807.4 9037 1994-09-29 2024-10-11 02:30:37.000 1994-09-29 2024-10-11 02:30:37 +9038 9038 9039 903.8 1807.6000000000001 9038 1994-09-30 2024-10-11 02:30:38.000 1994-09-30 2024-10-11 02:30:38 +9039 9039 9040 903.9 1807.8000000000002 9039 1994-10-01 2024-10-11 02:30:39.000 1994-10-01 2024-10-11 02:30:39 +9041 9041 9042 904.1 1808.2 9041 1994-10-03 2024-10-11 02:30:41.000 1994-10-03 2024-10-11 02:30:41 +9042 9042 9043 904.2 1808.4 9042 1994-10-04 2024-10-11 02:30:42.000 1994-10-04 2024-10-11 02:30:42 +9043 9043 9044 904.3 1808.6000000000001 9043 1994-10-05 2024-10-11 02:30:43.000 1994-10-05 2024-10-11 02:30:43 +9044 9044 9045 904.4 1808.8000000000002 9044 1994-10-06 2024-10-11 02:30:44.000 1994-10-06 2024-10-11 02:30:44 +9046 9046 9047 904.6 1809.2 9046 1994-10-08 2024-10-11 02:30:46.000 1994-10-08 2024-10-11 02:30:46 +9047 9047 9048 904.7 1809.4 9047 1994-10-09 2024-10-11 02:30:47.000 1994-10-09 2024-10-11 02:30:47 +9048 9048 9049 904.8 1809.6000000000001 9048 1994-10-10 2024-10-11 02:30:48.000 1994-10-10 2024-10-11 02:30:48 +9049 9049 9050 904.9 1809.8000000000002 9049 1994-10-11 2024-10-11 02:30:49.000 1994-10-11 2024-10-11 02:30:49 +9051 9051 9052 905.1 1810.2 9051 1994-10-13 2024-10-11 02:30:51.000 1994-10-13 2024-10-11 02:30:51 +9052 9052 9053 905.2 1810.4 9052 1994-10-14 2024-10-11 02:30:52.000 1994-10-14 2024-10-11 02:30:52 +9053 9053 9054 905.3 1810.6000000000001 9053 1994-10-15 2024-10-11 02:30:53.000 1994-10-15 2024-10-11 02:30:53 +9054 9054 9055 905.4 1810.8000000000002 9054 1994-10-16 2024-10-11 02:30:54.000 1994-10-16 2024-10-11 02:30:54 +9056 9056 9057 905.6 1811.2 9056 1994-10-18 2024-10-11 02:30:56.000 1994-10-18 2024-10-11 02:30:56 +9057 9057 9058 905.7 1811.4 9057 1994-10-19 2024-10-11 02:30:57.000 1994-10-19 2024-10-11 02:30:57 +9058 9058 9059 905.8 1811.6000000000001 9058 1994-10-20 2024-10-11 02:30:58.000 1994-10-20 2024-10-11 02:30:58 +9059 9059 9060 905.9 1811.8000000000002 9059 1994-10-21 2024-10-11 02:30:59.000 1994-10-21 2024-10-11 02:30:59 +9061 9061 9062 906.1 1812.2 9061 1994-10-23 2024-10-11 02:31:01.000 1994-10-23 2024-10-11 02:31:01 +9062 9062 9063 906.2 1812.4 9062 1994-10-24 2024-10-11 02:31:02.000 1994-10-24 2024-10-11 02:31:02 +9063 9063 9064 906.3 1812.6000000000001 9063 1994-10-25 2024-10-11 02:31:03.000 1994-10-25 2024-10-11 02:31:03 +9064 9064 9065 906.4 1812.8000000000002 9064 1994-10-26 2024-10-11 02:31:04.000 1994-10-26 2024-10-11 02:31:04 +9066 9066 9067 906.6 1813.2 9066 1994-10-28 2024-10-11 02:31:06.000 1994-10-28 2024-10-11 02:31:06 +9067 9067 9068 906.7 1813.4 9067 1994-10-29 2024-10-11 02:31:07.000 1994-10-29 2024-10-11 02:31:07 +9068 9068 9069 906.8 1813.6000000000001 9068 1994-10-30 2024-10-11 02:31:08.000 1994-10-30 2024-10-11 02:31:08 +9069 9069 9070 906.9 1813.8000000000002 9069 1994-10-31 2024-10-11 02:31:09.000 1994-10-31 2024-10-11 02:31:09 +9071 9071 9072 907.1 1814.2 9071 1994-11-02 2024-10-11 02:31:11.000 1994-11-02 2024-10-11 02:31:11 +9072 9072 9073 907.2 1814.4 9072 1994-11-03 2024-10-11 02:31:12.000 1994-11-03 2024-10-11 02:31:12 +9073 9073 9074 907.3 1814.6000000000001 9073 1994-11-04 2024-10-11 02:31:13.000 1994-11-04 2024-10-11 02:31:13 +9074 9074 9075 907.4 1814.8000000000002 9074 1994-11-05 2024-10-11 02:31:14.000 1994-11-05 2024-10-11 02:31:14 +9076 9076 9077 907.6 1815.2 9076 1994-11-07 2024-10-11 02:31:16.000 1994-11-07 2024-10-11 02:31:16 +9077 9077 9078 907.7 1815.4 9077 1994-11-08 2024-10-11 02:31:17.000 1994-11-08 2024-10-11 02:31:17 +9078 9078 9079 907.8 1815.6000000000001 9078 1994-11-09 2024-10-11 02:31:18.000 1994-11-09 2024-10-11 02:31:18 +9079 9079 9080 907.9 1815.8000000000002 9079 1994-11-10 2024-10-11 02:31:19.000 1994-11-10 2024-10-11 02:31:19 +9081 9081 9082 908.1 1816.2 9081 1994-11-12 2024-10-11 02:31:21.000 1994-11-12 2024-10-11 02:31:21 +9082 9082 9083 908.2 1816.4 9082 1994-11-13 2024-10-11 02:31:22.000 1994-11-13 2024-10-11 02:31:22 +9083 9083 9084 908.3 1816.6000000000001 9083 1994-11-14 2024-10-11 02:31:23.000 1994-11-14 2024-10-11 02:31:23 +9084 9084 9085 908.4 1816.8000000000002 9084 1994-11-15 2024-10-11 02:31:24.000 1994-11-15 2024-10-11 02:31:24 +9086 9086 9087 908.6 1817.2 9086 1994-11-17 2024-10-11 02:31:26.000 1994-11-17 2024-10-11 02:31:26 +9087 9087 9088 908.7 1817.4 9087 1994-11-18 2024-10-11 02:31:27.000 1994-11-18 2024-10-11 02:31:27 +9088 9088 9089 908.8 1817.6000000000001 9088 1994-11-19 2024-10-11 02:31:28.000 1994-11-19 2024-10-11 02:31:28 +9089 9089 9090 908.9 1817.8000000000002 9089 1994-11-20 2024-10-11 02:31:29.000 1994-11-20 2024-10-11 02:31:29 +9091 9091 9092 909.1 1818.2 9091 1994-11-22 2024-10-11 02:31:31.000 1994-11-22 2024-10-11 02:31:31 +9092 9092 9093 909.2 1818.4 9092 1994-11-23 2024-10-11 02:31:32.000 1994-11-23 2024-10-11 02:31:32 +9093 9093 9094 909.3 1818.6000000000001 9093 1994-11-24 2024-10-11 02:31:33.000 1994-11-24 2024-10-11 02:31:33 +9094 9094 9095 909.4 1818.8000000000002 9094 1994-11-25 2024-10-11 02:31:34.000 1994-11-25 2024-10-11 02:31:34 +9096 9096 9097 909.6 1819.2 9096 1994-11-27 2024-10-11 02:31:36.000 1994-11-27 2024-10-11 02:31:36 +9097 9097 9098 909.7 1819.4 9097 1994-11-28 2024-10-11 02:31:37.000 1994-11-28 2024-10-11 02:31:37 +9098 9098 9099 909.8 1819.6000000000001 9098 1994-11-29 2024-10-11 02:31:38.000 1994-11-29 2024-10-11 02:31:38 +9099 9099 9100 909.9 1819.8000000000002 9099 1994-11-30 2024-10-11 02:31:39.000 1994-11-30 2024-10-11 02:31:39 +9101 9101 9102 910.1 1820.2 9101 1994-12-02 2024-10-11 02:31:41.000 1994-12-02 2024-10-11 02:31:41 +9102 9102 9103 910.2 1820.4 9102 1994-12-03 2024-10-11 02:31:42.000 1994-12-03 2024-10-11 02:31:42 +9103 9103 9104 910.3 1820.6000000000001 9103 1994-12-04 2024-10-11 02:31:43.000 1994-12-04 2024-10-11 02:31:43 +9104 9104 9105 910.4 1820.8000000000002 9104 1994-12-05 2024-10-11 02:31:44.000 1994-12-05 2024-10-11 02:31:44 +9106 9106 9107 910.6 1821.2 9106 1994-12-07 2024-10-11 02:31:46.000 1994-12-07 2024-10-11 02:31:46 +9107 9107 9108 910.7 1821.4 9107 1994-12-08 2024-10-11 02:31:47.000 1994-12-08 2024-10-11 02:31:47 +9108 9108 9109 910.8 1821.6000000000001 9108 1994-12-09 2024-10-11 02:31:48.000 1994-12-09 2024-10-11 02:31:48 +9109 9109 9110 910.9 1821.8000000000002 9109 1994-12-10 2024-10-11 02:31:49.000 1994-12-10 2024-10-11 02:31:49 +9111 9111 9112 911.1 1822.2 9111 1994-12-12 2024-10-11 02:31:51.000 1994-12-12 2024-10-11 02:31:51 +9112 9112 9113 911.2 1822.4 9112 1994-12-13 2024-10-11 02:31:52.000 1994-12-13 2024-10-11 02:31:52 +9113 9113 9114 911.3 1822.6000000000001 9113 1994-12-14 2024-10-11 02:31:53.000 1994-12-14 2024-10-11 02:31:53 +9114 9114 9115 911.4 1822.8000000000002 9114 1994-12-15 2024-10-11 02:31:54.000 1994-12-15 2024-10-11 02:31:54 +9116 9116 9117 911.6 1823.2 9116 1994-12-17 2024-10-11 02:31:56.000 1994-12-17 2024-10-11 02:31:56 +9117 9117 9118 911.7 1823.4 9117 1994-12-18 2024-10-11 02:31:57.000 1994-12-18 2024-10-11 02:31:57 +9118 9118 9119 911.8 1823.6000000000001 9118 1994-12-19 2024-10-11 02:31:58.000 1994-12-19 2024-10-11 02:31:58 +9119 9119 9120 911.9 1823.8000000000002 9119 1994-12-20 2024-10-11 02:31:59.000 1994-12-20 2024-10-11 02:31:59 +9121 9121 9122 912.1 1824.2 9121 1994-12-22 2024-10-11 02:32:01.000 1994-12-22 2024-10-11 02:32:01 +9122 9122 9123 912.2 1824.4 9122 1994-12-23 2024-10-11 02:32:02.000 1994-12-23 2024-10-11 02:32:02 +9123 9123 9124 912.3 1824.6000000000001 9123 1994-12-24 2024-10-11 02:32:03.000 1994-12-24 2024-10-11 02:32:03 +9124 9124 9125 912.4 1824.8000000000002 9124 1994-12-25 2024-10-11 02:32:04.000 1994-12-25 2024-10-11 02:32:04 +9126 9126 9127 912.6 1825.2 9126 1994-12-27 2024-10-11 02:32:06.000 1994-12-27 2024-10-11 02:32:06 +9127 9127 9128 912.7 1825.4 9127 1994-12-28 2024-10-11 02:32:07.000 1994-12-28 2024-10-11 02:32:07 +9128 9128 9129 912.8 1825.6000000000001 9128 1994-12-29 2024-10-11 02:32:08.000 1994-12-29 2024-10-11 02:32:08 +9129 9129 9130 912.9 1825.8000000000002 9129 1994-12-30 2024-10-11 02:32:09.000 1994-12-30 2024-10-11 02:32:09 +9131 9131 9132 913.1 1826.2 9131 1995-01-01 2024-10-11 02:32:11.000 1995-01-01 2024-10-11 02:32:11 +9132 9132 9133 913.2 1826.4 9132 1995-01-02 2024-10-11 02:32:12.000 1995-01-02 2024-10-11 02:32:12 +9133 9133 9134 913.3 1826.6000000000001 9133 1995-01-03 2024-10-11 02:32:13.000 1995-01-03 2024-10-11 02:32:13 +9134 9134 9135 913.4 1826.8000000000002 9134 1995-01-04 2024-10-11 02:32:14.000 1995-01-04 2024-10-11 02:32:14 +9136 9136 9137 913.6 1827.2 9136 1995-01-06 2024-10-11 02:32:16.000 1995-01-06 2024-10-11 02:32:16 +9137 9137 9138 913.7 1827.4 9137 1995-01-07 2024-10-11 02:32:17.000 1995-01-07 2024-10-11 02:32:17 +9138 9138 9139 913.8 1827.6000000000001 9138 1995-01-08 2024-10-11 02:32:18.000 1995-01-08 2024-10-11 02:32:18 +9139 9139 9140 913.9 1827.8000000000002 9139 1995-01-09 2024-10-11 02:32:19.000 1995-01-09 2024-10-11 02:32:19 +9141 9141 9142 914.1 1828.2 9141 1995-01-11 2024-10-11 02:32:21.000 1995-01-11 2024-10-11 02:32:21 +9142 9142 9143 914.2 1828.4 9142 1995-01-12 2024-10-11 02:32:22.000 1995-01-12 2024-10-11 02:32:22 +9143 9143 9144 914.3 1828.6000000000001 9143 1995-01-13 2024-10-11 02:32:23.000 1995-01-13 2024-10-11 02:32:23 +9144 9144 9145 914.4 1828.8000000000002 9144 1995-01-14 2024-10-11 02:32:24.000 1995-01-14 2024-10-11 02:32:24 +9146 9146 9147 914.6 1829.2 9146 1995-01-16 2024-10-11 02:32:26.000 1995-01-16 2024-10-11 02:32:26 +9147 9147 9148 914.7 1829.4 9147 1995-01-17 2024-10-11 02:32:27.000 1995-01-17 2024-10-11 02:32:27 +9148 9148 9149 914.8 1829.6000000000001 9148 1995-01-18 2024-10-11 02:32:28.000 1995-01-18 2024-10-11 02:32:28 +9149 9149 9150 914.9 1829.8000000000002 9149 1995-01-19 2024-10-11 02:32:29.000 1995-01-19 2024-10-11 02:32:29 +9151 9151 9152 915.1 1830.2 9151 1995-01-21 2024-10-11 02:32:31.000 1995-01-21 2024-10-11 02:32:31 +9152 9152 9153 915.2 1830.4 9152 1995-01-22 2024-10-11 02:32:32.000 1995-01-22 2024-10-11 02:32:32 +9153 9153 9154 915.3 1830.6000000000001 9153 1995-01-23 2024-10-11 02:32:33.000 1995-01-23 2024-10-11 02:32:33 +9154 9154 9155 915.4 1830.8000000000002 9154 1995-01-24 2024-10-11 02:32:34.000 1995-01-24 2024-10-11 02:32:34 +9156 9156 9157 915.6 1831.2 9156 1995-01-26 2024-10-11 02:32:36.000 1995-01-26 2024-10-11 02:32:36 +9157 9157 9158 915.7 1831.4 9157 1995-01-27 2024-10-11 02:32:37.000 1995-01-27 2024-10-11 02:32:37 +9158 9158 9159 915.8 1831.6000000000001 9158 1995-01-28 2024-10-11 02:32:38.000 1995-01-28 2024-10-11 02:32:38 +9159 9159 9160 915.9 1831.8000000000002 9159 1995-01-29 2024-10-11 02:32:39.000 1995-01-29 2024-10-11 02:32:39 +9161 9161 9162 916.1 1832.2 9161 1995-01-31 2024-10-11 02:32:41.000 1995-01-31 2024-10-11 02:32:41 +9162 9162 9163 916.2 1832.4 9162 1995-02-01 2024-10-11 02:32:42.000 1995-02-01 2024-10-11 02:32:42 +9163 9163 9164 916.3 1832.6000000000001 9163 1995-02-02 2024-10-11 02:32:43.000 1995-02-02 2024-10-11 02:32:43 +9164 9164 9165 916.4 1832.8000000000002 9164 1995-02-03 2024-10-11 02:32:44.000 1995-02-03 2024-10-11 02:32:44 +9166 9166 9167 916.6 1833.2 9166 1995-02-05 2024-10-11 02:32:46.000 1995-02-05 2024-10-11 02:32:46 +9167 9167 9168 916.7 1833.4 9167 1995-02-06 2024-10-11 02:32:47.000 1995-02-06 2024-10-11 02:32:47 +9168 9168 9169 916.8 1833.6000000000001 9168 1995-02-07 2024-10-11 02:32:48.000 1995-02-07 2024-10-11 02:32:48 +9169 9169 9170 916.9 1833.8000000000002 9169 1995-02-08 2024-10-11 02:32:49.000 1995-02-08 2024-10-11 02:32:49 +9171 9171 9172 917.1 1834.2 9171 1995-02-10 2024-10-11 02:32:51.000 1995-02-10 2024-10-11 02:32:51 +9172 9172 9173 917.2 1834.4 9172 1995-02-11 2024-10-11 02:32:52.000 1995-02-11 2024-10-11 02:32:52 +9173 9173 9174 917.3 1834.6000000000001 9173 1995-02-12 2024-10-11 02:32:53.000 1995-02-12 2024-10-11 02:32:53 +9174 9174 9175 917.4 1834.8000000000002 9174 1995-02-13 2024-10-11 02:32:54.000 1995-02-13 2024-10-11 02:32:54 +9176 9176 9177 917.6 1835.2 9176 1995-02-15 2024-10-11 02:32:56.000 1995-02-15 2024-10-11 02:32:56 +9177 9177 9178 917.7 1835.4 9177 1995-02-16 2024-10-11 02:32:57.000 1995-02-16 2024-10-11 02:32:57 +9178 9178 9179 917.8 1835.6000000000001 9178 1995-02-17 2024-10-11 02:32:58.000 1995-02-17 2024-10-11 02:32:58 +9179 9179 9180 917.9 1835.8000000000002 9179 1995-02-18 2024-10-11 02:32:59.000 1995-02-18 2024-10-11 02:32:59 +9181 9181 9182 918.1 1836.2 9181 1995-02-20 2024-10-11 02:33:01.000 1995-02-20 2024-10-11 02:33:01 +9182 9182 9183 918.2 1836.4 9182 1995-02-21 2024-10-11 02:33:02.000 1995-02-21 2024-10-11 02:33:02 +9183 9183 9184 918.3 1836.6000000000001 9183 1995-02-22 2024-10-11 02:33:03.000 1995-02-22 2024-10-11 02:33:03 +9184 9184 9185 918.4 1836.8000000000002 9184 1995-02-23 2024-10-11 02:33:04.000 1995-02-23 2024-10-11 02:33:04 +9186 9186 9187 918.6 1837.2 9186 1995-02-25 2024-10-11 02:33:06.000 1995-02-25 2024-10-11 02:33:06 +9187 9187 9188 918.7 1837.4 9187 1995-02-26 2024-10-11 02:33:07.000 1995-02-26 2024-10-11 02:33:07 +9188 9188 9189 918.8 1837.6000000000001 9188 1995-02-27 2024-10-11 02:33:08.000 1995-02-27 2024-10-11 02:33:08 +9189 9189 9190 918.9 1837.8000000000002 9189 1995-02-28 2024-10-11 02:33:09.000 1995-02-28 2024-10-11 02:33:09 +9191 9191 9192 919.1 1838.2 9191 1995-03-02 2024-10-11 02:33:11.000 1995-03-02 2024-10-11 02:33:11 +9192 9192 9193 919.2 1838.4 9192 1995-03-03 2024-10-11 02:33:12.000 1995-03-03 2024-10-11 02:33:12 +9193 9193 9194 919.3 1838.6000000000001 9193 1995-03-04 2024-10-11 02:33:13.000 1995-03-04 2024-10-11 02:33:13 +9194 9194 9195 919.4 1838.8000000000002 9194 1995-03-05 2024-10-11 02:33:14.000 1995-03-05 2024-10-11 02:33:14 +9196 9196 9197 919.6 1839.2 9196 1995-03-07 2024-10-11 02:33:16.000 1995-03-07 2024-10-11 02:33:16 +9197 9197 9198 919.7 1839.4 9197 1995-03-08 2024-10-11 02:33:17.000 1995-03-08 2024-10-11 02:33:17 +9198 9198 9199 919.8 1839.6000000000001 9198 1995-03-09 2024-10-11 02:33:18.000 1995-03-09 2024-10-11 02:33:18 +9199 9199 9200 919.9 1839.8000000000002 9199 1995-03-10 2024-10-11 02:33:19.000 1995-03-10 2024-10-11 02:33:19 +9201 9201 9202 920.1 1840.2 9201 1995-03-12 2024-10-11 02:33:21.000 1995-03-12 2024-10-11 02:33:21 +9202 9202 9203 920.2 1840.4 9202 1995-03-13 2024-10-11 02:33:22.000 1995-03-13 2024-10-11 02:33:22 +9203 9203 9204 920.3 1840.6000000000001 9203 1995-03-14 2024-10-11 02:33:23.000 1995-03-14 2024-10-11 02:33:23 +9204 9204 9205 920.4 1840.8000000000002 9204 1995-03-15 2024-10-11 02:33:24.000 1995-03-15 2024-10-11 02:33:24 +9206 9206 9207 920.6 1841.2 9206 1995-03-17 2024-10-11 02:33:26.000 1995-03-17 2024-10-11 02:33:26 +9207 9207 9208 920.7 1841.4 9207 1995-03-18 2024-10-11 02:33:27.000 1995-03-18 2024-10-11 02:33:27 +9208 9208 9209 920.8 1841.6000000000001 9208 1995-03-19 2024-10-11 02:33:28.000 1995-03-19 2024-10-11 02:33:28 +9209 9209 9210 920.9 1841.8000000000002 9209 1995-03-20 2024-10-11 02:33:29.000 1995-03-20 2024-10-11 02:33:29 +9211 9211 9212 921.1 1842.2 9211 1995-03-22 2024-10-11 02:33:31.000 1995-03-22 2024-10-11 02:33:31 +9212 9212 9213 921.2 1842.4 9212 1995-03-23 2024-10-11 02:33:32.000 1995-03-23 2024-10-11 02:33:32 +9213 9213 9214 921.3 1842.6000000000001 9213 1995-03-24 2024-10-11 02:33:33.000 1995-03-24 2024-10-11 02:33:33 +9214 9214 9215 921.4 1842.8000000000002 9214 1995-03-25 2024-10-11 02:33:34.000 1995-03-25 2024-10-11 02:33:34 +9216 9216 9217 921.6 1843.2 9216 1995-03-27 2024-10-11 02:33:36.000 1995-03-27 2024-10-11 02:33:36 +9217 9217 9218 921.7 1843.4 9217 1995-03-28 2024-10-11 02:33:37.000 1995-03-28 2024-10-11 02:33:37 +9218 9218 9219 921.8 1843.6000000000001 9218 1995-03-29 2024-10-11 02:33:38.000 1995-03-29 2024-10-11 02:33:38 +9219 9219 9220 921.9 1843.8000000000002 9219 1995-03-30 2024-10-11 02:33:39.000 1995-03-30 2024-10-11 02:33:39 +9221 9221 9222 922.1 1844.2 9221 1995-04-01 2024-10-11 02:33:41.000 1995-04-01 2024-10-11 02:33:41 +9222 9222 9223 922.2 1844.4 9222 1995-04-02 2024-10-11 02:33:42.000 1995-04-02 2024-10-11 02:33:42 +9223 9223 9224 922.3 1844.6000000000001 9223 1995-04-03 2024-10-11 02:33:43.000 1995-04-03 2024-10-11 02:33:43 +9224 9224 9225 922.4 1844.8000000000002 9224 1995-04-04 2024-10-11 02:33:44.000 1995-04-04 2024-10-11 02:33:44 +9226 9226 9227 922.6 1845.2 9226 1995-04-06 2024-10-11 02:33:46.000 1995-04-06 2024-10-11 02:33:46 +9227 9227 9228 922.7 1845.4 9227 1995-04-07 2024-10-11 02:33:47.000 1995-04-07 2024-10-11 02:33:47 +9228 9228 9229 922.8 1845.6000000000001 9228 1995-04-08 2024-10-11 02:33:48.000 1995-04-08 2024-10-11 02:33:48 +9229 9229 9230 922.9 1845.8000000000002 9229 1995-04-09 2024-10-11 02:33:49.000 1995-04-09 2024-10-11 02:33:49 +9231 9231 9232 923.1 1846.2 9231 1995-04-11 2024-10-11 02:33:51.000 1995-04-11 2024-10-11 02:33:51 +9232 9232 9233 923.2 1846.4 9232 1995-04-12 2024-10-11 02:33:52.000 1995-04-12 2024-10-11 02:33:52 +9233 9233 9234 923.3 1846.6000000000001 9233 1995-04-13 2024-10-11 02:33:53.000 1995-04-13 2024-10-11 02:33:53 +9234 9234 9235 923.4 1846.8000000000002 9234 1995-04-14 2024-10-11 02:33:54.000 1995-04-14 2024-10-11 02:33:54 +9236 9236 9237 923.6 1847.2 9236 1995-04-16 2024-10-11 02:33:56.000 1995-04-16 2024-10-11 02:33:56 +9237 9237 9238 923.7 1847.4 9237 1995-04-17 2024-10-11 02:33:57.000 1995-04-17 2024-10-11 02:33:57 +9238 9238 9239 923.8 1847.6000000000001 9238 1995-04-18 2024-10-11 02:33:58.000 1995-04-18 2024-10-11 02:33:58 +9239 9239 9240 923.9 1847.8000000000002 9239 1995-04-19 2024-10-11 02:33:59.000 1995-04-19 2024-10-11 02:33:59 +9241 9241 9242 924.1 1848.2 9241 1995-04-21 2024-10-11 02:34:01.000 1995-04-21 2024-10-11 02:34:01 +9242 9242 9243 924.2 1848.4 9242 1995-04-22 2024-10-11 02:34:02.000 1995-04-22 2024-10-11 02:34:02 +9243 9243 9244 924.3 1848.6000000000001 9243 1995-04-23 2024-10-11 02:34:03.000 1995-04-23 2024-10-11 02:34:03 +9244 9244 9245 924.4 1848.8000000000002 9244 1995-04-24 2024-10-11 02:34:04.000 1995-04-24 2024-10-11 02:34:04 +9246 9246 9247 924.6 1849.2 9246 1995-04-26 2024-10-11 02:34:06.000 1995-04-26 2024-10-11 02:34:06 +9247 9247 9248 924.7 1849.4 9247 1995-04-27 2024-10-11 02:34:07.000 1995-04-27 2024-10-11 02:34:07 +9248 9248 9249 924.8 1849.6000000000001 9248 1995-04-28 2024-10-11 02:34:08.000 1995-04-28 2024-10-11 02:34:08 +9249 9249 9250 924.9 1849.8000000000002 9249 1995-04-29 2024-10-11 02:34:09.000 1995-04-29 2024-10-11 02:34:09 +9251 9251 9252 925.1 1850.2 9251 1995-05-01 2024-10-11 02:34:11.000 1995-05-01 2024-10-11 02:34:11 +9252 9252 9253 925.2 1850.4 9252 1995-05-02 2024-10-11 02:34:12.000 1995-05-02 2024-10-11 02:34:12 +9253 9253 9254 925.3 1850.6000000000001 9253 1995-05-03 2024-10-11 02:34:13.000 1995-05-03 2024-10-11 02:34:13 +9254 9254 9255 925.4 1850.8000000000002 9254 1995-05-04 2024-10-11 02:34:14.000 1995-05-04 2024-10-11 02:34:14 +9256 9256 9257 925.6 1851.2 9256 1995-05-06 2024-10-11 02:34:16.000 1995-05-06 2024-10-11 02:34:16 +9257 9257 9258 925.7 1851.4 9257 1995-05-07 2024-10-11 02:34:17.000 1995-05-07 2024-10-11 02:34:17 +9258 9258 9259 925.8 1851.6000000000001 9258 1995-05-08 2024-10-11 02:34:18.000 1995-05-08 2024-10-11 02:34:18 +9259 9259 9260 925.9 1851.8000000000002 9259 1995-05-09 2024-10-11 02:34:19.000 1995-05-09 2024-10-11 02:34:19 +9261 9261 9262 926.1 1852.2 9261 1995-05-11 2024-10-11 02:34:21.000 1995-05-11 2024-10-11 02:34:21 +9262 9262 9263 926.2 1852.4 9262 1995-05-12 2024-10-11 02:34:22.000 1995-05-12 2024-10-11 02:34:22 +9263 9263 9264 926.3 1852.6000000000001 9263 1995-05-13 2024-10-11 02:34:23.000 1995-05-13 2024-10-11 02:34:23 +9264 9264 9265 926.4 1852.8000000000002 9264 1995-05-14 2024-10-11 02:34:24.000 1995-05-14 2024-10-11 02:34:24 +9266 9266 9267 926.6 1853.2 9266 1995-05-16 2024-10-11 02:34:26.000 1995-05-16 2024-10-11 02:34:26 +9267 9267 9268 926.7 1853.4 9267 1995-05-17 2024-10-11 02:34:27.000 1995-05-17 2024-10-11 02:34:27 +9268 9268 9269 926.8 1853.6000000000001 9268 1995-05-18 2024-10-11 02:34:28.000 1995-05-18 2024-10-11 02:34:28 +9269 9269 9270 926.9 1853.8000000000002 9269 1995-05-19 2024-10-11 02:34:29.000 1995-05-19 2024-10-11 02:34:29 +9271 9271 9272 927.1 1854.2 9271 1995-05-21 2024-10-11 02:34:31.000 1995-05-21 2024-10-11 02:34:31 +9272 9272 9273 927.2 1854.4 9272 1995-05-22 2024-10-11 02:34:32.000 1995-05-22 2024-10-11 02:34:32 +9273 9273 9274 927.3 1854.6000000000001 9273 1995-05-23 2024-10-11 02:34:33.000 1995-05-23 2024-10-11 02:34:33 +9274 9274 9275 927.4 1854.8000000000002 9274 1995-05-24 2024-10-11 02:34:34.000 1995-05-24 2024-10-11 02:34:34 +9276 9276 9277 927.6 1855.2 9276 1995-05-26 2024-10-11 02:34:36.000 1995-05-26 2024-10-11 02:34:36 +9277 9277 9278 927.7 1855.4 9277 1995-05-27 2024-10-11 02:34:37.000 1995-05-27 2024-10-11 02:34:37 +9278 9278 9279 927.8 1855.6000000000001 9278 1995-05-28 2024-10-11 02:34:38.000 1995-05-28 2024-10-11 02:34:38 +9279 9279 9280 927.9 1855.8000000000002 9279 1995-05-29 2024-10-11 02:34:39.000 1995-05-29 2024-10-11 02:34:39 +9281 9281 9282 928.1 1856.2 9281 1995-05-31 2024-10-11 02:34:41.000 1995-05-31 2024-10-11 02:34:41 +9282 9282 9283 928.2 1856.4 9282 1995-06-01 2024-10-11 02:34:42.000 1995-06-01 2024-10-11 02:34:42 +9283 9283 9284 928.3 1856.6000000000001 9283 1995-06-02 2024-10-11 02:34:43.000 1995-06-02 2024-10-11 02:34:43 +9284 9284 9285 928.4 1856.8000000000002 9284 1995-06-03 2024-10-11 02:34:44.000 1995-06-03 2024-10-11 02:34:44 +9286 9286 9287 928.6 1857.2 9286 1995-06-05 2024-10-11 02:34:46.000 1995-06-05 2024-10-11 02:34:46 +9287 9287 9288 928.7 1857.4 9287 1995-06-06 2024-10-11 02:34:47.000 1995-06-06 2024-10-11 02:34:47 +9288 9288 9289 928.8 1857.6000000000001 9288 1995-06-07 2024-10-11 02:34:48.000 1995-06-07 2024-10-11 02:34:48 +9289 9289 9290 928.9 1857.8000000000002 9289 1995-06-08 2024-10-11 02:34:49.000 1995-06-08 2024-10-11 02:34:49 +9291 9291 9292 929.1 1858.2 9291 1995-06-10 2024-10-11 02:34:51.000 1995-06-10 2024-10-11 02:34:51 +9292 9292 9293 929.2 1858.4 9292 1995-06-11 2024-10-11 02:34:52.000 1995-06-11 2024-10-11 02:34:52 +9293 9293 9294 929.3 1858.6000000000001 9293 1995-06-12 2024-10-11 02:34:53.000 1995-06-12 2024-10-11 02:34:53 +9294 9294 9295 929.4 1858.8000000000002 9294 1995-06-13 2024-10-11 02:34:54.000 1995-06-13 2024-10-11 02:34:54 +9296 9296 9297 929.6 1859.2 9296 1995-06-15 2024-10-11 02:34:56.000 1995-06-15 2024-10-11 02:34:56 +9297 9297 9298 929.7 1859.4 9297 1995-06-16 2024-10-11 02:34:57.000 1995-06-16 2024-10-11 02:34:57 +9298 9298 9299 929.8 1859.6000000000001 9298 1995-06-17 2024-10-11 02:34:58.000 1995-06-17 2024-10-11 02:34:58 +9299 9299 9300 929.9 1859.8000000000002 9299 1995-06-18 2024-10-11 02:34:59.000 1995-06-18 2024-10-11 02:34:59 +9301 9301 9302 930.1 1860.2 9301 1995-06-20 2024-10-11 02:35:01.000 1995-06-20 2024-10-11 02:35:01 +9302 9302 9303 930.2 1860.4 9302 1995-06-21 2024-10-11 02:35:02.000 1995-06-21 2024-10-11 02:35:02 +9303 9303 9304 930.3 1860.6000000000001 9303 1995-06-22 2024-10-11 02:35:03.000 1995-06-22 2024-10-11 02:35:03 +9304 9304 9305 930.4 1860.8000000000002 9304 1995-06-23 2024-10-11 02:35:04.000 1995-06-23 2024-10-11 02:35:04 +9306 9306 9307 930.6 1861.2 9306 1995-06-25 2024-10-11 02:35:06.000 1995-06-25 2024-10-11 02:35:06 +9307 9307 9308 930.7 1861.4 9307 1995-06-26 2024-10-11 02:35:07.000 1995-06-26 2024-10-11 02:35:07 +9308 9308 9309 930.8 1861.6000000000001 9308 1995-06-27 2024-10-11 02:35:08.000 1995-06-27 2024-10-11 02:35:08 +9309 9309 9310 930.9 1861.8000000000002 9309 1995-06-28 2024-10-11 02:35:09.000 1995-06-28 2024-10-11 02:35:09 +9311 9311 9312 931.1 1862.2 9311 1995-06-30 2024-10-11 02:35:11.000 1995-06-30 2024-10-11 02:35:11 +9312 9312 9313 931.2 1862.4 9312 1995-07-01 2024-10-11 02:35:12.000 1995-07-01 2024-10-11 02:35:12 +9313 9313 9314 931.3 1862.6000000000001 9313 1995-07-02 2024-10-11 02:35:13.000 1995-07-02 2024-10-11 02:35:13 +9314 9314 9315 931.4 1862.8000000000002 9314 1995-07-03 2024-10-11 02:35:14.000 1995-07-03 2024-10-11 02:35:14 +9316 9316 9317 931.6 1863.2 9316 1995-07-05 2024-10-11 02:35:16.000 1995-07-05 2024-10-11 02:35:16 +9317 9317 9318 931.7 1863.4 9317 1995-07-06 2024-10-11 02:35:17.000 1995-07-06 2024-10-11 02:35:17 +9318 9318 9319 931.8 1863.6000000000001 9318 1995-07-07 2024-10-11 02:35:18.000 1995-07-07 2024-10-11 02:35:18 +9319 9319 9320 931.9 1863.8000000000002 9319 1995-07-08 2024-10-11 02:35:19.000 1995-07-08 2024-10-11 02:35:19 +9321 9321 9322 932.1 1864.2 9321 1995-07-10 2024-10-11 02:35:21.000 1995-07-10 2024-10-11 02:35:21 +9322 9322 9323 932.2 1864.4 9322 1995-07-11 2024-10-11 02:35:22.000 1995-07-11 2024-10-11 02:35:22 +9323 9323 9324 932.3 1864.6000000000001 9323 1995-07-12 2024-10-11 02:35:23.000 1995-07-12 2024-10-11 02:35:23 +9324 9324 9325 932.4 1864.8000000000002 9324 1995-07-13 2024-10-11 02:35:24.000 1995-07-13 2024-10-11 02:35:24 +9326 9326 9327 932.6 1865.2 9326 1995-07-15 2024-10-11 02:35:26.000 1995-07-15 2024-10-11 02:35:26 +9327 9327 9328 932.7 1865.4 9327 1995-07-16 2024-10-11 02:35:27.000 1995-07-16 2024-10-11 02:35:27 +9328 9328 9329 932.8 1865.6000000000001 9328 1995-07-17 2024-10-11 02:35:28.000 1995-07-17 2024-10-11 02:35:28 +9329 9329 9330 932.9 1865.8000000000002 9329 1995-07-18 2024-10-11 02:35:29.000 1995-07-18 2024-10-11 02:35:29 +9331 9331 9332 933.1 1866.2 9331 1995-07-20 2024-10-11 02:35:31.000 1995-07-20 2024-10-11 02:35:31 +9332 9332 9333 933.2 1866.4 9332 1995-07-21 2024-10-11 02:35:32.000 1995-07-21 2024-10-11 02:35:32 +9333 9333 9334 933.3 1866.6000000000001 9333 1995-07-22 2024-10-11 02:35:33.000 1995-07-22 2024-10-11 02:35:33 +9334 9334 9335 933.4 1866.8000000000002 9334 1995-07-23 2024-10-11 02:35:34.000 1995-07-23 2024-10-11 02:35:34 +9336 9336 9337 933.6 1867.2 9336 1995-07-25 2024-10-11 02:35:36.000 1995-07-25 2024-10-11 02:35:36 +9337 9337 9338 933.7 1867.4 9337 1995-07-26 2024-10-11 02:35:37.000 1995-07-26 2024-10-11 02:35:37 +9338 9338 9339 933.8 1867.6000000000001 9338 1995-07-27 2024-10-11 02:35:38.000 1995-07-27 2024-10-11 02:35:38 +9339 9339 9340 933.9 1867.8000000000002 9339 1995-07-28 2024-10-11 02:35:39.000 1995-07-28 2024-10-11 02:35:39 +9341 9341 9342 934.1 1868.2 9341 1995-07-30 2024-10-11 02:35:41.000 1995-07-30 2024-10-11 02:35:41 +9342 9342 9343 934.2 1868.4 9342 1995-07-31 2024-10-11 02:35:42.000 1995-07-31 2024-10-11 02:35:42 +9343 9343 9344 934.3 1868.6000000000001 9343 1995-08-01 2024-10-11 02:35:43.000 1995-08-01 2024-10-11 02:35:43 +9344 9344 9345 934.4 1868.8000000000002 9344 1995-08-02 2024-10-11 02:35:44.000 1995-08-02 2024-10-11 02:35:44 +9346 9346 9347 934.6 1869.2 9346 1995-08-04 2024-10-11 02:35:46.000 1995-08-04 2024-10-11 02:35:46 +9347 9347 9348 934.7 1869.4 9347 1995-08-05 2024-10-11 02:35:47.000 1995-08-05 2024-10-11 02:35:47 +9348 9348 9349 934.8 1869.6000000000001 9348 1995-08-06 2024-10-11 02:35:48.000 1995-08-06 2024-10-11 02:35:48 +9349 9349 9350 934.9 1869.8000000000002 9349 1995-08-07 2024-10-11 02:35:49.000 1995-08-07 2024-10-11 02:35:49 +9351 9351 9352 935.1 1870.2 9351 1995-08-09 2024-10-11 02:35:51.000 1995-08-09 2024-10-11 02:35:51 +9352 9352 9353 935.2 1870.4 9352 1995-08-10 2024-10-11 02:35:52.000 1995-08-10 2024-10-11 02:35:52 +9353 9353 9354 935.3 1870.6000000000001 9353 1995-08-11 2024-10-11 02:35:53.000 1995-08-11 2024-10-11 02:35:53 +9354 9354 9355 935.4 1870.8000000000002 9354 1995-08-12 2024-10-11 02:35:54.000 1995-08-12 2024-10-11 02:35:54 +9356 9356 9357 935.6 1871.2 9356 1995-08-14 2024-10-11 02:35:56.000 1995-08-14 2024-10-11 02:35:56 +9357 9357 9358 935.7 1871.4 9357 1995-08-15 2024-10-11 02:35:57.000 1995-08-15 2024-10-11 02:35:57 +9358 9358 9359 935.8 1871.6000000000001 9358 1995-08-16 2024-10-11 02:35:58.000 1995-08-16 2024-10-11 02:35:58 +9359 9359 9360 935.9 1871.8000000000002 9359 1995-08-17 2024-10-11 02:35:59.000 1995-08-17 2024-10-11 02:35:59 +9361 9361 9362 936.1 1872.2 9361 1995-08-19 2024-10-11 02:36:01.000 1995-08-19 2024-10-11 02:36:01 +9362 9362 9363 936.2 1872.4 9362 1995-08-20 2024-10-11 02:36:02.000 1995-08-20 2024-10-11 02:36:02 +9363 9363 9364 936.3 1872.6000000000001 9363 1995-08-21 2024-10-11 02:36:03.000 1995-08-21 2024-10-11 02:36:03 +9364 9364 9365 936.4 1872.8000000000002 9364 1995-08-22 2024-10-11 02:36:04.000 1995-08-22 2024-10-11 02:36:04 +9366 9366 9367 936.6 1873.2 9366 1995-08-24 2024-10-11 02:36:06.000 1995-08-24 2024-10-11 02:36:06 +9367 9367 9368 936.7 1873.4 9367 1995-08-25 2024-10-11 02:36:07.000 1995-08-25 2024-10-11 02:36:07 +9368 9368 9369 936.8 1873.6000000000001 9368 1995-08-26 2024-10-11 02:36:08.000 1995-08-26 2024-10-11 02:36:08 +9369 9369 9370 936.9 1873.8000000000002 9369 1995-08-27 2024-10-11 02:36:09.000 1995-08-27 2024-10-11 02:36:09 +9371 9371 9372 937.1 1874.2 9371 1995-08-29 2024-10-11 02:36:11.000 1995-08-29 2024-10-11 02:36:11 +9372 9372 9373 937.2 1874.4 9372 1995-08-30 2024-10-11 02:36:12.000 1995-08-30 2024-10-11 02:36:12 +9373 9373 9374 937.3 1874.6000000000001 9373 1995-08-31 2024-10-11 02:36:13.000 1995-08-31 2024-10-11 02:36:13 +9374 9374 9375 937.4 1874.8000000000002 9374 1995-09-01 2024-10-11 02:36:14.000 1995-09-01 2024-10-11 02:36:14 +9376 9376 9377 937.6 1875.2 9376 1995-09-03 2024-10-11 02:36:16.000 1995-09-03 2024-10-11 02:36:16 +9377 9377 9378 937.7 1875.4 9377 1995-09-04 2024-10-11 02:36:17.000 1995-09-04 2024-10-11 02:36:17 +9378 9378 9379 937.8 1875.6000000000001 9378 1995-09-05 2024-10-11 02:36:18.000 1995-09-05 2024-10-11 02:36:18 +9379 9379 9380 937.9 1875.8000000000002 9379 1995-09-06 2024-10-11 02:36:19.000 1995-09-06 2024-10-11 02:36:19 +9381 9381 9382 938.1 1876.2 9381 1995-09-08 2024-10-11 02:36:21.000 1995-09-08 2024-10-11 02:36:21 +9382 9382 9383 938.2 1876.4 9382 1995-09-09 2024-10-11 02:36:22.000 1995-09-09 2024-10-11 02:36:22 +9383 9383 9384 938.3 1876.6000000000001 9383 1995-09-10 2024-10-11 02:36:23.000 1995-09-10 2024-10-11 02:36:23 +9384 9384 9385 938.4 1876.8000000000002 9384 1995-09-11 2024-10-11 02:36:24.000 1995-09-11 2024-10-11 02:36:24 +9386 9386 9387 938.6 1877.2 9386 1995-09-13 2024-10-11 02:36:26.000 1995-09-13 2024-10-11 02:36:26 +9387 9387 9388 938.7 1877.4 9387 1995-09-14 2024-10-11 02:36:27.000 1995-09-14 2024-10-11 02:36:27 +9388 9388 9389 938.8 1877.6000000000001 9388 1995-09-15 2024-10-11 02:36:28.000 1995-09-15 2024-10-11 02:36:28 +9389 9389 9390 938.9 1877.8000000000002 9389 1995-09-16 2024-10-11 02:36:29.000 1995-09-16 2024-10-11 02:36:29 +9391 9391 9392 939.1 1878.2 9391 1995-09-18 2024-10-11 02:36:31.000 1995-09-18 2024-10-11 02:36:31 +9392 9392 9393 939.2 1878.4 9392 1995-09-19 2024-10-11 02:36:32.000 1995-09-19 2024-10-11 02:36:32 +9393 9393 9394 939.3 1878.6000000000001 9393 1995-09-20 2024-10-11 02:36:33.000 1995-09-20 2024-10-11 02:36:33 +9394 9394 9395 939.4 1878.8000000000002 9394 1995-09-21 2024-10-11 02:36:34.000 1995-09-21 2024-10-11 02:36:34 +9396 9396 9397 939.6 1879.2 9396 1995-09-23 2024-10-11 02:36:36.000 1995-09-23 2024-10-11 02:36:36 +9397 9397 9398 939.7 1879.4 9397 1995-09-24 2024-10-11 02:36:37.000 1995-09-24 2024-10-11 02:36:37 +9398 9398 9399 939.8 1879.6000000000001 9398 1995-09-25 2024-10-11 02:36:38.000 1995-09-25 2024-10-11 02:36:38 +9399 9399 9400 939.9 1879.8000000000002 9399 1995-09-26 2024-10-11 02:36:39.000 1995-09-26 2024-10-11 02:36:39 +9401 9401 9402 940.1 1880.2 9401 1995-09-28 2024-10-11 02:36:41.000 1995-09-28 2024-10-11 02:36:41 +9402 9402 9403 940.2 1880.4 9402 1995-09-29 2024-10-11 02:36:42.000 1995-09-29 2024-10-11 02:36:42 +9403 9403 9404 940.3 1880.6000000000001 9403 1995-09-30 2024-10-11 02:36:43.000 1995-09-30 2024-10-11 02:36:43 +9404 9404 9405 940.4 1880.8000000000002 9404 1995-10-01 2024-10-11 02:36:44.000 1995-10-01 2024-10-11 02:36:44 +9406 9406 9407 940.6 1881.2 9406 1995-10-03 2024-10-11 02:36:46.000 1995-10-03 2024-10-11 02:36:46 +9407 9407 9408 940.7 1881.4 9407 1995-10-04 2024-10-11 02:36:47.000 1995-10-04 2024-10-11 02:36:47 +9408 9408 9409 940.8 1881.6000000000001 9408 1995-10-05 2024-10-11 02:36:48.000 1995-10-05 2024-10-11 02:36:48 +9409 9409 9410 940.9 1881.8000000000002 9409 1995-10-06 2024-10-11 02:36:49.000 1995-10-06 2024-10-11 02:36:49 +9411 9411 9412 941.1 1882.2 9411 1995-10-08 2024-10-11 02:36:51.000 1995-10-08 2024-10-11 02:36:51 +9412 9412 9413 941.2 1882.4 9412 1995-10-09 2024-10-11 02:36:52.000 1995-10-09 2024-10-11 02:36:52 +9413 9413 9414 941.3 1882.6000000000001 9413 1995-10-10 2024-10-11 02:36:53.000 1995-10-10 2024-10-11 02:36:53 +9414 9414 9415 941.4 1882.8000000000002 9414 1995-10-11 2024-10-11 02:36:54.000 1995-10-11 2024-10-11 02:36:54 +9416 9416 9417 941.6 1883.2 9416 1995-10-13 2024-10-11 02:36:56.000 1995-10-13 2024-10-11 02:36:56 +9417 9417 9418 941.7 1883.4 9417 1995-10-14 2024-10-11 02:36:57.000 1995-10-14 2024-10-11 02:36:57 +9418 9418 9419 941.8 1883.6000000000001 9418 1995-10-15 2024-10-11 02:36:58.000 1995-10-15 2024-10-11 02:36:58 +9419 9419 9420 941.9 1883.8000000000002 9419 1995-10-16 2024-10-11 02:36:59.000 1995-10-16 2024-10-11 02:36:59 +9421 9421 9422 942.1 1884.2 9421 1995-10-18 2024-10-11 02:37:01.000 1995-10-18 2024-10-11 02:37:01 +9422 9422 9423 942.2 1884.4 9422 1995-10-19 2024-10-11 02:37:02.000 1995-10-19 2024-10-11 02:37:02 +9423 9423 9424 942.3 1884.6000000000001 9423 1995-10-20 2024-10-11 02:37:03.000 1995-10-20 2024-10-11 02:37:03 +9424 9424 9425 942.4 1884.8000000000002 9424 1995-10-21 2024-10-11 02:37:04.000 1995-10-21 2024-10-11 02:37:04 +9426 9426 9427 942.6 1885.2 9426 1995-10-23 2024-10-11 02:37:06.000 1995-10-23 2024-10-11 02:37:06 +9427 9427 9428 942.7 1885.4 9427 1995-10-24 2024-10-11 02:37:07.000 1995-10-24 2024-10-11 02:37:07 +9428 9428 9429 942.8 1885.6000000000001 9428 1995-10-25 2024-10-11 02:37:08.000 1995-10-25 2024-10-11 02:37:08 +9429 9429 9430 942.9 1885.8000000000002 9429 1995-10-26 2024-10-11 02:37:09.000 1995-10-26 2024-10-11 02:37:09 +9431 9431 9432 943.1 1886.2 9431 1995-10-28 2024-10-11 02:37:11.000 1995-10-28 2024-10-11 02:37:11 +9432 9432 9433 943.2 1886.4 9432 1995-10-29 2024-10-11 02:37:12.000 1995-10-29 2024-10-11 02:37:12 +9433 9433 9434 943.3 1886.6000000000001 9433 1995-10-30 2024-10-11 02:37:13.000 1995-10-30 2024-10-11 02:37:13 +9434 9434 9435 943.4 1886.8000000000002 9434 1995-10-31 2024-10-11 02:37:14.000 1995-10-31 2024-10-11 02:37:14 +9436 9436 9437 943.6 1887.2 9436 1995-11-02 2024-10-11 02:37:16.000 1995-11-02 2024-10-11 02:37:16 +9437 9437 9438 943.7 1887.4 9437 1995-11-03 2024-10-11 02:37:17.000 1995-11-03 2024-10-11 02:37:17 +9438 9438 9439 943.8 1887.6000000000001 9438 1995-11-04 2024-10-11 02:37:18.000 1995-11-04 2024-10-11 02:37:18 +9439 9439 9440 943.9 1887.8000000000002 9439 1995-11-05 2024-10-11 02:37:19.000 1995-11-05 2024-10-11 02:37:19 +9441 9441 9442 944.1 1888.2 9441 1995-11-07 2024-10-11 02:37:21.000 1995-11-07 2024-10-11 02:37:21 +9442 9442 9443 944.2 1888.4 9442 1995-11-08 2024-10-11 02:37:22.000 1995-11-08 2024-10-11 02:37:22 +9443 9443 9444 944.3 1888.6000000000001 9443 1995-11-09 2024-10-11 02:37:23.000 1995-11-09 2024-10-11 02:37:23 +9444 9444 9445 944.4 1888.8000000000002 9444 1995-11-10 2024-10-11 02:37:24.000 1995-11-10 2024-10-11 02:37:24 +9446 9446 9447 944.6 1889.2 9446 1995-11-12 2024-10-11 02:37:26.000 1995-11-12 2024-10-11 02:37:26 +9447 9447 9448 944.7 1889.4 9447 1995-11-13 2024-10-11 02:37:27.000 1995-11-13 2024-10-11 02:37:27 +9448 9448 9449 944.8 1889.6000000000001 9448 1995-11-14 2024-10-11 02:37:28.000 1995-11-14 2024-10-11 02:37:28 +9449 9449 9450 944.9 1889.8000000000002 9449 1995-11-15 2024-10-11 02:37:29.000 1995-11-15 2024-10-11 02:37:29 +9451 9451 9452 945.1 1890.2 9451 1995-11-17 2024-10-11 02:37:31.000 1995-11-17 2024-10-11 02:37:31 +9452 9452 9453 945.2 1890.4 9452 1995-11-18 2024-10-11 02:37:32.000 1995-11-18 2024-10-11 02:37:32 +9453 9453 9454 945.3 1890.6000000000001 9453 1995-11-19 2024-10-11 02:37:33.000 1995-11-19 2024-10-11 02:37:33 +9454 9454 9455 945.4 1890.8000000000002 9454 1995-11-20 2024-10-11 02:37:34.000 1995-11-20 2024-10-11 02:37:34 +9456 9456 9457 945.6 1891.2 9456 1995-11-22 2024-10-11 02:37:36.000 1995-11-22 2024-10-11 02:37:36 +9457 9457 9458 945.7 1891.4 9457 1995-11-23 2024-10-11 02:37:37.000 1995-11-23 2024-10-11 02:37:37 +9458 9458 9459 945.8 1891.6000000000001 9458 1995-11-24 2024-10-11 02:37:38.000 1995-11-24 2024-10-11 02:37:38 +9459 9459 9460 945.9 1891.8000000000002 9459 1995-11-25 2024-10-11 02:37:39.000 1995-11-25 2024-10-11 02:37:39 +9461 9461 9462 946.1 1892.2 9461 1995-11-27 2024-10-11 02:37:41.000 1995-11-27 2024-10-11 02:37:41 +9462 9462 9463 946.2 1892.4 9462 1995-11-28 2024-10-11 02:37:42.000 1995-11-28 2024-10-11 02:37:42 +9463 9463 9464 946.3 1892.6000000000001 9463 1995-11-29 2024-10-11 02:37:43.000 1995-11-29 2024-10-11 02:37:43 +9464 9464 9465 946.4 1892.8000000000002 9464 1995-11-30 2024-10-11 02:37:44.000 1995-11-30 2024-10-11 02:37:44 +9466 9466 9467 946.6 1893.2 9466 1995-12-02 2024-10-11 02:37:46.000 1995-12-02 2024-10-11 02:37:46 +9467 9467 9468 946.7 1893.4 9467 1995-12-03 2024-10-11 02:37:47.000 1995-12-03 2024-10-11 02:37:47 +9468 9468 9469 946.8 1893.6000000000001 9468 1995-12-04 2024-10-11 02:37:48.000 1995-12-04 2024-10-11 02:37:48 +9469 9469 9470 946.9 1893.8000000000002 9469 1995-12-05 2024-10-11 02:37:49.000 1995-12-05 2024-10-11 02:37:49 +9471 9471 9472 947.1 1894.2 9471 1995-12-07 2024-10-11 02:37:51.000 1995-12-07 2024-10-11 02:37:51 +9472 9472 9473 947.2 1894.4 9472 1995-12-08 2024-10-11 02:37:52.000 1995-12-08 2024-10-11 02:37:52 +9473 9473 9474 947.3 1894.6000000000001 9473 1995-12-09 2024-10-11 02:37:53.000 1995-12-09 2024-10-11 02:37:53 +9474 9474 9475 947.4 1894.8000000000002 9474 1995-12-10 2024-10-11 02:37:54.000 1995-12-10 2024-10-11 02:37:54 +9476 9476 9477 947.6 1895.2 9476 1995-12-12 2024-10-11 02:37:56.000 1995-12-12 2024-10-11 02:37:56 +9477 9477 9478 947.7 1895.4 9477 1995-12-13 2024-10-11 02:37:57.000 1995-12-13 2024-10-11 02:37:57 +9478 9478 9479 947.8 1895.6000000000001 9478 1995-12-14 2024-10-11 02:37:58.000 1995-12-14 2024-10-11 02:37:58 +9479 9479 9480 947.9 1895.8000000000002 9479 1995-12-15 2024-10-11 02:37:59.000 1995-12-15 2024-10-11 02:37:59 +9481 9481 9482 948.1 1896.2 9481 1995-12-17 2024-10-11 02:38:01.000 1995-12-17 2024-10-11 02:38:01 +9482 9482 9483 948.2 1896.4 9482 1995-12-18 2024-10-11 02:38:02.000 1995-12-18 2024-10-11 02:38:02 +9483 9483 9484 948.3 1896.6000000000001 9483 1995-12-19 2024-10-11 02:38:03.000 1995-12-19 2024-10-11 02:38:03 +9484 9484 9485 948.4 1896.8000000000002 9484 1995-12-20 2024-10-11 02:38:04.000 1995-12-20 2024-10-11 02:38:04 +9486 9486 9487 948.6 1897.2 9486 1995-12-22 2024-10-11 02:38:06.000 1995-12-22 2024-10-11 02:38:06 +9487 9487 9488 948.7 1897.4 9487 1995-12-23 2024-10-11 02:38:07.000 1995-12-23 2024-10-11 02:38:07 +9488 9488 9489 948.8 1897.6000000000001 9488 1995-12-24 2024-10-11 02:38:08.000 1995-12-24 2024-10-11 02:38:08 +9489 9489 9490 948.9 1897.8000000000002 9489 1995-12-25 2024-10-11 02:38:09.000 1995-12-25 2024-10-11 02:38:09 +9491 9491 9492 949.1 1898.2 9491 1995-12-27 2024-10-11 02:38:11.000 1995-12-27 2024-10-11 02:38:11 +9492 9492 9493 949.2 1898.4 9492 1995-12-28 2024-10-11 02:38:12.000 1995-12-28 2024-10-11 02:38:12 +9493 9493 9494 949.3 1898.6000000000001 9493 1995-12-29 2024-10-11 02:38:13.000 1995-12-29 2024-10-11 02:38:13 +9494 9494 9495 949.4 1898.8000000000002 9494 1995-12-30 2024-10-11 02:38:14.000 1995-12-30 2024-10-11 02:38:14 +9496 9496 9497 949.6 1899.2 9496 1996-01-01 2024-10-11 02:38:16.000 1996-01-01 2024-10-11 02:38:16 +9497 9497 9498 949.7 1899.4 9497 1996-01-02 2024-10-11 02:38:17.000 1996-01-02 2024-10-11 02:38:17 +9498 9498 9499 949.8 1899.6000000000001 9498 1996-01-03 2024-10-11 02:38:18.000 1996-01-03 2024-10-11 02:38:18 +9499 9499 9500 949.9 1899.8000000000002 9499 1996-01-04 2024-10-11 02:38:19.000 1996-01-04 2024-10-11 02:38:19 +9501 9501 9502 950.1 1900.2 9501 1996-01-06 2024-10-11 02:38:21.000 1996-01-06 2024-10-11 02:38:21 +9502 9502 9503 950.2 1900.4 9502 1996-01-07 2024-10-11 02:38:22.000 1996-01-07 2024-10-11 02:38:22 +9503 9503 9504 950.3 1900.6000000000001 9503 1996-01-08 2024-10-11 02:38:23.000 1996-01-08 2024-10-11 02:38:23 +9504 9504 9505 950.4 1900.8000000000002 9504 1996-01-09 2024-10-11 02:38:24.000 1996-01-09 2024-10-11 02:38:24 +9506 9506 9507 950.6 1901.2 9506 1996-01-11 2024-10-11 02:38:26.000 1996-01-11 2024-10-11 02:38:26 +9507 9507 9508 950.7 1901.4 9507 1996-01-12 2024-10-11 02:38:27.000 1996-01-12 2024-10-11 02:38:27 +9508 9508 9509 950.8 1901.6000000000001 9508 1996-01-13 2024-10-11 02:38:28.000 1996-01-13 2024-10-11 02:38:28 +9509 9509 9510 950.9 1901.8000000000002 9509 1996-01-14 2024-10-11 02:38:29.000 1996-01-14 2024-10-11 02:38:29 +9511 9511 9512 951.1 1902.2 9511 1996-01-16 2024-10-11 02:38:31.000 1996-01-16 2024-10-11 02:38:31 +9512 9512 9513 951.2 1902.4 9512 1996-01-17 2024-10-11 02:38:32.000 1996-01-17 2024-10-11 02:38:32 +9513 9513 9514 951.3 1902.6000000000001 9513 1996-01-18 2024-10-11 02:38:33.000 1996-01-18 2024-10-11 02:38:33 +9514 9514 9515 951.4 1902.8000000000002 9514 1996-01-19 2024-10-11 02:38:34.000 1996-01-19 2024-10-11 02:38:34 +9516 9516 9517 951.6 1903.2 9516 1996-01-21 2024-10-11 02:38:36.000 1996-01-21 2024-10-11 02:38:36 +9517 9517 9518 951.7 1903.4 9517 1996-01-22 2024-10-11 02:38:37.000 1996-01-22 2024-10-11 02:38:37 +9518 9518 9519 951.8 1903.6000000000001 9518 1996-01-23 2024-10-11 02:38:38.000 1996-01-23 2024-10-11 02:38:38 +9519 9519 9520 951.9 1903.8000000000002 9519 1996-01-24 2024-10-11 02:38:39.000 1996-01-24 2024-10-11 02:38:39 +9521 9521 9522 952.1 1904.2 9521 1996-01-26 2024-10-11 02:38:41.000 1996-01-26 2024-10-11 02:38:41 +9522 9522 9523 952.2 1904.4 9522 1996-01-27 2024-10-11 02:38:42.000 1996-01-27 2024-10-11 02:38:42 +9523 9523 9524 952.3 1904.6000000000001 9523 1996-01-28 2024-10-11 02:38:43.000 1996-01-28 2024-10-11 02:38:43 +9524 9524 9525 952.4 1904.8000000000002 9524 1996-01-29 2024-10-11 02:38:44.000 1996-01-29 2024-10-11 02:38:44 +9526 9526 9527 952.6 1905.2 9526 1996-01-31 2024-10-11 02:38:46.000 1996-01-31 2024-10-11 02:38:46 +9527 9527 9528 952.7 1905.4 9527 1996-02-01 2024-10-11 02:38:47.000 1996-02-01 2024-10-11 02:38:47 +9528 9528 9529 952.8 1905.6000000000001 9528 1996-02-02 2024-10-11 02:38:48.000 1996-02-02 2024-10-11 02:38:48 +9529 9529 9530 952.9 1905.8000000000002 9529 1996-02-03 2024-10-11 02:38:49.000 1996-02-03 2024-10-11 02:38:49 +9531 9531 9532 953.1 1906.2 9531 1996-02-05 2024-10-11 02:38:51.000 1996-02-05 2024-10-11 02:38:51 +9532 9532 9533 953.2 1906.4 9532 1996-02-06 2024-10-11 02:38:52.000 1996-02-06 2024-10-11 02:38:52 +9533 9533 9534 953.3 1906.6000000000001 9533 1996-02-07 2024-10-11 02:38:53.000 1996-02-07 2024-10-11 02:38:53 +9534 9534 9535 953.4 1906.8000000000002 9534 1996-02-08 2024-10-11 02:38:54.000 1996-02-08 2024-10-11 02:38:54 +9536 9536 9537 953.6 1907.2 9536 1996-02-10 2024-10-11 02:38:56.000 1996-02-10 2024-10-11 02:38:56 +9537 9537 9538 953.7 1907.4 9537 1996-02-11 2024-10-11 02:38:57.000 1996-02-11 2024-10-11 02:38:57 +9538 9538 9539 953.8 1907.6000000000001 9538 1996-02-12 2024-10-11 02:38:58.000 1996-02-12 2024-10-11 02:38:58 +9539 9539 9540 953.9 1907.8000000000002 9539 1996-02-13 2024-10-11 02:38:59.000 1996-02-13 2024-10-11 02:38:59 +9541 9541 9542 954.1 1908.2 9541 1996-02-15 2024-10-11 02:39:01.000 1996-02-15 2024-10-11 02:39:01 +9542 9542 9543 954.2 1908.4 9542 1996-02-16 2024-10-11 02:39:02.000 1996-02-16 2024-10-11 02:39:02 +9543 9543 9544 954.3 1908.6000000000001 9543 1996-02-17 2024-10-11 02:39:03.000 1996-02-17 2024-10-11 02:39:03 +9544 9544 9545 954.4 1908.8000000000002 9544 1996-02-18 2024-10-11 02:39:04.000 1996-02-18 2024-10-11 02:39:04 +9546 9546 9547 954.6 1909.2 9546 1996-02-20 2024-10-11 02:39:06.000 1996-02-20 2024-10-11 02:39:06 +9547 9547 9548 954.7 1909.4 9547 1996-02-21 2024-10-11 02:39:07.000 1996-02-21 2024-10-11 02:39:07 +9548 9548 9549 954.8 1909.6000000000001 9548 1996-02-22 2024-10-11 02:39:08.000 1996-02-22 2024-10-11 02:39:08 +9549 9549 9550 954.9 1909.8000000000002 9549 1996-02-23 2024-10-11 02:39:09.000 1996-02-23 2024-10-11 02:39:09 +9551 9551 9552 955.1 1910.2 9551 1996-02-25 2024-10-11 02:39:11.000 1996-02-25 2024-10-11 02:39:11 +9552 9552 9553 955.2 1910.4 9552 1996-02-26 2024-10-11 02:39:12.000 1996-02-26 2024-10-11 02:39:12 +9553 9553 9554 955.3 1910.6000000000001 9553 1996-02-27 2024-10-11 02:39:13.000 1996-02-27 2024-10-11 02:39:13 +9554 9554 9555 955.4 1910.8000000000002 9554 1996-02-28 2024-10-11 02:39:14.000 1996-02-28 2024-10-11 02:39:14 +9556 9556 9557 955.6 1911.2 9556 1996-03-01 2024-10-11 02:39:16.000 1996-03-01 2024-10-11 02:39:16 +9557 9557 9558 955.7 1911.4 9557 1996-03-02 2024-10-11 02:39:17.000 1996-03-02 2024-10-11 02:39:17 +9558 9558 9559 955.8 1911.6000000000001 9558 1996-03-03 2024-10-11 02:39:18.000 1996-03-03 2024-10-11 02:39:18 +9559 9559 9560 955.9 1911.8000000000002 9559 1996-03-04 2024-10-11 02:39:19.000 1996-03-04 2024-10-11 02:39:19 +9561 9561 9562 956.1 1912.2 9561 1996-03-06 2024-10-11 02:39:21.000 1996-03-06 2024-10-11 02:39:21 +9562 9562 9563 956.2 1912.4 9562 1996-03-07 2024-10-11 02:39:22.000 1996-03-07 2024-10-11 02:39:22 +9563 9563 9564 956.3 1912.6000000000001 9563 1996-03-08 2024-10-11 02:39:23.000 1996-03-08 2024-10-11 02:39:23 +9564 9564 9565 956.4 1912.8000000000002 9564 1996-03-09 2024-10-11 02:39:24.000 1996-03-09 2024-10-11 02:39:24 +9566 9566 9567 956.6 1913.2 9566 1996-03-11 2024-10-11 02:39:26.000 1996-03-11 2024-10-11 02:39:26 +9567 9567 9568 956.7 1913.4 9567 1996-03-12 2024-10-11 02:39:27.000 1996-03-12 2024-10-11 02:39:27 +9568 9568 9569 956.8 1913.6000000000001 9568 1996-03-13 2024-10-11 02:39:28.000 1996-03-13 2024-10-11 02:39:28 +9569 9569 9570 956.9 1913.8000000000002 9569 1996-03-14 2024-10-11 02:39:29.000 1996-03-14 2024-10-11 02:39:29 +9571 9571 9572 957.1 1914.2 9571 1996-03-16 2024-10-11 02:39:31.000 1996-03-16 2024-10-11 02:39:31 +9572 9572 9573 957.2 1914.4 9572 1996-03-17 2024-10-11 02:39:32.000 1996-03-17 2024-10-11 02:39:32 +9573 9573 9574 957.3 1914.6000000000001 9573 1996-03-18 2024-10-11 02:39:33.000 1996-03-18 2024-10-11 02:39:33 +9574 9574 9575 957.4 1914.8000000000002 9574 1996-03-19 2024-10-11 02:39:34.000 1996-03-19 2024-10-11 02:39:34 +9576 9576 9577 957.6 1915.2 9576 1996-03-21 2024-10-11 02:39:36.000 1996-03-21 2024-10-11 02:39:36 +9577 9577 9578 957.7 1915.4 9577 1996-03-22 2024-10-11 02:39:37.000 1996-03-22 2024-10-11 02:39:37 +9578 9578 9579 957.8 1915.6000000000001 9578 1996-03-23 2024-10-11 02:39:38.000 1996-03-23 2024-10-11 02:39:38 +9579 9579 9580 957.9 1915.8000000000002 9579 1996-03-24 2024-10-11 02:39:39.000 1996-03-24 2024-10-11 02:39:39 +9581 9581 9582 958.1 1916.2 9581 1996-03-26 2024-10-11 02:39:41.000 1996-03-26 2024-10-11 02:39:41 +9582 9582 9583 958.2 1916.4 9582 1996-03-27 2024-10-11 02:39:42.000 1996-03-27 2024-10-11 02:39:42 +9583 9583 9584 958.3 1916.6000000000001 9583 1996-03-28 2024-10-11 02:39:43.000 1996-03-28 2024-10-11 02:39:43 +9584 9584 9585 958.4 1916.8000000000002 9584 1996-03-29 2024-10-11 02:39:44.000 1996-03-29 2024-10-11 02:39:44 +9586 9586 9587 958.6 1917.2 9586 1996-03-31 2024-10-11 02:39:46.000 1996-03-31 2024-10-11 02:39:46 +9587 9587 9588 958.7 1917.4 9587 1996-04-01 2024-10-11 02:39:47.000 1996-04-01 2024-10-11 02:39:47 +9588 9588 9589 958.8 1917.6000000000001 9588 1996-04-02 2024-10-11 02:39:48.000 1996-04-02 2024-10-11 02:39:48 +9589 9589 9590 958.9 1917.8000000000002 9589 1996-04-03 2024-10-11 02:39:49.000 1996-04-03 2024-10-11 02:39:49 +9591 9591 9592 959.1 1918.2 9591 1996-04-05 2024-10-11 02:39:51.000 1996-04-05 2024-10-11 02:39:51 +9592 9592 9593 959.2 1918.4 9592 1996-04-06 2024-10-11 02:39:52.000 1996-04-06 2024-10-11 02:39:52 +9593 9593 9594 959.3 1918.6000000000001 9593 1996-04-07 2024-10-11 02:39:53.000 1996-04-07 2024-10-11 02:39:53 +9594 9594 9595 959.4 1918.8000000000002 9594 1996-04-08 2024-10-11 02:39:54.000 1996-04-08 2024-10-11 02:39:54 +9596 9596 9597 959.6 1919.2 9596 1996-04-10 2024-10-11 02:39:56.000 1996-04-10 2024-10-11 02:39:56 +9597 9597 9598 959.7 1919.4 9597 1996-04-11 2024-10-11 02:39:57.000 1996-04-11 2024-10-11 02:39:57 +9598 9598 9599 959.8 1919.6000000000001 9598 1996-04-12 2024-10-11 02:39:58.000 1996-04-12 2024-10-11 02:39:58 +9599 9599 9600 959.9 1919.8000000000002 9599 1996-04-13 2024-10-11 02:39:59.000 1996-04-13 2024-10-11 02:39:59 +9601 9601 9602 960.1 1920.2 9601 1996-04-15 2024-10-11 02:40:01.000 1996-04-15 2024-10-11 02:40:01 +9602 9602 9603 960.2 1920.4 9602 1996-04-16 2024-10-11 02:40:02.000 1996-04-16 2024-10-11 02:40:02 +9603 9603 9604 960.3 1920.6000000000001 9603 1996-04-17 2024-10-11 02:40:03.000 1996-04-17 2024-10-11 02:40:03 +9604 9604 9605 960.4 1920.8000000000002 9604 1996-04-18 2024-10-11 02:40:04.000 1996-04-18 2024-10-11 02:40:04 +9606 9606 9607 960.6 1921.2 9606 1996-04-20 2024-10-11 02:40:06.000 1996-04-20 2024-10-11 02:40:06 +9607 9607 9608 960.7 1921.4 9607 1996-04-21 2024-10-11 02:40:07.000 1996-04-21 2024-10-11 02:40:07 +9608 9608 9609 960.8 1921.6000000000001 9608 1996-04-22 2024-10-11 02:40:08.000 1996-04-22 2024-10-11 02:40:08 +9609 9609 9610 960.9 1921.8000000000002 9609 1996-04-23 2024-10-11 02:40:09.000 1996-04-23 2024-10-11 02:40:09 +9611 9611 9612 961.1 1922.2 9611 1996-04-25 2024-10-11 02:40:11.000 1996-04-25 2024-10-11 02:40:11 +9612 9612 9613 961.2 1922.4 9612 1996-04-26 2024-10-11 02:40:12.000 1996-04-26 2024-10-11 02:40:12 +9613 9613 9614 961.3 1922.6000000000001 9613 1996-04-27 2024-10-11 02:40:13.000 1996-04-27 2024-10-11 02:40:13 +9614 9614 9615 961.4 1922.8000000000002 9614 1996-04-28 2024-10-11 02:40:14.000 1996-04-28 2024-10-11 02:40:14 +9616 9616 9617 961.6 1923.2 9616 1996-04-30 2024-10-11 02:40:16.000 1996-04-30 2024-10-11 02:40:16 +9617 9617 9618 961.7 1923.4 9617 1996-05-01 2024-10-11 02:40:17.000 1996-05-01 2024-10-11 02:40:17 +9618 9618 9619 961.8 1923.6000000000001 9618 1996-05-02 2024-10-11 02:40:18.000 1996-05-02 2024-10-11 02:40:18 +9619 9619 9620 961.9 1923.8000000000002 9619 1996-05-03 2024-10-11 02:40:19.000 1996-05-03 2024-10-11 02:40:19 +9621 9621 9622 962.1 1924.2 9621 1996-05-05 2024-10-11 02:40:21.000 1996-05-05 2024-10-11 02:40:21 +9622 9622 9623 962.2 1924.4 9622 1996-05-06 2024-10-11 02:40:22.000 1996-05-06 2024-10-11 02:40:22 +9623 9623 9624 962.3 1924.6000000000001 9623 1996-05-07 2024-10-11 02:40:23.000 1996-05-07 2024-10-11 02:40:23 +9624 9624 9625 962.4 1924.8000000000002 9624 1996-05-08 2024-10-11 02:40:24.000 1996-05-08 2024-10-11 02:40:24 +9626 9626 9627 962.6 1925.2 9626 1996-05-10 2024-10-11 02:40:26.000 1996-05-10 2024-10-11 02:40:26 +9627 9627 9628 962.7 1925.4 9627 1996-05-11 2024-10-11 02:40:27.000 1996-05-11 2024-10-11 02:40:27 +9628 9628 9629 962.8 1925.6000000000001 9628 1996-05-12 2024-10-11 02:40:28.000 1996-05-12 2024-10-11 02:40:28 +9629 9629 9630 962.9 1925.8000000000002 9629 1996-05-13 2024-10-11 02:40:29.000 1996-05-13 2024-10-11 02:40:29 +9631 9631 9632 963.1 1926.2 9631 1996-05-15 2024-10-11 02:40:31.000 1996-05-15 2024-10-11 02:40:31 +9632 9632 9633 963.2 1926.4 9632 1996-05-16 2024-10-11 02:40:32.000 1996-05-16 2024-10-11 02:40:32 +9633 9633 9634 963.3 1926.6000000000001 9633 1996-05-17 2024-10-11 02:40:33.000 1996-05-17 2024-10-11 02:40:33 +9634 9634 9635 963.4 1926.8000000000002 9634 1996-05-18 2024-10-11 02:40:34.000 1996-05-18 2024-10-11 02:40:34 +9636 9636 9637 963.6 1927.2 9636 1996-05-20 2024-10-11 02:40:36.000 1996-05-20 2024-10-11 02:40:36 +9637 9637 9638 963.7 1927.4 9637 1996-05-21 2024-10-11 02:40:37.000 1996-05-21 2024-10-11 02:40:37 +9638 9638 9639 963.8 1927.6000000000001 9638 1996-05-22 2024-10-11 02:40:38.000 1996-05-22 2024-10-11 02:40:38 +9639 9639 9640 963.9 1927.8000000000002 9639 1996-05-23 2024-10-11 02:40:39.000 1996-05-23 2024-10-11 02:40:39 +9641 9641 9642 964.1 1928.2 9641 1996-05-25 2024-10-11 02:40:41.000 1996-05-25 2024-10-11 02:40:41 +9642 9642 9643 964.2 1928.4 9642 1996-05-26 2024-10-11 02:40:42.000 1996-05-26 2024-10-11 02:40:42 +9643 9643 9644 964.3 1928.6000000000001 9643 1996-05-27 2024-10-11 02:40:43.000 1996-05-27 2024-10-11 02:40:43 +9644 9644 9645 964.4 1928.8000000000002 9644 1996-05-28 2024-10-11 02:40:44.000 1996-05-28 2024-10-11 02:40:44 +9646 9646 9647 964.6 1929.2 9646 1996-05-30 2024-10-11 02:40:46.000 1996-05-30 2024-10-11 02:40:46 +9647 9647 9648 964.7 1929.4 9647 1996-05-31 2024-10-11 02:40:47.000 1996-05-31 2024-10-11 02:40:47 +9648 9648 9649 964.8 1929.6000000000001 9648 1996-06-01 2024-10-11 02:40:48.000 1996-06-01 2024-10-11 02:40:48 +9649 9649 9650 964.9 1929.8000000000002 9649 1996-06-02 2024-10-11 02:40:49.000 1996-06-02 2024-10-11 02:40:49 +9651 9651 9652 965.1 1930.2 9651 1996-06-04 2024-10-11 02:40:51.000 1996-06-04 2024-10-11 02:40:51 +9652 9652 9653 965.2 1930.4 9652 1996-06-05 2024-10-11 02:40:52.000 1996-06-05 2024-10-11 02:40:52 +9653 9653 9654 965.3 1930.6000000000001 9653 1996-06-06 2024-10-11 02:40:53.000 1996-06-06 2024-10-11 02:40:53 +9654 9654 9655 965.4 1930.8000000000002 9654 1996-06-07 2024-10-11 02:40:54.000 1996-06-07 2024-10-11 02:40:54 +9656 9656 9657 965.6 1931.2 9656 1996-06-09 2024-10-11 02:40:56.000 1996-06-09 2024-10-11 02:40:56 +9657 9657 9658 965.7 1931.4 9657 1996-06-10 2024-10-11 02:40:57.000 1996-06-10 2024-10-11 02:40:57 +9658 9658 9659 965.8 1931.6000000000001 9658 1996-06-11 2024-10-11 02:40:58.000 1996-06-11 2024-10-11 02:40:58 +9659 9659 9660 965.9 1931.8000000000002 9659 1996-06-12 2024-10-11 02:40:59.000 1996-06-12 2024-10-11 02:40:59 +9661 9661 9662 966.1 1932.2 9661 1996-06-14 2024-10-11 02:41:01.000 1996-06-14 2024-10-11 02:41:01 +9662 9662 9663 966.2 1932.4 9662 1996-06-15 2024-10-11 02:41:02.000 1996-06-15 2024-10-11 02:41:02 +9663 9663 9664 966.3 1932.6000000000001 9663 1996-06-16 2024-10-11 02:41:03.000 1996-06-16 2024-10-11 02:41:03 +9664 9664 9665 966.4 1932.8000000000002 9664 1996-06-17 2024-10-11 02:41:04.000 1996-06-17 2024-10-11 02:41:04 +9666 9666 9667 966.6 1933.2 9666 1996-06-19 2024-10-11 02:41:06.000 1996-06-19 2024-10-11 02:41:06 +9667 9667 9668 966.7 1933.4 9667 1996-06-20 2024-10-11 02:41:07.000 1996-06-20 2024-10-11 02:41:07 +9668 9668 9669 966.8 1933.6000000000001 9668 1996-06-21 2024-10-11 02:41:08.000 1996-06-21 2024-10-11 02:41:08 +9669 9669 9670 966.9 1933.8000000000002 9669 1996-06-22 2024-10-11 02:41:09.000 1996-06-22 2024-10-11 02:41:09 +9671 9671 9672 967.1 1934.2 9671 1996-06-24 2024-10-11 02:41:11.000 1996-06-24 2024-10-11 02:41:11 +9672 9672 9673 967.2 1934.4 9672 1996-06-25 2024-10-11 02:41:12.000 1996-06-25 2024-10-11 02:41:12 +9673 9673 9674 967.3 1934.6000000000001 9673 1996-06-26 2024-10-11 02:41:13.000 1996-06-26 2024-10-11 02:41:13 +9674 9674 9675 967.4 1934.8000000000002 9674 1996-06-27 2024-10-11 02:41:14.000 1996-06-27 2024-10-11 02:41:14 +9676 9676 9677 967.6 1935.2 9676 1996-06-29 2024-10-11 02:41:16.000 1996-06-29 2024-10-11 02:41:16 +9677 9677 9678 967.7 1935.4 9677 1996-06-30 2024-10-11 02:41:17.000 1996-06-30 2024-10-11 02:41:17 +9678 9678 9679 967.8 1935.6000000000001 9678 1996-07-01 2024-10-11 02:41:18.000 1996-07-01 2024-10-11 02:41:18 +9679 9679 9680 967.9 1935.8000000000002 9679 1996-07-02 2024-10-11 02:41:19.000 1996-07-02 2024-10-11 02:41:19 +9681 9681 9682 968.1 1936.2 9681 1996-07-04 2024-10-11 02:41:21.000 1996-07-04 2024-10-11 02:41:21 +9682 9682 9683 968.2 1936.4 9682 1996-07-05 2024-10-11 02:41:22.000 1996-07-05 2024-10-11 02:41:22 +9683 9683 9684 968.3 1936.6000000000001 9683 1996-07-06 2024-10-11 02:41:23.000 1996-07-06 2024-10-11 02:41:23 +9684 9684 9685 968.4 1936.8000000000002 9684 1996-07-07 2024-10-11 02:41:24.000 1996-07-07 2024-10-11 02:41:24 +9686 9686 9687 968.6 1937.2 9686 1996-07-09 2024-10-11 02:41:26.000 1996-07-09 2024-10-11 02:41:26 +9687 9687 9688 968.7 1937.4 9687 1996-07-10 2024-10-11 02:41:27.000 1996-07-10 2024-10-11 02:41:27 +9688 9688 9689 968.8 1937.6000000000001 9688 1996-07-11 2024-10-11 02:41:28.000 1996-07-11 2024-10-11 02:41:28 +9689 9689 9690 968.9 1937.8000000000002 9689 1996-07-12 2024-10-11 02:41:29.000 1996-07-12 2024-10-11 02:41:29 +9691 9691 9692 969.1 1938.2 9691 1996-07-14 2024-10-11 02:41:31.000 1996-07-14 2024-10-11 02:41:31 +9692 9692 9693 969.2 1938.4 9692 1996-07-15 2024-10-11 02:41:32.000 1996-07-15 2024-10-11 02:41:32 +9693 9693 9694 969.3 1938.6000000000001 9693 1996-07-16 2024-10-11 02:41:33.000 1996-07-16 2024-10-11 02:41:33 +9694 9694 9695 969.4 1938.8000000000002 9694 1996-07-17 2024-10-11 02:41:34.000 1996-07-17 2024-10-11 02:41:34 +9696 9696 9697 969.6 1939.2 9696 1996-07-19 2024-10-11 02:41:36.000 1996-07-19 2024-10-11 02:41:36 +9697 9697 9698 969.7 1939.4 9697 1996-07-20 2024-10-11 02:41:37.000 1996-07-20 2024-10-11 02:41:37 +9698 9698 9699 969.8 1939.6000000000001 9698 1996-07-21 2024-10-11 02:41:38.000 1996-07-21 2024-10-11 02:41:38 +9699 9699 9700 969.9 1939.8000000000002 9699 1996-07-22 2024-10-11 02:41:39.000 1996-07-22 2024-10-11 02:41:39 +9701 9701 9702 970.1 1940.2 9701 1996-07-24 2024-10-11 02:41:41.000 1996-07-24 2024-10-11 02:41:41 +9702 9702 9703 970.2 1940.4 9702 1996-07-25 2024-10-11 02:41:42.000 1996-07-25 2024-10-11 02:41:42 +9703 9703 9704 970.3 1940.6000000000001 9703 1996-07-26 2024-10-11 02:41:43.000 1996-07-26 2024-10-11 02:41:43 +9704 9704 9705 970.4 1940.8000000000002 9704 1996-07-27 2024-10-11 02:41:44.000 1996-07-27 2024-10-11 02:41:44 +9706 9706 9707 970.6 1941.2 9706 1996-07-29 2024-10-11 02:41:46.000 1996-07-29 2024-10-11 02:41:46 +9707 9707 9708 970.7 1941.4 9707 1996-07-30 2024-10-11 02:41:47.000 1996-07-30 2024-10-11 02:41:47 +9708 9708 9709 970.8 1941.6000000000001 9708 1996-07-31 2024-10-11 02:41:48.000 1996-07-31 2024-10-11 02:41:48 +9709 9709 9710 970.9 1941.8000000000002 9709 1996-08-01 2024-10-11 02:41:49.000 1996-08-01 2024-10-11 02:41:49 +9711 9711 9712 971.1 1942.2 9711 1996-08-03 2024-10-11 02:41:51.000 1996-08-03 2024-10-11 02:41:51 +9712 9712 9713 971.2 1942.4 9712 1996-08-04 2024-10-11 02:41:52.000 1996-08-04 2024-10-11 02:41:52 +9713 9713 9714 971.3 1942.6000000000001 9713 1996-08-05 2024-10-11 02:41:53.000 1996-08-05 2024-10-11 02:41:53 +9714 9714 9715 971.4 1942.8000000000002 9714 1996-08-06 2024-10-11 02:41:54.000 1996-08-06 2024-10-11 02:41:54 +9716 9716 9717 971.6 1943.2 9716 1996-08-08 2024-10-11 02:41:56.000 1996-08-08 2024-10-11 02:41:56 +9717 9717 9718 971.7 1943.4 9717 1996-08-09 2024-10-11 02:41:57.000 1996-08-09 2024-10-11 02:41:57 +9718 9718 9719 971.8 1943.6000000000001 9718 1996-08-10 2024-10-11 02:41:58.000 1996-08-10 2024-10-11 02:41:58 +9719 9719 9720 971.9 1943.8000000000002 9719 1996-08-11 2024-10-11 02:41:59.000 1996-08-11 2024-10-11 02:41:59 +9721 9721 9722 972.1 1944.2 9721 1996-08-13 2024-10-11 02:42:01.000 1996-08-13 2024-10-11 02:42:01 +9722 9722 9723 972.2 1944.4 9722 1996-08-14 2024-10-11 02:42:02.000 1996-08-14 2024-10-11 02:42:02 +9723 9723 9724 972.3 1944.6000000000001 9723 1996-08-15 2024-10-11 02:42:03.000 1996-08-15 2024-10-11 02:42:03 +9724 9724 9725 972.4 1944.8000000000002 9724 1996-08-16 2024-10-11 02:42:04.000 1996-08-16 2024-10-11 02:42:04 +9726 9726 9727 972.6 1945.2 9726 1996-08-18 2024-10-11 02:42:06.000 1996-08-18 2024-10-11 02:42:06 +9727 9727 9728 972.7 1945.4 9727 1996-08-19 2024-10-11 02:42:07.000 1996-08-19 2024-10-11 02:42:07 +9728 9728 9729 972.8 1945.6000000000001 9728 1996-08-20 2024-10-11 02:42:08.000 1996-08-20 2024-10-11 02:42:08 +9729 9729 9730 972.9 1945.8000000000002 9729 1996-08-21 2024-10-11 02:42:09.000 1996-08-21 2024-10-11 02:42:09 +9731 9731 9732 973.1 1946.2 9731 1996-08-23 2024-10-11 02:42:11.000 1996-08-23 2024-10-11 02:42:11 +9732 9732 9733 973.2 1946.4 9732 1996-08-24 2024-10-11 02:42:12.000 1996-08-24 2024-10-11 02:42:12 +9733 9733 9734 973.3 1946.6000000000001 9733 1996-08-25 2024-10-11 02:42:13.000 1996-08-25 2024-10-11 02:42:13 +9734 9734 9735 973.4 1946.8000000000002 9734 1996-08-26 2024-10-11 02:42:14.000 1996-08-26 2024-10-11 02:42:14 +9736 9736 9737 973.6 1947.2 9736 1996-08-28 2024-10-11 02:42:16.000 1996-08-28 2024-10-11 02:42:16 +9737 9737 9738 973.7 1947.4 9737 1996-08-29 2024-10-11 02:42:17.000 1996-08-29 2024-10-11 02:42:17 +9738 9738 9739 973.8 1947.6000000000001 9738 1996-08-30 2024-10-11 02:42:18.000 1996-08-30 2024-10-11 02:42:18 +9739 9739 9740 973.9 1947.8000000000002 9739 1996-08-31 2024-10-11 02:42:19.000 1996-08-31 2024-10-11 02:42:19 +9741 9741 9742 974.1 1948.2 9741 1996-09-02 2024-10-11 02:42:21.000 1996-09-02 2024-10-11 02:42:21 +9742 9742 9743 974.2 1948.4 9742 1996-09-03 2024-10-11 02:42:22.000 1996-09-03 2024-10-11 02:42:22 +9743 9743 9744 974.3 1948.6000000000001 9743 1996-09-04 2024-10-11 02:42:23.000 1996-09-04 2024-10-11 02:42:23 +9744 9744 9745 974.4 1948.8000000000002 9744 1996-09-05 2024-10-11 02:42:24.000 1996-09-05 2024-10-11 02:42:24 +9746 9746 9747 974.6 1949.2 9746 1996-09-07 2024-10-11 02:42:26.000 1996-09-07 2024-10-11 02:42:26 +9747 9747 9748 974.7 1949.4 9747 1996-09-08 2024-10-11 02:42:27.000 1996-09-08 2024-10-11 02:42:27 +9748 9748 9749 974.8 1949.6000000000001 9748 1996-09-09 2024-10-11 02:42:28.000 1996-09-09 2024-10-11 02:42:28 +9749 9749 9750 974.9 1949.8000000000002 9749 1996-09-10 2024-10-11 02:42:29.000 1996-09-10 2024-10-11 02:42:29 +9751 9751 9752 975.1 1950.2 9751 1996-09-12 2024-10-11 02:42:31.000 1996-09-12 2024-10-11 02:42:31 +9752 9752 9753 975.2 1950.4 9752 1996-09-13 2024-10-11 02:42:32.000 1996-09-13 2024-10-11 02:42:32 +9753 9753 9754 975.3 1950.6000000000001 9753 1996-09-14 2024-10-11 02:42:33.000 1996-09-14 2024-10-11 02:42:33 +9754 9754 9755 975.4 1950.8000000000002 9754 1996-09-15 2024-10-11 02:42:34.000 1996-09-15 2024-10-11 02:42:34 +9756 9756 9757 975.6 1951.2 9756 1996-09-17 2024-10-11 02:42:36.000 1996-09-17 2024-10-11 02:42:36 +9757 9757 9758 975.7 1951.4 9757 1996-09-18 2024-10-11 02:42:37.000 1996-09-18 2024-10-11 02:42:37 +9758 9758 9759 975.8 1951.6000000000001 9758 1996-09-19 2024-10-11 02:42:38.000 1996-09-19 2024-10-11 02:42:38 +9759 9759 9760 975.9 1951.8000000000002 9759 1996-09-20 2024-10-11 02:42:39.000 1996-09-20 2024-10-11 02:42:39 +9761 9761 9762 976.1 1952.2 9761 1996-09-22 2024-10-11 02:42:41.000 1996-09-22 2024-10-11 02:42:41 +9762 9762 9763 976.2 1952.4 9762 1996-09-23 2024-10-11 02:42:42.000 1996-09-23 2024-10-11 02:42:42 +9763 9763 9764 976.3 1952.6000000000001 9763 1996-09-24 2024-10-11 02:42:43.000 1996-09-24 2024-10-11 02:42:43 +9764 9764 9765 976.4 1952.8000000000002 9764 1996-09-25 2024-10-11 02:42:44.000 1996-09-25 2024-10-11 02:42:44 +9766 9766 9767 976.6 1953.2 9766 1996-09-27 2024-10-11 02:42:46.000 1996-09-27 2024-10-11 02:42:46 +9767 9767 9768 976.7 1953.4 9767 1996-09-28 2024-10-11 02:42:47.000 1996-09-28 2024-10-11 02:42:47 +9768 9768 9769 976.8 1953.6000000000001 9768 1996-09-29 2024-10-11 02:42:48.000 1996-09-29 2024-10-11 02:42:48 +9769 9769 9770 976.9 1953.8000000000002 9769 1996-09-30 2024-10-11 02:42:49.000 1996-09-30 2024-10-11 02:42:49 +9771 9771 9772 977.1 1954.2 9771 1996-10-02 2024-10-11 02:42:51.000 1996-10-02 2024-10-11 02:42:51 +9772 9772 9773 977.2 1954.4 9772 1996-10-03 2024-10-11 02:42:52.000 1996-10-03 2024-10-11 02:42:52 +9773 9773 9774 977.3 1954.6000000000001 9773 1996-10-04 2024-10-11 02:42:53.000 1996-10-04 2024-10-11 02:42:53 +9774 9774 9775 977.4 1954.8000000000002 9774 1996-10-05 2024-10-11 02:42:54.000 1996-10-05 2024-10-11 02:42:54 +9776 9776 9777 977.6 1955.2 9776 1996-10-07 2024-10-11 02:42:56.000 1996-10-07 2024-10-11 02:42:56 +9777 9777 9778 977.7 1955.4 9777 1996-10-08 2024-10-11 02:42:57.000 1996-10-08 2024-10-11 02:42:57 +9778 9778 9779 977.8 1955.6000000000001 9778 1996-10-09 2024-10-11 02:42:58.000 1996-10-09 2024-10-11 02:42:58 +9779 9779 9780 977.9 1955.8000000000002 9779 1996-10-10 2024-10-11 02:42:59.000 1996-10-10 2024-10-11 02:42:59 +9781 9781 9782 978.1 1956.2 9781 1996-10-12 2024-10-11 02:43:01.000 1996-10-12 2024-10-11 02:43:01 +9782 9782 9783 978.2 1956.4 9782 1996-10-13 2024-10-11 02:43:02.000 1996-10-13 2024-10-11 02:43:02 +9783 9783 9784 978.3 1956.6000000000001 9783 1996-10-14 2024-10-11 02:43:03.000 1996-10-14 2024-10-11 02:43:03 +9784 9784 9785 978.4 1956.8000000000002 9784 1996-10-15 2024-10-11 02:43:04.000 1996-10-15 2024-10-11 02:43:04 +9786 9786 9787 978.6 1957.2 9786 1996-10-17 2024-10-11 02:43:06.000 1996-10-17 2024-10-11 02:43:06 +9787 9787 9788 978.7 1957.4 9787 1996-10-18 2024-10-11 02:43:07.000 1996-10-18 2024-10-11 02:43:07 +9788 9788 9789 978.8 1957.6000000000001 9788 1996-10-19 2024-10-11 02:43:08.000 1996-10-19 2024-10-11 02:43:08 +9789 9789 9790 978.9 1957.8000000000002 9789 1996-10-20 2024-10-11 02:43:09.000 1996-10-20 2024-10-11 02:43:09 +9791 9791 9792 979.1 1958.2 9791 1996-10-22 2024-10-11 02:43:11.000 1996-10-22 2024-10-11 02:43:11 +9792 9792 9793 979.2 1958.4 9792 1996-10-23 2024-10-11 02:43:12.000 1996-10-23 2024-10-11 02:43:12 +9793 9793 9794 979.3 1958.6000000000001 9793 1996-10-24 2024-10-11 02:43:13.000 1996-10-24 2024-10-11 02:43:13 +9794 9794 9795 979.4 1958.8000000000002 9794 1996-10-25 2024-10-11 02:43:14.000 1996-10-25 2024-10-11 02:43:14 +9796 9796 9797 979.6 1959.2 9796 1996-10-27 2024-10-11 02:43:16.000 1996-10-27 2024-10-11 02:43:16 +9797 9797 9798 979.7 1959.4 9797 1996-10-28 2024-10-11 02:43:17.000 1996-10-28 2024-10-11 02:43:17 +9798 9798 9799 979.8 1959.6000000000001 9798 1996-10-29 2024-10-11 02:43:18.000 1996-10-29 2024-10-11 02:43:18 +9799 9799 9800 979.9 1959.8000000000002 9799 1996-10-30 2024-10-11 02:43:19.000 1996-10-30 2024-10-11 02:43:19 +9801 9801 9802 980.1 1960.2 9801 1996-11-01 2024-10-11 02:43:21.000 1996-11-01 2024-10-11 02:43:21 +9802 9802 9803 980.2 1960.4 9802 1996-11-02 2024-10-11 02:43:22.000 1996-11-02 2024-10-11 02:43:22 +9803 9803 9804 980.3 1960.6000000000001 9803 1996-11-03 2024-10-11 02:43:23.000 1996-11-03 2024-10-11 02:43:23 +9804 9804 9805 980.4 1960.8000000000002 9804 1996-11-04 2024-10-11 02:43:24.000 1996-11-04 2024-10-11 02:43:24 +9806 9806 9807 980.6 1961.2 9806 1996-11-06 2024-10-11 02:43:26.000 1996-11-06 2024-10-11 02:43:26 +9807 9807 9808 980.7 1961.4 9807 1996-11-07 2024-10-11 02:43:27.000 1996-11-07 2024-10-11 02:43:27 +9808 9808 9809 980.8 1961.6000000000001 9808 1996-11-08 2024-10-11 02:43:28.000 1996-11-08 2024-10-11 02:43:28 +9809 9809 9810 980.9 1961.8000000000002 9809 1996-11-09 2024-10-11 02:43:29.000 1996-11-09 2024-10-11 02:43:29 +9811 9811 9812 981.1 1962.2 9811 1996-11-11 2024-10-11 02:43:31.000 1996-11-11 2024-10-11 02:43:31 +9812 9812 9813 981.2 1962.4 9812 1996-11-12 2024-10-11 02:43:32.000 1996-11-12 2024-10-11 02:43:32 +9813 9813 9814 981.3 1962.6000000000001 9813 1996-11-13 2024-10-11 02:43:33.000 1996-11-13 2024-10-11 02:43:33 +9814 9814 9815 981.4 1962.8000000000002 9814 1996-11-14 2024-10-11 02:43:34.000 1996-11-14 2024-10-11 02:43:34 +9816 9816 9817 981.6 1963.2 9816 1996-11-16 2024-10-11 02:43:36.000 1996-11-16 2024-10-11 02:43:36 +9817 9817 9818 981.7 1963.4 9817 1996-11-17 2024-10-11 02:43:37.000 1996-11-17 2024-10-11 02:43:37 +9818 9818 9819 981.8 1963.6000000000001 9818 1996-11-18 2024-10-11 02:43:38.000 1996-11-18 2024-10-11 02:43:38 +9819 9819 9820 981.9 1963.8000000000002 9819 1996-11-19 2024-10-11 02:43:39.000 1996-11-19 2024-10-11 02:43:39 +9821 9821 9822 982.1 1964.2 9821 1996-11-21 2024-10-11 02:43:41.000 1996-11-21 2024-10-11 02:43:41 +9822 9822 9823 982.2 1964.4 9822 1996-11-22 2024-10-11 02:43:42.000 1996-11-22 2024-10-11 02:43:42 +9823 9823 9824 982.3 1964.6000000000001 9823 1996-11-23 2024-10-11 02:43:43.000 1996-11-23 2024-10-11 02:43:43 +9824 9824 9825 982.4 1964.8000000000002 9824 1996-11-24 2024-10-11 02:43:44.000 1996-11-24 2024-10-11 02:43:44 +9826 9826 9827 982.6 1965.2 9826 1996-11-26 2024-10-11 02:43:46.000 1996-11-26 2024-10-11 02:43:46 +9827 9827 9828 982.7 1965.4 9827 1996-11-27 2024-10-11 02:43:47.000 1996-11-27 2024-10-11 02:43:47 +9828 9828 9829 982.8 1965.6000000000001 9828 1996-11-28 2024-10-11 02:43:48.000 1996-11-28 2024-10-11 02:43:48 +9829 9829 9830 982.9 1965.8000000000002 9829 1996-11-29 2024-10-11 02:43:49.000 1996-11-29 2024-10-11 02:43:49 +9831 9831 9832 983.1 1966.2 9831 1996-12-01 2024-10-11 02:43:51.000 1996-12-01 2024-10-11 02:43:51 +9832 9832 9833 983.2 1966.4 9832 1996-12-02 2024-10-11 02:43:52.000 1996-12-02 2024-10-11 02:43:52 +9833 9833 9834 983.3 1966.6000000000001 9833 1996-12-03 2024-10-11 02:43:53.000 1996-12-03 2024-10-11 02:43:53 +9834 9834 9835 983.4 1966.8000000000002 9834 1996-12-04 2024-10-11 02:43:54.000 1996-12-04 2024-10-11 02:43:54 +9836 9836 9837 983.6 1967.2 9836 1996-12-06 2024-10-11 02:43:56.000 1996-12-06 2024-10-11 02:43:56 +9837 9837 9838 983.7 1967.4 9837 1996-12-07 2024-10-11 02:43:57.000 1996-12-07 2024-10-11 02:43:57 +9838 9838 9839 983.8 1967.6000000000001 9838 1996-12-08 2024-10-11 02:43:58.000 1996-12-08 2024-10-11 02:43:58 +9839 9839 9840 983.9 1967.8000000000002 9839 1996-12-09 2024-10-11 02:43:59.000 1996-12-09 2024-10-11 02:43:59 +9841 9841 9842 984.1 1968.2 9841 1996-12-11 2024-10-11 02:44:01.000 1996-12-11 2024-10-11 02:44:01 +9842 9842 9843 984.2 1968.4 9842 1996-12-12 2024-10-11 02:44:02.000 1996-12-12 2024-10-11 02:44:02 +9843 9843 9844 984.3 1968.6000000000001 9843 1996-12-13 2024-10-11 02:44:03.000 1996-12-13 2024-10-11 02:44:03 +9844 9844 9845 984.4 1968.8000000000002 9844 1996-12-14 2024-10-11 02:44:04.000 1996-12-14 2024-10-11 02:44:04 +9846 9846 9847 984.6 1969.2 9846 1996-12-16 2024-10-11 02:44:06.000 1996-12-16 2024-10-11 02:44:06 +9847 9847 9848 984.7 1969.4 9847 1996-12-17 2024-10-11 02:44:07.000 1996-12-17 2024-10-11 02:44:07 +9848 9848 9849 984.8 1969.6000000000001 9848 1996-12-18 2024-10-11 02:44:08.000 1996-12-18 2024-10-11 02:44:08 +9849 9849 9850 984.9 1969.8000000000002 9849 1996-12-19 2024-10-11 02:44:09.000 1996-12-19 2024-10-11 02:44:09 +9851 9851 9852 985.1 1970.2 9851 1996-12-21 2024-10-11 02:44:11.000 1996-12-21 2024-10-11 02:44:11 +9852 9852 9853 985.2 1970.4 9852 1996-12-22 2024-10-11 02:44:12.000 1996-12-22 2024-10-11 02:44:12 +9853 9853 9854 985.3 1970.6000000000001 9853 1996-12-23 2024-10-11 02:44:13.000 1996-12-23 2024-10-11 02:44:13 +9854 9854 9855 985.4 1970.8000000000002 9854 1996-12-24 2024-10-11 02:44:14.000 1996-12-24 2024-10-11 02:44:14 +9856 9856 9857 985.6 1971.2 9856 1996-12-26 2024-10-11 02:44:16.000 1996-12-26 2024-10-11 02:44:16 +9857 9857 9858 985.7 1971.4 9857 1996-12-27 2024-10-11 02:44:17.000 1996-12-27 2024-10-11 02:44:17 +9858 9858 9859 985.8 1971.6000000000001 9858 1996-12-28 2024-10-11 02:44:18.000 1996-12-28 2024-10-11 02:44:18 +9859 9859 9860 985.9 1971.8000000000002 9859 1996-12-29 2024-10-11 02:44:19.000 1996-12-29 2024-10-11 02:44:19 +9861 9861 9862 986.1 1972.2 9861 1996-12-31 2024-10-11 02:44:21.000 1996-12-31 2024-10-11 02:44:21 +9862 9862 9863 986.2 1972.4 9862 1997-01-01 2024-10-11 02:44:22.000 1997-01-01 2024-10-11 02:44:22 +9863 9863 9864 986.3 1972.6000000000001 9863 1997-01-02 2024-10-11 02:44:23.000 1997-01-02 2024-10-11 02:44:23 +9864 9864 9865 986.4 1972.8000000000002 9864 1997-01-03 2024-10-11 02:44:24.000 1997-01-03 2024-10-11 02:44:24 +9866 9866 9867 986.6 1973.2 9866 1997-01-05 2024-10-11 02:44:26.000 1997-01-05 2024-10-11 02:44:26 +9867 9867 9868 986.7 1973.4 9867 1997-01-06 2024-10-11 02:44:27.000 1997-01-06 2024-10-11 02:44:27 +9868 9868 9869 986.8 1973.6000000000001 9868 1997-01-07 2024-10-11 02:44:28.000 1997-01-07 2024-10-11 02:44:28 +9869 9869 9870 986.9 1973.8000000000002 9869 1997-01-08 2024-10-11 02:44:29.000 1997-01-08 2024-10-11 02:44:29 +9871 9871 9872 987.1 1974.2 9871 1997-01-10 2024-10-11 02:44:31.000 1997-01-10 2024-10-11 02:44:31 +9872 9872 9873 987.2 1974.4 9872 1997-01-11 2024-10-11 02:44:32.000 1997-01-11 2024-10-11 02:44:32 +9873 9873 9874 987.3 1974.6000000000001 9873 1997-01-12 2024-10-11 02:44:33.000 1997-01-12 2024-10-11 02:44:33 +9874 9874 9875 987.4 1974.8000000000002 9874 1997-01-13 2024-10-11 02:44:34.000 1997-01-13 2024-10-11 02:44:34 +9876 9876 9877 987.6 1975.2 9876 1997-01-15 2024-10-11 02:44:36.000 1997-01-15 2024-10-11 02:44:36 +9877 9877 9878 987.7 1975.4 9877 1997-01-16 2024-10-11 02:44:37.000 1997-01-16 2024-10-11 02:44:37 +9878 9878 9879 987.8 1975.6000000000001 9878 1997-01-17 2024-10-11 02:44:38.000 1997-01-17 2024-10-11 02:44:38 +9879 9879 9880 987.9 1975.8000000000002 9879 1997-01-18 2024-10-11 02:44:39.000 1997-01-18 2024-10-11 02:44:39 +9881 9881 9882 988.1 1976.2 9881 1997-01-20 2024-10-11 02:44:41.000 1997-01-20 2024-10-11 02:44:41 +9882 9882 9883 988.2 1976.4 9882 1997-01-21 2024-10-11 02:44:42.000 1997-01-21 2024-10-11 02:44:42 +9883 9883 9884 988.3 1976.6000000000001 9883 1997-01-22 2024-10-11 02:44:43.000 1997-01-22 2024-10-11 02:44:43 +9884 9884 9885 988.4 1976.8000000000002 9884 1997-01-23 2024-10-11 02:44:44.000 1997-01-23 2024-10-11 02:44:44 +9886 9886 9887 988.6 1977.2 9886 1997-01-25 2024-10-11 02:44:46.000 1997-01-25 2024-10-11 02:44:46 +9887 9887 9888 988.7 1977.4 9887 1997-01-26 2024-10-11 02:44:47.000 1997-01-26 2024-10-11 02:44:47 +9888 9888 9889 988.8 1977.6000000000001 9888 1997-01-27 2024-10-11 02:44:48.000 1997-01-27 2024-10-11 02:44:48 +9889 9889 9890 988.9 1977.8000000000002 9889 1997-01-28 2024-10-11 02:44:49.000 1997-01-28 2024-10-11 02:44:49 +9891 9891 9892 989.1 1978.2 9891 1997-01-30 2024-10-11 02:44:51.000 1997-01-30 2024-10-11 02:44:51 +9892 9892 9893 989.2 1978.4 9892 1997-01-31 2024-10-11 02:44:52.000 1997-01-31 2024-10-11 02:44:52 +9893 9893 9894 989.3 1978.6000000000001 9893 1997-02-01 2024-10-11 02:44:53.000 1997-02-01 2024-10-11 02:44:53 +9894 9894 9895 989.4 1978.8000000000002 9894 1997-02-02 2024-10-11 02:44:54.000 1997-02-02 2024-10-11 02:44:54 +9896 9896 9897 989.6 1979.2 9896 1997-02-04 2024-10-11 02:44:56.000 1997-02-04 2024-10-11 02:44:56 +9897 9897 9898 989.7 1979.4 9897 1997-02-05 2024-10-11 02:44:57.000 1997-02-05 2024-10-11 02:44:57 +9898 9898 9899 989.8 1979.6000000000001 9898 1997-02-06 2024-10-11 02:44:58.000 1997-02-06 2024-10-11 02:44:58 +9899 9899 9900 989.9 1979.8000000000002 9899 1997-02-07 2024-10-11 02:44:59.000 1997-02-07 2024-10-11 02:44:59 +9901 9901 9902 990.1 1980.2 9901 1997-02-09 2024-10-11 02:45:01.000 1997-02-09 2024-10-11 02:45:01 +9902 9902 9903 990.2 1980.4 9902 1997-02-10 2024-10-11 02:45:02.000 1997-02-10 2024-10-11 02:45:02 +9903 9903 9904 990.3 1980.6000000000001 9903 1997-02-11 2024-10-11 02:45:03.000 1997-02-11 2024-10-11 02:45:03 +9904 9904 9905 990.4 1980.8000000000002 9904 1997-02-12 2024-10-11 02:45:04.000 1997-02-12 2024-10-11 02:45:04 +9906 9906 9907 990.6 1981.2 9906 1997-02-14 2024-10-11 02:45:06.000 1997-02-14 2024-10-11 02:45:06 +9907 9907 9908 990.7 1981.4 9907 1997-02-15 2024-10-11 02:45:07.000 1997-02-15 2024-10-11 02:45:07 +9908 9908 9909 990.8 1981.6000000000001 9908 1997-02-16 2024-10-11 02:45:08.000 1997-02-16 2024-10-11 02:45:08 +9909 9909 9910 990.9 1981.8000000000002 9909 1997-02-17 2024-10-11 02:45:09.000 1997-02-17 2024-10-11 02:45:09 +9911 9911 9912 991.1 1982.2 9911 1997-02-19 2024-10-11 02:45:11.000 1997-02-19 2024-10-11 02:45:11 +9912 9912 9913 991.2 1982.4 9912 1997-02-20 2024-10-11 02:45:12.000 1997-02-20 2024-10-11 02:45:12 +9913 9913 9914 991.3 1982.6000000000001 9913 1997-02-21 2024-10-11 02:45:13.000 1997-02-21 2024-10-11 02:45:13 +9914 9914 9915 991.4 1982.8000000000002 9914 1997-02-22 2024-10-11 02:45:14.000 1997-02-22 2024-10-11 02:45:14 +9916 9916 9917 991.6 1983.2 9916 1997-02-24 2024-10-11 02:45:16.000 1997-02-24 2024-10-11 02:45:16 +9917 9917 9918 991.7 1983.4 9917 1997-02-25 2024-10-11 02:45:17.000 1997-02-25 2024-10-11 02:45:17 +9918 9918 9919 991.8 1983.6000000000001 9918 1997-02-26 2024-10-11 02:45:18.000 1997-02-26 2024-10-11 02:45:18 +9919 9919 9920 991.9 1983.8000000000002 9919 1997-02-27 2024-10-11 02:45:19.000 1997-02-27 2024-10-11 02:45:19 +9921 9921 9922 992.1 1984.2 9921 1997-03-01 2024-10-11 02:45:21.000 1997-03-01 2024-10-11 02:45:21 +9922 9922 9923 992.2 1984.4 9922 1997-03-02 2024-10-11 02:45:22.000 1997-03-02 2024-10-11 02:45:22 +9923 9923 9924 992.3 1984.6000000000001 9923 1997-03-03 2024-10-11 02:45:23.000 1997-03-03 2024-10-11 02:45:23 +9924 9924 9925 992.4 1984.8000000000002 9924 1997-03-04 2024-10-11 02:45:24.000 1997-03-04 2024-10-11 02:45:24 +9926 9926 9927 992.6 1985.2 9926 1997-03-06 2024-10-11 02:45:26.000 1997-03-06 2024-10-11 02:45:26 +9927 9927 9928 992.7 1985.4 9927 1997-03-07 2024-10-11 02:45:27.000 1997-03-07 2024-10-11 02:45:27 +9928 9928 9929 992.8 1985.6000000000001 9928 1997-03-08 2024-10-11 02:45:28.000 1997-03-08 2024-10-11 02:45:28 +9929 9929 9930 992.9 1985.8000000000002 9929 1997-03-09 2024-10-11 02:45:29.000 1997-03-09 2024-10-11 02:45:29 +9931 9931 9932 993.1 1986.2 9931 1997-03-11 2024-10-11 02:45:31.000 1997-03-11 2024-10-11 02:45:31 +9932 9932 9933 993.2 1986.4 9932 1997-03-12 2024-10-11 02:45:32.000 1997-03-12 2024-10-11 02:45:32 +9933 9933 9934 993.3 1986.6000000000001 9933 1997-03-13 2024-10-11 02:45:33.000 1997-03-13 2024-10-11 02:45:33 +9934 9934 9935 993.4 1986.8000000000002 9934 1997-03-14 2024-10-11 02:45:34.000 1997-03-14 2024-10-11 02:45:34 +9936 9936 9937 993.6 1987.2 9936 1997-03-16 2024-10-11 02:45:36.000 1997-03-16 2024-10-11 02:45:36 +9937 9937 9938 993.7 1987.4 9937 1997-03-17 2024-10-11 02:45:37.000 1997-03-17 2024-10-11 02:45:37 +9938 9938 9939 993.8 1987.6000000000001 9938 1997-03-18 2024-10-11 02:45:38.000 1997-03-18 2024-10-11 02:45:38 +9939 9939 9940 993.9 1987.8000000000002 9939 1997-03-19 2024-10-11 02:45:39.000 1997-03-19 2024-10-11 02:45:39 +9941 9941 9942 994.1 1988.2 9941 1997-03-21 2024-10-11 02:45:41.000 1997-03-21 2024-10-11 02:45:41 +9942 9942 9943 994.2 1988.4 9942 1997-03-22 2024-10-11 02:45:42.000 1997-03-22 2024-10-11 02:45:42 +9943 9943 9944 994.3 1988.6000000000001 9943 1997-03-23 2024-10-11 02:45:43.000 1997-03-23 2024-10-11 02:45:43 +9944 9944 9945 994.4 1988.8000000000002 9944 1997-03-24 2024-10-11 02:45:44.000 1997-03-24 2024-10-11 02:45:44 +9946 9946 9947 994.6 1989.2 9946 1997-03-26 2024-10-11 02:45:46.000 1997-03-26 2024-10-11 02:45:46 +9947 9947 9948 994.7 1989.4 9947 1997-03-27 2024-10-11 02:45:47.000 1997-03-27 2024-10-11 02:45:47 +9948 9948 9949 994.8 1989.6000000000001 9948 1997-03-28 2024-10-11 02:45:48.000 1997-03-28 2024-10-11 02:45:48 +9949 9949 9950 994.9 1989.8000000000002 9949 1997-03-29 2024-10-11 02:45:49.000 1997-03-29 2024-10-11 02:45:49 +9951 9951 9952 995.1 1990.2 9951 1997-03-31 2024-10-11 02:45:51.000 1997-03-31 2024-10-11 02:45:51 +9952 9952 9953 995.2 1990.4 9952 1997-04-01 2024-10-11 02:45:52.000 1997-04-01 2024-10-11 02:45:52 +9953 9953 9954 995.3 1990.6000000000001 9953 1997-04-02 2024-10-11 02:45:53.000 1997-04-02 2024-10-11 02:45:53 +9954 9954 9955 995.4 1990.8000000000002 9954 1997-04-03 2024-10-11 02:45:54.000 1997-04-03 2024-10-11 02:45:54 +9956 9956 9957 995.6 1991.2 9956 1997-04-05 2024-10-11 02:45:56.000 1997-04-05 2024-10-11 02:45:56 +9957 9957 9958 995.7 1991.4 9957 1997-04-06 2024-10-11 02:45:57.000 1997-04-06 2024-10-11 02:45:57 +9958 9958 9959 995.8 1991.6000000000001 9958 1997-04-07 2024-10-11 02:45:58.000 1997-04-07 2024-10-11 02:45:58 +9959 9959 9960 995.9 1991.8000000000002 9959 1997-04-08 2024-10-11 02:45:59.000 1997-04-08 2024-10-11 02:45:59 +9961 9961 9962 996.1 1992.2 9961 1997-04-10 2024-10-11 02:46:01.000 1997-04-10 2024-10-11 02:46:01 +9962 9962 9963 996.2 1992.4 9962 1997-04-11 2024-10-11 02:46:02.000 1997-04-11 2024-10-11 02:46:02 +9963 9963 9964 996.3 1992.6000000000001 9963 1997-04-12 2024-10-11 02:46:03.000 1997-04-12 2024-10-11 02:46:03 +9964 9964 9965 996.4 1992.8000000000002 9964 1997-04-13 2024-10-11 02:46:04.000 1997-04-13 2024-10-11 02:46:04 +9966 9966 9967 996.6 1993.2 9966 1997-04-15 2024-10-11 02:46:06.000 1997-04-15 2024-10-11 02:46:06 +9967 9967 9968 996.7 1993.4 9967 1997-04-16 2024-10-11 02:46:07.000 1997-04-16 2024-10-11 02:46:07 +9968 9968 9969 996.8 1993.6000000000001 9968 1997-04-17 2024-10-11 02:46:08.000 1997-04-17 2024-10-11 02:46:08 +9969 9969 9970 996.9 1993.8000000000002 9969 1997-04-18 2024-10-11 02:46:09.000 1997-04-18 2024-10-11 02:46:09 +9971 9971 9972 997.1 1994.2 9971 1997-04-20 2024-10-11 02:46:11.000 1997-04-20 2024-10-11 02:46:11 +9972 9972 9973 997.2 1994.4 9972 1997-04-21 2024-10-11 02:46:12.000 1997-04-21 2024-10-11 02:46:12 +9973 9973 9974 997.3 1994.6000000000001 9973 1997-04-22 2024-10-11 02:46:13.000 1997-04-22 2024-10-11 02:46:13 +9974 9974 9975 997.4 1994.8000000000002 9974 1997-04-23 2024-10-11 02:46:14.000 1997-04-23 2024-10-11 02:46:14 +9976 9976 9977 997.6 1995.2 9976 1997-04-25 2024-10-11 02:46:16.000 1997-04-25 2024-10-11 02:46:16 +9977 9977 9978 997.7 1995.4 9977 1997-04-26 2024-10-11 02:46:17.000 1997-04-26 2024-10-11 02:46:17 +9978 9978 9979 997.8 1995.6000000000001 9978 1997-04-27 2024-10-11 02:46:18.000 1997-04-27 2024-10-11 02:46:18 +9979 9979 9980 997.9 1995.8000000000002 9979 1997-04-28 2024-10-11 02:46:19.000 1997-04-28 2024-10-11 02:46:19 +9981 9981 9982 998.1 1996.2 9981 1997-04-30 2024-10-11 02:46:21.000 1997-04-30 2024-10-11 02:46:21 +9982 9982 9983 998.2 1996.4 9982 1997-05-01 2024-10-11 02:46:22.000 1997-05-01 2024-10-11 02:46:22 +9983 9983 9984 998.3 1996.6000000000001 9983 1997-05-02 2024-10-11 02:46:23.000 1997-05-02 2024-10-11 02:46:23 +9984 9984 9985 998.4 1996.8000000000002 9984 1997-05-03 2024-10-11 02:46:24.000 1997-05-03 2024-10-11 02:46:24 +9986 9986 9987 998.6 1997.2 9986 1997-05-05 2024-10-11 02:46:26.000 1997-05-05 2024-10-11 02:46:26 +9987 9987 9988 998.7 1997.4 9987 1997-05-06 2024-10-11 02:46:27.000 1997-05-06 2024-10-11 02:46:27 +9988 9988 9989 998.8 1997.6000000000001 9988 1997-05-07 2024-10-11 02:46:28.000 1997-05-07 2024-10-11 02:46:28 +9989 9989 9990 998.9 1997.8000000000002 9989 1997-05-08 2024-10-11 02:46:29.000 1997-05-08 2024-10-11 02:46:29 +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +select * from test_nullable_native_parquet where date32 >= '1970-01-10'; +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +11 11 12 1.1 2.2 11 1970-01-12 2024-10-11 00:00:11.000 1970-01-12 2024-10-11 00:00:11 +12 12 13 1.2 2.4000000000000004 12 1970-01-13 2024-10-11 00:00:12.000 1970-01-13 2024-10-11 00:00:12 +13 13 14 1.3 2.6 13 1970-01-14 2024-10-11 00:00:13.000 1970-01-14 2024-10-11 00:00:13 +14 14 15 1.4 2.8000000000000003 14 1970-01-15 2024-10-11 00:00:14.000 1970-01-15 2024-10-11 00:00:14 +16 16 17 1.6 3.2 16 1970-01-17 2024-10-11 00:00:16.000 1970-01-17 2024-10-11 00:00:16 +17 17 18 1.7 3.4000000000000004 17 1970-01-18 2024-10-11 00:00:17.000 1970-01-18 2024-10-11 00:00:17 +18 18 19 1.8 3.6 18 1970-01-19 2024-10-11 00:00:18.000 1970-01-19 2024-10-11 00:00:18 +19 19 20 1.9 3.8000000000000003 19 1970-01-20 2024-10-11 00:00:19.000 1970-01-20 2024-10-11 00:00:19 +21 21 22 2.1 4.2 21 1970-01-22 2024-10-11 00:00:21.000 1970-01-22 2024-10-11 00:00:21 +22 22 23 2.2 4.4 22 1970-01-23 2024-10-11 00:00:22.000 1970-01-23 2024-10-11 00:00:22 +23 23 24 2.3 4.6000000000000005 23 1970-01-24 2024-10-11 00:00:23.000 1970-01-24 2024-10-11 00:00:23 +24 24 25 2.4 4.800000000000001 24 1970-01-25 2024-10-11 00:00:24.000 1970-01-25 2024-10-11 00:00:24 +26 26 27 2.6 5.2 26 1970-01-27 2024-10-11 00:00:26.000 1970-01-27 2024-10-11 00:00:26 +27 27 28 2.7 5.4 27 1970-01-28 2024-10-11 00:00:27.000 1970-01-28 2024-10-11 00:00:27 +28 28 29 2.8 5.6000000000000005 28 1970-01-29 2024-10-11 00:00:28.000 1970-01-29 2024-10-11 00:00:28 +29 29 30 2.9 5.800000000000001 29 1970-01-30 2024-10-11 00:00:29.000 1970-01-30 2024-10-11 00:00:29 +31 31 32 3.1 6.2 31 1970-02-01 2024-10-11 00:00:31.000 1970-02-01 2024-10-11 00:00:31 +32 32 33 3.2 6.4 32 1970-02-02 2024-10-11 00:00:32.000 1970-02-02 2024-10-11 00:00:32 +33 33 34 3.3 6.6000000000000005 33 1970-02-03 2024-10-11 00:00:33.000 1970-02-03 2024-10-11 00:00:33 +34 34 35 3.4 6.800000000000001 34 1970-02-04 2024-10-11 00:00:34.000 1970-02-04 2024-10-11 00:00:34 +36 36 37 3.6 7.2 36 1970-02-06 2024-10-11 00:00:36.000 1970-02-06 2024-10-11 00:00:36 +37 37 38 3.7 7.4 37 1970-02-07 2024-10-11 00:00:37.000 1970-02-07 2024-10-11 00:00:37 +38 38 39 3.8 7.6000000000000005 38 1970-02-08 2024-10-11 00:00:38.000 1970-02-08 2024-10-11 00:00:38 +39 39 40 3.9 7.800000000000001 39 1970-02-09 2024-10-11 00:00:39.000 1970-02-09 2024-10-11 00:00:39 +41 41 42 4.1 8.200000000000001 41 1970-02-11 2024-10-11 00:00:41.000 1970-02-11 2024-10-11 00:00:41 +42 42 43 4.2 8.4 42 1970-02-12 2024-10-11 00:00:42.000 1970-02-12 2024-10-11 00:00:42 +43 43 44 4.3 8.6 43 1970-02-13 2024-10-11 00:00:43.000 1970-02-13 2024-10-11 00:00:43 +44 44 45 4.4 8.8 44 1970-02-14 2024-10-11 00:00:44.000 1970-02-14 2024-10-11 00:00:44 +46 46 47 4.6 9.200000000000001 46 1970-02-16 2024-10-11 00:00:46.000 1970-02-16 2024-10-11 00:00:46 +47 47 48 4.7 9.4 47 1970-02-17 2024-10-11 00:00:47.000 1970-02-17 2024-10-11 00:00:47 +48 48 49 4.8 9.600000000000001 48 1970-02-18 2024-10-11 00:00:48.000 1970-02-18 2024-10-11 00:00:48 +49 49 50 4.9 9.8 49 1970-02-19 2024-10-11 00:00:49.000 1970-02-19 2024-10-11 00:00:49 +51 51 52 5.1 10.200000000000001 51 1970-02-21 2024-10-11 00:00:51.000 1970-02-21 2024-10-11 00:00:51 +52 52 53 5.2 10.4 52 1970-02-22 2024-10-11 00:00:52.000 1970-02-22 2024-10-11 00:00:52 +53 53 54 5.3 10.600000000000001 53 1970-02-23 2024-10-11 00:00:53.000 1970-02-23 2024-10-11 00:00:53 +54 54 55 5.4 10.8 54 1970-02-24 2024-10-11 00:00:54.000 1970-02-24 2024-10-11 00:00:54 +56 56 57 5.6 11.200000000000001 56 1970-02-26 2024-10-11 00:00:56.000 1970-02-26 2024-10-11 00:00:56 +57 57 58 5.7 11.4 57 1970-02-27 2024-10-11 00:00:57.000 1970-02-27 2024-10-11 00:00:57 +58 58 59 5.8 11.600000000000001 58 1970-02-28 2024-10-11 00:00:58.000 1970-02-28 2024-10-11 00:00:58 +59 59 60 5.9 11.8 59 1970-03-01 2024-10-11 00:00:59.000 1970-03-01 2024-10-11 00:00:59 +61 61 62 6.1 12.200000000000001 61 1970-03-03 2024-10-11 00:01:01.000 1970-03-03 2024-10-11 00:01:01 +62 62 63 6.2 12.4 62 1970-03-04 2024-10-11 00:01:02.000 1970-03-04 2024-10-11 00:01:02 +63 63 64 6.3 12.600000000000001 63 1970-03-05 2024-10-11 00:01:03.000 1970-03-05 2024-10-11 00:01:03 +64 64 65 6.4 12.8 64 1970-03-06 2024-10-11 00:01:04.000 1970-03-06 2024-10-11 00:01:04 +66 66 67 6.6 13.200000000000001 66 1970-03-08 2024-10-11 00:01:06.000 1970-03-08 2024-10-11 00:01:06 +67 67 68 6.7 13.4 67 1970-03-09 2024-10-11 00:01:07.000 1970-03-09 2024-10-11 00:01:07 +68 68 69 6.8 13.600000000000001 68 1970-03-10 2024-10-11 00:01:08.000 1970-03-10 2024-10-11 00:01:08 +69 69 70 6.9 13.8 69 1970-03-11 2024-10-11 00:01:09.000 1970-03-11 2024-10-11 00:01:09 +71 71 72 7.1 14.200000000000001 71 1970-03-13 2024-10-11 00:01:11.000 1970-03-13 2024-10-11 00:01:11 +72 72 73 7.2 14.4 72 1970-03-14 2024-10-11 00:01:12.000 1970-03-14 2024-10-11 00:01:12 +73 73 74 7.3 14.600000000000001 73 1970-03-15 2024-10-11 00:01:13.000 1970-03-15 2024-10-11 00:01:13 +74 74 75 7.4 14.8 74 1970-03-16 2024-10-11 00:01:14.000 1970-03-16 2024-10-11 00:01:14 +76 76 77 7.6 15.200000000000001 76 1970-03-18 2024-10-11 00:01:16.000 1970-03-18 2024-10-11 00:01:16 +77 77 78 7.7 15.4 77 1970-03-19 2024-10-11 00:01:17.000 1970-03-19 2024-10-11 00:01:17 +78 78 79 7.8 15.600000000000001 78 1970-03-20 2024-10-11 00:01:18.000 1970-03-20 2024-10-11 00:01:18 +79 79 80 7.9 15.8 79 1970-03-21 2024-10-11 00:01:19.000 1970-03-21 2024-10-11 00:01:19 +81 81 82 8.1 16.2 81 1970-03-23 2024-10-11 00:01:21.000 1970-03-23 2024-10-11 00:01:21 +82 82 83 8.2 16.400000000000002 82 1970-03-24 2024-10-11 00:01:22.000 1970-03-24 2024-10-11 00:01:22 +83 83 84 8.3 16.6 83 1970-03-25 2024-10-11 00:01:23.000 1970-03-25 2024-10-11 00:01:23 +84 84 85 8.4 16.8 84 1970-03-26 2024-10-11 00:01:24.000 1970-03-26 2024-10-11 00:01:24 +86 86 87 8.6 17.2 86 1970-03-28 2024-10-11 00:01:26.000 1970-03-28 2024-10-11 00:01:26 +87 87 88 8.7 17.400000000000002 87 1970-03-29 2024-10-11 00:01:27.000 1970-03-29 2024-10-11 00:01:27 +88 88 89 8.8 17.6 88 1970-03-30 2024-10-11 00:01:28.000 1970-03-30 2024-10-11 00:01:28 +89 89 90 8.9 17.8 89 1970-03-31 2024-10-11 00:01:29.000 1970-03-31 2024-10-11 00:01:29 +91 91 92 9.1 18.2 91 1970-04-02 2024-10-11 00:01:31.000 1970-04-02 2024-10-11 00:01:31 +92 92 93 9.2 18.400000000000002 92 1970-04-03 2024-10-11 00:01:32.000 1970-04-03 2024-10-11 00:01:32 +93 93 94 9.3 18.6 93 1970-04-04 2024-10-11 00:01:33.000 1970-04-04 2024-10-11 00:01:33 +94 94 95 9.4 18.8 94 1970-04-05 2024-10-11 00:01:34.000 1970-04-05 2024-10-11 00:01:34 +96 96 97 9.6 19.200000000000003 96 1970-04-07 2024-10-11 00:01:36.000 1970-04-07 2024-10-11 00:01:36 +97 97 98 9.7 19.400000000000002 97 1970-04-08 2024-10-11 00:01:37.000 1970-04-08 2024-10-11 00:01:37 +98 98 99 9.8 19.6 98 1970-04-09 2024-10-11 00:01:38.000 1970-04-09 2024-10-11 00:01:38 +99 99 100 9.9 19.8 99 1970-04-10 2024-10-11 00:01:39.000 1970-04-10 2024-10-11 00:01:39 +101 101 102 10.1 20.200000000000003 101 1970-04-12 2024-10-11 00:01:41.000 1970-04-12 2024-10-11 00:01:41 +102 102 103 10.2 20.400000000000002 102 1970-04-13 2024-10-11 00:01:42.000 1970-04-13 2024-10-11 00:01:42 +103 103 104 10.3 20.6 103 1970-04-14 2024-10-11 00:01:43.000 1970-04-14 2024-10-11 00:01:43 +104 104 105 10.4 20.8 104 1970-04-15 2024-10-11 00:01:44.000 1970-04-15 2024-10-11 00:01:44 +106 106 107 10.6 21.200000000000003 106 1970-04-17 2024-10-11 00:01:46.000 1970-04-17 2024-10-11 00:01:46 +107 107 108 10.7 21.400000000000002 107 1970-04-18 2024-10-11 00:01:47.000 1970-04-18 2024-10-11 00:01:47 +108 108 109 10.8 21.6 108 1970-04-19 2024-10-11 00:01:48.000 1970-04-19 2024-10-11 00:01:48 +109 109 110 10.9 21.8 109 1970-04-20 2024-10-11 00:01:49.000 1970-04-20 2024-10-11 00:01:49 +111 111 112 11.1 22.200000000000003 111 1970-04-22 2024-10-11 00:01:51.000 1970-04-22 2024-10-11 00:01:51 +112 112 113 11.2 22.400000000000002 112 1970-04-23 2024-10-11 00:01:52.000 1970-04-23 2024-10-11 00:01:52 +113 113 114 11.3 22.6 113 1970-04-24 2024-10-11 00:01:53.000 1970-04-24 2024-10-11 00:01:53 +114 114 115 11.4 22.8 114 1970-04-25 2024-10-11 00:01:54.000 1970-04-25 2024-10-11 00:01:54 +116 116 117 11.6 23.200000000000003 116 1970-04-27 2024-10-11 00:01:56.000 1970-04-27 2024-10-11 00:01:56 +117 117 118 11.7 23.400000000000002 117 1970-04-28 2024-10-11 00:01:57.000 1970-04-28 2024-10-11 00:01:57 +118 118 119 11.8 23.6 118 1970-04-29 2024-10-11 00:01:58.000 1970-04-29 2024-10-11 00:01:58 +119 119 120 11.9 23.8 119 1970-04-30 2024-10-11 00:01:59.000 1970-04-30 2024-10-11 00:01:59 +121 121 122 12.1 24.200000000000003 121 1970-05-02 2024-10-11 00:02:01.000 1970-05-02 2024-10-11 00:02:01 +122 122 123 12.2 24.400000000000002 122 1970-05-03 2024-10-11 00:02:02.000 1970-05-03 2024-10-11 00:02:02 +123 123 124 12.3 24.6 123 1970-05-04 2024-10-11 00:02:03.000 1970-05-04 2024-10-11 00:02:03 +124 124 125 12.4 24.8 124 1970-05-05 2024-10-11 00:02:04.000 1970-05-05 2024-10-11 00:02:04 +126 126 127 12.6 25.200000000000003 126 1970-05-07 2024-10-11 00:02:06.000 1970-05-07 2024-10-11 00:02:06 +127 127 128 12.7 25.400000000000002 127 1970-05-08 2024-10-11 00:02:07.000 1970-05-08 2024-10-11 00:02:07 +128 128 129 12.8 25.6 128 1970-05-09 2024-10-11 00:02:08.000 1970-05-09 2024-10-11 00:02:08 +129 129 130 12.9 25.8 129 1970-05-10 2024-10-11 00:02:09.000 1970-05-10 2024-10-11 00:02:09 +131 131 132 13.1 26.200000000000003 131 1970-05-12 2024-10-11 00:02:11.000 1970-05-12 2024-10-11 00:02:11 +132 132 133 13.2 26.400000000000002 132 1970-05-13 2024-10-11 00:02:12.000 1970-05-13 2024-10-11 00:02:12 +133 133 134 13.3 26.6 133 1970-05-14 2024-10-11 00:02:13.000 1970-05-14 2024-10-11 00:02:13 +134 134 135 13.4 26.8 134 1970-05-15 2024-10-11 00:02:14.000 1970-05-15 2024-10-11 00:02:14 +136 136 137 13.6 27.200000000000003 136 1970-05-17 2024-10-11 00:02:16.000 1970-05-17 2024-10-11 00:02:16 +137 137 138 13.7 27.400000000000002 137 1970-05-18 2024-10-11 00:02:17.000 1970-05-18 2024-10-11 00:02:17 +138 138 139 13.8 27.6 138 1970-05-19 2024-10-11 00:02:18.000 1970-05-19 2024-10-11 00:02:18 +139 139 140 13.9 27.8 139 1970-05-20 2024-10-11 00:02:19.000 1970-05-20 2024-10-11 00:02:19 +141 141 142 14.1 28.200000000000003 141 1970-05-22 2024-10-11 00:02:21.000 1970-05-22 2024-10-11 00:02:21 +142 142 143 14.2 28.400000000000002 142 1970-05-23 2024-10-11 00:02:22.000 1970-05-23 2024-10-11 00:02:22 +143 143 144 14.3 28.6 143 1970-05-24 2024-10-11 00:02:23.000 1970-05-24 2024-10-11 00:02:23 +144 144 145 14.4 28.8 144 1970-05-25 2024-10-11 00:02:24.000 1970-05-25 2024-10-11 00:02:24 +146 146 147 14.6 29.200000000000003 146 1970-05-27 2024-10-11 00:02:26.000 1970-05-27 2024-10-11 00:02:26 +147 147 148 14.7 29.400000000000002 147 1970-05-28 2024-10-11 00:02:27.000 1970-05-28 2024-10-11 00:02:27 +148 148 149 14.8 29.6 148 1970-05-29 2024-10-11 00:02:28.000 1970-05-29 2024-10-11 00:02:28 +149 149 150 14.9 29.8 149 1970-05-30 2024-10-11 00:02:29.000 1970-05-30 2024-10-11 00:02:29 +151 151 152 15.1 30.200000000000003 151 1970-06-01 2024-10-11 00:02:31.000 1970-06-01 2024-10-11 00:02:31 +152 152 153 15.2 30.400000000000002 152 1970-06-02 2024-10-11 00:02:32.000 1970-06-02 2024-10-11 00:02:32 +153 153 154 15.3 30.6 153 1970-06-03 2024-10-11 00:02:33.000 1970-06-03 2024-10-11 00:02:33 +154 154 155 15.4 30.8 154 1970-06-04 2024-10-11 00:02:34.000 1970-06-04 2024-10-11 00:02:34 +156 156 157 15.6 31.200000000000003 156 1970-06-06 2024-10-11 00:02:36.000 1970-06-06 2024-10-11 00:02:36 +157 157 158 15.7 31.400000000000002 157 1970-06-07 2024-10-11 00:02:37.000 1970-06-07 2024-10-11 00:02:37 +158 158 159 15.8 31.6 158 1970-06-08 2024-10-11 00:02:38.000 1970-06-08 2024-10-11 00:02:38 +159 159 160 15.9 31.8 159 1970-06-09 2024-10-11 00:02:39.000 1970-06-09 2024-10-11 00:02:39 +161 161 162 16.1 32.2 161 1970-06-11 2024-10-11 00:02:41.000 1970-06-11 2024-10-11 00:02:41 +162 162 163 16.2 32.4 162 1970-06-12 2024-10-11 00:02:42.000 1970-06-12 2024-10-11 00:02:42 +163 163 164 16.3 32.6 163 1970-06-13 2024-10-11 00:02:43.000 1970-06-13 2024-10-11 00:02:43 +164 164 165 16.4 32.800000000000004 164 1970-06-14 2024-10-11 00:02:44.000 1970-06-14 2024-10-11 00:02:44 +166 166 167 16.6 33.2 166 1970-06-16 2024-10-11 00:02:46.000 1970-06-16 2024-10-11 00:02:46 +167 167 168 16.7 33.4 167 1970-06-17 2024-10-11 00:02:47.000 1970-06-17 2024-10-11 00:02:47 +168 168 169 16.8 33.6 168 1970-06-18 2024-10-11 00:02:48.000 1970-06-18 2024-10-11 00:02:48 +169 169 170 16.9 33.800000000000004 169 1970-06-19 2024-10-11 00:02:49.000 1970-06-19 2024-10-11 00:02:49 +171 171 172 17.1 34.2 171 1970-06-21 2024-10-11 00:02:51.000 1970-06-21 2024-10-11 00:02:51 +172 172 173 17.2 34.4 172 1970-06-22 2024-10-11 00:02:52.000 1970-06-22 2024-10-11 00:02:52 +173 173 174 17.3 34.6 173 1970-06-23 2024-10-11 00:02:53.000 1970-06-23 2024-10-11 00:02:53 +174 174 175 17.4 34.800000000000004 174 1970-06-24 2024-10-11 00:02:54.000 1970-06-24 2024-10-11 00:02:54 +176 176 177 17.6 35.2 176 1970-06-26 2024-10-11 00:02:56.000 1970-06-26 2024-10-11 00:02:56 +177 177 178 17.7 35.4 177 1970-06-27 2024-10-11 00:02:57.000 1970-06-27 2024-10-11 00:02:57 +178 178 179 17.8 35.6 178 1970-06-28 2024-10-11 00:02:58.000 1970-06-28 2024-10-11 00:02:58 +179 179 180 17.9 35.800000000000004 179 1970-06-29 2024-10-11 00:02:59.000 1970-06-29 2024-10-11 00:02:59 +181 181 182 18.1 36.2 181 1970-07-01 2024-10-11 00:03:01.000 1970-07-01 2024-10-11 00:03:01 +182 182 183 18.2 36.4 182 1970-07-02 2024-10-11 00:03:02.000 1970-07-02 2024-10-11 00:03:02 +183 183 184 18.3 36.6 183 1970-07-03 2024-10-11 00:03:03.000 1970-07-03 2024-10-11 00:03:03 +184 184 185 18.4 36.800000000000004 184 1970-07-04 2024-10-11 00:03:04.000 1970-07-04 2024-10-11 00:03:04 +186 186 187 18.6 37.2 186 1970-07-06 2024-10-11 00:03:06.000 1970-07-06 2024-10-11 00:03:06 +187 187 188 18.7 37.4 187 1970-07-07 2024-10-11 00:03:07.000 1970-07-07 2024-10-11 00:03:07 +188 188 189 18.8 37.6 188 1970-07-08 2024-10-11 00:03:08.000 1970-07-08 2024-10-11 00:03:08 +189 189 190 18.9 37.800000000000004 189 1970-07-09 2024-10-11 00:03:09.000 1970-07-09 2024-10-11 00:03:09 +191 191 192 19.1 38.2 191 1970-07-11 2024-10-11 00:03:11.000 1970-07-11 2024-10-11 00:03:11 +192 192 193 19.2 38.400000000000006 192 1970-07-12 2024-10-11 00:03:12.000 1970-07-12 2024-10-11 00:03:12 +193 193 194 19.3 38.6 193 1970-07-13 2024-10-11 00:03:13.000 1970-07-13 2024-10-11 00:03:13 +194 194 195 19.4 38.800000000000004 194 1970-07-14 2024-10-11 00:03:14.000 1970-07-14 2024-10-11 00:03:14 +196 196 197 19.6 39.2 196 1970-07-16 2024-10-11 00:03:16.000 1970-07-16 2024-10-11 00:03:16 +197 197 198 19.7 39.400000000000006 197 1970-07-17 2024-10-11 00:03:17.000 1970-07-17 2024-10-11 00:03:17 +198 198 199 19.8 39.6 198 1970-07-18 2024-10-11 00:03:18.000 1970-07-18 2024-10-11 00:03:18 +199 199 200 19.9 39.800000000000004 199 1970-07-19 2024-10-11 00:03:19.000 1970-07-19 2024-10-11 00:03:19 +201 201 202 20.1 40.2 201 1970-07-21 2024-10-11 00:03:21.000 1970-07-21 2024-10-11 00:03:21 +202 202 203 20.2 40.400000000000006 202 1970-07-22 2024-10-11 00:03:22.000 1970-07-22 2024-10-11 00:03:22 +203 203 204 20.3 40.6 203 1970-07-23 2024-10-11 00:03:23.000 1970-07-23 2024-10-11 00:03:23 +204 204 205 20.4 40.800000000000004 204 1970-07-24 2024-10-11 00:03:24.000 1970-07-24 2024-10-11 00:03:24 +206 206 207 20.6 41.2 206 1970-07-26 2024-10-11 00:03:26.000 1970-07-26 2024-10-11 00:03:26 +207 207 208 20.7 41.400000000000006 207 1970-07-27 2024-10-11 00:03:27.000 1970-07-27 2024-10-11 00:03:27 +208 208 209 20.8 41.6 208 1970-07-28 2024-10-11 00:03:28.000 1970-07-28 2024-10-11 00:03:28 +209 209 210 20.9 41.800000000000004 209 1970-07-29 2024-10-11 00:03:29.000 1970-07-29 2024-10-11 00:03:29 +211 211 212 21.1 42.2 211 1970-07-31 2024-10-11 00:03:31.000 1970-07-31 2024-10-11 00:03:31 +212 212 213 21.2 42.400000000000006 212 1970-08-01 2024-10-11 00:03:32.000 1970-08-01 2024-10-11 00:03:32 +213 213 214 21.3 42.6 213 1970-08-02 2024-10-11 00:03:33.000 1970-08-02 2024-10-11 00:03:33 +214 214 215 21.4 42.800000000000004 214 1970-08-03 2024-10-11 00:03:34.000 1970-08-03 2024-10-11 00:03:34 +216 216 217 21.6 43.2 216 1970-08-05 2024-10-11 00:03:36.000 1970-08-05 2024-10-11 00:03:36 +217 217 218 21.7 43.400000000000006 217 1970-08-06 2024-10-11 00:03:37.000 1970-08-06 2024-10-11 00:03:37 +218 218 219 21.8 43.6 218 1970-08-07 2024-10-11 00:03:38.000 1970-08-07 2024-10-11 00:03:38 +219 219 220 21.9 43.800000000000004 219 1970-08-08 2024-10-11 00:03:39.000 1970-08-08 2024-10-11 00:03:39 +221 221 222 22.1 44.2 221 1970-08-10 2024-10-11 00:03:41.000 1970-08-10 2024-10-11 00:03:41 +222 222 223 22.2 44.400000000000006 222 1970-08-11 2024-10-11 00:03:42.000 1970-08-11 2024-10-11 00:03:42 +223 223 224 22.3 44.6 223 1970-08-12 2024-10-11 00:03:43.000 1970-08-12 2024-10-11 00:03:43 +224 224 225 22.4 44.800000000000004 224 1970-08-13 2024-10-11 00:03:44.000 1970-08-13 2024-10-11 00:03:44 +226 226 227 22.6 45.2 226 1970-08-15 2024-10-11 00:03:46.000 1970-08-15 2024-10-11 00:03:46 +227 227 228 22.7 45.400000000000006 227 1970-08-16 2024-10-11 00:03:47.000 1970-08-16 2024-10-11 00:03:47 +228 228 229 22.8 45.6 228 1970-08-17 2024-10-11 00:03:48.000 1970-08-17 2024-10-11 00:03:48 +229 229 230 22.9 45.800000000000004 229 1970-08-18 2024-10-11 00:03:49.000 1970-08-18 2024-10-11 00:03:49 +231 231 232 23.1 46.2 231 1970-08-20 2024-10-11 00:03:51.000 1970-08-20 2024-10-11 00:03:51 +232 232 233 23.2 46.400000000000006 232 1970-08-21 2024-10-11 00:03:52.000 1970-08-21 2024-10-11 00:03:52 +233 233 234 23.3 46.6 233 1970-08-22 2024-10-11 00:03:53.000 1970-08-22 2024-10-11 00:03:53 +234 234 235 23.4 46.800000000000004 234 1970-08-23 2024-10-11 00:03:54.000 1970-08-23 2024-10-11 00:03:54 +236 236 237 23.6 47.2 236 1970-08-25 2024-10-11 00:03:56.000 1970-08-25 2024-10-11 00:03:56 +237 237 238 23.7 47.400000000000006 237 1970-08-26 2024-10-11 00:03:57.000 1970-08-26 2024-10-11 00:03:57 +238 238 239 23.8 47.6 238 1970-08-27 2024-10-11 00:03:58.000 1970-08-27 2024-10-11 00:03:58 +239 239 240 23.9 47.800000000000004 239 1970-08-28 2024-10-11 00:03:59.000 1970-08-28 2024-10-11 00:03:59 +241 241 242 24.1 48.2 241 1970-08-30 2024-10-11 00:04:01.000 1970-08-30 2024-10-11 00:04:01 +242 242 243 24.2 48.400000000000006 242 1970-08-31 2024-10-11 00:04:02.000 1970-08-31 2024-10-11 00:04:02 +243 243 244 24.3 48.6 243 1970-09-01 2024-10-11 00:04:03.000 1970-09-01 2024-10-11 00:04:03 +244 244 245 24.4 48.800000000000004 244 1970-09-02 2024-10-11 00:04:04.000 1970-09-02 2024-10-11 00:04:04 +246 246 247 24.6 49.2 246 1970-09-04 2024-10-11 00:04:06.000 1970-09-04 2024-10-11 00:04:06 +247 247 248 24.7 49.400000000000006 247 1970-09-05 2024-10-11 00:04:07.000 1970-09-05 2024-10-11 00:04:07 +248 248 249 24.8 49.6 248 1970-09-06 2024-10-11 00:04:08.000 1970-09-06 2024-10-11 00:04:08 +249 249 250 24.9 49.800000000000004 249 1970-09-07 2024-10-11 00:04:09.000 1970-09-07 2024-10-11 00:04:09 +251 251 252 25.1 50.2 251 1970-09-09 2024-10-11 00:04:11.000 1970-09-09 2024-10-11 00:04:11 +252 252 253 25.2 50.400000000000006 252 1970-09-10 2024-10-11 00:04:12.000 1970-09-10 2024-10-11 00:04:12 +253 253 254 25.3 50.6 253 1970-09-11 2024-10-11 00:04:13.000 1970-09-11 2024-10-11 00:04:13 +254 254 255 25.4 50.800000000000004 254 1970-09-12 2024-10-11 00:04:14.000 1970-09-12 2024-10-11 00:04:14 +256 256 257 25.6 51.2 256 1970-09-14 2024-10-11 00:04:16.000 1970-09-14 2024-10-11 00:04:16 +257 257 258 25.7 51.400000000000006 257 1970-09-15 2024-10-11 00:04:17.000 1970-09-15 2024-10-11 00:04:17 +258 258 259 25.8 51.6 258 1970-09-16 2024-10-11 00:04:18.000 1970-09-16 2024-10-11 00:04:18 +259 259 260 25.9 51.800000000000004 259 1970-09-17 2024-10-11 00:04:19.000 1970-09-17 2024-10-11 00:04:19 +261 261 262 26.1 52.2 261 1970-09-19 2024-10-11 00:04:21.000 1970-09-19 2024-10-11 00:04:21 +262 262 263 26.2 52.400000000000006 262 1970-09-20 2024-10-11 00:04:22.000 1970-09-20 2024-10-11 00:04:22 +263 263 264 26.3 52.6 263 1970-09-21 2024-10-11 00:04:23.000 1970-09-21 2024-10-11 00:04:23 +264 264 265 26.4 52.800000000000004 264 1970-09-22 2024-10-11 00:04:24.000 1970-09-22 2024-10-11 00:04:24 +266 266 267 26.6 53.2 266 1970-09-24 2024-10-11 00:04:26.000 1970-09-24 2024-10-11 00:04:26 +267 267 268 26.7 53.400000000000006 267 1970-09-25 2024-10-11 00:04:27.000 1970-09-25 2024-10-11 00:04:27 +268 268 269 26.8 53.6 268 1970-09-26 2024-10-11 00:04:28.000 1970-09-26 2024-10-11 00:04:28 +269 269 270 26.9 53.800000000000004 269 1970-09-27 2024-10-11 00:04:29.000 1970-09-27 2024-10-11 00:04:29 +271 271 272 27.1 54.2 271 1970-09-29 2024-10-11 00:04:31.000 1970-09-29 2024-10-11 00:04:31 +272 272 273 27.2 54.400000000000006 272 1970-09-30 2024-10-11 00:04:32.000 1970-09-30 2024-10-11 00:04:32 +273 273 274 27.3 54.6 273 1970-10-01 2024-10-11 00:04:33.000 1970-10-01 2024-10-11 00:04:33 +274 274 275 27.4 54.800000000000004 274 1970-10-02 2024-10-11 00:04:34.000 1970-10-02 2024-10-11 00:04:34 +276 276 277 27.6 55.2 276 1970-10-04 2024-10-11 00:04:36.000 1970-10-04 2024-10-11 00:04:36 +277 277 278 27.7 55.400000000000006 277 1970-10-05 2024-10-11 00:04:37.000 1970-10-05 2024-10-11 00:04:37 +278 278 279 27.8 55.6 278 1970-10-06 2024-10-11 00:04:38.000 1970-10-06 2024-10-11 00:04:38 +279 279 280 27.9 55.800000000000004 279 1970-10-07 2024-10-11 00:04:39.000 1970-10-07 2024-10-11 00:04:39 +281 281 282 28.1 56.2 281 1970-10-09 2024-10-11 00:04:41.000 1970-10-09 2024-10-11 00:04:41 +282 282 283 28.2 56.400000000000006 282 1970-10-10 2024-10-11 00:04:42.000 1970-10-10 2024-10-11 00:04:42 +283 283 284 28.3 56.6 283 1970-10-11 2024-10-11 00:04:43.000 1970-10-11 2024-10-11 00:04:43 +284 284 285 28.4 56.800000000000004 284 1970-10-12 2024-10-11 00:04:44.000 1970-10-12 2024-10-11 00:04:44 +286 286 287 28.6 57.2 286 1970-10-14 2024-10-11 00:04:46.000 1970-10-14 2024-10-11 00:04:46 +287 287 288 28.7 57.400000000000006 287 1970-10-15 2024-10-11 00:04:47.000 1970-10-15 2024-10-11 00:04:47 +288 288 289 28.8 57.6 288 1970-10-16 2024-10-11 00:04:48.000 1970-10-16 2024-10-11 00:04:48 +289 289 290 28.9 57.800000000000004 289 1970-10-17 2024-10-11 00:04:49.000 1970-10-17 2024-10-11 00:04:49 +291 291 292 29.1 58.2 291 1970-10-19 2024-10-11 00:04:51.000 1970-10-19 2024-10-11 00:04:51 +292 292 293 29.2 58.400000000000006 292 1970-10-20 2024-10-11 00:04:52.000 1970-10-20 2024-10-11 00:04:52 +293 293 294 29.3 58.6 293 1970-10-21 2024-10-11 00:04:53.000 1970-10-21 2024-10-11 00:04:53 +294 294 295 29.4 58.800000000000004 294 1970-10-22 2024-10-11 00:04:54.000 1970-10-22 2024-10-11 00:04:54 +296 296 297 29.6 59.2 296 1970-10-24 2024-10-11 00:04:56.000 1970-10-24 2024-10-11 00:04:56 +297 297 298 29.7 59.400000000000006 297 1970-10-25 2024-10-11 00:04:57.000 1970-10-25 2024-10-11 00:04:57 +298 298 299 29.8 59.6 298 1970-10-26 2024-10-11 00:04:58.000 1970-10-26 2024-10-11 00:04:58 +299 299 300 29.9 59.800000000000004 299 1970-10-27 2024-10-11 00:04:59.000 1970-10-27 2024-10-11 00:04:59 +301 301 302 30.1 60.2 301 1970-10-29 2024-10-11 00:05:01.000 1970-10-29 2024-10-11 00:05:01 +302 302 303 30.2 60.400000000000006 302 1970-10-30 2024-10-11 00:05:02.000 1970-10-30 2024-10-11 00:05:02 +303 303 304 30.3 60.6 303 1970-10-31 2024-10-11 00:05:03.000 1970-10-31 2024-10-11 00:05:03 +304 304 305 30.4 60.800000000000004 304 1970-11-01 2024-10-11 00:05:04.000 1970-11-01 2024-10-11 00:05:04 +306 306 307 30.6 61.2 306 1970-11-03 2024-10-11 00:05:06.000 1970-11-03 2024-10-11 00:05:06 +307 307 308 30.7 61.400000000000006 307 1970-11-04 2024-10-11 00:05:07.000 1970-11-04 2024-10-11 00:05:07 +308 308 309 30.8 61.6 308 1970-11-05 2024-10-11 00:05:08.000 1970-11-05 2024-10-11 00:05:08 +309 309 310 30.9 61.800000000000004 309 1970-11-06 2024-10-11 00:05:09.000 1970-11-06 2024-10-11 00:05:09 +311 311 312 31.1 62.2 311 1970-11-08 2024-10-11 00:05:11.000 1970-11-08 2024-10-11 00:05:11 +312 312 313 31.2 62.400000000000006 312 1970-11-09 2024-10-11 00:05:12.000 1970-11-09 2024-10-11 00:05:12 +313 313 314 31.3 62.6 313 1970-11-10 2024-10-11 00:05:13.000 1970-11-10 2024-10-11 00:05:13 +314 314 315 31.4 62.800000000000004 314 1970-11-11 2024-10-11 00:05:14.000 1970-11-11 2024-10-11 00:05:14 +316 316 317 31.6 63.2 316 1970-11-13 2024-10-11 00:05:16.000 1970-11-13 2024-10-11 00:05:16 +317 317 318 31.7 63.400000000000006 317 1970-11-14 2024-10-11 00:05:17.000 1970-11-14 2024-10-11 00:05:17 +318 318 319 31.8 63.6 318 1970-11-15 2024-10-11 00:05:18.000 1970-11-15 2024-10-11 00:05:18 +319 319 320 31.9 63.800000000000004 319 1970-11-16 2024-10-11 00:05:19.000 1970-11-16 2024-10-11 00:05:19 +321 321 322 32.1 64.2 321 1970-11-18 2024-10-11 00:05:21.000 1970-11-18 2024-10-11 00:05:21 +322 322 323 32.2 64.4 322 1970-11-19 2024-10-11 00:05:22.000 1970-11-19 2024-10-11 00:05:22 +323 323 324 32.3 64.60000000000001 323 1970-11-20 2024-10-11 00:05:23.000 1970-11-20 2024-10-11 00:05:23 +324 324 325 32.4 64.8 324 1970-11-21 2024-10-11 00:05:24.000 1970-11-21 2024-10-11 00:05:24 +326 326 327 32.6 65.2 326 1970-11-23 2024-10-11 00:05:26.000 1970-11-23 2024-10-11 00:05:26 +327 327 328 32.7 65.4 327 1970-11-24 2024-10-11 00:05:27.000 1970-11-24 2024-10-11 00:05:27 +328 328 329 32.8 65.60000000000001 328 1970-11-25 2024-10-11 00:05:28.000 1970-11-25 2024-10-11 00:05:28 +329 329 330 32.9 65.8 329 1970-11-26 2024-10-11 00:05:29.000 1970-11-26 2024-10-11 00:05:29 +331 331 332 33.1 66.2 331 1970-11-28 2024-10-11 00:05:31.000 1970-11-28 2024-10-11 00:05:31 +332 332 333 33.2 66.4 332 1970-11-29 2024-10-11 00:05:32.000 1970-11-29 2024-10-11 00:05:32 +333 333 334 33.3 66.60000000000001 333 1970-11-30 2024-10-11 00:05:33.000 1970-11-30 2024-10-11 00:05:33 +334 334 335 33.4 66.8 334 1970-12-01 2024-10-11 00:05:34.000 1970-12-01 2024-10-11 00:05:34 +336 336 337 33.6 67.2 336 1970-12-03 2024-10-11 00:05:36.000 1970-12-03 2024-10-11 00:05:36 +337 337 338 33.7 67.4 337 1970-12-04 2024-10-11 00:05:37.000 1970-12-04 2024-10-11 00:05:37 +338 338 339 33.8 67.60000000000001 338 1970-12-05 2024-10-11 00:05:38.000 1970-12-05 2024-10-11 00:05:38 +339 339 340 33.9 67.8 339 1970-12-06 2024-10-11 00:05:39.000 1970-12-06 2024-10-11 00:05:39 +341 341 342 34.1 68.2 341 1970-12-08 2024-10-11 00:05:41.000 1970-12-08 2024-10-11 00:05:41 +342 342 343 34.2 68.4 342 1970-12-09 2024-10-11 00:05:42.000 1970-12-09 2024-10-11 00:05:42 +343 343 344 34.3 68.60000000000001 343 1970-12-10 2024-10-11 00:05:43.000 1970-12-10 2024-10-11 00:05:43 +344 344 345 34.4 68.8 344 1970-12-11 2024-10-11 00:05:44.000 1970-12-11 2024-10-11 00:05:44 +346 346 347 34.6 69.2 346 1970-12-13 2024-10-11 00:05:46.000 1970-12-13 2024-10-11 00:05:46 +347 347 348 34.7 69.4 347 1970-12-14 2024-10-11 00:05:47.000 1970-12-14 2024-10-11 00:05:47 +348 348 349 34.8 69.60000000000001 348 1970-12-15 2024-10-11 00:05:48.000 1970-12-15 2024-10-11 00:05:48 +349 349 350 34.9 69.8 349 1970-12-16 2024-10-11 00:05:49.000 1970-12-16 2024-10-11 00:05:49 +351 351 352 35.1 70.2 351 1970-12-18 2024-10-11 00:05:51.000 1970-12-18 2024-10-11 00:05:51 +352 352 353 35.2 70.4 352 1970-12-19 2024-10-11 00:05:52.000 1970-12-19 2024-10-11 00:05:52 +353 353 354 35.3 70.60000000000001 353 1970-12-20 2024-10-11 00:05:53.000 1970-12-20 2024-10-11 00:05:53 +354 354 355 35.4 70.8 354 1970-12-21 2024-10-11 00:05:54.000 1970-12-21 2024-10-11 00:05:54 +356 356 357 35.6 71.2 356 1970-12-23 2024-10-11 00:05:56.000 1970-12-23 2024-10-11 00:05:56 +357 357 358 35.7 71.4 357 1970-12-24 2024-10-11 00:05:57.000 1970-12-24 2024-10-11 00:05:57 +358 358 359 35.8 71.60000000000001 358 1970-12-25 2024-10-11 00:05:58.000 1970-12-25 2024-10-11 00:05:58 +359 359 360 35.9 71.8 359 1970-12-26 2024-10-11 00:05:59.000 1970-12-26 2024-10-11 00:05:59 +361 361 362 36.1 72.2 361 1970-12-28 2024-10-11 00:06:01.000 1970-12-28 2024-10-11 00:06:01 +362 362 363 36.2 72.4 362 1970-12-29 2024-10-11 00:06:02.000 1970-12-29 2024-10-11 00:06:02 +363 363 364 36.3 72.60000000000001 363 1970-12-30 2024-10-11 00:06:03.000 1970-12-30 2024-10-11 00:06:03 +364 364 365 36.4 72.8 364 1970-12-31 2024-10-11 00:06:04.000 1970-12-31 2024-10-11 00:06:04 +366 366 367 36.6 73.2 366 1971-01-02 2024-10-11 00:06:06.000 1971-01-02 2024-10-11 00:06:06 +367 367 368 36.7 73.4 367 1971-01-03 2024-10-11 00:06:07.000 1971-01-03 2024-10-11 00:06:07 +368 368 369 36.8 73.60000000000001 368 1971-01-04 2024-10-11 00:06:08.000 1971-01-04 2024-10-11 00:06:08 +369 369 370 36.9 73.8 369 1971-01-05 2024-10-11 00:06:09.000 1971-01-05 2024-10-11 00:06:09 +371 371 372 37.1 74.2 371 1971-01-07 2024-10-11 00:06:11.000 1971-01-07 2024-10-11 00:06:11 +372 372 373 37.2 74.4 372 1971-01-08 2024-10-11 00:06:12.000 1971-01-08 2024-10-11 00:06:12 +373 373 374 37.3 74.60000000000001 373 1971-01-09 2024-10-11 00:06:13.000 1971-01-09 2024-10-11 00:06:13 +374 374 375 37.4 74.8 374 1971-01-10 2024-10-11 00:06:14.000 1971-01-10 2024-10-11 00:06:14 +376 376 377 37.6 75.2 376 1971-01-12 2024-10-11 00:06:16.000 1971-01-12 2024-10-11 00:06:16 +377 377 378 37.7 75.4 377 1971-01-13 2024-10-11 00:06:17.000 1971-01-13 2024-10-11 00:06:17 +378 378 379 37.8 75.60000000000001 378 1971-01-14 2024-10-11 00:06:18.000 1971-01-14 2024-10-11 00:06:18 +379 379 380 37.9 75.8 379 1971-01-15 2024-10-11 00:06:19.000 1971-01-15 2024-10-11 00:06:19 +381 381 382 38.1 76.2 381 1971-01-17 2024-10-11 00:06:21.000 1971-01-17 2024-10-11 00:06:21 +382 382 383 38.2 76.4 382 1971-01-18 2024-10-11 00:06:22.000 1971-01-18 2024-10-11 00:06:22 +383 383 384 38.3 76.60000000000001 383 1971-01-19 2024-10-11 00:06:23.000 1971-01-19 2024-10-11 00:06:23 +384 384 385 38.4 76.80000000000001 384 1971-01-20 2024-10-11 00:06:24.000 1971-01-20 2024-10-11 00:06:24 +386 386 387 38.6 77.2 386 1971-01-22 2024-10-11 00:06:26.000 1971-01-22 2024-10-11 00:06:26 +387 387 388 38.7 77.4 387 1971-01-23 2024-10-11 00:06:27.000 1971-01-23 2024-10-11 00:06:27 +388 388 389 38.8 77.60000000000001 388 1971-01-24 2024-10-11 00:06:28.000 1971-01-24 2024-10-11 00:06:28 +389 389 390 38.9 77.80000000000001 389 1971-01-25 2024-10-11 00:06:29.000 1971-01-25 2024-10-11 00:06:29 +391 391 392 39.1 78.2 391 1971-01-27 2024-10-11 00:06:31.000 1971-01-27 2024-10-11 00:06:31 +392 392 393 39.2 78.4 392 1971-01-28 2024-10-11 00:06:32.000 1971-01-28 2024-10-11 00:06:32 +393 393 394 39.3 78.60000000000001 393 1971-01-29 2024-10-11 00:06:33.000 1971-01-29 2024-10-11 00:06:33 +394 394 395 39.4 78.80000000000001 394 1971-01-30 2024-10-11 00:06:34.000 1971-01-30 2024-10-11 00:06:34 +396 396 397 39.6 79.2 396 1971-02-01 2024-10-11 00:06:36.000 1971-02-01 2024-10-11 00:06:36 +397 397 398 39.7 79.4 397 1971-02-02 2024-10-11 00:06:37.000 1971-02-02 2024-10-11 00:06:37 +398 398 399 39.8 79.60000000000001 398 1971-02-03 2024-10-11 00:06:38.000 1971-02-03 2024-10-11 00:06:38 +399 399 400 39.9 79.80000000000001 399 1971-02-04 2024-10-11 00:06:39.000 1971-02-04 2024-10-11 00:06:39 +401 401 402 40.1 80.2 401 1971-02-06 2024-10-11 00:06:41.000 1971-02-06 2024-10-11 00:06:41 +402 402 403 40.2 80.4 402 1971-02-07 2024-10-11 00:06:42.000 1971-02-07 2024-10-11 00:06:42 +403 403 404 40.3 80.60000000000001 403 1971-02-08 2024-10-11 00:06:43.000 1971-02-08 2024-10-11 00:06:43 +404 404 405 40.4 80.80000000000001 404 1971-02-09 2024-10-11 00:06:44.000 1971-02-09 2024-10-11 00:06:44 +406 406 407 40.6 81.2 406 1971-02-11 2024-10-11 00:06:46.000 1971-02-11 2024-10-11 00:06:46 +407 407 408 40.7 81.4 407 1971-02-12 2024-10-11 00:06:47.000 1971-02-12 2024-10-11 00:06:47 +408 408 409 40.8 81.60000000000001 408 1971-02-13 2024-10-11 00:06:48.000 1971-02-13 2024-10-11 00:06:48 +409 409 410 40.9 81.80000000000001 409 1971-02-14 2024-10-11 00:06:49.000 1971-02-14 2024-10-11 00:06:49 +411 411 412 41.1 82.2 411 1971-02-16 2024-10-11 00:06:51.000 1971-02-16 2024-10-11 00:06:51 +412 412 413 41.2 82.4 412 1971-02-17 2024-10-11 00:06:52.000 1971-02-17 2024-10-11 00:06:52 +413 413 414 41.3 82.60000000000001 413 1971-02-18 2024-10-11 00:06:53.000 1971-02-18 2024-10-11 00:06:53 +414 414 415 41.4 82.80000000000001 414 1971-02-19 2024-10-11 00:06:54.000 1971-02-19 2024-10-11 00:06:54 +416 416 417 41.6 83.2 416 1971-02-21 2024-10-11 00:06:56.000 1971-02-21 2024-10-11 00:06:56 +417 417 418 41.7 83.4 417 1971-02-22 2024-10-11 00:06:57.000 1971-02-22 2024-10-11 00:06:57 +418 418 419 41.8 83.60000000000001 418 1971-02-23 2024-10-11 00:06:58.000 1971-02-23 2024-10-11 00:06:58 +419 419 420 41.9 83.80000000000001 419 1971-02-24 2024-10-11 00:06:59.000 1971-02-24 2024-10-11 00:06:59 +421 421 422 42.1 84.2 421 1971-02-26 2024-10-11 00:07:01.000 1971-02-26 2024-10-11 00:07:01 +422 422 423 42.2 84.4 422 1971-02-27 2024-10-11 00:07:02.000 1971-02-27 2024-10-11 00:07:02 +423 423 424 42.3 84.60000000000001 423 1971-02-28 2024-10-11 00:07:03.000 1971-02-28 2024-10-11 00:07:03 +424 424 425 42.4 84.80000000000001 424 1971-03-01 2024-10-11 00:07:04.000 1971-03-01 2024-10-11 00:07:04 +426 426 427 42.6 85.2 426 1971-03-03 2024-10-11 00:07:06.000 1971-03-03 2024-10-11 00:07:06 +427 427 428 42.7 85.4 427 1971-03-04 2024-10-11 00:07:07.000 1971-03-04 2024-10-11 00:07:07 +428 428 429 42.8 85.60000000000001 428 1971-03-05 2024-10-11 00:07:08.000 1971-03-05 2024-10-11 00:07:08 +429 429 430 42.9 85.80000000000001 429 1971-03-06 2024-10-11 00:07:09.000 1971-03-06 2024-10-11 00:07:09 +431 431 432 43.1 86.2 431 1971-03-08 2024-10-11 00:07:11.000 1971-03-08 2024-10-11 00:07:11 +432 432 433 43.2 86.4 432 1971-03-09 2024-10-11 00:07:12.000 1971-03-09 2024-10-11 00:07:12 +433 433 434 43.3 86.60000000000001 433 1971-03-10 2024-10-11 00:07:13.000 1971-03-10 2024-10-11 00:07:13 +434 434 435 43.4 86.80000000000001 434 1971-03-11 2024-10-11 00:07:14.000 1971-03-11 2024-10-11 00:07:14 +436 436 437 43.6 87.2 436 1971-03-13 2024-10-11 00:07:16.000 1971-03-13 2024-10-11 00:07:16 +437 437 438 43.7 87.4 437 1971-03-14 2024-10-11 00:07:17.000 1971-03-14 2024-10-11 00:07:17 +438 438 439 43.8 87.60000000000001 438 1971-03-15 2024-10-11 00:07:18.000 1971-03-15 2024-10-11 00:07:18 +439 439 440 43.9 87.80000000000001 439 1971-03-16 2024-10-11 00:07:19.000 1971-03-16 2024-10-11 00:07:19 +441 441 442 44.1 88.2 441 1971-03-18 2024-10-11 00:07:21.000 1971-03-18 2024-10-11 00:07:21 +442 442 443 44.2 88.4 442 1971-03-19 2024-10-11 00:07:22.000 1971-03-19 2024-10-11 00:07:22 +443 443 444 44.3 88.60000000000001 443 1971-03-20 2024-10-11 00:07:23.000 1971-03-20 2024-10-11 00:07:23 +444 444 445 44.4 88.80000000000001 444 1971-03-21 2024-10-11 00:07:24.000 1971-03-21 2024-10-11 00:07:24 +446 446 447 44.6 89.2 446 1971-03-23 2024-10-11 00:07:26.000 1971-03-23 2024-10-11 00:07:26 +447 447 448 44.7 89.4 447 1971-03-24 2024-10-11 00:07:27.000 1971-03-24 2024-10-11 00:07:27 +448 448 449 44.8 89.60000000000001 448 1971-03-25 2024-10-11 00:07:28.000 1971-03-25 2024-10-11 00:07:28 +449 449 450 44.9 89.80000000000001 449 1971-03-26 2024-10-11 00:07:29.000 1971-03-26 2024-10-11 00:07:29 +451 451 452 45.1 90.2 451 1971-03-28 2024-10-11 00:07:31.000 1971-03-28 2024-10-11 00:07:31 +452 452 453 45.2 90.4 452 1971-03-29 2024-10-11 00:07:32.000 1971-03-29 2024-10-11 00:07:32 +453 453 454 45.3 90.60000000000001 453 1971-03-30 2024-10-11 00:07:33.000 1971-03-30 2024-10-11 00:07:33 +454 454 455 45.4 90.80000000000001 454 1971-03-31 2024-10-11 00:07:34.000 1971-03-31 2024-10-11 00:07:34 +456 456 457 45.6 91.2 456 1971-04-02 2024-10-11 00:07:36.000 1971-04-02 2024-10-11 00:07:36 +457 457 458 45.7 91.4 457 1971-04-03 2024-10-11 00:07:37.000 1971-04-03 2024-10-11 00:07:37 +458 458 459 45.8 91.60000000000001 458 1971-04-04 2024-10-11 00:07:38.000 1971-04-04 2024-10-11 00:07:38 +459 459 460 45.9 91.80000000000001 459 1971-04-05 2024-10-11 00:07:39.000 1971-04-05 2024-10-11 00:07:39 +461 461 462 46.1 92.2 461 1971-04-07 2024-10-11 00:07:41.000 1971-04-07 2024-10-11 00:07:41 +462 462 463 46.2 92.4 462 1971-04-08 2024-10-11 00:07:42.000 1971-04-08 2024-10-11 00:07:42 +463 463 464 46.3 92.60000000000001 463 1971-04-09 2024-10-11 00:07:43.000 1971-04-09 2024-10-11 00:07:43 +464 464 465 46.4 92.80000000000001 464 1971-04-10 2024-10-11 00:07:44.000 1971-04-10 2024-10-11 00:07:44 +466 466 467 46.6 93.2 466 1971-04-12 2024-10-11 00:07:46.000 1971-04-12 2024-10-11 00:07:46 +467 467 468 46.7 93.4 467 1971-04-13 2024-10-11 00:07:47.000 1971-04-13 2024-10-11 00:07:47 +468 468 469 46.8 93.60000000000001 468 1971-04-14 2024-10-11 00:07:48.000 1971-04-14 2024-10-11 00:07:48 +469 469 470 46.9 93.80000000000001 469 1971-04-15 2024-10-11 00:07:49.000 1971-04-15 2024-10-11 00:07:49 +471 471 472 47.1 94.2 471 1971-04-17 2024-10-11 00:07:51.000 1971-04-17 2024-10-11 00:07:51 +472 472 473 47.2 94.4 472 1971-04-18 2024-10-11 00:07:52.000 1971-04-18 2024-10-11 00:07:52 +473 473 474 47.3 94.60000000000001 473 1971-04-19 2024-10-11 00:07:53.000 1971-04-19 2024-10-11 00:07:53 +474 474 475 47.4 94.80000000000001 474 1971-04-20 2024-10-11 00:07:54.000 1971-04-20 2024-10-11 00:07:54 +476 476 477 47.6 95.2 476 1971-04-22 2024-10-11 00:07:56.000 1971-04-22 2024-10-11 00:07:56 +477 477 478 47.7 95.4 477 1971-04-23 2024-10-11 00:07:57.000 1971-04-23 2024-10-11 00:07:57 +478 478 479 47.8 95.60000000000001 478 1971-04-24 2024-10-11 00:07:58.000 1971-04-24 2024-10-11 00:07:58 +479 479 480 47.9 95.80000000000001 479 1971-04-25 2024-10-11 00:07:59.000 1971-04-25 2024-10-11 00:07:59 +481 481 482 48.1 96.2 481 1971-04-27 2024-10-11 00:08:01.000 1971-04-27 2024-10-11 00:08:01 +482 482 483 48.2 96.4 482 1971-04-28 2024-10-11 00:08:02.000 1971-04-28 2024-10-11 00:08:02 +483 483 484 48.3 96.60000000000001 483 1971-04-29 2024-10-11 00:08:03.000 1971-04-29 2024-10-11 00:08:03 +484 484 485 48.4 96.80000000000001 484 1971-04-30 2024-10-11 00:08:04.000 1971-04-30 2024-10-11 00:08:04 +486 486 487 48.6 97.2 486 1971-05-02 2024-10-11 00:08:06.000 1971-05-02 2024-10-11 00:08:06 +487 487 488 48.7 97.4 487 1971-05-03 2024-10-11 00:08:07.000 1971-05-03 2024-10-11 00:08:07 +488 488 489 48.8 97.60000000000001 488 1971-05-04 2024-10-11 00:08:08.000 1971-05-04 2024-10-11 00:08:08 +489 489 490 48.9 97.80000000000001 489 1971-05-05 2024-10-11 00:08:09.000 1971-05-05 2024-10-11 00:08:09 +491 491 492 49.1 98.2 491 1971-05-07 2024-10-11 00:08:11.000 1971-05-07 2024-10-11 00:08:11 +492 492 493 49.2 98.4 492 1971-05-08 2024-10-11 00:08:12.000 1971-05-08 2024-10-11 00:08:12 +493 493 494 49.3 98.60000000000001 493 1971-05-09 2024-10-11 00:08:13.000 1971-05-09 2024-10-11 00:08:13 +494 494 495 49.4 98.80000000000001 494 1971-05-10 2024-10-11 00:08:14.000 1971-05-10 2024-10-11 00:08:14 +496 496 497 49.6 99.2 496 1971-05-12 2024-10-11 00:08:16.000 1971-05-12 2024-10-11 00:08:16 +497 497 498 49.7 99.4 497 1971-05-13 2024-10-11 00:08:17.000 1971-05-13 2024-10-11 00:08:17 +498 498 499 49.8 99.60000000000001 498 1971-05-14 2024-10-11 00:08:18.000 1971-05-14 2024-10-11 00:08:18 +499 499 500 49.9 99.80000000000001 499 1971-05-15 2024-10-11 00:08:19.000 1971-05-15 2024-10-11 00:08:19 +501 501 502 50.1 100.2 501 1971-05-17 2024-10-11 00:08:21.000 1971-05-17 2024-10-11 00:08:21 +502 502 503 50.2 100.4 502 1971-05-18 2024-10-11 00:08:22.000 1971-05-18 2024-10-11 00:08:22 +503 503 504 50.3 100.60000000000001 503 1971-05-19 2024-10-11 00:08:23.000 1971-05-19 2024-10-11 00:08:23 +504 504 505 50.4 100.80000000000001 504 1971-05-20 2024-10-11 00:08:24.000 1971-05-20 2024-10-11 00:08:24 +506 506 507 50.6 101.2 506 1971-05-22 2024-10-11 00:08:26.000 1971-05-22 2024-10-11 00:08:26 +507 507 508 50.7 101.4 507 1971-05-23 2024-10-11 00:08:27.000 1971-05-23 2024-10-11 00:08:27 +508 508 509 50.8 101.60000000000001 508 1971-05-24 2024-10-11 00:08:28.000 1971-05-24 2024-10-11 00:08:28 +509 509 510 50.9 101.80000000000001 509 1971-05-25 2024-10-11 00:08:29.000 1971-05-25 2024-10-11 00:08:29 +511 511 512 51.1 102.2 511 1971-05-27 2024-10-11 00:08:31.000 1971-05-27 2024-10-11 00:08:31 +512 512 513 51.2 102.4 512 1971-05-28 2024-10-11 00:08:32.000 1971-05-28 2024-10-11 00:08:32 +513 513 514 51.3 102.60000000000001 513 1971-05-29 2024-10-11 00:08:33.000 1971-05-29 2024-10-11 00:08:33 +514 514 515 51.4 102.80000000000001 514 1971-05-30 2024-10-11 00:08:34.000 1971-05-30 2024-10-11 00:08:34 +516 516 517 51.6 103.2 516 1971-06-01 2024-10-11 00:08:36.000 1971-06-01 2024-10-11 00:08:36 +517 517 518 51.7 103.4 517 1971-06-02 2024-10-11 00:08:37.000 1971-06-02 2024-10-11 00:08:37 +518 518 519 51.8 103.60000000000001 518 1971-06-03 2024-10-11 00:08:38.000 1971-06-03 2024-10-11 00:08:38 +519 519 520 51.9 103.80000000000001 519 1971-06-04 2024-10-11 00:08:39.000 1971-06-04 2024-10-11 00:08:39 +521 521 522 52.1 104.2 521 1971-06-06 2024-10-11 00:08:41.000 1971-06-06 2024-10-11 00:08:41 +522 522 523 52.2 104.4 522 1971-06-07 2024-10-11 00:08:42.000 1971-06-07 2024-10-11 00:08:42 +523 523 524 52.3 104.60000000000001 523 1971-06-08 2024-10-11 00:08:43.000 1971-06-08 2024-10-11 00:08:43 +524 524 525 52.4 104.80000000000001 524 1971-06-09 2024-10-11 00:08:44.000 1971-06-09 2024-10-11 00:08:44 +526 526 527 52.6 105.2 526 1971-06-11 2024-10-11 00:08:46.000 1971-06-11 2024-10-11 00:08:46 +527 527 528 52.7 105.4 527 1971-06-12 2024-10-11 00:08:47.000 1971-06-12 2024-10-11 00:08:47 +528 528 529 52.8 105.60000000000001 528 1971-06-13 2024-10-11 00:08:48.000 1971-06-13 2024-10-11 00:08:48 +529 529 530 52.9 105.80000000000001 529 1971-06-14 2024-10-11 00:08:49.000 1971-06-14 2024-10-11 00:08:49 +531 531 532 53.1 106.2 531 1971-06-16 2024-10-11 00:08:51.000 1971-06-16 2024-10-11 00:08:51 +532 532 533 53.2 106.4 532 1971-06-17 2024-10-11 00:08:52.000 1971-06-17 2024-10-11 00:08:52 +533 533 534 53.3 106.60000000000001 533 1971-06-18 2024-10-11 00:08:53.000 1971-06-18 2024-10-11 00:08:53 +534 534 535 53.4 106.80000000000001 534 1971-06-19 2024-10-11 00:08:54.000 1971-06-19 2024-10-11 00:08:54 +536 536 537 53.6 107.2 536 1971-06-21 2024-10-11 00:08:56.000 1971-06-21 2024-10-11 00:08:56 +537 537 538 53.7 107.4 537 1971-06-22 2024-10-11 00:08:57.000 1971-06-22 2024-10-11 00:08:57 +538 538 539 53.8 107.60000000000001 538 1971-06-23 2024-10-11 00:08:58.000 1971-06-23 2024-10-11 00:08:58 +539 539 540 53.9 107.80000000000001 539 1971-06-24 2024-10-11 00:08:59.000 1971-06-24 2024-10-11 00:08:59 +541 541 542 54.1 108.2 541 1971-06-26 2024-10-11 00:09:01.000 1971-06-26 2024-10-11 00:09:01 +542 542 543 54.2 108.4 542 1971-06-27 2024-10-11 00:09:02.000 1971-06-27 2024-10-11 00:09:02 +543 543 544 54.3 108.60000000000001 543 1971-06-28 2024-10-11 00:09:03.000 1971-06-28 2024-10-11 00:09:03 +544 544 545 54.4 108.80000000000001 544 1971-06-29 2024-10-11 00:09:04.000 1971-06-29 2024-10-11 00:09:04 +546 546 547 54.6 109.2 546 1971-07-01 2024-10-11 00:09:06.000 1971-07-01 2024-10-11 00:09:06 +547 547 548 54.7 109.4 547 1971-07-02 2024-10-11 00:09:07.000 1971-07-02 2024-10-11 00:09:07 +548 548 549 54.8 109.60000000000001 548 1971-07-03 2024-10-11 00:09:08.000 1971-07-03 2024-10-11 00:09:08 +549 549 550 54.9 109.80000000000001 549 1971-07-04 2024-10-11 00:09:09.000 1971-07-04 2024-10-11 00:09:09 +551 551 552 55.1 110.2 551 1971-07-06 2024-10-11 00:09:11.000 1971-07-06 2024-10-11 00:09:11 +552 552 553 55.2 110.4 552 1971-07-07 2024-10-11 00:09:12.000 1971-07-07 2024-10-11 00:09:12 +553 553 554 55.3 110.60000000000001 553 1971-07-08 2024-10-11 00:09:13.000 1971-07-08 2024-10-11 00:09:13 +554 554 555 55.4 110.80000000000001 554 1971-07-09 2024-10-11 00:09:14.000 1971-07-09 2024-10-11 00:09:14 +556 556 557 55.6 111.2 556 1971-07-11 2024-10-11 00:09:16.000 1971-07-11 2024-10-11 00:09:16 +557 557 558 55.7 111.4 557 1971-07-12 2024-10-11 00:09:17.000 1971-07-12 2024-10-11 00:09:17 +558 558 559 55.8 111.60000000000001 558 1971-07-13 2024-10-11 00:09:18.000 1971-07-13 2024-10-11 00:09:18 +559 559 560 55.9 111.80000000000001 559 1971-07-14 2024-10-11 00:09:19.000 1971-07-14 2024-10-11 00:09:19 +561 561 562 56.1 112.2 561 1971-07-16 2024-10-11 00:09:21.000 1971-07-16 2024-10-11 00:09:21 +562 562 563 56.2 112.4 562 1971-07-17 2024-10-11 00:09:22.000 1971-07-17 2024-10-11 00:09:22 +563 563 564 56.3 112.60000000000001 563 1971-07-18 2024-10-11 00:09:23.000 1971-07-18 2024-10-11 00:09:23 +564 564 565 56.4 112.80000000000001 564 1971-07-19 2024-10-11 00:09:24.000 1971-07-19 2024-10-11 00:09:24 +566 566 567 56.6 113.2 566 1971-07-21 2024-10-11 00:09:26.000 1971-07-21 2024-10-11 00:09:26 +567 567 568 56.7 113.4 567 1971-07-22 2024-10-11 00:09:27.000 1971-07-22 2024-10-11 00:09:27 +568 568 569 56.8 113.60000000000001 568 1971-07-23 2024-10-11 00:09:28.000 1971-07-23 2024-10-11 00:09:28 +569 569 570 56.9 113.80000000000001 569 1971-07-24 2024-10-11 00:09:29.000 1971-07-24 2024-10-11 00:09:29 +571 571 572 57.1 114.2 571 1971-07-26 2024-10-11 00:09:31.000 1971-07-26 2024-10-11 00:09:31 +572 572 573 57.2 114.4 572 1971-07-27 2024-10-11 00:09:32.000 1971-07-27 2024-10-11 00:09:32 +573 573 574 57.3 114.60000000000001 573 1971-07-28 2024-10-11 00:09:33.000 1971-07-28 2024-10-11 00:09:33 +574 574 575 57.4 114.80000000000001 574 1971-07-29 2024-10-11 00:09:34.000 1971-07-29 2024-10-11 00:09:34 +576 576 577 57.6 115.2 576 1971-07-31 2024-10-11 00:09:36.000 1971-07-31 2024-10-11 00:09:36 +577 577 578 57.7 115.4 577 1971-08-01 2024-10-11 00:09:37.000 1971-08-01 2024-10-11 00:09:37 +578 578 579 57.8 115.60000000000001 578 1971-08-02 2024-10-11 00:09:38.000 1971-08-02 2024-10-11 00:09:38 +579 579 580 57.9 115.80000000000001 579 1971-08-03 2024-10-11 00:09:39.000 1971-08-03 2024-10-11 00:09:39 +581 581 582 58.1 116.2 581 1971-08-05 2024-10-11 00:09:41.000 1971-08-05 2024-10-11 00:09:41 +582 582 583 58.2 116.4 582 1971-08-06 2024-10-11 00:09:42.000 1971-08-06 2024-10-11 00:09:42 +583 583 584 58.3 116.60000000000001 583 1971-08-07 2024-10-11 00:09:43.000 1971-08-07 2024-10-11 00:09:43 +584 584 585 58.4 116.80000000000001 584 1971-08-08 2024-10-11 00:09:44.000 1971-08-08 2024-10-11 00:09:44 +586 586 587 58.6 117.2 586 1971-08-10 2024-10-11 00:09:46.000 1971-08-10 2024-10-11 00:09:46 +587 587 588 58.7 117.4 587 1971-08-11 2024-10-11 00:09:47.000 1971-08-11 2024-10-11 00:09:47 +588 588 589 58.8 117.60000000000001 588 1971-08-12 2024-10-11 00:09:48.000 1971-08-12 2024-10-11 00:09:48 +589 589 590 58.9 117.80000000000001 589 1971-08-13 2024-10-11 00:09:49.000 1971-08-13 2024-10-11 00:09:49 +591 591 592 59.1 118.2 591 1971-08-15 2024-10-11 00:09:51.000 1971-08-15 2024-10-11 00:09:51 +592 592 593 59.2 118.4 592 1971-08-16 2024-10-11 00:09:52.000 1971-08-16 2024-10-11 00:09:52 +593 593 594 59.3 118.60000000000001 593 1971-08-17 2024-10-11 00:09:53.000 1971-08-17 2024-10-11 00:09:53 +594 594 595 59.4 118.80000000000001 594 1971-08-18 2024-10-11 00:09:54.000 1971-08-18 2024-10-11 00:09:54 +596 596 597 59.6 119.2 596 1971-08-20 2024-10-11 00:09:56.000 1971-08-20 2024-10-11 00:09:56 +597 597 598 59.7 119.4 597 1971-08-21 2024-10-11 00:09:57.000 1971-08-21 2024-10-11 00:09:57 +598 598 599 59.8 119.60000000000001 598 1971-08-22 2024-10-11 00:09:58.000 1971-08-22 2024-10-11 00:09:58 +599 599 600 59.9 119.80000000000001 599 1971-08-23 2024-10-11 00:09:59.000 1971-08-23 2024-10-11 00:09:59 +601 601 602 60.1 120.2 601 1971-08-25 2024-10-11 00:10:01.000 1971-08-25 2024-10-11 00:10:01 +602 602 603 60.2 120.4 602 1971-08-26 2024-10-11 00:10:02.000 1971-08-26 2024-10-11 00:10:02 +603 603 604 60.3 120.60000000000001 603 1971-08-27 2024-10-11 00:10:03.000 1971-08-27 2024-10-11 00:10:03 +604 604 605 60.4 120.80000000000001 604 1971-08-28 2024-10-11 00:10:04.000 1971-08-28 2024-10-11 00:10:04 +606 606 607 60.6 121.2 606 1971-08-30 2024-10-11 00:10:06.000 1971-08-30 2024-10-11 00:10:06 +607 607 608 60.7 121.4 607 1971-08-31 2024-10-11 00:10:07.000 1971-08-31 2024-10-11 00:10:07 +608 608 609 60.8 121.60000000000001 608 1971-09-01 2024-10-11 00:10:08.000 1971-09-01 2024-10-11 00:10:08 +609 609 610 60.9 121.80000000000001 609 1971-09-02 2024-10-11 00:10:09.000 1971-09-02 2024-10-11 00:10:09 +611 611 612 61.1 122.2 611 1971-09-04 2024-10-11 00:10:11.000 1971-09-04 2024-10-11 00:10:11 +612 612 613 61.2 122.4 612 1971-09-05 2024-10-11 00:10:12.000 1971-09-05 2024-10-11 00:10:12 +613 613 614 61.3 122.60000000000001 613 1971-09-06 2024-10-11 00:10:13.000 1971-09-06 2024-10-11 00:10:13 +614 614 615 61.4 122.80000000000001 614 1971-09-07 2024-10-11 00:10:14.000 1971-09-07 2024-10-11 00:10:14 +616 616 617 61.6 123.2 616 1971-09-09 2024-10-11 00:10:16.000 1971-09-09 2024-10-11 00:10:16 +617 617 618 61.7 123.4 617 1971-09-10 2024-10-11 00:10:17.000 1971-09-10 2024-10-11 00:10:17 +618 618 619 61.8 123.60000000000001 618 1971-09-11 2024-10-11 00:10:18.000 1971-09-11 2024-10-11 00:10:18 +619 619 620 61.9 123.80000000000001 619 1971-09-12 2024-10-11 00:10:19.000 1971-09-12 2024-10-11 00:10:19 +621 621 622 62.1 124.2 621 1971-09-14 2024-10-11 00:10:21.000 1971-09-14 2024-10-11 00:10:21 +622 622 623 62.2 124.4 622 1971-09-15 2024-10-11 00:10:22.000 1971-09-15 2024-10-11 00:10:22 +623 623 624 62.3 124.60000000000001 623 1971-09-16 2024-10-11 00:10:23.000 1971-09-16 2024-10-11 00:10:23 +624 624 625 62.4 124.80000000000001 624 1971-09-17 2024-10-11 00:10:24.000 1971-09-17 2024-10-11 00:10:24 +626 626 627 62.6 125.2 626 1971-09-19 2024-10-11 00:10:26.000 1971-09-19 2024-10-11 00:10:26 +627 627 628 62.7 125.4 627 1971-09-20 2024-10-11 00:10:27.000 1971-09-20 2024-10-11 00:10:27 +628 628 629 62.8 125.60000000000001 628 1971-09-21 2024-10-11 00:10:28.000 1971-09-21 2024-10-11 00:10:28 +629 629 630 62.9 125.80000000000001 629 1971-09-22 2024-10-11 00:10:29.000 1971-09-22 2024-10-11 00:10:29 +631 631 632 63.1 126.2 631 1971-09-24 2024-10-11 00:10:31.000 1971-09-24 2024-10-11 00:10:31 +632 632 633 63.2 126.4 632 1971-09-25 2024-10-11 00:10:32.000 1971-09-25 2024-10-11 00:10:32 +633 633 634 63.3 126.60000000000001 633 1971-09-26 2024-10-11 00:10:33.000 1971-09-26 2024-10-11 00:10:33 +634 634 635 63.4 126.80000000000001 634 1971-09-27 2024-10-11 00:10:34.000 1971-09-27 2024-10-11 00:10:34 +636 636 637 63.6 127.2 636 1971-09-29 2024-10-11 00:10:36.000 1971-09-29 2024-10-11 00:10:36 +637 637 638 63.7 127.4 637 1971-09-30 2024-10-11 00:10:37.000 1971-09-30 2024-10-11 00:10:37 +638 638 639 63.8 127.60000000000001 638 1971-10-01 2024-10-11 00:10:38.000 1971-10-01 2024-10-11 00:10:38 +639 639 640 63.9 127.80000000000001 639 1971-10-02 2024-10-11 00:10:39.000 1971-10-02 2024-10-11 00:10:39 +641 641 642 64.1 128.20000000000002 641 1971-10-04 2024-10-11 00:10:41.000 1971-10-04 2024-10-11 00:10:41 +642 642 643 64.2 128.4 642 1971-10-05 2024-10-11 00:10:42.000 1971-10-05 2024-10-11 00:10:42 +643 643 644 64.3 128.6 643 1971-10-06 2024-10-11 00:10:43.000 1971-10-06 2024-10-11 00:10:43 +644 644 645 64.4 128.8 644 1971-10-07 2024-10-11 00:10:44.000 1971-10-07 2024-10-11 00:10:44 +646 646 647 64.6 129.20000000000002 646 1971-10-09 2024-10-11 00:10:46.000 1971-10-09 2024-10-11 00:10:46 +647 647 648 64.7 129.4 647 1971-10-10 2024-10-11 00:10:47.000 1971-10-10 2024-10-11 00:10:47 +648 648 649 64.8 129.6 648 1971-10-11 2024-10-11 00:10:48.000 1971-10-11 2024-10-11 00:10:48 +649 649 650 64.9 129.8 649 1971-10-12 2024-10-11 00:10:49.000 1971-10-12 2024-10-11 00:10:49 +651 651 652 65.1 130.20000000000002 651 1971-10-14 2024-10-11 00:10:51.000 1971-10-14 2024-10-11 00:10:51 +652 652 653 65.2 130.4 652 1971-10-15 2024-10-11 00:10:52.000 1971-10-15 2024-10-11 00:10:52 +653 653 654 65.3 130.6 653 1971-10-16 2024-10-11 00:10:53.000 1971-10-16 2024-10-11 00:10:53 +654 654 655 65.4 130.8 654 1971-10-17 2024-10-11 00:10:54.000 1971-10-17 2024-10-11 00:10:54 +656 656 657 65.6 131.20000000000002 656 1971-10-19 2024-10-11 00:10:56.000 1971-10-19 2024-10-11 00:10:56 +657 657 658 65.7 131.4 657 1971-10-20 2024-10-11 00:10:57.000 1971-10-20 2024-10-11 00:10:57 +658 658 659 65.8 131.6 658 1971-10-21 2024-10-11 00:10:58.000 1971-10-21 2024-10-11 00:10:58 +659 659 660 65.9 131.8 659 1971-10-22 2024-10-11 00:10:59.000 1971-10-22 2024-10-11 00:10:59 +661 661 662 66.1 132.20000000000002 661 1971-10-24 2024-10-11 00:11:01.000 1971-10-24 2024-10-11 00:11:01 +662 662 663 66.2 132.4 662 1971-10-25 2024-10-11 00:11:02.000 1971-10-25 2024-10-11 00:11:02 +663 663 664 66.3 132.6 663 1971-10-26 2024-10-11 00:11:03.000 1971-10-26 2024-10-11 00:11:03 +664 664 665 66.4 132.8 664 1971-10-27 2024-10-11 00:11:04.000 1971-10-27 2024-10-11 00:11:04 +666 666 667 66.6 133.20000000000002 666 1971-10-29 2024-10-11 00:11:06.000 1971-10-29 2024-10-11 00:11:06 +667 667 668 66.7 133.4 667 1971-10-30 2024-10-11 00:11:07.000 1971-10-30 2024-10-11 00:11:07 +668 668 669 66.8 133.6 668 1971-10-31 2024-10-11 00:11:08.000 1971-10-31 2024-10-11 00:11:08 +669 669 670 66.9 133.8 669 1971-11-01 2024-10-11 00:11:09.000 1971-11-01 2024-10-11 00:11:09 +671 671 672 67.1 134.20000000000002 671 1971-11-03 2024-10-11 00:11:11.000 1971-11-03 2024-10-11 00:11:11 +672 672 673 67.2 134.4 672 1971-11-04 2024-10-11 00:11:12.000 1971-11-04 2024-10-11 00:11:12 +673 673 674 67.3 134.6 673 1971-11-05 2024-10-11 00:11:13.000 1971-11-05 2024-10-11 00:11:13 +674 674 675 67.4 134.8 674 1971-11-06 2024-10-11 00:11:14.000 1971-11-06 2024-10-11 00:11:14 +676 676 677 67.6 135.20000000000002 676 1971-11-08 2024-10-11 00:11:16.000 1971-11-08 2024-10-11 00:11:16 +677 677 678 67.7 135.4 677 1971-11-09 2024-10-11 00:11:17.000 1971-11-09 2024-10-11 00:11:17 +678 678 679 67.8 135.6 678 1971-11-10 2024-10-11 00:11:18.000 1971-11-10 2024-10-11 00:11:18 +679 679 680 67.9 135.8 679 1971-11-11 2024-10-11 00:11:19.000 1971-11-11 2024-10-11 00:11:19 +681 681 682 68.1 136.20000000000002 681 1971-11-13 2024-10-11 00:11:21.000 1971-11-13 2024-10-11 00:11:21 +682 682 683 68.2 136.4 682 1971-11-14 2024-10-11 00:11:22.000 1971-11-14 2024-10-11 00:11:22 +683 683 684 68.3 136.6 683 1971-11-15 2024-10-11 00:11:23.000 1971-11-15 2024-10-11 00:11:23 +684 684 685 68.4 136.8 684 1971-11-16 2024-10-11 00:11:24.000 1971-11-16 2024-10-11 00:11:24 +686 686 687 68.6 137.20000000000002 686 1971-11-18 2024-10-11 00:11:26.000 1971-11-18 2024-10-11 00:11:26 +687 687 688 68.7 137.4 687 1971-11-19 2024-10-11 00:11:27.000 1971-11-19 2024-10-11 00:11:27 +688 688 689 68.8 137.6 688 1971-11-20 2024-10-11 00:11:28.000 1971-11-20 2024-10-11 00:11:28 +689 689 690 68.9 137.8 689 1971-11-21 2024-10-11 00:11:29.000 1971-11-21 2024-10-11 00:11:29 +691 691 692 69.1 138.20000000000002 691 1971-11-23 2024-10-11 00:11:31.000 1971-11-23 2024-10-11 00:11:31 +692 692 693 69.2 138.4 692 1971-11-24 2024-10-11 00:11:32.000 1971-11-24 2024-10-11 00:11:32 +693 693 694 69.3 138.6 693 1971-11-25 2024-10-11 00:11:33.000 1971-11-25 2024-10-11 00:11:33 +694 694 695 69.4 138.8 694 1971-11-26 2024-10-11 00:11:34.000 1971-11-26 2024-10-11 00:11:34 +696 696 697 69.6 139.20000000000002 696 1971-11-28 2024-10-11 00:11:36.000 1971-11-28 2024-10-11 00:11:36 +697 697 698 69.7 139.4 697 1971-11-29 2024-10-11 00:11:37.000 1971-11-29 2024-10-11 00:11:37 +698 698 699 69.8 139.6 698 1971-11-30 2024-10-11 00:11:38.000 1971-11-30 2024-10-11 00:11:38 +699 699 700 69.9 139.8 699 1971-12-01 2024-10-11 00:11:39.000 1971-12-01 2024-10-11 00:11:39 +701 701 702 70.1 140.20000000000002 701 1971-12-03 2024-10-11 00:11:41.000 1971-12-03 2024-10-11 00:11:41 +702 702 703 70.2 140.4 702 1971-12-04 2024-10-11 00:11:42.000 1971-12-04 2024-10-11 00:11:42 +703 703 704 70.3 140.6 703 1971-12-05 2024-10-11 00:11:43.000 1971-12-05 2024-10-11 00:11:43 +704 704 705 70.4 140.8 704 1971-12-06 2024-10-11 00:11:44.000 1971-12-06 2024-10-11 00:11:44 +706 706 707 70.6 141.20000000000002 706 1971-12-08 2024-10-11 00:11:46.000 1971-12-08 2024-10-11 00:11:46 +707 707 708 70.7 141.4 707 1971-12-09 2024-10-11 00:11:47.000 1971-12-09 2024-10-11 00:11:47 +708 708 709 70.8 141.6 708 1971-12-10 2024-10-11 00:11:48.000 1971-12-10 2024-10-11 00:11:48 +709 709 710 70.9 141.8 709 1971-12-11 2024-10-11 00:11:49.000 1971-12-11 2024-10-11 00:11:49 +711 711 712 71.1 142.20000000000002 711 1971-12-13 2024-10-11 00:11:51.000 1971-12-13 2024-10-11 00:11:51 +712 712 713 71.2 142.4 712 1971-12-14 2024-10-11 00:11:52.000 1971-12-14 2024-10-11 00:11:52 +713 713 714 71.3 142.6 713 1971-12-15 2024-10-11 00:11:53.000 1971-12-15 2024-10-11 00:11:53 +714 714 715 71.4 142.8 714 1971-12-16 2024-10-11 00:11:54.000 1971-12-16 2024-10-11 00:11:54 +716 716 717 71.6 143.20000000000002 716 1971-12-18 2024-10-11 00:11:56.000 1971-12-18 2024-10-11 00:11:56 +717 717 718 71.7 143.4 717 1971-12-19 2024-10-11 00:11:57.000 1971-12-19 2024-10-11 00:11:57 +718 718 719 71.8 143.6 718 1971-12-20 2024-10-11 00:11:58.000 1971-12-20 2024-10-11 00:11:58 +719 719 720 71.9 143.8 719 1971-12-21 2024-10-11 00:11:59.000 1971-12-21 2024-10-11 00:11:59 +721 721 722 72.1 144.20000000000002 721 1971-12-23 2024-10-11 00:12:01.000 1971-12-23 2024-10-11 00:12:01 +722 722 723 72.2 144.4 722 1971-12-24 2024-10-11 00:12:02.000 1971-12-24 2024-10-11 00:12:02 +723 723 724 72.3 144.6 723 1971-12-25 2024-10-11 00:12:03.000 1971-12-25 2024-10-11 00:12:03 +724 724 725 72.4 144.8 724 1971-12-26 2024-10-11 00:12:04.000 1971-12-26 2024-10-11 00:12:04 +726 726 727 72.6 145.20000000000002 726 1971-12-28 2024-10-11 00:12:06.000 1971-12-28 2024-10-11 00:12:06 +727 727 728 72.7 145.4 727 1971-12-29 2024-10-11 00:12:07.000 1971-12-29 2024-10-11 00:12:07 +728 728 729 72.8 145.6 728 1971-12-30 2024-10-11 00:12:08.000 1971-12-30 2024-10-11 00:12:08 +729 729 730 72.9 145.8 729 1971-12-31 2024-10-11 00:12:09.000 1971-12-31 2024-10-11 00:12:09 +731 731 732 73.1 146.20000000000002 731 1972-01-02 2024-10-11 00:12:11.000 1972-01-02 2024-10-11 00:12:11 +732 732 733 73.2 146.4 732 1972-01-03 2024-10-11 00:12:12.000 1972-01-03 2024-10-11 00:12:12 +733 733 734 73.3 146.6 733 1972-01-04 2024-10-11 00:12:13.000 1972-01-04 2024-10-11 00:12:13 +734 734 735 73.4 146.8 734 1972-01-05 2024-10-11 00:12:14.000 1972-01-05 2024-10-11 00:12:14 +736 736 737 73.6 147.20000000000002 736 1972-01-07 2024-10-11 00:12:16.000 1972-01-07 2024-10-11 00:12:16 +737 737 738 73.7 147.4 737 1972-01-08 2024-10-11 00:12:17.000 1972-01-08 2024-10-11 00:12:17 +738 738 739 73.8 147.6 738 1972-01-09 2024-10-11 00:12:18.000 1972-01-09 2024-10-11 00:12:18 +739 739 740 73.9 147.8 739 1972-01-10 2024-10-11 00:12:19.000 1972-01-10 2024-10-11 00:12:19 +741 741 742 74.1 148.20000000000002 741 1972-01-12 2024-10-11 00:12:21.000 1972-01-12 2024-10-11 00:12:21 +742 742 743 74.2 148.4 742 1972-01-13 2024-10-11 00:12:22.000 1972-01-13 2024-10-11 00:12:22 +743 743 744 74.3 148.6 743 1972-01-14 2024-10-11 00:12:23.000 1972-01-14 2024-10-11 00:12:23 +744 744 745 74.4 148.8 744 1972-01-15 2024-10-11 00:12:24.000 1972-01-15 2024-10-11 00:12:24 +746 746 747 74.6 149.20000000000002 746 1972-01-17 2024-10-11 00:12:26.000 1972-01-17 2024-10-11 00:12:26 +747 747 748 74.7 149.4 747 1972-01-18 2024-10-11 00:12:27.000 1972-01-18 2024-10-11 00:12:27 +748 748 749 74.8 149.6 748 1972-01-19 2024-10-11 00:12:28.000 1972-01-19 2024-10-11 00:12:28 +749 749 750 74.9 149.8 749 1972-01-20 2024-10-11 00:12:29.000 1972-01-20 2024-10-11 00:12:29 +751 751 752 75.1 150.20000000000002 751 1972-01-22 2024-10-11 00:12:31.000 1972-01-22 2024-10-11 00:12:31 +752 752 753 75.2 150.4 752 1972-01-23 2024-10-11 00:12:32.000 1972-01-23 2024-10-11 00:12:32 +753 753 754 75.3 150.6 753 1972-01-24 2024-10-11 00:12:33.000 1972-01-24 2024-10-11 00:12:33 +754 754 755 75.4 150.8 754 1972-01-25 2024-10-11 00:12:34.000 1972-01-25 2024-10-11 00:12:34 +756 756 757 75.6 151.20000000000002 756 1972-01-27 2024-10-11 00:12:36.000 1972-01-27 2024-10-11 00:12:36 +757 757 758 75.7 151.4 757 1972-01-28 2024-10-11 00:12:37.000 1972-01-28 2024-10-11 00:12:37 +758 758 759 75.8 151.6 758 1972-01-29 2024-10-11 00:12:38.000 1972-01-29 2024-10-11 00:12:38 +759 759 760 75.9 151.8 759 1972-01-30 2024-10-11 00:12:39.000 1972-01-30 2024-10-11 00:12:39 +761 761 762 76.1 152.20000000000002 761 1972-02-01 2024-10-11 00:12:41.000 1972-02-01 2024-10-11 00:12:41 +762 762 763 76.2 152.4 762 1972-02-02 2024-10-11 00:12:42.000 1972-02-02 2024-10-11 00:12:42 +763 763 764 76.3 152.6 763 1972-02-03 2024-10-11 00:12:43.000 1972-02-03 2024-10-11 00:12:43 +764 764 765 76.4 152.8 764 1972-02-04 2024-10-11 00:12:44.000 1972-02-04 2024-10-11 00:12:44 +766 766 767 76.6 153.20000000000002 766 1972-02-06 2024-10-11 00:12:46.000 1972-02-06 2024-10-11 00:12:46 +767 767 768 76.7 153.4 767 1972-02-07 2024-10-11 00:12:47.000 1972-02-07 2024-10-11 00:12:47 +768 768 769 76.8 153.60000000000002 768 1972-02-08 2024-10-11 00:12:48.000 1972-02-08 2024-10-11 00:12:48 +769 769 770 76.9 153.8 769 1972-02-09 2024-10-11 00:12:49.000 1972-02-09 2024-10-11 00:12:49 +771 771 772 77.1 154.20000000000002 771 1972-02-11 2024-10-11 00:12:51.000 1972-02-11 2024-10-11 00:12:51 +772 772 773 77.2 154.4 772 1972-02-12 2024-10-11 00:12:52.000 1972-02-12 2024-10-11 00:12:52 +773 773 774 77.3 154.60000000000002 773 1972-02-13 2024-10-11 00:12:53.000 1972-02-13 2024-10-11 00:12:53 +774 774 775 77.4 154.8 774 1972-02-14 2024-10-11 00:12:54.000 1972-02-14 2024-10-11 00:12:54 +776 776 777 77.6 155.20000000000002 776 1972-02-16 2024-10-11 00:12:56.000 1972-02-16 2024-10-11 00:12:56 +777 777 778 77.7 155.4 777 1972-02-17 2024-10-11 00:12:57.000 1972-02-17 2024-10-11 00:12:57 +778 778 779 77.8 155.60000000000002 778 1972-02-18 2024-10-11 00:12:58.000 1972-02-18 2024-10-11 00:12:58 +779 779 780 77.9 155.8 779 1972-02-19 2024-10-11 00:12:59.000 1972-02-19 2024-10-11 00:12:59 +781 781 782 78.1 156.20000000000002 781 1972-02-21 2024-10-11 00:13:01.000 1972-02-21 2024-10-11 00:13:01 +782 782 783 78.2 156.4 782 1972-02-22 2024-10-11 00:13:02.000 1972-02-22 2024-10-11 00:13:02 +783 783 784 78.3 156.60000000000002 783 1972-02-23 2024-10-11 00:13:03.000 1972-02-23 2024-10-11 00:13:03 +784 784 785 78.4 156.8 784 1972-02-24 2024-10-11 00:13:04.000 1972-02-24 2024-10-11 00:13:04 +786 786 787 78.6 157.20000000000002 786 1972-02-26 2024-10-11 00:13:06.000 1972-02-26 2024-10-11 00:13:06 +787 787 788 78.7 157.4 787 1972-02-27 2024-10-11 00:13:07.000 1972-02-27 2024-10-11 00:13:07 +788 788 789 78.8 157.60000000000002 788 1972-02-28 2024-10-11 00:13:08.000 1972-02-28 2024-10-11 00:13:08 +789 789 790 78.9 157.8 789 1972-02-29 2024-10-11 00:13:09.000 1972-02-29 2024-10-11 00:13:09 +791 791 792 79.1 158.20000000000002 791 1972-03-02 2024-10-11 00:13:11.000 1972-03-02 2024-10-11 00:13:11 +792 792 793 79.2 158.4 792 1972-03-03 2024-10-11 00:13:12.000 1972-03-03 2024-10-11 00:13:12 +793 793 794 79.3 158.60000000000002 793 1972-03-04 2024-10-11 00:13:13.000 1972-03-04 2024-10-11 00:13:13 +794 794 795 79.4 158.8 794 1972-03-05 2024-10-11 00:13:14.000 1972-03-05 2024-10-11 00:13:14 +796 796 797 79.6 159.20000000000002 796 1972-03-07 2024-10-11 00:13:16.000 1972-03-07 2024-10-11 00:13:16 +797 797 798 79.7 159.4 797 1972-03-08 2024-10-11 00:13:17.000 1972-03-08 2024-10-11 00:13:17 +798 798 799 79.8 159.60000000000002 798 1972-03-09 2024-10-11 00:13:18.000 1972-03-09 2024-10-11 00:13:18 +799 799 800 79.9 159.8 799 1972-03-10 2024-10-11 00:13:19.000 1972-03-10 2024-10-11 00:13:19 +801 801 802 80.1 160.20000000000002 801 1972-03-12 2024-10-11 00:13:21.000 1972-03-12 2024-10-11 00:13:21 +802 802 803 80.2 160.4 802 1972-03-13 2024-10-11 00:13:22.000 1972-03-13 2024-10-11 00:13:22 +803 803 804 80.3 160.60000000000002 803 1972-03-14 2024-10-11 00:13:23.000 1972-03-14 2024-10-11 00:13:23 +804 804 805 80.4 160.8 804 1972-03-15 2024-10-11 00:13:24.000 1972-03-15 2024-10-11 00:13:24 +806 806 807 80.6 161.20000000000002 806 1972-03-17 2024-10-11 00:13:26.000 1972-03-17 2024-10-11 00:13:26 +807 807 808 80.7 161.4 807 1972-03-18 2024-10-11 00:13:27.000 1972-03-18 2024-10-11 00:13:27 +808 808 809 80.8 161.60000000000002 808 1972-03-19 2024-10-11 00:13:28.000 1972-03-19 2024-10-11 00:13:28 +809 809 810 80.9 161.8 809 1972-03-20 2024-10-11 00:13:29.000 1972-03-20 2024-10-11 00:13:29 +811 811 812 81.1 162.20000000000002 811 1972-03-22 2024-10-11 00:13:31.000 1972-03-22 2024-10-11 00:13:31 +812 812 813 81.2 162.4 812 1972-03-23 2024-10-11 00:13:32.000 1972-03-23 2024-10-11 00:13:32 +813 813 814 81.3 162.60000000000002 813 1972-03-24 2024-10-11 00:13:33.000 1972-03-24 2024-10-11 00:13:33 +814 814 815 81.4 162.8 814 1972-03-25 2024-10-11 00:13:34.000 1972-03-25 2024-10-11 00:13:34 +816 816 817 81.6 163.20000000000002 816 1972-03-27 2024-10-11 00:13:36.000 1972-03-27 2024-10-11 00:13:36 +817 817 818 81.7 163.4 817 1972-03-28 2024-10-11 00:13:37.000 1972-03-28 2024-10-11 00:13:37 +818 818 819 81.8 163.60000000000002 818 1972-03-29 2024-10-11 00:13:38.000 1972-03-29 2024-10-11 00:13:38 +819 819 820 81.9 163.8 819 1972-03-30 2024-10-11 00:13:39.000 1972-03-30 2024-10-11 00:13:39 +821 821 822 82.1 164.20000000000002 821 1972-04-01 2024-10-11 00:13:41.000 1972-04-01 2024-10-11 00:13:41 +822 822 823 82.2 164.4 822 1972-04-02 2024-10-11 00:13:42.000 1972-04-02 2024-10-11 00:13:42 +823 823 824 82.3 164.60000000000002 823 1972-04-03 2024-10-11 00:13:43.000 1972-04-03 2024-10-11 00:13:43 +824 824 825 82.4 164.8 824 1972-04-04 2024-10-11 00:13:44.000 1972-04-04 2024-10-11 00:13:44 +826 826 827 82.6 165.20000000000002 826 1972-04-06 2024-10-11 00:13:46.000 1972-04-06 2024-10-11 00:13:46 +827 827 828 82.7 165.4 827 1972-04-07 2024-10-11 00:13:47.000 1972-04-07 2024-10-11 00:13:47 +828 828 829 82.8 165.60000000000002 828 1972-04-08 2024-10-11 00:13:48.000 1972-04-08 2024-10-11 00:13:48 +829 829 830 82.9 165.8 829 1972-04-09 2024-10-11 00:13:49.000 1972-04-09 2024-10-11 00:13:49 +831 831 832 83.1 166.20000000000002 831 1972-04-11 2024-10-11 00:13:51.000 1972-04-11 2024-10-11 00:13:51 +832 832 833 83.2 166.4 832 1972-04-12 2024-10-11 00:13:52.000 1972-04-12 2024-10-11 00:13:52 +833 833 834 83.3 166.60000000000002 833 1972-04-13 2024-10-11 00:13:53.000 1972-04-13 2024-10-11 00:13:53 +834 834 835 83.4 166.8 834 1972-04-14 2024-10-11 00:13:54.000 1972-04-14 2024-10-11 00:13:54 +836 836 837 83.6 167.20000000000002 836 1972-04-16 2024-10-11 00:13:56.000 1972-04-16 2024-10-11 00:13:56 +837 837 838 83.7 167.4 837 1972-04-17 2024-10-11 00:13:57.000 1972-04-17 2024-10-11 00:13:57 +838 838 839 83.8 167.60000000000002 838 1972-04-18 2024-10-11 00:13:58.000 1972-04-18 2024-10-11 00:13:58 +839 839 840 83.9 167.8 839 1972-04-19 2024-10-11 00:13:59.000 1972-04-19 2024-10-11 00:13:59 +841 841 842 84.1 168.20000000000002 841 1972-04-21 2024-10-11 00:14:01.000 1972-04-21 2024-10-11 00:14:01 +842 842 843 84.2 168.4 842 1972-04-22 2024-10-11 00:14:02.000 1972-04-22 2024-10-11 00:14:02 +843 843 844 84.3 168.60000000000002 843 1972-04-23 2024-10-11 00:14:03.000 1972-04-23 2024-10-11 00:14:03 +844 844 845 84.4 168.8 844 1972-04-24 2024-10-11 00:14:04.000 1972-04-24 2024-10-11 00:14:04 +846 846 847 84.6 169.20000000000002 846 1972-04-26 2024-10-11 00:14:06.000 1972-04-26 2024-10-11 00:14:06 +847 847 848 84.7 169.4 847 1972-04-27 2024-10-11 00:14:07.000 1972-04-27 2024-10-11 00:14:07 +848 848 849 84.8 169.60000000000002 848 1972-04-28 2024-10-11 00:14:08.000 1972-04-28 2024-10-11 00:14:08 +849 849 850 84.9 169.8 849 1972-04-29 2024-10-11 00:14:09.000 1972-04-29 2024-10-11 00:14:09 +851 851 852 85.1 170.20000000000002 851 1972-05-01 2024-10-11 00:14:11.000 1972-05-01 2024-10-11 00:14:11 +852 852 853 85.2 170.4 852 1972-05-02 2024-10-11 00:14:12.000 1972-05-02 2024-10-11 00:14:12 +853 853 854 85.3 170.60000000000002 853 1972-05-03 2024-10-11 00:14:13.000 1972-05-03 2024-10-11 00:14:13 +854 854 855 85.4 170.8 854 1972-05-04 2024-10-11 00:14:14.000 1972-05-04 2024-10-11 00:14:14 +856 856 857 85.6 171.20000000000002 856 1972-05-06 2024-10-11 00:14:16.000 1972-05-06 2024-10-11 00:14:16 +857 857 858 85.7 171.4 857 1972-05-07 2024-10-11 00:14:17.000 1972-05-07 2024-10-11 00:14:17 +858 858 859 85.8 171.60000000000002 858 1972-05-08 2024-10-11 00:14:18.000 1972-05-08 2024-10-11 00:14:18 +859 859 860 85.9 171.8 859 1972-05-09 2024-10-11 00:14:19.000 1972-05-09 2024-10-11 00:14:19 +861 861 862 86.1 172.20000000000002 861 1972-05-11 2024-10-11 00:14:21.000 1972-05-11 2024-10-11 00:14:21 +862 862 863 86.2 172.4 862 1972-05-12 2024-10-11 00:14:22.000 1972-05-12 2024-10-11 00:14:22 +863 863 864 86.3 172.60000000000002 863 1972-05-13 2024-10-11 00:14:23.000 1972-05-13 2024-10-11 00:14:23 +864 864 865 86.4 172.8 864 1972-05-14 2024-10-11 00:14:24.000 1972-05-14 2024-10-11 00:14:24 +866 866 867 86.6 173.20000000000002 866 1972-05-16 2024-10-11 00:14:26.000 1972-05-16 2024-10-11 00:14:26 +867 867 868 86.7 173.4 867 1972-05-17 2024-10-11 00:14:27.000 1972-05-17 2024-10-11 00:14:27 +868 868 869 86.8 173.60000000000002 868 1972-05-18 2024-10-11 00:14:28.000 1972-05-18 2024-10-11 00:14:28 +869 869 870 86.9 173.8 869 1972-05-19 2024-10-11 00:14:29.000 1972-05-19 2024-10-11 00:14:29 +871 871 872 87.1 174.20000000000002 871 1972-05-21 2024-10-11 00:14:31.000 1972-05-21 2024-10-11 00:14:31 +872 872 873 87.2 174.4 872 1972-05-22 2024-10-11 00:14:32.000 1972-05-22 2024-10-11 00:14:32 +873 873 874 87.3 174.60000000000002 873 1972-05-23 2024-10-11 00:14:33.000 1972-05-23 2024-10-11 00:14:33 +874 874 875 87.4 174.8 874 1972-05-24 2024-10-11 00:14:34.000 1972-05-24 2024-10-11 00:14:34 +876 876 877 87.6 175.20000000000002 876 1972-05-26 2024-10-11 00:14:36.000 1972-05-26 2024-10-11 00:14:36 +877 877 878 87.7 175.4 877 1972-05-27 2024-10-11 00:14:37.000 1972-05-27 2024-10-11 00:14:37 +878 878 879 87.8 175.60000000000002 878 1972-05-28 2024-10-11 00:14:38.000 1972-05-28 2024-10-11 00:14:38 +879 879 880 87.9 175.8 879 1972-05-29 2024-10-11 00:14:39.000 1972-05-29 2024-10-11 00:14:39 +881 881 882 88.1 176.20000000000002 881 1972-05-31 2024-10-11 00:14:41.000 1972-05-31 2024-10-11 00:14:41 +882 882 883 88.2 176.4 882 1972-06-01 2024-10-11 00:14:42.000 1972-06-01 2024-10-11 00:14:42 +883 883 884 88.3 176.60000000000002 883 1972-06-02 2024-10-11 00:14:43.000 1972-06-02 2024-10-11 00:14:43 +884 884 885 88.4 176.8 884 1972-06-03 2024-10-11 00:14:44.000 1972-06-03 2024-10-11 00:14:44 +886 886 887 88.6 177.20000000000002 886 1972-06-05 2024-10-11 00:14:46.000 1972-06-05 2024-10-11 00:14:46 +887 887 888 88.7 177.4 887 1972-06-06 2024-10-11 00:14:47.000 1972-06-06 2024-10-11 00:14:47 +888 888 889 88.8 177.60000000000002 888 1972-06-07 2024-10-11 00:14:48.000 1972-06-07 2024-10-11 00:14:48 +889 889 890 88.9 177.8 889 1972-06-08 2024-10-11 00:14:49.000 1972-06-08 2024-10-11 00:14:49 +891 891 892 89.1 178.20000000000002 891 1972-06-10 2024-10-11 00:14:51.000 1972-06-10 2024-10-11 00:14:51 +892 892 893 89.2 178.4 892 1972-06-11 2024-10-11 00:14:52.000 1972-06-11 2024-10-11 00:14:52 +893 893 894 89.3 178.60000000000002 893 1972-06-12 2024-10-11 00:14:53.000 1972-06-12 2024-10-11 00:14:53 +894 894 895 89.4 178.8 894 1972-06-13 2024-10-11 00:14:54.000 1972-06-13 2024-10-11 00:14:54 +896 896 897 89.6 179.20000000000002 896 1972-06-15 2024-10-11 00:14:56.000 1972-06-15 2024-10-11 00:14:56 +897 897 898 89.7 179.4 897 1972-06-16 2024-10-11 00:14:57.000 1972-06-16 2024-10-11 00:14:57 +898 898 899 89.8 179.60000000000002 898 1972-06-17 2024-10-11 00:14:58.000 1972-06-17 2024-10-11 00:14:58 +899 899 900 89.9 179.8 899 1972-06-18 2024-10-11 00:14:59.000 1972-06-18 2024-10-11 00:14:59 +901 901 902 90.1 180.20000000000002 901 1972-06-20 2024-10-11 00:15:01.000 1972-06-20 2024-10-11 00:15:01 +902 902 903 90.2 180.4 902 1972-06-21 2024-10-11 00:15:02.000 1972-06-21 2024-10-11 00:15:02 +903 903 904 90.3 180.60000000000002 903 1972-06-22 2024-10-11 00:15:03.000 1972-06-22 2024-10-11 00:15:03 +904 904 905 90.4 180.8 904 1972-06-23 2024-10-11 00:15:04.000 1972-06-23 2024-10-11 00:15:04 +906 906 907 90.6 181.20000000000002 906 1972-06-25 2024-10-11 00:15:06.000 1972-06-25 2024-10-11 00:15:06 +907 907 908 90.7 181.4 907 1972-06-26 2024-10-11 00:15:07.000 1972-06-26 2024-10-11 00:15:07 +908 908 909 90.8 181.60000000000002 908 1972-06-27 2024-10-11 00:15:08.000 1972-06-27 2024-10-11 00:15:08 +909 909 910 90.9 181.8 909 1972-06-28 2024-10-11 00:15:09.000 1972-06-28 2024-10-11 00:15:09 +911 911 912 91.1 182.20000000000002 911 1972-06-30 2024-10-11 00:15:11.000 1972-06-30 2024-10-11 00:15:11 +912 912 913 91.2 182.4 912 1972-07-01 2024-10-11 00:15:12.000 1972-07-01 2024-10-11 00:15:12 +913 913 914 91.3 182.60000000000002 913 1972-07-02 2024-10-11 00:15:13.000 1972-07-02 2024-10-11 00:15:13 +914 914 915 91.4 182.8 914 1972-07-03 2024-10-11 00:15:14.000 1972-07-03 2024-10-11 00:15:14 +916 916 917 91.6 183.20000000000002 916 1972-07-05 2024-10-11 00:15:16.000 1972-07-05 2024-10-11 00:15:16 +917 917 918 91.7 183.4 917 1972-07-06 2024-10-11 00:15:17.000 1972-07-06 2024-10-11 00:15:17 +918 918 919 91.8 183.60000000000002 918 1972-07-07 2024-10-11 00:15:18.000 1972-07-07 2024-10-11 00:15:18 +919 919 920 91.9 183.8 919 1972-07-08 2024-10-11 00:15:19.000 1972-07-08 2024-10-11 00:15:19 +921 921 922 92.1 184.20000000000002 921 1972-07-10 2024-10-11 00:15:21.000 1972-07-10 2024-10-11 00:15:21 +922 922 923 92.2 184.4 922 1972-07-11 2024-10-11 00:15:22.000 1972-07-11 2024-10-11 00:15:22 +923 923 924 92.3 184.60000000000002 923 1972-07-12 2024-10-11 00:15:23.000 1972-07-12 2024-10-11 00:15:23 +924 924 925 92.4 184.8 924 1972-07-13 2024-10-11 00:15:24.000 1972-07-13 2024-10-11 00:15:24 +926 926 927 92.6 185.20000000000002 926 1972-07-15 2024-10-11 00:15:26.000 1972-07-15 2024-10-11 00:15:26 +927 927 928 92.7 185.4 927 1972-07-16 2024-10-11 00:15:27.000 1972-07-16 2024-10-11 00:15:27 +928 928 929 92.8 185.60000000000002 928 1972-07-17 2024-10-11 00:15:28.000 1972-07-17 2024-10-11 00:15:28 +929 929 930 92.9 185.8 929 1972-07-18 2024-10-11 00:15:29.000 1972-07-18 2024-10-11 00:15:29 +931 931 932 93.1 186.20000000000002 931 1972-07-20 2024-10-11 00:15:31.000 1972-07-20 2024-10-11 00:15:31 +932 932 933 93.2 186.4 932 1972-07-21 2024-10-11 00:15:32.000 1972-07-21 2024-10-11 00:15:32 +933 933 934 93.3 186.60000000000002 933 1972-07-22 2024-10-11 00:15:33.000 1972-07-22 2024-10-11 00:15:33 +934 934 935 93.4 186.8 934 1972-07-23 2024-10-11 00:15:34.000 1972-07-23 2024-10-11 00:15:34 +936 936 937 93.6 187.20000000000002 936 1972-07-25 2024-10-11 00:15:36.000 1972-07-25 2024-10-11 00:15:36 +937 937 938 93.7 187.4 937 1972-07-26 2024-10-11 00:15:37.000 1972-07-26 2024-10-11 00:15:37 +938 938 939 93.8 187.60000000000002 938 1972-07-27 2024-10-11 00:15:38.000 1972-07-27 2024-10-11 00:15:38 +939 939 940 93.9 187.8 939 1972-07-28 2024-10-11 00:15:39.000 1972-07-28 2024-10-11 00:15:39 +941 941 942 94.1 188.20000000000002 941 1972-07-30 2024-10-11 00:15:41.000 1972-07-30 2024-10-11 00:15:41 +942 942 943 94.2 188.4 942 1972-07-31 2024-10-11 00:15:42.000 1972-07-31 2024-10-11 00:15:42 +943 943 944 94.3 188.60000000000002 943 1972-08-01 2024-10-11 00:15:43.000 1972-08-01 2024-10-11 00:15:43 +944 944 945 94.4 188.8 944 1972-08-02 2024-10-11 00:15:44.000 1972-08-02 2024-10-11 00:15:44 +946 946 947 94.6 189.20000000000002 946 1972-08-04 2024-10-11 00:15:46.000 1972-08-04 2024-10-11 00:15:46 +947 947 948 94.7 189.4 947 1972-08-05 2024-10-11 00:15:47.000 1972-08-05 2024-10-11 00:15:47 +948 948 949 94.8 189.60000000000002 948 1972-08-06 2024-10-11 00:15:48.000 1972-08-06 2024-10-11 00:15:48 +949 949 950 94.9 189.8 949 1972-08-07 2024-10-11 00:15:49.000 1972-08-07 2024-10-11 00:15:49 +951 951 952 95.1 190.20000000000002 951 1972-08-09 2024-10-11 00:15:51.000 1972-08-09 2024-10-11 00:15:51 +952 952 953 95.2 190.4 952 1972-08-10 2024-10-11 00:15:52.000 1972-08-10 2024-10-11 00:15:52 +953 953 954 95.3 190.60000000000002 953 1972-08-11 2024-10-11 00:15:53.000 1972-08-11 2024-10-11 00:15:53 +954 954 955 95.4 190.8 954 1972-08-12 2024-10-11 00:15:54.000 1972-08-12 2024-10-11 00:15:54 +956 956 957 95.6 191.20000000000002 956 1972-08-14 2024-10-11 00:15:56.000 1972-08-14 2024-10-11 00:15:56 +957 957 958 95.7 191.4 957 1972-08-15 2024-10-11 00:15:57.000 1972-08-15 2024-10-11 00:15:57 +958 958 959 95.8 191.60000000000002 958 1972-08-16 2024-10-11 00:15:58.000 1972-08-16 2024-10-11 00:15:58 +959 959 960 95.9 191.8 959 1972-08-17 2024-10-11 00:15:59.000 1972-08-17 2024-10-11 00:15:59 +961 961 962 96.1 192.20000000000002 961 1972-08-19 2024-10-11 00:16:01.000 1972-08-19 2024-10-11 00:16:01 +962 962 963 96.2 192.4 962 1972-08-20 2024-10-11 00:16:02.000 1972-08-20 2024-10-11 00:16:02 +963 963 964 96.3 192.60000000000002 963 1972-08-21 2024-10-11 00:16:03.000 1972-08-21 2024-10-11 00:16:03 +964 964 965 96.4 192.8 964 1972-08-22 2024-10-11 00:16:04.000 1972-08-22 2024-10-11 00:16:04 +966 966 967 96.6 193.20000000000002 966 1972-08-24 2024-10-11 00:16:06.000 1972-08-24 2024-10-11 00:16:06 +967 967 968 96.7 193.4 967 1972-08-25 2024-10-11 00:16:07.000 1972-08-25 2024-10-11 00:16:07 +968 968 969 96.8 193.60000000000002 968 1972-08-26 2024-10-11 00:16:08.000 1972-08-26 2024-10-11 00:16:08 +969 969 970 96.9 193.8 969 1972-08-27 2024-10-11 00:16:09.000 1972-08-27 2024-10-11 00:16:09 +971 971 972 97.1 194.20000000000002 971 1972-08-29 2024-10-11 00:16:11.000 1972-08-29 2024-10-11 00:16:11 +972 972 973 97.2 194.4 972 1972-08-30 2024-10-11 00:16:12.000 1972-08-30 2024-10-11 00:16:12 +973 973 974 97.3 194.60000000000002 973 1972-08-31 2024-10-11 00:16:13.000 1972-08-31 2024-10-11 00:16:13 +974 974 975 97.4 194.8 974 1972-09-01 2024-10-11 00:16:14.000 1972-09-01 2024-10-11 00:16:14 +976 976 977 97.6 195.20000000000002 976 1972-09-03 2024-10-11 00:16:16.000 1972-09-03 2024-10-11 00:16:16 +977 977 978 97.7 195.4 977 1972-09-04 2024-10-11 00:16:17.000 1972-09-04 2024-10-11 00:16:17 +978 978 979 97.8 195.60000000000002 978 1972-09-05 2024-10-11 00:16:18.000 1972-09-05 2024-10-11 00:16:18 +979 979 980 97.9 195.8 979 1972-09-06 2024-10-11 00:16:19.000 1972-09-06 2024-10-11 00:16:19 +981 981 982 98.1 196.20000000000002 981 1972-09-08 2024-10-11 00:16:21.000 1972-09-08 2024-10-11 00:16:21 +982 982 983 98.2 196.4 982 1972-09-09 2024-10-11 00:16:22.000 1972-09-09 2024-10-11 00:16:22 +983 983 984 98.3 196.60000000000002 983 1972-09-10 2024-10-11 00:16:23.000 1972-09-10 2024-10-11 00:16:23 +984 984 985 98.4 196.8 984 1972-09-11 2024-10-11 00:16:24.000 1972-09-11 2024-10-11 00:16:24 +986 986 987 98.6 197.20000000000002 986 1972-09-13 2024-10-11 00:16:26.000 1972-09-13 2024-10-11 00:16:26 +987 987 988 98.7 197.4 987 1972-09-14 2024-10-11 00:16:27.000 1972-09-14 2024-10-11 00:16:27 +988 988 989 98.8 197.60000000000002 988 1972-09-15 2024-10-11 00:16:28.000 1972-09-15 2024-10-11 00:16:28 +989 989 990 98.9 197.8 989 1972-09-16 2024-10-11 00:16:29.000 1972-09-16 2024-10-11 00:16:29 +991 991 992 99.1 198.20000000000002 991 1972-09-18 2024-10-11 00:16:31.000 1972-09-18 2024-10-11 00:16:31 +992 992 993 99.2 198.4 992 1972-09-19 2024-10-11 00:16:32.000 1972-09-19 2024-10-11 00:16:32 +993 993 994 99.3 198.60000000000002 993 1972-09-20 2024-10-11 00:16:33.000 1972-09-20 2024-10-11 00:16:33 +994 994 995 99.4 198.8 994 1972-09-21 2024-10-11 00:16:34.000 1972-09-21 2024-10-11 00:16:34 +996 996 997 99.6 199.20000000000002 996 1972-09-23 2024-10-11 00:16:36.000 1972-09-23 2024-10-11 00:16:36 +997 997 998 99.7 199.4 997 1972-09-24 2024-10-11 00:16:37.000 1972-09-24 2024-10-11 00:16:37 +998 998 999 99.8 199.60000000000002 998 1972-09-25 2024-10-11 00:16:38.000 1972-09-25 2024-10-11 00:16:38 +999 999 1000 99.9 199.8 999 1972-09-26 2024-10-11 00:16:39.000 1972-09-26 2024-10-11 00:16:39 +1001 1001 1002 100.1 200.20000000000002 1001 1972-09-28 2024-10-11 00:16:41.000 1972-09-28 2024-10-11 00:16:41 +1002 1002 1003 100.2 200.4 1002 1972-09-29 2024-10-11 00:16:42.000 1972-09-29 2024-10-11 00:16:42 +1003 1003 1004 100.3 200.60000000000002 1003 1972-09-30 2024-10-11 00:16:43.000 1972-09-30 2024-10-11 00:16:43 +1004 1004 1005 100.4 200.8 1004 1972-10-01 2024-10-11 00:16:44.000 1972-10-01 2024-10-11 00:16:44 +1006 1006 1007 100.6 201.20000000000002 1006 1972-10-03 2024-10-11 00:16:46.000 1972-10-03 2024-10-11 00:16:46 +1007 1007 1008 100.7 201.4 1007 1972-10-04 2024-10-11 00:16:47.000 1972-10-04 2024-10-11 00:16:47 +1008 1008 1009 100.8 201.60000000000002 1008 1972-10-05 2024-10-11 00:16:48.000 1972-10-05 2024-10-11 00:16:48 +1009 1009 1010 100.9 201.8 1009 1972-10-06 2024-10-11 00:16:49.000 1972-10-06 2024-10-11 00:16:49 +1011 1011 1012 101.1 202.20000000000002 1011 1972-10-08 2024-10-11 00:16:51.000 1972-10-08 2024-10-11 00:16:51 +1012 1012 1013 101.2 202.4 1012 1972-10-09 2024-10-11 00:16:52.000 1972-10-09 2024-10-11 00:16:52 +1013 1013 1014 101.3 202.60000000000002 1013 1972-10-10 2024-10-11 00:16:53.000 1972-10-10 2024-10-11 00:16:53 +1014 1014 1015 101.4 202.8 1014 1972-10-11 2024-10-11 00:16:54.000 1972-10-11 2024-10-11 00:16:54 +1016 1016 1017 101.6 203.20000000000002 1016 1972-10-13 2024-10-11 00:16:56.000 1972-10-13 2024-10-11 00:16:56 +1017 1017 1018 101.7 203.4 1017 1972-10-14 2024-10-11 00:16:57.000 1972-10-14 2024-10-11 00:16:57 +1018 1018 1019 101.8 203.60000000000002 1018 1972-10-15 2024-10-11 00:16:58.000 1972-10-15 2024-10-11 00:16:58 +1019 1019 1020 101.9 203.8 1019 1972-10-16 2024-10-11 00:16:59.000 1972-10-16 2024-10-11 00:16:59 +1021 1021 1022 102.1 204.20000000000002 1021 1972-10-18 2024-10-11 00:17:01.000 1972-10-18 2024-10-11 00:17:01 +1022 1022 1023 102.2 204.4 1022 1972-10-19 2024-10-11 00:17:02.000 1972-10-19 2024-10-11 00:17:02 +1023 1023 1024 102.3 204.60000000000002 1023 1972-10-20 2024-10-11 00:17:03.000 1972-10-20 2024-10-11 00:17:03 +1024 1024 1025 102.4 204.8 1024 1972-10-21 2024-10-11 00:17:04.000 1972-10-21 2024-10-11 00:17:04 +1026 1026 1027 102.6 205.20000000000002 1026 1972-10-23 2024-10-11 00:17:06.000 1972-10-23 2024-10-11 00:17:06 +1027 1027 1028 102.7 205.4 1027 1972-10-24 2024-10-11 00:17:07.000 1972-10-24 2024-10-11 00:17:07 +1028 1028 1029 102.8 205.60000000000002 1028 1972-10-25 2024-10-11 00:17:08.000 1972-10-25 2024-10-11 00:17:08 +1029 1029 1030 102.9 205.8 1029 1972-10-26 2024-10-11 00:17:09.000 1972-10-26 2024-10-11 00:17:09 +1031 1031 1032 103.1 206.20000000000002 1031 1972-10-28 2024-10-11 00:17:11.000 1972-10-28 2024-10-11 00:17:11 +1032 1032 1033 103.2 206.4 1032 1972-10-29 2024-10-11 00:17:12.000 1972-10-29 2024-10-11 00:17:12 +1033 1033 1034 103.3 206.60000000000002 1033 1972-10-30 2024-10-11 00:17:13.000 1972-10-30 2024-10-11 00:17:13 +1034 1034 1035 103.4 206.8 1034 1972-10-31 2024-10-11 00:17:14.000 1972-10-31 2024-10-11 00:17:14 +1036 1036 1037 103.6 207.20000000000002 1036 1972-11-02 2024-10-11 00:17:16.000 1972-11-02 2024-10-11 00:17:16 +1037 1037 1038 103.7 207.4 1037 1972-11-03 2024-10-11 00:17:17.000 1972-11-03 2024-10-11 00:17:17 +1038 1038 1039 103.8 207.60000000000002 1038 1972-11-04 2024-10-11 00:17:18.000 1972-11-04 2024-10-11 00:17:18 +1039 1039 1040 103.9 207.8 1039 1972-11-05 2024-10-11 00:17:19.000 1972-11-05 2024-10-11 00:17:19 +1041 1041 1042 104.1 208.20000000000002 1041 1972-11-07 2024-10-11 00:17:21.000 1972-11-07 2024-10-11 00:17:21 +1042 1042 1043 104.2 208.4 1042 1972-11-08 2024-10-11 00:17:22.000 1972-11-08 2024-10-11 00:17:22 +1043 1043 1044 104.3 208.60000000000002 1043 1972-11-09 2024-10-11 00:17:23.000 1972-11-09 2024-10-11 00:17:23 +1044 1044 1045 104.4 208.8 1044 1972-11-10 2024-10-11 00:17:24.000 1972-11-10 2024-10-11 00:17:24 +1046 1046 1047 104.6 209.20000000000002 1046 1972-11-12 2024-10-11 00:17:26.000 1972-11-12 2024-10-11 00:17:26 +1047 1047 1048 104.7 209.4 1047 1972-11-13 2024-10-11 00:17:27.000 1972-11-13 2024-10-11 00:17:27 +1048 1048 1049 104.8 209.60000000000002 1048 1972-11-14 2024-10-11 00:17:28.000 1972-11-14 2024-10-11 00:17:28 +1049 1049 1050 104.9 209.8 1049 1972-11-15 2024-10-11 00:17:29.000 1972-11-15 2024-10-11 00:17:29 +1051 1051 1052 105.1 210.20000000000002 1051 1972-11-17 2024-10-11 00:17:31.000 1972-11-17 2024-10-11 00:17:31 +1052 1052 1053 105.2 210.4 1052 1972-11-18 2024-10-11 00:17:32.000 1972-11-18 2024-10-11 00:17:32 +1053 1053 1054 105.3 210.60000000000002 1053 1972-11-19 2024-10-11 00:17:33.000 1972-11-19 2024-10-11 00:17:33 +1054 1054 1055 105.4 210.8 1054 1972-11-20 2024-10-11 00:17:34.000 1972-11-20 2024-10-11 00:17:34 +1056 1056 1057 105.6 211.20000000000002 1056 1972-11-22 2024-10-11 00:17:36.000 1972-11-22 2024-10-11 00:17:36 +1057 1057 1058 105.7 211.4 1057 1972-11-23 2024-10-11 00:17:37.000 1972-11-23 2024-10-11 00:17:37 +1058 1058 1059 105.8 211.60000000000002 1058 1972-11-24 2024-10-11 00:17:38.000 1972-11-24 2024-10-11 00:17:38 +1059 1059 1060 105.9 211.8 1059 1972-11-25 2024-10-11 00:17:39.000 1972-11-25 2024-10-11 00:17:39 +1061 1061 1062 106.1 212.20000000000002 1061 1972-11-27 2024-10-11 00:17:41.000 1972-11-27 2024-10-11 00:17:41 +1062 1062 1063 106.2 212.4 1062 1972-11-28 2024-10-11 00:17:42.000 1972-11-28 2024-10-11 00:17:42 +1063 1063 1064 106.3 212.60000000000002 1063 1972-11-29 2024-10-11 00:17:43.000 1972-11-29 2024-10-11 00:17:43 +1064 1064 1065 106.4 212.8 1064 1972-11-30 2024-10-11 00:17:44.000 1972-11-30 2024-10-11 00:17:44 +1066 1066 1067 106.6 213.20000000000002 1066 1972-12-02 2024-10-11 00:17:46.000 1972-12-02 2024-10-11 00:17:46 +1067 1067 1068 106.7 213.4 1067 1972-12-03 2024-10-11 00:17:47.000 1972-12-03 2024-10-11 00:17:47 +1068 1068 1069 106.8 213.60000000000002 1068 1972-12-04 2024-10-11 00:17:48.000 1972-12-04 2024-10-11 00:17:48 +1069 1069 1070 106.9 213.8 1069 1972-12-05 2024-10-11 00:17:49.000 1972-12-05 2024-10-11 00:17:49 +1071 1071 1072 107.1 214.20000000000002 1071 1972-12-07 2024-10-11 00:17:51.000 1972-12-07 2024-10-11 00:17:51 +1072 1072 1073 107.2 214.4 1072 1972-12-08 2024-10-11 00:17:52.000 1972-12-08 2024-10-11 00:17:52 +1073 1073 1074 107.3 214.60000000000002 1073 1972-12-09 2024-10-11 00:17:53.000 1972-12-09 2024-10-11 00:17:53 +1074 1074 1075 107.4 214.8 1074 1972-12-10 2024-10-11 00:17:54.000 1972-12-10 2024-10-11 00:17:54 +1076 1076 1077 107.6 215.20000000000002 1076 1972-12-12 2024-10-11 00:17:56.000 1972-12-12 2024-10-11 00:17:56 +1077 1077 1078 107.7 215.4 1077 1972-12-13 2024-10-11 00:17:57.000 1972-12-13 2024-10-11 00:17:57 +1078 1078 1079 107.8 215.60000000000002 1078 1972-12-14 2024-10-11 00:17:58.000 1972-12-14 2024-10-11 00:17:58 +1079 1079 1080 107.9 215.8 1079 1972-12-15 2024-10-11 00:17:59.000 1972-12-15 2024-10-11 00:17:59 +1081 1081 1082 108.1 216.20000000000002 1081 1972-12-17 2024-10-11 00:18:01.000 1972-12-17 2024-10-11 00:18:01 +1082 1082 1083 108.2 216.4 1082 1972-12-18 2024-10-11 00:18:02.000 1972-12-18 2024-10-11 00:18:02 +1083 1083 1084 108.3 216.60000000000002 1083 1972-12-19 2024-10-11 00:18:03.000 1972-12-19 2024-10-11 00:18:03 +1084 1084 1085 108.4 216.8 1084 1972-12-20 2024-10-11 00:18:04.000 1972-12-20 2024-10-11 00:18:04 +1086 1086 1087 108.6 217.20000000000002 1086 1972-12-22 2024-10-11 00:18:06.000 1972-12-22 2024-10-11 00:18:06 +1087 1087 1088 108.7 217.4 1087 1972-12-23 2024-10-11 00:18:07.000 1972-12-23 2024-10-11 00:18:07 +1088 1088 1089 108.8 217.60000000000002 1088 1972-12-24 2024-10-11 00:18:08.000 1972-12-24 2024-10-11 00:18:08 +1089 1089 1090 108.9 217.8 1089 1972-12-25 2024-10-11 00:18:09.000 1972-12-25 2024-10-11 00:18:09 +1091 1091 1092 109.1 218.20000000000002 1091 1972-12-27 2024-10-11 00:18:11.000 1972-12-27 2024-10-11 00:18:11 +1092 1092 1093 109.2 218.4 1092 1972-12-28 2024-10-11 00:18:12.000 1972-12-28 2024-10-11 00:18:12 +1093 1093 1094 109.3 218.60000000000002 1093 1972-12-29 2024-10-11 00:18:13.000 1972-12-29 2024-10-11 00:18:13 +1094 1094 1095 109.4 218.8 1094 1972-12-30 2024-10-11 00:18:14.000 1972-12-30 2024-10-11 00:18:14 +1096 1096 1097 109.6 219.20000000000002 1096 1973-01-01 2024-10-11 00:18:16.000 1973-01-01 2024-10-11 00:18:16 +1097 1097 1098 109.7 219.4 1097 1973-01-02 2024-10-11 00:18:17.000 1973-01-02 2024-10-11 00:18:17 +1098 1098 1099 109.8 219.60000000000002 1098 1973-01-03 2024-10-11 00:18:18.000 1973-01-03 2024-10-11 00:18:18 +1099 1099 1100 109.9 219.8 1099 1973-01-04 2024-10-11 00:18:19.000 1973-01-04 2024-10-11 00:18:19 +1101 1101 1102 110.1 220.20000000000002 1101 1973-01-06 2024-10-11 00:18:21.000 1973-01-06 2024-10-11 00:18:21 +1102 1102 1103 110.2 220.4 1102 1973-01-07 2024-10-11 00:18:22.000 1973-01-07 2024-10-11 00:18:22 +1103 1103 1104 110.3 220.60000000000002 1103 1973-01-08 2024-10-11 00:18:23.000 1973-01-08 2024-10-11 00:18:23 +1104 1104 1105 110.4 220.8 1104 1973-01-09 2024-10-11 00:18:24.000 1973-01-09 2024-10-11 00:18:24 +1106 1106 1107 110.6 221.20000000000002 1106 1973-01-11 2024-10-11 00:18:26.000 1973-01-11 2024-10-11 00:18:26 +1107 1107 1108 110.7 221.4 1107 1973-01-12 2024-10-11 00:18:27.000 1973-01-12 2024-10-11 00:18:27 +1108 1108 1109 110.8 221.60000000000002 1108 1973-01-13 2024-10-11 00:18:28.000 1973-01-13 2024-10-11 00:18:28 +1109 1109 1110 110.9 221.8 1109 1973-01-14 2024-10-11 00:18:29.000 1973-01-14 2024-10-11 00:18:29 +1111 1111 1112 111.1 222.20000000000002 1111 1973-01-16 2024-10-11 00:18:31.000 1973-01-16 2024-10-11 00:18:31 +1112 1112 1113 111.2 222.4 1112 1973-01-17 2024-10-11 00:18:32.000 1973-01-17 2024-10-11 00:18:32 +1113 1113 1114 111.3 222.60000000000002 1113 1973-01-18 2024-10-11 00:18:33.000 1973-01-18 2024-10-11 00:18:33 +1114 1114 1115 111.4 222.8 1114 1973-01-19 2024-10-11 00:18:34.000 1973-01-19 2024-10-11 00:18:34 +1116 1116 1117 111.6 223.20000000000002 1116 1973-01-21 2024-10-11 00:18:36.000 1973-01-21 2024-10-11 00:18:36 +1117 1117 1118 111.7 223.4 1117 1973-01-22 2024-10-11 00:18:37.000 1973-01-22 2024-10-11 00:18:37 +1118 1118 1119 111.8 223.60000000000002 1118 1973-01-23 2024-10-11 00:18:38.000 1973-01-23 2024-10-11 00:18:38 +1119 1119 1120 111.9 223.8 1119 1973-01-24 2024-10-11 00:18:39.000 1973-01-24 2024-10-11 00:18:39 +1121 1121 1122 112.1 224.20000000000002 1121 1973-01-26 2024-10-11 00:18:41.000 1973-01-26 2024-10-11 00:18:41 +1122 1122 1123 112.2 224.4 1122 1973-01-27 2024-10-11 00:18:42.000 1973-01-27 2024-10-11 00:18:42 +1123 1123 1124 112.3 224.60000000000002 1123 1973-01-28 2024-10-11 00:18:43.000 1973-01-28 2024-10-11 00:18:43 +1124 1124 1125 112.4 224.8 1124 1973-01-29 2024-10-11 00:18:44.000 1973-01-29 2024-10-11 00:18:44 +1126 1126 1127 112.6 225.20000000000002 1126 1973-01-31 2024-10-11 00:18:46.000 1973-01-31 2024-10-11 00:18:46 +1127 1127 1128 112.7 225.4 1127 1973-02-01 2024-10-11 00:18:47.000 1973-02-01 2024-10-11 00:18:47 +1128 1128 1129 112.8 225.60000000000002 1128 1973-02-02 2024-10-11 00:18:48.000 1973-02-02 2024-10-11 00:18:48 +1129 1129 1130 112.9 225.8 1129 1973-02-03 2024-10-11 00:18:49.000 1973-02-03 2024-10-11 00:18:49 +1131 1131 1132 113.1 226.20000000000002 1131 1973-02-05 2024-10-11 00:18:51.000 1973-02-05 2024-10-11 00:18:51 +1132 1132 1133 113.2 226.4 1132 1973-02-06 2024-10-11 00:18:52.000 1973-02-06 2024-10-11 00:18:52 +1133 1133 1134 113.3 226.60000000000002 1133 1973-02-07 2024-10-11 00:18:53.000 1973-02-07 2024-10-11 00:18:53 +1134 1134 1135 113.4 226.8 1134 1973-02-08 2024-10-11 00:18:54.000 1973-02-08 2024-10-11 00:18:54 +1136 1136 1137 113.6 227.20000000000002 1136 1973-02-10 2024-10-11 00:18:56.000 1973-02-10 2024-10-11 00:18:56 +1137 1137 1138 113.7 227.4 1137 1973-02-11 2024-10-11 00:18:57.000 1973-02-11 2024-10-11 00:18:57 +1138 1138 1139 113.8 227.60000000000002 1138 1973-02-12 2024-10-11 00:18:58.000 1973-02-12 2024-10-11 00:18:58 +1139 1139 1140 113.9 227.8 1139 1973-02-13 2024-10-11 00:18:59.000 1973-02-13 2024-10-11 00:18:59 +1141 1141 1142 114.1 228.20000000000002 1141 1973-02-15 2024-10-11 00:19:01.000 1973-02-15 2024-10-11 00:19:01 +1142 1142 1143 114.2 228.4 1142 1973-02-16 2024-10-11 00:19:02.000 1973-02-16 2024-10-11 00:19:02 +1143 1143 1144 114.3 228.60000000000002 1143 1973-02-17 2024-10-11 00:19:03.000 1973-02-17 2024-10-11 00:19:03 +1144 1144 1145 114.4 228.8 1144 1973-02-18 2024-10-11 00:19:04.000 1973-02-18 2024-10-11 00:19:04 +1146 1146 1147 114.6 229.20000000000002 1146 1973-02-20 2024-10-11 00:19:06.000 1973-02-20 2024-10-11 00:19:06 +1147 1147 1148 114.7 229.4 1147 1973-02-21 2024-10-11 00:19:07.000 1973-02-21 2024-10-11 00:19:07 +1148 1148 1149 114.8 229.60000000000002 1148 1973-02-22 2024-10-11 00:19:08.000 1973-02-22 2024-10-11 00:19:08 +1149 1149 1150 114.9 229.8 1149 1973-02-23 2024-10-11 00:19:09.000 1973-02-23 2024-10-11 00:19:09 +1151 1151 1152 115.1 230.20000000000002 1151 1973-02-25 2024-10-11 00:19:11.000 1973-02-25 2024-10-11 00:19:11 +1152 1152 1153 115.2 230.4 1152 1973-02-26 2024-10-11 00:19:12.000 1973-02-26 2024-10-11 00:19:12 +1153 1153 1154 115.3 230.60000000000002 1153 1973-02-27 2024-10-11 00:19:13.000 1973-02-27 2024-10-11 00:19:13 +1154 1154 1155 115.4 230.8 1154 1973-02-28 2024-10-11 00:19:14.000 1973-02-28 2024-10-11 00:19:14 +1156 1156 1157 115.6 231.20000000000002 1156 1973-03-02 2024-10-11 00:19:16.000 1973-03-02 2024-10-11 00:19:16 +1157 1157 1158 115.7 231.4 1157 1973-03-03 2024-10-11 00:19:17.000 1973-03-03 2024-10-11 00:19:17 +1158 1158 1159 115.8 231.60000000000002 1158 1973-03-04 2024-10-11 00:19:18.000 1973-03-04 2024-10-11 00:19:18 +1159 1159 1160 115.9 231.8 1159 1973-03-05 2024-10-11 00:19:19.000 1973-03-05 2024-10-11 00:19:19 +1161 1161 1162 116.1 232.20000000000002 1161 1973-03-07 2024-10-11 00:19:21.000 1973-03-07 2024-10-11 00:19:21 +1162 1162 1163 116.2 232.4 1162 1973-03-08 2024-10-11 00:19:22.000 1973-03-08 2024-10-11 00:19:22 +1163 1163 1164 116.3 232.60000000000002 1163 1973-03-09 2024-10-11 00:19:23.000 1973-03-09 2024-10-11 00:19:23 +1164 1164 1165 116.4 232.8 1164 1973-03-10 2024-10-11 00:19:24.000 1973-03-10 2024-10-11 00:19:24 +1166 1166 1167 116.6 233.20000000000002 1166 1973-03-12 2024-10-11 00:19:26.000 1973-03-12 2024-10-11 00:19:26 +1167 1167 1168 116.7 233.4 1167 1973-03-13 2024-10-11 00:19:27.000 1973-03-13 2024-10-11 00:19:27 +1168 1168 1169 116.8 233.60000000000002 1168 1973-03-14 2024-10-11 00:19:28.000 1973-03-14 2024-10-11 00:19:28 +1169 1169 1170 116.9 233.8 1169 1973-03-15 2024-10-11 00:19:29.000 1973-03-15 2024-10-11 00:19:29 +1171 1171 1172 117.1 234.20000000000002 1171 1973-03-17 2024-10-11 00:19:31.000 1973-03-17 2024-10-11 00:19:31 +1172 1172 1173 117.2 234.4 1172 1973-03-18 2024-10-11 00:19:32.000 1973-03-18 2024-10-11 00:19:32 +1173 1173 1174 117.3 234.60000000000002 1173 1973-03-19 2024-10-11 00:19:33.000 1973-03-19 2024-10-11 00:19:33 +1174 1174 1175 117.4 234.8 1174 1973-03-20 2024-10-11 00:19:34.000 1973-03-20 2024-10-11 00:19:34 +1176 1176 1177 117.6 235.20000000000002 1176 1973-03-22 2024-10-11 00:19:36.000 1973-03-22 2024-10-11 00:19:36 +1177 1177 1178 117.7 235.4 1177 1973-03-23 2024-10-11 00:19:37.000 1973-03-23 2024-10-11 00:19:37 +1178 1178 1179 117.8 235.60000000000002 1178 1973-03-24 2024-10-11 00:19:38.000 1973-03-24 2024-10-11 00:19:38 +1179 1179 1180 117.9 235.8 1179 1973-03-25 2024-10-11 00:19:39.000 1973-03-25 2024-10-11 00:19:39 +1181 1181 1182 118.1 236.20000000000002 1181 1973-03-27 2024-10-11 00:19:41.000 1973-03-27 2024-10-11 00:19:41 +1182 1182 1183 118.2 236.4 1182 1973-03-28 2024-10-11 00:19:42.000 1973-03-28 2024-10-11 00:19:42 +1183 1183 1184 118.3 236.60000000000002 1183 1973-03-29 2024-10-11 00:19:43.000 1973-03-29 2024-10-11 00:19:43 +1184 1184 1185 118.4 236.8 1184 1973-03-30 2024-10-11 00:19:44.000 1973-03-30 2024-10-11 00:19:44 +1186 1186 1187 118.6 237.20000000000002 1186 1973-04-01 2024-10-11 00:19:46.000 1973-04-01 2024-10-11 00:19:46 +1187 1187 1188 118.7 237.4 1187 1973-04-02 2024-10-11 00:19:47.000 1973-04-02 2024-10-11 00:19:47 +1188 1188 1189 118.8 237.60000000000002 1188 1973-04-03 2024-10-11 00:19:48.000 1973-04-03 2024-10-11 00:19:48 +1189 1189 1190 118.9 237.8 1189 1973-04-04 2024-10-11 00:19:49.000 1973-04-04 2024-10-11 00:19:49 +1191 1191 1192 119.1 238.20000000000002 1191 1973-04-06 2024-10-11 00:19:51.000 1973-04-06 2024-10-11 00:19:51 +1192 1192 1193 119.2 238.4 1192 1973-04-07 2024-10-11 00:19:52.000 1973-04-07 2024-10-11 00:19:52 +1193 1193 1194 119.3 238.60000000000002 1193 1973-04-08 2024-10-11 00:19:53.000 1973-04-08 2024-10-11 00:19:53 +1194 1194 1195 119.4 238.8 1194 1973-04-09 2024-10-11 00:19:54.000 1973-04-09 2024-10-11 00:19:54 +1196 1196 1197 119.6 239.20000000000002 1196 1973-04-11 2024-10-11 00:19:56.000 1973-04-11 2024-10-11 00:19:56 +1197 1197 1198 119.7 239.4 1197 1973-04-12 2024-10-11 00:19:57.000 1973-04-12 2024-10-11 00:19:57 +1198 1198 1199 119.8 239.60000000000002 1198 1973-04-13 2024-10-11 00:19:58.000 1973-04-13 2024-10-11 00:19:58 +1199 1199 1200 119.9 239.8 1199 1973-04-14 2024-10-11 00:19:59.000 1973-04-14 2024-10-11 00:19:59 +1201 1201 1202 120.1 240.20000000000002 1201 1973-04-16 2024-10-11 00:20:01.000 1973-04-16 2024-10-11 00:20:01 +1202 1202 1203 120.2 240.4 1202 1973-04-17 2024-10-11 00:20:02.000 1973-04-17 2024-10-11 00:20:02 +1203 1203 1204 120.3 240.60000000000002 1203 1973-04-18 2024-10-11 00:20:03.000 1973-04-18 2024-10-11 00:20:03 +1204 1204 1205 120.4 240.8 1204 1973-04-19 2024-10-11 00:20:04.000 1973-04-19 2024-10-11 00:20:04 +1206 1206 1207 120.6 241.20000000000002 1206 1973-04-21 2024-10-11 00:20:06.000 1973-04-21 2024-10-11 00:20:06 +1207 1207 1208 120.7 241.4 1207 1973-04-22 2024-10-11 00:20:07.000 1973-04-22 2024-10-11 00:20:07 +1208 1208 1209 120.8 241.60000000000002 1208 1973-04-23 2024-10-11 00:20:08.000 1973-04-23 2024-10-11 00:20:08 +1209 1209 1210 120.9 241.8 1209 1973-04-24 2024-10-11 00:20:09.000 1973-04-24 2024-10-11 00:20:09 +1211 1211 1212 121.1 242.20000000000002 1211 1973-04-26 2024-10-11 00:20:11.000 1973-04-26 2024-10-11 00:20:11 +1212 1212 1213 121.2 242.4 1212 1973-04-27 2024-10-11 00:20:12.000 1973-04-27 2024-10-11 00:20:12 +1213 1213 1214 121.3 242.60000000000002 1213 1973-04-28 2024-10-11 00:20:13.000 1973-04-28 2024-10-11 00:20:13 +1214 1214 1215 121.4 242.8 1214 1973-04-29 2024-10-11 00:20:14.000 1973-04-29 2024-10-11 00:20:14 +1216 1216 1217 121.6 243.20000000000002 1216 1973-05-01 2024-10-11 00:20:16.000 1973-05-01 2024-10-11 00:20:16 +1217 1217 1218 121.7 243.4 1217 1973-05-02 2024-10-11 00:20:17.000 1973-05-02 2024-10-11 00:20:17 +1218 1218 1219 121.8 243.60000000000002 1218 1973-05-03 2024-10-11 00:20:18.000 1973-05-03 2024-10-11 00:20:18 +1219 1219 1220 121.9 243.8 1219 1973-05-04 2024-10-11 00:20:19.000 1973-05-04 2024-10-11 00:20:19 +1221 1221 1222 122.1 244.20000000000002 1221 1973-05-06 2024-10-11 00:20:21.000 1973-05-06 2024-10-11 00:20:21 +1222 1222 1223 122.2 244.4 1222 1973-05-07 2024-10-11 00:20:22.000 1973-05-07 2024-10-11 00:20:22 +1223 1223 1224 122.3 244.60000000000002 1223 1973-05-08 2024-10-11 00:20:23.000 1973-05-08 2024-10-11 00:20:23 +1224 1224 1225 122.4 244.8 1224 1973-05-09 2024-10-11 00:20:24.000 1973-05-09 2024-10-11 00:20:24 +1226 1226 1227 122.6 245.20000000000002 1226 1973-05-11 2024-10-11 00:20:26.000 1973-05-11 2024-10-11 00:20:26 +1227 1227 1228 122.7 245.4 1227 1973-05-12 2024-10-11 00:20:27.000 1973-05-12 2024-10-11 00:20:27 +1228 1228 1229 122.8 245.60000000000002 1228 1973-05-13 2024-10-11 00:20:28.000 1973-05-13 2024-10-11 00:20:28 +1229 1229 1230 122.9 245.8 1229 1973-05-14 2024-10-11 00:20:29.000 1973-05-14 2024-10-11 00:20:29 +1231 1231 1232 123.1 246.20000000000002 1231 1973-05-16 2024-10-11 00:20:31.000 1973-05-16 2024-10-11 00:20:31 +1232 1232 1233 123.2 246.4 1232 1973-05-17 2024-10-11 00:20:32.000 1973-05-17 2024-10-11 00:20:32 +1233 1233 1234 123.3 246.60000000000002 1233 1973-05-18 2024-10-11 00:20:33.000 1973-05-18 2024-10-11 00:20:33 +1234 1234 1235 123.4 246.8 1234 1973-05-19 2024-10-11 00:20:34.000 1973-05-19 2024-10-11 00:20:34 +1236 1236 1237 123.6 247.20000000000002 1236 1973-05-21 2024-10-11 00:20:36.000 1973-05-21 2024-10-11 00:20:36 +1237 1237 1238 123.7 247.4 1237 1973-05-22 2024-10-11 00:20:37.000 1973-05-22 2024-10-11 00:20:37 +1238 1238 1239 123.8 247.60000000000002 1238 1973-05-23 2024-10-11 00:20:38.000 1973-05-23 2024-10-11 00:20:38 +1239 1239 1240 123.9 247.8 1239 1973-05-24 2024-10-11 00:20:39.000 1973-05-24 2024-10-11 00:20:39 +1241 1241 1242 124.1 248.20000000000002 1241 1973-05-26 2024-10-11 00:20:41.000 1973-05-26 2024-10-11 00:20:41 +1242 1242 1243 124.2 248.4 1242 1973-05-27 2024-10-11 00:20:42.000 1973-05-27 2024-10-11 00:20:42 +1243 1243 1244 124.3 248.60000000000002 1243 1973-05-28 2024-10-11 00:20:43.000 1973-05-28 2024-10-11 00:20:43 +1244 1244 1245 124.4 248.8 1244 1973-05-29 2024-10-11 00:20:44.000 1973-05-29 2024-10-11 00:20:44 +1246 1246 1247 124.6 249.20000000000002 1246 1973-05-31 2024-10-11 00:20:46.000 1973-05-31 2024-10-11 00:20:46 +1247 1247 1248 124.7 249.4 1247 1973-06-01 2024-10-11 00:20:47.000 1973-06-01 2024-10-11 00:20:47 +1248 1248 1249 124.8 249.60000000000002 1248 1973-06-02 2024-10-11 00:20:48.000 1973-06-02 2024-10-11 00:20:48 +1249 1249 1250 124.9 249.8 1249 1973-06-03 2024-10-11 00:20:49.000 1973-06-03 2024-10-11 00:20:49 +1251 1251 1252 125.1 250.20000000000002 1251 1973-06-05 2024-10-11 00:20:51.000 1973-06-05 2024-10-11 00:20:51 +1252 1252 1253 125.2 250.4 1252 1973-06-06 2024-10-11 00:20:52.000 1973-06-06 2024-10-11 00:20:52 +1253 1253 1254 125.3 250.60000000000002 1253 1973-06-07 2024-10-11 00:20:53.000 1973-06-07 2024-10-11 00:20:53 +1254 1254 1255 125.4 250.8 1254 1973-06-08 2024-10-11 00:20:54.000 1973-06-08 2024-10-11 00:20:54 +1256 1256 1257 125.6 251.20000000000002 1256 1973-06-10 2024-10-11 00:20:56.000 1973-06-10 2024-10-11 00:20:56 +1257 1257 1258 125.7 251.4 1257 1973-06-11 2024-10-11 00:20:57.000 1973-06-11 2024-10-11 00:20:57 +1258 1258 1259 125.8 251.60000000000002 1258 1973-06-12 2024-10-11 00:20:58.000 1973-06-12 2024-10-11 00:20:58 +1259 1259 1260 125.9 251.8 1259 1973-06-13 2024-10-11 00:20:59.000 1973-06-13 2024-10-11 00:20:59 +1261 1261 1262 126.1 252.20000000000002 1261 1973-06-15 2024-10-11 00:21:01.000 1973-06-15 2024-10-11 00:21:01 +1262 1262 1263 126.2 252.4 1262 1973-06-16 2024-10-11 00:21:02.000 1973-06-16 2024-10-11 00:21:02 +1263 1263 1264 126.3 252.60000000000002 1263 1973-06-17 2024-10-11 00:21:03.000 1973-06-17 2024-10-11 00:21:03 +1264 1264 1265 126.4 252.8 1264 1973-06-18 2024-10-11 00:21:04.000 1973-06-18 2024-10-11 00:21:04 +1266 1266 1267 126.6 253.20000000000002 1266 1973-06-20 2024-10-11 00:21:06.000 1973-06-20 2024-10-11 00:21:06 +1267 1267 1268 126.7 253.4 1267 1973-06-21 2024-10-11 00:21:07.000 1973-06-21 2024-10-11 00:21:07 +1268 1268 1269 126.8 253.60000000000002 1268 1973-06-22 2024-10-11 00:21:08.000 1973-06-22 2024-10-11 00:21:08 +1269 1269 1270 126.9 253.8 1269 1973-06-23 2024-10-11 00:21:09.000 1973-06-23 2024-10-11 00:21:09 +1271 1271 1272 127.1 254.20000000000002 1271 1973-06-25 2024-10-11 00:21:11.000 1973-06-25 2024-10-11 00:21:11 +1272 1272 1273 127.2 254.4 1272 1973-06-26 2024-10-11 00:21:12.000 1973-06-26 2024-10-11 00:21:12 +1273 1273 1274 127.3 254.60000000000002 1273 1973-06-27 2024-10-11 00:21:13.000 1973-06-27 2024-10-11 00:21:13 +1274 1274 1275 127.4 254.8 1274 1973-06-28 2024-10-11 00:21:14.000 1973-06-28 2024-10-11 00:21:14 +1276 1276 1277 127.6 255.20000000000002 1276 1973-06-30 2024-10-11 00:21:16.000 1973-06-30 2024-10-11 00:21:16 +1277 1277 1278 127.7 255.4 1277 1973-07-01 2024-10-11 00:21:17.000 1973-07-01 2024-10-11 00:21:17 +1278 1278 1279 127.8 255.60000000000002 1278 1973-07-02 2024-10-11 00:21:18.000 1973-07-02 2024-10-11 00:21:18 +1279 1279 1280 127.9 255.8 1279 1973-07-03 2024-10-11 00:21:19.000 1973-07-03 2024-10-11 00:21:19 +1281 1281 1282 128.1 256.2 1281 1973-07-05 2024-10-11 00:21:21.000 1973-07-05 2024-10-11 00:21:21 +1282 1282 1283 128.2 256.40000000000003 1282 1973-07-06 2024-10-11 00:21:22.000 1973-07-06 2024-10-11 00:21:22 +1283 1283 1284 128.3 256.6 1283 1973-07-07 2024-10-11 00:21:23.000 1973-07-07 2024-10-11 00:21:23 +1284 1284 1285 128.4 256.8 1284 1973-07-08 2024-10-11 00:21:24.000 1973-07-08 2024-10-11 00:21:24 +1286 1286 1287 128.6 257.2 1286 1973-07-10 2024-10-11 00:21:26.000 1973-07-10 2024-10-11 00:21:26 +1287 1287 1288 128.7 257.40000000000003 1287 1973-07-11 2024-10-11 00:21:27.000 1973-07-11 2024-10-11 00:21:27 +1288 1288 1289 128.8 257.6 1288 1973-07-12 2024-10-11 00:21:28.000 1973-07-12 2024-10-11 00:21:28 +1289 1289 1290 128.9 257.8 1289 1973-07-13 2024-10-11 00:21:29.000 1973-07-13 2024-10-11 00:21:29 +1291 1291 1292 129.1 258.2 1291 1973-07-15 2024-10-11 00:21:31.000 1973-07-15 2024-10-11 00:21:31 +1292 1292 1293 129.2 258.40000000000003 1292 1973-07-16 2024-10-11 00:21:32.000 1973-07-16 2024-10-11 00:21:32 +1293 1293 1294 129.3 258.6 1293 1973-07-17 2024-10-11 00:21:33.000 1973-07-17 2024-10-11 00:21:33 +1294 1294 1295 129.4 258.8 1294 1973-07-18 2024-10-11 00:21:34.000 1973-07-18 2024-10-11 00:21:34 +1296 1296 1297 129.6 259.2 1296 1973-07-20 2024-10-11 00:21:36.000 1973-07-20 2024-10-11 00:21:36 +1297 1297 1298 129.7 259.40000000000003 1297 1973-07-21 2024-10-11 00:21:37.000 1973-07-21 2024-10-11 00:21:37 +1298 1298 1299 129.8 259.6 1298 1973-07-22 2024-10-11 00:21:38.000 1973-07-22 2024-10-11 00:21:38 +1299 1299 1300 129.9 259.8 1299 1973-07-23 2024-10-11 00:21:39.000 1973-07-23 2024-10-11 00:21:39 +1301 1301 1302 130.1 260.2 1301 1973-07-25 2024-10-11 00:21:41.000 1973-07-25 2024-10-11 00:21:41 +1302 1302 1303 130.2 260.40000000000003 1302 1973-07-26 2024-10-11 00:21:42.000 1973-07-26 2024-10-11 00:21:42 +1303 1303 1304 130.3 260.6 1303 1973-07-27 2024-10-11 00:21:43.000 1973-07-27 2024-10-11 00:21:43 +1304 1304 1305 130.4 260.8 1304 1973-07-28 2024-10-11 00:21:44.000 1973-07-28 2024-10-11 00:21:44 +1306 1306 1307 130.6 261.2 1306 1973-07-30 2024-10-11 00:21:46.000 1973-07-30 2024-10-11 00:21:46 +1307 1307 1308 130.7 261.40000000000003 1307 1973-07-31 2024-10-11 00:21:47.000 1973-07-31 2024-10-11 00:21:47 +1308 1308 1309 130.8 261.6 1308 1973-08-01 2024-10-11 00:21:48.000 1973-08-01 2024-10-11 00:21:48 +1309 1309 1310 130.9 261.8 1309 1973-08-02 2024-10-11 00:21:49.000 1973-08-02 2024-10-11 00:21:49 +1311 1311 1312 131.1 262.2 1311 1973-08-04 2024-10-11 00:21:51.000 1973-08-04 2024-10-11 00:21:51 +1312 1312 1313 131.2 262.40000000000003 1312 1973-08-05 2024-10-11 00:21:52.000 1973-08-05 2024-10-11 00:21:52 +1313 1313 1314 131.3 262.6 1313 1973-08-06 2024-10-11 00:21:53.000 1973-08-06 2024-10-11 00:21:53 +1314 1314 1315 131.4 262.8 1314 1973-08-07 2024-10-11 00:21:54.000 1973-08-07 2024-10-11 00:21:54 +1316 1316 1317 131.6 263.2 1316 1973-08-09 2024-10-11 00:21:56.000 1973-08-09 2024-10-11 00:21:56 +1317 1317 1318 131.7 263.40000000000003 1317 1973-08-10 2024-10-11 00:21:57.000 1973-08-10 2024-10-11 00:21:57 +1318 1318 1319 131.8 263.6 1318 1973-08-11 2024-10-11 00:21:58.000 1973-08-11 2024-10-11 00:21:58 +1319 1319 1320 131.9 263.8 1319 1973-08-12 2024-10-11 00:21:59.000 1973-08-12 2024-10-11 00:21:59 +1321 1321 1322 132.1 264.2 1321 1973-08-14 2024-10-11 00:22:01.000 1973-08-14 2024-10-11 00:22:01 +1322 1322 1323 132.2 264.40000000000003 1322 1973-08-15 2024-10-11 00:22:02.000 1973-08-15 2024-10-11 00:22:02 +1323 1323 1324 132.3 264.6 1323 1973-08-16 2024-10-11 00:22:03.000 1973-08-16 2024-10-11 00:22:03 +1324 1324 1325 132.4 264.8 1324 1973-08-17 2024-10-11 00:22:04.000 1973-08-17 2024-10-11 00:22:04 +1326 1326 1327 132.6 265.2 1326 1973-08-19 2024-10-11 00:22:06.000 1973-08-19 2024-10-11 00:22:06 +1327 1327 1328 132.7 265.40000000000003 1327 1973-08-20 2024-10-11 00:22:07.000 1973-08-20 2024-10-11 00:22:07 +1328 1328 1329 132.8 265.6 1328 1973-08-21 2024-10-11 00:22:08.000 1973-08-21 2024-10-11 00:22:08 +1329 1329 1330 132.9 265.8 1329 1973-08-22 2024-10-11 00:22:09.000 1973-08-22 2024-10-11 00:22:09 +1331 1331 1332 133.1 266.2 1331 1973-08-24 2024-10-11 00:22:11.000 1973-08-24 2024-10-11 00:22:11 +1332 1332 1333 133.2 266.40000000000003 1332 1973-08-25 2024-10-11 00:22:12.000 1973-08-25 2024-10-11 00:22:12 +1333 1333 1334 133.3 266.6 1333 1973-08-26 2024-10-11 00:22:13.000 1973-08-26 2024-10-11 00:22:13 +1334 1334 1335 133.4 266.8 1334 1973-08-27 2024-10-11 00:22:14.000 1973-08-27 2024-10-11 00:22:14 +1336 1336 1337 133.6 267.2 1336 1973-08-29 2024-10-11 00:22:16.000 1973-08-29 2024-10-11 00:22:16 +1337 1337 1338 133.7 267.40000000000003 1337 1973-08-30 2024-10-11 00:22:17.000 1973-08-30 2024-10-11 00:22:17 +1338 1338 1339 133.8 267.6 1338 1973-08-31 2024-10-11 00:22:18.000 1973-08-31 2024-10-11 00:22:18 +1339 1339 1340 133.9 267.8 1339 1973-09-01 2024-10-11 00:22:19.000 1973-09-01 2024-10-11 00:22:19 +1341 1341 1342 134.1 268.2 1341 1973-09-03 2024-10-11 00:22:21.000 1973-09-03 2024-10-11 00:22:21 +1342 1342 1343 134.2 268.40000000000003 1342 1973-09-04 2024-10-11 00:22:22.000 1973-09-04 2024-10-11 00:22:22 +1343 1343 1344 134.3 268.6 1343 1973-09-05 2024-10-11 00:22:23.000 1973-09-05 2024-10-11 00:22:23 +1344 1344 1345 134.4 268.8 1344 1973-09-06 2024-10-11 00:22:24.000 1973-09-06 2024-10-11 00:22:24 +1346 1346 1347 134.6 269.2 1346 1973-09-08 2024-10-11 00:22:26.000 1973-09-08 2024-10-11 00:22:26 +1347 1347 1348 134.7 269.40000000000003 1347 1973-09-09 2024-10-11 00:22:27.000 1973-09-09 2024-10-11 00:22:27 +1348 1348 1349 134.8 269.6 1348 1973-09-10 2024-10-11 00:22:28.000 1973-09-10 2024-10-11 00:22:28 +1349 1349 1350 134.9 269.8 1349 1973-09-11 2024-10-11 00:22:29.000 1973-09-11 2024-10-11 00:22:29 +1351 1351 1352 135.1 270.2 1351 1973-09-13 2024-10-11 00:22:31.000 1973-09-13 2024-10-11 00:22:31 +1352 1352 1353 135.2 270.40000000000003 1352 1973-09-14 2024-10-11 00:22:32.000 1973-09-14 2024-10-11 00:22:32 +1353 1353 1354 135.3 270.6 1353 1973-09-15 2024-10-11 00:22:33.000 1973-09-15 2024-10-11 00:22:33 +1354 1354 1355 135.4 270.8 1354 1973-09-16 2024-10-11 00:22:34.000 1973-09-16 2024-10-11 00:22:34 +1356 1356 1357 135.6 271.2 1356 1973-09-18 2024-10-11 00:22:36.000 1973-09-18 2024-10-11 00:22:36 +1357 1357 1358 135.7 271.40000000000003 1357 1973-09-19 2024-10-11 00:22:37.000 1973-09-19 2024-10-11 00:22:37 +1358 1358 1359 135.8 271.6 1358 1973-09-20 2024-10-11 00:22:38.000 1973-09-20 2024-10-11 00:22:38 +1359 1359 1360 135.9 271.8 1359 1973-09-21 2024-10-11 00:22:39.000 1973-09-21 2024-10-11 00:22:39 +1361 1361 1362 136.1 272.2 1361 1973-09-23 2024-10-11 00:22:41.000 1973-09-23 2024-10-11 00:22:41 +1362 1362 1363 136.2 272.40000000000003 1362 1973-09-24 2024-10-11 00:22:42.000 1973-09-24 2024-10-11 00:22:42 +1363 1363 1364 136.3 272.6 1363 1973-09-25 2024-10-11 00:22:43.000 1973-09-25 2024-10-11 00:22:43 +1364 1364 1365 136.4 272.8 1364 1973-09-26 2024-10-11 00:22:44.000 1973-09-26 2024-10-11 00:22:44 +1366 1366 1367 136.6 273.2 1366 1973-09-28 2024-10-11 00:22:46.000 1973-09-28 2024-10-11 00:22:46 +1367 1367 1368 136.7 273.40000000000003 1367 1973-09-29 2024-10-11 00:22:47.000 1973-09-29 2024-10-11 00:22:47 +1368 1368 1369 136.8 273.6 1368 1973-09-30 2024-10-11 00:22:48.000 1973-09-30 2024-10-11 00:22:48 +1369 1369 1370 136.9 273.8 1369 1973-10-01 2024-10-11 00:22:49.000 1973-10-01 2024-10-11 00:22:49 +1371 1371 1372 137.1 274.2 1371 1973-10-03 2024-10-11 00:22:51.000 1973-10-03 2024-10-11 00:22:51 +1372 1372 1373 137.2 274.40000000000003 1372 1973-10-04 2024-10-11 00:22:52.000 1973-10-04 2024-10-11 00:22:52 +1373 1373 1374 137.3 274.6 1373 1973-10-05 2024-10-11 00:22:53.000 1973-10-05 2024-10-11 00:22:53 +1374 1374 1375 137.4 274.8 1374 1973-10-06 2024-10-11 00:22:54.000 1973-10-06 2024-10-11 00:22:54 +1376 1376 1377 137.6 275.2 1376 1973-10-08 2024-10-11 00:22:56.000 1973-10-08 2024-10-11 00:22:56 +1377 1377 1378 137.7 275.40000000000003 1377 1973-10-09 2024-10-11 00:22:57.000 1973-10-09 2024-10-11 00:22:57 +1378 1378 1379 137.8 275.6 1378 1973-10-10 2024-10-11 00:22:58.000 1973-10-10 2024-10-11 00:22:58 +1379 1379 1380 137.9 275.8 1379 1973-10-11 2024-10-11 00:22:59.000 1973-10-11 2024-10-11 00:22:59 +1381 1381 1382 138.1 276.2 1381 1973-10-13 2024-10-11 00:23:01.000 1973-10-13 2024-10-11 00:23:01 +1382 1382 1383 138.2 276.40000000000003 1382 1973-10-14 2024-10-11 00:23:02.000 1973-10-14 2024-10-11 00:23:02 +1383 1383 1384 138.3 276.6 1383 1973-10-15 2024-10-11 00:23:03.000 1973-10-15 2024-10-11 00:23:03 +1384 1384 1385 138.4 276.8 1384 1973-10-16 2024-10-11 00:23:04.000 1973-10-16 2024-10-11 00:23:04 +1386 1386 1387 138.6 277.2 1386 1973-10-18 2024-10-11 00:23:06.000 1973-10-18 2024-10-11 00:23:06 +1387 1387 1388 138.7 277.40000000000003 1387 1973-10-19 2024-10-11 00:23:07.000 1973-10-19 2024-10-11 00:23:07 +1388 1388 1389 138.8 277.6 1388 1973-10-20 2024-10-11 00:23:08.000 1973-10-20 2024-10-11 00:23:08 +1389 1389 1390 138.9 277.8 1389 1973-10-21 2024-10-11 00:23:09.000 1973-10-21 2024-10-11 00:23:09 +1391 1391 1392 139.1 278.2 1391 1973-10-23 2024-10-11 00:23:11.000 1973-10-23 2024-10-11 00:23:11 +1392 1392 1393 139.2 278.40000000000003 1392 1973-10-24 2024-10-11 00:23:12.000 1973-10-24 2024-10-11 00:23:12 +1393 1393 1394 139.3 278.6 1393 1973-10-25 2024-10-11 00:23:13.000 1973-10-25 2024-10-11 00:23:13 +1394 1394 1395 139.4 278.8 1394 1973-10-26 2024-10-11 00:23:14.000 1973-10-26 2024-10-11 00:23:14 +1396 1396 1397 139.6 279.2 1396 1973-10-28 2024-10-11 00:23:16.000 1973-10-28 2024-10-11 00:23:16 +1397 1397 1398 139.7 279.40000000000003 1397 1973-10-29 2024-10-11 00:23:17.000 1973-10-29 2024-10-11 00:23:17 +1398 1398 1399 139.8 279.6 1398 1973-10-30 2024-10-11 00:23:18.000 1973-10-30 2024-10-11 00:23:18 +1399 1399 1400 139.9 279.8 1399 1973-10-31 2024-10-11 00:23:19.000 1973-10-31 2024-10-11 00:23:19 +1401 1401 1402 140.1 280.2 1401 1973-11-02 2024-10-11 00:23:21.000 1973-11-02 2024-10-11 00:23:21 +1402 1402 1403 140.2 280.40000000000003 1402 1973-11-03 2024-10-11 00:23:22.000 1973-11-03 2024-10-11 00:23:22 +1403 1403 1404 140.3 280.6 1403 1973-11-04 2024-10-11 00:23:23.000 1973-11-04 2024-10-11 00:23:23 +1404 1404 1405 140.4 280.8 1404 1973-11-05 2024-10-11 00:23:24.000 1973-11-05 2024-10-11 00:23:24 +1406 1406 1407 140.6 281.2 1406 1973-11-07 2024-10-11 00:23:26.000 1973-11-07 2024-10-11 00:23:26 +1407 1407 1408 140.7 281.40000000000003 1407 1973-11-08 2024-10-11 00:23:27.000 1973-11-08 2024-10-11 00:23:27 +1408 1408 1409 140.8 281.6 1408 1973-11-09 2024-10-11 00:23:28.000 1973-11-09 2024-10-11 00:23:28 +1409 1409 1410 140.9 281.8 1409 1973-11-10 2024-10-11 00:23:29.000 1973-11-10 2024-10-11 00:23:29 +1411 1411 1412 141.1 282.2 1411 1973-11-12 2024-10-11 00:23:31.000 1973-11-12 2024-10-11 00:23:31 +1412 1412 1413 141.2 282.40000000000003 1412 1973-11-13 2024-10-11 00:23:32.000 1973-11-13 2024-10-11 00:23:32 +1413 1413 1414 141.3 282.6 1413 1973-11-14 2024-10-11 00:23:33.000 1973-11-14 2024-10-11 00:23:33 +1414 1414 1415 141.4 282.8 1414 1973-11-15 2024-10-11 00:23:34.000 1973-11-15 2024-10-11 00:23:34 +1416 1416 1417 141.6 283.2 1416 1973-11-17 2024-10-11 00:23:36.000 1973-11-17 2024-10-11 00:23:36 +1417 1417 1418 141.7 283.40000000000003 1417 1973-11-18 2024-10-11 00:23:37.000 1973-11-18 2024-10-11 00:23:37 +1418 1418 1419 141.8 283.6 1418 1973-11-19 2024-10-11 00:23:38.000 1973-11-19 2024-10-11 00:23:38 +1419 1419 1420 141.9 283.8 1419 1973-11-20 2024-10-11 00:23:39.000 1973-11-20 2024-10-11 00:23:39 +1421 1421 1422 142.1 284.2 1421 1973-11-22 2024-10-11 00:23:41.000 1973-11-22 2024-10-11 00:23:41 +1422 1422 1423 142.2 284.40000000000003 1422 1973-11-23 2024-10-11 00:23:42.000 1973-11-23 2024-10-11 00:23:42 +1423 1423 1424 142.3 284.6 1423 1973-11-24 2024-10-11 00:23:43.000 1973-11-24 2024-10-11 00:23:43 +1424 1424 1425 142.4 284.8 1424 1973-11-25 2024-10-11 00:23:44.000 1973-11-25 2024-10-11 00:23:44 +1426 1426 1427 142.6 285.2 1426 1973-11-27 2024-10-11 00:23:46.000 1973-11-27 2024-10-11 00:23:46 +1427 1427 1428 142.7 285.40000000000003 1427 1973-11-28 2024-10-11 00:23:47.000 1973-11-28 2024-10-11 00:23:47 +1428 1428 1429 142.8 285.6 1428 1973-11-29 2024-10-11 00:23:48.000 1973-11-29 2024-10-11 00:23:48 +1429 1429 1430 142.9 285.8 1429 1973-11-30 2024-10-11 00:23:49.000 1973-11-30 2024-10-11 00:23:49 +1431 1431 1432 143.1 286.2 1431 1973-12-02 2024-10-11 00:23:51.000 1973-12-02 2024-10-11 00:23:51 +1432 1432 1433 143.2 286.40000000000003 1432 1973-12-03 2024-10-11 00:23:52.000 1973-12-03 2024-10-11 00:23:52 +1433 1433 1434 143.3 286.6 1433 1973-12-04 2024-10-11 00:23:53.000 1973-12-04 2024-10-11 00:23:53 +1434 1434 1435 143.4 286.8 1434 1973-12-05 2024-10-11 00:23:54.000 1973-12-05 2024-10-11 00:23:54 +1436 1436 1437 143.6 287.2 1436 1973-12-07 2024-10-11 00:23:56.000 1973-12-07 2024-10-11 00:23:56 +1437 1437 1438 143.7 287.40000000000003 1437 1973-12-08 2024-10-11 00:23:57.000 1973-12-08 2024-10-11 00:23:57 +1438 1438 1439 143.8 287.6 1438 1973-12-09 2024-10-11 00:23:58.000 1973-12-09 2024-10-11 00:23:58 +1439 1439 1440 143.9 287.8 1439 1973-12-10 2024-10-11 00:23:59.000 1973-12-10 2024-10-11 00:23:59 +1441 1441 1442 144.1 288.2 1441 1973-12-12 2024-10-11 00:24:01.000 1973-12-12 2024-10-11 00:24:01 +1442 1442 1443 144.2 288.40000000000003 1442 1973-12-13 2024-10-11 00:24:02.000 1973-12-13 2024-10-11 00:24:02 +1443 1443 1444 144.3 288.6 1443 1973-12-14 2024-10-11 00:24:03.000 1973-12-14 2024-10-11 00:24:03 +1444 1444 1445 144.4 288.8 1444 1973-12-15 2024-10-11 00:24:04.000 1973-12-15 2024-10-11 00:24:04 +1446 1446 1447 144.6 289.2 1446 1973-12-17 2024-10-11 00:24:06.000 1973-12-17 2024-10-11 00:24:06 +1447 1447 1448 144.7 289.40000000000003 1447 1973-12-18 2024-10-11 00:24:07.000 1973-12-18 2024-10-11 00:24:07 +1448 1448 1449 144.8 289.6 1448 1973-12-19 2024-10-11 00:24:08.000 1973-12-19 2024-10-11 00:24:08 +1449 1449 1450 144.9 289.8 1449 1973-12-20 2024-10-11 00:24:09.000 1973-12-20 2024-10-11 00:24:09 +1451 1451 1452 145.1 290.2 1451 1973-12-22 2024-10-11 00:24:11.000 1973-12-22 2024-10-11 00:24:11 +1452 1452 1453 145.2 290.40000000000003 1452 1973-12-23 2024-10-11 00:24:12.000 1973-12-23 2024-10-11 00:24:12 +1453 1453 1454 145.3 290.6 1453 1973-12-24 2024-10-11 00:24:13.000 1973-12-24 2024-10-11 00:24:13 +1454 1454 1455 145.4 290.8 1454 1973-12-25 2024-10-11 00:24:14.000 1973-12-25 2024-10-11 00:24:14 +1456 1456 1457 145.6 291.2 1456 1973-12-27 2024-10-11 00:24:16.000 1973-12-27 2024-10-11 00:24:16 +1457 1457 1458 145.7 291.40000000000003 1457 1973-12-28 2024-10-11 00:24:17.000 1973-12-28 2024-10-11 00:24:17 +1458 1458 1459 145.8 291.6 1458 1973-12-29 2024-10-11 00:24:18.000 1973-12-29 2024-10-11 00:24:18 +1459 1459 1460 145.9 291.8 1459 1973-12-30 2024-10-11 00:24:19.000 1973-12-30 2024-10-11 00:24:19 +1461 1461 1462 146.1 292.2 1461 1974-01-01 2024-10-11 00:24:21.000 1974-01-01 2024-10-11 00:24:21 +1462 1462 1463 146.2 292.40000000000003 1462 1974-01-02 2024-10-11 00:24:22.000 1974-01-02 2024-10-11 00:24:22 +1463 1463 1464 146.3 292.6 1463 1974-01-03 2024-10-11 00:24:23.000 1974-01-03 2024-10-11 00:24:23 +1464 1464 1465 146.4 292.8 1464 1974-01-04 2024-10-11 00:24:24.000 1974-01-04 2024-10-11 00:24:24 +1466 1466 1467 146.6 293.2 1466 1974-01-06 2024-10-11 00:24:26.000 1974-01-06 2024-10-11 00:24:26 +1467 1467 1468 146.7 293.40000000000003 1467 1974-01-07 2024-10-11 00:24:27.000 1974-01-07 2024-10-11 00:24:27 +1468 1468 1469 146.8 293.6 1468 1974-01-08 2024-10-11 00:24:28.000 1974-01-08 2024-10-11 00:24:28 +1469 1469 1470 146.9 293.8 1469 1974-01-09 2024-10-11 00:24:29.000 1974-01-09 2024-10-11 00:24:29 +1471 1471 1472 147.1 294.2 1471 1974-01-11 2024-10-11 00:24:31.000 1974-01-11 2024-10-11 00:24:31 +1472 1472 1473 147.2 294.40000000000003 1472 1974-01-12 2024-10-11 00:24:32.000 1974-01-12 2024-10-11 00:24:32 +1473 1473 1474 147.3 294.6 1473 1974-01-13 2024-10-11 00:24:33.000 1974-01-13 2024-10-11 00:24:33 +1474 1474 1475 147.4 294.8 1474 1974-01-14 2024-10-11 00:24:34.000 1974-01-14 2024-10-11 00:24:34 +1476 1476 1477 147.6 295.2 1476 1974-01-16 2024-10-11 00:24:36.000 1974-01-16 2024-10-11 00:24:36 +1477 1477 1478 147.7 295.40000000000003 1477 1974-01-17 2024-10-11 00:24:37.000 1974-01-17 2024-10-11 00:24:37 +1478 1478 1479 147.8 295.6 1478 1974-01-18 2024-10-11 00:24:38.000 1974-01-18 2024-10-11 00:24:38 +1479 1479 1480 147.9 295.8 1479 1974-01-19 2024-10-11 00:24:39.000 1974-01-19 2024-10-11 00:24:39 +1481 1481 1482 148.1 296.2 1481 1974-01-21 2024-10-11 00:24:41.000 1974-01-21 2024-10-11 00:24:41 +1482 1482 1483 148.2 296.40000000000003 1482 1974-01-22 2024-10-11 00:24:42.000 1974-01-22 2024-10-11 00:24:42 +1483 1483 1484 148.3 296.6 1483 1974-01-23 2024-10-11 00:24:43.000 1974-01-23 2024-10-11 00:24:43 +1484 1484 1485 148.4 296.8 1484 1974-01-24 2024-10-11 00:24:44.000 1974-01-24 2024-10-11 00:24:44 +1486 1486 1487 148.6 297.2 1486 1974-01-26 2024-10-11 00:24:46.000 1974-01-26 2024-10-11 00:24:46 +1487 1487 1488 148.7 297.40000000000003 1487 1974-01-27 2024-10-11 00:24:47.000 1974-01-27 2024-10-11 00:24:47 +1488 1488 1489 148.8 297.6 1488 1974-01-28 2024-10-11 00:24:48.000 1974-01-28 2024-10-11 00:24:48 +1489 1489 1490 148.9 297.8 1489 1974-01-29 2024-10-11 00:24:49.000 1974-01-29 2024-10-11 00:24:49 +1491 1491 1492 149.1 298.2 1491 1974-01-31 2024-10-11 00:24:51.000 1974-01-31 2024-10-11 00:24:51 +1492 1492 1493 149.2 298.40000000000003 1492 1974-02-01 2024-10-11 00:24:52.000 1974-02-01 2024-10-11 00:24:52 +1493 1493 1494 149.3 298.6 1493 1974-02-02 2024-10-11 00:24:53.000 1974-02-02 2024-10-11 00:24:53 +1494 1494 1495 149.4 298.8 1494 1974-02-03 2024-10-11 00:24:54.000 1974-02-03 2024-10-11 00:24:54 +1496 1496 1497 149.6 299.2 1496 1974-02-05 2024-10-11 00:24:56.000 1974-02-05 2024-10-11 00:24:56 +1497 1497 1498 149.7 299.40000000000003 1497 1974-02-06 2024-10-11 00:24:57.000 1974-02-06 2024-10-11 00:24:57 +1498 1498 1499 149.8 299.6 1498 1974-02-07 2024-10-11 00:24:58.000 1974-02-07 2024-10-11 00:24:58 +1499 1499 1500 149.9 299.8 1499 1974-02-08 2024-10-11 00:24:59.000 1974-02-08 2024-10-11 00:24:59 +1501 1501 1502 150.1 300.2 1501 1974-02-10 2024-10-11 00:25:01.000 1974-02-10 2024-10-11 00:25:01 +1502 1502 1503 150.2 300.40000000000003 1502 1974-02-11 2024-10-11 00:25:02.000 1974-02-11 2024-10-11 00:25:02 +1503 1503 1504 150.3 300.6 1503 1974-02-12 2024-10-11 00:25:03.000 1974-02-12 2024-10-11 00:25:03 +1504 1504 1505 150.4 300.8 1504 1974-02-13 2024-10-11 00:25:04.000 1974-02-13 2024-10-11 00:25:04 +1506 1506 1507 150.6 301.2 1506 1974-02-15 2024-10-11 00:25:06.000 1974-02-15 2024-10-11 00:25:06 +1507 1507 1508 150.7 301.40000000000003 1507 1974-02-16 2024-10-11 00:25:07.000 1974-02-16 2024-10-11 00:25:07 +1508 1508 1509 150.8 301.6 1508 1974-02-17 2024-10-11 00:25:08.000 1974-02-17 2024-10-11 00:25:08 +1509 1509 1510 150.9 301.8 1509 1974-02-18 2024-10-11 00:25:09.000 1974-02-18 2024-10-11 00:25:09 +1511 1511 1512 151.1 302.2 1511 1974-02-20 2024-10-11 00:25:11.000 1974-02-20 2024-10-11 00:25:11 +1512 1512 1513 151.2 302.40000000000003 1512 1974-02-21 2024-10-11 00:25:12.000 1974-02-21 2024-10-11 00:25:12 +1513 1513 1514 151.3 302.6 1513 1974-02-22 2024-10-11 00:25:13.000 1974-02-22 2024-10-11 00:25:13 +1514 1514 1515 151.4 302.8 1514 1974-02-23 2024-10-11 00:25:14.000 1974-02-23 2024-10-11 00:25:14 +1516 1516 1517 151.6 303.2 1516 1974-02-25 2024-10-11 00:25:16.000 1974-02-25 2024-10-11 00:25:16 +1517 1517 1518 151.7 303.40000000000003 1517 1974-02-26 2024-10-11 00:25:17.000 1974-02-26 2024-10-11 00:25:17 +1518 1518 1519 151.8 303.6 1518 1974-02-27 2024-10-11 00:25:18.000 1974-02-27 2024-10-11 00:25:18 +1519 1519 1520 151.9 303.8 1519 1974-02-28 2024-10-11 00:25:19.000 1974-02-28 2024-10-11 00:25:19 +1521 1521 1522 152.1 304.2 1521 1974-03-02 2024-10-11 00:25:21.000 1974-03-02 2024-10-11 00:25:21 +1522 1522 1523 152.2 304.40000000000003 1522 1974-03-03 2024-10-11 00:25:22.000 1974-03-03 2024-10-11 00:25:22 +1523 1523 1524 152.3 304.6 1523 1974-03-04 2024-10-11 00:25:23.000 1974-03-04 2024-10-11 00:25:23 +1524 1524 1525 152.4 304.8 1524 1974-03-05 2024-10-11 00:25:24.000 1974-03-05 2024-10-11 00:25:24 +1526 1526 1527 152.6 305.2 1526 1974-03-07 2024-10-11 00:25:26.000 1974-03-07 2024-10-11 00:25:26 +1527 1527 1528 152.7 305.40000000000003 1527 1974-03-08 2024-10-11 00:25:27.000 1974-03-08 2024-10-11 00:25:27 +1528 1528 1529 152.8 305.6 1528 1974-03-09 2024-10-11 00:25:28.000 1974-03-09 2024-10-11 00:25:28 +1529 1529 1530 152.9 305.8 1529 1974-03-10 2024-10-11 00:25:29.000 1974-03-10 2024-10-11 00:25:29 +1531 1531 1532 153.1 306.2 1531 1974-03-12 2024-10-11 00:25:31.000 1974-03-12 2024-10-11 00:25:31 +1532 1532 1533 153.2 306.40000000000003 1532 1974-03-13 2024-10-11 00:25:32.000 1974-03-13 2024-10-11 00:25:32 +1533 1533 1534 153.3 306.6 1533 1974-03-14 2024-10-11 00:25:33.000 1974-03-14 2024-10-11 00:25:33 +1534 1534 1535 153.4 306.8 1534 1974-03-15 2024-10-11 00:25:34.000 1974-03-15 2024-10-11 00:25:34 +1536 1536 1537 153.6 307.20000000000005 1536 1974-03-17 2024-10-11 00:25:36.000 1974-03-17 2024-10-11 00:25:36 +1537 1537 1538 153.7 307.40000000000003 1537 1974-03-18 2024-10-11 00:25:37.000 1974-03-18 2024-10-11 00:25:37 +1538 1538 1539 153.8 307.6 1538 1974-03-19 2024-10-11 00:25:38.000 1974-03-19 2024-10-11 00:25:38 +1539 1539 1540 153.9 307.8 1539 1974-03-20 2024-10-11 00:25:39.000 1974-03-20 2024-10-11 00:25:39 +1541 1541 1542 154.1 308.20000000000005 1541 1974-03-22 2024-10-11 00:25:41.000 1974-03-22 2024-10-11 00:25:41 +1542 1542 1543 154.2 308.40000000000003 1542 1974-03-23 2024-10-11 00:25:42.000 1974-03-23 2024-10-11 00:25:42 +1543 1543 1544 154.3 308.6 1543 1974-03-24 2024-10-11 00:25:43.000 1974-03-24 2024-10-11 00:25:43 +1544 1544 1545 154.4 308.8 1544 1974-03-25 2024-10-11 00:25:44.000 1974-03-25 2024-10-11 00:25:44 +1546 1546 1547 154.6 309.20000000000005 1546 1974-03-27 2024-10-11 00:25:46.000 1974-03-27 2024-10-11 00:25:46 +1547 1547 1548 154.7 309.40000000000003 1547 1974-03-28 2024-10-11 00:25:47.000 1974-03-28 2024-10-11 00:25:47 +1548 1548 1549 154.8 309.6 1548 1974-03-29 2024-10-11 00:25:48.000 1974-03-29 2024-10-11 00:25:48 +1549 1549 1550 154.9 309.8 1549 1974-03-30 2024-10-11 00:25:49.000 1974-03-30 2024-10-11 00:25:49 +1551 1551 1552 155.1 310.20000000000005 1551 1974-04-01 2024-10-11 00:25:51.000 1974-04-01 2024-10-11 00:25:51 +1552 1552 1553 155.2 310.40000000000003 1552 1974-04-02 2024-10-11 00:25:52.000 1974-04-02 2024-10-11 00:25:52 +1553 1553 1554 155.3 310.6 1553 1974-04-03 2024-10-11 00:25:53.000 1974-04-03 2024-10-11 00:25:53 +1554 1554 1555 155.4 310.8 1554 1974-04-04 2024-10-11 00:25:54.000 1974-04-04 2024-10-11 00:25:54 +1556 1556 1557 155.6 311.20000000000005 1556 1974-04-06 2024-10-11 00:25:56.000 1974-04-06 2024-10-11 00:25:56 +1557 1557 1558 155.7 311.40000000000003 1557 1974-04-07 2024-10-11 00:25:57.000 1974-04-07 2024-10-11 00:25:57 +1558 1558 1559 155.8 311.6 1558 1974-04-08 2024-10-11 00:25:58.000 1974-04-08 2024-10-11 00:25:58 +1559 1559 1560 155.9 311.8 1559 1974-04-09 2024-10-11 00:25:59.000 1974-04-09 2024-10-11 00:25:59 +1561 1561 1562 156.1 312.20000000000005 1561 1974-04-11 2024-10-11 00:26:01.000 1974-04-11 2024-10-11 00:26:01 +1562 1562 1563 156.2 312.40000000000003 1562 1974-04-12 2024-10-11 00:26:02.000 1974-04-12 2024-10-11 00:26:02 +1563 1563 1564 156.3 312.6 1563 1974-04-13 2024-10-11 00:26:03.000 1974-04-13 2024-10-11 00:26:03 +1564 1564 1565 156.4 312.8 1564 1974-04-14 2024-10-11 00:26:04.000 1974-04-14 2024-10-11 00:26:04 +1566 1566 1567 156.6 313.20000000000005 1566 1974-04-16 2024-10-11 00:26:06.000 1974-04-16 2024-10-11 00:26:06 +1567 1567 1568 156.7 313.40000000000003 1567 1974-04-17 2024-10-11 00:26:07.000 1974-04-17 2024-10-11 00:26:07 +1568 1568 1569 156.8 313.6 1568 1974-04-18 2024-10-11 00:26:08.000 1974-04-18 2024-10-11 00:26:08 +1569 1569 1570 156.9 313.8 1569 1974-04-19 2024-10-11 00:26:09.000 1974-04-19 2024-10-11 00:26:09 +1571 1571 1572 157.1 314.20000000000005 1571 1974-04-21 2024-10-11 00:26:11.000 1974-04-21 2024-10-11 00:26:11 +1572 1572 1573 157.2 314.40000000000003 1572 1974-04-22 2024-10-11 00:26:12.000 1974-04-22 2024-10-11 00:26:12 +1573 1573 1574 157.3 314.6 1573 1974-04-23 2024-10-11 00:26:13.000 1974-04-23 2024-10-11 00:26:13 +1574 1574 1575 157.4 314.8 1574 1974-04-24 2024-10-11 00:26:14.000 1974-04-24 2024-10-11 00:26:14 +1576 1576 1577 157.6 315.20000000000005 1576 1974-04-26 2024-10-11 00:26:16.000 1974-04-26 2024-10-11 00:26:16 +1577 1577 1578 157.7 315.40000000000003 1577 1974-04-27 2024-10-11 00:26:17.000 1974-04-27 2024-10-11 00:26:17 +1578 1578 1579 157.8 315.6 1578 1974-04-28 2024-10-11 00:26:18.000 1974-04-28 2024-10-11 00:26:18 +1579 1579 1580 157.9 315.8 1579 1974-04-29 2024-10-11 00:26:19.000 1974-04-29 2024-10-11 00:26:19 +1581 1581 1582 158.1 316.20000000000005 1581 1974-05-01 2024-10-11 00:26:21.000 1974-05-01 2024-10-11 00:26:21 +1582 1582 1583 158.2 316.40000000000003 1582 1974-05-02 2024-10-11 00:26:22.000 1974-05-02 2024-10-11 00:26:22 +1583 1583 1584 158.3 316.6 1583 1974-05-03 2024-10-11 00:26:23.000 1974-05-03 2024-10-11 00:26:23 +1584 1584 1585 158.4 316.8 1584 1974-05-04 2024-10-11 00:26:24.000 1974-05-04 2024-10-11 00:26:24 +1586 1586 1587 158.6 317.20000000000005 1586 1974-05-06 2024-10-11 00:26:26.000 1974-05-06 2024-10-11 00:26:26 +1587 1587 1588 158.7 317.40000000000003 1587 1974-05-07 2024-10-11 00:26:27.000 1974-05-07 2024-10-11 00:26:27 +1588 1588 1589 158.8 317.6 1588 1974-05-08 2024-10-11 00:26:28.000 1974-05-08 2024-10-11 00:26:28 +1589 1589 1590 158.9 317.8 1589 1974-05-09 2024-10-11 00:26:29.000 1974-05-09 2024-10-11 00:26:29 +1591 1591 1592 159.1 318.20000000000005 1591 1974-05-11 2024-10-11 00:26:31.000 1974-05-11 2024-10-11 00:26:31 +1592 1592 1593 159.2 318.40000000000003 1592 1974-05-12 2024-10-11 00:26:32.000 1974-05-12 2024-10-11 00:26:32 +1593 1593 1594 159.3 318.6 1593 1974-05-13 2024-10-11 00:26:33.000 1974-05-13 2024-10-11 00:26:33 +1594 1594 1595 159.4 318.8 1594 1974-05-14 2024-10-11 00:26:34.000 1974-05-14 2024-10-11 00:26:34 +1596 1596 1597 159.6 319.20000000000005 1596 1974-05-16 2024-10-11 00:26:36.000 1974-05-16 2024-10-11 00:26:36 +1597 1597 1598 159.7 319.40000000000003 1597 1974-05-17 2024-10-11 00:26:37.000 1974-05-17 2024-10-11 00:26:37 +1598 1598 1599 159.8 319.6 1598 1974-05-18 2024-10-11 00:26:38.000 1974-05-18 2024-10-11 00:26:38 +1599 1599 1600 159.9 319.8 1599 1974-05-19 2024-10-11 00:26:39.000 1974-05-19 2024-10-11 00:26:39 +1601 1601 1602 160.1 320.20000000000005 1601 1974-05-21 2024-10-11 00:26:41.000 1974-05-21 2024-10-11 00:26:41 +1602 1602 1603 160.2 320.40000000000003 1602 1974-05-22 2024-10-11 00:26:42.000 1974-05-22 2024-10-11 00:26:42 +1603 1603 1604 160.3 320.6 1603 1974-05-23 2024-10-11 00:26:43.000 1974-05-23 2024-10-11 00:26:43 +1604 1604 1605 160.4 320.8 1604 1974-05-24 2024-10-11 00:26:44.000 1974-05-24 2024-10-11 00:26:44 +1606 1606 1607 160.6 321.20000000000005 1606 1974-05-26 2024-10-11 00:26:46.000 1974-05-26 2024-10-11 00:26:46 +1607 1607 1608 160.7 321.40000000000003 1607 1974-05-27 2024-10-11 00:26:47.000 1974-05-27 2024-10-11 00:26:47 +1608 1608 1609 160.8 321.6 1608 1974-05-28 2024-10-11 00:26:48.000 1974-05-28 2024-10-11 00:26:48 +1609 1609 1610 160.9 321.8 1609 1974-05-29 2024-10-11 00:26:49.000 1974-05-29 2024-10-11 00:26:49 +1611 1611 1612 161.1 322.20000000000005 1611 1974-05-31 2024-10-11 00:26:51.000 1974-05-31 2024-10-11 00:26:51 +1612 1612 1613 161.2 322.40000000000003 1612 1974-06-01 2024-10-11 00:26:52.000 1974-06-01 2024-10-11 00:26:52 +1613 1613 1614 161.3 322.6 1613 1974-06-02 2024-10-11 00:26:53.000 1974-06-02 2024-10-11 00:26:53 +1614 1614 1615 161.4 322.8 1614 1974-06-03 2024-10-11 00:26:54.000 1974-06-03 2024-10-11 00:26:54 +1616 1616 1617 161.6 323.20000000000005 1616 1974-06-05 2024-10-11 00:26:56.000 1974-06-05 2024-10-11 00:26:56 +1617 1617 1618 161.7 323.40000000000003 1617 1974-06-06 2024-10-11 00:26:57.000 1974-06-06 2024-10-11 00:26:57 +1618 1618 1619 161.8 323.6 1618 1974-06-07 2024-10-11 00:26:58.000 1974-06-07 2024-10-11 00:26:58 +1619 1619 1620 161.9 323.8 1619 1974-06-08 2024-10-11 00:26:59.000 1974-06-08 2024-10-11 00:26:59 +1621 1621 1622 162.1 324.20000000000005 1621 1974-06-10 2024-10-11 00:27:01.000 1974-06-10 2024-10-11 00:27:01 +1622 1622 1623 162.2 324.40000000000003 1622 1974-06-11 2024-10-11 00:27:02.000 1974-06-11 2024-10-11 00:27:02 +1623 1623 1624 162.3 324.6 1623 1974-06-12 2024-10-11 00:27:03.000 1974-06-12 2024-10-11 00:27:03 +1624 1624 1625 162.4 324.8 1624 1974-06-13 2024-10-11 00:27:04.000 1974-06-13 2024-10-11 00:27:04 +1626 1626 1627 162.6 325.20000000000005 1626 1974-06-15 2024-10-11 00:27:06.000 1974-06-15 2024-10-11 00:27:06 +1627 1627 1628 162.7 325.40000000000003 1627 1974-06-16 2024-10-11 00:27:07.000 1974-06-16 2024-10-11 00:27:07 +1628 1628 1629 162.8 325.6 1628 1974-06-17 2024-10-11 00:27:08.000 1974-06-17 2024-10-11 00:27:08 +1629 1629 1630 162.9 325.8 1629 1974-06-18 2024-10-11 00:27:09.000 1974-06-18 2024-10-11 00:27:09 +1631 1631 1632 163.1 326.20000000000005 1631 1974-06-20 2024-10-11 00:27:11.000 1974-06-20 2024-10-11 00:27:11 +1632 1632 1633 163.2 326.40000000000003 1632 1974-06-21 2024-10-11 00:27:12.000 1974-06-21 2024-10-11 00:27:12 +1633 1633 1634 163.3 326.6 1633 1974-06-22 2024-10-11 00:27:13.000 1974-06-22 2024-10-11 00:27:13 +1634 1634 1635 163.4 326.8 1634 1974-06-23 2024-10-11 00:27:14.000 1974-06-23 2024-10-11 00:27:14 +1636 1636 1637 163.6 327.20000000000005 1636 1974-06-25 2024-10-11 00:27:16.000 1974-06-25 2024-10-11 00:27:16 +1637 1637 1638 163.7 327.40000000000003 1637 1974-06-26 2024-10-11 00:27:17.000 1974-06-26 2024-10-11 00:27:17 +1638 1638 1639 163.8 327.6 1638 1974-06-27 2024-10-11 00:27:18.000 1974-06-27 2024-10-11 00:27:18 +1639 1639 1640 163.9 327.8 1639 1974-06-28 2024-10-11 00:27:19.000 1974-06-28 2024-10-11 00:27:19 +1641 1641 1642 164.1 328.20000000000005 1641 1974-06-30 2024-10-11 00:27:21.000 1974-06-30 2024-10-11 00:27:21 +1642 1642 1643 164.2 328.40000000000003 1642 1974-07-01 2024-10-11 00:27:22.000 1974-07-01 2024-10-11 00:27:22 +1643 1643 1644 164.3 328.6 1643 1974-07-02 2024-10-11 00:27:23.000 1974-07-02 2024-10-11 00:27:23 +1644 1644 1645 164.4 328.8 1644 1974-07-03 2024-10-11 00:27:24.000 1974-07-03 2024-10-11 00:27:24 +1646 1646 1647 164.6 329.20000000000005 1646 1974-07-05 2024-10-11 00:27:26.000 1974-07-05 2024-10-11 00:27:26 +1647 1647 1648 164.7 329.40000000000003 1647 1974-07-06 2024-10-11 00:27:27.000 1974-07-06 2024-10-11 00:27:27 +1648 1648 1649 164.8 329.6 1648 1974-07-07 2024-10-11 00:27:28.000 1974-07-07 2024-10-11 00:27:28 +1649 1649 1650 164.9 329.8 1649 1974-07-08 2024-10-11 00:27:29.000 1974-07-08 2024-10-11 00:27:29 +1651 1651 1652 165.1 330.20000000000005 1651 1974-07-10 2024-10-11 00:27:31.000 1974-07-10 2024-10-11 00:27:31 +1652 1652 1653 165.2 330.40000000000003 1652 1974-07-11 2024-10-11 00:27:32.000 1974-07-11 2024-10-11 00:27:32 +1653 1653 1654 165.3 330.6 1653 1974-07-12 2024-10-11 00:27:33.000 1974-07-12 2024-10-11 00:27:33 +1654 1654 1655 165.4 330.8 1654 1974-07-13 2024-10-11 00:27:34.000 1974-07-13 2024-10-11 00:27:34 +1656 1656 1657 165.6 331.20000000000005 1656 1974-07-15 2024-10-11 00:27:36.000 1974-07-15 2024-10-11 00:27:36 +1657 1657 1658 165.7 331.40000000000003 1657 1974-07-16 2024-10-11 00:27:37.000 1974-07-16 2024-10-11 00:27:37 +1658 1658 1659 165.8 331.6 1658 1974-07-17 2024-10-11 00:27:38.000 1974-07-17 2024-10-11 00:27:38 +1659 1659 1660 165.9 331.8 1659 1974-07-18 2024-10-11 00:27:39.000 1974-07-18 2024-10-11 00:27:39 +1661 1661 1662 166.1 332.20000000000005 1661 1974-07-20 2024-10-11 00:27:41.000 1974-07-20 2024-10-11 00:27:41 +1662 1662 1663 166.2 332.40000000000003 1662 1974-07-21 2024-10-11 00:27:42.000 1974-07-21 2024-10-11 00:27:42 +1663 1663 1664 166.3 332.6 1663 1974-07-22 2024-10-11 00:27:43.000 1974-07-22 2024-10-11 00:27:43 +1664 1664 1665 166.4 332.8 1664 1974-07-23 2024-10-11 00:27:44.000 1974-07-23 2024-10-11 00:27:44 +1666 1666 1667 166.6 333.20000000000005 1666 1974-07-25 2024-10-11 00:27:46.000 1974-07-25 2024-10-11 00:27:46 +1667 1667 1668 166.7 333.40000000000003 1667 1974-07-26 2024-10-11 00:27:47.000 1974-07-26 2024-10-11 00:27:47 +1668 1668 1669 166.8 333.6 1668 1974-07-27 2024-10-11 00:27:48.000 1974-07-27 2024-10-11 00:27:48 +1669 1669 1670 166.9 333.8 1669 1974-07-28 2024-10-11 00:27:49.000 1974-07-28 2024-10-11 00:27:49 +1671 1671 1672 167.1 334.20000000000005 1671 1974-07-30 2024-10-11 00:27:51.000 1974-07-30 2024-10-11 00:27:51 +1672 1672 1673 167.2 334.40000000000003 1672 1974-07-31 2024-10-11 00:27:52.000 1974-07-31 2024-10-11 00:27:52 +1673 1673 1674 167.3 334.6 1673 1974-08-01 2024-10-11 00:27:53.000 1974-08-01 2024-10-11 00:27:53 +1674 1674 1675 167.4 334.8 1674 1974-08-02 2024-10-11 00:27:54.000 1974-08-02 2024-10-11 00:27:54 +1676 1676 1677 167.6 335.20000000000005 1676 1974-08-04 2024-10-11 00:27:56.000 1974-08-04 2024-10-11 00:27:56 +1677 1677 1678 167.7 335.40000000000003 1677 1974-08-05 2024-10-11 00:27:57.000 1974-08-05 2024-10-11 00:27:57 +1678 1678 1679 167.8 335.6 1678 1974-08-06 2024-10-11 00:27:58.000 1974-08-06 2024-10-11 00:27:58 +1679 1679 1680 167.9 335.8 1679 1974-08-07 2024-10-11 00:27:59.000 1974-08-07 2024-10-11 00:27:59 +1681 1681 1682 168.1 336.20000000000005 1681 1974-08-09 2024-10-11 00:28:01.000 1974-08-09 2024-10-11 00:28:01 +1682 1682 1683 168.2 336.40000000000003 1682 1974-08-10 2024-10-11 00:28:02.000 1974-08-10 2024-10-11 00:28:02 +1683 1683 1684 168.3 336.6 1683 1974-08-11 2024-10-11 00:28:03.000 1974-08-11 2024-10-11 00:28:03 +1684 1684 1685 168.4 336.8 1684 1974-08-12 2024-10-11 00:28:04.000 1974-08-12 2024-10-11 00:28:04 +1686 1686 1687 168.6 337.20000000000005 1686 1974-08-14 2024-10-11 00:28:06.000 1974-08-14 2024-10-11 00:28:06 +1687 1687 1688 168.7 337.40000000000003 1687 1974-08-15 2024-10-11 00:28:07.000 1974-08-15 2024-10-11 00:28:07 +1688 1688 1689 168.8 337.6 1688 1974-08-16 2024-10-11 00:28:08.000 1974-08-16 2024-10-11 00:28:08 +1689 1689 1690 168.9 337.8 1689 1974-08-17 2024-10-11 00:28:09.000 1974-08-17 2024-10-11 00:28:09 +1691 1691 1692 169.1 338.20000000000005 1691 1974-08-19 2024-10-11 00:28:11.000 1974-08-19 2024-10-11 00:28:11 +1692 1692 1693 169.2 338.40000000000003 1692 1974-08-20 2024-10-11 00:28:12.000 1974-08-20 2024-10-11 00:28:12 +1693 1693 1694 169.3 338.6 1693 1974-08-21 2024-10-11 00:28:13.000 1974-08-21 2024-10-11 00:28:13 +1694 1694 1695 169.4 338.8 1694 1974-08-22 2024-10-11 00:28:14.000 1974-08-22 2024-10-11 00:28:14 +1696 1696 1697 169.6 339.20000000000005 1696 1974-08-24 2024-10-11 00:28:16.000 1974-08-24 2024-10-11 00:28:16 +1697 1697 1698 169.7 339.40000000000003 1697 1974-08-25 2024-10-11 00:28:17.000 1974-08-25 2024-10-11 00:28:17 +1698 1698 1699 169.8 339.6 1698 1974-08-26 2024-10-11 00:28:18.000 1974-08-26 2024-10-11 00:28:18 +1699 1699 1700 169.9 339.8 1699 1974-08-27 2024-10-11 00:28:19.000 1974-08-27 2024-10-11 00:28:19 +1701 1701 1702 170.1 340.20000000000005 1701 1974-08-29 2024-10-11 00:28:21.000 1974-08-29 2024-10-11 00:28:21 +1702 1702 1703 170.2 340.40000000000003 1702 1974-08-30 2024-10-11 00:28:22.000 1974-08-30 2024-10-11 00:28:22 +1703 1703 1704 170.3 340.6 1703 1974-08-31 2024-10-11 00:28:23.000 1974-08-31 2024-10-11 00:28:23 +1704 1704 1705 170.4 340.8 1704 1974-09-01 2024-10-11 00:28:24.000 1974-09-01 2024-10-11 00:28:24 +1706 1706 1707 170.6 341.20000000000005 1706 1974-09-03 2024-10-11 00:28:26.000 1974-09-03 2024-10-11 00:28:26 +1707 1707 1708 170.7 341.40000000000003 1707 1974-09-04 2024-10-11 00:28:27.000 1974-09-04 2024-10-11 00:28:27 +1708 1708 1709 170.8 341.6 1708 1974-09-05 2024-10-11 00:28:28.000 1974-09-05 2024-10-11 00:28:28 +1709 1709 1710 170.9 341.8 1709 1974-09-06 2024-10-11 00:28:29.000 1974-09-06 2024-10-11 00:28:29 +1711 1711 1712 171.1 342.20000000000005 1711 1974-09-08 2024-10-11 00:28:31.000 1974-09-08 2024-10-11 00:28:31 +1712 1712 1713 171.2 342.40000000000003 1712 1974-09-09 2024-10-11 00:28:32.000 1974-09-09 2024-10-11 00:28:32 +1713 1713 1714 171.3 342.6 1713 1974-09-10 2024-10-11 00:28:33.000 1974-09-10 2024-10-11 00:28:33 +1714 1714 1715 171.4 342.8 1714 1974-09-11 2024-10-11 00:28:34.000 1974-09-11 2024-10-11 00:28:34 +1716 1716 1717 171.6 343.20000000000005 1716 1974-09-13 2024-10-11 00:28:36.000 1974-09-13 2024-10-11 00:28:36 +1717 1717 1718 171.7 343.40000000000003 1717 1974-09-14 2024-10-11 00:28:37.000 1974-09-14 2024-10-11 00:28:37 +1718 1718 1719 171.8 343.6 1718 1974-09-15 2024-10-11 00:28:38.000 1974-09-15 2024-10-11 00:28:38 +1719 1719 1720 171.9 343.8 1719 1974-09-16 2024-10-11 00:28:39.000 1974-09-16 2024-10-11 00:28:39 +1721 1721 1722 172.1 344.20000000000005 1721 1974-09-18 2024-10-11 00:28:41.000 1974-09-18 2024-10-11 00:28:41 +1722 1722 1723 172.2 344.40000000000003 1722 1974-09-19 2024-10-11 00:28:42.000 1974-09-19 2024-10-11 00:28:42 +1723 1723 1724 172.3 344.6 1723 1974-09-20 2024-10-11 00:28:43.000 1974-09-20 2024-10-11 00:28:43 +1724 1724 1725 172.4 344.8 1724 1974-09-21 2024-10-11 00:28:44.000 1974-09-21 2024-10-11 00:28:44 +1726 1726 1727 172.6 345.20000000000005 1726 1974-09-23 2024-10-11 00:28:46.000 1974-09-23 2024-10-11 00:28:46 +1727 1727 1728 172.7 345.40000000000003 1727 1974-09-24 2024-10-11 00:28:47.000 1974-09-24 2024-10-11 00:28:47 +1728 1728 1729 172.8 345.6 1728 1974-09-25 2024-10-11 00:28:48.000 1974-09-25 2024-10-11 00:28:48 +1729 1729 1730 172.9 345.8 1729 1974-09-26 2024-10-11 00:28:49.000 1974-09-26 2024-10-11 00:28:49 +1731 1731 1732 173.1 346.20000000000005 1731 1974-09-28 2024-10-11 00:28:51.000 1974-09-28 2024-10-11 00:28:51 +1732 1732 1733 173.2 346.40000000000003 1732 1974-09-29 2024-10-11 00:28:52.000 1974-09-29 2024-10-11 00:28:52 +1733 1733 1734 173.3 346.6 1733 1974-09-30 2024-10-11 00:28:53.000 1974-09-30 2024-10-11 00:28:53 +1734 1734 1735 173.4 346.8 1734 1974-10-01 2024-10-11 00:28:54.000 1974-10-01 2024-10-11 00:28:54 +1736 1736 1737 173.6 347.20000000000005 1736 1974-10-03 2024-10-11 00:28:56.000 1974-10-03 2024-10-11 00:28:56 +1737 1737 1738 173.7 347.40000000000003 1737 1974-10-04 2024-10-11 00:28:57.000 1974-10-04 2024-10-11 00:28:57 +1738 1738 1739 173.8 347.6 1738 1974-10-05 2024-10-11 00:28:58.000 1974-10-05 2024-10-11 00:28:58 +1739 1739 1740 173.9 347.8 1739 1974-10-06 2024-10-11 00:28:59.000 1974-10-06 2024-10-11 00:28:59 +1741 1741 1742 174.1 348.20000000000005 1741 1974-10-08 2024-10-11 00:29:01.000 1974-10-08 2024-10-11 00:29:01 +1742 1742 1743 174.2 348.40000000000003 1742 1974-10-09 2024-10-11 00:29:02.000 1974-10-09 2024-10-11 00:29:02 +1743 1743 1744 174.3 348.6 1743 1974-10-10 2024-10-11 00:29:03.000 1974-10-10 2024-10-11 00:29:03 +1744 1744 1745 174.4 348.8 1744 1974-10-11 2024-10-11 00:29:04.000 1974-10-11 2024-10-11 00:29:04 +1746 1746 1747 174.6 349.20000000000005 1746 1974-10-13 2024-10-11 00:29:06.000 1974-10-13 2024-10-11 00:29:06 +1747 1747 1748 174.7 349.40000000000003 1747 1974-10-14 2024-10-11 00:29:07.000 1974-10-14 2024-10-11 00:29:07 +1748 1748 1749 174.8 349.6 1748 1974-10-15 2024-10-11 00:29:08.000 1974-10-15 2024-10-11 00:29:08 +1749 1749 1750 174.9 349.8 1749 1974-10-16 2024-10-11 00:29:09.000 1974-10-16 2024-10-11 00:29:09 +1751 1751 1752 175.1 350.20000000000005 1751 1974-10-18 2024-10-11 00:29:11.000 1974-10-18 2024-10-11 00:29:11 +1752 1752 1753 175.2 350.40000000000003 1752 1974-10-19 2024-10-11 00:29:12.000 1974-10-19 2024-10-11 00:29:12 +1753 1753 1754 175.3 350.6 1753 1974-10-20 2024-10-11 00:29:13.000 1974-10-20 2024-10-11 00:29:13 +1754 1754 1755 175.4 350.8 1754 1974-10-21 2024-10-11 00:29:14.000 1974-10-21 2024-10-11 00:29:14 +1756 1756 1757 175.6 351.20000000000005 1756 1974-10-23 2024-10-11 00:29:16.000 1974-10-23 2024-10-11 00:29:16 +1757 1757 1758 175.7 351.40000000000003 1757 1974-10-24 2024-10-11 00:29:17.000 1974-10-24 2024-10-11 00:29:17 +1758 1758 1759 175.8 351.6 1758 1974-10-25 2024-10-11 00:29:18.000 1974-10-25 2024-10-11 00:29:18 +1759 1759 1760 175.9 351.8 1759 1974-10-26 2024-10-11 00:29:19.000 1974-10-26 2024-10-11 00:29:19 +1761 1761 1762 176.1 352.20000000000005 1761 1974-10-28 2024-10-11 00:29:21.000 1974-10-28 2024-10-11 00:29:21 +1762 1762 1763 176.2 352.40000000000003 1762 1974-10-29 2024-10-11 00:29:22.000 1974-10-29 2024-10-11 00:29:22 +1763 1763 1764 176.3 352.6 1763 1974-10-30 2024-10-11 00:29:23.000 1974-10-30 2024-10-11 00:29:23 +1764 1764 1765 176.4 352.8 1764 1974-10-31 2024-10-11 00:29:24.000 1974-10-31 2024-10-11 00:29:24 +1766 1766 1767 176.6 353.20000000000005 1766 1974-11-02 2024-10-11 00:29:26.000 1974-11-02 2024-10-11 00:29:26 +1767 1767 1768 176.7 353.40000000000003 1767 1974-11-03 2024-10-11 00:29:27.000 1974-11-03 2024-10-11 00:29:27 +1768 1768 1769 176.8 353.6 1768 1974-11-04 2024-10-11 00:29:28.000 1974-11-04 2024-10-11 00:29:28 +1769 1769 1770 176.9 353.8 1769 1974-11-05 2024-10-11 00:29:29.000 1974-11-05 2024-10-11 00:29:29 +1771 1771 1772 177.1 354.20000000000005 1771 1974-11-07 2024-10-11 00:29:31.000 1974-11-07 2024-10-11 00:29:31 +1772 1772 1773 177.2 354.40000000000003 1772 1974-11-08 2024-10-11 00:29:32.000 1974-11-08 2024-10-11 00:29:32 +1773 1773 1774 177.3 354.6 1773 1974-11-09 2024-10-11 00:29:33.000 1974-11-09 2024-10-11 00:29:33 +1774 1774 1775 177.4 354.8 1774 1974-11-10 2024-10-11 00:29:34.000 1974-11-10 2024-10-11 00:29:34 +1776 1776 1777 177.6 355.20000000000005 1776 1974-11-12 2024-10-11 00:29:36.000 1974-11-12 2024-10-11 00:29:36 +1777 1777 1778 177.7 355.40000000000003 1777 1974-11-13 2024-10-11 00:29:37.000 1974-11-13 2024-10-11 00:29:37 +1778 1778 1779 177.8 355.6 1778 1974-11-14 2024-10-11 00:29:38.000 1974-11-14 2024-10-11 00:29:38 +1779 1779 1780 177.9 355.8 1779 1974-11-15 2024-10-11 00:29:39.000 1974-11-15 2024-10-11 00:29:39 +1781 1781 1782 178.1 356.20000000000005 1781 1974-11-17 2024-10-11 00:29:41.000 1974-11-17 2024-10-11 00:29:41 +1782 1782 1783 178.2 356.40000000000003 1782 1974-11-18 2024-10-11 00:29:42.000 1974-11-18 2024-10-11 00:29:42 +1783 1783 1784 178.3 356.6 1783 1974-11-19 2024-10-11 00:29:43.000 1974-11-19 2024-10-11 00:29:43 +1784 1784 1785 178.4 356.8 1784 1974-11-20 2024-10-11 00:29:44.000 1974-11-20 2024-10-11 00:29:44 +1786 1786 1787 178.6 357.20000000000005 1786 1974-11-22 2024-10-11 00:29:46.000 1974-11-22 2024-10-11 00:29:46 +1787 1787 1788 178.7 357.40000000000003 1787 1974-11-23 2024-10-11 00:29:47.000 1974-11-23 2024-10-11 00:29:47 +1788 1788 1789 178.8 357.6 1788 1974-11-24 2024-10-11 00:29:48.000 1974-11-24 2024-10-11 00:29:48 +1789 1789 1790 178.9 357.8 1789 1974-11-25 2024-10-11 00:29:49.000 1974-11-25 2024-10-11 00:29:49 +1791 1791 1792 179.1 358.20000000000005 1791 1974-11-27 2024-10-11 00:29:51.000 1974-11-27 2024-10-11 00:29:51 +1792 1792 1793 179.2 358.40000000000003 1792 1974-11-28 2024-10-11 00:29:52.000 1974-11-28 2024-10-11 00:29:52 +1793 1793 1794 179.3 358.6 1793 1974-11-29 2024-10-11 00:29:53.000 1974-11-29 2024-10-11 00:29:53 +1794 1794 1795 179.4 358.8 1794 1974-11-30 2024-10-11 00:29:54.000 1974-11-30 2024-10-11 00:29:54 +1796 1796 1797 179.6 359.20000000000005 1796 1974-12-02 2024-10-11 00:29:56.000 1974-12-02 2024-10-11 00:29:56 +1797 1797 1798 179.7 359.40000000000003 1797 1974-12-03 2024-10-11 00:29:57.000 1974-12-03 2024-10-11 00:29:57 +1798 1798 1799 179.8 359.6 1798 1974-12-04 2024-10-11 00:29:58.000 1974-12-04 2024-10-11 00:29:58 +1799 1799 1800 179.9 359.8 1799 1974-12-05 2024-10-11 00:29:59.000 1974-12-05 2024-10-11 00:29:59 +1801 1801 1802 180.1 360.20000000000005 1801 1974-12-07 2024-10-11 00:30:01.000 1974-12-07 2024-10-11 00:30:01 +1802 1802 1803 180.2 360.40000000000003 1802 1974-12-08 2024-10-11 00:30:02.000 1974-12-08 2024-10-11 00:30:02 +1803 1803 1804 180.3 360.6 1803 1974-12-09 2024-10-11 00:30:03.000 1974-12-09 2024-10-11 00:30:03 +1804 1804 1805 180.4 360.8 1804 1974-12-10 2024-10-11 00:30:04.000 1974-12-10 2024-10-11 00:30:04 +1806 1806 1807 180.6 361.20000000000005 1806 1974-12-12 2024-10-11 00:30:06.000 1974-12-12 2024-10-11 00:30:06 +1807 1807 1808 180.7 361.40000000000003 1807 1974-12-13 2024-10-11 00:30:07.000 1974-12-13 2024-10-11 00:30:07 +1808 1808 1809 180.8 361.6 1808 1974-12-14 2024-10-11 00:30:08.000 1974-12-14 2024-10-11 00:30:08 +1809 1809 1810 180.9 361.8 1809 1974-12-15 2024-10-11 00:30:09.000 1974-12-15 2024-10-11 00:30:09 +1811 1811 1812 181.1 362.20000000000005 1811 1974-12-17 2024-10-11 00:30:11.000 1974-12-17 2024-10-11 00:30:11 +1812 1812 1813 181.2 362.40000000000003 1812 1974-12-18 2024-10-11 00:30:12.000 1974-12-18 2024-10-11 00:30:12 +1813 1813 1814 181.3 362.6 1813 1974-12-19 2024-10-11 00:30:13.000 1974-12-19 2024-10-11 00:30:13 +1814 1814 1815 181.4 362.8 1814 1974-12-20 2024-10-11 00:30:14.000 1974-12-20 2024-10-11 00:30:14 +1816 1816 1817 181.6 363.20000000000005 1816 1974-12-22 2024-10-11 00:30:16.000 1974-12-22 2024-10-11 00:30:16 +1817 1817 1818 181.7 363.40000000000003 1817 1974-12-23 2024-10-11 00:30:17.000 1974-12-23 2024-10-11 00:30:17 +1818 1818 1819 181.8 363.6 1818 1974-12-24 2024-10-11 00:30:18.000 1974-12-24 2024-10-11 00:30:18 +1819 1819 1820 181.9 363.8 1819 1974-12-25 2024-10-11 00:30:19.000 1974-12-25 2024-10-11 00:30:19 +1821 1821 1822 182.1 364.20000000000005 1821 1974-12-27 2024-10-11 00:30:21.000 1974-12-27 2024-10-11 00:30:21 +1822 1822 1823 182.2 364.40000000000003 1822 1974-12-28 2024-10-11 00:30:22.000 1974-12-28 2024-10-11 00:30:22 +1823 1823 1824 182.3 364.6 1823 1974-12-29 2024-10-11 00:30:23.000 1974-12-29 2024-10-11 00:30:23 +1824 1824 1825 182.4 364.8 1824 1974-12-30 2024-10-11 00:30:24.000 1974-12-30 2024-10-11 00:30:24 +1826 1826 1827 182.6 365.20000000000005 1826 1975-01-01 2024-10-11 00:30:26.000 1975-01-01 2024-10-11 00:30:26 +1827 1827 1828 182.7 365.40000000000003 1827 1975-01-02 2024-10-11 00:30:27.000 1975-01-02 2024-10-11 00:30:27 +1828 1828 1829 182.8 365.6 1828 1975-01-03 2024-10-11 00:30:28.000 1975-01-03 2024-10-11 00:30:28 +1829 1829 1830 182.9 365.8 1829 1975-01-04 2024-10-11 00:30:29.000 1975-01-04 2024-10-11 00:30:29 +1831 1831 1832 183.1 366.20000000000005 1831 1975-01-06 2024-10-11 00:30:31.000 1975-01-06 2024-10-11 00:30:31 +1832 1832 1833 183.2 366.40000000000003 1832 1975-01-07 2024-10-11 00:30:32.000 1975-01-07 2024-10-11 00:30:32 +1833 1833 1834 183.3 366.6 1833 1975-01-08 2024-10-11 00:30:33.000 1975-01-08 2024-10-11 00:30:33 +1834 1834 1835 183.4 366.8 1834 1975-01-09 2024-10-11 00:30:34.000 1975-01-09 2024-10-11 00:30:34 +1836 1836 1837 183.6 367.20000000000005 1836 1975-01-11 2024-10-11 00:30:36.000 1975-01-11 2024-10-11 00:30:36 +1837 1837 1838 183.7 367.40000000000003 1837 1975-01-12 2024-10-11 00:30:37.000 1975-01-12 2024-10-11 00:30:37 +1838 1838 1839 183.8 367.6 1838 1975-01-13 2024-10-11 00:30:38.000 1975-01-13 2024-10-11 00:30:38 +1839 1839 1840 183.9 367.8 1839 1975-01-14 2024-10-11 00:30:39.000 1975-01-14 2024-10-11 00:30:39 +1841 1841 1842 184.1 368.20000000000005 1841 1975-01-16 2024-10-11 00:30:41.000 1975-01-16 2024-10-11 00:30:41 +1842 1842 1843 184.2 368.40000000000003 1842 1975-01-17 2024-10-11 00:30:42.000 1975-01-17 2024-10-11 00:30:42 +1843 1843 1844 184.3 368.6 1843 1975-01-18 2024-10-11 00:30:43.000 1975-01-18 2024-10-11 00:30:43 +1844 1844 1845 184.4 368.8 1844 1975-01-19 2024-10-11 00:30:44.000 1975-01-19 2024-10-11 00:30:44 +1846 1846 1847 184.6 369.20000000000005 1846 1975-01-21 2024-10-11 00:30:46.000 1975-01-21 2024-10-11 00:30:46 +1847 1847 1848 184.7 369.40000000000003 1847 1975-01-22 2024-10-11 00:30:47.000 1975-01-22 2024-10-11 00:30:47 +1848 1848 1849 184.8 369.6 1848 1975-01-23 2024-10-11 00:30:48.000 1975-01-23 2024-10-11 00:30:48 +1849 1849 1850 184.9 369.8 1849 1975-01-24 2024-10-11 00:30:49.000 1975-01-24 2024-10-11 00:30:49 +1851 1851 1852 185.1 370.20000000000005 1851 1975-01-26 2024-10-11 00:30:51.000 1975-01-26 2024-10-11 00:30:51 +1852 1852 1853 185.2 370.40000000000003 1852 1975-01-27 2024-10-11 00:30:52.000 1975-01-27 2024-10-11 00:30:52 +1853 1853 1854 185.3 370.6 1853 1975-01-28 2024-10-11 00:30:53.000 1975-01-28 2024-10-11 00:30:53 +1854 1854 1855 185.4 370.8 1854 1975-01-29 2024-10-11 00:30:54.000 1975-01-29 2024-10-11 00:30:54 +1856 1856 1857 185.6 371.20000000000005 1856 1975-01-31 2024-10-11 00:30:56.000 1975-01-31 2024-10-11 00:30:56 +1857 1857 1858 185.7 371.40000000000003 1857 1975-02-01 2024-10-11 00:30:57.000 1975-02-01 2024-10-11 00:30:57 +1858 1858 1859 185.8 371.6 1858 1975-02-02 2024-10-11 00:30:58.000 1975-02-02 2024-10-11 00:30:58 +1859 1859 1860 185.9 371.8 1859 1975-02-03 2024-10-11 00:30:59.000 1975-02-03 2024-10-11 00:30:59 +1861 1861 1862 186.1 372.20000000000005 1861 1975-02-05 2024-10-11 00:31:01.000 1975-02-05 2024-10-11 00:31:01 +1862 1862 1863 186.2 372.40000000000003 1862 1975-02-06 2024-10-11 00:31:02.000 1975-02-06 2024-10-11 00:31:02 +1863 1863 1864 186.3 372.6 1863 1975-02-07 2024-10-11 00:31:03.000 1975-02-07 2024-10-11 00:31:03 +1864 1864 1865 186.4 372.8 1864 1975-02-08 2024-10-11 00:31:04.000 1975-02-08 2024-10-11 00:31:04 +1866 1866 1867 186.6 373.20000000000005 1866 1975-02-10 2024-10-11 00:31:06.000 1975-02-10 2024-10-11 00:31:06 +1867 1867 1868 186.7 373.40000000000003 1867 1975-02-11 2024-10-11 00:31:07.000 1975-02-11 2024-10-11 00:31:07 +1868 1868 1869 186.8 373.6 1868 1975-02-12 2024-10-11 00:31:08.000 1975-02-12 2024-10-11 00:31:08 +1869 1869 1870 186.9 373.8 1869 1975-02-13 2024-10-11 00:31:09.000 1975-02-13 2024-10-11 00:31:09 +1871 1871 1872 187.1 374.20000000000005 1871 1975-02-15 2024-10-11 00:31:11.000 1975-02-15 2024-10-11 00:31:11 +1872 1872 1873 187.2 374.40000000000003 1872 1975-02-16 2024-10-11 00:31:12.000 1975-02-16 2024-10-11 00:31:12 +1873 1873 1874 187.3 374.6 1873 1975-02-17 2024-10-11 00:31:13.000 1975-02-17 2024-10-11 00:31:13 +1874 1874 1875 187.4 374.8 1874 1975-02-18 2024-10-11 00:31:14.000 1975-02-18 2024-10-11 00:31:14 +1876 1876 1877 187.6 375.20000000000005 1876 1975-02-20 2024-10-11 00:31:16.000 1975-02-20 2024-10-11 00:31:16 +1877 1877 1878 187.7 375.40000000000003 1877 1975-02-21 2024-10-11 00:31:17.000 1975-02-21 2024-10-11 00:31:17 +1878 1878 1879 187.8 375.6 1878 1975-02-22 2024-10-11 00:31:18.000 1975-02-22 2024-10-11 00:31:18 +1879 1879 1880 187.9 375.8 1879 1975-02-23 2024-10-11 00:31:19.000 1975-02-23 2024-10-11 00:31:19 +1881 1881 1882 188.1 376.20000000000005 1881 1975-02-25 2024-10-11 00:31:21.000 1975-02-25 2024-10-11 00:31:21 +1882 1882 1883 188.2 376.40000000000003 1882 1975-02-26 2024-10-11 00:31:22.000 1975-02-26 2024-10-11 00:31:22 +1883 1883 1884 188.3 376.6 1883 1975-02-27 2024-10-11 00:31:23.000 1975-02-27 2024-10-11 00:31:23 +1884 1884 1885 188.4 376.8 1884 1975-02-28 2024-10-11 00:31:24.000 1975-02-28 2024-10-11 00:31:24 +1886 1886 1887 188.6 377.20000000000005 1886 1975-03-02 2024-10-11 00:31:26.000 1975-03-02 2024-10-11 00:31:26 +1887 1887 1888 188.7 377.40000000000003 1887 1975-03-03 2024-10-11 00:31:27.000 1975-03-03 2024-10-11 00:31:27 +1888 1888 1889 188.8 377.6 1888 1975-03-04 2024-10-11 00:31:28.000 1975-03-04 2024-10-11 00:31:28 +1889 1889 1890 188.9 377.8 1889 1975-03-05 2024-10-11 00:31:29.000 1975-03-05 2024-10-11 00:31:29 +1891 1891 1892 189.1 378.20000000000005 1891 1975-03-07 2024-10-11 00:31:31.000 1975-03-07 2024-10-11 00:31:31 +1892 1892 1893 189.2 378.40000000000003 1892 1975-03-08 2024-10-11 00:31:32.000 1975-03-08 2024-10-11 00:31:32 +1893 1893 1894 189.3 378.6 1893 1975-03-09 2024-10-11 00:31:33.000 1975-03-09 2024-10-11 00:31:33 +1894 1894 1895 189.4 378.8 1894 1975-03-10 2024-10-11 00:31:34.000 1975-03-10 2024-10-11 00:31:34 +1896 1896 1897 189.6 379.20000000000005 1896 1975-03-12 2024-10-11 00:31:36.000 1975-03-12 2024-10-11 00:31:36 +1897 1897 1898 189.7 379.40000000000003 1897 1975-03-13 2024-10-11 00:31:37.000 1975-03-13 2024-10-11 00:31:37 +1898 1898 1899 189.8 379.6 1898 1975-03-14 2024-10-11 00:31:38.000 1975-03-14 2024-10-11 00:31:38 +1899 1899 1900 189.9 379.8 1899 1975-03-15 2024-10-11 00:31:39.000 1975-03-15 2024-10-11 00:31:39 +1901 1901 1902 190.1 380.20000000000005 1901 1975-03-17 2024-10-11 00:31:41.000 1975-03-17 2024-10-11 00:31:41 +1902 1902 1903 190.2 380.40000000000003 1902 1975-03-18 2024-10-11 00:31:42.000 1975-03-18 2024-10-11 00:31:42 +1903 1903 1904 190.3 380.6 1903 1975-03-19 2024-10-11 00:31:43.000 1975-03-19 2024-10-11 00:31:43 +1904 1904 1905 190.4 380.8 1904 1975-03-20 2024-10-11 00:31:44.000 1975-03-20 2024-10-11 00:31:44 +1906 1906 1907 190.6 381.20000000000005 1906 1975-03-22 2024-10-11 00:31:46.000 1975-03-22 2024-10-11 00:31:46 +1907 1907 1908 190.7 381.40000000000003 1907 1975-03-23 2024-10-11 00:31:47.000 1975-03-23 2024-10-11 00:31:47 +1908 1908 1909 190.8 381.6 1908 1975-03-24 2024-10-11 00:31:48.000 1975-03-24 2024-10-11 00:31:48 +1909 1909 1910 190.9 381.8 1909 1975-03-25 2024-10-11 00:31:49.000 1975-03-25 2024-10-11 00:31:49 +1911 1911 1912 191.1 382.20000000000005 1911 1975-03-27 2024-10-11 00:31:51.000 1975-03-27 2024-10-11 00:31:51 +1912 1912 1913 191.2 382.40000000000003 1912 1975-03-28 2024-10-11 00:31:52.000 1975-03-28 2024-10-11 00:31:52 +1913 1913 1914 191.3 382.6 1913 1975-03-29 2024-10-11 00:31:53.000 1975-03-29 2024-10-11 00:31:53 +1914 1914 1915 191.4 382.8 1914 1975-03-30 2024-10-11 00:31:54.000 1975-03-30 2024-10-11 00:31:54 +1916 1916 1917 191.6 383.20000000000005 1916 1975-04-01 2024-10-11 00:31:56.000 1975-04-01 2024-10-11 00:31:56 +1917 1917 1918 191.7 383.40000000000003 1917 1975-04-02 2024-10-11 00:31:57.000 1975-04-02 2024-10-11 00:31:57 +1918 1918 1919 191.8 383.6 1918 1975-04-03 2024-10-11 00:31:58.000 1975-04-03 2024-10-11 00:31:58 +1919 1919 1920 191.9 383.8 1919 1975-04-04 2024-10-11 00:31:59.000 1975-04-04 2024-10-11 00:31:59 +1921 1921 1922 192.1 384.20000000000005 1921 1975-04-06 2024-10-11 00:32:01.000 1975-04-06 2024-10-11 00:32:01 +1922 1922 1923 192.2 384.40000000000003 1922 1975-04-07 2024-10-11 00:32:02.000 1975-04-07 2024-10-11 00:32:02 +1923 1923 1924 192.3 384.6 1923 1975-04-08 2024-10-11 00:32:03.000 1975-04-08 2024-10-11 00:32:03 +1924 1924 1925 192.4 384.8 1924 1975-04-09 2024-10-11 00:32:04.000 1975-04-09 2024-10-11 00:32:04 +1926 1926 1927 192.6 385.20000000000005 1926 1975-04-11 2024-10-11 00:32:06.000 1975-04-11 2024-10-11 00:32:06 +1927 1927 1928 192.7 385.40000000000003 1927 1975-04-12 2024-10-11 00:32:07.000 1975-04-12 2024-10-11 00:32:07 +1928 1928 1929 192.8 385.6 1928 1975-04-13 2024-10-11 00:32:08.000 1975-04-13 2024-10-11 00:32:08 +1929 1929 1930 192.9 385.8 1929 1975-04-14 2024-10-11 00:32:09.000 1975-04-14 2024-10-11 00:32:09 +1931 1931 1932 193.1 386.20000000000005 1931 1975-04-16 2024-10-11 00:32:11.000 1975-04-16 2024-10-11 00:32:11 +1932 1932 1933 193.2 386.40000000000003 1932 1975-04-17 2024-10-11 00:32:12.000 1975-04-17 2024-10-11 00:32:12 +1933 1933 1934 193.3 386.6 1933 1975-04-18 2024-10-11 00:32:13.000 1975-04-18 2024-10-11 00:32:13 +1934 1934 1935 193.4 386.8 1934 1975-04-19 2024-10-11 00:32:14.000 1975-04-19 2024-10-11 00:32:14 +1936 1936 1937 193.6 387.20000000000005 1936 1975-04-21 2024-10-11 00:32:16.000 1975-04-21 2024-10-11 00:32:16 +1937 1937 1938 193.7 387.40000000000003 1937 1975-04-22 2024-10-11 00:32:17.000 1975-04-22 2024-10-11 00:32:17 +1938 1938 1939 193.8 387.6 1938 1975-04-23 2024-10-11 00:32:18.000 1975-04-23 2024-10-11 00:32:18 +1939 1939 1940 193.9 387.8 1939 1975-04-24 2024-10-11 00:32:19.000 1975-04-24 2024-10-11 00:32:19 +1941 1941 1942 194.1 388.20000000000005 1941 1975-04-26 2024-10-11 00:32:21.000 1975-04-26 2024-10-11 00:32:21 +1942 1942 1943 194.2 388.40000000000003 1942 1975-04-27 2024-10-11 00:32:22.000 1975-04-27 2024-10-11 00:32:22 +1943 1943 1944 194.3 388.6 1943 1975-04-28 2024-10-11 00:32:23.000 1975-04-28 2024-10-11 00:32:23 +1944 1944 1945 194.4 388.8 1944 1975-04-29 2024-10-11 00:32:24.000 1975-04-29 2024-10-11 00:32:24 +1946 1946 1947 194.6 389.20000000000005 1946 1975-05-01 2024-10-11 00:32:26.000 1975-05-01 2024-10-11 00:32:26 +1947 1947 1948 194.7 389.40000000000003 1947 1975-05-02 2024-10-11 00:32:27.000 1975-05-02 2024-10-11 00:32:27 +1948 1948 1949 194.8 389.6 1948 1975-05-03 2024-10-11 00:32:28.000 1975-05-03 2024-10-11 00:32:28 +1949 1949 1950 194.9 389.8 1949 1975-05-04 2024-10-11 00:32:29.000 1975-05-04 2024-10-11 00:32:29 +1951 1951 1952 195.1 390.20000000000005 1951 1975-05-06 2024-10-11 00:32:31.000 1975-05-06 2024-10-11 00:32:31 +1952 1952 1953 195.2 390.40000000000003 1952 1975-05-07 2024-10-11 00:32:32.000 1975-05-07 2024-10-11 00:32:32 +1953 1953 1954 195.3 390.6 1953 1975-05-08 2024-10-11 00:32:33.000 1975-05-08 2024-10-11 00:32:33 +1954 1954 1955 195.4 390.8 1954 1975-05-09 2024-10-11 00:32:34.000 1975-05-09 2024-10-11 00:32:34 +1956 1956 1957 195.6 391.20000000000005 1956 1975-05-11 2024-10-11 00:32:36.000 1975-05-11 2024-10-11 00:32:36 +1957 1957 1958 195.7 391.40000000000003 1957 1975-05-12 2024-10-11 00:32:37.000 1975-05-12 2024-10-11 00:32:37 +1958 1958 1959 195.8 391.6 1958 1975-05-13 2024-10-11 00:32:38.000 1975-05-13 2024-10-11 00:32:38 +1959 1959 1960 195.9 391.8 1959 1975-05-14 2024-10-11 00:32:39.000 1975-05-14 2024-10-11 00:32:39 +1961 1961 1962 196.1 392.20000000000005 1961 1975-05-16 2024-10-11 00:32:41.000 1975-05-16 2024-10-11 00:32:41 +1962 1962 1963 196.2 392.40000000000003 1962 1975-05-17 2024-10-11 00:32:42.000 1975-05-17 2024-10-11 00:32:42 +1963 1963 1964 196.3 392.6 1963 1975-05-18 2024-10-11 00:32:43.000 1975-05-18 2024-10-11 00:32:43 +1964 1964 1965 196.4 392.8 1964 1975-05-19 2024-10-11 00:32:44.000 1975-05-19 2024-10-11 00:32:44 +1966 1966 1967 196.6 393.20000000000005 1966 1975-05-21 2024-10-11 00:32:46.000 1975-05-21 2024-10-11 00:32:46 +1967 1967 1968 196.7 393.40000000000003 1967 1975-05-22 2024-10-11 00:32:47.000 1975-05-22 2024-10-11 00:32:47 +1968 1968 1969 196.8 393.6 1968 1975-05-23 2024-10-11 00:32:48.000 1975-05-23 2024-10-11 00:32:48 +1969 1969 1970 196.9 393.8 1969 1975-05-24 2024-10-11 00:32:49.000 1975-05-24 2024-10-11 00:32:49 +1971 1971 1972 197.1 394.20000000000005 1971 1975-05-26 2024-10-11 00:32:51.000 1975-05-26 2024-10-11 00:32:51 +1972 1972 1973 197.2 394.40000000000003 1972 1975-05-27 2024-10-11 00:32:52.000 1975-05-27 2024-10-11 00:32:52 +1973 1973 1974 197.3 394.6 1973 1975-05-28 2024-10-11 00:32:53.000 1975-05-28 2024-10-11 00:32:53 +1974 1974 1975 197.4 394.8 1974 1975-05-29 2024-10-11 00:32:54.000 1975-05-29 2024-10-11 00:32:54 +1976 1976 1977 197.6 395.20000000000005 1976 1975-05-31 2024-10-11 00:32:56.000 1975-05-31 2024-10-11 00:32:56 +1977 1977 1978 197.7 395.40000000000003 1977 1975-06-01 2024-10-11 00:32:57.000 1975-06-01 2024-10-11 00:32:57 +1978 1978 1979 197.8 395.6 1978 1975-06-02 2024-10-11 00:32:58.000 1975-06-02 2024-10-11 00:32:58 +1979 1979 1980 197.9 395.8 1979 1975-06-03 2024-10-11 00:32:59.000 1975-06-03 2024-10-11 00:32:59 +1981 1981 1982 198.1 396.20000000000005 1981 1975-06-05 2024-10-11 00:33:01.000 1975-06-05 2024-10-11 00:33:01 +1982 1982 1983 198.2 396.40000000000003 1982 1975-06-06 2024-10-11 00:33:02.000 1975-06-06 2024-10-11 00:33:02 +1983 1983 1984 198.3 396.6 1983 1975-06-07 2024-10-11 00:33:03.000 1975-06-07 2024-10-11 00:33:03 +1984 1984 1985 198.4 396.8 1984 1975-06-08 2024-10-11 00:33:04.000 1975-06-08 2024-10-11 00:33:04 +1986 1986 1987 198.6 397.20000000000005 1986 1975-06-10 2024-10-11 00:33:06.000 1975-06-10 2024-10-11 00:33:06 +1987 1987 1988 198.7 397.40000000000003 1987 1975-06-11 2024-10-11 00:33:07.000 1975-06-11 2024-10-11 00:33:07 +1988 1988 1989 198.8 397.6 1988 1975-06-12 2024-10-11 00:33:08.000 1975-06-12 2024-10-11 00:33:08 +1989 1989 1990 198.9 397.8 1989 1975-06-13 2024-10-11 00:33:09.000 1975-06-13 2024-10-11 00:33:09 +1991 1991 1992 199.1 398.20000000000005 1991 1975-06-15 2024-10-11 00:33:11.000 1975-06-15 2024-10-11 00:33:11 +1992 1992 1993 199.2 398.40000000000003 1992 1975-06-16 2024-10-11 00:33:12.000 1975-06-16 2024-10-11 00:33:12 +1993 1993 1994 199.3 398.6 1993 1975-06-17 2024-10-11 00:33:13.000 1975-06-17 2024-10-11 00:33:13 +1994 1994 1995 199.4 398.8 1994 1975-06-18 2024-10-11 00:33:14.000 1975-06-18 2024-10-11 00:33:14 +1996 1996 1997 199.6 399.20000000000005 1996 1975-06-20 2024-10-11 00:33:16.000 1975-06-20 2024-10-11 00:33:16 +1997 1997 1998 199.7 399.40000000000003 1997 1975-06-21 2024-10-11 00:33:17.000 1975-06-21 2024-10-11 00:33:17 +1998 1998 1999 199.8 399.6 1998 1975-06-22 2024-10-11 00:33:18.000 1975-06-22 2024-10-11 00:33:18 +1999 1999 2000 199.9 399.8 1999 1975-06-23 2024-10-11 00:33:19.000 1975-06-23 2024-10-11 00:33:19 +2001 2001 2002 200.1 400.20000000000005 2001 1975-06-25 2024-10-11 00:33:21.000 1975-06-25 2024-10-11 00:33:21 +2002 2002 2003 200.2 400.40000000000003 2002 1975-06-26 2024-10-11 00:33:22.000 1975-06-26 2024-10-11 00:33:22 +2003 2003 2004 200.3 400.6 2003 1975-06-27 2024-10-11 00:33:23.000 1975-06-27 2024-10-11 00:33:23 +2004 2004 2005 200.4 400.8 2004 1975-06-28 2024-10-11 00:33:24.000 1975-06-28 2024-10-11 00:33:24 +2006 2006 2007 200.6 401.20000000000005 2006 1975-06-30 2024-10-11 00:33:26.000 1975-06-30 2024-10-11 00:33:26 +2007 2007 2008 200.7 401.40000000000003 2007 1975-07-01 2024-10-11 00:33:27.000 1975-07-01 2024-10-11 00:33:27 +2008 2008 2009 200.8 401.6 2008 1975-07-02 2024-10-11 00:33:28.000 1975-07-02 2024-10-11 00:33:28 +2009 2009 2010 200.9 401.8 2009 1975-07-03 2024-10-11 00:33:29.000 1975-07-03 2024-10-11 00:33:29 +2011 2011 2012 201.1 402.20000000000005 2011 1975-07-05 2024-10-11 00:33:31.000 1975-07-05 2024-10-11 00:33:31 +2012 2012 2013 201.2 402.40000000000003 2012 1975-07-06 2024-10-11 00:33:32.000 1975-07-06 2024-10-11 00:33:32 +2013 2013 2014 201.3 402.6 2013 1975-07-07 2024-10-11 00:33:33.000 1975-07-07 2024-10-11 00:33:33 +2014 2014 2015 201.4 402.8 2014 1975-07-08 2024-10-11 00:33:34.000 1975-07-08 2024-10-11 00:33:34 +2016 2016 2017 201.6 403.20000000000005 2016 1975-07-10 2024-10-11 00:33:36.000 1975-07-10 2024-10-11 00:33:36 +2017 2017 2018 201.7 403.40000000000003 2017 1975-07-11 2024-10-11 00:33:37.000 1975-07-11 2024-10-11 00:33:37 +2018 2018 2019 201.8 403.6 2018 1975-07-12 2024-10-11 00:33:38.000 1975-07-12 2024-10-11 00:33:38 +2019 2019 2020 201.9 403.8 2019 1975-07-13 2024-10-11 00:33:39.000 1975-07-13 2024-10-11 00:33:39 +2021 2021 2022 202.1 404.20000000000005 2021 1975-07-15 2024-10-11 00:33:41.000 1975-07-15 2024-10-11 00:33:41 +2022 2022 2023 202.2 404.40000000000003 2022 1975-07-16 2024-10-11 00:33:42.000 1975-07-16 2024-10-11 00:33:42 +2023 2023 2024 202.3 404.6 2023 1975-07-17 2024-10-11 00:33:43.000 1975-07-17 2024-10-11 00:33:43 +2024 2024 2025 202.4 404.8 2024 1975-07-18 2024-10-11 00:33:44.000 1975-07-18 2024-10-11 00:33:44 +2026 2026 2027 202.6 405.20000000000005 2026 1975-07-20 2024-10-11 00:33:46.000 1975-07-20 2024-10-11 00:33:46 +2027 2027 2028 202.7 405.40000000000003 2027 1975-07-21 2024-10-11 00:33:47.000 1975-07-21 2024-10-11 00:33:47 +2028 2028 2029 202.8 405.6 2028 1975-07-22 2024-10-11 00:33:48.000 1975-07-22 2024-10-11 00:33:48 +2029 2029 2030 202.9 405.8 2029 1975-07-23 2024-10-11 00:33:49.000 1975-07-23 2024-10-11 00:33:49 +2031 2031 2032 203.1 406.20000000000005 2031 1975-07-25 2024-10-11 00:33:51.000 1975-07-25 2024-10-11 00:33:51 +2032 2032 2033 203.2 406.40000000000003 2032 1975-07-26 2024-10-11 00:33:52.000 1975-07-26 2024-10-11 00:33:52 +2033 2033 2034 203.3 406.6 2033 1975-07-27 2024-10-11 00:33:53.000 1975-07-27 2024-10-11 00:33:53 +2034 2034 2035 203.4 406.8 2034 1975-07-28 2024-10-11 00:33:54.000 1975-07-28 2024-10-11 00:33:54 +2036 2036 2037 203.6 407.20000000000005 2036 1975-07-30 2024-10-11 00:33:56.000 1975-07-30 2024-10-11 00:33:56 +2037 2037 2038 203.7 407.40000000000003 2037 1975-07-31 2024-10-11 00:33:57.000 1975-07-31 2024-10-11 00:33:57 +2038 2038 2039 203.8 407.6 2038 1975-08-01 2024-10-11 00:33:58.000 1975-08-01 2024-10-11 00:33:58 +2039 2039 2040 203.9 407.8 2039 1975-08-02 2024-10-11 00:33:59.000 1975-08-02 2024-10-11 00:33:59 +2041 2041 2042 204.1 408.20000000000005 2041 1975-08-04 2024-10-11 00:34:01.000 1975-08-04 2024-10-11 00:34:01 +2042 2042 2043 204.2 408.40000000000003 2042 1975-08-05 2024-10-11 00:34:02.000 1975-08-05 2024-10-11 00:34:02 +2043 2043 2044 204.3 408.6 2043 1975-08-06 2024-10-11 00:34:03.000 1975-08-06 2024-10-11 00:34:03 +2044 2044 2045 204.4 408.8 2044 1975-08-07 2024-10-11 00:34:04.000 1975-08-07 2024-10-11 00:34:04 +2046 2046 2047 204.6 409.20000000000005 2046 1975-08-09 2024-10-11 00:34:06.000 1975-08-09 2024-10-11 00:34:06 +2047 2047 2048 204.7 409.40000000000003 2047 1975-08-10 2024-10-11 00:34:07.000 1975-08-10 2024-10-11 00:34:07 +2048 2048 2049 204.8 409.6 2048 1975-08-11 2024-10-11 00:34:08.000 1975-08-11 2024-10-11 00:34:08 +2049 2049 2050 204.9 409.8 2049 1975-08-12 2024-10-11 00:34:09.000 1975-08-12 2024-10-11 00:34:09 +2051 2051 2052 205.1 410.20000000000005 2051 1975-08-14 2024-10-11 00:34:11.000 1975-08-14 2024-10-11 00:34:11 +2052 2052 2053 205.2 410.40000000000003 2052 1975-08-15 2024-10-11 00:34:12.000 1975-08-15 2024-10-11 00:34:12 +2053 2053 2054 205.3 410.6 2053 1975-08-16 2024-10-11 00:34:13.000 1975-08-16 2024-10-11 00:34:13 +2054 2054 2055 205.4 410.8 2054 1975-08-17 2024-10-11 00:34:14.000 1975-08-17 2024-10-11 00:34:14 +2056 2056 2057 205.6 411.20000000000005 2056 1975-08-19 2024-10-11 00:34:16.000 1975-08-19 2024-10-11 00:34:16 +2057 2057 2058 205.7 411.40000000000003 2057 1975-08-20 2024-10-11 00:34:17.000 1975-08-20 2024-10-11 00:34:17 +2058 2058 2059 205.8 411.6 2058 1975-08-21 2024-10-11 00:34:18.000 1975-08-21 2024-10-11 00:34:18 +2059 2059 2060 205.9 411.8 2059 1975-08-22 2024-10-11 00:34:19.000 1975-08-22 2024-10-11 00:34:19 +2061 2061 2062 206.1 412.20000000000005 2061 1975-08-24 2024-10-11 00:34:21.000 1975-08-24 2024-10-11 00:34:21 +2062 2062 2063 206.2 412.40000000000003 2062 1975-08-25 2024-10-11 00:34:22.000 1975-08-25 2024-10-11 00:34:22 +2063 2063 2064 206.3 412.6 2063 1975-08-26 2024-10-11 00:34:23.000 1975-08-26 2024-10-11 00:34:23 +2064 2064 2065 206.4 412.8 2064 1975-08-27 2024-10-11 00:34:24.000 1975-08-27 2024-10-11 00:34:24 +2066 2066 2067 206.6 413.20000000000005 2066 1975-08-29 2024-10-11 00:34:26.000 1975-08-29 2024-10-11 00:34:26 +2067 2067 2068 206.7 413.40000000000003 2067 1975-08-30 2024-10-11 00:34:27.000 1975-08-30 2024-10-11 00:34:27 +2068 2068 2069 206.8 413.6 2068 1975-08-31 2024-10-11 00:34:28.000 1975-08-31 2024-10-11 00:34:28 +2069 2069 2070 206.9 413.8 2069 1975-09-01 2024-10-11 00:34:29.000 1975-09-01 2024-10-11 00:34:29 +2071 2071 2072 207.1 414.20000000000005 2071 1975-09-03 2024-10-11 00:34:31.000 1975-09-03 2024-10-11 00:34:31 +2072 2072 2073 207.2 414.40000000000003 2072 1975-09-04 2024-10-11 00:34:32.000 1975-09-04 2024-10-11 00:34:32 +2073 2073 2074 207.3 414.6 2073 1975-09-05 2024-10-11 00:34:33.000 1975-09-05 2024-10-11 00:34:33 +2074 2074 2075 207.4 414.8 2074 1975-09-06 2024-10-11 00:34:34.000 1975-09-06 2024-10-11 00:34:34 +2076 2076 2077 207.6 415.20000000000005 2076 1975-09-08 2024-10-11 00:34:36.000 1975-09-08 2024-10-11 00:34:36 +2077 2077 2078 207.7 415.40000000000003 2077 1975-09-09 2024-10-11 00:34:37.000 1975-09-09 2024-10-11 00:34:37 +2078 2078 2079 207.8 415.6 2078 1975-09-10 2024-10-11 00:34:38.000 1975-09-10 2024-10-11 00:34:38 +2079 2079 2080 207.9 415.8 2079 1975-09-11 2024-10-11 00:34:39.000 1975-09-11 2024-10-11 00:34:39 +2081 2081 2082 208.1 416.20000000000005 2081 1975-09-13 2024-10-11 00:34:41.000 1975-09-13 2024-10-11 00:34:41 +2082 2082 2083 208.2 416.40000000000003 2082 1975-09-14 2024-10-11 00:34:42.000 1975-09-14 2024-10-11 00:34:42 +2083 2083 2084 208.3 416.6 2083 1975-09-15 2024-10-11 00:34:43.000 1975-09-15 2024-10-11 00:34:43 +2084 2084 2085 208.4 416.8 2084 1975-09-16 2024-10-11 00:34:44.000 1975-09-16 2024-10-11 00:34:44 +2086 2086 2087 208.6 417.20000000000005 2086 1975-09-18 2024-10-11 00:34:46.000 1975-09-18 2024-10-11 00:34:46 +2087 2087 2088 208.7 417.40000000000003 2087 1975-09-19 2024-10-11 00:34:47.000 1975-09-19 2024-10-11 00:34:47 +2088 2088 2089 208.8 417.6 2088 1975-09-20 2024-10-11 00:34:48.000 1975-09-20 2024-10-11 00:34:48 +2089 2089 2090 208.9 417.8 2089 1975-09-21 2024-10-11 00:34:49.000 1975-09-21 2024-10-11 00:34:49 +2091 2091 2092 209.1 418.20000000000005 2091 1975-09-23 2024-10-11 00:34:51.000 1975-09-23 2024-10-11 00:34:51 +2092 2092 2093 209.2 418.40000000000003 2092 1975-09-24 2024-10-11 00:34:52.000 1975-09-24 2024-10-11 00:34:52 +2093 2093 2094 209.3 418.6 2093 1975-09-25 2024-10-11 00:34:53.000 1975-09-25 2024-10-11 00:34:53 +2094 2094 2095 209.4 418.8 2094 1975-09-26 2024-10-11 00:34:54.000 1975-09-26 2024-10-11 00:34:54 +2096 2096 2097 209.6 419.20000000000005 2096 1975-09-28 2024-10-11 00:34:56.000 1975-09-28 2024-10-11 00:34:56 +2097 2097 2098 209.7 419.40000000000003 2097 1975-09-29 2024-10-11 00:34:57.000 1975-09-29 2024-10-11 00:34:57 +2098 2098 2099 209.8 419.6 2098 1975-09-30 2024-10-11 00:34:58.000 1975-09-30 2024-10-11 00:34:58 +2099 2099 2100 209.9 419.8 2099 1975-10-01 2024-10-11 00:34:59.000 1975-10-01 2024-10-11 00:34:59 +2101 2101 2102 210.1 420.20000000000005 2101 1975-10-03 2024-10-11 00:35:01.000 1975-10-03 2024-10-11 00:35:01 +2102 2102 2103 210.2 420.40000000000003 2102 1975-10-04 2024-10-11 00:35:02.000 1975-10-04 2024-10-11 00:35:02 +2103 2103 2104 210.3 420.6 2103 1975-10-05 2024-10-11 00:35:03.000 1975-10-05 2024-10-11 00:35:03 +2104 2104 2105 210.4 420.8 2104 1975-10-06 2024-10-11 00:35:04.000 1975-10-06 2024-10-11 00:35:04 +2106 2106 2107 210.6 421.20000000000005 2106 1975-10-08 2024-10-11 00:35:06.000 1975-10-08 2024-10-11 00:35:06 +2107 2107 2108 210.7 421.40000000000003 2107 1975-10-09 2024-10-11 00:35:07.000 1975-10-09 2024-10-11 00:35:07 +2108 2108 2109 210.8 421.6 2108 1975-10-10 2024-10-11 00:35:08.000 1975-10-10 2024-10-11 00:35:08 +2109 2109 2110 210.9 421.8 2109 1975-10-11 2024-10-11 00:35:09.000 1975-10-11 2024-10-11 00:35:09 +2111 2111 2112 211.1 422.20000000000005 2111 1975-10-13 2024-10-11 00:35:11.000 1975-10-13 2024-10-11 00:35:11 +2112 2112 2113 211.2 422.40000000000003 2112 1975-10-14 2024-10-11 00:35:12.000 1975-10-14 2024-10-11 00:35:12 +2113 2113 2114 211.3 422.6 2113 1975-10-15 2024-10-11 00:35:13.000 1975-10-15 2024-10-11 00:35:13 +2114 2114 2115 211.4 422.8 2114 1975-10-16 2024-10-11 00:35:14.000 1975-10-16 2024-10-11 00:35:14 +2116 2116 2117 211.6 423.20000000000005 2116 1975-10-18 2024-10-11 00:35:16.000 1975-10-18 2024-10-11 00:35:16 +2117 2117 2118 211.7 423.40000000000003 2117 1975-10-19 2024-10-11 00:35:17.000 1975-10-19 2024-10-11 00:35:17 +2118 2118 2119 211.8 423.6 2118 1975-10-20 2024-10-11 00:35:18.000 1975-10-20 2024-10-11 00:35:18 +2119 2119 2120 211.9 423.8 2119 1975-10-21 2024-10-11 00:35:19.000 1975-10-21 2024-10-11 00:35:19 +2121 2121 2122 212.1 424.20000000000005 2121 1975-10-23 2024-10-11 00:35:21.000 1975-10-23 2024-10-11 00:35:21 +2122 2122 2123 212.2 424.40000000000003 2122 1975-10-24 2024-10-11 00:35:22.000 1975-10-24 2024-10-11 00:35:22 +2123 2123 2124 212.3 424.6 2123 1975-10-25 2024-10-11 00:35:23.000 1975-10-25 2024-10-11 00:35:23 +2124 2124 2125 212.4 424.8 2124 1975-10-26 2024-10-11 00:35:24.000 1975-10-26 2024-10-11 00:35:24 +2126 2126 2127 212.6 425.20000000000005 2126 1975-10-28 2024-10-11 00:35:26.000 1975-10-28 2024-10-11 00:35:26 +2127 2127 2128 212.7 425.40000000000003 2127 1975-10-29 2024-10-11 00:35:27.000 1975-10-29 2024-10-11 00:35:27 +2128 2128 2129 212.8 425.6 2128 1975-10-30 2024-10-11 00:35:28.000 1975-10-30 2024-10-11 00:35:28 +2129 2129 2130 212.9 425.8 2129 1975-10-31 2024-10-11 00:35:29.000 1975-10-31 2024-10-11 00:35:29 +2131 2131 2132 213.1 426.20000000000005 2131 1975-11-02 2024-10-11 00:35:31.000 1975-11-02 2024-10-11 00:35:31 +2132 2132 2133 213.2 426.40000000000003 2132 1975-11-03 2024-10-11 00:35:32.000 1975-11-03 2024-10-11 00:35:32 +2133 2133 2134 213.3 426.6 2133 1975-11-04 2024-10-11 00:35:33.000 1975-11-04 2024-10-11 00:35:33 +2134 2134 2135 213.4 426.8 2134 1975-11-05 2024-10-11 00:35:34.000 1975-11-05 2024-10-11 00:35:34 +2136 2136 2137 213.6 427.20000000000005 2136 1975-11-07 2024-10-11 00:35:36.000 1975-11-07 2024-10-11 00:35:36 +2137 2137 2138 213.7 427.40000000000003 2137 1975-11-08 2024-10-11 00:35:37.000 1975-11-08 2024-10-11 00:35:37 +2138 2138 2139 213.8 427.6 2138 1975-11-09 2024-10-11 00:35:38.000 1975-11-09 2024-10-11 00:35:38 +2139 2139 2140 213.9 427.8 2139 1975-11-10 2024-10-11 00:35:39.000 1975-11-10 2024-10-11 00:35:39 +2141 2141 2142 214.1 428.20000000000005 2141 1975-11-12 2024-10-11 00:35:41.000 1975-11-12 2024-10-11 00:35:41 +2142 2142 2143 214.2 428.40000000000003 2142 1975-11-13 2024-10-11 00:35:42.000 1975-11-13 2024-10-11 00:35:42 +2143 2143 2144 214.3 428.6 2143 1975-11-14 2024-10-11 00:35:43.000 1975-11-14 2024-10-11 00:35:43 +2144 2144 2145 214.4 428.8 2144 1975-11-15 2024-10-11 00:35:44.000 1975-11-15 2024-10-11 00:35:44 +2146 2146 2147 214.6 429.20000000000005 2146 1975-11-17 2024-10-11 00:35:46.000 1975-11-17 2024-10-11 00:35:46 +2147 2147 2148 214.7 429.40000000000003 2147 1975-11-18 2024-10-11 00:35:47.000 1975-11-18 2024-10-11 00:35:47 +2148 2148 2149 214.8 429.6 2148 1975-11-19 2024-10-11 00:35:48.000 1975-11-19 2024-10-11 00:35:48 +2149 2149 2150 214.9 429.8 2149 1975-11-20 2024-10-11 00:35:49.000 1975-11-20 2024-10-11 00:35:49 +2151 2151 2152 215.1 430.20000000000005 2151 1975-11-22 2024-10-11 00:35:51.000 1975-11-22 2024-10-11 00:35:51 +2152 2152 2153 215.2 430.40000000000003 2152 1975-11-23 2024-10-11 00:35:52.000 1975-11-23 2024-10-11 00:35:52 +2153 2153 2154 215.3 430.6 2153 1975-11-24 2024-10-11 00:35:53.000 1975-11-24 2024-10-11 00:35:53 +2154 2154 2155 215.4 430.8 2154 1975-11-25 2024-10-11 00:35:54.000 1975-11-25 2024-10-11 00:35:54 +2156 2156 2157 215.6 431.20000000000005 2156 1975-11-27 2024-10-11 00:35:56.000 1975-11-27 2024-10-11 00:35:56 +2157 2157 2158 215.7 431.40000000000003 2157 1975-11-28 2024-10-11 00:35:57.000 1975-11-28 2024-10-11 00:35:57 +2158 2158 2159 215.8 431.6 2158 1975-11-29 2024-10-11 00:35:58.000 1975-11-29 2024-10-11 00:35:58 +2159 2159 2160 215.9 431.8 2159 1975-11-30 2024-10-11 00:35:59.000 1975-11-30 2024-10-11 00:35:59 +2161 2161 2162 216.1 432.20000000000005 2161 1975-12-02 2024-10-11 00:36:01.000 1975-12-02 2024-10-11 00:36:01 +2162 2162 2163 216.2 432.40000000000003 2162 1975-12-03 2024-10-11 00:36:02.000 1975-12-03 2024-10-11 00:36:02 +2163 2163 2164 216.3 432.6 2163 1975-12-04 2024-10-11 00:36:03.000 1975-12-04 2024-10-11 00:36:03 +2164 2164 2165 216.4 432.8 2164 1975-12-05 2024-10-11 00:36:04.000 1975-12-05 2024-10-11 00:36:04 +2166 2166 2167 216.6 433.20000000000005 2166 1975-12-07 2024-10-11 00:36:06.000 1975-12-07 2024-10-11 00:36:06 +2167 2167 2168 216.7 433.40000000000003 2167 1975-12-08 2024-10-11 00:36:07.000 1975-12-08 2024-10-11 00:36:07 +2168 2168 2169 216.8 433.6 2168 1975-12-09 2024-10-11 00:36:08.000 1975-12-09 2024-10-11 00:36:08 +2169 2169 2170 216.9 433.8 2169 1975-12-10 2024-10-11 00:36:09.000 1975-12-10 2024-10-11 00:36:09 +2171 2171 2172 217.1 434.20000000000005 2171 1975-12-12 2024-10-11 00:36:11.000 1975-12-12 2024-10-11 00:36:11 +2172 2172 2173 217.2 434.40000000000003 2172 1975-12-13 2024-10-11 00:36:12.000 1975-12-13 2024-10-11 00:36:12 +2173 2173 2174 217.3 434.6 2173 1975-12-14 2024-10-11 00:36:13.000 1975-12-14 2024-10-11 00:36:13 +2174 2174 2175 217.4 434.8 2174 1975-12-15 2024-10-11 00:36:14.000 1975-12-15 2024-10-11 00:36:14 +2176 2176 2177 217.6 435.20000000000005 2176 1975-12-17 2024-10-11 00:36:16.000 1975-12-17 2024-10-11 00:36:16 +2177 2177 2178 217.7 435.40000000000003 2177 1975-12-18 2024-10-11 00:36:17.000 1975-12-18 2024-10-11 00:36:17 +2178 2178 2179 217.8 435.6 2178 1975-12-19 2024-10-11 00:36:18.000 1975-12-19 2024-10-11 00:36:18 +2179 2179 2180 217.9 435.8 2179 1975-12-20 2024-10-11 00:36:19.000 1975-12-20 2024-10-11 00:36:19 +2181 2181 2182 218.1 436.20000000000005 2181 1975-12-22 2024-10-11 00:36:21.000 1975-12-22 2024-10-11 00:36:21 +2182 2182 2183 218.2 436.40000000000003 2182 1975-12-23 2024-10-11 00:36:22.000 1975-12-23 2024-10-11 00:36:22 +2183 2183 2184 218.3 436.6 2183 1975-12-24 2024-10-11 00:36:23.000 1975-12-24 2024-10-11 00:36:23 +2184 2184 2185 218.4 436.8 2184 1975-12-25 2024-10-11 00:36:24.000 1975-12-25 2024-10-11 00:36:24 +2186 2186 2187 218.6 437.20000000000005 2186 1975-12-27 2024-10-11 00:36:26.000 1975-12-27 2024-10-11 00:36:26 +2187 2187 2188 218.7 437.40000000000003 2187 1975-12-28 2024-10-11 00:36:27.000 1975-12-28 2024-10-11 00:36:27 +2188 2188 2189 218.8 437.6 2188 1975-12-29 2024-10-11 00:36:28.000 1975-12-29 2024-10-11 00:36:28 +2189 2189 2190 218.9 437.8 2189 1975-12-30 2024-10-11 00:36:29.000 1975-12-30 2024-10-11 00:36:29 +2191 2191 2192 219.1 438.20000000000005 2191 1976-01-01 2024-10-11 00:36:31.000 1976-01-01 2024-10-11 00:36:31 +2192 2192 2193 219.2 438.40000000000003 2192 1976-01-02 2024-10-11 00:36:32.000 1976-01-02 2024-10-11 00:36:32 +2193 2193 2194 219.3 438.6 2193 1976-01-03 2024-10-11 00:36:33.000 1976-01-03 2024-10-11 00:36:33 +2194 2194 2195 219.4 438.8 2194 1976-01-04 2024-10-11 00:36:34.000 1976-01-04 2024-10-11 00:36:34 +2196 2196 2197 219.6 439.20000000000005 2196 1976-01-06 2024-10-11 00:36:36.000 1976-01-06 2024-10-11 00:36:36 +2197 2197 2198 219.7 439.40000000000003 2197 1976-01-07 2024-10-11 00:36:37.000 1976-01-07 2024-10-11 00:36:37 +2198 2198 2199 219.8 439.6 2198 1976-01-08 2024-10-11 00:36:38.000 1976-01-08 2024-10-11 00:36:38 +2199 2199 2200 219.9 439.8 2199 1976-01-09 2024-10-11 00:36:39.000 1976-01-09 2024-10-11 00:36:39 +2201 2201 2202 220.1 440.20000000000005 2201 1976-01-11 2024-10-11 00:36:41.000 1976-01-11 2024-10-11 00:36:41 +2202 2202 2203 220.2 440.40000000000003 2202 1976-01-12 2024-10-11 00:36:42.000 1976-01-12 2024-10-11 00:36:42 +2203 2203 2204 220.3 440.6 2203 1976-01-13 2024-10-11 00:36:43.000 1976-01-13 2024-10-11 00:36:43 +2204 2204 2205 220.4 440.8 2204 1976-01-14 2024-10-11 00:36:44.000 1976-01-14 2024-10-11 00:36:44 +2206 2206 2207 220.6 441.20000000000005 2206 1976-01-16 2024-10-11 00:36:46.000 1976-01-16 2024-10-11 00:36:46 +2207 2207 2208 220.7 441.40000000000003 2207 1976-01-17 2024-10-11 00:36:47.000 1976-01-17 2024-10-11 00:36:47 +2208 2208 2209 220.8 441.6 2208 1976-01-18 2024-10-11 00:36:48.000 1976-01-18 2024-10-11 00:36:48 +2209 2209 2210 220.9 441.8 2209 1976-01-19 2024-10-11 00:36:49.000 1976-01-19 2024-10-11 00:36:49 +2211 2211 2212 221.1 442.20000000000005 2211 1976-01-21 2024-10-11 00:36:51.000 1976-01-21 2024-10-11 00:36:51 +2212 2212 2213 221.2 442.40000000000003 2212 1976-01-22 2024-10-11 00:36:52.000 1976-01-22 2024-10-11 00:36:52 +2213 2213 2214 221.3 442.6 2213 1976-01-23 2024-10-11 00:36:53.000 1976-01-23 2024-10-11 00:36:53 +2214 2214 2215 221.4 442.8 2214 1976-01-24 2024-10-11 00:36:54.000 1976-01-24 2024-10-11 00:36:54 +2216 2216 2217 221.6 443.20000000000005 2216 1976-01-26 2024-10-11 00:36:56.000 1976-01-26 2024-10-11 00:36:56 +2217 2217 2218 221.7 443.40000000000003 2217 1976-01-27 2024-10-11 00:36:57.000 1976-01-27 2024-10-11 00:36:57 +2218 2218 2219 221.8 443.6 2218 1976-01-28 2024-10-11 00:36:58.000 1976-01-28 2024-10-11 00:36:58 +2219 2219 2220 221.9 443.8 2219 1976-01-29 2024-10-11 00:36:59.000 1976-01-29 2024-10-11 00:36:59 +2221 2221 2222 222.1 444.20000000000005 2221 1976-01-31 2024-10-11 00:37:01.000 1976-01-31 2024-10-11 00:37:01 +2222 2222 2223 222.2 444.40000000000003 2222 1976-02-01 2024-10-11 00:37:02.000 1976-02-01 2024-10-11 00:37:02 +2223 2223 2224 222.3 444.6 2223 1976-02-02 2024-10-11 00:37:03.000 1976-02-02 2024-10-11 00:37:03 +2224 2224 2225 222.4 444.8 2224 1976-02-03 2024-10-11 00:37:04.000 1976-02-03 2024-10-11 00:37:04 +2226 2226 2227 222.6 445.20000000000005 2226 1976-02-05 2024-10-11 00:37:06.000 1976-02-05 2024-10-11 00:37:06 +2227 2227 2228 222.7 445.40000000000003 2227 1976-02-06 2024-10-11 00:37:07.000 1976-02-06 2024-10-11 00:37:07 +2228 2228 2229 222.8 445.6 2228 1976-02-07 2024-10-11 00:37:08.000 1976-02-07 2024-10-11 00:37:08 +2229 2229 2230 222.9 445.8 2229 1976-02-08 2024-10-11 00:37:09.000 1976-02-08 2024-10-11 00:37:09 +2231 2231 2232 223.1 446.20000000000005 2231 1976-02-10 2024-10-11 00:37:11.000 1976-02-10 2024-10-11 00:37:11 +2232 2232 2233 223.2 446.40000000000003 2232 1976-02-11 2024-10-11 00:37:12.000 1976-02-11 2024-10-11 00:37:12 +2233 2233 2234 223.3 446.6 2233 1976-02-12 2024-10-11 00:37:13.000 1976-02-12 2024-10-11 00:37:13 +2234 2234 2235 223.4 446.8 2234 1976-02-13 2024-10-11 00:37:14.000 1976-02-13 2024-10-11 00:37:14 +2236 2236 2237 223.6 447.20000000000005 2236 1976-02-15 2024-10-11 00:37:16.000 1976-02-15 2024-10-11 00:37:16 +2237 2237 2238 223.7 447.40000000000003 2237 1976-02-16 2024-10-11 00:37:17.000 1976-02-16 2024-10-11 00:37:17 +2238 2238 2239 223.8 447.6 2238 1976-02-17 2024-10-11 00:37:18.000 1976-02-17 2024-10-11 00:37:18 +2239 2239 2240 223.9 447.8 2239 1976-02-18 2024-10-11 00:37:19.000 1976-02-18 2024-10-11 00:37:19 +2241 2241 2242 224.1 448.20000000000005 2241 1976-02-20 2024-10-11 00:37:21.000 1976-02-20 2024-10-11 00:37:21 +2242 2242 2243 224.2 448.40000000000003 2242 1976-02-21 2024-10-11 00:37:22.000 1976-02-21 2024-10-11 00:37:22 +2243 2243 2244 224.3 448.6 2243 1976-02-22 2024-10-11 00:37:23.000 1976-02-22 2024-10-11 00:37:23 +2244 2244 2245 224.4 448.8 2244 1976-02-23 2024-10-11 00:37:24.000 1976-02-23 2024-10-11 00:37:24 +2246 2246 2247 224.6 449.20000000000005 2246 1976-02-25 2024-10-11 00:37:26.000 1976-02-25 2024-10-11 00:37:26 +2247 2247 2248 224.7 449.40000000000003 2247 1976-02-26 2024-10-11 00:37:27.000 1976-02-26 2024-10-11 00:37:27 +2248 2248 2249 224.8 449.6 2248 1976-02-27 2024-10-11 00:37:28.000 1976-02-27 2024-10-11 00:37:28 +2249 2249 2250 224.9 449.8 2249 1976-02-28 2024-10-11 00:37:29.000 1976-02-28 2024-10-11 00:37:29 +2251 2251 2252 225.1 450.20000000000005 2251 1976-03-01 2024-10-11 00:37:31.000 1976-03-01 2024-10-11 00:37:31 +2252 2252 2253 225.2 450.40000000000003 2252 1976-03-02 2024-10-11 00:37:32.000 1976-03-02 2024-10-11 00:37:32 +2253 2253 2254 225.3 450.6 2253 1976-03-03 2024-10-11 00:37:33.000 1976-03-03 2024-10-11 00:37:33 +2254 2254 2255 225.4 450.8 2254 1976-03-04 2024-10-11 00:37:34.000 1976-03-04 2024-10-11 00:37:34 +2256 2256 2257 225.6 451.20000000000005 2256 1976-03-06 2024-10-11 00:37:36.000 1976-03-06 2024-10-11 00:37:36 +2257 2257 2258 225.7 451.40000000000003 2257 1976-03-07 2024-10-11 00:37:37.000 1976-03-07 2024-10-11 00:37:37 +2258 2258 2259 225.8 451.6 2258 1976-03-08 2024-10-11 00:37:38.000 1976-03-08 2024-10-11 00:37:38 +2259 2259 2260 225.9 451.8 2259 1976-03-09 2024-10-11 00:37:39.000 1976-03-09 2024-10-11 00:37:39 +2261 2261 2262 226.1 452.20000000000005 2261 1976-03-11 2024-10-11 00:37:41.000 1976-03-11 2024-10-11 00:37:41 +2262 2262 2263 226.2 452.40000000000003 2262 1976-03-12 2024-10-11 00:37:42.000 1976-03-12 2024-10-11 00:37:42 +2263 2263 2264 226.3 452.6 2263 1976-03-13 2024-10-11 00:37:43.000 1976-03-13 2024-10-11 00:37:43 +2264 2264 2265 226.4 452.8 2264 1976-03-14 2024-10-11 00:37:44.000 1976-03-14 2024-10-11 00:37:44 +2266 2266 2267 226.6 453.20000000000005 2266 1976-03-16 2024-10-11 00:37:46.000 1976-03-16 2024-10-11 00:37:46 +2267 2267 2268 226.7 453.40000000000003 2267 1976-03-17 2024-10-11 00:37:47.000 1976-03-17 2024-10-11 00:37:47 +2268 2268 2269 226.8 453.6 2268 1976-03-18 2024-10-11 00:37:48.000 1976-03-18 2024-10-11 00:37:48 +2269 2269 2270 226.9 453.8 2269 1976-03-19 2024-10-11 00:37:49.000 1976-03-19 2024-10-11 00:37:49 +2271 2271 2272 227.1 454.20000000000005 2271 1976-03-21 2024-10-11 00:37:51.000 1976-03-21 2024-10-11 00:37:51 +2272 2272 2273 227.2 454.40000000000003 2272 1976-03-22 2024-10-11 00:37:52.000 1976-03-22 2024-10-11 00:37:52 +2273 2273 2274 227.3 454.6 2273 1976-03-23 2024-10-11 00:37:53.000 1976-03-23 2024-10-11 00:37:53 +2274 2274 2275 227.4 454.8 2274 1976-03-24 2024-10-11 00:37:54.000 1976-03-24 2024-10-11 00:37:54 +2276 2276 2277 227.6 455.20000000000005 2276 1976-03-26 2024-10-11 00:37:56.000 1976-03-26 2024-10-11 00:37:56 +2277 2277 2278 227.7 455.40000000000003 2277 1976-03-27 2024-10-11 00:37:57.000 1976-03-27 2024-10-11 00:37:57 +2278 2278 2279 227.8 455.6 2278 1976-03-28 2024-10-11 00:37:58.000 1976-03-28 2024-10-11 00:37:58 +2279 2279 2280 227.9 455.8 2279 1976-03-29 2024-10-11 00:37:59.000 1976-03-29 2024-10-11 00:37:59 +2281 2281 2282 228.1 456.20000000000005 2281 1976-03-31 2024-10-11 00:38:01.000 1976-03-31 2024-10-11 00:38:01 +2282 2282 2283 228.2 456.40000000000003 2282 1976-04-01 2024-10-11 00:38:02.000 1976-04-01 2024-10-11 00:38:02 +2283 2283 2284 228.3 456.6 2283 1976-04-02 2024-10-11 00:38:03.000 1976-04-02 2024-10-11 00:38:03 +2284 2284 2285 228.4 456.8 2284 1976-04-03 2024-10-11 00:38:04.000 1976-04-03 2024-10-11 00:38:04 +2286 2286 2287 228.6 457.20000000000005 2286 1976-04-05 2024-10-11 00:38:06.000 1976-04-05 2024-10-11 00:38:06 +2287 2287 2288 228.7 457.40000000000003 2287 1976-04-06 2024-10-11 00:38:07.000 1976-04-06 2024-10-11 00:38:07 +2288 2288 2289 228.8 457.6 2288 1976-04-07 2024-10-11 00:38:08.000 1976-04-07 2024-10-11 00:38:08 +2289 2289 2290 228.9 457.8 2289 1976-04-08 2024-10-11 00:38:09.000 1976-04-08 2024-10-11 00:38:09 +2291 2291 2292 229.1 458.20000000000005 2291 1976-04-10 2024-10-11 00:38:11.000 1976-04-10 2024-10-11 00:38:11 +2292 2292 2293 229.2 458.40000000000003 2292 1976-04-11 2024-10-11 00:38:12.000 1976-04-11 2024-10-11 00:38:12 +2293 2293 2294 229.3 458.6 2293 1976-04-12 2024-10-11 00:38:13.000 1976-04-12 2024-10-11 00:38:13 +2294 2294 2295 229.4 458.8 2294 1976-04-13 2024-10-11 00:38:14.000 1976-04-13 2024-10-11 00:38:14 +2296 2296 2297 229.6 459.20000000000005 2296 1976-04-15 2024-10-11 00:38:16.000 1976-04-15 2024-10-11 00:38:16 +2297 2297 2298 229.7 459.40000000000003 2297 1976-04-16 2024-10-11 00:38:17.000 1976-04-16 2024-10-11 00:38:17 +2298 2298 2299 229.8 459.6 2298 1976-04-17 2024-10-11 00:38:18.000 1976-04-17 2024-10-11 00:38:18 +2299 2299 2300 229.9 459.8 2299 1976-04-18 2024-10-11 00:38:19.000 1976-04-18 2024-10-11 00:38:19 +2301 2301 2302 230.1 460.20000000000005 2301 1976-04-20 2024-10-11 00:38:21.000 1976-04-20 2024-10-11 00:38:21 +2302 2302 2303 230.2 460.40000000000003 2302 1976-04-21 2024-10-11 00:38:22.000 1976-04-21 2024-10-11 00:38:22 +2303 2303 2304 230.3 460.6 2303 1976-04-22 2024-10-11 00:38:23.000 1976-04-22 2024-10-11 00:38:23 +2304 2304 2305 230.4 460.8 2304 1976-04-23 2024-10-11 00:38:24.000 1976-04-23 2024-10-11 00:38:24 +2306 2306 2307 230.6 461.20000000000005 2306 1976-04-25 2024-10-11 00:38:26.000 1976-04-25 2024-10-11 00:38:26 +2307 2307 2308 230.7 461.40000000000003 2307 1976-04-26 2024-10-11 00:38:27.000 1976-04-26 2024-10-11 00:38:27 +2308 2308 2309 230.8 461.6 2308 1976-04-27 2024-10-11 00:38:28.000 1976-04-27 2024-10-11 00:38:28 +2309 2309 2310 230.9 461.8 2309 1976-04-28 2024-10-11 00:38:29.000 1976-04-28 2024-10-11 00:38:29 +2311 2311 2312 231.1 462.20000000000005 2311 1976-04-30 2024-10-11 00:38:31.000 1976-04-30 2024-10-11 00:38:31 +2312 2312 2313 231.2 462.40000000000003 2312 1976-05-01 2024-10-11 00:38:32.000 1976-05-01 2024-10-11 00:38:32 +2313 2313 2314 231.3 462.6 2313 1976-05-02 2024-10-11 00:38:33.000 1976-05-02 2024-10-11 00:38:33 +2314 2314 2315 231.4 462.8 2314 1976-05-03 2024-10-11 00:38:34.000 1976-05-03 2024-10-11 00:38:34 +2316 2316 2317 231.6 463.20000000000005 2316 1976-05-05 2024-10-11 00:38:36.000 1976-05-05 2024-10-11 00:38:36 +2317 2317 2318 231.7 463.40000000000003 2317 1976-05-06 2024-10-11 00:38:37.000 1976-05-06 2024-10-11 00:38:37 +2318 2318 2319 231.8 463.6 2318 1976-05-07 2024-10-11 00:38:38.000 1976-05-07 2024-10-11 00:38:38 +2319 2319 2320 231.9 463.8 2319 1976-05-08 2024-10-11 00:38:39.000 1976-05-08 2024-10-11 00:38:39 +2321 2321 2322 232.1 464.20000000000005 2321 1976-05-10 2024-10-11 00:38:41.000 1976-05-10 2024-10-11 00:38:41 +2322 2322 2323 232.2 464.40000000000003 2322 1976-05-11 2024-10-11 00:38:42.000 1976-05-11 2024-10-11 00:38:42 +2323 2323 2324 232.3 464.6 2323 1976-05-12 2024-10-11 00:38:43.000 1976-05-12 2024-10-11 00:38:43 +2324 2324 2325 232.4 464.8 2324 1976-05-13 2024-10-11 00:38:44.000 1976-05-13 2024-10-11 00:38:44 +2326 2326 2327 232.6 465.20000000000005 2326 1976-05-15 2024-10-11 00:38:46.000 1976-05-15 2024-10-11 00:38:46 +2327 2327 2328 232.7 465.40000000000003 2327 1976-05-16 2024-10-11 00:38:47.000 1976-05-16 2024-10-11 00:38:47 +2328 2328 2329 232.8 465.6 2328 1976-05-17 2024-10-11 00:38:48.000 1976-05-17 2024-10-11 00:38:48 +2329 2329 2330 232.9 465.8 2329 1976-05-18 2024-10-11 00:38:49.000 1976-05-18 2024-10-11 00:38:49 +2331 2331 2332 233.1 466.20000000000005 2331 1976-05-20 2024-10-11 00:38:51.000 1976-05-20 2024-10-11 00:38:51 +2332 2332 2333 233.2 466.40000000000003 2332 1976-05-21 2024-10-11 00:38:52.000 1976-05-21 2024-10-11 00:38:52 +2333 2333 2334 233.3 466.6 2333 1976-05-22 2024-10-11 00:38:53.000 1976-05-22 2024-10-11 00:38:53 +2334 2334 2335 233.4 466.8 2334 1976-05-23 2024-10-11 00:38:54.000 1976-05-23 2024-10-11 00:38:54 +2336 2336 2337 233.6 467.20000000000005 2336 1976-05-25 2024-10-11 00:38:56.000 1976-05-25 2024-10-11 00:38:56 +2337 2337 2338 233.7 467.40000000000003 2337 1976-05-26 2024-10-11 00:38:57.000 1976-05-26 2024-10-11 00:38:57 +2338 2338 2339 233.8 467.6 2338 1976-05-27 2024-10-11 00:38:58.000 1976-05-27 2024-10-11 00:38:58 +2339 2339 2340 233.9 467.8 2339 1976-05-28 2024-10-11 00:38:59.000 1976-05-28 2024-10-11 00:38:59 +2341 2341 2342 234.1 468.20000000000005 2341 1976-05-30 2024-10-11 00:39:01.000 1976-05-30 2024-10-11 00:39:01 +2342 2342 2343 234.2 468.40000000000003 2342 1976-05-31 2024-10-11 00:39:02.000 1976-05-31 2024-10-11 00:39:02 +2343 2343 2344 234.3 468.6 2343 1976-06-01 2024-10-11 00:39:03.000 1976-06-01 2024-10-11 00:39:03 +2344 2344 2345 234.4 468.8 2344 1976-06-02 2024-10-11 00:39:04.000 1976-06-02 2024-10-11 00:39:04 +2346 2346 2347 234.6 469.20000000000005 2346 1976-06-04 2024-10-11 00:39:06.000 1976-06-04 2024-10-11 00:39:06 +2347 2347 2348 234.7 469.40000000000003 2347 1976-06-05 2024-10-11 00:39:07.000 1976-06-05 2024-10-11 00:39:07 +2348 2348 2349 234.8 469.6 2348 1976-06-06 2024-10-11 00:39:08.000 1976-06-06 2024-10-11 00:39:08 +2349 2349 2350 234.9 469.8 2349 1976-06-07 2024-10-11 00:39:09.000 1976-06-07 2024-10-11 00:39:09 +2351 2351 2352 235.1 470.20000000000005 2351 1976-06-09 2024-10-11 00:39:11.000 1976-06-09 2024-10-11 00:39:11 +2352 2352 2353 235.2 470.40000000000003 2352 1976-06-10 2024-10-11 00:39:12.000 1976-06-10 2024-10-11 00:39:12 +2353 2353 2354 235.3 470.6 2353 1976-06-11 2024-10-11 00:39:13.000 1976-06-11 2024-10-11 00:39:13 +2354 2354 2355 235.4 470.8 2354 1976-06-12 2024-10-11 00:39:14.000 1976-06-12 2024-10-11 00:39:14 +2356 2356 2357 235.6 471.20000000000005 2356 1976-06-14 2024-10-11 00:39:16.000 1976-06-14 2024-10-11 00:39:16 +2357 2357 2358 235.7 471.40000000000003 2357 1976-06-15 2024-10-11 00:39:17.000 1976-06-15 2024-10-11 00:39:17 +2358 2358 2359 235.8 471.6 2358 1976-06-16 2024-10-11 00:39:18.000 1976-06-16 2024-10-11 00:39:18 +2359 2359 2360 235.9 471.8 2359 1976-06-17 2024-10-11 00:39:19.000 1976-06-17 2024-10-11 00:39:19 +2361 2361 2362 236.1 472.20000000000005 2361 1976-06-19 2024-10-11 00:39:21.000 1976-06-19 2024-10-11 00:39:21 +2362 2362 2363 236.2 472.40000000000003 2362 1976-06-20 2024-10-11 00:39:22.000 1976-06-20 2024-10-11 00:39:22 +2363 2363 2364 236.3 472.6 2363 1976-06-21 2024-10-11 00:39:23.000 1976-06-21 2024-10-11 00:39:23 +2364 2364 2365 236.4 472.8 2364 1976-06-22 2024-10-11 00:39:24.000 1976-06-22 2024-10-11 00:39:24 +2366 2366 2367 236.6 473.20000000000005 2366 1976-06-24 2024-10-11 00:39:26.000 1976-06-24 2024-10-11 00:39:26 +2367 2367 2368 236.7 473.40000000000003 2367 1976-06-25 2024-10-11 00:39:27.000 1976-06-25 2024-10-11 00:39:27 +2368 2368 2369 236.8 473.6 2368 1976-06-26 2024-10-11 00:39:28.000 1976-06-26 2024-10-11 00:39:28 +2369 2369 2370 236.9 473.8 2369 1976-06-27 2024-10-11 00:39:29.000 1976-06-27 2024-10-11 00:39:29 +2371 2371 2372 237.1 474.20000000000005 2371 1976-06-29 2024-10-11 00:39:31.000 1976-06-29 2024-10-11 00:39:31 +2372 2372 2373 237.2 474.40000000000003 2372 1976-06-30 2024-10-11 00:39:32.000 1976-06-30 2024-10-11 00:39:32 +2373 2373 2374 237.3 474.6 2373 1976-07-01 2024-10-11 00:39:33.000 1976-07-01 2024-10-11 00:39:33 +2374 2374 2375 237.4 474.8 2374 1976-07-02 2024-10-11 00:39:34.000 1976-07-02 2024-10-11 00:39:34 +2376 2376 2377 237.6 475.20000000000005 2376 1976-07-04 2024-10-11 00:39:36.000 1976-07-04 2024-10-11 00:39:36 +2377 2377 2378 237.7 475.40000000000003 2377 1976-07-05 2024-10-11 00:39:37.000 1976-07-05 2024-10-11 00:39:37 +2378 2378 2379 237.8 475.6 2378 1976-07-06 2024-10-11 00:39:38.000 1976-07-06 2024-10-11 00:39:38 +2379 2379 2380 237.9 475.8 2379 1976-07-07 2024-10-11 00:39:39.000 1976-07-07 2024-10-11 00:39:39 +2381 2381 2382 238.1 476.20000000000005 2381 1976-07-09 2024-10-11 00:39:41.000 1976-07-09 2024-10-11 00:39:41 +2382 2382 2383 238.2 476.40000000000003 2382 1976-07-10 2024-10-11 00:39:42.000 1976-07-10 2024-10-11 00:39:42 +2383 2383 2384 238.3 476.6 2383 1976-07-11 2024-10-11 00:39:43.000 1976-07-11 2024-10-11 00:39:43 +2384 2384 2385 238.4 476.8 2384 1976-07-12 2024-10-11 00:39:44.000 1976-07-12 2024-10-11 00:39:44 +2386 2386 2387 238.6 477.20000000000005 2386 1976-07-14 2024-10-11 00:39:46.000 1976-07-14 2024-10-11 00:39:46 +2387 2387 2388 238.7 477.40000000000003 2387 1976-07-15 2024-10-11 00:39:47.000 1976-07-15 2024-10-11 00:39:47 +2388 2388 2389 238.8 477.6 2388 1976-07-16 2024-10-11 00:39:48.000 1976-07-16 2024-10-11 00:39:48 +2389 2389 2390 238.9 477.8 2389 1976-07-17 2024-10-11 00:39:49.000 1976-07-17 2024-10-11 00:39:49 +2391 2391 2392 239.1 478.20000000000005 2391 1976-07-19 2024-10-11 00:39:51.000 1976-07-19 2024-10-11 00:39:51 +2392 2392 2393 239.2 478.40000000000003 2392 1976-07-20 2024-10-11 00:39:52.000 1976-07-20 2024-10-11 00:39:52 +2393 2393 2394 239.3 478.6 2393 1976-07-21 2024-10-11 00:39:53.000 1976-07-21 2024-10-11 00:39:53 +2394 2394 2395 239.4 478.8 2394 1976-07-22 2024-10-11 00:39:54.000 1976-07-22 2024-10-11 00:39:54 +2396 2396 2397 239.6 479.20000000000005 2396 1976-07-24 2024-10-11 00:39:56.000 1976-07-24 2024-10-11 00:39:56 +2397 2397 2398 239.7 479.40000000000003 2397 1976-07-25 2024-10-11 00:39:57.000 1976-07-25 2024-10-11 00:39:57 +2398 2398 2399 239.8 479.6 2398 1976-07-26 2024-10-11 00:39:58.000 1976-07-26 2024-10-11 00:39:58 +2399 2399 2400 239.9 479.8 2399 1976-07-27 2024-10-11 00:39:59.000 1976-07-27 2024-10-11 00:39:59 +2401 2401 2402 240.1 480.20000000000005 2401 1976-07-29 2024-10-11 00:40:01.000 1976-07-29 2024-10-11 00:40:01 +2402 2402 2403 240.2 480.40000000000003 2402 1976-07-30 2024-10-11 00:40:02.000 1976-07-30 2024-10-11 00:40:02 +2403 2403 2404 240.3 480.6 2403 1976-07-31 2024-10-11 00:40:03.000 1976-07-31 2024-10-11 00:40:03 +2404 2404 2405 240.4 480.8 2404 1976-08-01 2024-10-11 00:40:04.000 1976-08-01 2024-10-11 00:40:04 +2406 2406 2407 240.6 481.20000000000005 2406 1976-08-03 2024-10-11 00:40:06.000 1976-08-03 2024-10-11 00:40:06 +2407 2407 2408 240.7 481.40000000000003 2407 1976-08-04 2024-10-11 00:40:07.000 1976-08-04 2024-10-11 00:40:07 +2408 2408 2409 240.8 481.6 2408 1976-08-05 2024-10-11 00:40:08.000 1976-08-05 2024-10-11 00:40:08 +2409 2409 2410 240.9 481.8 2409 1976-08-06 2024-10-11 00:40:09.000 1976-08-06 2024-10-11 00:40:09 +2411 2411 2412 241.1 482.20000000000005 2411 1976-08-08 2024-10-11 00:40:11.000 1976-08-08 2024-10-11 00:40:11 +2412 2412 2413 241.2 482.40000000000003 2412 1976-08-09 2024-10-11 00:40:12.000 1976-08-09 2024-10-11 00:40:12 +2413 2413 2414 241.3 482.6 2413 1976-08-10 2024-10-11 00:40:13.000 1976-08-10 2024-10-11 00:40:13 +2414 2414 2415 241.4 482.8 2414 1976-08-11 2024-10-11 00:40:14.000 1976-08-11 2024-10-11 00:40:14 +2416 2416 2417 241.6 483.20000000000005 2416 1976-08-13 2024-10-11 00:40:16.000 1976-08-13 2024-10-11 00:40:16 +2417 2417 2418 241.7 483.40000000000003 2417 1976-08-14 2024-10-11 00:40:17.000 1976-08-14 2024-10-11 00:40:17 +2418 2418 2419 241.8 483.6 2418 1976-08-15 2024-10-11 00:40:18.000 1976-08-15 2024-10-11 00:40:18 +2419 2419 2420 241.9 483.8 2419 1976-08-16 2024-10-11 00:40:19.000 1976-08-16 2024-10-11 00:40:19 +2421 2421 2422 242.1 484.20000000000005 2421 1976-08-18 2024-10-11 00:40:21.000 1976-08-18 2024-10-11 00:40:21 +2422 2422 2423 242.2 484.40000000000003 2422 1976-08-19 2024-10-11 00:40:22.000 1976-08-19 2024-10-11 00:40:22 +2423 2423 2424 242.3 484.6 2423 1976-08-20 2024-10-11 00:40:23.000 1976-08-20 2024-10-11 00:40:23 +2424 2424 2425 242.4 484.8 2424 1976-08-21 2024-10-11 00:40:24.000 1976-08-21 2024-10-11 00:40:24 +2426 2426 2427 242.6 485.20000000000005 2426 1976-08-23 2024-10-11 00:40:26.000 1976-08-23 2024-10-11 00:40:26 +2427 2427 2428 242.7 485.40000000000003 2427 1976-08-24 2024-10-11 00:40:27.000 1976-08-24 2024-10-11 00:40:27 +2428 2428 2429 242.8 485.6 2428 1976-08-25 2024-10-11 00:40:28.000 1976-08-25 2024-10-11 00:40:28 +2429 2429 2430 242.9 485.8 2429 1976-08-26 2024-10-11 00:40:29.000 1976-08-26 2024-10-11 00:40:29 +2431 2431 2432 243.1 486.20000000000005 2431 1976-08-28 2024-10-11 00:40:31.000 1976-08-28 2024-10-11 00:40:31 +2432 2432 2433 243.2 486.40000000000003 2432 1976-08-29 2024-10-11 00:40:32.000 1976-08-29 2024-10-11 00:40:32 +2433 2433 2434 243.3 486.6 2433 1976-08-30 2024-10-11 00:40:33.000 1976-08-30 2024-10-11 00:40:33 +2434 2434 2435 243.4 486.8 2434 1976-08-31 2024-10-11 00:40:34.000 1976-08-31 2024-10-11 00:40:34 +2436 2436 2437 243.6 487.20000000000005 2436 1976-09-02 2024-10-11 00:40:36.000 1976-09-02 2024-10-11 00:40:36 +2437 2437 2438 243.7 487.40000000000003 2437 1976-09-03 2024-10-11 00:40:37.000 1976-09-03 2024-10-11 00:40:37 +2438 2438 2439 243.8 487.6 2438 1976-09-04 2024-10-11 00:40:38.000 1976-09-04 2024-10-11 00:40:38 +2439 2439 2440 243.9 487.8 2439 1976-09-05 2024-10-11 00:40:39.000 1976-09-05 2024-10-11 00:40:39 +2441 2441 2442 244.1 488.20000000000005 2441 1976-09-07 2024-10-11 00:40:41.000 1976-09-07 2024-10-11 00:40:41 +2442 2442 2443 244.2 488.40000000000003 2442 1976-09-08 2024-10-11 00:40:42.000 1976-09-08 2024-10-11 00:40:42 +2443 2443 2444 244.3 488.6 2443 1976-09-09 2024-10-11 00:40:43.000 1976-09-09 2024-10-11 00:40:43 +2444 2444 2445 244.4 488.8 2444 1976-09-10 2024-10-11 00:40:44.000 1976-09-10 2024-10-11 00:40:44 +2446 2446 2447 244.6 489.20000000000005 2446 1976-09-12 2024-10-11 00:40:46.000 1976-09-12 2024-10-11 00:40:46 +2447 2447 2448 244.7 489.40000000000003 2447 1976-09-13 2024-10-11 00:40:47.000 1976-09-13 2024-10-11 00:40:47 +2448 2448 2449 244.8 489.6 2448 1976-09-14 2024-10-11 00:40:48.000 1976-09-14 2024-10-11 00:40:48 +2449 2449 2450 244.9 489.8 2449 1976-09-15 2024-10-11 00:40:49.000 1976-09-15 2024-10-11 00:40:49 +2451 2451 2452 245.1 490.20000000000005 2451 1976-09-17 2024-10-11 00:40:51.000 1976-09-17 2024-10-11 00:40:51 +2452 2452 2453 245.2 490.40000000000003 2452 1976-09-18 2024-10-11 00:40:52.000 1976-09-18 2024-10-11 00:40:52 +2453 2453 2454 245.3 490.6 2453 1976-09-19 2024-10-11 00:40:53.000 1976-09-19 2024-10-11 00:40:53 +2454 2454 2455 245.4 490.8 2454 1976-09-20 2024-10-11 00:40:54.000 1976-09-20 2024-10-11 00:40:54 +2456 2456 2457 245.6 491.20000000000005 2456 1976-09-22 2024-10-11 00:40:56.000 1976-09-22 2024-10-11 00:40:56 +2457 2457 2458 245.7 491.40000000000003 2457 1976-09-23 2024-10-11 00:40:57.000 1976-09-23 2024-10-11 00:40:57 +2458 2458 2459 245.8 491.6 2458 1976-09-24 2024-10-11 00:40:58.000 1976-09-24 2024-10-11 00:40:58 +2459 2459 2460 245.9 491.8 2459 1976-09-25 2024-10-11 00:40:59.000 1976-09-25 2024-10-11 00:40:59 +2461 2461 2462 246.1 492.20000000000005 2461 1976-09-27 2024-10-11 00:41:01.000 1976-09-27 2024-10-11 00:41:01 +2462 2462 2463 246.2 492.40000000000003 2462 1976-09-28 2024-10-11 00:41:02.000 1976-09-28 2024-10-11 00:41:02 +2463 2463 2464 246.3 492.6 2463 1976-09-29 2024-10-11 00:41:03.000 1976-09-29 2024-10-11 00:41:03 +2464 2464 2465 246.4 492.8 2464 1976-09-30 2024-10-11 00:41:04.000 1976-09-30 2024-10-11 00:41:04 +2466 2466 2467 246.6 493.20000000000005 2466 1976-10-02 2024-10-11 00:41:06.000 1976-10-02 2024-10-11 00:41:06 +2467 2467 2468 246.7 493.40000000000003 2467 1976-10-03 2024-10-11 00:41:07.000 1976-10-03 2024-10-11 00:41:07 +2468 2468 2469 246.8 493.6 2468 1976-10-04 2024-10-11 00:41:08.000 1976-10-04 2024-10-11 00:41:08 +2469 2469 2470 246.9 493.8 2469 1976-10-05 2024-10-11 00:41:09.000 1976-10-05 2024-10-11 00:41:09 +2471 2471 2472 247.1 494.20000000000005 2471 1976-10-07 2024-10-11 00:41:11.000 1976-10-07 2024-10-11 00:41:11 +2472 2472 2473 247.2 494.40000000000003 2472 1976-10-08 2024-10-11 00:41:12.000 1976-10-08 2024-10-11 00:41:12 +2473 2473 2474 247.3 494.6 2473 1976-10-09 2024-10-11 00:41:13.000 1976-10-09 2024-10-11 00:41:13 +2474 2474 2475 247.4 494.8 2474 1976-10-10 2024-10-11 00:41:14.000 1976-10-10 2024-10-11 00:41:14 +2476 2476 2477 247.6 495.20000000000005 2476 1976-10-12 2024-10-11 00:41:16.000 1976-10-12 2024-10-11 00:41:16 +2477 2477 2478 247.7 495.40000000000003 2477 1976-10-13 2024-10-11 00:41:17.000 1976-10-13 2024-10-11 00:41:17 +2478 2478 2479 247.8 495.6 2478 1976-10-14 2024-10-11 00:41:18.000 1976-10-14 2024-10-11 00:41:18 +2479 2479 2480 247.9 495.8 2479 1976-10-15 2024-10-11 00:41:19.000 1976-10-15 2024-10-11 00:41:19 +2481 2481 2482 248.1 496.20000000000005 2481 1976-10-17 2024-10-11 00:41:21.000 1976-10-17 2024-10-11 00:41:21 +2482 2482 2483 248.2 496.40000000000003 2482 1976-10-18 2024-10-11 00:41:22.000 1976-10-18 2024-10-11 00:41:22 +2483 2483 2484 248.3 496.6 2483 1976-10-19 2024-10-11 00:41:23.000 1976-10-19 2024-10-11 00:41:23 +2484 2484 2485 248.4 496.8 2484 1976-10-20 2024-10-11 00:41:24.000 1976-10-20 2024-10-11 00:41:24 +2486 2486 2487 248.6 497.20000000000005 2486 1976-10-22 2024-10-11 00:41:26.000 1976-10-22 2024-10-11 00:41:26 +2487 2487 2488 248.7 497.40000000000003 2487 1976-10-23 2024-10-11 00:41:27.000 1976-10-23 2024-10-11 00:41:27 +2488 2488 2489 248.8 497.6 2488 1976-10-24 2024-10-11 00:41:28.000 1976-10-24 2024-10-11 00:41:28 +2489 2489 2490 248.9 497.8 2489 1976-10-25 2024-10-11 00:41:29.000 1976-10-25 2024-10-11 00:41:29 +2491 2491 2492 249.1 498.20000000000005 2491 1976-10-27 2024-10-11 00:41:31.000 1976-10-27 2024-10-11 00:41:31 +2492 2492 2493 249.2 498.40000000000003 2492 1976-10-28 2024-10-11 00:41:32.000 1976-10-28 2024-10-11 00:41:32 +2493 2493 2494 249.3 498.6 2493 1976-10-29 2024-10-11 00:41:33.000 1976-10-29 2024-10-11 00:41:33 +2494 2494 2495 249.4 498.8 2494 1976-10-30 2024-10-11 00:41:34.000 1976-10-30 2024-10-11 00:41:34 +2496 2496 2497 249.6 499.20000000000005 2496 1976-11-01 2024-10-11 00:41:36.000 1976-11-01 2024-10-11 00:41:36 +2497 2497 2498 249.7 499.40000000000003 2497 1976-11-02 2024-10-11 00:41:37.000 1976-11-02 2024-10-11 00:41:37 +2498 2498 2499 249.8 499.6 2498 1976-11-03 2024-10-11 00:41:38.000 1976-11-03 2024-10-11 00:41:38 +2499 2499 2500 249.9 499.8 2499 1976-11-04 2024-10-11 00:41:39.000 1976-11-04 2024-10-11 00:41:39 +2501 2501 2502 250.1 500.20000000000005 2501 1976-11-06 2024-10-11 00:41:41.000 1976-11-06 2024-10-11 00:41:41 +2502 2502 2503 250.2 500.40000000000003 2502 1976-11-07 2024-10-11 00:41:42.000 1976-11-07 2024-10-11 00:41:42 +2503 2503 2504 250.3 500.6 2503 1976-11-08 2024-10-11 00:41:43.000 1976-11-08 2024-10-11 00:41:43 +2504 2504 2505 250.4 500.8 2504 1976-11-09 2024-10-11 00:41:44.000 1976-11-09 2024-10-11 00:41:44 +2506 2506 2507 250.6 501.20000000000005 2506 1976-11-11 2024-10-11 00:41:46.000 1976-11-11 2024-10-11 00:41:46 +2507 2507 2508 250.7 501.40000000000003 2507 1976-11-12 2024-10-11 00:41:47.000 1976-11-12 2024-10-11 00:41:47 +2508 2508 2509 250.8 501.6 2508 1976-11-13 2024-10-11 00:41:48.000 1976-11-13 2024-10-11 00:41:48 +2509 2509 2510 250.9 501.8 2509 1976-11-14 2024-10-11 00:41:49.000 1976-11-14 2024-10-11 00:41:49 +2511 2511 2512 251.1 502.20000000000005 2511 1976-11-16 2024-10-11 00:41:51.000 1976-11-16 2024-10-11 00:41:51 +2512 2512 2513 251.2 502.40000000000003 2512 1976-11-17 2024-10-11 00:41:52.000 1976-11-17 2024-10-11 00:41:52 +2513 2513 2514 251.3 502.6 2513 1976-11-18 2024-10-11 00:41:53.000 1976-11-18 2024-10-11 00:41:53 +2514 2514 2515 251.4 502.8 2514 1976-11-19 2024-10-11 00:41:54.000 1976-11-19 2024-10-11 00:41:54 +2516 2516 2517 251.6 503.20000000000005 2516 1976-11-21 2024-10-11 00:41:56.000 1976-11-21 2024-10-11 00:41:56 +2517 2517 2518 251.7 503.40000000000003 2517 1976-11-22 2024-10-11 00:41:57.000 1976-11-22 2024-10-11 00:41:57 +2518 2518 2519 251.8 503.6 2518 1976-11-23 2024-10-11 00:41:58.000 1976-11-23 2024-10-11 00:41:58 +2519 2519 2520 251.9 503.8 2519 1976-11-24 2024-10-11 00:41:59.000 1976-11-24 2024-10-11 00:41:59 +2521 2521 2522 252.1 504.20000000000005 2521 1976-11-26 2024-10-11 00:42:01.000 1976-11-26 2024-10-11 00:42:01 +2522 2522 2523 252.2 504.40000000000003 2522 1976-11-27 2024-10-11 00:42:02.000 1976-11-27 2024-10-11 00:42:02 +2523 2523 2524 252.3 504.6 2523 1976-11-28 2024-10-11 00:42:03.000 1976-11-28 2024-10-11 00:42:03 +2524 2524 2525 252.4 504.8 2524 1976-11-29 2024-10-11 00:42:04.000 1976-11-29 2024-10-11 00:42:04 +2526 2526 2527 252.6 505.20000000000005 2526 1976-12-01 2024-10-11 00:42:06.000 1976-12-01 2024-10-11 00:42:06 +2527 2527 2528 252.7 505.40000000000003 2527 1976-12-02 2024-10-11 00:42:07.000 1976-12-02 2024-10-11 00:42:07 +2528 2528 2529 252.8 505.6 2528 1976-12-03 2024-10-11 00:42:08.000 1976-12-03 2024-10-11 00:42:08 +2529 2529 2530 252.9 505.8 2529 1976-12-04 2024-10-11 00:42:09.000 1976-12-04 2024-10-11 00:42:09 +2531 2531 2532 253.1 506.20000000000005 2531 1976-12-06 2024-10-11 00:42:11.000 1976-12-06 2024-10-11 00:42:11 +2532 2532 2533 253.2 506.40000000000003 2532 1976-12-07 2024-10-11 00:42:12.000 1976-12-07 2024-10-11 00:42:12 +2533 2533 2534 253.3 506.6 2533 1976-12-08 2024-10-11 00:42:13.000 1976-12-08 2024-10-11 00:42:13 +2534 2534 2535 253.4 506.8 2534 1976-12-09 2024-10-11 00:42:14.000 1976-12-09 2024-10-11 00:42:14 +2536 2536 2537 253.6 507.20000000000005 2536 1976-12-11 2024-10-11 00:42:16.000 1976-12-11 2024-10-11 00:42:16 +2537 2537 2538 253.7 507.40000000000003 2537 1976-12-12 2024-10-11 00:42:17.000 1976-12-12 2024-10-11 00:42:17 +2538 2538 2539 253.8 507.6 2538 1976-12-13 2024-10-11 00:42:18.000 1976-12-13 2024-10-11 00:42:18 +2539 2539 2540 253.9 507.8 2539 1976-12-14 2024-10-11 00:42:19.000 1976-12-14 2024-10-11 00:42:19 +2541 2541 2542 254.1 508.20000000000005 2541 1976-12-16 2024-10-11 00:42:21.000 1976-12-16 2024-10-11 00:42:21 +2542 2542 2543 254.2 508.40000000000003 2542 1976-12-17 2024-10-11 00:42:22.000 1976-12-17 2024-10-11 00:42:22 +2543 2543 2544 254.3 508.6 2543 1976-12-18 2024-10-11 00:42:23.000 1976-12-18 2024-10-11 00:42:23 +2544 2544 2545 254.4 508.8 2544 1976-12-19 2024-10-11 00:42:24.000 1976-12-19 2024-10-11 00:42:24 +2546 2546 2547 254.6 509.20000000000005 2546 1976-12-21 2024-10-11 00:42:26.000 1976-12-21 2024-10-11 00:42:26 +2547 2547 2548 254.7 509.40000000000003 2547 1976-12-22 2024-10-11 00:42:27.000 1976-12-22 2024-10-11 00:42:27 +2548 2548 2549 254.8 509.6 2548 1976-12-23 2024-10-11 00:42:28.000 1976-12-23 2024-10-11 00:42:28 +2549 2549 2550 254.9 509.8 2549 1976-12-24 2024-10-11 00:42:29.000 1976-12-24 2024-10-11 00:42:29 +2551 2551 2552 255.1 510.20000000000005 2551 1976-12-26 2024-10-11 00:42:31.000 1976-12-26 2024-10-11 00:42:31 +2552 2552 2553 255.2 510.40000000000003 2552 1976-12-27 2024-10-11 00:42:32.000 1976-12-27 2024-10-11 00:42:32 +2553 2553 2554 255.3 510.6 2553 1976-12-28 2024-10-11 00:42:33.000 1976-12-28 2024-10-11 00:42:33 +2554 2554 2555 255.4 510.8 2554 1976-12-29 2024-10-11 00:42:34.000 1976-12-29 2024-10-11 00:42:34 +2556 2556 2557 255.6 511.20000000000005 2556 1976-12-31 2024-10-11 00:42:36.000 1976-12-31 2024-10-11 00:42:36 +2557 2557 2558 255.7 511.40000000000003 2557 1977-01-01 2024-10-11 00:42:37.000 1977-01-01 2024-10-11 00:42:37 +2558 2558 2559 255.8 511.6 2558 1977-01-02 2024-10-11 00:42:38.000 1977-01-02 2024-10-11 00:42:38 +2559 2559 2560 255.9 511.8 2559 1977-01-03 2024-10-11 00:42:39.000 1977-01-03 2024-10-11 00:42:39 +2561 2561 2562 256.1 512.2 2561 1977-01-05 2024-10-11 00:42:41.000 1977-01-05 2024-10-11 00:42:41 +2562 2562 2563 256.2 512.4 2562 1977-01-06 2024-10-11 00:42:42.000 1977-01-06 2024-10-11 00:42:42 +2563 2563 2564 256.3 512.6 2563 1977-01-07 2024-10-11 00:42:43.000 1977-01-07 2024-10-11 00:42:43 +2564 2564 2565 256.4 512.8000000000001 2564 1977-01-08 2024-10-11 00:42:44.000 1977-01-08 2024-10-11 00:42:44 +2566 2566 2567 256.6 513.2 2566 1977-01-10 2024-10-11 00:42:46.000 1977-01-10 2024-10-11 00:42:46 +2567 2567 2568 256.7 513.4 2567 1977-01-11 2024-10-11 00:42:47.000 1977-01-11 2024-10-11 00:42:47 +2568 2568 2569 256.8 513.6 2568 1977-01-12 2024-10-11 00:42:48.000 1977-01-12 2024-10-11 00:42:48 +2569 2569 2570 256.9 513.8000000000001 2569 1977-01-13 2024-10-11 00:42:49.000 1977-01-13 2024-10-11 00:42:49 +2571 2571 2572 257.1 514.2 2571 1977-01-15 2024-10-11 00:42:51.000 1977-01-15 2024-10-11 00:42:51 +2572 2572 2573 257.2 514.4 2572 1977-01-16 2024-10-11 00:42:52.000 1977-01-16 2024-10-11 00:42:52 +2573 2573 2574 257.3 514.6 2573 1977-01-17 2024-10-11 00:42:53.000 1977-01-17 2024-10-11 00:42:53 +2574 2574 2575 257.4 514.8000000000001 2574 1977-01-18 2024-10-11 00:42:54.000 1977-01-18 2024-10-11 00:42:54 +2576 2576 2577 257.6 515.2 2576 1977-01-20 2024-10-11 00:42:56.000 1977-01-20 2024-10-11 00:42:56 +2577 2577 2578 257.7 515.4 2577 1977-01-21 2024-10-11 00:42:57.000 1977-01-21 2024-10-11 00:42:57 +2578 2578 2579 257.8 515.6 2578 1977-01-22 2024-10-11 00:42:58.000 1977-01-22 2024-10-11 00:42:58 +2579 2579 2580 257.9 515.8000000000001 2579 1977-01-23 2024-10-11 00:42:59.000 1977-01-23 2024-10-11 00:42:59 +2581 2581 2582 258.1 516.2 2581 1977-01-25 2024-10-11 00:43:01.000 1977-01-25 2024-10-11 00:43:01 +2582 2582 2583 258.2 516.4 2582 1977-01-26 2024-10-11 00:43:02.000 1977-01-26 2024-10-11 00:43:02 +2583 2583 2584 258.3 516.6 2583 1977-01-27 2024-10-11 00:43:03.000 1977-01-27 2024-10-11 00:43:03 +2584 2584 2585 258.4 516.8000000000001 2584 1977-01-28 2024-10-11 00:43:04.000 1977-01-28 2024-10-11 00:43:04 +2586 2586 2587 258.6 517.2 2586 1977-01-30 2024-10-11 00:43:06.000 1977-01-30 2024-10-11 00:43:06 +2587 2587 2588 258.7 517.4 2587 1977-01-31 2024-10-11 00:43:07.000 1977-01-31 2024-10-11 00:43:07 +2588 2588 2589 258.8 517.6 2588 1977-02-01 2024-10-11 00:43:08.000 1977-02-01 2024-10-11 00:43:08 +2589 2589 2590 258.9 517.8000000000001 2589 1977-02-02 2024-10-11 00:43:09.000 1977-02-02 2024-10-11 00:43:09 +2591 2591 2592 259.1 518.2 2591 1977-02-04 2024-10-11 00:43:11.000 1977-02-04 2024-10-11 00:43:11 +2592 2592 2593 259.2 518.4 2592 1977-02-05 2024-10-11 00:43:12.000 1977-02-05 2024-10-11 00:43:12 +2593 2593 2594 259.3 518.6 2593 1977-02-06 2024-10-11 00:43:13.000 1977-02-06 2024-10-11 00:43:13 +2594 2594 2595 259.4 518.8000000000001 2594 1977-02-07 2024-10-11 00:43:14.000 1977-02-07 2024-10-11 00:43:14 +2596 2596 2597 259.6 519.2 2596 1977-02-09 2024-10-11 00:43:16.000 1977-02-09 2024-10-11 00:43:16 +2597 2597 2598 259.7 519.4 2597 1977-02-10 2024-10-11 00:43:17.000 1977-02-10 2024-10-11 00:43:17 +2598 2598 2599 259.8 519.6 2598 1977-02-11 2024-10-11 00:43:18.000 1977-02-11 2024-10-11 00:43:18 +2599 2599 2600 259.9 519.8000000000001 2599 1977-02-12 2024-10-11 00:43:19.000 1977-02-12 2024-10-11 00:43:19 +2601 2601 2602 260.1 520.2 2601 1977-02-14 2024-10-11 00:43:21.000 1977-02-14 2024-10-11 00:43:21 +2602 2602 2603 260.2 520.4 2602 1977-02-15 2024-10-11 00:43:22.000 1977-02-15 2024-10-11 00:43:22 +2603 2603 2604 260.3 520.6 2603 1977-02-16 2024-10-11 00:43:23.000 1977-02-16 2024-10-11 00:43:23 +2604 2604 2605 260.4 520.8000000000001 2604 1977-02-17 2024-10-11 00:43:24.000 1977-02-17 2024-10-11 00:43:24 +2606 2606 2607 260.6 521.2 2606 1977-02-19 2024-10-11 00:43:26.000 1977-02-19 2024-10-11 00:43:26 +2607 2607 2608 260.7 521.4 2607 1977-02-20 2024-10-11 00:43:27.000 1977-02-20 2024-10-11 00:43:27 +2608 2608 2609 260.8 521.6 2608 1977-02-21 2024-10-11 00:43:28.000 1977-02-21 2024-10-11 00:43:28 +2609 2609 2610 260.9 521.8000000000001 2609 1977-02-22 2024-10-11 00:43:29.000 1977-02-22 2024-10-11 00:43:29 +2611 2611 2612 261.1 522.2 2611 1977-02-24 2024-10-11 00:43:31.000 1977-02-24 2024-10-11 00:43:31 +2612 2612 2613 261.2 522.4 2612 1977-02-25 2024-10-11 00:43:32.000 1977-02-25 2024-10-11 00:43:32 +2613 2613 2614 261.3 522.6 2613 1977-02-26 2024-10-11 00:43:33.000 1977-02-26 2024-10-11 00:43:33 +2614 2614 2615 261.4 522.8000000000001 2614 1977-02-27 2024-10-11 00:43:34.000 1977-02-27 2024-10-11 00:43:34 +2616 2616 2617 261.6 523.2 2616 1977-03-01 2024-10-11 00:43:36.000 1977-03-01 2024-10-11 00:43:36 +2617 2617 2618 261.7 523.4 2617 1977-03-02 2024-10-11 00:43:37.000 1977-03-02 2024-10-11 00:43:37 +2618 2618 2619 261.8 523.6 2618 1977-03-03 2024-10-11 00:43:38.000 1977-03-03 2024-10-11 00:43:38 +2619 2619 2620 261.9 523.8000000000001 2619 1977-03-04 2024-10-11 00:43:39.000 1977-03-04 2024-10-11 00:43:39 +2621 2621 2622 262.1 524.2 2621 1977-03-06 2024-10-11 00:43:41.000 1977-03-06 2024-10-11 00:43:41 +2622 2622 2623 262.2 524.4 2622 1977-03-07 2024-10-11 00:43:42.000 1977-03-07 2024-10-11 00:43:42 +2623 2623 2624 262.3 524.6 2623 1977-03-08 2024-10-11 00:43:43.000 1977-03-08 2024-10-11 00:43:43 +2624 2624 2625 262.4 524.8000000000001 2624 1977-03-09 2024-10-11 00:43:44.000 1977-03-09 2024-10-11 00:43:44 +2626 2626 2627 262.6 525.2 2626 1977-03-11 2024-10-11 00:43:46.000 1977-03-11 2024-10-11 00:43:46 +2627 2627 2628 262.7 525.4 2627 1977-03-12 2024-10-11 00:43:47.000 1977-03-12 2024-10-11 00:43:47 +2628 2628 2629 262.8 525.6 2628 1977-03-13 2024-10-11 00:43:48.000 1977-03-13 2024-10-11 00:43:48 +2629 2629 2630 262.9 525.8000000000001 2629 1977-03-14 2024-10-11 00:43:49.000 1977-03-14 2024-10-11 00:43:49 +2631 2631 2632 263.1 526.2 2631 1977-03-16 2024-10-11 00:43:51.000 1977-03-16 2024-10-11 00:43:51 +2632 2632 2633 263.2 526.4 2632 1977-03-17 2024-10-11 00:43:52.000 1977-03-17 2024-10-11 00:43:52 +2633 2633 2634 263.3 526.6 2633 1977-03-18 2024-10-11 00:43:53.000 1977-03-18 2024-10-11 00:43:53 +2634 2634 2635 263.4 526.8000000000001 2634 1977-03-19 2024-10-11 00:43:54.000 1977-03-19 2024-10-11 00:43:54 +2636 2636 2637 263.6 527.2 2636 1977-03-21 2024-10-11 00:43:56.000 1977-03-21 2024-10-11 00:43:56 +2637 2637 2638 263.7 527.4 2637 1977-03-22 2024-10-11 00:43:57.000 1977-03-22 2024-10-11 00:43:57 +2638 2638 2639 263.8 527.6 2638 1977-03-23 2024-10-11 00:43:58.000 1977-03-23 2024-10-11 00:43:58 +2639 2639 2640 263.9 527.8000000000001 2639 1977-03-24 2024-10-11 00:43:59.000 1977-03-24 2024-10-11 00:43:59 +2641 2641 2642 264.1 528.2 2641 1977-03-26 2024-10-11 00:44:01.000 1977-03-26 2024-10-11 00:44:01 +2642 2642 2643 264.2 528.4 2642 1977-03-27 2024-10-11 00:44:02.000 1977-03-27 2024-10-11 00:44:02 +2643 2643 2644 264.3 528.6 2643 1977-03-28 2024-10-11 00:44:03.000 1977-03-28 2024-10-11 00:44:03 +2644 2644 2645 264.4 528.8000000000001 2644 1977-03-29 2024-10-11 00:44:04.000 1977-03-29 2024-10-11 00:44:04 +2646 2646 2647 264.6 529.2 2646 1977-03-31 2024-10-11 00:44:06.000 1977-03-31 2024-10-11 00:44:06 +2647 2647 2648 264.7 529.4 2647 1977-04-01 2024-10-11 00:44:07.000 1977-04-01 2024-10-11 00:44:07 +2648 2648 2649 264.8 529.6 2648 1977-04-02 2024-10-11 00:44:08.000 1977-04-02 2024-10-11 00:44:08 +2649 2649 2650 264.9 529.8000000000001 2649 1977-04-03 2024-10-11 00:44:09.000 1977-04-03 2024-10-11 00:44:09 +2651 2651 2652 265.1 530.2 2651 1977-04-05 2024-10-11 00:44:11.000 1977-04-05 2024-10-11 00:44:11 +2652 2652 2653 265.2 530.4 2652 1977-04-06 2024-10-11 00:44:12.000 1977-04-06 2024-10-11 00:44:12 +2653 2653 2654 265.3 530.6 2653 1977-04-07 2024-10-11 00:44:13.000 1977-04-07 2024-10-11 00:44:13 +2654 2654 2655 265.4 530.8000000000001 2654 1977-04-08 2024-10-11 00:44:14.000 1977-04-08 2024-10-11 00:44:14 +2656 2656 2657 265.6 531.2 2656 1977-04-10 2024-10-11 00:44:16.000 1977-04-10 2024-10-11 00:44:16 +2657 2657 2658 265.7 531.4 2657 1977-04-11 2024-10-11 00:44:17.000 1977-04-11 2024-10-11 00:44:17 +2658 2658 2659 265.8 531.6 2658 1977-04-12 2024-10-11 00:44:18.000 1977-04-12 2024-10-11 00:44:18 +2659 2659 2660 265.9 531.8000000000001 2659 1977-04-13 2024-10-11 00:44:19.000 1977-04-13 2024-10-11 00:44:19 +2661 2661 2662 266.1 532.2 2661 1977-04-15 2024-10-11 00:44:21.000 1977-04-15 2024-10-11 00:44:21 +2662 2662 2663 266.2 532.4 2662 1977-04-16 2024-10-11 00:44:22.000 1977-04-16 2024-10-11 00:44:22 +2663 2663 2664 266.3 532.6 2663 1977-04-17 2024-10-11 00:44:23.000 1977-04-17 2024-10-11 00:44:23 +2664 2664 2665 266.4 532.8000000000001 2664 1977-04-18 2024-10-11 00:44:24.000 1977-04-18 2024-10-11 00:44:24 +2666 2666 2667 266.6 533.2 2666 1977-04-20 2024-10-11 00:44:26.000 1977-04-20 2024-10-11 00:44:26 +2667 2667 2668 266.7 533.4 2667 1977-04-21 2024-10-11 00:44:27.000 1977-04-21 2024-10-11 00:44:27 +2668 2668 2669 266.8 533.6 2668 1977-04-22 2024-10-11 00:44:28.000 1977-04-22 2024-10-11 00:44:28 +2669 2669 2670 266.9 533.8000000000001 2669 1977-04-23 2024-10-11 00:44:29.000 1977-04-23 2024-10-11 00:44:29 +2671 2671 2672 267.1 534.2 2671 1977-04-25 2024-10-11 00:44:31.000 1977-04-25 2024-10-11 00:44:31 +2672 2672 2673 267.2 534.4 2672 1977-04-26 2024-10-11 00:44:32.000 1977-04-26 2024-10-11 00:44:32 +2673 2673 2674 267.3 534.6 2673 1977-04-27 2024-10-11 00:44:33.000 1977-04-27 2024-10-11 00:44:33 +2674 2674 2675 267.4 534.8000000000001 2674 1977-04-28 2024-10-11 00:44:34.000 1977-04-28 2024-10-11 00:44:34 +2676 2676 2677 267.6 535.2 2676 1977-04-30 2024-10-11 00:44:36.000 1977-04-30 2024-10-11 00:44:36 +2677 2677 2678 267.7 535.4 2677 1977-05-01 2024-10-11 00:44:37.000 1977-05-01 2024-10-11 00:44:37 +2678 2678 2679 267.8 535.6 2678 1977-05-02 2024-10-11 00:44:38.000 1977-05-02 2024-10-11 00:44:38 +2679 2679 2680 267.9 535.8000000000001 2679 1977-05-03 2024-10-11 00:44:39.000 1977-05-03 2024-10-11 00:44:39 +2681 2681 2682 268.1 536.2 2681 1977-05-05 2024-10-11 00:44:41.000 1977-05-05 2024-10-11 00:44:41 +2682 2682 2683 268.2 536.4 2682 1977-05-06 2024-10-11 00:44:42.000 1977-05-06 2024-10-11 00:44:42 +2683 2683 2684 268.3 536.6 2683 1977-05-07 2024-10-11 00:44:43.000 1977-05-07 2024-10-11 00:44:43 +2684 2684 2685 268.4 536.8000000000001 2684 1977-05-08 2024-10-11 00:44:44.000 1977-05-08 2024-10-11 00:44:44 +2686 2686 2687 268.6 537.2 2686 1977-05-10 2024-10-11 00:44:46.000 1977-05-10 2024-10-11 00:44:46 +2687 2687 2688 268.7 537.4 2687 1977-05-11 2024-10-11 00:44:47.000 1977-05-11 2024-10-11 00:44:47 +2688 2688 2689 268.8 537.6 2688 1977-05-12 2024-10-11 00:44:48.000 1977-05-12 2024-10-11 00:44:48 +2689 2689 2690 268.9 537.8000000000001 2689 1977-05-13 2024-10-11 00:44:49.000 1977-05-13 2024-10-11 00:44:49 +2691 2691 2692 269.1 538.2 2691 1977-05-15 2024-10-11 00:44:51.000 1977-05-15 2024-10-11 00:44:51 +2692 2692 2693 269.2 538.4 2692 1977-05-16 2024-10-11 00:44:52.000 1977-05-16 2024-10-11 00:44:52 +2693 2693 2694 269.3 538.6 2693 1977-05-17 2024-10-11 00:44:53.000 1977-05-17 2024-10-11 00:44:53 +2694 2694 2695 269.4 538.8000000000001 2694 1977-05-18 2024-10-11 00:44:54.000 1977-05-18 2024-10-11 00:44:54 +2696 2696 2697 269.6 539.2 2696 1977-05-20 2024-10-11 00:44:56.000 1977-05-20 2024-10-11 00:44:56 +2697 2697 2698 269.7 539.4 2697 1977-05-21 2024-10-11 00:44:57.000 1977-05-21 2024-10-11 00:44:57 +2698 2698 2699 269.8 539.6 2698 1977-05-22 2024-10-11 00:44:58.000 1977-05-22 2024-10-11 00:44:58 +2699 2699 2700 269.9 539.8000000000001 2699 1977-05-23 2024-10-11 00:44:59.000 1977-05-23 2024-10-11 00:44:59 +2701 2701 2702 270.1 540.2 2701 1977-05-25 2024-10-11 00:45:01.000 1977-05-25 2024-10-11 00:45:01 +2702 2702 2703 270.2 540.4 2702 1977-05-26 2024-10-11 00:45:02.000 1977-05-26 2024-10-11 00:45:02 +2703 2703 2704 270.3 540.6 2703 1977-05-27 2024-10-11 00:45:03.000 1977-05-27 2024-10-11 00:45:03 +2704 2704 2705 270.4 540.8000000000001 2704 1977-05-28 2024-10-11 00:45:04.000 1977-05-28 2024-10-11 00:45:04 +2706 2706 2707 270.6 541.2 2706 1977-05-30 2024-10-11 00:45:06.000 1977-05-30 2024-10-11 00:45:06 +2707 2707 2708 270.7 541.4 2707 1977-05-31 2024-10-11 00:45:07.000 1977-05-31 2024-10-11 00:45:07 +2708 2708 2709 270.8 541.6 2708 1977-06-01 2024-10-11 00:45:08.000 1977-06-01 2024-10-11 00:45:08 +2709 2709 2710 270.9 541.8000000000001 2709 1977-06-02 2024-10-11 00:45:09.000 1977-06-02 2024-10-11 00:45:09 +2711 2711 2712 271.1 542.2 2711 1977-06-04 2024-10-11 00:45:11.000 1977-06-04 2024-10-11 00:45:11 +2712 2712 2713 271.2 542.4 2712 1977-06-05 2024-10-11 00:45:12.000 1977-06-05 2024-10-11 00:45:12 +2713 2713 2714 271.3 542.6 2713 1977-06-06 2024-10-11 00:45:13.000 1977-06-06 2024-10-11 00:45:13 +2714 2714 2715 271.4 542.8000000000001 2714 1977-06-07 2024-10-11 00:45:14.000 1977-06-07 2024-10-11 00:45:14 +2716 2716 2717 271.6 543.2 2716 1977-06-09 2024-10-11 00:45:16.000 1977-06-09 2024-10-11 00:45:16 +2717 2717 2718 271.7 543.4 2717 1977-06-10 2024-10-11 00:45:17.000 1977-06-10 2024-10-11 00:45:17 +2718 2718 2719 271.8 543.6 2718 1977-06-11 2024-10-11 00:45:18.000 1977-06-11 2024-10-11 00:45:18 +2719 2719 2720 271.9 543.8000000000001 2719 1977-06-12 2024-10-11 00:45:19.000 1977-06-12 2024-10-11 00:45:19 +2721 2721 2722 272.1 544.2 2721 1977-06-14 2024-10-11 00:45:21.000 1977-06-14 2024-10-11 00:45:21 +2722 2722 2723 272.2 544.4 2722 1977-06-15 2024-10-11 00:45:22.000 1977-06-15 2024-10-11 00:45:22 +2723 2723 2724 272.3 544.6 2723 1977-06-16 2024-10-11 00:45:23.000 1977-06-16 2024-10-11 00:45:23 +2724 2724 2725 272.4 544.8000000000001 2724 1977-06-17 2024-10-11 00:45:24.000 1977-06-17 2024-10-11 00:45:24 +2726 2726 2727 272.6 545.2 2726 1977-06-19 2024-10-11 00:45:26.000 1977-06-19 2024-10-11 00:45:26 +2727 2727 2728 272.7 545.4 2727 1977-06-20 2024-10-11 00:45:27.000 1977-06-20 2024-10-11 00:45:27 +2728 2728 2729 272.8 545.6 2728 1977-06-21 2024-10-11 00:45:28.000 1977-06-21 2024-10-11 00:45:28 +2729 2729 2730 272.9 545.8000000000001 2729 1977-06-22 2024-10-11 00:45:29.000 1977-06-22 2024-10-11 00:45:29 +2731 2731 2732 273.1 546.2 2731 1977-06-24 2024-10-11 00:45:31.000 1977-06-24 2024-10-11 00:45:31 +2732 2732 2733 273.2 546.4 2732 1977-06-25 2024-10-11 00:45:32.000 1977-06-25 2024-10-11 00:45:32 +2733 2733 2734 273.3 546.6 2733 1977-06-26 2024-10-11 00:45:33.000 1977-06-26 2024-10-11 00:45:33 +2734 2734 2735 273.4 546.8000000000001 2734 1977-06-27 2024-10-11 00:45:34.000 1977-06-27 2024-10-11 00:45:34 +2736 2736 2737 273.6 547.2 2736 1977-06-29 2024-10-11 00:45:36.000 1977-06-29 2024-10-11 00:45:36 +2737 2737 2738 273.7 547.4 2737 1977-06-30 2024-10-11 00:45:37.000 1977-06-30 2024-10-11 00:45:37 +2738 2738 2739 273.8 547.6 2738 1977-07-01 2024-10-11 00:45:38.000 1977-07-01 2024-10-11 00:45:38 +2739 2739 2740 273.9 547.8000000000001 2739 1977-07-02 2024-10-11 00:45:39.000 1977-07-02 2024-10-11 00:45:39 +2741 2741 2742 274.1 548.2 2741 1977-07-04 2024-10-11 00:45:41.000 1977-07-04 2024-10-11 00:45:41 +2742 2742 2743 274.2 548.4 2742 1977-07-05 2024-10-11 00:45:42.000 1977-07-05 2024-10-11 00:45:42 +2743 2743 2744 274.3 548.6 2743 1977-07-06 2024-10-11 00:45:43.000 1977-07-06 2024-10-11 00:45:43 +2744 2744 2745 274.4 548.8000000000001 2744 1977-07-07 2024-10-11 00:45:44.000 1977-07-07 2024-10-11 00:45:44 +2746 2746 2747 274.6 549.2 2746 1977-07-09 2024-10-11 00:45:46.000 1977-07-09 2024-10-11 00:45:46 +2747 2747 2748 274.7 549.4 2747 1977-07-10 2024-10-11 00:45:47.000 1977-07-10 2024-10-11 00:45:47 +2748 2748 2749 274.8 549.6 2748 1977-07-11 2024-10-11 00:45:48.000 1977-07-11 2024-10-11 00:45:48 +2749 2749 2750 274.9 549.8000000000001 2749 1977-07-12 2024-10-11 00:45:49.000 1977-07-12 2024-10-11 00:45:49 +2751 2751 2752 275.1 550.2 2751 1977-07-14 2024-10-11 00:45:51.000 1977-07-14 2024-10-11 00:45:51 +2752 2752 2753 275.2 550.4 2752 1977-07-15 2024-10-11 00:45:52.000 1977-07-15 2024-10-11 00:45:52 +2753 2753 2754 275.3 550.6 2753 1977-07-16 2024-10-11 00:45:53.000 1977-07-16 2024-10-11 00:45:53 +2754 2754 2755 275.4 550.8000000000001 2754 1977-07-17 2024-10-11 00:45:54.000 1977-07-17 2024-10-11 00:45:54 +2756 2756 2757 275.6 551.2 2756 1977-07-19 2024-10-11 00:45:56.000 1977-07-19 2024-10-11 00:45:56 +2757 2757 2758 275.7 551.4 2757 1977-07-20 2024-10-11 00:45:57.000 1977-07-20 2024-10-11 00:45:57 +2758 2758 2759 275.8 551.6 2758 1977-07-21 2024-10-11 00:45:58.000 1977-07-21 2024-10-11 00:45:58 +2759 2759 2760 275.9 551.8000000000001 2759 1977-07-22 2024-10-11 00:45:59.000 1977-07-22 2024-10-11 00:45:59 +2761 2761 2762 276.1 552.2 2761 1977-07-24 2024-10-11 00:46:01.000 1977-07-24 2024-10-11 00:46:01 +2762 2762 2763 276.2 552.4 2762 1977-07-25 2024-10-11 00:46:02.000 1977-07-25 2024-10-11 00:46:02 +2763 2763 2764 276.3 552.6 2763 1977-07-26 2024-10-11 00:46:03.000 1977-07-26 2024-10-11 00:46:03 +2764 2764 2765 276.4 552.8000000000001 2764 1977-07-27 2024-10-11 00:46:04.000 1977-07-27 2024-10-11 00:46:04 +2766 2766 2767 276.6 553.2 2766 1977-07-29 2024-10-11 00:46:06.000 1977-07-29 2024-10-11 00:46:06 +2767 2767 2768 276.7 553.4 2767 1977-07-30 2024-10-11 00:46:07.000 1977-07-30 2024-10-11 00:46:07 +2768 2768 2769 276.8 553.6 2768 1977-07-31 2024-10-11 00:46:08.000 1977-07-31 2024-10-11 00:46:08 +2769 2769 2770 276.9 553.8000000000001 2769 1977-08-01 2024-10-11 00:46:09.000 1977-08-01 2024-10-11 00:46:09 +2771 2771 2772 277.1 554.2 2771 1977-08-03 2024-10-11 00:46:11.000 1977-08-03 2024-10-11 00:46:11 +2772 2772 2773 277.2 554.4 2772 1977-08-04 2024-10-11 00:46:12.000 1977-08-04 2024-10-11 00:46:12 +2773 2773 2774 277.3 554.6 2773 1977-08-05 2024-10-11 00:46:13.000 1977-08-05 2024-10-11 00:46:13 +2774 2774 2775 277.4 554.8000000000001 2774 1977-08-06 2024-10-11 00:46:14.000 1977-08-06 2024-10-11 00:46:14 +2776 2776 2777 277.6 555.2 2776 1977-08-08 2024-10-11 00:46:16.000 1977-08-08 2024-10-11 00:46:16 +2777 2777 2778 277.7 555.4 2777 1977-08-09 2024-10-11 00:46:17.000 1977-08-09 2024-10-11 00:46:17 +2778 2778 2779 277.8 555.6 2778 1977-08-10 2024-10-11 00:46:18.000 1977-08-10 2024-10-11 00:46:18 +2779 2779 2780 277.9 555.8000000000001 2779 1977-08-11 2024-10-11 00:46:19.000 1977-08-11 2024-10-11 00:46:19 +2781 2781 2782 278.1 556.2 2781 1977-08-13 2024-10-11 00:46:21.000 1977-08-13 2024-10-11 00:46:21 +2782 2782 2783 278.2 556.4 2782 1977-08-14 2024-10-11 00:46:22.000 1977-08-14 2024-10-11 00:46:22 +2783 2783 2784 278.3 556.6 2783 1977-08-15 2024-10-11 00:46:23.000 1977-08-15 2024-10-11 00:46:23 +2784 2784 2785 278.4 556.8000000000001 2784 1977-08-16 2024-10-11 00:46:24.000 1977-08-16 2024-10-11 00:46:24 +2786 2786 2787 278.6 557.2 2786 1977-08-18 2024-10-11 00:46:26.000 1977-08-18 2024-10-11 00:46:26 +2787 2787 2788 278.7 557.4 2787 1977-08-19 2024-10-11 00:46:27.000 1977-08-19 2024-10-11 00:46:27 +2788 2788 2789 278.8 557.6 2788 1977-08-20 2024-10-11 00:46:28.000 1977-08-20 2024-10-11 00:46:28 +2789 2789 2790 278.9 557.8000000000001 2789 1977-08-21 2024-10-11 00:46:29.000 1977-08-21 2024-10-11 00:46:29 +2791 2791 2792 279.1 558.2 2791 1977-08-23 2024-10-11 00:46:31.000 1977-08-23 2024-10-11 00:46:31 +2792 2792 2793 279.2 558.4 2792 1977-08-24 2024-10-11 00:46:32.000 1977-08-24 2024-10-11 00:46:32 +2793 2793 2794 279.3 558.6 2793 1977-08-25 2024-10-11 00:46:33.000 1977-08-25 2024-10-11 00:46:33 +2794 2794 2795 279.4 558.8000000000001 2794 1977-08-26 2024-10-11 00:46:34.000 1977-08-26 2024-10-11 00:46:34 +2796 2796 2797 279.6 559.2 2796 1977-08-28 2024-10-11 00:46:36.000 1977-08-28 2024-10-11 00:46:36 +2797 2797 2798 279.7 559.4 2797 1977-08-29 2024-10-11 00:46:37.000 1977-08-29 2024-10-11 00:46:37 +2798 2798 2799 279.8 559.6 2798 1977-08-30 2024-10-11 00:46:38.000 1977-08-30 2024-10-11 00:46:38 +2799 2799 2800 279.9 559.8000000000001 2799 1977-08-31 2024-10-11 00:46:39.000 1977-08-31 2024-10-11 00:46:39 +2801 2801 2802 280.1 560.2 2801 1977-09-02 2024-10-11 00:46:41.000 1977-09-02 2024-10-11 00:46:41 +2802 2802 2803 280.2 560.4 2802 1977-09-03 2024-10-11 00:46:42.000 1977-09-03 2024-10-11 00:46:42 +2803 2803 2804 280.3 560.6 2803 1977-09-04 2024-10-11 00:46:43.000 1977-09-04 2024-10-11 00:46:43 +2804 2804 2805 280.4 560.8000000000001 2804 1977-09-05 2024-10-11 00:46:44.000 1977-09-05 2024-10-11 00:46:44 +2806 2806 2807 280.6 561.2 2806 1977-09-07 2024-10-11 00:46:46.000 1977-09-07 2024-10-11 00:46:46 +2807 2807 2808 280.7 561.4 2807 1977-09-08 2024-10-11 00:46:47.000 1977-09-08 2024-10-11 00:46:47 +2808 2808 2809 280.8 561.6 2808 1977-09-09 2024-10-11 00:46:48.000 1977-09-09 2024-10-11 00:46:48 +2809 2809 2810 280.9 561.8000000000001 2809 1977-09-10 2024-10-11 00:46:49.000 1977-09-10 2024-10-11 00:46:49 +2811 2811 2812 281.1 562.2 2811 1977-09-12 2024-10-11 00:46:51.000 1977-09-12 2024-10-11 00:46:51 +2812 2812 2813 281.2 562.4 2812 1977-09-13 2024-10-11 00:46:52.000 1977-09-13 2024-10-11 00:46:52 +2813 2813 2814 281.3 562.6 2813 1977-09-14 2024-10-11 00:46:53.000 1977-09-14 2024-10-11 00:46:53 +2814 2814 2815 281.4 562.8000000000001 2814 1977-09-15 2024-10-11 00:46:54.000 1977-09-15 2024-10-11 00:46:54 +2816 2816 2817 281.6 563.2 2816 1977-09-17 2024-10-11 00:46:56.000 1977-09-17 2024-10-11 00:46:56 +2817 2817 2818 281.7 563.4 2817 1977-09-18 2024-10-11 00:46:57.000 1977-09-18 2024-10-11 00:46:57 +2818 2818 2819 281.8 563.6 2818 1977-09-19 2024-10-11 00:46:58.000 1977-09-19 2024-10-11 00:46:58 +2819 2819 2820 281.9 563.8000000000001 2819 1977-09-20 2024-10-11 00:46:59.000 1977-09-20 2024-10-11 00:46:59 +2821 2821 2822 282.1 564.2 2821 1977-09-22 2024-10-11 00:47:01.000 1977-09-22 2024-10-11 00:47:01 +2822 2822 2823 282.2 564.4 2822 1977-09-23 2024-10-11 00:47:02.000 1977-09-23 2024-10-11 00:47:02 +2823 2823 2824 282.3 564.6 2823 1977-09-24 2024-10-11 00:47:03.000 1977-09-24 2024-10-11 00:47:03 +2824 2824 2825 282.4 564.8000000000001 2824 1977-09-25 2024-10-11 00:47:04.000 1977-09-25 2024-10-11 00:47:04 +2826 2826 2827 282.6 565.2 2826 1977-09-27 2024-10-11 00:47:06.000 1977-09-27 2024-10-11 00:47:06 +2827 2827 2828 282.7 565.4 2827 1977-09-28 2024-10-11 00:47:07.000 1977-09-28 2024-10-11 00:47:07 +2828 2828 2829 282.8 565.6 2828 1977-09-29 2024-10-11 00:47:08.000 1977-09-29 2024-10-11 00:47:08 +2829 2829 2830 282.9 565.8000000000001 2829 1977-09-30 2024-10-11 00:47:09.000 1977-09-30 2024-10-11 00:47:09 +2831 2831 2832 283.1 566.2 2831 1977-10-02 2024-10-11 00:47:11.000 1977-10-02 2024-10-11 00:47:11 +2832 2832 2833 283.2 566.4 2832 1977-10-03 2024-10-11 00:47:12.000 1977-10-03 2024-10-11 00:47:12 +2833 2833 2834 283.3 566.6 2833 1977-10-04 2024-10-11 00:47:13.000 1977-10-04 2024-10-11 00:47:13 +2834 2834 2835 283.4 566.8000000000001 2834 1977-10-05 2024-10-11 00:47:14.000 1977-10-05 2024-10-11 00:47:14 +2836 2836 2837 283.6 567.2 2836 1977-10-07 2024-10-11 00:47:16.000 1977-10-07 2024-10-11 00:47:16 +2837 2837 2838 283.7 567.4 2837 1977-10-08 2024-10-11 00:47:17.000 1977-10-08 2024-10-11 00:47:17 +2838 2838 2839 283.8 567.6 2838 1977-10-09 2024-10-11 00:47:18.000 1977-10-09 2024-10-11 00:47:18 +2839 2839 2840 283.9 567.8000000000001 2839 1977-10-10 2024-10-11 00:47:19.000 1977-10-10 2024-10-11 00:47:19 +2841 2841 2842 284.1 568.2 2841 1977-10-12 2024-10-11 00:47:21.000 1977-10-12 2024-10-11 00:47:21 +2842 2842 2843 284.2 568.4 2842 1977-10-13 2024-10-11 00:47:22.000 1977-10-13 2024-10-11 00:47:22 +2843 2843 2844 284.3 568.6 2843 1977-10-14 2024-10-11 00:47:23.000 1977-10-14 2024-10-11 00:47:23 +2844 2844 2845 284.4 568.8000000000001 2844 1977-10-15 2024-10-11 00:47:24.000 1977-10-15 2024-10-11 00:47:24 +2846 2846 2847 284.6 569.2 2846 1977-10-17 2024-10-11 00:47:26.000 1977-10-17 2024-10-11 00:47:26 +2847 2847 2848 284.7 569.4 2847 1977-10-18 2024-10-11 00:47:27.000 1977-10-18 2024-10-11 00:47:27 +2848 2848 2849 284.8 569.6 2848 1977-10-19 2024-10-11 00:47:28.000 1977-10-19 2024-10-11 00:47:28 +2849 2849 2850 284.9 569.8000000000001 2849 1977-10-20 2024-10-11 00:47:29.000 1977-10-20 2024-10-11 00:47:29 +2851 2851 2852 285.1 570.2 2851 1977-10-22 2024-10-11 00:47:31.000 1977-10-22 2024-10-11 00:47:31 +2852 2852 2853 285.2 570.4 2852 1977-10-23 2024-10-11 00:47:32.000 1977-10-23 2024-10-11 00:47:32 +2853 2853 2854 285.3 570.6 2853 1977-10-24 2024-10-11 00:47:33.000 1977-10-24 2024-10-11 00:47:33 +2854 2854 2855 285.4 570.8000000000001 2854 1977-10-25 2024-10-11 00:47:34.000 1977-10-25 2024-10-11 00:47:34 +2856 2856 2857 285.6 571.2 2856 1977-10-27 2024-10-11 00:47:36.000 1977-10-27 2024-10-11 00:47:36 +2857 2857 2858 285.7 571.4 2857 1977-10-28 2024-10-11 00:47:37.000 1977-10-28 2024-10-11 00:47:37 +2858 2858 2859 285.8 571.6 2858 1977-10-29 2024-10-11 00:47:38.000 1977-10-29 2024-10-11 00:47:38 +2859 2859 2860 285.9 571.8000000000001 2859 1977-10-30 2024-10-11 00:47:39.000 1977-10-30 2024-10-11 00:47:39 +2861 2861 2862 286.1 572.2 2861 1977-11-01 2024-10-11 00:47:41.000 1977-11-01 2024-10-11 00:47:41 +2862 2862 2863 286.2 572.4 2862 1977-11-02 2024-10-11 00:47:42.000 1977-11-02 2024-10-11 00:47:42 +2863 2863 2864 286.3 572.6 2863 1977-11-03 2024-10-11 00:47:43.000 1977-11-03 2024-10-11 00:47:43 +2864 2864 2865 286.4 572.8000000000001 2864 1977-11-04 2024-10-11 00:47:44.000 1977-11-04 2024-10-11 00:47:44 +2866 2866 2867 286.6 573.2 2866 1977-11-06 2024-10-11 00:47:46.000 1977-11-06 2024-10-11 00:47:46 +2867 2867 2868 286.7 573.4 2867 1977-11-07 2024-10-11 00:47:47.000 1977-11-07 2024-10-11 00:47:47 +2868 2868 2869 286.8 573.6 2868 1977-11-08 2024-10-11 00:47:48.000 1977-11-08 2024-10-11 00:47:48 +2869 2869 2870 286.9 573.8000000000001 2869 1977-11-09 2024-10-11 00:47:49.000 1977-11-09 2024-10-11 00:47:49 +2871 2871 2872 287.1 574.2 2871 1977-11-11 2024-10-11 00:47:51.000 1977-11-11 2024-10-11 00:47:51 +2872 2872 2873 287.2 574.4 2872 1977-11-12 2024-10-11 00:47:52.000 1977-11-12 2024-10-11 00:47:52 +2873 2873 2874 287.3 574.6 2873 1977-11-13 2024-10-11 00:47:53.000 1977-11-13 2024-10-11 00:47:53 +2874 2874 2875 287.4 574.8000000000001 2874 1977-11-14 2024-10-11 00:47:54.000 1977-11-14 2024-10-11 00:47:54 +2876 2876 2877 287.6 575.2 2876 1977-11-16 2024-10-11 00:47:56.000 1977-11-16 2024-10-11 00:47:56 +2877 2877 2878 287.7 575.4 2877 1977-11-17 2024-10-11 00:47:57.000 1977-11-17 2024-10-11 00:47:57 +2878 2878 2879 287.8 575.6 2878 1977-11-18 2024-10-11 00:47:58.000 1977-11-18 2024-10-11 00:47:58 +2879 2879 2880 287.9 575.8000000000001 2879 1977-11-19 2024-10-11 00:47:59.000 1977-11-19 2024-10-11 00:47:59 +2881 2881 2882 288.1 576.2 2881 1977-11-21 2024-10-11 00:48:01.000 1977-11-21 2024-10-11 00:48:01 +2882 2882 2883 288.2 576.4 2882 1977-11-22 2024-10-11 00:48:02.000 1977-11-22 2024-10-11 00:48:02 +2883 2883 2884 288.3 576.6 2883 1977-11-23 2024-10-11 00:48:03.000 1977-11-23 2024-10-11 00:48:03 +2884 2884 2885 288.4 576.8000000000001 2884 1977-11-24 2024-10-11 00:48:04.000 1977-11-24 2024-10-11 00:48:04 +2886 2886 2887 288.6 577.2 2886 1977-11-26 2024-10-11 00:48:06.000 1977-11-26 2024-10-11 00:48:06 +2887 2887 2888 288.7 577.4 2887 1977-11-27 2024-10-11 00:48:07.000 1977-11-27 2024-10-11 00:48:07 +2888 2888 2889 288.8 577.6 2888 1977-11-28 2024-10-11 00:48:08.000 1977-11-28 2024-10-11 00:48:08 +2889 2889 2890 288.9 577.8000000000001 2889 1977-11-29 2024-10-11 00:48:09.000 1977-11-29 2024-10-11 00:48:09 +2891 2891 2892 289.1 578.2 2891 1977-12-01 2024-10-11 00:48:11.000 1977-12-01 2024-10-11 00:48:11 +2892 2892 2893 289.2 578.4 2892 1977-12-02 2024-10-11 00:48:12.000 1977-12-02 2024-10-11 00:48:12 +2893 2893 2894 289.3 578.6 2893 1977-12-03 2024-10-11 00:48:13.000 1977-12-03 2024-10-11 00:48:13 +2894 2894 2895 289.4 578.8000000000001 2894 1977-12-04 2024-10-11 00:48:14.000 1977-12-04 2024-10-11 00:48:14 +2896 2896 2897 289.6 579.2 2896 1977-12-06 2024-10-11 00:48:16.000 1977-12-06 2024-10-11 00:48:16 +2897 2897 2898 289.7 579.4 2897 1977-12-07 2024-10-11 00:48:17.000 1977-12-07 2024-10-11 00:48:17 +2898 2898 2899 289.8 579.6 2898 1977-12-08 2024-10-11 00:48:18.000 1977-12-08 2024-10-11 00:48:18 +2899 2899 2900 289.9 579.8000000000001 2899 1977-12-09 2024-10-11 00:48:19.000 1977-12-09 2024-10-11 00:48:19 +2901 2901 2902 290.1 580.2 2901 1977-12-11 2024-10-11 00:48:21.000 1977-12-11 2024-10-11 00:48:21 +2902 2902 2903 290.2 580.4 2902 1977-12-12 2024-10-11 00:48:22.000 1977-12-12 2024-10-11 00:48:22 +2903 2903 2904 290.3 580.6 2903 1977-12-13 2024-10-11 00:48:23.000 1977-12-13 2024-10-11 00:48:23 +2904 2904 2905 290.4 580.8000000000001 2904 1977-12-14 2024-10-11 00:48:24.000 1977-12-14 2024-10-11 00:48:24 +2906 2906 2907 290.6 581.2 2906 1977-12-16 2024-10-11 00:48:26.000 1977-12-16 2024-10-11 00:48:26 +2907 2907 2908 290.7 581.4 2907 1977-12-17 2024-10-11 00:48:27.000 1977-12-17 2024-10-11 00:48:27 +2908 2908 2909 290.8 581.6 2908 1977-12-18 2024-10-11 00:48:28.000 1977-12-18 2024-10-11 00:48:28 +2909 2909 2910 290.9 581.8000000000001 2909 1977-12-19 2024-10-11 00:48:29.000 1977-12-19 2024-10-11 00:48:29 +2911 2911 2912 291.1 582.2 2911 1977-12-21 2024-10-11 00:48:31.000 1977-12-21 2024-10-11 00:48:31 +2912 2912 2913 291.2 582.4 2912 1977-12-22 2024-10-11 00:48:32.000 1977-12-22 2024-10-11 00:48:32 +2913 2913 2914 291.3 582.6 2913 1977-12-23 2024-10-11 00:48:33.000 1977-12-23 2024-10-11 00:48:33 +2914 2914 2915 291.4 582.8000000000001 2914 1977-12-24 2024-10-11 00:48:34.000 1977-12-24 2024-10-11 00:48:34 +2916 2916 2917 291.6 583.2 2916 1977-12-26 2024-10-11 00:48:36.000 1977-12-26 2024-10-11 00:48:36 +2917 2917 2918 291.7 583.4 2917 1977-12-27 2024-10-11 00:48:37.000 1977-12-27 2024-10-11 00:48:37 +2918 2918 2919 291.8 583.6 2918 1977-12-28 2024-10-11 00:48:38.000 1977-12-28 2024-10-11 00:48:38 +2919 2919 2920 291.9 583.8000000000001 2919 1977-12-29 2024-10-11 00:48:39.000 1977-12-29 2024-10-11 00:48:39 +2921 2921 2922 292.1 584.2 2921 1977-12-31 2024-10-11 00:48:41.000 1977-12-31 2024-10-11 00:48:41 +2922 2922 2923 292.2 584.4 2922 1978-01-01 2024-10-11 00:48:42.000 1978-01-01 2024-10-11 00:48:42 +2923 2923 2924 292.3 584.6 2923 1978-01-02 2024-10-11 00:48:43.000 1978-01-02 2024-10-11 00:48:43 +2924 2924 2925 292.4 584.8000000000001 2924 1978-01-03 2024-10-11 00:48:44.000 1978-01-03 2024-10-11 00:48:44 +2926 2926 2927 292.6 585.2 2926 1978-01-05 2024-10-11 00:48:46.000 1978-01-05 2024-10-11 00:48:46 +2927 2927 2928 292.7 585.4 2927 1978-01-06 2024-10-11 00:48:47.000 1978-01-06 2024-10-11 00:48:47 +2928 2928 2929 292.8 585.6 2928 1978-01-07 2024-10-11 00:48:48.000 1978-01-07 2024-10-11 00:48:48 +2929 2929 2930 292.9 585.8000000000001 2929 1978-01-08 2024-10-11 00:48:49.000 1978-01-08 2024-10-11 00:48:49 +2931 2931 2932 293.1 586.2 2931 1978-01-10 2024-10-11 00:48:51.000 1978-01-10 2024-10-11 00:48:51 +2932 2932 2933 293.2 586.4 2932 1978-01-11 2024-10-11 00:48:52.000 1978-01-11 2024-10-11 00:48:52 +2933 2933 2934 293.3 586.6 2933 1978-01-12 2024-10-11 00:48:53.000 1978-01-12 2024-10-11 00:48:53 +2934 2934 2935 293.4 586.8000000000001 2934 1978-01-13 2024-10-11 00:48:54.000 1978-01-13 2024-10-11 00:48:54 +2936 2936 2937 293.6 587.2 2936 1978-01-15 2024-10-11 00:48:56.000 1978-01-15 2024-10-11 00:48:56 +2937 2937 2938 293.7 587.4 2937 1978-01-16 2024-10-11 00:48:57.000 1978-01-16 2024-10-11 00:48:57 +2938 2938 2939 293.8 587.6 2938 1978-01-17 2024-10-11 00:48:58.000 1978-01-17 2024-10-11 00:48:58 +2939 2939 2940 293.9 587.8000000000001 2939 1978-01-18 2024-10-11 00:48:59.000 1978-01-18 2024-10-11 00:48:59 +2941 2941 2942 294.1 588.2 2941 1978-01-20 2024-10-11 00:49:01.000 1978-01-20 2024-10-11 00:49:01 +2942 2942 2943 294.2 588.4 2942 1978-01-21 2024-10-11 00:49:02.000 1978-01-21 2024-10-11 00:49:02 +2943 2943 2944 294.3 588.6 2943 1978-01-22 2024-10-11 00:49:03.000 1978-01-22 2024-10-11 00:49:03 +2944 2944 2945 294.4 588.8000000000001 2944 1978-01-23 2024-10-11 00:49:04.000 1978-01-23 2024-10-11 00:49:04 +2946 2946 2947 294.6 589.2 2946 1978-01-25 2024-10-11 00:49:06.000 1978-01-25 2024-10-11 00:49:06 +2947 2947 2948 294.7 589.4 2947 1978-01-26 2024-10-11 00:49:07.000 1978-01-26 2024-10-11 00:49:07 +2948 2948 2949 294.8 589.6 2948 1978-01-27 2024-10-11 00:49:08.000 1978-01-27 2024-10-11 00:49:08 +2949 2949 2950 294.9 589.8000000000001 2949 1978-01-28 2024-10-11 00:49:09.000 1978-01-28 2024-10-11 00:49:09 +2951 2951 2952 295.1 590.2 2951 1978-01-30 2024-10-11 00:49:11.000 1978-01-30 2024-10-11 00:49:11 +2952 2952 2953 295.2 590.4 2952 1978-01-31 2024-10-11 00:49:12.000 1978-01-31 2024-10-11 00:49:12 +2953 2953 2954 295.3 590.6 2953 1978-02-01 2024-10-11 00:49:13.000 1978-02-01 2024-10-11 00:49:13 +2954 2954 2955 295.4 590.8000000000001 2954 1978-02-02 2024-10-11 00:49:14.000 1978-02-02 2024-10-11 00:49:14 +2956 2956 2957 295.6 591.2 2956 1978-02-04 2024-10-11 00:49:16.000 1978-02-04 2024-10-11 00:49:16 +2957 2957 2958 295.7 591.4 2957 1978-02-05 2024-10-11 00:49:17.000 1978-02-05 2024-10-11 00:49:17 +2958 2958 2959 295.8 591.6 2958 1978-02-06 2024-10-11 00:49:18.000 1978-02-06 2024-10-11 00:49:18 +2959 2959 2960 295.9 591.8000000000001 2959 1978-02-07 2024-10-11 00:49:19.000 1978-02-07 2024-10-11 00:49:19 +2961 2961 2962 296.1 592.2 2961 1978-02-09 2024-10-11 00:49:21.000 1978-02-09 2024-10-11 00:49:21 +2962 2962 2963 296.2 592.4 2962 1978-02-10 2024-10-11 00:49:22.000 1978-02-10 2024-10-11 00:49:22 +2963 2963 2964 296.3 592.6 2963 1978-02-11 2024-10-11 00:49:23.000 1978-02-11 2024-10-11 00:49:23 +2964 2964 2965 296.4 592.8000000000001 2964 1978-02-12 2024-10-11 00:49:24.000 1978-02-12 2024-10-11 00:49:24 +2966 2966 2967 296.6 593.2 2966 1978-02-14 2024-10-11 00:49:26.000 1978-02-14 2024-10-11 00:49:26 +2967 2967 2968 296.7 593.4 2967 1978-02-15 2024-10-11 00:49:27.000 1978-02-15 2024-10-11 00:49:27 +2968 2968 2969 296.8 593.6 2968 1978-02-16 2024-10-11 00:49:28.000 1978-02-16 2024-10-11 00:49:28 +2969 2969 2970 296.9 593.8000000000001 2969 1978-02-17 2024-10-11 00:49:29.000 1978-02-17 2024-10-11 00:49:29 +2971 2971 2972 297.1 594.2 2971 1978-02-19 2024-10-11 00:49:31.000 1978-02-19 2024-10-11 00:49:31 +2972 2972 2973 297.2 594.4 2972 1978-02-20 2024-10-11 00:49:32.000 1978-02-20 2024-10-11 00:49:32 +2973 2973 2974 297.3 594.6 2973 1978-02-21 2024-10-11 00:49:33.000 1978-02-21 2024-10-11 00:49:33 +2974 2974 2975 297.4 594.8000000000001 2974 1978-02-22 2024-10-11 00:49:34.000 1978-02-22 2024-10-11 00:49:34 +2976 2976 2977 297.6 595.2 2976 1978-02-24 2024-10-11 00:49:36.000 1978-02-24 2024-10-11 00:49:36 +2977 2977 2978 297.7 595.4 2977 1978-02-25 2024-10-11 00:49:37.000 1978-02-25 2024-10-11 00:49:37 +2978 2978 2979 297.8 595.6 2978 1978-02-26 2024-10-11 00:49:38.000 1978-02-26 2024-10-11 00:49:38 +2979 2979 2980 297.9 595.8000000000001 2979 1978-02-27 2024-10-11 00:49:39.000 1978-02-27 2024-10-11 00:49:39 +2981 2981 2982 298.1 596.2 2981 1978-03-01 2024-10-11 00:49:41.000 1978-03-01 2024-10-11 00:49:41 +2982 2982 2983 298.2 596.4 2982 1978-03-02 2024-10-11 00:49:42.000 1978-03-02 2024-10-11 00:49:42 +2983 2983 2984 298.3 596.6 2983 1978-03-03 2024-10-11 00:49:43.000 1978-03-03 2024-10-11 00:49:43 +2984 2984 2985 298.4 596.8000000000001 2984 1978-03-04 2024-10-11 00:49:44.000 1978-03-04 2024-10-11 00:49:44 +2986 2986 2987 298.6 597.2 2986 1978-03-06 2024-10-11 00:49:46.000 1978-03-06 2024-10-11 00:49:46 +2987 2987 2988 298.7 597.4 2987 1978-03-07 2024-10-11 00:49:47.000 1978-03-07 2024-10-11 00:49:47 +2988 2988 2989 298.8 597.6 2988 1978-03-08 2024-10-11 00:49:48.000 1978-03-08 2024-10-11 00:49:48 +2989 2989 2990 298.9 597.8000000000001 2989 1978-03-09 2024-10-11 00:49:49.000 1978-03-09 2024-10-11 00:49:49 +2991 2991 2992 299.1 598.2 2991 1978-03-11 2024-10-11 00:49:51.000 1978-03-11 2024-10-11 00:49:51 +2992 2992 2993 299.2 598.4 2992 1978-03-12 2024-10-11 00:49:52.000 1978-03-12 2024-10-11 00:49:52 +2993 2993 2994 299.3 598.6 2993 1978-03-13 2024-10-11 00:49:53.000 1978-03-13 2024-10-11 00:49:53 +2994 2994 2995 299.4 598.8000000000001 2994 1978-03-14 2024-10-11 00:49:54.000 1978-03-14 2024-10-11 00:49:54 +2996 2996 2997 299.6 599.2 2996 1978-03-16 2024-10-11 00:49:56.000 1978-03-16 2024-10-11 00:49:56 +2997 2997 2998 299.7 599.4 2997 1978-03-17 2024-10-11 00:49:57.000 1978-03-17 2024-10-11 00:49:57 +2998 2998 2999 299.8 599.6 2998 1978-03-18 2024-10-11 00:49:58.000 1978-03-18 2024-10-11 00:49:58 +2999 2999 3000 299.9 599.8000000000001 2999 1978-03-19 2024-10-11 00:49:59.000 1978-03-19 2024-10-11 00:49:59 +3001 3001 3002 300.1 600.2 3001 1978-03-21 2024-10-11 00:50:01.000 1978-03-21 2024-10-11 00:50:01 +3002 3002 3003 300.2 600.4 3002 1978-03-22 2024-10-11 00:50:02.000 1978-03-22 2024-10-11 00:50:02 +3003 3003 3004 300.3 600.6 3003 1978-03-23 2024-10-11 00:50:03.000 1978-03-23 2024-10-11 00:50:03 +3004 3004 3005 300.4 600.8000000000001 3004 1978-03-24 2024-10-11 00:50:04.000 1978-03-24 2024-10-11 00:50:04 +3006 3006 3007 300.6 601.2 3006 1978-03-26 2024-10-11 00:50:06.000 1978-03-26 2024-10-11 00:50:06 +3007 3007 3008 300.7 601.4 3007 1978-03-27 2024-10-11 00:50:07.000 1978-03-27 2024-10-11 00:50:07 +3008 3008 3009 300.8 601.6 3008 1978-03-28 2024-10-11 00:50:08.000 1978-03-28 2024-10-11 00:50:08 +3009 3009 3010 300.9 601.8000000000001 3009 1978-03-29 2024-10-11 00:50:09.000 1978-03-29 2024-10-11 00:50:09 +3011 3011 3012 301.1 602.2 3011 1978-03-31 2024-10-11 00:50:11.000 1978-03-31 2024-10-11 00:50:11 +3012 3012 3013 301.2 602.4 3012 1978-04-01 2024-10-11 00:50:12.000 1978-04-01 2024-10-11 00:50:12 +3013 3013 3014 301.3 602.6 3013 1978-04-02 2024-10-11 00:50:13.000 1978-04-02 2024-10-11 00:50:13 +3014 3014 3015 301.4 602.8000000000001 3014 1978-04-03 2024-10-11 00:50:14.000 1978-04-03 2024-10-11 00:50:14 +3016 3016 3017 301.6 603.2 3016 1978-04-05 2024-10-11 00:50:16.000 1978-04-05 2024-10-11 00:50:16 +3017 3017 3018 301.7 603.4 3017 1978-04-06 2024-10-11 00:50:17.000 1978-04-06 2024-10-11 00:50:17 +3018 3018 3019 301.8 603.6 3018 1978-04-07 2024-10-11 00:50:18.000 1978-04-07 2024-10-11 00:50:18 +3019 3019 3020 301.9 603.8000000000001 3019 1978-04-08 2024-10-11 00:50:19.000 1978-04-08 2024-10-11 00:50:19 +3021 3021 3022 302.1 604.2 3021 1978-04-10 2024-10-11 00:50:21.000 1978-04-10 2024-10-11 00:50:21 +3022 3022 3023 302.2 604.4 3022 1978-04-11 2024-10-11 00:50:22.000 1978-04-11 2024-10-11 00:50:22 +3023 3023 3024 302.3 604.6 3023 1978-04-12 2024-10-11 00:50:23.000 1978-04-12 2024-10-11 00:50:23 +3024 3024 3025 302.4 604.8000000000001 3024 1978-04-13 2024-10-11 00:50:24.000 1978-04-13 2024-10-11 00:50:24 +3026 3026 3027 302.6 605.2 3026 1978-04-15 2024-10-11 00:50:26.000 1978-04-15 2024-10-11 00:50:26 +3027 3027 3028 302.7 605.4 3027 1978-04-16 2024-10-11 00:50:27.000 1978-04-16 2024-10-11 00:50:27 +3028 3028 3029 302.8 605.6 3028 1978-04-17 2024-10-11 00:50:28.000 1978-04-17 2024-10-11 00:50:28 +3029 3029 3030 302.9 605.8000000000001 3029 1978-04-18 2024-10-11 00:50:29.000 1978-04-18 2024-10-11 00:50:29 +3031 3031 3032 303.1 606.2 3031 1978-04-20 2024-10-11 00:50:31.000 1978-04-20 2024-10-11 00:50:31 +3032 3032 3033 303.2 606.4 3032 1978-04-21 2024-10-11 00:50:32.000 1978-04-21 2024-10-11 00:50:32 +3033 3033 3034 303.3 606.6 3033 1978-04-22 2024-10-11 00:50:33.000 1978-04-22 2024-10-11 00:50:33 +3034 3034 3035 303.4 606.8000000000001 3034 1978-04-23 2024-10-11 00:50:34.000 1978-04-23 2024-10-11 00:50:34 +3036 3036 3037 303.6 607.2 3036 1978-04-25 2024-10-11 00:50:36.000 1978-04-25 2024-10-11 00:50:36 +3037 3037 3038 303.7 607.4 3037 1978-04-26 2024-10-11 00:50:37.000 1978-04-26 2024-10-11 00:50:37 +3038 3038 3039 303.8 607.6 3038 1978-04-27 2024-10-11 00:50:38.000 1978-04-27 2024-10-11 00:50:38 +3039 3039 3040 303.9 607.8000000000001 3039 1978-04-28 2024-10-11 00:50:39.000 1978-04-28 2024-10-11 00:50:39 +3041 3041 3042 304.1 608.2 3041 1978-04-30 2024-10-11 00:50:41.000 1978-04-30 2024-10-11 00:50:41 +3042 3042 3043 304.2 608.4 3042 1978-05-01 2024-10-11 00:50:42.000 1978-05-01 2024-10-11 00:50:42 +3043 3043 3044 304.3 608.6 3043 1978-05-02 2024-10-11 00:50:43.000 1978-05-02 2024-10-11 00:50:43 +3044 3044 3045 304.4 608.8000000000001 3044 1978-05-03 2024-10-11 00:50:44.000 1978-05-03 2024-10-11 00:50:44 +3046 3046 3047 304.6 609.2 3046 1978-05-05 2024-10-11 00:50:46.000 1978-05-05 2024-10-11 00:50:46 +3047 3047 3048 304.7 609.4 3047 1978-05-06 2024-10-11 00:50:47.000 1978-05-06 2024-10-11 00:50:47 +3048 3048 3049 304.8 609.6 3048 1978-05-07 2024-10-11 00:50:48.000 1978-05-07 2024-10-11 00:50:48 +3049 3049 3050 304.9 609.8000000000001 3049 1978-05-08 2024-10-11 00:50:49.000 1978-05-08 2024-10-11 00:50:49 +3051 3051 3052 305.1 610.2 3051 1978-05-10 2024-10-11 00:50:51.000 1978-05-10 2024-10-11 00:50:51 +3052 3052 3053 305.2 610.4 3052 1978-05-11 2024-10-11 00:50:52.000 1978-05-11 2024-10-11 00:50:52 +3053 3053 3054 305.3 610.6 3053 1978-05-12 2024-10-11 00:50:53.000 1978-05-12 2024-10-11 00:50:53 +3054 3054 3055 305.4 610.8000000000001 3054 1978-05-13 2024-10-11 00:50:54.000 1978-05-13 2024-10-11 00:50:54 +3056 3056 3057 305.6 611.2 3056 1978-05-15 2024-10-11 00:50:56.000 1978-05-15 2024-10-11 00:50:56 +3057 3057 3058 305.7 611.4 3057 1978-05-16 2024-10-11 00:50:57.000 1978-05-16 2024-10-11 00:50:57 +3058 3058 3059 305.8 611.6 3058 1978-05-17 2024-10-11 00:50:58.000 1978-05-17 2024-10-11 00:50:58 +3059 3059 3060 305.9 611.8000000000001 3059 1978-05-18 2024-10-11 00:50:59.000 1978-05-18 2024-10-11 00:50:59 +3061 3061 3062 306.1 612.2 3061 1978-05-20 2024-10-11 00:51:01.000 1978-05-20 2024-10-11 00:51:01 +3062 3062 3063 306.2 612.4 3062 1978-05-21 2024-10-11 00:51:02.000 1978-05-21 2024-10-11 00:51:02 +3063 3063 3064 306.3 612.6 3063 1978-05-22 2024-10-11 00:51:03.000 1978-05-22 2024-10-11 00:51:03 +3064 3064 3065 306.4 612.8000000000001 3064 1978-05-23 2024-10-11 00:51:04.000 1978-05-23 2024-10-11 00:51:04 +3066 3066 3067 306.6 613.2 3066 1978-05-25 2024-10-11 00:51:06.000 1978-05-25 2024-10-11 00:51:06 +3067 3067 3068 306.7 613.4 3067 1978-05-26 2024-10-11 00:51:07.000 1978-05-26 2024-10-11 00:51:07 +3068 3068 3069 306.8 613.6 3068 1978-05-27 2024-10-11 00:51:08.000 1978-05-27 2024-10-11 00:51:08 +3069 3069 3070 306.9 613.8000000000001 3069 1978-05-28 2024-10-11 00:51:09.000 1978-05-28 2024-10-11 00:51:09 +3071 3071 3072 307.1 614.2 3071 1978-05-30 2024-10-11 00:51:11.000 1978-05-30 2024-10-11 00:51:11 +3072 3072 3073 307.2 614.4000000000001 3072 1978-05-31 2024-10-11 00:51:12.000 1978-05-31 2024-10-11 00:51:12 +3073 3073 3074 307.3 614.6 3073 1978-06-01 2024-10-11 00:51:13.000 1978-06-01 2024-10-11 00:51:13 +3074 3074 3075 307.4 614.8000000000001 3074 1978-06-02 2024-10-11 00:51:14.000 1978-06-02 2024-10-11 00:51:14 +3076 3076 3077 307.6 615.2 3076 1978-06-04 2024-10-11 00:51:16.000 1978-06-04 2024-10-11 00:51:16 +3077 3077 3078 307.7 615.4000000000001 3077 1978-06-05 2024-10-11 00:51:17.000 1978-06-05 2024-10-11 00:51:17 +3078 3078 3079 307.8 615.6 3078 1978-06-06 2024-10-11 00:51:18.000 1978-06-06 2024-10-11 00:51:18 +3079 3079 3080 307.9 615.8000000000001 3079 1978-06-07 2024-10-11 00:51:19.000 1978-06-07 2024-10-11 00:51:19 +3081 3081 3082 308.1 616.2 3081 1978-06-09 2024-10-11 00:51:21.000 1978-06-09 2024-10-11 00:51:21 +3082 3082 3083 308.2 616.4000000000001 3082 1978-06-10 2024-10-11 00:51:22.000 1978-06-10 2024-10-11 00:51:22 +3083 3083 3084 308.3 616.6 3083 1978-06-11 2024-10-11 00:51:23.000 1978-06-11 2024-10-11 00:51:23 +3084 3084 3085 308.4 616.8000000000001 3084 1978-06-12 2024-10-11 00:51:24.000 1978-06-12 2024-10-11 00:51:24 +3086 3086 3087 308.6 617.2 3086 1978-06-14 2024-10-11 00:51:26.000 1978-06-14 2024-10-11 00:51:26 +3087 3087 3088 308.7 617.4000000000001 3087 1978-06-15 2024-10-11 00:51:27.000 1978-06-15 2024-10-11 00:51:27 +3088 3088 3089 308.8 617.6 3088 1978-06-16 2024-10-11 00:51:28.000 1978-06-16 2024-10-11 00:51:28 +3089 3089 3090 308.9 617.8000000000001 3089 1978-06-17 2024-10-11 00:51:29.000 1978-06-17 2024-10-11 00:51:29 +3091 3091 3092 309.1 618.2 3091 1978-06-19 2024-10-11 00:51:31.000 1978-06-19 2024-10-11 00:51:31 +3092 3092 3093 309.2 618.4000000000001 3092 1978-06-20 2024-10-11 00:51:32.000 1978-06-20 2024-10-11 00:51:32 +3093 3093 3094 309.3 618.6 3093 1978-06-21 2024-10-11 00:51:33.000 1978-06-21 2024-10-11 00:51:33 +3094 3094 3095 309.4 618.8000000000001 3094 1978-06-22 2024-10-11 00:51:34.000 1978-06-22 2024-10-11 00:51:34 +3096 3096 3097 309.6 619.2 3096 1978-06-24 2024-10-11 00:51:36.000 1978-06-24 2024-10-11 00:51:36 +3097 3097 3098 309.7 619.4000000000001 3097 1978-06-25 2024-10-11 00:51:37.000 1978-06-25 2024-10-11 00:51:37 +3098 3098 3099 309.8 619.6 3098 1978-06-26 2024-10-11 00:51:38.000 1978-06-26 2024-10-11 00:51:38 +3099 3099 3100 309.9 619.8000000000001 3099 1978-06-27 2024-10-11 00:51:39.000 1978-06-27 2024-10-11 00:51:39 +3101 3101 3102 310.1 620.2 3101 1978-06-29 2024-10-11 00:51:41.000 1978-06-29 2024-10-11 00:51:41 +3102 3102 3103 310.2 620.4000000000001 3102 1978-06-30 2024-10-11 00:51:42.000 1978-06-30 2024-10-11 00:51:42 +3103 3103 3104 310.3 620.6 3103 1978-07-01 2024-10-11 00:51:43.000 1978-07-01 2024-10-11 00:51:43 +3104 3104 3105 310.4 620.8000000000001 3104 1978-07-02 2024-10-11 00:51:44.000 1978-07-02 2024-10-11 00:51:44 +3106 3106 3107 310.6 621.2 3106 1978-07-04 2024-10-11 00:51:46.000 1978-07-04 2024-10-11 00:51:46 +3107 3107 3108 310.7 621.4000000000001 3107 1978-07-05 2024-10-11 00:51:47.000 1978-07-05 2024-10-11 00:51:47 +3108 3108 3109 310.8 621.6 3108 1978-07-06 2024-10-11 00:51:48.000 1978-07-06 2024-10-11 00:51:48 +3109 3109 3110 310.9 621.8000000000001 3109 1978-07-07 2024-10-11 00:51:49.000 1978-07-07 2024-10-11 00:51:49 +3111 3111 3112 311.1 622.2 3111 1978-07-09 2024-10-11 00:51:51.000 1978-07-09 2024-10-11 00:51:51 +3112 3112 3113 311.2 622.4000000000001 3112 1978-07-10 2024-10-11 00:51:52.000 1978-07-10 2024-10-11 00:51:52 +3113 3113 3114 311.3 622.6 3113 1978-07-11 2024-10-11 00:51:53.000 1978-07-11 2024-10-11 00:51:53 +3114 3114 3115 311.4 622.8000000000001 3114 1978-07-12 2024-10-11 00:51:54.000 1978-07-12 2024-10-11 00:51:54 +3116 3116 3117 311.6 623.2 3116 1978-07-14 2024-10-11 00:51:56.000 1978-07-14 2024-10-11 00:51:56 +3117 3117 3118 311.7 623.4000000000001 3117 1978-07-15 2024-10-11 00:51:57.000 1978-07-15 2024-10-11 00:51:57 +3118 3118 3119 311.8 623.6 3118 1978-07-16 2024-10-11 00:51:58.000 1978-07-16 2024-10-11 00:51:58 +3119 3119 3120 311.9 623.8000000000001 3119 1978-07-17 2024-10-11 00:51:59.000 1978-07-17 2024-10-11 00:51:59 +3121 3121 3122 312.1 624.2 3121 1978-07-19 2024-10-11 00:52:01.000 1978-07-19 2024-10-11 00:52:01 +3122 3122 3123 312.2 624.4000000000001 3122 1978-07-20 2024-10-11 00:52:02.000 1978-07-20 2024-10-11 00:52:02 +3123 3123 3124 312.3 624.6 3123 1978-07-21 2024-10-11 00:52:03.000 1978-07-21 2024-10-11 00:52:03 +3124 3124 3125 312.4 624.8000000000001 3124 1978-07-22 2024-10-11 00:52:04.000 1978-07-22 2024-10-11 00:52:04 +3126 3126 3127 312.6 625.2 3126 1978-07-24 2024-10-11 00:52:06.000 1978-07-24 2024-10-11 00:52:06 +3127 3127 3128 312.7 625.4000000000001 3127 1978-07-25 2024-10-11 00:52:07.000 1978-07-25 2024-10-11 00:52:07 +3128 3128 3129 312.8 625.6 3128 1978-07-26 2024-10-11 00:52:08.000 1978-07-26 2024-10-11 00:52:08 +3129 3129 3130 312.9 625.8000000000001 3129 1978-07-27 2024-10-11 00:52:09.000 1978-07-27 2024-10-11 00:52:09 +3131 3131 3132 313.1 626.2 3131 1978-07-29 2024-10-11 00:52:11.000 1978-07-29 2024-10-11 00:52:11 +3132 3132 3133 313.2 626.4000000000001 3132 1978-07-30 2024-10-11 00:52:12.000 1978-07-30 2024-10-11 00:52:12 +3133 3133 3134 313.3 626.6 3133 1978-07-31 2024-10-11 00:52:13.000 1978-07-31 2024-10-11 00:52:13 +3134 3134 3135 313.4 626.8000000000001 3134 1978-08-01 2024-10-11 00:52:14.000 1978-08-01 2024-10-11 00:52:14 +3136 3136 3137 313.6 627.2 3136 1978-08-03 2024-10-11 00:52:16.000 1978-08-03 2024-10-11 00:52:16 +3137 3137 3138 313.7 627.4000000000001 3137 1978-08-04 2024-10-11 00:52:17.000 1978-08-04 2024-10-11 00:52:17 +3138 3138 3139 313.8 627.6 3138 1978-08-05 2024-10-11 00:52:18.000 1978-08-05 2024-10-11 00:52:18 +3139 3139 3140 313.9 627.8000000000001 3139 1978-08-06 2024-10-11 00:52:19.000 1978-08-06 2024-10-11 00:52:19 +3141 3141 3142 314.1 628.2 3141 1978-08-08 2024-10-11 00:52:21.000 1978-08-08 2024-10-11 00:52:21 +3142 3142 3143 314.2 628.4000000000001 3142 1978-08-09 2024-10-11 00:52:22.000 1978-08-09 2024-10-11 00:52:22 +3143 3143 3144 314.3 628.6 3143 1978-08-10 2024-10-11 00:52:23.000 1978-08-10 2024-10-11 00:52:23 +3144 3144 3145 314.4 628.8000000000001 3144 1978-08-11 2024-10-11 00:52:24.000 1978-08-11 2024-10-11 00:52:24 +3146 3146 3147 314.6 629.2 3146 1978-08-13 2024-10-11 00:52:26.000 1978-08-13 2024-10-11 00:52:26 +3147 3147 3148 314.7 629.4000000000001 3147 1978-08-14 2024-10-11 00:52:27.000 1978-08-14 2024-10-11 00:52:27 +3148 3148 3149 314.8 629.6 3148 1978-08-15 2024-10-11 00:52:28.000 1978-08-15 2024-10-11 00:52:28 +3149 3149 3150 314.9 629.8000000000001 3149 1978-08-16 2024-10-11 00:52:29.000 1978-08-16 2024-10-11 00:52:29 +3151 3151 3152 315.1 630.2 3151 1978-08-18 2024-10-11 00:52:31.000 1978-08-18 2024-10-11 00:52:31 +3152 3152 3153 315.2 630.4000000000001 3152 1978-08-19 2024-10-11 00:52:32.000 1978-08-19 2024-10-11 00:52:32 +3153 3153 3154 315.3 630.6 3153 1978-08-20 2024-10-11 00:52:33.000 1978-08-20 2024-10-11 00:52:33 +3154 3154 3155 315.4 630.8000000000001 3154 1978-08-21 2024-10-11 00:52:34.000 1978-08-21 2024-10-11 00:52:34 +3156 3156 3157 315.6 631.2 3156 1978-08-23 2024-10-11 00:52:36.000 1978-08-23 2024-10-11 00:52:36 +3157 3157 3158 315.7 631.4000000000001 3157 1978-08-24 2024-10-11 00:52:37.000 1978-08-24 2024-10-11 00:52:37 +3158 3158 3159 315.8 631.6 3158 1978-08-25 2024-10-11 00:52:38.000 1978-08-25 2024-10-11 00:52:38 +3159 3159 3160 315.9 631.8000000000001 3159 1978-08-26 2024-10-11 00:52:39.000 1978-08-26 2024-10-11 00:52:39 +3161 3161 3162 316.1 632.2 3161 1978-08-28 2024-10-11 00:52:41.000 1978-08-28 2024-10-11 00:52:41 +3162 3162 3163 316.2 632.4000000000001 3162 1978-08-29 2024-10-11 00:52:42.000 1978-08-29 2024-10-11 00:52:42 +3163 3163 3164 316.3 632.6 3163 1978-08-30 2024-10-11 00:52:43.000 1978-08-30 2024-10-11 00:52:43 +3164 3164 3165 316.4 632.8000000000001 3164 1978-08-31 2024-10-11 00:52:44.000 1978-08-31 2024-10-11 00:52:44 +3166 3166 3167 316.6 633.2 3166 1978-09-02 2024-10-11 00:52:46.000 1978-09-02 2024-10-11 00:52:46 +3167 3167 3168 316.7 633.4000000000001 3167 1978-09-03 2024-10-11 00:52:47.000 1978-09-03 2024-10-11 00:52:47 +3168 3168 3169 316.8 633.6 3168 1978-09-04 2024-10-11 00:52:48.000 1978-09-04 2024-10-11 00:52:48 +3169 3169 3170 316.9 633.8000000000001 3169 1978-09-05 2024-10-11 00:52:49.000 1978-09-05 2024-10-11 00:52:49 +3171 3171 3172 317.1 634.2 3171 1978-09-07 2024-10-11 00:52:51.000 1978-09-07 2024-10-11 00:52:51 +3172 3172 3173 317.2 634.4000000000001 3172 1978-09-08 2024-10-11 00:52:52.000 1978-09-08 2024-10-11 00:52:52 +3173 3173 3174 317.3 634.6 3173 1978-09-09 2024-10-11 00:52:53.000 1978-09-09 2024-10-11 00:52:53 +3174 3174 3175 317.4 634.8000000000001 3174 1978-09-10 2024-10-11 00:52:54.000 1978-09-10 2024-10-11 00:52:54 +3176 3176 3177 317.6 635.2 3176 1978-09-12 2024-10-11 00:52:56.000 1978-09-12 2024-10-11 00:52:56 +3177 3177 3178 317.7 635.4000000000001 3177 1978-09-13 2024-10-11 00:52:57.000 1978-09-13 2024-10-11 00:52:57 +3178 3178 3179 317.8 635.6 3178 1978-09-14 2024-10-11 00:52:58.000 1978-09-14 2024-10-11 00:52:58 +3179 3179 3180 317.9 635.8000000000001 3179 1978-09-15 2024-10-11 00:52:59.000 1978-09-15 2024-10-11 00:52:59 +3181 3181 3182 318.1 636.2 3181 1978-09-17 2024-10-11 00:53:01.000 1978-09-17 2024-10-11 00:53:01 +3182 3182 3183 318.2 636.4000000000001 3182 1978-09-18 2024-10-11 00:53:02.000 1978-09-18 2024-10-11 00:53:02 +3183 3183 3184 318.3 636.6 3183 1978-09-19 2024-10-11 00:53:03.000 1978-09-19 2024-10-11 00:53:03 +3184 3184 3185 318.4 636.8000000000001 3184 1978-09-20 2024-10-11 00:53:04.000 1978-09-20 2024-10-11 00:53:04 +3186 3186 3187 318.6 637.2 3186 1978-09-22 2024-10-11 00:53:06.000 1978-09-22 2024-10-11 00:53:06 +3187 3187 3188 318.7 637.4000000000001 3187 1978-09-23 2024-10-11 00:53:07.000 1978-09-23 2024-10-11 00:53:07 +3188 3188 3189 318.8 637.6 3188 1978-09-24 2024-10-11 00:53:08.000 1978-09-24 2024-10-11 00:53:08 +3189 3189 3190 318.9 637.8000000000001 3189 1978-09-25 2024-10-11 00:53:09.000 1978-09-25 2024-10-11 00:53:09 +3191 3191 3192 319.1 638.2 3191 1978-09-27 2024-10-11 00:53:11.000 1978-09-27 2024-10-11 00:53:11 +3192 3192 3193 319.2 638.4000000000001 3192 1978-09-28 2024-10-11 00:53:12.000 1978-09-28 2024-10-11 00:53:12 +3193 3193 3194 319.3 638.6 3193 1978-09-29 2024-10-11 00:53:13.000 1978-09-29 2024-10-11 00:53:13 +3194 3194 3195 319.4 638.8000000000001 3194 1978-09-30 2024-10-11 00:53:14.000 1978-09-30 2024-10-11 00:53:14 +3196 3196 3197 319.6 639.2 3196 1978-10-02 2024-10-11 00:53:16.000 1978-10-02 2024-10-11 00:53:16 +3197 3197 3198 319.7 639.4000000000001 3197 1978-10-03 2024-10-11 00:53:17.000 1978-10-03 2024-10-11 00:53:17 +3198 3198 3199 319.8 639.6 3198 1978-10-04 2024-10-11 00:53:18.000 1978-10-04 2024-10-11 00:53:18 +3199 3199 3200 319.9 639.8000000000001 3199 1978-10-05 2024-10-11 00:53:19.000 1978-10-05 2024-10-11 00:53:19 +3201 3201 3202 320.1 640.2 3201 1978-10-07 2024-10-11 00:53:21.000 1978-10-07 2024-10-11 00:53:21 +3202 3202 3203 320.2 640.4000000000001 3202 1978-10-08 2024-10-11 00:53:22.000 1978-10-08 2024-10-11 00:53:22 +3203 3203 3204 320.3 640.6 3203 1978-10-09 2024-10-11 00:53:23.000 1978-10-09 2024-10-11 00:53:23 +3204 3204 3205 320.4 640.8000000000001 3204 1978-10-10 2024-10-11 00:53:24.000 1978-10-10 2024-10-11 00:53:24 +3206 3206 3207 320.6 641.2 3206 1978-10-12 2024-10-11 00:53:26.000 1978-10-12 2024-10-11 00:53:26 +3207 3207 3208 320.7 641.4000000000001 3207 1978-10-13 2024-10-11 00:53:27.000 1978-10-13 2024-10-11 00:53:27 +3208 3208 3209 320.8 641.6 3208 1978-10-14 2024-10-11 00:53:28.000 1978-10-14 2024-10-11 00:53:28 +3209 3209 3210 320.9 641.8000000000001 3209 1978-10-15 2024-10-11 00:53:29.000 1978-10-15 2024-10-11 00:53:29 +3211 3211 3212 321.1 642.2 3211 1978-10-17 2024-10-11 00:53:31.000 1978-10-17 2024-10-11 00:53:31 +3212 3212 3213 321.2 642.4000000000001 3212 1978-10-18 2024-10-11 00:53:32.000 1978-10-18 2024-10-11 00:53:32 +3213 3213 3214 321.3 642.6 3213 1978-10-19 2024-10-11 00:53:33.000 1978-10-19 2024-10-11 00:53:33 +3214 3214 3215 321.4 642.8000000000001 3214 1978-10-20 2024-10-11 00:53:34.000 1978-10-20 2024-10-11 00:53:34 +3216 3216 3217 321.6 643.2 3216 1978-10-22 2024-10-11 00:53:36.000 1978-10-22 2024-10-11 00:53:36 +3217 3217 3218 321.7 643.4000000000001 3217 1978-10-23 2024-10-11 00:53:37.000 1978-10-23 2024-10-11 00:53:37 +3218 3218 3219 321.8 643.6 3218 1978-10-24 2024-10-11 00:53:38.000 1978-10-24 2024-10-11 00:53:38 +3219 3219 3220 321.9 643.8000000000001 3219 1978-10-25 2024-10-11 00:53:39.000 1978-10-25 2024-10-11 00:53:39 +3221 3221 3222 322.1 644.2 3221 1978-10-27 2024-10-11 00:53:41.000 1978-10-27 2024-10-11 00:53:41 +3222 3222 3223 322.2 644.4000000000001 3222 1978-10-28 2024-10-11 00:53:42.000 1978-10-28 2024-10-11 00:53:42 +3223 3223 3224 322.3 644.6 3223 1978-10-29 2024-10-11 00:53:43.000 1978-10-29 2024-10-11 00:53:43 +3224 3224 3225 322.4 644.8000000000001 3224 1978-10-30 2024-10-11 00:53:44.000 1978-10-30 2024-10-11 00:53:44 +3226 3226 3227 322.6 645.2 3226 1978-11-01 2024-10-11 00:53:46.000 1978-11-01 2024-10-11 00:53:46 +3227 3227 3228 322.7 645.4000000000001 3227 1978-11-02 2024-10-11 00:53:47.000 1978-11-02 2024-10-11 00:53:47 +3228 3228 3229 322.8 645.6 3228 1978-11-03 2024-10-11 00:53:48.000 1978-11-03 2024-10-11 00:53:48 +3229 3229 3230 322.9 645.8000000000001 3229 1978-11-04 2024-10-11 00:53:49.000 1978-11-04 2024-10-11 00:53:49 +3231 3231 3232 323.1 646.2 3231 1978-11-06 2024-10-11 00:53:51.000 1978-11-06 2024-10-11 00:53:51 +3232 3232 3233 323.2 646.4000000000001 3232 1978-11-07 2024-10-11 00:53:52.000 1978-11-07 2024-10-11 00:53:52 +3233 3233 3234 323.3 646.6 3233 1978-11-08 2024-10-11 00:53:53.000 1978-11-08 2024-10-11 00:53:53 +3234 3234 3235 323.4 646.8000000000001 3234 1978-11-09 2024-10-11 00:53:54.000 1978-11-09 2024-10-11 00:53:54 +3236 3236 3237 323.6 647.2 3236 1978-11-11 2024-10-11 00:53:56.000 1978-11-11 2024-10-11 00:53:56 +3237 3237 3238 323.7 647.4000000000001 3237 1978-11-12 2024-10-11 00:53:57.000 1978-11-12 2024-10-11 00:53:57 +3238 3238 3239 323.8 647.6 3238 1978-11-13 2024-10-11 00:53:58.000 1978-11-13 2024-10-11 00:53:58 +3239 3239 3240 323.9 647.8000000000001 3239 1978-11-14 2024-10-11 00:53:59.000 1978-11-14 2024-10-11 00:53:59 +3241 3241 3242 324.1 648.2 3241 1978-11-16 2024-10-11 00:54:01.000 1978-11-16 2024-10-11 00:54:01 +3242 3242 3243 324.2 648.4000000000001 3242 1978-11-17 2024-10-11 00:54:02.000 1978-11-17 2024-10-11 00:54:02 +3243 3243 3244 324.3 648.6 3243 1978-11-18 2024-10-11 00:54:03.000 1978-11-18 2024-10-11 00:54:03 +3244 3244 3245 324.4 648.8000000000001 3244 1978-11-19 2024-10-11 00:54:04.000 1978-11-19 2024-10-11 00:54:04 +3246 3246 3247 324.6 649.2 3246 1978-11-21 2024-10-11 00:54:06.000 1978-11-21 2024-10-11 00:54:06 +3247 3247 3248 324.7 649.4000000000001 3247 1978-11-22 2024-10-11 00:54:07.000 1978-11-22 2024-10-11 00:54:07 +3248 3248 3249 324.8 649.6 3248 1978-11-23 2024-10-11 00:54:08.000 1978-11-23 2024-10-11 00:54:08 +3249 3249 3250 324.9 649.8000000000001 3249 1978-11-24 2024-10-11 00:54:09.000 1978-11-24 2024-10-11 00:54:09 +3251 3251 3252 325.1 650.2 3251 1978-11-26 2024-10-11 00:54:11.000 1978-11-26 2024-10-11 00:54:11 +3252 3252 3253 325.2 650.4000000000001 3252 1978-11-27 2024-10-11 00:54:12.000 1978-11-27 2024-10-11 00:54:12 +3253 3253 3254 325.3 650.6 3253 1978-11-28 2024-10-11 00:54:13.000 1978-11-28 2024-10-11 00:54:13 +3254 3254 3255 325.4 650.8000000000001 3254 1978-11-29 2024-10-11 00:54:14.000 1978-11-29 2024-10-11 00:54:14 +3256 3256 3257 325.6 651.2 3256 1978-12-01 2024-10-11 00:54:16.000 1978-12-01 2024-10-11 00:54:16 +3257 3257 3258 325.7 651.4000000000001 3257 1978-12-02 2024-10-11 00:54:17.000 1978-12-02 2024-10-11 00:54:17 +3258 3258 3259 325.8 651.6 3258 1978-12-03 2024-10-11 00:54:18.000 1978-12-03 2024-10-11 00:54:18 +3259 3259 3260 325.9 651.8000000000001 3259 1978-12-04 2024-10-11 00:54:19.000 1978-12-04 2024-10-11 00:54:19 +3261 3261 3262 326.1 652.2 3261 1978-12-06 2024-10-11 00:54:21.000 1978-12-06 2024-10-11 00:54:21 +3262 3262 3263 326.2 652.4000000000001 3262 1978-12-07 2024-10-11 00:54:22.000 1978-12-07 2024-10-11 00:54:22 +3263 3263 3264 326.3 652.6 3263 1978-12-08 2024-10-11 00:54:23.000 1978-12-08 2024-10-11 00:54:23 +3264 3264 3265 326.4 652.8000000000001 3264 1978-12-09 2024-10-11 00:54:24.000 1978-12-09 2024-10-11 00:54:24 +3266 3266 3267 326.6 653.2 3266 1978-12-11 2024-10-11 00:54:26.000 1978-12-11 2024-10-11 00:54:26 +3267 3267 3268 326.7 653.4000000000001 3267 1978-12-12 2024-10-11 00:54:27.000 1978-12-12 2024-10-11 00:54:27 +3268 3268 3269 326.8 653.6 3268 1978-12-13 2024-10-11 00:54:28.000 1978-12-13 2024-10-11 00:54:28 +3269 3269 3270 326.9 653.8000000000001 3269 1978-12-14 2024-10-11 00:54:29.000 1978-12-14 2024-10-11 00:54:29 +3271 3271 3272 327.1 654.2 3271 1978-12-16 2024-10-11 00:54:31.000 1978-12-16 2024-10-11 00:54:31 +3272 3272 3273 327.2 654.4000000000001 3272 1978-12-17 2024-10-11 00:54:32.000 1978-12-17 2024-10-11 00:54:32 +3273 3273 3274 327.3 654.6 3273 1978-12-18 2024-10-11 00:54:33.000 1978-12-18 2024-10-11 00:54:33 +3274 3274 3275 327.4 654.8000000000001 3274 1978-12-19 2024-10-11 00:54:34.000 1978-12-19 2024-10-11 00:54:34 +3276 3276 3277 327.6 655.2 3276 1978-12-21 2024-10-11 00:54:36.000 1978-12-21 2024-10-11 00:54:36 +3277 3277 3278 327.7 655.4000000000001 3277 1978-12-22 2024-10-11 00:54:37.000 1978-12-22 2024-10-11 00:54:37 +3278 3278 3279 327.8 655.6 3278 1978-12-23 2024-10-11 00:54:38.000 1978-12-23 2024-10-11 00:54:38 +3279 3279 3280 327.9 655.8000000000001 3279 1978-12-24 2024-10-11 00:54:39.000 1978-12-24 2024-10-11 00:54:39 +3281 3281 3282 328.1 656.2 3281 1978-12-26 2024-10-11 00:54:41.000 1978-12-26 2024-10-11 00:54:41 +3282 3282 3283 328.2 656.4000000000001 3282 1978-12-27 2024-10-11 00:54:42.000 1978-12-27 2024-10-11 00:54:42 +3283 3283 3284 328.3 656.6 3283 1978-12-28 2024-10-11 00:54:43.000 1978-12-28 2024-10-11 00:54:43 +3284 3284 3285 328.4 656.8000000000001 3284 1978-12-29 2024-10-11 00:54:44.000 1978-12-29 2024-10-11 00:54:44 +3286 3286 3287 328.6 657.2 3286 1978-12-31 2024-10-11 00:54:46.000 1978-12-31 2024-10-11 00:54:46 +3287 3287 3288 328.7 657.4000000000001 3287 1979-01-01 2024-10-11 00:54:47.000 1979-01-01 2024-10-11 00:54:47 +3288 3288 3289 328.8 657.6 3288 1979-01-02 2024-10-11 00:54:48.000 1979-01-02 2024-10-11 00:54:48 +3289 3289 3290 328.9 657.8000000000001 3289 1979-01-03 2024-10-11 00:54:49.000 1979-01-03 2024-10-11 00:54:49 +3291 3291 3292 329.1 658.2 3291 1979-01-05 2024-10-11 00:54:51.000 1979-01-05 2024-10-11 00:54:51 +3292 3292 3293 329.2 658.4000000000001 3292 1979-01-06 2024-10-11 00:54:52.000 1979-01-06 2024-10-11 00:54:52 +3293 3293 3294 329.3 658.6 3293 1979-01-07 2024-10-11 00:54:53.000 1979-01-07 2024-10-11 00:54:53 +3294 3294 3295 329.4 658.8000000000001 3294 1979-01-08 2024-10-11 00:54:54.000 1979-01-08 2024-10-11 00:54:54 +3296 3296 3297 329.6 659.2 3296 1979-01-10 2024-10-11 00:54:56.000 1979-01-10 2024-10-11 00:54:56 +3297 3297 3298 329.7 659.4000000000001 3297 1979-01-11 2024-10-11 00:54:57.000 1979-01-11 2024-10-11 00:54:57 +3298 3298 3299 329.8 659.6 3298 1979-01-12 2024-10-11 00:54:58.000 1979-01-12 2024-10-11 00:54:58 +3299 3299 3300 329.9 659.8000000000001 3299 1979-01-13 2024-10-11 00:54:59.000 1979-01-13 2024-10-11 00:54:59 +3301 3301 3302 330.1 660.2 3301 1979-01-15 2024-10-11 00:55:01.000 1979-01-15 2024-10-11 00:55:01 +3302 3302 3303 330.2 660.4000000000001 3302 1979-01-16 2024-10-11 00:55:02.000 1979-01-16 2024-10-11 00:55:02 +3303 3303 3304 330.3 660.6 3303 1979-01-17 2024-10-11 00:55:03.000 1979-01-17 2024-10-11 00:55:03 +3304 3304 3305 330.4 660.8000000000001 3304 1979-01-18 2024-10-11 00:55:04.000 1979-01-18 2024-10-11 00:55:04 +3306 3306 3307 330.6 661.2 3306 1979-01-20 2024-10-11 00:55:06.000 1979-01-20 2024-10-11 00:55:06 +3307 3307 3308 330.7 661.4000000000001 3307 1979-01-21 2024-10-11 00:55:07.000 1979-01-21 2024-10-11 00:55:07 +3308 3308 3309 330.8 661.6 3308 1979-01-22 2024-10-11 00:55:08.000 1979-01-22 2024-10-11 00:55:08 +3309 3309 3310 330.9 661.8000000000001 3309 1979-01-23 2024-10-11 00:55:09.000 1979-01-23 2024-10-11 00:55:09 +3311 3311 3312 331.1 662.2 3311 1979-01-25 2024-10-11 00:55:11.000 1979-01-25 2024-10-11 00:55:11 +3312 3312 3313 331.2 662.4000000000001 3312 1979-01-26 2024-10-11 00:55:12.000 1979-01-26 2024-10-11 00:55:12 +3313 3313 3314 331.3 662.6 3313 1979-01-27 2024-10-11 00:55:13.000 1979-01-27 2024-10-11 00:55:13 +3314 3314 3315 331.4 662.8000000000001 3314 1979-01-28 2024-10-11 00:55:14.000 1979-01-28 2024-10-11 00:55:14 +3316 3316 3317 331.6 663.2 3316 1979-01-30 2024-10-11 00:55:16.000 1979-01-30 2024-10-11 00:55:16 +3317 3317 3318 331.7 663.4000000000001 3317 1979-01-31 2024-10-11 00:55:17.000 1979-01-31 2024-10-11 00:55:17 +3318 3318 3319 331.8 663.6 3318 1979-02-01 2024-10-11 00:55:18.000 1979-02-01 2024-10-11 00:55:18 +3319 3319 3320 331.9 663.8000000000001 3319 1979-02-02 2024-10-11 00:55:19.000 1979-02-02 2024-10-11 00:55:19 +3321 3321 3322 332.1 664.2 3321 1979-02-04 2024-10-11 00:55:21.000 1979-02-04 2024-10-11 00:55:21 +3322 3322 3323 332.2 664.4000000000001 3322 1979-02-05 2024-10-11 00:55:22.000 1979-02-05 2024-10-11 00:55:22 +3323 3323 3324 332.3 664.6 3323 1979-02-06 2024-10-11 00:55:23.000 1979-02-06 2024-10-11 00:55:23 +3324 3324 3325 332.4 664.8000000000001 3324 1979-02-07 2024-10-11 00:55:24.000 1979-02-07 2024-10-11 00:55:24 +3326 3326 3327 332.6 665.2 3326 1979-02-09 2024-10-11 00:55:26.000 1979-02-09 2024-10-11 00:55:26 +3327 3327 3328 332.7 665.4000000000001 3327 1979-02-10 2024-10-11 00:55:27.000 1979-02-10 2024-10-11 00:55:27 +3328 3328 3329 332.8 665.6 3328 1979-02-11 2024-10-11 00:55:28.000 1979-02-11 2024-10-11 00:55:28 +3329 3329 3330 332.9 665.8000000000001 3329 1979-02-12 2024-10-11 00:55:29.000 1979-02-12 2024-10-11 00:55:29 +3331 3331 3332 333.1 666.2 3331 1979-02-14 2024-10-11 00:55:31.000 1979-02-14 2024-10-11 00:55:31 +3332 3332 3333 333.2 666.4000000000001 3332 1979-02-15 2024-10-11 00:55:32.000 1979-02-15 2024-10-11 00:55:32 +3333 3333 3334 333.3 666.6 3333 1979-02-16 2024-10-11 00:55:33.000 1979-02-16 2024-10-11 00:55:33 +3334 3334 3335 333.4 666.8000000000001 3334 1979-02-17 2024-10-11 00:55:34.000 1979-02-17 2024-10-11 00:55:34 +3336 3336 3337 333.6 667.2 3336 1979-02-19 2024-10-11 00:55:36.000 1979-02-19 2024-10-11 00:55:36 +3337 3337 3338 333.7 667.4000000000001 3337 1979-02-20 2024-10-11 00:55:37.000 1979-02-20 2024-10-11 00:55:37 +3338 3338 3339 333.8 667.6 3338 1979-02-21 2024-10-11 00:55:38.000 1979-02-21 2024-10-11 00:55:38 +3339 3339 3340 333.9 667.8000000000001 3339 1979-02-22 2024-10-11 00:55:39.000 1979-02-22 2024-10-11 00:55:39 +3341 3341 3342 334.1 668.2 3341 1979-02-24 2024-10-11 00:55:41.000 1979-02-24 2024-10-11 00:55:41 +3342 3342 3343 334.2 668.4000000000001 3342 1979-02-25 2024-10-11 00:55:42.000 1979-02-25 2024-10-11 00:55:42 +3343 3343 3344 334.3 668.6 3343 1979-02-26 2024-10-11 00:55:43.000 1979-02-26 2024-10-11 00:55:43 +3344 3344 3345 334.4 668.8000000000001 3344 1979-02-27 2024-10-11 00:55:44.000 1979-02-27 2024-10-11 00:55:44 +3346 3346 3347 334.6 669.2 3346 1979-03-01 2024-10-11 00:55:46.000 1979-03-01 2024-10-11 00:55:46 +3347 3347 3348 334.7 669.4000000000001 3347 1979-03-02 2024-10-11 00:55:47.000 1979-03-02 2024-10-11 00:55:47 +3348 3348 3349 334.8 669.6 3348 1979-03-03 2024-10-11 00:55:48.000 1979-03-03 2024-10-11 00:55:48 +3349 3349 3350 334.9 669.8000000000001 3349 1979-03-04 2024-10-11 00:55:49.000 1979-03-04 2024-10-11 00:55:49 +3351 3351 3352 335.1 670.2 3351 1979-03-06 2024-10-11 00:55:51.000 1979-03-06 2024-10-11 00:55:51 +3352 3352 3353 335.2 670.4000000000001 3352 1979-03-07 2024-10-11 00:55:52.000 1979-03-07 2024-10-11 00:55:52 +3353 3353 3354 335.3 670.6 3353 1979-03-08 2024-10-11 00:55:53.000 1979-03-08 2024-10-11 00:55:53 +3354 3354 3355 335.4 670.8000000000001 3354 1979-03-09 2024-10-11 00:55:54.000 1979-03-09 2024-10-11 00:55:54 +3356 3356 3357 335.6 671.2 3356 1979-03-11 2024-10-11 00:55:56.000 1979-03-11 2024-10-11 00:55:56 +3357 3357 3358 335.7 671.4000000000001 3357 1979-03-12 2024-10-11 00:55:57.000 1979-03-12 2024-10-11 00:55:57 +3358 3358 3359 335.8 671.6 3358 1979-03-13 2024-10-11 00:55:58.000 1979-03-13 2024-10-11 00:55:58 +3359 3359 3360 335.9 671.8000000000001 3359 1979-03-14 2024-10-11 00:55:59.000 1979-03-14 2024-10-11 00:55:59 +3361 3361 3362 336.1 672.2 3361 1979-03-16 2024-10-11 00:56:01.000 1979-03-16 2024-10-11 00:56:01 +3362 3362 3363 336.2 672.4000000000001 3362 1979-03-17 2024-10-11 00:56:02.000 1979-03-17 2024-10-11 00:56:02 +3363 3363 3364 336.3 672.6 3363 1979-03-18 2024-10-11 00:56:03.000 1979-03-18 2024-10-11 00:56:03 +3364 3364 3365 336.4 672.8000000000001 3364 1979-03-19 2024-10-11 00:56:04.000 1979-03-19 2024-10-11 00:56:04 +3366 3366 3367 336.6 673.2 3366 1979-03-21 2024-10-11 00:56:06.000 1979-03-21 2024-10-11 00:56:06 +3367 3367 3368 336.7 673.4000000000001 3367 1979-03-22 2024-10-11 00:56:07.000 1979-03-22 2024-10-11 00:56:07 +3368 3368 3369 336.8 673.6 3368 1979-03-23 2024-10-11 00:56:08.000 1979-03-23 2024-10-11 00:56:08 +3369 3369 3370 336.9 673.8000000000001 3369 1979-03-24 2024-10-11 00:56:09.000 1979-03-24 2024-10-11 00:56:09 +3371 3371 3372 337.1 674.2 3371 1979-03-26 2024-10-11 00:56:11.000 1979-03-26 2024-10-11 00:56:11 +3372 3372 3373 337.2 674.4000000000001 3372 1979-03-27 2024-10-11 00:56:12.000 1979-03-27 2024-10-11 00:56:12 +3373 3373 3374 337.3 674.6 3373 1979-03-28 2024-10-11 00:56:13.000 1979-03-28 2024-10-11 00:56:13 +3374 3374 3375 337.4 674.8000000000001 3374 1979-03-29 2024-10-11 00:56:14.000 1979-03-29 2024-10-11 00:56:14 +3376 3376 3377 337.6 675.2 3376 1979-03-31 2024-10-11 00:56:16.000 1979-03-31 2024-10-11 00:56:16 +3377 3377 3378 337.7 675.4000000000001 3377 1979-04-01 2024-10-11 00:56:17.000 1979-04-01 2024-10-11 00:56:17 +3378 3378 3379 337.8 675.6 3378 1979-04-02 2024-10-11 00:56:18.000 1979-04-02 2024-10-11 00:56:18 +3379 3379 3380 337.9 675.8000000000001 3379 1979-04-03 2024-10-11 00:56:19.000 1979-04-03 2024-10-11 00:56:19 +3381 3381 3382 338.1 676.2 3381 1979-04-05 2024-10-11 00:56:21.000 1979-04-05 2024-10-11 00:56:21 +3382 3382 3383 338.2 676.4000000000001 3382 1979-04-06 2024-10-11 00:56:22.000 1979-04-06 2024-10-11 00:56:22 +3383 3383 3384 338.3 676.6 3383 1979-04-07 2024-10-11 00:56:23.000 1979-04-07 2024-10-11 00:56:23 +3384 3384 3385 338.4 676.8000000000001 3384 1979-04-08 2024-10-11 00:56:24.000 1979-04-08 2024-10-11 00:56:24 +3386 3386 3387 338.6 677.2 3386 1979-04-10 2024-10-11 00:56:26.000 1979-04-10 2024-10-11 00:56:26 +3387 3387 3388 338.7 677.4000000000001 3387 1979-04-11 2024-10-11 00:56:27.000 1979-04-11 2024-10-11 00:56:27 +3388 3388 3389 338.8 677.6 3388 1979-04-12 2024-10-11 00:56:28.000 1979-04-12 2024-10-11 00:56:28 +3389 3389 3390 338.9 677.8000000000001 3389 1979-04-13 2024-10-11 00:56:29.000 1979-04-13 2024-10-11 00:56:29 +3391 3391 3392 339.1 678.2 3391 1979-04-15 2024-10-11 00:56:31.000 1979-04-15 2024-10-11 00:56:31 +3392 3392 3393 339.2 678.4000000000001 3392 1979-04-16 2024-10-11 00:56:32.000 1979-04-16 2024-10-11 00:56:32 +3393 3393 3394 339.3 678.6 3393 1979-04-17 2024-10-11 00:56:33.000 1979-04-17 2024-10-11 00:56:33 +3394 3394 3395 339.4 678.8000000000001 3394 1979-04-18 2024-10-11 00:56:34.000 1979-04-18 2024-10-11 00:56:34 +3396 3396 3397 339.6 679.2 3396 1979-04-20 2024-10-11 00:56:36.000 1979-04-20 2024-10-11 00:56:36 +3397 3397 3398 339.7 679.4000000000001 3397 1979-04-21 2024-10-11 00:56:37.000 1979-04-21 2024-10-11 00:56:37 +3398 3398 3399 339.8 679.6 3398 1979-04-22 2024-10-11 00:56:38.000 1979-04-22 2024-10-11 00:56:38 +3399 3399 3400 339.9 679.8000000000001 3399 1979-04-23 2024-10-11 00:56:39.000 1979-04-23 2024-10-11 00:56:39 +3401 3401 3402 340.1 680.2 3401 1979-04-25 2024-10-11 00:56:41.000 1979-04-25 2024-10-11 00:56:41 +3402 3402 3403 340.2 680.4000000000001 3402 1979-04-26 2024-10-11 00:56:42.000 1979-04-26 2024-10-11 00:56:42 +3403 3403 3404 340.3 680.6 3403 1979-04-27 2024-10-11 00:56:43.000 1979-04-27 2024-10-11 00:56:43 +3404 3404 3405 340.4 680.8000000000001 3404 1979-04-28 2024-10-11 00:56:44.000 1979-04-28 2024-10-11 00:56:44 +3406 3406 3407 340.6 681.2 3406 1979-04-30 2024-10-11 00:56:46.000 1979-04-30 2024-10-11 00:56:46 +3407 3407 3408 340.7 681.4000000000001 3407 1979-05-01 2024-10-11 00:56:47.000 1979-05-01 2024-10-11 00:56:47 +3408 3408 3409 340.8 681.6 3408 1979-05-02 2024-10-11 00:56:48.000 1979-05-02 2024-10-11 00:56:48 +3409 3409 3410 340.9 681.8000000000001 3409 1979-05-03 2024-10-11 00:56:49.000 1979-05-03 2024-10-11 00:56:49 +3411 3411 3412 341.1 682.2 3411 1979-05-05 2024-10-11 00:56:51.000 1979-05-05 2024-10-11 00:56:51 +3412 3412 3413 341.2 682.4000000000001 3412 1979-05-06 2024-10-11 00:56:52.000 1979-05-06 2024-10-11 00:56:52 +3413 3413 3414 341.3 682.6 3413 1979-05-07 2024-10-11 00:56:53.000 1979-05-07 2024-10-11 00:56:53 +3414 3414 3415 341.4 682.8000000000001 3414 1979-05-08 2024-10-11 00:56:54.000 1979-05-08 2024-10-11 00:56:54 +3416 3416 3417 341.6 683.2 3416 1979-05-10 2024-10-11 00:56:56.000 1979-05-10 2024-10-11 00:56:56 +3417 3417 3418 341.7 683.4000000000001 3417 1979-05-11 2024-10-11 00:56:57.000 1979-05-11 2024-10-11 00:56:57 +3418 3418 3419 341.8 683.6 3418 1979-05-12 2024-10-11 00:56:58.000 1979-05-12 2024-10-11 00:56:58 +3419 3419 3420 341.9 683.8000000000001 3419 1979-05-13 2024-10-11 00:56:59.000 1979-05-13 2024-10-11 00:56:59 +3421 3421 3422 342.1 684.2 3421 1979-05-15 2024-10-11 00:57:01.000 1979-05-15 2024-10-11 00:57:01 +3422 3422 3423 342.2 684.4000000000001 3422 1979-05-16 2024-10-11 00:57:02.000 1979-05-16 2024-10-11 00:57:02 +3423 3423 3424 342.3 684.6 3423 1979-05-17 2024-10-11 00:57:03.000 1979-05-17 2024-10-11 00:57:03 +3424 3424 3425 342.4 684.8000000000001 3424 1979-05-18 2024-10-11 00:57:04.000 1979-05-18 2024-10-11 00:57:04 +3426 3426 3427 342.6 685.2 3426 1979-05-20 2024-10-11 00:57:06.000 1979-05-20 2024-10-11 00:57:06 +3427 3427 3428 342.7 685.4000000000001 3427 1979-05-21 2024-10-11 00:57:07.000 1979-05-21 2024-10-11 00:57:07 +3428 3428 3429 342.8 685.6 3428 1979-05-22 2024-10-11 00:57:08.000 1979-05-22 2024-10-11 00:57:08 +3429 3429 3430 342.9 685.8000000000001 3429 1979-05-23 2024-10-11 00:57:09.000 1979-05-23 2024-10-11 00:57:09 +3431 3431 3432 343.1 686.2 3431 1979-05-25 2024-10-11 00:57:11.000 1979-05-25 2024-10-11 00:57:11 +3432 3432 3433 343.2 686.4000000000001 3432 1979-05-26 2024-10-11 00:57:12.000 1979-05-26 2024-10-11 00:57:12 +3433 3433 3434 343.3 686.6 3433 1979-05-27 2024-10-11 00:57:13.000 1979-05-27 2024-10-11 00:57:13 +3434 3434 3435 343.4 686.8000000000001 3434 1979-05-28 2024-10-11 00:57:14.000 1979-05-28 2024-10-11 00:57:14 +3436 3436 3437 343.6 687.2 3436 1979-05-30 2024-10-11 00:57:16.000 1979-05-30 2024-10-11 00:57:16 +3437 3437 3438 343.7 687.4000000000001 3437 1979-05-31 2024-10-11 00:57:17.000 1979-05-31 2024-10-11 00:57:17 +3438 3438 3439 343.8 687.6 3438 1979-06-01 2024-10-11 00:57:18.000 1979-06-01 2024-10-11 00:57:18 +3439 3439 3440 343.9 687.8000000000001 3439 1979-06-02 2024-10-11 00:57:19.000 1979-06-02 2024-10-11 00:57:19 +3441 3441 3442 344.1 688.2 3441 1979-06-04 2024-10-11 00:57:21.000 1979-06-04 2024-10-11 00:57:21 +3442 3442 3443 344.2 688.4000000000001 3442 1979-06-05 2024-10-11 00:57:22.000 1979-06-05 2024-10-11 00:57:22 +3443 3443 3444 344.3 688.6 3443 1979-06-06 2024-10-11 00:57:23.000 1979-06-06 2024-10-11 00:57:23 +3444 3444 3445 344.4 688.8000000000001 3444 1979-06-07 2024-10-11 00:57:24.000 1979-06-07 2024-10-11 00:57:24 +3446 3446 3447 344.6 689.2 3446 1979-06-09 2024-10-11 00:57:26.000 1979-06-09 2024-10-11 00:57:26 +3447 3447 3448 344.7 689.4000000000001 3447 1979-06-10 2024-10-11 00:57:27.000 1979-06-10 2024-10-11 00:57:27 +3448 3448 3449 344.8 689.6 3448 1979-06-11 2024-10-11 00:57:28.000 1979-06-11 2024-10-11 00:57:28 +3449 3449 3450 344.9 689.8000000000001 3449 1979-06-12 2024-10-11 00:57:29.000 1979-06-12 2024-10-11 00:57:29 +3451 3451 3452 345.1 690.2 3451 1979-06-14 2024-10-11 00:57:31.000 1979-06-14 2024-10-11 00:57:31 +3452 3452 3453 345.2 690.4000000000001 3452 1979-06-15 2024-10-11 00:57:32.000 1979-06-15 2024-10-11 00:57:32 +3453 3453 3454 345.3 690.6 3453 1979-06-16 2024-10-11 00:57:33.000 1979-06-16 2024-10-11 00:57:33 +3454 3454 3455 345.4 690.8000000000001 3454 1979-06-17 2024-10-11 00:57:34.000 1979-06-17 2024-10-11 00:57:34 +3456 3456 3457 345.6 691.2 3456 1979-06-19 2024-10-11 00:57:36.000 1979-06-19 2024-10-11 00:57:36 +3457 3457 3458 345.7 691.4000000000001 3457 1979-06-20 2024-10-11 00:57:37.000 1979-06-20 2024-10-11 00:57:37 +3458 3458 3459 345.8 691.6 3458 1979-06-21 2024-10-11 00:57:38.000 1979-06-21 2024-10-11 00:57:38 +3459 3459 3460 345.9 691.8000000000001 3459 1979-06-22 2024-10-11 00:57:39.000 1979-06-22 2024-10-11 00:57:39 +3461 3461 3462 346.1 692.2 3461 1979-06-24 2024-10-11 00:57:41.000 1979-06-24 2024-10-11 00:57:41 +3462 3462 3463 346.2 692.4000000000001 3462 1979-06-25 2024-10-11 00:57:42.000 1979-06-25 2024-10-11 00:57:42 +3463 3463 3464 346.3 692.6 3463 1979-06-26 2024-10-11 00:57:43.000 1979-06-26 2024-10-11 00:57:43 +3464 3464 3465 346.4 692.8000000000001 3464 1979-06-27 2024-10-11 00:57:44.000 1979-06-27 2024-10-11 00:57:44 +3466 3466 3467 346.6 693.2 3466 1979-06-29 2024-10-11 00:57:46.000 1979-06-29 2024-10-11 00:57:46 +3467 3467 3468 346.7 693.4000000000001 3467 1979-06-30 2024-10-11 00:57:47.000 1979-06-30 2024-10-11 00:57:47 +3468 3468 3469 346.8 693.6 3468 1979-07-01 2024-10-11 00:57:48.000 1979-07-01 2024-10-11 00:57:48 +3469 3469 3470 346.9 693.8000000000001 3469 1979-07-02 2024-10-11 00:57:49.000 1979-07-02 2024-10-11 00:57:49 +3471 3471 3472 347.1 694.2 3471 1979-07-04 2024-10-11 00:57:51.000 1979-07-04 2024-10-11 00:57:51 +3472 3472 3473 347.2 694.4000000000001 3472 1979-07-05 2024-10-11 00:57:52.000 1979-07-05 2024-10-11 00:57:52 +3473 3473 3474 347.3 694.6 3473 1979-07-06 2024-10-11 00:57:53.000 1979-07-06 2024-10-11 00:57:53 +3474 3474 3475 347.4 694.8000000000001 3474 1979-07-07 2024-10-11 00:57:54.000 1979-07-07 2024-10-11 00:57:54 +3476 3476 3477 347.6 695.2 3476 1979-07-09 2024-10-11 00:57:56.000 1979-07-09 2024-10-11 00:57:56 +3477 3477 3478 347.7 695.4000000000001 3477 1979-07-10 2024-10-11 00:57:57.000 1979-07-10 2024-10-11 00:57:57 +3478 3478 3479 347.8 695.6 3478 1979-07-11 2024-10-11 00:57:58.000 1979-07-11 2024-10-11 00:57:58 +3479 3479 3480 347.9 695.8000000000001 3479 1979-07-12 2024-10-11 00:57:59.000 1979-07-12 2024-10-11 00:57:59 +3481 3481 3482 348.1 696.2 3481 1979-07-14 2024-10-11 00:58:01.000 1979-07-14 2024-10-11 00:58:01 +3482 3482 3483 348.2 696.4000000000001 3482 1979-07-15 2024-10-11 00:58:02.000 1979-07-15 2024-10-11 00:58:02 +3483 3483 3484 348.3 696.6 3483 1979-07-16 2024-10-11 00:58:03.000 1979-07-16 2024-10-11 00:58:03 +3484 3484 3485 348.4 696.8000000000001 3484 1979-07-17 2024-10-11 00:58:04.000 1979-07-17 2024-10-11 00:58:04 +3486 3486 3487 348.6 697.2 3486 1979-07-19 2024-10-11 00:58:06.000 1979-07-19 2024-10-11 00:58:06 +3487 3487 3488 348.7 697.4000000000001 3487 1979-07-20 2024-10-11 00:58:07.000 1979-07-20 2024-10-11 00:58:07 +3488 3488 3489 348.8 697.6 3488 1979-07-21 2024-10-11 00:58:08.000 1979-07-21 2024-10-11 00:58:08 +3489 3489 3490 348.9 697.8000000000001 3489 1979-07-22 2024-10-11 00:58:09.000 1979-07-22 2024-10-11 00:58:09 +3491 3491 3492 349.1 698.2 3491 1979-07-24 2024-10-11 00:58:11.000 1979-07-24 2024-10-11 00:58:11 +3492 3492 3493 349.2 698.4000000000001 3492 1979-07-25 2024-10-11 00:58:12.000 1979-07-25 2024-10-11 00:58:12 +3493 3493 3494 349.3 698.6 3493 1979-07-26 2024-10-11 00:58:13.000 1979-07-26 2024-10-11 00:58:13 +3494 3494 3495 349.4 698.8000000000001 3494 1979-07-27 2024-10-11 00:58:14.000 1979-07-27 2024-10-11 00:58:14 +3496 3496 3497 349.6 699.2 3496 1979-07-29 2024-10-11 00:58:16.000 1979-07-29 2024-10-11 00:58:16 +3497 3497 3498 349.7 699.4000000000001 3497 1979-07-30 2024-10-11 00:58:17.000 1979-07-30 2024-10-11 00:58:17 +3498 3498 3499 349.8 699.6 3498 1979-07-31 2024-10-11 00:58:18.000 1979-07-31 2024-10-11 00:58:18 +3499 3499 3500 349.9 699.8000000000001 3499 1979-08-01 2024-10-11 00:58:19.000 1979-08-01 2024-10-11 00:58:19 +3501 3501 3502 350.1 700.2 3501 1979-08-03 2024-10-11 00:58:21.000 1979-08-03 2024-10-11 00:58:21 +3502 3502 3503 350.2 700.4000000000001 3502 1979-08-04 2024-10-11 00:58:22.000 1979-08-04 2024-10-11 00:58:22 +3503 3503 3504 350.3 700.6 3503 1979-08-05 2024-10-11 00:58:23.000 1979-08-05 2024-10-11 00:58:23 +3504 3504 3505 350.4 700.8000000000001 3504 1979-08-06 2024-10-11 00:58:24.000 1979-08-06 2024-10-11 00:58:24 +3506 3506 3507 350.6 701.2 3506 1979-08-08 2024-10-11 00:58:26.000 1979-08-08 2024-10-11 00:58:26 +3507 3507 3508 350.7 701.4000000000001 3507 1979-08-09 2024-10-11 00:58:27.000 1979-08-09 2024-10-11 00:58:27 +3508 3508 3509 350.8 701.6 3508 1979-08-10 2024-10-11 00:58:28.000 1979-08-10 2024-10-11 00:58:28 +3509 3509 3510 350.9 701.8000000000001 3509 1979-08-11 2024-10-11 00:58:29.000 1979-08-11 2024-10-11 00:58:29 +3511 3511 3512 351.1 702.2 3511 1979-08-13 2024-10-11 00:58:31.000 1979-08-13 2024-10-11 00:58:31 +3512 3512 3513 351.2 702.4000000000001 3512 1979-08-14 2024-10-11 00:58:32.000 1979-08-14 2024-10-11 00:58:32 +3513 3513 3514 351.3 702.6 3513 1979-08-15 2024-10-11 00:58:33.000 1979-08-15 2024-10-11 00:58:33 +3514 3514 3515 351.4 702.8000000000001 3514 1979-08-16 2024-10-11 00:58:34.000 1979-08-16 2024-10-11 00:58:34 +3516 3516 3517 351.6 703.2 3516 1979-08-18 2024-10-11 00:58:36.000 1979-08-18 2024-10-11 00:58:36 +3517 3517 3518 351.7 703.4000000000001 3517 1979-08-19 2024-10-11 00:58:37.000 1979-08-19 2024-10-11 00:58:37 +3518 3518 3519 351.8 703.6 3518 1979-08-20 2024-10-11 00:58:38.000 1979-08-20 2024-10-11 00:58:38 +3519 3519 3520 351.9 703.8000000000001 3519 1979-08-21 2024-10-11 00:58:39.000 1979-08-21 2024-10-11 00:58:39 +3521 3521 3522 352.1 704.2 3521 1979-08-23 2024-10-11 00:58:41.000 1979-08-23 2024-10-11 00:58:41 +3522 3522 3523 352.2 704.4000000000001 3522 1979-08-24 2024-10-11 00:58:42.000 1979-08-24 2024-10-11 00:58:42 +3523 3523 3524 352.3 704.6 3523 1979-08-25 2024-10-11 00:58:43.000 1979-08-25 2024-10-11 00:58:43 +3524 3524 3525 352.4 704.8000000000001 3524 1979-08-26 2024-10-11 00:58:44.000 1979-08-26 2024-10-11 00:58:44 +3526 3526 3527 352.6 705.2 3526 1979-08-28 2024-10-11 00:58:46.000 1979-08-28 2024-10-11 00:58:46 +3527 3527 3528 352.7 705.4000000000001 3527 1979-08-29 2024-10-11 00:58:47.000 1979-08-29 2024-10-11 00:58:47 +3528 3528 3529 352.8 705.6 3528 1979-08-30 2024-10-11 00:58:48.000 1979-08-30 2024-10-11 00:58:48 +3529 3529 3530 352.9 705.8000000000001 3529 1979-08-31 2024-10-11 00:58:49.000 1979-08-31 2024-10-11 00:58:49 +3531 3531 3532 353.1 706.2 3531 1979-09-02 2024-10-11 00:58:51.000 1979-09-02 2024-10-11 00:58:51 +3532 3532 3533 353.2 706.4000000000001 3532 1979-09-03 2024-10-11 00:58:52.000 1979-09-03 2024-10-11 00:58:52 +3533 3533 3534 353.3 706.6 3533 1979-09-04 2024-10-11 00:58:53.000 1979-09-04 2024-10-11 00:58:53 +3534 3534 3535 353.4 706.8000000000001 3534 1979-09-05 2024-10-11 00:58:54.000 1979-09-05 2024-10-11 00:58:54 +3536 3536 3537 353.6 707.2 3536 1979-09-07 2024-10-11 00:58:56.000 1979-09-07 2024-10-11 00:58:56 +3537 3537 3538 353.7 707.4000000000001 3537 1979-09-08 2024-10-11 00:58:57.000 1979-09-08 2024-10-11 00:58:57 +3538 3538 3539 353.8 707.6 3538 1979-09-09 2024-10-11 00:58:58.000 1979-09-09 2024-10-11 00:58:58 +3539 3539 3540 353.9 707.8000000000001 3539 1979-09-10 2024-10-11 00:58:59.000 1979-09-10 2024-10-11 00:58:59 +3541 3541 3542 354.1 708.2 3541 1979-09-12 2024-10-11 00:59:01.000 1979-09-12 2024-10-11 00:59:01 +3542 3542 3543 354.2 708.4000000000001 3542 1979-09-13 2024-10-11 00:59:02.000 1979-09-13 2024-10-11 00:59:02 +3543 3543 3544 354.3 708.6 3543 1979-09-14 2024-10-11 00:59:03.000 1979-09-14 2024-10-11 00:59:03 +3544 3544 3545 354.4 708.8000000000001 3544 1979-09-15 2024-10-11 00:59:04.000 1979-09-15 2024-10-11 00:59:04 +3546 3546 3547 354.6 709.2 3546 1979-09-17 2024-10-11 00:59:06.000 1979-09-17 2024-10-11 00:59:06 +3547 3547 3548 354.7 709.4000000000001 3547 1979-09-18 2024-10-11 00:59:07.000 1979-09-18 2024-10-11 00:59:07 +3548 3548 3549 354.8 709.6 3548 1979-09-19 2024-10-11 00:59:08.000 1979-09-19 2024-10-11 00:59:08 +3549 3549 3550 354.9 709.8000000000001 3549 1979-09-20 2024-10-11 00:59:09.000 1979-09-20 2024-10-11 00:59:09 +3551 3551 3552 355.1 710.2 3551 1979-09-22 2024-10-11 00:59:11.000 1979-09-22 2024-10-11 00:59:11 +3552 3552 3553 355.2 710.4000000000001 3552 1979-09-23 2024-10-11 00:59:12.000 1979-09-23 2024-10-11 00:59:12 +3553 3553 3554 355.3 710.6 3553 1979-09-24 2024-10-11 00:59:13.000 1979-09-24 2024-10-11 00:59:13 +3554 3554 3555 355.4 710.8000000000001 3554 1979-09-25 2024-10-11 00:59:14.000 1979-09-25 2024-10-11 00:59:14 +3556 3556 3557 355.6 711.2 3556 1979-09-27 2024-10-11 00:59:16.000 1979-09-27 2024-10-11 00:59:16 +3557 3557 3558 355.7 711.4000000000001 3557 1979-09-28 2024-10-11 00:59:17.000 1979-09-28 2024-10-11 00:59:17 +3558 3558 3559 355.8 711.6 3558 1979-09-29 2024-10-11 00:59:18.000 1979-09-29 2024-10-11 00:59:18 +3559 3559 3560 355.9 711.8000000000001 3559 1979-09-30 2024-10-11 00:59:19.000 1979-09-30 2024-10-11 00:59:19 +3561 3561 3562 356.1 712.2 3561 1979-10-02 2024-10-11 00:59:21.000 1979-10-02 2024-10-11 00:59:21 +3562 3562 3563 356.2 712.4000000000001 3562 1979-10-03 2024-10-11 00:59:22.000 1979-10-03 2024-10-11 00:59:22 +3563 3563 3564 356.3 712.6 3563 1979-10-04 2024-10-11 00:59:23.000 1979-10-04 2024-10-11 00:59:23 +3564 3564 3565 356.4 712.8000000000001 3564 1979-10-05 2024-10-11 00:59:24.000 1979-10-05 2024-10-11 00:59:24 +3566 3566 3567 356.6 713.2 3566 1979-10-07 2024-10-11 00:59:26.000 1979-10-07 2024-10-11 00:59:26 +3567 3567 3568 356.7 713.4000000000001 3567 1979-10-08 2024-10-11 00:59:27.000 1979-10-08 2024-10-11 00:59:27 +3568 3568 3569 356.8 713.6 3568 1979-10-09 2024-10-11 00:59:28.000 1979-10-09 2024-10-11 00:59:28 +3569 3569 3570 356.9 713.8000000000001 3569 1979-10-10 2024-10-11 00:59:29.000 1979-10-10 2024-10-11 00:59:29 +3571 3571 3572 357.1 714.2 3571 1979-10-12 2024-10-11 00:59:31.000 1979-10-12 2024-10-11 00:59:31 +3572 3572 3573 357.2 714.4000000000001 3572 1979-10-13 2024-10-11 00:59:32.000 1979-10-13 2024-10-11 00:59:32 +3573 3573 3574 357.3 714.6 3573 1979-10-14 2024-10-11 00:59:33.000 1979-10-14 2024-10-11 00:59:33 +3574 3574 3575 357.4 714.8000000000001 3574 1979-10-15 2024-10-11 00:59:34.000 1979-10-15 2024-10-11 00:59:34 +3576 3576 3577 357.6 715.2 3576 1979-10-17 2024-10-11 00:59:36.000 1979-10-17 2024-10-11 00:59:36 +3577 3577 3578 357.7 715.4000000000001 3577 1979-10-18 2024-10-11 00:59:37.000 1979-10-18 2024-10-11 00:59:37 +3578 3578 3579 357.8 715.6 3578 1979-10-19 2024-10-11 00:59:38.000 1979-10-19 2024-10-11 00:59:38 +3579 3579 3580 357.9 715.8000000000001 3579 1979-10-20 2024-10-11 00:59:39.000 1979-10-20 2024-10-11 00:59:39 +3581 3581 3582 358.1 716.2 3581 1979-10-22 2024-10-11 00:59:41.000 1979-10-22 2024-10-11 00:59:41 +3582 3582 3583 358.2 716.4000000000001 3582 1979-10-23 2024-10-11 00:59:42.000 1979-10-23 2024-10-11 00:59:42 +3583 3583 3584 358.3 716.6 3583 1979-10-24 2024-10-11 00:59:43.000 1979-10-24 2024-10-11 00:59:43 +3584 3584 3585 358.4 716.8000000000001 3584 1979-10-25 2024-10-11 00:59:44.000 1979-10-25 2024-10-11 00:59:44 +3586 3586 3587 358.6 717.2 3586 1979-10-27 2024-10-11 00:59:46.000 1979-10-27 2024-10-11 00:59:46 +3587 3587 3588 358.7 717.4000000000001 3587 1979-10-28 2024-10-11 00:59:47.000 1979-10-28 2024-10-11 00:59:47 +3588 3588 3589 358.8 717.6 3588 1979-10-29 2024-10-11 00:59:48.000 1979-10-29 2024-10-11 00:59:48 +3589 3589 3590 358.9 717.8000000000001 3589 1979-10-30 2024-10-11 00:59:49.000 1979-10-30 2024-10-11 00:59:49 +3591 3591 3592 359.1 718.2 3591 1979-11-01 2024-10-11 00:59:51.000 1979-11-01 2024-10-11 00:59:51 +3592 3592 3593 359.2 718.4000000000001 3592 1979-11-02 2024-10-11 00:59:52.000 1979-11-02 2024-10-11 00:59:52 +3593 3593 3594 359.3 718.6 3593 1979-11-03 2024-10-11 00:59:53.000 1979-11-03 2024-10-11 00:59:53 +3594 3594 3595 359.4 718.8000000000001 3594 1979-11-04 2024-10-11 00:59:54.000 1979-11-04 2024-10-11 00:59:54 +3596 3596 3597 359.6 719.2 3596 1979-11-06 2024-10-11 00:59:56.000 1979-11-06 2024-10-11 00:59:56 +3597 3597 3598 359.7 719.4000000000001 3597 1979-11-07 2024-10-11 00:59:57.000 1979-11-07 2024-10-11 00:59:57 +3598 3598 3599 359.8 719.6 3598 1979-11-08 2024-10-11 00:59:58.000 1979-11-08 2024-10-11 00:59:58 +3599 3599 3600 359.9 719.8000000000001 3599 1979-11-09 2024-10-11 00:59:59.000 1979-11-09 2024-10-11 00:59:59 +3601 3601 3602 360.1 720.2 3601 1979-11-11 2024-10-11 01:00:01.000 1979-11-11 2024-10-11 01:00:01 +3602 3602 3603 360.2 720.4000000000001 3602 1979-11-12 2024-10-11 01:00:02.000 1979-11-12 2024-10-11 01:00:02 +3603 3603 3604 360.3 720.6 3603 1979-11-13 2024-10-11 01:00:03.000 1979-11-13 2024-10-11 01:00:03 +3604 3604 3605 360.4 720.8000000000001 3604 1979-11-14 2024-10-11 01:00:04.000 1979-11-14 2024-10-11 01:00:04 +3606 3606 3607 360.6 721.2 3606 1979-11-16 2024-10-11 01:00:06.000 1979-11-16 2024-10-11 01:00:06 +3607 3607 3608 360.7 721.4000000000001 3607 1979-11-17 2024-10-11 01:00:07.000 1979-11-17 2024-10-11 01:00:07 +3608 3608 3609 360.8 721.6 3608 1979-11-18 2024-10-11 01:00:08.000 1979-11-18 2024-10-11 01:00:08 +3609 3609 3610 360.9 721.8000000000001 3609 1979-11-19 2024-10-11 01:00:09.000 1979-11-19 2024-10-11 01:00:09 +3611 3611 3612 361.1 722.2 3611 1979-11-21 2024-10-11 01:00:11.000 1979-11-21 2024-10-11 01:00:11 +3612 3612 3613 361.2 722.4000000000001 3612 1979-11-22 2024-10-11 01:00:12.000 1979-11-22 2024-10-11 01:00:12 +3613 3613 3614 361.3 722.6 3613 1979-11-23 2024-10-11 01:00:13.000 1979-11-23 2024-10-11 01:00:13 +3614 3614 3615 361.4 722.8000000000001 3614 1979-11-24 2024-10-11 01:00:14.000 1979-11-24 2024-10-11 01:00:14 +3616 3616 3617 361.6 723.2 3616 1979-11-26 2024-10-11 01:00:16.000 1979-11-26 2024-10-11 01:00:16 +3617 3617 3618 361.7 723.4000000000001 3617 1979-11-27 2024-10-11 01:00:17.000 1979-11-27 2024-10-11 01:00:17 +3618 3618 3619 361.8 723.6 3618 1979-11-28 2024-10-11 01:00:18.000 1979-11-28 2024-10-11 01:00:18 +3619 3619 3620 361.9 723.8000000000001 3619 1979-11-29 2024-10-11 01:00:19.000 1979-11-29 2024-10-11 01:00:19 +3621 3621 3622 362.1 724.2 3621 1979-12-01 2024-10-11 01:00:21.000 1979-12-01 2024-10-11 01:00:21 +3622 3622 3623 362.2 724.4000000000001 3622 1979-12-02 2024-10-11 01:00:22.000 1979-12-02 2024-10-11 01:00:22 +3623 3623 3624 362.3 724.6 3623 1979-12-03 2024-10-11 01:00:23.000 1979-12-03 2024-10-11 01:00:23 +3624 3624 3625 362.4 724.8000000000001 3624 1979-12-04 2024-10-11 01:00:24.000 1979-12-04 2024-10-11 01:00:24 +3626 3626 3627 362.6 725.2 3626 1979-12-06 2024-10-11 01:00:26.000 1979-12-06 2024-10-11 01:00:26 +3627 3627 3628 362.7 725.4000000000001 3627 1979-12-07 2024-10-11 01:00:27.000 1979-12-07 2024-10-11 01:00:27 +3628 3628 3629 362.8 725.6 3628 1979-12-08 2024-10-11 01:00:28.000 1979-12-08 2024-10-11 01:00:28 +3629 3629 3630 362.9 725.8000000000001 3629 1979-12-09 2024-10-11 01:00:29.000 1979-12-09 2024-10-11 01:00:29 +3631 3631 3632 363.1 726.2 3631 1979-12-11 2024-10-11 01:00:31.000 1979-12-11 2024-10-11 01:00:31 +3632 3632 3633 363.2 726.4000000000001 3632 1979-12-12 2024-10-11 01:00:32.000 1979-12-12 2024-10-11 01:00:32 +3633 3633 3634 363.3 726.6 3633 1979-12-13 2024-10-11 01:00:33.000 1979-12-13 2024-10-11 01:00:33 +3634 3634 3635 363.4 726.8000000000001 3634 1979-12-14 2024-10-11 01:00:34.000 1979-12-14 2024-10-11 01:00:34 +3636 3636 3637 363.6 727.2 3636 1979-12-16 2024-10-11 01:00:36.000 1979-12-16 2024-10-11 01:00:36 +3637 3637 3638 363.7 727.4000000000001 3637 1979-12-17 2024-10-11 01:00:37.000 1979-12-17 2024-10-11 01:00:37 +3638 3638 3639 363.8 727.6 3638 1979-12-18 2024-10-11 01:00:38.000 1979-12-18 2024-10-11 01:00:38 +3639 3639 3640 363.9 727.8000000000001 3639 1979-12-19 2024-10-11 01:00:39.000 1979-12-19 2024-10-11 01:00:39 +3641 3641 3642 364.1 728.2 3641 1979-12-21 2024-10-11 01:00:41.000 1979-12-21 2024-10-11 01:00:41 +3642 3642 3643 364.2 728.4000000000001 3642 1979-12-22 2024-10-11 01:00:42.000 1979-12-22 2024-10-11 01:00:42 +3643 3643 3644 364.3 728.6 3643 1979-12-23 2024-10-11 01:00:43.000 1979-12-23 2024-10-11 01:00:43 +3644 3644 3645 364.4 728.8000000000001 3644 1979-12-24 2024-10-11 01:00:44.000 1979-12-24 2024-10-11 01:00:44 +3646 3646 3647 364.6 729.2 3646 1979-12-26 2024-10-11 01:00:46.000 1979-12-26 2024-10-11 01:00:46 +3647 3647 3648 364.7 729.4000000000001 3647 1979-12-27 2024-10-11 01:00:47.000 1979-12-27 2024-10-11 01:00:47 +3648 3648 3649 364.8 729.6 3648 1979-12-28 2024-10-11 01:00:48.000 1979-12-28 2024-10-11 01:00:48 +3649 3649 3650 364.9 729.8000000000001 3649 1979-12-29 2024-10-11 01:00:49.000 1979-12-29 2024-10-11 01:00:49 +3651 3651 3652 365.1 730.2 3651 1979-12-31 2024-10-11 01:00:51.000 1979-12-31 2024-10-11 01:00:51 +3652 3652 3653 365.2 730.4000000000001 3652 1980-01-01 2024-10-11 01:00:52.000 1980-01-01 2024-10-11 01:00:52 +3653 3653 3654 365.3 730.6 3653 1980-01-02 2024-10-11 01:00:53.000 1980-01-02 2024-10-11 01:00:53 +3654 3654 3655 365.4 730.8000000000001 3654 1980-01-03 2024-10-11 01:00:54.000 1980-01-03 2024-10-11 01:00:54 +3656 3656 3657 365.6 731.2 3656 1980-01-05 2024-10-11 01:00:56.000 1980-01-05 2024-10-11 01:00:56 +3657 3657 3658 365.7 731.4000000000001 3657 1980-01-06 2024-10-11 01:00:57.000 1980-01-06 2024-10-11 01:00:57 +3658 3658 3659 365.8 731.6 3658 1980-01-07 2024-10-11 01:00:58.000 1980-01-07 2024-10-11 01:00:58 +3659 3659 3660 365.9 731.8000000000001 3659 1980-01-08 2024-10-11 01:00:59.000 1980-01-08 2024-10-11 01:00:59 +3661 3661 3662 366.1 732.2 3661 1980-01-10 2024-10-11 01:01:01.000 1980-01-10 2024-10-11 01:01:01 +3662 3662 3663 366.2 732.4000000000001 3662 1980-01-11 2024-10-11 01:01:02.000 1980-01-11 2024-10-11 01:01:02 +3663 3663 3664 366.3 732.6 3663 1980-01-12 2024-10-11 01:01:03.000 1980-01-12 2024-10-11 01:01:03 +3664 3664 3665 366.4 732.8000000000001 3664 1980-01-13 2024-10-11 01:01:04.000 1980-01-13 2024-10-11 01:01:04 +3666 3666 3667 366.6 733.2 3666 1980-01-15 2024-10-11 01:01:06.000 1980-01-15 2024-10-11 01:01:06 +3667 3667 3668 366.7 733.4000000000001 3667 1980-01-16 2024-10-11 01:01:07.000 1980-01-16 2024-10-11 01:01:07 +3668 3668 3669 366.8 733.6 3668 1980-01-17 2024-10-11 01:01:08.000 1980-01-17 2024-10-11 01:01:08 +3669 3669 3670 366.9 733.8000000000001 3669 1980-01-18 2024-10-11 01:01:09.000 1980-01-18 2024-10-11 01:01:09 +3671 3671 3672 367.1 734.2 3671 1980-01-20 2024-10-11 01:01:11.000 1980-01-20 2024-10-11 01:01:11 +3672 3672 3673 367.2 734.4000000000001 3672 1980-01-21 2024-10-11 01:01:12.000 1980-01-21 2024-10-11 01:01:12 +3673 3673 3674 367.3 734.6 3673 1980-01-22 2024-10-11 01:01:13.000 1980-01-22 2024-10-11 01:01:13 +3674 3674 3675 367.4 734.8000000000001 3674 1980-01-23 2024-10-11 01:01:14.000 1980-01-23 2024-10-11 01:01:14 +3676 3676 3677 367.6 735.2 3676 1980-01-25 2024-10-11 01:01:16.000 1980-01-25 2024-10-11 01:01:16 +3677 3677 3678 367.7 735.4000000000001 3677 1980-01-26 2024-10-11 01:01:17.000 1980-01-26 2024-10-11 01:01:17 +3678 3678 3679 367.8 735.6 3678 1980-01-27 2024-10-11 01:01:18.000 1980-01-27 2024-10-11 01:01:18 +3679 3679 3680 367.9 735.8000000000001 3679 1980-01-28 2024-10-11 01:01:19.000 1980-01-28 2024-10-11 01:01:19 +3681 3681 3682 368.1 736.2 3681 1980-01-30 2024-10-11 01:01:21.000 1980-01-30 2024-10-11 01:01:21 +3682 3682 3683 368.2 736.4000000000001 3682 1980-01-31 2024-10-11 01:01:22.000 1980-01-31 2024-10-11 01:01:22 +3683 3683 3684 368.3 736.6 3683 1980-02-01 2024-10-11 01:01:23.000 1980-02-01 2024-10-11 01:01:23 +3684 3684 3685 368.4 736.8000000000001 3684 1980-02-02 2024-10-11 01:01:24.000 1980-02-02 2024-10-11 01:01:24 +3686 3686 3687 368.6 737.2 3686 1980-02-04 2024-10-11 01:01:26.000 1980-02-04 2024-10-11 01:01:26 +3687 3687 3688 368.7 737.4000000000001 3687 1980-02-05 2024-10-11 01:01:27.000 1980-02-05 2024-10-11 01:01:27 +3688 3688 3689 368.8 737.6 3688 1980-02-06 2024-10-11 01:01:28.000 1980-02-06 2024-10-11 01:01:28 +3689 3689 3690 368.9 737.8000000000001 3689 1980-02-07 2024-10-11 01:01:29.000 1980-02-07 2024-10-11 01:01:29 +3691 3691 3692 369.1 738.2 3691 1980-02-09 2024-10-11 01:01:31.000 1980-02-09 2024-10-11 01:01:31 +3692 3692 3693 369.2 738.4000000000001 3692 1980-02-10 2024-10-11 01:01:32.000 1980-02-10 2024-10-11 01:01:32 +3693 3693 3694 369.3 738.6 3693 1980-02-11 2024-10-11 01:01:33.000 1980-02-11 2024-10-11 01:01:33 +3694 3694 3695 369.4 738.8000000000001 3694 1980-02-12 2024-10-11 01:01:34.000 1980-02-12 2024-10-11 01:01:34 +3696 3696 3697 369.6 739.2 3696 1980-02-14 2024-10-11 01:01:36.000 1980-02-14 2024-10-11 01:01:36 +3697 3697 3698 369.7 739.4000000000001 3697 1980-02-15 2024-10-11 01:01:37.000 1980-02-15 2024-10-11 01:01:37 +3698 3698 3699 369.8 739.6 3698 1980-02-16 2024-10-11 01:01:38.000 1980-02-16 2024-10-11 01:01:38 +3699 3699 3700 369.9 739.8000000000001 3699 1980-02-17 2024-10-11 01:01:39.000 1980-02-17 2024-10-11 01:01:39 +3701 3701 3702 370.1 740.2 3701 1980-02-19 2024-10-11 01:01:41.000 1980-02-19 2024-10-11 01:01:41 +3702 3702 3703 370.2 740.4000000000001 3702 1980-02-20 2024-10-11 01:01:42.000 1980-02-20 2024-10-11 01:01:42 +3703 3703 3704 370.3 740.6 3703 1980-02-21 2024-10-11 01:01:43.000 1980-02-21 2024-10-11 01:01:43 +3704 3704 3705 370.4 740.8000000000001 3704 1980-02-22 2024-10-11 01:01:44.000 1980-02-22 2024-10-11 01:01:44 +3706 3706 3707 370.6 741.2 3706 1980-02-24 2024-10-11 01:01:46.000 1980-02-24 2024-10-11 01:01:46 +3707 3707 3708 370.7 741.4000000000001 3707 1980-02-25 2024-10-11 01:01:47.000 1980-02-25 2024-10-11 01:01:47 +3708 3708 3709 370.8 741.6 3708 1980-02-26 2024-10-11 01:01:48.000 1980-02-26 2024-10-11 01:01:48 +3709 3709 3710 370.9 741.8000000000001 3709 1980-02-27 2024-10-11 01:01:49.000 1980-02-27 2024-10-11 01:01:49 +3711 3711 3712 371.1 742.2 3711 1980-02-29 2024-10-11 01:01:51.000 1980-02-29 2024-10-11 01:01:51 +3712 3712 3713 371.2 742.4000000000001 3712 1980-03-01 2024-10-11 01:01:52.000 1980-03-01 2024-10-11 01:01:52 +3713 3713 3714 371.3 742.6 3713 1980-03-02 2024-10-11 01:01:53.000 1980-03-02 2024-10-11 01:01:53 +3714 3714 3715 371.4 742.8000000000001 3714 1980-03-03 2024-10-11 01:01:54.000 1980-03-03 2024-10-11 01:01:54 +3716 3716 3717 371.6 743.2 3716 1980-03-05 2024-10-11 01:01:56.000 1980-03-05 2024-10-11 01:01:56 +3717 3717 3718 371.7 743.4000000000001 3717 1980-03-06 2024-10-11 01:01:57.000 1980-03-06 2024-10-11 01:01:57 +3718 3718 3719 371.8 743.6 3718 1980-03-07 2024-10-11 01:01:58.000 1980-03-07 2024-10-11 01:01:58 +3719 3719 3720 371.9 743.8000000000001 3719 1980-03-08 2024-10-11 01:01:59.000 1980-03-08 2024-10-11 01:01:59 +3721 3721 3722 372.1 744.2 3721 1980-03-10 2024-10-11 01:02:01.000 1980-03-10 2024-10-11 01:02:01 +3722 3722 3723 372.2 744.4000000000001 3722 1980-03-11 2024-10-11 01:02:02.000 1980-03-11 2024-10-11 01:02:02 +3723 3723 3724 372.3 744.6 3723 1980-03-12 2024-10-11 01:02:03.000 1980-03-12 2024-10-11 01:02:03 +3724 3724 3725 372.4 744.8000000000001 3724 1980-03-13 2024-10-11 01:02:04.000 1980-03-13 2024-10-11 01:02:04 +3726 3726 3727 372.6 745.2 3726 1980-03-15 2024-10-11 01:02:06.000 1980-03-15 2024-10-11 01:02:06 +3727 3727 3728 372.7 745.4000000000001 3727 1980-03-16 2024-10-11 01:02:07.000 1980-03-16 2024-10-11 01:02:07 +3728 3728 3729 372.8 745.6 3728 1980-03-17 2024-10-11 01:02:08.000 1980-03-17 2024-10-11 01:02:08 +3729 3729 3730 372.9 745.8000000000001 3729 1980-03-18 2024-10-11 01:02:09.000 1980-03-18 2024-10-11 01:02:09 +3731 3731 3732 373.1 746.2 3731 1980-03-20 2024-10-11 01:02:11.000 1980-03-20 2024-10-11 01:02:11 +3732 3732 3733 373.2 746.4000000000001 3732 1980-03-21 2024-10-11 01:02:12.000 1980-03-21 2024-10-11 01:02:12 +3733 3733 3734 373.3 746.6 3733 1980-03-22 2024-10-11 01:02:13.000 1980-03-22 2024-10-11 01:02:13 +3734 3734 3735 373.4 746.8000000000001 3734 1980-03-23 2024-10-11 01:02:14.000 1980-03-23 2024-10-11 01:02:14 +3736 3736 3737 373.6 747.2 3736 1980-03-25 2024-10-11 01:02:16.000 1980-03-25 2024-10-11 01:02:16 +3737 3737 3738 373.7 747.4000000000001 3737 1980-03-26 2024-10-11 01:02:17.000 1980-03-26 2024-10-11 01:02:17 +3738 3738 3739 373.8 747.6 3738 1980-03-27 2024-10-11 01:02:18.000 1980-03-27 2024-10-11 01:02:18 +3739 3739 3740 373.9 747.8000000000001 3739 1980-03-28 2024-10-11 01:02:19.000 1980-03-28 2024-10-11 01:02:19 +3741 3741 3742 374.1 748.2 3741 1980-03-30 2024-10-11 01:02:21.000 1980-03-30 2024-10-11 01:02:21 +3742 3742 3743 374.2 748.4000000000001 3742 1980-03-31 2024-10-11 01:02:22.000 1980-03-31 2024-10-11 01:02:22 +3743 3743 3744 374.3 748.6 3743 1980-04-01 2024-10-11 01:02:23.000 1980-04-01 2024-10-11 01:02:23 +3744 3744 3745 374.4 748.8000000000001 3744 1980-04-02 2024-10-11 01:02:24.000 1980-04-02 2024-10-11 01:02:24 +3746 3746 3747 374.6 749.2 3746 1980-04-04 2024-10-11 01:02:26.000 1980-04-04 2024-10-11 01:02:26 +3747 3747 3748 374.7 749.4000000000001 3747 1980-04-05 2024-10-11 01:02:27.000 1980-04-05 2024-10-11 01:02:27 +3748 3748 3749 374.8 749.6 3748 1980-04-06 2024-10-11 01:02:28.000 1980-04-06 2024-10-11 01:02:28 +3749 3749 3750 374.9 749.8000000000001 3749 1980-04-07 2024-10-11 01:02:29.000 1980-04-07 2024-10-11 01:02:29 +3751 3751 3752 375.1 750.2 3751 1980-04-09 2024-10-11 01:02:31.000 1980-04-09 2024-10-11 01:02:31 +3752 3752 3753 375.2 750.4000000000001 3752 1980-04-10 2024-10-11 01:02:32.000 1980-04-10 2024-10-11 01:02:32 +3753 3753 3754 375.3 750.6 3753 1980-04-11 2024-10-11 01:02:33.000 1980-04-11 2024-10-11 01:02:33 +3754 3754 3755 375.4 750.8000000000001 3754 1980-04-12 2024-10-11 01:02:34.000 1980-04-12 2024-10-11 01:02:34 +3756 3756 3757 375.6 751.2 3756 1980-04-14 2024-10-11 01:02:36.000 1980-04-14 2024-10-11 01:02:36 +3757 3757 3758 375.7 751.4000000000001 3757 1980-04-15 2024-10-11 01:02:37.000 1980-04-15 2024-10-11 01:02:37 +3758 3758 3759 375.8 751.6 3758 1980-04-16 2024-10-11 01:02:38.000 1980-04-16 2024-10-11 01:02:38 +3759 3759 3760 375.9 751.8000000000001 3759 1980-04-17 2024-10-11 01:02:39.000 1980-04-17 2024-10-11 01:02:39 +3761 3761 3762 376.1 752.2 3761 1980-04-19 2024-10-11 01:02:41.000 1980-04-19 2024-10-11 01:02:41 +3762 3762 3763 376.2 752.4000000000001 3762 1980-04-20 2024-10-11 01:02:42.000 1980-04-20 2024-10-11 01:02:42 +3763 3763 3764 376.3 752.6 3763 1980-04-21 2024-10-11 01:02:43.000 1980-04-21 2024-10-11 01:02:43 +3764 3764 3765 376.4 752.8000000000001 3764 1980-04-22 2024-10-11 01:02:44.000 1980-04-22 2024-10-11 01:02:44 +3766 3766 3767 376.6 753.2 3766 1980-04-24 2024-10-11 01:02:46.000 1980-04-24 2024-10-11 01:02:46 +3767 3767 3768 376.7 753.4000000000001 3767 1980-04-25 2024-10-11 01:02:47.000 1980-04-25 2024-10-11 01:02:47 +3768 3768 3769 376.8 753.6 3768 1980-04-26 2024-10-11 01:02:48.000 1980-04-26 2024-10-11 01:02:48 +3769 3769 3770 376.9 753.8000000000001 3769 1980-04-27 2024-10-11 01:02:49.000 1980-04-27 2024-10-11 01:02:49 +3771 3771 3772 377.1 754.2 3771 1980-04-29 2024-10-11 01:02:51.000 1980-04-29 2024-10-11 01:02:51 +3772 3772 3773 377.2 754.4000000000001 3772 1980-04-30 2024-10-11 01:02:52.000 1980-04-30 2024-10-11 01:02:52 +3773 3773 3774 377.3 754.6 3773 1980-05-01 2024-10-11 01:02:53.000 1980-05-01 2024-10-11 01:02:53 +3774 3774 3775 377.4 754.8000000000001 3774 1980-05-02 2024-10-11 01:02:54.000 1980-05-02 2024-10-11 01:02:54 +3776 3776 3777 377.6 755.2 3776 1980-05-04 2024-10-11 01:02:56.000 1980-05-04 2024-10-11 01:02:56 +3777 3777 3778 377.7 755.4000000000001 3777 1980-05-05 2024-10-11 01:02:57.000 1980-05-05 2024-10-11 01:02:57 +3778 3778 3779 377.8 755.6 3778 1980-05-06 2024-10-11 01:02:58.000 1980-05-06 2024-10-11 01:02:58 +3779 3779 3780 377.9 755.8000000000001 3779 1980-05-07 2024-10-11 01:02:59.000 1980-05-07 2024-10-11 01:02:59 +3781 3781 3782 378.1 756.2 3781 1980-05-09 2024-10-11 01:03:01.000 1980-05-09 2024-10-11 01:03:01 +3782 3782 3783 378.2 756.4000000000001 3782 1980-05-10 2024-10-11 01:03:02.000 1980-05-10 2024-10-11 01:03:02 +3783 3783 3784 378.3 756.6 3783 1980-05-11 2024-10-11 01:03:03.000 1980-05-11 2024-10-11 01:03:03 +3784 3784 3785 378.4 756.8000000000001 3784 1980-05-12 2024-10-11 01:03:04.000 1980-05-12 2024-10-11 01:03:04 +3786 3786 3787 378.6 757.2 3786 1980-05-14 2024-10-11 01:03:06.000 1980-05-14 2024-10-11 01:03:06 +3787 3787 3788 378.7 757.4000000000001 3787 1980-05-15 2024-10-11 01:03:07.000 1980-05-15 2024-10-11 01:03:07 +3788 3788 3789 378.8 757.6 3788 1980-05-16 2024-10-11 01:03:08.000 1980-05-16 2024-10-11 01:03:08 +3789 3789 3790 378.9 757.8000000000001 3789 1980-05-17 2024-10-11 01:03:09.000 1980-05-17 2024-10-11 01:03:09 +3791 3791 3792 379.1 758.2 3791 1980-05-19 2024-10-11 01:03:11.000 1980-05-19 2024-10-11 01:03:11 +3792 3792 3793 379.2 758.4000000000001 3792 1980-05-20 2024-10-11 01:03:12.000 1980-05-20 2024-10-11 01:03:12 +3793 3793 3794 379.3 758.6 3793 1980-05-21 2024-10-11 01:03:13.000 1980-05-21 2024-10-11 01:03:13 +3794 3794 3795 379.4 758.8000000000001 3794 1980-05-22 2024-10-11 01:03:14.000 1980-05-22 2024-10-11 01:03:14 +3796 3796 3797 379.6 759.2 3796 1980-05-24 2024-10-11 01:03:16.000 1980-05-24 2024-10-11 01:03:16 +3797 3797 3798 379.7 759.4000000000001 3797 1980-05-25 2024-10-11 01:03:17.000 1980-05-25 2024-10-11 01:03:17 +3798 3798 3799 379.8 759.6 3798 1980-05-26 2024-10-11 01:03:18.000 1980-05-26 2024-10-11 01:03:18 +3799 3799 3800 379.9 759.8000000000001 3799 1980-05-27 2024-10-11 01:03:19.000 1980-05-27 2024-10-11 01:03:19 +3801 3801 3802 380.1 760.2 3801 1980-05-29 2024-10-11 01:03:21.000 1980-05-29 2024-10-11 01:03:21 +3802 3802 3803 380.2 760.4000000000001 3802 1980-05-30 2024-10-11 01:03:22.000 1980-05-30 2024-10-11 01:03:22 +3803 3803 3804 380.3 760.6 3803 1980-05-31 2024-10-11 01:03:23.000 1980-05-31 2024-10-11 01:03:23 +3804 3804 3805 380.4 760.8000000000001 3804 1980-06-01 2024-10-11 01:03:24.000 1980-06-01 2024-10-11 01:03:24 +3806 3806 3807 380.6 761.2 3806 1980-06-03 2024-10-11 01:03:26.000 1980-06-03 2024-10-11 01:03:26 +3807 3807 3808 380.7 761.4000000000001 3807 1980-06-04 2024-10-11 01:03:27.000 1980-06-04 2024-10-11 01:03:27 +3808 3808 3809 380.8 761.6 3808 1980-06-05 2024-10-11 01:03:28.000 1980-06-05 2024-10-11 01:03:28 +3809 3809 3810 380.9 761.8000000000001 3809 1980-06-06 2024-10-11 01:03:29.000 1980-06-06 2024-10-11 01:03:29 +3811 3811 3812 381.1 762.2 3811 1980-06-08 2024-10-11 01:03:31.000 1980-06-08 2024-10-11 01:03:31 +3812 3812 3813 381.2 762.4000000000001 3812 1980-06-09 2024-10-11 01:03:32.000 1980-06-09 2024-10-11 01:03:32 +3813 3813 3814 381.3 762.6 3813 1980-06-10 2024-10-11 01:03:33.000 1980-06-10 2024-10-11 01:03:33 +3814 3814 3815 381.4 762.8000000000001 3814 1980-06-11 2024-10-11 01:03:34.000 1980-06-11 2024-10-11 01:03:34 +3816 3816 3817 381.6 763.2 3816 1980-06-13 2024-10-11 01:03:36.000 1980-06-13 2024-10-11 01:03:36 +3817 3817 3818 381.7 763.4000000000001 3817 1980-06-14 2024-10-11 01:03:37.000 1980-06-14 2024-10-11 01:03:37 +3818 3818 3819 381.8 763.6 3818 1980-06-15 2024-10-11 01:03:38.000 1980-06-15 2024-10-11 01:03:38 +3819 3819 3820 381.9 763.8000000000001 3819 1980-06-16 2024-10-11 01:03:39.000 1980-06-16 2024-10-11 01:03:39 +3821 3821 3822 382.1 764.2 3821 1980-06-18 2024-10-11 01:03:41.000 1980-06-18 2024-10-11 01:03:41 +3822 3822 3823 382.2 764.4000000000001 3822 1980-06-19 2024-10-11 01:03:42.000 1980-06-19 2024-10-11 01:03:42 +3823 3823 3824 382.3 764.6 3823 1980-06-20 2024-10-11 01:03:43.000 1980-06-20 2024-10-11 01:03:43 +3824 3824 3825 382.4 764.8000000000001 3824 1980-06-21 2024-10-11 01:03:44.000 1980-06-21 2024-10-11 01:03:44 +3826 3826 3827 382.6 765.2 3826 1980-06-23 2024-10-11 01:03:46.000 1980-06-23 2024-10-11 01:03:46 +3827 3827 3828 382.7 765.4000000000001 3827 1980-06-24 2024-10-11 01:03:47.000 1980-06-24 2024-10-11 01:03:47 +3828 3828 3829 382.8 765.6 3828 1980-06-25 2024-10-11 01:03:48.000 1980-06-25 2024-10-11 01:03:48 +3829 3829 3830 382.9 765.8000000000001 3829 1980-06-26 2024-10-11 01:03:49.000 1980-06-26 2024-10-11 01:03:49 +3831 3831 3832 383.1 766.2 3831 1980-06-28 2024-10-11 01:03:51.000 1980-06-28 2024-10-11 01:03:51 +3832 3832 3833 383.2 766.4000000000001 3832 1980-06-29 2024-10-11 01:03:52.000 1980-06-29 2024-10-11 01:03:52 +3833 3833 3834 383.3 766.6 3833 1980-06-30 2024-10-11 01:03:53.000 1980-06-30 2024-10-11 01:03:53 +3834 3834 3835 383.4 766.8000000000001 3834 1980-07-01 2024-10-11 01:03:54.000 1980-07-01 2024-10-11 01:03:54 +3836 3836 3837 383.6 767.2 3836 1980-07-03 2024-10-11 01:03:56.000 1980-07-03 2024-10-11 01:03:56 +3837 3837 3838 383.7 767.4000000000001 3837 1980-07-04 2024-10-11 01:03:57.000 1980-07-04 2024-10-11 01:03:57 +3838 3838 3839 383.8 767.6 3838 1980-07-05 2024-10-11 01:03:58.000 1980-07-05 2024-10-11 01:03:58 +3839 3839 3840 383.9 767.8000000000001 3839 1980-07-06 2024-10-11 01:03:59.000 1980-07-06 2024-10-11 01:03:59 +3841 3841 3842 384.1 768.2 3841 1980-07-08 2024-10-11 01:04:01.000 1980-07-08 2024-10-11 01:04:01 +3842 3842 3843 384.2 768.4000000000001 3842 1980-07-09 2024-10-11 01:04:02.000 1980-07-09 2024-10-11 01:04:02 +3843 3843 3844 384.3 768.6 3843 1980-07-10 2024-10-11 01:04:03.000 1980-07-10 2024-10-11 01:04:03 +3844 3844 3845 384.4 768.8000000000001 3844 1980-07-11 2024-10-11 01:04:04.000 1980-07-11 2024-10-11 01:04:04 +3846 3846 3847 384.6 769.2 3846 1980-07-13 2024-10-11 01:04:06.000 1980-07-13 2024-10-11 01:04:06 +3847 3847 3848 384.7 769.4000000000001 3847 1980-07-14 2024-10-11 01:04:07.000 1980-07-14 2024-10-11 01:04:07 +3848 3848 3849 384.8 769.6 3848 1980-07-15 2024-10-11 01:04:08.000 1980-07-15 2024-10-11 01:04:08 +3849 3849 3850 384.9 769.8000000000001 3849 1980-07-16 2024-10-11 01:04:09.000 1980-07-16 2024-10-11 01:04:09 +3851 3851 3852 385.1 770.2 3851 1980-07-18 2024-10-11 01:04:11.000 1980-07-18 2024-10-11 01:04:11 +3852 3852 3853 385.2 770.4000000000001 3852 1980-07-19 2024-10-11 01:04:12.000 1980-07-19 2024-10-11 01:04:12 +3853 3853 3854 385.3 770.6 3853 1980-07-20 2024-10-11 01:04:13.000 1980-07-20 2024-10-11 01:04:13 +3854 3854 3855 385.4 770.8000000000001 3854 1980-07-21 2024-10-11 01:04:14.000 1980-07-21 2024-10-11 01:04:14 +3856 3856 3857 385.6 771.2 3856 1980-07-23 2024-10-11 01:04:16.000 1980-07-23 2024-10-11 01:04:16 +3857 3857 3858 385.7 771.4000000000001 3857 1980-07-24 2024-10-11 01:04:17.000 1980-07-24 2024-10-11 01:04:17 +3858 3858 3859 385.8 771.6 3858 1980-07-25 2024-10-11 01:04:18.000 1980-07-25 2024-10-11 01:04:18 +3859 3859 3860 385.9 771.8000000000001 3859 1980-07-26 2024-10-11 01:04:19.000 1980-07-26 2024-10-11 01:04:19 +3861 3861 3862 386.1 772.2 3861 1980-07-28 2024-10-11 01:04:21.000 1980-07-28 2024-10-11 01:04:21 +3862 3862 3863 386.2 772.4000000000001 3862 1980-07-29 2024-10-11 01:04:22.000 1980-07-29 2024-10-11 01:04:22 +3863 3863 3864 386.3 772.6 3863 1980-07-30 2024-10-11 01:04:23.000 1980-07-30 2024-10-11 01:04:23 +3864 3864 3865 386.4 772.8000000000001 3864 1980-07-31 2024-10-11 01:04:24.000 1980-07-31 2024-10-11 01:04:24 +3866 3866 3867 386.6 773.2 3866 1980-08-02 2024-10-11 01:04:26.000 1980-08-02 2024-10-11 01:04:26 +3867 3867 3868 386.7 773.4000000000001 3867 1980-08-03 2024-10-11 01:04:27.000 1980-08-03 2024-10-11 01:04:27 +3868 3868 3869 386.8 773.6 3868 1980-08-04 2024-10-11 01:04:28.000 1980-08-04 2024-10-11 01:04:28 +3869 3869 3870 386.9 773.8000000000001 3869 1980-08-05 2024-10-11 01:04:29.000 1980-08-05 2024-10-11 01:04:29 +3871 3871 3872 387.1 774.2 3871 1980-08-07 2024-10-11 01:04:31.000 1980-08-07 2024-10-11 01:04:31 +3872 3872 3873 387.2 774.4000000000001 3872 1980-08-08 2024-10-11 01:04:32.000 1980-08-08 2024-10-11 01:04:32 +3873 3873 3874 387.3 774.6 3873 1980-08-09 2024-10-11 01:04:33.000 1980-08-09 2024-10-11 01:04:33 +3874 3874 3875 387.4 774.8000000000001 3874 1980-08-10 2024-10-11 01:04:34.000 1980-08-10 2024-10-11 01:04:34 +3876 3876 3877 387.6 775.2 3876 1980-08-12 2024-10-11 01:04:36.000 1980-08-12 2024-10-11 01:04:36 +3877 3877 3878 387.7 775.4000000000001 3877 1980-08-13 2024-10-11 01:04:37.000 1980-08-13 2024-10-11 01:04:37 +3878 3878 3879 387.8 775.6 3878 1980-08-14 2024-10-11 01:04:38.000 1980-08-14 2024-10-11 01:04:38 +3879 3879 3880 387.9 775.8000000000001 3879 1980-08-15 2024-10-11 01:04:39.000 1980-08-15 2024-10-11 01:04:39 +3881 3881 3882 388.1 776.2 3881 1980-08-17 2024-10-11 01:04:41.000 1980-08-17 2024-10-11 01:04:41 +3882 3882 3883 388.2 776.4000000000001 3882 1980-08-18 2024-10-11 01:04:42.000 1980-08-18 2024-10-11 01:04:42 +3883 3883 3884 388.3 776.6 3883 1980-08-19 2024-10-11 01:04:43.000 1980-08-19 2024-10-11 01:04:43 +3884 3884 3885 388.4 776.8000000000001 3884 1980-08-20 2024-10-11 01:04:44.000 1980-08-20 2024-10-11 01:04:44 +3886 3886 3887 388.6 777.2 3886 1980-08-22 2024-10-11 01:04:46.000 1980-08-22 2024-10-11 01:04:46 +3887 3887 3888 388.7 777.4000000000001 3887 1980-08-23 2024-10-11 01:04:47.000 1980-08-23 2024-10-11 01:04:47 +3888 3888 3889 388.8 777.6 3888 1980-08-24 2024-10-11 01:04:48.000 1980-08-24 2024-10-11 01:04:48 +3889 3889 3890 388.9 777.8000000000001 3889 1980-08-25 2024-10-11 01:04:49.000 1980-08-25 2024-10-11 01:04:49 +3891 3891 3892 389.1 778.2 3891 1980-08-27 2024-10-11 01:04:51.000 1980-08-27 2024-10-11 01:04:51 +3892 3892 3893 389.2 778.4000000000001 3892 1980-08-28 2024-10-11 01:04:52.000 1980-08-28 2024-10-11 01:04:52 +3893 3893 3894 389.3 778.6 3893 1980-08-29 2024-10-11 01:04:53.000 1980-08-29 2024-10-11 01:04:53 +3894 3894 3895 389.4 778.8000000000001 3894 1980-08-30 2024-10-11 01:04:54.000 1980-08-30 2024-10-11 01:04:54 +3896 3896 3897 389.6 779.2 3896 1980-09-01 2024-10-11 01:04:56.000 1980-09-01 2024-10-11 01:04:56 +3897 3897 3898 389.7 779.4000000000001 3897 1980-09-02 2024-10-11 01:04:57.000 1980-09-02 2024-10-11 01:04:57 +3898 3898 3899 389.8 779.6 3898 1980-09-03 2024-10-11 01:04:58.000 1980-09-03 2024-10-11 01:04:58 +3899 3899 3900 389.9 779.8000000000001 3899 1980-09-04 2024-10-11 01:04:59.000 1980-09-04 2024-10-11 01:04:59 +3901 3901 3902 390.1 780.2 3901 1980-09-06 2024-10-11 01:05:01.000 1980-09-06 2024-10-11 01:05:01 +3902 3902 3903 390.2 780.4000000000001 3902 1980-09-07 2024-10-11 01:05:02.000 1980-09-07 2024-10-11 01:05:02 +3903 3903 3904 390.3 780.6 3903 1980-09-08 2024-10-11 01:05:03.000 1980-09-08 2024-10-11 01:05:03 +3904 3904 3905 390.4 780.8000000000001 3904 1980-09-09 2024-10-11 01:05:04.000 1980-09-09 2024-10-11 01:05:04 +3906 3906 3907 390.6 781.2 3906 1980-09-11 2024-10-11 01:05:06.000 1980-09-11 2024-10-11 01:05:06 +3907 3907 3908 390.7 781.4000000000001 3907 1980-09-12 2024-10-11 01:05:07.000 1980-09-12 2024-10-11 01:05:07 +3908 3908 3909 390.8 781.6 3908 1980-09-13 2024-10-11 01:05:08.000 1980-09-13 2024-10-11 01:05:08 +3909 3909 3910 390.9 781.8000000000001 3909 1980-09-14 2024-10-11 01:05:09.000 1980-09-14 2024-10-11 01:05:09 +3911 3911 3912 391.1 782.2 3911 1980-09-16 2024-10-11 01:05:11.000 1980-09-16 2024-10-11 01:05:11 +3912 3912 3913 391.2 782.4000000000001 3912 1980-09-17 2024-10-11 01:05:12.000 1980-09-17 2024-10-11 01:05:12 +3913 3913 3914 391.3 782.6 3913 1980-09-18 2024-10-11 01:05:13.000 1980-09-18 2024-10-11 01:05:13 +3914 3914 3915 391.4 782.8000000000001 3914 1980-09-19 2024-10-11 01:05:14.000 1980-09-19 2024-10-11 01:05:14 +3916 3916 3917 391.6 783.2 3916 1980-09-21 2024-10-11 01:05:16.000 1980-09-21 2024-10-11 01:05:16 +3917 3917 3918 391.7 783.4000000000001 3917 1980-09-22 2024-10-11 01:05:17.000 1980-09-22 2024-10-11 01:05:17 +3918 3918 3919 391.8 783.6 3918 1980-09-23 2024-10-11 01:05:18.000 1980-09-23 2024-10-11 01:05:18 +3919 3919 3920 391.9 783.8000000000001 3919 1980-09-24 2024-10-11 01:05:19.000 1980-09-24 2024-10-11 01:05:19 +3921 3921 3922 392.1 784.2 3921 1980-09-26 2024-10-11 01:05:21.000 1980-09-26 2024-10-11 01:05:21 +3922 3922 3923 392.2 784.4000000000001 3922 1980-09-27 2024-10-11 01:05:22.000 1980-09-27 2024-10-11 01:05:22 +3923 3923 3924 392.3 784.6 3923 1980-09-28 2024-10-11 01:05:23.000 1980-09-28 2024-10-11 01:05:23 +3924 3924 3925 392.4 784.8000000000001 3924 1980-09-29 2024-10-11 01:05:24.000 1980-09-29 2024-10-11 01:05:24 +3926 3926 3927 392.6 785.2 3926 1980-10-01 2024-10-11 01:05:26.000 1980-10-01 2024-10-11 01:05:26 +3927 3927 3928 392.7 785.4000000000001 3927 1980-10-02 2024-10-11 01:05:27.000 1980-10-02 2024-10-11 01:05:27 +3928 3928 3929 392.8 785.6 3928 1980-10-03 2024-10-11 01:05:28.000 1980-10-03 2024-10-11 01:05:28 +3929 3929 3930 392.9 785.8000000000001 3929 1980-10-04 2024-10-11 01:05:29.000 1980-10-04 2024-10-11 01:05:29 +3931 3931 3932 393.1 786.2 3931 1980-10-06 2024-10-11 01:05:31.000 1980-10-06 2024-10-11 01:05:31 +3932 3932 3933 393.2 786.4000000000001 3932 1980-10-07 2024-10-11 01:05:32.000 1980-10-07 2024-10-11 01:05:32 +3933 3933 3934 393.3 786.6 3933 1980-10-08 2024-10-11 01:05:33.000 1980-10-08 2024-10-11 01:05:33 +3934 3934 3935 393.4 786.8000000000001 3934 1980-10-09 2024-10-11 01:05:34.000 1980-10-09 2024-10-11 01:05:34 +3936 3936 3937 393.6 787.2 3936 1980-10-11 2024-10-11 01:05:36.000 1980-10-11 2024-10-11 01:05:36 +3937 3937 3938 393.7 787.4000000000001 3937 1980-10-12 2024-10-11 01:05:37.000 1980-10-12 2024-10-11 01:05:37 +3938 3938 3939 393.8 787.6 3938 1980-10-13 2024-10-11 01:05:38.000 1980-10-13 2024-10-11 01:05:38 +3939 3939 3940 393.9 787.8000000000001 3939 1980-10-14 2024-10-11 01:05:39.000 1980-10-14 2024-10-11 01:05:39 +3941 3941 3942 394.1 788.2 3941 1980-10-16 2024-10-11 01:05:41.000 1980-10-16 2024-10-11 01:05:41 +3942 3942 3943 394.2 788.4000000000001 3942 1980-10-17 2024-10-11 01:05:42.000 1980-10-17 2024-10-11 01:05:42 +3943 3943 3944 394.3 788.6 3943 1980-10-18 2024-10-11 01:05:43.000 1980-10-18 2024-10-11 01:05:43 +3944 3944 3945 394.4 788.8000000000001 3944 1980-10-19 2024-10-11 01:05:44.000 1980-10-19 2024-10-11 01:05:44 +3946 3946 3947 394.6 789.2 3946 1980-10-21 2024-10-11 01:05:46.000 1980-10-21 2024-10-11 01:05:46 +3947 3947 3948 394.7 789.4000000000001 3947 1980-10-22 2024-10-11 01:05:47.000 1980-10-22 2024-10-11 01:05:47 +3948 3948 3949 394.8 789.6 3948 1980-10-23 2024-10-11 01:05:48.000 1980-10-23 2024-10-11 01:05:48 +3949 3949 3950 394.9 789.8000000000001 3949 1980-10-24 2024-10-11 01:05:49.000 1980-10-24 2024-10-11 01:05:49 +3951 3951 3952 395.1 790.2 3951 1980-10-26 2024-10-11 01:05:51.000 1980-10-26 2024-10-11 01:05:51 +3952 3952 3953 395.2 790.4000000000001 3952 1980-10-27 2024-10-11 01:05:52.000 1980-10-27 2024-10-11 01:05:52 +3953 3953 3954 395.3 790.6 3953 1980-10-28 2024-10-11 01:05:53.000 1980-10-28 2024-10-11 01:05:53 +3954 3954 3955 395.4 790.8000000000001 3954 1980-10-29 2024-10-11 01:05:54.000 1980-10-29 2024-10-11 01:05:54 +3956 3956 3957 395.6 791.2 3956 1980-10-31 2024-10-11 01:05:56.000 1980-10-31 2024-10-11 01:05:56 +3957 3957 3958 395.7 791.4000000000001 3957 1980-11-01 2024-10-11 01:05:57.000 1980-11-01 2024-10-11 01:05:57 +3958 3958 3959 395.8 791.6 3958 1980-11-02 2024-10-11 01:05:58.000 1980-11-02 2024-10-11 01:05:58 +3959 3959 3960 395.9 791.8000000000001 3959 1980-11-03 2024-10-11 01:05:59.000 1980-11-03 2024-10-11 01:05:59 +3961 3961 3962 396.1 792.2 3961 1980-11-05 2024-10-11 01:06:01.000 1980-11-05 2024-10-11 01:06:01 +3962 3962 3963 396.2 792.4000000000001 3962 1980-11-06 2024-10-11 01:06:02.000 1980-11-06 2024-10-11 01:06:02 +3963 3963 3964 396.3 792.6 3963 1980-11-07 2024-10-11 01:06:03.000 1980-11-07 2024-10-11 01:06:03 +3964 3964 3965 396.4 792.8000000000001 3964 1980-11-08 2024-10-11 01:06:04.000 1980-11-08 2024-10-11 01:06:04 +3966 3966 3967 396.6 793.2 3966 1980-11-10 2024-10-11 01:06:06.000 1980-11-10 2024-10-11 01:06:06 +3967 3967 3968 396.7 793.4000000000001 3967 1980-11-11 2024-10-11 01:06:07.000 1980-11-11 2024-10-11 01:06:07 +3968 3968 3969 396.8 793.6 3968 1980-11-12 2024-10-11 01:06:08.000 1980-11-12 2024-10-11 01:06:08 +3969 3969 3970 396.9 793.8000000000001 3969 1980-11-13 2024-10-11 01:06:09.000 1980-11-13 2024-10-11 01:06:09 +3971 3971 3972 397.1 794.2 3971 1980-11-15 2024-10-11 01:06:11.000 1980-11-15 2024-10-11 01:06:11 +3972 3972 3973 397.2 794.4000000000001 3972 1980-11-16 2024-10-11 01:06:12.000 1980-11-16 2024-10-11 01:06:12 +3973 3973 3974 397.3 794.6 3973 1980-11-17 2024-10-11 01:06:13.000 1980-11-17 2024-10-11 01:06:13 +3974 3974 3975 397.4 794.8000000000001 3974 1980-11-18 2024-10-11 01:06:14.000 1980-11-18 2024-10-11 01:06:14 +3976 3976 3977 397.6 795.2 3976 1980-11-20 2024-10-11 01:06:16.000 1980-11-20 2024-10-11 01:06:16 +3977 3977 3978 397.7 795.4000000000001 3977 1980-11-21 2024-10-11 01:06:17.000 1980-11-21 2024-10-11 01:06:17 +3978 3978 3979 397.8 795.6 3978 1980-11-22 2024-10-11 01:06:18.000 1980-11-22 2024-10-11 01:06:18 +3979 3979 3980 397.9 795.8000000000001 3979 1980-11-23 2024-10-11 01:06:19.000 1980-11-23 2024-10-11 01:06:19 +3981 3981 3982 398.1 796.2 3981 1980-11-25 2024-10-11 01:06:21.000 1980-11-25 2024-10-11 01:06:21 +3982 3982 3983 398.2 796.4000000000001 3982 1980-11-26 2024-10-11 01:06:22.000 1980-11-26 2024-10-11 01:06:22 +3983 3983 3984 398.3 796.6 3983 1980-11-27 2024-10-11 01:06:23.000 1980-11-27 2024-10-11 01:06:23 +3984 3984 3985 398.4 796.8000000000001 3984 1980-11-28 2024-10-11 01:06:24.000 1980-11-28 2024-10-11 01:06:24 +3986 3986 3987 398.6 797.2 3986 1980-11-30 2024-10-11 01:06:26.000 1980-11-30 2024-10-11 01:06:26 +3987 3987 3988 398.7 797.4000000000001 3987 1980-12-01 2024-10-11 01:06:27.000 1980-12-01 2024-10-11 01:06:27 +3988 3988 3989 398.8 797.6 3988 1980-12-02 2024-10-11 01:06:28.000 1980-12-02 2024-10-11 01:06:28 +3989 3989 3990 398.9 797.8000000000001 3989 1980-12-03 2024-10-11 01:06:29.000 1980-12-03 2024-10-11 01:06:29 +3991 3991 3992 399.1 798.2 3991 1980-12-05 2024-10-11 01:06:31.000 1980-12-05 2024-10-11 01:06:31 +3992 3992 3993 399.2 798.4000000000001 3992 1980-12-06 2024-10-11 01:06:32.000 1980-12-06 2024-10-11 01:06:32 +3993 3993 3994 399.3 798.6 3993 1980-12-07 2024-10-11 01:06:33.000 1980-12-07 2024-10-11 01:06:33 +3994 3994 3995 399.4 798.8000000000001 3994 1980-12-08 2024-10-11 01:06:34.000 1980-12-08 2024-10-11 01:06:34 +3996 3996 3997 399.6 799.2 3996 1980-12-10 2024-10-11 01:06:36.000 1980-12-10 2024-10-11 01:06:36 +3997 3997 3998 399.7 799.4000000000001 3997 1980-12-11 2024-10-11 01:06:37.000 1980-12-11 2024-10-11 01:06:37 +3998 3998 3999 399.8 799.6 3998 1980-12-12 2024-10-11 01:06:38.000 1980-12-12 2024-10-11 01:06:38 +3999 3999 4000 399.9 799.8000000000001 3999 1980-12-13 2024-10-11 01:06:39.000 1980-12-13 2024-10-11 01:06:39 +4001 4001 4002 400.1 800.2 4001 1980-12-15 2024-10-11 01:06:41.000 1980-12-15 2024-10-11 01:06:41 +4002 4002 4003 400.2 800.4000000000001 4002 1980-12-16 2024-10-11 01:06:42.000 1980-12-16 2024-10-11 01:06:42 +4003 4003 4004 400.3 800.6 4003 1980-12-17 2024-10-11 01:06:43.000 1980-12-17 2024-10-11 01:06:43 +4004 4004 4005 400.4 800.8000000000001 4004 1980-12-18 2024-10-11 01:06:44.000 1980-12-18 2024-10-11 01:06:44 +4006 4006 4007 400.6 801.2 4006 1980-12-20 2024-10-11 01:06:46.000 1980-12-20 2024-10-11 01:06:46 +4007 4007 4008 400.7 801.4000000000001 4007 1980-12-21 2024-10-11 01:06:47.000 1980-12-21 2024-10-11 01:06:47 +4008 4008 4009 400.8 801.6 4008 1980-12-22 2024-10-11 01:06:48.000 1980-12-22 2024-10-11 01:06:48 +4009 4009 4010 400.9 801.8000000000001 4009 1980-12-23 2024-10-11 01:06:49.000 1980-12-23 2024-10-11 01:06:49 +4011 4011 4012 401.1 802.2 4011 1980-12-25 2024-10-11 01:06:51.000 1980-12-25 2024-10-11 01:06:51 +4012 4012 4013 401.2 802.4000000000001 4012 1980-12-26 2024-10-11 01:06:52.000 1980-12-26 2024-10-11 01:06:52 +4013 4013 4014 401.3 802.6 4013 1980-12-27 2024-10-11 01:06:53.000 1980-12-27 2024-10-11 01:06:53 +4014 4014 4015 401.4 802.8000000000001 4014 1980-12-28 2024-10-11 01:06:54.000 1980-12-28 2024-10-11 01:06:54 +4016 4016 4017 401.6 803.2 4016 1980-12-30 2024-10-11 01:06:56.000 1980-12-30 2024-10-11 01:06:56 +4017 4017 4018 401.7 803.4000000000001 4017 1980-12-31 2024-10-11 01:06:57.000 1980-12-31 2024-10-11 01:06:57 +4018 4018 4019 401.8 803.6 4018 1981-01-01 2024-10-11 01:06:58.000 1981-01-01 2024-10-11 01:06:58 +4019 4019 4020 401.9 803.8000000000001 4019 1981-01-02 2024-10-11 01:06:59.000 1981-01-02 2024-10-11 01:06:59 +4021 4021 4022 402.1 804.2 4021 1981-01-04 2024-10-11 01:07:01.000 1981-01-04 2024-10-11 01:07:01 +4022 4022 4023 402.2 804.4000000000001 4022 1981-01-05 2024-10-11 01:07:02.000 1981-01-05 2024-10-11 01:07:02 +4023 4023 4024 402.3 804.6 4023 1981-01-06 2024-10-11 01:07:03.000 1981-01-06 2024-10-11 01:07:03 +4024 4024 4025 402.4 804.8000000000001 4024 1981-01-07 2024-10-11 01:07:04.000 1981-01-07 2024-10-11 01:07:04 +4026 4026 4027 402.6 805.2 4026 1981-01-09 2024-10-11 01:07:06.000 1981-01-09 2024-10-11 01:07:06 +4027 4027 4028 402.7 805.4000000000001 4027 1981-01-10 2024-10-11 01:07:07.000 1981-01-10 2024-10-11 01:07:07 +4028 4028 4029 402.8 805.6 4028 1981-01-11 2024-10-11 01:07:08.000 1981-01-11 2024-10-11 01:07:08 +4029 4029 4030 402.9 805.8000000000001 4029 1981-01-12 2024-10-11 01:07:09.000 1981-01-12 2024-10-11 01:07:09 +4031 4031 4032 403.1 806.2 4031 1981-01-14 2024-10-11 01:07:11.000 1981-01-14 2024-10-11 01:07:11 +4032 4032 4033 403.2 806.4000000000001 4032 1981-01-15 2024-10-11 01:07:12.000 1981-01-15 2024-10-11 01:07:12 +4033 4033 4034 403.3 806.6 4033 1981-01-16 2024-10-11 01:07:13.000 1981-01-16 2024-10-11 01:07:13 +4034 4034 4035 403.4 806.8000000000001 4034 1981-01-17 2024-10-11 01:07:14.000 1981-01-17 2024-10-11 01:07:14 +4036 4036 4037 403.6 807.2 4036 1981-01-19 2024-10-11 01:07:16.000 1981-01-19 2024-10-11 01:07:16 +4037 4037 4038 403.7 807.4000000000001 4037 1981-01-20 2024-10-11 01:07:17.000 1981-01-20 2024-10-11 01:07:17 +4038 4038 4039 403.8 807.6 4038 1981-01-21 2024-10-11 01:07:18.000 1981-01-21 2024-10-11 01:07:18 +4039 4039 4040 403.9 807.8000000000001 4039 1981-01-22 2024-10-11 01:07:19.000 1981-01-22 2024-10-11 01:07:19 +4041 4041 4042 404.1 808.2 4041 1981-01-24 2024-10-11 01:07:21.000 1981-01-24 2024-10-11 01:07:21 +4042 4042 4043 404.2 808.4000000000001 4042 1981-01-25 2024-10-11 01:07:22.000 1981-01-25 2024-10-11 01:07:22 +4043 4043 4044 404.3 808.6 4043 1981-01-26 2024-10-11 01:07:23.000 1981-01-26 2024-10-11 01:07:23 +4044 4044 4045 404.4 808.8000000000001 4044 1981-01-27 2024-10-11 01:07:24.000 1981-01-27 2024-10-11 01:07:24 +4046 4046 4047 404.6 809.2 4046 1981-01-29 2024-10-11 01:07:26.000 1981-01-29 2024-10-11 01:07:26 +4047 4047 4048 404.7 809.4000000000001 4047 1981-01-30 2024-10-11 01:07:27.000 1981-01-30 2024-10-11 01:07:27 +4048 4048 4049 404.8 809.6 4048 1981-01-31 2024-10-11 01:07:28.000 1981-01-31 2024-10-11 01:07:28 +4049 4049 4050 404.9 809.8000000000001 4049 1981-02-01 2024-10-11 01:07:29.000 1981-02-01 2024-10-11 01:07:29 +4051 4051 4052 405.1 810.2 4051 1981-02-03 2024-10-11 01:07:31.000 1981-02-03 2024-10-11 01:07:31 +4052 4052 4053 405.2 810.4000000000001 4052 1981-02-04 2024-10-11 01:07:32.000 1981-02-04 2024-10-11 01:07:32 +4053 4053 4054 405.3 810.6 4053 1981-02-05 2024-10-11 01:07:33.000 1981-02-05 2024-10-11 01:07:33 +4054 4054 4055 405.4 810.8000000000001 4054 1981-02-06 2024-10-11 01:07:34.000 1981-02-06 2024-10-11 01:07:34 +4056 4056 4057 405.6 811.2 4056 1981-02-08 2024-10-11 01:07:36.000 1981-02-08 2024-10-11 01:07:36 +4057 4057 4058 405.7 811.4000000000001 4057 1981-02-09 2024-10-11 01:07:37.000 1981-02-09 2024-10-11 01:07:37 +4058 4058 4059 405.8 811.6 4058 1981-02-10 2024-10-11 01:07:38.000 1981-02-10 2024-10-11 01:07:38 +4059 4059 4060 405.9 811.8000000000001 4059 1981-02-11 2024-10-11 01:07:39.000 1981-02-11 2024-10-11 01:07:39 +4061 4061 4062 406.1 812.2 4061 1981-02-13 2024-10-11 01:07:41.000 1981-02-13 2024-10-11 01:07:41 +4062 4062 4063 406.2 812.4000000000001 4062 1981-02-14 2024-10-11 01:07:42.000 1981-02-14 2024-10-11 01:07:42 +4063 4063 4064 406.3 812.6 4063 1981-02-15 2024-10-11 01:07:43.000 1981-02-15 2024-10-11 01:07:43 +4064 4064 4065 406.4 812.8000000000001 4064 1981-02-16 2024-10-11 01:07:44.000 1981-02-16 2024-10-11 01:07:44 +4066 4066 4067 406.6 813.2 4066 1981-02-18 2024-10-11 01:07:46.000 1981-02-18 2024-10-11 01:07:46 +4067 4067 4068 406.7 813.4000000000001 4067 1981-02-19 2024-10-11 01:07:47.000 1981-02-19 2024-10-11 01:07:47 +4068 4068 4069 406.8 813.6 4068 1981-02-20 2024-10-11 01:07:48.000 1981-02-20 2024-10-11 01:07:48 +4069 4069 4070 406.9 813.8000000000001 4069 1981-02-21 2024-10-11 01:07:49.000 1981-02-21 2024-10-11 01:07:49 +4071 4071 4072 407.1 814.2 4071 1981-02-23 2024-10-11 01:07:51.000 1981-02-23 2024-10-11 01:07:51 +4072 4072 4073 407.2 814.4000000000001 4072 1981-02-24 2024-10-11 01:07:52.000 1981-02-24 2024-10-11 01:07:52 +4073 4073 4074 407.3 814.6 4073 1981-02-25 2024-10-11 01:07:53.000 1981-02-25 2024-10-11 01:07:53 +4074 4074 4075 407.4 814.8000000000001 4074 1981-02-26 2024-10-11 01:07:54.000 1981-02-26 2024-10-11 01:07:54 +4076 4076 4077 407.6 815.2 4076 1981-02-28 2024-10-11 01:07:56.000 1981-02-28 2024-10-11 01:07:56 +4077 4077 4078 407.7 815.4000000000001 4077 1981-03-01 2024-10-11 01:07:57.000 1981-03-01 2024-10-11 01:07:57 +4078 4078 4079 407.8 815.6 4078 1981-03-02 2024-10-11 01:07:58.000 1981-03-02 2024-10-11 01:07:58 +4079 4079 4080 407.9 815.8000000000001 4079 1981-03-03 2024-10-11 01:07:59.000 1981-03-03 2024-10-11 01:07:59 +4081 4081 4082 408.1 816.2 4081 1981-03-05 2024-10-11 01:08:01.000 1981-03-05 2024-10-11 01:08:01 +4082 4082 4083 408.2 816.4000000000001 4082 1981-03-06 2024-10-11 01:08:02.000 1981-03-06 2024-10-11 01:08:02 +4083 4083 4084 408.3 816.6 4083 1981-03-07 2024-10-11 01:08:03.000 1981-03-07 2024-10-11 01:08:03 +4084 4084 4085 408.4 816.8000000000001 4084 1981-03-08 2024-10-11 01:08:04.000 1981-03-08 2024-10-11 01:08:04 +4086 4086 4087 408.6 817.2 4086 1981-03-10 2024-10-11 01:08:06.000 1981-03-10 2024-10-11 01:08:06 +4087 4087 4088 408.7 817.4000000000001 4087 1981-03-11 2024-10-11 01:08:07.000 1981-03-11 2024-10-11 01:08:07 +4088 4088 4089 408.8 817.6 4088 1981-03-12 2024-10-11 01:08:08.000 1981-03-12 2024-10-11 01:08:08 +4089 4089 4090 408.9 817.8000000000001 4089 1981-03-13 2024-10-11 01:08:09.000 1981-03-13 2024-10-11 01:08:09 +4091 4091 4092 409.1 818.2 4091 1981-03-15 2024-10-11 01:08:11.000 1981-03-15 2024-10-11 01:08:11 +4092 4092 4093 409.2 818.4000000000001 4092 1981-03-16 2024-10-11 01:08:12.000 1981-03-16 2024-10-11 01:08:12 +4093 4093 4094 409.3 818.6 4093 1981-03-17 2024-10-11 01:08:13.000 1981-03-17 2024-10-11 01:08:13 +4094 4094 4095 409.4 818.8000000000001 4094 1981-03-18 2024-10-11 01:08:14.000 1981-03-18 2024-10-11 01:08:14 +4096 4096 4097 409.6 819.2 4096 1981-03-20 2024-10-11 01:08:16.000 1981-03-20 2024-10-11 01:08:16 +4097 4097 4098 409.7 819.4000000000001 4097 1981-03-21 2024-10-11 01:08:17.000 1981-03-21 2024-10-11 01:08:17 +4098 4098 4099 409.8 819.6 4098 1981-03-22 2024-10-11 01:08:18.000 1981-03-22 2024-10-11 01:08:18 +4099 4099 4100 409.9 819.8000000000001 4099 1981-03-23 2024-10-11 01:08:19.000 1981-03-23 2024-10-11 01:08:19 +4101 4101 4102 410.1 820.2 4101 1981-03-25 2024-10-11 01:08:21.000 1981-03-25 2024-10-11 01:08:21 +4102 4102 4103 410.2 820.4000000000001 4102 1981-03-26 2024-10-11 01:08:22.000 1981-03-26 2024-10-11 01:08:22 +4103 4103 4104 410.3 820.6 4103 1981-03-27 2024-10-11 01:08:23.000 1981-03-27 2024-10-11 01:08:23 +4104 4104 4105 410.4 820.8000000000001 4104 1981-03-28 2024-10-11 01:08:24.000 1981-03-28 2024-10-11 01:08:24 +4106 4106 4107 410.6 821.2 4106 1981-03-30 2024-10-11 01:08:26.000 1981-03-30 2024-10-11 01:08:26 +4107 4107 4108 410.7 821.4000000000001 4107 1981-03-31 2024-10-11 01:08:27.000 1981-03-31 2024-10-11 01:08:27 +4108 4108 4109 410.8 821.6 4108 1981-04-01 2024-10-11 01:08:28.000 1981-04-01 2024-10-11 01:08:28 +4109 4109 4110 410.9 821.8000000000001 4109 1981-04-02 2024-10-11 01:08:29.000 1981-04-02 2024-10-11 01:08:29 +4111 4111 4112 411.1 822.2 4111 1981-04-04 2024-10-11 01:08:31.000 1981-04-04 2024-10-11 01:08:31 +4112 4112 4113 411.2 822.4000000000001 4112 1981-04-05 2024-10-11 01:08:32.000 1981-04-05 2024-10-11 01:08:32 +4113 4113 4114 411.3 822.6 4113 1981-04-06 2024-10-11 01:08:33.000 1981-04-06 2024-10-11 01:08:33 +4114 4114 4115 411.4 822.8000000000001 4114 1981-04-07 2024-10-11 01:08:34.000 1981-04-07 2024-10-11 01:08:34 +4116 4116 4117 411.6 823.2 4116 1981-04-09 2024-10-11 01:08:36.000 1981-04-09 2024-10-11 01:08:36 +4117 4117 4118 411.7 823.4000000000001 4117 1981-04-10 2024-10-11 01:08:37.000 1981-04-10 2024-10-11 01:08:37 +4118 4118 4119 411.8 823.6 4118 1981-04-11 2024-10-11 01:08:38.000 1981-04-11 2024-10-11 01:08:38 +4119 4119 4120 411.9 823.8000000000001 4119 1981-04-12 2024-10-11 01:08:39.000 1981-04-12 2024-10-11 01:08:39 +4121 4121 4122 412.1 824.2 4121 1981-04-14 2024-10-11 01:08:41.000 1981-04-14 2024-10-11 01:08:41 +4122 4122 4123 412.2 824.4000000000001 4122 1981-04-15 2024-10-11 01:08:42.000 1981-04-15 2024-10-11 01:08:42 +4123 4123 4124 412.3 824.6 4123 1981-04-16 2024-10-11 01:08:43.000 1981-04-16 2024-10-11 01:08:43 +4124 4124 4125 412.4 824.8000000000001 4124 1981-04-17 2024-10-11 01:08:44.000 1981-04-17 2024-10-11 01:08:44 +4126 4126 4127 412.6 825.2 4126 1981-04-19 2024-10-11 01:08:46.000 1981-04-19 2024-10-11 01:08:46 +4127 4127 4128 412.7 825.4000000000001 4127 1981-04-20 2024-10-11 01:08:47.000 1981-04-20 2024-10-11 01:08:47 +4128 4128 4129 412.8 825.6 4128 1981-04-21 2024-10-11 01:08:48.000 1981-04-21 2024-10-11 01:08:48 +4129 4129 4130 412.9 825.8000000000001 4129 1981-04-22 2024-10-11 01:08:49.000 1981-04-22 2024-10-11 01:08:49 +4131 4131 4132 413.1 826.2 4131 1981-04-24 2024-10-11 01:08:51.000 1981-04-24 2024-10-11 01:08:51 +4132 4132 4133 413.2 826.4000000000001 4132 1981-04-25 2024-10-11 01:08:52.000 1981-04-25 2024-10-11 01:08:52 +4133 4133 4134 413.3 826.6 4133 1981-04-26 2024-10-11 01:08:53.000 1981-04-26 2024-10-11 01:08:53 +4134 4134 4135 413.4 826.8000000000001 4134 1981-04-27 2024-10-11 01:08:54.000 1981-04-27 2024-10-11 01:08:54 +4136 4136 4137 413.6 827.2 4136 1981-04-29 2024-10-11 01:08:56.000 1981-04-29 2024-10-11 01:08:56 +4137 4137 4138 413.7 827.4000000000001 4137 1981-04-30 2024-10-11 01:08:57.000 1981-04-30 2024-10-11 01:08:57 +4138 4138 4139 413.8 827.6 4138 1981-05-01 2024-10-11 01:08:58.000 1981-05-01 2024-10-11 01:08:58 +4139 4139 4140 413.9 827.8000000000001 4139 1981-05-02 2024-10-11 01:08:59.000 1981-05-02 2024-10-11 01:08:59 +4141 4141 4142 414.1 828.2 4141 1981-05-04 2024-10-11 01:09:01.000 1981-05-04 2024-10-11 01:09:01 +4142 4142 4143 414.2 828.4000000000001 4142 1981-05-05 2024-10-11 01:09:02.000 1981-05-05 2024-10-11 01:09:02 +4143 4143 4144 414.3 828.6 4143 1981-05-06 2024-10-11 01:09:03.000 1981-05-06 2024-10-11 01:09:03 +4144 4144 4145 414.4 828.8000000000001 4144 1981-05-07 2024-10-11 01:09:04.000 1981-05-07 2024-10-11 01:09:04 +4146 4146 4147 414.6 829.2 4146 1981-05-09 2024-10-11 01:09:06.000 1981-05-09 2024-10-11 01:09:06 +4147 4147 4148 414.7 829.4000000000001 4147 1981-05-10 2024-10-11 01:09:07.000 1981-05-10 2024-10-11 01:09:07 +4148 4148 4149 414.8 829.6 4148 1981-05-11 2024-10-11 01:09:08.000 1981-05-11 2024-10-11 01:09:08 +4149 4149 4150 414.9 829.8000000000001 4149 1981-05-12 2024-10-11 01:09:09.000 1981-05-12 2024-10-11 01:09:09 +4151 4151 4152 415.1 830.2 4151 1981-05-14 2024-10-11 01:09:11.000 1981-05-14 2024-10-11 01:09:11 +4152 4152 4153 415.2 830.4000000000001 4152 1981-05-15 2024-10-11 01:09:12.000 1981-05-15 2024-10-11 01:09:12 +4153 4153 4154 415.3 830.6 4153 1981-05-16 2024-10-11 01:09:13.000 1981-05-16 2024-10-11 01:09:13 +4154 4154 4155 415.4 830.8000000000001 4154 1981-05-17 2024-10-11 01:09:14.000 1981-05-17 2024-10-11 01:09:14 +4156 4156 4157 415.6 831.2 4156 1981-05-19 2024-10-11 01:09:16.000 1981-05-19 2024-10-11 01:09:16 +4157 4157 4158 415.7 831.4000000000001 4157 1981-05-20 2024-10-11 01:09:17.000 1981-05-20 2024-10-11 01:09:17 +4158 4158 4159 415.8 831.6 4158 1981-05-21 2024-10-11 01:09:18.000 1981-05-21 2024-10-11 01:09:18 +4159 4159 4160 415.9 831.8000000000001 4159 1981-05-22 2024-10-11 01:09:19.000 1981-05-22 2024-10-11 01:09:19 +4161 4161 4162 416.1 832.2 4161 1981-05-24 2024-10-11 01:09:21.000 1981-05-24 2024-10-11 01:09:21 +4162 4162 4163 416.2 832.4000000000001 4162 1981-05-25 2024-10-11 01:09:22.000 1981-05-25 2024-10-11 01:09:22 +4163 4163 4164 416.3 832.6 4163 1981-05-26 2024-10-11 01:09:23.000 1981-05-26 2024-10-11 01:09:23 +4164 4164 4165 416.4 832.8000000000001 4164 1981-05-27 2024-10-11 01:09:24.000 1981-05-27 2024-10-11 01:09:24 +4166 4166 4167 416.6 833.2 4166 1981-05-29 2024-10-11 01:09:26.000 1981-05-29 2024-10-11 01:09:26 +4167 4167 4168 416.7 833.4000000000001 4167 1981-05-30 2024-10-11 01:09:27.000 1981-05-30 2024-10-11 01:09:27 +4168 4168 4169 416.8 833.6 4168 1981-05-31 2024-10-11 01:09:28.000 1981-05-31 2024-10-11 01:09:28 +4169 4169 4170 416.9 833.8000000000001 4169 1981-06-01 2024-10-11 01:09:29.000 1981-06-01 2024-10-11 01:09:29 +4171 4171 4172 417.1 834.2 4171 1981-06-03 2024-10-11 01:09:31.000 1981-06-03 2024-10-11 01:09:31 +4172 4172 4173 417.2 834.4000000000001 4172 1981-06-04 2024-10-11 01:09:32.000 1981-06-04 2024-10-11 01:09:32 +4173 4173 4174 417.3 834.6 4173 1981-06-05 2024-10-11 01:09:33.000 1981-06-05 2024-10-11 01:09:33 +4174 4174 4175 417.4 834.8000000000001 4174 1981-06-06 2024-10-11 01:09:34.000 1981-06-06 2024-10-11 01:09:34 +4176 4176 4177 417.6 835.2 4176 1981-06-08 2024-10-11 01:09:36.000 1981-06-08 2024-10-11 01:09:36 +4177 4177 4178 417.7 835.4000000000001 4177 1981-06-09 2024-10-11 01:09:37.000 1981-06-09 2024-10-11 01:09:37 +4178 4178 4179 417.8 835.6 4178 1981-06-10 2024-10-11 01:09:38.000 1981-06-10 2024-10-11 01:09:38 +4179 4179 4180 417.9 835.8000000000001 4179 1981-06-11 2024-10-11 01:09:39.000 1981-06-11 2024-10-11 01:09:39 +4181 4181 4182 418.1 836.2 4181 1981-06-13 2024-10-11 01:09:41.000 1981-06-13 2024-10-11 01:09:41 +4182 4182 4183 418.2 836.4000000000001 4182 1981-06-14 2024-10-11 01:09:42.000 1981-06-14 2024-10-11 01:09:42 +4183 4183 4184 418.3 836.6 4183 1981-06-15 2024-10-11 01:09:43.000 1981-06-15 2024-10-11 01:09:43 +4184 4184 4185 418.4 836.8000000000001 4184 1981-06-16 2024-10-11 01:09:44.000 1981-06-16 2024-10-11 01:09:44 +4186 4186 4187 418.6 837.2 4186 1981-06-18 2024-10-11 01:09:46.000 1981-06-18 2024-10-11 01:09:46 +4187 4187 4188 418.7 837.4000000000001 4187 1981-06-19 2024-10-11 01:09:47.000 1981-06-19 2024-10-11 01:09:47 +4188 4188 4189 418.8 837.6 4188 1981-06-20 2024-10-11 01:09:48.000 1981-06-20 2024-10-11 01:09:48 +4189 4189 4190 418.9 837.8000000000001 4189 1981-06-21 2024-10-11 01:09:49.000 1981-06-21 2024-10-11 01:09:49 +4191 4191 4192 419.1 838.2 4191 1981-06-23 2024-10-11 01:09:51.000 1981-06-23 2024-10-11 01:09:51 +4192 4192 4193 419.2 838.4000000000001 4192 1981-06-24 2024-10-11 01:09:52.000 1981-06-24 2024-10-11 01:09:52 +4193 4193 4194 419.3 838.6 4193 1981-06-25 2024-10-11 01:09:53.000 1981-06-25 2024-10-11 01:09:53 +4194 4194 4195 419.4 838.8000000000001 4194 1981-06-26 2024-10-11 01:09:54.000 1981-06-26 2024-10-11 01:09:54 +4196 4196 4197 419.6 839.2 4196 1981-06-28 2024-10-11 01:09:56.000 1981-06-28 2024-10-11 01:09:56 +4197 4197 4198 419.7 839.4000000000001 4197 1981-06-29 2024-10-11 01:09:57.000 1981-06-29 2024-10-11 01:09:57 +4198 4198 4199 419.8 839.6 4198 1981-06-30 2024-10-11 01:09:58.000 1981-06-30 2024-10-11 01:09:58 +4199 4199 4200 419.9 839.8000000000001 4199 1981-07-01 2024-10-11 01:09:59.000 1981-07-01 2024-10-11 01:09:59 +4201 4201 4202 420.1 840.2 4201 1981-07-03 2024-10-11 01:10:01.000 1981-07-03 2024-10-11 01:10:01 +4202 4202 4203 420.2 840.4000000000001 4202 1981-07-04 2024-10-11 01:10:02.000 1981-07-04 2024-10-11 01:10:02 +4203 4203 4204 420.3 840.6 4203 1981-07-05 2024-10-11 01:10:03.000 1981-07-05 2024-10-11 01:10:03 +4204 4204 4205 420.4 840.8000000000001 4204 1981-07-06 2024-10-11 01:10:04.000 1981-07-06 2024-10-11 01:10:04 +4206 4206 4207 420.6 841.2 4206 1981-07-08 2024-10-11 01:10:06.000 1981-07-08 2024-10-11 01:10:06 +4207 4207 4208 420.7 841.4000000000001 4207 1981-07-09 2024-10-11 01:10:07.000 1981-07-09 2024-10-11 01:10:07 +4208 4208 4209 420.8 841.6 4208 1981-07-10 2024-10-11 01:10:08.000 1981-07-10 2024-10-11 01:10:08 +4209 4209 4210 420.9 841.8000000000001 4209 1981-07-11 2024-10-11 01:10:09.000 1981-07-11 2024-10-11 01:10:09 +4211 4211 4212 421.1 842.2 4211 1981-07-13 2024-10-11 01:10:11.000 1981-07-13 2024-10-11 01:10:11 +4212 4212 4213 421.2 842.4000000000001 4212 1981-07-14 2024-10-11 01:10:12.000 1981-07-14 2024-10-11 01:10:12 +4213 4213 4214 421.3 842.6 4213 1981-07-15 2024-10-11 01:10:13.000 1981-07-15 2024-10-11 01:10:13 +4214 4214 4215 421.4 842.8000000000001 4214 1981-07-16 2024-10-11 01:10:14.000 1981-07-16 2024-10-11 01:10:14 +4216 4216 4217 421.6 843.2 4216 1981-07-18 2024-10-11 01:10:16.000 1981-07-18 2024-10-11 01:10:16 +4217 4217 4218 421.7 843.4000000000001 4217 1981-07-19 2024-10-11 01:10:17.000 1981-07-19 2024-10-11 01:10:17 +4218 4218 4219 421.8 843.6 4218 1981-07-20 2024-10-11 01:10:18.000 1981-07-20 2024-10-11 01:10:18 +4219 4219 4220 421.9 843.8000000000001 4219 1981-07-21 2024-10-11 01:10:19.000 1981-07-21 2024-10-11 01:10:19 +4221 4221 4222 422.1 844.2 4221 1981-07-23 2024-10-11 01:10:21.000 1981-07-23 2024-10-11 01:10:21 +4222 4222 4223 422.2 844.4000000000001 4222 1981-07-24 2024-10-11 01:10:22.000 1981-07-24 2024-10-11 01:10:22 +4223 4223 4224 422.3 844.6 4223 1981-07-25 2024-10-11 01:10:23.000 1981-07-25 2024-10-11 01:10:23 +4224 4224 4225 422.4 844.8000000000001 4224 1981-07-26 2024-10-11 01:10:24.000 1981-07-26 2024-10-11 01:10:24 +4226 4226 4227 422.6 845.2 4226 1981-07-28 2024-10-11 01:10:26.000 1981-07-28 2024-10-11 01:10:26 +4227 4227 4228 422.7 845.4000000000001 4227 1981-07-29 2024-10-11 01:10:27.000 1981-07-29 2024-10-11 01:10:27 +4228 4228 4229 422.8 845.6 4228 1981-07-30 2024-10-11 01:10:28.000 1981-07-30 2024-10-11 01:10:28 +4229 4229 4230 422.9 845.8000000000001 4229 1981-07-31 2024-10-11 01:10:29.000 1981-07-31 2024-10-11 01:10:29 +4231 4231 4232 423.1 846.2 4231 1981-08-02 2024-10-11 01:10:31.000 1981-08-02 2024-10-11 01:10:31 +4232 4232 4233 423.2 846.4000000000001 4232 1981-08-03 2024-10-11 01:10:32.000 1981-08-03 2024-10-11 01:10:32 +4233 4233 4234 423.3 846.6 4233 1981-08-04 2024-10-11 01:10:33.000 1981-08-04 2024-10-11 01:10:33 +4234 4234 4235 423.4 846.8000000000001 4234 1981-08-05 2024-10-11 01:10:34.000 1981-08-05 2024-10-11 01:10:34 +4236 4236 4237 423.6 847.2 4236 1981-08-07 2024-10-11 01:10:36.000 1981-08-07 2024-10-11 01:10:36 +4237 4237 4238 423.7 847.4000000000001 4237 1981-08-08 2024-10-11 01:10:37.000 1981-08-08 2024-10-11 01:10:37 +4238 4238 4239 423.8 847.6 4238 1981-08-09 2024-10-11 01:10:38.000 1981-08-09 2024-10-11 01:10:38 +4239 4239 4240 423.9 847.8000000000001 4239 1981-08-10 2024-10-11 01:10:39.000 1981-08-10 2024-10-11 01:10:39 +4241 4241 4242 424.1 848.2 4241 1981-08-12 2024-10-11 01:10:41.000 1981-08-12 2024-10-11 01:10:41 +4242 4242 4243 424.2 848.4000000000001 4242 1981-08-13 2024-10-11 01:10:42.000 1981-08-13 2024-10-11 01:10:42 +4243 4243 4244 424.3 848.6 4243 1981-08-14 2024-10-11 01:10:43.000 1981-08-14 2024-10-11 01:10:43 +4244 4244 4245 424.4 848.8000000000001 4244 1981-08-15 2024-10-11 01:10:44.000 1981-08-15 2024-10-11 01:10:44 +4246 4246 4247 424.6 849.2 4246 1981-08-17 2024-10-11 01:10:46.000 1981-08-17 2024-10-11 01:10:46 +4247 4247 4248 424.7 849.4000000000001 4247 1981-08-18 2024-10-11 01:10:47.000 1981-08-18 2024-10-11 01:10:47 +4248 4248 4249 424.8 849.6 4248 1981-08-19 2024-10-11 01:10:48.000 1981-08-19 2024-10-11 01:10:48 +4249 4249 4250 424.9 849.8000000000001 4249 1981-08-20 2024-10-11 01:10:49.000 1981-08-20 2024-10-11 01:10:49 +4251 4251 4252 425.1 850.2 4251 1981-08-22 2024-10-11 01:10:51.000 1981-08-22 2024-10-11 01:10:51 +4252 4252 4253 425.2 850.4000000000001 4252 1981-08-23 2024-10-11 01:10:52.000 1981-08-23 2024-10-11 01:10:52 +4253 4253 4254 425.3 850.6 4253 1981-08-24 2024-10-11 01:10:53.000 1981-08-24 2024-10-11 01:10:53 +4254 4254 4255 425.4 850.8000000000001 4254 1981-08-25 2024-10-11 01:10:54.000 1981-08-25 2024-10-11 01:10:54 +4256 4256 4257 425.6 851.2 4256 1981-08-27 2024-10-11 01:10:56.000 1981-08-27 2024-10-11 01:10:56 +4257 4257 4258 425.7 851.4000000000001 4257 1981-08-28 2024-10-11 01:10:57.000 1981-08-28 2024-10-11 01:10:57 +4258 4258 4259 425.8 851.6 4258 1981-08-29 2024-10-11 01:10:58.000 1981-08-29 2024-10-11 01:10:58 +4259 4259 4260 425.9 851.8000000000001 4259 1981-08-30 2024-10-11 01:10:59.000 1981-08-30 2024-10-11 01:10:59 +4261 4261 4262 426.1 852.2 4261 1981-09-01 2024-10-11 01:11:01.000 1981-09-01 2024-10-11 01:11:01 +4262 4262 4263 426.2 852.4000000000001 4262 1981-09-02 2024-10-11 01:11:02.000 1981-09-02 2024-10-11 01:11:02 +4263 4263 4264 426.3 852.6 4263 1981-09-03 2024-10-11 01:11:03.000 1981-09-03 2024-10-11 01:11:03 +4264 4264 4265 426.4 852.8000000000001 4264 1981-09-04 2024-10-11 01:11:04.000 1981-09-04 2024-10-11 01:11:04 +4266 4266 4267 426.6 853.2 4266 1981-09-06 2024-10-11 01:11:06.000 1981-09-06 2024-10-11 01:11:06 +4267 4267 4268 426.7 853.4000000000001 4267 1981-09-07 2024-10-11 01:11:07.000 1981-09-07 2024-10-11 01:11:07 +4268 4268 4269 426.8 853.6 4268 1981-09-08 2024-10-11 01:11:08.000 1981-09-08 2024-10-11 01:11:08 +4269 4269 4270 426.9 853.8000000000001 4269 1981-09-09 2024-10-11 01:11:09.000 1981-09-09 2024-10-11 01:11:09 +4271 4271 4272 427.1 854.2 4271 1981-09-11 2024-10-11 01:11:11.000 1981-09-11 2024-10-11 01:11:11 +4272 4272 4273 427.2 854.4000000000001 4272 1981-09-12 2024-10-11 01:11:12.000 1981-09-12 2024-10-11 01:11:12 +4273 4273 4274 427.3 854.6 4273 1981-09-13 2024-10-11 01:11:13.000 1981-09-13 2024-10-11 01:11:13 +4274 4274 4275 427.4 854.8000000000001 4274 1981-09-14 2024-10-11 01:11:14.000 1981-09-14 2024-10-11 01:11:14 +4276 4276 4277 427.6 855.2 4276 1981-09-16 2024-10-11 01:11:16.000 1981-09-16 2024-10-11 01:11:16 +4277 4277 4278 427.7 855.4000000000001 4277 1981-09-17 2024-10-11 01:11:17.000 1981-09-17 2024-10-11 01:11:17 +4278 4278 4279 427.8 855.6 4278 1981-09-18 2024-10-11 01:11:18.000 1981-09-18 2024-10-11 01:11:18 +4279 4279 4280 427.9 855.8000000000001 4279 1981-09-19 2024-10-11 01:11:19.000 1981-09-19 2024-10-11 01:11:19 +4281 4281 4282 428.1 856.2 4281 1981-09-21 2024-10-11 01:11:21.000 1981-09-21 2024-10-11 01:11:21 +4282 4282 4283 428.2 856.4000000000001 4282 1981-09-22 2024-10-11 01:11:22.000 1981-09-22 2024-10-11 01:11:22 +4283 4283 4284 428.3 856.6 4283 1981-09-23 2024-10-11 01:11:23.000 1981-09-23 2024-10-11 01:11:23 +4284 4284 4285 428.4 856.8000000000001 4284 1981-09-24 2024-10-11 01:11:24.000 1981-09-24 2024-10-11 01:11:24 +4286 4286 4287 428.6 857.2 4286 1981-09-26 2024-10-11 01:11:26.000 1981-09-26 2024-10-11 01:11:26 +4287 4287 4288 428.7 857.4000000000001 4287 1981-09-27 2024-10-11 01:11:27.000 1981-09-27 2024-10-11 01:11:27 +4288 4288 4289 428.8 857.6 4288 1981-09-28 2024-10-11 01:11:28.000 1981-09-28 2024-10-11 01:11:28 +4289 4289 4290 428.9 857.8000000000001 4289 1981-09-29 2024-10-11 01:11:29.000 1981-09-29 2024-10-11 01:11:29 +4291 4291 4292 429.1 858.2 4291 1981-10-01 2024-10-11 01:11:31.000 1981-10-01 2024-10-11 01:11:31 +4292 4292 4293 429.2 858.4000000000001 4292 1981-10-02 2024-10-11 01:11:32.000 1981-10-02 2024-10-11 01:11:32 +4293 4293 4294 429.3 858.6 4293 1981-10-03 2024-10-11 01:11:33.000 1981-10-03 2024-10-11 01:11:33 +4294 4294 4295 429.4 858.8000000000001 4294 1981-10-04 2024-10-11 01:11:34.000 1981-10-04 2024-10-11 01:11:34 +4296 4296 4297 429.6 859.2 4296 1981-10-06 2024-10-11 01:11:36.000 1981-10-06 2024-10-11 01:11:36 +4297 4297 4298 429.7 859.4000000000001 4297 1981-10-07 2024-10-11 01:11:37.000 1981-10-07 2024-10-11 01:11:37 +4298 4298 4299 429.8 859.6 4298 1981-10-08 2024-10-11 01:11:38.000 1981-10-08 2024-10-11 01:11:38 +4299 4299 4300 429.9 859.8000000000001 4299 1981-10-09 2024-10-11 01:11:39.000 1981-10-09 2024-10-11 01:11:39 +4301 4301 4302 430.1 860.2 4301 1981-10-11 2024-10-11 01:11:41.000 1981-10-11 2024-10-11 01:11:41 +4302 4302 4303 430.2 860.4000000000001 4302 1981-10-12 2024-10-11 01:11:42.000 1981-10-12 2024-10-11 01:11:42 +4303 4303 4304 430.3 860.6 4303 1981-10-13 2024-10-11 01:11:43.000 1981-10-13 2024-10-11 01:11:43 +4304 4304 4305 430.4 860.8000000000001 4304 1981-10-14 2024-10-11 01:11:44.000 1981-10-14 2024-10-11 01:11:44 +4306 4306 4307 430.6 861.2 4306 1981-10-16 2024-10-11 01:11:46.000 1981-10-16 2024-10-11 01:11:46 +4307 4307 4308 430.7 861.4000000000001 4307 1981-10-17 2024-10-11 01:11:47.000 1981-10-17 2024-10-11 01:11:47 +4308 4308 4309 430.8 861.6 4308 1981-10-18 2024-10-11 01:11:48.000 1981-10-18 2024-10-11 01:11:48 +4309 4309 4310 430.9 861.8000000000001 4309 1981-10-19 2024-10-11 01:11:49.000 1981-10-19 2024-10-11 01:11:49 +4311 4311 4312 431.1 862.2 4311 1981-10-21 2024-10-11 01:11:51.000 1981-10-21 2024-10-11 01:11:51 +4312 4312 4313 431.2 862.4000000000001 4312 1981-10-22 2024-10-11 01:11:52.000 1981-10-22 2024-10-11 01:11:52 +4313 4313 4314 431.3 862.6 4313 1981-10-23 2024-10-11 01:11:53.000 1981-10-23 2024-10-11 01:11:53 +4314 4314 4315 431.4 862.8000000000001 4314 1981-10-24 2024-10-11 01:11:54.000 1981-10-24 2024-10-11 01:11:54 +4316 4316 4317 431.6 863.2 4316 1981-10-26 2024-10-11 01:11:56.000 1981-10-26 2024-10-11 01:11:56 +4317 4317 4318 431.7 863.4000000000001 4317 1981-10-27 2024-10-11 01:11:57.000 1981-10-27 2024-10-11 01:11:57 +4318 4318 4319 431.8 863.6 4318 1981-10-28 2024-10-11 01:11:58.000 1981-10-28 2024-10-11 01:11:58 +4319 4319 4320 431.9 863.8000000000001 4319 1981-10-29 2024-10-11 01:11:59.000 1981-10-29 2024-10-11 01:11:59 +4321 4321 4322 432.1 864.2 4321 1981-10-31 2024-10-11 01:12:01.000 1981-10-31 2024-10-11 01:12:01 +4322 4322 4323 432.2 864.4000000000001 4322 1981-11-01 2024-10-11 01:12:02.000 1981-11-01 2024-10-11 01:12:02 +4323 4323 4324 432.3 864.6 4323 1981-11-02 2024-10-11 01:12:03.000 1981-11-02 2024-10-11 01:12:03 +4324 4324 4325 432.4 864.8000000000001 4324 1981-11-03 2024-10-11 01:12:04.000 1981-11-03 2024-10-11 01:12:04 +4326 4326 4327 432.6 865.2 4326 1981-11-05 2024-10-11 01:12:06.000 1981-11-05 2024-10-11 01:12:06 +4327 4327 4328 432.7 865.4000000000001 4327 1981-11-06 2024-10-11 01:12:07.000 1981-11-06 2024-10-11 01:12:07 +4328 4328 4329 432.8 865.6 4328 1981-11-07 2024-10-11 01:12:08.000 1981-11-07 2024-10-11 01:12:08 +4329 4329 4330 432.9 865.8000000000001 4329 1981-11-08 2024-10-11 01:12:09.000 1981-11-08 2024-10-11 01:12:09 +4331 4331 4332 433.1 866.2 4331 1981-11-10 2024-10-11 01:12:11.000 1981-11-10 2024-10-11 01:12:11 +4332 4332 4333 433.2 866.4000000000001 4332 1981-11-11 2024-10-11 01:12:12.000 1981-11-11 2024-10-11 01:12:12 +4333 4333 4334 433.3 866.6 4333 1981-11-12 2024-10-11 01:12:13.000 1981-11-12 2024-10-11 01:12:13 +4334 4334 4335 433.4 866.8000000000001 4334 1981-11-13 2024-10-11 01:12:14.000 1981-11-13 2024-10-11 01:12:14 +4336 4336 4337 433.6 867.2 4336 1981-11-15 2024-10-11 01:12:16.000 1981-11-15 2024-10-11 01:12:16 +4337 4337 4338 433.7 867.4000000000001 4337 1981-11-16 2024-10-11 01:12:17.000 1981-11-16 2024-10-11 01:12:17 +4338 4338 4339 433.8 867.6 4338 1981-11-17 2024-10-11 01:12:18.000 1981-11-17 2024-10-11 01:12:18 +4339 4339 4340 433.9 867.8000000000001 4339 1981-11-18 2024-10-11 01:12:19.000 1981-11-18 2024-10-11 01:12:19 +4341 4341 4342 434.1 868.2 4341 1981-11-20 2024-10-11 01:12:21.000 1981-11-20 2024-10-11 01:12:21 +4342 4342 4343 434.2 868.4000000000001 4342 1981-11-21 2024-10-11 01:12:22.000 1981-11-21 2024-10-11 01:12:22 +4343 4343 4344 434.3 868.6 4343 1981-11-22 2024-10-11 01:12:23.000 1981-11-22 2024-10-11 01:12:23 +4344 4344 4345 434.4 868.8000000000001 4344 1981-11-23 2024-10-11 01:12:24.000 1981-11-23 2024-10-11 01:12:24 +4346 4346 4347 434.6 869.2 4346 1981-11-25 2024-10-11 01:12:26.000 1981-11-25 2024-10-11 01:12:26 +4347 4347 4348 434.7 869.4000000000001 4347 1981-11-26 2024-10-11 01:12:27.000 1981-11-26 2024-10-11 01:12:27 +4348 4348 4349 434.8 869.6 4348 1981-11-27 2024-10-11 01:12:28.000 1981-11-27 2024-10-11 01:12:28 +4349 4349 4350 434.9 869.8000000000001 4349 1981-11-28 2024-10-11 01:12:29.000 1981-11-28 2024-10-11 01:12:29 +4351 4351 4352 435.1 870.2 4351 1981-11-30 2024-10-11 01:12:31.000 1981-11-30 2024-10-11 01:12:31 +4352 4352 4353 435.2 870.4000000000001 4352 1981-12-01 2024-10-11 01:12:32.000 1981-12-01 2024-10-11 01:12:32 +4353 4353 4354 435.3 870.6 4353 1981-12-02 2024-10-11 01:12:33.000 1981-12-02 2024-10-11 01:12:33 +4354 4354 4355 435.4 870.8000000000001 4354 1981-12-03 2024-10-11 01:12:34.000 1981-12-03 2024-10-11 01:12:34 +4356 4356 4357 435.6 871.2 4356 1981-12-05 2024-10-11 01:12:36.000 1981-12-05 2024-10-11 01:12:36 +4357 4357 4358 435.7 871.4000000000001 4357 1981-12-06 2024-10-11 01:12:37.000 1981-12-06 2024-10-11 01:12:37 +4358 4358 4359 435.8 871.6 4358 1981-12-07 2024-10-11 01:12:38.000 1981-12-07 2024-10-11 01:12:38 +4359 4359 4360 435.9 871.8000000000001 4359 1981-12-08 2024-10-11 01:12:39.000 1981-12-08 2024-10-11 01:12:39 +4361 4361 4362 436.1 872.2 4361 1981-12-10 2024-10-11 01:12:41.000 1981-12-10 2024-10-11 01:12:41 +4362 4362 4363 436.2 872.4000000000001 4362 1981-12-11 2024-10-11 01:12:42.000 1981-12-11 2024-10-11 01:12:42 +4363 4363 4364 436.3 872.6 4363 1981-12-12 2024-10-11 01:12:43.000 1981-12-12 2024-10-11 01:12:43 +4364 4364 4365 436.4 872.8000000000001 4364 1981-12-13 2024-10-11 01:12:44.000 1981-12-13 2024-10-11 01:12:44 +4366 4366 4367 436.6 873.2 4366 1981-12-15 2024-10-11 01:12:46.000 1981-12-15 2024-10-11 01:12:46 +4367 4367 4368 436.7 873.4000000000001 4367 1981-12-16 2024-10-11 01:12:47.000 1981-12-16 2024-10-11 01:12:47 +4368 4368 4369 436.8 873.6 4368 1981-12-17 2024-10-11 01:12:48.000 1981-12-17 2024-10-11 01:12:48 +4369 4369 4370 436.9 873.8000000000001 4369 1981-12-18 2024-10-11 01:12:49.000 1981-12-18 2024-10-11 01:12:49 +4371 4371 4372 437.1 874.2 4371 1981-12-20 2024-10-11 01:12:51.000 1981-12-20 2024-10-11 01:12:51 +4372 4372 4373 437.2 874.4000000000001 4372 1981-12-21 2024-10-11 01:12:52.000 1981-12-21 2024-10-11 01:12:52 +4373 4373 4374 437.3 874.6 4373 1981-12-22 2024-10-11 01:12:53.000 1981-12-22 2024-10-11 01:12:53 +4374 4374 4375 437.4 874.8000000000001 4374 1981-12-23 2024-10-11 01:12:54.000 1981-12-23 2024-10-11 01:12:54 +4376 4376 4377 437.6 875.2 4376 1981-12-25 2024-10-11 01:12:56.000 1981-12-25 2024-10-11 01:12:56 +4377 4377 4378 437.7 875.4000000000001 4377 1981-12-26 2024-10-11 01:12:57.000 1981-12-26 2024-10-11 01:12:57 +4378 4378 4379 437.8 875.6 4378 1981-12-27 2024-10-11 01:12:58.000 1981-12-27 2024-10-11 01:12:58 +4379 4379 4380 437.9 875.8000000000001 4379 1981-12-28 2024-10-11 01:12:59.000 1981-12-28 2024-10-11 01:12:59 +4381 4381 4382 438.1 876.2 4381 1981-12-30 2024-10-11 01:13:01.000 1981-12-30 2024-10-11 01:13:01 +4382 4382 4383 438.2 876.4000000000001 4382 1981-12-31 2024-10-11 01:13:02.000 1981-12-31 2024-10-11 01:13:02 +4383 4383 4384 438.3 876.6 4383 1982-01-01 2024-10-11 01:13:03.000 1982-01-01 2024-10-11 01:13:03 +4384 4384 4385 438.4 876.8000000000001 4384 1982-01-02 2024-10-11 01:13:04.000 1982-01-02 2024-10-11 01:13:04 +4386 4386 4387 438.6 877.2 4386 1982-01-04 2024-10-11 01:13:06.000 1982-01-04 2024-10-11 01:13:06 +4387 4387 4388 438.7 877.4000000000001 4387 1982-01-05 2024-10-11 01:13:07.000 1982-01-05 2024-10-11 01:13:07 +4388 4388 4389 438.8 877.6 4388 1982-01-06 2024-10-11 01:13:08.000 1982-01-06 2024-10-11 01:13:08 +4389 4389 4390 438.9 877.8000000000001 4389 1982-01-07 2024-10-11 01:13:09.000 1982-01-07 2024-10-11 01:13:09 +4391 4391 4392 439.1 878.2 4391 1982-01-09 2024-10-11 01:13:11.000 1982-01-09 2024-10-11 01:13:11 +4392 4392 4393 439.2 878.4000000000001 4392 1982-01-10 2024-10-11 01:13:12.000 1982-01-10 2024-10-11 01:13:12 +4393 4393 4394 439.3 878.6 4393 1982-01-11 2024-10-11 01:13:13.000 1982-01-11 2024-10-11 01:13:13 +4394 4394 4395 439.4 878.8000000000001 4394 1982-01-12 2024-10-11 01:13:14.000 1982-01-12 2024-10-11 01:13:14 +4396 4396 4397 439.6 879.2 4396 1982-01-14 2024-10-11 01:13:16.000 1982-01-14 2024-10-11 01:13:16 +4397 4397 4398 439.7 879.4000000000001 4397 1982-01-15 2024-10-11 01:13:17.000 1982-01-15 2024-10-11 01:13:17 +4398 4398 4399 439.8 879.6 4398 1982-01-16 2024-10-11 01:13:18.000 1982-01-16 2024-10-11 01:13:18 +4399 4399 4400 439.9 879.8000000000001 4399 1982-01-17 2024-10-11 01:13:19.000 1982-01-17 2024-10-11 01:13:19 +4401 4401 4402 440.1 880.2 4401 1982-01-19 2024-10-11 01:13:21.000 1982-01-19 2024-10-11 01:13:21 +4402 4402 4403 440.2 880.4000000000001 4402 1982-01-20 2024-10-11 01:13:22.000 1982-01-20 2024-10-11 01:13:22 +4403 4403 4404 440.3 880.6 4403 1982-01-21 2024-10-11 01:13:23.000 1982-01-21 2024-10-11 01:13:23 +4404 4404 4405 440.4 880.8000000000001 4404 1982-01-22 2024-10-11 01:13:24.000 1982-01-22 2024-10-11 01:13:24 +4406 4406 4407 440.6 881.2 4406 1982-01-24 2024-10-11 01:13:26.000 1982-01-24 2024-10-11 01:13:26 +4407 4407 4408 440.7 881.4000000000001 4407 1982-01-25 2024-10-11 01:13:27.000 1982-01-25 2024-10-11 01:13:27 +4408 4408 4409 440.8 881.6 4408 1982-01-26 2024-10-11 01:13:28.000 1982-01-26 2024-10-11 01:13:28 +4409 4409 4410 440.9 881.8000000000001 4409 1982-01-27 2024-10-11 01:13:29.000 1982-01-27 2024-10-11 01:13:29 +4411 4411 4412 441.1 882.2 4411 1982-01-29 2024-10-11 01:13:31.000 1982-01-29 2024-10-11 01:13:31 +4412 4412 4413 441.2 882.4000000000001 4412 1982-01-30 2024-10-11 01:13:32.000 1982-01-30 2024-10-11 01:13:32 +4413 4413 4414 441.3 882.6 4413 1982-01-31 2024-10-11 01:13:33.000 1982-01-31 2024-10-11 01:13:33 +4414 4414 4415 441.4 882.8000000000001 4414 1982-02-01 2024-10-11 01:13:34.000 1982-02-01 2024-10-11 01:13:34 +4416 4416 4417 441.6 883.2 4416 1982-02-03 2024-10-11 01:13:36.000 1982-02-03 2024-10-11 01:13:36 +4417 4417 4418 441.7 883.4000000000001 4417 1982-02-04 2024-10-11 01:13:37.000 1982-02-04 2024-10-11 01:13:37 +4418 4418 4419 441.8 883.6 4418 1982-02-05 2024-10-11 01:13:38.000 1982-02-05 2024-10-11 01:13:38 +4419 4419 4420 441.9 883.8000000000001 4419 1982-02-06 2024-10-11 01:13:39.000 1982-02-06 2024-10-11 01:13:39 +4421 4421 4422 442.1 884.2 4421 1982-02-08 2024-10-11 01:13:41.000 1982-02-08 2024-10-11 01:13:41 +4422 4422 4423 442.2 884.4000000000001 4422 1982-02-09 2024-10-11 01:13:42.000 1982-02-09 2024-10-11 01:13:42 +4423 4423 4424 442.3 884.6 4423 1982-02-10 2024-10-11 01:13:43.000 1982-02-10 2024-10-11 01:13:43 +4424 4424 4425 442.4 884.8000000000001 4424 1982-02-11 2024-10-11 01:13:44.000 1982-02-11 2024-10-11 01:13:44 +4426 4426 4427 442.6 885.2 4426 1982-02-13 2024-10-11 01:13:46.000 1982-02-13 2024-10-11 01:13:46 +4427 4427 4428 442.7 885.4000000000001 4427 1982-02-14 2024-10-11 01:13:47.000 1982-02-14 2024-10-11 01:13:47 +4428 4428 4429 442.8 885.6 4428 1982-02-15 2024-10-11 01:13:48.000 1982-02-15 2024-10-11 01:13:48 +4429 4429 4430 442.9 885.8000000000001 4429 1982-02-16 2024-10-11 01:13:49.000 1982-02-16 2024-10-11 01:13:49 +4431 4431 4432 443.1 886.2 4431 1982-02-18 2024-10-11 01:13:51.000 1982-02-18 2024-10-11 01:13:51 +4432 4432 4433 443.2 886.4000000000001 4432 1982-02-19 2024-10-11 01:13:52.000 1982-02-19 2024-10-11 01:13:52 +4433 4433 4434 443.3 886.6 4433 1982-02-20 2024-10-11 01:13:53.000 1982-02-20 2024-10-11 01:13:53 +4434 4434 4435 443.4 886.8000000000001 4434 1982-02-21 2024-10-11 01:13:54.000 1982-02-21 2024-10-11 01:13:54 +4436 4436 4437 443.6 887.2 4436 1982-02-23 2024-10-11 01:13:56.000 1982-02-23 2024-10-11 01:13:56 +4437 4437 4438 443.7 887.4000000000001 4437 1982-02-24 2024-10-11 01:13:57.000 1982-02-24 2024-10-11 01:13:57 +4438 4438 4439 443.8 887.6 4438 1982-02-25 2024-10-11 01:13:58.000 1982-02-25 2024-10-11 01:13:58 +4439 4439 4440 443.9 887.8000000000001 4439 1982-02-26 2024-10-11 01:13:59.000 1982-02-26 2024-10-11 01:13:59 +4441 4441 4442 444.1 888.2 4441 1982-02-28 2024-10-11 01:14:01.000 1982-02-28 2024-10-11 01:14:01 +4442 4442 4443 444.2 888.4000000000001 4442 1982-03-01 2024-10-11 01:14:02.000 1982-03-01 2024-10-11 01:14:02 +4443 4443 4444 444.3 888.6 4443 1982-03-02 2024-10-11 01:14:03.000 1982-03-02 2024-10-11 01:14:03 +4444 4444 4445 444.4 888.8000000000001 4444 1982-03-03 2024-10-11 01:14:04.000 1982-03-03 2024-10-11 01:14:04 +4446 4446 4447 444.6 889.2 4446 1982-03-05 2024-10-11 01:14:06.000 1982-03-05 2024-10-11 01:14:06 +4447 4447 4448 444.7 889.4000000000001 4447 1982-03-06 2024-10-11 01:14:07.000 1982-03-06 2024-10-11 01:14:07 +4448 4448 4449 444.8 889.6 4448 1982-03-07 2024-10-11 01:14:08.000 1982-03-07 2024-10-11 01:14:08 +4449 4449 4450 444.9 889.8000000000001 4449 1982-03-08 2024-10-11 01:14:09.000 1982-03-08 2024-10-11 01:14:09 +4451 4451 4452 445.1 890.2 4451 1982-03-10 2024-10-11 01:14:11.000 1982-03-10 2024-10-11 01:14:11 +4452 4452 4453 445.2 890.4000000000001 4452 1982-03-11 2024-10-11 01:14:12.000 1982-03-11 2024-10-11 01:14:12 +4453 4453 4454 445.3 890.6 4453 1982-03-12 2024-10-11 01:14:13.000 1982-03-12 2024-10-11 01:14:13 +4454 4454 4455 445.4 890.8000000000001 4454 1982-03-13 2024-10-11 01:14:14.000 1982-03-13 2024-10-11 01:14:14 +4456 4456 4457 445.6 891.2 4456 1982-03-15 2024-10-11 01:14:16.000 1982-03-15 2024-10-11 01:14:16 +4457 4457 4458 445.7 891.4000000000001 4457 1982-03-16 2024-10-11 01:14:17.000 1982-03-16 2024-10-11 01:14:17 +4458 4458 4459 445.8 891.6 4458 1982-03-17 2024-10-11 01:14:18.000 1982-03-17 2024-10-11 01:14:18 +4459 4459 4460 445.9 891.8000000000001 4459 1982-03-18 2024-10-11 01:14:19.000 1982-03-18 2024-10-11 01:14:19 +4461 4461 4462 446.1 892.2 4461 1982-03-20 2024-10-11 01:14:21.000 1982-03-20 2024-10-11 01:14:21 +4462 4462 4463 446.2 892.4000000000001 4462 1982-03-21 2024-10-11 01:14:22.000 1982-03-21 2024-10-11 01:14:22 +4463 4463 4464 446.3 892.6 4463 1982-03-22 2024-10-11 01:14:23.000 1982-03-22 2024-10-11 01:14:23 +4464 4464 4465 446.4 892.8000000000001 4464 1982-03-23 2024-10-11 01:14:24.000 1982-03-23 2024-10-11 01:14:24 +4466 4466 4467 446.6 893.2 4466 1982-03-25 2024-10-11 01:14:26.000 1982-03-25 2024-10-11 01:14:26 +4467 4467 4468 446.7 893.4000000000001 4467 1982-03-26 2024-10-11 01:14:27.000 1982-03-26 2024-10-11 01:14:27 +4468 4468 4469 446.8 893.6 4468 1982-03-27 2024-10-11 01:14:28.000 1982-03-27 2024-10-11 01:14:28 +4469 4469 4470 446.9 893.8000000000001 4469 1982-03-28 2024-10-11 01:14:29.000 1982-03-28 2024-10-11 01:14:29 +4471 4471 4472 447.1 894.2 4471 1982-03-30 2024-10-11 01:14:31.000 1982-03-30 2024-10-11 01:14:31 +4472 4472 4473 447.2 894.4000000000001 4472 1982-03-31 2024-10-11 01:14:32.000 1982-03-31 2024-10-11 01:14:32 +4473 4473 4474 447.3 894.6 4473 1982-04-01 2024-10-11 01:14:33.000 1982-04-01 2024-10-11 01:14:33 +4474 4474 4475 447.4 894.8000000000001 4474 1982-04-02 2024-10-11 01:14:34.000 1982-04-02 2024-10-11 01:14:34 +4476 4476 4477 447.6 895.2 4476 1982-04-04 2024-10-11 01:14:36.000 1982-04-04 2024-10-11 01:14:36 +4477 4477 4478 447.7 895.4000000000001 4477 1982-04-05 2024-10-11 01:14:37.000 1982-04-05 2024-10-11 01:14:37 +4478 4478 4479 447.8 895.6 4478 1982-04-06 2024-10-11 01:14:38.000 1982-04-06 2024-10-11 01:14:38 +4479 4479 4480 447.9 895.8000000000001 4479 1982-04-07 2024-10-11 01:14:39.000 1982-04-07 2024-10-11 01:14:39 +4481 4481 4482 448.1 896.2 4481 1982-04-09 2024-10-11 01:14:41.000 1982-04-09 2024-10-11 01:14:41 +4482 4482 4483 448.2 896.4000000000001 4482 1982-04-10 2024-10-11 01:14:42.000 1982-04-10 2024-10-11 01:14:42 +4483 4483 4484 448.3 896.6 4483 1982-04-11 2024-10-11 01:14:43.000 1982-04-11 2024-10-11 01:14:43 +4484 4484 4485 448.4 896.8000000000001 4484 1982-04-12 2024-10-11 01:14:44.000 1982-04-12 2024-10-11 01:14:44 +4486 4486 4487 448.6 897.2 4486 1982-04-14 2024-10-11 01:14:46.000 1982-04-14 2024-10-11 01:14:46 +4487 4487 4488 448.7 897.4000000000001 4487 1982-04-15 2024-10-11 01:14:47.000 1982-04-15 2024-10-11 01:14:47 +4488 4488 4489 448.8 897.6 4488 1982-04-16 2024-10-11 01:14:48.000 1982-04-16 2024-10-11 01:14:48 +4489 4489 4490 448.9 897.8000000000001 4489 1982-04-17 2024-10-11 01:14:49.000 1982-04-17 2024-10-11 01:14:49 +4491 4491 4492 449.1 898.2 4491 1982-04-19 2024-10-11 01:14:51.000 1982-04-19 2024-10-11 01:14:51 +4492 4492 4493 449.2 898.4000000000001 4492 1982-04-20 2024-10-11 01:14:52.000 1982-04-20 2024-10-11 01:14:52 +4493 4493 4494 449.3 898.6 4493 1982-04-21 2024-10-11 01:14:53.000 1982-04-21 2024-10-11 01:14:53 +4494 4494 4495 449.4 898.8000000000001 4494 1982-04-22 2024-10-11 01:14:54.000 1982-04-22 2024-10-11 01:14:54 +4496 4496 4497 449.6 899.2 4496 1982-04-24 2024-10-11 01:14:56.000 1982-04-24 2024-10-11 01:14:56 +4497 4497 4498 449.7 899.4000000000001 4497 1982-04-25 2024-10-11 01:14:57.000 1982-04-25 2024-10-11 01:14:57 +4498 4498 4499 449.8 899.6 4498 1982-04-26 2024-10-11 01:14:58.000 1982-04-26 2024-10-11 01:14:58 +4499 4499 4500 449.9 899.8000000000001 4499 1982-04-27 2024-10-11 01:14:59.000 1982-04-27 2024-10-11 01:14:59 +4501 4501 4502 450.1 900.2 4501 1982-04-29 2024-10-11 01:15:01.000 1982-04-29 2024-10-11 01:15:01 +4502 4502 4503 450.2 900.4000000000001 4502 1982-04-30 2024-10-11 01:15:02.000 1982-04-30 2024-10-11 01:15:02 +4503 4503 4504 450.3 900.6 4503 1982-05-01 2024-10-11 01:15:03.000 1982-05-01 2024-10-11 01:15:03 +4504 4504 4505 450.4 900.8000000000001 4504 1982-05-02 2024-10-11 01:15:04.000 1982-05-02 2024-10-11 01:15:04 +4506 4506 4507 450.6 901.2 4506 1982-05-04 2024-10-11 01:15:06.000 1982-05-04 2024-10-11 01:15:06 +4507 4507 4508 450.7 901.4000000000001 4507 1982-05-05 2024-10-11 01:15:07.000 1982-05-05 2024-10-11 01:15:07 +4508 4508 4509 450.8 901.6 4508 1982-05-06 2024-10-11 01:15:08.000 1982-05-06 2024-10-11 01:15:08 +4509 4509 4510 450.9 901.8000000000001 4509 1982-05-07 2024-10-11 01:15:09.000 1982-05-07 2024-10-11 01:15:09 +4511 4511 4512 451.1 902.2 4511 1982-05-09 2024-10-11 01:15:11.000 1982-05-09 2024-10-11 01:15:11 +4512 4512 4513 451.2 902.4000000000001 4512 1982-05-10 2024-10-11 01:15:12.000 1982-05-10 2024-10-11 01:15:12 +4513 4513 4514 451.3 902.6 4513 1982-05-11 2024-10-11 01:15:13.000 1982-05-11 2024-10-11 01:15:13 +4514 4514 4515 451.4 902.8000000000001 4514 1982-05-12 2024-10-11 01:15:14.000 1982-05-12 2024-10-11 01:15:14 +4516 4516 4517 451.6 903.2 4516 1982-05-14 2024-10-11 01:15:16.000 1982-05-14 2024-10-11 01:15:16 +4517 4517 4518 451.7 903.4000000000001 4517 1982-05-15 2024-10-11 01:15:17.000 1982-05-15 2024-10-11 01:15:17 +4518 4518 4519 451.8 903.6 4518 1982-05-16 2024-10-11 01:15:18.000 1982-05-16 2024-10-11 01:15:18 +4519 4519 4520 451.9 903.8000000000001 4519 1982-05-17 2024-10-11 01:15:19.000 1982-05-17 2024-10-11 01:15:19 +4521 4521 4522 452.1 904.2 4521 1982-05-19 2024-10-11 01:15:21.000 1982-05-19 2024-10-11 01:15:21 +4522 4522 4523 452.2 904.4000000000001 4522 1982-05-20 2024-10-11 01:15:22.000 1982-05-20 2024-10-11 01:15:22 +4523 4523 4524 452.3 904.6 4523 1982-05-21 2024-10-11 01:15:23.000 1982-05-21 2024-10-11 01:15:23 +4524 4524 4525 452.4 904.8000000000001 4524 1982-05-22 2024-10-11 01:15:24.000 1982-05-22 2024-10-11 01:15:24 +4526 4526 4527 452.6 905.2 4526 1982-05-24 2024-10-11 01:15:26.000 1982-05-24 2024-10-11 01:15:26 +4527 4527 4528 452.7 905.4000000000001 4527 1982-05-25 2024-10-11 01:15:27.000 1982-05-25 2024-10-11 01:15:27 +4528 4528 4529 452.8 905.6 4528 1982-05-26 2024-10-11 01:15:28.000 1982-05-26 2024-10-11 01:15:28 +4529 4529 4530 452.9 905.8000000000001 4529 1982-05-27 2024-10-11 01:15:29.000 1982-05-27 2024-10-11 01:15:29 +4531 4531 4532 453.1 906.2 4531 1982-05-29 2024-10-11 01:15:31.000 1982-05-29 2024-10-11 01:15:31 +4532 4532 4533 453.2 906.4000000000001 4532 1982-05-30 2024-10-11 01:15:32.000 1982-05-30 2024-10-11 01:15:32 +4533 4533 4534 453.3 906.6 4533 1982-05-31 2024-10-11 01:15:33.000 1982-05-31 2024-10-11 01:15:33 +4534 4534 4535 453.4 906.8000000000001 4534 1982-06-01 2024-10-11 01:15:34.000 1982-06-01 2024-10-11 01:15:34 +4536 4536 4537 453.6 907.2 4536 1982-06-03 2024-10-11 01:15:36.000 1982-06-03 2024-10-11 01:15:36 +4537 4537 4538 453.7 907.4000000000001 4537 1982-06-04 2024-10-11 01:15:37.000 1982-06-04 2024-10-11 01:15:37 +4538 4538 4539 453.8 907.6 4538 1982-06-05 2024-10-11 01:15:38.000 1982-06-05 2024-10-11 01:15:38 +4539 4539 4540 453.9 907.8000000000001 4539 1982-06-06 2024-10-11 01:15:39.000 1982-06-06 2024-10-11 01:15:39 +4541 4541 4542 454.1 908.2 4541 1982-06-08 2024-10-11 01:15:41.000 1982-06-08 2024-10-11 01:15:41 +4542 4542 4543 454.2 908.4000000000001 4542 1982-06-09 2024-10-11 01:15:42.000 1982-06-09 2024-10-11 01:15:42 +4543 4543 4544 454.3 908.6 4543 1982-06-10 2024-10-11 01:15:43.000 1982-06-10 2024-10-11 01:15:43 +4544 4544 4545 454.4 908.8000000000001 4544 1982-06-11 2024-10-11 01:15:44.000 1982-06-11 2024-10-11 01:15:44 +4546 4546 4547 454.6 909.2 4546 1982-06-13 2024-10-11 01:15:46.000 1982-06-13 2024-10-11 01:15:46 +4547 4547 4548 454.7 909.4000000000001 4547 1982-06-14 2024-10-11 01:15:47.000 1982-06-14 2024-10-11 01:15:47 +4548 4548 4549 454.8 909.6 4548 1982-06-15 2024-10-11 01:15:48.000 1982-06-15 2024-10-11 01:15:48 +4549 4549 4550 454.9 909.8000000000001 4549 1982-06-16 2024-10-11 01:15:49.000 1982-06-16 2024-10-11 01:15:49 +4551 4551 4552 455.1 910.2 4551 1982-06-18 2024-10-11 01:15:51.000 1982-06-18 2024-10-11 01:15:51 +4552 4552 4553 455.2 910.4000000000001 4552 1982-06-19 2024-10-11 01:15:52.000 1982-06-19 2024-10-11 01:15:52 +4553 4553 4554 455.3 910.6 4553 1982-06-20 2024-10-11 01:15:53.000 1982-06-20 2024-10-11 01:15:53 +4554 4554 4555 455.4 910.8000000000001 4554 1982-06-21 2024-10-11 01:15:54.000 1982-06-21 2024-10-11 01:15:54 +4556 4556 4557 455.6 911.2 4556 1982-06-23 2024-10-11 01:15:56.000 1982-06-23 2024-10-11 01:15:56 +4557 4557 4558 455.7 911.4000000000001 4557 1982-06-24 2024-10-11 01:15:57.000 1982-06-24 2024-10-11 01:15:57 +4558 4558 4559 455.8 911.6 4558 1982-06-25 2024-10-11 01:15:58.000 1982-06-25 2024-10-11 01:15:58 +4559 4559 4560 455.9 911.8000000000001 4559 1982-06-26 2024-10-11 01:15:59.000 1982-06-26 2024-10-11 01:15:59 +4561 4561 4562 456.1 912.2 4561 1982-06-28 2024-10-11 01:16:01.000 1982-06-28 2024-10-11 01:16:01 +4562 4562 4563 456.2 912.4000000000001 4562 1982-06-29 2024-10-11 01:16:02.000 1982-06-29 2024-10-11 01:16:02 +4563 4563 4564 456.3 912.6 4563 1982-06-30 2024-10-11 01:16:03.000 1982-06-30 2024-10-11 01:16:03 +4564 4564 4565 456.4 912.8000000000001 4564 1982-07-01 2024-10-11 01:16:04.000 1982-07-01 2024-10-11 01:16:04 +4566 4566 4567 456.6 913.2 4566 1982-07-03 2024-10-11 01:16:06.000 1982-07-03 2024-10-11 01:16:06 +4567 4567 4568 456.7 913.4000000000001 4567 1982-07-04 2024-10-11 01:16:07.000 1982-07-04 2024-10-11 01:16:07 +4568 4568 4569 456.8 913.6 4568 1982-07-05 2024-10-11 01:16:08.000 1982-07-05 2024-10-11 01:16:08 +4569 4569 4570 456.9 913.8000000000001 4569 1982-07-06 2024-10-11 01:16:09.000 1982-07-06 2024-10-11 01:16:09 +4571 4571 4572 457.1 914.2 4571 1982-07-08 2024-10-11 01:16:11.000 1982-07-08 2024-10-11 01:16:11 +4572 4572 4573 457.2 914.4000000000001 4572 1982-07-09 2024-10-11 01:16:12.000 1982-07-09 2024-10-11 01:16:12 +4573 4573 4574 457.3 914.6 4573 1982-07-10 2024-10-11 01:16:13.000 1982-07-10 2024-10-11 01:16:13 +4574 4574 4575 457.4 914.8000000000001 4574 1982-07-11 2024-10-11 01:16:14.000 1982-07-11 2024-10-11 01:16:14 +4576 4576 4577 457.6 915.2 4576 1982-07-13 2024-10-11 01:16:16.000 1982-07-13 2024-10-11 01:16:16 +4577 4577 4578 457.7 915.4000000000001 4577 1982-07-14 2024-10-11 01:16:17.000 1982-07-14 2024-10-11 01:16:17 +4578 4578 4579 457.8 915.6 4578 1982-07-15 2024-10-11 01:16:18.000 1982-07-15 2024-10-11 01:16:18 +4579 4579 4580 457.9 915.8000000000001 4579 1982-07-16 2024-10-11 01:16:19.000 1982-07-16 2024-10-11 01:16:19 +4581 4581 4582 458.1 916.2 4581 1982-07-18 2024-10-11 01:16:21.000 1982-07-18 2024-10-11 01:16:21 +4582 4582 4583 458.2 916.4000000000001 4582 1982-07-19 2024-10-11 01:16:22.000 1982-07-19 2024-10-11 01:16:22 +4583 4583 4584 458.3 916.6 4583 1982-07-20 2024-10-11 01:16:23.000 1982-07-20 2024-10-11 01:16:23 +4584 4584 4585 458.4 916.8000000000001 4584 1982-07-21 2024-10-11 01:16:24.000 1982-07-21 2024-10-11 01:16:24 +4586 4586 4587 458.6 917.2 4586 1982-07-23 2024-10-11 01:16:26.000 1982-07-23 2024-10-11 01:16:26 +4587 4587 4588 458.7 917.4000000000001 4587 1982-07-24 2024-10-11 01:16:27.000 1982-07-24 2024-10-11 01:16:27 +4588 4588 4589 458.8 917.6 4588 1982-07-25 2024-10-11 01:16:28.000 1982-07-25 2024-10-11 01:16:28 +4589 4589 4590 458.9 917.8000000000001 4589 1982-07-26 2024-10-11 01:16:29.000 1982-07-26 2024-10-11 01:16:29 +4591 4591 4592 459.1 918.2 4591 1982-07-28 2024-10-11 01:16:31.000 1982-07-28 2024-10-11 01:16:31 +4592 4592 4593 459.2 918.4000000000001 4592 1982-07-29 2024-10-11 01:16:32.000 1982-07-29 2024-10-11 01:16:32 +4593 4593 4594 459.3 918.6 4593 1982-07-30 2024-10-11 01:16:33.000 1982-07-30 2024-10-11 01:16:33 +4594 4594 4595 459.4 918.8000000000001 4594 1982-07-31 2024-10-11 01:16:34.000 1982-07-31 2024-10-11 01:16:34 +4596 4596 4597 459.6 919.2 4596 1982-08-02 2024-10-11 01:16:36.000 1982-08-02 2024-10-11 01:16:36 +4597 4597 4598 459.7 919.4000000000001 4597 1982-08-03 2024-10-11 01:16:37.000 1982-08-03 2024-10-11 01:16:37 +4598 4598 4599 459.8 919.6 4598 1982-08-04 2024-10-11 01:16:38.000 1982-08-04 2024-10-11 01:16:38 +4599 4599 4600 459.9 919.8000000000001 4599 1982-08-05 2024-10-11 01:16:39.000 1982-08-05 2024-10-11 01:16:39 +4601 4601 4602 460.1 920.2 4601 1982-08-07 2024-10-11 01:16:41.000 1982-08-07 2024-10-11 01:16:41 +4602 4602 4603 460.2 920.4000000000001 4602 1982-08-08 2024-10-11 01:16:42.000 1982-08-08 2024-10-11 01:16:42 +4603 4603 4604 460.3 920.6 4603 1982-08-09 2024-10-11 01:16:43.000 1982-08-09 2024-10-11 01:16:43 +4604 4604 4605 460.4 920.8000000000001 4604 1982-08-10 2024-10-11 01:16:44.000 1982-08-10 2024-10-11 01:16:44 +4606 4606 4607 460.6 921.2 4606 1982-08-12 2024-10-11 01:16:46.000 1982-08-12 2024-10-11 01:16:46 +4607 4607 4608 460.7 921.4000000000001 4607 1982-08-13 2024-10-11 01:16:47.000 1982-08-13 2024-10-11 01:16:47 +4608 4608 4609 460.8 921.6 4608 1982-08-14 2024-10-11 01:16:48.000 1982-08-14 2024-10-11 01:16:48 +4609 4609 4610 460.9 921.8000000000001 4609 1982-08-15 2024-10-11 01:16:49.000 1982-08-15 2024-10-11 01:16:49 +4611 4611 4612 461.1 922.2 4611 1982-08-17 2024-10-11 01:16:51.000 1982-08-17 2024-10-11 01:16:51 +4612 4612 4613 461.2 922.4000000000001 4612 1982-08-18 2024-10-11 01:16:52.000 1982-08-18 2024-10-11 01:16:52 +4613 4613 4614 461.3 922.6 4613 1982-08-19 2024-10-11 01:16:53.000 1982-08-19 2024-10-11 01:16:53 +4614 4614 4615 461.4 922.8000000000001 4614 1982-08-20 2024-10-11 01:16:54.000 1982-08-20 2024-10-11 01:16:54 +4616 4616 4617 461.6 923.2 4616 1982-08-22 2024-10-11 01:16:56.000 1982-08-22 2024-10-11 01:16:56 +4617 4617 4618 461.7 923.4000000000001 4617 1982-08-23 2024-10-11 01:16:57.000 1982-08-23 2024-10-11 01:16:57 +4618 4618 4619 461.8 923.6 4618 1982-08-24 2024-10-11 01:16:58.000 1982-08-24 2024-10-11 01:16:58 +4619 4619 4620 461.9 923.8000000000001 4619 1982-08-25 2024-10-11 01:16:59.000 1982-08-25 2024-10-11 01:16:59 +4621 4621 4622 462.1 924.2 4621 1982-08-27 2024-10-11 01:17:01.000 1982-08-27 2024-10-11 01:17:01 +4622 4622 4623 462.2 924.4000000000001 4622 1982-08-28 2024-10-11 01:17:02.000 1982-08-28 2024-10-11 01:17:02 +4623 4623 4624 462.3 924.6 4623 1982-08-29 2024-10-11 01:17:03.000 1982-08-29 2024-10-11 01:17:03 +4624 4624 4625 462.4 924.8000000000001 4624 1982-08-30 2024-10-11 01:17:04.000 1982-08-30 2024-10-11 01:17:04 +4626 4626 4627 462.6 925.2 4626 1982-09-01 2024-10-11 01:17:06.000 1982-09-01 2024-10-11 01:17:06 +4627 4627 4628 462.7 925.4000000000001 4627 1982-09-02 2024-10-11 01:17:07.000 1982-09-02 2024-10-11 01:17:07 +4628 4628 4629 462.8 925.6 4628 1982-09-03 2024-10-11 01:17:08.000 1982-09-03 2024-10-11 01:17:08 +4629 4629 4630 462.9 925.8000000000001 4629 1982-09-04 2024-10-11 01:17:09.000 1982-09-04 2024-10-11 01:17:09 +4631 4631 4632 463.1 926.2 4631 1982-09-06 2024-10-11 01:17:11.000 1982-09-06 2024-10-11 01:17:11 +4632 4632 4633 463.2 926.4000000000001 4632 1982-09-07 2024-10-11 01:17:12.000 1982-09-07 2024-10-11 01:17:12 +4633 4633 4634 463.3 926.6 4633 1982-09-08 2024-10-11 01:17:13.000 1982-09-08 2024-10-11 01:17:13 +4634 4634 4635 463.4 926.8000000000001 4634 1982-09-09 2024-10-11 01:17:14.000 1982-09-09 2024-10-11 01:17:14 +4636 4636 4637 463.6 927.2 4636 1982-09-11 2024-10-11 01:17:16.000 1982-09-11 2024-10-11 01:17:16 +4637 4637 4638 463.7 927.4000000000001 4637 1982-09-12 2024-10-11 01:17:17.000 1982-09-12 2024-10-11 01:17:17 +4638 4638 4639 463.8 927.6 4638 1982-09-13 2024-10-11 01:17:18.000 1982-09-13 2024-10-11 01:17:18 +4639 4639 4640 463.9 927.8000000000001 4639 1982-09-14 2024-10-11 01:17:19.000 1982-09-14 2024-10-11 01:17:19 +4641 4641 4642 464.1 928.2 4641 1982-09-16 2024-10-11 01:17:21.000 1982-09-16 2024-10-11 01:17:21 +4642 4642 4643 464.2 928.4000000000001 4642 1982-09-17 2024-10-11 01:17:22.000 1982-09-17 2024-10-11 01:17:22 +4643 4643 4644 464.3 928.6 4643 1982-09-18 2024-10-11 01:17:23.000 1982-09-18 2024-10-11 01:17:23 +4644 4644 4645 464.4 928.8000000000001 4644 1982-09-19 2024-10-11 01:17:24.000 1982-09-19 2024-10-11 01:17:24 +4646 4646 4647 464.6 929.2 4646 1982-09-21 2024-10-11 01:17:26.000 1982-09-21 2024-10-11 01:17:26 +4647 4647 4648 464.7 929.4000000000001 4647 1982-09-22 2024-10-11 01:17:27.000 1982-09-22 2024-10-11 01:17:27 +4648 4648 4649 464.8 929.6 4648 1982-09-23 2024-10-11 01:17:28.000 1982-09-23 2024-10-11 01:17:28 +4649 4649 4650 464.9 929.8000000000001 4649 1982-09-24 2024-10-11 01:17:29.000 1982-09-24 2024-10-11 01:17:29 +4651 4651 4652 465.1 930.2 4651 1982-09-26 2024-10-11 01:17:31.000 1982-09-26 2024-10-11 01:17:31 +4652 4652 4653 465.2 930.4000000000001 4652 1982-09-27 2024-10-11 01:17:32.000 1982-09-27 2024-10-11 01:17:32 +4653 4653 4654 465.3 930.6 4653 1982-09-28 2024-10-11 01:17:33.000 1982-09-28 2024-10-11 01:17:33 +4654 4654 4655 465.4 930.8000000000001 4654 1982-09-29 2024-10-11 01:17:34.000 1982-09-29 2024-10-11 01:17:34 +4656 4656 4657 465.6 931.2 4656 1982-10-01 2024-10-11 01:17:36.000 1982-10-01 2024-10-11 01:17:36 +4657 4657 4658 465.7 931.4000000000001 4657 1982-10-02 2024-10-11 01:17:37.000 1982-10-02 2024-10-11 01:17:37 +4658 4658 4659 465.8 931.6 4658 1982-10-03 2024-10-11 01:17:38.000 1982-10-03 2024-10-11 01:17:38 +4659 4659 4660 465.9 931.8000000000001 4659 1982-10-04 2024-10-11 01:17:39.000 1982-10-04 2024-10-11 01:17:39 +4661 4661 4662 466.1 932.2 4661 1982-10-06 2024-10-11 01:17:41.000 1982-10-06 2024-10-11 01:17:41 +4662 4662 4663 466.2 932.4000000000001 4662 1982-10-07 2024-10-11 01:17:42.000 1982-10-07 2024-10-11 01:17:42 +4663 4663 4664 466.3 932.6 4663 1982-10-08 2024-10-11 01:17:43.000 1982-10-08 2024-10-11 01:17:43 +4664 4664 4665 466.4 932.8000000000001 4664 1982-10-09 2024-10-11 01:17:44.000 1982-10-09 2024-10-11 01:17:44 +4666 4666 4667 466.6 933.2 4666 1982-10-11 2024-10-11 01:17:46.000 1982-10-11 2024-10-11 01:17:46 +4667 4667 4668 466.7 933.4000000000001 4667 1982-10-12 2024-10-11 01:17:47.000 1982-10-12 2024-10-11 01:17:47 +4668 4668 4669 466.8 933.6 4668 1982-10-13 2024-10-11 01:17:48.000 1982-10-13 2024-10-11 01:17:48 +4669 4669 4670 466.9 933.8000000000001 4669 1982-10-14 2024-10-11 01:17:49.000 1982-10-14 2024-10-11 01:17:49 +4671 4671 4672 467.1 934.2 4671 1982-10-16 2024-10-11 01:17:51.000 1982-10-16 2024-10-11 01:17:51 +4672 4672 4673 467.2 934.4000000000001 4672 1982-10-17 2024-10-11 01:17:52.000 1982-10-17 2024-10-11 01:17:52 +4673 4673 4674 467.3 934.6 4673 1982-10-18 2024-10-11 01:17:53.000 1982-10-18 2024-10-11 01:17:53 +4674 4674 4675 467.4 934.8000000000001 4674 1982-10-19 2024-10-11 01:17:54.000 1982-10-19 2024-10-11 01:17:54 +4676 4676 4677 467.6 935.2 4676 1982-10-21 2024-10-11 01:17:56.000 1982-10-21 2024-10-11 01:17:56 +4677 4677 4678 467.7 935.4000000000001 4677 1982-10-22 2024-10-11 01:17:57.000 1982-10-22 2024-10-11 01:17:57 +4678 4678 4679 467.8 935.6 4678 1982-10-23 2024-10-11 01:17:58.000 1982-10-23 2024-10-11 01:17:58 +4679 4679 4680 467.9 935.8000000000001 4679 1982-10-24 2024-10-11 01:17:59.000 1982-10-24 2024-10-11 01:17:59 +4681 4681 4682 468.1 936.2 4681 1982-10-26 2024-10-11 01:18:01.000 1982-10-26 2024-10-11 01:18:01 +4682 4682 4683 468.2 936.4000000000001 4682 1982-10-27 2024-10-11 01:18:02.000 1982-10-27 2024-10-11 01:18:02 +4683 4683 4684 468.3 936.6 4683 1982-10-28 2024-10-11 01:18:03.000 1982-10-28 2024-10-11 01:18:03 +4684 4684 4685 468.4 936.8000000000001 4684 1982-10-29 2024-10-11 01:18:04.000 1982-10-29 2024-10-11 01:18:04 +4686 4686 4687 468.6 937.2 4686 1982-10-31 2024-10-11 01:18:06.000 1982-10-31 2024-10-11 01:18:06 +4687 4687 4688 468.7 937.4000000000001 4687 1982-11-01 2024-10-11 01:18:07.000 1982-11-01 2024-10-11 01:18:07 +4688 4688 4689 468.8 937.6 4688 1982-11-02 2024-10-11 01:18:08.000 1982-11-02 2024-10-11 01:18:08 +4689 4689 4690 468.9 937.8000000000001 4689 1982-11-03 2024-10-11 01:18:09.000 1982-11-03 2024-10-11 01:18:09 +4691 4691 4692 469.1 938.2 4691 1982-11-05 2024-10-11 01:18:11.000 1982-11-05 2024-10-11 01:18:11 +4692 4692 4693 469.2 938.4000000000001 4692 1982-11-06 2024-10-11 01:18:12.000 1982-11-06 2024-10-11 01:18:12 +4693 4693 4694 469.3 938.6 4693 1982-11-07 2024-10-11 01:18:13.000 1982-11-07 2024-10-11 01:18:13 +4694 4694 4695 469.4 938.8000000000001 4694 1982-11-08 2024-10-11 01:18:14.000 1982-11-08 2024-10-11 01:18:14 +4696 4696 4697 469.6 939.2 4696 1982-11-10 2024-10-11 01:18:16.000 1982-11-10 2024-10-11 01:18:16 +4697 4697 4698 469.7 939.4000000000001 4697 1982-11-11 2024-10-11 01:18:17.000 1982-11-11 2024-10-11 01:18:17 +4698 4698 4699 469.8 939.6 4698 1982-11-12 2024-10-11 01:18:18.000 1982-11-12 2024-10-11 01:18:18 +4699 4699 4700 469.9 939.8000000000001 4699 1982-11-13 2024-10-11 01:18:19.000 1982-11-13 2024-10-11 01:18:19 +4701 4701 4702 470.1 940.2 4701 1982-11-15 2024-10-11 01:18:21.000 1982-11-15 2024-10-11 01:18:21 +4702 4702 4703 470.2 940.4000000000001 4702 1982-11-16 2024-10-11 01:18:22.000 1982-11-16 2024-10-11 01:18:22 +4703 4703 4704 470.3 940.6 4703 1982-11-17 2024-10-11 01:18:23.000 1982-11-17 2024-10-11 01:18:23 +4704 4704 4705 470.4 940.8000000000001 4704 1982-11-18 2024-10-11 01:18:24.000 1982-11-18 2024-10-11 01:18:24 +4706 4706 4707 470.6 941.2 4706 1982-11-20 2024-10-11 01:18:26.000 1982-11-20 2024-10-11 01:18:26 +4707 4707 4708 470.7 941.4000000000001 4707 1982-11-21 2024-10-11 01:18:27.000 1982-11-21 2024-10-11 01:18:27 +4708 4708 4709 470.8 941.6 4708 1982-11-22 2024-10-11 01:18:28.000 1982-11-22 2024-10-11 01:18:28 +4709 4709 4710 470.9 941.8000000000001 4709 1982-11-23 2024-10-11 01:18:29.000 1982-11-23 2024-10-11 01:18:29 +4711 4711 4712 471.1 942.2 4711 1982-11-25 2024-10-11 01:18:31.000 1982-11-25 2024-10-11 01:18:31 +4712 4712 4713 471.2 942.4000000000001 4712 1982-11-26 2024-10-11 01:18:32.000 1982-11-26 2024-10-11 01:18:32 +4713 4713 4714 471.3 942.6 4713 1982-11-27 2024-10-11 01:18:33.000 1982-11-27 2024-10-11 01:18:33 +4714 4714 4715 471.4 942.8000000000001 4714 1982-11-28 2024-10-11 01:18:34.000 1982-11-28 2024-10-11 01:18:34 +4716 4716 4717 471.6 943.2 4716 1982-11-30 2024-10-11 01:18:36.000 1982-11-30 2024-10-11 01:18:36 +4717 4717 4718 471.7 943.4000000000001 4717 1982-12-01 2024-10-11 01:18:37.000 1982-12-01 2024-10-11 01:18:37 +4718 4718 4719 471.8 943.6 4718 1982-12-02 2024-10-11 01:18:38.000 1982-12-02 2024-10-11 01:18:38 +4719 4719 4720 471.9 943.8000000000001 4719 1982-12-03 2024-10-11 01:18:39.000 1982-12-03 2024-10-11 01:18:39 +4721 4721 4722 472.1 944.2 4721 1982-12-05 2024-10-11 01:18:41.000 1982-12-05 2024-10-11 01:18:41 +4722 4722 4723 472.2 944.4000000000001 4722 1982-12-06 2024-10-11 01:18:42.000 1982-12-06 2024-10-11 01:18:42 +4723 4723 4724 472.3 944.6 4723 1982-12-07 2024-10-11 01:18:43.000 1982-12-07 2024-10-11 01:18:43 +4724 4724 4725 472.4 944.8000000000001 4724 1982-12-08 2024-10-11 01:18:44.000 1982-12-08 2024-10-11 01:18:44 +4726 4726 4727 472.6 945.2 4726 1982-12-10 2024-10-11 01:18:46.000 1982-12-10 2024-10-11 01:18:46 +4727 4727 4728 472.7 945.4000000000001 4727 1982-12-11 2024-10-11 01:18:47.000 1982-12-11 2024-10-11 01:18:47 +4728 4728 4729 472.8 945.6 4728 1982-12-12 2024-10-11 01:18:48.000 1982-12-12 2024-10-11 01:18:48 +4729 4729 4730 472.9 945.8000000000001 4729 1982-12-13 2024-10-11 01:18:49.000 1982-12-13 2024-10-11 01:18:49 +4731 4731 4732 473.1 946.2 4731 1982-12-15 2024-10-11 01:18:51.000 1982-12-15 2024-10-11 01:18:51 +4732 4732 4733 473.2 946.4000000000001 4732 1982-12-16 2024-10-11 01:18:52.000 1982-12-16 2024-10-11 01:18:52 +4733 4733 4734 473.3 946.6 4733 1982-12-17 2024-10-11 01:18:53.000 1982-12-17 2024-10-11 01:18:53 +4734 4734 4735 473.4 946.8000000000001 4734 1982-12-18 2024-10-11 01:18:54.000 1982-12-18 2024-10-11 01:18:54 +4736 4736 4737 473.6 947.2 4736 1982-12-20 2024-10-11 01:18:56.000 1982-12-20 2024-10-11 01:18:56 +4737 4737 4738 473.7 947.4000000000001 4737 1982-12-21 2024-10-11 01:18:57.000 1982-12-21 2024-10-11 01:18:57 +4738 4738 4739 473.8 947.6 4738 1982-12-22 2024-10-11 01:18:58.000 1982-12-22 2024-10-11 01:18:58 +4739 4739 4740 473.9 947.8000000000001 4739 1982-12-23 2024-10-11 01:18:59.000 1982-12-23 2024-10-11 01:18:59 +4741 4741 4742 474.1 948.2 4741 1982-12-25 2024-10-11 01:19:01.000 1982-12-25 2024-10-11 01:19:01 +4742 4742 4743 474.2 948.4000000000001 4742 1982-12-26 2024-10-11 01:19:02.000 1982-12-26 2024-10-11 01:19:02 +4743 4743 4744 474.3 948.6 4743 1982-12-27 2024-10-11 01:19:03.000 1982-12-27 2024-10-11 01:19:03 +4744 4744 4745 474.4 948.8000000000001 4744 1982-12-28 2024-10-11 01:19:04.000 1982-12-28 2024-10-11 01:19:04 +4746 4746 4747 474.6 949.2 4746 1982-12-30 2024-10-11 01:19:06.000 1982-12-30 2024-10-11 01:19:06 +4747 4747 4748 474.7 949.4000000000001 4747 1982-12-31 2024-10-11 01:19:07.000 1982-12-31 2024-10-11 01:19:07 +4748 4748 4749 474.8 949.6 4748 1983-01-01 2024-10-11 01:19:08.000 1983-01-01 2024-10-11 01:19:08 +4749 4749 4750 474.9 949.8000000000001 4749 1983-01-02 2024-10-11 01:19:09.000 1983-01-02 2024-10-11 01:19:09 +4751 4751 4752 475.1 950.2 4751 1983-01-04 2024-10-11 01:19:11.000 1983-01-04 2024-10-11 01:19:11 +4752 4752 4753 475.2 950.4000000000001 4752 1983-01-05 2024-10-11 01:19:12.000 1983-01-05 2024-10-11 01:19:12 +4753 4753 4754 475.3 950.6 4753 1983-01-06 2024-10-11 01:19:13.000 1983-01-06 2024-10-11 01:19:13 +4754 4754 4755 475.4 950.8000000000001 4754 1983-01-07 2024-10-11 01:19:14.000 1983-01-07 2024-10-11 01:19:14 +4756 4756 4757 475.6 951.2 4756 1983-01-09 2024-10-11 01:19:16.000 1983-01-09 2024-10-11 01:19:16 +4757 4757 4758 475.7 951.4000000000001 4757 1983-01-10 2024-10-11 01:19:17.000 1983-01-10 2024-10-11 01:19:17 +4758 4758 4759 475.8 951.6 4758 1983-01-11 2024-10-11 01:19:18.000 1983-01-11 2024-10-11 01:19:18 +4759 4759 4760 475.9 951.8000000000001 4759 1983-01-12 2024-10-11 01:19:19.000 1983-01-12 2024-10-11 01:19:19 +4761 4761 4762 476.1 952.2 4761 1983-01-14 2024-10-11 01:19:21.000 1983-01-14 2024-10-11 01:19:21 +4762 4762 4763 476.2 952.4000000000001 4762 1983-01-15 2024-10-11 01:19:22.000 1983-01-15 2024-10-11 01:19:22 +4763 4763 4764 476.3 952.6 4763 1983-01-16 2024-10-11 01:19:23.000 1983-01-16 2024-10-11 01:19:23 +4764 4764 4765 476.4 952.8000000000001 4764 1983-01-17 2024-10-11 01:19:24.000 1983-01-17 2024-10-11 01:19:24 +4766 4766 4767 476.6 953.2 4766 1983-01-19 2024-10-11 01:19:26.000 1983-01-19 2024-10-11 01:19:26 +4767 4767 4768 476.7 953.4000000000001 4767 1983-01-20 2024-10-11 01:19:27.000 1983-01-20 2024-10-11 01:19:27 +4768 4768 4769 476.8 953.6 4768 1983-01-21 2024-10-11 01:19:28.000 1983-01-21 2024-10-11 01:19:28 +4769 4769 4770 476.9 953.8000000000001 4769 1983-01-22 2024-10-11 01:19:29.000 1983-01-22 2024-10-11 01:19:29 +4771 4771 4772 477.1 954.2 4771 1983-01-24 2024-10-11 01:19:31.000 1983-01-24 2024-10-11 01:19:31 +4772 4772 4773 477.2 954.4000000000001 4772 1983-01-25 2024-10-11 01:19:32.000 1983-01-25 2024-10-11 01:19:32 +4773 4773 4774 477.3 954.6 4773 1983-01-26 2024-10-11 01:19:33.000 1983-01-26 2024-10-11 01:19:33 +4774 4774 4775 477.4 954.8000000000001 4774 1983-01-27 2024-10-11 01:19:34.000 1983-01-27 2024-10-11 01:19:34 +4776 4776 4777 477.6 955.2 4776 1983-01-29 2024-10-11 01:19:36.000 1983-01-29 2024-10-11 01:19:36 +4777 4777 4778 477.7 955.4000000000001 4777 1983-01-30 2024-10-11 01:19:37.000 1983-01-30 2024-10-11 01:19:37 +4778 4778 4779 477.8 955.6 4778 1983-01-31 2024-10-11 01:19:38.000 1983-01-31 2024-10-11 01:19:38 +4779 4779 4780 477.9 955.8000000000001 4779 1983-02-01 2024-10-11 01:19:39.000 1983-02-01 2024-10-11 01:19:39 +4781 4781 4782 478.1 956.2 4781 1983-02-03 2024-10-11 01:19:41.000 1983-02-03 2024-10-11 01:19:41 +4782 4782 4783 478.2 956.4000000000001 4782 1983-02-04 2024-10-11 01:19:42.000 1983-02-04 2024-10-11 01:19:42 +4783 4783 4784 478.3 956.6 4783 1983-02-05 2024-10-11 01:19:43.000 1983-02-05 2024-10-11 01:19:43 +4784 4784 4785 478.4 956.8000000000001 4784 1983-02-06 2024-10-11 01:19:44.000 1983-02-06 2024-10-11 01:19:44 +4786 4786 4787 478.6 957.2 4786 1983-02-08 2024-10-11 01:19:46.000 1983-02-08 2024-10-11 01:19:46 +4787 4787 4788 478.7 957.4000000000001 4787 1983-02-09 2024-10-11 01:19:47.000 1983-02-09 2024-10-11 01:19:47 +4788 4788 4789 478.8 957.6 4788 1983-02-10 2024-10-11 01:19:48.000 1983-02-10 2024-10-11 01:19:48 +4789 4789 4790 478.9 957.8000000000001 4789 1983-02-11 2024-10-11 01:19:49.000 1983-02-11 2024-10-11 01:19:49 +4791 4791 4792 479.1 958.2 4791 1983-02-13 2024-10-11 01:19:51.000 1983-02-13 2024-10-11 01:19:51 +4792 4792 4793 479.2 958.4000000000001 4792 1983-02-14 2024-10-11 01:19:52.000 1983-02-14 2024-10-11 01:19:52 +4793 4793 4794 479.3 958.6 4793 1983-02-15 2024-10-11 01:19:53.000 1983-02-15 2024-10-11 01:19:53 +4794 4794 4795 479.4 958.8000000000001 4794 1983-02-16 2024-10-11 01:19:54.000 1983-02-16 2024-10-11 01:19:54 +4796 4796 4797 479.6 959.2 4796 1983-02-18 2024-10-11 01:19:56.000 1983-02-18 2024-10-11 01:19:56 +4797 4797 4798 479.7 959.4000000000001 4797 1983-02-19 2024-10-11 01:19:57.000 1983-02-19 2024-10-11 01:19:57 +4798 4798 4799 479.8 959.6 4798 1983-02-20 2024-10-11 01:19:58.000 1983-02-20 2024-10-11 01:19:58 +4799 4799 4800 479.9 959.8000000000001 4799 1983-02-21 2024-10-11 01:19:59.000 1983-02-21 2024-10-11 01:19:59 +4801 4801 4802 480.1 960.2 4801 1983-02-23 2024-10-11 01:20:01.000 1983-02-23 2024-10-11 01:20:01 +4802 4802 4803 480.2 960.4000000000001 4802 1983-02-24 2024-10-11 01:20:02.000 1983-02-24 2024-10-11 01:20:02 +4803 4803 4804 480.3 960.6 4803 1983-02-25 2024-10-11 01:20:03.000 1983-02-25 2024-10-11 01:20:03 +4804 4804 4805 480.4 960.8000000000001 4804 1983-02-26 2024-10-11 01:20:04.000 1983-02-26 2024-10-11 01:20:04 +4806 4806 4807 480.6 961.2 4806 1983-02-28 2024-10-11 01:20:06.000 1983-02-28 2024-10-11 01:20:06 +4807 4807 4808 480.7 961.4000000000001 4807 1983-03-01 2024-10-11 01:20:07.000 1983-03-01 2024-10-11 01:20:07 +4808 4808 4809 480.8 961.6 4808 1983-03-02 2024-10-11 01:20:08.000 1983-03-02 2024-10-11 01:20:08 +4809 4809 4810 480.9 961.8000000000001 4809 1983-03-03 2024-10-11 01:20:09.000 1983-03-03 2024-10-11 01:20:09 +4811 4811 4812 481.1 962.2 4811 1983-03-05 2024-10-11 01:20:11.000 1983-03-05 2024-10-11 01:20:11 +4812 4812 4813 481.2 962.4000000000001 4812 1983-03-06 2024-10-11 01:20:12.000 1983-03-06 2024-10-11 01:20:12 +4813 4813 4814 481.3 962.6 4813 1983-03-07 2024-10-11 01:20:13.000 1983-03-07 2024-10-11 01:20:13 +4814 4814 4815 481.4 962.8000000000001 4814 1983-03-08 2024-10-11 01:20:14.000 1983-03-08 2024-10-11 01:20:14 +4816 4816 4817 481.6 963.2 4816 1983-03-10 2024-10-11 01:20:16.000 1983-03-10 2024-10-11 01:20:16 +4817 4817 4818 481.7 963.4000000000001 4817 1983-03-11 2024-10-11 01:20:17.000 1983-03-11 2024-10-11 01:20:17 +4818 4818 4819 481.8 963.6 4818 1983-03-12 2024-10-11 01:20:18.000 1983-03-12 2024-10-11 01:20:18 +4819 4819 4820 481.9 963.8000000000001 4819 1983-03-13 2024-10-11 01:20:19.000 1983-03-13 2024-10-11 01:20:19 +4821 4821 4822 482.1 964.2 4821 1983-03-15 2024-10-11 01:20:21.000 1983-03-15 2024-10-11 01:20:21 +4822 4822 4823 482.2 964.4000000000001 4822 1983-03-16 2024-10-11 01:20:22.000 1983-03-16 2024-10-11 01:20:22 +4823 4823 4824 482.3 964.6 4823 1983-03-17 2024-10-11 01:20:23.000 1983-03-17 2024-10-11 01:20:23 +4824 4824 4825 482.4 964.8000000000001 4824 1983-03-18 2024-10-11 01:20:24.000 1983-03-18 2024-10-11 01:20:24 +4826 4826 4827 482.6 965.2 4826 1983-03-20 2024-10-11 01:20:26.000 1983-03-20 2024-10-11 01:20:26 +4827 4827 4828 482.7 965.4000000000001 4827 1983-03-21 2024-10-11 01:20:27.000 1983-03-21 2024-10-11 01:20:27 +4828 4828 4829 482.8 965.6 4828 1983-03-22 2024-10-11 01:20:28.000 1983-03-22 2024-10-11 01:20:28 +4829 4829 4830 482.9 965.8000000000001 4829 1983-03-23 2024-10-11 01:20:29.000 1983-03-23 2024-10-11 01:20:29 +4831 4831 4832 483.1 966.2 4831 1983-03-25 2024-10-11 01:20:31.000 1983-03-25 2024-10-11 01:20:31 +4832 4832 4833 483.2 966.4000000000001 4832 1983-03-26 2024-10-11 01:20:32.000 1983-03-26 2024-10-11 01:20:32 +4833 4833 4834 483.3 966.6 4833 1983-03-27 2024-10-11 01:20:33.000 1983-03-27 2024-10-11 01:20:33 +4834 4834 4835 483.4 966.8000000000001 4834 1983-03-28 2024-10-11 01:20:34.000 1983-03-28 2024-10-11 01:20:34 +4836 4836 4837 483.6 967.2 4836 1983-03-30 2024-10-11 01:20:36.000 1983-03-30 2024-10-11 01:20:36 +4837 4837 4838 483.7 967.4000000000001 4837 1983-03-31 2024-10-11 01:20:37.000 1983-03-31 2024-10-11 01:20:37 +4838 4838 4839 483.8 967.6 4838 1983-04-01 2024-10-11 01:20:38.000 1983-04-01 2024-10-11 01:20:38 +4839 4839 4840 483.9 967.8000000000001 4839 1983-04-02 2024-10-11 01:20:39.000 1983-04-02 2024-10-11 01:20:39 +4841 4841 4842 484.1 968.2 4841 1983-04-04 2024-10-11 01:20:41.000 1983-04-04 2024-10-11 01:20:41 +4842 4842 4843 484.2 968.4000000000001 4842 1983-04-05 2024-10-11 01:20:42.000 1983-04-05 2024-10-11 01:20:42 +4843 4843 4844 484.3 968.6 4843 1983-04-06 2024-10-11 01:20:43.000 1983-04-06 2024-10-11 01:20:43 +4844 4844 4845 484.4 968.8000000000001 4844 1983-04-07 2024-10-11 01:20:44.000 1983-04-07 2024-10-11 01:20:44 +4846 4846 4847 484.6 969.2 4846 1983-04-09 2024-10-11 01:20:46.000 1983-04-09 2024-10-11 01:20:46 +4847 4847 4848 484.7 969.4000000000001 4847 1983-04-10 2024-10-11 01:20:47.000 1983-04-10 2024-10-11 01:20:47 +4848 4848 4849 484.8 969.6 4848 1983-04-11 2024-10-11 01:20:48.000 1983-04-11 2024-10-11 01:20:48 +4849 4849 4850 484.9 969.8000000000001 4849 1983-04-12 2024-10-11 01:20:49.000 1983-04-12 2024-10-11 01:20:49 +4851 4851 4852 485.1 970.2 4851 1983-04-14 2024-10-11 01:20:51.000 1983-04-14 2024-10-11 01:20:51 +4852 4852 4853 485.2 970.4000000000001 4852 1983-04-15 2024-10-11 01:20:52.000 1983-04-15 2024-10-11 01:20:52 +4853 4853 4854 485.3 970.6 4853 1983-04-16 2024-10-11 01:20:53.000 1983-04-16 2024-10-11 01:20:53 +4854 4854 4855 485.4 970.8000000000001 4854 1983-04-17 2024-10-11 01:20:54.000 1983-04-17 2024-10-11 01:20:54 +4856 4856 4857 485.6 971.2 4856 1983-04-19 2024-10-11 01:20:56.000 1983-04-19 2024-10-11 01:20:56 +4857 4857 4858 485.7 971.4000000000001 4857 1983-04-20 2024-10-11 01:20:57.000 1983-04-20 2024-10-11 01:20:57 +4858 4858 4859 485.8 971.6 4858 1983-04-21 2024-10-11 01:20:58.000 1983-04-21 2024-10-11 01:20:58 +4859 4859 4860 485.9 971.8000000000001 4859 1983-04-22 2024-10-11 01:20:59.000 1983-04-22 2024-10-11 01:20:59 +4861 4861 4862 486.1 972.2 4861 1983-04-24 2024-10-11 01:21:01.000 1983-04-24 2024-10-11 01:21:01 +4862 4862 4863 486.2 972.4000000000001 4862 1983-04-25 2024-10-11 01:21:02.000 1983-04-25 2024-10-11 01:21:02 +4863 4863 4864 486.3 972.6 4863 1983-04-26 2024-10-11 01:21:03.000 1983-04-26 2024-10-11 01:21:03 +4864 4864 4865 486.4 972.8000000000001 4864 1983-04-27 2024-10-11 01:21:04.000 1983-04-27 2024-10-11 01:21:04 +4866 4866 4867 486.6 973.2 4866 1983-04-29 2024-10-11 01:21:06.000 1983-04-29 2024-10-11 01:21:06 +4867 4867 4868 486.7 973.4000000000001 4867 1983-04-30 2024-10-11 01:21:07.000 1983-04-30 2024-10-11 01:21:07 +4868 4868 4869 486.8 973.6 4868 1983-05-01 2024-10-11 01:21:08.000 1983-05-01 2024-10-11 01:21:08 +4869 4869 4870 486.9 973.8000000000001 4869 1983-05-02 2024-10-11 01:21:09.000 1983-05-02 2024-10-11 01:21:09 +4871 4871 4872 487.1 974.2 4871 1983-05-04 2024-10-11 01:21:11.000 1983-05-04 2024-10-11 01:21:11 +4872 4872 4873 487.2 974.4000000000001 4872 1983-05-05 2024-10-11 01:21:12.000 1983-05-05 2024-10-11 01:21:12 +4873 4873 4874 487.3 974.6 4873 1983-05-06 2024-10-11 01:21:13.000 1983-05-06 2024-10-11 01:21:13 +4874 4874 4875 487.4 974.8000000000001 4874 1983-05-07 2024-10-11 01:21:14.000 1983-05-07 2024-10-11 01:21:14 +4876 4876 4877 487.6 975.2 4876 1983-05-09 2024-10-11 01:21:16.000 1983-05-09 2024-10-11 01:21:16 +4877 4877 4878 487.7 975.4000000000001 4877 1983-05-10 2024-10-11 01:21:17.000 1983-05-10 2024-10-11 01:21:17 +4878 4878 4879 487.8 975.6 4878 1983-05-11 2024-10-11 01:21:18.000 1983-05-11 2024-10-11 01:21:18 +4879 4879 4880 487.9 975.8000000000001 4879 1983-05-12 2024-10-11 01:21:19.000 1983-05-12 2024-10-11 01:21:19 +4881 4881 4882 488.1 976.2 4881 1983-05-14 2024-10-11 01:21:21.000 1983-05-14 2024-10-11 01:21:21 +4882 4882 4883 488.2 976.4000000000001 4882 1983-05-15 2024-10-11 01:21:22.000 1983-05-15 2024-10-11 01:21:22 +4883 4883 4884 488.3 976.6 4883 1983-05-16 2024-10-11 01:21:23.000 1983-05-16 2024-10-11 01:21:23 +4884 4884 4885 488.4 976.8000000000001 4884 1983-05-17 2024-10-11 01:21:24.000 1983-05-17 2024-10-11 01:21:24 +4886 4886 4887 488.6 977.2 4886 1983-05-19 2024-10-11 01:21:26.000 1983-05-19 2024-10-11 01:21:26 +4887 4887 4888 488.7 977.4000000000001 4887 1983-05-20 2024-10-11 01:21:27.000 1983-05-20 2024-10-11 01:21:27 +4888 4888 4889 488.8 977.6 4888 1983-05-21 2024-10-11 01:21:28.000 1983-05-21 2024-10-11 01:21:28 +4889 4889 4890 488.9 977.8000000000001 4889 1983-05-22 2024-10-11 01:21:29.000 1983-05-22 2024-10-11 01:21:29 +4891 4891 4892 489.1 978.2 4891 1983-05-24 2024-10-11 01:21:31.000 1983-05-24 2024-10-11 01:21:31 +4892 4892 4893 489.2 978.4000000000001 4892 1983-05-25 2024-10-11 01:21:32.000 1983-05-25 2024-10-11 01:21:32 +4893 4893 4894 489.3 978.6 4893 1983-05-26 2024-10-11 01:21:33.000 1983-05-26 2024-10-11 01:21:33 +4894 4894 4895 489.4 978.8000000000001 4894 1983-05-27 2024-10-11 01:21:34.000 1983-05-27 2024-10-11 01:21:34 +4896 4896 4897 489.6 979.2 4896 1983-05-29 2024-10-11 01:21:36.000 1983-05-29 2024-10-11 01:21:36 +4897 4897 4898 489.7 979.4000000000001 4897 1983-05-30 2024-10-11 01:21:37.000 1983-05-30 2024-10-11 01:21:37 +4898 4898 4899 489.8 979.6 4898 1983-05-31 2024-10-11 01:21:38.000 1983-05-31 2024-10-11 01:21:38 +4899 4899 4900 489.9 979.8000000000001 4899 1983-06-01 2024-10-11 01:21:39.000 1983-06-01 2024-10-11 01:21:39 +4901 4901 4902 490.1 980.2 4901 1983-06-03 2024-10-11 01:21:41.000 1983-06-03 2024-10-11 01:21:41 +4902 4902 4903 490.2 980.4000000000001 4902 1983-06-04 2024-10-11 01:21:42.000 1983-06-04 2024-10-11 01:21:42 +4903 4903 4904 490.3 980.6 4903 1983-06-05 2024-10-11 01:21:43.000 1983-06-05 2024-10-11 01:21:43 +4904 4904 4905 490.4 980.8000000000001 4904 1983-06-06 2024-10-11 01:21:44.000 1983-06-06 2024-10-11 01:21:44 +4906 4906 4907 490.6 981.2 4906 1983-06-08 2024-10-11 01:21:46.000 1983-06-08 2024-10-11 01:21:46 +4907 4907 4908 490.7 981.4000000000001 4907 1983-06-09 2024-10-11 01:21:47.000 1983-06-09 2024-10-11 01:21:47 +4908 4908 4909 490.8 981.6 4908 1983-06-10 2024-10-11 01:21:48.000 1983-06-10 2024-10-11 01:21:48 +4909 4909 4910 490.9 981.8000000000001 4909 1983-06-11 2024-10-11 01:21:49.000 1983-06-11 2024-10-11 01:21:49 +4911 4911 4912 491.1 982.2 4911 1983-06-13 2024-10-11 01:21:51.000 1983-06-13 2024-10-11 01:21:51 +4912 4912 4913 491.2 982.4000000000001 4912 1983-06-14 2024-10-11 01:21:52.000 1983-06-14 2024-10-11 01:21:52 +4913 4913 4914 491.3 982.6 4913 1983-06-15 2024-10-11 01:21:53.000 1983-06-15 2024-10-11 01:21:53 +4914 4914 4915 491.4 982.8000000000001 4914 1983-06-16 2024-10-11 01:21:54.000 1983-06-16 2024-10-11 01:21:54 +4916 4916 4917 491.6 983.2 4916 1983-06-18 2024-10-11 01:21:56.000 1983-06-18 2024-10-11 01:21:56 +4917 4917 4918 491.7 983.4000000000001 4917 1983-06-19 2024-10-11 01:21:57.000 1983-06-19 2024-10-11 01:21:57 +4918 4918 4919 491.8 983.6 4918 1983-06-20 2024-10-11 01:21:58.000 1983-06-20 2024-10-11 01:21:58 +4919 4919 4920 491.9 983.8000000000001 4919 1983-06-21 2024-10-11 01:21:59.000 1983-06-21 2024-10-11 01:21:59 +4921 4921 4922 492.1 984.2 4921 1983-06-23 2024-10-11 01:22:01.000 1983-06-23 2024-10-11 01:22:01 +4922 4922 4923 492.2 984.4000000000001 4922 1983-06-24 2024-10-11 01:22:02.000 1983-06-24 2024-10-11 01:22:02 +4923 4923 4924 492.3 984.6 4923 1983-06-25 2024-10-11 01:22:03.000 1983-06-25 2024-10-11 01:22:03 +4924 4924 4925 492.4 984.8000000000001 4924 1983-06-26 2024-10-11 01:22:04.000 1983-06-26 2024-10-11 01:22:04 +4926 4926 4927 492.6 985.2 4926 1983-06-28 2024-10-11 01:22:06.000 1983-06-28 2024-10-11 01:22:06 +4927 4927 4928 492.7 985.4000000000001 4927 1983-06-29 2024-10-11 01:22:07.000 1983-06-29 2024-10-11 01:22:07 +4928 4928 4929 492.8 985.6 4928 1983-06-30 2024-10-11 01:22:08.000 1983-06-30 2024-10-11 01:22:08 +4929 4929 4930 492.9 985.8000000000001 4929 1983-07-01 2024-10-11 01:22:09.000 1983-07-01 2024-10-11 01:22:09 +4931 4931 4932 493.1 986.2 4931 1983-07-03 2024-10-11 01:22:11.000 1983-07-03 2024-10-11 01:22:11 +4932 4932 4933 493.2 986.4000000000001 4932 1983-07-04 2024-10-11 01:22:12.000 1983-07-04 2024-10-11 01:22:12 +4933 4933 4934 493.3 986.6 4933 1983-07-05 2024-10-11 01:22:13.000 1983-07-05 2024-10-11 01:22:13 +4934 4934 4935 493.4 986.8000000000001 4934 1983-07-06 2024-10-11 01:22:14.000 1983-07-06 2024-10-11 01:22:14 +4936 4936 4937 493.6 987.2 4936 1983-07-08 2024-10-11 01:22:16.000 1983-07-08 2024-10-11 01:22:16 +4937 4937 4938 493.7 987.4000000000001 4937 1983-07-09 2024-10-11 01:22:17.000 1983-07-09 2024-10-11 01:22:17 +4938 4938 4939 493.8 987.6 4938 1983-07-10 2024-10-11 01:22:18.000 1983-07-10 2024-10-11 01:22:18 +4939 4939 4940 493.9 987.8000000000001 4939 1983-07-11 2024-10-11 01:22:19.000 1983-07-11 2024-10-11 01:22:19 +4941 4941 4942 494.1 988.2 4941 1983-07-13 2024-10-11 01:22:21.000 1983-07-13 2024-10-11 01:22:21 +4942 4942 4943 494.2 988.4000000000001 4942 1983-07-14 2024-10-11 01:22:22.000 1983-07-14 2024-10-11 01:22:22 +4943 4943 4944 494.3 988.6 4943 1983-07-15 2024-10-11 01:22:23.000 1983-07-15 2024-10-11 01:22:23 +4944 4944 4945 494.4 988.8000000000001 4944 1983-07-16 2024-10-11 01:22:24.000 1983-07-16 2024-10-11 01:22:24 +4946 4946 4947 494.6 989.2 4946 1983-07-18 2024-10-11 01:22:26.000 1983-07-18 2024-10-11 01:22:26 +4947 4947 4948 494.7 989.4000000000001 4947 1983-07-19 2024-10-11 01:22:27.000 1983-07-19 2024-10-11 01:22:27 +4948 4948 4949 494.8 989.6 4948 1983-07-20 2024-10-11 01:22:28.000 1983-07-20 2024-10-11 01:22:28 +4949 4949 4950 494.9 989.8000000000001 4949 1983-07-21 2024-10-11 01:22:29.000 1983-07-21 2024-10-11 01:22:29 +4951 4951 4952 495.1 990.2 4951 1983-07-23 2024-10-11 01:22:31.000 1983-07-23 2024-10-11 01:22:31 +4952 4952 4953 495.2 990.4000000000001 4952 1983-07-24 2024-10-11 01:22:32.000 1983-07-24 2024-10-11 01:22:32 +4953 4953 4954 495.3 990.6 4953 1983-07-25 2024-10-11 01:22:33.000 1983-07-25 2024-10-11 01:22:33 +4954 4954 4955 495.4 990.8000000000001 4954 1983-07-26 2024-10-11 01:22:34.000 1983-07-26 2024-10-11 01:22:34 +4956 4956 4957 495.6 991.2 4956 1983-07-28 2024-10-11 01:22:36.000 1983-07-28 2024-10-11 01:22:36 +4957 4957 4958 495.7 991.4000000000001 4957 1983-07-29 2024-10-11 01:22:37.000 1983-07-29 2024-10-11 01:22:37 +4958 4958 4959 495.8 991.6 4958 1983-07-30 2024-10-11 01:22:38.000 1983-07-30 2024-10-11 01:22:38 +4959 4959 4960 495.9 991.8000000000001 4959 1983-07-31 2024-10-11 01:22:39.000 1983-07-31 2024-10-11 01:22:39 +4961 4961 4962 496.1 992.2 4961 1983-08-02 2024-10-11 01:22:41.000 1983-08-02 2024-10-11 01:22:41 +4962 4962 4963 496.2 992.4000000000001 4962 1983-08-03 2024-10-11 01:22:42.000 1983-08-03 2024-10-11 01:22:42 +4963 4963 4964 496.3 992.6 4963 1983-08-04 2024-10-11 01:22:43.000 1983-08-04 2024-10-11 01:22:43 +4964 4964 4965 496.4 992.8000000000001 4964 1983-08-05 2024-10-11 01:22:44.000 1983-08-05 2024-10-11 01:22:44 +4966 4966 4967 496.6 993.2 4966 1983-08-07 2024-10-11 01:22:46.000 1983-08-07 2024-10-11 01:22:46 +4967 4967 4968 496.7 993.4000000000001 4967 1983-08-08 2024-10-11 01:22:47.000 1983-08-08 2024-10-11 01:22:47 +4968 4968 4969 496.8 993.6 4968 1983-08-09 2024-10-11 01:22:48.000 1983-08-09 2024-10-11 01:22:48 +4969 4969 4970 496.9 993.8000000000001 4969 1983-08-10 2024-10-11 01:22:49.000 1983-08-10 2024-10-11 01:22:49 +4971 4971 4972 497.1 994.2 4971 1983-08-12 2024-10-11 01:22:51.000 1983-08-12 2024-10-11 01:22:51 +4972 4972 4973 497.2 994.4000000000001 4972 1983-08-13 2024-10-11 01:22:52.000 1983-08-13 2024-10-11 01:22:52 +4973 4973 4974 497.3 994.6 4973 1983-08-14 2024-10-11 01:22:53.000 1983-08-14 2024-10-11 01:22:53 +4974 4974 4975 497.4 994.8000000000001 4974 1983-08-15 2024-10-11 01:22:54.000 1983-08-15 2024-10-11 01:22:54 +4976 4976 4977 497.6 995.2 4976 1983-08-17 2024-10-11 01:22:56.000 1983-08-17 2024-10-11 01:22:56 +4977 4977 4978 497.7 995.4000000000001 4977 1983-08-18 2024-10-11 01:22:57.000 1983-08-18 2024-10-11 01:22:57 +4978 4978 4979 497.8 995.6 4978 1983-08-19 2024-10-11 01:22:58.000 1983-08-19 2024-10-11 01:22:58 +4979 4979 4980 497.9 995.8000000000001 4979 1983-08-20 2024-10-11 01:22:59.000 1983-08-20 2024-10-11 01:22:59 +4981 4981 4982 498.1 996.2 4981 1983-08-22 2024-10-11 01:23:01.000 1983-08-22 2024-10-11 01:23:01 +4982 4982 4983 498.2 996.4000000000001 4982 1983-08-23 2024-10-11 01:23:02.000 1983-08-23 2024-10-11 01:23:02 +4983 4983 4984 498.3 996.6 4983 1983-08-24 2024-10-11 01:23:03.000 1983-08-24 2024-10-11 01:23:03 +4984 4984 4985 498.4 996.8000000000001 4984 1983-08-25 2024-10-11 01:23:04.000 1983-08-25 2024-10-11 01:23:04 +4986 4986 4987 498.6 997.2 4986 1983-08-27 2024-10-11 01:23:06.000 1983-08-27 2024-10-11 01:23:06 +4987 4987 4988 498.7 997.4000000000001 4987 1983-08-28 2024-10-11 01:23:07.000 1983-08-28 2024-10-11 01:23:07 +4988 4988 4989 498.8 997.6 4988 1983-08-29 2024-10-11 01:23:08.000 1983-08-29 2024-10-11 01:23:08 +4989 4989 4990 498.9 997.8000000000001 4989 1983-08-30 2024-10-11 01:23:09.000 1983-08-30 2024-10-11 01:23:09 +4991 4991 4992 499.1 998.2 4991 1983-09-01 2024-10-11 01:23:11.000 1983-09-01 2024-10-11 01:23:11 +4992 4992 4993 499.2 998.4000000000001 4992 1983-09-02 2024-10-11 01:23:12.000 1983-09-02 2024-10-11 01:23:12 +4993 4993 4994 499.3 998.6 4993 1983-09-03 2024-10-11 01:23:13.000 1983-09-03 2024-10-11 01:23:13 +4994 4994 4995 499.4 998.8000000000001 4994 1983-09-04 2024-10-11 01:23:14.000 1983-09-04 2024-10-11 01:23:14 +4996 4996 4997 499.6 999.2 4996 1983-09-06 2024-10-11 01:23:16.000 1983-09-06 2024-10-11 01:23:16 +4997 4997 4998 499.7 999.4000000000001 4997 1983-09-07 2024-10-11 01:23:17.000 1983-09-07 2024-10-11 01:23:17 +4998 4998 4999 499.8 999.6 4998 1983-09-08 2024-10-11 01:23:18.000 1983-09-08 2024-10-11 01:23:18 +4999 4999 5000 499.9 999.8000000000001 4999 1983-09-09 2024-10-11 01:23:19.000 1983-09-09 2024-10-11 01:23:19 +5001 5001 5002 500.1 1000.2 5001 1983-09-11 2024-10-11 01:23:21.000 1983-09-11 2024-10-11 01:23:21 +5002 5002 5003 500.2 1000.4000000000001 5002 1983-09-12 2024-10-11 01:23:22.000 1983-09-12 2024-10-11 01:23:22 +5003 5003 5004 500.3 1000.6 5003 1983-09-13 2024-10-11 01:23:23.000 1983-09-13 2024-10-11 01:23:23 +5004 5004 5005 500.4 1000.8000000000001 5004 1983-09-14 2024-10-11 01:23:24.000 1983-09-14 2024-10-11 01:23:24 +5006 5006 5007 500.6 1001.2 5006 1983-09-16 2024-10-11 01:23:26.000 1983-09-16 2024-10-11 01:23:26 +5007 5007 5008 500.7 1001.4000000000001 5007 1983-09-17 2024-10-11 01:23:27.000 1983-09-17 2024-10-11 01:23:27 +5008 5008 5009 500.8 1001.6 5008 1983-09-18 2024-10-11 01:23:28.000 1983-09-18 2024-10-11 01:23:28 +5009 5009 5010 500.9 1001.8000000000001 5009 1983-09-19 2024-10-11 01:23:29.000 1983-09-19 2024-10-11 01:23:29 +5011 5011 5012 501.1 1002.2 5011 1983-09-21 2024-10-11 01:23:31.000 1983-09-21 2024-10-11 01:23:31 +5012 5012 5013 501.2 1002.4000000000001 5012 1983-09-22 2024-10-11 01:23:32.000 1983-09-22 2024-10-11 01:23:32 +5013 5013 5014 501.3 1002.6 5013 1983-09-23 2024-10-11 01:23:33.000 1983-09-23 2024-10-11 01:23:33 +5014 5014 5015 501.4 1002.8000000000001 5014 1983-09-24 2024-10-11 01:23:34.000 1983-09-24 2024-10-11 01:23:34 +5016 5016 5017 501.6 1003.2 5016 1983-09-26 2024-10-11 01:23:36.000 1983-09-26 2024-10-11 01:23:36 +5017 5017 5018 501.7 1003.4000000000001 5017 1983-09-27 2024-10-11 01:23:37.000 1983-09-27 2024-10-11 01:23:37 +5018 5018 5019 501.8 1003.6 5018 1983-09-28 2024-10-11 01:23:38.000 1983-09-28 2024-10-11 01:23:38 +5019 5019 5020 501.9 1003.8000000000001 5019 1983-09-29 2024-10-11 01:23:39.000 1983-09-29 2024-10-11 01:23:39 +5021 5021 5022 502.1 1004.2 5021 1983-10-01 2024-10-11 01:23:41.000 1983-10-01 2024-10-11 01:23:41 +5022 5022 5023 502.2 1004.4000000000001 5022 1983-10-02 2024-10-11 01:23:42.000 1983-10-02 2024-10-11 01:23:42 +5023 5023 5024 502.3 1004.6 5023 1983-10-03 2024-10-11 01:23:43.000 1983-10-03 2024-10-11 01:23:43 +5024 5024 5025 502.4 1004.8000000000001 5024 1983-10-04 2024-10-11 01:23:44.000 1983-10-04 2024-10-11 01:23:44 +5026 5026 5027 502.6 1005.2 5026 1983-10-06 2024-10-11 01:23:46.000 1983-10-06 2024-10-11 01:23:46 +5027 5027 5028 502.7 1005.4000000000001 5027 1983-10-07 2024-10-11 01:23:47.000 1983-10-07 2024-10-11 01:23:47 +5028 5028 5029 502.8 1005.6 5028 1983-10-08 2024-10-11 01:23:48.000 1983-10-08 2024-10-11 01:23:48 +5029 5029 5030 502.9 1005.8000000000001 5029 1983-10-09 2024-10-11 01:23:49.000 1983-10-09 2024-10-11 01:23:49 +5031 5031 5032 503.1 1006.2 5031 1983-10-11 2024-10-11 01:23:51.000 1983-10-11 2024-10-11 01:23:51 +5032 5032 5033 503.2 1006.4000000000001 5032 1983-10-12 2024-10-11 01:23:52.000 1983-10-12 2024-10-11 01:23:52 +5033 5033 5034 503.3 1006.6 5033 1983-10-13 2024-10-11 01:23:53.000 1983-10-13 2024-10-11 01:23:53 +5034 5034 5035 503.4 1006.8000000000001 5034 1983-10-14 2024-10-11 01:23:54.000 1983-10-14 2024-10-11 01:23:54 +5036 5036 5037 503.6 1007.2 5036 1983-10-16 2024-10-11 01:23:56.000 1983-10-16 2024-10-11 01:23:56 +5037 5037 5038 503.7 1007.4000000000001 5037 1983-10-17 2024-10-11 01:23:57.000 1983-10-17 2024-10-11 01:23:57 +5038 5038 5039 503.8 1007.6 5038 1983-10-18 2024-10-11 01:23:58.000 1983-10-18 2024-10-11 01:23:58 +5039 5039 5040 503.9 1007.8000000000001 5039 1983-10-19 2024-10-11 01:23:59.000 1983-10-19 2024-10-11 01:23:59 +5041 5041 5042 504.1 1008.2 5041 1983-10-21 2024-10-11 01:24:01.000 1983-10-21 2024-10-11 01:24:01 +5042 5042 5043 504.2 1008.4000000000001 5042 1983-10-22 2024-10-11 01:24:02.000 1983-10-22 2024-10-11 01:24:02 +5043 5043 5044 504.3 1008.6 5043 1983-10-23 2024-10-11 01:24:03.000 1983-10-23 2024-10-11 01:24:03 +5044 5044 5045 504.4 1008.8000000000001 5044 1983-10-24 2024-10-11 01:24:04.000 1983-10-24 2024-10-11 01:24:04 +5046 5046 5047 504.6 1009.2 5046 1983-10-26 2024-10-11 01:24:06.000 1983-10-26 2024-10-11 01:24:06 +5047 5047 5048 504.7 1009.4000000000001 5047 1983-10-27 2024-10-11 01:24:07.000 1983-10-27 2024-10-11 01:24:07 +5048 5048 5049 504.8 1009.6 5048 1983-10-28 2024-10-11 01:24:08.000 1983-10-28 2024-10-11 01:24:08 +5049 5049 5050 504.9 1009.8000000000001 5049 1983-10-29 2024-10-11 01:24:09.000 1983-10-29 2024-10-11 01:24:09 +5051 5051 5052 505.1 1010.2 5051 1983-10-31 2024-10-11 01:24:11.000 1983-10-31 2024-10-11 01:24:11 +5052 5052 5053 505.2 1010.4000000000001 5052 1983-11-01 2024-10-11 01:24:12.000 1983-11-01 2024-10-11 01:24:12 +5053 5053 5054 505.3 1010.6 5053 1983-11-02 2024-10-11 01:24:13.000 1983-11-02 2024-10-11 01:24:13 +5054 5054 5055 505.4 1010.8000000000001 5054 1983-11-03 2024-10-11 01:24:14.000 1983-11-03 2024-10-11 01:24:14 +5056 5056 5057 505.6 1011.2 5056 1983-11-05 2024-10-11 01:24:16.000 1983-11-05 2024-10-11 01:24:16 +5057 5057 5058 505.7 1011.4000000000001 5057 1983-11-06 2024-10-11 01:24:17.000 1983-11-06 2024-10-11 01:24:17 +5058 5058 5059 505.8 1011.6 5058 1983-11-07 2024-10-11 01:24:18.000 1983-11-07 2024-10-11 01:24:18 +5059 5059 5060 505.9 1011.8000000000001 5059 1983-11-08 2024-10-11 01:24:19.000 1983-11-08 2024-10-11 01:24:19 +5061 5061 5062 506.1 1012.2 5061 1983-11-10 2024-10-11 01:24:21.000 1983-11-10 2024-10-11 01:24:21 +5062 5062 5063 506.2 1012.4000000000001 5062 1983-11-11 2024-10-11 01:24:22.000 1983-11-11 2024-10-11 01:24:22 +5063 5063 5064 506.3 1012.6 5063 1983-11-12 2024-10-11 01:24:23.000 1983-11-12 2024-10-11 01:24:23 +5064 5064 5065 506.4 1012.8000000000001 5064 1983-11-13 2024-10-11 01:24:24.000 1983-11-13 2024-10-11 01:24:24 +5066 5066 5067 506.6 1013.2 5066 1983-11-15 2024-10-11 01:24:26.000 1983-11-15 2024-10-11 01:24:26 +5067 5067 5068 506.7 1013.4000000000001 5067 1983-11-16 2024-10-11 01:24:27.000 1983-11-16 2024-10-11 01:24:27 +5068 5068 5069 506.8 1013.6 5068 1983-11-17 2024-10-11 01:24:28.000 1983-11-17 2024-10-11 01:24:28 +5069 5069 5070 506.9 1013.8000000000001 5069 1983-11-18 2024-10-11 01:24:29.000 1983-11-18 2024-10-11 01:24:29 +5071 5071 5072 507.1 1014.2 5071 1983-11-20 2024-10-11 01:24:31.000 1983-11-20 2024-10-11 01:24:31 +5072 5072 5073 507.2 1014.4000000000001 5072 1983-11-21 2024-10-11 01:24:32.000 1983-11-21 2024-10-11 01:24:32 +5073 5073 5074 507.3 1014.6 5073 1983-11-22 2024-10-11 01:24:33.000 1983-11-22 2024-10-11 01:24:33 +5074 5074 5075 507.4 1014.8000000000001 5074 1983-11-23 2024-10-11 01:24:34.000 1983-11-23 2024-10-11 01:24:34 +5076 5076 5077 507.6 1015.2 5076 1983-11-25 2024-10-11 01:24:36.000 1983-11-25 2024-10-11 01:24:36 +5077 5077 5078 507.7 1015.4000000000001 5077 1983-11-26 2024-10-11 01:24:37.000 1983-11-26 2024-10-11 01:24:37 +5078 5078 5079 507.8 1015.6 5078 1983-11-27 2024-10-11 01:24:38.000 1983-11-27 2024-10-11 01:24:38 +5079 5079 5080 507.9 1015.8000000000001 5079 1983-11-28 2024-10-11 01:24:39.000 1983-11-28 2024-10-11 01:24:39 +5081 5081 5082 508.1 1016.2 5081 1983-11-30 2024-10-11 01:24:41.000 1983-11-30 2024-10-11 01:24:41 +5082 5082 5083 508.2 1016.4000000000001 5082 1983-12-01 2024-10-11 01:24:42.000 1983-12-01 2024-10-11 01:24:42 +5083 5083 5084 508.3 1016.6 5083 1983-12-02 2024-10-11 01:24:43.000 1983-12-02 2024-10-11 01:24:43 +5084 5084 5085 508.4 1016.8000000000001 5084 1983-12-03 2024-10-11 01:24:44.000 1983-12-03 2024-10-11 01:24:44 +5086 5086 5087 508.6 1017.2 5086 1983-12-05 2024-10-11 01:24:46.000 1983-12-05 2024-10-11 01:24:46 +5087 5087 5088 508.7 1017.4000000000001 5087 1983-12-06 2024-10-11 01:24:47.000 1983-12-06 2024-10-11 01:24:47 +5088 5088 5089 508.8 1017.6 5088 1983-12-07 2024-10-11 01:24:48.000 1983-12-07 2024-10-11 01:24:48 +5089 5089 5090 508.9 1017.8000000000001 5089 1983-12-08 2024-10-11 01:24:49.000 1983-12-08 2024-10-11 01:24:49 +5091 5091 5092 509.1 1018.2 5091 1983-12-10 2024-10-11 01:24:51.000 1983-12-10 2024-10-11 01:24:51 +5092 5092 5093 509.2 1018.4000000000001 5092 1983-12-11 2024-10-11 01:24:52.000 1983-12-11 2024-10-11 01:24:52 +5093 5093 5094 509.3 1018.6 5093 1983-12-12 2024-10-11 01:24:53.000 1983-12-12 2024-10-11 01:24:53 +5094 5094 5095 509.4 1018.8000000000001 5094 1983-12-13 2024-10-11 01:24:54.000 1983-12-13 2024-10-11 01:24:54 +5096 5096 5097 509.6 1019.2 5096 1983-12-15 2024-10-11 01:24:56.000 1983-12-15 2024-10-11 01:24:56 +5097 5097 5098 509.7 1019.4000000000001 5097 1983-12-16 2024-10-11 01:24:57.000 1983-12-16 2024-10-11 01:24:57 +5098 5098 5099 509.8 1019.6 5098 1983-12-17 2024-10-11 01:24:58.000 1983-12-17 2024-10-11 01:24:58 +5099 5099 5100 509.9 1019.8000000000001 5099 1983-12-18 2024-10-11 01:24:59.000 1983-12-18 2024-10-11 01:24:59 +5101 5101 5102 510.1 1020.2 5101 1983-12-20 2024-10-11 01:25:01.000 1983-12-20 2024-10-11 01:25:01 +5102 5102 5103 510.2 1020.4000000000001 5102 1983-12-21 2024-10-11 01:25:02.000 1983-12-21 2024-10-11 01:25:02 +5103 5103 5104 510.3 1020.6 5103 1983-12-22 2024-10-11 01:25:03.000 1983-12-22 2024-10-11 01:25:03 +5104 5104 5105 510.4 1020.8000000000001 5104 1983-12-23 2024-10-11 01:25:04.000 1983-12-23 2024-10-11 01:25:04 +5106 5106 5107 510.6 1021.2 5106 1983-12-25 2024-10-11 01:25:06.000 1983-12-25 2024-10-11 01:25:06 +5107 5107 5108 510.7 1021.4000000000001 5107 1983-12-26 2024-10-11 01:25:07.000 1983-12-26 2024-10-11 01:25:07 +5108 5108 5109 510.8 1021.6 5108 1983-12-27 2024-10-11 01:25:08.000 1983-12-27 2024-10-11 01:25:08 +5109 5109 5110 510.9 1021.8000000000001 5109 1983-12-28 2024-10-11 01:25:09.000 1983-12-28 2024-10-11 01:25:09 +5111 5111 5112 511.1 1022.2 5111 1983-12-30 2024-10-11 01:25:11.000 1983-12-30 2024-10-11 01:25:11 +5112 5112 5113 511.2 1022.4000000000001 5112 1983-12-31 2024-10-11 01:25:12.000 1983-12-31 2024-10-11 01:25:12 +5113 5113 5114 511.3 1022.6 5113 1984-01-01 2024-10-11 01:25:13.000 1984-01-01 2024-10-11 01:25:13 +5114 5114 5115 511.4 1022.8000000000001 5114 1984-01-02 2024-10-11 01:25:14.000 1984-01-02 2024-10-11 01:25:14 +5116 5116 5117 511.6 1023.2 5116 1984-01-04 2024-10-11 01:25:16.000 1984-01-04 2024-10-11 01:25:16 +5117 5117 5118 511.7 1023.4000000000001 5117 1984-01-05 2024-10-11 01:25:17.000 1984-01-05 2024-10-11 01:25:17 +5118 5118 5119 511.8 1023.6 5118 1984-01-06 2024-10-11 01:25:18.000 1984-01-06 2024-10-11 01:25:18 +5119 5119 5120 511.9 1023.8000000000001 5119 1984-01-07 2024-10-11 01:25:19.000 1984-01-07 2024-10-11 01:25:19 +5121 5121 5122 512.1 1024.2 5121 1984-01-09 2024-10-11 01:25:21.000 1984-01-09 2024-10-11 01:25:21 +5122 5122 5123 512.2 1024.4 5122 1984-01-10 2024-10-11 01:25:22.000 1984-01-10 2024-10-11 01:25:22 +5123 5123 5124 512.3 1024.6000000000001 5123 1984-01-11 2024-10-11 01:25:23.000 1984-01-11 2024-10-11 01:25:23 +5124 5124 5125 512.4 1024.8 5124 1984-01-12 2024-10-11 01:25:24.000 1984-01-12 2024-10-11 01:25:24 +5126 5126 5127 512.6 1025.2 5126 1984-01-14 2024-10-11 01:25:26.000 1984-01-14 2024-10-11 01:25:26 +5127 5127 5128 512.7 1025.4 5127 1984-01-15 2024-10-11 01:25:27.000 1984-01-15 2024-10-11 01:25:27 +5128 5128 5129 512.8 1025.6000000000001 5128 1984-01-16 2024-10-11 01:25:28.000 1984-01-16 2024-10-11 01:25:28 +5129 5129 5130 512.9 1025.8 5129 1984-01-17 2024-10-11 01:25:29.000 1984-01-17 2024-10-11 01:25:29 +5131 5131 5132 513.1 1026.2 5131 1984-01-19 2024-10-11 01:25:31.000 1984-01-19 2024-10-11 01:25:31 +5132 5132 5133 513.2 1026.4 5132 1984-01-20 2024-10-11 01:25:32.000 1984-01-20 2024-10-11 01:25:32 +5133 5133 5134 513.3 1026.6000000000001 5133 1984-01-21 2024-10-11 01:25:33.000 1984-01-21 2024-10-11 01:25:33 +5134 5134 5135 513.4 1026.8 5134 1984-01-22 2024-10-11 01:25:34.000 1984-01-22 2024-10-11 01:25:34 +5136 5136 5137 513.6 1027.2 5136 1984-01-24 2024-10-11 01:25:36.000 1984-01-24 2024-10-11 01:25:36 +5137 5137 5138 513.7 1027.4 5137 1984-01-25 2024-10-11 01:25:37.000 1984-01-25 2024-10-11 01:25:37 +5138 5138 5139 513.8 1027.6000000000001 5138 1984-01-26 2024-10-11 01:25:38.000 1984-01-26 2024-10-11 01:25:38 +5139 5139 5140 513.9 1027.8 5139 1984-01-27 2024-10-11 01:25:39.000 1984-01-27 2024-10-11 01:25:39 +5141 5141 5142 514.1 1028.2 5141 1984-01-29 2024-10-11 01:25:41.000 1984-01-29 2024-10-11 01:25:41 +5142 5142 5143 514.2 1028.4 5142 1984-01-30 2024-10-11 01:25:42.000 1984-01-30 2024-10-11 01:25:42 +5143 5143 5144 514.3 1028.6000000000001 5143 1984-01-31 2024-10-11 01:25:43.000 1984-01-31 2024-10-11 01:25:43 +5144 5144 5145 514.4 1028.8 5144 1984-02-01 2024-10-11 01:25:44.000 1984-02-01 2024-10-11 01:25:44 +5146 5146 5147 514.6 1029.2 5146 1984-02-03 2024-10-11 01:25:46.000 1984-02-03 2024-10-11 01:25:46 +5147 5147 5148 514.7 1029.4 5147 1984-02-04 2024-10-11 01:25:47.000 1984-02-04 2024-10-11 01:25:47 +5148 5148 5149 514.8 1029.6000000000001 5148 1984-02-05 2024-10-11 01:25:48.000 1984-02-05 2024-10-11 01:25:48 +5149 5149 5150 514.9 1029.8 5149 1984-02-06 2024-10-11 01:25:49.000 1984-02-06 2024-10-11 01:25:49 +5151 5151 5152 515.1 1030.2 5151 1984-02-08 2024-10-11 01:25:51.000 1984-02-08 2024-10-11 01:25:51 +5152 5152 5153 515.2 1030.4 5152 1984-02-09 2024-10-11 01:25:52.000 1984-02-09 2024-10-11 01:25:52 +5153 5153 5154 515.3 1030.6000000000001 5153 1984-02-10 2024-10-11 01:25:53.000 1984-02-10 2024-10-11 01:25:53 +5154 5154 5155 515.4 1030.8 5154 1984-02-11 2024-10-11 01:25:54.000 1984-02-11 2024-10-11 01:25:54 +5156 5156 5157 515.6 1031.2 5156 1984-02-13 2024-10-11 01:25:56.000 1984-02-13 2024-10-11 01:25:56 +5157 5157 5158 515.7 1031.4 5157 1984-02-14 2024-10-11 01:25:57.000 1984-02-14 2024-10-11 01:25:57 +5158 5158 5159 515.8 1031.6000000000001 5158 1984-02-15 2024-10-11 01:25:58.000 1984-02-15 2024-10-11 01:25:58 +5159 5159 5160 515.9 1031.8 5159 1984-02-16 2024-10-11 01:25:59.000 1984-02-16 2024-10-11 01:25:59 +5161 5161 5162 516.1 1032.2 5161 1984-02-18 2024-10-11 01:26:01.000 1984-02-18 2024-10-11 01:26:01 +5162 5162 5163 516.2 1032.4 5162 1984-02-19 2024-10-11 01:26:02.000 1984-02-19 2024-10-11 01:26:02 +5163 5163 5164 516.3 1032.6000000000001 5163 1984-02-20 2024-10-11 01:26:03.000 1984-02-20 2024-10-11 01:26:03 +5164 5164 5165 516.4 1032.8 5164 1984-02-21 2024-10-11 01:26:04.000 1984-02-21 2024-10-11 01:26:04 +5166 5166 5167 516.6 1033.2 5166 1984-02-23 2024-10-11 01:26:06.000 1984-02-23 2024-10-11 01:26:06 +5167 5167 5168 516.7 1033.4 5167 1984-02-24 2024-10-11 01:26:07.000 1984-02-24 2024-10-11 01:26:07 +5168 5168 5169 516.8 1033.6000000000001 5168 1984-02-25 2024-10-11 01:26:08.000 1984-02-25 2024-10-11 01:26:08 +5169 5169 5170 516.9 1033.8 5169 1984-02-26 2024-10-11 01:26:09.000 1984-02-26 2024-10-11 01:26:09 +5171 5171 5172 517.1 1034.2 5171 1984-02-28 2024-10-11 01:26:11.000 1984-02-28 2024-10-11 01:26:11 +5172 5172 5173 517.2 1034.4 5172 1984-02-29 2024-10-11 01:26:12.000 1984-02-29 2024-10-11 01:26:12 +5173 5173 5174 517.3 1034.6000000000001 5173 1984-03-01 2024-10-11 01:26:13.000 1984-03-01 2024-10-11 01:26:13 +5174 5174 5175 517.4 1034.8 5174 1984-03-02 2024-10-11 01:26:14.000 1984-03-02 2024-10-11 01:26:14 +5176 5176 5177 517.6 1035.2 5176 1984-03-04 2024-10-11 01:26:16.000 1984-03-04 2024-10-11 01:26:16 +5177 5177 5178 517.7 1035.4 5177 1984-03-05 2024-10-11 01:26:17.000 1984-03-05 2024-10-11 01:26:17 +5178 5178 5179 517.8 1035.6000000000001 5178 1984-03-06 2024-10-11 01:26:18.000 1984-03-06 2024-10-11 01:26:18 +5179 5179 5180 517.9 1035.8 5179 1984-03-07 2024-10-11 01:26:19.000 1984-03-07 2024-10-11 01:26:19 +5181 5181 5182 518.1 1036.2 5181 1984-03-09 2024-10-11 01:26:21.000 1984-03-09 2024-10-11 01:26:21 +5182 5182 5183 518.2 1036.4 5182 1984-03-10 2024-10-11 01:26:22.000 1984-03-10 2024-10-11 01:26:22 +5183 5183 5184 518.3 1036.6000000000001 5183 1984-03-11 2024-10-11 01:26:23.000 1984-03-11 2024-10-11 01:26:23 +5184 5184 5185 518.4 1036.8 5184 1984-03-12 2024-10-11 01:26:24.000 1984-03-12 2024-10-11 01:26:24 +5186 5186 5187 518.6 1037.2 5186 1984-03-14 2024-10-11 01:26:26.000 1984-03-14 2024-10-11 01:26:26 +5187 5187 5188 518.7 1037.4 5187 1984-03-15 2024-10-11 01:26:27.000 1984-03-15 2024-10-11 01:26:27 +5188 5188 5189 518.8 1037.6000000000001 5188 1984-03-16 2024-10-11 01:26:28.000 1984-03-16 2024-10-11 01:26:28 +5189 5189 5190 518.9 1037.8 5189 1984-03-17 2024-10-11 01:26:29.000 1984-03-17 2024-10-11 01:26:29 +5191 5191 5192 519.1 1038.2 5191 1984-03-19 2024-10-11 01:26:31.000 1984-03-19 2024-10-11 01:26:31 +5192 5192 5193 519.2 1038.4 5192 1984-03-20 2024-10-11 01:26:32.000 1984-03-20 2024-10-11 01:26:32 +5193 5193 5194 519.3 1038.6000000000001 5193 1984-03-21 2024-10-11 01:26:33.000 1984-03-21 2024-10-11 01:26:33 +5194 5194 5195 519.4 1038.8 5194 1984-03-22 2024-10-11 01:26:34.000 1984-03-22 2024-10-11 01:26:34 +5196 5196 5197 519.6 1039.2 5196 1984-03-24 2024-10-11 01:26:36.000 1984-03-24 2024-10-11 01:26:36 +5197 5197 5198 519.7 1039.4 5197 1984-03-25 2024-10-11 01:26:37.000 1984-03-25 2024-10-11 01:26:37 +5198 5198 5199 519.8 1039.6000000000001 5198 1984-03-26 2024-10-11 01:26:38.000 1984-03-26 2024-10-11 01:26:38 +5199 5199 5200 519.9 1039.8 5199 1984-03-27 2024-10-11 01:26:39.000 1984-03-27 2024-10-11 01:26:39 +5201 5201 5202 520.1 1040.2 5201 1984-03-29 2024-10-11 01:26:41.000 1984-03-29 2024-10-11 01:26:41 +5202 5202 5203 520.2 1040.4 5202 1984-03-30 2024-10-11 01:26:42.000 1984-03-30 2024-10-11 01:26:42 +5203 5203 5204 520.3 1040.6000000000001 5203 1984-03-31 2024-10-11 01:26:43.000 1984-03-31 2024-10-11 01:26:43 +5204 5204 5205 520.4 1040.8 5204 1984-04-01 2024-10-11 01:26:44.000 1984-04-01 2024-10-11 01:26:44 +5206 5206 5207 520.6 1041.2 5206 1984-04-03 2024-10-11 01:26:46.000 1984-04-03 2024-10-11 01:26:46 +5207 5207 5208 520.7 1041.4 5207 1984-04-04 2024-10-11 01:26:47.000 1984-04-04 2024-10-11 01:26:47 +5208 5208 5209 520.8 1041.6000000000001 5208 1984-04-05 2024-10-11 01:26:48.000 1984-04-05 2024-10-11 01:26:48 +5209 5209 5210 520.9 1041.8 5209 1984-04-06 2024-10-11 01:26:49.000 1984-04-06 2024-10-11 01:26:49 +5211 5211 5212 521.1 1042.2 5211 1984-04-08 2024-10-11 01:26:51.000 1984-04-08 2024-10-11 01:26:51 +5212 5212 5213 521.2 1042.4 5212 1984-04-09 2024-10-11 01:26:52.000 1984-04-09 2024-10-11 01:26:52 +5213 5213 5214 521.3 1042.6000000000001 5213 1984-04-10 2024-10-11 01:26:53.000 1984-04-10 2024-10-11 01:26:53 +5214 5214 5215 521.4 1042.8 5214 1984-04-11 2024-10-11 01:26:54.000 1984-04-11 2024-10-11 01:26:54 +5216 5216 5217 521.6 1043.2 5216 1984-04-13 2024-10-11 01:26:56.000 1984-04-13 2024-10-11 01:26:56 +5217 5217 5218 521.7 1043.4 5217 1984-04-14 2024-10-11 01:26:57.000 1984-04-14 2024-10-11 01:26:57 +5218 5218 5219 521.8 1043.6000000000001 5218 1984-04-15 2024-10-11 01:26:58.000 1984-04-15 2024-10-11 01:26:58 +5219 5219 5220 521.9 1043.8 5219 1984-04-16 2024-10-11 01:26:59.000 1984-04-16 2024-10-11 01:26:59 +5221 5221 5222 522.1 1044.2 5221 1984-04-18 2024-10-11 01:27:01.000 1984-04-18 2024-10-11 01:27:01 +5222 5222 5223 522.2 1044.4 5222 1984-04-19 2024-10-11 01:27:02.000 1984-04-19 2024-10-11 01:27:02 +5223 5223 5224 522.3 1044.6000000000001 5223 1984-04-20 2024-10-11 01:27:03.000 1984-04-20 2024-10-11 01:27:03 +5224 5224 5225 522.4 1044.8 5224 1984-04-21 2024-10-11 01:27:04.000 1984-04-21 2024-10-11 01:27:04 +5226 5226 5227 522.6 1045.2 5226 1984-04-23 2024-10-11 01:27:06.000 1984-04-23 2024-10-11 01:27:06 +5227 5227 5228 522.7 1045.4 5227 1984-04-24 2024-10-11 01:27:07.000 1984-04-24 2024-10-11 01:27:07 +5228 5228 5229 522.8 1045.6000000000001 5228 1984-04-25 2024-10-11 01:27:08.000 1984-04-25 2024-10-11 01:27:08 +5229 5229 5230 522.9 1045.8 5229 1984-04-26 2024-10-11 01:27:09.000 1984-04-26 2024-10-11 01:27:09 +5231 5231 5232 523.1 1046.2 5231 1984-04-28 2024-10-11 01:27:11.000 1984-04-28 2024-10-11 01:27:11 +5232 5232 5233 523.2 1046.4 5232 1984-04-29 2024-10-11 01:27:12.000 1984-04-29 2024-10-11 01:27:12 +5233 5233 5234 523.3 1046.6000000000001 5233 1984-04-30 2024-10-11 01:27:13.000 1984-04-30 2024-10-11 01:27:13 +5234 5234 5235 523.4 1046.8 5234 1984-05-01 2024-10-11 01:27:14.000 1984-05-01 2024-10-11 01:27:14 +5236 5236 5237 523.6 1047.2 5236 1984-05-03 2024-10-11 01:27:16.000 1984-05-03 2024-10-11 01:27:16 +5237 5237 5238 523.7 1047.4 5237 1984-05-04 2024-10-11 01:27:17.000 1984-05-04 2024-10-11 01:27:17 +5238 5238 5239 523.8 1047.6000000000001 5238 1984-05-05 2024-10-11 01:27:18.000 1984-05-05 2024-10-11 01:27:18 +5239 5239 5240 523.9 1047.8 5239 1984-05-06 2024-10-11 01:27:19.000 1984-05-06 2024-10-11 01:27:19 +5241 5241 5242 524.1 1048.2 5241 1984-05-08 2024-10-11 01:27:21.000 1984-05-08 2024-10-11 01:27:21 +5242 5242 5243 524.2 1048.4 5242 1984-05-09 2024-10-11 01:27:22.000 1984-05-09 2024-10-11 01:27:22 +5243 5243 5244 524.3 1048.6000000000001 5243 1984-05-10 2024-10-11 01:27:23.000 1984-05-10 2024-10-11 01:27:23 +5244 5244 5245 524.4 1048.8 5244 1984-05-11 2024-10-11 01:27:24.000 1984-05-11 2024-10-11 01:27:24 +5246 5246 5247 524.6 1049.2 5246 1984-05-13 2024-10-11 01:27:26.000 1984-05-13 2024-10-11 01:27:26 +5247 5247 5248 524.7 1049.4 5247 1984-05-14 2024-10-11 01:27:27.000 1984-05-14 2024-10-11 01:27:27 +5248 5248 5249 524.8 1049.6000000000001 5248 1984-05-15 2024-10-11 01:27:28.000 1984-05-15 2024-10-11 01:27:28 +5249 5249 5250 524.9 1049.8 5249 1984-05-16 2024-10-11 01:27:29.000 1984-05-16 2024-10-11 01:27:29 +5251 5251 5252 525.1 1050.2 5251 1984-05-18 2024-10-11 01:27:31.000 1984-05-18 2024-10-11 01:27:31 +5252 5252 5253 525.2 1050.4 5252 1984-05-19 2024-10-11 01:27:32.000 1984-05-19 2024-10-11 01:27:32 +5253 5253 5254 525.3 1050.6000000000001 5253 1984-05-20 2024-10-11 01:27:33.000 1984-05-20 2024-10-11 01:27:33 +5254 5254 5255 525.4 1050.8 5254 1984-05-21 2024-10-11 01:27:34.000 1984-05-21 2024-10-11 01:27:34 +5256 5256 5257 525.6 1051.2 5256 1984-05-23 2024-10-11 01:27:36.000 1984-05-23 2024-10-11 01:27:36 +5257 5257 5258 525.7 1051.4 5257 1984-05-24 2024-10-11 01:27:37.000 1984-05-24 2024-10-11 01:27:37 +5258 5258 5259 525.8 1051.6000000000001 5258 1984-05-25 2024-10-11 01:27:38.000 1984-05-25 2024-10-11 01:27:38 +5259 5259 5260 525.9 1051.8 5259 1984-05-26 2024-10-11 01:27:39.000 1984-05-26 2024-10-11 01:27:39 +5261 5261 5262 526.1 1052.2 5261 1984-05-28 2024-10-11 01:27:41.000 1984-05-28 2024-10-11 01:27:41 +5262 5262 5263 526.2 1052.4 5262 1984-05-29 2024-10-11 01:27:42.000 1984-05-29 2024-10-11 01:27:42 +5263 5263 5264 526.3 1052.6000000000001 5263 1984-05-30 2024-10-11 01:27:43.000 1984-05-30 2024-10-11 01:27:43 +5264 5264 5265 526.4 1052.8 5264 1984-05-31 2024-10-11 01:27:44.000 1984-05-31 2024-10-11 01:27:44 +5266 5266 5267 526.6 1053.2 5266 1984-06-02 2024-10-11 01:27:46.000 1984-06-02 2024-10-11 01:27:46 +5267 5267 5268 526.7 1053.4 5267 1984-06-03 2024-10-11 01:27:47.000 1984-06-03 2024-10-11 01:27:47 +5268 5268 5269 526.8 1053.6000000000001 5268 1984-06-04 2024-10-11 01:27:48.000 1984-06-04 2024-10-11 01:27:48 +5269 5269 5270 526.9 1053.8 5269 1984-06-05 2024-10-11 01:27:49.000 1984-06-05 2024-10-11 01:27:49 +5271 5271 5272 527.1 1054.2 5271 1984-06-07 2024-10-11 01:27:51.000 1984-06-07 2024-10-11 01:27:51 +5272 5272 5273 527.2 1054.4 5272 1984-06-08 2024-10-11 01:27:52.000 1984-06-08 2024-10-11 01:27:52 +5273 5273 5274 527.3 1054.6000000000001 5273 1984-06-09 2024-10-11 01:27:53.000 1984-06-09 2024-10-11 01:27:53 +5274 5274 5275 527.4 1054.8 5274 1984-06-10 2024-10-11 01:27:54.000 1984-06-10 2024-10-11 01:27:54 +5276 5276 5277 527.6 1055.2 5276 1984-06-12 2024-10-11 01:27:56.000 1984-06-12 2024-10-11 01:27:56 +5277 5277 5278 527.7 1055.4 5277 1984-06-13 2024-10-11 01:27:57.000 1984-06-13 2024-10-11 01:27:57 +5278 5278 5279 527.8 1055.6000000000001 5278 1984-06-14 2024-10-11 01:27:58.000 1984-06-14 2024-10-11 01:27:58 +5279 5279 5280 527.9 1055.8 5279 1984-06-15 2024-10-11 01:27:59.000 1984-06-15 2024-10-11 01:27:59 +5281 5281 5282 528.1 1056.2 5281 1984-06-17 2024-10-11 01:28:01.000 1984-06-17 2024-10-11 01:28:01 +5282 5282 5283 528.2 1056.4 5282 1984-06-18 2024-10-11 01:28:02.000 1984-06-18 2024-10-11 01:28:02 +5283 5283 5284 528.3 1056.6000000000001 5283 1984-06-19 2024-10-11 01:28:03.000 1984-06-19 2024-10-11 01:28:03 +5284 5284 5285 528.4 1056.8 5284 1984-06-20 2024-10-11 01:28:04.000 1984-06-20 2024-10-11 01:28:04 +5286 5286 5287 528.6 1057.2 5286 1984-06-22 2024-10-11 01:28:06.000 1984-06-22 2024-10-11 01:28:06 +5287 5287 5288 528.7 1057.4 5287 1984-06-23 2024-10-11 01:28:07.000 1984-06-23 2024-10-11 01:28:07 +5288 5288 5289 528.8 1057.6000000000001 5288 1984-06-24 2024-10-11 01:28:08.000 1984-06-24 2024-10-11 01:28:08 +5289 5289 5290 528.9 1057.8 5289 1984-06-25 2024-10-11 01:28:09.000 1984-06-25 2024-10-11 01:28:09 +5291 5291 5292 529.1 1058.2 5291 1984-06-27 2024-10-11 01:28:11.000 1984-06-27 2024-10-11 01:28:11 +5292 5292 5293 529.2 1058.4 5292 1984-06-28 2024-10-11 01:28:12.000 1984-06-28 2024-10-11 01:28:12 +5293 5293 5294 529.3 1058.6000000000001 5293 1984-06-29 2024-10-11 01:28:13.000 1984-06-29 2024-10-11 01:28:13 +5294 5294 5295 529.4 1058.8 5294 1984-06-30 2024-10-11 01:28:14.000 1984-06-30 2024-10-11 01:28:14 +5296 5296 5297 529.6 1059.2 5296 1984-07-02 2024-10-11 01:28:16.000 1984-07-02 2024-10-11 01:28:16 +5297 5297 5298 529.7 1059.4 5297 1984-07-03 2024-10-11 01:28:17.000 1984-07-03 2024-10-11 01:28:17 +5298 5298 5299 529.8 1059.6000000000001 5298 1984-07-04 2024-10-11 01:28:18.000 1984-07-04 2024-10-11 01:28:18 +5299 5299 5300 529.9 1059.8 5299 1984-07-05 2024-10-11 01:28:19.000 1984-07-05 2024-10-11 01:28:19 +5301 5301 5302 530.1 1060.2 5301 1984-07-07 2024-10-11 01:28:21.000 1984-07-07 2024-10-11 01:28:21 +5302 5302 5303 530.2 1060.4 5302 1984-07-08 2024-10-11 01:28:22.000 1984-07-08 2024-10-11 01:28:22 +5303 5303 5304 530.3 1060.6000000000001 5303 1984-07-09 2024-10-11 01:28:23.000 1984-07-09 2024-10-11 01:28:23 +5304 5304 5305 530.4 1060.8 5304 1984-07-10 2024-10-11 01:28:24.000 1984-07-10 2024-10-11 01:28:24 +5306 5306 5307 530.6 1061.2 5306 1984-07-12 2024-10-11 01:28:26.000 1984-07-12 2024-10-11 01:28:26 +5307 5307 5308 530.7 1061.4 5307 1984-07-13 2024-10-11 01:28:27.000 1984-07-13 2024-10-11 01:28:27 +5308 5308 5309 530.8 1061.6000000000001 5308 1984-07-14 2024-10-11 01:28:28.000 1984-07-14 2024-10-11 01:28:28 +5309 5309 5310 530.9 1061.8 5309 1984-07-15 2024-10-11 01:28:29.000 1984-07-15 2024-10-11 01:28:29 +5311 5311 5312 531.1 1062.2 5311 1984-07-17 2024-10-11 01:28:31.000 1984-07-17 2024-10-11 01:28:31 +5312 5312 5313 531.2 1062.4 5312 1984-07-18 2024-10-11 01:28:32.000 1984-07-18 2024-10-11 01:28:32 +5313 5313 5314 531.3 1062.6000000000001 5313 1984-07-19 2024-10-11 01:28:33.000 1984-07-19 2024-10-11 01:28:33 +5314 5314 5315 531.4 1062.8 5314 1984-07-20 2024-10-11 01:28:34.000 1984-07-20 2024-10-11 01:28:34 +5316 5316 5317 531.6 1063.2 5316 1984-07-22 2024-10-11 01:28:36.000 1984-07-22 2024-10-11 01:28:36 +5317 5317 5318 531.7 1063.4 5317 1984-07-23 2024-10-11 01:28:37.000 1984-07-23 2024-10-11 01:28:37 +5318 5318 5319 531.8 1063.6000000000001 5318 1984-07-24 2024-10-11 01:28:38.000 1984-07-24 2024-10-11 01:28:38 +5319 5319 5320 531.9 1063.8 5319 1984-07-25 2024-10-11 01:28:39.000 1984-07-25 2024-10-11 01:28:39 +5321 5321 5322 532.1 1064.2 5321 1984-07-27 2024-10-11 01:28:41.000 1984-07-27 2024-10-11 01:28:41 +5322 5322 5323 532.2 1064.4 5322 1984-07-28 2024-10-11 01:28:42.000 1984-07-28 2024-10-11 01:28:42 +5323 5323 5324 532.3 1064.6000000000001 5323 1984-07-29 2024-10-11 01:28:43.000 1984-07-29 2024-10-11 01:28:43 +5324 5324 5325 532.4 1064.8 5324 1984-07-30 2024-10-11 01:28:44.000 1984-07-30 2024-10-11 01:28:44 +5326 5326 5327 532.6 1065.2 5326 1984-08-01 2024-10-11 01:28:46.000 1984-08-01 2024-10-11 01:28:46 +5327 5327 5328 532.7 1065.4 5327 1984-08-02 2024-10-11 01:28:47.000 1984-08-02 2024-10-11 01:28:47 +5328 5328 5329 532.8 1065.6000000000001 5328 1984-08-03 2024-10-11 01:28:48.000 1984-08-03 2024-10-11 01:28:48 +5329 5329 5330 532.9 1065.8 5329 1984-08-04 2024-10-11 01:28:49.000 1984-08-04 2024-10-11 01:28:49 +5331 5331 5332 533.1 1066.2 5331 1984-08-06 2024-10-11 01:28:51.000 1984-08-06 2024-10-11 01:28:51 +5332 5332 5333 533.2 1066.4 5332 1984-08-07 2024-10-11 01:28:52.000 1984-08-07 2024-10-11 01:28:52 +5333 5333 5334 533.3 1066.6000000000001 5333 1984-08-08 2024-10-11 01:28:53.000 1984-08-08 2024-10-11 01:28:53 +5334 5334 5335 533.4 1066.8 5334 1984-08-09 2024-10-11 01:28:54.000 1984-08-09 2024-10-11 01:28:54 +5336 5336 5337 533.6 1067.2 5336 1984-08-11 2024-10-11 01:28:56.000 1984-08-11 2024-10-11 01:28:56 +5337 5337 5338 533.7 1067.4 5337 1984-08-12 2024-10-11 01:28:57.000 1984-08-12 2024-10-11 01:28:57 +5338 5338 5339 533.8 1067.6000000000001 5338 1984-08-13 2024-10-11 01:28:58.000 1984-08-13 2024-10-11 01:28:58 +5339 5339 5340 533.9 1067.8 5339 1984-08-14 2024-10-11 01:28:59.000 1984-08-14 2024-10-11 01:28:59 +5341 5341 5342 534.1 1068.2 5341 1984-08-16 2024-10-11 01:29:01.000 1984-08-16 2024-10-11 01:29:01 +5342 5342 5343 534.2 1068.4 5342 1984-08-17 2024-10-11 01:29:02.000 1984-08-17 2024-10-11 01:29:02 +5343 5343 5344 534.3 1068.6000000000001 5343 1984-08-18 2024-10-11 01:29:03.000 1984-08-18 2024-10-11 01:29:03 +5344 5344 5345 534.4 1068.8 5344 1984-08-19 2024-10-11 01:29:04.000 1984-08-19 2024-10-11 01:29:04 +5346 5346 5347 534.6 1069.2 5346 1984-08-21 2024-10-11 01:29:06.000 1984-08-21 2024-10-11 01:29:06 +5347 5347 5348 534.7 1069.4 5347 1984-08-22 2024-10-11 01:29:07.000 1984-08-22 2024-10-11 01:29:07 +5348 5348 5349 534.8 1069.6000000000001 5348 1984-08-23 2024-10-11 01:29:08.000 1984-08-23 2024-10-11 01:29:08 +5349 5349 5350 534.9 1069.8 5349 1984-08-24 2024-10-11 01:29:09.000 1984-08-24 2024-10-11 01:29:09 +5351 5351 5352 535.1 1070.2 5351 1984-08-26 2024-10-11 01:29:11.000 1984-08-26 2024-10-11 01:29:11 +5352 5352 5353 535.2 1070.4 5352 1984-08-27 2024-10-11 01:29:12.000 1984-08-27 2024-10-11 01:29:12 +5353 5353 5354 535.3 1070.6000000000001 5353 1984-08-28 2024-10-11 01:29:13.000 1984-08-28 2024-10-11 01:29:13 +5354 5354 5355 535.4 1070.8 5354 1984-08-29 2024-10-11 01:29:14.000 1984-08-29 2024-10-11 01:29:14 +5356 5356 5357 535.6 1071.2 5356 1984-08-31 2024-10-11 01:29:16.000 1984-08-31 2024-10-11 01:29:16 +5357 5357 5358 535.7 1071.4 5357 1984-09-01 2024-10-11 01:29:17.000 1984-09-01 2024-10-11 01:29:17 +5358 5358 5359 535.8 1071.6000000000001 5358 1984-09-02 2024-10-11 01:29:18.000 1984-09-02 2024-10-11 01:29:18 +5359 5359 5360 535.9 1071.8 5359 1984-09-03 2024-10-11 01:29:19.000 1984-09-03 2024-10-11 01:29:19 +5361 5361 5362 536.1 1072.2 5361 1984-09-05 2024-10-11 01:29:21.000 1984-09-05 2024-10-11 01:29:21 +5362 5362 5363 536.2 1072.4 5362 1984-09-06 2024-10-11 01:29:22.000 1984-09-06 2024-10-11 01:29:22 +5363 5363 5364 536.3 1072.6000000000001 5363 1984-09-07 2024-10-11 01:29:23.000 1984-09-07 2024-10-11 01:29:23 +5364 5364 5365 536.4 1072.8 5364 1984-09-08 2024-10-11 01:29:24.000 1984-09-08 2024-10-11 01:29:24 +5366 5366 5367 536.6 1073.2 5366 1984-09-10 2024-10-11 01:29:26.000 1984-09-10 2024-10-11 01:29:26 +5367 5367 5368 536.7 1073.4 5367 1984-09-11 2024-10-11 01:29:27.000 1984-09-11 2024-10-11 01:29:27 +5368 5368 5369 536.8 1073.6000000000001 5368 1984-09-12 2024-10-11 01:29:28.000 1984-09-12 2024-10-11 01:29:28 +5369 5369 5370 536.9 1073.8 5369 1984-09-13 2024-10-11 01:29:29.000 1984-09-13 2024-10-11 01:29:29 +5371 5371 5372 537.1 1074.2 5371 1984-09-15 2024-10-11 01:29:31.000 1984-09-15 2024-10-11 01:29:31 +5372 5372 5373 537.2 1074.4 5372 1984-09-16 2024-10-11 01:29:32.000 1984-09-16 2024-10-11 01:29:32 +5373 5373 5374 537.3 1074.6000000000001 5373 1984-09-17 2024-10-11 01:29:33.000 1984-09-17 2024-10-11 01:29:33 +5374 5374 5375 537.4 1074.8 5374 1984-09-18 2024-10-11 01:29:34.000 1984-09-18 2024-10-11 01:29:34 +5376 5376 5377 537.6 1075.2 5376 1984-09-20 2024-10-11 01:29:36.000 1984-09-20 2024-10-11 01:29:36 +5377 5377 5378 537.7 1075.4 5377 1984-09-21 2024-10-11 01:29:37.000 1984-09-21 2024-10-11 01:29:37 +5378 5378 5379 537.8 1075.6000000000001 5378 1984-09-22 2024-10-11 01:29:38.000 1984-09-22 2024-10-11 01:29:38 +5379 5379 5380 537.9 1075.8 5379 1984-09-23 2024-10-11 01:29:39.000 1984-09-23 2024-10-11 01:29:39 +5381 5381 5382 538.1 1076.2 5381 1984-09-25 2024-10-11 01:29:41.000 1984-09-25 2024-10-11 01:29:41 +5382 5382 5383 538.2 1076.4 5382 1984-09-26 2024-10-11 01:29:42.000 1984-09-26 2024-10-11 01:29:42 +5383 5383 5384 538.3 1076.6000000000001 5383 1984-09-27 2024-10-11 01:29:43.000 1984-09-27 2024-10-11 01:29:43 +5384 5384 5385 538.4 1076.8 5384 1984-09-28 2024-10-11 01:29:44.000 1984-09-28 2024-10-11 01:29:44 +5386 5386 5387 538.6 1077.2 5386 1984-09-30 2024-10-11 01:29:46.000 1984-09-30 2024-10-11 01:29:46 +5387 5387 5388 538.7 1077.4 5387 1984-10-01 2024-10-11 01:29:47.000 1984-10-01 2024-10-11 01:29:47 +5388 5388 5389 538.8 1077.6000000000001 5388 1984-10-02 2024-10-11 01:29:48.000 1984-10-02 2024-10-11 01:29:48 +5389 5389 5390 538.9 1077.8 5389 1984-10-03 2024-10-11 01:29:49.000 1984-10-03 2024-10-11 01:29:49 +5391 5391 5392 539.1 1078.2 5391 1984-10-05 2024-10-11 01:29:51.000 1984-10-05 2024-10-11 01:29:51 +5392 5392 5393 539.2 1078.4 5392 1984-10-06 2024-10-11 01:29:52.000 1984-10-06 2024-10-11 01:29:52 +5393 5393 5394 539.3 1078.6000000000001 5393 1984-10-07 2024-10-11 01:29:53.000 1984-10-07 2024-10-11 01:29:53 +5394 5394 5395 539.4 1078.8 5394 1984-10-08 2024-10-11 01:29:54.000 1984-10-08 2024-10-11 01:29:54 +5396 5396 5397 539.6 1079.2 5396 1984-10-10 2024-10-11 01:29:56.000 1984-10-10 2024-10-11 01:29:56 +5397 5397 5398 539.7 1079.4 5397 1984-10-11 2024-10-11 01:29:57.000 1984-10-11 2024-10-11 01:29:57 +5398 5398 5399 539.8 1079.6000000000001 5398 1984-10-12 2024-10-11 01:29:58.000 1984-10-12 2024-10-11 01:29:58 +5399 5399 5400 539.9 1079.8 5399 1984-10-13 2024-10-11 01:29:59.000 1984-10-13 2024-10-11 01:29:59 +5401 5401 5402 540.1 1080.2 5401 1984-10-15 2024-10-11 01:30:01.000 1984-10-15 2024-10-11 01:30:01 +5402 5402 5403 540.2 1080.4 5402 1984-10-16 2024-10-11 01:30:02.000 1984-10-16 2024-10-11 01:30:02 +5403 5403 5404 540.3 1080.6000000000001 5403 1984-10-17 2024-10-11 01:30:03.000 1984-10-17 2024-10-11 01:30:03 +5404 5404 5405 540.4 1080.8 5404 1984-10-18 2024-10-11 01:30:04.000 1984-10-18 2024-10-11 01:30:04 +5406 5406 5407 540.6 1081.2 5406 1984-10-20 2024-10-11 01:30:06.000 1984-10-20 2024-10-11 01:30:06 +5407 5407 5408 540.7 1081.4 5407 1984-10-21 2024-10-11 01:30:07.000 1984-10-21 2024-10-11 01:30:07 +5408 5408 5409 540.8 1081.6000000000001 5408 1984-10-22 2024-10-11 01:30:08.000 1984-10-22 2024-10-11 01:30:08 +5409 5409 5410 540.9 1081.8 5409 1984-10-23 2024-10-11 01:30:09.000 1984-10-23 2024-10-11 01:30:09 +5411 5411 5412 541.1 1082.2 5411 1984-10-25 2024-10-11 01:30:11.000 1984-10-25 2024-10-11 01:30:11 +5412 5412 5413 541.2 1082.4 5412 1984-10-26 2024-10-11 01:30:12.000 1984-10-26 2024-10-11 01:30:12 +5413 5413 5414 541.3 1082.6000000000001 5413 1984-10-27 2024-10-11 01:30:13.000 1984-10-27 2024-10-11 01:30:13 +5414 5414 5415 541.4 1082.8 5414 1984-10-28 2024-10-11 01:30:14.000 1984-10-28 2024-10-11 01:30:14 +5416 5416 5417 541.6 1083.2 5416 1984-10-30 2024-10-11 01:30:16.000 1984-10-30 2024-10-11 01:30:16 +5417 5417 5418 541.7 1083.4 5417 1984-10-31 2024-10-11 01:30:17.000 1984-10-31 2024-10-11 01:30:17 +5418 5418 5419 541.8 1083.6000000000001 5418 1984-11-01 2024-10-11 01:30:18.000 1984-11-01 2024-10-11 01:30:18 +5419 5419 5420 541.9 1083.8 5419 1984-11-02 2024-10-11 01:30:19.000 1984-11-02 2024-10-11 01:30:19 +5421 5421 5422 542.1 1084.2 5421 1984-11-04 2024-10-11 01:30:21.000 1984-11-04 2024-10-11 01:30:21 +5422 5422 5423 542.2 1084.4 5422 1984-11-05 2024-10-11 01:30:22.000 1984-11-05 2024-10-11 01:30:22 +5423 5423 5424 542.3 1084.6000000000001 5423 1984-11-06 2024-10-11 01:30:23.000 1984-11-06 2024-10-11 01:30:23 +5424 5424 5425 542.4 1084.8 5424 1984-11-07 2024-10-11 01:30:24.000 1984-11-07 2024-10-11 01:30:24 +5426 5426 5427 542.6 1085.2 5426 1984-11-09 2024-10-11 01:30:26.000 1984-11-09 2024-10-11 01:30:26 +5427 5427 5428 542.7 1085.4 5427 1984-11-10 2024-10-11 01:30:27.000 1984-11-10 2024-10-11 01:30:27 +5428 5428 5429 542.8 1085.6000000000001 5428 1984-11-11 2024-10-11 01:30:28.000 1984-11-11 2024-10-11 01:30:28 +5429 5429 5430 542.9 1085.8 5429 1984-11-12 2024-10-11 01:30:29.000 1984-11-12 2024-10-11 01:30:29 +5431 5431 5432 543.1 1086.2 5431 1984-11-14 2024-10-11 01:30:31.000 1984-11-14 2024-10-11 01:30:31 +5432 5432 5433 543.2 1086.4 5432 1984-11-15 2024-10-11 01:30:32.000 1984-11-15 2024-10-11 01:30:32 +5433 5433 5434 543.3 1086.6000000000001 5433 1984-11-16 2024-10-11 01:30:33.000 1984-11-16 2024-10-11 01:30:33 +5434 5434 5435 543.4 1086.8 5434 1984-11-17 2024-10-11 01:30:34.000 1984-11-17 2024-10-11 01:30:34 +5436 5436 5437 543.6 1087.2 5436 1984-11-19 2024-10-11 01:30:36.000 1984-11-19 2024-10-11 01:30:36 +5437 5437 5438 543.7 1087.4 5437 1984-11-20 2024-10-11 01:30:37.000 1984-11-20 2024-10-11 01:30:37 +5438 5438 5439 543.8 1087.6000000000001 5438 1984-11-21 2024-10-11 01:30:38.000 1984-11-21 2024-10-11 01:30:38 +5439 5439 5440 543.9 1087.8 5439 1984-11-22 2024-10-11 01:30:39.000 1984-11-22 2024-10-11 01:30:39 +5441 5441 5442 544.1 1088.2 5441 1984-11-24 2024-10-11 01:30:41.000 1984-11-24 2024-10-11 01:30:41 +5442 5442 5443 544.2 1088.4 5442 1984-11-25 2024-10-11 01:30:42.000 1984-11-25 2024-10-11 01:30:42 +5443 5443 5444 544.3 1088.6000000000001 5443 1984-11-26 2024-10-11 01:30:43.000 1984-11-26 2024-10-11 01:30:43 +5444 5444 5445 544.4 1088.8 5444 1984-11-27 2024-10-11 01:30:44.000 1984-11-27 2024-10-11 01:30:44 +5446 5446 5447 544.6 1089.2 5446 1984-11-29 2024-10-11 01:30:46.000 1984-11-29 2024-10-11 01:30:46 +5447 5447 5448 544.7 1089.4 5447 1984-11-30 2024-10-11 01:30:47.000 1984-11-30 2024-10-11 01:30:47 +5448 5448 5449 544.8 1089.6000000000001 5448 1984-12-01 2024-10-11 01:30:48.000 1984-12-01 2024-10-11 01:30:48 +5449 5449 5450 544.9 1089.8 5449 1984-12-02 2024-10-11 01:30:49.000 1984-12-02 2024-10-11 01:30:49 +5451 5451 5452 545.1 1090.2 5451 1984-12-04 2024-10-11 01:30:51.000 1984-12-04 2024-10-11 01:30:51 +5452 5452 5453 545.2 1090.4 5452 1984-12-05 2024-10-11 01:30:52.000 1984-12-05 2024-10-11 01:30:52 +5453 5453 5454 545.3 1090.6000000000001 5453 1984-12-06 2024-10-11 01:30:53.000 1984-12-06 2024-10-11 01:30:53 +5454 5454 5455 545.4 1090.8 5454 1984-12-07 2024-10-11 01:30:54.000 1984-12-07 2024-10-11 01:30:54 +5456 5456 5457 545.6 1091.2 5456 1984-12-09 2024-10-11 01:30:56.000 1984-12-09 2024-10-11 01:30:56 +5457 5457 5458 545.7 1091.4 5457 1984-12-10 2024-10-11 01:30:57.000 1984-12-10 2024-10-11 01:30:57 +5458 5458 5459 545.8 1091.6000000000001 5458 1984-12-11 2024-10-11 01:30:58.000 1984-12-11 2024-10-11 01:30:58 +5459 5459 5460 545.9 1091.8 5459 1984-12-12 2024-10-11 01:30:59.000 1984-12-12 2024-10-11 01:30:59 +5461 5461 5462 546.1 1092.2 5461 1984-12-14 2024-10-11 01:31:01.000 1984-12-14 2024-10-11 01:31:01 +5462 5462 5463 546.2 1092.4 5462 1984-12-15 2024-10-11 01:31:02.000 1984-12-15 2024-10-11 01:31:02 +5463 5463 5464 546.3 1092.6000000000001 5463 1984-12-16 2024-10-11 01:31:03.000 1984-12-16 2024-10-11 01:31:03 +5464 5464 5465 546.4 1092.8 5464 1984-12-17 2024-10-11 01:31:04.000 1984-12-17 2024-10-11 01:31:04 +5466 5466 5467 546.6 1093.2 5466 1984-12-19 2024-10-11 01:31:06.000 1984-12-19 2024-10-11 01:31:06 +5467 5467 5468 546.7 1093.4 5467 1984-12-20 2024-10-11 01:31:07.000 1984-12-20 2024-10-11 01:31:07 +5468 5468 5469 546.8 1093.6000000000001 5468 1984-12-21 2024-10-11 01:31:08.000 1984-12-21 2024-10-11 01:31:08 +5469 5469 5470 546.9 1093.8 5469 1984-12-22 2024-10-11 01:31:09.000 1984-12-22 2024-10-11 01:31:09 +5471 5471 5472 547.1 1094.2 5471 1984-12-24 2024-10-11 01:31:11.000 1984-12-24 2024-10-11 01:31:11 +5472 5472 5473 547.2 1094.4 5472 1984-12-25 2024-10-11 01:31:12.000 1984-12-25 2024-10-11 01:31:12 +5473 5473 5474 547.3 1094.6000000000001 5473 1984-12-26 2024-10-11 01:31:13.000 1984-12-26 2024-10-11 01:31:13 +5474 5474 5475 547.4 1094.8 5474 1984-12-27 2024-10-11 01:31:14.000 1984-12-27 2024-10-11 01:31:14 +5476 5476 5477 547.6 1095.2 5476 1984-12-29 2024-10-11 01:31:16.000 1984-12-29 2024-10-11 01:31:16 +5477 5477 5478 547.7 1095.4 5477 1984-12-30 2024-10-11 01:31:17.000 1984-12-30 2024-10-11 01:31:17 +5478 5478 5479 547.8 1095.6000000000001 5478 1984-12-31 2024-10-11 01:31:18.000 1984-12-31 2024-10-11 01:31:18 +5479 5479 5480 547.9 1095.8 5479 1985-01-01 2024-10-11 01:31:19.000 1985-01-01 2024-10-11 01:31:19 +5481 5481 5482 548.1 1096.2 5481 1985-01-03 2024-10-11 01:31:21.000 1985-01-03 2024-10-11 01:31:21 +5482 5482 5483 548.2 1096.4 5482 1985-01-04 2024-10-11 01:31:22.000 1985-01-04 2024-10-11 01:31:22 +5483 5483 5484 548.3 1096.6000000000001 5483 1985-01-05 2024-10-11 01:31:23.000 1985-01-05 2024-10-11 01:31:23 +5484 5484 5485 548.4 1096.8 5484 1985-01-06 2024-10-11 01:31:24.000 1985-01-06 2024-10-11 01:31:24 +5486 5486 5487 548.6 1097.2 5486 1985-01-08 2024-10-11 01:31:26.000 1985-01-08 2024-10-11 01:31:26 +5487 5487 5488 548.7 1097.4 5487 1985-01-09 2024-10-11 01:31:27.000 1985-01-09 2024-10-11 01:31:27 +5488 5488 5489 548.8 1097.6000000000001 5488 1985-01-10 2024-10-11 01:31:28.000 1985-01-10 2024-10-11 01:31:28 +5489 5489 5490 548.9 1097.8 5489 1985-01-11 2024-10-11 01:31:29.000 1985-01-11 2024-10-11 01:31:29 +5491 5491 5492 549.1 1098.2 5491 1985-01-13 2024-10-11 01:31:31.000 1985-01-13 2024-10-11 01:31:31 +5492 5492 5493 549.2 1098.4 5492 1985-01-14 2024-10-11 01:31:32.000 1985-01-14 2024-10-11 01:31:32 +5493 5493 5494 549.3 1098.6000000000001 5493 1985-01-15 2024-10-11 01:31:33.000 1985-01-15 2024-10-11 01:31:33 +5494 5494 5495 549.4 1098.8 5494 1985-01-16 2024-10-11 01:31:34.000 1985-01-16 2024-10-11 01:31:34 +5496 5496 5497 549.6 1099.2 5496 1985-01-18 2024-10-11 01:31:36.000 1985-01-18 2024-10-11 01:31:36 +5497 5497 5498 549.7 1099.4 5497 1985-01-19 2024-10-11 01:31:37.000 1985-01-19 2024-10-11 01:31:37 +5498 5498 5499 549.8 1099.6000000000001 5498 1985-01-20 2024-10-11 01:31:38.000 1985-01-20 2024-10-11 01:31:38 +5499 5499 5500 549.9 1099.8 5499 1985-01-21 2024-10-11 01:31:39.000 1985-01-21 2024-10-11 01:31:39 +5501 5501 5502 550.1 1100.2 5501 1985-01-23 2024-10-11 01:31:41.000 1985-01-23 2024-10-11 01:31:41 +5502 5502 5503 550.2 1100.4 5502 1985-01-24 2024-10-11 01:31:42.000 1985-01-24 2024-10-11 01:31:42 +5503 5503 5504 550.3 1100.6000000000001 5503 1985-01-25 2024-10-11 01:31:43.000 1985-01-25 2024-10-11 01:31:43 +5504 5504 5505 550.4 1100.8 5504 1985-01-26 2024-10-11 01:31:44.000 1985-01-26 2024-10-11 01:31:44 +5506 5506 5507 550.6 1101.2 5506 1985-01-28 2024-10-11 01:31:46.000 1985-01-28 2024-10-11 01:31:46 +5507 5507 5508 550.7 1101.4 5507 1985-01-29 2024-10-11 01:31:47.000 1985-01-29 2024-10-11 01:31:47 +5508 5508 5509 550.8 1101.6000000000001 5508 1985-01-30 2024-10-11 01:31:48.000 1985-01-30 2024-10-11 01:31:48 +5509 5509 5510 550.9 1101.8 5509 1985-01-31 2024-10-11 01:31:49.000 1985-01-31 2024-10-11 01:31:49 +5511 5511 5512 551.1 1102.2 5511 1985-02-02 2024-10-11 01:31:51.000 1985-02-02 2024-10-11 01:31:51 +5512 5512 5513 551.2 1102.4 5512 1985-02-03 2024-10-11 01:31:52.000 1985-02-03 2024-10-11 01:31:52 +5513 5513 5514 551.3 1102.6000000000001 5513 1985-02-04 2024-10-11 01:31:53.000 1985-02-04 2024-10-11 01:31:53 +5514 5514 5515 551.4 1102.8 5514 1985-02-05 2024-10-11 01:31:54.000 1985-02-05 2024-10-11 01:31:54 +5516 5516 5517 551.6 1103.2 5516 1985-02-07 2024-10-11 01:31:56.000 1985-02-07 2024-10-11 01:31:56 +5517 5517 5518 551.7 1103.4 5517 1985-02-08 2024-10-11 01:31:57.000 1985-02-08 2024-10-11 01:31:57 +5518 5518 5519 551.8 1103.6000000000001 5518 1985-02-09 2024-10-11 01:31:58.000 1985-02-09 2024-10-11 01:31:58 +5519 5519 5520 551.9 1103.8 5519 1985-02-10 2024-10-11 01:31:59.000 1985-02-10 2024-10-11 01:31:59 +5521 5521 5522 552.1 1104.2 5521 1985-02-12 2024-10-11 01:32:01.000 1985-02-12 2024-10-11 01:32:01 +5522 5522 5523 552.2 1104.4 5522 1985-02-13 2024-10-11 01:32:02.000 1985-02-13 2024-10-11 01:32:02 +5523 5523 5524 552.3 1104.6000000000001 5523 1985-02-14 2024-10-11 01:32:03.000 1985-02-14 2024-10-11 01:32:03 +5524 5524 5525 552.4 1104.8 5524 1985-02-15 2024-10-11 01:32:04.000 1985-02-15 2024-10-11 01:32:04 +5526 5526 5527 552.6 1105.2 5526 1985-02-17 2024-10-11 01:32:06.000 1985-02-17 2024-10-11 01:32:06 +5527 5527 5528 552.7 1105.4 5527 1985-02-18 2024-10-11 01:32:07.000 1985-02-18 2024-10-11 01:32:07 +5528 5528 5529 552.8 1105.6000000000001 5528 1985-02-19 2024-10-11 01:32:08.000 1985-02-19 2024-10-11 01:32:08 +5529 5529 5530 552.9 1105.8 5529 1985-02-20 2024-10-11 01:32:09.000 1985-02-20 2024-10-11 01:32:09 +5531 5531 5532 553.1 1106.2 5531 1985-02-22 2024-10-11 01:32:11.000 1985-02-22 2024-10-11 01:32:11 +5532 5532 5533 553.2 1106.4 5532 1985-02-23 2024-10-11 01:32:12.000 1985-02-23 2024-10-11 01:32:12 +5533 5533 5534 553.3 1106.6000000000001 5533 1985-02-24 2024-10-11 01:32:13.000 1985-02-24 2024-10-11 01:32:13 +5534 5534 5535 553.4 1106.8 5534 1985-02-25 2024-10-11 01:32:14.000 1985-02-25 2024-10-11 01:32:14 +5536 5536 5537 553.6 1107.2 5536 1985-02-27 2024-10-11 01:32:16.000 1985-02-27 2024-10-11 01:32:16 +5537 5537 5538 553.7 1107.4 5537 1985-02-28 2024-10-11 01:32:17.000 1985-02-28 2024-10-11 01:32:17 +5538 5538 5539 553.8 1107.6000000000001 5538 1985-03-01 2024-10-11 01:32:18.000 1985-03-01 2024-10-11 01:32:18 +5539 5539 5540 553.9 1107.8 5539 1985-03-02 2024-10-11 01:32:19.000 1985-03-02 2024-10-11 01:32:19 +5541 5541 5542 554.1 1108.2 5541 1985-03-04 2024-10-11 01:32:21.000 1985-03-04 2024-10-11 01:32:21 +5542 5542 5543 554.2 1108.4 5542 1985-03-05 2024-10-11 01:32:22.000 1985-03-05 2024-10-11 01:32:22 +5543 5543 5544 554.3 1108.6000000000001 5543 1985-03-06 2024-10-11 01:32:23.000 1985-03-06 2024-10-11 01:32:23 +5544 5544 5545 554.4 1108.8 5544 1985-03-07 2024-10-11 01:32:24.000 1985-03-07 2024-10-11 01:32:24 +5546 5546 5547 554.6 1109.2 5546 1985-03-09 2024-10-11 01:32:26.000 1985-03-09 2024-10-11 01:32:26 +5547 5547 5548 554.7 1109.4 5547 1985-03-10 2024-10-11 01:32:27.000 1985-03-10 2024-10-11 01:32:27 +5548 5548 5549 554.8 1109.6000000000001 5548 1985-03-11 2024-10-11 01:32:28.000 1985-03-11 2024-10-11 01:32:28 +5549 5549 5550 554.9 1109.8 5549 1985-03-12 2024-10-11 01:32:29.000 1985-03-12 2024-10-11 01:32:29 +5551 5551 5552 555.1 1110.2 5551 1985-03-14 2024-10-11 01:32:31.000 1985-03-14 2024-10-11 01:32:31 +5552 5552 5553 555.2 1110.4 5552 1985-03-15 2024-10-11 01:32:32.000 1985-03-15 2024-10-11 01:32:32 +5553 5553 5554 555.3 1110.6000000000001 5553 1985-03-16 2024-10-11 01:32:33.000 1985-03-16 2024-10-11 01:32:33 +5554 5554 5555 555.4 1110.8 5554 1985-03-17 2024-10-11 01:32:34.000 1985-03-17 2024-10-11 01:32:34 +5556 5556 5557 555.6 1111.2 5556 1985-03-19 2024-10-11 01:32:36.000 1985-03-19 2024-10-11 01:32:36 +5557 5557 5558 555.7 1111.4 5557 1985-03-20 2024-10-11 01:32:37.000 1985-03-20 2024-10-11 01:32:37 +5558 5558 5559 555.8 1111.6000000000001 5558 1985-03-21 2024-10-11 01:32:38.000 1985-03-21 2024-10-11 01:32:38 +5559 5559 5560 555.9 1111.8 5559 1985-03-22 2024-10-11 01:32:39.000 1985-03-22 2024-10-11 01:32:39 +5561 5561 5562 556.1 1112.2 5561 1985-03-24 2024-10-11 01:32:41.000 1985-03-24 2024-10-11 01:32:41 +5562 5562 5563 556.2 1112.4 5562 1985-03-25 2024-10-11 01:32:42.000 1985-03-25 2024-10-11 01:32:42 +5563 5563 5564 556.3 1112.6000000000001 5563 1985-03-26 2024-10-11 01:32:43.000 1985-03-26 2024-10-11 01:32:43 +5564 5564 5565 556.4 1112.8 5564 1985-03-27 2024-10-11 01:32:44.000 1985-03-27 2024-10-11 01:32:44 +5566 5566 5567 556.6 1113.2 5566 1985-03-29 2024-10-11 01:32:46.000 1985-03-29 2024-10-11 01:32:46 +5567 5567 5568 556.7 1113.4 5567 1985-03-30 2024-10-11 01:32:47.000 1985-03-30 2024-10-11 01:32:47 +5568 5568 5569 556.8 1113.6000000000001 5568 1985-03-31 2024-10-11 01:32:48.000 1985-03-31 2024-10-11 01:32:48 +5569 5569 5570 556.9 1113.8 5569 1985-04-01 2024-10-11 01:32:49.000 1985-04-01 2024-10-11 01:32:49 +5571 5571 5572 557.1 1114.2 5571 1985-04-03 2024-10-11 01:32:51.000 1985-04-03 2024-10-11 01:32:51 +5572 5572 5573 557.2 1114.4 5572 1985-04-04 2024-10-11 01:32:52.000 1985-04-04 2024-10-11 01:32:52 +5573 5573 5574 557.3 1114.6000000000001 5573 1985-04-05 2024-10-11 01:32:53.000 1985-04-05 2024-10-11 01:32:53 +5574 5574 5575 557.4 1114.8 5574 1985-04-06 2024-10-11 01:32:54.000 1985-04-06 2024-10-11 01:32:54 +5576 5576 5577 557.6 1115.2 5576 1985-04-08 2024-10-11 01:32:56.000 1985-04-08 2024-10-11 01:32:56 +5577 5577 5578 557.7 1115.4 5577 1985-04-09 2024-10-11 01:32:57.000 1985-04-09 2024-10-11 01:32:57 +5578 5578 5579 557.8 1115.6000000000001 5578 1985-04-10 2024-10-11 01:32:58.000 1985-04-10 2024-10-11 01:32:58 +5579 5579 5580 557.9 1115.8 5579 1985-04-11 2024-10-11 01:32:59.000 1985-04-11 2024-10-11 01:32:59 +5581 5581 5582 558.1 1116.2 5581 1985-04-13 2024-10-11 01:33:01.000 1985-04-13 2024-10-11 01:33:01 +5582 5582 5583 558.2 1116.4 5582 1985-04-14 2024-10-11 01:33:02.000 1985-04-14 2024-10-11 01:33:02 +5583 5583 5584 558.3 1116.6000000000001 5583 1985-04-15 2024-10-11 01:33:03.000 1985-04-15 2024-10-11 01:33:03 +5584 5584 5585 558.4 1116.8 5584 1985-04-16 2024-10-11 01:33:04.000 1985-04-16 2024-10-11 01:33:04 +5586 5586 5587 558.6 1117.2 5586 1985-04-18 2024-10-11 01:33:06.000 1985-04-18 2024-10-11 01:33:06 +5587 5587 5588 558.7 1117.4 5587 1985-04-19 2024-10-11 01:33:07.000 1985-04-19 2024-10-11 01:33:07 +5588 5588 5589 558.8 1117.6000000000001 5588 1985-04-20 2024-10-11 01:33:08.000 1985-04-20 2024-10-11 01:33:08 +5589 5589 5590 558.9 1117.8 5589 1985-04-21 2024-10-11 01:33:09.000 1985-04-21 2024-10-11 01:33:09 +5591 5591 5592 559.1 1118.2 5591 1985-04-23 2024-10-11 01:33:11.000 1985-04-23 2024-10-11 01:33:11 +5592 5592 5593 559.2 1118.4 5592 1985-04-24 2024-10-11 01:33:12.000 1985-04-24 2024-10-11 01:33:12 +5593 5593 5594 559.3 1118.6000000000001 5593 1985-04-25 2024-10-11 01:33:13.000 1985-04-25 2024-10-11 01:33:13 +5594 5594 5595 559.4 1118.8 5594 1985-04-26 2024-10-11 01:33:14.000 1985-04-26 2024-10-11 01:33:14 +5596 5596 5597 559.6 1119.2 5596 1985-04-28 2024-10-11 01:33:16.000 1985-04-28 2024-10-11 01:33:16 +5597 5597 5598 559.7 1119.4 5597 1985-04-29 2024-10-11 01:33:17.000 1985-04-29 2024-10-11 01:33:17 +5598 5598 5599 559.8 1119.6000000000001 5598 1985-04-30 2024-10-11 01:33:18.000 1985-04-30 2024-10-11 01:33:18 +5599 5599 5600 559.9 1119.8 5599 1985-05-01 2024-10-11 01:33:19.000 1985-05-01 2024-10-11 01:33:19 +5601 5601 5602 560.1 1120.2 5601 1985-05-03 2024-10-11 01:33:21.000 1985-05-03 2024-10-11 01:33:21 +5602 5602 5603 560.2 1120.4 5602 1985-05-04 2024-10-11 01:33:22.000 1985-05-04 2024-10-11 01:33:22 +5603 5603 5604 560.3 1120.6000000000001 5603 1985-05-05 2024-10-11 01:33:23.000 1985-05-05 2024-10-11 01:33:23 +5604 5604 5605 560.4 1120.8 5604 1985-05-06 2024-10-11 01:33:24.000 1985-05-06 2024-10-11 01:33:24 +5606 5606 5607 560.6 1121.2 5606 1985-05-08 2024-10-11 01:33:26.000 1985-05-08 2024-10-11 01:33:26 +5607 5607 5608 560.7 1121.4 5607 1985-05-09 2024-10-11 01:33:27.000 1985-05-09 2024-10-11 01:33:27 +5608 5608 5609 560.8 1121.6000000000001 5608 1985-05-10 2024-10-11 01:33:28.000 1985-05-10 2024-10-11 01:33:28 +5609 5609 5610 560.9 1121.8 5609 1985-05-11 2024-10-11 01:33:29.000 1985-05-11 2024-10-11 01:33:29 +5611 5611 5612 561.1 1122.2 5611 1985-05-13 2024-10-11 01:33:31.000 1985-05-13 2024-10-11 01:33:31 +5612 5612 5613 561.2 1122.4 5612 1985-05-14 2024-10-11 01:33:32.000 1985-05-14 2024-10-11 01:33:32 +5613 5613 5614 561.3 1122.6000000000001 5613 1985-05-15 2024-10-11 01:33:33.000 1985-05-15 2024-10-11 01:33:33 +5614 5614 5615 561.4 1122.8 5614 1985-05-16 2024-10-11 01:33:34.000 1985-05-16 2024-10-11 01:33:34 +5616 5616 5617 561.6 1123.2 5616 1985-05-18 2024-10-11 01:33:36.000 1985-05-18 2024-10-11 01:33:36 +5617 5617 5618 561.7 1123.4 5617 1985-05-19 2024-10-11 01:33:37.000 1985-05-19 2024-10-11 01:33:37 +5618 5618 5619 561.8 1123.6000000000001 5618 1985-05-20 2024-10-11 01:33:38.000 1985-05-20 2024-10-11 01:33:38 +5619 5619 5620 561.9 1123.8 5619 1985-05-21 2024-10-11 01:33:39.000 1985-05-21 2024-10-11 01:33:39 +5621 5621 5622 562.1 1124.2 5621 1985-05-23 2024-10-11 01:33:41.000 1985-05-23 2024-10-11 01:33:41 +5622 5622 5623 562.2 1124.4 5622 1985-05-24 2024-10-11 01:33:42.000 1985-05-24 2024-10-11 01:33:42 +5623 5623 5624 562.3 1124.6000000000001 5623 1985-05-25 2024-10-11 01:33:43.000 1985-05-25 2024-10-11 01:33:43 +5624 5624 5625 562.4 1124.8 5624 1985-05-26 2024-10-11 01:33:44.000 1985-05-26 2024-10-11 01:33:44 +5626 5626 5627 562.6 1125.2 5626 1985-05-28 2024-10-11 01:33:46.000 1985-05-28 2024-10-11 01:33:46 +5627 5627 5628 562.7 1125.4 5627 1985-05-29 2024-10-11 01:33:47.000 1985-05-29 2024-10-11 01:33:47 +5628 5628 5629 562.8 1125.6000000000001 5628 1985-05-30 2024-10-11 01:33:48.000 1985-05-30 2024-10-11 01:33:48 +5629 5629 5630 562.9 1125.8 5629 1985-05-31 2024-10-11 01:33:49.000 1985-05-31 2024-10-11 01:33:49 +5631 5631 5632 563.1 1126.2 5631 1985-06-02 2024-10-11 01:33:51.000 1985-06-02 2024-10-11 01:33:51 +5632 5632 5633 563.2 1126.4 5632 1985-06-03 2024-10-11 01:33:52.000 1985-06-03 2024-10-11 01:33:52 +5633 5633 5634 563.3 1126.6000000000001 5633 1985-06-04 2024-10-11 01:33:53.000 1985-06-04 2024-10-11 01:33:53 +5634 5634 5635 563.4 1126.8 5634 1985-06-05 2024-10-11 01:33:54.000 1985-06-05 2024-10-11 01:33:54 +5636 5636 5637 563.6 1127.2 5636 1985-06-07 2024-10-11 01:33:56.000 1985-06-07 2024-10-11 01:33:56 +5637 5637 5638 563.7 1127.4 5637 1985-06-08 2024-10-11 01:33:57.000 1985-06-08 2024-10-11 01:33:57 +5638 5638 5639 563.8 1127.6000000000001 5638 1985-06-09 2024-10-11 01:33:58.000 1985-06-09 2024-10-11 01:33:58 +5639 5639 5640 563.9 1127.8 5639 1985-06-10 2024-10-11 01:33:59.000 1985-06-10 2024-10-11 01:33:59 +5641 5641 5642 564.1 1128.2 5641 1985-06-12 2024-10-11 01:34:01.000 1985-06-12 2024-10-11 01:34:01 +5642 5642 5643 564.2 1128.4 5642 1985-06-13 2024-10-11 01:34:02.000 1985-06-13 2024-10-11 01:34:02 +5643 5643 5644 564.3 1128.6000000000001 5643 1985-06-14 2024-10-11 01:34:03.000 1985-06-14 2024-10-11 01:34:03 +5644 5644 5645 564.4 1128.8 5644 1985-06-15 2024-10-11 01:34:04.000 1985-06-15 2024-10-11 01:34:04 +5646 5646 5647 564.6 1129.2 5646 1985-06-17 2024-10-11 01:34:06.000 1985-06-17 2024-10-11 01:34:06 +5647 5647 5648 564.7 1129.4 5647 1985-06-18 2024-10-11 01:34:07.000 1985-06-18 2024-10-11 01:34:07 +5648 5648 5649 564.8 1129.6000000000001 5648 1985-06-19 2024-10-11 01:34:08.000 1985-06-19 2024-10-11 01:34:08 +5649 5649 5650 564.9 1129.8 5649 1985-06-20 2024-10-11 01:34:09.000 1985-06-20 2024-10-11 01:34:09 +5651 5651 5652 565.1 1130.2 5651 1985-06-22 2024-10-11 01:34:11.000 1985-06-22 2024-10-11 01:34:11 +5652 5652 5653 565.2 1130.4 5652 1985-06-23 2024-10-11 01:34:12.000 1985-06-23 2024-10-11 01:34:12 +5653 5653 5654 565.3 1130.6000000000001 5653 1985-06-24 2024-10-11 01:34:13.000 1985-06-24 2024-10-11 01:34:13 +5654 5654 5655 565.4 1130.8 5654 1985-06-25 2024-10-11 01:34:14.000 1985-06-25 2024-10-11 01:34:14 +5656 5656 5657 565.6 1131.2 5656 1985-06-27 2024-10-11 01:34:16.000 1985-06-27 2024-10-11 01:34:16 +5657 5657 5658 565.7 1131.4 5657 1985-06-28 2024-10-11 01:34:17.000 1985-06-28 2024-10-11 01:34:17 +5658 5658 5659 565.8 1131.6000000000001 5658 1985-06-29 2024-10-11 01:34:18.000 1985-06-29 2024-10-11 01:34:18 +5659 5659 5660 565.9 1131.8 5659 1985-06-30 2024-10-11 01:34:19.000 1985-06-30 2024-10-11 01:34:19 +5661 5661 5662 566.1 1132.2 5661 1985-07-02 2024-10-11 01:34:21.000 1985-07-02 2024-10-11 01:34:21 +5662 5662 5663 566.2 1132.4 5662 1985-07-03 2024-10-11 01:34:22.000 1985-07-03 2024-10-11 01:34:22 +5663 5663 5664 566.3 1132.6000000000001 5663 1985-07-04 2024-10-11 01:34:23.000 1985-07-04 2024-10-11 01:34:23 +5664 5664 5665 566.4 1132.8 5664 1985-07-05 2024-10-11 01:34:24.000 1985-07-05 2024-10-11 01:34:24 +5666 5666 5667 566.6 1133.2 5666 1985-07-07 2024-10-11 01:34:26.000 1985-07-07 2024-10-11 01:34:26 +5667 5667 5668 566.7 1133.4 5667 1985-07-08 2024-10-11 01:34:27.000 1985-07-08 2024-10-11 01:34:27 +5668 5668 5669 566.8 1133.6000000000001 5668 1985-07-09 2024-10-11 01:34:28.000 1985-07-09 2024-10-11 01:34:28 +5669 5669 5670 566.9 1133.8 5669 1985-07-10 2024-10-11 01:34:29.000 1985-07-10 2024-10-11 01:34:29 +5671 5671 5672 567.1 1134.2 5671 1985-07-12 2024-10-11 01:34:31.000 1985-07-12 2024-10-11 01:34:31 +5672 5672 5673 567.2 1134.4 5672 1985-07-13 2024-10-11 01:34:32.000 1985-07-13 2024-10-11 01:34:32 +5673 5673 5674 567.3 1134.6000000000001 5673 1985-07-14 2024-10-11 01:34:33.000 1985-07-14 2024-10-11 01:34:33 +5674 5674 5675 567.4 1134.8 5674 1985-07-15 2024-10-11 01:34:34.000 1985-07-15 2024-10-11 01:34:34 +5676 5676 5677 567.6 1135.2 5676 1985-07-17 2024-10-11 01:34:36.000 1985-07-17 2024-10-11 01:34:36 +5677 5677 5678 567.7 1135.4 5677 1985-07-18 2024-10-11 01:34:37.000 1985-07-18 2024-10-11 01:34:37 +5678 5678 5679 567.8 1135.6000000000001 5678 1985-07-19 2024-10-11 01:34:38.000 1985-07-19 2024-10-11 01:34:38 +5679 5679 5680 567.9 1135.8 5679 1985-07-20 2024-10-11 01:34:39.000 1985-07-20 2024-10-11 01:34:39 +5681 5681 5682 568.1 1136.2 5681 1985-07-22 2024-10-11 01:34:41.000 1985-07-22 2024-10-11 01:34:41 +5682 5682 5683 568.2 1136.4 5682 1985-07-23 2024-10-11 01:34:42.000 1985-07-23 2024-10-11 01:34:42 +5683 5683 5684 568.3 1136.6000000000001 5683 1985-07-24 2024-10-11 01:34:43.000 1985-07-24 2024-10-11 01:34:43 +5684 5684 5685 568.4 1136.8 5684 1985-07-25 2024-10-11 01:34:44.000 1985-07-25 2024-10-11 01:34:44 +5686 5686 5687 568.6 1137.2 5686 1985-07-27 2024-10-11 01:34:46.000 1985-07-27 2024-10-11 01:34:46 +5687 5687 5688 568.7 1137.4 5687 1985-07-28 2024-10-11 01:34:47.000 1985-07-28 2024-10-11 01:34:47 +5688 5688 5689 568.8 1137.6000000000001 5688 1985-07-29 2024-10-11 01:34:48.000 1985-07-29 2024-10-11 01:34:48 +5689 5689 5690 568.9 1137.8 5689 1985-07-30 2024-10-11 01:34:49.000 1985-07-30 2024-10-11 01:34:49 +5691 5691 5692 569.1 1138.2 5691 1985-08-01 2024-10-11 01:34:51.000 1985-08-01 2024-10-11 01:34:51 +5692 5692 5693 569.2 1138.4 5692 1985-08-02 2024-10-11 01:34:52.000 1985-08-02 2024-10-11 01:34:52 +5693 5693 5694 569.3 1138.6000000000001 5693 1985-08-03 2024-10-11 01:34:53.000 1985-08-03 2024-10-11 01:34:53 +5694 5694 5695 569.4 1138.8 5694 1985-08-04 2024-10-11 01:34:54.000 1985-08-04 2024-10-11 01:34:54 +5696 5696 5697 569.6 1139.2 5696 1985-08-06 2024-10-11 01:34:56.000 1985-08-06 2024-10-11 01:34:56 +5697 5697 5698 569.7 1139.4 5697 1985-08-07 2024-10-11 01:34:57.000 1985-08-07 2024-10-11 01:34:57 +5698 5698 5699 569.8 1139.6000000000001 5698 1985-08-08 2024-10-11 01:34:58.000 1985-08-08 2024-10-11 01:34:58 +5699 5699 5700 569.9 1139.8 5699 1985-08-09 2024-10-11 01:34:59.000 1985-08-09 2024-10-11 01:34:59 +5701 5701 5702 570.1 1140.2 5701 1985-08-11 2024-10-11 01:35:01.000 1985-08-11 2024-10-11 01:35:01 +5702 5702 5703 570.2 1140.4 5702 1985-08-12 2024-10-11 01:35:02.000 1985-08-12 2024-10-11 01:35:02 +5703 5703 5704 570.3 1140.6000000000001 5703 1985-08-13 2024-10-11 01:35:03.000 1985-08-13 2024-10-11 01:35:03 +5704 5704 5705 570.4 1140.8 5704 1985-08-14 2024-10-11 01:35:04.000 1985-08-14 2024-10-11 01:35:04 +5706 5706 5707 570.6 1141.2 5706 1985-08-16 2024-10-11 01:35:06.000 1985-08-16 2024-10-11 01:35:06 +5707 5707 5708 570.7 1141.4 5707 1985-08-17 2024-10-11 01:35:07.000 1985-08-17 2024-10-11 01:35:07 +5708 5708 5709 570.8 1141.6000000000001 5708 1985-08-18 2024-10-11 01:35:08.000 1985-08-18 2024-10-11 01:35:08 +5709 5709 5710 570.9 1141.8 5709 1985-08-19 2024-10-11 01:35:09.000 1985-08-19 2024-10-11 01:35:09 +5711 5711 5712 571.1 1142.2 5711 1985-08-21 2024-10-11 01:35:11.000 1985-08-21 2024-10-11 01:35:11 +5712 5712 5713 571.2 1142.4 5712 1985-08-22 2024-10-11 01:35:12.000 1985-08-22 2024-10-11 01:35:12 +5713 5713 5714 571.3 1142.6000000000001 5713 1985-08-23 2024-10-11 01:35:13.000 1985-08-23 2024-10-11 01:35:13 +5714 5714 5715 571.4 1142.8 5714 1985-08-24 2024-10-11 01:35:14.000 1985-08-24 2024-10-11 01:35:14 +5716 5716 5717 571.6 1143.2 5716 1985-08-26 2024-10-11 01:35:16.000 1985-08-26 2024-10-11 01:35:16 +5717 5717 5718 571.7 1143.4 5717 1985-08-27 2024-10-11 01:35:17.000 1985-08-27 2024-10-11 01:35:17 +5718 5718 5719 571.8 1143.6000000000001 5718 1985-08-28 2024-10-11 01:35:18.000 1985-08-28 2024-10-11 01:35:18 +5719 5719 5720 571.9 1143.8 5719 1985-08-29 2024-10-11 01:35:19.000 1985-08-29 2024-10-11 01:35:19 +5721 5721 5722 572.1 1144.2 5721 1985-08-31 2024-10-11 01:35:21.000 1985-08-31 2024-10-11 01:35:21 +5722 5722 5723 572.2 1144.4 5722 1985-09-01 2024-10-11 01:35:22.000 1985-09-01 2024-10-11 01:35:22 +5723 5723 5724 572.3 1144.6000000000001 5723 1985-09-02 2024-10-11 01:35:23.000 1985-09-02 2024-10-11 01:35:23 +5724 5724 5725 572.4 1144.8 5724 1985-09-03 2024-10-11 01:35:24.000 1985-09-03 2024-10-11 01:35:24 +5726 5726 5727 572.6 1145.2 5726 1985-09-05 2024-10-11 01:35:26.000 1985-09-05 2024-10-11 01:35:26 +5727 5727 5728 572.7 1145.4 5727 1985-09-06 2024-10-11 01:35:27.000 1985-09-06 2024-10-11 01:35:27 +5728 5728 5729 572.8 1145.6000000000001 5728 1985-09-07 2024-10-11 01:35:28.000 1985-09-07 2024-10-11 01:35:28 +5729 5729 5730 572.9 1145.8 5729 1985-09-08 2024-10-11 01:35:29.000 1985-09-08 2024-10-11 01:35:29 +5731 5731 5732 573.1 1146.2 5731 1985-09-10 2024-10-11 01:35:31.000 1985-09-10 2024-10-11 01:35:31 +5732 5732 5733 573.2 1146.4 5732 1985-09-11 2024-10-11 01:35:32.000 1985-09-11 2024-10-11 01:35:32 +5733 5733 5734 573.3 1146.6000000000001 5733 1985-09-12 2024-10-11 01:35:33.000 1985-09-12 2024-10-11 01:35:33 +5734 5734 5735 573.4 1146.8 5734 1985-09-13 2024-10-11 01:35:34.000 1985-09-13 2024-10-11 01:35:34 +5736 5736 5737 573.6 1147.2 5736 1985-09-15 2024-10-11 01:35:36.000 1985-09-15 2024-10-11 01:35:36 +5737 5737 5738 573.7 1147.4 5737 1985-09-16 2024-10-11 01:35:37.000 1985-09-16 2024-10-11 01:35:37 +5738 5738 5739 573.8 1147.6000000000001 5738 1985-09-17 2024-10-11 01:35:38.000 1985-09-17 2024-10-11 01:35:38 +5739 5739 5740 573.9 1147.8 5739 1985-09-18 2024-10-11 01:35:39.000 1985-09-18 2024-10-11 01:35:39 +5741 5741 5742 574.1 1148.2 5741 1985-09-20 2024-10-11 01:35:41.000 1985-09-20 2024-10-11 01:35:41 +5742 5742 5743 574.2 1148.4 5742 1985-09-21 2024-10-11 01:35:42.000 1985-09-21 2024-10-11 01:35:42 +5743 5743 5744 574.3 1148.6000000000001 5743 1985-09-22 2024-10-11 01:35:43.000 1985-09-22 2024-10-11 01:35:43 +5744 5744 5745 574.4 1148.8 5744 1985-09-23 2024-10-11 01:35:44.000 1985-09-23 2024-10-11 01:35:44 +5746 5746 5747 574.6 1149.2 5746 1985-09-25 2024-10-11 01:35:46.000 1985-09-25 2024-10-11 01:35:46 +5747 5747 5748 574.7 1149.4 5747 1985-09-26 2024-10-11 01:35:47.000 1985-09-26 2024-10-11 01:35:47 +5748 5748 5749 574.8 1149.6000000000001 5748 1985-09-27 2024-10-11 01:35:48.000 1985-09-27 2024-10-11 01:35:48 +5749 5749 5750 574.9 1149.8 5749 1985-09-28 2024-10-11 01:35:49.000 1985-09-28 2024-10-11 01:35:49 +5751 5751 5752 575.1 1150.2 5751 1985-09-30 2024-10-11 01:35:51.000 1985-09-30 2024-10-11 01:35:51 +5752 5752 5753 575.2 1150.4 5752 1985-10-01 2024-10-11 01:35:52.000 1985-10-01 2024-10-11 01:35:52 +5753 5753 5754 575.3 1150.6000000000001 5753 1985-10-02 2024-10-11 01:35:53.000 1985-10-02 2024-10-11 01:35:53 +5754 5754 5755 575.4 1150.8 5754 1985-10-03 2024-10-11 01:35:54.000 1985-10-03 2024-10-11 01:35:54 +5756 5756 5757 575.6 1151.2 5756 1985-10-05 2024-10-11 01:35:56.000 1985-10-05 2024-10-11 01:35:56 +5757 5757 5758 575.7 1151.4 5757 1985-10-06 2024-10-11 01:35:57.000 1985-10-06 2024-10-11 01:35:57 +5758 5758 5759 575.8 1151.6000000000001 5758 1985-10-07 2024-10-11 01:35:58.000 1985-10-07 2024-10-11 01:35:58 +5759 5759 5760 575.9 1151.8 5759 1985-10-08 2024-10-11 01:35:59.000 1985-10-08 2024-10-11 01:35:59 +5761 5761 5762 576.1 1152.2 5761 1985-10-10 2024-10-11 01:36:01.000 1985-10-10 2024-10-11 01:36:01 +5762 5762 5763 576.2 1152.4 5762 1985-10-11 2024-10-11 01:36:02.000 1985-10-11 2024-10-11 01:36:02 +5763 5763 5764 576.3 1152.6000000000001 5763 1985-10-12 2024-10-11 01:36:03.000 1985-10-12 2024-10-11 01:36:03 +5764 5764 5765 576.4 1152.8 5764 1985-10-13 2024-10-11 01:36:04.000 1985-10-13 2024-10-11 01:36:04 +5766 5766 5767 576.6 1153.2 5766 1985-10-15 2024-10-11 01:36:06.000 1985-10-15 2024-10-11 01:36:06 +5767 5767 5768 576.7 1153.4 5767 1985-10-16 2024-10-11 01:36:07.000 1985-10-16 2024-10-11 01:36:07 +5768 5768 5769 576.8 1153.6000000000001 5768 1985-10-17 2024-10-11 01:36:08.000 1985-10-17 2024-10-11 01:36:08 +5769 5769 5770 576.9 1153.8 5769 1985-10-18 2024-10-11 01:36:09.000 1985-10-18 2024-10-11 01:36:09 +5771 5771 5772 577.1 1154.2 5771 1985-10-20 2024-10-11 01:36:11.000 1985-10-20 2024-10-11 01:36:11 +5772 5772 5773 577.2 1154.4 5772 1985-10-21 2024-10-11 01:36:12.000 1985-10-21 2024-10-11 01:36:12 +5773 5773 5774 577.3 1154.6000000000001 5773 1985-10-22 2024-10-11 01:36:13.000 1985-10-22 2024-10-11 01:36:13 +5774 5774 5775 577.4 1154.8 5774 1985-10-23 2024-10-11 01:36:14.000 1985-10-23 2024-10-11 01:36:14 +5776 5776 5777 577.6 1155.2 5776 1985-10-25 2024-10-11 01:36:16.000 1985-10-25 2024-10-11 01:36:16 +5777 5777 5778 577.7 1155.4 5777 1985-10-26 2024-10-11 01:36:17.000 1985-10-26 2024-10-11 01:36:17 +5778 5778 5779 577.8 1155.6000000000001 5778 1985-10-27 2024-10-11 01:36:18.000 1985-10-27 2024-10-11 01:36:18 +5779 5779 5780 577.9 1155.8 5779 1985-10-28 2024-10-11 01:36:19.000 1985-10-28 2024-10-11 01:36:19 +5781 5781 5782 578.1 1156.2 5781 1985-10-30 2024-10-11 01:36:21.000 1985-10-30 2024-10-11 01:36:21 +5782 5782 5783 578.2 1156.4 5782 1985-10-31 2024-10-11 01:36:22.000 1985-10-31 2024-10-11 01:36:22 +5783 5783 5784 578.3 1156.6000000000001 5783 1985-11-01 2024-10-11 01:36:23.000 1985-11-01 2024-10-11 01:36:23 +5784 5784 5785 578.4 1156.8 5784 1985-11-02 2024-10-11 01:36:24.000 1985-11-02 2024-10-11 01:36:24 +5786 5786 5787 578.6 1157.2 5786 1985-11-04 2024-10-11 01:36:26.000 1985-11-04 2024-10-11 01:36:26 +5787 5787 5788 578.7 1157.4 5787 1985-11-05 2024-10-11 01:36:27.000 1985-11-05 2024-10-11 01:36:27 +5788 5788 5789 578.8 1157.6000000000001 5788 1985-11-06 2024-10-11 01:36:28.000 1985-11-06 2024-10-11 01:36:28 +5789 5789 5790 578.9 1157.8 5789 1985-11-07 2024-10-11 01:36:29.000 1985-11-07 2024-10-11 01:36:29 +5791 5791 5792 579.1 1158.2 5791 1985-11-09 2024-10-11 01:36:31.000 1985-11-09 2024-10-11 01:36:31 +5792 5792 5793 579.2 1158.4 5792 1985-11-10 2024-10-11 01:36:32.000 1985-11-10 2024-10-11 01:36:32 +5793 5793 5794 579.3 1158.6000000000001 5793 1985-11-11 2024-10-11 01:36:33.000 1985-11-11 2024-10-11 01:36:33 +5794 5794 5795 579.4 1158.8 5794 1985-11-12 2024-10-11 01:36:34.000 1985-11-12 2024-10-11 01:36:34 +5796 5796 5797 579.6 1159.2 5796 1985-11-14 2024-10-11 01:36:36.000 1985-11-14 2024-10-11 01:36:36 +5797 5797 5798 579.7 1159.4 5797 1985-11-15 2024-10-11 01:36:37.000 1985-11-15 2024-10-11 01:36:37 +5798 5798 5799 579.8 1159.6000000000001 5798 1985-11-16 2024-10-11 01:36:38.000 1985-11-16 2024-10-11 01:36:38 +5799 5799 5800 579.9 1159.8 5799 1985-11-17 2024-10-11 01:36:39.000 1985-11-17 2024-10-11 01:36:39 +5801 5801 5802 580.1 1160.2 5801 1985-11-19 2024-10-11 01:36:41.000 1985-11-19 2024-10-11 01:36:41 +5802 5802 5803 580.2 1160.4 5802 1985-11-20 2024-10-11 01:36:42.000 1985-11-20 2024-10-11 01:36:42 +5803 5803 5804 580.3 1160.6000000000001 5803 1985-11-21 2024-10-11 01:36:43.000 1985-11-21 2024-10-11 01:36:43 +5804 5804 5805 580.4 1160.8 5804 1985-11-22 2024-10-11 01:36:44.000 1985-11-22 2024-10-11 01:36:44 +5806 5806 5807 580.6 1161.2 5806 1985-11-24 2024-10-11 01:36:46.000 1985-11-24 2024-10-11 01:36:46 +5807 5807 5808 580.7 1161.4 5807 1985-11-25 2024-10-11 01:36:47.000 1985-11-25 2024-10-11 01:36:47 +5808 5808 5809 580.8 1161.6000000000001 5808 1985-11-26 2024-10-11 01:36:48.000 1985-11-26 2024-10-11 01:36:48 +5809 5809 5810 580.9 1161.8 5809 1985-11-27 2024-10-11 01:36:49.000 1985-11-27 2024-10-11 01:36:49 +5811 5811 5812 581.1 1162.2 5811 1985-11-29 2024-10-11 01:36:51.000 1985-11-29 2024-10-11 01:36:51 +5812 5812 5813 581.2 1162.4 5812 1985-11-30 2024-10-11 01:36:52.000 1985-11-30 2024-10-11 01:36:52 +5813 5813 5814 581.3 1162.6000000000001 5813 1985-12-01 2024-10-11 01:36:53.000 1985-12-01 2024-10-11 01:36:53 +5814 5814 5815 581.4 1162.8 5814 1985-12-02 2024-10-11 01:36:54.000 1985-12-02 2024-10-11 01:36:54 +5816 5816 5817 581.6 1163.2 5816 1985-12-04 2024-10-11 01:36:56.000 1985-12-04 2024-10-11 01:36:56 +5817 5817 5818 581.7 1163.4 5817 1985-12-05 2024-10-11 01:36:57.000 1985-12-05 2024-10-11 01:36:57 +5818 5818 5819 581.8 1163.6000000000001 5818 1985-12-06 2024-10-11 01:36:58.000 1985-12-06 2024-10-11 01:36:58 +5819 5819 5820 581.9 1163.8 5819 1985-12-07 2024-10-11 01:36:59.000 1985-12-07 2024-10-11 01:36:59 +5821 5821 5822 582.1 1164.2 5821 1985-12-09 2024-10-11 01:37:01.000 1985-12-09 2024-10-11 01:37:01 +5822 5822 5823 582.2 1164.4 5822 1985-12-10 2024-10-11 01:37:02.000 1985-12-10 2024-10-11 01:37:02 +5823 5823 5824 582.3 1164.6000000000001 5823 1985-12-11 2024-10-11 01:37:03.000 1985-12-11 2024-10-11 01:37:03 +5824 5824 5825 582.4 1164.8 5824 1985-12-12 2024-10-11 01:37:04.000 1985-12-12 2024-10-11 01:37:04 +5826 5826 5827 582.6 1165.2 5826 1985-12-14 2024-10-11 01:37:06.000 1985-12-14 2024-10-11 01:37:06 +5827 5827 5828 582.7 1165.4 5827 1985-12-15 2024-10-11 01:37:07.000 1985-12-15 2024-10-11 01:37:07 +5828 5828 5829 582.8 1165.6000000000001 5828 1985-12-16 2024-10-11 01:37:08.000 1985-12-16 2024-10-11 01:37:08 +5829 5829 5830 582.9 1165.8 5829 1985-12-17 2024-10-11 01:37:09.000 1985-12-17 2024-10-11 01:37:09 +5831 5831 5832 583.1 1166.2 5831 1985-12-19 2024-10-11 01:37:11.000 1985-12-19 2024-10-11 01:37:11 +5832 5832 5833 583.2 1166.4 5832 1985-12-20 2024-10-11 01:37:12.000 1985-12-20 2024-10-11 01:37:12 +5833 5833 5834 583.3 1166.6000000000001 5833 1985-12-21 2024-10-11 01:37:13.000 1985-12-21 2024-10-11 01:37:13 +5834 5834 5835 583.4 1166.8 5834 1985-12-22 2024-10-11 01:37:14.000 1985-12-22 2024-10-11 01:37:14 +5836 5836 5837 583.6 1167.2 5836 1985-12-24 2024-10-11 01:37:16.000 1985-12-24 2024-10-11 01:37:16 +5837 5837 5838 583.7 1167.4 5837 1985-12-25 2024-10-11 01:37:17.000 1985-12-25 2024-10-11 01:37:17 +5838 5838 5839 583.8 1167.6000000000001 5838 1985-12-26 2024-10-11 01:37:18.000 1985-12-26 2024-10-11 01:37:18 +5839 5839 5840 583.9 1167.8 5839 1985-12-27 2024-10-11 01:37:19.000 1985-12-27 2024-10-11 01:37:19 +5841 5841 5842 584.1 1168.2 5841 1985-12-29 2024-10-11 01:37:21.000 1985-12-29 2024-10-11 01:37:21 +5842 5842 5843 584.2 1168.4 5842 1985-12-30 2024-10-11 01:37:22.000 1985-12-30 2024-10-11 01:37:22 +5843 5843 5844 584.3 1168.6000000000001 5843 1985-12-31 2024-10-11 01:37:23.000 1985-12-31 2024-10-11 01:37:23 +5844 5844 5845 584.4 1168.8 5844 1986-01-01 2024-10-11 01:37:24.000 1986-01-01 2024-10-11 01:37:24 +5846 5846 5847 584.6 1169.2 5846 1986-01-03 2024-10-11 01:37:26.000 1986-01-03 2024-10-11 01:37:26 +5847 5847 5848 584.7 1169.4 5847 1986-01-04 2024-10-11 01:37:27.000 1986-01-04 2024-10-11 01:37:27 +5848 5848 5849 584.8 1169.6000000000001 5848 1986-01-05 2024-10-11 01:37:28.000 1986-01-05 2024-10-11 01:37:28 +5849 5849 5850 584.9 1169.8 5849 1986-01-06 2024-10-11 01:37:29.000 1986-01-06 2024-10-11 01:37:29 +5851 5851 5852 585.1 1170.2 5851 1986-01-08 2024-10-11 01:37:31.000 1986-01-08 2024-10-11 01:37:31 +5852 5852 5853 585.2 1170.4 5852 1986-01-09 2024-10-11 01:37:32.000 1986-01-09 2024-10-11 01:37:32 +5853 5853 5854 585.3 1170.6000000000001 5853 1986-01-10 2024-10-11 01:37:33.000 1986-01-10 2024-10-11 01:37:33 +5854 5854 5855 585.4 1170.8 5854 1986-01-11 2024-10-11 01:37:34.000 1986-01-11 2024-10-11 01:37:34 +5856 5856 5857 585.6 1171.2 5856 1986-01-13 2024-10-11 01:37:36.000 1986-01-13 2024-10-11 01:37:36 +5857 5857 5858 585.7 1171.4 5857 1986-01-14 2024-10-11 01:37:37.000 1986-01-14 2024-10-11 01:37:37 +5858 5858 5859 585.8 1171.6000000000001 5858 1986-01-15 2024-10-11 01:37:38.000 1986-01-15 2024-10-11 01:37:38 +5859 5859 5860 585.9 1171.8 5859 1986-01-16 2024-10-11 01:37:39.000 1986-01-16 2024-10-11 01:37:39 +5861 5861 5862 586.1 1172.2 5861 1986-01-18 2024-10-11 01:37:41.000 1986-01-18 2024-10-11 01:37:41 +5862 5862 5863 586.2 1172.4 5862 1986-01-19 2024-10-11 01:37:42.000 1986-01-19 2024-10-11 01:37:42 +5863 5863 5864 586.3 1172.6000000000001 5863 1986-01-20 2024-10-11 01:37:43.000 1986-01-20 2024-10-11 01:37:43 +5864 5864 5865 586.4 1172.8 5864 1986-01-21 2024-10-11 01:37:44.000 1986-01-21 2024-10-11 01:37:44 +5866 5866 5867 586.6 1173.2 5866 1986-01-23 2024-10-11 01:37:46.000 1986-01-23 2024-10-11 01:37:46 +5867 5867 5868 586.7 1173.4 5867 1986-01-24 2024-10-11 01:37:47.000 1986-01-24 2024-10-11 01:37:47 +5868 5868 5869 586.8 1173.6000000000001 5868 1986-01-25 2024-10-11 01:37:48.000 1986-01-25 2024-10-11 01:37:48 +5869 5869 5870 586.9 1173.8 5869 1986-01-26 2024-10-11 01:37:49.000 1986-01-26 2024-10-11 01:37:49 +5871 5871 5872 587.1 1174.2 5871 1986-01-28 2024-10-11 01:37:51.000 1986-01-28 2024-10-11 01:37:51 +5872 5872 5873 587.2 1174.4 5872 1986-01-29 2024-10-11 01:37:52.000 1986-01-29 2024-10-11 01:37:52 +5873 5873 5874 587.3 1174.6000000000001 5873 1986-01-30 2024-10-11 01:37:53.000 1986-01-30 2024-10-11 01:37:53 +5874 5874 5875 587.4 1174.8 5874 1986-01-31 2024-10-11 01:37:54.000 1986-01-31 2024-10-11 01:37:54 +5876 5876 5877 587.6 1175.2 5876 1986-02-02 2024-10-11 01:37:56.000 1986-02-02 2024-10-11 01:37:56 +5877 5877 5878 587.7 1175.4 5877 1986-02-03 2024-10-11 01:37:57.000 1986-02-03 2024-10-11 01:37:57 +5878 5878 5879 587.8 1175.6000000000001 5878 1986-02-04 2024-10-11 01:37:58.000 1986-02-04 2024-10-11 01:37:58 +5879 5879 5880 587.9 1175.8 5879 1986-02-05 2024-10-11 01:37:59.000 1986-02-05 2024-10-11 01:37:59 +5881 5881 5882 588.1 1176.2 5881 1986-02-07 2024-10-11 01:38:01.000 1986-02-07 2024-10-11 01:38:01 +5882 5882 5883 588.2 1176.4 5882 1986-02-08 2024-10-11 01:38:02.000 1986-02-08 2024-10-11 01:38:02 +5883 5883 5884 588.3 1176.6000000000001 5883 1986-02-09 2024-10-11 01:38:03.000 1986-02-09 2024-10-11 01:38:03 +5884 5884 5885 588.4 1176.8 5884 1986-02-10 2024-10-11 01:38:04.000 1986-02-10 2024-10-11 01:38:04 +5886 5886 5887 588.6 1177.2 5886 1986-02-12 2024-10-11 01:38:06.000 1986-02-12 2024-10-11 01:38:06 +5887 5887 5888 588.7 1177.4 5887 1986-02-13 2024-10-11 01:38:07.000 1986-02-13 2024-10-11 01:38:07 +5888 5888 5889 588.8 1177.6000000000001 5888 1986-02-14 2024-10-11 01:38:08.000 1986-02-14 2024-10-11 01:38:08 +5889 5889 5890 588.9 1177.8 5889 1986-02-15 2024-10-11 01:38:09.000 1986-02-15 2024-10-11 01:38:09 +5891 5891 5892 589.1 1178.2 5891 1986-02-17 2024-10-11 01:38:11.000 1986-02-17 2024-10-11 01:38:11 +5892 5892 5893 589.2 1178.4 5892 1986-02-18 2024-10-11 01:38:12.000 1986-02-18 2024-10-11 01:38:12 +5893 5893 5894 589.3 1178.6000000000001 5893 1986-02-19 2024-10-11 01:38:13.000 1986-02-19 2024-10-11 01:38:13 +5894 5894 5895 589.4 1178.8 5894 1986-02-20 2024-10-11 01:38:14.000 1986-02-20 2024-10-11 01:38:14 +5896 5896 5897 589.6 1179.2 5896 1986-02-22 2024-10-11 01:38:16.000 1986-02-22 2024-10-11 01:38:16 +5897 5897 5898 589.7 1179.4 5897 1986-02-23 2024-10-11 01:38:17.000 1986-02-23 2024-10-11 01:38:17 +5898 5898 5899 589.8 1179.6000000000001 5898 1986-02-24 2024-10-11 01:38:18.000 1986-02-24 2024-10-11 01:38:18 +5899 5899 5900 589.9 1179.8 5899 1986-02-25 2024-10-11 01:38:19.000 1986-02-25 2024-10-11 01:38:19 +5901 5901 5902 590.1 1180.2 5901 1986-02-27 2024-10-11 01:38:21.000 1986-02-27 2024-10-11 01:38:21 +5902 5902 5903 590.2 1180.4 5902 1986-02-28 2024-10-11 01:38:22.000 1986-02-28 2024-10-11 01:38:22 +5903 5903 5904 590.3 1180.6000000000001 5903 1986-03-01 2024-10-11 01:38:23.000 1986-03-01 2024-10-11 01:38:23 +5904 5904 5905 590.4 1180.8 5904 1986-03-02 2024-10-11 01:38:24.000 1986-03-02 2024-10-11 01:38:24 +5906 5906 5907 590.6 1181.2 5906 1986-03-04 2024-10-11 01:38:26.000 1986-03-04 2024-10-11 01:38:26 +5907 5907 5908 590.7 1181.4 5907 1986-03-05 2024-10-11 01:38:27.000 1986-03-05 2024-10-11 01:38:27 +5908 5908 5909 590.8 1181.6000000000001 5908 1986-03-06 2024-10-11 01:38:28.000 1986-03-06 2024-10-11 01:38:28 +5909 5909 5910 590.9 1181.8 5909 1986-03-07 2024-10-11 01:38:29.000 1986-03-07 2024-10-11 01:38:29 +5911 5911 5912 591.1 1182.2 5911 1986-03-09 2024-10-11 01:38:31.000 1986-03-09 2024-10-11 01:38:31 +5912 5912 5913 591.2 1182.4 5912 1986-03-10 2024-10-11 01:38:32.000 1986-03-10 2024-10-11 01:38:32 +5913 5913 5914 591.3 1182.6000000000001 5913 1986-03-11 2024-10-11 01:38:33.000 1986-03-11 2024-10-11 01:38:33 +5914 5914 5915 591.4 1182.8 5914 1986-03-12 2024-10-11 01:38:34.000 1986-03-12 2024-10-11 01:38:34 +5916 5916 5917 591.6 1183.2 5916 1986-03-14 2024-10-11 01:38:36.000 1986-03-14 2024-10-11 01:38:36 +5917 5917 5918 591.7 1183.4 5917 1986-03-15 2024-10-11 01:38:37.000 1986-03-15 2024-10-11 01:38:37 +5918 5918 5919 591.8 1183.6000000000001 5918 1986-03-16 2024-10-11 01:38:38.000 1986-03-16 2024-10-11 01:38:38 +5919 5919 5920 591.9 1183.8 5919 1986-03-17 2024-10-11 01:38:39.000 1986-03-17 2024-10-11 01:38:39 +5921 5921 5922 592.1 1184.2 5921 1986-03-19 2024-10-11 01:38:41.000 1986-03-19 2024-10-11 01:38:41 +5922 5922 5923 592.2 1184.4 5922 1986-03-20 2024-10-11 01:38:42.000 1986-03-20 2024-10-11 01:38:42 +5923 5923 5924 592.3 1184.6000000000001 5923 1986-03-21 2024-10-11 01:38:43.000 1986-03-21 2024-10-11 01:38:43 +5924 5924 5925 592.4 1184.8 5924 1986-03-22 2024-10-11 01:38:44.000 1986-03-22 2024-10-11 01:38:44 +5926 5926 5927 592.6 1185.2 5926 1986-03-24 2024-10-11 01:38:46.000 1986-03-24 2024-10-11 01:38:46 +5927 5927 5928 592.7 1185.4 5927 1986-03-25 2024-10-11 01:38:47.000 1986-03-25 2024-10-11 01:38:47 +5928 5928 5929 592.8 1185.6000000000001 5928 1986-03-26 2024-10-11 01:38:48.000 1986-03-26 2024-10-11 01:38:48 +5929 5929 5930 592.9 1185.8 5929 1986-03-27 2024-10-11 01:38:49.000 1986-03-27 2024-10-11 01:38:49 +5931 5931 5932 593.1 1186.2 5931 1986-03-29 2024-10-11 01:38:51.000 1986-03-29 2024-10-11 01:38:51 +5932 5932 5933 593.2 1186.4 5932 1986-03-30 2024-10-11 01:38:52.000 1986-03-30 2024-10-11 01:38:52 +5933 5933 5934 593.3 1186.6000000000001 5933 1986-03-31 2024-10-11 01:38:53.000 1986-03-31 2024-10-11 01:38:53 +5934 5934 5935 593.4 1186.8 5934 1986-04-01 2024-10-11 01:38:54.000 1986-04-01 2024-10-11 01:38:54 +5936 5936 5937 593.6 1187.2 5936 1986-04-03 2024-10-11 01:38:56.000 1986-04-03 2024-10-11 01:38:56 +5937 5937 5938 593.7 1187.4 5937 1986-04-04 2024-10-11 01:38:57.000 1986-04-04 2024-10-11 01:38:57 +5938 5938 5939 593.8 1187.6000000000001 5938 1986-04-05 2024-10-11 01:38:58.000 1986-04-05 2024-10-11 01:38:58 +5939 5939 5940 593.9 1187.8 5939 1986-04-06 2024-10-11 01:38:59.000 1986-04-06 2024-10-11 01:38:59 +5941 5941 5942 594.1 1188.2 5941 1986-04-08 2024-10-11 01:39:01.000 1986-04-08 2024-10-11 01:39:01 +5942 5942 5943 594.2 1188.4 5942 1986-04-09 2024-10-11 01:39:02.000 1986-04-09 2024-10-11 01:39:02 +5943 5943 5944 594.3 1188.6000000000001 5943 1986-04-10 2024-10-11 01:39:03.000 1986-04-10 2024-10-11 01:39:03 +5944 5944 5945 594.4 1188.8 5944 1986-04-11 2024-10-11 01:39:04.000 1986-04-11 2024-10-11 01:39:04 +5946 5946 5947 594.6 1189.2 5946 1986-04-13 2024-10-11 01:39:06.000 1986-04-13 2024-10-11 01:39:06 +5947 5947 5948 594.7 1189.4 5947 1986-04-14 2024-10-11 01:39:07.000 1986-04-14 2024-10-11 01:39:07 +5948 5948 5949 594.8 1189.6000000000001 5948 1986-04-15 2024-10-11 01:39:08.000 1986-04-15 2024-10-11 01:39:08 +5949 5949 5950 594.9 1189.8 5949 1986-04-16 2024-10-11 01:39:09.000 1986-04-16 2024-10-11 01:39:09 +5951 5951 5952 595.1 1190.2 5951 1986-04-18 2024-10-11 01:39:11.000 1986-04-18 2024-10-11 01:39:11 +5952 5952 5953 595.2 1190.4 5952 1986-04-19 2024-10-11 01:39:12.000 1986-04-19 2024-10-11 01:39:12 +5953 5953 5954 595.3 1190.6000000000001 5953 1986-04-20 2024-10-11 01:39:13.000 1986-04-20 2024-10-11 01:39:13 +5954 5954 5955 595.4 1190.8 5954 1986-04-21 2024-10-11 01:39:14.000 1986-04-21 2024-10-11 01:39:14 +5956 5956 5957 595.6 1191.2 5956 1986-04-23 2024-10-11 01:39:16.000 1986-04-23 2024-10-11 01:39:16 +5957 5957 5958 595.7 1191.4 5957 1986-04-24 2024-10-11 01:39:17.000 1986-04-24 2024-10-11 01:39:17 +5958 5958 5959 595.8 1191.6000000000001 5958 1986-04-25 2024-10-11 01:39:18.000 1986-04-25 2024-10-11 01:39:18 +5959 5959 5960 595.9 1191.8 5959 1986-04-26 2024-10-11 01:39:19.000 1986-04-26 2024-10-11 01:39:19 +5961 5961 5962 596.1 1192.2 5961 1986-04-28 2024-10-11 01:39:21.000 1986-04-28 2024-10-11 01:39:21 +5962 5962 5963 596.2 1192.4 5962 1986-04-29 2024-10-11 01:39:22.000 1986-04-29 2024-10-11 01:39:22 +5963 5963 5964 596.3 1192.6000000000001 5963 1986-04-30 2024-10-11 01:39:23.000 1986-04-30 2024-10-11 01:39:23 +5964 5964 5965 596.4 1192.8 5964 1986-05-01 2024-10-11 01:39:24.000 1986-05-01 2024-10-11 01:39:24 +5966 5966 5967 596.6 1193.2 5966 1986-05-03 2024-10-11 01:39:26.000 1986-05-03 2024-10-11 01:39:26 +5967 5967 5968 596.7 1193.4 5967 1986-05-04 2024-10-11 01:39:27.000 1986-05-04 2024-10-11 01:39:27 +5968 5968 5969 596.8 1193.6000000000001 5968 1986-05-05 2024-10-11 01:39:28.000 1986-05-05 2024-10-11 01:39:28 +5969 5969 5970 596.9 1193.8 5969 1986-05-06 2024-10-11 01:39:29.000 1986-05-06 2024-10-11 01:39:29 +5971 5971 5972 597.1 1194.2 5971 1986-05-08 2024-10-11 01:39:31.000 1986-05-08 2024-10-11 01:39:31 +5972 5972 5973 597.2 1194.4 5972 1986-05-09 2024-10-11 01:39:32.000 1986-05-09 2024-10-11 01:39:32 +5973 5973 5974 597.3 1194.6000000000001 5973 1986-05-10 2024-10-11 01:39:33.000 1986-05-10 2024-10-11 01:39:33 +5974 5974 5975 597.4 1194.8 5974 1986-05-11 2024-10-11 01:39:34.000 1986-05-11 2024-10-11 01:39:34 +5976 5976 5977 597.6 1195.2 5976 1986-05-13 2024-10-11 01:39:36.000 1986-05-13 2024-10-11 01:39:36 +5977 5977 5978 597.7 1195.4 5977 1986-05-14 2024-10-11 01:39:37.000 1986-05-14 2024-10-11 01:39:37 +5978 5978 5979 597.8 1195.6000000000001 5978 1986-05-15 2024-10-11 01:39:38.000 1986-05-15 2024-10-11 01:39:38 +5979 5979 5980 597.9 1195.8 5979 1986-05-16 2024-10-11 01:39:39.000 1986-05-16 2024-10-11 01:39:39 +5981 5981 5982 598.1 1196.2 5981 1986-05-18 2024-10-11 01:39:41.000 1986-05-18 2024-10-11 01:39:41 +5982 5982 5983 598.2 1196.4 5982 1986-05-19 2024-10-11 01:39:42.000 1986-05-19 2024-10-11 01:39:42 +5983 5983 5984 598.3 1196.6000000000001 5983 1986-05-20 2024-10-11 01:39:43.000 1986-05-20 2024-10-11 01:39:43 +5984 5984 5985 598.4 1196.8 5984 1986-05-21 2024-10-11 01:39:44.000 1986-05-21 2024-10-11 01:39:44 +5986 5986 5987 598.6 1197.2 5986 1986-05-23 2024-10-11 01:39:46.000 1986-05-23 2024-10-11 01:39:46 +5987 5987 5988 598.7 1197.4 5987 1986-05-24 2024-10-11 01:39:47.000 1986-05-24 2024-10-11 01:39:47 +5988 5988 5989 598.8 1197.6000000000001 5988 1986-05-25 2024-10-11 01:39:48.000 1986-05-25 2024-10-11 01:39:48 +5989 5989 5990 598.9 1197.8 5989 1986-05-26 2024-10-11 01:39:49.000 1986-05-26 2024-10-11 01:39:49 +5991 5991 5992 599.1 1198.2 5991 1986-05-28 2024-10-11 01:39:51.000 1986-05-28 2024-10-11 01:39:51 +5992 5992 5993 599.2 1198.4 5992 1986-05-29 2024-10-11 01:39:52.000 1986-05-29 2024-10-11 01:39:52 +5993 5993 5994 599.3 1198.6000000000001 5993 1986-05-30 2024-10-11 01:39:53.000 1986-05-30 2024-10-11 01:39:53 +5994 5994 5995 599.4 1198.8 5994 1986-05-31 2024-10-11 01:39:54.000 1986-05-31 2024-10-11 01:39:54 +5996 5996 5997 599.6 1199.2 5996 1986-06-02 2024-10-11 01:39:56.000 1986-06-02 2024-10-11 01:39:56 +5997 5997 5998 599.7 1199.4 5997 1986-06-03 2024-10-11 01:39:57.000 1986-06-03 2024-10-11 01:39:57 +5998 5998 5999 599.8 1199.6000000000001 5998 1986-06-04 2024-10-11 01:39:58.000 1986-06-04 2024-10-11 01:39:58 +5999 5999 6000 599.9 1199.8 5999 1986-06-05 2024-10-11 01:39:59.000 1986-06-05 2024-10-11 01:39:59 +6001 6001 6002 600.1 1200.2 6001 1986-06-07 2024-10-11 01:40:01.000 1986-06-07 2024-10-11 01:40:01 +6002 6002 6003 600.2 1200.4 6002 1986-06-08 2024-10-11 01:40:02.000 1986-06-08 2024-10-11 01:40:02 +6003 6003 6004 600.3 1200.6000000000001 6003 1986-06-09 2024-10-11 01:40:03.000 1986-06-09 2024-10-11 01:40:03 +6004 6004 6005 600.4 1200.8 6004 1986-06-10 2024-10-11 01:40:04.000 1986-06-10 2024-10-11 01:40:04 +6006 6006 6007 600.6 1201.2 6006 1986-06-12 2024-10-11 01:40:06.000 1986-06-12 2024-10-11 01:40:06 +6007 6007 6008 600.7 1201.4 6007 1986-06-13 2024-10-11 01:40:07.000 1986-06-13 2024-10-11 01:40:07 +6008 6008 6009 600.8 1201.6000000000001 6008 1986-06-14 2024-10-11 01:40:08.000 1986-06-14 2024-10-11 01:40:08 +6009 6009 6010 600.9 1201.8 6009 1986-06-15 2024-10-11 01:40:09.000 1986-06-15 2024-10-11 01:40:09 +6011 6011 6012 601.1 1202.2 6011 1986-06-17 2024-10-11 01:40:11.000 1986-06-17 2024-10-11 01:40:11 +6012 6012 6013 601.2 1202.4 6012 1986-06-18 2024-10-11 01:40:12.000 1986-06-18 2024-10-11 01:40:12 +6013 6013 6014 601.3 1202.6000000000001 6013 1986-06-19 2024-10-11 01:40:13.000 1986-06-19 2024-10-11 01:40:13 +6014 6014 6015 601.4 1202.8 6014 1986-06-20 2024-10-11 01:40:14.000 1986-06-20 2024-10-11 01:40:14 +6016 6016 6017 601.6 1203.2 6016 1986-06-22 2024-10-11 01:40:16.000 1986-06-22 2024-10-11 01:40:16 +6017 6017 6018 601.7 1203.4 6017 1986-06-23 2024-10-11 01:40:17.000 1986-06-23 2024-10-11 01:40:17 +6018 6018 6019 601.8 1203.6000000000001 6018 1986-06-24 2024-10-11 01:40:18.000 1986-06-24 2024-10-11 01:40:18 +6019 6019 6020 601.9 1203.8 6019 1986-06-25 2024-10-11 01:40:19.000 1986-06-25 2024-10-11 01:40:19 +6021 6021 6022 602.1 1204.2 6021 1986-06-27 2024-10-11 01:40:21.000 1986-06-27 2024-10-11 01:40:21 +6022 6022 6023 602.2 1204.4 6022 1986-06-28 2024-10-11 01:40:22.000 1986-06-28 2024-10-11 01:40:22 +6023 6023 6024 602.3 1204.6000000000001 6023 1986-06-29 2024-10-11 01:40:23.000 1986-06-29 2024-10-11 01:40:23 +6024 6024 6025 602.4 1204.8 6024 1986-06-30 2024-10-11 01:40:24.000 1986-06-30 2024-10-11 01:40:24 +6026 6026 6027 602.6 1205.2 6026 1986-07-02 2024-10-11 01:40:26.000 1986-07-02 2024-10-11 01:40:26 +6027 6027 6028 602.7 1205.4 6027 1986-07-03 2024-10-11 01:40:27.000 1986-07-03 2024-10-11 01:40:27 +6028 6028 6029 602.8 1205.6000000000001 6028 1986-07-04 2024-10-11 01:40:28.000 1986-07-04 2024-10-11 01:40:28 +6029 6029 6030 602.9 1205.8 6029 1986-07-05 2024-10-11 01:40:29.000 1986-07-05 2024-10-11 01:40:29 +6031 6031 6032 603.1 1206.2 6031 1986-07-07 2024-10-11 01:40:31.000 1986-07-07 2024-10-11 01:40:31 +6032 6032 6033 603.2 1206.4 6032 1986-07-08 2024-10-11 01:40:32.000 1986-07-08 2024-10-11 01:40:32 +6033 6033 6034 603.3 1206.6000000000001 6033 1986-07-09 2024-10-11 01:40:33.000 1986-07-09 2024-10-11 01:40:33 +6034 6034 6035 603.4 1206.8 6034 1986-07-10 2024-10-11 01:40:34.000 1986-07-10 2024-10-11 01:40:34 +6036 6036 6037 603.6 1207.2 6036 1986-07-12 2024-10-11 01:40:36.000 1986-07-12 2024-10-11 01:40:36 +6037 6037 6038 603.7 1207.4 6037 1986-07-13 2024-10-11 01:40:37.000 1986-07-13 2024-10-11 01:40:37 +6038 6038 6039 603.8 1207.6000000000001 6038 1986-07-14 2024-10-11 01:40:38.000 1986-07-14 2024-10-11 01:40:38 +6039 6039 6040 603.9 1207.8 6039 1986-07-15 2024-10-11 01:40:39.000 1986-07-15 2024-10-11 01:40:39 +6041 6041 6042 604.1 1208.2 6041 1986-07-17 2024-10-11 01:40:41.000 1986-07-17 2024-10-11 01:40:41 +6042 6042 6043 604.2 1208.4 6042 1986-07-18 2024-10-11 01:40:42.000 1986-07-18 2024-10-11 01:40:42 +6043 6043 6044 604.3 1208.6000000000001 6043 1986-07-19 2024-10-11 01:40:43.000 1986-07-19 2024-10-11 01:40:43 +6044 6044 6045 604.4 1208.8 6044 1986-07-20 2024-10-11 01:40:44.000 1986-07-20 2024-10-11 01:40:44 +6046 6046 6047 604.6 1209.2 6046 1986-07-22 2024-10-11 01:40:46.000 1986-07-22 2024-10-11 01:40:46 +6047 6047 6048 604.7 1209.4 6047 1986-07-23 2024-10-11 01:40:47.000 1986-07-23 2024-10-11 01:40:47 +6048 6048 6049 604.8 1209.6000000000001 6048 1986-07-24 2024-10-11 01:40:48.000 1986-07-24 2024-10-11 01:40:48 +6049 6049 6050 604.9 1209.8 6049 1986-07-25 2024-10-11 01:40:49.000 1986-07-25 2024-10-11 01:40:49 +6051 6051 6052 605.1 1210.2 6051 1986-07-27 2024-10-11 01:40:51.000 1986-07-27 2024-10-11 01:40:51 +6052 6052 6053 605.2 1210.4 6052 1986-07-28 2024-10-11 01:40:52.000 1986-07-28 2024-10-11 01:40:52 +6053 6053 6054 605.3 1210.6000000000001 6053 1986-07-29 2024-10-11 01:40:53.000 1986-07-29 2024-10-11 01:40:53 +6054 6054 6055 605.4 1210.8 6054 1986-07-30 2024-10-11 01:40:54.000 1986-07-30 2024-10-11 01:40:54 +6056 6056 6057 605.6 1211.2 6056 1986-08-01 2024-10-11 01:40:56.000 1986-08-01 2024-10-11 01:40:56 +6057 6057 6058 605.7 1211.4 6057 1986-08-02 2024-10-11 01:40:57.000 1986-08-02 2024-10-11 01:40:57 +6058 6058 6059 605.8 1211.6000000000001 6058 1986-08-03 2024-10-11 01:40:58.000 1986-08-03 2024-10-11 01:40:58 +6059 6059 6060 605.9 1211.8 6059 1986-08-04 2024-10-11 01:40:59.000 1986-08-04 2024-10-11 01:40:59 +6061 6061 6062 606.1 1212.2 6061 1986-08-06 2024-10-11 01:41:01.000 1986-08-06 2024-10-11 01:41:01 +6062 6062 6063 606.2 1212.4 6062 1986-08-07 2024-10-11 01:41:02.000 1986-08-07 2024-10-11 01:41:02 +6063 6063 6064 606.3 1212.6000000000001 6063 1986-08-08 2024-10-11 01:41:03.000 1986-08-08 2024-10-11 01:41:03 +6064 6064 6065 606.4 1212.8 6064 1986-08-09 2024-10-11 01:41:04.000 1986-08-09 2024-10-11 01:41:04 +6066 6066 6067 606.6 1213.2 6066 1986-08-11 2024-10-11 01:41:06.000 1986-08-11 2024-10-11 01:41:06 +6067 6067 6068 606.7 1213.4 6067 1986-08-12 2024-10-11 01:41:07.000 1986-08-12 2024-10-11 01:41:07 +6068 6068 6069 606.8 1213.6000000000001 6068 1986-08-13 2024-10-11 01:41:08.000 1986-08-13 2024-10-11 01:41:08 +6069 6069 6070 606.9 1213.8 6069 1986-08-14 2024-10-11 01:41:09.000 1986-08-14 2024-10-11 01:41:09 +6071 6071 6072 607.1 1214.2 6071 1986-08-16 2024-10-11 01:41:11.000 1986-08-16 2024-10-11 01:41:11 +6072 6072 6073 607.2 1214.4 6072 1986-08-17 2024-10-11 01:41:12.000 1986-08-17 2024-10-11 01:41:12 +6073 6073 6074 607.3 1214.6000000000001 6073 1986-08-18 2024-10-11 01:41:13.000 1986-08-18 2024-10-11 01:41:13 +6074 6074 6075 607.4 1214.8 6074 1986-08-19 2024-10-11 01:41:14.000 1986-08-19 2024-10-11 01:41:14 +6076 6076 6077 607.6 1215.2 6076 1986-08-21 2024-10-11 01:41:16.000 1986-08-21 2024-10-11 01:41:16 +6077 6077 6078 607.7 1215.4 6077 1986-08-22 2024-10-11 01:41:17.000 1986-08-22 2024-10-11 01:41:17 +6078 6078 6079 607.8 1215.6000000000001 6078 1986-08-23 2024-10-11 01:41:18.000 1986-08-23 2024-10-11 01:41:18 +6079 6079 6080 607.9 1215.8 6079 1986-08-24 2024-10-11 01:41:19.000 1986-08-24 2024-10-11 01:41:19 +6081 6081 6082 608.1 1216.2 6081 1986-08-26 2024-10-11 01:41:21.000 1986-08-26 2024-10-11 01:41:21 +6082 6082 6083 608.2 1216.4 6082 1986-08-27 2024-10-11 01:41:22.000 1986-08-27 2024-10-11 01:41:22 +6083 6083 6084 608.3 1216.6000000000001 6083 1986-08-28 2024-10-11 01:41:23.000 1986-08-28 2024-10-11 01:41:23 +6084 6084 6085 608.4 1216.8 6084 1986-08-29 2024-10-11 01:41:24.000 1986-08-29 2024-10-11 01:41:24 +6086 6086 6087 608.6 1217.2 6086 1986-08-31 2024-10-11 01:41:26.000 1986-08-31 2024-10-11 01:41:26 +6087 6087 6088 608.7 1217.4 6087 1986-09-01 2024-10-11 01:41:27.000 1986-09-01 2024-10-11 01:41:27 +6088 6088 6089 608.8 1217.6000000000001 6088 1986-09-02 2024-10-11 01:41:28.000 1986-09-02 2024-10-11 01:41:28 +6089 6089 6090 608.9 1217.8 6089 1986-09-03 2024-10-11 01:41:29.000 1986-09-03 2024-10-11 01:41:29 +6091 6091 6092 609.1 1218.2 6091 1986-09-05 2024-10-11 01:41:31.000 1986-09-05 2024-10-11 01:41:31 +6092 6092 6093 609.2 1218.4 6092 1986-09-06 2024-10-11 01:41:32.000 1986-09-06 2024-10-11 01:41:32 +6093 6093 6094 609.3 1218.6000000000001 6093 1986-09-07 2024-10-11 01:41:33.000 1986-09-07 2024-10-11 01:41:33 +6094 6094 6095 609.4 1218.8 6094 1986-09-08 2024-10-11 01:41:34.000 1986-09-08 2024-10-11 01:41:34 +6096 6096 6097 609.6 1219.2 6096 1986-09-10 2024-10-11 01:41:36.000 1986-09-10 2024-10-11 01:41:36 +6097 6097 6098 609.7 1219.4 6097 1986-09-11 2024-10-11 01:41:37.000 1986-09-11 2024-10-11 01:41:37 +6098 6098 6099 609.8 1219.6000000000001 6098 1986-09-12 2024-10-11 01:41:38.000 1986-09-12 2024-10-11 01:41:38 +6099 6099 6100 609.9 1219.8 6099 1986-09-13 2024-10-11 01:41:39.000 1986-09-13 2024-10-11 01:41:39 +6101 6101 6102 610.1 1220.2 6101 1986-09-15 2024-10-11 01:41:41.000 1986-09-15 2024-10-11 01:41:41 +6102 6102 6103 610.2 1220.4 6102 1986-09-16 2024-10-11 01:41:42.000 1986-09-16 2024-10-11 01:41:42 +6103 6103 6104 610.3 1220.6000000000001 6103 1986-09-17 2024-10-11 01:41:43.000 1986-09-17 2024-10-11 01:41:43 +6104 6104 6105 610.4 1220.8 6104 1986-09-18 2024-10-11 01:41:44.000 1986-09-18 2024-10-11 01:41:44 +6106 6106 6107 610.6 1221.2 6106 1986-09-20 2024-10-11 01:41:46.000 1986-09-20 2024-10-11 01:41:46 +6107 6107 6108 610.7 1221.4 6107 1986-09-21 2024-10-11 01:41:47.000 1986-09-21 2024-10-11 01:41:47 +6108 6108 6109 610.8 1221.6000000000001 6108 1986-09-22 2024-10-11 01:41:48.000 1986-09-22 2024-10-11 01:41:48 +6109 6109 6110 610.9 1221.8 6109 1986-09-23 2024-10-11 01:41:49.000 1986-09-23 2024-10-11 01:41:49 +6111 6111 6112 611.1 1222.2 6111 1986-09-25 2024-10-11 01:41:51.000 1986-09-25 2024-10-11 01:41:51 +6112 6112 6113 611.2 1222.4 6112 1986-09-26 2024-10-11 01:41:52.000 1986-09-26 2024-10-11 01:41:52 +6113 6113 6114 611.3 1222.6000000000001 6113 1986-09-27 2024-10-11 01:41:53.000 1986-09-27 2024-10-11 01:41:53 +6114 6114 6115 611.4 1222.8 6114 1986-09-28 2024-10-11 01:41:54.000 1986-09-28 2024-10-11 01:41:54 +6116 6116 6117 611.6 1223.2 6116 1986-09-30 2024-10-11 01:41:56.000 1986-09-30 2024-10-11 01:41:56 +6117 6117 6118 611.7 1223.4 6117 1986-10-01 2024-10-11 01:41:57.000 1986-10-01 2024-10-11 01:41:57 +6118 6118 6119 611.8 1223.6000000000001 6118 1986-10-02 2024-10-11 01:41:58.000 1986-10-02 2024-10-11 01:41:58 +6119 6119 6120 611.9 1223.8 6119 1986-10-03 2024-10-11 01:41:59.000 1986-10-03 2024-10-11 01:41:59 +6121 6121 6122 612.1 1224.2 6121 1986-10-05 2024-10-11 01:42:01.000 1986-10-05 2024-10-11 01:42:01 +6122 6122 6123 612.2 1224.4 6122 1986-10-06 2024-10-11 01:42:02.000 1986-10-06 2024-10-11 01:42:02 +6123 6123 6124 612.3 1224.6000000000001 6123 1986-10-07 2024-10-11 01:42:03.000 1986-10-07 2024-10-11 01:42:03 +6124 6124 6125 612.4 1224.8 6124 1986-10-08 2024-10-11 01:42:04.000 1986-10-08 2024-10-11 01:42:04 +6126 6126 6127 612.6 1225.2 6126 1986-10-10 2024-10-11 01:42:06.000 1986-10-10 2024-10-11 01:42:06 +6127 6127 6128 612.7 1225.4 6127 1986-10-11 2024-10-11 01:42:07.000 1986-10-11 2024-10-11 01:42:07 +6128 6128 6129 612.8 1225.6000000000001 6128 1986-10-12 2024-10-11 01:42:08.000 1986-10-12 2024-10-11 01:42:08 +6129 6129 6130 612.9 1225.8 6129 1986-10-13 2024-10-11 01:42:09.000 1986-10-13 2024-10-11 01:42:09 +6131 6131 6132 613.1 1226.2 6131 1986-10-15 2024-10-11 01:42:11.000 1986-10-15 2024-10-11 01:42:11 +6132 6132 6133 613.2 1226.4 6132 1986-10-16 2024-10-11 01:42:12.000 1986-10-16 2024-10-11 01:42:12 +6133 6133 6134 613.3 1226.6000000000001 6133 1986-10-17 2024-10-11 01:42:13.000 1986-10-17 2024-10-11 01:42:13 +6134 6134 6135 613.4 1226.8 6134 1986-10-18 2024-10-11 01:42:14.000 1986-10-18 2024-10-11 01:42:14 +6136 6136 6137 613.6 1227.2 6136 1986-10-20 2024-10-11 01:42:16.000 1986-10-20 2024-10-11 01:42:16 +6137 6137 6138 613.7 1227.4 6137 1986-10-21 2024-10-11 01:42:17.000 1986-10-21 2024-10-11 01:42:17 +6138 6138 6139 613.8 1227.6000000000001 6138 1986-10-22 2024-10-11 01:42:18.000 1986-10-22 2024-10-11 01:42:18 +6139 6139 6140 613.9 1227.8 6139 1986-10-23 2024-10-11 01:42:19.000 1986-10-23 2024-10-11 01:42:19 +6141 6141 6142 614.1 1228.2 6141 1986-10-25 2024-10-11 01:42:21.000 1986-10-25 2024-10-11 01:42:21 +6142 6142 6143 614.2 1228.4 6142 1986-10-26 2024-10-11 01:42:22.000 1986-10-26 2024-10-11 01:42:22 +6143 6143 6144 614.3 1228.6000000000001 6143 1986-10-27 2024-10-11 01:42:23.000 1986-10-27 2024-10-11 01:42:23 +6144 6144 6145 614.4 1228.8000000000002 6144 1986-10-28 2024-10-11 01:42:24.000 1986-10-28 2024-10-11 01:42:24 +6146 6146 6147 614.6 1229.2 6146 1986-10-30 2024-10-11 01:42:26.000 1986-10-30 2024-10-11 01:42:26 +6147 6147 6148 614.7 1229.4 6147 1986-10-31 2024-10-11 01:42:27.000 1986-10-31 2024-10-11 01:42:27 +6148 6148 6149 614.8 1229.6000000000001 6148 1986-11-01 2024-10-11 01:42:28.000 1986-11-01 2024-10-11 01:42:28 +6149 6149 6150 614.9 1229.8000000000002 6149 1986-11-02 2024-10-11 01:42:29.000 1986-11-02 2024-10-11 01:42:29 +6151 6151 6152 615.1 1230.2 6151 1986-11-04 2024-10-11 01:42:31.000 1986-11-04 2024-10-11 01:42:31 +6152 6152 6153 615.2 1230.4 6152 1986-11-05 2024-10-11 01:42:32.000 1986-11-05 2024-10-11 01:42:32 +6153 6153 6154 615.3 1230.6000000000001 6153 1986-11-06 2024-10-11 01:42:33.000 1986-11-06 2024-10-11 01:42:33 +6154 6154 6155 615.4 1230.8000000000002 6154 1986-11-07 2024-10-11 01:42:34.000 1986-11-07 2024-10-11 01:42:34 +6156 6156 6157 615.6 1231.2 6156 1986-11-09 2024-10-11 01:42:36.000 1986-11-09 2024-10-11 01:42:36 +6157 6157 6158 615.7 1231.4 6157 1986-11-10 2024-10-11 01:42:37.000 1986-11-10 2024-10-11 01:42:37 +6158 6158 6159 615.8 1231.6000000000001 6158 1986-11-11 2024-10-11 01:42:38.000 1986-11-11 2024-10-11 01:42:38 +6159 6159 6160 615.9 1231.8000000000002 6159 1986-11-12 2024-10-11 01:42:39.000 1986-11-12 2024-10-11 01:42:39 +6161 6161 6162 616.1 1232.2 6161 1986-11-14 2024-10-11 01:42:41.000 1986-11-14 2024-10-11 01:42:41 +6162 6162 6163 616.2 1232.4 6162 1986-11-15 2024-10-11 01:42:42.000 1986-11-15 2024-10-11 01:42:42 +6163 6163 6164 616.3 1232.6000000000001 6163 1986-11-16 2024-10-11 01:42:43.000 1986-11-16 2024-10-11 01:42:43 +6164 6164 6165 616.4 1232.8000000000002 6164 1986-11-17 2024-10-11 01:42:44.000 1986-11-17 2024-10-11 01:42:44 +6166 6166 6167 616.6 1233.2 6166 1986-11-19 2024-10-11 01:42:46.000 1986-11-19 2024-10-11 01:42:46 +6167 6167 6168 616.7 1233.4 6167 1986-11-20 2024-10-11 01:42:47.000 1986-11-20 2024-10-11 01:42:47 +6168 6168 6169 616.8 1233.6000000000001 6168 1986-11-21 2024-10-11 01:42:48.000 1986-11-21 2024-10-11 01:42:48 +6169 6169 6170 616.9 1233.8000000000002 6169 1986-11-22 2024-10-11 01:42:49.000 1986-11-22 2024-10-11 01:42:49 +6171 6171 6172 617.1 1234.2 6171 1986-11-24 2024-10-11 01:42:51.000 1986-11-24 2024-10-11 01:42:51 +6172 6172 6173 617.2 1234.4 6172 1986-11-25 2024-10-11 01:42:52.000 1986-11-25 2024-10-11 01:42:52 +6173 6173 6174 617.3 1234.6000000000001 6173 1986-11-26 2024-10-11 01:42:53.000 1986-11-26 2024-10-11 01:42:53 +6174 6174 6175 617.4 1234.8000000000002 6174 1986-11-27 2024-10-11 01:42:54.000 1986-11-27 2024-10-11 01:42:54 +6176 6176 6177 617.6 1235.2 6176 1986-11-29 2024-10-11 01:42:56.000 1986-11-29 2024-10-11 01:42:56 +6177 6177 6178 617.7 1235.4 6177 1986-11-30 2024-10-11 01:42:57.000 1986-11-30 2024-10-11 01:42:57 +6178 6178 6179 617.8 1235.6000000000001 6178 1986-12-01 2024-10-11 01:42:58.000 1986-12-01 2024-10-11 01:42:58 +6179 6179 6180 617.9 1235.8000000000002 6179 1986-12-02 2024-10-11 01:42:59.000 1986-12-02 2024-10-11 01:42:59 +6181 6181 6182 618.1 1236.2 6181 1986-12-04 2024-10-11 01:43:01.000 1986-12-04 2024-10-11 01:43:01 +6182 6182 6183 618.2 1236.4 6182 1986-12-05 2024-10-11 01:43:02.000 1986-12-05 2024-10-11 01:43:02 +6183 6183 6184 618.3 1236.6000000000001 6183 1986-12-06 2024-10-11 01:43:03.000 1986-12-06 2024-10-11 01:43:03 +6184 6184 6185 618.4 1236.8000000000002 6184 1986-12-07 2024-10-11 01:43:04.000 1986-12-07 2024-10-11 01:43:04 +6186 6186 6187 618.6 1237.2 6186 1986-12-09 2024-10-11 01:43:06.000 1986-12-09 2024-10-11 01:43:06 +6187 6187 6188 618.7 1237.4 6187 1986-12-10 2024-10-11 01:43:07.000 1986-12-10 2024-10-11 01:43:07 +6188 6188 6189 618.8 1237.6000000000001 6188 1986-12-11 2024-10-11 01:43:08.000 1986-12-11 2024-10-11 01:43:08 +6189 6189 6190 618.9 1237.8000000000002 6189 1986-12-12 2024-10-11 01:43:09.000 1986-12-12 2024-10-11 01:43:09 +6191 6191 6192 619.1 1238.2 6191 1986-12-14 2024-10-11 01:43:11.000 1986-12-14 2024-10-11 01:43:11 +6192 6192 6193 619.2 1238.4 6192 1986-12-15 2024-10-11 01:43:12.000 1986-12-15 2024-10-11 01:43:12 +6193 6193 6194 619.3 1238.6000000000001 6193 1986-12-16 2024-10-11 01:43:13.000 1986-12-16 2024-10-11 01:43:13 +6194 6194 6195 619.4 1238.8000000000002 6194 1986-12-17 2024-10-11 01:43:14.000 1986-12-17 2024-10-11 01:43:14 +6196 6196 6197 619.6 1239.2 6196 1986-12-19 2024-10-11 01:43:16.000 1986-12-19 2024-10-11 01:43:16 +6197 6197 6198 619.7 1239.4 6197 1986-12-20 2024-10-11 01:43:17.000 1986-12-20 2024-10-11 01:43:17 +6198 6198 6199 619.8 1239.6000000000001 6198 1986-12-21 2024-10-11 01:43:18.000 1986-12-21 2024-10-11 01:43:18 +6199 6199 6200 619.9 1239.8000000000002 6199 1986-12-22 2024-10-11 01:43:19.000 1986-12-22 2024-10-11 01:43:19 +6201 6201 6202 620.1 1240.2 6201 1986-12-24 2024-10-11 01:43:21.000 1986-12-24 2024-10-11 01:43:21 +6202 6202 6203 620.2 1240.4 6202 1986-12-25 2024-10-11 01:43:22.000 1986-12-25 2024-10-11 01:43:22 +6203 6203 6204 620.3 1240.6000000000001 6203 1986-12-26 2024-10-11 01:43:23.000 1986-12-26 2024-10-11 01:43:23 +6204 6204 6205 620.4 1240.8000000000002 6204 1986-12-27 2024-10-11 01:43:24.000 1986-12-27 2024-10-11 01:43:24 +6206 6206 6207 620.6 1241.2 6206 1986-12-29 2024-10-11 01:43:26.000 1986-12-29 2024-10-11 01:43:26 +6207 6207 6208 620.7 1241.4 6207 1986-12-30 2024-10-11 01:43:27.000 1986-12-30 2024-10-11 01:43:27 +6208 6208 6209 620.8 1241.6000000000001 6208 1986-12-31 2024-10-11 01:43:28.000 1986-12-31 2024-10-11 01:43:28 +6209 6209 6210 620.9 1241.8000000000002 6209 1987-01-01 2024-10-11 01:43:29.000 1987-01-01 2024-10-11 01:43:29 +6211 6211 6212 621.1 1242.2 6211 1987-01-03 2024-10-11 01:43:31.000 1987-01-03 2024-10-11 01:43:31 +6212 6212 6213 621.2 1242.4 6212 1987-01-04 2024-10-11 01:43:32.000 1987-01-04 2024-10-11 01:43:32 +6213 6213 6214 621.3 1242.6000000000001 6213 1987-01-05 2024-10-11 01:43:33.000 1987-01-05 2024-10-11 01:43:33 +6214 6214 6215 621.4 1242.8000000000002 6214 1987-01-06 2024-10-11 01:43:34.000 1987-01-06 2024-10-11 01:43:34 +6216 6216 6217 621.6 1243.2 6216 1987-01-08 2024-10-11 01:43:36.000 1987-01-08 2024-10-11 01:43:36 +6217 6217 6218 621.7 1243.4 6217 1987-01-09 2024-10-11 01:43:37.000 1987-01-09 2024-10-11 01:43:37 +6218 6218 6219 621.8 1243.6000000000001 6218 1987-01-10 2024-10-11 01:43:38.000 1987-01-10 2024-10-11 01:43:38 +6219 6219 6220 621.9 1243.8000000000002 6219 1987-01-11 2024-10-11 01:43:39.000 1987-01-11 2024-10-11 01:43:39 +6221 6221 6222 622.1 1244.2 6221 1987-01-13 2024-10-11 01:43:41.000 1987-01-13 2024-10-11 01:43:41 +6222 6222 6223 622.2 1244.4 6222 1987-01-14 2024-10-11 01:43:42.000 1987-01-14 2024-10-11 01:43:42 +6223 6223 6224 622.3 1244.6000000000001 6223 1987-01-15 2024-10-11 01:43:43.000 1987-01-15 2024-10-11 01:43:43 +6224 6224 6225 622.4 1244.8000000000002 6224 1987-01-16 2024-10-11 01:43:44.000 1987-01-16 2024-10-11 01:43:44 +6226 6226 6227 622.6 1245.2 6226 1987-01-18 2024-10-11 01:43:46.000 1987-01-18 2024-10-11 01:43:46 +6227 6227 6228 622.7 1245.4 6227 1987-01-19 2024-10-11 01:43:47.000 1987-01-19 2024-10-11 01:43:47 +6228 6228 6229 622.8 1245.6000000000001 6228 1987-01-20 2024-10-11 01:43:48.000 1987-01-20 2024-10-11 01:43:48 +6229 6229 6230 622.9 1245.8000000000002 6229 1987-01-21 2024-10-11 01:43:49.000 1987-01-21 2024-10-11 01:43:49 +6231 6231 6232 623.1 1246.2 6231 1987-01-23 2024-10-11 01:43:51.000 1987-01-23 2024-10-11 01:43:51 +6232 6232 6233 623.2 1246.4 6232 1987-01-24 2024-10-11 01:43:52.000 1987-01-24 2024-10-11 01:43:52 +6233 6233 6234 623.3 1246.6000000000001 6233 1987-01-25 2024-10-11 01:43:53.000 1987-01-25 2024-10-11 01:43:53 +6234 6234 6235 623.4 1246.8000000000002 6234 1987-01-26 2024-10-11 01:43:54.000 1987-01-26 2024-10-11 01:43:54 +6236 6236 6237 623.6 1247.2 6236 1987-01-28 2024-10-11 01:43:56.000 1987-01-28 2024-10-11 01:43:56 +6237 6237 6238 623.7 1247.4 6237 1987-01-29 2024-10-11 01:43:57.000 1987-01-29 2024-10-11 01:43:57 +6238 6238 6239 623.8 1247.6000000000001 6238 1987-01-30 2024-10-11 01:43:58.000 1987-01-30 2024-10-11 01:43:58 +6239 6239 6240 623.9 1247.8000000000002 6239 1987-01-31 2024-10-11 01:43:59.000 1987-01-31 2024-10-11 01:43:59 +6241 6241 6242 624.1 1248.2 6241 1987-02-02 2024-10-11 01:44:01.000 1987-02-02 2024-10-11 01:44:01 +6242 6242 6243 624.2 1248.4 6242 1987-02-03 2024-10-11 01:44:02.000 1987-02-03 2024-10-11 01:44:02 +6243 6243 6244 624.3 1248.6000000000001 6243 1987-02-04 2024-10-11 01:44:03.000 1987-02-04 2024-10-11 01:44:03 +6244 6244 6245 624.4 1248.8000000000002 6244 1987-02-05 2024-10-11 01:44:04.000 1987-02-05 2024-10-11 01:44:04 +6246 6246 6247 624.6 1249.2 6246 1987-02-07 2024-10-11 01:44:06.000 1987-02-07 2024-10-11 01:44:06 +6247 6247 6248 624.7 1249.4 6247 1987-02-08 2024-10-11 01:44:07.000 1987-02-08 2024-10-11 01:44:07 +6248 6248 6249 624.8 1249.6000000000001 6248 1987-02-09 2024-10-11 01:44:08.000 1987-02-09 2024-10-11 01:44:08 +6249 6249 6250 624.9 1249.8000000000002 6249 1987-02-10 2024-10-11 01:44:09.000 1987-02-10 2024-10-11 01:44:09 +6251 6251 6252 625.1 1250.2 6251 1987-02-12 2024-10-11 01:44:11.000 1987-02-12 2024-10-11 01:44:11 +6252 6252 6253 625.2 1250.4 6252 1987-02-13 2024-10-11 01:44:12.000 1987-02-13 2024-10-11 01:44:12 +6253 6253 6254 625.3 1250.6000000000001 6253 1987-02-14 2024-10-11 01:44:13.000 1987-02-14 2024-10-11 01:44:13 +6254 6254 6255 625.4 1250.8000000000002 6254 1987-02-15 2024-10-11 01:44:14.000 1987-02-15 2024-10-11 01:44:14 +6256 6256 6257 625.6 1251.2 6256 1987-02-17 2024-10-11 01:44:16.000 1987-02-17 2024-10-11 01:44:16 +6257 6257 6258 625.7 1251.4 6257 1987-02-18 2024-10-11 01:44:17.000 1987-02-18 2024-10-11 01:44:17 +6258 6258 6259 625.8 1251.6000000000001 6258 1987-02-19 2024-10-11 01:44:18.000 1987-02-19 2024-10-11 01:44:18 +6259 6259 6260 625.9 1251.8000000000002 6259 1987-02-20 2024-10-11 01:44:19.000 1987-02-20 2024-10-11 01:44:19 +6261 6261 6262 626.1 1252.2 6261 1987-02-22 2024-10-11 01:44:21.000 1987-02-22 2024-10-11 01:44:21 +6262 6262 6263 626.2 1252.4 6262 1987-02-23 2024-10-11 01:44:22.000 1987-02-23 2024-10-11 01:44:22 +6263 6263 6264 626.3 1252.6000000000001 6263 1987-02-24 2024-10-11 01:44:23.000 1987-02-24 2024-10-11 01:44:23 +6264 6264 6265 626.4 1252.8000000000002 6264 1987-02-25 2024-10-11 01:44:24.000 1987-02-25 2024-10-11 01:44:24 +6266 6266 6267 626.6 1253.2 6266 1987-02-27 2024-10-11 01:44:26.000 1987-02-27 2024-10-11 01:44:26 +6267 6267 6268 626.7 1253.4 6267 1987-02-28 2024-10-11 01:44:27.000 1987-02-28 2024-10-11 01:44:27 +6268 6268 6269 626.8 1253.6000000000001 6268 1987-03-01 2024-10-11 01:44:28.000 1987-03-01 2024-10-11 01:44:28 +6269 6269 6270 626.9 1253.8000000000002 6269 1987-03-02 2024-10-11 01:44:29.000 1987-03-02 2024-10-11 01:44:29 +6271 6271 6272 627.1 1254.2 6271 1987-03-04 2024-10-11 01:44:31.000 1987-03-04 2024-10-11 01:44:31 +6272 6272 6273 627.2 1254.4 6272 1987-03-05 2024-10-11 01:44:32.000 1987-03-05 2024-10-11 01:44:32 +6273 6273 6274 627.3 1254.6000000000001 6273 1987-03-06 2024-10-11 01:44:33.000 1987-03-06 2024-10-11 01:44:33 +6274 6274 6275 627.4 1254.8000000000002 6274 1987-03-07 2024-10-11 01:44:34.000 1987-03-07 2024-10-11 01:44:34 +6276 6276 6277 627.6 1255.2 6276 1987-03-09 2024-10-11 01:44:36.000 1987-03-09 2024-10-11 01:44:36 +6277 6277 6278 627.7 1255.4 6277 1987-03-10 2024-10-11 01:44:37.000 1987-03-10 2024-10-11 01:44:37 +6278 6278 6279 627.8 1255.6000000000001 6278 1987-03-11 2024-10-11 01:44:38.000 1987-03-11 2024-10-11 01:44:38 +6279 6279 6280 627.9 1255.8000000000002 6279 1987-03-12 2024-10-11 01:44:39.000 1987-03-12 2024-10-11 01:44:39 +6281 6281 6282 628.1 1256.2 6281 1987-03-14 2024-10-11 01:44:41.000 1987-03-14 2024-10-11 01:44:41 +6282 6282 6283 628.2 1256.4 6282 1987-03-15 2024-10-11 01:44:42.000 1987-03-15 2024-10-11 01:44:42 +6283 6283 6284 628.3 1256.6000000000001 6283 1987-03-16 2024-10-11 01:44:43.000 1987-03-16 2024-10-11 01:44:43 +6284 6284 6285 628.4 1256.8000000000002 6284 1987-03-17 2024-10-11 01:44:44.000 1987-03-17 2024-10-11 01:44:44 +6286 6286 6287 628.6 1257.2 6286 1987-03-19 2024-10-11 01:44:46.000 1987-03-19 2024-10-11 01:44:46 +6287 6287 6288 628.7 1257.4 6287 1987-03-20 2024-10-11 01:44:47.000 1987-03-20 2024-10-11 01:44:47 +6288 6288 6289 628.8 1257.6000000000001 6288 1987-03-21 2024-10-11 01:44:48.000 1987-03-21 2024-10-11 01:44:48 +6289 6289 6290 628.9 1257.8000000000002 6289 1987-03-22 2024-10-11 01:44:49.000 1987-03-22 2024-10-11 01:44:49 +6291 6291 6292 629.1 1258.2 6291 1987-03-24 2024-10-11 01:44:51.000 1987-03-24 2024-10-11 01:44:51 +6292 6292 6293 629.2 1258.4 6292 1987-03-25 2024-10-11 01:44:52.000 1987-03-25 2024-10-11 01:44:52 +6293 6293 6294 629.3 1258.6000000000001 6293 1987-03-26 2024-10-11 01:44:53.000 1987-03-26 2024-10-11 01:44:53 +6294 6294 6295 629.4 1258.8000000000002 6294 1987-03-27 2024-10-11 01:44:54.000 1987-03-27 2024-10-11 01:44:54 +6296 6296 6297 629.6 1259.2 6296 1987-03-29 2024-10-11 01:44:56.000 1987-03-29 2024-10-11 01:44:56 +6297 6297 6298 629.7 1259.4 6297 1987-03-30 2024-10-11 01:44:57.000 1987-03-30 2024-10-11 01:44:57 +6298 6298 6299 629.8 1259.6000000000001 6298 1987-03-31 2024-10-11 01:44:58.000 1987-03-31 2024-10-11 01:44:58 +6299 6299 6300 629.9 1259.8000000000002 6299 1987-04-01 2024-10-11 01:44:59.000 1987-04-01 2024-10-11 01:44:59 +6301 6301 6302 630.1 1260.2 6301 1987-04-03 2024-10-11 01:45:01.000 1987-04-03 2024-10-11 01:45:01 +6302 6302 6303 630.2 1260.4 6302 1987-04-04 2024-10-11 01:45:02.000 1987-04-04 2024-10-11 01:45:02 +6303 6303 6304 630.3 1260.6000000000001 6303 1987-04-05 2024-10-11 01:45:03.000 1987-04-05 2024-10-11 01:45:03 +6304 6304 6305 630.4 1260.8000000000002 6304 1987-04-06 2024-10-11 01:45:04.000 1987-04-06 2024-10-11 01:45:04 +6306 6306 6307 630.6 1261.2 6306 1987-04-08 2024-10-11 01:45:06.000 1987-04-08 2024-10-11 01:45:06 +6307 6307 6308 630.7 1261.4 6307 1987-04-09 2024-10-11 01:45:07.000 1987-04-09 2024-10-11 01:45:07 +6308 6308 6309 630.8 1261.6000000000001 6308 1987-04-10 2024-10-11 01:45:08.000 1987-04-10 2024-10-11 01:45:08 +6309 6309 6310 630.9 1261.8000000000002 6309 1987-04-11 2024-10-11 01:45:09.000 1987-04-11 2024-10-11 01:45:09 +6311 6311 6312 631.1 1262.2 6311 1987-04-13 2024-10-11 01:45:11.000 1987-04-13 2024-10-11 01:45:11 +6312 6312 6313 631.2 1262.4 6312 1987-04-14 2024-10-11 01:45:12.000 1987-04-14 2024-10-11 01:45:12 +6313 6313 6314 631.3 1262.6000000000001 6313 1987-04-15 2024-10-11 01:45:13.000 1987-04-15 2024-10-11 01:45:13 +6314 6314 6315 631.4 1262.8000000000002 6314 1987-04-16 2024-10-11 01:45:14.000 1987-04-16 2024-10-11 01:45:14 +6316 6316 6317 631.6 1263.2 6316 1987-04-18 2024-10-11 01:45:16.000 1987-04-18 2024-10-11 01:45:16 +6317 6317 6318 631.7 1263.4 6317 1987-04-19 2024-10-11 01:45:17.000 1987-04-19 2024-10-11 01:45:17 +6318 6318 6319 631.8 1263.6000000000001 6318 1987-04-20 2024-10-11 01:45:18.000 1987-04-20 2024-10-11 01:45:18 +6319 6319 6320 631.9 1263.8000000000002 6319 1987-04-21 2024-10-11 01:45:19.000 1987-04-21 2024-10-11 01:45:19 +6321 6321 6322 632.1 1264.2 6321 1987-04-23 2024-10-11 01:45:21.000 1987-04-23 2024-10-11 01:45:21 +6322 6322 6323 632.2 1264.4 6322 1987-04-24 2024-10-11 01:45:22.000 1987-04-24 2024-10-11 01:45:22 +6323 6323 6324 632.3 1264.6000000000001 6323 1987-04-25 2024-10-11 01:45:23.000 1987-04-25 2024-10-11 01:45:23 +6324 6324 6325 632.4 1264.8000000000002 6324 1987-04-26 2024-10-11 01:45:24.000 1987-04-26 2024-10-11 01:45:24 +6326 6326 6327 632.6 1265.2 6326 1987-04-28 2024-10-11 01:45:26.000 1987-04-28 2024-10-11 01:45:26 +6327 6327 6328 632.7 1265.4 6327 1987-04-29 2024-10-11 01:45:27.000 1987-04-29 2024-10-11 01:45:27 +6328 6328 6329 632.8 1265.6000000000001 6328 1987-04-30 2024-10-11 01:45:28.000 1987-04-30 2024-10-11 01:45:28 +6329 6329 6330 632.9 1265.8000000000002 6329 1987-05-01 2024-10-11 01:45:29.000 1987-05-01 2024-10-11 01:45:29 +6331 6331 6332 633.1 1266.2 6331 1987-05-03 2024-10-11 01:45:31.000 1987-05-03 2024-10-11 01:45:31 +6332 6332 6333 633.2 1266.4 6332 1987-05-04 2024-10-11 01:45:32.000 1987-05-04 2024-10-11 01:45:32 +6333 6333 6334 633.3 1266.6000000000001 6333 1987-05-05 2024-10-11 01:45:33.000 1987-05-05 2024-10-11 01:45:33 +6334 6334 6335 633.4 1266.8000000000002 6334 1987-05-06 2024-10-11 01:45:34.000 1987-05-06 2024-10-11 01:45:34 +6336 6336 6337 633.6 1267.2 6336 1987-05-08 2024-10-11 01:45:36.000 1987-05-08 2024-10-11 01:45:36 +6337 6337 6338 633.7 1267.4 6337 1987-05-09 2024-10-11 01:45:37.000 1987-05-09 2024-10-11 01:45:37 +6338 6338 6339 633.8 1267.6000000000001 6338 1987-05-10 2024-10-11 01:45:38.000 1987-05-10 2024-10-11 01:45:38 +6339 6339 6340 633.9 1267.8000000000002 6339 1987-05-11 2024-10-11 01:45:39.000 1987-05-11 2024-10-11 01:45:39 +6341 6341 6342 634.1 1268.2 6341 1987-05-13 2024-10-11 01:45:41.000 1987-05-13 2024-10-11 01:45:41 +6342 6342 6343 634.2 1268.4 6342 1987-05-14 2024-10-11 01:45:42.000 1987-05-14 2024-10-11 01:45:42 +6343 6343 6344 634.3 1268.6000000000001 6343 1987-05-15 2024-10-11 01:45:43.000 1987-05-15 2024-10-11 01:45:43 +6344 6344 6345 634.4 1268.8000000000002 6344 1987-05-16 2024-10-11 01:45:44.000 1987-05-16 2024-10-11 01:45:44 +6346 6346 6347 634.6 1269.2 6346 1987-05-18 2024-10-11 01:45:46.000 1987-05-18 2024-10-11 01:45:46 +6347 6347 6348 634.7 1269.4 6347 1987-05-19 2024-10-11 01:45:47.000 1987-05-19 2024-10-11 01:45:47 +6348 6348 6349 634.8 1269.6000000000001 6348 1987-05-20 2024-10-11 01:45:48.000 1987-05-20 2024-10-11 01:45:48 +6349 6349 6350 634.9 1269.8000000000002 6349 1987-05-21 2024-10-11 01:45:49.000 1987-05-21 2024-10-11 01:45:49 +6351 6351 6352 635.1 1270.2 6351 1987-05-23 2024-10-11 01:45:51.000 1987-05-23 2024-10-11 01:45:51 +6352 6352 6353 635.2 1270.4 6352 1987-05-24 2024-10-11 01:45:52.000 1987-05-24 2024-10-11 01:45:52 +6353 6353 6354 635.3 1270.6000000000001 6353 1987-05-25 2024-10-11 01:45:53.000 1987-05-25 2024-10-11 01:45:53 +6354 6354 6355 635.4 1270.8000000000002 6354 1987-05-26 2024-10-11 01:45:54.000 1987-05-26 2024-10-11 01:45:54 +6356 6356 6357 635.6 1271.2 6356 1987-05-28 2024-10-11 01:45:56.000 1987-05-28 2024-10-11 01:45:56 +6357 6357 6358 635.7 1271.4 6357 1987-05-29 2024-10-11 01:45:57.000 1987-05-29 2024-10-11 01:45:57 +6358 6358 6359 635.8 1271.6000000000001 6358 1987-05-30 2024-10-11 01:45:58.000 1987-05-30 2024-10-11 01:45:58 +6359 6359 6360 635.9 1271.8000000000002 6359 1987-05-31 2024-10-11 01:45:59.000 1987-05-31 2024-10-11 01:45:59 +6361 6361 6362 636.1 1272.2 6361 1987-06-02 2024-10-11 01:46:01.000 1987-06-02 2024-10-11 01:46:01 +6362 6362 6363 636.2 1272.4 6362 1987-06-03 2024-10-11 01:46:02.000 1987-06-03 2024-10-11 01:46:02 +6363 6363 6364 636.3 1272.6000000000001 6363 1987-06-04 2024-10-11 01:46:03.000 1987-06-04 2024-10-11 01:46:03 +6364 6364 6365 636.4 1272.8000000000002 6364 1987-06-05 2024-10-11 01:46:04.000 1987-06-05 2024-10-11 01:46:04 +6366 6366 6367 636.6 1273.2 6366 1987-06-07 2024-10-11 01:46:06.000 1987-06-07 2024-10-11 01:46:06 +6367 6367 6368 636.7 1273.4 6367 1987-06-08 2024-10-11 01:46:07.000 1987-06-08 2024-10-11 01:46:07 +6368 6368 6369 636.8 1273.6000000000001 6368 1987-06-09 2024-10-11 01:46:08.000 1987-06-09 2024-10-11 01:46:08 +6369 6369 6370 636.9 1273.8000000000002 6369 1987-06-10 2024-10-11 01:46:09.000 1987-06-10 2024-10-11 01:46:09 +6371 6371 6372 637.1 1274.2 6371 1987-06-12 2024-10-11 01:46:11.000 1987-06-12 2024-10-11 01:46:11 +6372 6372 6373 637.2 1274.4 6372 1987-06-13 2024-10-11 01:46:12.000 1987-06-13 2024-10-11 01:46:12 +6373 6373 6374 637.3 1274.6000000000001 6373 1987-06-14 2024-10-11 01:46:13.000 1987-06-14 2024-10-11 01:46:13 +6374 6374 6375 637.4 1274.8000000000002 6374 1987-06-15 2024-10-11 01:46:14.000 1987-06-15 2024-10-11 01:46:14 +6376 6376 6377 637.6 1275.2 6376 1987-06-17 2024-10-11 01:46:16.000 1987-06-17 2024-10-11 01:46:16 +6377 6377 6378 637.7 1275.4 6377 1987-06-18 2024-10-11 01:46:17.000 1987-06-18 2024-10-11 01:46:17 +6378 6378 6379 637.8 1275.6000000000001 6378 1987-06-19 2024-10-11 01:46:18.000 1987-06-19 2024-10-11 01:46:18 +6379 6379 6380 637.9 1275.8000000000002 6379 1987-06-20 2024-10-11 01:46:19.000 1987-06-20 2024-10-11 01:46:19 +6381 6381 6382 638.1 1276.2 6381 1987-06-22 2024-10-11 01:46:21.000 1987-06-22 2024-10-11 01:46:21 +6382 6382 6383 638.2 1276.4 6382 1987-06-23 2024-10-11 01:46:22.000 1987-06-23 2024-10-11 01:46:22 +6383 6383 6384 638.3 1276.6000000000001 6383 1987-06-24 2024-10-11 01:46:23.000 1987-06-24 2024-10-11 01:46:23 +6384 6384 6385 638.4 1276.8000000000002 6384 1987-06-25 2024-10-11 01:46:24.000 1987-06-25 2024-10-11 01:46:24 +6386 6386 6387 638.6 1277.2 6386 1987-06-27 2024-10-11 01:46:26.000 1987-06-27 2024-10-11 01:46:26 +6387 6387 6388 638.7 1277.4 6387 1987-06-28 2024-10-11 01:46:27.000 1987-06-28 2024-10-11 01:46:27 +6388 6388 6389 638.8 1277.6000000000001 6388 1987-06-29 2024-10-11 01:46:28.000 1987-06-29 2024-10-11 01:46:28 +6389 6389 6390 638.9 1277.8000000000002 6389 1987-06-30 2024-10-11 01:46:29.000 1987-06-30 2024-10-11 01:46:29 +6391 6391 6392 639.1 1278.2 6391 1987-07-02 2024-10-11 01:46:31.000 1987-07-02 2024-10-11 01:46:31 +6392 6392 6393 639.2 1278.4 6392 1987-07-03 2024-10-11 01:46:32.000 1987-07-03 2024-10-11 01:46:32 +6393 6393 6394 639.3 1278.6000000000001 6393 1987-07-04 2024-10-11 01:46:33.000 1987-07-04 2024-10-11 01:46:33 +6394 6394 6395 639.4 1278.8000000000002 6394 1987-07-05 2024-10-11 01:46:34.000 1987-07-05 2024-10-11 01:46:34 +6396 6396 6397 639.6 1279.2 6396 1987-07-07 2024-10-11 01:46:36.000 1987-07-07 2024-10-11 01:46:36 +6397 6397 6398 639.7 1279.4 6397 1987-07-08 2024-10-11 01:46:37.000 1987-07-08 2024-10-11 01:46:37 +6398 6398 6399 639.8 1279.6000000000001 6398 1987-07-09 2024-10-11 01:46:38.000 1987-07-09 2024-10-11 01:46:38 +6399 6399 6400 639.9 1279.8000000000002 6399 1987-07-10 2024-10-11 01:46:39.000 1987-07-10 2024-10-11 01:46:39 +6401 6401 6402 640.1 1280.2 6401 1987-07-12 2024-10-11 01:46:41.000 1987-07-12 2024-10-11 01:46:41 +6402 6402 6403 640.2 1280.4 6402 1987-07-13 2024-10-11 01:46:42.000 1987-07-13 2024-10-11 01:46:42 +6403 6403 6404 640.3 1280.6000000000001 6403 1987-07-14 2024-10-11 01:46:43.000 1987-07-14 2024-10-11 01:46:43 +6404 6404 6405 640.4 1280.8000000000002 6404 1987-07-15 2024-10-11 01:46:44.000 1987-07-15 2024-10-11 01:46:44 +6406 6406 6407 640.6 1281.2 6406 1987-07-17 2024-10-11 01:46:46.000 1987-07-17 2024-10-11 01:46:46 +6407 6407 6408 640.7 1281.4 6407 1987-07-18 2024-10-11 01:46:47.000 1987-07-18 2024-10-11 01:46:47 +6408 6408 6409 640.8 1281.6000000000001 6408 1987-07-19 2024-10-11 01:46:48.000 1987-07-19 2024-10-11 01:46:48 +6409 6409 6410 640.9 1281.8000000000002 6409 1987-07-20 2024-10-11 01:46:49.000 1987-07-20 2024-10-11 01:46:49 +6411 6411 6412 641.1 1282.2 6411 1987-07-22 2024-10-11 01:46:51.000 1987-07-22 2024-10-11 01:46:51 +6412 6412 6413 641.2 1282.4 6412 1987-07-23 2024-10-11 01:46:52.000 1987-07-23 2024-10-11 01:46:52 +6413 6413 6414 641.3 1282.6000000000001 6413 1987-07-24 2024-10-11 01:46:53.000 1987-07-24 2024-10-11 01:46:53 +6414 6414 6415 641.4 1282.8000000000002 6414 1987-07-25 2024-10-11 01:46:54.000 1987-07-25 2024-10-11 01:46:54 +6416 6416 6417 641.6 1283.2 6416 1987-07-27 2024-10-11 01:46:56.000 1987-07-27 2024-10-11 01:46:56 +6417 6417 6418 641.7 1283.4 6417 1987-07-28 2024-10-11 01:46:57.000 1987-07-28 2024-10-11 01:46:57 +6418 6418 6419 641.8 1283.6000000000001 6418 1987-07-29 2024-10-11 01:46:58.000 1987-07-29 2024-10-11 01:46:58 +6419 6419 6420 641.9 1283.8000000000002 6419 1987-07-30 2024-10-11 01:46:59.000 1987-07-30 2024-10-11 01:46:59 +6421 6421 6422 642.1 1284.2 6421 1987-08-01 2024-10-11 01:47:01.000 1987-08-01 2024-10-11 01:47:01 +6422 6422 6423 642.2 1284.4 6422 1987-08-02 2024-10-11 01:47:02.000 1987-08-02 2024-10-11 01:47:02 +6423 6423 6424 642.3 1284.6000000000001 6423 1987-08-03 2024-10-11 01:47:03.000 1987-08-03 2024-10-11 01:47:03 +6424 6424 6425 642.4 1284.8000000000002 6424 1987-08-04 2024-10-11 01:47:04.000 1987-08-04 2024-10-11 01:47:04 +6426 6426 6427 642.6 1285.2 6426 1987-08-06 2024-10-11 01:47:06.000 1987-08-06 2024-10-11 01:47:06 +6427 6427 6428 642.7 1285.4 6427 1987-08-07 2024-10-11 01:47:07.000 1987-08-07 2024-10-11 01:47:07 +6428 6428 6429 642.8 1285.6000000000001 6428 1987-08-08 2024-10-11 01:47:08.000 1987-08-08 2024-10-11 01:47:08 +6429 6429 6430 642.9 1285.8000000000002 6429 1987-08-09 2024-10-11 01:47:09.000 1987-08-09 2024-10-11 01:47:09 +6431 6431 6432 643.1 1286.2 6431 1987-08-11 2024-10-11 01:47:11.000 1987-08-11 2024-10-11 01:47:11 +6432 6432 6433 643.2 1286.4 6432 1987-08-12 2024-10-11 01:47:12.000 1987-08-12 2024-10-11 01:47:12 +6433 6433 6434 643.3 1286.6000000000001 6433 1987-08-13 2024-10-11 01:47:13.000 1987-08-13 2024-10-11 01:47:13 +6434 6434 6435 643.4 1286.8000000000002 6434 1987-08-14 2024-10-11 01:47:14.000 1987-08-14 2024-10-11 01:47:14 +6436 6436 6437 643.6 1287.2 6436 1987-08-16 2024-10-11 01:47:16.000 1987-08-16 2024-10-11 01:47:16 +6437 6437 6438 643.7 1287.4 6437 1987-08-17 2024-10-11 01:47:17.000 1987-08-17 2024-10-11 01:47:17 +6438 6438 6439 643.8 1287.6000000000001 6438 1987-08-18 2024-10-11 01:47:18.000 1987-08-18 2024-10-11 01:47:18 +6439 6439 6440 643.9 1287.8000000000002 6439 1987-08-19 2024-10-11 01:47:19.000 1987-08-19 2024-10-11 01:47:19 +6441 6441 6442 644.1 1288.2 6441 1987-08-21 2024-10-11 01:47:21.000 1987-08-21 2024-10-11 01:47:21 +6442 6442 6443 644.2 1288.4 6442 1987-08-22 2024-10-11 01:47:22.000 1987-08-22 2024-10-11 01:47:22 +6443 6443 6444 644.3 1288.6000000000001 6443 1987-08-23 2024-10-11 01:47:23.000 1987-08-23 2024-10-11 01:47:23 +6444 6444 6445 644.4 1288.8000000000002 6444 1987-08-24 2024-10-11 01:47:24.000 1987-08-24 2024-10-11 01:47:24 +6446 6446 6447 644.6 1289.2 6446 1987-08-26 2024-10-11 01:47:26.000 1987-08-26 2024-10-11 01:47:26 +6447 6447 6448 644.7 1289.4 6447 1987-08-27 2024-10-11 01:47:27.000 1987-08-27 2024-10-11 01:47:27 +6448 6448 6449 644.8 1289.6000000000001 6448 1987-08-28 2024-10-11 01:47:28.000 1987-08-28 2024-10-11 01:47:28 +6449 6449 6450 644.9 1289.8000000000002 6449 1987-08-29 2024-10-11 01:47:29.000 1987-08-29 2024-10-11 01:47:29 +6451 6451 6452 645.1 1290.2 6451 1987-08-31 2024-10-11 01:47:31.000 1987-08-31 2024-10-11 01:47:31 +6452 6452 6453 645.2 1290.4 6452 1987-09-01 2024-10-11 01:47:32.000 1987-09-01 2024-10-11 01:47:32 +6453 6453 6454 645.3 1290.6000000000001 6453 1987-09-02 2024-10-11 01:47:33.000 1987-09-02 2024-10-11 01:47:33 +6454 6454 6455 645.4 1290.8000000000002 6454 1987-09-03 2024-10-11 01:47:34.000 1987-09-03 2024-10-11 01:47:34 +6456 6456 6457 645.6 1291.2 6456 1987-09-05 2024-10-11 01:47:36.000 1987-09-05 2024-10-11 01:47:36 +6457 6457 6458 645.7 1291.4 6457 1987-09-06 2024-10-11 01:47:37.000 1987-09-06 2024-10-11 01:47:37 +6458 6458 6459 645.8 1291.6000000000001 6458 1987-09-07 2024-10-11 01:47:38.000 1987-09-07 2024-10-11 01:47:38 +6459 6459 6460 645.9 1291.8000000000002 6459 1987-09-08 2024-10-11 01:47:39.000 1987-09-08 2024-10-11 01:47:39 +6461 6461 6462 646.1 1292.2 6461 1987-09-10 2024-10-11 01:47:41.000 1987-09-10 2024-10-11 01:47:41 +6462 6462 6463 646.2 1292.4 6462 1987-09-11 2024-10-11 01:47:42.000 1987-09-11 2024-10-11 01:47:42 +6463 6463 6464 646.3 1292.6000000000001 6463 1987-09-12 2024-10-11 01:47:43.000 1987-09-12 2024-10-11 01:47:43 +6464 6464 6465 646.4 1292.8000000000002 6464 1987-09-13 2024-10-11 01:47:44.000 1987-09-13 2024-10-11 01:47:44 +6466 6466 6467 646.6 1293.2 6466 1987-09-15 2024-10-11 01:47:46.000 1987-09-15 2024-10-11 01:47:46 +6467 6467 6468 646.7 1293.4 6467 1987-09-16 2024-10-11 01:47:47.000 1987-09-16 2024-10-11 01:47:47 +6468 6468 6469 646.8 1293.6000000000001 6468 1987-09-17 2024-10-11 01:47:48.000 1987-09-17 2024-10-11 01:47:48 +6469 6469 6470 646.9 1293.8000000000002 6469 1987-09-18 2024-10-11 01:47:49.000 1987-09-18 2024-10-11 01:47:49 +6471 6471 6472 647.1 1294.2 6471 1987-09-20 2024-10-11 01:47:51.000 1987-09-20 2024-10-11 01:47:51 +6472 6472 6473 647.2 1294.4 6472 1987-09-21 2024-10-11 01:47:52.000 1987-09-21 2024-10-11 01:47:52 +6473 6473 6474 647.3 1294.6000000000001 6473 1987-09-22 2024-10-11 01:47:53.000 1987-09-22 2024-10-11 01:47:53 +6474 6474 6475 647.4 1294.8000000000002 6474 1987-09-23 2024-10-11 01:47:54.000 1987-09-23 2024-10-11 01:47:54 +6476 6476 6477 647.6 1295.2 6476 1987-09-25 2024-10-11 01:47:56.000 1987-09-25 2024-10-11 01:47:56 +6477 6477 6478 647.7 1295.4 6477 1987-09-26 2024-10-11 01:47:57.000 1987-09-26 2024-10-11 01:47:57 +6478 6478 6479 647.8 1295.6000000000001 6478 1987-09-27 2024-10-11 01:47:58.000 1987-09-27 2024-10-11 01:47:58 +6479 6479 6480 647.9 1295.8000000000002 6479 1987-09-28 2024-10-11 01:47:59.000 1987-09-28 2024-10-11 01:47:59 +6481 6481 6482 648.1 1296.2 6481 1987-09-30 2024-10-11 01:48:01.000 1987-09-30 2024-10-11 01:48:01 +6482 6482 6483 648.2 1296.4 6482 1987-10-01 2024-10-11 01:48:02.000 1987-10-01 2024-10-11 01:48:02 +6483 6483 6484 648.3 1296.6000000000001 6483 1987-10-02 2024-10-11 01:48:03.000 1987-10-02 2024-10-11 01:48:03 +6484 6484 6485 648.4 1296.8000000000002 6484 1987-10-03 2024-10-11 01:48:04.000 1987-10-03 2024-10-11 01:48:04 +6486 6486 6487 648.6 1297.2 6486 1987-10-05 2024-10-11 01:48:06.000 1987-10-05 2024-10-11 01:48:06 +6487 6487 6488 648.7 1297.4 6487 1987-10-06 2024-10-11 01:48:07.000 1987-10-06 2024-10-11 01:48:07 +6488 6488 6489 648.8 1297.6000000000001 6488 1987-10-07 2024-10-11 01:48:08.000 1987-10-07 2024-10-11 01:48:08 +6489 6489 6490 648.9 1297.8000000000002 6489 1987-10-08 2024-10-11 01:48:09.000 1987-10-08 2024-10-11 01:48:09 +6491 6491 6492 649.1 1298.2 6491 1987-10-10 2024-10-11 01:48:11.000 1987-10-10 2024-10-11 01:48:11 +6492 6492 6493 649.2 1298.4 6492 1987-10-11 2024-10-11 01:48:12.000 1987-10-11 2024-10-11 01:48:12 +6493 6493 6494 649.3 1298.6000000000001 6493 1987-10-12 2024-10-11 01:48:13.000 1987-10-12 2024-10-11 01:48:13 +6494 6494 6495 649.4 1298.8000000000002 6494 1987-10-13 2024-10-11 01:48:14.000 1987-10-13 2024-10-11 01:48:14 +6496 6496 6497 649.6 1299.2 6496 1987-10-15 2024-10-11 01:48:16.000 1987-10-15 2024-10-11 01:48:16 +6497 6497 6498 649.7 1299.4 6497 1987-10-16 2024-10-11 01:48:17.000 1987-10-16 2024-10-11 01:48:17 +6498 6498 6499 649.8 1299.6000000000001 6498 1987-10-17 2024-10-11 01:48:18.000 1987-10-17 2024-10-11 01:48:18 +6499 6499 6500 649.9 1299.8000000000002 6499 1987-10-18 2024-10-11 01:48:19.000 1987-10-18 2024-10-11 01:48:19 +6501 6501 6502 650.1 1300.2 6501 1987-10-20 2024-10-11 01:48:21.000 1987-10-20 2024-10-11 01:48:21 +6502 6502 6503 650.2 1300.4 6502 1987-10-21 2024-10-11 01:48:22.000 1987-10-21 2024-10-11 01:48:22 +6503 6503 6504 650.3 1300.6000000000001 6503 1987-10-22 2024-10-11 01:48:23.000 1987-10-22 2024-10-11 01:48:23 +6504 6504 6505 650.4 1300.8000000000002 6504 1987-10-23 2024-10-11 01:48:24.000 1987-10-23 2024-10-11 01:48:24 +6506 6506 6507 650.6 1301.2 6506 1987-10-25 2024-10-11 01:48:26.000 1987-10-25 2024-10-11 01:48:26 +6507 6507 6508 650.7 1301.4 6507 1987-10-26 2024-10-11 01:48:27.000 1987-10-26 2024-10-11 01:48:27 +6508 6508 6509 650.8 1301.6000000000001 6508 1987-10-27 2024-10-11 01:48:28.000 1987-10-27 2024-10-11 01:48:28 +6509 6509 6510 650.9 1301.8000000000002 6509 1987-10-28 2024-10-11 01:48:29.000 1987-10-28 2024-10-11 01:48:29 +6511 6511 6512 651.1 1302.2 6511 1987-10-30 2024-10-11 01:48:31.000 1987-10-30 2024-10-11 01:48:31 +6512 6512 6513 651.2 1302.4 6512 1987-10-31 2024-10-11 01:48:32.000 1987-10-31 2024-10-11 01:48:32 +6513 6513 6514 651.3 1302.6000000000001 6513 1987-11-01 2024-10-11 01:48:33.000 1987-11-01 2024-10-11 01:48:33 +6514 6514 6515 651.4 1302.8000000000002 6514 1987-11-02 2024-10-11 01:48:34.000 1987-11-02 2024-10-11 01:48:34 +6516 6516 6517 651.6 1303.2 6516 1987-11-04 2024-10-11 01:48:36.000 1987-11-04 2024-10-11 01:48:36 +6517 6517 6518 651.7 1303.4 6517 1987-11-05 2024-10-11 01:48:37.000 1987-11-05 2024-10-11 01:48:37 +6518 6518 6519 651.8 1303.6000000000001 6518 1987-11-06 2024-10-11 01:48:38.000 1987-11-06 2024-10-11 01:48:38 +6519 6519 6520 651.9 1303.8000000000002 6519 1987-11-07 2024-10-11 01:48:39.000 1987-11-07 2024-10-11 01:48:39 +6521 6521 6522 652.1 1304.2 6521 1987-11-09 2024-10-11 01:48:41.000 1987-11-09 2024-10-11 01:48:41 +6522 6522 6523 652.2 1304.4 6522 1987-11-10 2024-10-11 01:48:42.000 1987-11-10 2024-10-11 01:48:42 +6523 6523 6524 652.3 1304.6000000000001 6523 1987-11-11 2024-10-11 01:48:43.000 1987-11-11 2024-10-11 01:48:43 +6524 6524 6525 652.4 1304.8000000000002 6524 1987-11-12 2024-10-11 01:48:44.000 1987-11-12 2024-10-11 01:48:44 +6526 6526 6527 652.6 1305.2 6526 1987-11-14 2024-10-11 01:48:46.000 1987-11-14 2024-10-11 01:48:46 +6527 6527 6528 652.7 1305.4 6527 1987-11-15 2024-10-11 01:48:47.000 1987-11-15 2024-10-11 01:48:47 +6528 6528 6529 652.8 1305.6000000000001 6528 1987-11-16 2024-10-11 01:48:48.000 1987-11-16 2024-10-11 01:48:48 +6529 6529 6530 652.9 1305.8000000000002 6529 1987-11-17 2024-10-11 01:48:49.000 1987-11-17 2024-10-11 01:48:49 +6531 6531 6532 653.1 1306.2 6531 1987-11-19 2024-10-11 01:48:51.000 1987-11-19 2024-10-11 01:48:51 +6532 6532 6533 653.2 1306.4 6532 1987-11-20 2024-10-11 01:48:52.000 1987-11-20 2024-10-11 01:48:52 +6533 6533 6534 653.3 1306.6000000000001 6533 1987-11-21 2024-10-11 01:48:53.000 1987-11-21 2024-10-11 01:48:53 +6534 6534 6535 653.4 1306.8000000000002 6534 1987-11-22 2024-10-11 01:48:54.000 1987-11-22 2024-10-11 01:48:54 +6536 6536 6537 653.6 1307.2 6536 1987-11-24 2024-10-11 01:48:56.000 1987-11-24 2024-10-11 01:48:56 +6537 6537 6538 653.7 1307.4 6537 1987-11-25 2024-10-11 01:48:57.000 1987-11-25 2024-10-11 01:48:57 +6538 6538 6539 653.8 1307.6000000000001 6538 1987-11-26 2024-10-11 01:48:58.000 1987-11-26 2024-10-11 01:48:58 +6539 6539 6540 653.9 1307.8000000000002 6539 1987-11-27 2024-10-11 01:48:59.000 1987-11-27 2024-10-11 01:48:59 +6541 6541 6542 654.1 1308.2 6541 1987-11-29 2024-10-11 01:49:01.000 1987-11-29 2024-10-11 01:49:01 +6542 6542 6543 654.2 1308.4 6542 1987-11-30 2024-10-11 01:49:02.000 1987-11-30 2024-10-11 01:49:02 +6543 6543 6544 654.3 1308.6000000000001 6543 1987-12-01 2024-10-11 01:49:03.000 1987-12-01 2024-10-11 01:49:03 +6544 6544 6545 654.4 1308.8000000000002 6544 1987-12-02 2024-10-11 01:49:04.000 1987-12-02 2024-10-11 01:49:04 +6546 6546 6547 654.6 1309.2 6546 1987-12-04 2024-10-11 01:49:06.000 1987-12-04 2024-10-11 01:49:06 +6547 6547 6548 654.7 1309.4 6547 1987-12-05 2024-10-11 01:49:07.000 1987-12-05 2024-10-11 01:49:07 +6548 6548 6549 654.8 1309.6000000000001 6548 1987-12-06 2024-10-11 01:49:08.000 1987-12-06 2024-10-11 01:49:08 +6549 6549 6550 654.9 1309.8000000000002 6549 1987-12-07 2024-10-11 01:49:09.000 1987-12-07 2024-10-11 01:49:09 +6551 6551 6552 655.1 1310.2 6551 1987-12-09 2024-10-11 01:49:11.000 1987-12-09 2024-10-11 01:49:11 +6552 6552 6553 655.2 1310.4 6552 1987-12-10 2024-10-11 01:49:12.000 1987-12-10 2024-10-11 01:49:12 +6553 6553 6554 655.3 1310.6000000000001 6553 1987-12-11 2024-10-11 01:49:13.000 1987-12-11 2024-10-11 01:49:13 +6554 6554 6555 655.4 1310.8000000000002 6554 1987-12-12 2024-10-11 01:49:14.000 1987-12-12 2024-10-11 01:49:14 +6556 6556 6557 655.6 1311.2 6556 1987-12-14 2024-10-11 01:49:16.000 1987-12-14 2024-10-11 01:49:16 +6557 6557 6558 655.7 1311.4 6557 1987-12-15 2024-10-11 01:49:17.000 1987-12-15 2024-10-11 01:49:17 +6558 6558 6559 655.8 1311.6000000000001 6558 1987-12-16 2024-10-11 01:49:18.000 1987-12-16 2024-10-11 01:49:18 +6559 6559 6560 655.9 1311.8000000000002 6559 1987-12-17 2024-10-11 01:49:19.000 1987-12-17 2024-10-11 01:49:19 +6561 6561 6562 656.1 1312.2 6561 1987-12-19 2024-10-11 01:49:21.000 1987-12-19 2024-10-11 01:49:21 +6562 6562 6563 656.2 1312.4 6562 1987-12-20 2024-10-11 01:49:22.000 1987-12-20 2024-10-11 01:49:22 +6563 6563 6564 656.3 1312.6000000000001 6563 1987-12-21 2024-10-11 01:49:23.000 1987-12-21 2024-10-11 01:49:23 +6564 6564 6565 656.4 1312.8000000000002 6564 1987-12-22 2024-10-11 01:49:24.000 1987-12-22 2024-10-11 01:49:24 +6566 6566 6567 656.6 1313.2 6566 1987-12-24 2024-10-11 01:49:26.000 1987-12-24 2024-10-11 01:49:26 +6567 6567 6568 656.7 1313.4 6567 1987-12-25 2024-10-11 01:49:27.000 1987-12-25 2024-10-11 01:49:27 +6568 6568 6569 656.8 1313.6000000000001 6568 1987-12-26 2024-10-11 01:49:28.000 1987-12-26 2024-10-11 01:49:28 +6569 6569 6570 656.9 1313.8000000000002 6569 1987-12-27 2024-10-11 01:49:29.000 1987-12-27 2024-10-11 01:49:29 +6571 6571 6572 657.1 1314.2 6571 1987-12-29 2024-10-11 01:49:31.000 1987-12-29 2024-10-11 01:49:31 +6572 6572 6573 657.2 1314.4 6572 1987-12-30 2024-10-11 01:49:32.000 1987-12-30 2024-10-11 01:49:32 +6573 6573 6574 657.3 1314.6000000000001 6573 1987-12-31 2024-10-11 01:49:33.000 1987-12-31 2024-10-11 01:49:33 +6574 6574 6575 657.4 1314.8000000000002 6574 1988-01-01 2024-10-11 01:49:34.000 1988-01-01 2024-10-11 01:49:34 +6576 6576 6577 657.6 1315.2 6576 1988-01-03 2024-10-11 01:49:36.000 1988-01-03 2024-10-11 01:49:36 +6577 6577 6578 657.7 1315.4 6577 1988-01-04 2024-10-11 01:49:37.000 1988-01-04 2024-10-11 01:49:37 +6578 6578 6579 657.8 1315.6000000000001 6578 1988-01-05 2024-10-11 01:49:38.000 1988-01-05 2024-10-11 01:49:38 +6579 6579 6580 657.9 1315.8000000000002 6579 1988-01-06 2024-10-11 01:49:39.000 1988-01-06 2024-10-11 01:49:39 +6581 6581 6582 658.1 1316.2 6581 1988-01-08 2024-10-11 01:49:41.000 1988-01-08 2024-10-11 01:49:41 +6582 6582 6583 658.2 1316.4 6582 1988-01-09 2024-10-11 01:49:42.000 1988-01-09 2024-10-11 01:49:42 +6583 6583 6584 658.3 1316.6000000000001 6583 1988-01-10 2024-10-11 01:49:43.000 1988-01-10 2024-10-11 01:49:43 +6584 6584 6585 658.4 1316.8000000000002 6584 1988-01-11 2024-10-11 01:49:44.000 1988-01-11 2024-10-11 01:49:44 +6586 6586 6587 658.6 1317.2 6586 1988-01-13 2024-10-11 01:49:46.000 1988-01-13 2024-10-11 01:49:46 +6587 6587 6588 658.7 1317.4 6587 1988-01-14 2024-10-11 01:49:47.000 1988-01-14 2024-10-11 01:49:47 +6588 6588 6589 658.8 1317.6000000000001 6588 1988-01-15 2024-10-11 01:49:48.000 1988-01-15 2024-10-11 01:49:48 +6589 6589 6590 658.9 1317.8000000000002 6589 1988-01-16 2024-10-11 01:49:49.000 1988-01-16 2024-10-11 01:49:49 +6591 6591 6592 659.1 1318.2 6591 1988-01-18 2024-10-11 01:49:51.000 1988-01-18 2024-10-11 01:49:51 +6592 6592 6593 659.2 1318.4 6592 1988-01-19 2024-10-11 01:49:52.000 1988-01-19 2024-10-11 01:49:52 +6593 6593 6594 659.3 1318.6000000000001 6593 1988-01-20 2024-10-11 01:49:53.000 1988-01-20 2024-10-11 01:49:53 +6594 6594 6595 659.4 1318.8000000000002 6594 1988-01-21 2024-10-11 01:49:54.000 1988-01-21 2024-10-11 01:49:54 +6596 6596 6597 659.6 1319.2 6596 1988-01-23 2024-10-11 01:49:56.000 1988-01-23 2024-10-11 01:49:56 +6597 6597 6598 659.7 1319.4 6597 1988-01-24 2024-10-11 01:49:57.000 1988-01-24 2024-10-11 01:49:57 +6598 6598 6599 659.8 1319.6000000000001 6598 1988-01-25 2024-10-11 01:49:58.000 1988-01-25 2024-10-11 01:49:58 +6599 6599 6600 659.9 1319.8000000000002 6599 1988-01-26 2024-10-11 01:49:59.000 1988-01-26 2024-10-11 01:49:59 +6601 6601 6602 660.1 1320.2 6601 1988-01-28 2024-10-11 01:50:01.000 1988-01-28 2024-10-11 01:50:01 +6602 6602 6603 660.2 1320.4 6602 1988-01-29 2024-10-11 01:50:02.000 1988-01-29 2024-10-11 01:50:02 +6603 6603 6604 660.3 1320.6000000000001 6603 1988-01-30 2024-10-11 01:50:03.000 1988-01-30 2024-10-11 01:50:03 +6604 6604 6605 660.4 1320.8000000000002 6604 1988-01-31 2024-10-11 01:50:04.000 1988-01-31 2024-10-11 01:50:04 +6606 6606 6607 660.6 1321.2 6606 1988-02-02 2024-10-11 01:50:06.000 1988-02-02 2024-10-11 01:50:06 +6607 6607 6608 660.7 1321.4 6607 1988-02-03 2024-10-11 01:50:07.000 1988-02-03 2024-10-11 01:50:07 +6608 6608 6609 660.8 1321.6000000000001 6608 1988-02-04 2024-10-11 01:50:08.000 1988-02-04 2024-10-11 01:50:08 +6609 6609 6610 660.9 1321.8000000000002 6609 1988-02-05 2024-10-11 01:50:09.000 1988-02-05 2024-10-11 01:50:09 +6611 6611 6612 661.1 1322.2 6611 1988-02-07 2024-10-11 01:50:11.000 1988-02-07 2024-10-11 01:50:11 +6612 6612 6613 661.2 1322.4 6612 1988-02-08 2024-10-11 01:50:12.000 1988-02-08 2024-10-11 01:50:12 +6613 6613 6614 661.3 1322.6000000000001 6613 1988-02-09 2024-10-11 01:50:13.000 1988-02-09 2024-10-11 01:50:13 +6614 6614 6615 661.4 1322.8000000000002 6614 1988-02-10 2024-10-11 01:50:14.000 1988-02-10 2024-10-11 01:50:14 +6616 6616 6617 661.6 1323.2 6616 1988-02-12 2024-10-11 01:50:16.000 1988-02-12 2024-10-11 01:50:16 +6617 6617 6618 661.7 1323.4 6617 1988-02-13 2024-10-11 01:50:17.000 1988-02-13 2024-10-11 01:50:17 +6618 6618 6619 661.8 1323.6000000000001 6618 1988-02-14 2024-10-11 01:50:18.000 1988-02-14 2024-10-11 01:50:18 +6619 6619 6620 661.9 1323.8000000000002 6619 1988-02-15 2024-10-11 01:50:19.000 1988-02-15 2024-10-11 01:50:19 +6621 6621 6622 662.1 1324.2 6621 1988-02-17 2024-10-11 01:50:21.000 1988-02-17 2024-10-11 01:50:21 +6622 6622 6623 662.2 1324.4 6622 1988-02-18 2024-10-11 01:50:22.000 1988-02-18 2024-10-11 01:50:22 +6623 6623 6624 662.3 1324.6000000000001 6623 1988-02-19 2024-10-11 01:50:23.000 1988-02-19 2024-10-11 01:50:23 +6624 6624 6625 662.4 1324.8000000000002 6624 1988-02-20 2024-10-11 01:50:24.000 1988-02-20 2024-10-11 01:50:24 +6626 6626 6627 662.6 1325.2 6626 1988-02-22 2024-10-11 01:50:26.000 1988-02-22 2024-10-11 01:50:26 +6627 6627 6628 662.7 1325.4 6627 1988-02-23 2024-10-11 01:50:27.000 1988-02-23 2024-10-11 01:50:27 +6628 6628 6629 662.8 1325.6000000000001 6628 1988-02-24 2024-10-11 01:50:28.000 1988-02-24 2024-10-11 01:50:28 +6629 6629 6630 662.9 1325.8000000000002 6629 1988-02-25 2024-10-11 01:50:29.000 1988-02-25 2024-10-11 01:50:29 +6631 6631 6632 663.1 1326.2 6631 1988-02-27 2024-10-11 01:50:31.000 1988-02-27 2024-10-11 01:50:31 +6632 6632 6633 663.2 1326.4 6632 1988-02-28 2024-10-11 01:50:32.000 1988-02-28 2024-10-11 01:50:32 +6633 6633 6634 663.3 1326.6000000000001 6633 1988-02-29 2024-10-11 01:50:33.000 1988-02-29 2024-10-11 01:50:33 +6634 6634 6635 663.4 1326.8000000000002 6634 1988-03-01 2024-10-11 01:50:34.000 1988-03-01 2024-10-11 01:50:34 +6636 6636 6637 663.6 1327.2 6636 1988-03-03 2024-10-11 01:50:36.000 1988-03-03 2024-10-11 01:50:36 +6637 6637 6638 663.7 1327.4 6637 1988-03-04 2024-10-11 01:50:37.000 1988-03-04 2024-10-11 01:50:37 +6638 6638 6639 663.8 1327.6000000000001 6638 1988-03-05 2024-10-11 01:50:38.000 1988-03-05 2024-10-11 01:50:38 +6639 6639 6640 663.9 1327.8000000000002 6639 1988-03-06 2024-10-11 01:50:39.000 1988-03-06 2024-10-11 01:50:39 +6641 6641 6642 664.1 1328.2 6641 1988-03-08 2024-10-11 01:50:41.000 1988-03-08 2024-10-11 01:50:41 +6642 6642 6643 664.2 1328.4 6642 1988-03-09 2024-10-11 01:50:42.000 1988-03-09 2024-10-11 01:50:42 +6643 6643 6644 664.3 1328.6000000000001 6643 1988-03-10 2024-10-11 01:50:43.000 1988-03-10 2024-10-11 01:50:43 +6644 6644 6645 664.4 1328.8000000000002 6644 1988-03-11 2024-10-11 01:50:44.000 1988-03-11 2024-10-11 01:50:44 +6646 6646 6647 664.6 1329.2 6646 1988-03-13 2024-10-11 01:50:46.000 1988-03-13 2024-10-11 01:50:46 +6647 6647 6648 664.7 1329.4 6647 1988-03-14 2024-10-11 01:50:47.000 1988-03-14 2024-10-11 01:50:47 +6648 6648 6649 664.8 1329.6000000000001 6648 1988-03-15 2024-10-11 01:50:48.000 1988-03-15 2024-10-11 01:50:48 +6649 6649 6650 664.9 1329.8000000000002 6649 1988-03-16 2024-10-11 01:50:49.000 1988-03-16 2024-10-11 01:50:49 +6651 6651 6652 665.1 1330.2 6651 1988-03-18 2024-10-11 01:50:51.000 1988-03-18 2024-10-11 01:50:51 +6652 6652 6653 665.2 1330.4 6652 1988-03-19 2024-10-11 01:50:52.000 1988-03-19 2024-10-11 01:50:52 +6653 6653 6654 665.3 1330.6000000000001 6653 1988-03-20 2024-10-11 01:50:53.000 1988-03-20 2024-10-11 01:50:53 +6654 6654 6655 665.4 1330.8000000000002 6654 1988-03-21 2024-10-11 01:50:54.000 1988-03-21 2024-10-11 01:50:54 +6656 6656 6657 665.6 1331.2 6656 1988-03-23 2024-10-11 01:50:56.000 1988-03-23 2024-10-11 01:50:56 +6657 6657 6658 665.7 1331.4 6657 1988-03-24 2024-10-11 01:50:57.000 1988-03-24 2024-10-11 01:50:57 +6658 6658 6659 665.8 1331.6000000000001 6658 1988-03-25 2024-10-11 01:50:58.000 1988-03-25 2024-10-11 01:50:58 +6659 6659 6660 665.9 1331.8000000000002 6659 1988-03-26 2024-10-11 01:50:59.000 1988-03-26 2024-10-11 01:50:59 +6661 6661 6662 666.1 1332.2 6661 1988-03-28 2024-10-11 01:51:01.000 1988-03-28 2024-10-11 01:51:01 +6662 6662 6663 666.2 1332.4 6662 1988-03-29 2024-10-11 01:51:02.000 1988-03-29 2024-10-11 01:51:02 +6663 6663 6664 666.3 1332.6000000000001 6663 1988-03-30 2024-10-11 01:51:03.000 1988-03-30 2024-10-11 01:51:03 +6664 6664 6665 666.4 1332.8000000000002 6664 1988-03-31 2024-10-11 01:51:04.000 1988-03-31 2024-10-11 01:51:04 +6666 6666 6667 666.6 1333.2 6666 1988-04-02 2024-10-11 01:51:06.000 1988-04-02 2024-10-11 01:51:06 +6667 6667 6668 666.7 1333.4 6667 1988-04-03 2024-10-11 01:51:07.000 1988-04-03 2024-10-11 01:51:07 +6668 6668 6669 666.8 1333.6000000000001 6668 1988-04-04 2024-10-11 01:51:08.000 1988-04-04 2024-10-11 01:51:08 +6669 6669 6670 666.9 1333.8000000000002 6669 1988-04-05 2024-10-11 01:51:09.000 1988-04-05 2024-10-11 01:51:09 +6671 6671 6672 667.1 1334.2 6671 1988-04-07 2024-10-11 01:51:11.000 1988-04-07 2024-10-11 01:51:11 +6672 6672 6673 667.2 1334.4 6672 1988-04-08 2024-10-11 01:51:12.000 1988-04-08 2024-10-11 01:51:12 +6673 6673 6674 667.3 1334.6000000000001 6673 1988-04-09 2024-10-11 01:51:13.000 1988-04-09 2024-10-11 01:51:13 +6674 6674 6675 667.4 1334.8000000000002 6674 1988-04-10 2024-10-11 01:51:14.000 1988-04-10 2024-10-11 01:51:14 +6676 6676 6677 667.6 1335.2 6676 1988-04-12 2024-10-11 01:51:16.000 1988-04-12 2024-10-11 01:51:16 +6677 6677 6678 667.7 1335.4 6677 1988-04-13 2024-10-11 01:51:17.000 1988-04-13 2024-10-11 01:51:17 +6678 6678 6679 667.8 1335.6000000000001 6678 1988-04-14 2024-10-11 01:51:18.000 1988-04-14 2024-10-11 01:51:18 +6679 6679 6680 667.9 1335.8000000000002 6679 1988-04-15 2024-10-11 01:51:19.000 1988-04-15 2024-10-11 01:51:19 +6681 6681 6682 668.1 1336.2 6681 1988-04-17 2024-10-11 01:51:21.000 1988-04-17 2024-10-11 01:51:21 +6682 6682 6683 668.2 1336.4 6682 1988-04-18 2024-10-11 01:51:22.000 1988-04-18 2024-10-11 01:51:22 +6683 6683 6684 668.3 1336.6000000000001 6683 1988-04-19 2024-10-11 01:51:23.000 1988-04-19 2024-10-11 01:51:23 +6684 6684 6685 668.4 1336.8000000000002 6684 1988-04-20 2024-10-11 01:51:24.000 1988-04-20 2024-10-11 01:51:24 +6686 6686 6687 668.6 1337.2 6686 1988-04-22 2024-10-11 01:51:26.000 1988-04-22 2024-10-11 01:51:26 +6687 6687 6688 668.7 1337.4 6687 1988-04-23 2024-10-11 01:51:27.000 1988-04-23 2024-10-11 01:51:27 +6688 6688 6689 668.8 1337.6000000000001 6688 1988-04-24 2024-10-11 01:51:28.000 1988-04-24 2024-10-11 01:51:28 +6689 6689 6690 668.9 1337.8000000000002 6689 1988-04-25 2024-10-11 01:51:29.000 1988-04-25 2024-10-11 01:51:29 +6691 6691 6692 669.1 1338.2 6691 1988-04-27 2024-10-11 01:51:31.000 1988-04-27 2024-10-11 01:51:31 +6692 6692 6693 669.2 1338.4 6692 1988-04-28 2024-10-11 01:51:32.000 1988-04-28 2024-10-11 01:51:32 +6693 6693 6694 669.3 1338.6000000000001 6693 1988-04-29 2024-10-11 01:51:33.000 1988-04-29 2024-10-11 01:51:33 +6694 6694 6695 669.4 1338.8000000000002 6694 1988-04-30 2024-10-11 01:51:34.000 1988-04-30 2024-10-11 01:51:34 +6696 6696 6697 669.6 1339.2 6696 1988-05-02 2024-10-11 01:51:36.000 1988-05-02 2024-10-11 01:51:36 +6697 6697 6698 669.7 1339.4 6697 1988-05-03 2024-10-11 01:51:37.000 1988-05-03 2024-10-11 01:51:37 +6698 6698 6699 669.8 1339.6000000000001 6698 1988-05-04 2024-10-11 01:51:38.000 1988-05-04 2024-10-11 01:51:38 +6699 6699 6700 669.9 1339.8000000000002 6699 1988-05-05 2024-10-11 01:51:39.000 1988-05-05 2024-10-11 01:51:39 +6701 6701 6702 670.1 1340.2 6701 1988-05-07 2024-10-11 01:51:41.000 1988-05-07 2024-10-11 01:51:41 +6702 6702 6703 670.2 1340.4 6702 1988-05-08 2024-10-11 01:51:42.000 1988-05-08 2024-10-11 01:51:42 +6703 6703 6704 670.3 1340.6000000000001 6703 1988-05-09 2024-10-11 01:51:43.000 1988-05-09 2024-10-11 01:51:43 +6704 6704 6705 670.4 1340.8000000000002 6704 1988-05-10 2024-10-11 01:51:44.000 1988-05-10 2024-10-11 01:51:44 +6706 6706 6707 670.6 1341.2 6706 1988-05-12 2024-10-11 01:51:46.000 1988-05-12 2024-10-11 01:51:46 +6707 6707 6708 670.7 1341.4 6707 1988-05-13 2024-10-11 01:51:47.000 1988-05-13 2024-10-11 01:51:47 +6708 6708 6709 670.8 1341.6000000000001 6708 1988-05-14 2024-10-11 01:51:48.000 1988-05-14 2024-10-11 01:51:48 +6709 6709 6710 670.9 1341.8000000000002 6709 1988-05-15 2024-10-11 01:51:49.000 1988-05-15 2024-10-11 01:51:49 +6711 6711 6712 671.1 1342.2 6711 1988-05-17 2024-10-11 01:51:51.000 1988-05-17 2024-10-11 01:51:51 +6712 6712 6713 671.2 1342.4 6712 1988-05-18 2024-10-11 01:51:52.000 1988-05-18 2024-10-11 01:51:52 +6713 6713 6714 671.3 1342.6000000000001 6713 1988-05-19 2024-10-11 01:51:53.000 1988-05-19 2024-10-11 01:51:53 +6714 6714 6715 671.4 1342.8000000000002 6714 1988-05-20 2024-10-11 01:51:54.000 1988-05-20 2024-10-11 01:51:54 +6716 6716 6717 671.6 1343.2 6716 1988-05-22 2024-10-11 01:51:56.000 1988-05-22 2024-10-11 01:51:56 +6717 6717 6718 671.7 1343.4 6717 1988-05-23 2024-10-11 01:51:57.000 1988-05-23 2024-10-11 01:51:57 +6718 6718 6719 671.8 1343.6000000000001 6718 1988-05-24 2024-10-11 01:51:58.000 1988-05-24 2024-10-11 01:51:58 +6719 6719 6720 671.9 1343.8000000000002 6719 1988-05-25 2024-10-11 01:51:59.000 1988-05-25 2024-10-11 01:51:59 +6721 6721 6722 672.1 1344.2 6721 1988-05-27 2024-10-11 01:52:01.000 1988-05-27 2024-10-11 01:52:01 +6722 6722 6723 672.2 1344.4 6722 1988-05-28 2024-10-11 01:52:02.000 1988-05-28 2024-10-11 01:52:02 +6723 6723 6724 672.3 1344.6000000000001 6723 1988-05-29 2024-10-11 01:52:03.000 1988-05-29 2024-10-11 01:52:03 +6724 6724 6725 672.4 1344.8000000000002 6724 1988-05-30 2024-10-11 01:52:04.000 1988-05-30 2024-10-11 01:52:04 +6726 6726 6727 672.6 1345.2 6726 1988-06-01 2024-10-11 01:52:06.000 1988-06-01 2024-10-11 01:52:06 +6727 6727 6728 672.7 1345.4 6727 1988-06-02 2024-10-11 01:52:07.000 1988-06-02 2024-10-11 01:52:07 +6728 6728 6729 672.8 1345.6000000000001 6728 1988-06-03 2024-10-11 01:52:08.000 1988-06-03 2024-10-11 01:52:08 +6729 6729 6730 672.9 1345.8000000000002 6729 1988-06-04 2024-10-11 01:52:09.000 1988-06-04 2024-10-11 01:52:09 +6731 6731 6732 673.1 1346.2 6731 1988-06-06 2024-10-11 01:52:11.000 1988-06-06 2024-10-11 01:52:11 +6732 6732 6733 673.2 1346.4 6732 1988-06-07 2024-10-11 01:52:12.000 1988-06-07 2024-10-11 01:52:12 +6733 6733 6734 673.3 1346.6000000000001 6733 1988-06-08 2024-10-11 01:52:13.000 1988-06-08 2024-10-11 01:52:13 +6734 6734 6735 673.4 1346.8000000000002 6734 1988-06-09 2024-10-11 01:52:14.000 1988-06-09 2024-10-11 01:52:14 +6736 6736 6737 673.6 1347.2 6736 1988-06-11 2024-10-11 01:52:16.000 1988-06-11 2024-10-11 01:52:16 +6737 6737 6738 673.7 1347.4 6737 1988-06-12 2024-10-11 01:52:17.000 1988-06-12 2024-10-11 01:52:17 +6738 6738 6739 673.8 1347.6000000000001 6738 1988-06-13 2024-10-11 01:52:18.000 1988-06-13 2024-10-11 01:52:18 +6739 6739 6740 673.9 1347.8000000000002 6739 1988-06-14 2024-10-11 01:52:19.000 1988-06-14 2024-10-11 01:52:19 +6741 6741 6742 674.1 1348.2 6741 1988-06-16 2024-10-11 01:52:21.000 1988-06-16 2024-10-11 01:52:21 +6742 6742 6743 674.2 1348.4 6742 1988-06-17 2024-10-11 01:52:22.000 1988-06-17 2024-10-11 01:52:22 +6743 6743 6744 674.3 1348.6000000000001 6743 1988-06-18 2024-10-11 01:52:23.000 1988-06-18 2024-10-11 01:52:23 +6744 6744 6745 674.4 1348.8000000000002 6744 1988-06-19 2024-10-11 01:52:24.000 1988-06-19 2024-10-11 01:52:24 +6746 6746 6747 674.6 1349.2 6746 1988-06-21 2024-10-11 01:52:26.000 1988-06-21 2024-10-11 01:52:26 +6747 6747 6748 674.7 1349.4 6747 1988-06-22 2024-10-11 01:52:27.000 1988-06-22 2024-10-11 01:52:27 +6748 6748 6749 674.8 1349.6000000000001 6748 1988-06-23 2024-10-11 01:52:28.000 1988-06-23 2024-10-11 01:52:28 +6749 6749 6750 674.9 1349.8000000000002 6749 1988-06-24 2024-10-11 01:52:29.000 1988-06-24 2024-10-11 01:52:29 +6751 6751 6752 675.1 1350.2 6751 1988-06-26 2024-10-11 01:52:31.000 1988-06-26 2024-10-11 01:52:31 +6752 6752 6753 675.2 1350.4 6752 1988-06-27 2024-10-11 01:52:32.000 1988-06-27 2024-10-11 01:52:32 +6753 6753 6754 675.3 1350.6000000000001 6753 1988-06-28 2024-10-11 01:52:33.000 1988-06-28 2024-10-11 01:52:33 +6754 6754 6755 675.4 1350.8000000000002 6754 1988-06-29 2024-10-11 01:52:34.000 1988-06-29 2024-10-11 01:52:34 +6756 6756 6757 675.6 1351.2 6756 1988-07-01 2024-10-11 01:52:36.000 1988-07-01 2024-10-11 01:52:36 +6757 6757 6758 675.7 1351.4 6757 1988-07-02 2024-10-11 01:52:37.000 1988-07-02 2024-10-11 01:52:37 +6758 6758 6759 675.8 1351.6000000000001 6758 1988-07-03 2024-10-11 01:52:38.000 1988-07-03 2024-10-11 01:52:38 +6759 6759 6760 675.9 1351.8000000000002 6759 1988-07-04 2024-10-11 01:52:39.000 1988-07-04 2024-10-11 01:52:39 +6761 6761 6762 676.1 1352.2 6761 1988-07-06 2024-10-11 01:52:41.000 1988-07-06 2024-10-11 01:52:41 +6762 6762 6763 676.2 1352.4 6762 1988-07-07 2024-10-11 01:52:42.000 1988-07-07 2024-10-11 01:52:42 +6763 6763 6764 676.3 1352.6000000000001 6763 1988-07-08 2024-10-11 01:52:43.000 1988-07-08 2024-10-11 01:52:43 +6764 6764 6765 676.4 1352.8000000000002 6764 1988-07-09 2024-10-11 01:52:44.000 1988-07-09 2024-10-11 01:52:44 +6766 6766 6767 676.6 1353.2 6766 1988-07-11 2024-10-11 01:52:46.000 1988-07-11 2024-10-11 01:52:46 +6767 6767 6768 676.7 1353.4 6767 1988-07-12 2024-10-11 01:52:47.000 1988-07-12 2024-10-11 01:52:47 +6768 6768 6769 676.8 1353.6000000000001 6768 1988-07-13 2024-10-11 01:52:48.000 1988-07-13 2024-10-11 01:52:48 +6769 6769 6770 676.9 1353.8000000000002 6769 1988-07-14 2024-10-11 01:52:49.000 1988-07-14 2024-10-11 01:52:49 +6771 6771 6772 677.1 1354.2 6771 1988-07-16 2024-10-11 01:52:51.000 1988-07-16 2024-10-11 01:52:51 +6772 6772 6773 677.2 1354.4 6772 1988-07-17 2024-10-11 01:52:52.000 1988-07-17 2024-10-11 01:52:52 +6773 6773 6774 677.3 1354.6000000000001 6773 1988-07-18 2024-10-11 01:52:53.000 1988-07-18 2024-10-11 01:52:53 +6774 6774 6775 677.4 1354.8000000000002 6774 1988-07-19 2024-10-11 01:52:54.000 1988-07-19 2024-10-11 01:52:54 +6776 6776 6777 677.6 1355.2 6776 1988-07-21 2024-10-11 01:52:56.000 1988-07-21 2024-10-11 01:52:56 +6777 6777 6778 677.7 1355.4 6777 1988-07-22 2024-10-11 01:52:57.000 1988-07-22 2024-10-11 01:52:57 +6778 6778 6779 677.8 1355.6000000000001 6778 1988-07-23 2024-10-11 01:52:58.000 1988-07-23 2024-10-11 01:52:58 +6779 6779 6780 677.9 1355.8000000000002 6779 1988-07-24 2024-10-11 01:52:59.000 1988-07-24 2024-10-11 01:52:59 +6781 6781 6782 678.1 1356.2 6781 1988-07-26 2024-10-11 01:53:01.000 1988-07-26 2024-10-11 01:53:01 +6782 6782 6783 678.2 1356.4 6782 1988-07-27 2024-10-11 01:53:02.000 1988-07-27 2024-10-11 01:53:02 +6783 6783 6784 678.3 1356.6000000000001 6783 1988-07-28 2024-10-11 01:53:03.000 1988-07-28 2024-10-11 01:53:03 +6784 6784 6785 678.4 1356.8000000000002 6784 1988-07-29 2024-10-11 01:53:04.000 1988-07-29 2024-10-11 01:53:04 +6786 6786 6787 678.6 1357.2 6786 1988-07-31 2024-10-11 01:53:06.000 1988-07-31 2024-10-11 01:53:06 +6787 6787 6788 678.7 1357.4 6787 1988-08-01 2024-10-11 01:53:07.000 1988-08-01 2024-10-11 01:53:07 +6788 6788 6789 678.8 1357.6000000000001 6788 1988-08-02 2024-10-11 01:53:08.000 1988-08-02 2024-10-11 01:53:08 +6789 6789 6790 678.9 1357.8000000000002 6789 1988-08-03 2024-10-11 01:53:09.000 1988-08-03 2024-10-11 01:53:09 +6791 6791 6792 679.1 1358.2 6791 1988-08-05 2024-10-11 01:53:11.000 1988-08-05 2024-10-11 01:53:11 +6792 6792 6793 679.2 1358.4 6792 1988-08-06 2024-10-11 01:53:12.000 1988-08-06 2024-10-11 01:53:12 +6793 6793 6794 679.3 1358.6000000000001 6793 1988-08-07 2024-10-11 01:53:13.000 1988-08-07 2024-10-11 01:53:13 +6794 6794 6795 679.4 1358.8000000000002 6794 1988-08-08 2024-10-11 01:53:14.000 1988-08-08 2024-10-11 01:53:14 +6796 6796 6797 679.6 1359.2 6796 1988-08-10 2024-10-11 01:53:16.000 1988-08-10 2024-10-11 01:53:16 +6797 6797 6798 679.7 1359.4 6797 1988-08-11 2024-10-11 01:53:17.000 1988-08-11 2024-10-11 01:53:17 +6798 6798 6799 679.8 1359.6000000000001 6798 1988-08-12 2024-10-11 01:53:18.000 1988-08-12 2024-10-11 01:53:18 +6799 6799 6800 679.9 1359.8000000000002 6799 1988-08-13 2024-10-11 01:53:19.000 1988-08-13 2024-10-11 01:53:19 +6801 6801 6802 680.1 1360.2 6801 1988-08-15 2024-10-11 01:53:21.000 1988-08-15 2024-10-11 01:53:21 +6802 6802 6803 680.2 1360.4 6802 1988-08-16 2024-10-11 01:53:22.000 1988-08-16 2024-10-11 01:53:22 +6803 6803 6804 680.3 1360.6000000000001 6803 1988-08-17 2024-10-11 01:53:23.000 1988-08-17 2024-10-11 01:53:23 +6804 6804 6805 680.4 1360.8000000000002 6804 1988-08-18 2024-10-11 01:53:24.000 1988-08-18 2024-10-11 01:53:24 +6806 6806 6807 680.6 1361.2 6806 1988-08-20 2024-10-11 01:53:26.000 1988-08-20 2024-10-11 01:53:26 +6807 6807 6808 680.7 1361.4 6807 1988-08-21 2024-10-11 01:53:27.000 1988-08-21 2024-10-11 01:53:27 +6808 6808 6809 680.8 1361.6000000000001 6808 1988-08-22 2024-10-11 01:53:28.000 1988-08-22 2024-10-11 01:53:28 +6809 6809 6810 680.9 1361.8000000000002 6809 1988-08-23 2024-10-11 01:53:29.000 1988-08-23 2024-10-11 01:53:29 +6811 6811 6812 681.1 1362.2 6811 1988-08-25 2024-10-11 01:53:31.000 1988-08-25 2024-10-11 01:53:31 +6812 6812 6813 681.2 1362.4 6812 1988-08-26 2024-10-11 01:53:32.000 1988-08-26 2024-10-11 01:53:32 +6813 6813 6814 681.3 1362.6000000000001 6813 1988-08-27 2024-10-11 01:53:33.000 1988-08-27 2024-10-11 01:53:33 +6814 6814 6815 681.4 1362.8000000000002 6814 1988-08-28 2024-10-11 01:53:34.000 1988-08-28 2024-10-11 01:53:34 +6816 6816 6817 681.6 1363.2 6816 1988-08-30 2024-10-11 01:53:36.000 1988-08-30 2024-10-11 01:53:36 +6817 6817 6818 681.7 1363.4 6817 1988-08-31 2024-10-11 01:53:37.000 1988-08-31 2024-10-11 01:53:37 +6818 6818 6819 681.8 1363.6000000000001 6818 1988-09-01 2024-10-11 01:53:38.000 1988-09-01 2024-10-11 01:53:38 +6819 6819 6820 681.9 1363.8000000000002 6819 1988-09-02 2024-10-11 01:53:39.000 1988-09-02 2024-10-11 01:53:39 +6821 6821 6822 682.1 1364.2 6821 1988-09-04 2024-10-11 01:53:41.000 1988-09-04 2024-10-11 01:53:41 +6822 6822 6823 682.2 1364.4 6822 1988-09-05 2024-10-11 01:53:42.000 1988-09-05 2024-10-11 01:53:42 +6823 6823 6824 682.3 1364.6000000000001 6823 1988-09-06 2024-10-11 01:53:43.000 1988-09-06 2024-10-11 01:53:43 +6824 6824 6825 682.4 1364.8000000000002 6824 1988-09-07 2024-10-11 01:53:44.000 1988-09-07 2024-10-11 01:53:44 +6826 6826 6827 682.6 1365.2 6826 1988-09-09 2024-10-11 01:53:46.000 1988-09-09 2024-10-11 01:53:46 +6827 6827 6828 682.7 1365.4 6827 1988-09-10 2024-10-11 01:53:47.000 1988-09-10 2024-10-11 01:53:47 +6828 6828 6829 682.8 1365.6000000000001 6828 1988-09-11 2024-10-11 01:53:48.000 1988-09-11 2024-10-11 01:53:48 +6829 6829 6830 682.9 1365.8000000000002 6829 1988-09-12 2024-10-11 01:53:49.000 1988-09-12 2024-10-11 01:53:49 +6831 6831 6832 683.1 1366.2 6831 1988-09-14 2024-10-11 01:53:51.000 1988-09-14 2024-10-11 01:53:51 +6832 6832 6833 683.2 1366.4 6832 1988-09-15 2024-10-11 01:53:52.000 1988-09-15 2024-10-11 01:53:52 +6833 6833 6834 683.3 1366.6000000000001 6833 1988-09-16 2024-10-11 01:53:53.000 1988-09-16 2024-10-11 01:53:53 +6834 6834 6835 683.4 1366.8000000000002 6834 1988-09-17 2024-10-11 01:53:54.000 1988-09-17 2024-10-11 01:53:54 +6836 6836 6837 683.6 1367.2 6836 1988-09-19 2024-10-11 01:53:56.000 1988-09-19 2024-10-11 01:53:56 +6837 6837 6838 683.7 1367.4 6837 1988-09-20 2024-10-11 01:53:57.000 1988-09-20 2024-10-11 01:53:57 +6838 6838 6839 683.8 1367.6000000000001 6838 1988-09-21 2024-10-11 01:53:58.000 1988-09-21 2024-10-11 01:53:58 +6839 6839 6840 683.9 1367.8000000000002 6839 1988-09-22 2024-10-11 01:53:59.000 1988-09-22 2024-10-11 01:53:59 +6841 6841 6842 684.1 1368.2 6841 1988-09-24 2024-10-11 01:54:01.000 1988-09-24 2024-10-11 01:54:01 +6842 6842 6843 684.2 1368.4 6842 1988-09-25 2024-10-11 01:54:02.000 1988-09-25 2024-10-11 01:54:02 +6843 6843 6844 684.3 1368.6000000000001 6843 1988-09-26 2024-10-11 01:54:03.000 1988-09-26 2024-10-11 01:54:03 +6844 6844 6845 684.4 1368.8000000000002 6844 1988-09-27 2024-10-11 01:54:04.000 1988-09-27 2024-10-11 01:54:04 +6846 6846 6847 684.6 1369.2 6846 1988-09-29 2024-10-11 01:54:06.000 1988-09-29 2024-10-11 01:54:06 +6847 6847 6848 684.7 1369.4 6847 1988-09-30 2024-10-11 01:54:07.000 1988-09-30 2024-10-11 01:54:07 +6848 6848 6849 684.8 1369.6000000000001 6848 1988-10-01 2024-10-11 01:54:08.000 1988-10-01 2024-10-11 01:54:08 +6849 6849 6850 684.9 1369.8000000000002 6849 1988-10-02 2024-10-11 01:54:09.000 1988-10-02 2024-10-11 01:54:09 +6851 6851 6852 685.1 1370.2 6851 1988-10-04 2024-10-11 01:54:11.000 1988-10-04 2024-10-11 01:54:11 +6852 6852 6853 685.2 1370.4 6852 1988-10-05 2024-10-11 01:54:12.000 1988-10-05 2024-10-11 01:54:12 +6853 6853 6854 685.3 1370.6000000000001 6853 1988-10-06 2024-10-11 01:54:13.000 1988-10-06 2024-10-11 01:54:13 +6854 6854 6855 685.4 1370.8000000000002 6854 1988-10-07 2024-10-11 01:54:14.000 1988-10-07 2024-10-11 01:54:14 +6856 6856 6857 685.6 1371.2 6856 1988-10-09 2024-10-11 01:54:16.000 1988-10-09 2024-10-11 01:54:16 +6857 6857 6858 685.7 1371.4 6857 1988-10-10 2024-10-11 01:54:17.000 1988-10-10 2024-10-11 01:54:17 +6858 6858 6859 685.8 1371.6000000000001 6858 1988-10-11 2024-10-11 01:54:18.000 1988-10-11 2024-10-11 01:54:18 +6859 6859 6860 685.9 1371.8000000000002 6859 1988-10-12 2024-10-11 01:54:19.000 1988-10-12 2024-10-11 01:54:19 +6861 6861 6862 686.1 1372.2 6861 1988-10-14 2024-10-11 01:54:21.000 1988-10-14 2024-10-11 01:54:21 +6862 6862 6863 686.2 1372.4 6862 1988-10-15 2024-10-11 01:54:22.000 1988-10-15 2024-10-11 01:54:22 +6863 6863 6864 686.3 1372.6000000000001 6863 1988-10-16 2024-10-11 01:54:23.000 1988-10-16 2024-10-11 01:54:23 +6864 6864 6865 686.4 1372.8000000000002 6864 1988-10-17 2024-10-11 01:54:24.000 1988-10-17 2024-10-11 01:54:24 +6866 6866 6867 686.6 1373.2 6866 1988-10-19 2024-10-11 01:54:26.000 1988-10-19 2024-10-11 01:54:26 +6867 6867 6868 686.7 1373.4 6867 1988-10-20 2024-10-11 01:54:27.000 1988-10-20 2024-10-11 01:54:27 +6868 6868 6869 686.8 1373.6000000000001 6868 1988-10-21 2024-10-11 01:54:28.000 1988-10-21 2024-10-11 01:54:28 +6869 6869 6870 686.9 1373.8000000000002 6869 1988-10-22 2024-10-11 01:54:29.000 1988-10-22 2024-10-11 01:54:29 +6871 6871 6872 687.1 1374.2 6871 1988-10-24 2024-10-11 01:54:31.000 1988-10-24 2024-10-11 01:54:31 +6872 6872 6873 687.2 1374.4 6872 1988-10-25 2024-10-11 01:54:32.000 1988-10-25 2024-10-11 01:54:32 +6873 6873 6874 687.3 1374.6000000000001 6873 1988-10-26 2024-10-11 01:54:33.000 1988-10-26 2024-10-11 01:54:33 +6874 6874 6875 687.4 1374.8000000000002 6874 1988-10-27 2024-10-11 01:54:34.000 1988-10-27 2024-10-11 01:54:34 +6876 6876 6877 687.6 1375.2 6876 1988-10-29 2024-10-11 01:54:36.000 1988-10-29 2024-10-11 01:54:36 +6877 6877 6878 687.7 1375.4 6877 1988-10-30 2024-10-11 01:54:37.000 1988-10-30 2024-10-11 01:54:37 +6878 6878 6879 687.8 1375.6000000000001 6878 1988-10-31 2024-10-11 01:54:38.000 1988-10-31 2024-10-11 01:54:38 +6879 6879 6880 687.9 1375.8000000000002 6879 1988-11-01 2024-10-11 01:54:39.000 1988-11-01 2024-10-11 01:54:39 +6881 6881 6882 688.1 1376.2 6881 1988-11-03 2024-10-11 01:54:41.000 1988-11-03 2024-10-11 01:54:41 +6882 6882 6883 688.2 1376.4 6882 1988-11-04 2024-10-11 01:54:42.000 1988-11-04 2024-10-11 01:54:42 +6883 6883 6884 688.3 1376.6000000000001 6883 1988-11-05 2024-10-11 01:54:43.000 1988-11-05 2024-10-11 01:54:43 +6884 6884 6885 688.4 1376.8000000000002 6884 1988-11-06 2024-10-11 01:54:44.000 1988-11-06 2024-10-11 01:54:44 +6886 6886 6887 688.6 1377.2 6886 1988-11-08 2024-10-11 01:54:46.000 1988-11-08 2024-10-11 01:54:46 +6887 6887 6888 688.7 1377.4 6887 1988-11-09 2024-10-11 01:54:47.000 1988-11-09 2024-10-11 01:54:47 +6888 6888 6889 688.8 1377.6000000000001 6888 1988-11-10 2024-10-11 01:54:48.000 1988-11-10 2024-10-11 01:54:48 +6889 6889 6890 688.9 1377.8000000000002 6889 1988-11-11 2024-10-11 01:54:49.000 1988-11-11 2024-10-11 01:54:49 +6891 6891 6892 689.1 1378.2 6891 1988-11-13 2024-10-11 01:54:51.000 1988-11-13 2024-10-11 01:54:51 +6892 6892 6893 689.2 1378.4 6892 1988-11-14 2024-10-11 01:54:52.000 1988-11-14 2024-10-11 01:54:52 +6893 6893 6894 689.3 1378.6000000000001 6893 1988-11-15 2024-10-11 01:54:53.000 1988-11-15 2024-10-11 01:54:53 +6894 6894 6895 689.4 1378.8000000000002 6894 1988-11-16 2024-10-11 01:54:54.000 1988-11-16 2024-10-11 01:54:54 +6896 6896 6897 689.6 1379.2 6896 1988-11-18 2024-10-11 01:54:56.000 1988-11-18 2024-10-11 01:54:56 +6897 6897 6898 689.7 1379.4 6897 1988-11-19 2024-10-11 01:54:57.000 1988-11-19 2024-10-11 01:54:57 +6898 6898 6899 689.8 1379.6000000000001 6898 1988-11-20 2024-10-11 01:54:58.000 1988-11-20 2024-10-11 01:54:58 +6899 6899 6900 689.9 1379.8000000000002 6899 1988-11-21 2024-10-11 01:54:59.000 1988-11-21 2024-10-11 01:54:59 +6901 6901 6902 690.1 1380.2 6901 1988-11-23 2024-10-11 01:55:01.000 1988-11-23 2024-10-11 01:55:01 +6902 6902 6903 690.2 1380.4 6902 1988-11-24 2024-10-11 01:55:02.000 1988-11-24 2024-10-11 01:55:02 +6903 6903 6904 690.3 1380.6000000000001 6903 1988-11-25 2024-10-11 01:55:03.000 1988-11-25 2024-10-11 01:55:03 +6904 6904 6905 690.4 1380.8000000000002 6904 1988-11-26 2024-10-11 01:55:04.000 1988-11-26 2024-10-11 01:55:04 +6906 6906 6907 690.6 1381.2 6906 1988-11-28 2024-10-11 01:55:06.000 1988-11-28 2024-10-11 01:55:06 +6907 6907 6908 690.7 1381.4 6907 1988-11-29 2024-10-11 01:55:07.000 1988-11-29 2024-10-11 01:55:07 +6908 6908 6909 690.8 1381.6000000000001 6908 1988-11-30 2024-10-11 01:55:08.000 1988-11-30 2024-10-11 01:55:08 +6909 6909 6910 690.9 1381.8000000000002 6909 1988-12-01 2024-10-11 01:55:09.000 1988-12-01 2024-10-11 01:55:09 +6911 6911 6912 691.1 1382.2 6911 1988-12-03 2024-10-11 01:55:11.000 1988-12-03 2024-10-11 01:55:11 +6912 6912 6913 691.2 1382.4 6912 1988-12-04 2024-10-11 01:55:12.000 1988-12-04 2024-10-11 01:55:12 +6913 6913 6914 691.3 1382.6000000000001 6913 1988-12-05 2024-10-11 01:55:13.000 1988-12-05 2024-10-11 01:55:13 +6914 6914 6915 691.4 1382.8000000000002 6914 1988-12-06 2024-10-11 01:55:14.000 1988-12-06 2024-10-11 01:55:14 +6916 6916 6917 691.6 1383.2 6916 1988-12-08 2024-10-11 01:55:16.000 1988-12-08 2024-10-11 01:55:16 +6917 6917 6918 691.7 1383.4 6917 1988-12-09 2024-10-11 01:55:17.000 1988-12-09 2024-10-11 01:55:17 +6918 6918 6919 691.8 1383.6000000000001 6918 1988-12-10 2024-10-11 01:55:18.000 1988-12-10 2024-10-11 01:55:18 +6919 6919 6920 691.9 1383.8000000000002 6919 1988-12-11 2024-10-11 01:55:19.000 1988-12-11 2024-10-11 01:55:19 +6921 6921 6922 692.1 1384.2 6921 1988-12-13 2024-10-11 01:55:21.000 1988-12-13 2024-10-11 01:55:21 +6922 6922 6923 692.2 1384.4 6922 1988-12-14 2024-10-11 01:55:22.000 1988-12-14 2024-10-11 01:55:22 +6923 6923 6924 692.3 1384.6000000000001 6923 1988-12-15 2024-10-11 01:55:23.000 1988-12-15 2024-10-11 01:55:23 +6924 6924 6925 692.4 1384.8000000000002 6924 1988-12-16 2024-10-11 01:55:24.000 1988-12-16 2024-10-11 01:55:24 +6926 6926 6927 692.6 1385.2 6926 1988-12-18 2024-10-11 01:55:26.000 1988-12-18 2024-10-11 01:55:26 +6927 6927 6928 692.7 1385.4 6927 1988-12-19 2024-10-11 01:55:27.000 1988-12-19 2024-10-11 01:55:27 +6928 6928 6929 692.8 1385.6000000000001 6928 1988-12-20 2024-10-11 01:55:28.000 1988-12-20 2024-10-11 01:55:28 +6929 6929 6930 692.9 1385.8000000000002 6929 1988-12-21 2024-10-11 01:55:29.000 1988-12-21 2024-10-11 01:55:29 +6931 6931 6932 693.1 1386.2 6931 1988-12-23 2024-10-11 01:55:31.000 1988-12-23 2024-10-11 01:55:31 +6932 6932 6933 693.2 1386.4 6932 1988-12-24 2024-10-11 01:55:32.000 1988-12-24 2024-10-11 01:55:32 +6933 6933 6934 693.3 1386.6000000000001 6933 1988-12-25 2024-10-11 01:55:33.000 1988-12-25 2024-10-11 01:55:33 +6934 6934 6935 693.4 1386.8000000000002 6934 1988-12-26 2024-10-11 01:55:34.000 1988-12-26 2024-10-11 01:55:34 +6936 6936 6937 693.6 1387.2 6936 1988-12-28 2024-10-11 01:55:36.000 1988-12-28 2024-10-11 01:55:36 +6937 6937 6938 693.7 1387.4 6937 1988-12-29 2024-10-11 01:55:37.000 1988-12-29 2024-10-11 01:55:37 +6938 6938 6939 693.8 1387.6000000000001 6938 1988-12-30 2024-10-11 01:55:38.000 1988-12-30 2024-10-11 01:55:38 +6939 6939 6940 693.9 1387.8000000000002 6939 1988-12-31 2024-10-11 01:55:39.000 1988-12-31 2024-10-11 01:55:39 +6941 6941 6942 694.1 1388.2 6941 1989-01-02 2024-10-11 01:55:41.000 1989-01-02 2024-10-11 01:55:41 +6942 6942 6943 694.2 1388.4 6942 1989-01-03 2024-10-11 01:55:42.000 1989-01-03 2024-10-11 01:55:42 +6943 6943 6944 694.3 1388.6000000000001 6943 1989-01-04 2024-10-11 01:55:43.000 1989-01-04 2024-10-11 01:55:43 +6944 6944 6945 694.4 1388.8000000000002 6944 1989-01-05 2024-10-11 01:55:44.000 1989-01-05 2024-10-11 01:55:44 +6946 6946 6947 694.6 1389.2 6946 1989-01-07 2024-10-11 01:55:46.000 1989-01-07 2024-10-11 01:55:46 +6947 6947 6948 694.7 1389.4 6947 1989-01-08 2024-10-11 01:55:47.000 1989-01-08 2024-10-11 01:55:47 +6948 6948 6949 694.8 1389.6000000000001 6948 1989-01-09 2024-10-11 01:55:48.000 1989-01-09 2024-10-11 01:55:48 +6949 6949 6950 694.9 1389.8000000000002 6949 1989-01-10 2024-10-11 01:55:49.000 1989-01-10 2024-10-11 01:55:49 +6951 6951 6952 695.1 1390.2 6951 1989-01-12 2024-10-11 01:55:51.000 1989-01-12 2024-10-11 01:55:51 +6952 6952 6953 695.2 1390.4 6952 1989-01-13 2024-10-11 01:55:52.000 1989-01-13 2024-10-11 01:55:52 +6953 6953 6954 695.3 1390.6000000000001 6953 1989-01-14 2024-10-11 01:55:53.000 1989-01-14 2024-10-11 01:55:53 +6954 6954 6955 695.4 1390.8000000000002 6954 1989-01-15 2024-10-11 01:55:54.000 1989-01-15 2024-10-11 01:55:54 +6956 6956 6957 695.6 1391.2 6956 1989-01-17 2024-10-11 01:55:56.000 1989-01-17 2024-10-11 01:55:56 +6957 6957 6958 695.7 1391.4 6957 1989-01-18 2024-10-11 01:55:57.000 1989-01-18 2024-10-11 01:55:57 +6958 6958 6959 695.8 1391.6000000000001 6958 1989-01-19 2024-10-11 01:55:58.000 1989-01-19 2024-10-11 01:55:58 +6959 6959 6960 695.9 1391.8000000000002 6959 1989-01-20 2024-10-11 01:55:59.000 1989-01-20 2024-10-11 01:55:59 +6961 6961 6962 696.1 1392.2 6961 1989-01-22 2024-10-11 01:56:01.000 1989-01-22 2024-10-11 01:56:01 +6962 6962 6963 696.2 1392.4 6962 1989-01-23 2024-10-11 01:56:02.000 1989-01-23 2024-10-11 01:56:02 +6963 6963 6964 696.3 1392.6000000000001 6963 1989-01-24 2024-10-11 01:56:03.000 1989-01-24 2024-10-11 01:56:03 +6964 6964 6965 696.4 1392.8000000000002 6964 1989-01-25 2024-10-11 01:56:04.000 1989-01-25 2024-10-11 01:56:04 +6966 6966 6967 696.6 1393.2 6966 1989-01-27 2024-10-11 01:56:06.000 1989-01-27 2024-10-11 01:56:06 +6967 6967 6968 696.7 1393.4 6967 1989-01-28 2024-10-11 01:56:07.000 1989-01-28 2024-10-11 01:56:07 +6968 6968 6969 696.8 1393.6000000000001 6968 1989-01-29 2024-10-11 01:56:08.000 1989-01-29 2024-10-11 01:56:08 +6969 6969 6970 696.9 1393.8000000000002 6969 1989-01-30 2024-10-11 01:56:09.000 1989-01-30 2024-10-11 01:56:09 +6971 6971 6972 697.1 1394.2 6971 1989-02-01 2024-10-11 01:56:11.000 1989-02-01 2024-10-11 01:56:11 +6972 6972 6973 697.2 1394.4 6972 1989-02-02 2024-10-11 01:56:12.000 1989-02-02 2024-10-11 01:56:12 +6973 6973 6974 697.3 1394.6000000000001 6973 1989-02-03 2024-10-11 01:56:13.000 1989-02-03 2024-10-11 01:56:13 +6974 6974 6975 697.4 1394.8000000000002 6974 1989-02-04 2024-10-11 01:56:14.000 1989-02-04 2024-10-11 01:56:14 +6976 6976 6977 697.6 1395.2 6976 1989-02-06 2024-10-11 01:56:16.000 1989-02-06 2024-10-11 01:56:16 +6977 6977 6978 697.7 1395.4 6977 1989-02-07 2024-10-11 01:56:17.000 1989-02-07 2024-10-11 01:56:17 +6978 6978 6979 697.8 1395.6000000000001 6978 1989-02-08 2024-10-11 01:56:18.000 1989-02-08 2024-10-11 01:56:18 +6979 6979 6980 697.9 1395.8000000000002 6979 1989-02-09 2024-10-11 01:56:19.000 1989-02-09 2024-10-11 01:56:19 +6981 6981 6982 698.1 1396.2 6981 1989-02-11 2024-10-11 01:56:21.000 1989-02-11 2024-10-11 01:56:21 +6982 6982 6983 698.2 1396.4 6982 1989-02-12 2024-10-11 01:56:22.000 1989-02-12 2024-10-11 01:56:22 +6983 6983 6984 698.3 1396.6000000000001 6983 1989-02-13 2024-10-11 01:56:23.000 1989-02-13 2024-10-11 01:56:23 +6984 6984 6985 698.4 1396.8000000000002 6984 1989-02-14 2024-10-11 01:56:24.000 1989-02-14 2024-10-11 01:56:24 +6986 6986 6987 698.6 1397.2 6986 1989-02-16 2024-10-11 01:56:26.000 1989-02-16 2024-10-11 01:56:26 +6987 6987 6988 698.7 1397.4 6987 1989-02-17 2024-10-11 01:56:27.000 1989-02-17 2024-10-11 01:56:27 +6988 6988 6989 698.8 1397.6000000000001 6988 1989-02-18 2024-10-11 01:56:28.000 1989-02-18 2024-10-11 01:56:28 +6989 6989 6990 698.9 1397.8000000000002 6989 1989-02-19 2024-10-11 01:56:29.000 1989-02-19 2024-10-11 01:56:29 +6991 6991 6992 699.1 1398.2 6991 1989-02-21 2024-10-11 01:56:31.000 1989-02-21 2024-10-11 01:56:31 +6992 6992 6993 699.2 1398.4 6992 1989-02-22 2024-10-11 01:56:32.000 1989-02-22 2024-10-11 01:56:32 +6993 6993 6994 699.3 1398.6000000000001 6993 1989-02-23 2024-10-11 01:56:33.000 1989-02-23 2024-10-11 01:56:33 +6994 6994 6995 699.4 1398.8000000000002 6994 1989-02-24 2024-10-11 01:56:34.000 1989-02-24 2024-10-11 01:56:34 +6996 6996 6997 699.6 1399.2 6996 1989-02-26 2024-10-11 01:56:36.000 1989-02-26 2024-10-11 01:56:36 +6997 6997 6998 699.7 1399.4 6997 1989-02-27 2024-10-11 01:56:37.000 1989-02-27 2024-10-11 01:56:37 +6998 6998 6999 699.8 1399.6000000000001 6998 1989-02-28 2024-10-11 01:56:38.000 1989-02-28 2024-10-11 01:56:38 +6999 6999 7000 699.9 1399.8000000000002 6999 1989-03-01 2024-10-11 01:56:39.000 1989-03-01 2024-10-11 01:56:39 +7001 7001 7002 700.1 1400.2 7001 1989-03-03 2024-10-11 01:56:41.000 1989-03-03 2024-10-11 01:56:41 +7002 7002 7003 700.2 1400.4 7002 1989-03-04 2024-10-11 01:56:42.000 1989-03-04 2024-10-11 01:56:42 +7003 7003 7004 700.3 1400.6000000000001 7003 1989-03-05 2024-10-11 01:56:43.000 1989-03-05 2024-10-11 01:56:43 +7004 7004 7005 700.4 1400.8000000000002 7004 1989-03-06 2024-10-11 01:56:44.000 1989-03-06 2024-10-11 01:56:44 +7006 7006 7007 700.6 1401.2 7006 1989-03-08 2024-10-11 01:56:46.000 1989-03-08 2024-10-11 01:56:46 +7007 7007 7008 700.7 1401.4 7007 1989-03-09 2024-10-11 01:56:47.000 1989-03-09 2024-10-11 01:56:47 +7008 7008 7009 700.8 1401.6000000000001 7008 1989-03-10 2024-10-11 01:56:48.000 1989-03-10 2024-10-11 01:56:48 +7009 7009 7010 700.9 1401.8000000000002 7009 1989-03-11 2024-10-11 01:56:49.000 1989-03-11 2024-10-11 01:56:49 +7011 7011 7012 701.1 1402.2 7011 1989-03-13 2024-10-11 01:56:51.000 1989-03-13 2024-10-11 01:56:51 +7012 7012 7013 701.2 1402.4 7012 1989-03-14 2024-10-11 01:56:52.000 1989-03-14 2024-10-11 01:56:52 +7013 7013 7014 701.3 1402.6000000000001 7013 1989-03-15 2024-10-11 01:56:53.000 1989-03-15 2024-10-11 01:56:53 +7014 7014 7015 701.4 1402.8000000000002 7014 1989-03-16 2024-10-11 01:56:54.000 1989-03-16 2024-10-11 01:56:54 +7016 7016 7017 701.6 1403.2 7016 1989-03-18 2024-10-11 01:56:56.000 1989-03-18 2024-10-11 01:56:56 +7017 7017 7018 701.7 1403.4 7017 1989-03-19 2024-10-11 01:56:57.000 1989-03-19 2024-10-11 01:56:57 +7018 7018 7019 701.8 1403.6000000000001 7018 1989-03-20 2024-10-11 01:56:58.000 1989-03-20 2024-10-11 01:56:58 +7019 7019 7020 701.9 1403.8000000000002 7019 1989-03-21 2024-10-11 01:56:59.000 1989-03-21 2024-10-11 01:56:59 +7021 7021 7022 702.1 1404.2 7021 1989-03-23 2024-10-11 01:57:01.000 1989-03-23 2024-10-11 01:57:01 +7022 7022 7023 702.2 1404.4 7022 1989-03-24 2024-10-11 01:57:02.000 1989-03-24 2024-10-11 01:57:02 +7023 7023 7024 702.3 1404.6000000000001 7023 1989-03-25 2024-10-11 01:57:03.000 1989-03-25 2024-10-11 01:57:03 +7024 7024 7025 702.4 1404.8000000000002 7024 1989-03-26 2024-10-11 01:57:04.000 1989-03-26 2024-10-11 01:57:04 +7026 7026 7027 702.6 1405.2 7026 1989-03-28 2024-10-11 01:57:06.000 1989-03-28 2024-10-11 01:57:06 +7027 7027 7028 702.7 1405.4 7027 1989-03-29 2024-10-11 01:57:07.000 1989-03-29 2024-10-11 01:57:07 +7028 7028 7029 702.8 1405.6000000000001 7028 1989-03-30 2024-10-11 01:57:08.000 1989-03-30 2024-10-11 01:57:08 +7029 7029 7030 702.9 1405.8000000000002 7029 1989-03-31 2024-10-11 01:57:09.000 1989-03-31 2024-10-11 01:57:09 +7031 7031 7032 703.1 1406.2 7031 1989-04-02 2024-10-11 01:57:11.000 1989-04-02 2024-10-11 01:57:11 +7032 7032 7033 703.2 1406.4 7032 1989-04-03 2024-10-11 01:57:12.000 1989-04-03 2024-10-11 01:57:12 +7033 7033 7034 703.3 1406.6000000000001 7033 1989-04-04 2024-10-11 01:57:13.000 1989-04-04 2024-10-11 01:57:13 +7034 7034 7035 703.4 1406.8000000000002 7034 1989-04-05 2024-10-11 01:57:14.000 1989-04-05 2024-10-11 01:57:14 +7036 7036 7037 703.6 1407.2 7036 1989-04-07 2024-10-11 01:57:16.000 1989-04-07 2024-10-11 01:57:16 +7037 7037 7038 703.7 1407.4 7037 1989-04-08 2024-10-11 01:57:17.000 1989-04-08 2024-10-11 01:57:17 +7038 7038 7039 703.8 1407.6000000000001 7038 1989-04-09 2024-10-11 01:57:18.000 1989-04-09 2024-10-11 01:57:18 +7039 7039 7040 703.9 1407.8000000000002 7039 1989-04-10 2024-10-11 01:57:19.000 1989-04-10 2024-10-11 01:57:19 +7041 7041 7042 704.1 1408.2 7041 1989-04-12 2024-10-11 01:57:21.000 1989-04-12 2024-10-11 01:57:21 +7042 7042 7043 704.2 1408.4 7042 1989-04-13 2024-10-11 01:57:22.000 1989-04-13 2024-10-11 01:57:22 +7043 7043 7044 704.3 1408.6000000000001 7043 1989-04-14 2024-10-11 01:57:23.000 1989-04-14 2024-10-11 01:57:23 +7044 7044 7045 704.4 1408.8000000000002 7044 1989-04-15 2024-10-11 01:57:24.000 1989-04-15 2024-10-11 01:57:24 +7046 7046 7047 704.6 1409.2 7046 1989-04-17 2024-10-11 01:57:26.000 1989-04-17 2024-10-11 01:57:26 +7047 7047 7048 704.7 1409.4 7047 1989-04-18 2024-10-11 01:57:27.000 1989-04-18 2024-10-11 01:57:27 +7048 7048 7049 704.8 1409.6000000000001 7048 1989-04-19 2024-10-11 01:57:28.000 1989-04-19 2024-10-11 01:57:28 +7049 7049 7050 704.9 1409.8000000000002 7049 1989-04-20 2024-10-11 01:57:29.000 1989-04-20 2024-10-11 01:57:29 +7051 7051 7052 705.1 1410.2 7051 1989-04-22 2024-10-11 01:57:31.000 1989-04-22 2024-10-11 01:57:31 +7052 7052 7053 705.2 1410.4 7052 1989-04-23 2024-10-11 01:57:32.000 1989-04-23 2024-10-11 01:57:32 +7053 7053 7054 705.3 1410.6000000000001 7053 1989-04-24 2024-10-11 01:57:33.000 1989-04-24 2024-10-11 01:57:33 +7054 7054 7055 705.4 1410.8000000000002 7054 1989-04-25 2024-10-11 01:57:34.000 1989-04-25 2024-10-11 01:57:34 +7056 7056 7057 705.6 1411.2 7056 1989-04-27 2024-10-11 01:57:36.000 1989-04-27 2024-10-11 01:57:36 +7057 7057 7058 705.7 1411.4 7057 1989-04-28 2024-10-11 01:57:37.000 1989-04-28 2024-10-11 01:57:37 +7058 7058 7059 705.8 1411.6000000000001 7058 1989-04-29 2024-10-11 01:57:38.000 1989-04-29 2024-10-11 01:57:38 +7059 7059 7060 705.9 1411.8000000000002 7059 1989-04-30 2024-10-11 01:57:39.000 1989-04-30 2024-10-11 01:57:39 +7061 7061 7062 706.1 1412.2 7061 1989-05-02 2024-10-11 01:57:41.000 1989-05-02 2024-10-11 01:57:41 +7062 7062 7063 706.2 1412.4 7062 1989-05-03 2024-10-11 01:57:42.000 1989-05-03 2024-10-11 01:57:42 +7063 7063 7064 706.3 1412.6000000000001 7063 1989-05-04 2024-10-11 01:57:43.000 1989-05-04 2024-10-11 01:57:43 +7064 7064 7065 706.4 1412.8000000000002 7064 1989-05-05 2024-10-11 01:57:44.000 1989-05-05 2024-10-11 01:57:44 +7066 7066 7067 706.6 1413.2 7066 1989-05-07 2024-10-11 01:57:46.000 1989-05-07 2024-10-11 01:57:46 +7067 7067 7068 706.7 1413.4 7067 1989-05-08 2024-10-11 01:57:47.000 1989-05-08 2024-10-11 01:57:47 +7068 7068 7069 706.8 1413.6000000000001 7068 1989-05-09 2024-10-11 01:57:48.000 1989-05-09 2024-10-11 01:57:48 +7069 7069 7070 706.9 1413.8000000000002 7069 1989-05-10 2024-10-11 01:57:49.000 1989-05-10 2024-10-11 01:57:49 +7071 7071 7072 707.1 1414.2 7071 1989-05-12 2024-10-11 01:57:51.000 1989-05-12 2024-10-11 01:57:51 +7072 7072 7073 707.2 1414.4 7072 1989-05-13 2024-10-11 01:57:52.000 1989-05-13 2024-10-11 01:57:52 +7073 7073 7074 707.3 1414.6000000000001 7073 1989-05-14 2024-10-11 01:57:53.000 1989-05-14 2024-10-11 01:57:53 +7074 7074 7075 707.4 1414.8000000000002 7074 1989-05-15 2024-10-11 01:57:54.000 1989-05-15 2024-10-11 01:57:54 +7076 7076 7077 707.6 1415.2 7076 1989-05-17 2024-10-11 01:57:56.000 1989-05-17 2024-10-11 01:57:56 +7077 7077 7078 707.7 1415.4 7077 1989-05-18 2024-10-11 01:57:57.000 1989-05-18 2024-10-11 01:57:57 +7078 7078 7079 707.8 1415.6000000000001 7078 1989-05-19 2024-10-11 01:57:58.000 1989-05-19 2024-10-11 01:57:58 +7079 7079 7080 707.9 1415.8000000000002 7079 1989-05-20 2024-10-11 01:57:59.000 1989-05-20 2024-10-11 01:57:59 +7081 7081 7082 708.1 1416.2 7081 1989-05-22 2024-10-11 01:58:01.000 1989-05-22 2024-10-11 01:58:01 +7082 7082 7083 708.2 1416.4 7082 1989-05-23 2024-10-11 01:58:02.000 1989-05-23 2024-10-11 01:58:02 +7083 7083 7084 708.3 1416.6000000000001 7083 1989-05-24 2024-10-11 01:58:03.000 1989-05-24 2024-10-11 01:58:03 +7084 7084 7085 708.4 1416.8000000000002 7084 1989-05-25 2024-10-11 01:58:04.000 1989-05-25 2024-10-11 01:58:04 +7086 7086 7087 708.6 1417.2 7086 1989-05-27 2024-10-11 01:58:06.000 1989-05-27 2024-10-11 01:58:06 +7087 7087 7088 708.7 1417.4 7087 1989-05-28 2024-10-11 01:58:07.000 1989-05-28 2024-10-11 01:58:07 +7088 7088 7089 708.8 1417.6000000000001 7088 1989-05-29 2024-10-11 01:58:08.000 1989-05-29 2024-10-11 01:58:08 +7089 7089 7090 708.9 1417.8000000000002 7089 1989-05-30 2024-10-11 01:58:09.000 1989-05-30 2024-10-11 01:58:09 +7091 7091 7092 709.1 1418.2 7091 1989-06-01 2024-10-11 01:58:11.000 1989-06-01 2024-10-11 01:58:11 +7092 7092 7093 709.2 1418.4 7092 1989-06-02 2024-10-11 01:58:12.000 1989-06-02 2024-10-11 01:58:12 +7093 7093 7094 709.3 1418.6000000000001 7093 1989-06-03 2024-10-11 01:58:13.000 1989-06-03 2024-10-11 01:58:13 +7094 7094 7095 709.4 1418.8000000000002 7094 1989-06-04 2024-10-11 01:58:14.000 1989-06-04 2024-10-11 01:58:14 +7096 7096 7097 709.6 1419.2 7096 1989-06-06 2024-10-11 01:58:16.000 1989-06-06 2024-10-11 01:58:16 +7097 7097 7098 709.7 1419.4 7097 1989-06-07 2024-10-11 01:58:17.000 1989-06-07 2024-10-11 01:58:17 +7098 7098 7099 709.8 1419.6000000000001 7098 1989-06-08 2024-10-11 01:58:18.000 1989-06-08 2024-10-11 01:58:18 +7099 7099 7100 709.9 1419.8000000000002 7099 1989-06-09 2024-10-11 01:58:19.000 1989-06-09 2024-10-11 01:58:19 +7101 7101 7102 710.1 1420.2 7101 1989-06-11 2024-10-11 01:58:21.000 1989-06-11 2024-10-11 01:58:21 +7102 7102 7103 710.2 1420.4 7102 1989-06-12 2024-10-11 01:58:22.000 1989-06-12 2024-10-11 01:58:22 +7103 7103 7104 710.3 1420.6000000000001 7103 1989-06-13 2024-10-11 01:58:23.000 1989-06-13 2024-10-11 01:58:23 +7104 7104 7105 710.4 1420.8000000000002 7104 1989-06-14 2024-10-11 01:58:24.000 1989-06-14 2024-10-11 01:58:24 +7106 7106 7107 710.6 1421.2 7106 1989-06-16 2024-10-11 01:58:26.000 1989-06-16 2024-10-11 01:58:26 +7107 7107 7108 710.7 1421.4 7107 1989-06-17 2024-10-11 01:58:27.000 1989-06-17 2024-10-11 01:58:27 +7108 7108 7109 710.8 1421.6000000000001 7108 1989-06-18 2024-10-11 01:58:28.000 1989-06-18 2024-10-11 01:58:28 +7109 7109 7110 710.9 1421.8000000000002 7109 1989-06-19 2024-10-11 01:58:29.000 1989-06-19 2024-10-11 01:58:29 +7111 7111 7112 711.1 1422.2 7111 1989-06-21 2024-10-11 01:58:31.000 1989-06-21 2024-10-11 01:58:31 +7112 7112 7113 711.2 1422.4 7112 1989-06-22 2024-10-11 01:58:32.000 1989-06-22 2024-10-11 01:58:32 +7113 7113 7114 711.3 1422.6000000000001 7113 1989-06-23 2024-10-11 01:58:33.000 1989-06-23 2024-10-11 01:58:33 +7114 7114 7115 711.4 1422.8000000000002 7114 1989-06-24 2024-10-11 01:58:34.000 1989-06-24 2024-10-11 01:58:34 +7116 7116 7117 711.6 1423.2 7116 1989-06-26 2024-10-11 01:58:36.000 1989-06-26 2024-10-11 01:58:36 +7117 7117 7118 711.7 1423.4 7117 1989-06-27 2024-10-11 01:58:37.000 1989-06-27 2024-10-11 01:58:37 +7118 7118 7119 711.8 1423.6000000000001 7118 1989-06-28 2024-10-11 01:58:38.000 1989-06-28 2024-10-11 01:58:38 +7119 7119 7120 711.9 1423.8000000000002 7119 1989-06-29 2024-10-11 01:58:39.000 1989-06-29 2024-10-11 01:58:39 +7121 7121 7122 712.1 1424.2 7121 1989-07-01 2024-10-11 01:58:41.000 1989-07-01 2024-10-11 01:58:41 +7122 7122 7123 712.2 1424.4 7122 1989-07-02 2024-10-11 01:58:42.000 1989-07-02 2024-10-11 01:58:42 +7123 7123 7124 712.3 1424.6000000000001 7123 1989-07-03 2024-10-11 01:58:43.000 1989-07-03 2024-10-11 01:58:43 +7124 7124 7125 712.4 1424.8000000000002 7124 1989-07-04 2024-10-11 01:58:44.000 1989-07-04 2024-10-11 01:58:44 +7126 7126 7127 712.6 1425.2 7126 1989-07-06 2024-10-11 01:58:46.000 1989-07-06 2024-10-11 01:58:46 +7127 7127 7128 712.7 1425.4 7127 1989-07-07 2024-10-11 01:58:47.000 1989-07-07 2024-10-11 01:58:47 +7128 7128 7129 712.8 1425.6000000000001 7128 1989-07-08 2024-10-11 01:58:48.000 1989-07-08 2024-10-11 01:58:48 +7129 7129 7130 712.9 1425.8000000000002 7129 1989-07-09 2024-10-11 01:58:49.000 1989-07-09 2024-10-11 01:58:49 +7131 7131 7132 713.1 1426.2 7131 1989-07-11 2024-10-11 01:58:51.000 1989-07-11 2024-10-11 01:58:51 +7132 7132 7133 713.2 1426.4 7132 1989-07-12 2024-10-11 01:58:52.000 1989-07-12 2024-10-11 01:58:52 +7133 7133 7134 713.3 1426.6000000000001 7133 1989-07-13 2024-10-11 01:58:53.000 1989-07-13 2024-10-11 01:58:53 +7134 7134 7135 713.4 1426.8000000000002 7134 1989-07-14 2024-10-11 01:58:54.000 1989-07-14 2024-10-11 01:58:54 +7136 7136 7137 713.6 1427.2 7136 1989-07-16 2024-10-11 01:58:56.000 1989-07-16 2024-10-11 01:58:56 +7137 7137 7138 713.7 1427.4 7137 1989-07-17 2024-10-11 01:58:57.000 1989-07-17 2024-10-11 01:58:57 +7138 7138 7139 713.8 1427.6000000000001 7138 1989-07-18 2024-10-11 01:58:58.000 1989-07-18 2024-10-11 01:58:58 +7139 7139 7140 713.9 1427.8000000000002 7139 1989-07-19 2024-10-11 01:58:59.000 1989-07-19 2024-10-11 01:58:59 +7141 7141 7142 714.1 1428.2 7141 1989-07-21 2024-10-11 01:59:01.000 1989-07-21 2024-10-11 01:59:01 +7142 7142 7143 714.2 1428.4 7142 1989-07-22 2024-10-11 01:59:02.000 1989-07-22 2024-10-11 01:59:02 +7143 7143 7144 714.3 1428.6000000000001 7143 1989-07-23 2024-10-11 01:59:03.000 1989-07-23 2024-10-11 01:59:03 +7144 7144 7145 714.4 1428.8000000000002 7144 1989-07-24 2024-10-11 01:59:04.000 1989-07-24 2024-10-11 01:59:04 +7146 7146 7147 714.6 1429.2 7146 1989-07-26 2024-10-11 01:59:06.000 1989-07-26 2024-10-11 01:59:06 +7147 7147 7148 714.7 1429.4 7147 1989-07-27 2024-10-11 01:59:07.000 1989-07-27 2024-10-11 01:59:07 +7148 7148 7149 714.8 1429.6000000000001 7148 1989-07-28 2024-10-11 01:59:08.000 1989-07-28 2024-10-11 01:59:08 +7149 7149 7150 714.9 1429.8000000000002 7149 1989-07-29 2024-10-11 01:59:09.000 1989-07-29 2024-10-11 01:59:09 +7151 7151 7152 715.1 1430.2 7151 1989-07-31 2024-10-11 01:59:11.000 1989-07-31 2024-10-11 01:59:11 +7152 7152 7153 715.2 1430.4 7152 1989-08-01 2024-10-11 01:59:12.000 1989-08-01 2024-10-11 01:59:12 +7153 7153 7154 715.3 1430.6000000000001 7153 1989-08-02 2024-10-11 01:59:13.000 1989-08-02 2024-10-11 01:59:13 +7154 7154 7155 715.4 1430.8000000000002 7154 1989-08-03 2024-10-11 01:59:14.000 1989-08-03 2024-10-11 01:59:14 +7156 7156 7157 715.6 1431.2 7156 1989-08-05 2024-10-11 01:59:16.000 1989-08-05 2024-10-11 01:59:16 +7157 7157 7158 715.7 1431.4 7157 1989-08-06 2024-10-11 01:59:17.000 1989-08-06 2024-10-11 01:59:17 +7158 7158 7159 715.8 1431.6000000000001 7158 1989-08-07 2024-10-11 01:59:18.000 1989-08-07 2024-10-11 01:59:18 +7159 7159 7160 715.9 1431.8000000000002 7159 1989-08-08 2024-10-11 01:59:19.000 1989-08-08 2024-10-11 01:59:19 +7161 7161 7162 716.1 1432.2 7161 1989-08-10 2024-10-11 01:59:21.000 1989-08-10 2024-10-11 01:59:21 +7162 7162 7163 716.2 1432.4 7162 1989-08-11 2024-10-11 01:59:22.000 1989-08-11 2024-10-11 01:59:22 +7163 7163 7164 716.3 1432.6000000000001 7163 1989-08-12 2024-10-11 01:59:23.000 1989-08-12 2024-10-11 01:59:23 +7164 7164 7165 716.4 1432.8000000000002 7164 1989-08-13 2024-10-11 01:59:24.000 1989-08-13 2024-10-11 01:59:24 +7166 7166 7167 716.6 1433.2 7166 1989-08-15 2024-10-11 01:59:26.000 1989-08-15 2024-10-11 01:59:26 +7167 7167 7168 716.7 1433.4 7167 1989-08-16 2024-10-11 01:59:27.000 1989-08-16 2024-10-11 01:59:27 +7168 7168 7169 716.8 1433.6000000000001 7168 1989-08-17 2024-10-11 01:59:28.000 1989-08-17 2024-10-11 01:59:28 +7169 7169 7170 716.9 1433.8000000000002 7169 1989-08-18 2024-10-11 01:59:29.000 1989-08-18 2024-10-11 01:59:29 +7171 7171 7172 717.1 1434.2 7171 1989-08-20 2024-10-11 01:59:31.000 1989-08-20 2024-10-11 01:59:31 +7172 7172 7173 717.2 1434.4 7172 1989-08-21 2024-10-11 01:59:32.000 1989-08-21 2024-10-11 01:59:32 +7173 7173 7174 717.3 1434.6000000000001 7173 1989-08-22 2024-10-11 01:59:33.000 1989-08-22 2024-10-11 01:59:33 +7174 7174 7175 717.4 1434.8000000000002 7174 1989-08-23 2024-10-11 01:59:34.000 1989-08-23 2024-10-11 01:59:34 +7176 7176 7177 717.6 1435.2 7176 1989-08-25 2024-10-11 01:59:36.000 1989-08-25 2024-10-11 01:59:36 +7177 7177 7178 717.7 1435.4 7177 1989-08-26 2024-10-11 01:59:37.000 1989-08-26 2024-10-11 01:59:37 +7178 7178 7179 717.8 1435.6000000000001 7178 1989-08-27 2024-10-11 01:59:38.000 1989-08-27 2024-10-11 01:59:38 +7179 7179 7180 717.9 1435.8000000000002 7179 1989-08-28 2024-10-11 01:59:39.000 1989-08-28 2024-10-11 01:59:39 +7181 7181 7182 718.1 1436.2 7181 1989-08-30 2024-10-11 01:59:41.000 1989-08-30 2024-10-11 01:59:41 +7182 7182 7183 718.2 1436.4 7182 1989-08-31 2024-10-11 01:59:42.000 1989-08-31 2024-10-11 01:59:42 +7183 7183 7184 718.3 1436.6000000000001 7183 1989-09-01 2024-10-11 01:59:43.000 1989-09-01 2024-10-11 01:59:43 +7184 7184 7185 718.4 1436.8000000000002 7184 1989-09-02 2024-10-11 01:59:44.000 1989-09-02 2024-10-11 01:59:44 +7186 7186 7187 718.6 1437.2 7186 1989-09-04 2024-10-11 01:59:46.000 1989-09-04 2024-10-11 01:59:46 +7187 7187 7188 718.7 1437.4 7187 1989-09-05 2024-10-11 01:59:47.000 1989-09-05 2024-10-11 01:59:47 +7188 7188 7189 718.8 1437.6000000000001 7188 1989-09-06 2024-10-11 01:59:48.000 1989-09-06 2024-10-11 01:59:48 +7189 7189 7190 718.9 1437.8000000000002 7189 1989-09-07 2024-10-11 01:59:49.000 1989-09-07 2024-10-11 01:59:49 +7191 7191 7192 719.1 1438.2 7191 1989-09-09 2024-10-11 01:59:51.000 1989-09-09 2024-10-11 01:59:51 +7192 7192 7193 719.2 1438.4 7192 1989-09-10 2024-10-11 01:59:52.000 1989-09-10 2024-10-11 01:59:52 +7193 7193 7194 719.3 1438.6000000000001 7193 1989-09-11 2024-10-11 01:59:53.000 1989-09-11 2024-10-11 01:59:53 +7194 7194 7195 719.4 1438.8000000000002 7194 1989-09-12 2024-10-11 01:59:54.000 1989-09-12 2024-10-11 01:59:54 +7196 7196 7197 719.6 1439.2 7196 1989-09-14 2024-10-11 01:59:56.000 1989-09-14 2024-10-11 01:59:56 +7197 7197 7198 719.7 1439.4 7197 1989-09-15 2024-10-11 01:59:57.000 1989-09-15 2024-10-11 01:59:57 +7198 7198 7199 719.8 1439.6000000000001 7198 1989-09-16 2024-10-11 01:59:58.000 1989-09-16 2024-10-11 01:59:58 +7199 7199 7200 719.9 1439.8000000000002 7199 1989-09-17 2024-10-11 01:59:59.000 1989-09-17 2024-10-11 01:59:59 +7201 7201 7202 720.1 1440.2 7201 1989-09-19 2024-10-11 02:00:01.000 1989-09-19 2024-10-11 02:00:01 +7202 7202 7203 720.2 1440.4 7202 1989-09-20 2024-10-11 02:00:02.000 1989-09-20 2024-10-11 02:00:02 +7203 7203 7204 720.3 1440.6000000000001 7203 1989-09-21 2024-10-11 02:00:03.000 1989-09-21 2024-10-11 02:00:03 +7204 7204 7205 720.4 1440.8000000000002 7204 1989-09-22 2024-10-11 02:00:04.000 1989-09-22 2024-10-11 02:00:04 +7206 7206 7207 720.6 1441.2 7206 1989-09-24 2024-10-11 02:00:06.000 1989-09-24 2024-10-11 02:00:06 +7207 7207 7208 720.7 1441.4 7207 1989-09-25 2024-10-11 02:00:07.000 1989-09-25 2024-10-11 02:00:07 +7208 7208 7209 720.8 1441.6000000000001 7208 1989-09-26 2024-10-11 02:00:08.000 1989-09-26 2024-10-11 02:00:08 +7209 7209 7210 720.9 1441.8000000000002 7209 1989-09-27 2024-10-11 02:00:09.000 1989-09-27 2024-10-11 02:00:09 +7211 7211 7212 721.1 1442.2 7211 1989-09-29 2024-10-11 02:00:11.000 1989-09-29 2024-10-11 02:00:11 +7212 7212 7213 721.2 1442.4 7212 1989-09-30 2024-10-11 02:00:12.000 1989-09-30 2024-10-11 02:00:12 +7213 7213 7214 721.3 1442.6000000000001 7213 1989-10-01 2024-10-11 02:00:13.000 1989-10-01 2024-10-11 02:00:13 +7214 7214 7215 721.4 1442.8000000000002 7214 1989-10-02 2024-10-11 02:00:14.000 1989-10-02 2024-10-11 02:00:14 +7216 7216 7217 721.6 1443.2 7216 1989-10-04 2024-10-11 02:00:16.000 1989-10-04 2024-10-11 02:00:16 +7217 7217 7218 721.7 1443.4 7217 1989-10-05 2024-10-11 02:00:17.000 1989-10-05 2024-10-11 02:00:17 +7218 7218 7219 721.8 1443.6000000000001 7218 1989-10-06 2024-10-11 02:00:18.000 1989-10-06 2024-10-11 02:00:18 +7219 7219 7220 721.9 1443.8000000000002 7219 1989-10-07 2024-10-11 02:00:19.000 1989-10-07 2024-10-11 02:00:19 +7221 7221 7222 722.1 1444.2 7221 1989-10-09 2024-10-11 02:00:21.000 1989-10-09 2024-10-11 02:00:21 +7222 7222 7223 722.2 1444.4 7222 1989-10-10 2024-10-11 02:00:22.000 1989-10-10 2024-10-11 02:00:22 +7223 7223 7224 722.3 1444.6000000000001 7223 1989-10-11 2024-10-11 02:00:23.000 1989-10-11 2024-10-11 02:00:23 +7224 7224 7225 722.4 1444.8000000000002 7224 1989-10-12 2024-10-11 02:00:24.000 1989-10-12 2024-10-11 02:00:24 +7226 7226 7227 722.6 1445.2 7226 1989-10-14 2024-10-11 02:00:26.000 1989-10-14 2024-10-11 02:00:26 +7227 7227 7228 722.7 1445.4 7227 1989-10-15 2024-10-11 02:00:27.000 1989-10-15 2024-10-11 02:00:27 +7228 7228 7229 722.8 1445.6000000000001 7228 1989-10-16 2024-10-11 02:00:28.000 1989-10-16 2024-10-11 02:00:28 +7229 7229 7230 722.9 1445.8000000000002 7229 1989-10-17 2024-10-11 02:00:29.000 1989-10-17 2024-10-11 02:00:29 +7231 7231 7232 723.1 1446.2 7231 1989-10-19 2024-10-11 02:00:31.000 1989-10-19 2024-10-11 02:00:31 +7232 7232 7233 723.2 1446.4 7232 1989-10-20 2024-10-11 02:00:32.000 1989-10-20 2024-10-11 02:00:32 +7233 7233 7234 723.3 1446.6000000000001 7233 1989-10-21 2024-10-11 02:00:33.000 1989-10-21 2024-10-11 02:00:33 +7234 7234 7235 723.4 1446.8000000000002 7234 1989-10-22 2024-10-11 02:00:34.000 1989-10-22 2024-10-11 02:00:34 +7236 7236 7237 723.6 1447.2 7236 1989-10-24 2024-10-11 02:00:36.000 1989-10-24 2024-10-11 02:00:36 +7237 7237 7238 723.7 1447.4 7237 1989-10-25 2024-10-11 02:00:37.000 1989-10-25 2024-10-11 02:00:37 +7238 7238 7239 723.8 1447.6000000000001 7238 1989-10-26 2024-10-11 02:00:38.000 1989-10-26 2024-10-11 02:00:38 +7239 7239 7240 723.9 1447.8000000000002 7239 1989-10-27 2024-10-11 02:00:39.000 1989-10-27 2024-10-11 02:00:39 +7241 7241 7242 724.1 1448.2 7241 1989-10-29 2024-10-11 02:00:41.000 1989-10-29 2024-10-11 02:00:41 +7242 7242 7243 724.2 1448.4 7242 1989-10-30 2024-10-11 02:00:42.000 1989-10-30 2024-10-11 02:00:42 +7243 7243 7244 724.3 1448.6000000000001 7243 1989-10-31 2024-10-11 02:00:43.000 1989-10-31 2024-10-11 02:00:43 +7244 7244 7245 724.4 1448.8000000000002 7244 1989-11-01 2024-10-11 02:00:44.000 1989-11-01 2024-10-11 02:00:44 +7246 7246 7247 724.6 1449.2 7246 1989-11-03 2024-10-11 02:00:46.000 1989-11-03 2024-10-11 02:00:46 +7247 7247 7248 724.7 1449.4 7247 1989-11-04 2024-10-11 02:00:47.000 1989-11-04 2024-10-11 02:00:47 +7248 7248 7249 724.8 1449.6000000000001 7248 1989-11-05 2024-10-11 02:00:48.000 1989-11-05 2024-10-11 02:00:48 +7249 7249 7250 724.9 1449.8000000000002 7249 1989-11-06 2024-10-11 02:00:49.000 1989-11-06 2024-10-11 02:00:49 +7251 7251 7252 725.1 1450.2 7251 1989-11-08 2024-10-11 02:00:51.000 1989-11-08 2024-10-11 02:00:51 +7252 7252 7253 725.2 1450.4 7252 1989-11-09 2024-10-11 02:00:52.000 1989-11-09 2024-10-11 02:00:52 +7253 7253 7254 725.3 1450.6000000000001 7253 1989-11-10 2024-10-11 02:00:53.000 1989-11-10 2024-10-11 02:00:53 +7254 7254 7255 725.4 1450.8000000000002 7254 1989-11-11 2024-10-11 02:00:54.000 1989-11-11 2024-10-11 02:00:54 +7256 7256 7257 725.6 1451.2 7256 1989-11-13 2024-10-11 02:00:56.000 1989-11-13 2024-10-11 02:00:56 +7257 7257 7258 725.7 1451.4 7257 1989-11-14 2024-10-11 02:00:57.000 1989-11-14 2024-10-11 02:00:57 +7258 7258 7259 725.8 1451.6000000000001 7258 1989-11-15 2024-10-11 02:00:58.000 1989-11-15 2024-10-11 02:00:58 +7259 7259 7260 725.9 1451.8000000000002 7259 1989-11-16 2024-10-11 02:00:59.000 1989-11-16 2024-10-11 02:00:59 +7261 7261 7262 726.1 1452.2 7261 1989-11-18 2024-10-11 02:01:01.000 1989-11-18 2024-10-11 02:01:01 +7262 7262 7263 726.2 1452.4 7262 1989-11-19 2024-10-11 02:01:02.000 1989-11-19 2024-10-11 02:01:02 +7263 7263 7264 726.3 1452.6000000000001 7263 1989-11-20 2024-10-11 02:01:03.000 1989-11-20 2024-10-11 02:01:03 +7264 7264 7265 726.4 1452.8000000000002 7264 1989-11-21 2024-10-11 02:01:04.000 1989-11-21 2024-10-11 02:01:04 +7266 7266 7267 726.6 1453.2 7266 1989-11-23 2024-10-11 02:01:06.000 1989-11-23 2024-10-11 02:01:06 +7267 7267 7268 726.7 1453.4 7267 1989-11-24 2024-10-11 02:01:07.000 1989-11-24 2024-10-11 02:01:07 +7268 7268 7269 726.8 1453.6000000000001 7268 1989-11-25 2024-10-11 02:01:08.000 1989-11-25 2024-10-11 02:01:08 +7269 7269 7270 726.9 1453.8000000000002 7269 1989-11-26 2024-10-11 02:01:09.000 1989-11-26 2024-10-11 02:01:09 +7271 7271 7272 727.1 1454.2 7271 1989-11-28 2024-10-11 02:01:11.000 1989-11-28 2024-10-11 02:01:11 +7272 7272 7273 727.2 1454.4 7272 1989-11-29 2024-10-11 02:01:12.000 1989-11-29 2024-10-11 02:01:12 +7273 7273 7274 727.3 1454.6000000000001 7273 1989-11-30 2024-10-11 02:01:13.000 1989-11-30 2024-10-11 02:01:13 +7274 7274 7275 727.4 1454.8000000000002 7274 1989-12-01 2024-10-11 02:01:14.000 1989-12-01 2024-10-11 02:01:14 +7276 7276 7277 727.6 1455.2 7276 1989-12-03 2024-10-11 02:01:16.000 1989-12-03 2024-10-11 02:01:16 +7277 7277 7278 727.7 1455.4 7277 1989-12-04 2024-10-11 02:01:17.000 1989-12-04 2024-10-11 02:01:17 +7278 7278 7279 727.8 1455.6000000000001 7278 1989-12-05 2024-10-11 02:01:18.000 1989-12-05 2024-10-11 02:01:18 +7279 7279 7280 727.9 1455.8000000000002 7279 1989-12-06 2024-10-11 02:01:19.000 1989-12-06 2024-10-11 02:01:19 +7281 7281 7282 728.1 1456.2 7281 1989-12-08 2024-10-11 02:01:21.000 1989-12-08 2024-10-11 02:01:21 +7282 7282 7283 728.2 1456.4 7282 1989-12-09 2024-10-11 02:01:22.000 1989-12-09 2024-10-11 02:01:22 +7283 7283 7284 728.3 1456.6000000000001 7283 1989-12-10 2024-10-11 02:01:23.000 1989-12-10 2024-10-11 02:01:23 +7284 7284 7285 728.4 1456.8000000000002 7284 1989-12-11 2024-10-11 02:01:24.000 1989-12-11 2024-10-11 02:01:24 +7286 7286 7287 728.6 1457.2 7286 1989-12-13 2024-10-11 02:01:26.000 1989-12-13 2024-10-11 02:01:26 +7287 7287 7288 728.7 1457.4 7287 1989-12-14 2024-10-11 02:01:27.000 1989-12-14 2024-10-11 02:01:27 +7288 7288 7289 728.8 1457.6000000000001 7288 1989-12-15 2024-10-11 02:01:28.000 1989-12-15 2024-10-11 02:01:28 +7289 7289 7290 728.9 1457.8000000000002 7289 1989-12-16 2024-10-11 02:01:29.000 1989-12-16 2024-10-11 02:01:29 +7291 7291 7292 729.1 1458.2 7291 1989-12-18 2024-10-11 02:01:31.000 1989-12-18 2024-10-11 02:01:31 +7292 7292 7293 729.2 1458.4 7292 1989-12-19 2024-10-11 02:01:32.000 1989-12-19 2024-10-11 02:01:32 +7293 7293 7294 729.3 1458.6000000000001 7293 1989-12-20 2024-10-11 02:01:33.000 1989-12-20 2024-10-11 02:01:33 +7294 7294 7295 729.4 1458.8000000000002 7294 1989-12-21 2024-10-11 02:01:34.000 1989-12-21 2024-10-11 02:01:34 +7296 7296 7297 729.6 1459.2 7296 1989-12-23 2024-10-11 02:01:36.000 1989-12-23 2024-10-11 02:01:36 +7297 7297 7298 729.7 1459.4 7297 1989-12-24 2024-10-11 02:01:37.000 1989-12-24 2024-10-11 02:01:37 +7298 7298 7299 729.8 1459.6000000000001 7298 1989-12-25 2024-10-11 02:01:38.000 1989-12-25 2024-10-11 02:01:38 +7299 7299 7300 729.9 1459.8000000000002 7299 1989-12-26 2024-10-11 02:01:39.000 1989-12-26 2024-10-11 02:01:39 +7301 7301 7302 730.1 1460.2 7301 1989-12-28 2024-10-11 02:01:41.000 1989-12-28 2024-10-11 02:01:41 +7302 7302 7303 730.2 1460.4 7302 1989-12-29 2024-10-11 02:01:42.000 1989-12-29 2024-10-11 02:01:42 +7303 7303 7304 730.3 1460.6000000000001 7303 1989-12-30 2024-10-11 02:01:43.000 1989-12-30 2024-10-11 02:01:43 +7304 7304 7305 730.4 1460.8000000000002 7304 1989-12-31 2024-10-11 02:01:44.000 1989-12-31 2024-10-11 02:01:44 +7306 7306 7307 730.6 1461.2 7306 1990-01-02 2024-10-11 02:01:46.000 1990-01-02 2024-10-11 02:01:46 +7307 7307 7308 730.7 1461.4 7307 1990-01-03 2024-10-11 02:01:47.000 1990-01-03 2024-10-11 02:01:47 +7308 7308 7309 730.8 1461.6000000000001 7308 1990-01-04 2024-10-11 02:01:48.000 1990-01-04 2024-10-11 02:01:48 +7309 7309 7310 730.9 1461.8000000000002 7309 1990-01-05 2024-10-11 02:01:49.000 1990-01-05 2024-10-11 02:01:49 +7311 7311 7312 731.1 1462.2 7311 1990-01-07 2024-10-11 02:01:51.000 1990-01-07 2024-10-11 02:01:51 +7312 7312 7313 731.2 1462.4 7312 1990-01-08 2024-10-11 02:01:52.000 1990-01-08 2024-10-11 02:01:52 +7313 7313 7314 731.3 1462.6000000000001 7313 1990-01-09 2024-10-11 02:01:53.000 1990-01-09 2024-10-11 02:01:53 +7314 7314 7315 731.4 1462.8000000000002 7314 1990-01-10 2024-10-11 02:01:54.000 1990-01-10 2024-10-11 02:01:54 +7316 7316 7317 731.6 1463.2 7316 1990-01-12 2024-10-11 02:01:56.000 1990-01-12 2024-10-11 02:01:56 +7317 7317 7318 731.7 1463.4 7317 1990-01-13 2024-10-11 02:01:57.000 1990-01-13 2024-10-11 02:01:57 +7318 7318 7319 731.8 1463.6000000000001 7318 1990-01-14 2024-10-11 02:01:58.000 1990-01-14 2024-10-11 02:01:58 +7319 7319 7320 731.9 1463.8000000000002 7319 1990-01-15 2024-10-11 02:01:59.000 1990-01-15 2024-10-11 02:01:59 +7321 7321 7322 732.1 1464.2 7321 1990-01-17 2024-10-11 02:02:01.000 1990-01-17 2024-10-11 02:02:01 +7322 7322 7323 732.2 1464.4 7322 1990-01-18 2024-10-11 02:02:02.000 1990-01-18 2024-10-11 02:02:02 +7323 7323 7324 732.3 1464.6000000000001 7323 1990-01-19 2024-10-11 02:02:03.000 1990-01-19 2024-10-11 02:02:03 +7324 7324 7325 732.4 1464.8000000000002 7324 1990-01-20 2024-10-11 02:02:04.000 1990-01-20 2024-10-11 02:02:04 +7326 7326 7327 732.6 1465.2 7326 1990-01-22 2024-10-11 02:02:06.000 1990-01-22 2024-10-11 02:02:06 +7327 7327 7328 732.7 1465.4 7327 1990-01-23 2024-10-11 02:02:07.000 1990-01-23 2024-10-11 02:02:07 +7328 7328 7329 732.8 1465.6000000000001 7328 1990-01-24 2024-10-11 02:02:08.000 1990-01-24 2024-10-11 02:02:08 +7329 7329 7330 732.9 1465.8000000000002 7329 1990-01-25 2024-10-11 02:02:09.000 1990-01-25 2024-10-11 02:02:09 +7331 7331 7332 733.1 1466.2 7331 1990-01-27 2024-10-11 02:02:11.000 1990-01-27 2024-10-11 02:02:11 +7332 7332 7333 733.2 1466.4 7332 1990-01-28 2024-10-11 02:02:12.000 1990-01-28 2024-10-11 02:02:12 +7333 7333 7334 733.3 1466.6000000000001 7333 1990-01-29 2024-10-11 02:02:13.000 1990-01-29 2024-10-11 02:02:13 +7334 7334 7335 733.4 1466.8000000000002 7334 1990-01-30 2024-10-11 02:02:14.000 1990-01-30 2024-10-11 02:02:14 +7336 7336 7337 733.6 1467.2 7336 1990-02-01 2024-10-11 02:02:16.000 1990-02-01 2024-10-11 02:02:16 +7337 7337 7338 733.7 1467.4 7337 1990-02-02 2024-10-11 02:02:17.000 1990-02-02 2024-10-11 02:02:17 +7338 7338 7339 733.8 1467.6000000000001 7338 1990-02-03 2024-10-11 02:02:18.000 1990-02-03 2024-10-11 02:02:18 +7339 7339 7340 733.9 1467.8000000000002 7339 1990-02-04 2024-10-11 02:02:19.000 1990-02-04 2024-10-11 02:02:19 +7341 7341 7342 734.1 1468.2 7341 1990-02-06 2024-10-11 02:02:21.000 1990-02-06 2024-10-11 02:02:21 +7342 7342 7343 734.2 1468.4 7342 1990-02-07 2024-10-11 02:02:22.000 1990-02-07 2024-10-11 02:02:22 +7343 7343 7344 734.3 1468.6000000000001 7343 1990-02-08 2024-10-11 02:02:23.000 1990-02-08 2024-10-11 02:02:23 +7344 7344 7345 734.4 1468.8000000000002 7344 1990-02-09 2024-10-11 02:02:24.000 1990-02-09 2024-10-11 02:02:24 +7346 7346 7347 734.6 1469.2 7346 1990-02-11 2024-10-11 02:02:26.000 1990-02-11 2024-10-11 02:02:26 +7347 7347 7348 734.7 1469.4 7347 1990-02-12 2024-10-11 02:02:27.000 1990-02-12 2024-10-11 02:02:27 +7348 7348 7349 734.8 1469.6000000000001 7348 1990-02-13 2024-10-11 02:02:28.000 1990-02-13 2024-10-11 02:02:28 +7349 7349 7350 734.9 1469.8000000000002 7349 1990-02-14 2024-10-11 02:02:29.000 1990-02-14 2024-10-11 02:02:29 +7351 7351 7352 735.1 1470.2 7351 1990-02-16 2024-10-11 02:02:31.000 1990-02-16 2024-10-11 02:02:31 +7352 7352 7353 735.2 1470.4 7352 1990-02-17 2024-10-11 02:02:32.000 1990-02-17 2024-10-11 02:02:32 +7353 7353 7354 735.3 1470.6000000000001 7353 1990-02-18 2024-10-11 02:02:33.000 1990-02-18 2024-10-11 02:02:33 +7354 7354 7355 735.4 1470.8000000000002 7354 1990-02-19 2024-10-11 02:02:34.000 1990-02-19 2024-10-11 02:02:34 +7356 7356 7357 735.6 1471.2 7356 1990-02-21 2024-10-11 02:02:36.000 1990-02-21 2024-10-11 02:02:36 +7357 7357 7358 735.7 1471.4 7357 1990-02-22 2024-10-11 02:02:37.000 1990-02-22 2024-10-11 02:02:37 +7358 7358 7359 735.8 1471.6000000000001 7358 1990-02-23 2024-10-11 02:02:38.000 1990-02-23 2024-10-11 02:02:38 +7359 7359 7360 735.9 1471.8000000000002 7359 1990-02-24 2024-10-11 02:02:39.000 1990-02-24 2024-10-11 02:02:39 +7361 7361 7362 736.1 1472.2 7361 1990-02-26 2024-10-11 02:02:41.000 1990-02-26 2024-10-11 02:02:41 +7362 7362 7363 736.2 1472.4 7362 1990-02-27 2024-10-11 02:02:42.000 1990-02-27 2024-10-11 02:02:42 +7363 7363 7364 736.3 1472.6000000000001 7363 1990-02-28 2024-10-11 02:02:43.000 1990-02-28 2024-10-11 02:02:43 +7364 7364 7365 736.4 1472.8000000000002 7364 1990-03-01 2024-10-11 02:02:44.000 1990-03-01 2024-10-11 02:02:44 +7366 7366 7367 736.6 1473.2 7366 1990-03-03 2024-10-11 02:02:46.000 1990-03-03 2024-10-11 02:02:46 +7367 7367 7368 736.7 1473.4 7367 1990-03-04 2024-10-11 02:02:47.000 1990-03-04 2024-10-11 02:02:47 +7368 7368 7369 736.8 1473.6000000000001 7368 1990-03-05 2024-10-11 02:02:48.000 1990-03-05 2024-10-11 02:02:48 +7369 7369 7370 736.9 1473.8000000000002 7369 1990-03-06 2024-10-11 02:02:49.000 1990-03-06 2024-10-11 02:02:49 +7371 7371 7372 737.1 1474.2 7371 1990-03-08 2024-10-11 02:02:51.000 1990-03-08 2024-10-11 02:02:51 +7372 7372 7373 737.2 1474.4 7372 1990-03-09 2024-10-11 02:02:52.000 1990-03-09 2024-10-11 02:02:52 +7373 7373 7374 737.3 1474.6000000000001 7373 1990-03-10 2024-10-11 02:02:53.000 1990-03-10 2024-10-11 02:02:53 +7374 7374 7375 737.4 1474.8000000000002 7374 1990-03-11 2024-10-11 02:02:54.000 1990-03-11 2024-10-11 02:02:54 +7376 7376 7377 737.6 1475.2 7376 1990-03-13 2024-10-11 02:02:56.000 1990-03-13 2024-10-11 02:02:56 +7377 7377 7378 737.7 1475.4 7377 1990-03-14 2024-10-11 02:02:57.000 1990-03-14 2024-10-11 02:02:57 +7378 7378 7379 737.8 1475.6000000000001 7378 1990-03-15 2024-10-11 02:02:58.000 1990-03-15 2024-10-11 02:02:58 +7379 7379 7380 737.9 1475.8000000000002 7379 1990-03-16 2024-10-11 02:02:59.000 1990-03-16 2024-10-11 02:02:59 +7381 7381 7382 738.1 1476.2 7381 1990-03-18 2024-10-11 02:03:01.000 1990-03-18 2024-10-11 02:03:01 +7382 7382 7383 738.2 1476.4 7382 1990-03-19 2024-10-11 02:03:02.000 1990-03-19 2024-10-11 02:03:02 +7383 7383 7384 738.3 1476.6000000000001 7383 1990-03-20 2024-10-11 02:03:03.000 1990-03-20 2024-10-11 02:03:03 +7384 7384 7385 738.4 1476.8000000000002 7384 1990-03-21 2024-10-11 02:03:04.000 1990-03-21 2024-10-11 02:03:04 +7386 7386 7387 738.6 1477.2 7386 1990-03-23 2024-10-11 02:03:06.000 1990-03-23 2024-10-11 02:03:06 +7387 7387 7388 738.7 1477.4 7387 1990-03-24 2024-10-11 02:03:07.000 1990-03-24 2024-10-11 02:03:07 +7388 7388 7389 738.8 1477.6000000000001 7388 1990-03-25 2024-10-11 02:03:08.000 1990-03-25 2024-10-11 02:03:08 +7389 7389 7390 738.9 1477.8000000000002 7389 1990-03-26 2024-10-11 02:03:09.000 1990-03-26 2024-10-11 02:03:09 +7391 7391 7392 739.1 1478.2 7391 1990-03-28 2024-10-11 02:03:11.000 1990-03-28 2024-10-11 02:03:11 +7392 7392 7393 739.2 1478.4 7392 1990-03-29 2024-10-11 02:03:12.000 1990-03-29 2024-10-11 02:03:12 +7393 7393 7394 739.3 1478.6000000000001 7393 1990-03-30 2024-10-11 02:03:13.000 1990-03-30 2024-10-11 02:03:13 +7394 7394 7395 739.4 1478.8000000000002 7394 1990-03-31 2024-10-11 02:03:14.000 1990-03-31 2024-10-11 02:03:14 +7396 7396 7397 739.6 1479.2 7396 1990-04-02 2024-10-11 02:03:16.000 1990-04-02 2024-10-11 02:03:16 +7397 7397 7398 739.7 1479.4 7397 1990-04-03 2024-10-11 02:03:17.000 1990-04-03 2024-10-11 02:03:17 +7398 7398 7399 739.8 1479.6000000000001 7398 1990-04-04 2024-10-11 02:03:18.000 1990-04-04 2024-10-11 02:03:18 +7399 7399 7400 739.9 1479.8000000000002 7399 1990-04-05 2024-10-11 02:03:19.000 1990-04-05 2024-10-11 02:03:19 +7401 7401 7402 740.1 1480.2 7401 1990-04-07 2024-10-11 02:03:21.000 1990-04-07 2024-10-11 02:03:21 +7402 7402 7403 740.2 1480.4 7402 1990-04-08 2024-10-11 02:03:22.000 1990-04-08 2024-10-11 02:03:22 +7403 7403 7404 740.3 1480.6000000000001 7403 1990-04-09 2024-10-11 02:03:23.000 1990-04-09 2024-10-11 02:03:23 +7404 7404 7405 740.4 1480.8000000000002 7404 1990-04-10 2024-10-11 02:03:24.000 1990-04-10 2024-10-11 02:03:24 +7406 7406 7407 740.6 1481.2 7406 1990-04-12 2024-10-11 02:03:26.000 1990-04-12 2024-10-11 02:03:26 +7407 7407 7408 740.7 1481.4 7407 1990-04-13 2024-10-11 02:03:27.000 1990-04-13 2024-10-11 02:03:27 +7408 7408 7409 740.8 1481.6000000000001 7408 1990-04-14 2024-10-11 02:03:28.000 1990-04-14 2024-10-11 02:03:28 +7409 7409 7410 740.9 1481.8000000000002 7409 1990-04-15 2024-10-11 02:03:29.000 1990-04-15 2024-10-11 02:03:29 +7411 7411 7412 741.1 1482.2 7411 1990-04-17 2024-10-11 02:03:31.000 1990-04-17 2024-10-11 02:03:31 +7412 7412 7413 741.2 1482.4 7412 1990-04-18 2024-10-11 02:03:32.000 1990-04-18 2024-10-11 02:03:32 +7413 7413 7414 741.3 1482.6000000000001 7413 1990-04-19 2024-10-11 02:03:33.000 1990-04-19 2024-10-11 02:03:33 +7414 7414 7415 741.4 1482.8000000000002 7414 1990-04-20 2024-10-11 02:03:34.000 1990-04-20 2024-10-11 02:03:34 +7416 7416 7417 741.6 1483.2 7416 1990-04-22 2024-10-11 02:03:36.000 1990-04-22 2024-10-11 02:03:36 +7417 7417 7418 741.7 1483.4 7417 1990-04-23 2024-10-11 02:03:37.000 1990-04-23 2024-10-11 02:03:37 +7418 7418 7419 741.8 1483.6000000000001 7418 1990-04-24 2024-10-11 02:03:38.000 1990-04-24 2024-10-11 02:03:38 +7419 7419 7420 741.9 1483.8000000000002 7419 1990-04-25 2024-10-11 02:03:39.000 1990-04-25 2024-10-11 02:03:39 +7421 7421 7422 742.1 1484.2 7421 1990-04-27 2024-10-11 02:03:41.000 1990-04-27 2024-10-11 02:03:41 +7422 7422 7423 742.2 1484.4 7422 1990-04-28 2024-10-11 02:03:42.000 1990-04-28 2024-10-11 02:03:42 +7423 7423 7424 742.3 1484.6000000000001 7423 1990-04-29 2024-10-11 02:03:43.000 1990-04-29 2024-10-11 02:03:43 +7424 7424 7425 742.4 1484.8000000000002 7424 1990-04-30 2024-10-11 02:03:44.000 1990-04-30 2024-10-11 02:03:44 +7426 7426 7427 742.6 1485.2 7426 1990-05-02 2024-10-11 02:03:46.000 1990-05-02 2024-10-11 02:03:46 +7427 7427 7428 742.7 1485.4 7427 1990-05-03 2024-10-11 02:03:47.000 1990-05-03 2024-10-11 02:03:47 +7428 7428 7429 742.8 1485.6000000000001 7428 1990-05-04 2024-10-11 02:03:48.000 1990-05-04 2024-10-11 02:03:48 +7429 7429 7430 742.9 1485.8000000000002 7429 1990-05-05 2024-10-11 02:03:49.000 1990-05-05 2024-10-11 02:03:49 +7431 7431 7432 743.1 1486.2 7431 1990-05-07 2024-10-11 02:03:51.000 1990-05-07 2024-10-11 02:03:51 +7432 7432 7433 743.2 1486.4 7432 1990-05-08 2024-10-11 02:03:52.000 1990-05-08 2024-10-11 02:03:52 +7433 7433 7434 743.3 1486.6000000000001 7433 1990-05-09 2024-10-11 02:03:53.000 1990-05-09 2024-10-11 02:03:53 +7434 7434 7435 743.4 1486.8000000000002 7434 1990-05-10 2024-10-11 02:03:54.000 1990-05-10 2024-10-11 02:03:54 +7436 7436 7437 743.6 1487.2 7436 1990-05-12 2024-10-11 02:03:56.000 1990-05-12 2024-10-11 02:03:56 +7437 7437 7438 743.7 1487.4 7437 1990-05-13 2024-10-11 02:03:57.000 1990-05-13 2024-10-11 02:03:57 +7438 7438 7439 743.8 1487.6000000000001 7438 1990-05-14 2024-10-11 02:03:58.000 1990-05-14 2024-10-11 02:03:58 +7439 7439 7440 743.9 1487.8000000000002 7439 1990-05-15 2024-10-11 02:03:59.000 1990-05-15 2024-10-11 02:03:59 +7441 7441 7442 744.1 1488.2 7441 1990-05-17 2024-10-11 02:04:01.000 1990-05-17 2024-10-11 02:04:01 +7442 7442 7443 744.2 1488.4 7442 1990-05-18 2024-10-11 02:04:02.000 1990-05-18 2024-10-11 02:04:02 +7443 7443 7444 744.3 1488.6000000000001 7443 1990-05-19 2024-10-11 02:04:03.000 1990-05-19 2024-10-11 02:04:03 +7444 7444 7445 744.4 1488.8000000000002 7444 1990-05-20 2024-10-11 02:04:04.000 1990-05-20 2024-10-11 02:04:04 +7446 7446 7447 744.6 1489.2 7446 1990-05-22 2024-10-11 02:04:06.000 1990-05-22 2024-10-11 02:04:06 +7447 7447 7448 744.7 1489.4 7447 1990-05-23 2024-10-11 02:04:07.000 1990-05-23 2024-10-11 02:04:07 +7448 7448 7449 744.8 1489.6000000000001 7448 1990-05-24 2024-10-11 02:04:08.000 1990-05-24 2024-10-11 02:04:08 +7449 7449 7450 744.9 1489.8000000000002 7449 1990-05-25 2024-10-11 02:04:09.000 1990-05-25 2024-10-11 02:04:09 +7451 7451 7452 745.1 1490.2 7451 1990-05-27 2024-10-11 02:04:11.000 1990-05-27 2024-10-11 02:04:11 +7452 7452 7453 745.2 1490.4 7452 1990-05-28 2024-10-11 02:04:12.000 1990-05-28 2024-10-11 02:04:12 +7453 7453 7454 745.3 1490.6000000000001 7453 1990-05-29 2024-10-11 02:04:13.000 1990-05-29 2024-10-11 02:04:13 +7454 7454 7455 745.4 1490.8000000000002 7454 1990-05-30 2024-10-11 02:04:14.000 1990-05-30 2024-10-11 02:04:14 +7456 7456 7457 745.6 1491.2 7456 1990-06-01 2024-10-11 02:04:16.000 1990-06-01 2024-10-11 02:04:16 +7457 7457 7458 745.7 1491.4 7457 1990-06-02 2024-10-11 02:04:17.000 1990-06-02 2024-10-11 02:04:17 +7458 7458 7459 745.8 1491.6000000000001 7458 1990-06-03 2024-10-11 02:04:18.000 1990-06-03 2024-10-11 02:04:18 +7459 7459 7460 745.9 1491.8000000000002 7459 1990-06-04 2024-10-11 02:04:19.000 1990-06-04 2024-10-11 02:04:19 +7461 7461 7462 746.1 1492.2 7461 1990-06-06 2024-10-11 02:04:21.000 1990-06-06 2024-10-11 02:04:21 +7462 7462 7463 746.2 1492.4 7462 1990-06-07 2024-10-11 02:04:22.000 1990-06-07 2024-10-11 02:04:22 +7463 7463 7464 746.3 1492.6000000000001 7463 1990-06-08 2024-10-11 02:04:23.000 1990-06-08 2024-10-11 02:04:23 +7464 7464 7465 746.4 1492.8000000000002 7464 1990-06-09 2024-10-11 02:04:24.000 1990-06-09 2024-10-11 02:04:24 +7466 7466 7467 746.6 1493.2 7466 1990-06-11 2024-10-11 02:04:26.000 1990-06-11 2024-10-11 02:04:26 +7467 7467 7468 746.7 1493.4 7467 1990-06-12 2024-10-11 02:04:27.000 1990-06-12 2024-10-11 02:04:27 +7468 7468 7469 746.8 1493.6000000000001 7468 1990-06-13 2024-10-11 02:04:28.000 1990-06-13 2024-10-11 02:04:28 +7469 7469 7470 746.9 1493.8000000000002 7469 1990-06-14 2024-10-11 02:04:29.000 1990-06-14 2024-10-11 02:04:29 +7471 7471 7472 747.1 1494.2 7471 1990-06-16 2024-10-11 02:04:31.000 1990-06-16 2024-10-11 02:04:31 +7472 7472 7473 747.2 1494.4 7472 1990-06-17 2024-10-11 02:04:32.000 1990-06-17 2024-10-11 02:04:32 +7473 7473 7474 747.3 1494.6000000000001 7473 1990-06-18 2024-10-11 02:04:33.000 1990-06-18 2024-10-11 02:04:33 +7474 7474 7475 747.4 1494.8000000000002 7474 1990-06-19 2024-10-11 02:04:34.000 1990-06-19 2024-10-11 02:04:34 +7476 7476 7477 747.6 1495.2 7476 1990-06-21 2024-10-11 02:04:36.000 1990-06-21 2024-10-11 02:04:36 +7477 7477 7478 747.7 1495.4 7477 1990-06-22 2024-10-11 02:04:37.000 1990-06-22 2024-10-11 02:04:37 +7478 7478 7479 747.8 1495.6000000000001 7478 1990-06-23 2024-10-11 02:04:38.000 1990-06-23 2024-10-11 02:04:38 +7479 7479 7480 747.9 1495.8000000000002 7479 1990-06-24 2024-10-11 02:04:39.000 1990-06-24 2024-10-11 02:04:39 +7481 7481 7482 748.1 1496.2 7481 1990-06-26 2024-10-11 02:04:41.000 1990-06-26 2024-10-11 02:04:41 +7482 7482 7483 748.2 1496.4 7482 1990-06-27 2024-10-11 02:04:42.000 1990-06-27 2024-10-11 02:04:42 +7483 7483 7484 748.3 1496.6000000000001 7483 1990-06-28 2024-10-11 02:04:43.000 1990-06-28 2024-10-11 02:04:43 +7484 7484 7485 748.4 1496.8000000000002 7484 1990-06-29 2024-10-11 02:04:44.000 1990-06-29 2024-10-11 02:04:44 +7486 7486 7487 748.6 1497.2 7486 1990-07-01 2024-10-11 02:04:46.000 1990-07-01 2024-10-11 02:04:46 +7487 7487 7488 748.7 1497.4 7487 1990-07-02 2024-10-11 02:04:47.000 1990-07-02 2024-10-11 02:04:47 +7488 7488 7489 748.8 1497.6000000000001 7488 1990-07-03 2024-10-11 02:04:48.000 1990-07-03 2024-10-11 02:04:48 +7489 7489 7490 748.9 1497.8000000000002 7489 1990-07-04 2024-10-11 02:04:49.000 1990-07-04 2024-10-11 02:04:49 +7491 7491 7492 749.1 1498.2 7491 1990-07-06 2024-10-11 02:04:51.000 1990-07-06 2024-10-11 02:04:51 +7492 7492 7493 749.2 1498.4 7492 1990-07-07 2024-10-11 02:04:52.000 1990-07-07 2024-10-11 02:04:52 +7493 7493 7494 749.3 1498.6000000000001 7493 1990-07-08 2024-10-11 02:04:53.000 1990-07-08 2024-10-11 02:04:53 +7494 7494 7495 749.4 1498.8000000000002 7494 1990-07-09 2024-10-11 02:04:54.000 1990-07-09 2024-10-11 02:04:54 +7496 7496 7497 749.6 1499.2 7496 1990-07-11 2024-10-11 02:04:56.000 1990-07-11 2024-10-11 02:04:56 +7497 7497 7498 749.7 1499.4 7497 1990-07-12 2024-10-11 02:04:57.000 1990-07-12 2024-10-11 02:04:57 +7498 7498 7499 749.8 1499.6000000000001 7498 1990-07-13 2024-10-11 02:04:58.000 1990-07-13 2024-10-11 02:04:58 +7499 7499 7500 749.9 1499.8000000000002 7499 1990-07-14 2024-10-11 02:04:59.000 1990-07-14 2024-10-11 02:04:59 +7501 7501 7502 750.1 1500.2 7501 1990-07-16 2024-10-11 02:05:01.000 1990-07-16 2024-10-11 02:05:01 +7502 7502 7503 750.2 1500.4 7502 1990-07-17 2024-10-11 02:05:02.000 1990-07-17 2024-10-11 02:05:02 +7503 7503 7504 750.3 1500.6000000000001 7503 1990-07-18 2024-10-11 02:05:03.000 1990-07-18 2024-10-11 02:05:03 +7504 7504 7505 750.4 1500.8000000000002 7504 1990-07-19 2024-10-11 02:05:04.000 1990-07-19 2024-10-11 02:05:04 +7506 7506 7507 750.6 1501.2 7506 1990-07-21 2024-10-11 02:05:06.000 1990-07-21 2024-10-11 02:05:06 +7507 7507 7508 750.7 1501.4 7507 1990-07-22 2024-10-11 02:05:07.000 1990-07-22 2024-10-11 02:05:07 +7508 7508 7509 750.8 1501.6000000000001 7508 1990-07-23 2024-10-11 02:05:08.000 1990-07-23 2024-10-11 02:05:08 +7509 7509 7510 750.9 1501.8000000000002 7509 1990-07-24 2024-10-11 02:05:09.000 1990-07-24 2024-10-11 02:05:09 +7511 7511 7512 751.1 1502.2 7511 1990-07-26 2024-10-11 02:05:11.000 1990-07-26 2024-10-11 02:05:11 +7512 7512 7513 751.2 1502.4 7512 1990-07-27 2024-10-11 02:05:12.000 1990-07-27 2024-10-11 02:05:12 +7513 7513 7514 751.3 1502.6000000000001 7513 1990-07-28 2024-10-11 02:05:13.000 1990-07-28 2024-10-11 02:05:13 +7514 7514 7515 751.4 1502.8000000000002 7514 1990-07-29 2024-10-11 02:05:14.000 1990-07-29 2024-10-11 02:05:14 +7516 7516 7517 751.6 1503.2 7516 1990-07-31 2024-10-11 02:05:16.000 1990-07-31 2024-10-11 02:05:16 +7517 7517 7518 751.7 1503.4 7517 1990-08-01 2024-10-11 02:05:17.000 1990-08-01 2024-10-11 02:05:17 +7518 7518 7519 751.8 1503.6000000000001 7518 1990-08-02 2024-10-11 02:05:18.000 1990-08-02 2024-10-11 02:05:18 +7519 7519 7520 751.9 1503.8000000000002 7519 1990-08-03 2024-10-11 02:05:19.000 1990-08-03 2024-10-11 02:05:19 +7521 7521 7522 752.1 1504.2 7521 1990-08-05 2024-10-11 02:05:21.000 1990-08-05 2024-10-11 02:05:21 +7522 7522 7523 752.2 1504.4 7522 1990-08-06 2024-10-11 02:05:22.000 1990-08-06 2024-10-11 02:05:22 +7523 7523 7524 752.3 1504.6000000000001 7523 1990-08-07 2024-10-11 02:05:23.000 1990-08-07 2024-10-11 02:05:23 +7524 7524 7525 752.4 1504.8000000000002 7524 1990-08-08 2024-10-11 02:05:24.000 1990-08-08 2024-10-11 02:05:24 +7526 7526 7527 752.6 1505.2 7526 1990-08-10 2024-10-11 02:05:26.000 1990-08-10 2024-10-11 02:05:26 +7527 7527 7528 752.7 1505.4 7527 1990-08-11 2024-10-11 02:05:27.000 1990-08-11 2024-10-11 02:05:27 +7528 7528 7529 752.8 1505.6000000000001 7528 1990-08-12 2024-10-11 02:05:28.000 1990-08-12 2024-10-11 02:05:28 +7529 7529 7530 752.9 1505.8000000000002 7529 1990-08-13 2024-10-11 02:05:29.000 1990-08-13 2024-10-11 02:05:29 +7531 7531 7532 753.1 1506.2 7531 1990-08-15 2024-10-11 02:05:31.000 1990-08-15 2024-10-11 02:05:31 +7532 7532 7533 753.2 1506.4 7532 1990-08-16 2024-10-11 02:05:32.000 1990-08-16 2024-10-11 02:05:32 +7533 7533 7534 753.3 1506.6000000000001 7533 1990-08-17 2024-10-11 02:05:33.000 1990-08-17 2024-10-11 02:05:33 +7534 7534 7535 753.4 1506.8000000000002 7534 1990-08-18 2024-10-11 02:05:34.000 1990-08-18 2024-10-11 02:05:34 +7536 7536 7537 753.6 1507.2 7536 1990-08-20 2024-10-11 02:05:36.000 1990-08-20 2024-10-11 02:05:36 +7537 7537 7538 753.7 1507.4 7537 1990-08-21 2024-10-11 02:05:37.000 1990-08-21 2024-10-11 02:05:37 +7538 7538 7539 753.8 1507.6000000000001 7538 1990-08-22 2024-10-11 02:05:38.000 1990-08-22 2024-10-11 02:05:38 +7539 7539 7540 753.9 1507.8000000000002 7539 1990-08-23 2024-10-11 02:05:39.000 1990-08-23 2024-10-11 02:05:39 +7541 7541 7542 754.1 1508.2 7541 1990-08-25 2024-10-11 02:05:41.000 1990-08-25 2024-10-11 02:05:41 +7542 7542 7543 754.2 1508.4 7542 1990-08-26 2024-10-11 02:05:42.000 1990-08-26 2024-10-11 02:05:42 +7543 7543 7544 754.3 1508.6000000000001 7543 1990-08-27 2024-10-11 02:05:43.000 1990-08-27 2024-10-11 02:05:43 +7544 7544 7545 754.4 1508.8000000000002 7544 1990-08-28 2024-10-11 02:05:44.000 1990-08-28 2024-10-11 02:05:44 +7546 7546 7547 754.6 1509.2 7546 1990-08-30 2024-10-11 02:05:46.000 1990-08-30 2024-10-11 02:05:46 +7547 7547 7548 754.7 1509.4 7547 1990-08-31 2024-10-11 02:05:47.000 1990-08-31 2024-10-11 02:05:47 +7548 7548 7549 754.8 1509.6000000000001 7548 1990-09-01 2024-10-11 02:05:48.000 1990-09-01 2024-10-11 02:05:48 +7549 7549 7550 754.9 1509.8000000000002 7549 1990-09-02 2024-10-11 02:05:49.000 1990-09-02 2024-10-11 02:05:49 +7551 7551 7552 755.1 1510.2 7551 1990-09-04 2024-10-11 02:05:51.000 1990-09-04 2024-10-11 02:05:51 +7552 7552 7553 755.2 1510.4 7552 1990-09-05 2024-10-11 02:05:52.000 1990-09-05 2024-10-11 02:05:52 +7553 7553 7554 755.3 1510.6000000000001 7553 1990-09-06 2024-10-11 02:05:53.000 1990-09-06 2024-10-11 02:05:53 +7554 7554 7555 755.4 1510.8000000000002 7554 1990-09-07 2024-10-11 02:05:54.000 1990-09-07 2024-10-11 02:05:54 +7556 7556 7557 755.6 1511.2 7556 1990-09-09 2024-10-11 02:05:56.000 1990-09-09 2024-10-11 02:05:56 +7557 7557 7558 755.7 1511.4 7557 1990-09-10 2024-10-11 02:05:57.000 1990-09-10 2024-10-11 02:05:57 +7558 7558 7559 755.8 1511.6000000000001 7558 1990-09-11 2024-10-11 02:05:58.000 1990-09-11 2024-10-11 02:05:58 +7559 7559 7560 755.9 1511.8000000000002 7559 1990-09-12 2024-10-11 02:05:59.000 1990-09-12 2024-10-11 02:05:59 +7561 7561 7562 756.1 1512.2 7561 1990-09-14 2024-10-11 02:06:01.000 1990-09-14 2024-10-11 02:06:01 +7562 7562 7563 756.2 1512.4 7562 1990-09-15 2024-10-11 02:06:02.000 1990-09-15 2024-10-11 02:06:02 +7563 7563 7564 756.3 1512.6000000000001 7563 1990-09-16 2024-10-11 02:06:03.000 1990-09-16 2024-10-11 02:06:03 +7564 7564 7565 756.4 1512.8000000000002 7564 1990-09-17 2024-10-11 02:06:04.000 1990-09-17 2024-10-11 02:06:04 +7566 7566 7567 756.6 1513.2 7566 1990-09-19 2024-10-11 02:06:06.000 1990-09-19 2024-10-11 02:06:06 +7567 7567 7568 756.7 1513.4 7567 1990-09-20 2024-10-11 02:06:07.000 1990-09-20 2024-10-11 02:06:07 +7568 7568 7569 756.8 1513.6000000000001 7568 1990-09-21 2024-10-11 02:06:08.000 1990-09-21 2024-10-11 02:06:08 +7569 7569 7570 756.9 1513.8000000000002 7569 1990-09-22 2024-10-11 02:06:09.000 1990-09-22 2024-10-11 02:06:09 +7571 7571 7572 757.1 1514.2 7571 1990-09-24 2024-10-11 02:06:11.000 1990-09-24 2024-10-11 02:06:11 +7572 7572 7573 757.2 1514.4 7572 1990-09-25 2024-10-11 02:06:12.000 1990-09-25 2024-10-11 02:06:12 +7573 7573 7574 757.3 1514.6000000000001 7573 1990-09-26 2024-10-11 02:06:13.000 1990-09-26 2024-10-11 02:06:13 +7574 7574 7575 757.4 1514.8000000000002 7574 1990-09-27 2024-10-11 02:06:14.000 1990-09-27 2024-10-11 02:06:14 +7576 7576 7577 757.6 1515.2 7576 1990-09-29 2024-10-11 02:06:16.000 1990-09-29 2024-10-11 02:06:16 +7577 7577 7578 757.7 1515.4 7577 1990-09-30 2024-10-11 02:06:17.000 1990-09-30 2024-10-11 02:06:17 +7578 7578 7579 757.8 1515.6000000000001 7578 1990-10-01 2024-10-11 02:06:18.000 1990-10-01 2024-10-11 02:06:18 +7579 7579 7580 757.9 1515.8000000000002 7579 1990-10-02 2024-10-11 02:06:19.000 1990-10-02 2024-10-11 02:06:19 +7581 7581 7582 758.1 1516.2 7581 1990-10-04 2024-10-11 02:06:21.000 1990-10-04 2024-10-11 02:06:21 +7582 7582 7583 758.2 1516.4 7582 1990-10-05 2024-10-11 02:06:22.000 1990-10-05 2024-10-11 02:06:22 +7583 7583 7584 758.3 1516.6000000000001 7583 1990-10-06 2024-10-11 02:06:23.000 1990-10-06 2024-10-11 02:06:23 +7584 7584 7585 758.4 1516.8000000000002 7584 1990-10-07 2024-10-11 02:06:24.000 1990-10-07 2024-10-11 02:06:24 +7586 7586 7587 758.6 1517.2 7586 1990-10-09 2024-10-11 02:06:26.000 1990-10-09 2024-10-11 02:06:26 +7587 7587 7588 758.7 1517.4 7587 1990-10-10 2024-10-11 02:06:27.000 1990-10-10 2024-10-11 02:06:27 +7588 7588 7589 758.8 1517.6000000000001 7588 1990-10-11 2024-10-11 02:06:28.000 1990-10-11 2024-10-11 02:06:28 +7589 7589 7590 758.9 1517.8000000000002 7589 1990-10-12 2024-10-11 02:06:29.000 1990-10-12 2024-10-11 02:06:29 +7591 7591 7592 759.1 1518.2 7591 1990-10-14 2024-10-11 02:06:31.000 1990-10-14 2024-10-11 02:06:31 +7592 7592 7593 759.2 1518.4 7592 1990-10-15 2024-10-11 02:06:32.000 1990-10-15 2024-10-11 02:06:32 +7593 7593 7594 759.3 1518.6000000000001 7593 1990-10-16 2024-10-11 02:06:33.000 1990-10-16 2024-10-11 02:06:33 +7594 7594 7595 759.4 1518.8000000000002 7594 1990-10-17 2024-10-11 02:06:34.000 1990-10-17 2024-10-11 02:06:34 +7596 7596 7597 759.6 1519.2 7596 1990-10-19 2024-10-11 02:06:36.000 1990-10-19 2024-10-11 02:06:36 +7597 7597 7598 759.7 1519.4 7597 1990-10-20 2024-10-11 02:06:37.000 1990-10-20 2024-10-11 02:06:37 +7598 7598 7599 759.8 1519.6000000000001 7598 1990-10-21 2024-10-11 02:06:38.000 1990-10-21 2024-10-11 02:06:38 +7599 7599 7600 759.9 1519.8000000000002 7599 1990-10-22 2024-10-11 02:06:39.000 1990-10-22 2024-10-11 02:06:39 +7601 7601 7602 760.1 1520.2 7601 1990-10-24 2024-10-11 02:06:41.000 1990-10-24 2024-10-11 02:06:41 +7602 7602 7603 760.2 1520.4 7602 1990-10-25 2024-10-11 02:06:42.000 1990-10-25 2024-10-11 02:06:42 +7603 7603 7604 760.3 1520.6000000000001 7603 1990-10-26 2024-10-11 02:06:43.000 1990-10-26 2024-10-11 02:06:43 +7604 7604 7605 760.4 1520.8000000000002 7604 1990-10-27 2024-10-11 02:06:44.000 1990-10-27 2024-10-11 02:06:44 +7606 7606 7607 760.6 1521.2 7606 1990-10-29 2024-10-11 02:06:46.000 1990-10-29 2024-10-11 02:06:46 +7607 7607 7608 760.7 1521.4 7607 1990-10-30 2024-10-11 02:06:47.000 1990-10-30 2024-10-11 02:06:47 +7608 7608 7609 760.8 1521.6000000000001 7608 1990-10-31 2024-10-11 02:06:48.000 1990-10-31 2024-10-11 02:06:48 +7609 7609 7610 760.9 1521.8000000000002 7609 1990-11-01 2024-10-11 02:06:49.000 1990-11-01 2024-10-11 02:06:49 +7611 7611 7612 761.1 1522.2 7611 1990-11-03 2024-10-11 02:06:51.000 1990-11-03 2024-10-11 02:06:51 +7612 7612 7613 761.2 1522.4 7612 1990-11-04 2024-10-11 02:06:52.000 1990-11-04 2024-10-11 02:06:52 +7613 7613 7614 761.3 1522.6000000000001 7613 1990-11-05 2024-10-11 02:06:53.000 1990-11-05 2024-10-11 02:06:53 +7614 7614 7615 761.4 1522.8000000000002 7614 1990-11-06 2024-10-11 02:06:54.000 1990-11-06 2024-10-11 02:06:54 +7616 7616 7617 761.6 1523.2 7616 1990-11-08 2024-10-11 02:06:56.000 1990-11-08 2024-10-11 02:06:56 +7617 7617 7618 761.7 1523.4 7617 1990-11-09 2024-10-11 02:06:57.000 1990-11-09 2024-10-11 02:06:57 +7618 7618 7619 761.8 1523.6000000000001 7618 1990-11-10 2024-10-11 02:06:58.000 1990-11-10 2024-10-11 02:06:58 +7619 7619 7620 761.9 1523.8000000000002 7619 1990-11-11 2024-10-11 02:06:59.000 1990-11-11 2024-10-11 02:06:59 +7621 7621 7622 762.1 1524.2 7621 1990-11-13 2024-10-11 02:07:01.000 1990-11-13 2024-10-11 02:07:01 +7622 7622 7623 762.2 1524.4 7622 1990-11-14 2024-10-11 02:07:02.000 1990-11-14 2024-10-11 02:07:02 +7623 7623 7624 762.3 1524.6000000000001 7623 1990-11-15 2024-10-11 02:07:03.000 1990-11-15 2024-10-11 02:07:03 +7624 7624 7625 762.4 1524.8000000000002 7624 1990-11-16 2024-10-11 02:07:04.000 1990-11-16 2024-10-11 02:07:04 +7626 7626 7627 762.6 1525.2 7626 1990-11-18 2024-10-11 02:07:06.000 1990-11-18 2024-10-11 02:07:06 +7627 7627 7628 762.7 1525.4 7627 1990-11-19 2024-10-11 02:07:07.000 1990-11-19 2024-10-11 02:07:07 +7628 7628 7629 762.8 1525.6000000000001 7628 1990-11-20 2024-10-11 02:07:08.000 1990-11-20 2024-10-11 02:07:08 +7629 7629 7630 762.9 1525.8000000000002 7629 1990-11-21 2024-10-11 02:07:09.000 1990-11-21 2024-10-11 02:07:09 +7631 7631 7632 763.1 1526.2 7631 1990-11-23 2024-10-11 02:07:11.000 1990-11-23 2024-10-11 02:07:11 +7632 7632 7633 763.2 1526.4 7632 1990-11-24 2024-10-11 02:07:12.000 1990-11-24 2024-10-11 02:07:12 +7633 7633 7634 763.3 1526.6000000000001 7633 1990-11-25 2024-10-11 02:07:13.000 1990-11-25 2024-10-11 02:07:13 +7634 7634 7635 763.4 1526.8000000000002 7634 1990-11-26 2024-10-11 02:07:14.000 1990-11-26 2024-10-11 02:07:14 +7636 7636 7637 763.6 1527.2 7636 1990-11-28 2024-10-11 02:07:16.000 1990-11-28 2024-10-11 02:07:16 +7637 7637 7638 763.7 1527.4 7637 1990-11-29 2024-10-11 02:07:17.000 1990-11-29 2024-10-11 02:07:17 +7638 7638 7639 763.8 1527.6000000000001 7638 1990-11-30 2024-10-11 02:07:18.000 1990-11-30 2024-10-11 02:07:18 +7639 7639 7640 763.9 1527.8000000000002 7639 1990-12-01 2024-10-11 02:07:19.000 1990-12-01 2024-10-11 02:07:19 +7641 7641 7642 764.1 1528.2 7641 1990-12-03 2024-10-11 02:07:21.000 1990-12-03 2024-10-11 02:07:21 +7642 7642 7643 764.2 1528.4 7642 1990-12-04 2024-10-11 02:07:22.000 1990-12-04 2024-10-11 02:07:22 +7643 7643 7644 764.3 1528.6000000000001 7643 1990-12-05 2024-10-11 02:07:23.000 1990-12-05 2024-10-11 02:07:23 +7644 7644 7645 764.4 1528.8000000000002 7644 1990-12-06 2024-10-11 02:07:24.000 1990-12-06 2024-10-11 02:07:24 +7646 7646 7647 764.6 1529.2 7646 1990-12-08 2024-10-11 02:07:26.000 1990-12-08 2024-10-11 02:07:26 +7647 7647 7648 764.7 1529.4 7647 1990-12-09 2024-10-11 02:07:27.000 1990-12-09 2024-10-11 02:07:27 +7648 7648 7649 764.8 1529.6000000000001 7648 1990-12-10 2024-10-11 02:07:28.000 1990-12-10 2024-10-11 02:07:28 +7649 7649 7650 764.9 1529.8000000000002 7649 1990-12-11 2024-10-11 02:07:29.000 1990-12-11 2024-10-11 02:07:29 +7651 7651 7652 765.1 1530.2 7651 1990-12-13 2024-10-11 02:07:31.000 1990-12-13 2024-10-11 02:07:31 +7652 7652 7653 765.2 1530.4 7652 1990-12-14 2024-10-11 02:07:32.000 1990-12-14 2024-10-11 02:07:32 +7653 7653 7654 765.3 1530.6000000000001 7653 1990-12-15 2024-10-11 02:07:33.000 1990-12-15 2024-10-11 02:07:33 +7654 7654 7655 765.4 1530.8000000000002 7654 1990-12-16 2024-10-11 02:07:34.000 1990-12-16 2024-10-11 02:07:34 +7656 7656 7657 765.6 1531.2 7656 1990-12-18 2024-10-11 02:07:36.000 1990-12-18 2024-10-11 02:07:36 +7657 7657 7658 765.7 1531.4 7657 1990-12-19 2024-10-11 02:07:37.000 1990-12-19 2024-10-11 02:07:37 +7658 7658 7659 765.8 1531.6000000000001 7658 1990-12-20 2024-10-11 02:07:38.000 1990-12-20 2024-10-11 02:07:38 +7659 7659 7660 765.9 1531.8000000000002 7659 1990-12-21 2024-10-11 02:07:39.000 1990-12-21 2024-10-11 02:07:39 +7661 7661 7662 766.1 1532.2 7661 1990-12-23 2024-10-11 02:07:41.000 1990-12-23 2024-10-11 02:07:41 +7662 7662 7663 766.2 1532.4 7662 1990-12-24 2024-10-11 02:07:42.000 1990-12-24 2024-10-11 02:07:42 +7663 7663 7664 766.3 1532.6000000000001 7663 1990-12-25 2024-10-11 02:07:43.000 1990-12-25 2024-10-11 02:07:43 +7664 7664 7665 766.4 1532.8000000000002 7664 1990-12-26 2024-10-11 02:07:44.000 1990-12-26 2024-10-11 02:07:44 +7666 7666 7667 766.6 1533.2 7666 1990-12-28 2024-10-11 02:07:46.000 1990-12-28 2024-10-11 02:07:46 +7667 7667 7668 766.7 1533.4 7667 1990-12-29 2024-10-11 02:07:47.000 1990-12-29 2024-10-11 02:07:47 +7668 7668 7669 766.8 1533.6000000000001 7668 1990-12-30 2024-10-11 02:07:48.000 1990-12-30 2024-10-11 02:07:48 +7669 7669 7670 766.9 1533.8000000000002 7669 1990-12-31 2024-10-11 02:07:49.000 1990-12-31 2024-10-11 02:07:49 +7671 7671 7672 767.1 1534.2 7671 1991-01-02 2024-10-11 02:07:51.000 1991-01-02 2024-10-11 02:07:51 +7672 7672 7673 767.2 1534.4 7672 1991-01-03 2024-10-11 02:07:52.000 1991-01-03 2024-10-11 02:07:52 +7673 7673 7674 767.3 1534.6000000000001 7673 1991-01-04 2024-10-11 02:07:53.000 1991-01-04 2024-10-11 02:07:53 +7674 7674 7675 767.4 1534.8000000000002 7674 1991-01-05 2024-10-11 02:07:54.000 1991-01-05 2024-10-11 02:07:54 +7676 7676 7677 767.6 1535.2 7676 1991-01-07 2024-10-11 02:07:56.000 1991-01-07 2024-10-11 02:07:56 +7677 7677 7678 767.7 1535.4 7677 1991-01-08 2024-10-11 02:07:57.000 1991-01-08 2024-10-11 02:07:57 +7678 7678 7679 767.8 1535.6000000000001 7678 1991-01-09 2024-10-11 02:07:58.000 1991-01-09 2024-10-11 02:07:58 +7679 7679 7680 767.9 1535.8000000000002 7679 1991-01-10 2024-10-11 02:07:59.000 1991-01-10 2024-10-11 02:07:59 +7681 7681 7682 768.1 1536.2 7681 1991-01-12 2024-10-11 02:08:01.000 1991-01-12 2024-10-11 02:08:01 +7682 7682 7683 768.2 1536.4 7682 1991-01-13 2024-10-11 02:08:02.000 1991-01-13 2024-10-11 02:08:02 +7683 7683 7684 768.3 1536.6000000000001 7683 1991-01-14 2024-10-11 02:08:03.000 1991-01-14 2024-10-11 02:08:03 +7684 7684 7685 768.4 1536.8000000000002 7684 1991-01-15 2024-10-11 02:08:04.000 1991-01-15 2024-10-11 02:08:04 +7686 7686 7687 768.6 1537.2 7686 1991-01-17 2024-10-11 02:08:06.000 1991-01-17 2024-10-11 02:08:06 +7687 7687 7688 768.7 1537.4 7687 1991-01-18 2024-10-11 02:08:07.000 1991-01-18 2024-10-11 02:08:07 +7688 7688 7689 768.8 1537.6000000000001 7688 1991-01-19 2024-10-11 02:08:08.000 1991-01-19 2024-10-11 02:08:08 +7689 7689 7690 768.9 1537.8000000000002 7689 1991-01-20 2024-10-11 02:08:09.000 1991-01-20 2024-10-11 02:08:09 +7691 7691 7692 769.1 1538.2 7691 1991-01-22 2024-10-11 02:08:11.000 1991-01-22 2024-10-11 02:08:11 +7692 7692 7693 769.2 1538.4 7692 1991-01-23 2024-10-11 02:08:12.000 1991-01-23 2024-10-11 02:08:12 +7693 7693 7694 769.3 1538.6000000000001 7693 1991-01-24 2024-10-11 02:08:13.000 1991-01-24 2024-10-11 02:08:13 +7694 7694 7695 769.4 1538.8000000000002 7694 1991-01-25 2024-10-11 02:08:14.000 1991-01-25 2024-10-11 02:08:14 +7696 7696 7697 769.6 1539.2 7696 1991-01-27 2024-10-11 02:08:16.000 1991-01-27 2024-10-11 02:08:16 +7697 7697 7698 769.7 1539.4 7697 1991-01-28 2024-10-11 02:08:17.000 1991-01-28 2024-10-11 02:08:17 +7698 7698 7699 769.8 1539.6000000000001 7698 1991-01-29 2024-10-11 02:08:18.000 1991-01-29 2024-10-11 02:08:18 +7699 7699 7700 769.9 1539.8000000000002 7699 1991-01-30 2024-10-11 02:08:19.000 1991-01-30 2024-10-11 02:08:19 +7701 7701 7702 770.1 1540.2 7701 1991-02-01 2024-10-11 02:08:21.000 1991-02-01 2024-10-11 02:08:21 +7702 7702 7703 770.2 1540.4 7702 1991-02-02 2024-10-11 02:08:22.000 1991-02-02 2024-10-11 02:08:22 +7703 7703 7704 770.3 1540.6000000000001 7703 1991-02-03 2024-10-11 02:08:23.000 1991-02-03 2024-10-11 02:08:23 +7704 7704 7705 770.4 1540.8000000000002 7704 1991-02-04 2024-10-11 02:08:24.000 1991-02-04 2024-10-11 02:08:24 +7706 7706 7707 770.6 1541.2 7706 1991-02-06 2024-10-11 02:08:26.000 1991-02-06 2024-10-11 02:08:26 +7707 7707 7708 770.7 1541.4 7707 1991-02-07 2024-10-11 02:08:27.000 1991-02-07 2024-10-11 02:08:27 +7708 7708 7709 770.8 1541.6000000000001 7708 1991-02-08 2024-10-11 02:08:28.000 1991-02-08 2024-10-11 02:08:28 +7709 7709 7710 770.9 1541.8000000000002 7709 1991-02-09 2024-10-11 02:08:29.000 1991-02-09 2024-10-11 02:08:29 +7711 7711 7712 771.1 1542.2 7711 1991-02-11 2024-10-11 02:08:31.000 1991-02-11 2024-10-11 02:08:31 +7712 7712 7713 771.2 1542.4 7712 1991-02-12 2024-10-11 02:08:32.000 1991-02-12 2024-10-11 02:08:32 +7713 7713 7714 771.3 1542.6000000000001 7713 1991-02-13 2024-10-11 02:08:33.000 1991-02-13 2024-10-11 02:08:33 +7714 7714 7715 771.4 1542.8000000000002 7714 1991-02-14 2024-10-11 02:08:34.000 1991-02-14 2024-10-11 02:08:34 +7716 7716 7717 771.6 1543.2 7716 1991-02-16 2024-10-11 02:08:36.000 1991-02-16 2024-10-11 02:08:36 +7717 7717 7718 771.7 1543.4 7717 1991-02-17 2024-10-11 02:08:37.000 1991-02-17 2024-10-11 02:08:37 +7718 7718 7719 771.8 1543.6000000000001 7718 1991-02-18 2024-10-11 02:08:38.000 1991-02-18 2024-10-11 02:08:38 +7719 7719 7720 771.9 1543.8000000000002 7719 1991-02-19 2024-10-11 02:08:39.000 1991-02-19 2024-10-11 02:08:39 +7721 7721 7722 772.1 1544.2 7721 1991-02-21 2024-10-11 02:08:41.000 1991-02-21 2024-10-11 02:08:41 +7722 7722 7723 772.2 1544.4 7722 1991-02-22 2024-10-11 02:08:42.000 1991-02-22 2024-10-11 02:08:42 +7723 7723 7724 772.3 1544.6000000000001 7723 1991-02-23 2024-10-11 02:08:43.000 1991-02-23 2024-10-11 02:08:43 +7724 7724 7725 772.4 1544.8000000000002 7724 1991-02-24 2024-10-11 02:08:44.000 1991-02-24 2024-10-11 02:08:44 +7726 7726 7727 772.6 1545.2 7726 1991-02-26 2024-10-11 02:08:46.000 1991-02-26 2024-10-11 02:08:46 +7727 7727 7728 772.7 1545.4 7727 1991-02-27 2024-10-11 02:08:47.000 1991-02-27 2024-10-11 02:08:47 +7728 7728 7729 772.8 1545.6000000000001 7728 1991-02-28 2024-10-11 02:08:48.000 1991-02-28 2024-10-11 02:08:48 +7729 7729 7730 772.9 1545.8000000000002 7729 1991-03-01 2024-10-11 02:08:49.000 1991-03-01 2024-10-11 02:08:49 +7731 7731 7732 773.1 1546.2 7731 1991-03-03 2024-10-11 02:08:51.000 1991-03-03 2024-10-11 02:08:51 +7732 7732 7733 773.2 1546.4 7732 1991-03-04 2024-10-11 02:08:52.000 1991-03-04 2024-10-11 02:08:52 +7733 7733 7734 773.3 1546.6000000000001 7733 1991-03-05 2024-10-11 02:08:53.000 1991-03-05 2024-10-11 02:08:53 +7734 7734 7735 773.4 1546.8000000000002 7734 1991-03-06 2024-10-11 02:08:54.000 1991-03-06 2024-10-11 02:08:54 +7736 7736 7737 773.6 1547.2 7736 1991-03-08 2024-10-11 02:08:56.000 1991-03-08 2024-10-11 02:08:56 +7737 7737 7738 773.7 1547.4 7737 1991-03-09 2024-10-11 02:08:57.000 1991-03-09 2024-10-11 02:08:57 +7738 7738 7739 773.8 1547.6000000000001 7738 1991-03-10 2024-10-11 02:08:58.000 1991-03-10 2024-10-11 02:08:58 +7739 7739 7740 773.9 1547.8000000000002 7739 1991-03-11 2024-10-11 02:08:59.000 1991-03-11 2024-10-11 02:08:59 +7741 7741 7742 774.1 1548.2 7741 1991-03-13 2024-10-11 02:09:01.000 1991-03-13 2024-10-11 02:09:01 +7742 7742 7743 774.2 1548.4 7742 1991-03-14 2024-10-11 02:09:02.000 1991-03-14 2024-10-11 02:09:02 +7743 7743 7744 774.3 1548.6000000000001 7743 1991-03-15 2024-10-11 02:09:03.000 1991-03-15 2024-10-11 02:09:03 +7744 7744 7745 774.4 1548.8000000000002 7744 1991-03-16 2024-10-11 02:09:04.000 1991-03-16 2024-10-11 02:09:04 +7746 7746 7747 774.6 1549.2 7746 1991-03-18 2024-10-11 02:09:06.000 1991-03-18 2024-10-11 02:09:06 +7747 7747 7748 774.7 1549.4 7747 1991-03-19 2024-10-11 02:09:07.000 1991-03-19 2024-10-11 02:09:07 +7748 7748 7749 774.8 1549.6000000000001 7748 1991-03-20 2024-10-11 02:09:08.000 1991-03-20 2024-10-11 02:09:08 +7749 7749 7750 774.9 1549.8000000000002 7749 1991-03-21 2024-10-11 02:09:09.000 1991-03-21 2024-10-11 02:09:09 +7751 7751 7752 775.1 1550.2 7751 1991-03-23 2024-10-11 02:09:11.000 1991-03-23 2024-10-11 02:09:11 +7752 7752 7753 775.2 1550.4 7752 1991-03-24 2024-10-11 02:09:12.000 1991-03-24 2024-10-11 02:09:12 +7753 7753 7754 775.3 1550.6000000000001 7753 1991-03-25 2024-10-11 02:09:13.000 1991-03-25 2024-10-11 02:09:13 +7754 7754 7755 775.4 1550.8000000000002 7754 1991-03-26 2024-10-11 02:09:14.000 1991-03-26 2024-10-11 02:09:14 +7756 7756 7757 775.6 1551.2 7756 1991-03-28 2024-10-11 02:09:16.000 1991-03-28 2024-10-11 02:09:16 +7757 7757 7758 775.7 1551.4 7757 1991-03-29 2024-10-11 02:09:17.000 1991-03-29 2024-10-11 02:09:17 +7758 7758 7759 775.8 1551.6000000000001 7758 1991-03-30 2024-10-11 02:09:18.000 1991-03-30 2024-10-11 02:09:18 +7759 7759 7760 775.9 1551.8000000000002 7759 1991-03-31 2024-10-11 02:09:19.000 1991-03-31 2024-10-11 02:09:19 +7761 7761 7762 776.1 1552.2 7761 1991-04-02 2024-10-11 02:09:21.000 1991-04-02 2024-10-11 02:09:21 +7762 7762 7763 776.2 1552.4 7762 1991-04-03 2024-10-11 02:09:22.000 1991-04-03 2024-10-11 02:09:22 +7763 7763 7764 776.3 1552.6000000000001 7763 1991-04-04 2024-10-11 02:09:23.000 1991-04-04 2024-10-11 02:09:23 +7764 7764 7765 776.4 1552.8000000000002 7764 1991-04-05 2024-10-11 02:09:24.000 1991-04-05 2024-10-11 02:09:24 +7766 7766 7767 776.6 1553.2 7766 1991-04-07 2024-10-11 02:09:26.000 1991-04-07 2024-10-11 02:09:26 +7767 7767 7768 776.7 1553.4 7767 1991-04-08 2024-10-11 02:09:27.000 1991-04-08 2024-10-11 02:09:27 +7768 7768 7769 776.8 1553.6000000000001 7768 1991-04-09 2024-10-11 02:09:28.000 1991-04-09 2024-10-11 02:09:28 +7769 7769 7770 776.9 1553.8000000000002 7769 1991-04-10 2024-10-11 02:09:29.000 1991-04-10 2024-10-11 02:09:29 +7771 7771 7772 777.1 1554.2 7771 1991-04-12 2024-10-11 02:09:31.000 1991-04-12 2024-10-11 02:09:31 +7772 7772 7773 777.2 1554.4 7772 1991-04-13 2024-10-11 02:09:32.000 1991-04-13 2024-10-11 02:09:32 +7773 7773 7774 777.3 1554.6000000000001 7773 1991-04-14 2024-10-11 02:09:33.000 1991-04-14 2024-10-11 02:09:33 +7774 7774 7775 777.4 1554.8000000000002 7774 1991-04-15 2024-10-11 02:09:34.000 1991-04-15 2024-10-11 02:09:34 +7776 7776 7777 777.6 1555.2 7776 1991-04-17 2024-10-11 02:09:36.000 1991-04-17 2024-10-11 02:09:36 +7777 7777 7778 777.7 1555.4 7777 1991-04-18 2024-10-11 02:09:37.000 1991-04-18 2024-10-11 02:09:37 +7778 7778 7779 777.8 1555.6000000000001 7778 1991-04-19 2024-10-11 02:09:38.000 1991-04-19 2024-10-11 02:09:38 +7779 7779 7780 777.9 1555.8000000000002 7779 1991-04-20 2024-10-11 02:09:39.000 1991-04-20 2024-10-11 02:09:39 +7781 7781 7782 778.1 1556.2 7781 1991-04-22 2024-10-11 02:09:41.000 1991-04-22 2024-10-11 02:09:41 +7782 7782 7783 778.2 1556.4 7782 1991-04-23 2024-10-11 02:09:42.000 1991-04-23 2024-10-11 02:09:42 +7783 7783 7784 778.3 1556.6000000000001 7783 1991-04-24 2024-10-11 02:09:43.000 1991-04-24 2024-10-11 02:09:43 +7784 7784 7785 778.4 1556.8000000000002 7784 1991-04-25 2024-10-11 02:09:44.000 1991-04-25 2024-10-11 02:09:44 +7786 7786 7787 778.6 1557.2 7786 1991-04-27 2024-10-11 02:09:46.000 1991-04-27 2024-10-11 02:09:46 +7787 7787 7788 778.7 1557.4 7787 1991-04-28 2024-10-11 02:09:47.000 1991-04-28 2024-10-11 02:09:47 +7788 7788 7789 778.8 1557.6000000000001 7788 1991-04-29 2024-10-11 02:09:48.000 1991-04-29 2024-10-11 02:09:48 +7789 7789 7790 778.9 1557.8000000000002 7789 1991-04-30 2024-10-11 02:09:49.000 1991-04-30 2024-10-11 02:09:49 +7791 7791 7792 779.1 1558.2 7791 1991-05-02 2024-10-11 02:09:51.000 1991-05-02 2024-10-11 02:09:51 +7792 7792 7793 779.2 1558.4 7792 1991-05-03 2024-10-11 02:09:52.000 1991-05-03 2024-10-11 02:09:52 +7793 7793 7794 779.3 1558.6000000000001 7793 1991-05-04 2024-10-11 02:09:53.000 1991-05-04 2024-10-11 02:09:53 +7794 7794 7795 779.4 1558.8000000000002 7794 1991-05-05 2024-10-11 02:09:54.000 1991-05-05 2024-10-11 02:09:54 +7796 7796 7797 779.6 1559.2 7796 1991-05-07 2024-10-11 02:09:56.000 1991-05-07 2024-10-11 02:09:56 +7797 7797 7798 779.7 1559.4 7797 1991-05-08 2024-10-11 02:09:57.000 1991-05-08 2024-10-11 02:09:57 +7798 7798 7799 779.8 1559.6000000000001 7798 1991-05-09 2024-10-11 02:09:58.000 1991-05-09 2024-10-11 02:09:58 +7799 7799 7800 779.9 1559.8000000000002 7799 1991-05-10 2024-10-11 02:09:59.000 1991-05-10 2024-10-11 02:09:59 +7801 7801 7802 780.1 1560.2 7801 1991-05-12 2024-10-11 02:10:01.000 1991-05-12 2024-10-11 02:10:01 +7802 7802 7803 780.2 1560.4 7802 1991-05-13 2024-10-11 02:10:02.000 1991-05-13 2024-10-11 02:10:02 +7803 7803 7804 780.3 1560.6000000000001 7803 1991-05-14 2024-10-11 02:10:03.000 1991-05-14 2024-10-11 02:10:03 +7804 7804 7805 780.4 1560.8000000000002 7804 1991-05-15 2024-10-11 02:10:04.000 1991-05-15 2024-10-11 02:10:04 +7806 7806 7807 780.6 1561.2 7806 1991-05-17 2024-10-11 02:10:06.000 1991-05-17 2024-10-11 02:10:06 +7807 7807 7808 780.7 1561.4 7807 1991-05-18 2024-10-11 02:10:07.000 1991-05-18 2024-10-11 02:10:07 +7808 7808 7809 780.8 1561.6000000000001 7808 1991-05-19 2024-10-11 02:10:08.000 1991-05-19 2024-10-11 02:10:08 +7809 7809 7810 780.9 1561.8000000000002 7809 1991-05-20 2024-10-11 02:10:09.000 1991-05-20 2024-10-11 02:10:09 +7811 7811 7812 781.1 1562.2 7811 1991-05-22 2024-10-11 02:10:11.000 1991-05-22 2024-10-11 02:10:11 +7812 7812 7813 781.2 1562.4 7812 1991-05-23 2024-10-11 02:10:12.000 1991-05-23 2024-10-11 02:10:12 +7813 7813 7814 781.3 1562.6000000000001 7813 1991-05-24 2024-10-11 02:10:13.000 1991-05-24 2024-10-11 02:10:13 +7814 7814 7815 781.4 1562.8000000000002 7814 1991-05-25 2024-10-11 02:10:14.000 1991-05-25 2024-10-11 02:10:14 +7816 7816 7817 781.6 1563.2 7816 1991-05-27 2024-10-11 02:10:16.000 1991-05-27 2024-10-11 02:10:16 +7817 7817 7818 781.7 1563.4 7817 1991-05-28 2024-10-11 02:10:17.000 1991-05-28 2024-10-11 02:10:17 +7818 7818 7819 781.8 1563.6000000000001 7818 1991-05-29 2024-10-11 02:10:18.000 1991-05-29 2024-10-11 02:10:18 +7819 7819 7820 781.9 1563.8000000000002 7819 1991-05-30 2024-10-11 02:10:19.000 1991-05-30 2024-10-11 02:10:19 +7821 7821 7822 782.1 1564.2 7821 1991-06-01 2024-10-11 02:10:21.000 1991-06-01 2024-10-11 02:10:21 +7822 7822 7823 782.2 1564.4 7822 1991-06-02 2024-10-11 02:10:22.000 1991-06-02 2024-10-11 02:10:22 +7823 7823 7824 782.3 1564.6000000000001 7823 1991-06-03 2024-10-11 02:10:23.000 1991-06-03 2024-10-11 02:10:23 +7824 7824 7825 782.4 1564.8000000000002 7824 1991-06-04 2024-10-11 02:10:24.000 1991-06-04 2024-10-11 02:10:24 +7826 7826 7827 782.6 1565.2 7826 1991-06-06 2024-10-11 02:10:26.000 1991-06-06 2024-10-11 02:10:26 +7827 7827 7828 782.7 1565.4 7827 1991-06-07 2024-10-11 02:10:27.000 1991-06-07 2024-10-11 02:10:27 +7828 7828 7829 782.8 1565.6000000000001 7828 1991-06-08 2024-10-11 02:10:28.000 1991-06-08 2024-10-11 02:10:28 +7829 7829 7830 782.9 1565.8000000000002 7829 1991-06-09 2024-10-11 02:10:29.000 1991-06-09 2024-10-11 02:10:29 +7831 7831 7832 783.1 1566.2 7831 1991-06-11 2024-10-11 02:10:31.000 1991-06-11 2024-10-11 02:10:31 +7832 7832 7833 783.2 1566.4 7832 1991-06-12 2024-10-11 02:10:32.000 1991-06-12 2024-10-11 02:10:32 +7833 7833 7834 783.3 1566.6000000000001 7833 1991-06-13 2024-10-11 02:10:33.000 1991-06-13 2024-10-11 02:10:33 +7834 7834 7835 783.4 1566.8000000000002 7834 1991-06-14 2024-10-11 02:10:34.000 1991-06-14 2024-10-11 02:10:34 +7836 7836 7837 783.6 1567.2 7836 1991-06-16 2024-10-11 02:10:36.000 1991-06-16 2024-10-11 02:10:36 +7837 7837 7838 783.7 1567.4 7837 1991-06-17 2024-10-11 02:10:37.000 1991-06-17 2024-10-11 02:10:37 +7838 7838 7839 783.8 1567.6000000000001 7838 1991-06-18 2024-10-11 02:10:38.000 1991-06-18 2024-10-11 02:10:38 +7839 7839 7840 783.9 1567.8000000000002 7839 1991-06-19 2024-10-11 02:10:39.000 1991-06-19 2024-10-11 02:10:39 +7841 7841 7842 784.1 1568.2 7841 1991-06-21 2024-10-11 02:10:41.000 1991-06-21 2024-10-11 02:10:41 +7842 7842 7843 784.2 1568.4 7842 1991-06-22 2024-10-11 02:10:42.000 1991-06-22 2024-10-11 02:10:42 +7843 7843 7844 784.3 1568.6000000000001 7843 1991-06-23 2024-10-11 02:10:43.000 1991-06-23 2024-10-11 02:10:43 +7844 7844 7845 784.4 1568.8000000000002 7844 1991-06-24 2024-10-11 02:10:44.000 1991-06-24 2024-10-11 02:10:44 +7846 7846 7847 784.6 1569.2 7846 1991-06-26 2024-10-11 02:10:46.000 1991-06-26 2024-10-11 02:10:46 +7847 7847 7848 784.7 1569.4 7847 1991-06-27 2024-10-11 02:10:47.000 1991-06-27 2024-10-11 02:10:47 +7848 7848 7849 784.8 1569.6000000000001 7848 1991-06-28 2024-10-11 02:10:48.000 1991-06-28 2024-10-11 02:10:48 +7849 7849 7850 784.9 1569.8000000000002 7849 1991-06-29 2024-10-11 02:10:49.000 1991-06-29 2024-10-11 02:10:49 +7851 7851 7852 785.1 1570.2 7851 1991-07-01 2024-10-11 02:10:51.000 1991-07-01 2024-10-11 02:10:51 +7852 7852 7853 785.2 1570.4 7852 1991-07-02 2024-10-11 02:10:52.000 1991-07-02 2024-10-11 02:10:52 +7853 7853 7854 785.3 1570.6000000000001 7853 1991-07-03 2024-10-11 02:10:53.000 1991-07-03 2024-10-11 02:10:53 +7854 7854 7855 785.4 1570.8000000000002 7854 1991-07-04 2024-10-11 02:10:54.000 1991-07-04 2024-10-11 02:10:54 +7856 7856 7857 785.6 1571.2 7856 1991-07-06 2024-10-11 02:10:56.000 1991-07-06 2024-10-11 02:10:56 +7857 7857 7858 785.7 1571.4 7857 1991-07-07 2024-10-11 02:10:57.000 1991-07-07 2024-10-11 02:10:57 +7858 7858 7859 785.8 1571.6000000000001 7858 1991-07-08 2024-10-11 02:10:58.000 1991-07-08 2024-10-11 02:10:58 +7859 7859 7860 785.9 1571.8000000000002 7859 1991-07-09 2024-10-11 02:10:59.000 1991-07-09 2024-10-11 02:10:59 +7861 7861 7862 786.1 1572.2 7861 1991-07-11 2024-10-11 02:11:01.000 1991-07-11 2024-10-11 02:11:01 +7862 7862 7863 786.2 1572.4 7862 1991-07-12 2024-10-11 02:11:02.000 1991-07-12 2024-10-11 02:11:02 +7863 7863 7864 786.3 1572.6000000000001 7863 1991-07-13 2024-10-11 02:11:03.000 1991-07-13 2024-10-11 02:11:03 +7864 7864 7865 786.4 1572.8000000000002 7864 1991-07-14 2024-10-11 02:11:04.000 1991-07-14 2024-10-11 02:11:04 +7866 7866 7867 786.6 1573.2 7866 1991-07-16 2024-10-11 02:11:06.000 1991-07-16 2024-10-11 02:11:06 +7867 7867 7868 786.7 1573.4 7867 1991-07-17 2024-10-11 02:11:07.000 1991-07-17 2024-10-11 02:11:07 +7868 7868 7869 786.8 1573.6000000000001 7868 1991-07-18 2024-10-11 02:11:08.000 1991-07-18 2024-10-11 02:11:08 +7869 7869 7870 786.9 1573.8000000000002 7869 1991-07-19 2024-10-11 02:11:09.000 1991-07-19 2024-10-11 02:11:09 +7871 7871 7872 787.1 1574.2 7871 1991-07-21 2024-10-11 02:11:11.000 1991-07-21 2024-10-11 02:11:11 +7872 7872 7873 787.2 1574.4 7872 1991-07-22 2024-10-11 02:11:12.000 1991-07-22 2024-10-11 02:11:12 +7873 7873 7874 787.3 1574.6000000000001 7873 1991-07-23 2024-10-11 02:11:13.000 1991-07-23 2024-10-11 02:11:13 +7874 7874 7875 787.4 1574.8000000000002 7874 1991-07-24 2024-10-11 02:11:14.000 1991-07-24 2024-10-11 02:11:14 +7876 7876 7877 787.6 1575.2 7876 1991-07-26 2024-10-11 02:11:16.000 1991-07-26 2024-10-11 02:11:16 +7877 7877 7878 787.7 1575.4 7877 1991-07-27 2024-10-11 02:11:17.000 1991-07-27 2024-10-11 02:11:17 +7878 7878 7879 787.8 1575.6000000000001 7878 1991-07-28 2024-10-11 02:11:18.000 1991-07-28 2024-10-11 02:11:18 +7879 7879 7880 787.9 1575.8000000000002 7879 1991-07-29 2024-10-11 02:11:19.000 1991-07-29 2024-10-11 02:11:19 +7881 7881 7882 788.1 1576.2 7881 1991-07-31 2024-10-11 02:11:21.000 1991-07-31 2024-10-11 02:11:21 +7882 7882 7883 788.2 1576.4 7882 1991-08-01 2024-10-11 02:11:22.000 1991-08-01 2024-10-11 02:11:22 +7883 7883 7884 788.3 1576.6000000000001 7883 1991-08-02 2024-10-11 02:11:23.000 1991-08-02 2024-10-11 02:11:23 +7884 7884 7885 788.4 1576.8000000000002 7884 1991-08-03 2024-10-11 02:11:24.000 1991-08-03 2024-10-11 02:11:24 +7886 7886 7887 788.6 1577.2 7886 1991-08-05 2024-10-11 02:11:26.000 1991-08-05 2024-10-11 02:11:26 +7887 7887 7888 788.7 1577.4 7887 1991-08-06 2024-10-11 02:11:27.000 1991-08-06 2024-10-11 02:11:27 +7888 7888 7889 788.8 1577.6000000000001 7888 1991-08-07 2024-10-11 02:11:28.000 1991-08-07 2024-10-11 02:11:28 +7889 7889 7890 788.9 1577.8000000000002 7889 1991-08-08 2024-10-11 02:11:29.000 1991-08-08 2024-10-11 02:11:29 +7891 7891 7892 789.1 1578.2 7891 1991-08-10 2024-10-11 02:11:31.000 1991-08-10 2024-10-11 02:11:31 +7892 7892 7893 789.2 1578.4 7892 1991-08-11 2024-10-11 02:11:32.000 1991-08-11 2024-10-11 02:11:32 +7893 7893 7894 789.3 1578.6000000000001 7893 1991-08-12 2024-10-11 02:11:33.000 1991-08-12 2024-10-11 02:11:33 +7894 7894 7895 789.4 1578.8000000000002 7894 1991-08-13 2024-10-11 02:11:34.000 1991-08-13 2024-10-11 02:11:34 +7896 7896 7897 789.6 1579.2 7896 1991-08-15 2024-10-11 02:11:36.000 1991-08-15 2024-10-11 02:11:36 +7897 7897 7898 789.7 1579.4 7897 1991-08-16 2024-10-11 02:11:37.000 1991-08-16 2024-10-11 02:11:37 +7898 7898 7899 789.8 1579.6000000000001 7898 1991-08-17 2024-10-11 02:11:38.000 1991-08-17 2024-10-11 02:11:38 +7899 7899 7900 789.9 1579.8000000000002 7899 1991-08-18 2024-10-11 02:11:39.000 1991-08-18 2024-10-11 02:11:39 +7901 7901 7902 790.1 1580.2 7901 1991-08-20 2024-10-11 02:11:41.000 1991-08-20 2024-10-11 02:11:41 +7902 7902 7903 790.2 1580.4 7902 1991-08-21 2024-10-11 02:11:42.000 1991-08-21 2024-10-11 02:11:42 +7903 7903 7904 790.3 1580.6000000000001 7903 1991-08-22 2024-10-11 02:11:43.000 1991-08-22 2024-10-11 02:11:43 +7904 7904 7905 790.4 1580.8000000000002 7904 1991-08-23 2024-10-11 02:11:44.000 1991-08-23 2024-10-11 02:11:44 +7906 7906 7907 790.6 1581.2 7906 1991-08-25 2024-10-11 02:11:46.000 1991-08-25 2024-10-11 02:11:46 +7907 7907 7908 790.7 1581.4 7907 1991-08-26 2024-10-11 02:11:47.000 1991-08-26 2024-10-11 02:11:47 +7908 7908 7909 790.8 1581.6000000000001 7908 1991-08-27 2024-10-11 02:11:48.000 1991-08-27 2024-10-11 02:11:48 +7909 7909 7910 790.9 1581.8000000000002 7909 1991-08-28 2024-10-11 02:11:49.000 1991-08-28 2024-10-11 02:11:49 +7911 7911 7912 791.1 1582.2 7911 1991-08-30 2024-10-11 02:11:51.000 1991-08-30 2024-10-11 02:11:51 +7912 7912 7913 791.2 1582.4 7912 1991-08-31 2024-10-11 02:11:52.000 1991-08-31 2024-10-11 02:11:52 +7913 7913 7914 791.3 1582.6000000000001 7913 1991-09-01 2024-10-11 02:11:53.000 1991-09-01 2024-10-11 02:11:53 +7914 7914 7915 791.4 1582.8000000000002 7914 1991-09-02 2024-10-11 02:11:54.000 1991-09-02 2024-10-11 02:11:54 +7916 7916 7917 791.6 1583.2 7916 1991-09-04 2024-10-11 02:11:56.000 1991-09-04 2024-10-11 02:11:56 +7917 7917 7918 791.7 1583.4 7917 1991-09-05 2024-10-11 02:11:57.000 1991-09-05 2024-10-11 02:11:57 +7918 7918 7919 791.8 1583.6000000000001 7918 1991-09-06 2024-10-11 02:11:58.000 1991-09-06 2024-10-11 02:11:58 +7919 7919 7920 791.9 1583.8000000000002 7919 1991-09-07 2024-10-11 02:11:59.000 1991-09-07 2024-10-11 02:11:59 +7921 7921 7922 792.1 1584.2 7921 1991-09-09 2024-10-11 02:12:01.000 1991-09-09 2024-10-11 02:12:01 +7922 7922 7923 792.2 1584.4 7922 1991-09-10 2024-10-11 02:12:02.000 1991-09-10 2024-10-11 02:12:02 +7923 7923 7924 792.3 1584.6000000000001 7923 1991-09-11 2024-10-11 02:12:03.000 1991-09-11 2024-10-11 02:12:03 +7924 7924 7925 792.4 1584.8000000000002 7924 1991-09-12 2024-10-11 02:12:04.000 1991-09-12 2024-10-11 02:12:04 +7926 7926 7927 792.6 1585.2 7926 1991-09-14 2024-10-11 02:12:06.000 1991-09-14 2024-10-11 02:12:06 +7927 7927 7928 792.7 1585.4 7927 1991-09-15 2024-10-11 02:12:07.000 1991-09-15 2024-10-11 02:12:07 +7928 7928 7929 792.8 1585.6000000000001 7928 1991-09-16 2024-10-11 02:12:08.000 1991-09-16 2024-10-11 02:12:08 +7929 7929 7930 792.9 1585.8000000000002 7929 1991-09-17 2024-10-11 02:12:09.000 1991-09-17 2024-10-11 02:12:09 +7931 7931 7932 793.1 1586.2 7931 1991-09-19 2024-10-11 02:12:11.000 1991-09-19 2024-10-11 02:12:11 +7932 7932 7933 793.2 1586.4 7932 1991-09-20 2024-10-11 02:12:12.000 1991-09-20 2024-10-11 02:12:12 +7933 7933 7934 793.3 1586.6000000000001 7933 1991-09-21 2024-10-11 02:12:13.000 1991-09-21 2024-10-11 02:12:13 +7934 7934 7935 793.4 1586.8000000000002 7934 1991-09-22 2024-10-11 02:12:14.000 1991-09-22 2024-10-11 02:12:14 +7936 7936 7937 793.6 1587.2 7936 1991-09-24 2024-10-11 02:12:16.000 1991-09-24 2024-10-11 02:12:16 +7937 7937 7938 793.7 1587.4 7937 1991-09-25 2024-10-11 02:12:17.000 1991-09-25 2024-10-11 02:12:17 +7938 7938 7939 793.8 1587.6000000000001 7938 1991-09-26 2024-10-11 02:12:18.000 1991-09-26 2024-10-11 02:12:18 +7939 7939 7940 793.9 1587.8000000000002 7939 1991-09-27 2024-10-11 02:12:19.000 1991-09-27 2024-10-11 02:12:19 +7941 7941 7942 794.1 1588.2 7941 1991-09-29 2024-10-11 02:12:21.000 1991-09-29 2024-10-11 02:12:21 +7942 7942 7943 794.2 1588.4 7942 1991-09-30 2024-10-11 02:12:22.000 1991-09-30 2024-10-11 02:12:22 +7943 7943 7944 794.3 1588.6000000000001 7943 1991-10-01 2024-10-11 02:12:23.000 1991-10-01 2024-10-11 02:12:23 +7944 7944 7945 794.4 1588.8000000000002 7944 1991-10-02 2024-10-11 02:12:24.000 1991-10-02 2024-10-11 02:12:24 +7946 7946 7947 794.6 1589.2 7946 1991-10-04 2024-10-11 02:12:26.000 1991-10-04 2024-10-11 02:12:26 +7947 7947 7948 794.7 1589.4 7947 1991-10-05 2024-10-11 02:12:27.000 1991-10-05 2024-10-11 02:12:27 +7948 7948 7949 794.8 1589.6000000000001 7948 1991-10-06 2024-10-11 02:12:28.000 1991-10-06 2024-10-11 02:12:28 +7949 7949 7950 794.9 1589.8000000000002 7949 1991-10-07 2024-10-11 02:12:29.000 1991-10-07 2024-10-11 02:12:29 +7951 7951 7952 795.1 1590.2 7951 1991-10-09 2024-10-11 02:12:31.000 1991-10-09 2024-10-11 02:12:31 +7952 7952 7953 795.2 1590.4 7952 1991-10-10 2024-10-11 02:12:32.000 1991-10-10 2024-10-11 02:12:32 +7953 7953 7954 795.3 1590.6000000000001 7953 1991-10-11 2024-10-11 02:12:33.000 1991-10-11 2024-10-11 02:12:33 +7954 7954 7955 795.4 1590.8000000000002 7954 1991-10-12 2024-10-11 02:12:34.000 1991-10-12 2024-10-11 02:12:34 +7956 7956 7957 795.6 1591.2 7956 1991-10-14 2024-10-11 02:12:36.000 1991-10-14 2024-10-11 02:12:36 +7957 7957 7958 795.7 1591.4 7957 1991-10-15 2024-10-11 02:12:37.000 1991-10-15 2024-10-11 02:12:37 +7958 7958 7959 795.8 1591.6000000000001 7958 1991-10-16 2024-10-11 02:12:38.000 1991-10-16 2024-10-11 02:12:38 +7959 7959 7960 795.9 1591.8000000000002 7959 1991-10-17 2024-10-11 02:12:39.000 1991-10-17 2024-10-11 02:12:39 +7961 7961 7962 796.1 1592.2 7961 1991-10-19 2024-10-11 02:12:41.000 1991-10-19 2024-10-11 02:12:41 +7962 7962 7963 796.2 1592.4 7962 1991-10-20 2024-10-11 02:12:42.000 1991-10-20 2024-10-11 02:12:42 +7963 7963 7964 796.3 1592.6000000000001 7963 1991-10-21 2024-10-11 02:12:43.000 1991-10-21 2024-10-11 02:12:43 +7964 7964 7965 796.4 1592.8000000000002 7964 1991-10-22 2024-10-11 02:12:44.000 1991-10-22 2024-10-11 02:12:44 +7966 7966 7967 796.6 1593.2 7966 1991-10-24 2024-10-11 02:12:46.000 1991-10-24 2024-10-11 02:12:46 +7967 7967 7968 796.7 1593.4 7967 1991-10-25 2024-10-11 02:12:47.000 1991-10-25 2024-10-11 02:12:47 +7968 7968 7969 796.8 1593.6000000000001 7968 1991-10-26 2024-10-11 02:12:48.000 1991-10-26 2024-10-11 02:12:48 +7969 7969 7970 796.9 1593.8000000000002 7969 1991-10-27 2024-10-11 02:12:49.000 1991-10-27 2024-10-11 02:12:49 +7971 7971 7972 797.1 1594.2 7971 1991-10-29 2024-10-11 02:12:51.000 1991-10-29 2024-10-11 02:12:51 +7972 7972 7973 797.2 1594.4 7972 1991-10-30 2024-10-11 02:12:52.000 1991-10-30 2024-10-11 02:12:52 +7973 7973 7974 797.3 1594.6000000000001 7973 1991-10-31 2024-10-11 02:12:53.000 1991-10-31 2024-10-11 02:12:53 +7974 7974 7975 797.4 1594.8000000000002 7974 1991-11-01 2024-10-11 02:12:54.000 1991-11-01 2024-10-11 02:12:54 +7976 7976 7977 797.6 1595.2 7976 1991-11-03 2024-10-11 02:12:56.000 1991-11-03 2024-10-11 02:12:56 +7977 7977 7978 797.7 1595.4 7977 1991-11-04 2024-10-11 02:12:57.000 1991-11-04 2024-10-11 02:12:57 +7978 7978 7979 797.8 1595.6000000000001 7978 1991-11-05 2024-10-11 02:12:58.000 1991-11-05 2024-10-11 02:12:58 +7979 7979 7980 797.9 1595.8000000000002 7979 1991-11-06 2024-10-11 02:12:59.000 1991-11-06 2024-10-11 02:12:59 +7981 7981 7982 798.1 1596.2 7981 1991-11-08 2024-10-11 02:13:01.000 1991-11-08 2024-10-11 02:13:01 +7982 7982 7983 798.2 1596.4 7982 1991-11-09 2024-10-11 02:13:02.000 1991-11-09 2024-10-11 02:13:02 +7983 7983 7984 798.3 1596.6000000000001 7983 1991-11-10 2024-10-11 02:13:03.000 1991-11-10 2024-10-11 02:13:03 +7984 7984 7985 798.4 1596.8000000000002 7984 1991-11-11 2024-10-11 02:13:04.000 1991-11-11 2024-10-11 02:13:04 +7986 7986 7987 798.6 1597.2 7986 1991-11-13 2024-10-11 02:13:06.000 1991-11-13 2024-10-11 02:13:06 +7987 7987 7988 798.7 1597.4 7987 1991-11-14 2024-10-11 02:13:07.000 1991-11-14 2024-10-11 02:13:07 +7988 7988 7989 798.8 1597.6000000000001 7988 1991-11-15 2024-10-11 02:13:08.000 1991-11-15 2024-10-11 02:13:08 +7989 7989 7990 798.9 1597.8000000000002 7989 1991-11-16 2024-10-11 02:13:09.000 1991-11-16 2024-10-11 02:13:09 +7991 7991 7992 799.1 1598.2 7991 1991-11-18 2024-10-11 02:13:11.000 1991-11-18 2024-10-11 02:13:11 +7992 7992 7993 799.2 1598.4 7992 1991-11-19 2024-10-11 02:13:12.000 1991-11-19 2024-10-11 02:13:12 +7993 7993 7994 799.3 1598.6000000000001 7993 1991-11-20 2024-10-11 02:13:13.000 1991-11-20 2024-10-11 02:13:13 +7994 7994 7995 799.4 1598.8000000000002 7994 1991-11-21 2024-10-11 02:13:14.000 1991-11-21 2024-10-11 02:13:14 +7996 7996 7997 799.6 1599.2 7996 1991-11-23 2024-10-11 02:13:16.000 1991-11-23 2024-10-11 02:13:16 +7997 7997 7998 799.7 1599.4 7997 1991-11-24 2024-10-11 02:13:17.000 1991-11-24 2024-10-11 02:13:17 +7998 7998 7999 799.8 1599.6000000000001 7998 1991-11-25 2024-10-11 02:13:18.000 1991-11-25 2024-10-11 02:13:18 +7999 7999 8000 799.9 1599.8000000000002 7999 1991-11-26 2024-10-11 02:13:19.000 1991-11-26 2024-10-11 02:13:19 +8001 8001 8002 800.1 1600.2 8001 1991-11-28 2024-10-11 02:13:21.000 1991-11-28 2024-10-11 02:13:21 +8002 8002 8003 800.2 1600.4 8002 1991-11-29 2024-10-11 02:13:22.000 1991-11-29 2024-10-11 02:13:22 +8003 8003 8004 800.3 1600.6000000000001 8003 1991-11-30 2024-10-11 02:13:23.000 1991-11-30 2024-10-11 02:13:23 +8004 8004 8005 800.4 1600.8000000000002 8004 1991-12-01 2024-10-11 02:13:24.000 1991-12-01 2024-10-11 02:13:24 +8006 8006 8007 800.6 1601.2 8006 1991-12-03 2024-10-11 02:13:26.000 1991-12-03 2024-10-11 02:13:26 +8007 8007 8008 800.7 1601.4 8007 1991-12-04 2024-10-11 02:13:27.000 1991-12-04 2024-10-11 02:13:27 +8008 8008 8009 800.8 1601.6000000000001 8008 1991-12-05 2024-10-11 02:13:28.000 1991-12-05 2024-10-11 02:13:28 +8009 8009 8010 800.9 1601.8000000000002 8009 1991-12-06 2024-10-11 02:13:29.000 1991-12-06 2024-10-11 02:13:29 +8011 8011 8012 801.1 1602.2 8011 1991-12-08 2024-10-11 02:13:31.000 1991-12-08 2024-10-11 02:13:31 +8012 8012 8013 801.2 1602.4 8012 1991-12-09 2024-10-11 02:13:32.000 1991-12-09 2024-10-11 02:13:32 +8013 8013 8014 801.3 1602.6000000000001 8013 1991-12-10 2024-10-11 02:13:33.000 1991-12-10 2024-10-11 02:13:33 +8014 8014 8015 801.4 1602.8000000000002 8014 1991-12-11 2024-10-11 02:13:34.000 1991-12-11 2024-10-11 02:13:34 +8016 8016 8017 801.6 1603.2 8016 1991-12-13 2024-10-11 02:13:36.000 1991-12-13 2024-10-11 02:13:36 +8017 8017 8018 801.7 1603.4 8017 1991-12-14 2024-10-11 02:13:37.000 1991-12-14 2024-10-11 02:13:37 +8018 8018 8019 801.8 1603.6000000000001 8018 1991-12-15 2024-10-11 02:13:38.000 1991-12-15 2024-10-11 02:13:38 +8019 8019 8020 801.9 1603.8000000000002 8019 1991-12-16 2024-10-11 02:13:39.000 1991-12-16 2024-10-11 02:13:39 +8021 8021 8022 802.1 1604.2 8021 1991-12-18 2024-10-11 02:13:41.000 1991-12-18 2024-10-11 02:13:41 +8022 8022 8023 802.2 1604.4 8022 1991-12-19 2024-10-11 02:13:42.000 1991-12-19 2024-10-11 02:13:42 +8023 8023 8024 802.3 1604.6000000000001 8023 1991-12-20 2024-10-11 02:13:43.000 1991-12-20 2024-10-11 02:13:43 +8024 8024 8025 802.4 1604.8000000000002 8024 1991-12-21 2024-10-11 02:13:44.000 1991-12-21 2024-10-11 02:13:44 +8026 8026 8027 802.6 1605.2 8026 1991-12-23 2024-10-11 02:13:46.000 1991-12-23 2024-10-11 02:13:46 +8027 8027 8028 802.7 1605.4 8027 1991-12-24 2024-10-11 02:13:47.000 1991-12-24 2024-10-11 02:13:47 +8028 8028 8029 802.8 1605.6000000000001 8028 1991-12-25 2024-10-11 02:13:48.000 1991-12-25 2024-10-11 02:13:48 +8029 8029 8030 802.9 1605.8000000000002 8029 1991-12-26 2024-10-11 02:13:49.000 1991-12-26 2024-10-11 02:13:49 +8031 8031 8032 803.1 1606.2 8031 1991-12-28 2024-10-11 02:13:51.000 1991-12-28 2024-10-11 02:13:51 +8032 8032 8033 803.2 1606.4 8032 1991-12-29 2024-10-11 02:13:52.000 1991-12-29 2024-10-11 02:13:52 +8033 8033 8034 803.3 1606.6000000000001 8033 1991-12-30 2024-10-11 02:13:53.000 1991-12-30 2024-10-11 02:13:53 +8034 8034 8035 803.4 1606.8000000000002 8034 1991-12-31 2024-10-11 02:13:54.000 1991-12-31 2024-10-11 02:13:54 +8036 8036 8037 803.6 1607.2 8036 1992-01-02 2024-10-11 02:13:56.000 1992-01-02 2024-10-11 02:13:56 +8037 8037 8038 803.7 1607.4 8037 1992-01-03 2024-10-11 02:13:57.000 1992-01-03 2024-10-11 02:13:57 +8038 8038 8039 803.8 1607.6000000000001 8038 1992-01-04 2024-10-11 02:13:58.000 1992-01-04 2024-10-11 02:13:58 +8039 8039 8040 803.9 1607.8000000000002 8039 1992-01-05 2024-10-11 02:13:59.000 1992-01-05 2024-10-11 02:13:59 +8041 8041 8042 804.1 1608.2 8041 1992-01-07 2024-10-11 02:14:01.000 1992-01-07 2024-10-11 02:14:01 +8042 8042 8043 804.2 1608.4 8042 1992-01-08 2024-10-11 02:14:02.000 1992-01-08 2024-10-11 02:14:02 +8043 8043 8044 804.3 1608.6000000000001 8043 1992-01-09 2024-10-11 02:14:03.000 1992-01-09 2024-10-11 02:14:03 +8044 8044 8045 804.4 1608.8000000000002 8044 1992-01-10 2024-10-11 02:14:04.000 1992-01-10 2024-10-11 02:14:04 +8046 8046 8047 804.6 1609.2 8046 1992-01-12 2024-10-11 02:14:06.000 1992-01-12 2024-10-11 02:14:06 +8047 8047 8048 804.7 1609.4 8047 1992-01-13 2024-10-11 02:14:07.000 1992-01-13 2024-10-11 02:14:07 +8048 8048 8049 804.8 1609.6000000000001 8048 1992-01-14 2024-10-11 02:14:08.000 1992-01-14 2024-10-11 02:14:08 +8049 8049 8050 804.9 1609.8000000000002 8049 1992-01-15 2024-10-11 02:14:09.000 1992-01-15 2024-10-11 02:14:09 +8051 8051 8052 805.1 1610.2 8051 1992-01-17 2024-10-11 02:14:11.000 1992-01-17 2024-10-11 02:14:11 +8052 8052 8053 805.2 1610.4 8052 1992-01-18 2024-10-11 02:14:12.000 1992-01-18 2024-10-11 02:14:12 +8053 8053 8054 805.3 1610.6000000000001 8053 1992-01-19 2024-10-11 02:14:13.000 1992-01-19 2024-10-11 02:14:13 +8054 8054 8055 805.4 1610.8000000000002 8054 1992-01-20 2024-10-11 02:14:14.000 1992-01-20 2024-10-11 02:14:14 +8056 8056 8057 805.6 1611.2 8056 1992-01-22 2024-10-11 02:14:16.000 1992-01-22 2024-10-11 02:14:16 +8057 8057 8058 805.7 1611.4 8057 1992-01-23 2024-10-11 02:14:17.000 1992-01-23 2024-10-11 02:14:17 +8058 8058 8059 805.8 1611.6000000000001 8058 1992-01-24 2024-10-11 02:14:18.000 1992-01-24 2024-10-11 02:14:18 +8059 8059 8060 805.9 1611.8000000000002 8059 1992-01-25 2024-10-11 02:14:19.000 1992-01-25 2024-10-11 02:14:19 +8061 8061 8062 806.1 1612.2 8061 1992-01-27 2024-10-11 02:14:21.000 1992-01-27 2024-10-11 02:14:21 +8062 8062 8063 806.2 1612.4 8062 1992-01-28 2024-10-11 02:14:22.000 1992-01-28 2024-10-11 02:14:22 +8063 8063 8064 806.3 1612.6000000000001 8063 1992-01-29 2024-10-11 02:14:23.000 1992-01-29 2024-10-11 02:14:23 +8064 8064 8065 806.4 1612.8000000000002 8064 1992-01-30 2024-10-11 02:14:24.000 1992-01-30 2024-10-11 02:14:24 +8066 8066 8067 806.6 1613.2 8066 1992-02-01 2024-10-11 02:14:26.000 1992-02-01 2024-10-11 02:14:26 +8067 8067 8068 806.7 1613.4 8067 1992-02-02 2024-10-11 02:14:27.000 1992-02-02 2024-10-11 02:14:27 +8068 8068 8069 806.8 1613.6000000000001 8068 1992-02-03 2024-10-11 02:14:28.000 1992-02-03 2024-10-11 02:14:28 +8069 8069 8070 806.9 1613.8000000000002 8069 1992-02-04 2024-10-11 02:14:29.000 1992-02-04 2024-10-11 02:14:29 +8071 8071 8072 807.1 1614.2 8071 1992-02-06 2024-10-11 02:14:31.000 1992-02-06 2024-10-11 02:14:31 +8072 8072 8073 807.2 1614.4 8072 1992-02-07 2024-10-11 02:14:32.000 1992-02-07 2024-10-11 02:14:32 +8073 8073 8074 807.3 1614.6000000000001 8073 1992-02-08 2024-10-11 02:14:33.000 1992-02-08 2024-10-11 02:14:33 +8074 8074 8075 807.4 1614.8000000000002 8074 1992-02-09 2024-10-11 02:14:34.000 1992-02-09 2024-10-11 02:14:34 +8076 8076 8077 807.6 1615.2 8076 1992-02-11 2024-10-11 02:14:36.000 1992-02-11 2024-10-11 02:14:36 +8077 8077 8078 807.7 1615.4 8077 1992-02-12 2024-10-11 02:14:37.000 1992-02-12 2024-10-11 02:14:37 +8078 8078 8079 807.8 1615.6000000000001 8078 1992-02-13 2024-10-11 02:14:38.000 1992-02-13 2024-10-11 02:14:38 +8079 8079 8080 807.9 1615.8000000000002 8079 1992-02-14 2024-10-11 02:14:39.000 1992-02-14 2024-10-11 02:14:39 +8081 8081 8082 808.1 1616.2 8081 1992-02-16 2024-10-11 02:14:41.000 1992-02-16 2024-10-11 02:14:41 +8082 8082 8083 808.2 1616.4 8082 1992-02-17 2024-10-11 02:14:42.000 1992-02-17 2024-10-11 02:14:42 +8083 8083 8084 808.3 1616.6000000000001 8083 1992-02-18 2024-10-11 02:14:43.000 1992-02-18 2024-10-11 02:14:43 +8084 8084 8085 808.4 1616.8000000000002 8084 1992-02-19 2024-10-11 02:14:44.000 1992-02-19 2024-10-11 02:14:44 +8086 8086 8087 808.6 1617.2 8086 1992-02-21 2024-10-11 02:14:46.000 1992-02-21 2024-10-11 02:14:46 +8087 8087 8088 808.7 1617.4 8087 1992-02-22 2024-10-11 02:14:47.000 1992-02-22 2024-10-11 02:14:47 +8088 8088 8089 808.8 1617.6000000000001 8088 1992-02-23 2024-10-11 02:14:48.000 1992-02-23 2024-10-11 02:14:48 +8089 8089 8090 808.9 1617.8000000000002 8089 1992-02-24 2024-10-11 02:14:49.000 1992-02-24 2024-10-11 02:14:49 +8091 8091 8092 809.1 1618.2 8091 1992-02-26 2024-10-11 02:14:51.000 1992-02-26 2024-10-11 02:14:51 +8092 8092 8093 809.2 1618.4 8092 1992-02-27 2024-10-11 02:14:52.000 1992-02-27 2024-10-11 02:14:52 +8093 8093 8094 809.3 1618.6000000000001 8093 1992-02-28 2024-10-11 02:14:53.000 1992-02-28 2024-10-11 02:14:53 +8094 8094 8095 809.4 1618.8000000000002 8094 1992-02-29 2024-10-11 02:14:54.000 1992-02-29 2024-10-11 02:14:54 +8096 8096 8097 809.6 1619.2 8096 1992-03-02 2024-10-11 02:14:56.000 1992-03-02 2024-10-11 02:14:56 +8097 8097 8098 809.7 1619.4 8097 1992-03-03 2024-10-11 02:14:57.000 1992-03-03 2024-10-11 02:14:57 +8098 8098 8099 809.8 1619.6000000000001 8098 1992-03-04 2024-10-11 02:14:58.000 1992-03-04 2024-10-11 02:14:58 +8099 8099 8100 809.9 1619.8000000000002 8099 1992-03-05 2024-10-11 02:14:59.000 1992-03-05 2024-10-11 02:14:59 +8101 8101 8102 810.1 1620.2 8101 1992-03-07 2024-10-11 02:15:01.000 1992-03-07 2024-10-11 02:15:01 +8102 8102 8103 810.2 1620.4 8102 1992-03-08 2024-10-11 02:15:02.000 1992-03-08 2024-10-11 02:15:02 +8103 8103 8104 810.3 1620.6000000000001 8103 1992-03-09 2024-10-11 02:15:03.000 1992-03-09 2024-10-11 02:15:03 +8104 8104 8105 810.4 1620.8000000000002 8104 1992-03-10 2024-10-11 02:15:04.000 1992-03-10 2024-10-11 02:15:04 +8106 8106 8107 810.6 1621.2 8106 1992-03-12 2024-10-11 02:15:06.000 1992-03-12 2024-10-11 02:15:06 +8107 8107 8108 810.7 1621.4 8107 1992-03-13 2024-10-11 02:15:07.000 1992-03-13 2024-10-11 02:15:07 +8108 8108 8109 810.8 1621.6000000000001 8108 1992-03-14 2024-10-11 02:15:08.000 1992-03-14 2024-10-11 02:15:08 +8109 8109 8110 810.9 1621.8000000000002 8109 1992-03-15 2024-10-11 02:15:09.000 1992-03-15 2024-10-11 02:15:09 +8111 8111 8112 811.1 1622.2 8111 1992-03-17 2024-10-11 02:15:11.000 1992-03-17 2024-10-11 02:15:11 +8112 8112 8113 811.2 1622.4 8112 1992-03-18 2024-10-11 02:15:12.000 1992-03-18 2024-10-11 02:15:12 +8113 8113 8114 811.3 1622.6000000000001 8113 1992-03-19 2024-10-11 02:15:13.000 1992-03-19 2024-10-11 02:15:13 +8114 8114 8115 811.4 1622.8000000000002 8114 1992-03-20 2024-10-11 02:15:14.000 1992-03-20 2024-10-11 02:15:14 +8116 8116 8117 811.6 1623.2 8116 1992-03-22 2024-10-11 02:15:16.000 1992-03-22 2024-10-11 02:15:16 +8117 8117 8118 811.7 1623.4 8117 1992-03-23 2024-10-11 02:15:17.000 1992-03-23 2024-10-11 02:15:17 +8118 8118 8119 811.8 1623.6000000000001 8118 1992-03-24 2024-10-11 02:15:18.000 1992-03-24 2024-10-11 02:15:18 +8119 8119 8120 811.9 1623.8000000000002 8119 1992-03-25 2024-10-11 02:15:19.000 1992-03-25 2024-10-11 02:15:19 +8121 8121 8122 812.1 1624.2 8121 1992-03-27 2024-10-11 02:15:21.000 1992-03-27 2024-10-11 02:15:21 +8122 8122 8123 812.2 1624.4 8122 1992-03-28 2024-10-11 02:15:22.000 1992-03-28 2024-10-11 02:15:22 +8123 8123 8124 812.3 1624.6000000000001 8123 1992-03-29 2024-10-11 02:15:23.000 1992-03-29 2024-10-11 02:15:23 +8124 8124 8125 812.4 1624.8000000000002 8124 1992-03-30 2024-10-11 02:15:24.000 1992-03-30 2024-10-11 02:15:24 +8126 8126 8127 812.6 1625.2 8126 1992-04-01 2024-10-11 02:15:26.000 1992-04-01 2024-10-11 02:15:26 +8127 8127 8128 812.7 1625.4 8127 1992-04-02 2024-10-11 02:15:27.000 1992-04-02 2024-10-11 02:15:27 +8128 8128 8129 812.8 1625.6000000000001 8128 1992-04-03 2024-10-11 02:15:28.000 1992-04-03 2024-10-11 02:15:28 +8129 8129 8130 812.9 1625.8000000000002 8129 1992-04-04 2024-10-11 02:15:29.000 1992-04-04 2024-10-11 02:15:29 +8131 8131 8132 813.1 1626.2 8131 1992-04-06 2024-10-11 02:15:31.000 1992-04-06 2024-10-11 02:15:31 +8132 8132 8133 813.2 1626.4 8132 1992-04-07 2024-10-11 02:15:32.000 1992-04-07 2024-10-11 02:15:32 +8133 8133 8134 813.3 1626.6000000000001 8133 1992-04-08 2024-10-11 02:15:33.000 1992-04-08 2024-10-11 02:15:33 +8134 8134 8135 813.4 1626.8000000000002 8134 1992-04-09 2024-10-11 02:15:34.000 1992-04-09 2024-10-11 02:15:34 +8136 8136 8137 813.6 1627.2 8136 1992-04-11 2024-10-11 02:15:36.000 1992-04-11 2024-10-11 02:15:36 +8137 8137 8138 813.7 1627.4 8137 1992-04-12 2024-10-11 02:15:37.000 1992-04-12 2024-10-11 02:15:37 +8138 8138 8139 813.8 1627.6000000000001 8138 1992-04-13 2024-10-11 02:15:38.000 1992-04-13 2024-10-11 02:15:38 +8139 8139 8140 813.9 1627.8000000000002 8139 1992-04-14 2024-10-11 02:15:39.000 1992-04-14 2024-10-11 02:15:39 +8141 8141 8142 814.1 1628.2 8141 1992-04-16 2024-10-11 02:15:41.000 1992-04-16 2024-10-11 02:15:41 +8142 8142 8143 814.2 1628.4 8142 1992-04-17 2024-10-11 02:15:42.000 1992-04-17 2024-10-11 02:15:42 +8143 8143 8144 814.3 1628.6000000000001 8143 1992-04-18 2024-10-11 02:15:43.000 1992-04-18 2024-10-11 02:15:43 +8144 8144 8145 814.4 1628.8000000000002 8144 1992-04-19 2024-10-11 02:15:44.000 1992-04-19 2024-10-11 02:15:44 +8146 8146 8147 814.6 1629.2 8146 1992-04-21 2024-10-11 02:15:46.000 1992-04-21 2024-10-11 02:15:46 +8147 8147 8148 814.7 1629.4 8147 1992-04-22 2024-10-11 02:15:47.000 1992-04-22 2024-10-11 02:15:47 +8148 8148 8149 814.8 1629.6000000000001 8148 1992-04-23 2024-10-11 02:15:48.000 1992-04-23 2024-10-11 02:15:48 +8149 8149 8150 814.9 1629.8000000000002 8149 1992-04-24 2024-10-11 02:15:49.000 1992-04-24 2024-10-11 02:15:49 +8151 8151 8152 815.1 1630.2 8151 1992-04-26 2024-10-11 02:15:51.000 1992-04-26 2024-10-11 02:15:51 +8152 8152 8153 815.2 1630.4 8152 1992-04-27 2024-10-11 02:15:52.000 1992-04-27 2024-10-11 02:15:52 +8153 8153 8154 815.3 1630.6000000000001 8153 1992-04-28 2024-10-11 02:15:53.000 1992-04-28 2024-10-11 02:15:53 +8154 8154 8155 815.4 1630.8000000000002 8154 1992-04-29 2024-10-11 02:15:54.000 1992-04-29 2024-10-11 02:15:54 +8156 8156 8157 815.6 1631.2 8156 1992-05-01 2024-10-11 02:15:56.000 1992-05-01 2024-10-11 02:15:56 +8157 8157 8158 815.7 1631.4 8157 1992-05-02 2024-10-11 02:15:57.000 1992-05-02 2024-10-11 02:15:57 +8158 8158 8159 815.8 1631.6000000000001 8158 1992-05-03 2024-10-11 02:15:58.000 1992-05-03 2024-10-11 02:15:58 +8159 8159 8160 815.9 1631.8000000000002 8159 1992-05-04 2024-10-11 02:15:59.000 1992-05-04 2024-10-11 02:15:59 +8161 8161 8162 816.1 1632.2 8161 1992-05-06 2024-10-11 02:16:01.000 1992-05-06 2024-10-11 02:16:01 +8162 8162 8163 816.2 1632.4 8162 1992-05-07 2024-10-11 02:16:02.000 1992-05-07 2024-10-11 02:16:02 +8163 8163 8164 816.3 1632.6000000000001 8163 1992-05-08 2024-10-11 02:16:03.000 1992-05-08 2024-10-11 02:16:03 +8164 8164 8165 816.4 1632.8000000000002 8164 1992-05-09 2024-10-11 02:16:04.000 1992-05-09 2024-10-11 02:16:04 +8166 8166 8167 816.6 1633.2 8166 1992-05-11 2024-10-11 02:16:06.000 1992-05-11 2024-10-11 02:16:06 +8167 8167 8168 816.7 1633.4 8167 1992-05-12 2024-10-11 02:16:07.000 1992-05-12 2024-10-11 02:16:07 +8168 8168 8169 816.8 1633.6000000000001 8168 1992-05-13 2024-10-11 02:16:08.000 1992-05-13 2024-10-11 02:16:08 +8169 8169 8170 816.9 1633.8000000000002 8169 1992-05-14 2024-10-11 02:16:09.000 1992-05-14 2024-10-11 02:16:09 +8171 8171 8172 817.1 1634.2 8171 1992-05-16 2024-10-11 02:16:11.000 1992-05-16 2024-10-11 02:16:11 +8172 8172 8173 817.2 1634.4 8172 1992-05-17 2024-10-11 02:16:12.000 1992-05-17 2024-10-11 02:16:12 +8173 8173 8174 817.3 1634.6000000000001 8173 1992-05-18 2024-10-11 02:16:13.000 1992-05-18 2024-10-11 02:16:13 +8174 8174 8175 817.4 1634.8000000000002 8174 1992-05-19 2024-10-11 02:16:14.000 1992-05-19 2024-10-11 02:16:14 +8176 8176 8177 817.6 1635.2 8176 1992-05-21 2024-10-11 02:16:16.000 1992-05-21 2024-10-11 02:16:16 +8177 8177 8178 817.7 1635.4 8177 1992-05-22 2024-10-11 02:16:17.000 1992-05-22 2024-10-11 02:16:17 +8178 8178 8179 817.8 1635.6000000000001 8178 1992-05-23 2024-10-11 02:16:18.000 1992-05-23 2024-10-11 02:16:18 +8179 8179 8180 817.9 1635.8000000000002 8179 1992-05-24 2024-10-11 02:16:19.000 1992-05-24 2024-10-11 02:16:19 +8181 8181 8182 818.1 1636.2 8181 1992-05-26 2024-10-11 02:16:21.000 1992-05-26 2024-10-11 02:16:21 +8182 8182 8183 818.2 1636.4 8182 1992-05-27 2024-10-11 02:16:22.000 1992-05-27 2024-10-11 02:16:22 +8183 8183 8184 818.3 1636.6000000000001 8183 1992-05-28 2024-10-11 02:16:23.000 1992-05-28 2024-10-11 02:16:23 +8184 8184 8185 818.4 1636.8000000000002 8184 1992-05-29 2024-10-11 02:16:24.000 1992-05-29 2024-10-11 02:16:24 +8186 8186 8187 818.6 1637.2 8186 1992-05-31 2024-10-11 02:16:26.000 1992-05-31 2024-10-11 02:16:26 +8187 8187 8188 818.7 1637.4 8187 1992-06-01 2024-10-11 02:16:27.000 1992-06-01 2024-10-11 02:16:27 +8188 8188 8189 818.8 1637.6000000000001 8188 1992-06-02 2024-10-11 02:16:28.000 1992-06-02 2024-10-11 02:16:28 +8189 8189 8190 818.9 1637.8000000000002 8189 1992-06-03 2024-10-11 02:16:29.000 1992-06-03 2024-10-11 02:16:29 +8191 8191 8192 819.1 1638.2 8191 1992-06-05 2024-10-11 02:16:31.000 1992-06-05 2024-10-11 02:16:31 +8192 8192 8193 819.2 1638.4 8192 1992-06-06 2024-10-11 02:16:32.000 1992-06-06 2024-10-11 02:16:32 +8193 8193 8194 819.3 1638.6000000000001 8193 1992-06-07 2024-10-11 02:16:33.000 1992-06-07 2024-10-11 02:16:33 +8194 8194 8195 819.4 1638.8000000000002 8194 1992-06-08 2024-10-11 02:16:34.000 1992-06-08 2024-10-11 02:16:34 +8196 8196 8197 819.6 1639.2 8196 1992-06-10 2024-10-11 02:16:36.000 1992-06-10 2024-10-11 02:16:36 +8197 8197 8198 819.7 1639.4 8197 1992-06-11 2024-10-11 02:16:37.000 1992-06-11 2024-10-11 02:16:37 +8198 8198 8199 819.8 1639.6000000000001 8198 1992-06-12 2024-10-11 02:16:38.000 1992-06-12 2024-10-11 02:16:38 +8199 8199 8200 819.9 1639.8000000000002 8199 1992-06-13 2024-10-11 02:16:39.000 1992-06-13 2024-10-11 02:16:39 +8201 8201 8202 820.1 1640.2 8201 1992-06-15 2024-10-11 02:16:41.000 1992-06-15 2024-10-11 02:16:41 +8202 8202 8203 820.2 1640.4 8202 1992-06-16 2024-10-11 02:16:42.000 1992-06-16 2024-10-11 02:16:42 +8203 8203 8204 820.3 1640.6000000000001 8203 1992-06-17 2024-10-11 02:16:43.000 1992-06-17 2024-10-11 02:16:43 +8204 8204 8205 820.4 1640.8000000000002 8204 1992-06-18 2024-10-11 02:16:44.000 1992-06-18 2024-10-11 02:16:44 +8206 8206 8207 820.6 1641.2 8206 1992-06-20 2024-10-11 02:16:46.000 1992-06-20 2024-10-11 02:16:46 +8207 8207 8208 820.7 1641.4 8207 1992-06-21 2024-10-11 02:16:47.000 1992-06-21 2024-10-11 02:16:47 +8208 8208 8209 820.8 1641.6000000000001 8208 1992-06-22 2024-10-11 02:16:48.000 1992-06-22 2024-10-11 02:16:48 +8209 8209 8210 820.9 1641.8000000000002 8209 1992-06-23 2024-10-11 02:16:49.000 1992-06-23 2024-10-11 02:16:49 +8211 8211 8212 821.1 1642.2 8211 1992-06-25 2024-10-11 02:16:51.000 1992-06-25 2024-10-11 02:16:51 +8212 8212 8213 821.2 1642.4 8212 1992-06-26 2024-10-11 02:16:52.000 1992-06-26 2024-10-11 02:16:52 +8213 8213 8214 821.3 1642.6000000000001 8213 1992-06-27 2024-10-11 02:16:53.000 1992-06-27 2024-10-11 02:16:53 +8214 8214 8215 821.4 1642.8000000000002 8214 1992-06-28 2024-10-11 02:16:54.000 1992-06-28 2024-10-11 02:16:54 +8216 8216 8217 821.6 1643.2 8216 1992-06-30 2024-10-11 02:16:56.000 1992-06-30 2024-10-11 02:16:56 +8217 8217 8218 821.7 1643.4 8217 1992-07-01 2024-10-11 02:16:57.000 1992-07-01 2024-10-11 02:16:57 +8218 8218 8219 821.8 1643.6000000000001 8218 1992-07-02 2024-10-11 02:16:58.000 1992-07-02 2024-10-11 02:16:58 +8219 8219 8220 821.9 1643.8000000000002 8219 1992-07-03 2024-10-11 02:16:59.000 1992-07-03 2024-10-11 02:16:59 +8221 8221 8222 822.1 1644.2 8221 1992-07-05 2024-10-11 02:17:01.000 1992-07-05 2024-10-11 02:17:01 +8222 8222 8223 822.2 1644.4 8222 1992-07-06 2024-10-11 02:17:02.000 1992-07-06 2024-10-11 02:17:02 +8223 8223 8224 822.3 1644.6000000000001 8223 1992-07-07 2024-10-11 02:17:03.000 1992-07-07 2024-10-11 02:17:03 +8224 8224 8225 822.4 1644.8000000000002 8224 1992-07-08 2024-10-11 02:17:04.000 1992-07-08 2024-10-11 02:17:04 +8226 8226 8227 822.6 1645.2 8226 1992-07-10 2024-10-11 02:17:06.000 1992-07-10 2024-10-11 02:17:06 +8227 8227 8228 822.7 1645.4 8227 1992-07-11 2024-10-11 02:17:07.000 1992-07-11 2024-10-11 02:17:07 +8228 8228 8229 822.8 1645.6000000000001 8228 1992-07-12 2024-10-11 02:17:08.000 1992-07-12 2024-10-11 02:17:08 +8229 8229 8230 822.9 1645.8000000000002 8229 1992-07-13 2024-10-11 02:17:09.000 1992-07-13 2024-10-11 02:17:09 +8231 8231 8232 823.1 1646.2 8231 1992-07-15 2024-10-11 02:17:11.000 1992-07-15 2024-10-11 02:17:11 +8232 8232 8233 823.2 1646.4 8232 1992-07-16 2024-10-11 02:17:12.000 1992-07-16 2024-10-11 02:17:12 +8233 8233 8234 823.3 1646.6000000000001 8233 1992-07-17 2024-10-11 02:17:13.000 1992-07-17 2024-10-11 02:17:13 +8234 8234 8235 823.4 1646.8000000000002 8234 1992-07-18 2024-10-11 02:17:14.000 1992-07-18 2024-10-11 02:17:14 +8236 8236 8237 823.6 1647.2 8236 1992-07-20 2024-10-11 02:17:16.000 1992-07-20 2024-10-11 02:17:16 +8237 8237 8238 823.7 1647.4 8237 1992-07-21 2024-10-11 02:17:17.000 1992-07-21 2024-10-11 02:17:17 +8238 8238 8239 823.8 1647.6000000000001 8238 1992-07-22 2024-10-11 02:17:18.000 1992-07-22 2024-10-11 02:17:18 +8239 8239 8240 823.9 1647.8000000000002 8239 1992-07-23 2024-10-11 02:17:19.000 1992-07-23 2024-10-11 02:17:19 +8241 8241 8242 824.1 1648.2 8241 1992-07-25 2024-10-11 02:17:21.000 1992-07-25 2024-10-11 02:17:21 +8242 8242 8243 824.2 1648.4 8242 1992-07-26 2024-10-11 02:17:22.000 1992-07-26 2024-10-11 02:17:22 +8243 8243 8244 824.3 1648.6000000000001 8243 1992-07-27 2024-10-11 02:17:23.000 1992-07-27 2024-10-11 02:17:23 +8244 8244 8245 824.4 1648.8000000000002 8244 1992-07-28 2024-10-11 02:17:24.000 1992-07-28 2024-10-11 02:17:24 +8246 8246 8247 824.6 1649.2 8246 1992-07-30 2024-10-11 02:17:26.000 1992-07-30 2024-10-11 02:17:26 +8247 8247 8248 824.7 1649.4 8247 1992-07-31 2024-10-11 02:17:27.000 1992-07-31 2024-10-11 02:17:27 +8248 8248 8249 824.8 1649.6000000000001 8248 1992-08-01 2024-10-11 02:17:28.000 1992-08-01 2024-10-11 02:17:28 +8249 8249 8250 824.9 1649.8000000000002 8249 1992-08-02 2024-10-11 02:17:29.000 1992-08-02 2024-10-11 02:17:29 +8251 8251 8252 825.1 1650.2 8251 1992-08-04 2024-10-11 02:17:31.000 1992-08-04 2024-10-11 02:17:31 +8252 8252 8253 825.2 1650.4 8252 1992-08-05 2024-10-11 02:17:32.000 1992-08-05 2024-10-11 02:17:32 +8253 8253 8254 825.3 1650.6000000000001 8253 1992-08-06 2024-10-11 02:17:33.000 1992-08-06 2024-10-11 02:17:33 +8254 8254 8255 825.4 1650.8000000000002 8254 1992-08-07 2024-10-11 02:17:34.000 1992-08-07 2024-10-11 02:17:34 +8256 8256 8257 825.6 1651.2 8256 1992-08-09 2024-10-11 02:17:36.000 1992-08-09 2024-10-11 02:17:36 +8257 8257 8258 825.7 1651.4 8257 1992-08-10 2024-10-11 02:17:37.000 1992-08-10 2024-10-11 02:17:37 +8258 8258 8259 825.8 1651.6000000000001 8258 1992-08-11 2024-10-11 02:17:38.000 1992-08-11 2024-10-11 02:17:38 +8259 8259 8260 825.9 1651.8000000000002 8259 1992-08-12 2024-10-11 02:17:39.000 1992-08-12 2024-10-11 02:17:39 +8261 8261 8262 826.1 1652.2 8261 1992-08-14 2024-10-11 02:17:41.000 1992-08-14 2024-10-11 02:17:41 +8262 8262 8263 826.2 1652.4 8262 1992-08-15 2024-10-11 02:17:42.000 1992-08-15 2024-10-11 02:17:42 +8263 8263 8264 826.3 1652.6000000000001 8263 1992-08-16 2024-10-11 02:17:43.000 1992-08-16 2024-10-11 02:17:43 +8264 8264 8265 826.4 1652.8000000000002 8264 1992-08-17 2024-10-11 02:17:44.000 1992-08-17 2024-10-11 02:17:44 +8266 8266 8267 826.6 1653.2 8266 1992-08-19 2024-10-11 02:17:46.000 1992-08-19 2024-10-11 02:17:46 +8267 8267 8268 826.7 1653.4 8267 1992-08-20 2024-10-11 02:17:47.000 1992-08-20 2024-10-11 02:17:47 +8268 8268 8269 826.8 1653.6000000000001 8268 1992-08-21 2024-10-11 02:17:48.000 1992-08-21 2024-10-11 02:17:48 +8269 8269 8270 826.9 1653.8000000000002 8269 1992-08-22 2024-10-11 02:17:49.000 1992-08-22 2024-10-11 02:17:49 +8271 8271 8272 827.1 1654.2 8271 1992-08-24 2024-10-11 02:17:51.000 1992-08-24 2024-10-11 02:17:51 +8272 8272 8273 827.2 1654.4 8272 1992-08-25 2024-10-11 02:17:52.000 1992-08-25 2024-10-11 02:17:52 +8273 8273 8274 827.3 1654.6000000000001 8273 1992-08-26 2024-10-11 02:17:53.000 1992-08-26 2024-10-11 02:17:53 +8274 8274 8275 827.4 1654.8000000000002 8274 1992-08-27 2024-10-11 02:17:54.000 1992-08-27 2024-10-11 02:17:54 +8276 8276 8277 827.6 1655.2 8276 1992-08-29 2024-10-11 02:17:56.000 1992-08-29 2024-10-11 02:17:56 +8277 8277 8278 827.7 1655.4 8277 1992-08-30 2024-10-11 02:17:57.000 1992-08-30 2024-10-11 02:17:57 +8278 8278 8279 827.8 1655.6000000000001 8278 1992-08-31 2024-10-11 02:17:58.000 1992-08-31 2024-10-11 02:17:58 +8279 8279 8280 827.9 1655.8000000000002 8279 1992-09-01 2024-10-11 02:17:59.000 1992-09-01 2024-10-11 02:17:59 +8281 8281 8282 828.1 1656.2 8281 1992-09-03 2024-10-11 02:18:01.000 1992-09-03 2024-10-11 02:18:01 +8282 8282 8283 828.2 1656.4 8282 1992-09-04 2024-10-11 02:18:02.000 1992-09-04 2024-10-11 02:18:02 +8283 8283 8284 828.3 1656.6000000000001 8283 1992-09-05 2024-10-11 02:18:03.000 1992-09-05 2024-10-11 02:18:03 +8284 8284 8285 828.4 1656.8000000000002 8284 1992-09-06 2024-10-11 02:18:04.000 1992-09-06 2024-10-11 02:18:04 +8286 8286 8287 828.6 1657.2 8286 1992-09-08 2024-10-11 02:18:06.000 1992-09-08 2024-10-11 02:18:06 +8287 8287 8288 828.7 1657.4 8287 1992-09-09 2024-10-11 02:18:07.000 1992-09-09 2024-10-11 02:18:07 +8288 8288 8289 828.8 1657.6000000000001 8288 1992-09-10 2024-10-11 02:18:08.000 1992-09-10 2024-10-11 02:18:08 +8289 8289 8290 828.9 1657.8000000000002 8289 1992-09-11 2024-10-11 02:18:09.000 1992-09-11 2024-10-11 02:18:09 +8291 8291 8292 829.1 1658.2 8291 1992-09-13 2024-10-11 02:18:11.000 1992-09-13 2024-10-11 02:18:11 +8292 8292 8293 829.2 1658.4 8292 1992-09-14 2024-10-11 02:18:12.000 1992-09-14 2024-10-11 02:18:12 +8293 8293 8294 829.3 1658.6000000000001 8293 1992-09-15 2024-10-11 02:18:13.000 1992-09-15 2024-10-11 02:18:13 +8294 8294 8295 829.4 1658.8000000000002 8294 1992-09-16 2024-10-11 02:18:14.000 1992-09-16 2024-10-11 02:18:14 +8296 8296 8297 829.6 1659.2 8296 1992-09-18 2024-10-11 02:18:16.000 1992-09-18 2024-10-11 02:18:16 +8297 8297 8298 829.7 1659.4 8297 1992-09-19 2024-10-11 02:18:17.000 1992-09-19 2024-10-11 02:18:17 +8298 8298 8299 829.8 1659.6000000000001 8298 1992-09-20 2024-10-11 02:18:18.000 1992-09-20 2024-10-11 02:18:18 +8299 8299 8300 829.9 1659.8000000000002 8299 1992-09-21 2024-10-11 02:18:19.000 1992-09-21 2024-10-11 02:18:19 +8301 8301 8302 830.1 1660.2 8301 1992-09-23 2024-10-11 02:18:21.000 1992-09-23 2024-10-11 02:18:21 +8302 8302 8303 830.2 1660.4 8302 1992-09-24 2024-10-11 02:18:22.000 1992-09-24 2024-10-11 02:18:22 +8303 8303 8304 830.3 1660.6000000000001 8303 1992-09-25 2024-10-11 02:18:23.000 1992-09-25 2024-10-11 02:18:23 +8304 8304 8305 830.4 1660.8000000000002 8304 1992-09-26 2024-10-11 02:18:24.000 1992-09-26 2024-10-11 02:18:24 +8306 8306 8307 830.6 1661.2 8306 1992-09-28 2024-10-11 02:18:26.000 1992-09-28 2024-10-11 02:18:26 +8307 8307 8308 830.7 1661.4 8307 1992-09-29 2024-10-11 02:18:27.000 1992-09-29 2024-10-11 02:18:27 +8308 8308 8309 830.8 1661.6000000000001 8308 1992-09-30 2024-10-11 02:18:28.000 1992-09-30 2024-10-11 02:18:28 +8309 8309 8310 830.9 1661.8000000000002 8309 1992-10-01 2024-10-11 02:18:29.000 1992-10-01 2024-10-11 02:18:29 +8311 8311 8312 831.1 1662.2 8311 1992-10-03 2024-10-11 02:18:31.000 1992-10-03 2024-10-11 02:18:31 +8312 8312 8313 831.2 1662.4 8312 1992-10-04 2024-10-11 02:18:32.000 1992-10-04 2024-10-11 02:18:32 +8313 8313 8314 831.3 1662.6000000000001 8313 1992-10-05 2024-10-11 02:18:33.000 1992-10-05 2024-10-11 02:18:33 +8314 8314 8315 831.4 1662.8000000000002 8314 1992-10-06 2024-10-11 02:18:34.000 1992-10-06 2024-10-11 02:18:34 +8316 8316 8317 831.6 1663.2 8316 1992-10-08 2024-10-11 02:18:36.000 1992-10-08 2024-10-11 02:18:36 +8317 8317 8318 831.7 1663.4 8317 1992-10-09 2024-10-11 02:18:37.000 1992-10-09 2024-10-11 02:18:37 +8318 8318 8319 831.8 1663.6000000000001 8318 1992-10-10 2024-10-11 02:18:38.000 1992-10-10 2024-10-11 02:18:38 +8319 8319 8320 831.9 1663.8000000000002 8319 1992-10-11 2024-10-11 02:18:39.000 1992-10-11 2024-10-11 02:18:39 +8321 8321 8322 832.1 1664.2 8321 1992-10-13 2024-10-11 02:18:41.000 1992-10-13 2024-10-11 02:18:41 +8322 8322 8323 832.2 1664.4 8322 1992-10-14 2024-10-11 02:18:42.000 1992-10-14 2024-10-11 02:18:42 +8323 8323 8324 832.3 1664.6000000000001 8323 1992-10-15 2024-10-11 02:18:43.000 1992-10-15 2024-10-11 02:18:43 +8324 8324 8325 832.4 1664.8000000000002 8324 1992-10-16 2024-10-11 02:18:44.000 1992-10-16 2024-10-11 02:18:44 +8326 8326 8327 832.6 1665.2 8326 1992-10-18 2024-10-11 02:18:46.000 1992-10-18 2024-10-11 02:18:46 +8327 8327 8328 832.7 1665.4 8327 1992-10-19 2024-10-11 02:18:47.000 1992-10-19 2024-10-11 02:18:47 +8328 8328 8329 832.8 1665.6000000000001 8328 1992-10-20 2024-10-11 02:18:48.000 1992-10-20 2024-10-11 02:18:48 +8329 8329 8330 832.9 1665.8000000000002 8329 1992-10-21 2024-10-11 02:18:49.000 1992-10-21 2024-10-11 02:18:49 +8331 8331 8332 833.1 1666.2 8331 1992-10-23 2024-10-11 02:18:51.000 1992-10-23 2024-10-11 02:18:51 +8332 8332 8333 833.2 1666.4 8332 1992-10-24 2024-10-11 02:18:52.000 1992-10-24 2024-10-11 02:18:52 +8333 8333 8334 833.3 1666.6000000000001 8333 1992-10-25 2024-10-11 02:18:53.000 1992-10-25 2024-10-11 02:18:53 +8334 8334 8335 833.4 1666.8000000000002 8334 1992-10-26 2024-10-11 02:18:54.000 1992-10-26 2024-10-11 02:18:54 +8336 8336 8337 833.6 1667.2 8336 1992-10-28 2024-10-11 02:18:56.000 1992-10-28 2024-10-11 02:18:56 +8337 8337 8338 833.7 1667.4 8337 1992-10-29 2024-10-11 02:18:57.000 1992-10-29 2024-10-11 02:18:57 +8338 8338 8339 833.8 1667.6000000000001 8338 1992-10-30 2024-10-11 02:18:58.000 1992-10-30 2024-10-11 02:18:58 +8339 8339 8340 833.9 1667.8000000000002 8339 1992-10-31 2024-10-11 02:18:59.000 1992-10-31 2024-10-11 02:18:59 +8341 8341 8342 834.1 1668.2 8341 1992-11-02 2024-10-11 02:19:01.000 1992-11-02 2024-10-11 02:19:01 +8342 8342 8343 834.2 1668.4 8342 1992-11-03 2024-10-11 02:19:02.000 1992-11-03 2024-10-11 02:19:02 +8343 8343 8344 834.3 1668.6000000000001 8343 1992-11-04 2024-10-11 02:19:03.000 1992-11-04 2024-10-11 02:19:03 +8344 8344 8345 834.4 1668.8000000000002 8344 1992-11-05 2024-10-11 02:19:04.000 1992-11-05 2024-10-11 02:19:04 +8346 8346 8347 834.6 1669.2 8346 1992-11-07 2024-10-11 02:19:06.000 1992-11-07 2024-10-11 02:19:06 +8347 8347 8348 834.7 1669.4 8347 1992-11-08 2024-10-11 02:19:07.000 1992-11-08 2024-10-11 02:19:07 +8348 8348 8349 834.8 1669.6000000000001 8348 1992-11-09 2024-10-11 02:19:08.000 1992-11-09 2024-10-11 02:19:08 +8349 8349 8350 834.9 1669.8000000000002 8349 1992-11-10 2024-10-11 02:19:09.000 1992-11-10 2024-10-11 02:19:09 +8351 8351 8352 835.1 1670.2 8351 1992-11-12 2024-10-11 02:19:11.000 1992-11-12 2024-10-11 02:19:11 +8352 8352 8353 835.2 1670.4 8352 1992-11-13 2024-10-11 02:19:12.000 1992-11-13 2024-10-11 02:19:12 +8353 8353 8354 835.3 1670.6000000000001 8353 1992-11-14 2024-10-11 02:19:13.000 1992-11-14 2024-10-11 02:19:13 +8354 8354 8355 835.4 1670.8000000000002 8354 1992-11-15 2024-10-11 02:19:14.000 1992-11-15 2024-10-11 02:19:14 +8356 8356 8357 835.6 1671.2 8356 1992-11-17 2024-10-11 02:19:16.000 1992-11-17 2024-10-11 02:19:16 +8357 8357 8358 835.7 1671.4 8357 1992-11-18 2024-10-11 02:19:17.000 1992-11-18 2024-10-11 02:19:17 +8358 8358 8359 835.8 1671.6000000000001 8358 1992-11-19 2024-10-11 02:19:18.000 1992-11-19 2024-10-11 02:19:18 +8359 8359 8360 835.9 1671.8000000000002 8359 1992-11-20 2024-10-11 02:19:19.000 1992-11-20 2024-10-11 02:19:19 +8361 8361 8362 836.1 1672.2 8361 1992-11-22 2024-10-11 02:19:21.000 1992-11-22 2024-10-11 02:19:21 +8362 8362 8363 836.2 1672.4 8362 1992-11-23 2024-10-11 02:19:22.000 1992-11-23 2024-10-11 02:19:22 +8363 8363 8364 836.3 1672.6000000000001 8363 1992-11-24 2024-10-11 02:19:23.000 1992-11-24 2024-10-11 02:19:23 +8364 8364 8365 836.4 1672.8000000000002 8364 1992-11-25 2024-10-11 02:19:24.000 1992-11-25 2024-10-11 02:19:24 +8366 8366 8367 836.6 1673.2 8366 1992-11-27 2024-10-11 02:19:26.000 1992-11-27 2024-10-11 02:19:26 +8367 8367 8368 836.7 1673.4 8367 1992-11-28 2024-10-11 02:19:27.000 1992-11-28 2024-10-11 02:19:27 +8368 8368 8369 836.8 1673.6000000000001 8368 1992-11-29 2024-10-11 02:19:28.000 1992-11-29 2024-10-11 02:19:28 +8369 8369 8370 836.9 1673.8000000000002 8369 1992-11-30 2024-10-11 02:19:29.000 1992-11-30 2024-10-11 02:19:29 +8371 8371 8372 837.1 1674.2 8371 1992-12-02 2024-10-11 02:19:31.000 1992-12-02 2024-10-11 02:19:31 +8372 8372 8373 837.2 1674.4 8372 1992-12-03 2024-10-11 02:19:32.000 1992-12-03 2024-10-11 02:19:32 +8373 8373 8374 837.3 1674.6000000000001 8373 1992-12-04 2024-10-11 02:19:33.000 1992-12-04 2024-10-11 02:19:33 +8374 8374 8375 837.4 1674.8000000000002 8374 1992-12-05 2024-10-11 02:19:34.000 1992-12-05 2024-10-11 02:19:34 +8376 8376 8377 837.6 1675.2 8376 1992-12-07 2024-10-11 02:19:36.000 1992-12-07 2024-10-11 02:19:36 +8377 8377 8378 837.7 1675.4 8377 1992-12-08 2024-10-11 02:19:37.000 1992-12-08 2024-10-11 02:19:37 +8378 8378 8379 837.8 1675.6000000000001 8378 1992-12-09 2024-10-11 02:19:38.000 1992-12-09 2024-10-11 02:19:38 +8379 8379 8380 837.9 1675.8000000000002 8379 1992-12-10 2024-10-11 02:19:39.000 1992-12-10 2024-10-11 02:19:39 +8381 8381 8382 838.1 1676.2 8381 1992-12-12 2024-10-11 02:19:41.000 1992-12-12 2024-10-11 02:19:41 +8382 8382 8383 838.2 1676.4 8382 1992-12-13 2024-10-11 02:19:42.000 1992-12-13 2024-10-11 02:19:42 +8383 8383 8384 838.3 1676.6000000000001 8383 1992-12-14 2024-10-11 02:19:43.000 1992-12-14 2024-10-11 02:19:43 +8384 8384 8385 838.4 1676.8000000000002 8384 1992-12-15 2024-10-11 02:19:44.000 1992-12-15 2024-10-11 02:19:44 +8386 8386 8387 838.6 1677.2 8386 1992-12-17 2024-10-11 02:19:46.000 1992-12-17 2024-10-11 02:19:46 +8387 8387 8388 838.7 1677.4 8387 1992-12-18 2024-10-11 02:19:47.000 1992-12-18 2024-10-11 02:19:47 +8388 8388 8389 838.8 1677.6000000000001 8388 1992-12-19 2024-10-11 02:19:48.000 1992-12-19 2024-10-11 02:19:48 +8389 8389 8390 838.9 1677.8000000000002 8389 1992-12-20 2024-10-11 02:19:49.000 1992-12-20 2024-10-11 02:19:49 +8391 8391 8392 839.1 1678.2 8391 1992-12-22 2024-10-11 02:19:51.000 1992-12-22 2024-10-11 02:19:51 +8392 8392 8393 839.2 1678.4 8392 1992-12-23 2024-10-11 02:19:52.000 1992-12-23 2024-10-11 02:19:52 +8393 8393 8394 839.3 1678.6000000000001 8393 1992-12-24 2024-10-11 02:19:53.000 1992-12-24 2024-10-11 02:19:53 +8394 8394 8395 839.4 1678.8000000000002 8394 1992-12-25 2024-10-11 02:19:54.000 1992-12-25 2024-10-11 02:19:54 +8396 8396 8397 839.6 1679.2 8396 1992-12-27 2024-10-11 02:19:56.000 1992-12-27 2024-10-11 02:19:56 +8397 8397 8398 839.7 1679.4 8397 1992-12-28 2024-10-11 02:19:57.000 1992-12-28 2024-10-11 02:19:57 +8398 8398 8399 839.8 1679.6000000000001 8398 1992-12-29 2024-10-11 02:19:58.000 1992-12-29 2024-10-11 02:19:58 +8399 8399 8400 839.9 1679.8000000000002 8399 1992-12-30 2024-10-11 02:19:59.000 1992-12-30 2024-10-11 02:19:59 +8401 8401 8402 840.1 1680.2 8401 1993-01-01 2024-10-11 02:20:01.000 1993-01-01 2024-10-11 02:20:01 +8402 8402 8403 840.2 1680.4 8402 1993-01-02 2024-10-11 02:20:02.000 1993-01-02 2024-10-11 02:20:02 +8403 8403 8404 840.3 1680.6000000000001 8403 1993-01-03 2024-10-11 02:20:03.000 1993-01-03 2024-10-11 02:20:03 +8404 8404 8405 840.4 1680.8000000000002 8404 1993-01-04 2024-10-11 02:20:04.000 1993-01-04 2024-10-11 02:20:04 +8406 8406 8407 840.6 1681.2 8406 1993-01-06 2024-10-11 02:20:06.000 1993-01-06 2024-10-11 02:20:06 +8407 8407 8408 840.7 1681.4 8407 1993-01-07 2024-10-11 02:20:07.000 1993-01-07 2024-10-11 02:20:07 +8408 8408 8409 840.8 1681.6000000000001 8408 1993-01-08 2024-10-11 02:20:08.000 1993-01-08 2024-10-11 02:20:08 +8409 8409 8410 840.9 1681.8000000000002 8409 1993-01-09 2024-10-11 02:20:09.000 1993-01-09 2024-10-11 02:20:09 +8411 8411 8412 841.1 1682.2 8411 1993-01-11 2024-10-11 02:20:11.000 1993-01-11 2024-10-11 02:20:11 +8412 8412 8413 841.2 1682.4 8412 1993-01-12 2024-10-11 02:20:12.000 1993-01-12 2024-10-11 02:20:12 +8413 8413 8414 841.3 1682.6000000000001 8413 1993-01-13 2024-10-11 02:20:13.000 1993-01-13 2024-10-11 02:20:13 +8414 8414 8415 841.4 1682.8000000000002 8414 1993-01-14 2024-10-11 02:20:14.000 1993-01-14 2024-10-11 02:20:14 +8416 8416 8417 841.6 1683.2 8416 1993-01-16 2024-10-11 02:20:16.000 1993-01-16 2024-10-11 02:20:16 +8417 8417 8418 841.7 1683.4 8417 1993-01-17 2024-10-11 02:20:17.000 1993-01-17 2024-10-11 02:20:17 +8418 8418 8419 841.8 1683.6000000000001 8418 1993-01-18 2024-10-11 02:20:18.000 1993-01-18 2024-10-11 02:20:18 +8419 8419 8420 841.9 1683.8000000000002 8419 1993-01-19 2024-10-11 02:20:19.000 1993-01-19 2024-10-11 02:20:19 +8421 8421 8422 842.1 1684.2 8421 1993-01-21 2024-10-11 02:20:21.000 1993-01-21 2024-10-11 02:20:21 +8422 8422 8423 842.2 1684.4 8422 1993-01-22 2024-10-11 02:20:22.000 1993-01-22 2024-10-11 02:20:22 +8423 8423 8424 842.3 1684.6000000000001 8423 1993-01-23 2024-10-11 02:20:23.000 1993-01-23 2024-10-11 02:20:23 +8424 8424 8425 842.4 1684.8000000000002 8424 1993-01-24 2024-10-11 02:20:24.000 1993-01-24 2024-10-11 02:20:24 +8426 8426 8427 842.6 1685.2 8426 1993-01-26 2024-10-11 02:20:26.000 1993-01-26 2024-10-11 02:20:26 +8427 8427 8428 842.7 1685.4 8427 1993-01-27 2024-10-11 02:20:27.000 1993-01-27 2024-10-11 02:20:27 +8428 8428 8429 842.8 1685.6000000000001 8428 1993-01-28 2024-10-11 02:20:28.000 1993-01-28 2024-10-11 02:20:28 +8429 8429 8430 842.9 1685.8000000000002 8429 1993-01-29 2024-10-11 02:20:29.000 1993-01-29 2024-10-11 02:20:29 +8431 8431 8432 843.1 1686.2 8431 1993-01-31 2024-10-11 02:20:31.000 1993-01-31 2024-10-11 02:20:31 +8432 8432 8433 843.2 1686.4 8432 1993-02-01 2024-10-11 02:20:32.000 1993-02-01 2024-10-11 02:20:32 +8433 8433 8434 843.3 1686.6000000000001 8433 1993-02-02 2024-10-11 02:20:33.000 1993-02-02 2024-10-11 02:20:33 +8434 8434 8435 843.4 1686.8000000000002 8434 1993-02-03 2024-10-11 02:20:34.000 1993-02-03 2024-10-11 02:20:34 +8436 8436 8437 843.6 1687.2 8436 1993-02-05 2024-10-11 02:20:36.000 1993-02-05 2024-10-11 02:20:36 +8437 8437 8438 843.7 1687.4 8437 1993-02-06 2024-10-11 02:20:37.000 1993-02-06 2024-10-11 02:20:37 +8438 8438 8439 843.8 1687.6000000000001 8438 1993-02-07 2024-10-11 02:20:38.000 1993-02-07 2024-10-11 02:20:38 +8439 8439 8440 843.9 1687.8000000000002 8439 1993-02-08 2024-10-11 02:20:39.000 1993-02-08 2024-10-11 02:20:39 +8441 8441 8442 844.1 1688.2 8441 1993-02-10 2024-10-11 02:20:41.000 1993-02-10 2024-10-11 02:20:41 +8442 8442 8443 844.2 1688.4 8442 1993-02-11 2024-10-11 02:20:42.000 1993-02-11 2024-10-11 02:20:42 +8443 8443 8444 844.3 1688.6000000000001 8443 1993-02-12 2024-10-11 02:20:43.000 1993-02-12 2024-10-11 02:20:43 +8444 8444 8445 844.4 1688.8000000000002 8444 1993-02-13 2024-10-11 02:20:44.000 1993-02-13 2024-10-11 02:20:44 +8446 8446 8447 844.6 1689.2 8446 1993-02-15 2024-10-11 02:20:46.000 1993-02-15 2024-10-11 02:20:46 +8447 8447 8448 844.7 1689.4 8447 1993-02-16 2024-10-11 02:20:47.000 1993-02-16 2024-10-11 02:20:47 +8448 8448 8449 844.8 1689.6000000000001 8448 1993-02-17 2024-10-11 02:20:48.000 1993-02-17 2024-10-11 02:20:48 +8449 8449 8450 844.9 1689.8000000000002 8449 1993-02-18 2024-10-11 02:20:49.000 1993-02-18 2024-10-11 02:20:49 +8451 8451 8452 845.1 1690.2 8451 1993-02-20 2024-10-11 02:20:51.000 1993-02-20 2024-10-11 02:20:51 +8452 8452 8453 845.2 1690.4 8452 1993-02-21 2024-10-11 02:20:52.000 1993-02-21 2024-10-11 02:20:52 +8453 8453 8454 845.3 1690.6000000000001 8453 1993-02-22 2024-10-11 02:20:53.000 1993-02-22 2024-10-11 02:20:53 +8454 8454 8455 845.4 1690.8000000000002 8454 1993-02-23 2024-10-11 02:20:54.000 1993-02-23 2024-10-11 02:20:54 +8456 8456 8457 845.6 1691.2 8456 1993-02-25 2024-10-11 02:20:56.000 1993-02-25 2024-10-11 02:20:56 +8457 8457 8458 845.7 1691.4 8457 1993-02-26 2024-10-11 02:20:57.000 1993-02-26 2024-10-11 02:20:57 +8458 8458 8459 845.8 1691.6000000000001 8458 1993-02-27 2024-10-11 02:20:58.000 1993-02-27 2024-10-11 02:20:58 +8459 8459 8460 845.9 1691.8000000000002 8459 1993-02-28 2024-10-11 02:20:59.000 1993-02-28 2024-10-11 02:20:59 +8461 8461 8462 846.1 1692.2 8461 1993-03-02 2024-10-11 02:21:01.000 1993-03-02 2024-10-11 02:21:01 +8462 8462 8463 846.2 1692.4 8462 1993-03-03 2024-10-11 02:21:02.000 1993-03-03 2024-10-11 02:21:02 +8463 8463 8464 846.3 1692.6000000000001 8463 1993-03-04 2024-10-11 02:21:03.000 1993-03-04 2024-10-11 02:21:03 +8464 8464 8465 846.4 1692.8000000000002 8464 1993-03-05 2024-10-11 02:21:04.000 1993-03-05 2024-10-11 02:21:04 +8466 8466 8467 846.6 1693.2 8466 1993-03-07 2024-10-11 02:21:06.000 1993-03-07 2024-10-11 02:21:06 +8467 8467 8468 846.7 1693.4 8467 1993-03-08 2024-10-11 02:21:07.000 1993-03-08 2024-10-11 02:21:07 +8468 8468 8469 846.8 1693.6000000000001 8468 1993-03-09 2024-10-11 02:21:08.000 1993-03-09 2024-10-11 02:21:08 +8469 8469 8470 846.9 1693.8000000000002 8469 1993-03-10 2024-10-11 02:21:09.000 1993-03-10 2024-10-11 02:21:09 +8471 8471 8472 847.1 1694.2 8471 1993-03-12 2024-10-11 02:21:11.000 1993-03-12 2024-10-11 02:21:11 +8472 8472 8473 847.2 1694.4 8472 1993-03-13 2024-10-11 02:21:12.000 1993-03-13 2024-10-11 02:21:12 +8473 8473 8474 847.3 1694.6000000000001 8473 1993-03-14 2024-10-11 02:21:13.000 1993-03-14 2024-10-11 02:21:13 +8474 8474 8475 847.4 1694.8000000000002 8474 1993-03-15 2024-10-11 02:21:14.000 1993-03-15 2024-10-11 02:21:14 +8476 8476 8477 847.6 1695.2 8476 1993-03-17 2024-10-11 02:21:16.000 1993-03-17 2024-10-11 02:21:16 +8477 8477 8478 847.7 1695.4 8477 1993-03-18 2024-10-11 02:21:17.000 1993-03-18 2024-10-11 02:21:17 +8478 8478 8479 847.8 1695.6000000000001 8478 1993-03-19 2024-10-11 02:21:18.000 1993-03-19 2024-10-11 02:21:18 +8479 8479 8480 847.9 1695.8000000000002 8479 1993-03-20 2024-10-11 02:21:19.000 1993-03-20 2024-10-11 02:21:19 +8481 8481 8482 848.1 1696.2 8481 1993-03-22 2024-10-11 02:21:21.000 1993-03-22 2024-10-11 02:21:21 +8482 8482 8483 848.2 1696.4 8482 1993-03-23 2024-10-11 02:21:22.000 1993-03-23 2024-10-11 02:21:22 +8483 8483 8484 848.3 1696.6000000000001 8483 1993-03-24 2024-10-11 02:21:23.000 1993-03-24 2024-10-11 02:21:23 +8484 8484 8485 848.4 1696.8000000000002 8484 1993-03-25 2024-10-11 02:21:24.000 1993-03-25 2024-10-11 02:21:24 +8486 8486 8487 848.6 1697.2 8486 1993-03-27 2024-10-11 02:21:26.000 1993-03-27 2024-10-11 02:21:26 +8487 8487 8488 848.7 1697.4 8487 1993-03-28 2024-10-11 02:21:27.000 1993-03-28 2024-10-11 02:21:27 +8488 8488 8489 848.8 1697.6000000000001 8488 1993-03-29 2024-10-11 02:21:28.000 1993-03-29 2024-10-11 02:21:28 +8489 8489 8490 848.9 1697.8000000000002 8489 1993-03-30 2024-10-11 02:21:29.000 1993-03-30 2024-10-11 02:21:29 +8491 8491 8492 849.1 1698.2 8491 1993-04-01 2024-10-11 02:21:31.000 1993-04-01 2024-10-11 02:21:31 +8492 8492 8493 849.2 1698.4 8492 1993-04-02 2024-10-11 02:21:32.000 1993-04-02 2024-10-11 02:21:32 +8493 8493 8494 849.3 1698.6000000000001 8493 1993-04-03 2024-10-11 02:21:33.000 1993-04-03 2024-10-11 02:21:33 +8494 8494 8495 849.4 1698.8000000000002 8494 1993-04-04 2024-10-11 02:21:34.000 1993-04-04 2024-10-11 02:21:34 +8496 8496 8497 849.6 1699.2 8496 1993-04-06 2024-10-11 02:21:36.000 1993-04-06 2024-10-11 02:21:36 +8497 8497 8498 849.7 1699.4 8497 1993-04-07 2024-10-11 02:21:37.000 1993-04-07 2024-10-11 02:21:37 +8498 8498 8499 849.8 1699.6000000000001 8498 1993-04-08 2024-10-11 02:21:38.000 1993-04-08 2024-10-11 02:21:38 +8499 8499 8500 849.9 1699.8000000000002 8499 1993-04-09 2024-10-11 02:21:39.000 1993-04-09 2024-10-11 02:21:39 +8501 8501 8502 850.1 1700.2 8501 1993-04-11 2024-10-11 02:21:41.000 1993-04-11 2024-10-11 02:21:41 +8502 8502 8503 850.2 1700.4 8502 1993-04-12 2024-10-11 02:21:42.000 1993-04-12 2024-10-11 02:21:42 +8503 8503 8504 850.3 1700.6000000000001 8503 1993-04-13 2024-10-11 02:21:43.000 1993-04-13 2024-10-11 02:21:43 +8504 8504 8505 850.4 1700.8000000000002 8504 1993-04-14 2024-10-11 02:21:44.000 1993-04-14 2024-10-11 02:21:44 +8506 8506 8507 850.6 1701.2 8506 1993-04-16 2024-10-11 02:21:46.000 1993-04-16 2024-10-11 02:21:46 +8507 8507 8508 850.7 1701.4 8507 1993-04-17 2024-10-11 02:21:47.000 1993-04-17 2024-10-11 02:21:47 +8508 8508 8509 850.8 1701.6000000000001 8508 1993-04-18 2024-10-11 02:21:48.000 1993-04-18 2024-10-11 02:21:48 +8509 8509 8510 850.9 1701.8000000000002 8509 1993-04-19 2024-10-11 02:21:49.000 1993-04-19 2024-10-11 02:21:49 +8511 8511 8512 851.1 1702.2 8511 1993-04-21 2024-10-11 02:21:51.000 1993-04-21 2024-10-11 02:21:51 +8512 8512 8513 851.2 1702.4 8512 1993-04-22 2024-10-11 02:21:52.000 1993-04-22 2024-10-11 02:21:52 +8513 8513 8514 851.3 1702.6000000000001 8513 1993-04-23 2024-10-11 02:21:53.000 1993-04-23 2024-10-11 02:21:53 +8514 8514 8515 851.4 1702.8000000000002 8514 1993-04-24 2024-10-11 02:21:54.000 1993-04-24 2024-10-11 02:21:54 +8516 8516 8517 851.6 1703.2 8516 1993-04-26 2024-10-11 02:21:56.000 1993-04-26 2024-10-11 02:21:56 +8517 8517 8518 851.7 1703.4 8517 1993-04-27 2024-10-11 02:21:57.000 1993-04-27 2024-10-11 02:21:57 +8518 8518 8519 851.8 1703.6000000000001 8518 1993-04-28 2024-10-11 02:21:58.000 1993-04-28 2024-10-11 02:21:58 +8519 8519 8520 851.9 1703.8000000000002 8519 1993-04-29 2024-10-11 02:21:59.000 1993-04-29 2024-10-11 02:21:59 +8521 8521 8522 852.1 1704.2 8521 1993-05-01 2024-10-11 02:22:01.000 1993-05-01 2024-10-11 02:22:01 +8522 8522 8523 852.2 1704.4 8522 1993-05-02 2024-10-11 02:22:02.000 1993-05-02 2024-10-11 02:22:02 +8523 8523 8524 852.3 1704.6000000000001 8523 1993-05-03 2024-10-11 02:22:03.000 1993-05-03 2024-10-11 02:22:03 +8524 8524 8525 852.4 1704.8000000000002 8524 1993-05-04 2024-10-11 02:22:04.000 1993-05-04 2024-10-11 02:22:04 +8526 8526 8527 852.6 1705.2 8526 1993-05-06 2024-10-11 02:22:06.000 1993-05-06 2024-10-11 02:22:06 +8527 8527 8528 852.7 1705.4 8527 1993-05-07 2024-10-11 02:22:07.000 1993-05-07 2024-10-11 02:22:07 +8528 8528 8529 852.8 1705.6000000000001 8528 1993-05-08 2024-10-11 02:22:08.000 1993-05-08 2024-10-11 02:22:08 +8529 8529 8530 852.9 1705.8000000000002 8529 1993-05-09 2024-10-11 02:22:09.000 1993-05-09 2024-10-11 02:22:09 +8531 8531 8532 853.1 1706.2 8531 1993-05-11 2024-10-11 02:22:11.000 1993-05-11 2024-10-11 02:22:11 +8532 8532 8533 853.2 1706.4 8532 1993-05-12 2024-10-11 02:22:12.000 1993-05-12 2024-10-11 02:22:12 +8533 8533 8534 853.3 1706.6000000000001 8533 1993-05-13 2024-10-11 02:22:13.000 1993-05-13 2024-10-11 02:22:13 +8534 8534 8535 853.4 1706.8000000000002 8534 1993-05-14 2024-10-11 02:22:14.000 1993-05-14 2024-10-11 02:22:14 +8536 8536 8537 853.6 1707.2 8536 1993-05-16 2024-10-11 02:22:16.000 1993-05-16 2024-10-11 02:22:16 +8537 8537 8538 853.7 1707.4 8537 1993-05-17 2024-10-11 02:22:17.000 1993-05-17 2024-10-11 02:22:17 +8538 8538 8539 853.8 1707.6000000000001 8538 1993-05-18 2024-10-11 02:22:18.000 1993-05-18 2024-10-11 02:22:18 +8539 8539 8540 853.9 1707.8000000000002 8539 1993-05-19 2024-10-11 02:22:19.000 1993-05-19 2024-10-11 02:22:19 +8541 8541 8542 854.1 1708.2 8541 1993-05-21 2024-10-11 02:22:21.000 1993-05-21 2024-10-11 02:22:21 +8542 8542 8543 854.2 1708.4 8542 1993-05-22 2024-10-11 02:22:22.000 1993-05-22 2024-10-11 02:22:22 +8543 8543 8544 854.3 1708.6000000000001 8543 1993-05-23 2024-10-11 02:22:23.000 1993-05-23 2024-10-11 02:22:23 +8544 8544 8545 854.4 1708.8000000000002 8544 1993-05-24 2024-10-11 02:22:24.000 1993-05-24 2024-10-11 02:22:24 +8546 8546 8547 854.6 1709.2 8546 1993-05-26 2024-10-11 02:22:26.000 1993-05-26 2024-10-11 02:22:26 +8547 8547 8548 854.7 1709.4 8547 1993-05-27 2024-10-11 02:22:27.000 1993-05-27 2024-10-11 02:22:27 +8548 8548 8549 854.8 1709.6000000000001 8548 1993-05-28 2024-10-11 02:22:28.000 1993-05-28 2024-10-11 02:22:28 +8549 8549 8550 854.9 1709.8000000000002 8549 1993-05-29 2024-10-11 02:22:29.000 1993-05-29 2024-10-11 02:22:29 +8551 8551 8552 855.1 1710.2 8551 1993-05-31 2024-10-11 02:22:31.000 1993-05-31 2024-10-11 02:22:31 +8552 8552 8553 855.2 1710.4 8552 1993-06-01 2024-10-11 02:22:32.000 1993-06-01 2024-10-11 02:22:32 +8553 8553 8554 855.3 1710.6000000000001 8553 1993-06-02 2024-10-11 02:22:33.000 1993-06-02 2024-10-11 02:22:33 +8554 8554 8555 855.4 1710.8000000000002 8554 1993-06-03 2024-10-11 02:22:34.000 1993-06-03 2024-10-11 02:22:34 +8556 8556 8557 855.6 1711.2 8556 1993-06-05 2024-10-11 02:22:36.000 1993-06-05 2024-10-11 02:22:36 +8557 8557 8558 855.7 1711.4 8557 1993-06-06 2024-10-11 02:22:37.000 1993-06-06 2024-10-11 02:22:37 +8558 8558 8559 855.8 1711.6000000000001 8558 1993-06-07 2024-10-11 02:22:38.000 1993-06-07 2024-10-11 02:22:38 +8559 8559 8560 855.9 1711.8000000000002 8559 1993-06-08 2024-10-11 02:22:39.000 1993-06-08 2024-10-11 02:22:39 +8561 8561 8562 856.1 1712.2 8561 1993-06-10 2024-10-11 02:22:41.000 1993-06-10 2024-10-11 02:22:41 +8562 8562 8563 856.2 1712.4 8562 1993-06-11 2024-10-11 02:22:42.000 1993-06-11 2024-10-11 02:22:42 +8563 8563 8564 856.3 1712.6000000000001 8563 1993-06-12 2024-10-11 02:22:43.000 1993-06-12 2024-10-11 02:22:43 +8564 8564 8565 856.4 1712.8000000000002 8564 1993-06-13 2024-10-11 02:22:44.000 1993-06-13 2024-10-11 02:22:44 +8566 8566 8567 856.6 1713.2 8566 1993-06-15 2024-10-11 02:22:46.000 1993-06-15 2024-10-11 02:22:46 +8567 8567 8568 856.7 1713.4 8567 1993-06-16 2024-10-11 02:22:47.000 1993-06-16 2024-10-11 02:22:47 +8568 8568 8569 856.8 1713.6000000000001 8568 1993-06-17 2024-10-11 02:22:48.000 1993-06-17 2024-10-11 02:22:48 +8569 8569 8570 856.9 1713.8000000000002 8569 1993-06-18 2024-10-11 02:22:49.000 1993-06-18 2024-10-11 02:22:49 +8571 8571 8572 857.1 1714.2 8571 1993-06-20 2024-10-11 02:22:51.000 1993-06-20 2024-10-11 02:22:51 +8572 8572 8573 857.2 1714.4 8572 1993-06-21 2024-10-11 02:22:52.000 1993-06-21 2024-10-11 02:22:52 +8573 8573 8574 857.3 1714.6000000000001 8573 1993-06-22 2024-10-11 02:22:53.000 1993-06-22 2024-10-11 02:22:53 +8574 8574 8575 857.4 1714.8000000000002 8574 1993-06-23 2024-10-11 02:22:54.000 1993-06-23 2024-10-11 02:22:54 +8576 8576 8577 857.6 1715.2 8576 1993-06-25 2024-10-11 02:22:56.000 1993-06-25 2024-10-11 02:22:56 +8577 8577 8578 857.7 1715.4 8577 1993-06-26 2024-10-11 02:22:57.000 1993-06-26 2024-10-11 02:22:57 +8578 8578 8579 857.8 1715.6000000000001 8578 1993-06-27 2024-10-11 02:22:58.000 1993-06-27 2024-10-11 02:22:58 +8579 8579 8580 857.9 1715.8000000000002 8579 1993-06-28 2024-10-11 02:22:59.000 1993-06-28 2024-10-11 02:22:59 +8581 8581 8582 858.1 1716.2 8581 1993-06-30 2024-10-11 02:23:01.000 1993-06-30 2024-10-11 02:23:01 +8582 8582 8583 858.2 1716.4 8582 1993-07-01 2024-10-11 02:23:02.000 1993-07-01 2024-10-11 02:23:02 +8583 8583 8584 858.3 1716.6000000000001 8583 1993-07-02 2024-10-11 02:23:03.000 1993-07-02 2024-10-11 02:23:03 +8584 8584 8585 858.4 1716.8000000000002 8584 1993-07-03 2024-10-11 02:23:04.000 1993-07-03 2024-10-11 02:23:04 +8586 8586 8587 858.6 1717.2 8586 1993-07-05 2024-10-11 02:23:06.000 1993-07-05 2024-10-11 02:23:06 +8587 8587 8588 858.7 1717.4 8587 1993-07-06 2024-10-11 02:23:07.000 1993-07-06 2024-10-11 02:23:07 +8588 8588 8589 858.8 1717.6000000000001 8588 1993-07-07 2024-10-11 02:23:08.000 1993-07-07 2024-10-11 02:23:08 +8589 8589 8590 858.9 1717.8000000000002 8589 1993-07-08 2024-10-11 02:23:09.000 1993-07-08 2024-10-11 02:23:09 +8591 8591 8592 859.1 1718.2 8591 1993-07-10 2024-10-11 02:23:11.000 1993-07-10 2024-10-11 02:23:11 +8592 8592 8593 859.2 1718.4 8592 1993-07-11 2024-10-11 02:23:12.000 1993-07-11 2024-10-11 02:23:12 +8593 8593 8594 859.3 1718.6000000000001 8593 1993-07-12 2024-10-11 02:23:13.000 1993-07-12 2024-10-11 02:23:13 +8594 8594 8595 859.4 1718.8000000000002 8594 1993-07-13 2024-10-11 02:23:14.000 1993-07-13 2024-10-11 02:23:14 +8596 8596 8597 859.6 1719.2 8596 1993-07-15 2024-10-11 02:23:16.000 1993-07-15 2024-10-11 02:23:16 +8597 8597 8598 859.7 1719.4 8597 1993-07-16 2024-10-11 02:23:17.000 1993-07-16 2024-10-11 02:23:17 +8598 8598 8599 859.8 1719.6000000000001 8598 1993-07-17 2024-10-11 02:23:18.000 1993-07-17 2024-10-11 02:23:18 +8599 8599 8600 859.9 1719.8000000000002 8599 1993-07-18 2024-10-11 02:23:19.000 1993-07-18 2024-10-11 02:23:19 +8601 8601 8602 860.1 1720.2 8601 1993-07-20 2024-10-11 02:23:21.000 1993-07-20 2024-10-11 02:23:21 +8602 8602 8603 860.2 1720.4 8602 1993-07-21 2024-10-11 02:23:22.000 1993-07-21 2024-10-11 02:23:22 +8603 8603 8604 860.3 1720.6000000000001 8603 1993-07-22 2024-10-11 02:23:23.000 1993-07-22 2024-10-11 02:23:23 +8604 8604 8605 860.4 1720.8000000000002 8604 1993-07-23 2024-10-11 02:23:24.000 1993-07-23 2024-10-11 02:23:24 +8606 8606 8607 860.6 1721.2 8606 1993-07-25 2024-10-11 02:23:26.000 1993-07-25 2024-10-11 02:23:26 +8607 8607 8608 860.7 1721.4 8607 1993-07-26 2024-10-11 02:23:27.000 1993-07-26 2024-10-11 02:23:27 +8608 8608 8609 860.8 1721.6000000000001 8608 1993-07-27 2024-10-11 02:23:28.000 1993-07-27 2024-10-11 02:23:28 +8609 8609 8610 860.9 1721.8000000000002 8609 1993-07-28 2024-10-11 02:23:29.000 1993-07-28 2024-10-11 02:23:29 +8611 8611 8612 861.1 1722.2 8611 1993-07-30 2024-10-11 02:23:31.000 1993-07-30 2024-10-11 02:23:31 +8612 8612 8613 861.2 1722.4 8612 1993-07-31 2024-10-11 02:23:32.000 1993-07-31 2024-10-11 02:23:32 +8613 8613 8614 861.3 1722.6000000000001 8613 1993-08-01 2024-10-11 02:23:33.000 1993-08-01 2024-10-11 02:23:33 +8614 8614 8615 861.4 1722.8000000000002 8614 1993-08-02 2024-10-11 02:23:34.000 1993-08-02 2024-10-11 02:23:34 +8616 8616 8617 861.6 1723.2 8616 1993-08-04 2024-10-11 02:23:36.000 1993-08-04 2024-10-11 02:23:36 +8617 8617 8618 861.7 1723.4 8617 1993-08-05 2024-10-11 02:23:37.000 1993-08-05 2024-10-11 02:23:37 +8618 8618 8619 861.8 1723.6000000000001 8618 1993-08-06 2024-10-11 02:23:38.000 1993-08-06 2024-10-11 02:23:38 +8619 8619 8620 861.9 1723.8000000000002 8619 1993-08-07 2024-10-11 02:23:39.000 1993-08-07 2024-10-11 02:23:39 +8621 8621 8622 862.1 1724.2 8621 1993-08-09 2024-10-11 02:23:41.000 1993-08-09 2024-10-11 02:23:41 +8622 8622 8623 862.2 1724.4 8622 1993-08-10 2024-10-11 02:23:42.000 1993-08-10 2024-10-11 02:23:42 +8623 8623 8624 862.3 1724.6000000000001 8623 1993-08-11 2024-10-11 02:23:43.000 1993-08-11 2024-10-11 02:23:43 +8624 8624 8625 862.4 1724.8000000000002 8624 1993-08-12 2024-10-11 02:23:44.000 1993-08-12 2024-10-11 02:23:44 +8626 8626 8627 862.6 1725.2 8626 1993-08-14 2024-10-11 02:23:46.000 1993-08-14 2024-10-11 02:23:46 +8627 8627 8628 862.7 1725.4 8627 1993-08-15 2024-10-11 02:23:47.000 1993-08-15 2024-10-11 02:23:47 +8628 8628 8629 862.8 1725.6000000000001 8628 1993-08-16 2024-10-11 02:23:48.000 1993-08-16 2024-10-11 02:23:48 +8629 8629 8630 862.9 1725.8000000000002 8629 1993-08-17 2024-10-11 02:23:49.000 1993-08-17 2024-10-11 02:23:49 +8631 8631 8632 863.1 1726.2 8631 1993-08-19 2024-10-11 02:23:51.000 1993-08-19 2024-10-11 02:23:51 +8632 8632 8633 863.2 1726.4 8632 1993-08-20 2024-10-11 02:23:52.000 1993-08-20 2024-10-11 02:23:52 +8633 8633 8634 863.3 1726.6000000000001 8633 1993-08-21 2024-10-11 02:23:53.000 1993-08-21 2024-10-11 02:23:53 +8634 8634 8635 863.4 1726.8000000000002 8634 1993-08-22 2024-10-11 02:23:54.000 1993-08-22 2024-10-11 02:23:54 +8636 8636 8637 863.6 1727.2 8636 1993-08-24 2024-10-11 02:23:56.000 1993-08-24 2024-10-11 02:23:56 +8637 8637 8638 863.7 1727.4 8637 1993-08-25 2024-10-11 02:23:57.000 1993-08-25 2024-10-11 02:23:57 +8638 8638 8639 863.8 1727.6000000000001 8638 1993-08-26 2024-10-11 02:23:58.000 1993-08-26 2024-10-11 02:23:58 +8639 8639 8640 863.9 1727.8000000000002 8639 1993-08-27 2024-10-11 02:23:59.000 1993-08-27 2024-10-11 02:23:59 +8641 8641 8642 864.1 1728.2 8641 1993-08-29 2024-10-11 02:24:01.000 1993-08-29 2024-10-11 02:24:01 +8642 8642 8643 864.2 1728.4 8642 1993-08-30 2024-10-11 02:24:02.000 1993-08-30 2024-10-11 02:24:02 +8643 8643 8644 864.3 1728.6000000000001 8643 1993-08-31 2024-10-11 02:24:03.000 1993-08-31 2024-10-11 02:24:03 +8644 8644 8645 864.4 1728.8000000000002 8644 1993-09-01 2024-10-11 02:24:04.000 1993-09-01 2024-10-11 02:24:04 +8646 8646 8647 864.6 1729.2 8646 1993-09-03 2024-10-11 02:24:06.000 1993-09-03 2024-10-11 02:24:06 +8647 8647 8648 864.7 1729.4 8647 1993-09-04 2024-10-11 02:24:07.000 1993-09-04 2024-10-11 02:24:07 +8648 8648 8649 864.8 1729.6000000000001 8648 1993-09-05 2024-10-11 02:24:08.000 1993-09-05 2024-10-11 02:24:08 +8649 8649 8650 864.9 1729.8000000000002 8649 1993-09-06 2024-10-11 02:24:09.000 1993-09-06 2024-10-11 02:24:09 +8651 8651 8652 865.1 1730.2 8651 1993-09-08 2024-10-11 02:24:11.000 1993-09-08 2024-10-11 02:24:11 +8652 8652 8653 865.2 1730.4 8652 1993-09-09 2024-10-11 02:24:12.000 1993-09-09 2024-10-11 02:24:12 +8653 8653 8654 865.3 1730.6000000000001 8653 1993-09-10 2024-10-11 02:24:13.000 1993-09-10 2024-10-11 02:24:13 +8654 8654 8655 865.4 1730.8000000000002 8654 1993-09-11 2024-10-11 02:24:14.000 1993-09-11 2024-10-11 02:24:14 +8656 8656 8657 865.6 1731.2 8656 1993-09-13 2024-10-11 02:24:16.000 1993-09-13 2024-10-11 02:24:16 +8657 8657 8658 865.7 1731.4 8657 1993-09-14 2024-10-11 02:24:17.000 1993-09-14 2024-10-11 02:24:17 +8658 8658 8659 865.8 1731.6000000000001 8658 1993-09-15 2024-10-11 02:24:18.000 1993-09-15 2024-10-11 02:24:18 +8659 8659 8660 865.9 1731.8000000000002 8659 1993-09-16 2024-10-11 02:24:19.000 1993-09-16 2024-10-11 02:24:19 +8661 8661 8662 866.1 1732.2 8661 1993-09-18 2024-10-11 02:24:21.000 1993-09-18 2024-10-11 02:24:21 +8662 8662 8663 866.2 1732.4 8662 1993-09-19 2024-10-11 02:24:22.000 1993-09-19 2024-10-11 02:24:22 +8663 8663 8664 866.3 1732.6000000000001 8663 1993-09-20 2024-10-11 02:24:23.000 1993-09-20 2024-10-11 02:24:23 +8664 8664 8665 866.4 1732.8000000000002 8664 1993-09-21 2024-10-11 02:24:24.000 1993-09-21 2024-10-11 02:24:24 +8666 8666 8667 866.6 1733.2 8666 1993-09-23 2024-10-11 02:24:26.000 1993-09-23 2024-10-11 02:24:26 +8667 8667 8668 866.7 1733.4 8667 1993-09-24 2024-10-11 02:24:27.000 1993-09-24 2024-10-11 02:24:27 +8668 8668 8669 866.8 1733.6000000000001 8668 1993-09-25 2024-10-11 02:24:28.000 1993-09-25 2024-10-11 02:24:28 +8669 8669 8670 866.9 1733.8000000000002 8669 1993-09-26 2024-10-11 02:24:29.000 1993-09-26 2024-10-11 02:24:29 +8671 8671 8672 867.1 1734.2 8671 1993-09-28 2024-10-11 02:24:31.000 1993-09-28 2024-10-11 02:24:31 +8672 8672 8673 867.2 1734.4 8672 1993-09-29 2024-10-11 02:24:32.000 1993-09-29 2024-10-11 02:24:32 +8673 8673 8674 867.3 1734.6000000000001 8673 1993-09-30 2024-10-11 02:24:33.000 1993-09-30 2024-10-11 02:24:33 +8674 8674 8675 867.4 1734.8000000000002 8674 1993-10-01 2024-10-11 02:24:34.000 1993-10-01 2024-10-11 02:24:34 +8676 8676 8677 867.6 1735.2 8676 1993-10-03 2024-10-11 02:24:36.000 1993-10-03 2024-10-11 02:24:36 +8677 8677 8678 867.7 1735.4 8677 1993-10-04 2024-10-11 02:24:37.000 1993-10-04 2024-10-11 02:24:37 +8678 8678 8679 867.8 1735.6000000000001 8678 1993-10-05 2024-10-11 02:24:38.000 1993-10-05 2024-10-11 02:24:38 +8679 8679 8680 867.9 1735.8000000000002 8679 1993-10-06 2024-10-11 02:24:39.000 1993-10-06 2024-10-11 02:24:39 +8681 8681 8682 868.1 1736.2 8681 1993-10-08 2024-10-11 02:24:41.000 1993-10-08 2024-10-11 02:24:41 +8682 8682 8683 868.2 1736.4 8682 1993-10-09 2024-10-11 02:24:42.000 1993-10-09 2024-10-11 02:24:42 +8683 8683 8684 868.3 1736.6000000000001 8683 1993-10-10 2024-10-11 02:24:43.000 1993-10-10 2024-10-11 02:24:43 +8684 8684 8685 868.4 1736.8000000000002 8684 1993-10-11 2024-10-11 02:24:44.000 1993-10-11 2024-10-11 02:24:44 +8686 8686 8687 868.6 1737.2 8686 1993-10-13 2024-10-11 02:24:46.000 1993-10-13 2024-10-11 02:24:46 +8687 8687 8688 868.7 1737.4 8687 1993-10-14 2024-10-11 02:24:47.000 1993-10-14 2024-10-11 02:24:47 +8688 8688 8689 868.8 1737.6000000000001 8688 1993-10-15 2024-10-11 02:24:48.000 1993-10-15 2024-10-11 02:24:48 +8689 8689 8690 868.9 1737.8000000000002 8689 1993-10-16 2024-10-11 02:24:49.000 1993-10-16 2024-10-11 02:24:49 +8691 8691 8692 869.1 1738.2 8691 1993-10-18 2024-10-11 02:24:51.000 1993-10-18 2024-10-11 02:24:51 +8692 8692 8693 869.2 1738.4 8692 1993-10-19 2024-10-11 02:24:52.000 1993-10-19 2024-10-11 02:24:52 +8693 8693 8694 869.3 1738.6000000000001 8693 1993-10-20 2024-10-11 02:24:53.000 1993-10-20 2024-10-11 02:24:53 +8694 8694 8695 869.4 1738.8000000000002 8694 1993-10-21 2024-10-11 02:24:54.000 1993-10-21 2024-10-11 02:24:54 +8696 8696 8697 869.6 1739.2 8696 1993-10-23 2024-10-11 02:24:56.000 1993-10-23 2024-10-11 02:24:56 +8697 8697 8698 869.7 1739.4 8697 1993-10-24 2024-10-11 02:24:57.000 1993-10-24 2024-10-11 02:24:57 +8698 8698 8699 869.8 1739.6000000000001 8698 1993-10-25 2024-10-11 02:24:58.000 1993-10-25 2024-10-11 02:24:58 +8699 8699 8700 869.9 1739.8000000000002 8699 1993-10-26 2024-10-11 02:24:59.000 1993-10-26 2024-10-11 02:24:59 +8701 8701 8702 870.1 1740.2 8701 1993-10-28 2024-10-11 02:25:01.000 1993-10-28 2024-10-11 02:25:01 +8702 8702 8703 870.2 1740.4 8702 1993-10-29 2024-10-11 02:25:02.000 1993-10-29 2024-10-11 02:25:02 +8703 8703 8704 870.3 1740.6000000000001 8703 1993-10-30 2024-10-11 02:25:03.000 1993-10-30 2024-10-11 02:25:03 +8704 8704 8705 870.4 1740.8000000000002 8704 1993-10-31 2024-10-11 02:25:04.000 1993-10-31 2024-10-11 02:25:04 +8706 8706 8707 870.6 1741.2 8706 1993-11-02 2024-10-11 02:25:06.000 1993-11-02 2024-10-11 02:25:06 +8707 8707 8708 870.7 1741.4 8707 1993-11-03 2024-10-11 02:25:07.000 1993-11-03 2024-10-11 02:25:07 +8708 8708 8709 870.8 1741.6000000000001 8708 1993-11-04 2024-10-11 02:25:08.000 1993-11-04 2024-10-11 02:25:08 +8709 8709 8710 870.9 1741.8000000000002 8709 1993-11-05 2024-10-11 02:25:09.000 1993-11-05 2024-10-11 02:25:09 +8711 8711 8712 871.1 1742.2 8711 1993-11-07 2024-10-11 02:25:11.000 1993-11-07 2024-10-11 02:25:11 +8712 8712 8713 871.2 1742.4 8712 1993-11-08 2024-10-11 02:25:12.000 1993-11-08 2024-10-11 02:25:12 +8713 8713 8714 871.3 1742.6000000000001 8713 1993-11-09 2024-10-11 02:25:13.000 1993-11-09 2024-10-11 02:25:13 +8714 8714 8715 871.4 1742.8000000000002 8714 1993-11-10 2024-10-11 02:25:14.000 1993-11-10 2024-10-11 02:25:14 +8716 8716 8717 871.6 1743.2 8716 1993-11-12 2024-10-11 02:25:16.000 1993-11-12 2024-10-11 02:25:16 +8717 8717 8718 871.7 1743.4 8717 1993-11-13 2024-10-11 02:25:17.000 1993-11-13 2024-10-11 02:25:17 +8718 8718 8719 871.8 1743.6000000000001 8718 1993-11-14 2024-10-11 02:25:18.000 1993-11-14 2024-10-11 02:25:18 +8719 8719 8720 871.9 1743.8000000000002 8719 1993-11-15 2024-10-11 02:25:19.000 1993-11-15 2024-10-11 02:25:19 +8721 8721 8722 872.1 1744.2 8721 1993-11-17 2024-10-11 02:25:21.000 1993-11-17 2024-10-11 02:25:21 +8722 8722 8723 872.2 1744.4 8722 1993-11-18 2024-10-11 02:25:22.000 1993-11-18 2024-10-11 02:25:22 +8723 8723 8724 872.3 1744.6000000000001 8723 1993-11-19 2024-10-11 02:25:23.000 1993-11-19 2024-10-11 02:25:23 +8724 8724 8725 872.4 1744.8000000000002 8724 1993-11-20 2024-10-11 02:25:24.000 1993-11-20 2024-10-11 02:25:24 +8726 8726 8727 872.6 1745.2 8726 1993-11-22 2024-10-11 02:25:26.000 1993-11-22 2024-10-11 02:25:26 +8727 8727 8728 872.7 1745.4 8727 1993-11-23 2024-10-11 02:25:27.000 1993-11-23 2024-10-11 02:25:27 +8728 8728 8729 872.8 1745.6000000000001 8728 1993-11-24 2024-10-11 02:25:28.000 1993-11-24 2024-10-11 02:25:28 +8729 8729 8730 872.9 1745.8000000000002 8729 1993-11-25 2024-10-11 02:25:29.000 1993-11-25 2024-10-11 02:25:29 +8731 8731 8732 873.1 1746.2 8731 1993-11-27 2024-10-11 02:25:31.000 1993-11-27 2024-10-11 02:25:31 +8732 8732 8733 873.2 1746.4 8732 1993-11-28 2024-10-11 02:25:32.000 1993-11-28 2024-10-11 02:25:32 +8733 8733 8734 873.3 1746.6000000000001 8733 1993-11-29 2024-10-11 02:25:33.000 1993-11-29 2024-10-11 02:25:33 +8734 8734 8735 873.4 1746.8000000000002 8734 1993-11-30 2024-10-11 02:25:34.000 1993-11-30 2024-10-11 02:25:34 +8736 8736 8737 873.6 1747.2 8736 1993-12-02 2024-10-11 02:25:36.000 1993-12-02 2024-10-11 02:25:36 +8737 8737 8738 873.7 1747.4 8737 1993-12-03 2024-10-11 02:25:37.000 1993-12-03 2024-10-11 02:25:37 +8738 8738 8739 873.8 1747.6000000000001 8738 1993-12-04 2024-10-11 02:25:38.000 1993-12-04 2024-10-11 02:25:38 +8739 8739 8740 873.9 1747.8000000000002 8739 1993-12-05 2024-10-11 02:25:39.000 1993-12-05 2024-10-11 02:25:39 +8741 8741 8742 874.1 1748.2 8741 1993-12-07 2024-10-11 02:25:41.000 1993-12-07 2024-10-11 02:25:41 +8742 8742 8743 874.2 1748.4 8742 1993-12-08 2024-10-11 02:25:42.000 1993-12-08 2024-10-11 02:25:42 +8743 8743 8744 874.3 1748.6000000000001 8743 1993-12-09 2024-10-11 02:25:43.000 1993-12-09 2024-10-11 02:25:43 +8744 8744 8745 874.4 1748.8000000000002 8744 1993-12-10 2024-10-11 02:25:44.000 1993-12-10 2024-10-11 02:25:44 +8746 8746 8747 874.6 1749.2 8746 1993-12-12 2024-10-11 02:25:46.000 1993-12-12 2024-10-11 02:25:46 +8747 8747 8748 874.7 1749.4 8747 1993-12-13 2024-10-11 02:25:47.000 1993-12-13 2024-10-11 02:25:47 +8748 8748 8749 874.8 1749.6000000000001 8748 1993-12-14 2024-10-11 02:25:48.000 1993-12-14 2024-10-11 02:25:48 +8749 8749 8750 874.9 1749.8000000000002 8749 1993-12-15 2024-10-11 02:25:49.000 1993-12-15 2024-10-11 02:25:49 +8751 8751 8752 875.1 1750.2 8751 1993-12-17 2024-10-11 02:25:51.000 1993-12-17 2024-10-11 02:25:51 +8752 8752 8753 875.2 1750.4 8752 1993-12-18 2024-10-11 02:25:52.000 1993-12-18 2024-10-11 02:25:52 +8753 8753 8754 875.3 1750.6000000000001 8753 1993-12-19 2024-10-11 02:25:53.000 1993-12-19 2024-10-11 02:25:53 +8754 8754 8755 875.4 1750.8000000000002 8754 1993-12-20 2024-10-11 02:25:54.000 1993-12-20 2024-10-11 02:25:54 +8756 8756 8757 875.6 1751.2 8756 1993-12-22 2024-10-11 02:25:56.000 1993-12-22 2024-10-11 02:25:56 +8757 8757 8758 875.7 1751.4 8757 1993-12-23 2024-10-11 02:25:57.000 1993-12-23 2024-10-11 02:25:57 +8758 8758 8759 875.8 1751.6000000000001 8758 1993-12-24 2024-10-11 02:25:58.000 1993-12-24 2024-10-11 02:25:58 +8759 8759 8760 875.9 1751.8000000000002 8759 1993-12-25 2024-10-11 02:25:59.000 1993-12-25 2024-10-11 02:25:59 +8761 8761 8762 876.1 1752.2 8761 1993-12-27 2024-10-11 02:26:01.000 1993-12-27 2024-10-11 02:26:01 +8762 8762 8763 876.2 1752.4 8762 1993-12-28 2024-10-11 02:26:02.000 1993-12-28 2024-10-11 02:26:02 +8763 8763 8764 876.3 1752.6000000000001 8763 1993-12-29 2024-10-11 02:26:03.000 1993-12-29 2024-10-11 02:26:03 +8764 8764 8765 876.4 1752.8000000000002 8764 1993-12-30 2024-10-11 02:26:04.000 1993-12-30 2024-10-11 02:26:04 +8766 8766 8767 876.6 1753.2 8766 1994-01-01 2024-10-11 02:26:06.000 1994-01-01 2024-10-11 02:26:06 +8767 8767 8768 876.7 1753.4 8767 1994-01-02 2024-10-11 02:26:07.000 1994-01-02 2024-10-11 02:26:07 +8768 8768 8769 876.8 1753.6000000000001 8768 1994-01-03 2024-10-11 02:26:08.000 1994-01-03 2024-10-11 02:26:08 +8769 8769 8770 876.9 1753.8000000000002 8769 1994-01-04 2024-10-11 02:26:09.000 1994-01-04 2024-10-11 02:26:09 +8771 8771 8772 877.1 1754.2 8771 1994-01-06 2024-10-11 02:26:11.000 1994-01-06 2024-10-11 02:26:11 +8772 8772 8773 877.2 1754.4 8772 1994-01-07 2024-10-11 02:26:12.000 1994-01-07 2024-10-11 02:26:12 +8773 8773 8774 877.3 1754.6000000000001 8773 1994-01-08 2024-10-11 02:26:13.000 1994-01-08 2024-10-11 02:26:13 +8774 8774 8775 877.4 1754.8000000000002 8774 1994-01-09 2024-10-11 02:26:14.000 1994-01-09 2024-10-11 02:26:14 +8776 8776 8777 877.6 1755.2 8776 1994-01-11 2024-10-11 02:26:16.000 1994-01-11 2024-10-11 02:26:16 +8777 8777 8778 877.7 1755.4 8777 1994-01-12 2024-10-11 02:26:17.000 1994-01-12 2024-10-11 02:26:17 +8778 8778 8779 877.8 1755.6000000000001 8778 1994-01-13 2024-10-11 02:26:18.000 1994-01-13 2024-10-11 02:26:18 +8779 8779 8780 877.9 1755.8000000000002 8779 1994-01-14 2024-10-11 02:26:19.000 1994-01-14 2024-10-11 02:26:19 +8781 8781 8782 878.1 1756.2 8781 1994-01-16 2024-10-11 02:26:21.000 1994-01-16 2024-10-11 02:26:21 +8782 8782 8783 878.2 1756.4 8782 1994-01-17 2024-10-11 02:26:22.000 1994-01-17 2024-10-11 02:26:22 +8783 8783 8784 878.3 1756.6000000000001 8783 1994-01-18 2024-10-11 02:26:23.000 1994-01-18 2024-10-11 02:26:23 +8784 8784 8785 878.4 1756.8000000000002 8784 1994-01-19 2024-10-11 02:26:24.000 1994-01-19 2024-10-11 02:26:24 +8786 8786 8787 878.6 1757.2 8786 1994-01-21 2024-10-11 02:26:26.000 1994-01-21 2024-10-11 02:26:26 +8787 8787 8788 878.7 1757.4 8787 1994-01-22 2024-10-11 02:26:27.000 1994-01-22 2024-10-11 02:26:27 +8788 8788 8789 878.8 1757.6000000000001 8788 1994-01-23 2024-10-11 02:26:28.000 1994-01-23 2024-10-11 02:26:28 +8789 8789 8790 878.9 1757.8000000000002 8789 1994-01-24 2024-10-11 02:26:29.000 1994-01-24 2024-10-11 02:26:29 +8791 8791 8792 879.1 1758.2 8791 1994-01-26 2024-10-11 02:26:31.000 1994-01-26 2024-10-11 02:26:31 +8792 8792 8793 879.2 1758.4 8792 1994-01-27 2024-10-11 02:26:32.000 1994-01-27 2024-10-11 02:26:32 +8793 8793 8794 879.3 1758.6000000000001 8793 1994-01-28 2024-10-11 02:26:33.000 1994-01-28 2024-10-11 02:26:33 +8794 8794 8795 879.4 1758.8000000000002 8794 1994-01-29 2024-10-11 02:26:34.000 1994-01-29 2024-10-11 02:26:34 +8796 8796 8797 879.6 1759.2 8796 1994-01-31 2024-10-11 02:26:36.000 1994-01-31 2024-10-11 02:26:36 +8797 8797 8798 879.7 1759.4 8797 1994-02-01 2024-10-11 02:26:37.000 1994-02-01 2024-10-11 02:26:37 +8798 8798 8799 879.8 1759.6000000000001 8798 1994-02-02 2024-10-11 02:26:38.000 1994-02-02 2024-10-11 02:26:38 +8799 8799 8800 879.9 1759.8000000000002 8799 1994-02-03 2024-10-11 02:26:39.000 1994-02-03 2024-10-11 02:26:39 +8801 8801 8802 880.1 1760.2 8801 1994-02-05 2024-10-11 02:26:41.000 1994-02-05 2024-10-11 02:26:41 +8802 8802 8803 880.2 1760.4 8802 1994-02-06 2024-10-11 02:26:42.000 1994-02-06 2024-10-11 02:26:42 +8803 8803 8804 880.3 1760.6000000000001 8803 1994-02-07 2024-10-11 02:26:43.000 1994-02-07 2024-10-11 02:26:43 +8804 8804 8805 880.4 1760.8000000000002 8804 1994-02-08 2024-10-11 02:26:44.000 1994-02-08 2024-10-11 02:26:44 +8806 8806 8807 880.6 1761.2 8806 1994-02-10 2024-10-11 02:26:46.000 1994-02-10 2024-10-11 02:26:46 +8807 8807 8808 880.7 1761.4 8807 1994-02-11 2024-10-11 02:26:47.000 1994-02-11 2024-10-11 02:26:47 +8808 8808 8809 880.8 1761.6000000000001 8808 1994-02-12 2024-10-11 02:26:48.000 1994-02-12 2024-10-11 02:26:48 +8809 8809 8810 880.9 1761.8000000000002 8809 1994-02-13 2024-10-11 02:26:49.000 1994-02-13 2024-10-11 02:26:49 +8811 8811 8812 881.1 1762.2 8811 1994-02-15 2024-10-11 02:26:51.000 1994-02-15 2024-10-11 02:26:51 +8812 8812 8813 881.2 1762.4 8812 1994-02-16 2024-10-11 02:26:52.000 1994-02-16 2024-10-11 02:26:52 +8813 8813 8814 881.3 1762.6000000000001 8813 1994-02-17 2024-10-11 02:26:53.000 1994-02-17 2024-10-11 02:26:53 +8814 8814 8815 881.4 1762.8000000000002 8814 1994-02-18 2024-10-11 02:26:54.000 1994-02-18 2024-10-11 02:26:54 +8816 8816 8817 881.6 1763.2 8816 1994-02-20 2024-10-11 02:26:56.000 1994-02-20 2024-10-11 02:26:56 +8817 8817 8818 881.7 1763.4 8817 1994-02-21 2024-10-11 02:26:57.000 1994-02-21 2024-10-11 02:26:57 +8818 8818 8819 881.8 1763.6000000000001 8818 1994-02-22 2024-10-11 02:26:58.000 1994-02-22 2024-10-11 02:26:58 +8819 8819 8820 881.9 1763.8000000000002 8819 1994-02-23 2024-10-11 02:26:59.000 1994-02-23 2024-10-11 02:26:59 +8821 8821 8822 882.1 1764.2 8821 1994-02-25 2024-10-11 02:27:01.000 1994-02-25 2024-10-11 02:27:01 +8822 8822 8823 882.2 1764.4 8822 1994-02-26 2024-10-11 02:27:02.000 1994-02-26 2024-10-11 02:27:02 +8823 8823 8824 882.3 1764.6000000000001 8823 1994-02-27 2024-10-11 02:27:03.000 1994-02-27 2024-10-11 02:27:03 +8824 8824 8825 882.4 1764.8000000000002 8824 1994-02-28 2024-10-11 02:27:04.000 1994-02-28 2024-10-11 02:27:04 +8826 8826 8827 882.6 1765.2 8826 1994-03-02 2024-10-11 02:27:06.000 1994-03-02 2024-10-11 02:27:06 +8827 8827 8828 882.7 1765.4 8827 1994-03-03 2024-10-11 02:27:07.000 1994-03-03 2024-10-11 02:27:07 +8828 8828 8829 882.8 1765.6000000000001 8828 1994-03-04 2024-10-11 02:27:08.000 1994-03-04 2024-10-11 02:27:08 +8829 8829 8830 882.9 1765.8000000000002 8829 1994-03-05 2024-10-11 02:27:09.000 1994-03-05 2024-10-11 02:27:09 +8831 8831 8832 883.1 1766.2 8831 1994-03-07 2024-10-11 02:27:11.000 1994-03-07 2024-10-11 02:27:11 +8832 8832 8833 883.2 1766.4 8832 1994-03-08 2024-10-11 02:27:12.000 1994-03-08 2024-10-11 02:27:12 +8833 8833 8834 883.3 1766.6000000000001 8833 1994-03-09 2024-10-11 02:27:13.000 1994-03-09 2024-10-11 02:27:13 +8834 8834 8835 883.4 1766.8000000000002 8834 1994-03-10 2024-10-11 02:27:14.000 1994-03-10 2024-10-11 02:27:14 +8836 8836 8837 883.6 1767.2 8836 1994-03-12 2024-10-11 02:27:16.000 1994-03-12 2024-10-11 02:27:16 +8837 8837 8838 883.7 1767.4 8837 1994-03-13 2024-10-11 02:27:17.000 1994-03-13 2024-10-11 02:27:17 +8838 8838 8839 883.8 1767.6000000000001 8838 1994-03-14 2024-10-11 02:27:18.000 1994-03-14 2024-10-11 02:27:18 +8839 8839 8840 883.9 1767.8000000000002 8839 1994-03-15 2024-10-11 02:27:19.000 1994-03-15 2024-10-11 02:27:19 +8841 8841 8842 884.1 1768.2 8841 1994-03-17 2024-10-11 02:27:21.000 1994-03-17 2024-10-11 02:27:21 +8842 8842 8843 884.2 1768.4 8842 1994-03-18 2024-10-11 02:27:22.000 1994-03-18 2024-10-11 02:27:22 +8843 8843 8844 884.3 1768.6000000000001 8843 1994-03-19 2024-10-11 02:27:23.000 1994-03-19 2024-10-11 02:27:23 +8844 8844 8845 884.4 1768.8000000000002 8844 1994-03-20 2024-10-11 02:27:24.000 1994-03-20 2024-10-11 02:27:24 +8846 8846 8847 884.6 1769.2 8846 1994-03-22 2024-10-11 02:27:26.000 1994-03-22 2024-10-11 02:27:26 +8847 8847 8848 884.7 1769.4 8847 1994-03-23 2024-10-11 02:27:27.000 1994-03-23 2024-10-11 02:27:27 +8848 8848 8849 884.8 1769.6000000000001 8848 1994-03-24 2024-10-11 02:27:28.000 1994-03-24 2024-10-11 02:27:28 +8849 8849 8850 884.9 1769.8000000000002 8849 1994-03-25 2024-10-11 02:27:29.000 1994-03-25 2024-10-11 02:27:29 +8851 8851 8852 885.1 1770.2 8851 1994-03-27 2024-10-11 02:27:31.000 1994-03-27 2024-10-11 02:27:31 +8852 8852 8853 885.2 1770.4 8852 1994-03-28 2024-10-11 02:27:32.000 1994-03-28 2024-10-11 02:27:32 +8853 8853 8854 885.3 1770.6000000000001 8853 1994-03-29 2024-10-11 02:27:33.000 1994-03-29 2024-10-11 02:27:33 +8854 8854 8855 885.4 1770.8000000000002 8854 1994-03-30 2024-10-11 02:27:34.000 1994-03-30 2024-10-11 02:27:34 +8856 8856 8857 885.6 1771.2 8856 1994-04-01 2024-10-11 02:27:36.000 1994-04-01 2024-10-11 02:27:36 +8857 8857 8858 885.7 1771.4 8857 1994-04-02 2024-10-11 02:27:37.000 1994-04-02 2024-10-11 02:27:37 +8858 8858 8859 885.8 1771.6000000000001 8858 1994-04-03 2024-10-11 02:27:38.000 1994-04-03 2024-10-11 02:27:38 +8859 8859 8860 885.9 1771.8000000000002 8859 1994-04-04 2024-10-11 02:27:39.000 1994-04-04 2024-10-11 02:27:39 +8861 8861 8862 886.1 1772.2 8861 1994-04-06 2024-10-11 02:27:41.000 1994-04-06 2024-10-11 02:27:41 +8862 8862 8863 886.2 1772.4 8862 1994-04-07 2024-10-11 02:27:42.000 1994-04-07 2024-10-11 02:27:42 +8863 8863 8864 886.3 1772.6000000000001 8863 1994-04-08 2024-10-11 02:27:43.000 1994-04-08 2024-10-11 02:27:43 +8864 8864 8865 886.4 1772.8000000000002 8864 1994-04-09 2024-10-11 02:27:44.000 1994-04-09 2024-10-11 02:27:44 +8866 8866 8867 886.6 1773.2 8866 1994-04-11 2024-10-11 02:27:46.000 1994-04-11 2024-10-11 02:27:46 +8867 8867 8868 886.7 1773.4 8867 1994-04-12 2024-10-11 02:27:47.000 1994-04-12 2024-10-11 02:27:47 +8868 8868 8869 886.8 1773.6000000000001 8868 1994-04-13 2024-10-11 02:27:48.000 1994-04-13 2024-10-11 02:27:48 +8869 8869 8870 886.9 1773.8000000000002 8869 1994-04-14 2024-10-11 02:27:49.000 1994-04-14 2024-10-11 02:27:49 +8871 8871 8872 887.1 1774.2 8871 1994-04-16 2024-10-11 02:27:51.000 1994-04-16 2024-10-11 02:27:51 +8872 8872 8873 887.2 1774.4 8872 1994-04-17 2024-10-11 02:27:52.000 1994-04-17 2024-10-11 02:27:52 +8873 8873 8874 887.3 1774.6000000000001 8873 1994-04-18 2024-10-11 02:27:53.000 1994-04-18 2024-10-11 02:27:53 +8874 8874 8875 887.4 1774.8000000000002 8874 1994-04-19 2024-10-11 02:27:54.000 1994-04-19 2024-10-11 02:27:54 +8876 8876 8877 887.6 1775.2 8876 1994-04-21 2024-10-11 02:27:56.000 1994-04-21 2024-10-11 02:27:56 +8877 8877 8878 887.7 1775.4 8877 1994-04-22 2024-10-11 02:27:57.000 1994-04-22 2024-10-11 02:27:57 +8878 8878 8879 887.8 1775.6000000000001 8878 1994-04-23 2024-10-11 02:27:58.000 1994-04-23 2024-10-11 02:27:58 +8879 8879 8880 887.9 1775.8000000000002 8879 1994-04-24 2024-10-11 02:27:59.000 1994-04-24 2024-10-11 02:27:59 +8881 8881 8882 888.1 1776.2 8881 1994-04-26 2024-10-11 02:28:01.000 1994-04-26 2024-10-11 02:28:01 +8882 8882 8883 888.2 1776.4 8882 1994-04-27 2024-10-11 02:28:02.000 1994-04-27 2024-10-11 02:28:02 +8883 8883 8884 888.3 1776.6000000000001 8883 1994-04-28 2024-10-11 02:28:03.000 1994-04-28 2024-10-11 02:28:03 +8884 8884 8885 888.4 1776.8000000000002 8884 1994-04-29 2024-10-11 02:28:04.000 1994-04-29 2024-10-11 02:28:04 +8886 8886 8887 888.6 1777.2 8886 1994-05-01 2024-10-11 02:28:06.000 1994-05-01 2024-10-11 02:28:06 +8887 8887 8888 888.7 1777.4 8887 1994-05-02 2024-10-11 02:28:07.000 1994-05-02 2024-10-11 02:28:07 +8888 8888 8889 888.8 1777.6000000000001 8888 1994-05-03 2024-10-11 02:28:08.000 1994-05-03 2024-10-11 02:28:08 +8889 8889 8890 888.9 1777.8000000000002 8889 1994-05-04 2024-10-11 02:28:09.000 1994-05-04 2024-10-11 02:28:09 +8891 8891 8892 889.1 1778.2 8891 1994-05-06 2024-10-11 02:28:11.000 1994-05-06 2024-10-11 02:28:11 +8892 8892 8893 889.2 1778.4 8892 1994-05-07 2024-10-11 02:28:12.000 1994-05-07 2024-10-11 02:28:12 +8893 8893 8894 889.3 1778.6000000000001 8893 1994-05-08 2024-10-11 02:28:13.000 1994-05-08 2024-10-11 02:28:13 +8894 8894 8895 889.4 1778.8000000000002 8894 1994-05-09 2024-10-11 02:28:14.000 1994-05-09 2024-10-11 02:28:14 +8896 8896 8897 889.6 1779.2 8896 1994-05-11 2024-10-11 02:28:16.000 1994-05-11 2024-10-11 02:28:16 +8897 8897 8898 889.7 1779.4 8897 1994-05-12 2024-10-11 02:28:17.000 1994-05-12 2024-10-11 02:28:17 +8898 8898 8899 889.8 1779.6000000000001 8898 1994-05-13 2024-10-11 02:28:18.000 1994-05-13 2024-10-11 02:28:18 +8899 8899 8900 889.9 1779.8000000000002 8899 1994-05-14 2024-10-11 02:28:19.000 1994-05-14 2024-10-11 02:28:19 +8901 8901 8902 890.1 1780.2 8901 1994-05-16 2024-10-11 02:28:21.000 1994-05-16 2024-10-11 02:28:21 +8902 8902 8903 890.2 1780.4 8902 1994-05-17 2024-10-11 02:28:22.000 1994-05-17 2024-10-11 02:28:22 +8903 8903 8904 890.3 1780.6000000000001 8903 1994-05-18 2024-10-11 02:28:23.000 1994-05-18 2024-10-11 02:28:23 +8904 8904 8905 890.4 1780.8000000000002 8904 1994-05-19 2024-10-11 02:28:24.000 1994-05-19 2024-10-11 02:28:24 +8906 8906 8907 890.6 1781.2 8906 1994-05-21 2024-10-11 02:28:26.000 1994-05-21 2024-10-11 02:28:26 +8907 8907 8908 890.7 1781.4 8907 1994-05-22 2024-10-11 02:28:27.000 1994-05-22 2024-10-11 02:28:27 +8908 8908 8909 890.8 1781.6000000000001 8908 1994-05-23 2024-10-11 02:28:28.000 1994-05-23 2024-10-11 02:28:28 +8909 8909 8910 890.9 1781.8000000000002 8909 1994-05-24 2024-10-11 02:28:29.000 1994-05-24 2024-10-11 02:28:29 +8911 8911 8912 891.1 1782.2 8911 1994-05-26 2024-10-11 02:28:31.000 1994-05-26 2024-10-11 02:28:31 +8912 8912 8913 891.2 1782.4 8912 1994-05-27 2024-10-11 02:28:32.000 1994-05-27 2024-10-11 02:28:32 +8913 8913 8914 891.3 1782.6000000000001 8913 1994-05-28 2024-10-11 02:28:33.000 1994-05-28 2024-10-11 02:28:33 +8914 8914 8915 891.4 1782.8000000000002 8914 1994-05-29 2024-10-11 02:28:34.000 1994-05-29 2024-10-11 02:28:34 +8916 8916 8917 891.6 1783.2 8916 1994-05-31 2024-10-11 02:28:36.000 1994-05-31 2024-10-11 02:28:36 +8917 8917 8918 891.7 1783.4 8917 1994-06-01 2024-10-11 02:28:37.000 1994-06-01 2024-10-11 02:28:37 +8918 8918 8919 891.8 1783.6000000000001 8918 1994-06-02 2024-10-11 02:28:38.000 1994-06-02 2024-10-11 02:28:38 +8919 8919 8920 891.9 1783.8000000000002 8919 1994-06-03 2024-10-11 02:28:39.000 1994-06-03 2024-10-11 02:28:39 +8921 8921 8922 892.1 1784.2 8921 1994-06-05 2024-10-11 02:28:41.000 1994-06-05 2024-10-11 02:28:41 +8922 8922 8923 892.2 1784.4 8922 1994-06-06 2024-10-11 02:28:42.000 1994-06-06 2024-10-11 02:28:42 +8923 8923 8924 892.3 1784.6000000000001 8923 1994-06-07 2024-10-11 02:28:43.000 1994-06-07 2024-10-11 02:28:43 +8924 8924 8925 892.4 1784.8000000000002 8924 1994-06-08 2024-10-11 02:28:44.000 1994-06-08 2024-10-11 02:28:44 +8926 8926 8927 892.6 1785.2 8926 1994-06-10 2024-10-11 02:28:46.000 1994-06-10 2024-10-11 02:28:46 +8927 8927 8928 892.7 1785.4 8927 1994-06-11 2024-10-11 02:28:47.000 1994-06-11 2024-10-11 02:28:47 +8928 8928 8929 892.8 1785.6000000000001 8928 1994-06-12 2024-10-11 02:28:48.000 1994-06-12 2024-10-11 02:28:48 +8929 8929 8930 892.9 1785.8000000000002 8929 1994-06-13 2024-10-11 02:28:49.000 1994-06-13 2024-10-11 02:28:49 +8931 8931 8932 893.1 1786.2 8931 1994-06-15 2024-10-11 02:28:51.000 1994-06-15 2024-10-11 02:28:51 +8932 8932 8933 893.2 1786.4 8932 1994-06-16 2024-10-11 02:28:52.000 1994-06-16 2024-10-11 02:28:52 +8933 8933 8934 893.3 1786.6000000000001 8933 1994-06-17 2024-10-11 02:28:53.000 1994-06-17 2024-10-11 02:28:53 +8934 8934 8935 893.4 1786.8000000000002 8934 1994-06-18 2024-10-11 02:28:54.000 1994-06-18 2024-10-11 02:28:54 +8936 8936 8937 893.6 1787.2 8936 1994-06-20 2024-10-11 02:28:56.000 1994-06-20 2024-10-11 02:28:56 +8937 8937 8938 893.7 1787.4 8937 1994-06-21 2024-10-11 02:28:57.000 1994-06-21 2024-10-11 02:28:57 +8938 8938 8939 893.8 1787.6000000000001 8938 1994-06-22 2024-10-11 02:28:58.000 1994-06-22 2024-10-11 02:28:58 +8939 8939 8940 893.9 1787.8000000000002 8939 1994-06-23 2024-10-11 02:28:59.000 1994-06-23 2024-10-11 02:28:59 +8941 8941 8942 894.1 1788.2 8941 1994-06-25 2024-10-11 02:29:01.000 1994-06-25 2024-10-11 02:29:01 +8942 8942 8943 894.2 1788.4 8942 1994-06-26 2024-10-11 02:29:02.000 1994-06-26 2024-10-11 02:29:02 +8943 8943 8944 894.3 1788.6000000000001 8943 1994-06-27 2024-10-11 02:29:03.000 1994-06-27 2024-10-11 02:29:03 +8944 8944 8945 894.4 1788.8000000000002 8944 1994-06-28 2024-10-11 02:29:04.000 1994-06-28 2024-10-11 02:29:04 +8946 8946 8947 894.6 1789.2 8946 1994-06-30 2024-10-11 02:29:06.000 1994-06-30 2024-10-11 02:29:06 +8947 8947 8948 894.7 1789.4 8947 1994-07-01 2024-10-11 02:29:07.000 1994-07-01 2024-10-11 02:29:07 +8948 8948 8949 894.8 1789.6000000000001 8948 1994-07-02 2024-10-11 02:29:08.000 1994-07-02 2024-10-11 02:29:08 +8949 8949 8950 894.9 1789.8000000000002 8949 1994-07-03 2024-10-11 02:29:09.000 1994-07-03 2024-10-11 02:29:09 +8951 8951 8952 895.1 1790.2 8951 1994-07-05 2024-10-11 02:29:11.000 1994-07-05 2024-10-11 02:29:11 +8952 8952 8953 895.2 1790.4 8952 1994-07-06 2024-10-11 02:29:12.000 1994-07-06 2024-10-11 02:29:12 +8953 8953 8954 895.3 1790.6000000000001 8953 1994-07-07 2024-10-11 02:29:13.000 1994-07-07 2024-10-11 02:29:13 +8954 8954 8955 895.4 1790.8000000000002 8954 1994-07-08 2024-10-11 02:29:14.000 1994-07-08 2024-10-11 02:29:14 +8956 8956 8957 895.6 1791.2 8956 1994-07-10 2024-10-11 02:29:16.000 1994-07-10 2024-10-11 02:29:16 +8957 8957 8958 895.7 1791.4 8957 1994-07-11 2024-10-11 02:29:17.000 1994-07-11 2024-10-11 02:29:17 +8958 8958 8959 895.8 1791.6000000000001 8958 1994-07-12 2024-10-11 02:29:18.000 1994-07-12 2024-10-11 02:29:18 +8959 8959 8960 895.9 1791.8000000000002 8959 1994-07-13 2024-10-11 02:29:19.000 1994-07-13 2024-10-11 02:29:19 +8961 8961 8962 896.1 1792.2 8961 1994-07-15 2024-10-11 02:29:21.000 1994-07-15 2024-10-11 02:29:21 +8962 8962 8963 896.2 1792.4 8962 1994-07-16 2024-10-11 02:29:22.000 1994-07-16 2024-10-11 02:29:22 +8963 8963 8964 896.3 1792.6000000000001 8963 1994-07-17 2024-10-11 02:29:23.000 1994-07-17 2024-10-11 02:29:23 +8964 8964 8965 896.4 1792.8000000000002 8964 1994-07-18 2024-10-11 02:29:24.000 1994-07-18 2024-10-11 02:29:24 +8966 8966 8967 896.6 1793.2 8966 1994-07-20 2024-10-11 02:29:26.000 1994-07-20 2024-10-11 02:29:26 +8967 8967 8968 896.7 1793.4 8967 1994-07-21 2024-10-11 02:29:27.000 1994-07-21 2024-10-11 02:29:27 +8968 8968 8969 896.8 1793.6000000000001 8968 1994-07-22 2024-10-11 02:29:28.000 1994-07-22 2024-10-11 02:29:28 +8969 8969 8970 896.9 1793.8000000000002 8969 1994-07-23 2024-10-11 02:29:29.000 1994-07-23 2024-10-11 02:29:29 +8971 8971 8972 897.1 1794.2 8971 1994-07-25 2024-10-11 02:29:31.000 1994-07-25 2024-10-11 02:29:31 +8972 8972 8973 897.2 1794.4 8972 1994-07-26 2024-10-11 02:29:32.000 1994-07-26 2024-10-11 02:29:32 +8973 8973 8974 897.3 1794.6000000000001 8973 1994-07-27 2024-10-11 02:29:33.000 1994-07-27 2024-10-11 02:29:33 +8974 8974 8975 897.4 1794.8000000000002 8974 1994-07-28 2024-10-11 02:29:34.000 1994-07-28 2024-10-11 02:29:34 +8976 8976 8977 897.6 1795.2 8976 1994-07-30 2024-10-11 02:29:36.000 1994-07-30 2024-10-11 02:29:36 +8977 8977 8978 897.7 1795.4 8977 1994-07-31 2024-10-11 02:29:37.000 1994-07-31 2024-10-11 02:29:37 +8978 8978 8979 897.8 1795.6000000000001 8978 1994-08-01 2024-10-11 02:29:38.000 1994-08-01 2024-10-11 02:29:38 +8979 8979 8980 897.9 1795.8000000000002 8979 1994-08-02 2024-10-11 02:29:39.000 1994-08-02 2024-10-11 02:29:39 +8981 8981 8982 898.1 1796.2 8981 1994-08-04 2024-10-11 02:29:41.000 1994-08-04 2024-10-11 02:29:41 +8982 8982 8983 898.2 1796.4 8982 1994-08-05 2024-10-11 02:29:42.000 1994-08-05 2024-10-11 02:29:42 +8983 8983 8984 898.3 1796.6000000000001 8983 1994-08-06 2024-10-11 02:29:43.000 1994-08-06 2024-10-11 02:29:43 +8984 8984 8985 898.4 1796.8000000000002 8984 1994-08-07 2024-10-11 02:29:44.000 1994-08-07 2024-10-11 02:29:44 +8986 8986 8987 898.6 1797.2 8986 1994-08-09 2024-10-11 02:29:46.000 1994-08-09 2024-10-11 02:29:46 +8987 8987 8988 898.7 1797.4 8987 1994-08-10 2024-10-11 02:29:47.000 1994-08-10 2024-10-11 02:29:47 +8988 8988 8989 898.8 1797.6000000000001 8988 1994-08-11 2024-10-11 02:29:48.000 1994-08-11 2024-10-11 02:29:48 +8989 8989 8990 898.9 1797.8000000000002 8989 1994-08-12 2024-10-11 02:29:49.000 1994-08-12 2024-10-11 02:29:49 +8991 8991 8992 899.1 1798.2 8991 1994-08-14 2024-10-11 02:29:51.000 1994-08-14 2024-10-11 02:29:51 +8992 8992 8993 899.2 1798.4 8992 1994-08-15 2024-10-11 02:29:52.000 1994-08-15 2024-10-11 02:29:52 +8993 8993 8994 899.3 1798.6000000000001 8993 1994-08-16 2024-10-11 02:29:53.000 1994-08-16 2024-10-11 02:29:53 +8994 8994 8995 899.4 1798.8000000000002 8994 1994-08-17 2024-10-11 02:29:54.000 1994-08-17 2024-10-11 02:29:54 +8996 8996 8997 899.6 1799.2 8996 1994-08-19 2024-10-11 02:29:56.000 1994-08-19 2024-10-11 02:29:56 +8997 8997 8998 899.7 1799.4 8997 1994-08-20 2024-10-11 02:29:57.000 1994-08-20 2024-10-11 02:29:57 +8998 8998 8999 899.8 1799.6000000000001 8998 1994-08-21 2024-10-11 02:29:58.000 1994-08-21 2024-10-11 02:29:58 +8999 8999 9000 899.9 1799.8000000000002 8999 1994-08-22 2024-10-11 02:29:59.000 1994-08-22 2024-10-11 02:29:59 +9001 9001 9002 900.1 1800.2 9001 1994-08-24 2024-10-11 02:30:01.000 1994-08-24 2024-10-11 02:30:01 +9002 9002 9003 900.2 1800.4 9002 1994-08-25 2024-10-11 02:30:02.000 1994-08-25 2024-10-11 02:30:02 +9003 9003 9004 900.3 1800.6000000000001 9003 1994-08-26 2024-10-11 02:30:03.000 1994-08-26 2024-10-11 02:30:03 +9004 9004 9005 900.4 1800.8000000000002 9004 1994-08-27 2024-10-11 02:30:04.000 1994-08-27 2024-10-11 02:30:04 +9006 9006 9007 900.6 1801.2 9006 1994-08-29 2024-10-11 02:30:06.000 1994-08-29 2024-10-11 02:30:06 +9007 9007 9008 900.7 1801.4 9007 1994-08-30 2024-10-11 02:30:07.000 1994-08-30 2024-10-11 02:30:07 +9008 9008 9009 900.8 1801.6000000000001 9008 1994-08-31 2024-10-11 02:30:08.000 1994-08-31 2024-10-11 02:30:08 +9009 9009 9010 900.9 1801.8000000000002 9009 1994-09-01 2024-10-11 02:30:09.000 1994-09-01 2024-10-11 02:30:09 +9011 9011 9012 901.1 1802.2 9011 1994-09-03 2024-10-11 02:30:11.000 1994-09-03 2024-10-11 02:30:11 +9012 9012 9013 901.2 1802.4 9012 1994-09-04 2024-10-11 02:30:12.000 1994-09-04 2024-10-11 02:30:12 +9013 9013 9014 901.3 1802.6000000000001 9013 1994-09-05 2024-10-11 02:30:13.000 1994-09-05 2024-10-11 02:30:13 +9014 9014 9015 901.4 1802.8000000000002 9014 1994-09-06 2024-10-11 02:30:14.000 1994-09-06 2024-10-11 02:30:14 +9016 9016 9017 901.6 1803.2 9016 1994-09-08 2024-10-11 02:30:16.000 1994-09-08 2024-10-11 02:30:16 +9017 9017 9018 901.7 1803.4 9017 1994-09-09 2024-10-11 02:30:17.000 1994-09-09 2024-10-11 02:30:17 +9018 9018 9019 901.8 1803.6000000000001 9018 1994-09-10 2024-10-11 02:30:18.000 1994-09-10 2024-10-11 02:30:18 +9019 9019 9020 901.9 1803.8000000000002 9019 1994-09-11 2024-10-11 02:30:19.000 1994-09-11 2024-10-11 02:30:19 +9021 9021 9022 902.1 1804.2 9021 1994-09-13 2024-10-11 02:30:21.000 1994-09-13 2024-10-11 02:30:21 +9022 9022 9023 902.2 1804.4 9022 1994-09-14 2024-10-11 02:30:22.000 1994-09-14 2024-10-11 02:30:22 +9023 9023 9024 902.3 1804.6000000000001 9023 1994-09-15 2024-10-11 02:30:23.000 1994-09-15 2024-10-11 02:30:23 +9024 9024 9025 902.4 1804.8000000000002 9024 1994-09-16 2024-10-11 02:30:24.000 1994-09-16 2024-10-11 02:30:24 +9026 9026 9027 902.6 1805.2 9026 1994-09-18 2024-10-11 02:30:26.000 1994-09-18 2024-10-11 02:30:26 +9027 9027 9028 902.7 1805.4 9027 1994-09-19 2024-10-11 02:30:27.000 1994-09-19 2024-10-11 02:30:27 +9028 9028 9029 902.8 1805.6000000000001 9028 1994-09-20 2024-10-11 02:30:28.000 1994-09-20 2024-10-11 02:30:28 +9029 9029 9030 902.9 1805.8000000000002 9029 1994-09-21 2024-10-11 02:30:29.000 1994-09-21 2024-10-11 02:30:29 +9031 9031 9032 903.1 1806.2 9031 1994-09-23 2024-10-11 02:30:31.000 1994-09-23 2024-10-11 02:30:31 +9032 9032 9033 903.2 1806.4 9032 1994-09-24 2024-10-11 02:30:32.000 1994-09-24 2024-10-11 02:30:32 +9033 9033 9034 903.3 1806.6000000000001 9033 1994-09-25 2024-10-11 02:30:33.000 1994-09-25 2024-10-11 02:30:33 +9034 9034 9035 903.4 1806.8000000000002 9034 1994-09-26 2024-10-11 02:30:34.000 1994-09-26 2024-10-11 02:30:34 +9036 9036 9037 903.6 1807.2 9036 1994-09-28 2024-10-11 02:30:36.000 1994-09-28 2024-10-11 02:30:36 +9037 9037 9038 903.7 1807.4 9037 1994-09-29 2024-10-11 02:30:37.000 1994-09-29 2024-10-11 02:30:37 +9038 9038 9039 903.8 1807.6000000000001 9038 1994-09-30 2024-10-11 02:30:38.000 1994-09-30 2024-10-11 02:30:38 +9039 9039 9040 903.9 1807.8000000000002 9039 1994-10-01 2024-10-11 02:30:39.000 1994-10-01 2024-10-11 02:30:39 +9041 9041 9042 904.1 1808.2 9041 1994-10-03 2024-10-11 02:30:41.000 1994-10-03 2024-10-11 02:30:41 +9042 9042 9043 904.2 1808.4 9042 1994-10-04 2024-10-11 02:30:42.000 1994-10-04 2024-10-11 02:30:42 +9043 9043 9044 904.3 1808.6000000000001 9043 1994-10-05 2024-10-11 02:30:43.000 1994-10-05 2024-10-11 02:30:43 +9044 9044 9045 904.4 1808.8000000000002 9044 1994-10-06 2024-10-11 02:30:44.000 1994-10-06 2024-10-11 02:30:44 +9046 9046 9047 904.6 1809.2 9046 1994-10-08 2024-10-11 02:30:46.000 1994-10-08 2024-10-11 02:30:46 +9047 9047 9048 904.7 1809.4 9047 1994-10-09 2024-10-11 02:30:47.000 1994-10-09 2024-10-11 02:30:47 +9048 9048 9049 904.8 1809.6000000000001 9048 1994-10-10 2024-10-11 02:30:48.000 1994-10-10 2024-10-11 02:30:48 +9049 9049 9050 904.9 1809.8000000000002 9049 1994-10-11 2024-10-11 02:30:49.000 1994-10-11 2024-10-11 02:30:49 +9051 9051 9052 905.1 1810.2 9051 1994-10-13 2024-10-11 02:30:51.000 1994-10-13 2024-10-11 02:30:51 +9052 9052 9053 905.2 1810.4 9052 1994-10-14 2024-10-11 02:30:52.000 1994-10-14 2024-10-11 02:30:52 +9053 9053 9054 905.3 1810.6000000000001 9053 1994-10-15 2024-10-11 02:30:53.000 1994-10-15 2024-10-11 02:30:53 +9054 9054 9055 905.4 1810.8000000000002 9054 1994-10-16 2024-10-11 02:30:54.000 1994-10-16 2024-10-11 02:30:54 +9056 9056 9057 905.6 1811.2 9056 1994-10-18 2024-10-11 02:30:56.000 1994-10-18 2024-10-11 02:30:56 +9057 9057 9058 905.7 1811.4 9057 1994-10-19 2024-10-11 02:30:57.000 1994-10-19 2024-10-11 02:30:57 +9058 9058 9059 905.8 1811.6000000000001 9058 1994-10-20 2024-10-11 02:30:58.000 1994-10-20 2024-10-11 02:30:58 +9059 9059 9060 905.9 1811.8000000000002 9059 1994-10-21 2024-10-11 02:30:59.000 1994-10-21 2024-10-11 02:30:59 +9061 9061 9062 906.1 1812.2 9061 1994-10-23 2024-10-11 02:31:01.000 1994-10-23 2024-10-11 02:31:01 +9062 9062 9063 906.2 1812.4 9062 1994-10-24 2024-10-11 02:31:02.000 1994-10-24 2024-10-11 02:31:02 +9063 9063 9064 906.3 1812.6000000000001 9063 1994-10-25 2024-10-11 02:31:03.000 1994-10-25 2024-10-11 02:31:03 +9064 9064 9065 906.4 1812.8000000000002 9064 1994-10-26 2024-10-11 02:31:04.000 1994-10-26 2024-10-11 02:31:04 +9066 9066 9067 906.6 1813.2 9066 1994-10-28 2024-10-11 02:31:06.000 1994-10-28 2024-10-11 02:31:06 +9067 9067 9068 906.7 1813.4 9067 1994-10-29 2024-10-11 02:31:07.000 1994-10-29 2024-10-11 02:31:07 +9068 9068 9069 906.8 1813.6000000000001 9068 1994-10-30 2024-10-11 02:31:08.000 1994-10-30 2024-10-11 02:31:08 +9069 9069 9070 906.9 1813.8000000000002 9069 1994-10-31 2024-10-11 02:31:09.000 1994-10-31 2024-10-11 02:31:09 +9071 9071 9072 907.1 1814.2 9071 1994-11-02 2024-10-11 02:31:11.000 1994-11-02 2024-10-11 02:31:11 +9072 9072 9073 907.2 1814.4 9072 1994-11-03 2024-10-11 02:31:12.000 1994-11-03 2024-10-11 02:31:12 +9073 9073 9074 907.3 1814.6000000000001 9073 1994-11-04 2024-10-11 02:31:13.000 1994-11-04 2024-10-11 02:31:13 +9074 9074 9075 907.4 1814.8000000000002 9074 1994-11-05 2024-10-11 02:31:14.000 1994-11-05 2024-10-11 02:31:14 +9076 9076 9077 907.6 1815.2 9076 1994-11-07 2024-10-11 02:31:16.000 1994-11-07 2024-10-11 02:31:16 +9077 9077 9078 907.7 1815.4 9077 1994-11-08 2024-10-11 02:31:17.000 1994-11-08 2024-10-11 02:31:17 +9078 9078 9079 907.8 1815.6000000000001 9078 1994-11-09 2024-10-11 02:31:18.000 1994-11-09 2024-10-11 02:31:18 +9079 9079 9080 907.9 1815.8000000000002 9079 1994-11-10 2024-10-11 02:31:19.000 1994-11-10 2024-10-11 02:31:19 +9081 9081 9082 908.1 1816.2 9081 1994-11-12 2024-10-11 02:31:21.000 1994-11-12 2024-10-11 02:31:21 +9082 9082 9083 908.2 1816.4 9082 1994-11-13 2024-10-11 02:31:22.000 1994-11-13 2024-10-11 02:31:22 +9083 9083 9084 908.3 1816.6000000000001 9083 1994-11-14 2024-10-11 02:31:23.000 1994-11-14 2024-10-11 02:31:23 +9084 9084 9085 908.4 1816.8000000000002 9084 1994-11-15 2024-10-11 02:31:24.000 1994-11-15 2024-10-11 02:31:24 +9086 9086 9087 908.6 1817.2 9086 1994-11-17 2024-10-11 02:31:26.000 1994-11-17 2024-10-11 02:31:26 +9087 9087 9088 908.7 1817.4 9087 1994-11-18 2024-10-11 02:31:27.000 1994-11-18 2024-10-11 02:31:27 +9088 9088 9089 908.8 1817.6000000000001 9088 1994-11-19 2024-10-11 02:31:28.000 1994-11-19 2024-10-11 02:31:28 +9089 9089 9090 908.9 1817.8000000000002 9089 1994-11-20 2024-10-11 02:31:29.000 1994-11-20 2024-10-11 02:31:29 +9091 9091 9092 909.1 1818.2 9091 1994-11-22 2024-10-11 02:31:31.000 1994-11-22 2024-10-11 02:31:31 +9092 9092 9093 909.2 1818.4 9092 1994-11-23 2024-10-11 02:31:32.000 1994-11-23 2024-10-11 02:31:32 +9093 9093 9094 909.3 1818.6000000000001 9093 1994-11-24 2024-10-11 02:31:33.000 1994-11-24 2024-10-11 02:31:33 +9094 9094 9095 909.4 1818.8000000000002 9094 1994-11-25 2024-10-11 02:31:34.000 1994-11-25 2024-10-11 02:31:34 +9096 9096 9097 909.6 1819.2 9096 1994-11-27 2024-10-11 02:31:36.000 1994-11-27 2024-10-11 02:31:36 +9097 9097 9098 909.7 1819.4 9097 1994-11-28 2024-10-11 02:31:37.000 1994-11-28 2024-10-11 02:31:37 +9098 9098 9099 909.8 1819.6000000000001 9098 1994-11-29 2024-10-11 02:31:38.000 1994-11-29 2024-10-11 02:31:38 +9099 9099 9100 909.9 1819.8000000000002 9099 1994-11-30 2024-10-11 02:31:39.000 1994-11-30 2024-10-11 02:31:39 +9101 9101 9102 910.1 1820.2 9101 1994-12-02 2024-10-11 02:31:41.000 1994-12-02 2024-10-11 02:31:41 +9102 9102 9103 910.2 1820.4 9102 1994-12-03 2024-10-11 02:31:42.000 1994-12-03 2024-10-11 02:31:42 +9103 9103 9104 910.3 1820.6000000000001 9103 1994-12-04 2024-10-11 02:31:43.000 1994-12-04 2024-10-11 02:31:43 +9104 9104 9105 910.4 1820.8000000000002 9104 1994-12-05 2024-10-11 02:31:44.000 1994-12-05 2024-10-11 02:31:44 +9106 9106 9107 910.6 1821.2 9106 1994-12-07 2024-10-11 02:31:46.000 1994-12-07 2024-10-11 02:31:46 +9107 9107 9108 910.7 1821.4 9107 1994-12-08 2024-10-11 02:31:47.000 1994-12-08 2024-10-11 02:31:47 +9108 9108 9109 910.8 1821.6000000000001 9108 1994-12-09 2024-10-11 02:31:48.000 1994-12-09 2024-10-11 02:31:48 +9109 9109 9110 910.9 1821.8000000000002 9109 1994-12-10 2024-10-11 02:31:49.000 1994-12-10 2024-10-11 02:31:49 +9111 9111 9112 911.1 1822.2 9111 1994-12-12 2024-10-11 02:31:51.000 1994-12-12 2024-10-11 02:31:51 +9112 9112 9113 911.2 1822.4 9112 1994-12-13 2024-10-11 02:31:52.000 1994-12-13 2024-10-11 02:31:52 +9113 9113 9114 911.3 1822.6000000000001 9113 1994-12-14 2024-10-11 02:31:53.000 1994-12-14 2024-10-11 02:31:53 +9114 9114 9115 911.4 1822.8000000000002 9114 1994-12-15 2024-10-11 02:31:54.000 1994-12-15 2024-10-11 02:31:54 +9116 9116 9117 911.6 1823.2 9116 1994-12-17 2024-10-11 02:31:56.000 1994-12-17 2024-10-11 02:31:56 +9117 9117 9118 911.7 1823.4 9117 1994-12-18 2024-10-11 02:31:57.000 1994-12-18 2024-10-11 02:31:57 +9118 9118 9119 911.8 1823.6000000000001 9118 1994-12-19 2024-10-11 02:31:58.000 1994-12-19 2024-10-11 02:31:58 +9119 9119 9120 911.9 1823.8000000000002 9119 1994-12-20 2024-10-11 02:31:59.000 1994-12-20 2024-10-11 02:31:59 +9121 9121 9122 912.1 1824.2 9121 1994-12-22 2024-10-11 02:32:01.000 1994-12-22 2024-10-11 02:32:01 +9122 9122 9123 912.2 1824.4 9122 1994-12-23 2024-10-11 02:32:02.000 1994-12-23 2024-10-11 02:32:02 +9123 9123 9124 912.3 1824.6000000000001 9123 1994-12-24 2024-10-11 02:32:03.000 1994-12-24 2024-10-11 02:32:03 +9124 9124 9125 912.4 1824.8000000000002 9124 1994-12-25 2024-10-11 02:32:04.000 1994-12-25 2024-10-11 02:32:04 +9126 9126 9127 912.6 1825.2 9126 1994-12-27 2024-10-11 02:32:06.000 1994-12-27 2024-10-11 02:32:06 +9127 9127 9128 912.7 1825.4 9127 1994-12-28 2024-10-11 02:32:07.000 1994-12-28 2024-10-11 02:32:07 +9128 9128 9129 912.8 1825.6000000000001 9128 1994-12-29 2024-10-11 02:32:08.000 1994-12-29 2024-10-11 02:32:08 +9129 9129 9130 912.9 1825.8000000000002 9129 1994-12-30 2024-10-11 02:32:09.000 1994-12-30 2024-10-11 02:32:09 +9131 9131 9132 913.1 1826.2 9131 1995-01-01 2024-10-11 02:32:11.000 1995-01-01 2024-10-11 02:32:11 +9132 9132 9133 913.2 1826.4 9132 1995-01-02 2024-10-11 02:32:12.000 1995-01-02 2024-10-11 02:32:12 +9133 9133 9134 913.3 1826.6000000000001 9133 1995-01-03 2024-10-11 02:32:13.000 1995-01-03 2024-10-11 02:32:13 +9134 9134 9135 913.4 1826.8000000000002 9134 1995-01-04 2024-10-11 02:32:14.000 1995-01-04 2024-10-11 02:32:14 +9136 9136 9137 913.6 1827.2 9136 1995-01-06 2024-10-11 02:32:16.000 1995-01-06 2024-10-11 02:32:16 +9137 9137 9138 913.7 1827.4 9137 1995-01-07 2024-10-11 02:32:17.000 1995-01-07 2024-10-11 02:32:17 +9138 9138 9139 913.8 1827.6000000000001 9138 1995-01-08 2024-10-11 02:32:18.000 1995-01-08 2024-10-11 02:32:18 +9139 9139 9140 913.9 1827.8000000000002 9139 1995-01-09 2024-10-11 02:32:19.000 1995-01-09 2024-10-11 02:32:19 +9141 9141 9142 914.1 1828.2 9141 1995-01-11 2024-10-11 02:32:21.000 1995-01-11 2024-10-11 02:32:21 +9142 9142 9143 914.2 1828.4 9142 1995-01-12 2024-10-11 02:32:22.000 1995-01-12 2024-10-11 02:32:22 +9143 9143 9144 914.3 1828.6000000000001 9143 1995-01-13 2024-10-11 02:32:23.000 1995-01-13 2024-10-11 02:32:23 +9144 9144 9145 914.4 1828.8000000000002 9144 1995-01-14 2024-10-11 02:32:24.000 1995-01-14 2024-10-11 02:32:24 +9146 9146 9147 914.6 1829.2 9146 1995-01-16 2024-10-11 02:32:26.000 1995-01-16 2024-10-11 02:32:26 +9147 9147 9148 914.7 1829.4 9147 1995-01-17 2024-10-11 02:32:27.000 1995-01-17 2024-10-11 02:32:27 +9148 9148 9149 914.8 1829.6000000000001 9148 1995-01-18 2024-10-11 02:32:28.000 1995-01-18 2024-10-11 02:32:28 +9149 9149 9150 914.9 1829.8000000000002 9149 1995-01-19 2024-10-11 02:32:29.000 1995-01-19 2024-10-11 02:32:29 +9151 9151 9152 915.1 1830.2 9151 1995-01-21 2024-10-11 02:32:31.000 1995-01-21 2024-10-11 02:32:31 +9152 9152 9153 915.2 1830.4 9152 1995-01-22 2024-10-11 02:32:32.000 1995-01-22 2024-10-11 02:32:32 +9153 9153 9154 915.3 1830.6000000000001 9153 1995-01-23 2024-10-11 02:32:33.000 1995-01-23 2024-10-11 02:32:33 +9154 9154 9155 915.4 1830.8000000000002 9154 1995-01-24 2024-10-11 02:32:34.000 1995-01-24 2024-10-11 02:32:34 +9156 9156 9157 915.6 1831.2 9156 1995-01-26 2024-10-11 02:32:36.000 1995-01-26 2024-10-11 02:32:36 +9157 9157 9158 915.7 1831.4 9157 1995-01-27 2024-10-11 02:32:37.000 1995-01-27 2024-10-11 02:32:37 +9158 9158 9159 915.8 1831.6000000000001 9158 1995-01-28 2024-10-11 02:32:38.000 1995-01-28 2024-10-11 02:32:38 +9159 9159 9160 915.9 1831.8000000000002 9159 1995-01-29 2024-10-11 02:32:39.000 1995-01-29 2024-10-11 02:32:39 +9161 9161 9162 916.1 1832.2 9161 1995-01-31 2024-10-11 02:32:41.000 1995-01-31 2024-10-11 02:32:41 +9162 9162 9163 916.2 1832.4 9162 1995-02-01 2024-10-11 02:32:42.000 1995-02-01 2024-10-11 02:32:42 +9163 9163 9164 916.3 1832.6000000000001 9163 1995-02-02 2024-10-11 02:32:43.000 1995-02-02 2024-10-11 02:32:43 +9164 9164 9165 916.4 1832.8000000000002 9164 1995-02-03 2024-10-11 02:32:44.000 1995-02-03 2024-10-11 02:32:44 +9166 9166 9167 916.6 1833.2 9166 1995-02-05 2024-10-11 02:32:46.000 1995-02-05 2024-10-11 02:32:46 +9167 9167 9168 916.7 1833.4 9167 1995-02-06 2024-10-11 02:32:47.000 1995-02-06 2024-10-11 02:32:47 +9168 9168 9169 916.8 1833.6000000000001 9168 1995-02-07 2024-10-11 02:32:48.000 1995-02-07 2024-10-11 02:32:48 +9169 9169 9170 916.9 1833.8000000000002 9169 1995-02-08 2024-10-11 02:32:49.000 1995-02-08 2024-10-11 02:32:49 +9171 9171 9172 917.1 1834.2 9171 1995-02-10 2024-10-11 02:32:51.000 1995-02-10 2024-10-11 02:32:51 +9172 9172 9173 917.2 1834.4 9172 1995-02-11 2024-10-11 02:32:52.000 1995-02-11 2024-10-11 02:32:52 +9173 9173 9174 917.3 1834.6000000000001 9173 1995-02-12 2024-10-11 02:32:53.000 1995-02-12 2024-10-11 02:32:53 +9174 9174 9175 917.4 1834.8000000000002 9174 1995-02-13 2024-10-11 02:32:54.000 1995-02-13 2024-10-11 02:32:54 +9176 9176 9177 917.6 1835.2 9176 1995-02-15 2024-10-11 02:32:56.000 1995-02-15 2024-10-11 02:32:56 +9177 9177 9178 917.7 1835.4 9177 1995-02-16 2024-10-11 02:32:57.000 1995-02-16 2024-10-11 02:32:57 +9178 9178 9179 917.8 1835.6000000000001 9178 1995-02-17 2024-10-11 02:32:58.000 1995-02-17 2024-10-11 02:32:58 +9179 9179 9180 917.9 1835.8000000000002 9179 1995-02-18 2024-10-11 02:32:59.000 1995-02-18 2024-10-11 02:32:59 +9181 9181 9182 918.1 1836.2 9181 1995-02-20 2024-10-11 02:33:01.000 1995-02-20 2024-10-11 02:33:01 +9182 9182 9183 918.2 1836.4 9182 1995-02-21 2024-10-11 02:33:02.000 1995-02-21 2024-10-11 02:33:02 +9183 9183 9184 918.3 1836.6000000000001 9183 1995-02-22 2024-10-11 02:33:03.000 1995-02-22 2024-10-11 02:33:03 +9184 9184 9185 918.4 1836.8000000000002 9184 1995-02-23 2024-10-11 02:33:04.000 1995-02-23 2024-10-11 02:33:04 +9186 9186 9187 918.6 1837.2 9186 1995-02-25 2024-10-11 02:33:06.000 1995-02-25 2024-10-11 02:33:06 +9187 9187 9188 918.7 1837.4 9187 1995-02-26 2024-10-11 02:33:07.000 1995-02-26 2024-10-11 02:33:07 +9188 9188 9189 918.8 1837.6000000000001 9188 1995-02-27 2024-10-11 02:33:08.000 1995-02-27 2024-10-11 02:33:08 +9189 9189 9190 918.9 1837.8000000000002 9189 1995-02-28 2024-10-11 02:33:09.000 1995-02-28 2024-10-11 02:33:09 +9191 9191 9192 919.1 1838.2 9191 1995-03-02 2024-10-11 02:33:11.000 1995-03-02 2024-10-11 02:33:11 +9192 9192 9193 919.2 1838.4 9192 1995-03-03 2024-10-11 02:33:12.000 1995-03-03 2024-10-11 02:33:12 +9193 9193 9194 919.3 1838.6000000000001 9193 1995-03-04 2024-10-11 02:33:13.000 1995-03-04 2024-10-11 02:33:13 +9194 9194 9195 919.4 1838.8000000000002 9194 1995-03-05 2024-10-11 02:33:14.000 1995-03-05 2024-10-11 02:33:14 +9196 9196 9197 919.6 1839.2 9196 1995-03-07 2024-10-11 02:33:16.000 1995-03-07 2024-10-11 02:33:16 +9197 9197 9198 919.7 1839.4 9197 1995-03-08 2024-10-11 02:33:17.000 1995-03-08 2024-10-11 02:33:17 +9198 9198 9199 919.8 1839.6000000000001 9198 1995-03-09 2024-10-11 02:33:18.000 1995-03-09 2024-10-11 02:33:18 +9199 9199 9200 919.9 1839.8000000000002 9199 1995-03-10 2024-10-11 02:33:19.000 1995-03-10 2024-10-11 02:33:19 +9201 9201 9202 920.1 1840.2 9201 1995-03-12 2024-10-11 02:33:21.000 1995-03-12 2024-10-11 02:33:21 +9202 9202 9203 920.2 1840.4 9202 1995-03-13 2024-10-11 02:33:22.000 1995-03-13 2024-10-11 02:33:22 +9203 9203 9204 920.3 1840.6000000000001 9203 1995-03-14 2024-10-11 02:33:23.000 1995-03-14 2024-10-11 02:33:23 +9204 9204 9205 920.4 1840.8000000000002 9204 1995-03-15 2024-10-11 02:33:24.000 1995-03-15 2024-10-11 02:33:24 +9206 9206 9207 920.6 1841.2 9206 1995-03-17 2024-10-11 02:33:26.000 1995-03-17 2024-10-11 02:33:26 +9207 9207 9208 920.7 1841.4 9207 1995-03-18 2024-10-11 02:33:27.000 1995-03-18 2024-10-11 02:33:27 +9208 9208 9209 920.8 1841.6000000000001 9208 1995-03-19 2024-10-11 02:33:28.000 1995-03-19 2024-10-11 02:33:28 +9209 9209 9210 920.9 1841.8000000000002 9209 1995-03-20 2024-10-11 02:33:29.000 1995-03-20 2024-10-11 02:33:29 +9211 9211 9212 921.1 1842.2 9211 1995-03-22 2024-10-11 02:33:31.000 1995-03-22 2024-10-11 02:33:31 +9212 9212 9213 921.2 1842.4 9212 1995-03-23 2024-10-11 02:33:32.000 1995-03-23 2024-10-11 02:33:32 +9213 9213 9214 921.3 1842.6000000000001 9213 1995-03-24 2024-10-11 02:33:33.000 1995-03-24 2024-10-11 02:33:33 +9214 9214 9215 921.4 1842.8000000000002 9214 1995-03-25 2024-10-11 02:33:34.000 1995-03-25 2024-10-11 02:33:34 +9216 9216 9217 921.6 1843.2 9216 1995-03-27 2024-10-11 02:33:36.000 1995-03-27 2024-10-11 02:33:36 +9217 9217 9218 921.7 1843.4 9217 1995-03-28 2024-10-11 02:33:37.000 1995-03-28 2024-10-11 02:33:37 +9218 9218 9219 921.8 1843.6000000000001 9218 1995-03-29 2024-10-11 02:33:38.000 1995-03-29 2024-10-11 02:33:38 +9219 9219 9220 921.9 1843.8000000000002 9219 1995-03-30 2024-10-11 02:33:39.000 1995-03-30 2024-10-11 02:33:39 +9221 9221 9222 922.1 1844.2 9221 1995-04-01 2024-10-11 02:33:41.000 1995-04-01 2024-10-11 02:33:41 +9222 9222 9223 922.2 1844.4 9222 1995-04-02 2024-10-11 02:33:42.000 1995-04-02 2024-10-11 02:33:42 +9223 9223 9224 922.3 1844.6000000000001 9223 1995-04-03 2024-10-11 02:33:43.000 1995-04-03 2024-10-11 02:33:43 +9224 9224 9225 922.4 1844.8000000000002 9224 1995-04-04 2024-10-11 02:33:44.000 1995-04-04 2024-10-11 02:33:44 +9226 9226 9227 922.6 1845.2 9226 1995-04-06 2024-10-11 02:33:46.000 1995-04-06 2024-10-11 02:33:46 +9227 9227 9228 922.7 1845.4 9227 1995-04-07 2024-10-11 02:33:47.000 1995-04-07 2024-10-11 02:33:47 +9228 9228 9229 922.8 1845.6000000000001 9228 1995-04-08 2024-10-11 02:33:48.000 1995-04-08 2024-10-11 02:33:48 +9229 9229 9230 922.9 1845.8000000000002 9229 1995-04-09 2024-10-11 02:33:49.000 1995-04-09 2024-10-11 02:33:49 +9231 9231 9232 923.1 1846.2 9231 1995-04-11 2024-10-11 02:33:51.000 1995-04-11 2024-10-11 02:33:51 +9232 9232 9233 923.2 1846.4 9232 1995-04-12 2024-10-11 02:33:52.000 1995-04-12 2024-10-11 02:33:52 +9233 9233 9234 923.3 1846.6000000000001 9233 1995-04-13 2024-10-11 02:33:53.000 1995-04-13 2024-10-11 02:33:53 +9234 9234 9235 923.4 1846.8000000000002 9234 1995-04-14 2024-10-11 02:33:54.000 1995-04-14 2024-10-11 02:33:54 +9236 9236 9237 923.6 1847.2 9236 1995-04-16 2024-10-11 02:33:56.000 1995-04-16 2024-10-11 02:33:56 +9237 9237 9238 923.7 1847.4 9237 1995-04-17 2024-10-11 02:33:57.000 1995-04-17 2024-10-11 02:33:57 +9238 9238 9239 923.8 1847.6000000000001 9238 1995-04-18 2024-10-11 02:33:58.000 1995-04-18 2024-10-11 02:33:58 +9239 9239 9240 923.9 1847.8000000000002 9239 1995-04-19 2024-10-11 02:33:59.000 1995-04-19 2024-10-11 02:33:59 +9241 9241 9242 924.1 1848.2 9241 1995-04-21 2024-10-11 02:34:01.000 1995-04-21 2024-10-11 02:34:01 +9242 9242 9243 924.2 1848.4 9242 1995-04-22 2024-10-11 02:34:02.000 1995-04-22 2024-10-11 02:34:02 +9243 9243 9244 924.3 1848.6000000000001 9243 1995-04-23 2024-10-11 02:34:03.000 1995-04-23 2024-10-11 02:34:03 +9244 9244 9245 924.4 1848.8000000000002 9244 1995-04-24 2024-10-11 02:34:04.000 1995-04-24 2024-10-11 02:34:04 +9246 9246 9247 924.6 1849.2 9246 1995-04-26 2024-10-11 02:34:06.000 1995-04-26 2024-10-11 02:34:06 +9247 9247 9248 924.7 1849.4 9247 1995-04-27 2024-10-11 02:34:07.000 1995-04-27 2024-10-11 02:34:07 +9248 9248 9249 924.8 1849.6000000000001 9248 1995-04-28 2024-10-11 02:34:08.000 1995-04-28 2024-10-11 02:34:08 +9249 9249 9250 924.9 1849.8000000000002 9249 1995-04-29 2024-10-11 02:34:09.000 1995-04-29 2024-10-11 02:34:09 +9251 9251 9252 925.1 1850.2 9251 1995-05-01 2024-10-11 02:34:11.000 1995-05-01 2024-10-11 02:34:11 +9252 9252 9253 925.2 1850.4 9252 1995-05-02 2024-10-11 02:34:12.000 1995-05-02 2024-10-11 02:34:12 +9253 9253 9254 925.3 1850.6000000000001 9253 1995-05-03 2024-10-11 02:34:13.000 1995-05-03 2024-10-11 02:34:13 +9254 9254 9255 925.4 1850.8000000000002 9254 1995-05-04 2024-10-11 02:34:14.000 1995-05-04 2024-10-11 02:34:14 +9256 9256 9257 925.6 1851.2 9256 1995-05-06 2024-10-11 02:34:16.000 1995-05-06 2024-10-11 02:34:16 +9257 9257 9258 925.7 1851.4 9257 1995-05-07 2024-10-11 02:34:17.000 1995-05-07 2024-10-11 02:34:17 +9258 9258 9259 925.8 1851.6000000000001 9258 1995-05-08 2024-10-11 02:34:18.000 1995-05-08 2024-10-11 02:34:18 +9259 9259 9260 925.9 1851.8000000000002 9259 1995-05-09 2024-10-11 02:34:19.000 1995-05-09 2024-10-11 02:34:19 +9261 9261 9262 926.1 1852.2 9261 1995-05-11 2024-10-11 02:34:21.000 1995-05-11 2024-10-11 02:34:21 +9262 9262 9263 926.2 1852.4 9262 1995-05-12 2024-10-11 02:34:22.000 1995-05-12 2024-10-11 02:34:22 +9263 9263 9264 926.3 1852.6000000000001 9263 1995-05-13 2024-10-11 02:34:23.000 1995-05-13 2024-10-11 02:34:23 +9264 9264 9265 926.4 1852.8000000000002 9264 1995-05-14 2024-10-11 02:34:24.000 1995-05-14 2024-10-11 02:34:24 +9266 9266 9267 926.6 1853.2 9266 1995-05-16 2024-10-11 02:34:26.000 1995-05-16 2024-10-11 02:34:26 +9267 9267 9268 926.7 1853.4 9267 1995-05-17 2024-10-11 02:34:27.000 1995-05-17 2024-10-11 02:34:27 +9268 9268 9269 926.8 1853.6000000000001 9268 1995-05-18 2024-10-11 02:34:28.000 1995-05-18 2024-10-11 02:34:28 +9269 9269 9270 926.9 1853.8000000000002 9269 1995-05-19 2024-10-11 02:34:29.000 1995-05-19 2024-10-11 02:34:29 +9271 9271 9272 927.1 1854.2 9271 1995-05-21 2024-10-11 02:34:31.000 1995-05-21 2024-10-11 02:34:31 +9272 9272 9273 927.2 1854.4 9272 1995-05-22 2024-10-11 02:34:32.000 1995-05-22 2024-10-11 02:34:32 +9273 9273 9274 927.3 1854.6000000000001 9273 1995-05-23 2024-10-11 02:34:33.000 1995-05-23 2024-10-11 02:34:33 +9274 9274 9275 927.4 1854.8000000000002 9274 1995-05-24 2024-10-11 02:34:34.000 1995-05-24 2024-10-11 02:34:34 +9276 9276 9277 927.6 1855.2 9276 1995-05-26 2024-10-11 02:34:36.000 1995-05-26 2024-10-11 02:34:36 +9277 9277 9278 927.7 1855.4 9277 1995-05-27 2024-10-11 02:34:37.000 1995-05-27 2024-10-11 02:34:37 +9278 9278 9279 927.8 1855.6000000000001 9278 1995-05-28 2024-10-11 02:34:38.000 1995-05-28 2024-10-11 02:34:38 +9279 9279 9280 927.9 1855.8000000000002 9279 1995-05-29 2024-10-11 02:34:39.000 1995-05-29 2024-10-11 02:34:39 +9281 9281 9282 928.1 1856.2 9281 1995-05-31 2024-10-11 02:34:41.000 1995-05-31 2024-10-11 02:34:41 +9282 9282 9283 928.2 1856.4 9282 1995-06-01 2024-10-11 02:34:42.000 1995-06-01 2024-10-11 02:34:42 +9283 9283 9284 928.3 1856.6000000000001 9283 1995-06-02 2024-10-11 02:34:43.000 1995-06-02 2024-10-11 02:34:43 +9284 9284 9285 928.4 1856.8000000000002 9284 1995-06-03 2024-10-11 02:34:44.000 1995-06-03 2024-10-11 02:34:44 +9286 9286 9287 928.6 1857.2 9286 1995-06-05 2024-10-11 02:34:46.000 1995-06-05 2024-10-11 02:34:46 +9287 9287 9288 928.7 1857.4 9287 1995-06-06 2024-10-11 02:34:47.000 1995-06-06 2024-10-11 02:34:47 +9288 9288 9289 928.8 1857.6000000000001 9288 1995-06-07 2024-10-11 02:34:48.000 1995-06-07 2024-10-11 02:34:48 +9289 9289 9290 928.9 1857.8000000000002 9289 1995-06-08 2024-10-11 02:34:49.000 1995-06-08 2024-10-11 02:34:49 +9291 9291 9292 929.1 1858.2 9291 1995-06-10 2024-10-11 02:34:51.000 1995-06-10 2024-10-11 02:34:51 +9292 9292 9293 929.2 1858.4 9292 1995-06-11 2024-10-11 02:34:52.000 1995-06-11 2024-10-11 02:34:52 +9293 9293 9294 929.3 1858.6000000000001 9293 1995-06-12 2024-10-11 02:34:53.000 1995-06-12 2024-10-11 02:34:53 +9294 9294 9295 929.4 1858.8000000000002 9294 1995-06-13 2024-10-11 02:34:54.000 1995-06-13 2024-10-11 02:34:54 +9296 9296 9297 929.6 1859.2 9296 1995-06-15 2024-10-11 02:34:56.000 1995-06-15 2024-10-11 02:34:56 +9297 9297 9298 929.7 1859.4 9297 1995-06-16 2024-10-11 02:34:57.000 1995-06-16 2024-10-11 02:34:57 +9298 9298 9299 929.8 1859.6000000000001 9298 1995-06-17 2024-10-11 02:34:58.000 1995-06-17 2024-10-11 02:34:58 +9299 9299 9300 929.9 1859.8000000000002 9299 1995-06-18 2024-10-11 02:34:59.000 1995-06-18 2024-10-11 02:34:59 +9301 9301 9302 930.1 1860.2 9301 1995-06-20 2024-10-11 02:35:01.000 1995-06-20 2024-10-11 02:35:01 +9302 9302 9303 930.2 1860.4 9302 1995-06-21 2024-10-11 02:35:02.000 1995-06-21 2024-10-11 02:35:02 +9303 9303 9304 930.3 1860.6000000000001 9303 1995-06-22 2024-10-11 02:35:03.000 1995-06-22 2024-10-11 02:35:03 +9304 9304 9305 930.4 1860.8000000000002 9304 1995-06-23 2024-10-11 02:35:04.000 1995-06-23 2024-10-11 02:35:04 +9306 9306 9307 930.6 1861.2 9306 1995-06-25 2024-10-11 02:35:06.000 1995-06-25 2024-10-11 02:35:06 +9307 9307 9308 930.7 1861.4 9307 1995-06-26 2024-10-11 02:35:07.000 1995-06-26 2024-10-11 02:35:07 +9308 9308 9309 930.8 1861.6000000000001 9308 1995-06-27 2024-10-11 02:35:08.000 1995-06-27 2024-10-11 02:35:08 +9309 9309 9310 930.9 1861.8000000000002 9309 1995-06-28 2024-10-11 02:35:09.000 1995-06-28 2024-10-11 02:35:09 +9311 9311 9312 931.1 1862.2 9311 1995-06-30 2024-10-11 02:35:11.000 1995-06-30 2024-10-11 02:35:11 +9312 9312 9313 931.2 1862.4 9312 1995-07-01 2024-10-11 02:35:12.000 1995-07-01 2024-10-11 02:35:12 +9313 9313 9314 931.3 1862.6000000000001 9313 1995-07-02 2024-10-11 02:35:13.000 1995-07-02 2024-10-11 02:35:13 +9314 9314 9315 931.4 1862.8000000000002 9314 1995-07-03 2024-10-11 02:35:14.000 1995-07-03 2024-10-11 02:35:14 +9316 9316 9317 931.6 1863.2 9316 1995-07-05 2024-10-11 02:35:16.000 1995-07-05 2024-10-11 02:35:16 +9317 9317 9318 931.7 1863.4 9317 1995-07-06 2024-10-11 02:35:17.000 1995-07-06 2024-10-11 02:35:17 +9318 9318 9319 931.8 1863.6000000000001 9318 1995-07-07 2024-10-11 02:35:18.000 1995-07-07 2024-10-11 02:35:18 +9319 9319 9320 931.9 1863.8000000000002 9319 1995-07-08 2024-10-11 02:35:19.000 1995-07-08 2024-10-11 02:35:19 +9321 9321 9322 932.1 1864.2 9321 1995-07-10 2024-10-11 02:35:21.000 1995-07-10 2024-10-11 02:35:21 +9322 9322 9323 932.2 1864.4 9322 1995-07-11 2024-10-11 02:35:22.000 1995-07-11 2024-10-11 02:35:22 +9323 9323 9324 932.3 1864.6000000000001 9323 1995-07-12 2024-10-11 02:35:23.000 1995-07-12 2024-10-11 02:35:23 +9324 9324 9325 932.4 1864.8000000000002 9324 1995-07-13 2024-10-11 02:35:24.000 1995-07-13 2024-10-11 02:35:24 +9326 9326 9327 932.6 1865.2 9326 1995-07-15 2024-10-11 02:35:26.000 1995-07-15 2024-10-11 02:35:26 +9327 9327 9328 932.7 1865.4 9327 1995-07-16 2024-10-11 02:35:27.000 1995-07-16 2024-10-11 02:35:27 +9328 9328 9329 932.8 1865.6000000000001 9328 1995-07-17 2024-10-11 02:35:28.000 1995-07-17 2024-10-11 02:35:28 +9329 9329 9330 932.9 1865.8000000000002 9329 1995-07-18 2024-10-11 02:35:29.000 1995-07-18 2024-10-11 02:35:29 +9331 9331 9332 933.1 1866.2 9331 1995-07-20 2024-10-11 02:35:31.000 1995-07-20 2024-10-11 02:35:31 +9332 9332 9333 933.2 1866.4 9332 1995-07-21 2024-10-11 02:35:32.000 1995-07-21 2024-10-11 02:35:32 +9333 9333 9334 933.3 1866.6000000000001 9333 1995-07-22 2024-10-11 02:35:33.000 1995-07-22 2024-10-11 02:35:33 +9334 9334 9335 933.4 1866.8000000000002 9334 1995-07-23 2024-10-11 02:35:34.000 1995-07-23 2024-10-11 02:35:34 +9336 9336 9337 933.6 1867.2 9336 1995-07-25 2024-10-11 02:35:36.000 1995-07-25 2024-10-11 02:35:36 +9337 9337 9338 933.7 1867.4 9337 1995-07-26 2024-10-11 02:35:37.000 1995-07-26 2024-10-11 02:35:37 +9338 9338 9339 933.8 1867.6000000000001 9338 1995-07-27 2024-10-11 02:35:38.000 1995-07-27 2024-10-11 02:35:38 +9339 9339 9340 933.9 1867.8000000000002 9339 1995-07-28 2024-10-11 02:35:39.000 1995-07-28 2024-10-11 02:35:39 +9341 9341 9342 934.1 1868.2 9341 1995-07-30 2024-10-11 02:35:41.000 1995-07-30 2024-10-11 02:35:41 +9342 9342 9343 934.2 1868.4 9342 1995-07-31 2024-10-11 02:35:42.000 1995-07-31 2024-10-11 02:35:42 +9343 9343 9344 934.3 1868.6000000000001 9343 1995-08-01 2024-10-11 02:35:43.000 1995-08-01 2024-10-11 02:35:43 +9344 9344 9345 934.4 1868.8000000000002 9344 1995-08-02 2024-10-11 02:35:44.000 1995-08-02 2024-10-11 02:35:44 +9346 9346 9347 934.6 1869.2 9346 1995-08-04 2024-10-11 02:35:46.000 1995-08-04 2024-10-11 02:35:46 +9347 9347 9348 934.7 1869.4 9347 1995-08-05 2024-10-11 02:35:47.000 1995-08-05 2024-10-11 02:35:47 +9348 9348 9349 934.8 1869.6000000000001 9348 1995-08-06 2024-10-11 02:35:48.000 1995-08-06 2024-10-11 02:35:48 +9349 9349 9350 934.9 1869.8000000000002 9349 1995-08-07 2024-10-11 02:35:49.000 1995-08-07 2024-10-11 02:35:49 +9351 9351 9352 935.1 1870.2 9351 1995-08-09 2024-10-11 02:35:51.000 1995-08-09 2024-10-11 02:35:51 +9352 9352 9353 935.2 1870.4 9352 1995-08-10 2024-10-11 02:35:52.000 1995-08-10 2024-10-11 02:35:52 +9353 9353 9354 935.3 1870.6000000000001 9353 1995-08-11 2024-10-11 02:35:53.000 1995-08-11 2024-10-11 02:35:53 +9354 9354 9355 935.4 1870.8000000000002 9354 1995-08-12 2024-10-11 02:35:54.000 1995-08-12 2024-10-11 02:35:54 +9356 9356 9357 935.6 1871.2 9356 1995-08-14 2024-10-11 02:35:56.000 1995-08-14 2024-10-11 02:35:56 +9357 9357 9358 935.7 1871.4 9357 1995-08-15 2024-10-11 02:35:57.000 1995-08-15 2024-10-11 02:35:57 +9358 9358 9359 935.8 1871.6000000000001 9358 1995-08-16 2024-10-11 02:35:58.000 1995-08-16 2024-10-11 02:35:58 +9359 9359 9360 935.9 1871.8000000000002 9359 1995-08-17 2024-10-11 02:35:59.000 1995-08-17 2024-10-11 02:35:59 +9361 9361 9362 936.1 1872.2 9361 1995-08-19 2024-10-11 02:36:01.000 1995-08-19 2024-10-11 02:36:01 +9362 9362 9363 936.2 1872.4 9362 1995-08-20 2024-10-11 02:36:02.000 1995-08-20 2024-10-11 02:36:02 +9363 9363 9364 936.3 1872.6000000000001 9363 1995-08-21 2024-10-11 02:36:03.000 1995-08-21 2024-10-11 02:36:03 +9364 9364 9365 936.4 1872.8000000000002 9364 1995-08-22 2024-10-11 02:36:04.000 1995-08-22 2024-10-11 02:36:04 +9366 9366 9367 936.6 1873.2 9366 1995-08-24 2024-10-11 02:36:06.000 1995-08-24 2024-10-11 02:36:06 +9367 9367 9368 936.7 1873.4 9367 1995-08-25 2024-10-11 02:36:07.000 1995-08-25 2024-10-11 02:36:07 +9368 9368 9369 936.8 1873.6000000000001 9368 1995-08-26 2024-10-11 02:36:08.000 1995-08-26 2024-10-11 02:36:08 +9369 9369 9370 936.9 1873.8000000000002 9369 1995-08-27 2024-10-11 02:36:09.000 1995-08-27 2024-10-11 02:36:09 +9371 9371 9372 937.1 1874.2 9371 1995-08-29 2024-10-11 02:36:11.000 1995-08-29 2024-10-11 02:36:11 +9372 9372 9373 937.2 1874.4 9372 1995-08-30 2024-10-11 02:36:12.000 1995-08-30 2024-10-11 02:36:12 +9373 9373 9374 937.3 1874.6000000000001 9373 1995-08-31 2024-10-11 02:36:13.000 1995-08-31 2024-10-11 02:36:13 +9374 9374 9375 937.4 1874.8000000000002 9374 1995-09-01 2024-10-11 02:36:14.000 1995-09-01 2024-10-11 02:36:14 +9376 9376 9377 937.6 1875.2 9376 1995-09-03 2024-10-11 02:36:16.000 1995-09-03 2024-10-11 02:36:16 +9377 9377 9378 937.7 1875.4 9377 1995-09-04 2024-10-11 02:36:17.000 1995-09-04 2024-10-11 02:36:17 +9378 9378 9379 937.8 1875.6000000000001 9378 1995-09-05 2024-10-11 02:36:18.000 1995-09-05 2024-10-11 02:36:18 +9379 9379 9380 937.9 1875.8000000000002 9379 1995-09-06 2024-10-11 02:36:19.000 1995-09-06 2024-10-11 02:36:19 +9381 9381 9382 938.1 1876.2 9381 1995-09-08 2024-10-11 02:36:21.000 1995-09-08 2024-10-11 02:36:21 +9382 9382 9383 938.2 1876.4 9382 1995-09-09 2024-10-11 02:36:22.000 1995-09-09 2024-10-11 02:36:22 +9383 9383 9384 938.3 1876.6000000000001 9383 1995-09-10 2024-10-11 02:36:23.000 1995-09-10 2024-10-11 02:36:23 +9384 9384 9385 938.4 1876.8000000000002 9384 1995-09-11 2024-10-11 02:36:24.000 1995-09-11 2024-10-11 02:36:24 +9386 9386 9387 938.6 1877.2 9386 1995-09-13 2024-10-11 02:36:26.000 1995-09-13 2024-10-11 02:36:26 +9387 9387 9388 938.7 1877.4 9387 1995-09-14 2024-10-11 02:36:27.000 1995-09-14 2024-10-11 02:36:27 +9388 9388 9389 938.8 1877.6000000000001 9388 1995-09-15 2024-10-11 02:36:28.000 1995-09-15 2024-10-11 02:36:28 +9389 9389 9390 938.9 1877.8000000000002 9389 1995-09-16 2024-10-11 02:36:29.000 1995-09-16 2024-10-11 02:36:29 +9391 9391 9392 939.1 1878.2 9391 1995-09-18 2024-10-11 02:36:31.000 1995-09-18 2024-10-11 02:36:31 +9392 9392 9393 939.2 1878.4 9392 1995-09-19 2024-10-11 02:36:32.000 1995-09-19 2024-10-11 02:36:32 +9393 9393 9394 939.3 1878.6000000000001 9393 1995-09-20 2024-10-11 02:36:33.000 1995-09-20 2024-10-11 02:36:33 +9394 9394 9395 939.4 1878.8000000000002 9394 1995-09-21 2024-10-11 02:36:34.000 1995-09-21 2024-10-11 02:36:34 +9396 9396 9397 939.6 1879.2 9396 1995-09-23 2024-10-11 02:36:36.000 1995-09-23 2024-10-11 02:36:36 +9397 9397 9398 939.7 1879.4 9397 1995-09-24 2024-10-11 02:36:37.000 1995-09-24 2024-10-11 02:36:37 +9398 9398 9399 939.8 1879.6000000000001 9398 1995-09-25 2024-10-11 02:36:38.000 1995-09-25 2024-10-11 02:36:38 +9399 9399 9400 939.9 1879.8000000000002 9399 1995-09-26 2024-10-11 02:36:39.000 1995-09-26 2024-10-11 02:36:39 +9401 9401 9402 940.1 1880.2 9401 1995-09-28 2024-10-11 02:36:41.000 1995-09-28 2024-10-11 02:36:41 +9402 9402 9403 940.2 1880.4 9402 1995-09-29 2024-10-11 02:36:42.000 1995-09-29 2024-10-11 02:36:42 +9403 9403 9404 940.3 1880.6000000000001 9403 1995-09-30 2024-10-11 02:36:43.000 1995-09-30 2024-10-11 02:36:43 +9404 9404 9405 940.4 1880.8000000000002 9404 1995-10-01 2024-10-11 02:36:44.000 1995-10-01 2024-10-11 02:36:44 +9406 9406 9407 940.6 1881.2 9406 1995-10-03 2024-10-11 02:36:46.000 1995-10-03 2024-10-11 02:36:46 +9407 9407 9408 940.7 1881.4 9407 1995-10-04 2024-10-11 02:36:47.000 1995-10-04 2024-10-11 02:36:47 +9408 9408 9409 940.8 1881.6000000000001 9408 1995-10-05 2024-10-11 02:36:48.000 1995-10-05 2024-10-11 02:36:48 +9409 9409 9410 940.9 1881.8000000000002 9409 1995-10-06 2024-10-11 02:36:49.000 1995-10-06 2024-10-11 02:36:49 +9411 9411 9412 941.1 1882.2 9411 1995-10-08 2024-10-11 02:36:51.000 1995-10-08 2024-10-11 02:36:51 +9412 9412 9413 941.2 1882.4 9412 1995-10-09 2024-10-11 02:36:52.000 1995-10-09 2024-10-11 02:36:52 +9413 9413 9414 941.3 1882.6000000000001 9413 1995-10-10 2024-10-11 02:36:53.000 1995-10-10 2024-10-11 02:36:53 +9414 9414 9415 941.4 1882.8000000000002 9414 1995-10-11 2024-10-11 02:36:54.000 1995-10-11 2024-10-11 02:36:54 +9416 9416 9417 941.6 1883.2 9416 1995-10-13 2024-10-11 02:36:56.000 1995-10-13 2024-10-11 02:36:56 +9417 9417 9418 941.7 1883.4 9417 1995-10-14 2024-10-11 02:36:57.000 1995-10-14 2024-10-11 02:36:57 +9418 9418 9419 941.8 1883.6000000000001 9418 1995-10-15 2024-10-11 02:36:58.000 1995-10-15 2024-10-11 02:36:58 +9419 9419 9420 941.9 1883.8000000000002 9419 1995-10-16 2024-10-11 02:36:59.000 1995-10-16 2024-10-11 02:36:59 +9421 9421 9422 942.1 1884.2 9421 1995-10-18 2024-10-11 02:37:01.000 1995-10-18 2024-10-11 02:37:01 +9422 9422 9423 942.2 1884.4 9422 1995-10-19 2024-10-11 02:37:02.000 1995-10-19 2024-10-11 02:37:02 +9423 9423 9424 942.3 1884.6000000000001 9423 1995-10-20 2024-10-11 02:37:03.000 1995-10-20 2024-10-11 02:37:03 +9424 9424 9425 942.4 1884.8000000000002 9424 1995-10-21 2024-10-11 02:37:04.000 1995-10-21 2024-10-11 02:37:04 +9426 9426 9427 942.6 1885.2 9426 1995-10-23 2024-10-11 02:37:06.000 1995-10-23 2024-10-11 02:37:06 +9427 9427 9428 942.7 1885.4 9427 1995-10-24 2024-10-11 02:37:07.000 1995-10-24 2024-10-11 02:37:07 +9428 9428 9429 942.8 1885.6000000000001 9428 1995-10-25 2024-10-11 02:37:08.000 1995-10-25 2024-10-11 02:37:08 +9429 9429 9430 942.9 1885.8000000000002 9429 1995-10-26 2024-10-11 02:37:09.000 1995-10-26 2024-10-11 02:37:09 +9431 9431 9432 943.1 1886.2 9431 1995-10-28 2024-10-11 02:37:11.000 1995-10-28 2024-10-11 02:37:11 +9432 9432 9433 943.2 1886.4 9432 1995-10-29 2024-10-11 02:37:12.000 1995-10-29 2024-10-11 02:37:12 +9433 9433 9434 943.3 1886.6000000000001 9433 1995-10-30 2024-10-11 02:37:13.000 1995-10-30 2024-10-11 02:37:13 +9434 9434 9435 943.4 1886.8000000000002 9434 1995-10-31 2024-10-11 02:37:14.000 1995-10-31 2024-10-11 02:37:14 +9436 9436 9437 943.6 1887.2 9436 1995-11-02 2024-10-11 02:37:16.000 1995-11-02 2024-10-11 02:37:16 +9437 9437 9438 943.7 1887.4 9437 1995-11-03 2024-10-11 02:37:17.000 1995-11-03 2024-10-11 02:37:17 +9438 9438 9439 943.8 1887.6000000000001 9438 1995-11-04 2024-10-11 02:37:18.000 1995-11-04 2024-10-11 02:37:18 +9439 9439 9440 943.9 1887.8000000000002 9439 1995-11-05 2024-10-11 02:37:19.000 1995-11-05 2024-10-11 02:37:19 +9441 9441 9442 944.1 1888.2 9441 1995-11-07 2024-10-11 02:37:21.000 1995-11-07 2024-10-11 02:37:21 +9442 9442 9443 944.2 1888.4 9442 1995-11-08 2024-10-11 02:37:22.000 1995-11-08 2024-10-11 02:37:22 +9443 9443 9444 944.3 1888.6000000000001 9443 1995-11-09 2024-10-11 02:37:23.000 1995-11-09 2024-10-11 02:37:23 +9444 9444 9445 944.4 1888.8000000000002 9444 1995-11-10 2024-10-11 02:37:24.000 1995-11-10 2024-10-11 02:37:24 +9446 9446 9447 944.6 1889.2 9446 1995-11-12 2024-10-11 02:37:26.000 1995-11-12 2024-10-11 02:37:26 +9447 9447 9448 944.7 1889.4 9447 1995-11-13 2024-10-11 02:37:27.000 1995-11-13 2024-10-11 02:37:27 +9448 9448 9449 944.8 1889.6000000000001 9448 1995-11-14 2024-10-11 02:37:28.000 1995-11-14 2024-10-11 02:37:28 +9449 9449 9450 944.9 1889.8000000000002 9449 1995-11-15 2024-10-11 02:37:29.000 1995-11-15 2024-10-11 02:37:29 +9451 9451 9452 945.1 1890.2 9451 1995-11-17 2024-10-11 02:37:31.000 1995-11-17 2024-10-11 02:37:31 +9452 9452 9453 945.2 1890.4 9452 1995-11-18 2024-10-11 02:37:32.000 1995-11-18 2024-10-11 02:37:32 +9453 9453 9454 945.3 1890.6000000000001 9453 1995-11-19 2024-10-11 02:37:33.000 1995-11-19 2024-10-11 02:37:33 +9454 9454 9455 945.4 1890.8000000000002 9454 1995-11-20 2024-10-11 02:37:34.000 1995-11-20 2024-10-11 02:37:34 +9456 9456 9457 945.6 1891.2 9456 1995-11-22 2024-10-11 02:37:36.000 1995-11-22 2024-10-11 02:37:36 +9457 9457 9458 945.7 1891.4 9457 1995-11-23 2024-10-11 02:37:37.000 1995-11-23 2024-10-11 02:37:37 +9458 9458 9459 945.8 1891.6000000000001 9458 1995-11-24 2024-10-11 02:37:38.000 1995-11-24 2024-10-11 02:37:38 +9459 9459 9460 945.9 1891.8000000000002 9459 1995-11-25 2024-10-11 02:37:39.000 1995-11-25 2024-10-11 02:37:39 +9461 9461 9462 946.1 1892.2 9461 1995-11-27 2024-10-11 02:37:41.000 1995-11-27 2024-10-11 02:37:41 +9462 9462 9463 946.2 1892.4 9462 1995-11-28 2024-10-11 02:37:42.000 1995-11-28 2024-10-11 02:37:42 +9463 9463 9464 946.3 1892.6000000000001 9463 1995-11-29 2024-10-11 02:37:43.000 1995-11-29 2024-10-11 02:37:43 +9464 9464 9465 946.4 1892.8000000000002 9464 1995-11-30 2024-10-11 02:37:44.000 1995-11-30 2024-10-11 02:37:44 +9466 9466 9467 946.6 1893.2 9466 1995-12-02 2024-10-11 02:37:46.000 1995-12-02 2024-10-11 02:37:46 +9467 9467 9468 946.7 1893.4 9467 1995-12-03 2024-10-11 02:37:47.000 1995-12-03 2024-10-11 02:37:47 +9468 9468 9469 946.8 1893.6000000000001 9468 1995-12-04 2024-10-11 02:37:48.000 1995-12-04 2024-10-11 02:37:48 +9469 9469 9470 946.9 1893.8000000000002 9469 1995-12-05 2024-10-11 02:37:49.000 1995-12-05 2024-10-11 02:37:49 +9471 9471 9472 947.1 1894.2 9471 1995-12-07 2024-10-11 02:37:51.000 1995-12-07 2024-10-11 02:37:51 +9472 9472 9473 947.2 1894.4 9472 1995-12-08 2024-10-11 02:37:52.000 1995-12-08 2024-10-11 02:37:52 +9473 9473 9474 947.3 1894.6000000000001 9473 1995-12-09 2024-10-11 02:37:53.000 1995-12-09 2024-10-11 02:37:53 +9474 9474 9475 947.4 1894.8000000000002 9474 1995-12-10 2024-10-11 02:37:54.000 1995-12-10 2024-10-11 02:37:54 +9476 9476 9477 947.6 1895.2 9476 1995-12-12 2024-10-11 02:37:56.000 1995-12-12 2024-10-11 02:37:56 +9477 9477 9478 947.7 1895.4 9477 1995-12-13 2024-10-11 02:37:57.000 1995-12-13 2024-10-11 02:37:57 +9478 9478 9479 947.8 1895.6000000000001 9478 1995-12-14 2024-10-11 02:37:58.000 1995-12-14 2024-10-11 02:37:58 +9479 9479 9480 947.9 1895.8000000000002 9479 1995-12-15 2024-10-11 02:37:59.000 1995-12-15 2024-10-11 02:37:59 +9481 9481 9482 948.1 1896.2 9481 1995-12-17 2024-10-11 02:38:01.000 1995-12-17 2024-10-11 02:38:01 +9482 9482 9483 948.2 1896.4 9482 1995-12-18 2024-10-11 02:38:02.000 1995-12-18 2024-10-11 02:38:02 +9483 9483 9484 948.3 1896.6000000000001 9483 1995-12-19 2024-10-11 02:38:03.000 1995-12-19 2024-10-11 02:38:03 +9484 9484 9485 948.4 1896.8000000000002 9484 1995-12-20 2024-10-11 02:38:04.000 1995-12-20 2024-10-11 02:38:04 +9486 9486 9487 948.6 1897.2 9486 1995-12-22 2024-10-11 02:38:06.000 1995-12-22 2024-10-11 02:38:06 +9487 9487 9488 948.7 1897.4 9487 1995-12-23 2024-10-11 02:38:07.000 1995-12-23 2024-10-11 02:38:07 +9488 9488 9489 948.8 1897.6000000000001 9488 1995-12-24 2024-10-11 02:38:08.000 1995-12-24 2024-10-11 02:38:08 +9489 9489 9490 948.9 1897.8000000000002 9489 1995-12-25 2024-10-11 02:38:09.000 1995-12-25 2024-10-11 02:38:09 +9491 9491 9492 949.1 1898.2 9491 1995-12-27 2024-10-11 02:38:11.000 1995-12-27 2024-10-11 02:38:11 +9492 9492 9493 949.2 1898.4 9492 1995-12-28 2024-10-11 02:38:12.000 1995-12-28 2024-10-11 02:38:12 +9493 9493 9494 949.3 1898.6000000000001 9493 1995-12-29 2024-10-11 02:38:13.000 1995-12-29 2024-10-11 02:38:13 +9494 9494 9495 949.4 1898.8000000000002 9494 1995-12-30 2024-10-11 02:38:14.000 1995-12-30 2024-10-11 02:38:14 +9496 9496 9497 949.6 1899.2 9496 1996-01-01 2024-10-11 02:38:16.000 1996-01-01 2024-10-11 02:38:16 +9497 9497 9498 949.7 1899.4 9497 1996-01-02 2024-10-11 02:38:17.000 1996-01-02 2024-10-11 02:38:17 +9498 9498 9499 949.8 1899.6000000000001 9498 1996-01-03 2024-10-11 02:38:18.000 1996-01-03 2024-10-11 02:38:18 +9499 9499 9500 949.9 1899.8000000000002 9499 1996-01-04 2024-10-11 02:38:19.000 1996-01-04 2024-10-11 02:38:19 +9501 9501 9502 950.1 1900.2 9501 1996-01-06 2024-10-11 02:38:21.000 1996-01-06 2024-10-11 02:38:21 +9502 9502 9503 950.2 1900.4 9502 1996-01-07 2024-10-11 02:38:22.000 1996-01-07 2024-10-11 02:38:22 +9503 9503 9504 950.3 1900.6000000000001 9503 1996-01-08 2024-10-11 02:38:23.000 1996-01-08 2024-10-11 02:38:23 +9504 9504 9505 950.4 1900.8000000000002 9504 1996-01-09 2024-10-11 02:38:24.000 1996-01-09 2024-10-11 02:38:24 +9506 9506 9507 950.6 1901.2 9506 1996-01-11 2024-10-11 02:38:26.000 1996-01-11 2024-10-11 02:38:26 +9507 9507 9508 950.7 1901.4 9507 1996-01-12 2024-10-11 02:38:27.000 1996-01-12 2024-10-11 02:38:27 +9508 9508 9509 950.8 1901.6000000000001 9508 1996-01-13 2024-10-11 02:38:28.000 1996-01-13 2024-10-11 02:38:28 +9509 9509 9510 950.9 1901.8000000000002 9509 1996-01-14 2024-10-11 02:38:29.000 1996-01-14 2024-10-11 02:38:29 +9511 9511 9512 951.1 1902.2 9511 1996-01-16 2024-10-11 02:38:31.000 1996-01-16 2024-10-11 02:38:31 +9512 9512 9513 951.2 1902.4 9512 1996-01-17 2024-10-11 02:38:32.000 1996-01-17 2024-10-11 02:38:32 +9513 9513 9514 951.3 1902.6000000000001 9513 1996-01-18 2024-10-11 02:38:33.000 1996-01-18 2024-10-11 02:38:33 +9514 9514 9515 951.4 1902.8000000000002 9514 1996-01-19 2024-10-11 02:38:34.000 1996-01-19 2024-10-11 02:38:34 +9516 9516 9517 951.6 1903.2 9516 1996-01-21 2024-10-11 02:38:36.000 1996-01-21 2024-10-11 02:38:36 +9517 9517 9518 951.7 1903.4 9517 1996-01-22 2024-10-11 02:38:37.000 1996-01-22 2024-10-11 02:38:37 +9518 9518 9519 951.8 1903.6000000000001 9518 1996-01-23 2024-10-11 02:38:38.000 1996-01-23 2024-10-11 02:38:38 +9519 9519 9520 951.9 1903.8000000000002 9519 1996-01-24 2024-10-11 02:38:39.000 1996-01-24 2024-10-11 02:38:39 +9521 9521 9522 952.1 1904.2 9521 1996-01-26 2024-10-11 02:38:41.000 1996-01-26 2024-10-11 02:38:41 +9522 9522 9523 952.2 1904.4 9522 1996-01-27 2024-10-11 02:38:42.000 1996-01-27 2024-10-11 02:38:42 +9523 9523 9524 952.3 1904.6000000000001 9523 1996-01-28 2024-10-11 02:38:43.000 1996-01-28 2024-10-11 02:38:43 +9524 9524 9525 952.4 1904.8000000000002 9524 1996-01-29 2024-10-11 02:38:44.000 1996-01-29 2024-10-11 02:38:44 +9526 9526 9527 952.6 1905.2 9526 1996-01-31 2024-10-11 02:38:46.000 1996-01-31 2024-10-11 02:38:46 +9527 9527 9528 952.7 1905.4 9527 1996-02-01 2024-10-11 02:38:47.000 1996-02-01 2024-10-11 02:38:47 +9528 9528 9529 952.8 1905.6000000000001 9528 1996-02-02 2024-10-11 02:38:48.000 1996-02-02 2024-10-11 02:38:48 +9529 9529 9530 952.9 1905.8000000000002 9529 1996-02-03 2024-10-11 02:38:49.000 1996-02-03 2024-10-11 02:38:49 +9531 9531 9532 953.1 1906.2 9531 1996-02-05 2024-10-11 02:38:51.000 1996-02-05 2024-10-11 02:38:51 +9532 9532 9533 953.2 1906.4 9532 1996-02-06 2024-10-11 02:38:52.000 1996-02-06 2024-10-11 02:38:52 +9533 9533 9534 953.3 1906.6000000000001 9533 1996-02-07 2024-10-11 02:38:53.000 1996-02-07 2024-10-11 02:38:53 +9534 9534 9535 953.4 1906.8000000000002 9534 1996-02-08 2024-10-11 02:38:54.000 1996-02-08 2024-10-11 02:38:54 +9536 9536 9537 953.6 1907.2 9536 1996-02-10 2024-10-11 02:38:56.000 1996-02-10 2024-10-11 02:38:56 +9537 9537 9538 953.7 1907.4 9537 1996-02-11 2024-10-11 02:38:57.000 1996-02-11 2024-10-11 02:38:57 +9538 9538 9539 953.8 1907.6000000000001 9538 1996-02-12 2024-10-11 02:38:58.000 1996-02-12 2024-10-11 02:38:58 +9539 9539 9540 953.9 1907.8000000000002 9539 1996-02-13 2024-10-11 02:38:59.000 1996-02-13 2024-10-11 02:38:59 +9541 9541 9542 954.1 1908.2 9541 1996-02-15 2024-10-11 02:39:01.000 1996-02-15 2024-10-11 02:39:01 +9542 9542 9543 954.2 1908.4 9542 1996-02-16 2024-10-11 02:39:02.000 1996-02-16 2024-10-11 02:39:02 +9543 9543 9544 954.3 1908.6000000000001 9543 1996-02-17 2024-10-11 02:39:03.000 1996-02-17 2024-10-11 02:39:03 +9544 9544 9545 954.4 1908.8000000000002 9544 1996-02-18 2024-10-11 02:39:04.000 1996-02-18 2024-10-11 02:39:04 +9546 9546 9547 954.6 1909.2 9546 1996-02-20 2024-10-11 02:39:06.000 1996-02-20 2024-10-11 02:39:06 +9547 9547 9548 954.7 1909.4 9547 1996-02-21 2024-10-11 02:39:07.000 1996-02-21 2024-10-11 02:39:07 +9548 9548 9549 954.8 1909.6000000000001 9548 1996-02-22 2024-10-11 02:39:08.000 1996-02-22 2024-10-11 02:39:08 +9549 9549 9550 954.9 1909.8000000000002 9549 1996-02-23 2024-10-11 02:39:09.000 1996-02-23 2024-10-11 02:39:09 +9551 9551 9552 955.1 1910.2 9551 1996-02-25 2024-10-11 02:39:11.000 1996-02-25 2024-10-11 02:39:11 +9552 9552 9553 955.2 1910.4 9552 1996-02-26 2024-10-11 02:39:12.000 1996-02-26 2024-10-11 02:39:12 +9553 9553 9554 955.3 1910.6000000000001 9553 1996-02-27 2024-10-11 02:39:13.000 1996-02-27 2024-10-11 02:39:13 +9554 9554 9555 955.4 1910.8000000000002 9554 1996-02-28 2024-10-11 02:39:14.000 1996-02-28 2024-10-11 02:39:14 +9556 9556 9557 955.6 1911.2 9556 1996-03-01 2024-10-11 02:39:16.000 1996-03-01 2024-10-11 02:39:16 +9557 9557 9558 955.7 1911.4 9557 1996-03-02 2024-10-11 02:39:17.000 1996-03-02 2024-10-11 02:39:17 +9558 9558 9559 955.8 1911.6000000000001 9558 1996-03-03 2024-10-11 02:39:18.000 1996-03-03 2024-10-11 02:39:18 +9559 9559 9560 955.9 1911.8000000000002 9559 1996-03-04 2024-10-11 02:39:19.000 1996-03-04 2024-10-11 02:39:19 +9561 9561 9562 956.1 1912.2 9561 1996-03-06 2024-10-11 02:39:21.000 1996-03-06 2024-10-11 02:39:21 +9562 9562 9563 956.2 1912.4 9562 1996-03-07 2024-10-11 02:39:22.000 1996-03-07 2024-10-11 02:39:22 +9563 9563 9564 956.3 1912.6000000000001 9563 1996-03-08 2024-10-11 02:39:23.000 1996-03-08 2024-10-11 02:39:23 +9564 9564 9565 956.4 1912.8000000000002 9564 1996-03-09 2024-10-11 02:39:24.000 1996-03-09 2024-10-11 02:39:24 +9566 9566 9567 956.6 1913.2 9566 1996-03-11 2024-10-11 02:39:26.000 1996-03-11 2024-10-11 02:39:26 +9567 9567 9568 956.7 1913.4 9567 1996-03-12 2024-10-11 02:39:27.000 1996-03-12 2024-10-11 02:39:27 +9568 9568 9569 956.8 1913.6000000000001 9568 1996-03-13 2024-10-11 02:39:28.000 1996-03-13 2024-10-11 02:39:28 +9569 9569 9570 956.9 1913.8000000000002 9569 1996-03-14 2024-10-11 02:39:29.000 1996-03-14 2024-10-11 02:39:29 +9571 9571 9572 957.1 1914.2 9571 1996-03-16 2024-10-11 02:39:31.000 1996-03-16 2024-10-11 02:39:31 +9572 9572 9573 957.2 1914.4 9572 1996-03-17 2024-10-11 02:39:32.000 1996-03-17 2024-10-11 02:39:32 +9573 9573 9574 957.3 1914.6000000000001 9573 1996-03-18 2024-10-11 02:39:33.000 1996-03-18 2024-10-11 02:39:33 +9574 9574 9575 957.4 1914.8000000000002 9574 1996-03-19 2024-10-11 02:39:34.000 1996-03-19 2024-10-11 02:39:34 +9576 9576 9577 957.6 1915.2 9576 1996-03-21 2024-10-11 02:39:36.000 1996-03-21 2024-10-11 02:39:36 +9577 9577 9578 957.7 1915.4 9577 1996-03-22 2024-10-11 02:39:37.000 1996-03-22 2024-10-11 02:39:37 +9578 9578 9579 957.8 1915.6000000000001 9578 1996-03-23 2024-10-11 02:39:38.000 1996-03-23 2024-10-11 02:39:38 +9579 9579 9580 957.9 1915.8000000000002 9579 1996-03-24 2024-10-11 02:39:39.000 1996-03-24 2024-10-11 02:39:39 +9581 9581 9582 958.1 1916.2 9581 1996-03-26 2024-10-11 02:39:41.000 1996-03-26 2024-10-11 02:39:41 +9582 9582 9583 958.2 1916.4 9582 1996-03-27 2024-10-11 02:39:42.000 1996-03-27 2024-10-11 02:39:42 +9583 9583 9584 958.3 1916.6000000000001 9583 1996-03-28 2024-10-11 02:39:43.000 1996-03-28 2024-10-11 02:39:43 +9584 9584 9585 958.4 1916.8000000000002 9584 1996-03-29 2024-10-11 02:39:44.000 1996-03-29 2024-10-11 02:39:44 +9586 9586 9587 958.6 1917.2 9586 1996-03-31 2024-10-11 02:39:46.000 1996-03-31 2024-10-11 02:39:46 +9587 9587 9588 958.7 1917.4 9587 1996-04-01 2024-10-11 02:39:47.000 1996-04-01 2024-10-11 02:39:47 +9588 9588 9589 958.8 1917.6000000000001 9588 1996-04-02 2024-10-11 02:39:48.000 1996-04-02 2024-10-11 02:39:48 +9589 9589 9590 958.9 1917.8000000000002 9589 1996-04-03 2024-10-11 02:39:49.000 1996-04-03 2024-10-11 02:39:49 +9591 9591 9592 959.1 1918.2 9591 1996-04-05 2024-10-11 02:39:51.000 1996-04-05 2024-10-11 02:39:51 +9592 9592 9593 959.2 1918.4 9592 1996-04-06 2024-10-11 02:39:52.000 1996-04-06 2024-10-11 02:39:52 +9593 9593 9594 959.3 1918.6000000000001 9593 1996-04-07 2024-10-11 02:39:53.000 1996-04-07 2024-10-11 02:39:53 +9594 9594 9595 959.4 1918.8000000000002 9594 1996-04-08 2024-10-11 02:39:54.000 1996-04-08 2024-10-11 02:39:54 +9596 9596 9597 959.6 1919.2 9596 1996-04-10 2024-10-11 02:39:56.000 1996-04-10 2024-10-11 02:39:56 +9597 9597 9598 959.7 1919.4 9597 1996-04-11 2024-10-11 02:39:57.000 1996-04-11 2024-10-11 02:39:57 +9598 9598 9599 959.8 1919.6000000000001 9598 1996-04-12 2024-10-11 02:39:58.000 1996-04-12 2024-10-11 02:39:58 +9599 9599 9600 959.9 1919.8000000000002 9599 1996-04-13 2024-10-11 02:39:59.000 1996-04-13 2024-10-11 02:39:59 +9601 9601 9602 960.1 1920.2 9601 1996-04-15 2024-10-11 02:40:01.000 1996-04-15 2024-10-11 02:40:01 +9602 9602 9603 960.2 1920.4 9602 1996-04-16 2024-10-11 02:40:02.000 1996-04-16 2024-10-11 02:40:02 +9603 9603 9604 960.3 1920.6000000000001 9603 1996-04-17 2024-10-11 02:40:03.000 1996-04-17 2024-10-11 02:40:03 +9604 9604 9605 960.4 1920.8000000000002 9604 1996-04-18 2024-10-11 02:40:04.000 1996-04-18 2024-10-11 02:40:04 +9606 9606 9607 960.6 1921.2 9606 1996-04-20 2024-10-11 02:40:06.000 1996-04-20 2024-10-11 02:40:06 +9607 9607 9608 960.7 1921.4 9607 1996-04-21 2024-10-11 02:40:07.000 1996-04-21 2024-10-11 02:40:07 +9608 9608 9609 960.8 1921.6000000000001 9608 1996-04-22 2024-10-11 02:40:08.000 1996-04-22 2024-10-11 02:40:08 +9609 9609 9610 960.9 1921.8000000000002 9609 1996-04-23 2024-10-11 02:40:09.000 1996-04-23 2024-10-11 02:40:09 +9611 9611 9612 961.1 1922.2 9611 1996-04-25 2024-10-11 02:40:11.000 1996-04-25 2024-10-11 02:40:11 +9612 9612 9613 961.2 1922.4 9612 1996-04-26 2024-10-11 02:40:12.000 1996-04-26 2024-10-11 02:40:12 +9613 9613 9614 961.3 1922.6000000000001 9613 1996-04-27 2024-10-11 02:40:13.000 1996-04-27 2024-10-11 02:40:13 +9614 9614 9615 961.4 1922.8000000000002 9614 1996-04-28 2024-10-11 02:40:14.000 1996-04-28 2024-10-11 02:40:14 +9616 9616 9617 961.6 1923.2 9616 1996-04-30 2024-10-11 02:40:16.000 1996-04-30 2024-10-11 02:40:16 +9617 9617 9618 961.7 1923.4 9617 1996-05-01 2024-10-11 02:40:17.000 1996-05-01 2024-10-11 02:40:17 +9618 9618 9619 961.8 1923.6000000000001 9618 1996-05-02 2024-10-11 02:40:18.000 1996-05-02 2024-10-11 02:40:18 +9619 9619 9620 961.9 1923.8000000000002 9619 1996-05-03 2024-10-11 02:40:19.000 1996-05-03 2024-10-11 02:40:19 +9621 9621 9622 962.1 1924.2 9621 1996-05-05 2024-10-11 02:40:21.000 1996-05-05 2024-10-11 02:40:21 +9622 9622 9623 962.2 1924.4 9622 1996-05-06 2024-10-11 02:40:22.000 1996-05-06 2024-10-11 02:40:22 +9623 9623 9624 962.3 1924.6000000000001 9623 1996-05-07 2024-10-11 02:40:23.000 1996-05-07 2024-10-11 02:40:23 +9624 9624 9625 962.4 1924.8000000000002 9624 1996-05-08 2024-10-11 02:40:24.000 1996-05-08 2024-10-11 02:40:24 +9626 9626 9627 962.6 1925.2 9626 1996-05-10 2024-10-11 02:40:26.000 1996-05-10 2024-10-11 02:40:26 +9627 9627 9628 962.7 1925.4 9627 1996-05-11 2024-10-11 02:40:27.000 1996-05-11 2024-10-11 02:40:27 +9628 9628 9629 962.8 1925.6000000000001 9628 1996-05-12 2024-10-11 02:40:28.000 1996-05-12 2024-10-11 02:40:28 +9629 9629 9630 962.9 1925.8000000000002 9629 1996-05-13 2024-10-11 02:40:29.000 1996-05-13 2024-10-11 02:40:29 +9631 9631 9632 963.1 1926.2 9631 1996-05-15 2024-10-11 02:40:31.000 1996-05-15 2024-10-11 02:40:31 +9632 9632 9633 963.2 1926.4 9632 1996-05-16 2024-10-11 02:40:32.000 1996-05-16 2024-10-11 02:40:32 +9633 9633 9634 963.3 1926.6000000000001 9633 1996-05-17 2024-10-11 02:40:33.000 1996-05-17 2024-10-11 02:40:33 +9634 9634 9635 963.4 1926.8000000000002 9634 1996-05-18 2024-10-11 02:40:34.000 1996-05-18 2024-10-11 02:40:34 +9636 9636 9637 963.6 1927.2 9636 1996-05-20 2024-10-11 02:40:36.000 1996-05-20 2024-10-11 02:40:36 +9637 9637 9638 963.7 1927.4 9637 1996-05-21 2024-10-11 02:40:37.000 1996-05-21 2024-10-11 02:40:37 +9638 9638 9639 963.8 1927.6000000000001 9638 1996-05-22 2024-10-11 02:40:38.000 1996-05-22 2024-10-11 02:40:38 +9639 9639 9640 963.9 1927.8000000000002 9639 1996-05-23 2024-10-11 02:40:39.000 1996-05-23 2024-10-11 02:40:39 +9641 9641 9642 964.1 1928.2 9641 1996-05-25 2024-10-11 02:40:41.000 1996-05-25 2024-10-11 02:40:41 +9642 9642 9643 964.2 1928.4 9642 1996-05-26 2024-10-11 02:40:42.000 1996-05-26 2024-10-11 02:40:42 +9643 9643 9644 964.3 1928.6000000000001 9643 1996-05-27 2024-10-11 02:40:43.000 1996-05-27 2024-10-11 02:40:43 +9644 9644 9645 964.4 1928.8000000000002 9644 1996-05-28 2024-10-11 02:40:44.000 1996-05-28 2024-10-11 02:40:44 +9646 9646 9647 964.6 1929.2 9646 1996-05-30 2024-10-11 02:40:46.000 1996-05-30 2024-10-11 02:40:46 +9647 9647 9648 964.7 1929.4 9647 1996-05-31 2024-10-11 02:40:47.000 1996-05-31 2024-10-11 02:40:47 +9648 9648 9649 964.8 1929.6000000000001 9648 1996-06-01 2024-10-11 02:40:48.000 1996-06-01 2024-10-11 02:40:48 +9649 9649 9650 964.9 1929.8000000000002 9649 1996-06-02 2024-10-11 02:40:49.000 1996-06-02 2024-10-11 02:40:49 +9651 9651 9652 965.1 1930.2 9651 1996-06-04 2024-10-11 02:40:51.000 1996-06-04 2024-10-11 02:40:51 +9652 9652 9653 965.2 1930.4 9652 1996-06-05 2024-10-11 02:40:52.000 1996-06-05 2024-10-11 02:40:52 +9653 9653 9654 965.3 1930.6000000000001 9653 1996-06-06 2024-10-11 02:40:53.000 1996-06-06 2024-10-11 02:40:53 +9654 9654 9655 965.4 1930.8000000000002 9654 1996-06-07 2024-10-11 02:40:54.000 1996-06-07 2024-10-11 02:40:54 +9656 9656 9657 965.6 1931.2 9656 1996-06-09 2024-10-11 02:40:56.000 1996-06-09 2024-10-11 02:40:56 +9657 9657 9658 965.7 1931.4 9657 1996-06-10 2024-10-11 02:40:57.000 1996-06-10 2024-10-11 02:40:57 +9658 9658 9659 965.8 1931.6000000000001 9658 1996-06-11 2024-10-11 02:40:58.000 1996-06-11 2024-10-11 02:40:58 +9659 9659 9660 965.9 1931.8000000000002 9659 1996-06-12 2024-10-11 02:40:59.000 1996-06-12 2024-10-11 02:40:59 +9661 9661 9662 966.1 1932.2 9661 1996-06-14 2024-10-11 02:41:01.000 1996-06-14 2024-10-11 02:41:01 +9662 9662 9663 966.2 1932.4 9662 1996-06-15 2024-10-11 02:41:02.000 1996-06-15 2024-10-11 02:41:02 +9663 9663 9664 966.3 1932.6000000000001 9663 1996-06-16 2024-10-11 02:41:03.000 1996-06-16 2024-10-11 02:41:03 +9664 9664 9665 966.4 1932.8000000000002 9664 1996-06-17 2024-10-11 02:41:04.000 1996-06-17 2024-10-11 02:41:04 +9666 9666 9667 966.6 1933.2 9666 1996-06-19 2024-10-11 02:41:06.000 1996-06-19 2024-10-11 02:41:06 +9667 9667 9668 966.7 1933.4 9667 1996-06-20 2024-10-11 02:41:07.000 1996-06-20 2024-10-11 02:41:07 +9668 9668 9669 966.8 1933.6000000000001 9668 1996-06-21 2024-10-11 02:41:08.000 1996-06-21 2024-10-11 02:41:08 +9669 9669 9670 966.9 1933.8000000000002 9669 1996-06-22 2024-10-11 02:41:09.000 1996-06-22 2024-10-11 02:41:09 +9671 9671 9672 967.1 1934.2 9671 1996-06-24 2024-10-11 02:41:11.000 1996-06-24 2024-10-11 02:41:11 +9672 9672 9673 967.2 1934.4 9672 1996-06-25 2024-10-11 02:41:12.000 1996-06-25 2024-10-11 02:41:12 +9673 9673 9674 967.3 1934.6000000000001 9673 1996-06-26 2024-10-11 02:41:13.000 1996-06-26 2024-10-11 02:41:13 +9674 9674 9675 967.4 1934.8000000000002 9674 1996-06-27 2024-10-11 02:41:14.000 1996-06-27 2024-10-11 02:41:14 +9676 9676 9677 967.6 1935.2 9676 1996-06-29 2024-10-11 02:41:16.000 1996-06-29 2024-10-11 02:41:16 +9677 9677 9678 967.7 1935.4 9677 1996-06-30 2024-10-11 02:41:17.000 1996-06-30 2024-10-11 02:41:17 +9678 9678 9679 967.8 1935.6000000000001 9678 1996-07-01 2024-10-11 02:41:18.000 1996-07-01 2024-10-11 02:41:18 +9679 9679 9680 967.9 1935.8000000000002 9679 1996-07-02 2024-10-11 02:41:19.000 1996-07-02 2024-10-11 02:41:19 +9681 9681 9682 968.1 1936.2 9681 1996-07-04 2024-10-11 02:41:21.000 1996-07-04 2024-10-11 02:41:21 +9682 9682 9683 968.2 1936.4 9682 1996-07-05 2024-10-11 02:41:22.000 1996-07-05 2024-10-11 02:41:22 +9683 9683 9684 968.3 1936.6000000000001 9683 1996-07-06 2024-10-11 02:41:23.000 1996-07-06 2024-10-11 02:41:23 +9684 9684 9685 968.4 1936.8000000000002 9684 1996-07-07 2024-10-11 02:41:24.000 1996-07-07 2024-10-11 02:41:24 +9686 9686 9687 968.6 1937.2 9686 1996-07-09 2024-10-11 02:41:26.000 1996-07-09 2024-10-11 02:41:26 +9687 9687 9688 968.7 1937.4 9687 1996-07-10 2024-10-11 02:41:27.000 1996-07-10 2024-10-11 02:41:27 +9688 9688 9689 968.8 1937.6000000000001 9688 1996-07-11 2024-10-11 02:41:28.000 1996-07-11 2024-10-11 02:41:28 +9689 9689 9690 968.9 1937.8000000000002 9689 1996-07-12 2024-10-11 02:41:29.000 1996-07-12 2024-10-11 02:41:29 +9691 9691 9692 969.1 1938.2 9691 1996-07-14 2024-10-11 02:41:31.000 1996-07-14 2024-10-11 02:41:31 +9692 9692 9693 969.2 1938.4 9692 1996-07-15 2024-10-11 02:41:32.000 1996-07-15 2024-10-11 02:41:32 +9693 9693 9694 969.3 1938.6000000000001 9693 1996-07-16 2024-10-11 02:41:33.000 1996-07-16 2024-10-11 02:41:33 +9694 9694 9695 969.4 1938.8000000000002 9694 1996-07-17 2024-10-11 02:41:34.000 1996-07-17 2024-10-11 02:41:34 +9696 9696 9697 969.6 1939.2 9696 1996-07-19 2024-10-11 02:41:36.000 1996-07-19 2024-10-11 02:41:36 +9697 9697 9698 969.7 1939.4 9697 1996-07-20 2024-10-11 02:41:37.000 1996-07-20 2024-10-11 02:41:37 +9698 9698 9699 969.8 1939.6000000000001 9698 1996-07-21 2024-10-11 02:41:38.000 1996-07-21 2024-10-11 02:41:38 +9699 9699 9700 969.9 1939.8000000000002 9699 1996-07-22 2024-10-11 02:41:39.000 1996-07-22 2024-10-11 02:41:39 +9701 9701 9702 970.1 1940.2 9701 1996-07-24 2024-10-11 02:41:41.000 1996-07-24 2024-10-11 02:41:41 +9702 9702 9703 970.2 1940.4 9702 1996-07-25 2024-10-11 02:41:42.000 1996-07-25 2024-10-11 02:41:42 +9703 9703 9704 970.3 1940.6000000000001 9703 1996-07-26 2024-10-11 02:41:43.000 1996-07-26 2024-10-11 02:41:43 +9704 9704 9705 970.4 1940.8000000000002 9704 1996-07-27 2024-10-11 02:41:44.000 1996-07-27 2024-10-11 02:41:44 +9706 9706 9707 970.6 1941.2 9706 1996-07-29 2024-10-11 02:41:46.000 1996-07-29 2024-10-11 02:41:46 +9707 9707 9708 970.7 1941.4 9707 1996-07-30 2024-10-11 02:41:47.000 1996-07-30 2024-10-11 02:41:47 +9708 9708 9709 970.8 1941.6000000000001 9708 1996-07-31 2024-10-11 02:41:48.000 1996-07-31 2024-10-11 02:41:48 +9709 9709 9710 970.9 1941.8000000000002 9709 1996-08-01 2024-10-11 02:41:49.000 1996-08-01 2024-10-11 02:41:49 +9711 9711 9712 971.1 1942.2 9711 1996-08-03 2024-10-11 02:41:51.000 1996-08-03 2024-10-11 02:41:51 +9712 9712 9713 971.2 1942.4 9712 1996-08-04 2024-10-11 02:41:52.000 1996-08-04 2024-10-11 02:41:52 +9713 9713 9714 971.3 1942.6000000000001 9713 1996-08-05 2024-10-11 02:41:53.000 1996-08-05 2024-10-11 02:41:53 +9714 9714 9715 971.4 1942.8000000000002 9714 1996-08-06 2024-10-11 02:41:54.000 1996-08-06 2024-10-11 02:41:54 +9716 9716 9717 971.6 1943.2 9716 1996-08-08 2024-10-11 02:41:56.000 1996-08-08 2024-10-11 02:41:56 +9717 9717 9718 971.7 1943.4 9717 1996-08-09 2024-10-11 02:41:57.000 1996-08-09 2024-10-11 02:41:57 +9718 9718 9719 971.8 1943.6000000000001 9718 1996-08-10 2024-10-11 02:41:58.000 1996-08-10 2024-10-11 02:41:58 +9719 9719 9720 971.9 1943.8000000000002 9719 1996-08-11 2024-10-11 02:41:59.000 1996-08-11 2024-10-11 02:41:59 +9721 9721 9722 972.1 1944.2 9721 1996-08-13 2024-10-11 02:42:01.000 1996-08-13 2024-10-11 02:42:01 +9722 9722 9723 972.2 1944.4 9722 1996-08-14 2024-10-11 02:42:02.000 1996-08-14 2024-10-11 02:42:02 +9723 9723 9724 972.3 1944.6000000000001 9723 1996-08-15 2024-10-11 02:42:03.000 1996-08-15 2024-10-11 02:42:03 +9724 9724 9725 972.4 1944.8000000000002 9724 1996-08-16 2024-10-11 02:42:04.000 1996-08-16 2024-10-11 02:42:04 +9726 9726 9727 972.6 1945.2 9726 1996-08-18 2024-10-11 02:42:06.000 1996-08-18 2024-10-11 02:42:06 +9727 9727 9728 972.7 1945.4 9727 1996-08-19 2024-10-11 02:42:07.000 1996-08-19 2024-10-11 02:42:07 +9728 9728 9729 972.8 1945.6000000000001 9728 1996-08-20 2024-10-11 02:42:08.000 1996-08-20 2024-10-11 02:42:08 +9729 9729 9730 972.9 1945.8000000000002 9729 1996-08-21 2024-10-11 02:42:09.000 1996-08-21 2024-10-11 02:42:09 +9731 9731 9732 973.1 1946.2 9731 1996-08-23 2024-10-11 02:42:11.000 1996-08-23 2024-10-11 02:42:11 +9732 9732 9733 973.2 1946.4 9732 1996-08-24 2024-10-11 02:42:12.000 1996-08-24 2024-10-11 02:42:12 +9733 9733 9734 973.3 1946.6000000000001 9733 1996-08-25 2024-10-11 02:42:13.000 1996-08-25 2024-10-11 02:42:13 +9734 9734 9735 973.4 1946.8000000000002 9734 1996-08-26 2024-10-11 02:42:14.000 1996-08-26 2024-10-11 02:42:14 +9736 9736 9737 973.6 1947.2 9736 1996-08-28 2024-10-11 02:42:16.000 1996-08-28 2024-10-11 02:42:16 +9737 9737 9738 973.7 1947.4 9737 1996-08-29 2024-10-11 02:42:17.000 1996-08-29 2024-10-11 02:42:17 +9738 9738 9739 973.8 1947.6000000000001 9738 1996-08-30 2024-10-11 02:42:18.000 1996-08-30 2024-10-11 02:42:18 +9739 9739 9740 973.9 1947.8000000000002 9739 1996-08-31 2024-10-11 02:42:19.000 1996-08-31 2024-10-11 02:42:19 +9741 9741 9742 974.1 1948.2 9741 1996-09-02 2024-10-11 02:42:21.000 1996-09-02 2024-10-11 02:42:21 +9742 9742 9743 974.2 1948.4 9742 1996-09-03 2024-10-11 02:42:22.000 1996-09-03 2024-10-11 02:42:22 +9743 9743 9744 974.3 1948.6000000000001 9743 1996-09-04 2024-10-11 02:42:23.000 1996-09-04 2024-10-11 02:42:23 +9744 9744 9745 974.4 1948.8000000000002 9744 1996-09-05 2024-10-11 02:42:24.000 1996-09-05 2024-10-11 02:42:24 +9746 9746 9747 974.6 1949.2 9746 1996-09-07 2024-10-11 02:42:26.000 1996-09-07 2024-10-11 02:42:26 +9747 9747 9748 974.7 1949.4 9747 1996-09-08 2024-10-11 02:42:27.000 1996-09-08 2024-10-11 02:42:27 +9748 9748 9749 974.8 1949.6000000000001 9748 1996-09-09 2024-10-11 02:42:28.000 1996-09-09 2024-10-11 02:42:28 +9749 9749 9750 974.9 1949.8000000000002 9749 1996-09-10 2024-10-11 02:42:29.000 1996-09-10 2024-10-11 02:42:29 +9751 9751 9752 975.1 1950.2 9751 1996-09-12 2024-10-11 02:42:31.000 1996-09-12 2024-10-11 02:42:31 +9752 9752 9753 975.2 1950.4 9752 1996-09-13 2024-10-11 02:42:32.000 1996-09-13 2024-10-11 02:42:32 +9753 9753 9754 975.3 1950.6000000000001 9753 1996-09-14 2024-10-11 02:42:33.000 1996-09-14 2024-10-11 02:42:33 +9754 9754 9755 975.4 1950.8000000000002 9754 1996-09-15 2024-10-11 02:42:34.000 1996-09-15 2024-10-11 02:42:34 +9756 9756 9757 975.6 1951.2 9756 1996-09-17 2024-10-11 02:42:36.000 1996-09-17 2024-10-11 02:42:36 +9757 9757 9758 975.7 1951.4 9757 1996-09-18 2024-10-11 02:42:37.000 1996-09-18 2024-10-11 02:42:37 +9758 9758 9759 975.8 1951.6000000000001 9758 1996-09-19 2024-10-11 02:42:38.000 1996-09-19 2024-10-11 02:42:38 +9759 9759 9760 975.9 1951.8000000000002 9759 1996-09-20 2024-10-11 02:42:39.000 1996-09-20 2024-10-11 02:42:39 +9761 9761 9762 976.1 1952.2 9761 1996-09-22 2024-10-11 02:42:41.000 1996-09-22 2024-10-11 02:42:41 +9762 9762 9763 976.2 1952.4 9762 1996-09-23 2024-10-11 02:42:42.000 1996-09-23 2024-10-11 02:42:42 +9763 9763 9764 976.3 1952.6000000000001 9763 1996-09-24 2024-10-11 02:42:43.000 1996-09-24 2024-10-11 02:42:43 +9764 9764 9765 976.4 1952.8000000000002 9764 1996-09-25 2024-10-11 02:42:44.000 1996-09-25 2024-10-11 02:42:44 +9766 9766 9767 976.6 1953.2 9766 1996-09-27 2024-10-11 02:42:46.000 1996-09-27 2024-10-11 02:42:46 +9767 9767 9768 976.7 1953.4 9767 1996-09-28 2024-10-11 02:42:47.000 1996-09-28 2024-10-11 02:42:47 +9768 9768 9769 976.8 1953.6000000000001 9768 1996-09-29 2024-10-11 02:42:48.000 1996-09-29 2024-10-11 02:42:48 +9769 9769 9770 976.9 1953.8000000000002 9769 1996-09-30 2024-10-11 02:42:49.000 1996-09-30 2024-10-11 02:42:49 +9771 9771 9772 977.1 1954.2 9771 1996-10-02 2024-10-11 02:42:51.000 1996-10-02 2024-10-11 02:42:51 +9772 9772 9773 977.2 1954.4 9772 1996-10-03 2024-10-11 02:42:52.000 1996-10-03 2024-10-11 02:42:52 +9773 9773 9774 977.3 1954.6000000000001 9773 1996-10-04 2024-10-11 02:42:53.000 1996-10-04 2024-10-11 02:42:53 +9774 9774 9775 977.4 1954.8000000000002 9774 1996-10-05 2024-10-11 02:42:54.000 1996-10-05 2024-10-11 02:42:54 +9776 9776 9777 977.6 1955.2 9776 1996-10-07 2024-10-11 02:42:56.000 1996-10-07 2024-10-11 02:42:56 +9777 9777 9778 977.7 1955.4 9777 1996-10-08 2024-10-11 02:42:57.000 1996-10-08 2024-10-11 02:42:57 +9778 9778 9779 977.8 1955.6000000000001 9778 1996-10-09 2024-10-11 02:42:58.000 1996-10-09 2024-10-11 02:42:58 +9779 9779 9780 977.9 1955.8000000000002 9779 1996-10-10 2024-10-11 02:42:59.000 1996-10-10 2024-10-11 02:42:59 +9781 9781 9782 978.1 1956.2 9781 1996-10-12 2024-10-11 02:43:01.000 1996-10-12 2024-10-11 02:43:01 +9782 9782 9783 978.2 1956.4 9782 1996-10-13 2024-10-11 02:43:02.000 1996-10-13 2024-10-11 02:43:02 +9783 9783 9784 978.3 1956.6000000000001 9783 1996-10-14 2024-10-11 02:43:03.000 1996-10-14 2024-10-11 02:43:03 +9784 9784 9785 978.4 1956.8000000000002 9784 1996-10-15 2024-10-11 02:43:04.000 1996-10-15 2024-10-11 02:43:04 +9786 9786 9787 978.6 1957.2 9786 1996-10-17 2024-10-11 02:43:06.000 1996-10-17 2024-10-11 02:43:06 +9787 9787 9788 978.7 1957.4 9787 1996-10-18 2024-10-11 02:43:07.000 1996-10-18 2024-10-11 02:43:07 +9788 9788 9789 978.8 1957.6000000000001 9788 1996-10-19 2024-10-11 02:43:08.000 1996-10-19 2024-10-11 02:43:08 +9789 9789 9790 978.9 1957.8000000000002 9789 1996-10-20 2024-10-11 02:43:09.000 1996-10-20 2024-10-11 02:43:09 +9791 9791 9792 979.1 1958.2 9791 1996-10-22 2024-10-11 02:43:11.000 1996-10-22 2024-10-11 02:43:11 +9792 9792 9793 979.2 1958.4 9792 1996-10-23 2024-10-11 02:43:12.000 1996-10-23 2024-10-11 02:43:12 +9793 9793 9794 979.3 1958.6000000000001 9793 1996-10-24 2024-10-11 02:43:13.000 1996-10-24 2024-10-11 02:43:13 +9794 9794 9795 979.4 1958.8000000000002 9794 1996-10-25 2024-10-11 02:43:14.000 1996-10-25 2024-10-11 02:43:14 +9796 9796 9797 979.6 1959.2 9796 1996-10-27 2024-10-11 02:43:16.000 1996-10-27 2024-10-11 02:43:16 +9797 9797 9798 979.7 1959.4 9797 1996-10-28 2024-10-11 02:43:17.000 1996-10-28 2024-10-11 02:43:17 +9798 9798 9799 979.8 1959.6000000000001 9798 1996-10-29 2024-10-11 02:43:18.000 1996-10-29 2024-10-11 02:43:18 +9799 9799 9800 979.9 1959.8000000000002 9799 1996-10-30 2024-10-11 02:43:19.000 1996-10-30 2024-10-11 02:43:19 +9801 9801 9802 980.1 1960.2 9801 1996-11-01 2024-10-11 02:43:21.000 1996-11-01 2024-10-11 02:43:21 +9802 9802 9803 980.2 1960.4 9802 1996-11-02 2024-10-11 02:43:22.000 1996-11-02 2024-10-11 02:43:22 +9803 9803 9804 980.3 1960.6000000000001 9803 1996-11-03 2024-10-11 02:43:23.000 1996-11-03 2024-10-11 02:43:23 +9804 9804 9805 980.4 1960.8000000000002 9804 1996-11-04 2024-10-11 02:43:24.000 1996-11-04 2024-10-11 02:43:24 +9806 9806 9807 980.6 1961.2 9806 1996-11-06 2024-10-11 02:43:26.000 1996-11-06 2024-10-11 02:43:26 +9807 9807 9808 980.7 1961.4 9807 1996-11-07 2024-10-11 02:43:27.000 1996-11-07 2024-10-11 02:43:27 +9808 9808 9809 980.8 1961.6000000000001 9808 1996-11-08 2024-10-11 02:43:28.000 1996-11-08 2024-10-11 02:43:28 +9809 9809 9810 980.9 1961.8000000000002 9809 1996-11-09 2024-10-11 02:43:29.000 1996-11-09 2024-10-11 02:43:29 +9811 9811 9812 981.1 1962.2 9811 1996-11-11 2024-10-11 02:43:31.000 1996-11-11 2024-10-11 02:43:31 +9812 9812 9813 981.2 1962.4 9812 1996-11-12 2024-10-11 02:43:32.000 1996-11-12 2024-10-11 02:43:32 +9813 9813 9814 981.3 1962.6000000000001 9813 1996-11-13 2024-10-11 02:43:33.000 1996-11-13 2024-10-11 02:43:33 +9814 9814 9815 981.4 1962.8000000000002 9814 1996-11-14 2024-10-11 02:43:34.000 1996-11-14 2024-10-11 02:43:34 +9816 9816 9817 981.6 1963.2 9816 1996-11-16 2024-10-11 02:43:36.000 1996-11-16 2024-10-11 02:43:36 +9817 9817 9818 981.7 1963.4 9817 1996-11-17 2024-10-11 02:43:37.000 1996-11-17 2024-10-11 02:43:37 +9818 9818 9819 981.8 1963.6000000000001 9818 1996-11-18 2024-10-11 02:43:38.000 1996-11-18 2024-10-11 02:43:38 +9819 9819 9820 981.9 1963.8000000000002 9819 1996-11-19 2024-10-11 02:43:39.000 1996-11-19 2024-10-11 02:43:39 +9821 9821 9822 982.1 1964.2 9821 1996-11-21 2024-10-11 02:43:41.000 1996-11-21 2024-10-11 02:43:41 +9822 9822 9823 982.2 1964.4 9822 1996-11-22 2024-10-11 02:43:42.000 1996-11-22 2024-10-11 02:43:42 +9823 9823 9824 982.3 1964.6000000000001 9823 1996-11-23 2024-10-11 02:43:43.000 1996-11-23 2024-10-11 02:43:43 +9824 9824 9825 982.4 1964.8000000000002 9824 1996-11-24 2024-10-11 02:43:44.000 1996-11-24 2024-10-11 02:43:44 +9826 9826 9827 982.6 1965.2 9826 1996-11-26 2024-10-11 02:43:46.000 1996-11-26 2024-10-11 02:43:46 +9827 9827 9828 982.7 1965.4 9827 1996-11-27 2024-10-11 02:43:47.000 1996-11-27 2024-10-11 02:43:47 +9828 9828 9829 982.8 1965.6000000000001 9828 1996-11-28 2024-10-11 02:43:48.000 1996-11-28 2024-10-11 02:43:48 +9829 9829 9830 982.9 1965.8000000000002 9829 1996-11-29 2024-10-11 02:43:49.000 1996-11-29 2024-10-11 02:43:49 +9831 9831 9832 983.1 1966.2 9831 1996-12-01 2024-10-11 02:43:51.000 1996-12-01 2024-10-11 02:43:51 +9832 9832 9833 983.2 1966.4 9832 1996-12-02 2024-10-11 02:43:52.000 1996-12-02 2024-10-11 02:43:52 +9833 9833 9834 983.3 1966.6000000000001 9833 1996-12-03 2024-10-11 02:43:53.000 1996-12-03 2024-10-11 02:43:53 +9834 9834 9835 983.4 1966.8000000000002 9834 1996-12-04 2024-10-11 02:43:54.000 1996-12-04 2024-10-11 02:43:54 +9836 9836 9837 983.6 1967.2 9836 1996-12-06 2024-10-11 02:43:56.000 1996-12-06 2024-10-11 02:43:56 +9837 9837 9838 983.7 1967.4 9837 1996-12-07 2024-10-11 02:43:57.000 1996-12-07 2024-10-11 02:43:57 +9838 9838 9839 983.8 1967.6000000000001 9838 1996-12-08 2024-10-11 02:43:58.000 1996-12-08 2024-10-11 02:43:58 +9839 9839 9840 983.9 1967.8000000000002 9839 1996-12-09 2024-10-11 02:43:59.000 1996-12-09 2024-10-11 02:43:59 +9841 9841 9842 984.1 1968.2 9841 1996-12-11 2024-10-11 02:44:01.000 1996-12-11 2024-10-11 02:44:01 +9842 9842 9843 984.2 1968.4 9842 1996-12-12 2024-10-11 02:44:02.000 1996-12-12 2024-10-11 02:44:02 +9843 9843 9844 984.3 1968.6000000000001 9843 1996-12-13 2024-10-11 02:44:03.000 1996-12-13 2024-10-11 02:44:03 +9844 9844 9845 984.4 1968.8000000000002 9844 1996-12-14 2024-10-11 02:44:04.000 1996-12-14 2024-10-11 02:44:04 +9846 9846 9847 984.6 1969.2 9846 1996-12-16 2024-10-11 02:44:06.000 1996-12-16 2024-10-11 02:44:06 +9847 9847 9848 984.7 1969.4 9847 1996-12-17 2024-10-11 02:44:07.000 1996-12-17 2024-10-11 02:44:07 +9848 9848 9849 984.8 1969.6000000000001 9848 1996-12-18 2024-10-11 02:44:08.000 1996-12-18 2024-10-11 02:44:08 +9849 9849 9850 984.9 1969.8000000000002 9849 1996-12-19 2024-10-11 02:44:09.000 1996-12-19 2024-10-11 02:44:09 +9851 9851 9852 985.1 1970.2 9851 1996-12-21 2024-10-11 02:44:11.000 1996-12-21 2024-10-11 02:44:11 +9852 9852 9853 985.2 1970.4 9852 1996-12-22 2024-10-11 02:44:12.000 1996-12-22 2024-10-11 02:44:12 +9853 9853 9854 985.3 1970.6000000000001 9853 1996-12-23 2024-10-11 02:44:13.000 1996-12-23 2024-10-11 02:44:13 +9854 9854 9855 985.4 1970.8000000000002 9854 1996-12-24 2024-10-11 02:44:14.000 1996-12-24 2024-10-11 02:44:14 +9856 9856 9857 985.6 1971.2 9856 1996-12-26 2024-10-11 02:44:16.000 1996-12-26 2024-10-11 02:44:16 +9857 9857 9858 985.7 1971.4 9857 1996-12-27 2024-10-11 02:44:17.000 1996-12-27 2024-10-11 02:44:17 +9858 9858 9859 985.8 1971.6000000000001 9858 1996-12-28 2024-10-11 02:44:18.000 1996-12-28 2024-10-11 02:44:18 +9859 9859 9860 985.9 1971.8000000000002 9859 1996-12-29 2024-10-11 02:44:19.000 1996-12-29 2024-10-11 02:44:19 +9861 9861 9862 986.1 1972.2 9861 1996-12-31 2024-10-11 02:44:21.000 1996-12-31 2024-10-11 02:44:21 +9862 9862 9863 986.2 1972.4 9862 1997-01-01 2024-10-11 02:44:22.000 1997-01-01 2024-10-11 02:44:22 +9863 9863 9864 986.3 1972.6000000000001 9863 1997-01-02 2024-10-11 02:44:23.000 1997-01-02 2024-10-11 02:44:23 +9864 9864 9865 986.4 1972.8000000000002 9864 1997-01-03 2024-10-11 02:44:24.000 1997-01-03 2024-10-11 02:44:24 +9866 9866 9867 986.6 1973.2 9866 1997-01-05 2024-10-11 02:44:26.000 1997-01-05 2024-10-11 02:44:26 +9867 9867 9868 986.7 1973.4 9867 1997-01-06 2024-10-11 02:44:27.000 1997-01-06 2024-10-11 02:44:27 +9868 9868 9869 986.8 1973.6000000000001 9868 1997-01-07 2024-10-11 02:44:28.000 1997-01-07 2024-10-11 02:44:28 +9869 9869 9870 986.9 1973.8000000000002 9869 1997-01-08 2024-10-11 02:44:29.000 1997-01-08 2024-10-11 02:44:29 +9871 9871 9872 987.1 1974.2 9871 1997-01-10 2024-10-11 02:44:31.000 1997-01-10 2024-10-11 02:44:31 +9872 9872 9873 987.2 1974.4 9872 1997-01-11 2024-10-11 02:44:32.000 1997-01-11 2024-10-11 02:44:32 +9873 9873 9874 987.3 1974.6000000000001 9873 1997-01-12 2024-10-11 02:44:33.000 1997-01-12 2024-10-11 02:44:33 +9874 9874 9875 987.4 1974.8000000000002 9874 1997-01-13 2024-10-11 02:44:34.000 1997-01-13 2024-10-11 02:44:34 +9876 9876 9877 987.6 1975.2 9876 1997-01-15 2024-10-11 02:44:36.000 1997-01-15 2024-10-11 02:44:36 +9877 9877 9878 987.7 1975.4 9877 1997-01-16 2024-10-11 02:44:37.000 1997-01-16 2024-10-11 02:44:37 +9878 9878 9879 987.8 1975.6000000000001 9878 1997-01-17 2024-10-11 02:44:38.000 1997-01-17 2024-10-11 02:44:38 +9879 9879 9880 987.9 1975.8000000000002 9879 1997-01-18 2024-10-11 02:44:39.000 1997-01-18 2024-10-11 02:44:39 +9881 9881 9882 988.1 1976.2 9881 1997-01-20 2024-10-11 02:44:41.000 1997-01-20 2024-10-11 02:44:41 +9882 9882 9883 988.2 1976.4 9882 1997-01-21 2024-10-11 02:44:42.000 1997-01-21 2024-10-11 02:44:42 +9883 9883 9884 988.3 1976.6000000000001 9883 1997-01-22 2024-10-11 02:44:43.000 1997-01-22 2024-10-11 02:44:43 +9884 9884 9885 988.4 1976.8000000000002 9884 1997-01-23 2024-10-11 02:44:44.000 1997-01-23 2024-10-11 02:44:44 +9886 9886 9887 988.6 1977.2 9886 1997-01-25 2024-10-11 02:44:46.000 1997-01-25 2024-10-11 02:44:46 +9887 9887 9888 988.7 1977.4 9887 1997-01-26 2024-10-11 02:44:47.000 1997-01-26 2024-10-11 02:44:47 +9888 9888 9889 988.8 1977.6000000000001 9888 1997-01-27 2024-10-11 02:44:48.000 1997-01-27 2024-10-11 02:44:48 +9889 9889 9890 988.9 1977.8000000000002 9889 1997-01-28 2024-10-11 02:44:49.000 1997-01-28 2024-10-11 02:44:49 +9891 9891 9892 989.1 1978.2 9891 1997-01-30 2024-10-11 02:44:51.000 1997-01-30 2024-10-11 02:44:51 +9892 9892 9893 989.2 1978.4 9892 1997-01-31 2024-10-11 02:44:52.000 1997-01-31 2024-10-11 02:44:52 +9893 9893 9894 989.3 1978.6000000000001 9893 1997-02-01 2024-10-11 02:44:53.000 1997-02-01 2024-10-11 02:44:53 +9894 9894 9895 989.4 1978.8000000000002 9894 1997-02-02 2024-10-11 02:44:54.000 1997-02-02 2024-10-11 02:44:54 +9896 9896 9897 989.6 1979.2 9896 1997-02-04 2024-10-11 02:44:56.000 1997-02-04 2024-10-11 02:44:56 +9897 9897 9898 989.7 1979.4 9897 1997-02-05 2024-10-11 02:44:57.000 1997-02-05 2024-10-11 02:44:57 +9898 9898 9899 989.8 1979.6000000000001 9898 1997-02-06 2024-10-11 02:44:58.000 1997-02-06 2024-10-11 02:44:58 +9899 9899 9900 989.9 1979.8000000000002 9899 1997-02-07 2024-10-11 02:44:59.000 1997-02-07 2024-10-11 02:44:59 +9901 9901 9902 990.1 1980.2 9901 1997-02-09 2024-10-11 02:45:01.000 1997-02-09 2024-10-11 02:45:01 +9902 9902 9903 990.2 1980.4 9902 1997-02-10 2024-10-11 02:45:02.000 1997-02-10 2024-10-11 02:45:02 +9903 9903 9904 990.3 1980.6000000000001 9903 1997-02-11 2024-10-11 02:45:03.000 1997-02-11 2024-10-11 02:45:03 +9904 9904 9905 990.4 1980.8000000000002 9904 1997-02-12 2024-10-11 02:45:04.000 1997-02-12 2024-10-11 02:45:04 +9906 9906 9907 990.6 1981.2 9906 1997-02-14 2024-10-11 02:45:06.000 1997-02-14 2024-10-11 02:45:06 +9907 9907 9908 990.7 1981.4 9907 1997-02-15 2024-10-11 02:45:07.000 1997-02-15 2024-10-11 02:45:07 +9908 9908 9909 990.8 1981.6000000000001 9908 1997-02-16 2024-10-11 02:45:08.000 1997-02-16 2024-10-11 02:45:08 +9909 9909 9910 990.9 1981.8000000000002 9909 1997-02-17 2024-10-11 02:45:09.000 1997-02-17 2024-10-11 02:45:09 +9911 9911 9912 991.1 1982.2 9911 1997-02-19 2024-10-11 02:45:11.000 1997-02-19 2024-10-11 02:45:11 +9912 9912 9913 991.2 1982.4 9912 1997-02-20 2024-10-11 02:45:12.000 1997-02-20 2024-10-11 02:45:12 +9913 9913 9914 991.3 1982.6000000000001 9913 1997-02-21 2024-10-11 02:45:13.000 1997-02-21 2024-10-11 02:45:13 +9914 9914 9915 991.4 1982.8000000000002 9914 1997-02-22 2024-10-11 02:45:14.000 1997-02-22 2024-10-11 02:45:14 +9916 9916 9917 991.6 1983.2 9916 1997-02-24 2024-10-11 02:45:16.000 1997-02-24 2024-10-11 02:45:16 +9917 9917 9918 991.7 1983.4 9917 1997-02-25 2024-10-11 02:45:17.000 1997-02-25 2024-10-11 02:45:17 +9918 9918 9919 991.8 1983.6000000000001 9918 1997-02-26 2024-10-11 02:45:18.000 1997-02-26 2024-10-11 02:45:18 +9919 9919 9920 991.9 1983.8000000000002 9919 1997-02-27 2024-10-11 02:45:19.000 1997-02-27 2024-10-11 02:45:19 +9921 9921 9922 992.1 1984.2 9921 1997-03-01 2024-10-11 02:45:21.000 1997-03-01 2024-10-11 02:45:21 +9922 9922 9923 992.2 1984.4 9922 1997-03-02 2024-10-11 02:45:22.000 1997-03-02 2024-10-11 02:45:22 +9923 9923 9924 992.3 1984.6000000000001 9923 1997-03-03 2024-10-11 02:45:23.000 1997-03-03 2024-10-11 02:45:23 +9924 9924 9925 992.4 1984.8000000000002 9924 1997-03-04 2024-10-11 02:45:24.000 1997-03-04 2024-10-11 02:45:24 +9926 9926 9927 992.6 1985.2 9926 1997-03-06 2024-10-11 02:45:26.000 1997-03-06 2024-10-11 02:45:26 +9927 9927 9928 992.7 1985.4 9927 1997-03-07 2024-10-11 02:45:27.000 1997-03-07 2024-10-11 02:45:27 +9928 9928 9929 992.8 1985.6000000000001 9928 1997-03-08 2024-10-11 02:45:28.000 1997-03-08 2024-10-11 02:45:28 +9929 9929 9930 992.9 1985.8000000000002 9929 1997-03-09 2024-10-11 02:45:29.000 1997-03-09 2024-10-11 02:45:29 +9931 9931 9932 993.1 1986.2 9931 1997-03-11 2024-10-11 02:45:31.000 1997-03-11 2024-10-11 02:45:31 +9932 9932 9933 993.2 1986.4 9932 1997-03-12 2024-10-11 02:45:32.000 1997-03-12 2024-10-11 02:45:32 +9933 9933 9934 993.3 1986.6000000000001 9933 1997-03-13 2024-10-11 02:45:33.000 1997-03-13 2024-10-11 02:45:33 +9934 9934 9935 993.4 1986.8000000000002 9934 1997-03-14 2024-10-11 02:45:34.000 1997-03-14 2024-10-11 02:45:34 +9936 9936 9937 993.6 1987.2 9936 1997-03-16 2024-10-11 02:45:36.000 1997-03-16 2024-10-11 02:45:36 +9937 9937 9938 993.7 1987.4 9937 1997-03-17 2024-10-11 02:45:37.000 1997-03-17 2024-10-11 02:45:37 +9938 9938 9939 993.8 1987.6000000000001 9938 1997-03-18 2024-10-11 02:45:38.000 1997-03-18 2024-10-11 02:45:38 +9939 9939 9940 993.9 1987.8000000000002 9939 1997-03-19 2024-10-11 02:45:39.000 1997-03-19 2024-10-11 02:45:39 +9941 9941 9942 994.1 1988.2 9941 1997-03-21 2024-10-11 02:45:41.000 1997-03-21 2024-10-11 02:45:41 +9942 9942 9943 994.2 1988.4 9942 1997-03-22 2024-10-11 02:45:42.000 1997-03-22 2024-10-11 02:45:42 +9943 9943 9944 994.3 1988.6000000000001 9943 1997-03-23 2024-10-11 02:45:43.000 1997-03-23 2024-10-11 02:45:43 +9944 9944 9945 994.4 1988.8000000000002 9944 1997-03-24 2024-10-11 02:45:44.000 1997-03-24 2024-10-11 02:45:44 +9946 9946 9947 994.6 1989.2 9946 1997-03-26 2024-10-11 02:45:46.000 1997-03-26 2024-10-11 02:45:46 +9947 9947 9948 994.7 1989.4 9947 1997-03-27 2024-10-11 02:45:47.000 1997-03-27 2024-10-11 02:45:47 +9948 9948 9949 994.8 1989.6000000000001 9948 1997-03-28 2024-10-11 02:45:48.000 1997-03-28 2024-10-11 02:45:48 +9949 9949 9950 994.9 1989.8000000000002 9949 1997-03-29 2024-10-11 02:45:49.000 1997-03-29 2024-10-11 02:45:49 +9951 9951 9952 995.1 1990.2 9951 1997-03-31 2024-10-11 02:45:51.000 1997-03-31 2024-10-11 02:45:51 +9952 9952 9953 995.2 1990.4 9952 1997-04-01 2024-10-11 02:45:52.000 1997-04-01 2024-10-11 02:45:52 +9953 9953 9954 995.3 1990.6000000000001 9953 1997-04-02 2024-10-11 02:45:53.000 1997-04-02 2024-10-11 02:45:53 +9954 9954 9955 995.4 1990.8000000000002 9954 1997-04-03 2024-10-11 02:45:54.000 1997-04-03 2024-10-11 02:45:54 +9956 9956 9957 995.6 1991.2 9956 1997-04-05 2024-10-11 02:45:56.000 1997-04-05 2024-10-11 02:45:56 +9957 9957 9958 995.7 1991.4 9957 1997-04-06 2024-10-11 02:45:57.000 1997-04-06 2024-10-11 02:45:57 +9958 9958 9959 995.8 1991.6000000000001 9958 1997-04-07 2024-10-11 02:45:58.000 1997-04-07 2024-10-11 02:45:58 +9959 9959 9960 995.9 1991.8000000000002 9959 1997-04-08 2024-10-11 02:45:59.000 1997-04-08 2024-10-11 02:45:59 +9961 9961 9962 996.1 1992.2 9961 1997-04-10 2024-10-11 02:46:01.000 1997-04-10 2024-10-11 02:46:01 +9962 9962 9963 996.2 1992.4 9962 1997-04-11 2024-10-11 02:46:02.000 1997-04-11 2024-10-11 02:46:02 +9963 9963 9964 996.3 1992.6000000000001 9963 1997-04-12 2024-10-11 02:46:03.000 1997-04-12 2024-10-11 02:46:03 +9964 9964 9965 996.4 1992.8000000000002 9964 1997-04-13 2024-10-11 02:46:04.000 1997-04-13 2024-10-11 02:46:04 +9966 9966 9967 996.6 1993.2 9966 1997-04-15 2024-10-11 02:46:06.000 1997-04-15 2024-10-11 02:46:06 +9967 9967 9968 996.7 1993.4 9967 1997-04-16 2024-10-11 02:46:07.000 1997-04-16 2024-10-11 02:46:07 +9968 9968 9969 996.8 1993.6000000000001 9968 1997-04-17 2024-10-11 02:46:08.000 1997-04-17 2024-10-11 02:46:08 +9969 9969 9970 996.9 1993.8000000000002 9969 1997-04-18 2024-10-11 02:46:09.000 1997-04-18 2024-10-11 02:46:09 +9971 9971 9972 997.1 1994.2 9971 1997-04-20 2024-10-11 02:46:11.000 1997-04-20 2024-10-11 02:46:11 +9972 9972 9973 997.2 1994.4 9972 1997-04-21 2024-10-11 02:46:12.000 1997-04-21 2024-10-11 02:46:12 +9973 9973 9974 997.3 1994.6000000000001 9973 1997-04-22 2024-10-11 02:46:13.000 1997-04-22 2024-10-11 02:46:13 +9974 9974 9975 997.4 1994.8000000000002 9974 1997-04-23 2024-10-11 02:46:14.000 1997-04-23 2024-10-11 02:46:14 +9976 9976 9977 997.6 1995.2 9976 1997-04-25 2024-10-11 02:46:16.000 1997-04-25 2024-10-11 02:46:16 +9977 9977 9978 997.7 1995.4 9977 1997-04-26 2024-10-11 02:46:17.000 1997-04-26 2024-10-11 02:46:17 +9978 9978 9979 997.8 1995.6000000000001 9978 1997-04-27 2024-10-11 02:46:18.000 1997-04-27 2024-10-11 02:46:18 +9979 9979 9980 997.9 1995.8000000000002 9979 1997-04-28 2024-10-11 02:46:19.000 1997-04-28 2024-10-11 02:46:19 +9981 9981 9982 998.1 1996.2 9981 1997-04-30 2024-10-11 02:46:21.000 1997-04-30 2024-10-11 02:46:21 +9982 9982 9983 998.2 1996.4 9982 1997-05-01 2024-10-11 02:46:22.000 1997-05-01 2024-10-11 02:46:22 +9983 9983 9984 998.3 1996.6000000000001 9983 1997-05-02 2024-10-11 02:46:23.000 1997-05-02 2024-10-11 02:46:23 +9984 9984 9985 998.4 1996.8000000000002 9984 1997-05-03 2024-10-11 02:46:24.000 1997-05-03 2024-10-11 02:46:24 +9986 9986 9987 998.6 1997.2 9986 1997-05-05 2024-10-11 02:46:26.000 1997-05-05 2024-10-11 02:46:26 +9987 9987 9988 998.7 1997.4 9987 1997-05-06 2024-10-11 02:46:27.000 1997-05-06 2024-10-11 02:46:27 +9988 9988 9989 998.8 1997.6000000000001 9988 1997-05-07 2024-10-11 02:46:28.000 1997-05-07 2024-10-11 02:46:28 +9989 9989 9990 998.9 1997.8000000000002 9989 1997-05-08 2024-10-11 02:46:29.000 1997-05-08 2024-10-11 02:46:29 +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +-- test datetime +select max(time64) from test_nullable_native_parquet; +2024-10-11 02:46:39.000 +-- test String +select max(string) from test_nullable_native_parquet; +9999 +select * from test_nullable_native_parquet where string = '1'; +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +select * from test_nullable_native_parquet where string in ('1','2','3'); +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +-- test date +select max(date) from test_nullable_native_parquet; +1997-05-18 +select * from test_nullable_native_parquet where date < '1970-01-10'; +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +select * from test_nullable_native_parquet where date <= '1970-01-10'; +1 1 2 0.1 0.2 1 1970-01-02 2024-10-11 00:00:01.000 1970-01-02 2024-10-11 00:00:01 +2 2 3 0.2 0.4 2 1970-01-03 2024-10-11 00:00:02.000 1970-01-03 2024-10-11 00:00:02 +3 3 4 0.3 0.6000000000000001 3 1970-01-04 2024-10-11 00:00:03.000 1970-01-04 2024-10-11 00:00:03 +4 4 5 0.4 0.8 4 1970-01-05 2024-10-11 00:00:04.000 1970-01-05 2024-10-11 00:00:04 +6 6 7 0.6 1.2000000000000002 6 1970-01-07 2024-10-11 00:00:06.000 1970-01-07 2024-10-11 00:00:06 +7 7 8 0.7 1.4000000000000001 7 1970-01-08 2024-10-11 00:00:07.000 1970-01-08 2024-10-11 00:00:07 +8 8 9 0.8 1.6 8 1970-01-09 2024-10-11 00:00:08.000 1970-01-09 2024-10-11 00:00:08 +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +select * from test_nullable_native_parquet where date between '1970-01-10' and '1970-01-20'; +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +11 11 12 1.1 2.2 11 1970-01-12 2024-10-11 00:00:11.000 1970-01-12 2024-10-11 00:00:11 +12 12 13 1.2 2.4000000000000004 12 1970-01-13 2024-10-11 00:00:12.000 1970-01-13 2024-10-11 00:00:12 +13 13 14 1.3 2.6 13 1970-01-14 2024-10-11 00:00:13.000 1970-01-14 2024-10-11 00:00:13 +14 14 15 1.4 2.8000000000000003 14 1970-01-15 2024-10-11 00:00:14.000 1970-01-15 2024-10-11 00:00:14 +16 16 17 1.6 3.2 16 1970-01-17 2024-10-11 00:00:16.000 1970-01-17 2024-10-11 00:00:16 +17 17 18 1.7 3.4000000000000004 17 1970-01-18 2024-10-11 00:00:17.000 1970-01-18 2024-10-11 00:00:17 +18 18 19 1.8 3.6 18 1970-01-19 2024-10-11 00:00:18.000 1970-01-19 2024-10-11 00:00:18 +19 19 20 1.9 3.8000000000000003 19 1970-01-20 2024-10-11 00:00:19.000 1970-01-20 2024-10-11 00:00:19 +select * from test_nullable_native_parquet where date > '1970-01-10'; +11 11 12 1.1 2.2 11 1970-01-12 2024-10-11 00:00:11.000 1970-01-12 2024-10-11 00:00:11 +12 12 13 1.2 2.4000000000000004 12 1970-01-13 2024-10-11 00:00:12.000 1970-01-13 2024-10-11 00:00:12 +13 13 14 1.3 2.6 13 1970-01-14 2024-10-11 00:00:13.000 1970-01-14 2024-10-11 00:00:13 +14 14 15 1.4 2.8000000000000003 14 1970-01-15 2024-10-11 00:00:14.000 1970-01-15 2024-10-11 00:00:14 +16 16 17 1.6 3.2 16 1970-01-17 2024-10-11 00:00:16.000 1970-01-17 2024-10-11 00:00:16 +17 17 18 1.7 3.4000000000000004 17 1970-01-18 2024-10-11 00:00:17.000 1970-01-18 2024-10-11 00:00:17 +18 18 19 1.8 3.6 18 1970-01-19 2024-10-11 00:00:18.000 1970-01-19 2024-10-11 00:00:18 +19 19 20 1.9 3.8000000000000003 19 1970-01-20 2024-10-11 00:00:19.000 1970-01-20 2024-10-11 00:00:19 +21 21 22 2.1 4.2 21 1970-01-22 2024-10-11 00:00:21.000 1970-01-22 2024-10-11 00:00:21 +22 22 23 2.2 4.4 22 1970-01-23 2024-10-11 00:00:22.000 1970-01-23 2024-10-11 00:00:22 +23 23 24 2.3 4.6000000000000005 23 1970-01-24 2024-10-11 00:00:23.000 1970-01-24 2024-10-11 00:00:23 +24 24 25 2.4 4.800000000000001 24 1970-01-25 2024-10-11 00:00:24.000 1970-01-25 2024-10-11 00:00:24 +26 26 27 2.6 5.2 26 1970-01-27 2024-10-11 00:00:26.000 1970-01-27 2024-10-11 00:00:26 +27 27 28 2.7 5.4 27 1970-01-28 2024-10-11 00:00:27.000 1970-01-28 2024-10-11 00:00:27 +28 28 29 2.8 5.6000000000000005 28 1970-01-29 2024-10-11 00:00:28.000 1970-01-29 2024-10-11 00:00:28 +29 29 30 2.9 5.800000000000001 29 1970-01-30 2024-10-11 00:00:29.000 1970-01-30 2024-10-11 00:00:29 +31 31 32 3.1 6.2 31 1970-02-01 2024-10-11 00:00:31.000 1970-02-01 2024-10-11 00:00:31 +32 32 33 3.2 6.4 32 1970-02-02 2024-10-11 00:00:32.000 1970-02-02 2024-10-11 00:00:32 +33 33 34 3.3 6.6000000000000005 33 1970-02-03 2024-10-11 00:00:33.000 1970-02-03 2024-10-11 00:00:33 +34 34 35 3.4 6.800000000000001 34 1970-02-04 2024-10-11 00:00:34.000 1970-02-04 2024-10-11 00:00:34 +36 36 37 3.6 7.2 36 1970-02-06 2024-10-11 00:00:36.000 1970-02-06 2024-10-11 00:00:36 +37 37 38 3.7 7.4 37 1970-02-07 2024-10-11 00:00:37.000 1970-02-07 2024-10-11 00:00:37 +38 38 39 3.8 7.6000000000000005 38 1970-02-08 2024-10-11 00:00:38.000 1970-02-08 2024-10-11 00:00:38 +39 39 40 3.9 7.800000000000001 39 1970-02-09 2024-10-11 00:00:39.000 1970-02-09 2024-10-11 00:00:39 +41 41 42 4.1 8.200000000000001 41 1970-02-11 2024-10-11 00:00:41.000 1970-02-11 2024-10-11 00:00:41 +42 42 43 4.2 8.4 42 1970-02-12 2024-10-11 00:00:42.000 1970-02-12 2024-10-11 00:00:42 +43 43 44 4.3 8.6 43 1970-02-13 2024-10-11 00:00:43.000 1970-02-13 2024-10-11 00:00:43 +44 44 45 4.4 8.8 44 1970-02-14 2024-10-11 00:00:44.000 1970-02-14 2024-10-11 00:00:44 +46 46 47 4.6 9.200000000000001 46 1970-02-16 2024-10-11 00:00:46.000 1970-02-16 2024-10-11 00:00:46 +47 47 48 4.7 9.4 47 1970-02-17 2024-10-11 00:00:47.000 1970-02-17 2024-10-11 00:00:47 +48 48 49 4.8 9.600000000000001 48 1970-02-18 2024-10-11 00:00:48.000 1970-02-18 2024-10-11 00:00:48 +49 49 50 4.9 9.8 49 1970-02-19 2024-10-11 00:00:49.000 1970-02-19 2024-10-11 00:00:49 +51 51 52 5.1 10.200000000000001 51 1970-02-21 2024-10-11 00:00:51.000 1970-02-21 2024-10-11 00:00:51 +52 52 53 5.2 10.4 52 1970-02-22 2024-10-11 00:00:52.000 1970-02-22 2024-10-11 00:00:52 +53 53 54 5.3 10.600000000000001 53 1970-02-23 2024-10-11 00:00:53.000 1970-02-23 2024-10-11 00:00:53 +54 54 55 5.4 10.8 54 1970-02-24 2024-10-11 00:00:54.000 1970-02-24 2024-10-11 00:00:54 +56 56 57 5.6 11.200000000000001 56 1970-02-26 2024-10-11 00:00:56.000 1970-02-26 2024-10-11 00:00:56 +57 57 58 5.7 11.4 57 1970-02-27 2024-10-11 00:00:57.000 1970-02-27 2024-10-11 00:00:57 +58 58 59 5.8 11.600000000000001 58 1970-02-28 2024-10-11 00:00:58.000 1970-02-28 2024-10-11 00:00:58 +59 59 60 5.9 11.8 59 1970-03-01 2024-10-11 00:00:59.000 1970-03-01 2024-10-11 00:00:59 +61 61 62 6.1 12.200000000000001 61 1970-03-03 2024-10-11 00:01:01.000 1970-03-03 2024-10-11 00:01:01 +62 62 63 6.2 12.4 62 1970-03-04 2024-10-11 00:01:02.000 1970-03-04 2024-10-11 00:01:02 +63 63 64 6.3 12.600000000000001 63 1970-03-05 2024-10-11 00:01:03.000 1970-03-05 2024-10-11 00:01:03 +64 64 65 6.4 12.8 64 1970-03-06 2024-10-11 00:01:04.000 1970-03-06 2024-10-11 00:01:04 +66 66 67 6.6 13.200000000000001 66 1970-03-08 2024-10-11 00:01:06.000 1970-03-08 2024-10-11 00:01:06 +67 67 68 6.7 13.4 67 1970-03-09 2024-10-11 00:01:07.000 1970-03-09 2024-10-11 00:01:07 +68 68 69 6.8 13.600000000000001 68 1970-03-10 2024-10-11 00:01:08.000 1970-03-10 2024-10-11 00:01:08 +69 69 70 6.9 13.8 69 1970-03-11 2024-10-11 00:01:09.000 1970-03-11 2024-10-11 00:01:09 +71 71 72 7.1 14.200000000000001 71 1970-03-13 2024-10-11 00:01:11.000 1970-03-13 2024-10-11 00:01:11 +72 72 73 7.2 14.4 72 1970-03-14 2024-10-11 00:01:12.000 1970-03-14 2024-10-11 00:01:12 +73 73 74 7.3 14.600000000000001 73 1970-03-15 2024-10-11 00:01:13.000 1970-03-15 2024-10-11 00:01:13 +74 74 75 7.4 14.8 74 1970-03-16 2024-10-11 00:01:14.000 1970-03-16 2024-10-11 00:01:14 +76 76 77 7.6 15.200000000000001 76 1970-03-18 2024-10-11 00:01:16.000 1970-03-18 2024-10-11 00:01:16 +77 77 78 7.7 15.4 77 1970-03-19 2024-10-11 00:01:17.000 1970-03-19 2024-10-11 00:01:17 +78 78 79 7.8 15.600000000000001 78 1970-03-20 2024-10-11 00:01:18.000 1970-03-20 2024-10-11 00:01:18 +79 79 80 7.9 15.8 79 1970-03-21 2024-10-11 00:01:19.000 1970-03-21 2024-10-11 00:01:19 +81 81 82 8.1 16.2 81 1970-03-23 2024-10-11 00:01:21.000 1970-03-23 2024-10-11 00:01:21 +82 82 83 8.2 16.400000000000002 82 1970-03-24 2024-10-11 00:01:22.000 1970-03-24 2024-10-11 00:01:22 +83 83 84 8.3 16.6 83 1970-03-25 2024-10-11 00:01:23.000 1970-03-25 2024-10-11 00:01:23 +84 84 85 8.4 16.8 84 1970-03-26 2024-10-11 00:01:24.000 1970-03-26 2024-10-11 00:01:24 +86 86 87 8.6 17.2 86 1970-03-28 2024-10-11 00:01:26.000 1970-03-28 2024-10-11 00:01:26 +87 87 88 8.7 17.400000000000002 87 1970-03-29 2024-10-11 00:01:27.000 1970-03-29 2024-10-11 00:01:27 +88 88 89 8.8 17.6 88 1970-03-30 2024-10-11 00:01:28.000 1970-03-30 2024-10-11 00:01:28 +89 89 90 8.9 17.8 89 1970-03-31 2024-10-11 00:01:29.000 1970-03-31 2024-10-11 00:01:29 +91 91 92 9.1 18.2 91 1970-04-02 2024-10-11 00:01:31.000 1970-04-02 2024-10-11 00:01:31 +92 92 93 9.2 18.400000000000002 92 1970-04-03 2024-10-11 00:01:32.000 1970-04-03 2024-10-11 00:01:32 +93 93 94 9.3 18.6 93 1970-04-04 2024-10-11 00:01:33.000 1970-04-04 2024-10-11 00:01:33 +94 94 95 9.4 18.8 94 1970-04-05 2024-10-11 00:01:34.000 1970-04-05 2024-10-11 00:01:34 +96 96 97 9.6 19.200000000000003 96 1970-04-07 2024-10-11 00:01:36.000 1970-04-07 2024-10-11 00:01:36 +97 97 98 9.7 19.400000000000002 97 1970-04-08 2024-10-11 00:01:37.000 1970-04-08 2024-10-11 00:01:37 +98 98 99 9.8 19.6 98 1970-04-09 2024-10-11 00:01:38.000 1970-04-09 2024-10-11 00:01:38 +99 99 100 9.9 19.8 99 1970-04-10 2024-10-11 00:01:39.000 1970-04-10 2024-10-11 00:01:39 +101 101 102 10.1 20.200000000000003 101 1970-04-12 2024-10-11 00:01:41.000 1970-04-12 2024-10-11 00:01:41 +102 102 103 10.2 20.400000000000002 102 1970-04-13 2024-10-11 00:01:42.000 1970-04-13 2024-10-11 00:01:42 +103 103 104 10.3 20.6 103 1970-04-14 2024-10-11 00:01:43.000 1970-04-14 2024-10-11 00:01:43 +104 104 105 10.4 20.8 104 1970-04-15 2024-10-11 00:01:44.000 1970-04-15 2024-10-11 00:01:44 +106 106 107 10.6 21.200000000000003 106 1970-04-17 2024-10-11 00:01:46.000 1970-04-17 2024-10-11 00:01:46 +107 107 108 10.7 21.400000000000002 107 1970-04-18 2024-10-11 00:01:47.000 1970-04-18 2024-10-11 00:01:47 +108 108 109 10.8 21.6 108 1970-04-19 2024-10-11 00:01:48.000 1970-04-19 2024-10-11 00:01:48 +109 109 110 10.9 21.8 109 1970-04-20 2024-10-11 00:01:49.000 1970-04-20 2024-10-11 00:01:49 +111 111 112 11.1 22.200000000000003 111 1970-04-22 2024-10-11 00:01:51.000 1970-04-22 2024-10-11 00:01:51 +112 112 113 11.2 22.400000000000002 112 1970-04-23 2024-10-11 00:01:52.000 1970-04-23 2024-10-11 00:01:52 +113 113 114 11.3 22.6 113 1970-04-24 2024-10-11 00:01:53.000 1970-04-24 2024-10-11 00:01:53 +114 114 115 11.4 22.8 114 1970-04-25 2024-10-11 00:01:54.000 1970-04-25 2024-10-11 00:01:54 +116 116 117 11.6 23.200000000000003 116 1970-04-27 2024-10-11 00:01:56.000 1970-04-27 2024-10-11 00:01:56 +117 117 118 11.7 23.400000000000002 117 1970-04-28 2024-10-11 00:01:57.000 1970-04-28 2024-10-11 00:01:57 +118 118 119 11.8 23.6 118 1970-04-29 2024-10-11 00:01:58.000 1970-04-29 2024-10-11 00:01:58 +119 119 120 11.9 23.8 119 1970-04-30 2024-10-11 00:01:59.000 1970-04-30 2024-10-11 00:01:59 +121 121 122 12.1 24.200000000000003 121 1970-05-02 2024-10-11 00:02:01.000 1970-05-02 2024-10-11 00:02:01 +122 122 123 12.2 24.400000000000002 122 1970-05-03 2024-10-11 00:02:02.000 1970-05-03 2024-10-11 00:02:02 +123 123 124 12.3 24.6 123 1970-05-04 2024-10-11 00:02:03.000 1970-05-04 2024-10-11 00:02:03 +124 124 125 12.4 24.8 124 1970-05-05 2024-10-11 00:02:04.000 1970-05-05 2024-10-11 00:02:04 +126 126 127 12.6 25.200000000000003 126 1970-05-07 2024-10-11 00:02:06.000 1970-05-07 2024-10-11 00:02:06 +127 127 128 12.7 25.400000000000002 127 1970-05-08 2024-10-11 00:02:07.000 1970-05-08 2024-10-11 00:02:07 +128 128 129 12.8 25.6 128 1970-05-09 2024-10-11 00:02:08.000 1970-05-09 2024-10-11 00:02:08 +129 129 130 12.9 25.8 129 1970-05-10 2024-10-11 00:02:09.000 1970-05-10 2024-10-11 00:02:09 +131 131 132 13.1 26.200000000000003 131 1970-05-12 2024-10-11 00:02:11.000 1970-05-12 2024-10-11 00:02:11 +132 132 133 13.2 26.400000000000002 132 1970-05-13 2024-10-11 00:02:12.000 1970-05-13 2024-10-11 00:02:12 +133 133 134 13.3 26.6 133 1970-05-14 2024-10-11 00:02:13.000 1970-05-14 2024-10-11 00:02:13 +134 134 135 13.4 26.8 134 1970-05-15 2024-10-11 00:02:14.000 1970-05-15 2024-10-11 00:02:14 +136 136 137 13.6 27.200000000000003 136 1970-05-17 2024-10-11 00:02:16.000 1970-05-17 2024-10-11 00:02:16 +137 137 138 13.7 27.400000000000002 137 1970-05-18 2024-10-11 00:02:17.000 1970-05-18 2024-10-11 00:02:17 +138 138 139 13.8 27.6 138 1970-05-19 2024-10-11 00:02:18.000 1970-05-19 2024-10-11 00:02:18 +139 139 140 13.9 27.8 139 1970-05-20 2024-10-11 00:02:19.000 1970-05-20 2024-10-11 00:02:19 +141 141 142 14.1 28.200000000000003 141 1970-05-22 2024-10-11 00:02:21.000 1970-05-22 2024-10-11 00:02:21 +142 142 143 14.2 28.400000000000002 142 1970-05-23 2024-10-11 00:02:22.000 1970-05-23 2024-10-11 00:02:22 +143 143 144 14.3 28.6 143 1970-05-24 2024-10-11 00:02:23.000 1970-05-24 2024-10-11 00:02:23 +144 144 145 14.4 28.8 144 1970-05-25 2024-10-11 00:02:24.000 1970-05-25 2024-10-11 00:02:24 +146 146 147 14.6 29.200000000000003 146 1970-05-27 2024-10-11 00:02:26.000 1970-05-27 2024-10-11 00:02:26 +147 147 148 14.7 29.400000000000002 147 1970-05-28 2024-10-11 00:02:27.000 1970-05-28 2024-10-11 00:02:27 +148 148 149 14.8 29.6 148 1970-05-29 2024-10-11 00:02:28.000 1970-05-29 2024-10-11 00:02:28 +149 149 150 14.9 29.8 149 1970-05-30 2024-10-11 00:02:29.000 1970-05-30 2024-10-11 00:02:29 +151 151 152 15.1 30.200000000000003 151 1970-06-01 2024-10-11 00:02:31.000 1970-06-01 2024-10-11 00:02:31 +152 152 153 15.2 30.400000000000002 152 1970-06-02 2024-10-11 00:02:32.000 1970-06-02 2024-10-11 00:02:32 +153 153 154 15.3 30.6 153 1970-06-03 2024-10-11 00:02:33.000 1970-06-03 2024-10-11 00:02:33 +154 154 155 15.4 30.8 154 1970-06-04 2024-10-11 00:02:34.000 1970-06-04 2024-10-11 00:02:34 +156 156 157 15.6 31.200000000000003 156 1970-06-06 2024-10-11 00:02:36.000 1970-06-06 2024-10-11 00:02:36 +157 157 158 15.7 31.400000000000002 157 1970-06-07 2024-10-11 00:02:37.000 1970-06-07 2024-10-11 00:02:37 +158 158 159 15.8 31.6 158 1970-06-08 2024-10-11 00:02:38.000 1970-06-08 2024-10-11 00:02:38 +159 159 160 15.9 31.8 159 1970-06-09 2024-10-11 00:02:39.000 1970-06-09 2024-10-11 00:02:39 +161 161 162 16.1 32.2 161 1970-06-11 2024-10-11 00:02:41.000 1970-06-11 2024-10-11 00:02:41 +162 162 163 16.2 32.4 162 1970-06-12 2024-10-11 00:02:42.000 1970-06-12 2024-10-11 00:02:42 +163 163 164 16.3 32.6 163 1970-06-13 2024-10-11 00:02:43.000 1970-06-13 2024-10-11 00:02:43 +164 164 165 16.4 32.800000000000004 164 1970-06-14 2024-10-11 00:02:44.000 1970-06-14 2024-10-11 00:02:44 +166 166 167 16.6 33.2 166 1970-06-16 2024-10-11 00:02:46.000 1970-06-16 2024-10-11 00:02:46 +167 167 168 16.7 33.4 167 1970-06-17 2024-10-11 00:02:47.000 1970-06-17 2024-10-11 00:02:47 +168 168 169 16.8 33.6 168 1970-06-18 2024-10-11 00:02:48.000 1970-06-18 2024-10-11 00:02:48 +169 169 170 16.9 33.800000000000004 169 1970-06-19 2024-10-11 00:02:49.000 1970-06-19 2024-10-11 00:02:49 +171 171 172 17.1 34.2 171 1970-06-21 2024-10-11 00:02:51.000 1970-06-21 2024-10-11 00:02:51 +172 172 173 17.2 34.4 172 1970-06-22 2024-10-11 00:02:52.000 1970-06-22 2024-10-11 00:02:52 +173 173 174 17.3 34.6 173 1970-06-23 2024-10-11 00:02:53.000 1970-06-23 2024-10-11 00:02:53 +174 174 175 17.4 34.800000000000004 174 1970-06-24 2024-10-11 00:02:54.000 1970-06-24 2024-10-11 00:02:54 +176 176 177 17.6 35.2 176 1970-06-26 2024-10-11 00:02:56.000 1970-06-26 2024-10-11 00:02:56 +177 177 178 17.7 35.4 177 1970-06-27 2024-10-11 00:02:57.000 1970-06-27 2024-10-11 00:02:57 +178 178 179 17.8 35.6 178 1970-06-28 2024-10-11 00:02:58.000 1970-06-28 2024-10-11 00:02:58 +179 179 180 17.9 35.800000000000004 179 1970-06-29 2024-10-11 00:02:59.000 1970-06-29 2024-10-11 00:02:59 +181 181 182 18.1 36.2 181 1970-07-01 2024-10-11 00:03:01.000 1970-07-01 2024-10-11 00:03:01 +182 182 183 18.2 36.4 182 1970-07-02 2024-10-11 00:03:02.000 1970-07-02 2024-10-11 00:03:02 +183 183 184 18.3 36.6 183 1970-07-03 2024-10-11 00:03:03.000 1970-07-03 2024-10-11 00:03:03 +184 184 185 18.4 36.800000000000004 184 1970-07-04 2024-10-11 00:03:04.000 1970-07-04 2024-10-11 00:03:04 +186 186 187 18.6 37.2 186 1970-07-06 2024-10-11 00:03:06.000 1970-07-06 2024-10-11 00:03:06 +187 187 188 18.7 37.4 187 1970-07-07 2024-10-11 00:03:07.000 1970-07-07 2024-10-11 00:03:07 +188 188 189 18.8 37.6 188 1970-07-08 2024-10-11 00:03:08.000 1970-07-08 2024-10-11 00:03:08 +189 189 190 18.9 37.800000000000004 189 1970-07-09 2024-10-11 00:03:09.000 1970-07-09 2024-10-11 00:03:09 +191 191 192 19.1 38.2 191 1970-07-11 2024-10-11 00:03:11.000 1970-07-11 2024-10-11 00:03:11 +192 192 193 19.2 38.400000000000006 192 1970-07-12 2024-10-11 00:03:12.000 1970-07-12 2024-10-11 00:03:12 +193 193 194 19.3 38.6 193 1970-07-13 2024-10-11 00:03:13.000 1970-07-13 2024-10-11 00:03:13 +194 194 195 19.4 38.800000000000004 194 1970-07-14 2024-10-11 00:03:14.000 1970-07-14 2024-10-11 00:03:14 +196 196 197 19.6 39.2 196 1970-07-16 2024-10-11 00:03:16.000 1970-07-16 2024-10-11 00:03:16 +197 197 198 19.7 39.400000000000006 197 1970-07-17 2024-10-11 00:03:17.000 1970-07-17 2024-10-11 00:03:17 +198 198 199 19.8 39.6 198 1970-07-18 2024-10-11 00:03:18.000 1970-07-18 2024-10-11 00:03:18 +199 199 200 19.9 39.800000000000004 199 1970-07-19 2024-10-11 00:03:19.000 1970-07-19 2024-10-11 00:03:19 +201 201 202 20.1 40.2 201 1970-07-21 2024-10-11 00:03:21.000 1970-07-21 2024-10-11 00:03:21 +202 202 203 20.2 40.400000000000006 202 1970-07-22 2024-10-11 00:03:22.000 1970-07-22 2024-10-11 00:03:22 +203 203 204 20.3 40.6 203 1970-07-23 2024-10-11 00:03:23.000 1970-07-23 2024-10-11 00:03:23 +204 204 205 20.4 40.800000000000004 204 1970-07-24 2024-10-11 00:03:24.000 1970-07-24 2024-10-11 00:03:24 +206 206 207 20.6 41.2 206 1970-07-26 2024-10-11 00:03:26.000 1970-07-26 2024-10-11 00:03:26 +207 207 208 20.7 41.400000000000006 207 1970-07-27 2024-10-11 00:03:27.000 1970-07-27 2024-10-11 00:03:27 +208 208 209 20.8 41.6 208 1970-07-28 2024-10-11 00:03:28.000 1970-07-28 2024-10-11 00:03:28 +209 209 210 20.9 41.800000000000004 209 1970-07-29 2024-10-11 00:03:29.000 1970-07-29 2024-10-11 00:03:29 +211 211 212 21.1 42.2 211 1970-07-31 2024-10-11 00:03:31.000 1970-07-31 2024-10-11 00:03:31 +212 212 213 21.2 42.400000000000006 212 1970-08-01 2024-10-11 00:03:32.000 1970-08-01 2024-10-11 00:03:32 +213 213 214 21.3 42.6 213 1970-08-02 2024-10-11 00:03:33.000 1970-08-02 2024-10-11 00:03:33 +214 214 215 21.4 42.800000000000004 214 1970-08-03 2024-10-11 00:03:34.000 1970-08-03 2024-10-11 00:03:34 +216 216 217 21.6 43.2 216 1970-08-05 2024-10-11 00:03:36.000 1970-08-05 2024-10-11 00:03:36 +217 217 218 21.7 43.400000000000006 217 1970-08-06 2024-10-11 00:03:37.000 1970-08-06 2024-10-11 00:03:37 +218 218 219 21.8 43.6 218 1970-08-07 2024-10-11 00:03:38.000 1970-08-07 2024-10-11 00:03:38 +219 219 220 21.9 43.800000000000004 219 1970-08-08 2024-10-11 00:03:39.000 1970-08-08 2024-10-11 00:03:39 +221 221 222 22.1 44.2 221 1970-08-10 2024-10-11 00:03:41.000 1970-08-10 2024-10-11 00:03:41 +222 222 223 22.2 44.400000000000006 222 1970-08-11 2024-10-11 00:03:42.000 1970-08-11 2024-10-11 00:03:42 +223 223 224 22.3 44.6 223 1970-08-12 2024-10-11 00:03:43.000 1970-08-12 2024-10-11 00:03:43 +224 224 225 22.4 44.800000000000004 224 1970-08-13 2024-10-11 00:03:44.000 1970-08-13 2024-10-11 00:03:44 +226 226 227 22.6 45.2 226 1970-08-15 2024-10-11 00:03:46.000 1970-08-15 2024-10-11 00:03:46 +227 227 228 22.7 45.400000000000006 227 1970-08-16 2024-10-11 00:03:47.000 1970-08-16 2024-10-11 00:03:47 +228 228 229 22.8 45.6 228 1970-08-17 2024-10-11 00:03:48.000 1970-08-17 2024-10-11 00:03:48 +229 229 230 22.9 45.800000000000004 229 1970-08-18 2024-10-11 00:03:49.000 1970-08-18 2024-10-11 00:03:49 +231 231 232 23.1 46.2 231 1970-08-20 2024-10-11 00:03:51.000 1970-08-20 2024-10-11 00:03:51 +232 232 233 23.2 46.400000000000006 232 1970-08-21 2024-10-11 00:03:52.000 1970-08-21 2024-10-11 00:03:52 +233 233 234 23.3 46.6 233 1970-08-22 2024-10-11 00:03:53.000 1970-08-22 2024-10-11 00:03:53 +234 234 235 23.4 46.800000000000004 234 1970-08-23 2024-10-11 00:03:54.000 1970-08-23 2024-10-11 00:03:54 +236 236 237 23.6 47.2 236 1970-08-25 2024-10-11 00:03:56.000 1970-08-25 2024-10-11 00:03:56 +237 237 238 23.7 47.400000000000006 237 1970-08-26 2024-10-11 00:03:57.000 1970-08-26 2024-10-11 00:03:57 +238 238 239 23.8 47.6 238 1970-08-27 2024-10-11 00:03:58.000 1970-08-27 2024-10-11 00:03:58 +239 239 240 23.9 47.800000000000004 239 1970-08-28 2024-10-11 00:03:59.000 1970-08-28 2024-10-11 00:03:59 +241 241 242 24.1 48.2 241 1970-08-30 2024-10-11 00:04:01.000 1970-08-30 2024-10-11 00:04:01 +242 242 243 24.2 48.400000000000006 242 1970-08-31 2024-10-11 00:04:02.000 1970-08-31 2024-10-11 00:04:02 +243 243 244 24.3 48.6 243 1970-09-01 2024-10-11 00:04:03.000 1970-09-01 2024-10-11 00:04:03 +244 244 245 24.4 48.800000000000004 244 1970-09-02 2024-10-11 00:04:04.000 1970-09-02 2024-10-11 00:04:04 +246 246 247 24.6 49.2 246 1970-09-04 2024-10-11 00:04:06.000 1970-09-04 2024-10-11 00:04:06 +247 247 248 24.7 49.400000000000006 247 1970-09-05 2024-10-11 00:04:07.000 1970-09-05 2024-10-11 00:04:07 +248 248 249 24.8 49.6 248 1970-09-06 2024-10-11 00:04:08.000 1970-09-06 2024-10-11 00:04:08 +249 249 250 24.9 49.800000000000004 249 1970-09-07 2024-10-11 00:04:09.000 1970-09-07 2024-10-11 00:04:09 +251 251 252 25.1 50.2 251 1970-09-09 2024-10-11 00:04:11.000 1970-09-09 2024-10-11 00:04:11 +252 252 253 25.2 50.400000000000006 252 1970-09-10 2024-10-11 00:04:12.000 1970-09-10 2024-10-11 00:04:12 +253 253 254 25.3 50.6 253 1970-09-11 2024-10-11 00:04:13.000 1970-09-11 2024-10-11 00:04:13 +254 254 255 25.4 50.800000000000004 254 1970-09-12 2024-10-11 00:04:14.000 1970-09-12 2024-10-11 00:04:14 +256 256 257 25.6 51.2 256 1970-09-14 2024-10-11 00:04:16.000 1970-09-14 2024-10-11 00:04:16 +257 257 258 25.7 51.400000000000006 257 1970-09-15 2024-10-11 00:04:17.000 1970-09-15 2024-10-11 00:04:17 +258 258 259 25.8 51.6 258 1970-09-16 2024-10-11 00:04:18.000 1970-09-16 2024-10-11 00:04:18 +259 259 260 25.9 51.800000000000004 259 1970-09-17 2024-10-11 00:04:19.000 1970-09-17 2024-10-11 00:04:19 +261 261 262 26.1 52.2 261 1970-09-19 2024-10-11 00:04:21.000 1970-09-19 2024-10-11 00:04:21 +262 262 263 26.2 52.400000000000006 262 1970-09-20 2024-10-11 00:04:22.000 1970-09-20 2024-10-11 00:04:22 +263 263 264 26.3 52.6 263 1970-09-21 2024-10-11 00:04:23.000 1970-09-21 2024-10-11 00:04:23 +264 264 265 26.4 52.800000000000004 264 1970-09-22 2024-10-11 00:04:24.000 1970-09-22 2024-10-11 00:04:24 +266 266 267 26.6 53.2 266 1970-09-24 2024-10-11 00:04:26.000 1970-09-24 2024-10-11 00:04:26 +267 267 268 26.7 53.400000000000006 267 1970-09-25 2024-10-11 00:04:27.000 1970-09-25 2024-10-11 00:04:27 +268 268 269 26.8 53.6 268 1970-09-26 2024-10-11 00:04:28.000 1970-09-26 2024-10-11 00:04:28 +269 269 270 26.9 53.800000000000004 269 1970-09-27 2024-10-11 00:04:29.000 1970-09-27 2024-10-11 00:04:29 +271 271 272 27.1 54.2 271 1970-09-29 2024-10-11 00:04:31.000 1970-09-29 2024-10-11 00:04:31 +272 272 273 27.2 54.400000000000006 272 1970-09-30 2024-10-11 00:04:32.000 1970-09-30 2024-10-11 00:04:32 +273 273 274 27.3 54.6 273 1970-10-01 2024-10-11 00:04:33.000 1970-10-01 2024-10-11 00:04:33 +274 274 275 27.4 54.800000000000004 274 1970-10-02 2024-10-11 00:04:34.000 1970-10-02 2024-10-11 00:04:34 +276 276 277 27.6 55.2 276 1970-10-04 2024-10-11 00:04:36.000 1970-10-04 2024-10-11 00:04:36 +277 277 278 27.7 55.400000000000006 277 1970-10-05 2024-10-11 00:04:37.000 1970-10-05 2024-10-11 00:04:37 +278 278 279 27.8 55.6 278 1970-10-06 2024-10-11 00:04:38.000 1970-10-06 2024-10-11 00:04:38 +279 279 280 27.9 55.800000000000004 279 1970-10-07 2024-10-11 00:04:39.000 1970-10-07 2024-10-11 00:04:39 +281 281 282 28.1 56.2 281 1970-10-09 2024-10-11 00:04:41.000 1970-10-09 2024-10-11 00:04:41 +282 282 283 28.2 56.400000000000006 282 1970-10-10 2024-10-11 00:04:42.000 1970-10-10 2024-10-11 00:04:42 +283 283 284 28.3 56.6 283 1970-10-11 2024-10-11 00:04:43.000 1970-10-11 2024-10-11 00:04:43 +284 284 285 28.4 56.800000000000004 284 1970-10-12 2024-10-11 00:04:44.000 1970-10-12 2024-10-11 00:04:44 +286 286 287 28.6 57.2 286 1970-10-14 2024-10-11 00:04:46.000 1970-10-14 2024-10-11 00:04:46 +287 287 288 28.7 57.400000000000006 287 1970-10-15 2024-10-11 00:04:47.000 1970-10-15 2024-10-11 00:04:47 +288 288 289 28.8 57.6 288 1970-10-16 2024-10-11 00:04:48.000 1970-10-16 2024-10-11 00:04:48 +289 289 290 28.9 57.800000000000004 289 1970-10-17 2024-10-11 00:04:49.000 1970-10-17 2024-10-11 00:04:49 +291 291 292 29.1 58.2 291 1970-10-19 2024-10-11 00:04:51.000 1970-10-19 2024-10-11 00:04:51 +292 292 293 29.2 58.400000000000006 292 1970-10-20 2024-10-11 00:04:52.000 1970-10-20 2024-10-11 00:04:52 +293 293 294 29.3 58.6 293 1970-10-21 2024-10-11 00:04:53.000 1970-10-21 2024-10-11 00:04:53 +294 294 295 29.4 58.800000000000004 294 1970-10-22 2024-10-11 00:04:54.000 1970-10-22 2024-10-11 00:04:54 +296 296 297 29.6 59.2 296 1970-10-24 2024-10-11 00:04:56.000 1970-10-24 2024-10-11 00:04:56 +297 297 298 29.7 59.400000000000006 297 1970-10-25 2024-10-11 00:04:57.000 1970-10-25 2024-10-11 00:04:57 +298 298 299 29.8 59.6 298 1970-10-26 2024-10-11 00:04:58.000 1970-10-26 2024-10-11 00:04:58 +299 299 300 29.9 59.800000000000004 299 1970-10-27 2024-10-11 00:04:59.000 1970-10-27 2024-10-11 00:04:59 +301 301 302 30.1 60.2 301 1970-10-29 2024-10-11 00:05:01.000 1970-10-29 2024-10-11 00:05:01 +302 302 303 30.2 60.400000000000006 302 1970-10-30 2024-10-11 00:05:02.000 1970-10-30 2024-10-11 00:05:02 +303 303 304 30.3 60.6 303 1970-10-31 2024-10-11 00:05:03.000 1970-10-31 2024-10-11 00:05:03 +304 304 305 30.4 60.800000000000004 304 1970-11-01 2024-10-11 00:05:04.000 1970-11-01 2024-10-11 00:05:04 +306 306 307 30.6 61.2 306 1970-11-03 2024-10-11 00:05:06.000 1970-11-03 2024-10-11 00:05:06 +307 307 308 30.7 61.400000000000006 307 1970-11-04 2024-10-11 00:05:07.000 1970-11-04 2024-10-11 00:05:07 +308 308 309 30.8 61.6 308 1970-11-05 2024-10-11 00:05:08.000 1970-11-05 2024-10-11 00:05:08 +309 309 310 30.9 61.800000000000004 309 1970-11-06 2024-10-11 00:05:09.000 1970-11-06 2024-10-11 00:05:09 +311 311 312 31.1 62.2 311 1970-11-08 2024-10-11 00:05:11.000 1970-11-08 2024-10-11 00:05:11 +312 312 313 31.2 62.400000000000006 312 1970-11-09 2024-10-11 00:05:12.000 1970-11-09 2024-10-11 00:05:12 +313 313 314 31.3 62.6 313 1970-11-10 2024-10-11 00:05:13.000 1970-11-10 2024-10-11 00:05:13 +314 314 315 31.4 62.800000000000004 314 1970-11-11 2024-10-11 00:05:14.000 1970-11-11 2024-10-11 00:05:14 +316 316 317 31.6 63.2 316 1970-11-13 2024-10-11 00:05:16.000 1970-11-13 2024-10-11 00:05:16 +317 317 318 31.7 63.400000000000006 317 1970-11-14 2024-10-11 00:05:17.000 1970-11-14 2024-10-11 00:05:17 +318 318 319 31.8 63.6 318 1970-11-15 2024-10-11 00:05:18.000 1970-11-15 2024-10-11 00:05:18 +319 319 320 31.9 63.800000000000004 319 1970-11-16 2024-10-11 00:05:19.000 1970-11-16 2024-10-11 00:05:19 +321 321 322 32.1 64.2 321 1970-11-18 2024-10-11 00:05:21.000 1970-11-18 2024-10-11 00:05:21 +322 322 323 32.2 64.4 322 1970-11-19 2024-10-11 00:05:22.000 1970-11-19 2024-10-11 00:05:22 +323 323 324 32.3 64.60000000000001 323 1970-11-20 2024-10-11 00:05:23.000 1970-11-20 2024-10-11 00:05:23 +324 324 325 32.4 64.8 324 1970-11-21 2024-10-11 00:05:24.000 1970-11-21 2024-10-11 00:05:24 +326 326 327 32.6 65.2 326 1970-11-23 2024-10-11 00:05:26.000 1970-11-23 2024-10-11 00:05:26 +327 327 328 32.7 65.4 327 1970-11-24 2024-10-11 00:05:27.000 1970-11-24 2024-10-11 00:05:27 +328 328 329 32.8 65.60000000000001 328 1970-11-25 2024-10-11 00:05:28.000 1970-11-25 2024-10-11 00:05:28 +329 329 330 32.9 65.8 329 1970-11-26 2024-10-11 00:05:29.000 1970-11-26 2024-10-11 00:05:29 +331 331 332 33.1 66.2 331 1970-11-28 2024-10-11 00:05:31.000 1970-11-28 2024-10-11 00:05:31 +332 332 333 33.2 66.4 332 1970-11-29 2024-10-11 00:05:32.000 1970-11-29 2024-10-11 00:05:32 +333 333 334 33.3 66.60000000000001 333 1970-11-30 2024-10-11 00:05:33.000 1970-11-30 2024-10-11 00:05:33 +334 334 335 33.4 66.8 334 1970-12-01 2024-10-11 00:05:34.000 1970-12-01 2024-10-11 00:05:34 +336 336 337 33.6 67.2 336 1970-12-03 2024-10-11 00:05:36.000 1970-12-03 2024-10-11 00:05:36 +337 337 338 33.7 67.4 337 1970-12-04 2024-10-11 00:05:37.000 1970-12-04 2024-10-11 00:05:37 +338 338 339 33.8 67.60000000000001 338 1970-12-05 2024-10-11 00:05:38.000 1970-12-05 2024-10-11 00:05:38 +339 339 340 33.9 67.8 339 1970-12-06 2024-10-11 00:05:39.000 1970-12-06 2024-10-11 00:05:39 +341 341 342 34.1 68.2 341 1970-12-08 2024-10-11 00:05:41.000 1970-12-08 2024-10-11 00:05:41 +342 342 343 34.2 68.4 342 1970-12-09 2024-10-11 00:05:42.000 1970-12-09 2024-10-11 00:05:42 +343 343 344 34.3 68.60000000000001 343 1970-12-10 2024-10-11 00:05:43.000 1970-12-10 2024-10-11 00:05:43 +344 344 345 34.4 68.8 344 1970-12-11 2024-10-11 00:05:44.000 1970-12-11 2024-10-11 00:05:44 +346 346 347 34.6 69.2 346 1970-12-13 2024-10-11 00:05:46.000 1970-12-13 2024-10-11 00:05:46 +347 347 348 34.7 69.4 347 1970-12-14 2024-10-11 00:05:47.000 1970-12-14 2024-10-11 00:05:47 +348 348 349 34.8 69.60000000000001 348 1970-12-15 2024-10-11 00:05:48.000 1970-12-15 2024-10-11 00:05:48 +349 349 350 34.9 69.8 349 1970-12-16 2024-10-11 00:05:49.000 1970-12-16 2024-10-11 00:05:49 +351 351 352 35.1 70.2 351 1970-12-18 2024-10-11 00:05:51.000 1970-12-18 2024-10-11 00:05:51 +352 352 353 35.2 70.4 352 1970-12-19 2024-10-11 00:05:52.000 1970-12-19 2024-10-11 00:05:52 +353 353 354 35.3 70.60000000000001 353 1970-12-20 2024-10-11 00:05:53.000 1970-12-20 2024-10-11 00:05:53 +354 354 355 35.4 70.8 354 1970-12-21 2024-10-11 00:05:54.000 1970-12-21 2024-10-11 00:05:54 +356 356 357 35.6 71.2 356 1970-12-23 2024-10-11 00:05:56.000 1970-12-23 2024-10-11 00:05:56 +357 357 358 35.7 71.4 357 1970-12-24 2024-10-11 00:05:57.000 1970-12-24 2024-10-11 00:05:57 +358 358 359 35.8 71.60000000000001 358 1970-12-25 2024-10-11 00:05:58.000 1970-12-25 2024-10-11 00:05:58 +359 359 360 35.9 71.8 359 1970-12-26 2024-10-11 00:05:59.000 1970-12-26 2024-10-11 00:05:59 +361 361 362 36.1 72.2 361 1970-12-28 2024-10-11 00:06:01.000 1970-12-28 2024-10-11 00:06:01 +362 362 363 36.2 72.4 362 1970-12-29 2024-10-11 00:06:02.000 1970-12-29 2024-10-11 00:06:02 +363 363 364 36.3 72.60000000000001 363 1970-12-30 2024-10-11 00:06:03.000 1970-12-30 2024-10-11 00:06:03 +364 364 365 36.4 72.8 364 1970-12-31 2024-10-11 00:06:04.000 1970-12-31 2024-10-11 00:06:04 +366 366 367 36.6 73.2 366 1971-01-02 2024-10-11 00:06:06.000 1971-01-02 2024-10-11 00:06:06 +367 367 368 36.7 73.4 367 1971-01-03 2024-10-11 00:06:07.000 1971-01-03 2024-10-11 00:06:07 +368 368 369 36.8 73.60000000000001 368 1971-01-04 2024-10-11 00:06:08.000 1971-01-04 2024-10-11 00:06:08 +369 369 370 36.9 73.8 369 1971-01-05 2024-10-11 00:06:09.000 1971-01-05 2024-10-11 00:06:09 +371 371 372 37.1 74.2 371 1971-01-07 2024-10-11 00:06:11.000 1971-01-07 2024-10-11 00:06:11 +372 372 373 37.2 74.4 372 1971-01-08 2024-10-11 00:06:12.000 1971-01-08 2024-10-11 00:06:12 +373 373 374 37.3 74.60000000000001 373 1971-01-09 2024-10-11 00:06:13.000 1971-01-09 2024-10-11 00:06:13 +374 374 375 37.4 74.8 374 1971-01-10 2024-10-11 00:06:14.000 1971-01-10 2024-10-11 00:06:14 +376 376 377 37.6 75.2 376 1971-01-12 2024-10-11 00:06:16.000 1971-01-12 2024-10-11 00:06:16 +377 377 378 37.7 75.4 377 1971-01-13 2024-10-11 00:06:17.000 1971-01-13 2024-10-11 00:06:17 +378 378 379 37.8 75.60000000000001 378 1971-01-14 2024-10-11 00:06:18.000 1971-01-14 2024-10-11 00:06:18 +379 379 380 37.9 75.8 379 1971-01-15 2024-10-11 00:06:19.000 1971-01-15 2024-10-11 00:06:19 +381 381 382 38.1 76.2 381 1971-01-17 2024-10-11 00:06:21.000 1971-01-17 2024-10-11 00:06:21 +382 382 383 38.2 76.4 382 1971-01-18 2024-10-11 00:06:22.000 1971-01-18 2024-10-11 00:06:22 +383 383 384 38.3 76.60000000000001 383 1971-01-19 2024-10-11 00:06:23.000 1971-01-19 2024-10-11 00:06:23 +384 384 385 38.4 76.80000000000001 384 1971-01-20 2024-10-11 00:06:24.000 1971-01-20 2024-10-11 00:06:24 +386 386 387 38.6 77.2 386 1971-01-22 2024-10-11 00:06:26.000 1971-01-22 2024-10-11 00:06:26 +387 387 388 38.7 77.4 387 1971-01-23 2024-10-11 00:06:27.000 1971-01-23 2024-10-11 00:06:27 +388 388 389 38.8 77.60000000000001 388 1971-01-24 2024-10-11 00:06:28.000 1971-01-24 2024-10-11 00:06:28 +389 389 390 38.9 77.80000000000001 389 1971-01-25 2024-10-11 00:06:29.000 1971-01-25 2024-10-11 00:06:29 +391 391 392 39.1 78.2 391 1971-01-27 2024-10-11 00:06:31.000 1971-01-27 2024-10-11 00:06:31 +392 392 393 39.2 78.4 392 1971-01-28 2024-10-11 00:06:32.000 1971-01-28 2024-10-11 00:06:32 +393 393 394 39.3 78.60000000000001 393 1971-01-29 2024-10-11 00:06:33.000 1971-01-29 2024-10-11 00:06:33 +394 394 395 39.4 78.80000000000001 394 1971-01-30 2024-10-11 00:06:34.000 1971-01-30 2024-10-11 00:06:34 +396 396 397 39.6 79.2 396 1971-02-01 2024-10-11 00:06:36.000 1971-02-01 2024-10-11 00:06:36 +397 397 398 39.7 79.4 397 1971-02-02 2024-10-11 00:06:37.000 1971-02-02 2024-10-11 00:06:37 +398 398 399 39.8 79.60000000000001 398 1971-02-03 2024-10-11 00:06:38.000 1971-02-03 2024-10-11 00:06:38 +399 399 400 39.9 79.80000000000001 399 1971-02-04 2024-10-11 00:06:39.000 1971-02-04 2024-10-11 00:06:39 +401 401 402 40.1 80.2 401 1971-02-06 2024-10-11 00:06:41.000 1971-02-06 2024-10-11 00:06:41 +402 402 403 40.2 80.4 402 1971-02-07 2024-10-11 00:06:42.000 1971-02-07 2024-10-11 00:06:42 +403 403 404 40.3 80.60000000000001 403 1971-02-08 2024-10-11 00:06:43.000 1971-02-08 2024-10-11 00:06:43 +404 404 405 40.4 80.80000000000001 404 1971-02-09 2024-10-11 00:06:44.000 1971-02-09 2024-10-11 00:06:44 +406 406 407 40.6 81.2 406 1971-02-11 2024-10-11 00:06:46.000 1971-02-11 2024-10-11 00:06:46 +407 407 408 40.7 81.4 407 1971-02-12 2024-10-11 00:06:47.000 1971-02-12 2024-10-11 00:06:47 +408 408 409 40.8 81.60000000000001 408 1971-02-13 2024-10-11 00:06:48.000 1971-02-13 2024-10-11 00:06:48 +409 409 410 40.9 81.80000000000001 409 1971-02-14 2024-10-11 00:06:49.000 1971-02-14 2024-10-11 00:06:49 +411 411 412 41.1 82.2 411 1971-02-16 2024-10-11 00:06:51.000 1971-02-16 2024-10-11 00:06:51 +412 412 413 41.2 82.4 412 1971-02-17 2024-10-11 00:06:52.000 1971-02-17 2024-10-11 00:06:52 +413 413 414 41.3 82.60000000000001 413 1971-02-18 2024-10-11 00:06:53.000 1971-02-18 2024-10-11 00:06:53 +414 414 415 41.4 82.80000000000001 414 1971-02-19 2024-10-11 00:06:54.000 1971-02-19 2024-10-11 00:06:54 +416 416 417 41.6 83.2 416 1971-02-21 2024-10-11 00:06:56.000 1971-02-21 2024-10-11 00:06:56 +417 417 418 41.7 83.4 417 1971-02-22 2024-10-11 00:06:57.000 1971-02-22 2024-10-11 00:06:57 +418 418 419 41.8 83.60000000000001 418 1971-02-23 2024-10-11 00:06:58.000 1971-02-23 2024-10-11 00:06:58 +419 419 420 41.9 83.80000000000001 419 1971-02-24 2024-10-11 00:06:59.000 1971-02-24 2024-10-11 00:06:59 +421 421 422 42.1 84.2 421 1971-02-26 2024-10-11 00:07:01.000 1971-02-26 2024-10-11 00:07:01 +422 422 423 42.2 84.4 422 1971-02-27 2024-10-11 00:07:02.000 1971-02-27 2024-10-11 00:07:02 +423 423 424 42.3 84.60000000000001 423 1971-02-28 2024-10-11 00:07:03.000 1971-02-28 2024-10-11 00:07:03 +424 424 425 42.4 84.80000000000001 424 1971-03-01 2024-10-11 00:07:04.000 1971-03-01 2024-10-11 00:07:04 +426 426 427 42.6 85.2 426 1971-03-03 2024-10-11 00:07:06.000 1971-03-03 2024-10-11 00:07:06 +427 427 428 42.7 85.4 427 1971-03-04 2024-10-11 00:07:07.000 1971-03-04 2024-10-11 00:07:07 +428 428 429 42.8 85.60000000000001 428 1971-03-05 2024-10-11 00:07:08.000 1971-03-05 2024-10-11 00:07:08 +429 429 430 42.9 85.80000000000001 429 1971-03-06 2024-10-11 00:07:09.000 1971-03-06 2024-10-11 00:07:09 +431 431 432 43.1 86.2 431 1971-03-08 2024-10-11 00:07:11.000 1971-03-08 2024-10-11 00:07:11 +432 432 433 43.2 86.4 432 1971-03-09 2024-10-11 00:07:12.000 1971-03-09 2024-10-11 00:07:12 +433 433 434 43.3 86.60000000000001 433 1971-03-10 2024-10-11 00:07:13.000 1971-03-10 2024-10-11 00:07:13 +434 434 435 43.4 86.80000000000001 434 1971-03-11 2024-10-11 00:07:14.000 1971-03-11 2024-10-11 00:07:14 +436 436 437 43.6 87.2 436 1971-03-13 2024-10-11 00:07:16.000 1971-03-13 2024-10-11 00:07:16 +437 437 438 43.7 87.4 437 1971-03-14 2024-10-11 00:07:17.000 1971-03-14 2024-10-11 00:07:17 +438 438 439 43.8 87.60000000000001 438 1971-03-15 2024-10-11 00:07:18.000 1971-03-15 2024-10-11 00:07:18 +439 439 440 43.9 87.80000000000001 439 1971-03-16 2024-10-11 00:07:19.000 1971-03-16 2024-10-11 00:07:19 +441 441 442 44.1 88.2 441 1971-03-18 2024-10-11 00:07:21.000 1971-03-18 2024-10-11 00:07:21 +442 442 443 44.2 88.4 442 1971-03-19 2024-10-11 00:07:22.000 1971-03-19 2024-10-11 00:07:22 +443 443 444 44.3 88.60000000000001 443 1971-03-20 2024-10-11 00:07:23.000 1971-03-20 2024-10-11 00:07:23 +444 444 445 44.4 88.80000000000001 444 1971-03-21 2024-10-11 00:07:24.000 1971-03-21 2024-10-11 00:07:24 +446 446 447 44.6 89.2 446 1971-03-23 2024-10-11 00:07:26.000 1971-03-23 2024-10-11 00:07:26 +447 447 448 44.7 89.4 447 1971-03-24 2024-10-11 00:07:27.000 1971-03-24 2024-10-11 00:07:27 +448 448 449 44.8 89.60000000000001 448 1971-03-25 2024-10-11 00:07:28.000 1971-03-25 2024-10-11 00:07:28 +449 449 450 44.9 89.80000000000001 449 1971-03-26 2024-10-11 00:07:29.000 1971-03-26 2024-10-11 00:07:29 +451 451 452 45.1 90.2 451 1971-03-28 2024-10-11 00:07:31.000 1971-03-28 2024-10-11 00:07:31 +452 452 453 45.2 90.4 452 1971-03-29 2024-10-11 00:07:32.000 1971-03-29 2024-10-11 00:07:32 +453 453 454 45.3 90.60000000000001 453 1971-03-30 2024-10-11 00:07:33.000 1971-03-30 2024-10-11 00:07:33 +454 454 455 45.4 90.80000000000001 454 1971-03-31 2024-10-11 00:07:34.000 1971-03-31 2024-10-11 00:07:34 +456 456 457 45.6 91.2 456 1971-04-02 2024-10-11 00:07:36.000 1971-04-02 2024-10-11 00:07:36 +457 457 458 45.7 91.4 457 1971-04-03 2024-10-11 00:07:37.000 1971-04-03 2024-10-11 00:07:37 +458 458 459 45.8 91.60000000000001 458 1971-04-04 2024-10-11 00:07:38.000 1971-04-04 2024-10-11 00:07:38 +459 459 460 45.9 91.80000000000001 459 1971-04-05 2024-10-11 00:07:39.000 1971-04-05 2024-10-11 00:07:39 +461 461 462 46.1 92.2 461 1971-04-07 2024-10-11 00:07:41.000 1971-04-07 2024-10-11 00:07:41 +462 462 463 46.2 92.4 462 1971-04-08 2024-10-11 00:07:42.000 1971-04-08 2024-10-11 00:07:42 +463 463 464 46.3 92.60000000000001 463 1971-04-09 2024-10-11 00:07:43.000 1971-04-09 2024-10-11 00:07:43 +464 464 465 46.4 92.80000000000001 464 1971-04-10 2024-10-11 00:07:44.000 1971-04-10 2024-10-11 00:07:44 +466 466 467 46.6 93.2 466 1971-04-12 2024-10-11 00:07:46.000 1971-04-12 2024-10-11 00:07:46 +467 467 468 46.7 93.4 467 1971-04-13 2024-10-11 00:07:47.000 1971-04-13 2024-10-11 00:07:47 +468 468 469 46.8 93.60000000000001 468 1971-04-14 2024-10-11 00:07:48.000 1971-04-14 2024-10-11 00:07:48 +469 469 470 46.9 93.80000000000001 469 1971-04-15 2024-10-11 00:07:49.000 1971-04-15 2024-10-11 00:07:49 +471 471 472 47.1 94.2 471 1971-04-17 2024-10-11 00:07:51.000 1971-04-17 2024-10-11 00:07:51 +472 472 473 47.2 94.4 472 1971-04-18 2024-10-11 00:07:52.000 1971-04-18 2024-10-11 00:07:52 +473 473 474 47.3 94.60000000000001 473 1971-04-19 2024-10-11 00:07:53.000 1971-04-19 2024-10-11 00:07:53 +474 474 475 47.4 94.80000000000001 474 1971-04-20 2024-10-11 00:07:54.000 1971-04-20 2024-10-11 00:07:54 +476 476 477 47.6 95.2 476 1971-04-22 2024-10-11 00:07:56.000 1971-04-22 2024-10-11 00:07:56 +477 477 478 47.7 95.4 477 1971-04-23 2024-10-11 00:07:57.000 1971-04-23 2024-10-11 00:07:57 +478 478 479 47.8 95.60000000000001 478 1971-04-24 2024-10-11 00:07:58.000 1971-04-24 2024-10-11 00:07:58 +479 479 480 47.9 95.80000000000001 479 1971-04-25 2024-10-11 00:07:59.000 1971-04-25 2024-10-11 00:07:59 +481 481 482 48.1 96.2 481 1971-04-27 2024-10-11 00:08:01.000 1971-04-27 2024-10-11 00:08:01 +482 482 483 48.2 96.4 482 1971-04-28 2024-10-11 00:08:02.000 1971-04-28 2024-10-11 00:08:02 +483 483 484 48.3 96.60000000000001 483 1971-04-29 2024-10-11 00:08:03.000 1971-04-29 2024-10-11 00:08:03 +484 484 485 48.4 96.80000000000001 484 1971-04-30 2024-10-11 00:08:04.000 1971-04-30 2024-10-11 00:08:04 +486 486 487 48.6 97.2 486 1971-05-02 2024-10-11 00:08:06.000 1971-05-02 2024-10-11 00:08:06 +487 487 488 48.7 97.4 487 1971-05-03 2024-10-11 00:08:07.000 1971-05-03 2024-10-11 00:08:07 +488 488 489 48.8 97.60000000000001 488 1971-05-04 2024-10-11 00:08:08.000 1971-05-04 2024-10-11 00:08:08 +489 489 490 48.9 97.80000000000001 489 1971-05-05 2024-10-11 00:08:09.000 1971-05-05 2024-10-11 00:08:09 +491 491 492 49.1 98.2 491 1971-05-07 2024-10-11 00:08:11.000 1971-05-07 2024-10-11 00:08:11 +492 492 493 49.2 98.4 492 1971-05-08 2024-10-11 00:08:12.000 1971-05-08 2024-10-11 00:08:12 +493 493 494 49.3 98.60000000000001 493 1971-05-09 2024-10-11 00:08:13.000 1971-05-09 2024-10-11 00:08:13 +494 494 495 49.4 98.80000000000001 494 1971-05-10 2024-10-11 00:08:14.000 1971-05-10 2024-10-11 00:08:14 +496 496 497 49.6 99.2 496 1971-05-12 2024-10-11 00:08:16.000 1971-05-12 2024-10-11 00:08:16 +497 497 498 49.7 99.4 497 1971-05-13 2024-10-11 00:08:17.000 1971-05-13 2024-10-11 00:08:17 +498 498 499 49.8 99.60000000000001 498 1971-05-14 2024-10-11 00:08:18.000 1971-05-14 2024-10-11 00:08:18 +499 499 500 49.9 99.80000000000001 499 1971-05-15 2024-10-11 00:08:19.000 1971-05-15 2024-10-11 00:08:19 +501 501 502 50.1 100.2 501 1971-05-17 2024-10-11 00:08:21.000 1971-05-17 2024-10-11 00:08:21 +502 502 503 50.2 100.4 502 1971-05-18 2024-10-11 00:08:22.000 1971-05-18 2024-10-11 00:08:22 +503 503 504 50.3 100.60000000000001 503 1971-05-19 2024-10-11 00:08:23.000 1971-05-19 2024-10-11 00:08:23 +504 504 505 50.4 100.80000000000001 504 1971-05-20 2024-10-11 00:08:24.000 1971-05-20 2024-10-11 00:08:24 +506 506 507 50.6 101.2 506 1971-05-22 2024-10-11 00:08:26.000 1971-05-22 2024-10-11 00:08:26 +507 507 508 50.7 101.4 507 1971-05-23 2024-10-11 00:08:27.000 1971-05-23 2024-10-11 00:08:27 +508 508 509 50.8 101.60000000000001 508 1971-05-24 2024-10-11 00:08:28.000 1971-05-24 2024-10-11 00:08:28 +509 509 510 50.9 101.80000000000001 509 1971-05-25 2024-10-11 00:08:29.000 1971-05-25 2024-10-11 00:08:29 +511 511 512 51.1 102.2 511 1971-05-27 2024-10-11 00:08:31.000 1971-05-27 2024-10-11 00:08:31 +512 512 513 51.2 102.4 512 1971-05-28 2024-10-11 00:08:32.000 1971-05-28 2024-10-11 00:08:32 +513 513 514 51.3 102.60000000000001 513 1971-05-29 2024-10-11 00:08:33.000 1971-05-29 2024-10-11 00:08:33 +514 514 515 51.4 102.80000000000001 514 1971-05-30 2024-10-11 00:08:34.000 1971-05-30 2024-10-11 00:08:34 +516 516 517 51.6 103.2 516 1971-06-01 2024-10-11 00:08:36.000 1971-06-01 2024-10-11 00:08:36 +517 517 518 51.7 103.4 517 1971-06-02 2024-10-11 00:08:37.000 1971-06-02 2024-10-11 00:08:37 +518 518 519 51.8 103.60000000000001 518 1971-06-03 2024-10-11 00:08:38.000 1971-06-03 2024-10-11 00:08:38 +519 519 520 51.9 103.80000000000001 519 1971-06-04 2024-10-11 00:08:39.000 1971-06-04 2024-10-11 00:08:39 +521 521 522 52.1 104.2 521 1971-06-06 2024-10-11 00:08:41.000 1971-06-06 2024-10-11 00:08:41 +522 522 523 52.2 104.4 522 1971-06-07 2024-10-11 00:08:42.000 1971-06-07 2024-10-11 00:08:42 +523 523 524 52.3 104.60000000000001 523 1971-06-08 2024-10-11 00:08:43.000 1971-06-08 2024-10-11 00:08:43 +524 524 525 52.4 104.80000000000001 524 1971-06-09 2024-10-11 00:08:44.000 1971-06-09 2024-10-11 00:08:44 +526 526 527 52.6 105.2 526 1971-06-11 2024-10-11 00:08:46.000 1971-06-11 2024-10-11 00:08:46 +527 527 528 52.7 105.4 527 1971-06-12 2024-10-11 00:08:47.000 1971-06-12 2024-10-11 00:08:47 +528 528 529 52.8 105.60000000000001 528 1971-06-13 2024-10-11 00:08:48.000 1971-06-13 2024-10-11 00:08:48 +529 529 530 52.9 105.80000000000001 529 1971-06-14 2024-10-11 00:08:49.000 1971-06-14 2024-10-11 00:08:49 +531 531 532 53.1 106.2 531 1971-06-16 2024-10-11 00:08:51.000 1971-06-16 2024-10-11 00:08:51 +532 532 533 53.2 106.4 532 1971-06-17 2024-10-11 00:08:52.000 1971-06-17 2024-10-11 00:08:52 +533 533 534 53.3 106.60000000000001 533 1971-06-18 2024-10-11 00:08:53.000 1971-06-18 2024-10-11 00:08:53 +534 534 535 53.4 106.80000000000001 534 1971-06-19 2024-10-11 00:08:54.000 1971-06-19 2024-10-11 00:08:54 +536 536 537 53.6 107.2 536 1971-06-21 2024-10-11 00:08:56.000 1971-06-21 2024-10-11 00:08:56 +537 537 538 53.7 107.4 537 1971-06-22 2024-10-11 00:08:57.000 1971-06-22 2024-10-11 00:08:57 +538 538 539 53.8 107.60000000000001 538 1971-06-23 2024-10-11 00:08:58.000 1971-06-23 2024-10-11 00:08:58 +539 539 540 53.9 107.80000000000001 539 1971-06-24 2024-10-11 00:08:59.000 1971-06-24 2024-10-11 00:08:59 +541 541 542 54.1 108.2 541 1971-06-26 2024-10-11 00:09:01.000 1971-06-26 2024-10-11 00:09:01 +542 542 543 54.2 108.4 542 1971-06-27 2024-10-11 00:09:02.000 1971-06-27 2024-10-11 00:09:02 +543 543 544 54.3 108.60000000000001 543 1971-06-28 2024-10-11 00:09:03.000 1971-06-28 2024-10-11 00:09:03 +544 544 545 54.4 108.80000000000001 544 1971-06-29 2024-10-11 00:09:04.000 1971-06-29 2024-10-11 00:09:04 +546 546 547 54.6 109.2 546 1971-07-01 2024-10-11 00:09:06.000 1971-07-01 2024-10-11 00:09:06 +547 547 548 54.7 109.4 547 1971-07-02 2024-10-11 00:09:07.000 1971-07-02 2024-10-11 00:09:07 +548 548 549 54.8 109.60000000000001 548 1971-07-03 2024-10-11 00:09:08.000 1971-07-03 2024-10-11 00:09:08 +549 549 550 54.9 109.80000000000001 549 1971-07-04 2024-10-11 00:09:09.000 1971-07-04 2024-10-11 00:09:09 +551 551 552 55.1 110.2 551 1971-07-06 2024-10-11 00:09:11.000 1971-07-06 2024-10-11 00:09:11 +552 552 553 55.2 110.4 552 1971-07-07 2024-10-11 00:09:12.000 1971-07-07 2024-10-11 00:09:12 +553 553 554 55.3 110.60000000000001 553 1971-07-08 2024-10-11 00:09:13.000 1971-07-08 2024-10-11 00:09:13 +554 554 555 55.4 110.80000000000001 554 1971-07-09 2024-10-11 00:09:14.000 1971-07-09 2024-10-11 00:09:14 +556 556 557 55.6 111.2 556 1971-07-11 2024-10-11 00:09:16.000 1971-07-11 2024-10-11 00:09:16 +557 557 558 55.7 111.4 557 1971-07-12 2024-10-11 00:09:17.000 1971-07-12 2024-10-11 00:09:17 +558 558 559 55.8 111.60000000000001 558 1971-07-13 2024-10-11 00:09:18.000 1971-07-13 2024-10-11 00:09:18 +559 559 560 55.9 111.80000000000001 559 1971-07-14 2024-10-11 00:09:19.000 1971-07-14 2024-10-11 00:09:19 +561 561 562 56.1 112.2 561 1971-07-16 2024-10-11 00:09:21.000 1971-07-16 2024-10-11 00:09:21 +562 562 563 56.2 112.4 562 1971-07-17 2024-10-11 00:09:22.000 1971-07-17 2024-10-11 00:09:22 +563 563 564 56.3 112.60000000000001 563 1971-07-18 2024-10-11 00:09:23.000 1971-07-18 2024-10-11 00:09:23 +564 564 565 56.4 112.80000000000001 564 1971-07-19 2024-10-11 00:09:24.000 1971-07-19 2024-10-11 00:09:24 +566 566 567 56.6 113.2 566 1971-07-21 2024-10-11 00:09:26.000 1971-07-21 2024-10-11 00:09:26 +567 567 568 56.7 113.4 567 1971-07-22 2024-10-11 00:09:27.000 1971-07-22 2024-10-11 00:09:27 +568 568 569 56.8 113.60000000000001 568 1971-07-23 2024-10-11 00:09:28.000 1971-07-23 2024-10-11 00:09:28 +569 569 570 56.9 113.80000000000001 569 1971-07-24 2024-10-11 00:09:29.000 1971-07-24 2024-10-11 00:09:29 +571 571 572 57.1 114.2 571 1971-07-26 2024-10-11 00:09:31.000 1971-07-26 2024-10-11 00:09:31 +572 572 573 57.2 114.4 572 1971-07-27 2024-10-11 00:09:32.000 1971-07-27 2024-10-11 00:09:32 +573 573 574 57.3 114.60000000000001 573 1971-07-28 2024-10-11 00:09:33.000 1971-07-28 2024-10-11 00:09:33 +574 574 575 57.4 114.80000000000001 574 1971-07-29 2024-10-11 00:09:34.000 1971-07-29 2024-10-11 00:09:34 +576 576 577 57.6 115.2 576 1971-07-31 2024-10-11 00:09:36.000 1971-07-31 2024-10-11 00:09:36 +577 577 578 57.7 115.4 577 1971-08-01 2024-10-11 00:09:37.000 1971-08-01 2024-10-11 00:09:37 +578 578 579 57.8 115.60000000000001 578 1971-08-02 2024-10-11 00:09:38.000 1971-08-02 2024-10-11 00:09:38 +579 579 580 57.9 115.80000000000001 579 1971-08-03 2024-10-11 00:09:39.000 1971-08-03 2024-10-11 00:09:39 +581 581 582 58.1 116.2 581 1971-08-05 2024-10-11 00:09:41.000 1971-08-05 2024-10-11 00:09:41 +582 582 583 58.2 116.4 582 1971-08-06 2024-10-11 00:09:42.000 1971-08-06 2024-10-11 00:09:42 +583 583 584 58.3 116.60000000000001 583 1971-08-07 2024-10-11 00:09:43.000 1971-08-07 2024-10-11 00:09:43 +584 584 585 58.4 116.80000000000001 584 1971-08-08 2024-10-11 00:09:44.000 1971-08-08 2024-10-11 00:09:44 +586 586 587 58.6 117.2 586 1971-08-10 2024-10-11 00:09:46.000 1971-08-10 2024-10-11 00:09:46 +587 587 588 58.7 117.4 587 1971-08-11 2024-10-11 00:09:47.000 1971-08-11 2024-10-11 00:09:47 +588 588 589 58.8 117.60000000000001 588 1971-08-12 2024-10-11 00:09:48.000 1971-08-12 2024-10-11 00:09:48 +589 589 590 58.9 117.80000000000001 589 1971-08-13 2024-10-11 00:09:49.000 1971-08-13 2024-10-11 00:09:49 +591 591 592 59.1 118.2 591 1971-08-15 2024-10-11 00:09:51.000 1971-08-15 2024-10-11 00:09:51 +592 592 593 59.2 118.4 592 1971-08-16 2024-10-11 00:09:52.000 1971-08-16 2024-10-11 00:09:52 +593 593 594 59.3 118.60000000000001 593 1971-08-17 2024-10-11 00:09:53.000 1971-08-17 2024-10-11 00:09:53 +594 594 595 59.4 118.80000000000001 594 1971-08-18 2024-10-11 00:09:54.000 1971-08-18 2024-10-11 00:09:54 +596 596 597 59.6 119.2 596 1971-08-20 2024-10-11 00:09:56.000 1971-08-20 2024-10-11 00:09:56 +597 597 598 59.7 119.4 597 1971-08-21 2024-10-11 00:09:57.000 1971-08-21 2024-10-11 00:09:57 +598 598 599 59.8 119.60000000000001 598 1971-08-22 2024-10-11 00:09:58.000 1971-08-22 2024-10-11 00:09:58 +599 599 600 59.9 119.80000000000001 599 1971-08-23 2024-10-11 00:09:59.000 1971-08-23 2024-10-11 00:09:59 +601 601 602 60.1 120.2 601 1971-08-25 2024-10-11 00:10:01.000 1971-08-25 2024-10-11 00:10:01 +602 602 603 60.2 120.4 602 1971-08-26 2024-10-11 00:10:02.000 1971-08-26 2024-10-11 00:10:02 +603 603 604 60.3 120.60000000000001 603 1971-08-27 2024-10-11 00:10:03.000 1971-08-27 2024-10-11 00:10:03 +604 604 605 60.4 120.80000000000001 604 1971-08-28 2024-10-11 00:10:04.000 1971-08-28 2024-10-11 00:10:04 +606 606 607 60.6 121.2 606 1971-08-30 2024-10-11 00:10:06.000 1971-08-30 2024-10-11 00:10:06 +607 607 608 60.7 121.4 607 1971-08-31 2024-10-11 00:10:07.000 1971-08-31 2024-10-11 00:10:07 +608 608 609 60.8 121.60000000000001 608 1971-09-01 2024-10-11 00:10:08.000 1971-09-01 2024-10-11 00:10:08 +609 609 610 60.9 121.80000000000001 609 1971-09-02 2024-10-11 00:10:09.000 1971-09-02 2024-10-11 00:10:09 +611 611 612 61.1 122.2 611 1971-09-04 2024-10-11 00:10:11.000 1971-09-04 2024-10-11 00:10:11 +612 612 613 61.2 122.4 612 1971-09-05 2024-10-11 00:10:12.000 1971-09-05 2024-10-11 00:10:12 +613 613 614 61.3 122.60000000000001 613 1971-09-06 2024-10-11 00:10:13.000 1971-09-06 2024-10-11 00:10:13 +614 614 615 61.4 122.80000000000001 614 1971-09-07 2024-10-11 00:10:14.000 1971-09-07 2024-10-11 00:10:14 +616 616 617 61.6 123.2 616 1971-09-09 2024-10-11 00:10:16.000 1971-09-09 2024-10-11 00:10:16 +617 617 618 61.7 123.4 617 1971-09-10 2024-10-11 00:10:17.000 1971-09-10 2024-10-11 00:10:17 +618 618 619 61.8 123.60000000000001 618 1971-09-11 2024-10-11 00:10:18.000 1971-09-11 2024-10-11 00:10:18 +619 619 620 61.9 123.80000000000001 619 1971-09-12 2024-10-11 00:10:19.000 1971-09-12 2024-10-11 00:10:19 +621 621 622 62.1 124.2 621 1971-09-14 2024-10-11 00:10:21.000 1971-09-14 2024-10-11 00:10:21 +622 622 623 62.2 124.4 622 1971-09-15 2024-10-11 00:10:22.000 1971-09-15 2024-10-11 00:10:22 +623 623 624 62.3 124.60000000000001 623 1971-09-16 2024-10-11 00:10:23.000 1971-09-16 2024-10-11 00:10:23 +624 624 625 62.4 124.80000000000001 624 1971-09-17 2024-10-11 00:10:24.000 1971-09-17 2024-10-11 00:10:24 +626 626 627 62.6 125.2 626 1971-09-19 2024-10-11 00:10:26.000 1971-09-19 2024-10-11 00:10:26 +627 627 628 62.7 125.4 627 1971-09-20 2024-10-11 00:10:27.000 1971-09-20 2024-10-11 00:10:27 +628 628 629 62.8 125.60000000000001 628 1971-09-21 2024-10-11 00:10:28.000 1971-09-21 2024-10-11 00:10:28 +629 629 630 62.9 125.80000000000001 629 1971-09-22 2024-10-11 00:10:29.000 1971-09-22 2024-10-11 00:10:29 +631 631 632 63.1 126.2 631 1971-09-24 2024-10-11 00:10:31.000 1971-09-24 2024-10-11 00:10:31 +632 632 633 63.2 126.4 632 1971-09-25 2024-10-11 00:10:32.000 1971-09-25 2024-10-11 00:10:32 +633 633 634 63.3 126.60000000000001 633 1971-09-26 2024-10-11 00:10:33.000 1971-09-26 2024-10-11 00:10:33 +634 634 635 63.4 126.80000000000001 634 1971-09-27 2024-10-11 00:10:34.000 1971-09-27 2024-10-11 00:10:34 +636 636 637 63.6 127.2 636 1971-09-29 2024-10-11 00:10:36.000 1971-09-29 2024-10-11 00:10:36 +637 637 638 63.7 127.4 637 1971-09-30 2024-10-11 00:10:37.000 1971-09-30 2024-10-11 00:10:37 +638 638 639 63.8 127.60000000000001 638 1971-10-01 2024-10-11 00:10:38.000 1971-10-01 2024-10-11 00:10:38 +639 639 640 63.9 127.80000000000001 639 1971-10-02 2024-10-11 00:10:39.000 1971-10-02 2024-10-11 00:10:39 +641 641 642 64.1 128.20000000000002 641 1971-10-04 2024-10-11 00:10:41.000 1971-10-04 2024-10-11 00:10:41 +642 642 643 64.2 128.4 642 1971-10-05 2024-10-11 00:10:42.000 1971-10-05 2024-10-11 00:10:42 +643 643 644 64.3 128.6 643 1971-10-06 2024-10-11 00:10:43.000 1971-10-06 2024-10-11 00:10:43 +644 644 645 64.4 128.8 644 1971-10-07 2024-10-11 00:10:44.000 1971-10-07 2024-10-11 00:10:44 +646 646 647 64.6 129.20000000000002 646 1971-10-09 2024-10-11 00:10:46.000 1971-10-09 2024-10-11 00:10:46 +647 647 648 64.7 129.4 647 1971-10-10 2024-10-11 00:10:47.000 1971-10-10 2024-10-11 00:10:47 +648 648 649 64.8 129.6 648 1971-10-11 2024-10-11 00:10:48.000 1971-10-11 2024-10-11 00:10:48 +649 649 650 64.9 129.8 649 1971-10-12 2024-10-11 00:10:49.000 1971-10-12 2024-10-11 00:10:49 +651 651 652 65.1 130.20000000000002 651 1971-10-14 2024-10-11 00:10:51.000 1971-10-14 2024-10-11 00:10:51 +652 652 653 65.2 130.4 652 1971-10-15 2024-10-11 00:10:52.000 1971-10-15 2024-10-11 00:10:52 +653 653 654 65.3 130.6 653 1971-10-16 2024-10-11 00:10:53.000 1971-10-16 2024-10-11 00:10:53 +654 654 655 65.4 130.8 654 1971-10-17 2024-10-11 00:10:54.000 1971-10-17 2024-10-11 00:10:54 +656 656 657 65.6 131.20000000000002 656 1971-10-19 2024-10-11 00:10:56.000 1971-10-19 2024-10-11 00:10:56 +657 657 658 65.7 131.4 657 1971-10-20 2024-10-11 00:10:57.000 1971-10-20 2024-10-11 00:10:57 +658 658 659 65.8 131.6 658 1971-10-21 2024-10-11 00:10:58.000 1971-10-21 2024-10-11 00:10:58 +659 659 660 65.9 131.8 659 1971-10-22 2024-10-11 00:10:59.000 1971-10-22 2024-10-11 00:10:59 +661 661 662 66.1 132.20000000000002 661 1971-10-24 2024-10-11 00:11:01.000 1971-10-24 2024-10-11 00:11:01 +662 662 663 66.2 132.4 662 1971-10-25 2024-10-11 00:11:02.000 1971-10-25 2024-10-11 00:11:02 +663 663 664 66.3 132.6 663 1971-10-26 2024-10-11 00:11:03.000 1971-10-26 2024-10-11 00:11:03 +664 664 665 66.4 132.8 664 1971-10-27 2024-10-11 00:11:04.000 1971-10-27 2024-10-11 00:11:04 +666 666 667 66.6 133.20000000000002 666 1971-10-29 2024-10-11 00:11:06.000 1971-10-29 2024-10-11 00:11:06 +667 667 668 66.7 133.4 667 1971-10-30 2024-10-11 00:11:07.000 1971-10-30 2024-10-11 00:11:07 +668 668 669 66.8 133.6 668 1971-10-31 2024-10-11 00:11:08.000 1971-10-31 2024-10-11 00:11:08 +669 669 670 66.9 133.8 669 1971-11-01 2024-10-11 00:11:09.000 1971-11-01 2024-10-11 00:11:09 +671 671 672 67.1 134.20000000000002 671 1971-11-03 2024-10-11 00:11:11.000 1971-11-03 2024-10-11 00:11:11 +672 672 673 67.2 134.4 672 1971-11-04 2024-10-11 00:11:12.000 1971-11-04 2024-10-11 00:11:12 +673 673 674 67.3 134.6 673 1971-11-05 2024-10-11 00:11:13.000 1971-11-05 2024-10-11 00:11:13 +674 674 675 67.4 134.8 674 1971-11-06 2024-10-11 00:11:14.000 1971-11-06 2024-10-11 00:11:14 +676 676 677 67.6 135.20000000000002 676 1971-11-08 2024-10-11 00:11:16.000 1971-11-08 2024-10-11 00:11:16 +677 677 678 67.7 135.4 677 1971-11-09 2024-10-11 00:11:17.000 1971-11-09 2024-10-11 00:11:17 +678 678 679 67.8 135.6 678 1971-11-10 2024-10-11 00:11:18.000 1971-11-10 2024-10-11 00:11:18 +679 679 680 67.9 135.8 679 1971-11-11 2024-10-11 00:11:19.000 1971-11-11 2024-10-11 00:11:19 +681 681 682 68.1 136.20000000000002 681 1971-11-13 2024-10-11 00:11:21.000 1971-11-13 2024-10-11 00:11:21 +682 682 683 68.2 136.4 682 1971-11-14 2024-10-11 00:11:22.000 1971-11-14 2024-10-11 00:11:22 +683 683 684 68.3 136.6 683 1971-11-15 2024-10-11 00:11:23.000 1971-11-15 2024-10-11 00:11:23 +684 684 685 68.4 136.8 684 1971-11-16 2024-10-11 00:11:24.000 1971-11-16 2024-10-11 00:11:24 +686 686 687 68.6 137.20000000000002 686 1971-11-18 2024-10-11 00:11:26.000 1971-11-18 2024-10-11 00:11:26 +687 687 688 68.7 137.4 687 1971-11-19 2024-10-11 00:11:27.000 1971-11-19 2024-10-11 00:11:27 +688 688 689 68.8 137.6 688 1971-11-20 2024-10-11 00:11:28.000 1971-11-20 2024-10-11 00:11:28 +689 689 690 68.9 137.8 689 1971-11-21 2024-10-11 00:11:29.000 1971-11-21 2024-10-11 00:11:29 +691 691 692 69.1 138.20000000000002 691 1971-11-23 2024-10-11 00:11:31.000 1971-11-23 2024-10-11 00:11:31 +692 692 693 69.2 138.4 692 1971-11-24 2024-10-11 00:11:32.000 1971-11-24 2024-10-11 00:11:32 +693 693 694 69.3 138.6 693 1971-11-25 2024-10-11 00:11:33.000 1971-11-25 2024-10-11 00:11:33 +694 694 695 69.4 138.8 694 1971-11-26 2024-10-11 00:11:34.000 1971-11-26 2024-10-11 00:11:34 +696 696 697 69.6 139.20000000000002 696 1971-11-28 2024-10-11 00:11:36.000 1971-11-28 2024-10-11 00:11:36 +697 697 698 69.7 139.4 697 1971-11-29 2024-10-11 00:11:37.000 1971-11-29 2024-10-11 00:11:37 +698 698 699 69.8 139.6 698 1971-11-30 2024-10-11 00:11:38.000 1971-11-30 2024-10-11 00:11:38 +699 699 700 69.9 139.8 699 1971-12-01 2024-10-11 00:11:39.000 1971-12-01 2024-10-11 00:11:39 +701 701 702 70.1 140.20000000000002 701 1971-12-03 2024-10-11 00:11:41.000 1971-12-03 2024-10-11 00:11:41 +702 702 703 70.2 140.4 702 1971-12-04 2024-10-11 00:11:42.000 1971-12-04 2024-10-11 00:11:42 +703 703 704 70.3 140.6 703 1971-12-05 2024-10-11 00:11:43.000 1971-12-05 2024-10-11 00:11:43 +704 704 705 70.4 140.8 704 1971-12-06 2024-10-11 00:11:44.000 1971-12-06 2024-10-11 00:11:44 +706 706 707 70.6 141.20000000000002 706 1971-12-08 2024-10-11 00:11:46.000 1971-12-08 2024-10-11 00:11:46 +707 707 708 70.7 141.4 707 1971-12-09 2024-10-11 00:11:47.000 1971-12-09 2024-10-11 00:11:47 +708 708 709 70.8 141.6 708 1971-12-10 2024-10-11 00:11:48.000 1971-12-10 2024-10-11 00:11:48 +709 709 710 70.9 141.8 709 1971-12-11 2024-10-11 00:11:49.000 1971-12-11 2024-10-11 00:11:49 +711 711 712 71.1 142.20000000000002 711 1971-12-13 2024-10-11 00:11:51.000 1971-12-13 2024-10-11 00:11:51 +712 712 713 71.2 142.4 712 1971-12-14 2024-10-11 00:11:52.000 1971-12-14 2024-10-11 00:11:52 +713 713 714 71.3 142.6 713 1971-12-15 2024-10-11 00:11:53.000 1971-12-15 2024-10-11 00:11:53 +714 714 715 71.4 142.8 714 1971-12-16 2024-10-11 00:11:54.000 1971-12-16 2024-10-11 00:11:54 +716 716 717 71.6 143.20000000000002 716 1971-12-18 2024-10-11 00:11:56.000 1971-12-18 2024-10-11 00:11:56 +717 717 718 71.7 143.4 717 1971-12-19 2024-10-11 00:11:57.000 1971-12-19 2024-10-11 00:11:57 +718 718 719 71.8 143.6 718 1971-12-20 2024-10-11 00:11:58.000 1971-12-20 2024-10-11 00:11:58 +719 719 720 71.9 143.8 719 1971-12-21 2024-10-11 00:11:59.000 1971-12-21 2024-10-11 00:11:59 +721 721 722 72.1 144.20000000000002 721 1971-12-23 2024-10-11 00:12:01.000 1971-12-23 2024-10-11 00:12:01 +722 722 723 72.2 144.4 722 1971-12-24 2024-10-11 00:12:02.000 1971-12-24 2024-10-11 00:12:02 +723 723 724 72.3 144.6 723 1971-12-25 2024-10-11 00:12:03.000 1971-12-25 2024-10-11 00:12:03 +724 724 725 72.4 144.8 724 1971-12-26 2024-10-11 00:12:04.000 1971-12-26 2024-10-11 00:12:04 +726 726 727 72.6 145.20000000000002 726 1971-12-28 2024-10-11 00:12:06.000 1971-12-28 2024-10-11 00:12:06 +727 727 728 72.7 145.4 727 1971-12-29 2024-10-11 00:12:07.000 1971-12-29 2024-10-11 00:12:07 +728 728 729 72.8 145.6 728 1971-12-30 2024-10-11 00:12:08.000 1971-12-30 2024-10-11 00:12:08 +729 729 730 72.9 145.8 729 1971-12-31 2024-10-11 00:12:09.000 1971-12-31 2024-10-11 00:12:09 +731 731 732 73.1 146.20000000000002 731 1972-01-02 2024-10-11 00:12:11.000 1972-01-02 2024-10-11 00:12:11 +732 732 733 73.2 146.4 732 1972-01-03 2024-10-11 00:12:12.000 1972-01-03 2024-10-11 00:12:12 +733 733 734 73.3 146.6 733 1972-01-04 2024-10-11 00:12:13.000 1972-01-04 2024-10-11 00:12:13 +734 734 735 73.4 146.8 734 1972-01-05 2024-10-11 00:12:14.000 1972-01-05 2024-10-11 00:12:14 +736 736 737 73.6 147.20000000000002 736 1972-01-07 2024-10-11 00:12:16.000 1972-01-07 2024-10-11 00:12:16 +737 737 738 73.7 147.4 737 1972-01-08 2024-10-11 00:12:17.000 1972-01-08 2024-10-11 00:12:17 +738 738 739 73.8 147.6 738 1972-01-09 2024-10-11 00:12:18.000 1972-01-09 2024-10-11 00:12:18 +739 739 740 73.9 147.8 739 1972-01-10 2024-10-11 00:12:19.000 1972-01-10 2024-10-11 00:12:19 +741 741 742 74.1 148.20000000000002 741 1972-01-12 2024-10-11 00:12:21.000 1972-01-12 2024-10-11 00:12:21 +742 742 743 74.2 148.4 742 1972-01-13 2024-10-11 00:12:22.000 1972-01-13 2024-10-11 00:12:22 +743 743 744 74.3 148.6 743 1972-01-14 2024-10-11 00:12:23.000 1972-01-14 2024-10-11 00:12:23 +744 744 745 74.4 148.8 744 1972-01-15 2024-10-11 00:12:24.000 1972-01-15 2024-10-11 00:12:24 +746 746 747 74.6 149.20000000000002 746 1972-01-17 2024-10-11 00:12:26.000 1972-01-17 2024-10-11 00:12:26 +747 747 748 74.7 149.4 747 1972-01-18 2024-10-11 00:12:27.000 1972-01-18 2024-10-11 00:12:27 +748 748 749 74.8 149.6 748 1972-01-19 2024-10-11 00:12:28.000 1972-01-19 2024-10-11 00:12:28 +749 749 750 74.9 149.8 749 1972-01-20 2024-10-11 00:12:29.000 1972-01-20 2024-10-11 00:12:29 +751 751 752 75.1 150.20000000000002 751 1972-01-22 2024-10-11 00:12:31.000 1972-01-22 2024-10-11 00:12:31 +752 752 753 75.2 150.4 752 1972-01-23 2024-10-11 00:12:32.000 1972-01-23 2024-10-11 00:12:32 +753 753 754 75.3 150.6 753 1972-01-24 2024-10-11 00:12:33.000 1972-01-24 2024-10-11 00:12:33 +754 754 755 75.4 150.8 754 1972-01-25 2024-10-11 00:12:34.000 1972-01-25 2024-10-11 00:12:34 +756 756 757 75.6 151.20000000000002 756 1972-01-27 2024-10-11 00:12:36.000 1972-01-27 2024-10-11 00:12:36 +757 757 758 75.7 151.4 757 1972-01-28 2024-10-11 00:12:37.000 1972-01-28 2024-10-11 00:12:37 +758 758 759 75.8 151.6 758 1972-01-29 2024-10-11 00:12:38.000 1972-01-29 2024-10-11 00:12:38 +759 759 760 75.9 151.8 759 1972-01-30 2024-10-11 00:12:39.000 1972-01-30 2024-10-11 00:12:39 +761 761 762 76.1 152.20000000000002 761 1972-02-01 2024-10-11 00:12:41.000 1972-02-01 2024-10-11 00:12:41 +762 762 763 76.2 152.4 762 1972-02-02 2024-10-11 00:12:42.000 1972-02-02 2024-10-11 00:12:42 +763 763 764 76.3 152.6 763 1972-02-03 2024-10-11 00:12:43.000 1972-02-03 2024-10-11 00:12:43 +764 764 765 76.4 152.8 764 1972-02-04 2024-10-11 00:12:44.000 1972-02-04 2024-10-11 00:12:44 +766 766 767 76.6 153.20000000000002 766 1972-02-06 2024-10-11 00:12:46.000 1972-02-06 2024-10-11 00:12:46 +767 767 768 76.7 153.4 767 1972-02-07 2024-10-11 00:12:47.000 1972-02-07 2024-10-11 00:12:47 +768 768 769 76.8 153.60000000000002 768 1972-02-08 2024-10-11 00:12:48.000 1972-02-08 2024-10-11 00:12:48 +769 769 770 76.9 153.8 769 1972-02-09 2024-10-11 00:12:49.000 1972-02-09 2024-10-11 00:12:49 +771 771 772 77.1 154.20000000000002 771 1972-02-11 2024-10-11 00:12:51.000 1972-02-11 2024-10-11 00:12:51 +772 772 773 77.2 154.4 772 1972-02-12 2024-10-11 00:12:52.000 1972-02-12 2024-10-11 00:12:52 +773 773 774 77.3 154.60000000000002 773 1972-02-13 2024-10-11 00:12:53.000 1972-02-13 2024-10-11 00:12:53 +774 774 775 77.4 154.8 774 1972-02-14 2024-10-11 00:12:54.000 1972-02-14 2024-10-11 00:12:54 +776 776 777 77.6 155.20000000000002 776 1972-02-16 2024-10-11 00:12:56.000 1972-02-16 2024-10-11 00:12:56 +777 777 778 77.7 155.4 777 1972-02-17 2024-10-11 00:12:57.000 1972-02-17 2024-10-11 00:12:57 +778 778 779 77.8 155.60000000000002 778 1972-02-18 2024-10-11 00:12:58.000 1972-02-18 2024-10-11 00:12:58 +779 779 780 77.9 155.8 779 1972-02-19 2024-10-11 00:12:59.000 1972-02-19 2024-10-11 00:12:59 +781 781 782 78.1 156.20000000000002 781 1972-02-21 2024-10-11 00:13:01.000 1972-02-21 2024-10-11 00:13:01 +782 782 783 78.2 156.4 782 1972-02-22 2024-10-11 00:13:02.000 1972-02-22 2024-10-11 00:13:02 +783 783 784 78.3 156.60000000000002 783 1972-02-23 2024-10-11 00:13:03.000 1972-02-23 2024-10-11 00:13:03 +784 784 785 78.4 156.8 784 1972-02-24 2024-10-11 00:13:04.000 1972-02-24 2024-10-11 00:13:04 +786 786 787 78.6 157.20000000000002 786 1972-02-26 2024-10-11 00:13:06.000 1972-02-26 2024-10-11 00:13:06 +787 787 788 78.7 157.4 787 1972-02-27 2024-10-11 00:13:07.000 1972-02-27 2024-10-11 00:13:07 +788 788 789 78.8 157.60000000000002 788 1972-02-28 2024-10-11 00:13:08.000 1972-02-28 2024-10-11 00:13:08 +789 789 790 78.9 157.8 789 1972-02-29 2024-10-11 00:13:09.000 1972-02-29 2024-10-11 00:13:09 +791 791 792 79.1 158.20000000000002 791 1972-03-02 2024-10-11 00:13:11.000 1972-03-02 2024-10-11 00:13:11 +792 792 793 79.2 158.4 792 1972-03-03 2024-10-11 00:13:12.000 1972-03-03 2024-10-11 00:13:12 +793 793 794 79.3 158.60000000000002 793 1972-03-04 2024-10-11 00:13:13.000 1972-03-04 2024-10-11 00:13:13 +794 794 795 79.4 158.8 794 1972-03-05 2024-10-11 00:13:14.000 1972-03-05 2024-10-11 00:13:14 +796 796 797 79.6 159.20000000000002 796 1972-03-07 2024-10-11 00:13:16.000 1972-03-07 2024-10-11 00:13:16 +797 797 798 79.7 159.4 797 1972-03-08 2024-10-11 00:13:17.000 1972-03-08 2024-10-11 00:13:17 +798 798 799 79.8 159.60000000000002 798 1972-03-09 2024-10-11 00:13:18.000 1972-03-09 2024-10-11 00:13:18 +799 799 800 79.9 159.8 799 1972-03-10 2024-10-11 00:13:19.000 1972-03-10 2024-10-11 00:13:19 +801 801 802 80.1 160.20000000000002 801 1972-03-12 2024-10-11 00:13:21.000 1972-03-12 2024-10-11 00:13:21 +802 802 803 80.2 160.4 802 1972-03-13 2024-10-11 00:13:22.000 1972-03-13 2024-10-11 00:13:22 +803 803 804 80.3 160.60000000000002 803 1972-03-14 2024-10-11 00:13:23.000 1972-03-14 2024-10-11 00:13:23 +804 804 805 80.4 160.8 804 1972-03-15 2024-10-11 00:13:24.000 1972-03-15 2024-10-11 00:13:24 +806 806 807 80.6 161.20000000000002 806 1972-03-17 2024-10-11 00:13:26.000 1972-03-17 2024-10-11 00:13:26 +807 807 808 80.7 161.4 807 1972-03-18 2024-10-11 00:13:27.000 1972-03-18 2024-10-11 00:13:27 +808 808 809 80.8 161.60000000000002 808 1972-03-19 2024-10-11 00:13:28.000 1972-03-19 2024-10-11 00:13:28 +809 809 810 80.9 161.8 809 1972-03-20 2024-10-11 00:13:29.000 1972-03-20 2024-10-11 00:13:29 +811 811 812 81.1 162.20000000000002 811 1972-03-22 2024-10-11 00:13:31.000 1972-03-22 2024-10-11 00:13:31 +812 812 813 81.2 162.4 812 1972-03-23 2024-10-11 00:13:32.000 1972-03-23 2024-10-11 00:13:32 +813 813 814 81.3 162.60000000000002 813 1972-03-24 2024-10-11 00:13:33.000 1972-03-24 2024-10-11 00:13:33 +814 814 815 81.4 162.8 814 1972-03-25 2024-10-11 00:13:34.000 1972-03-25 2024-10-11 00:13:34 +816 816 817 81.6 163.20000000000002 816 1972-03-27 2024-10-11 00:13:36.000 1972-03-27 2024-10-11 00:13:36 +817 817 818 81.7 163.4 817 1972-03-28 2024-10-11 00:13:37.000 1972-03-28 2024-10-11 00:13:37 +818 818 819 81.8 163.60000000000002 818 1972-03-29 2024-10-11 00:13:38.000 1972-03-29 2024-10-11 00:13:38 +819 819 820 81.9 163.8 819 1972-03-30 2024-10-11 00:13:39.000 1972-03-30 2024-10-11 00:13:39 +821 821 822 82.1 164.20000000000002 821 1972-04-01 2024-10-11 00:13:41.000 1972-04-01 2024-10-11 00:13:41 +822 822 823 82.2 164.4 822 1972-04-02 2024-10-11 00:13:42.000 1972-04-02 2024-10-11 00:13:42 +823 823 824 82.3 164.60000000000002 823 1972-04-03 2024-10-11 00:13:43.000 1972-04-03 2024-10-11 00:13:43 +824 824 825 82.4 164.8 824 1972-04-04 2024-10-11 00:13:44.000 1972-04-04 2024-10-11 00:13:44 +826 826 827 82.6 165.20000000000002 826 1972-04-06 2024-10-11 00:13:46.000 1972-04-06 2024-10-11 00:13:46 +827 827 828 82.7 165.4 827 1972-04-07 2024-10-11 00:13:47.000 1972-04-07 2024-10-11 00:13:47 +828 828 829 82.8 165.60000000000002 828 1972-04-08 2024-10-11 00:13:48.000 1972-04-08 2024-10-11 00:13:48 +829 829 830 82.9 165.8 829 1972-04-09 2024-10-11 00:13:49.000 1972-04-09 2024-10-11 00:13:49 +831 831 832 83.1 166.20000000000002 831 1972-04-11 2024-10-11 00:13:51.000 1972-04-11 2024-10-11 00:13:51 +832 832 833 83.2 166.4 832 1972-04-12 2024-10-11 00:13:52.000 1972-04-12 2024-10-11 00:13:52 +833 833 834 83.3 166.60000000000002 833 1972-04-13 2024-10-11 00:13:53.000 1972-04-13 2024-10-11 00:13:53 +834 834 835 83.4 166.8 834 1972-04-14 2024-10-11 00:13:54.000 1972-04-14 2024-10-11 00:13:54 +836 836 837 83.6 167.20000000000002 836 1972-04-16 2024-10-11 00:13:56.000 1972-04-16 2024-10-11 00:13:56 +837 837 838 83.7 167.4 837 1972-04-17 2024-10-11 00:13:57.000 1972-04-17 2024-10-11 00:13:57 +838 838 839 83.8 167.60000000000002 838 1972-04-18 2024-10-11 00:13:58.000 1972-04-18 2024-10-11 00:13:58 +839 839 840 83.9 167.8 839 1972-04-19 2024-10-11 00:13:59.000 1972-04-19 2024-10-11 00:13:59 +841 841 842 84.1 168.20000000000002 841 1972-04-21 2024-10-11 00:14:01.000 1972-04-21 2024-10-11 00:14:01 +842 842 843 84.2 168.4 842 1972-04-22 2024-10-11 00:14:02.000 1972-04-22 2024-10-11 00:14:02 +843 843 844 84.3 168.60000000000002 843 1972-04-23 2024-10-11 00:14:03.000 1972-04-23 2024-10-11 00:14:03 +844 844 845 84.4 168.8 844 1972-04-24 2024-10-11 00:14:04.000 1972-04-24 2024-10-11 00:14:04 +846 846 847 84.6 169.20000000000002 846 1972-04-26 2024-10-11 00:14:06.000 1972-04-26 2024-10-11 00:14:06 +847 847 848 84.7 169.4 847 1972-04-27 2024-10-11 00:14:07.000 1972-04-27 2024-10-11 00:14:07 +848 848 849 84.8 169.60000000000002 848 1972-04-28 2024-10-11 00:14:08.000 1972-04-28 2024-10-11 00:14:08 +849 849 850 84.9 169.8 849 1972-04-29 2024-10-11 00:14:09.000 1972-04-29 2024-10-11 00:14:09 +851 851 852 85.1 170.20000000000002 851 1972-05-01 2024-10-11 00:14:11.000 1972-05-01 2024-10-11 00:14:11 +852 852 853 85.2 170.4 852 1972-05-02 2024-10-11 00:14:12.000 1972-05-02 2024-10-11 00:14:12 +853 853 854 85.3 170.60000000000002 853 1972-05-03 2024-10-11 00:14:13.000 1972-05-03 2024-10-11 00:14:13 +854 854 855 85.4 170.8 854 1972-05-04 2024-10-11 00:14:14.000 1972-05-04 2024-10-11 00:14:14 +856 856 857 85.6 171.20000000000002 856 1972-05-06 2024-10-11 00:14:16.000 1972-05-06 2024-10-11 00:14:16 +857 857 858 85.7 171.4 857 1972-05-07 2024-10-11 00:14:17.000 1972-05-07 2024-10-11 00:14:17 +858 858 859 85.8 171.60000000000002 858 1972-05-08 2024-10-11 00:14:18.000 1972-05-08 2024-10-11 00:14:18 +859 859 860 85.9 171.8 859 1972-05-09 2024-10-11 00:14:19.000 1972-05-09 2024-10-11 00:14:19 +861 861 862 86.1 172.20000000000002 861 1972-05-11 2024-10-11 00:14:21.000 1972-05-11 2024-10-11 00:14:21 +862 862 863 86.2 172.4 862 1972-05-12 2024-10-11 00:14:22.000 1972-05-12 2024-10-11 00:14:22 +863 863 864 86.3 172.60000000000002 863 1972-05-13 2024-10-11 00:14:23.000 1972-05-13 2024-10-11 00:14:23 +864 864 865 86.4 172.8 864 1972-05-14 2024-10-11 00:14:24.000 1972-05-14 2024-10-11 00:14:24 +866 866 867 86.6 173.20000000000002 866 1972-05-16 2024-10-11 00:14:26.000 1972-05-16 2024-10-11 00:14:26 +867 867 868 86.7 173.4 867 1972-05-17 2024-10-11 00:14:27.000 1972-05-17 2024-10-11 00:14:27 +868 868 869 86.8 173.60000000000002 868 1972-05-18 2024-10-11 00:14:28.000 1972-05-18 2024-10-11 00:14:28 +869 869 870 86.9 173.8 869 1972-05-19 2024-10-11 00:14:29.000 1972-05-19 2024-10-11 00:14:29 +871 871 872 87.1 174.20000000000002 871 1972-05-21 2024-10-11 00:14:31.000 1972-05-21 2024-10-11 00:14:31 +872 872 873 87.2 174.4 872 1972-05-22 2024-10-11 00:14:32.000 1972-05-22 2024-10-11 00:14:32 +873 873 874 87.3 174.60000000000002 873 1972-05-23 2024-10-11 00:14:33.000 1972-05-23 2024-10-11 00:14:33 +874 874 875 87.4 174.8 874 1972-05-24 2024-10-11 00:14:34.000 1972-05-24 2024-10-11 00:14:34 +876 876 877 87.6 175.20000000000002 876 1972-05-26 2024-10-11 00:14:36.000 1972-05-26 2024-10-11 00:14:36 +877 877 878 87.7 175.4 877 1972-05-27 2024-10-11 00:14:37.000 1972-05-27 2024-10-11 00:14:37 +878 878 879 87.8 175.60000000000002 878 1972-05-28 2024-10-11 00:14:38.000 1972-05-28 2024-10-11 00:14:38 +879 879 880 87.9 175.8 879 1972-05-29 2024-10-11 00:14:39.000 1972-05-29 2024-10-11 00:14:39 +881 881 882 88.1 176.20000000000002 881 1972-05-31 2024-10-11 00:14:41.000 1972-05-31 2024-10-11 00:14:41 +882 882 883 88.2 176.4 882 1972-06-01 2024-10-11 00:14:42.000 1972-06-01 2024-10-11 00:14:42 +883 883 884 88.3 176.60000000000002 883 1972-06-02 2024-10-11 00:14:43.000 1972-06-02 2024-10-11 00:14:43 +884 884 885 88.4 176.8 884 1972-06-03 2024-10-11 00:14:44.000 1972-06-03 2024-10-11 00:14:44 +886 886 887 88.6 177.20000000000002 886 1972-06-05 2024-10-11 00:14:46.000 1972-06-05 2024-10-11 00:14:46 +887 887 888 88.7 177.4 887 1972-06-06 2024-10-11 00:14:47.000 1972-06-06 2024-10-11 00:14:47 +888 888 889 88.8 177.60000000000002 888 1972-06-07 2024-10-11 00:14:48.000 1972-06-07 2024-10-11 00:14:48 +889 889 890 88.9 177.8 889 1972-06-08 2024-10-11 00:14:49.000 1972-06-08 2024-10-11 00:14:49 +891 891 892 89.1 178.20000000000002 891 1972-06-10 2024-10-11 00:14:51.000 1972-06-10 2024-10-11 00:14:51 +892 892 893 89.2 178.4 892 1972-06-11 2024-10-11 00:14:52.000 1972-06-11 2024-10-11 00:14:52 +893 893 894 89.3 178.60000000000002 893 1972-06-12 2024-10-11 00:14:53.000 1972-06-12 2024-10-11 00:14:53 +894 894 895 89.4 178.8 894 1972-06-13 2024-10-11 00:14:54.000 1972-06-13 2024-10-11 00:14:54 +896 896 897 89.6 179.20000000000002 896 1972-06-15 2024-10-11 00:14:56.000 1972-06-15 2024-10-11 00:14:56 +897 897 898 89.7 179.4 897 1972-06-16 2024-10-11 00:14:57.000 1972-06-16 2024-10-11 00:14:57 +898 898 899 89.8 179.60000000000002 898 1972-06-17 2024-10-11 00:14:58.000 1972-06-17 2024-10-11 00:14:58 +899 899 900 89.9 179.8 899 1972-06-18 2024-10-11 00:14:59.000 1972-06-18 2024-10-11 00:14:59 +901 901 902 90.1 180.20000000000002 901 1972-06-20 2024-10-11 00:15:01.000 1972-06-20 2024-10-11 00:15:01 +902 902 903 90.2 180.4 902 1972-06-21 2024-10-11 00:15:02.000 1972-06-21 2024-10-11 00:15:02 +903 903 904 90.3 180.60000000000002 903 1972-06-22 2024-10-11 00:15:03.000 1972-06-22 2024-10-11 00:15:03 +904 904 905 90.4 180.8 904 1972-06-23 2024-10-11 00:15:04.000 1972-06-23 2024-10-11 00:15:04 +906 906 907 90.6 181.20000000000002 906 1972-06-25 2024-10-11 00:15:06.000 1972-06-25 2024-10-11 00:15:06 +907 907 908 90.7 181.4 907 1972-06-26 2024-10-11 00:15:07.000 1972-06-26 2024-10-11 00:15:07 +908 908 909 90.8 181.60000000000002 908 1972-06-27 2024-10-11 00:15:08.000 1972-06-27 2024-10-11 00:15:08 +909 909 910 90.9 181.8 909 1972-06-28 2024-10-11 00:15:09.000 1972-06-28 2024-10-11 00:15:09 +911 911 912 91.1 182.20000000000002 911 1972-06-30 2024-10-11 00:15:11.000 1972-06-30 2024-10-11 00:15:11 +912 912 913 91.2 182.4 912 1972-07-01 2024-10-11 00:15:12.000 1972-07-01 2024-10-11 00:15:12 +913 913 914 91.3 182.60000000000002 913 1972-07-02 2024-10-11 00:15:13.000 1972-07-02 2024-10-11 00:15:13 +914 914 915 91.4 182.8 914 1972-07-03 2024-10-11 00:15:14.000 1972-07-03 2024-10-11 00:15:14 +916 916 917 91.6 183.20000000000002 916 1972-07-05 2024-10-11 00:15:16.000 1972-07-05 2024-10-11 00:15:16 +917 917 918 91.7 183.4 917 1972-07-06 2024-10-11 00:15:17.000 1972-07-06 2024-10-11 00:15:17 +918 918 919 91.8 183.60000000000002 918 1972-07-07 2024-10-11 00:15:18.000 1972-07-07 2024-10-11 00:15:18 +919 919 920 91.9 183.8 919 1972-07-08 2024-10-11 00:15:19.000 1972-07-08 2024-10-11 00:15:19 +921 921 922 92.1 184.20000000000002 921 1972-07-10 2024-10-11 00:15:21.000 1972-07-10 2024-10-11 00:15:21 +922 922 923 92.2 184.4 922 1972-07-11 2024-10-11 00:15:22.000 1972-07-11 2024-10-11 00:15:22 +923 923 924 92.3 184.60000000000002 923 1972-07-12 2024-10-11 00:15:23.000 1972-07-12 2024-10-11 00:15:23 +924 924 925 92.4 184.8 924 1972-07-13 2024-10-11 00:15:24.000 1972-07-13 2024-10-11 00:15:24 +926 926 927 92.6 185.20000000000002 926 1972-07-15 2024-10-11 00:15:26.000 1972-07-15 2024-10-11 00:15:26 +927 927 928 92.7 185.4 927 1972-07-16 2024-10-11 00:15:27.000 1972-07-16 2024-10-11 00:15:27 +928 928 929 92.8 185.60000000000002 928 1972-07-17 2024-10-11 00:15:28.000 1972-07-17 2024-10-11 00:15:28 +929 929 930 92.9 185.8 929 1972-07-18 2024-10-11 00:15:29.000 1972-07-18 2024-10-11 00:15:29 +931 931 932 93.1 186.20000000000002 931 1972-07-20 2024-10-11 00:15:31.000 1972-07-20 2024-10-11 00:15:31 +932 932 933 93.2 186.4 932 1972-07-21 2024-10-11 00:15:32.000 1972-07-21 2024-10-11 00:15:32 +933 933 934 93.3 186.60000000000002 933 1972-07-22 2024-10-11 00:15:33.000 1972-07-22 2024-10-11 00:15:33 +934 934 935 93.4 186.8 934 1972-07-23 2024-10-11 00:15:34.000 1972-07-23 2024-10-11 00:15:34 +936 936 937 93.6 187.20000000000002 936 1972-07-25 2024-10-11 00:15:36.000 1972-07-25 2024-10-11 00:15:36 +937 937 938 93.7 187.4 937 1972-07-26 2024-10-11 00:15:37.000 1972-07-26 2024-10-11 00:15:37 +938 938 939 93.8 187.60000000000002 938 1972-07-27 2024-10-11 00:15:38.000 1972-07-27 2024-10-11 00:15:38 +939 939 940 93.9 187.8 939 1972-07-28 2024-10-11 00:15:39.000 1972-07-28 2024-10-11 00:15:39 +941 941 942 94.1 188.20000000000002 941 1972-07-30 2024-10-11 00:15:41.000 1972-07-30 2024-10-11 00:15:41 +942 942 943 94.2 188.4 942 1972-07-31 2024-10-11 00:15:42.000 1972-07-31 2024-10-11 00:15:42 +943 943 944 94.3 188.60000000000002 943 1972-08-01 2024-10-11 00:15:43.000 1972-08-01 2024-10-11 00:15:43 +944 944 945 94.4 188.8 944 1972-08-02 2024-10-11 00:15:44.000 1972-08-02 2024-10-11 00:15:44 +946 946 947 94.6 189.20000000000002 946 1972-08-04 2024-10-11 00:15:46.000 1972-08-04 2024-10-11 00:15:46 +947 947 948 94.7 189.4 947 1972-08-05 2024-10-11 00:15:47.000 1972-08-05 2024-10-11 00:15:47 +948 948 949 94.8 189.60000000000002 948 1972-08-06 2024-10-11 00:15:48.000 1972-08-06 2024-10-11 00:15:48 +949 949 950 94.9 189.8 949 1972-08-07 2024-10-11 00:15:49.000 1972-08-07 2024-10-11 00:15:49 +951 951 952 95.1 190.20000000000002 951 1972-08-09 2024-10-11 00:15:51.000 1972-08-09 2024-10-11 00:15:51 +952 952 953 95.2 190.4 952 1972-08-10 2024-10-11 00:15:52.000 1972-08-10 2024-10-11 00:15:52 +953 953 954 95.3 190.60000000000002 953 1972-08-11 2024-10-11 00:15:53.000 1972-08-11 2024-10-11 00:15:53 +954 954 955 95.4 190.8 954 1972-08-12 2024-10-11 00:15:54.000 1972-08-12 2024-10-11 00:15:54 +956 956 957 95.6 191.20000000000002 956 1972-08-14 2024-10-11 00:15:56.000 1972-08-14 2024-10-11 00:15:56 +957 957 958 95.7 191.4 957 1972-08-15 2024-10-11 00:15:57.000 1972-08-15 2024-10-11 00:15:57 +958 958 959 95.8 191.60000000000002 958 1972-08-16 2024-10-11 00:15:58.000 1972-08-16 2024-10-11 00:15:58 +959 959 960 95.9 191.8 959 1972-08-17 2024-10-11 00:15:59.000 1972-08-17 2024-10-11 00:15:59 +961 961 962 96.1 192.20000000000002 961 1972-08-19 2024-10-11 00:16:01.000 1972-08-19 2024-10-11 00:16:01 +962 962 963 96.2 192.4 962 1972-08-20 2024-10-11 00:16:02.000 1972-08-20 2024-10-11 00:16:02 +963 963 964 96.3 192.60000000000002 963 1972-08-21 2024-10-11 00:16:03.000 1972-08-21 2024-10-11 00:16:03 +964 964 965 96.4 192.8 964 1972-08-22 2024-10-11 00:16:04.000 1972-08-22 2024-10-11 00:16:04 +966 966 967 96.6 193.20000000000002 966 1972-08-24 2024-10-11 00:16:06.000 1972-08-24 2024-10-11 00:16:06 +967 967 968 96.7 193.4 967 1972-08-25 2024-10-11 00:16:07.000 1972-08-25 2024-10-11 00:16:07 +968 968 969 96.8 193.60000000000002 968 1972-08-26 2024-10-11 00:16:08.000 1972-08-26 2024-10-11 00:16:08 +969 969 970 96.9 193.8 969 1972-08-27 2024-10-11 00:16:09.000 1972-08-27 2024-10-11 00:16:09 +971 971 972 97.1 194.20000000000002 971 1972-08-29 2024-10-11 00:16:11.000 1972-08-29 2024-10-11 00:16:11 +972 972 973 97.2 194.4 972 1972-08-30 2024-10-11 00:16:12.000 1972-08-30 2024-10-11 00:16:12 +973 973 974 97.3 194.60000000000002 973 1972-08-31 2024-10-11 00:16:13.000 1972-08-31 2024-10-11 00:16:13 +974 974 975 97.4 194.8 974 1972-09-01 2024-10-11 00:16:14.000 1972-09-01 2024-10-11 00:16:14 +976 976 977 97.6 195.20000000000002 976 1972-09-03 2024-10-11 00:16:16.000 1972-09-03 2024-10-11 00:16:16 +977 977 978 97.7 195.4 977 1972-09-04 2024-10-11 00:16:17.000 1972-09-04 2024-10-11 00:16:17 +978 978 979 97.8 195.60000000000002 978 1972-09-05 2024-10-11 00:16:18.000 1972-09-05 2024-10-11 00:16:18 +979 979 980 97.9 195.8 979 1972-09-06 2024-10-11 00:16:19.000 1972-09-06 2024-10-11 00:16:19 +981 981 982 98.1 196.20000000000002 981 1972-09-08 2024-10-11 00:16:21.000 1972-09-08 2024-10-11 00:16:21 +982 982 983 98.2 196.4 982 1972-09-09 2024-10-11 00:16:22.000 1972-09-09 2024-10-11 00:16:22 +983 983 984 98.3 196.60000000000002 983 1972-09-10 2024-10-11 00:16:23.000 1972-09-10 2024-10-11 00:16:23 +984 984 985 98.4 196.8 984 1972-09-11 2024-10-11 00:16:24.000 1972-09-11 2024-10-11 00:16:24 +986 986 987 98.6 197.20000000000002 986 1972-09-13 2024-10-11 00:16:26.000 1972-09-13 2024-10-11 00:16:26 +987 987 988 98.7 197.4 987 1972-09-14 2024-10-11 00:16:27.000 1972-09-14 2024-10-11 00:16:27 +988 988 989 98.8 197.60000000000002 988 1972-09-15 2024-10-11 00:16:28.000 1972-09-15 2024-10-11 00:16:28 +989 989 990 98.9 197.8 989 1972-09-16 2024-10-11 00:16:29.000 1972-09-16 2024-10-11 00:16:29 +991 991 992 99.1 198.20000000000002 991 1972-09-18 2024-10-11 00:16:31.000 1972-09-18 2024-10-11 00:16:31 +992 992 993 99.2 198.4 992 1972-09-19 2024-10-11 00:16:32.000 1972-09-19 2024-10-11 00:16:32 +993 993 994 99.3 198.60000000000002 993 1972-09-20 2024-10-11 00:16:33.000 1972-09-20 2024-10-11 00:16:33 +994 994 995 99.4 198.8 994 1972-09-21 2024-10-11 00:16:34.000 1972-09-21 2024-10-11 00:16:34 +996 996 997 99.6 199.20000000000002 996 1972-09-23 2024-10-11 00:16:36.000 1972-09-23 2024-10-11 00:16:36 +997 997 998 99.7 199.4 997 1972-09-24 2024-10-11 00:16:37.000 1972-09-24 2024-10-11 00:16:37 +998 998 999 99.8 199.60000000000002 998 1972-09-25 2024-10-11 00:16:38.000 1972-09-25 2024-10-11 00:16:38 +999 999 1000 99.9 199.8 999 1972-09-26 2024-10-11 00:16:39.000 1972-09-26 2024-10-11 00:16:39 +1001 1001 1002 100.1 200.20000000000002 1001 1972-09-28 2024-10-11 00:16:41.000 1972-09-28 2024-10-11 00:16:41 +1002 1002 1003 100.2 200.4 1002 1972-09-29 2024-10-11 00:16:42.000 1972-09-29 2024-10-11 00:16:42 +1003 1003 1004 100.3 200.60000000000002 1003 1972-09-30 2024-10-11 00:16:43.000 1972-09-30 2024-10-11 00:16:43 +1004 1004 1005 100.4 200.8 1004 1972-10-01 2024-10-11 00:16:44.000 1972-10-01 2024-10-11 00:16:44 +1006 1006 1007 100.6 201.20000000000002 1006 1972-10-03 2024-10-11 00:16:46.000 1972-10-03 2024-10-11 00:16:46 +1007 1007 1008 100.7 201.4 1007 1972-10-04 2024-10-11 00:16:47.000 1972-10-04 2024-10-11 00:16:47 +1008 1008 1009 100.8 201.60000000000002 1008 1972-10-05 2024-10-11 00:16:48.000 1972-10-05 2024-10-11 00:16:48 +1009 1009 1010 100.9 201.8 1009 1972-10-06 2024-10-11 00:16:49.000 1972-10-06 2024-10-11 00:16:49 +1011 1011 1012 101.1 202.20000000000002 1011 1972-10-08 2024-10-11 00:16:51.000 1972-10-08 2024-10-11 00:16:51 +1012 1012 1013 101.2 202.4 1012 1972-10-09 2024-10-11 00:16:52.000 1972-10-09 2024-10-11 00:16:52 +1013 1013 1014 101.3 202.60000000000002 1013 1972-10-10 2024-10-11 00:16:53.000 1972-10-10 2024-10-11 00:16:53 +1014 1014 1015 101.4 202.8 1014 1972-10-11 2024-10-11 00:16:54.000 1972-10-11 2024-10-11 00:16:54 +1016 1016 1017 101.6 203.20000000000002 1016 1972-10-13 2024-10-11 00:16:56.000 1972-10-13 2024-10-11 00:16:56 +1017 1017 1018 101.7 203.4 1017 1972-10-14 2024-10-11 00:16:57.000 1972-10-14 2024-10-11 00:16:57 +1018 1018 1019 101.8 203.60000000000002 1018 1972-10-15 2024-10-11 00:16:58.000 1972-10-15 2024-10-11 00:16:58 +1019 1019 1020 101.9 203.8 1019 1972-10-16 2024-10-11 00:16:59.000 1972-10-16 2024-10-11 00:16:59 +1021 1021 1022 102.1 204.20000000000002 1021 1972-10-18 2024-10-11 00:17:01.000 1972-10-18 2024-10-11 00:17:01 +1022 1022 1023 102.2 204.4 1022 1972-10-19 2024-10-11 00:17:02.000 1972-10-19 2024-10-11 00:17:02 +1023 1023 1024 102.3 204.60000000000002 1023 1972-10-20 2024-10-11 00:17:03.000 1972-10-20 2024-10-11 00:17:03 +1024 1024 1025 102.4 204.8 1024 1972-10-21 2024-10-11 00:17:04.000 1972-10-21 2024-10-11 00:17:04 +1026 1026 1027 102.6 205.20000000000002 1026 1972-10-23 2024-10-11 00:17:06.000 1972-10-23 2024-10-11 00:17:06 +1027 1027 1028 102.7 205.4 1027 1972-10-24 2024-10-11 00:17:07.000 1972-10-24 2024-10-11 00:17:07 +1028 1028 1029 102.8 205.60000000000002 1028 1972-10-25 2024-10-11 00:17:08.000 1972-10-25 2024-10-11 00:17:08 +1029 1029 1030 102.9 205.8 1029 1972-10-26 2024-10-11 00:17:09.000 1972-10-26 2024-10-11 00:17:09 +1031 1031 1032 103.1 206.20000000000002 1031 1972-10-28 2024-10-11 00:17:11.000 1972-10-28 2024-10-11 00:17:11 +1032 1032 1033 103.2 206.4 1032 1972-10-29 2024-10-11 00:17:12.000 1972-10-29 2024-10-11 00:17:12 +1033 1033 1034 103.3 206.60000000000002 1033 1972-10-30 2024-10-11 00:17:13.000 1972-10-30 2024-10-11 00:17:13 +1034 1034 1035 103.4 206.8 1034 1972-10-31 2024-10-11 00:17:14.000 1972-10-31 2024-10-11 00:17:14 +1036 1036 1037 103.6 207.20000000000002 1036 1972-11-02 2024-10-11 00:17:16.000 1972-11-02 2024-10-11 00:17:16 +1037 1037 1038 103.7 207.4 1037 1972-11-03 2024-10-11 00:17:17.000 1972-11-03 2024-10-11 00:17:17 +1038 1038 1039 103.8 207.60000000000002 1038 1972-11-04 2024-10-11 00:17:18.000 1972-11-04 2024-10-11 00:17:18 +1039 1039 1040 103.9 207.8 1039 1972-11-05 2024-10-11 00:17:19.000 1972-11-05 2024-10-11 00:17:19 +1041 1041 1042 104.1 208.20000000000002 1041 1972-11-07 2024-10-11 00:17:21.000 1972-11-07 2024-10-11 00:17:21 +1042 1042 1043 104.2 208.4 1042 1972-11-08 2024-10-11 00:17:22.000 1972-11-08 2024-10-11 00:17:22 +1043 1043 1044 104.3 208.60000000000002 1043 1972-11-09 2024-10-11 00:17:23.000 1972-11-09 2024-10-11 00:17:23 +1044 1044 1045 104.4 208.8 1044 1972-11-10 2024-10-11 00:17:24.000 1972-11-10 2024-10-11 00:17:24 +1046 1046 1047 104.6 209.20000000000002 1046 1972-11-12 2024-10-11 00:17:26.000 1972-11-12 2024-10-11 00:17:26 +1047 1047 1048 104.7 209.4 1047 1972-11-13 2024-10-11 00:17:27.000 1972-11-13 2024-10-11 00:17:27 +1048 1048 1049 104.8 209.60000000000002 1048 1972-11-14 2024-10-11 00:17:28.000 1972-11-14 2024-10-11 00:17:28 +1049 1049 1050 104.9 209.8 1049 1972-11-15 2024-10-11 00:17:29.000 1972-11-15 2024-10-11 00:17:29 +1051 1051 1052 105.1 210.20000000000002 1051 1972-11-17 2024-10-11 00:17:31.000 1972-11-17 2024-10-11 00:17:31 +1052 1052 1053 105.2 210.4 1052 1972-11-18 2024-10-11 00:17:32.000 1972-11-18 2024-10-11 00:17:32 +1053 1053 1054 105.3 210.60000000000002 1053 1972-11-19 2024-10-11 00:17:33.000 1972-11-19 2024-10-11 00:17:33 +1054 1054 1055 105.4 210.8 1054 1972-11-20 2024-10-11 00:17:34.000 1972-11-20 2024-10-11 00:17:34 +1056 1056 1057 105.6 211.20000000000002 1056 1972-11-22 2024-10-11 00:17:36.000 1972-11-22 2024-10-11 00:17:36 +1057 1057 1058 105.7 211.4 1057 1972-11-23 2024-10-11 00:17:37.000 1972-11-23 2024-10-11 00:17:37 +1058 1058 1059 105.8 211.60000000000002 1058 1972-11-24 2024-10-11 00:17:38.000 1972-11-24 2024-10-11 00:17:38 +1059 1059 1060 105.9 211.8 1059 1972-11-25 2024-10-11 00:17:39.000 1972-11-25 2024-10-11 00:17:39 +1061 1061 1062 106.1 212.20000000000002 1061 1972-11-27 2024-10-11 00:17:41.000 1972-11-27 2024-10-11 00:17:41 +1062 1062 1063 106.2 212.4 1062 1972-11-28 2024-10-11 00:17:42.000 1972-11-28 2024-10-11 00:17:42 +1063 1063 1064 106.3 212.60000000000002 1063 1972-11-29 2024-10-11 00:17:43.000 1972-11-29 2024-10-11 00:17:43 +1064 1064 1065 106.4 212.8 1064 1972-11-30 2024-10-11 00:17:44.000 1972-11-30 2024-10-11 00:17:44 +1066 1066 1067 106.6 213.20000000000002 1066 1972-12-02 2024-10-11 00:17:46.000 1972-12-02 2024-10-11 00:17:46 +1067 1067 1068 106.7 213.4 1067 1972-12-03 2024-10-11 00:17:47.000 1972-12-03 2024-10-11 00:17:47 +1068 1068 1069 106.8 213.60000000000002 1068 1972-12-04 2024-10-11 00:17:48.000 1972-12-04 2024-10-11 00:17:48 +1069 1069 1070 106.9 213.8 1069 1972-12-05 2024-10-11 00:17:49.000 1972-12-05 2024-10-11 00:17:49 +1071 1071 1072 107.1 214.20000000000002 1071 1972-12-07 2024-10-11 00:17:51.000 1972-12-07 2024-10-11 00:17:51 +1072 1072 1073 107.2 214.4 1072 1972-12-08 2024-10-11 00:17:52.000 1972-12-08 2024-10-11 00:17:52 +1073 1073 1074 107.3 214.60000000000002 1073 1972-12-09 2024-10-11 00:17:53.000 1972-12-09 2024-10-11 00:17:53 +1074 1074 1075 107.4 214.8 1074 1972-12-10 2024-10-11 00:17:54.000 1972-12-10 2024-10-11 00:17:54 +1076 1076 1077 107.6 215.20000000000002 1076 1972-12-12 2024-10-11 00:17:56.000 1972-12-12 2024-10-11 00:17:56 +1077 1077 1078 107.7 215.4 1077 1972-12-13 2024-10-11 00:17:57.000 1972-12-13 2024-10-11 00:17:57 +1078 1078 1079 107.8 215.60000000000002 1078 1972-12-14 2024-10-11 00:17:58.000 1972-12-14 2024-10-11 00:17:58 +1079 1079 1080 107.9 215.8 1079 1972-12-15 2024-10-11 00:17:59.000 1972-12-15 2024-10-11 00:17:59 +1081 1081 1082 108.1 216.20000000000002 1081 1972-12-17 2024-10-11 00:18:01.000 1972-12-17 2024-10-11 00:18:01 +1082 1082 1083 108.2 216.4 1082 1972-12-18 2024-10-11 00:18:02.000 1972-12-18 2024-10-11 00:18:02 +1083 1083 1084 108.3 216.60000000000002 1083 1972-12-19 2024-10-11 00:18:03.000 1972-12-19 2024-10-11 00:18:03 +1084 1084 1085 108.4 216.8 1084 1972-12-20 2024-10-11 00:18:04.000 1972-12-20 2024-10-11 00:18:04 +1086 1086 1087 108.6 217.20000000000002 1086 1972-12-22 2024-10-11 00:18:06.000 1972-12-22 2024-10-11 00:18:06 +1087 1087 1088 108.7 217.4 1087 1972-12-23 2024-10-11 00:18:07.000 1972-12-23 2024-10-11 00:18:07 +1088 1088 1089 108.8 217.60000000000002 1088 1972-12-24 2024-10-11 00:18:08.000 1972-12-24 2024-10-11 00:18:08 +1089 1089 1090 108.9 217.8 1089 1972-12-25 2024-10-11 00:18:09.000 1972-12-25 2024-10-11 00:18:09 +1091 1091 1092 109.1 218.20000000000002 1091 1972-12-27 2024-10-11 00:18:11.000 1972-12-27 2024-10-11 00:18:11 +1092 1092 1093 109.2 218.4 1092 1972-12-28 2024-10-11 00:18:12.000 1972-12-28 2024-10-11 00:18:12 +1093 1093 1094 109.3 218.60000000000002 1093 1972-12-29 2024-10-11 00:18:13.000 1972-12-29 2024-10-11 00:18:13 +1094 1094 1095 109.4 218.8 1094 1972-12-30 2024-10-11 00:18:14.000 1972-12-30 2024-10-11 00:18:14 +1096 1096 1097 109.6 219.20000000000002 1096 1973-01-01 2024-10-11 00:18:16.000 1973-01-01 2024-10-11 00:18:16 +1097 1097 1098 109.7 219.4 1097 1973-01-02 2024-10-11 00:18:17.000 1973-01-02 2024-10-11 00:18:17 +1098 1098 1099 109.8 219.60000000000002 1098 1973-01-03 2024-10-11 00:18:18.000 1973-01-03 2024-10-11 00:18:18 +1099 1099 1100 109.9 219.8 1099 1973-01-04 2024-10-11 00:18:19.000 1973-01-04 2024-10-11 00:18:19 +1101 1101 1102 110.1 220.20000000000002 1101 1973-01-06 2024-10-11 00:18:21.000 1973-01-06 2024-10-11 00:18:21 +1102 1102 1103 110.2 220.4 1102 1973-01-07 2024-10-11 00:18:22.000 1973-01-07 2024-10-11 00:18:22 +1103 1103 1104 110.3 220.60000000000002 1103 1973-01-08 2024-10-11 00:18:23.000 1973-01-08 2024-10-11 00:18:23 +1104 1104 1105 110.4 220.8 1104 1973-01-09 2024-10-11 00:18:24.000 1973-01-09 2024-10-11 00:18:24 +1106 1106 1107 110.6 221.20000000000002 1106 1973-01-11 2024-10-11 00:18:26.000 1973-01-11 2024-10-11 00:18:26 +1107 1107 1108 110.7 221.4 1107 1973-01-12 2024-10-11 00:18:27.000 1973-01-12 2024-10-11 00:18:27 +1108 1108 1109 110.8 221.60000000000002 1108 1973-01-13 2024-10-11 00:18:28.000 1973-01-13 2024-10-11 00:18:28 +1109 1109 1110 110.9 221.8 1109 1973-01-14 2024-10-11 00:18:29.000 1973-01-14 2024-10-11 00:18:29 +1111 1111 1112 111.1 222.20000000000002 1111 1973-01-16 2024-10-11 00:18:31.000 1973-01-16 2024-10-11 00:18:31 +1112 1112 1113 111.2 222.4 1112 1973-01-17 2024-10-11 00:18:32.000 1973-01-17 2024-10-11 00:18:32 +1113 1113 1114 111.3 222.60000000000002 1113 1973-01-18 2024-10-11 00:18:33.000 1973-01-18 2024-10-11 00:18:33 +1114 1114 1115 111.4 222.8 1114 1973-01-19 2024-10-11 00:18:34.000 1973-01-19 2024-10-11 00:18:34 +1116 1116 1117 111.6 223.20000000000002 1116 1973-01-21 2024-10-11 00:18:36.000 1973-01-21 2024-10-11 00:18:36 +1117 1117 1118 111.7 223.4 1117 1973-01-22 2024-10-11 00:18:37.000 1973-01-22 2024-10-11 00:18:37 +1118 1118 1119 111.8 223.60000000000002 1118 1973-01-23 2024-10-11 00:18:38.000 1973-01-23 2024-10-11 00:18:38 +1119 1119 1120 111.9 223.8 1119 1973-01-24 2024-10-11 00:18:39.000 1973-01-24 2024-10-11 00:18:39 +1121 1121 1122 112.1 224.20000000000002 1121 1973-01-26 2024-10-11 00:18:41.000 1973-01-26 2024-10-11 00:18:41 +1122 1122 1123 112.2 224.4 1122 1973-01-27 2024-10-11 00:18:42.000 1973-01-27 2024-10-11 00:18:42 +1123 1123 1124 112.3 224.60000000000002 1123 1973-01-28 2024-10-11 00:18:43.000 1973-01-28 2024-10-11 00:18:43 +1124 1124 1125 112.4 224.8 1124 1973-01-29 2024-10-11 00:18:44.000 1973-01-29 2024-10-11 00:18:44 +1126 1126 1127 112.6 225.20000000000002 1126 1973-01-31 2024-10-11 00:18:46.000 1973-01-31 2024-10-11 00:18:46 +1127 1127 1128 112.7 225.4 1127 1973-02-01 2024-10-11 00:18:47.000 1973-02-01 2024-10-11 00:18:47 +1128 1128 1129 112.8 225.60000000000002 1128 1973-02-02 2024-10-11 00:18:48.000 1973-02-02 2024-10-11 00:18:48 +1129 1129 1130 112.9 225.8 1129 1973-02-03 2024-10-11 00:18:49.000 1973-02-03 2024-10-11 00:18:49 +1131 1131 1132 113.1 226.20000000000002 1131 1973-02-05 2024-10-11 00:18:51.000 1973-02-05 2024-10-11 00:18:51 +1132 1132 1133 113.2 226.4 1132 1973-02-06 2024-10-11 00:18:52.000 1973-02-06 2024-10-11 00:18:52 +1133 1133 1134 113.3 226.60000000000002 1133 1973-02-07 2024-10-11 00:18:53.000 1973-02-07 2024-10-11 00:18:53 +1134 1134 1135 113.4 226.8 1134 1973-02-08 2024-10-11 00:18:54.000 1973-02-08 2024-10-11 00:18:54 +1136 1136 1137 113.6 227.20000000000002 1136 1973-02-10 2024-10-11 00:18:56.000 1973-02-10 2024-10-11 00:18:56 +1137 1137 1138 113.7 227.4 1137 1973-02-11 2024-10-11 00:18:57.000 1973-02-11 2024-10-11 00:18:57 +1138 1138 1139 113.8 227.60000000000002 1138 1973-02-12 2024-10-11 00:18:58.000 1973-02-12 2024-10-11 00:18:58 +1139 1139 1140 113.9 227.8 1139 1973-02-13 2024-10-11 00:18:59.000 1973-02-13 2024-10-11 00:18:59 +1141 1141 1142 114.1 228.20000000000002 1141 1973-02-15 2024-10-11 00:19:01.000 1973-02-15 2024-10-11 00:19:01 +1142 1142 1143 114.2 228.4 1142 1973-02-16 2024-10-11 00:19:02.000 1973-02-16 2024-10-11 00:19:02 +1143 1143 1144 114.3 228.60000000000002 1143 1973-02-17 2024-10-11 00:19:03.000 1973-02-17 2024-10-11 00:19:03 +1144 1144 1145 114.4 228.8 1144 1973-02-18 2024-10-11 00:19:04.000 1973-02-18 2024-10-11 00:19:04 +1146 1146 1147 114.6 229.20000000000002 1146 1973-02-20 2024-10-11 00:19:06.000 1973-02-20 2024-10-11 00:19:06 +1147 1147 1148 114.7 229.4 1147 1973-02-21 2024-10-11 00:19:07.000 1973-02-21 2024-10-11 00:19:07 +1148 1148 1149 114.8 229.60000000000002 1148 1973-02-22 2024-10-11 00:19:08.000 1973-02-22 2024-10-11 00:19:08 +1149 1149 1150 114.9 229.8 1149 1973-02-23 2024-10-11 00:19:09.000 1973-02-23 2024-10-11 00:19:09 +1151 1151 1152 115.1 230.20000000000002 1151 1973-02-25 2024-10-11 00:19:11.000 1973-02-25 2024-10-11 00:19:11 +1152 1152 1153 115.2 230.4 1152 1973-02-26 2024-10-11 00:19:12.000 1973-02-26 2024-10-11 00:19:12 +1153 1153 1154 115.3 230.60000000000002 1153 1973-02-27 2024-10-11 00:19:13.000 1973-02-27 2024-10-11 00:19:13 +1154 1154 1155 115.4 230.8 1154 1973-02-28 2024-10-11 00:19:14.000 1973-02-28 2024-10-11 00:19:14 +1156 1156 1157 115.6 231.20000000000002 1156 1973-03-02 2024-10-11 00:19:16.000 1973-03-02 2024-10-11 00:19:16 +1157 1157 1158 115.7 231.4 1157 1973-03-03 2024-10-11 00:19:17.000 1973-03-03 2024-10-11 00:19:17 +1158 1158 1159 115.8 231.60000000000002 1158 1973-03-04 2024-10-11 00:19:18.000 1973-03-04 2024-10-11 00:19:18 +1159 1159 1160 115.9 231.8 1159 1973-03-05 2024-10-11 00:19:19.000 1973-03-05 2024-10-11 00:19:19 +1161 1161 1162 116.1 232.20000000000002 1161 1973-03-07 2024-10-11 00:19:21.000 1973-03-07 2024-10-11 00:19:21 +1162 1162 1163 116.2 232.4 1162 1973-03-08 2024-10-11 00:19:22.000 1973-03-08 2024-10-11 00:19:22 +1163 1163 1164 116.3 232.60000000000002 1163 1973-03-09 2024-10-11 00:19:23.000 1973-03-09 2024-10-11 00:19:23 +1164 1164 1165 116.4 232.8 1164 1973-03-10 2024-10-11 00:19:24.000 1973-03-10 2024-10-11 00:19:24 +1166 1166 1167 116.6 233.20000000000002 1166 1973-03-12 2024-10-11 00:19:26.000 1973-03-12 2024-10-11 00:19:26 +1167 1167 1168 116.7 233.4 1167 1973-03-13 2024-10-11 00:19:27.000 1973-03-13 2024-10-11 00:19:27 +1168 1168 1169 116.8 233.60000000000002 1168 1973-03-14 2024-10-11 00:19:28.000 1973-03-14 2024-10-11 00:19:28 +1169 1169 1170 116.9 233.8 1169 1973-03-15 2024-10-11 00:19:29.000 1973-03-15 2024-10-11 00:19:29 +1171 1171 1172 117.1 234.20000000000002 1171 1973-03-17 2024-10-11 00:19:31.000 1973-03-17 2024-10-11 00:19:31 +1172 1172 1173 117.2 234.4 1172 1973-03-18 2024-10-11 00:19:32.000 1973-03-18 2024-10-11 00:19:32 +1173 1173 1174 117.3 234.60000000000002 1173 1973-03-19 2024-10-11 00:19:33.000 1973-03-19 2024-10-11 00:19:33 +1174 1174 1175 117.4 234.8 1174 1973-03-20 2024-10-11 00:19:34.000 1973-03-20 2024-10-11 00:19:34 +1176 1176 1177 117.6 235.20000000000002 1176 1973-03-22 2024-10-11 00:19:36.000 1973-03-22 2024-10-11 00:19:36 +1177 1177 1178 117.7 235.4 1177 1973-03-23 2024-10-11 00:19:37.000 1973-03-23 2024-10-11 00:19:37 +1178 1178 1179 117.8 235.60000000000002 1178 1973-03-24 2024-10-11 00:19:38.000 1973-03-24 2024-10-11 00:19:38 +1179 1179 1180 117.9 235.8 1179 1973-03-25 2024-10-11 00:19:39.000 1973-03-25 2024-10-11 00:19:39 +1181 1181 1182 118.1 236.20000000000002 1181 1973-03-27 2024-10-11 00:19:41.000 1973-03-27 2024-10-11 00:19:41 +1182 1182 1183 118.2 236.4 1182 1973-03-28 2024-10-11 00:19:42.000 1973-03-28 2024-10-11 00:19:42 +1183 1183 1184 118.3 236.60000000000002 1183 1973-03-29 2024-10-11 00:19:43.000 1973-03-29 2024-10-11 00:19:43 +1184 1184 1185 118.4 236.8 1184 1973-03-30 2024-10-11 00:19:44.000 1973-03-30 2024-10-11 00:19:44 +1186 1186 1187 118.6 237.20000000000002 1186 1973-04-01 2024-10-11 00:19:46.000 1973-04-01 2024-10-11 00:19:46 +1187 1187 1188 118.7 237.4 1187 1973-04-02 2024-10-11 00:19:47.000 1973-04-02 2024-10-11 00:19:47 +1188 1188 1189 118.8 237.60000000000002 1188 1973-04-03 2024-10-11 00:19:48.000 1973-04-03 2024-10-11 00:19:48 +1189 1189 1190 118.9 237.8 1189 1973-04-04 2024-10-11 00:19:49.000 1973-04-04 2024-10-11 00:19:49 +1191 1191 1192 119.1 238.20000000000002 1191 1973-04-06 2024-10-11 00:19:51.000 1973-04-06 2024-10-11 00:19:51 +1192 1192 1193 119.2 238.4 1192 1973-04-07 2024-10-11 00:19:52.000 1973-04-07 2024-10-11 00:19:52 +1193 1193 1194 119.3 238.60000000000002 1193 1973-04-08 2024-10-11 00:19:53.000 1973-04-08 2024-10-11 00:19:53 +1194 1194 1195 119.4 238.8 1194 1973-04-09 2024-10-11 00:19:54.000 1973-04-09 2024-10-11 00:19:54 +1196 1196 1197 119.6 239.20000000000002 1196 1973-04-11 2024-10-11 00:19:56.000 1973-04-11 2024-10-11 00:19:56 +1197 1197 1198 119.7 239.4 1197 1973-04-12 2024-10-11 00:19:57.000 1973-04-12 2024-10-11 00:19:57 +1198 1198 1199 119.8 239.60000000000002 1198 1973-04-13 2024-10-11 00:19:58.000 1973-04-13 2024-10-11 00:19:58 +1199 1199 1200 119.9 239.8 1199 1973-04-14 2024-10-11 00:19:59.000 1973-04-14 2024-10-11 00:19:59 +1201 1201 1202 120.1 240.20000000000002 1201 1973-04-16 2024-10-11 00:20:01.000 1973-04-16 2024-10-11 00:20:01 +1202 1202 1203 120.2 240.4 1202 1973-04-17 2024-10-11 00:20:02.000 1973-04-17 2024-10-11 00:20:02 +1203 1203 1204 120.3 240.60000000000002 1203 1973-04-18 2024-10-11 00:20:03.000 1973-04-18 2024-10-11 00:20:03 +1204 1204 1205 120.4 240.8 1204 1973-04-19 2024-10-11 00:20:04.000 1973-04-19 2024-10-11 00:20:04 +1206 1206 1207 120.6 241.20000000000002 1206 1973-04-21 2024-10-11 00:20:06.000 1973-04-21 2024-10-11 00:20:06 +1207 1207 1208 120.7 241.4 1207 1973-04-22 2024-10-11 00:20:07.000 1973-04-22 2024-10-11 00:20:07 +1208 1208 1209 120.8 241.60000000000002 1208 1973-04-23 2024-10-11 00:20:08.000 1973-04-23 2024-10-11 00:20:08 +1209 1209 1210 120.9 241.8 1209 1973-04-24 2024-10-11 00:20:09.000 1973-04-24 2024-10-11 00:20:09 +1211 1211 1212 121.1 242.20000000000002 1211 1973-04-26 2024-10-11 00:20:11.000 1973-04-26 2024-10-11 00:20:11 +1212 1212 1213 121.2 242.4 1212 1973-04-27 2024-10-11 00:20:12.000 1973-04-27 2024-10-11 00:20:12 +1213 1213 1214 121.3 242.60000000000002 1213 1973-04-28 2024-10-11 00:20:13.000 1973-04-28 2024-10-11 00:20:13 +1214 1214 1215 121.4 242.8 1214 1973-04-29 2024-10-11 00:20:14.000 1973-04-29 2024-10-11 00:20:14 +1216 1216 1217 121.6 243.20000000000002 1216 1973-05-01 2024-10-11 00:20:16.000 1973-05-01 2024-10-11 00:20:16 +1217 1217 1218 121.7 243.4 1217 1973-05-02 2024-10-11 00:20:17.000 1973-05-02 2024-10-11 00:20:17 +1218 1218 1219 121.8 243.60000000000002 1218 1973-05-03 2024-10-11 00:20:18.000 1973-05-03 2024-10-11 00:20:18 +1219 1219 1220 121.9 243.8 1219 1973-05-04 2024-10-11 00:20:19.000 1973-05-04 2024-10-11 00:20:19 +1221 1221 1222 122.1 244.20000000000002 1221 1973-05-06 2024-10-11 00:20:21.000 1973-05-06 2024-10-11 00:20:21 +1222 1222 1223 122.2 244.4 1222 1973-05-07 2024-10-11 00:20:22.000 1973-05-07 2024-10-11 00:20:22 +1223 1223 1224 122.3 244.60000000000002 1223 1973-05-08 2024-10-11 00:20:23.000 1973-05-08 2024-10-11 00:20:23 +1224 1224 1225 122.4 244.8 1224 1973-05-09 2024-10-11 00:20:24.000 1973-05-09 2024-10-11 00:20:24 +1226 1226 1227 122.6 245.20000000000002 1226 1973-05-11 2024-10-11 00:20:26.000 1973-05-11 2024-10-11 00:20:26 +1227 1227 1228 122.7 245.4 1227 1973-05-12 2024-10-11 00:20:27.000 1973-05-12 2024-10-11 00:20:27 +1228 1228 1229 122.8 245.60000000000002 1228 1973-05-13 2024-10-11 00:20:28.000 1973-05-13 2024-10-11 00:20:28 +1229 1229 1230 122.9 245.8 1229 1973-05-14 2024-10-11 00:20:29.000 1973-05-14 2024-10-11 00:20:29 +1231 1231 1232 123.1 246.20000000000002 1231 1973-05-16 2024-10-11 00:20:31.000 1973-05-16 2024-10-11 00:20:31 +1232 1232 1233 123.2 246.4 1232 1973-05-17 2024-10-11 00:20:32.000 1973-05-17 2024-10-11 00:20:32 +1233 1233 1234 123.3 246.60000000000002 1233 1973-05-18 2024-10-11 00:20:33.000 1973-05-18 2024-10-11 00:20:33 +1234 1234 1235 123.4 246.8 1234 1973-05-19 2024-10-11 00:20:34.000 1973-05-19 2024-10-11 00:20:34 +1236 1236 1237 123.6 247.20000000000002 1236 1973-05-21 2024-10-11 00:20:36.000 1973-05-21 2024-10-11 00:20:36 +1237 1237 1238 123.7 247.4 1237 1973-05-22 2024-10-11 00:20:37.000 1973-05-22 2024-10-11 00:20:37 +1238 1238 1239 123.8 247.60000000000002 1238 1973-05-23 2024-10-11 00:20:38.000 1973-05-23 2024-10-11 00:20:38 +1239 1239 1240 123.9 247.8 1239 1973-05-24 2024-10-11 00:20:39.000 1973-05-24 2024-10-11 00:20:39 +1241 1241 1242 124.1 248.20000000000002 1241 1973-05-26 2024-10-11 00:20:41.000 1973-05-26 2024-10-11 00:20:41 +1242 1242 1243 124.2 248.4 1242 1973-05-27 2024-10-11 00:20:42.000 1973-05-27 2024-10-11 00:20:42 +1243 1243 1244 124.3 248.60000000000002 1243 1973-05-28 2024-10-11 00:20:43.000 1973-05-28 2024-10-11 00:20:43 +1244 1244 1245 124.4 248.8 1244 1973-05-29 2024-10-11 00:20:44.000 1973-05-29 2024-10-11 00:20:44 +1246 1246 1247 124.6 249.20000000000002 1246 1973-05-31 2024-10-11 00:20:46.000 1973-05-31 2024-10-11 00:20:46 +1247 1247 1248 124.7 249.4 1247 1973-06-01 2024-10-11 00:20:47.000 1973-06-01 2024-10-11 00:20:47 +1248 1248 1249 124.8 249.60000000000002 1248 1973-06-02 2024-10-11 00:20:48.000 1973-06-02 2024-10-11 00:20:48 +1249 1249 1250 124.9 249.8 1249 1973-06-03 2024-10-11 00:20:49.000 1973-06-03 2024-10-11 00:20:49 +1251 1251 1252 125.1 250.20000000000002 1251 1973-06-05 2024-10-11 00:20:51.000 1973-06-05 2024-10-11 00:20:51 +1252 1252 1253 125.2 250.4 1252 1973-06-06 2024-10-11 00:20:52.000 1973-06-06 2024-10-11 00:20:52 +1253 1253 1254 125.3 250.60000000000002 1253 1973-06-07 2024-10-11 00:20:53.000 1973-06-07 2024-10-11 00:20:53 +1254 1254 1255 125.4 250.8 1254 1973-06-08 2024-10-11 00:20:54.000 1973-06-08 2024-10-11 00:20:54 +1256 1256 1257 125.6 251.20000000000002 1256 1973-06-10 2024-10-11 00:20:56.000 1973-06-10 2024-10-11 00:20:56 +1257 1257 1258 125.7 251.4 1257 1973-06-11 2024-10-11 00:20:57.000 1973-06-11 2024-10-11 00:20:57 +1258 1258 1259 125.8 251.60000000000002 1258 1973-06-12 2024-10-11 00:20:58.000 1973-06-12 2024-10-11 00:20:58 +1259 1259 1260 125.9 251.8 1259 1973-06-13 2024-10-11 00:20:59.000 1973-06-13 2024-10-11 00:20:59 +1261 1261 1262 126.1 252.20000000000002 1261 1973-06-15 2024-10-11 00:21:01.000 1973-06-15 2024-10-11 00:21:01 +1262 1262 1263 126.2 252.4 1262 1973-06-16 2024-10-11 00:21:02.000 1973-06-16 2024-10-11 00:21:02 +1263 1263 1264 126.3 252.60000000000002 1263 1973-06-17 2024-10-11 00:21:03.000 1973-06-17 2024-10-11 00:21:03 +1264 1264 1265 126.4 252.8 1264 1973-06-18 2024-10-11 00:21:04.000 1973-06-18 2024-10-11 00:21:04 +1266 1266 1267 126.6 253.20000000000002 1266 1973-06-20 2024-10-11 00:21:06.000 1973-06-20 2024-10-11 00:21:06 +1267 1267 1268 126.7 253.4 1267 1973-06-21 2024-10-11 00:21:07.000 1973-06-21 2024-10-11 00:21:07 +1268 1268 1269 126.8 253.60000000000002 1268 1973-06-22 2024-10-11 00:21:08.000 1973-06-22 2024-10-11 00:21:08 +1269 1269 1270 126.9 253.8 1269 1973-06-23 2024-10-11 00:21:09.000 1973-06-23 2024-10-11 00:21:09 +1271 1271 1272 127.1 254.20000000000002 1271 1973-06-25 2024-10-11 00:21:11.000 1973-06-25 2024-10-11 00:21:11 +1272 1272 1273 127.2 254.4 1272 1973-06-26 2024-10-11 00:21:12.000 1973-06-26 2024-10-11 00:21:12 +1273 1273 1274 127.3 254.60000000000002 1273 1973-06-27 2024-10-11 00:21:13.000 1973-06-27 2024-10-11 00:21:13 +1274 1274 1275 127.4 254.8 1274 1973-06-28 2024-10-11 00:21:14.000 1973-06-28 2024-10-11 00:21:14 +1276 1276 1277 127.6 255.20000000000002 1276 1973-06-30 2024-10-11 00:21:16.000 1973-06-30 2024-10-11 00:21:16 +1277 1277 1278 127.7 255.4 1277 1973-07-01 2024-10-11 00:21:17.000 1973-07-01 2024-10-11 00:21:17 +1278 1278 1279 127.8 255.60000000000002 1278 1973-07-02 2024-10-11 00:21:18.000 1973-07-02 2024-10-11 00:21:18 +1279 1279 1280 127.9 255.8 1279 1973-07-03 2024-10-11 00:21:19.000 1973-07-03 2024-10-11 00:21:19 +1281 1281 1282 128.1 256.2 1281 1973-07-05 2024-10-11 00:21:21.000 1973-07-05 2024-10-11 00:21:21 +1282 1282 1283 128.2 256.40000000000003 1282 1973-07-06 2024-10-11 00:21:22.000 1973-07-06 2024-10-11 00:21:22 +1283 1283 1284 128.3 256.6 1283 1973-07-07 2024-10-11 00:21:23.000 1973-07-07 2024-10-11 00:21:23 +1284 1284 1285 128.4 256.8 1284 1973-07-08 2024-10-11 00:21:24.000 1973-07-08 2024-10-11 00:21:24 +1286 1286 1287 128.6 257.2 1286 1973-07-10 2024-10-11 00:21:26.000 1973-07-10 2024-10-11 00:21:26 +1287 1287 1288 128.7 257.40000000000003 1287 1973-07-11 2024-10-11 00:21:27.000 1973-07-11 2024-10-11 00:21:27 +1288 1288 1289 128.8 257.6 1288 1973-07-12 2024-10-11 00:21:28.000 1973-07-12 2024-10-11 00:21:28 +1289 1289 1290 128.9 257.8 1289 1973-07-13 2024-10-11 00:21:29.000 1973-07-13 2024-10-11 00:21:29 +1291 1291 1292 129.1 258.2 1291 1973-07-15 2024-10-11 00:21:31.000 1973-07-15 2024-10-11 00:21:31 +1292 1292 1293 129.2 258.40000000000003 1292 1973-07-16 2024-10-11 00:21:32.000 1973-07-16 2024-10-11 00:21:32 +1293 1293 1294 129.3 258.6 1293 1973-07-17 2024-10-11 00:21:33.000 1973-07-17 2024-10-11 00:21:33 +1294 1294 1295 129.4 258.8 1294 1973-07-18 2024-10-11 00:21:34.000 1973-07-18 2024-10-11 00:21:34 +1296 1296 1297 129.6 259.2 1296 1973-07-20 2024-10-11 00:21:36.000 1973-07-20 2024-10-11 00:21:36 +1297 1297 1298 129.7 259.40000000000003 1297 1973-07-21 2024-10-11 00:21:37.000 1973-07-21 2024-10-11 00:21:37 +1298 1298 1299 129.8 259.6 1298 1973-07-22 2024-10-11 00:21:38.000 1973-07-22 2024-10-11 00:21:38 +1299 1299 1300 129.9 259.8 1299 1973-07-23 2024-10-11 00:21:39.000 1973-07-23 2024-10-11 00:21:39 +1301 1301 1302 130.1 260.2 1301 1973-07-25 2024-10-11 00:21:41.000 1973-07-25 2024-10-11 00:21:41 +1302 1302 1303 130.2 260.40000000000003 1302 1973-07-26 2024-10-11 00:21:42.000 1973-07-26 2024-10-11 00:21:42 +1303 1303 1304 130.3 260.6 1303 1973-07-27 2024-10-11 00:21:43.000 1973-07-27 2024-10-11 00:21:43 +1304 1304 1305 130.4 260.8 1304 1973-07-28 2024-10-11 00:21:44.000 1973-07-28 2024-10-11 00:21:44 +1306 1306 1307 130.6 261.2 1306 1973-07-30 2024-10-11 00:21:46.000 1973-07-30 2024-10-11 00:21:46 +1307 1307 1308 130.7 261.40000000000003 1307 1973-07-31 2024-10-11 00:21:47.000 1973-07-31 2024-10-11 00:21:47 +1308 1308 1309 130.8 261.6 1308 1973-08-01 2024-10-11 00:21:48.000 1973-08-01 2024-10-11 00:21:48 +1309 1309 1310 130.9 261.8 1309 1973-08-02 2024-10-11 00:21:49.000 1973-08-02 2024-10-11 00:21:49 +1311 1311 1312 131.1 262.2 1311 1973-08-04 2024-10-11 00:21:51.000 1973-08-04 2024-10-11 00:21:51 +1312 1312 1313 131.2 262.40000000000003 1312 1973-08-05 2024-10-11 00:21:52.000 1973-08-05 2024-10-11 00:21:52 +1313 1313 1314 131.3 262.6 1313 1973-08-06 2024-10-11 00:21:53.000 1973-08-06 2024-10-11 00:21:53 +1314 1314 1315 131.4 262.8 1314 1973-08-07 2024-10-11 00:21:54.000 1973-08-07 2024-10-11 00:21:54 +1316 1316 1317 131.6 263.2 1316 1973-08-09 2024-10-11 00:21:56.000 1973-08-09 2024-10-11 00:21:56 +1317 1317 1318 131.7 263.40000000000003 1317 1973-08-10 2024-10-11 00:21:57.000 1973-08-10 2024-10-11 00:21:57 +1318 1318 1319 131.8 263.6 1318 1973-08-11 2024-10-11 00:21:58.000 1973-08-11 2024-10-11 00:21:58 +1319 1319 1320 131.9 263.8 1319 1973-08-12 2024-10-11 00:21:59.000 1973-08-12 2024-10-11 00:21:59 +1321 1321 1322 132.1 264.2 1321 1973-08-14 2024-10-11 00:22:01.000 1973-08-14 2024-10-11 00:22:01 +1322 1322 1323 132.2 264.40000000000003 1322 1973-08-15 2024-10-11 00:22:02.000 1973-08-15 2024-10-11 00:22:02 +1323 1323 1324 132.3 264.6 1323 1973-08-16 2024-10-11 00:22:03.000 1973-08-16 2024-10-11 00:22:03 +1324 1324 1325 132.4 264.8 1324 1973-08-17 2024-10-11 00:22:04.000 1973-08-17 2024-10-11 00:22:04 +1326 1326 1327 132.6 265.2 1326 1973-08-19 2024-10-11 00:22:06.000 1973-08-19 2024-10-11 00:22:06 +1327 1327 1328 132.7 265.40000000000003 1327 1973-08-20 2024-10-11 00:22:07.000 1973-08-20 2024-10-11 00:22:07 +1328 1328 1329 132.8 265.6 1328 1973-08-21 2024-10-11 00:22:08.000 1973-08-21 2024-10-11 00:22:08 +1329 1329 1330 132.9 265.8 1329 1973-08-22 2024-10-11 00:22:09.000 1973-08-22 2024-10-11 00:22:09 +1331 1331 1332 133.1 266.2 1331 1973-08-24 2024-10-11 00:22:11.000 1973-08-24 2024-10-11 00:22:11 +1332 1332 1333 133.2 266.40000000000003 1332 1973-08-25 2024-10-11 00:22:12.000 1973-08-25 2024-10-11 00:22:12 +1333 1333 1334 133.3 266.6 1333 1973-08-26 2024-10-11 00:22:13.000 1973-08-26 2024-10-11 00:22:13 +1334 1334 1335 133.4 266.8 1334 1973-08-27 2024-10-11 00:22:14.000 1973-08-27 2024-10-11 00:22:14 +1336 1336 1337 133.6 267.2 1336 1973-08-29 2024-10-11 00:22:16.000 1973-08-29 2024-10-11 00:22:16 +1337 1337 1338 133.7 267.40000000000003 1337 1973-08-30 2024-10-11 00:22:17.000 1973-08-30 2024-10-11 00:22:17 +1338 1338 1339 133.8 267.6 1338 1973-08-31 2024-10-11 00:22:18.000 1973-08-31 2024-10-11 00:22:18 +1339 1339 1340 133.9 267.8 1339 1973-09-01 2024-10-11 00:22:19.000 1973-09-01 2024-10-11 00:22:19 +1341 1341 1342 134.1 268.2 1341 1973-09-03 2024-10-11 00:22:21.000 1973-09-03 2024-10-11 00:22:21 +1342 1342 1343 134.2 268.40000000000003 1342 1973-09-04 2024-10-11 00:22:22.000 1973-09-04 2024-10-11 00:22:22 +1343 1343 1344 134.3 268.6 1343 1973-09-05 2024-10-11 00:22:23.000 1973-09-05 2024-10-11 00:22:23 +1344 1344 1345 134.4 268.8 1344 1973-09-06 2024-10-11 00:22:24.000 1973-09-06 2024-10-11 00:22:24 +1346 1346 1347 134.6 269.2 1346 1973-09-08 2024-10-11 00:22:26.000 1973-09-08 2024-10-11 00:22:26 +1347 1347 1348 134.7 269.40000000000003 1347 1973-09-09 2024-10-11 00:22:27.000 1973-09-09 2024-10-11 00:22:27 +1348 1348 1349 134.8 269.6 1348 1973-09-10 2024-10-11 00:22:28.000 1973-09-10 2024-10-11 00:22:28 +1349 1349 1350 134.9 269.8 1349 1973-09-11 2024-10-11 00:22:29.000 1973-09-11 2024-10-11 00:22:29 +1351 1351 1352 135.1 270.2 1351 1973-09-13 2024-10-11 00:22:31.000 1973-09-13 2024-10-11 00:22:31 +1352 1352 1353 135.2 270.40000000000003 1352 1973-09-14 2024-10-11 00:22:32.000 1973-09-14 2024-10-11 00:22:32 +1353 1353 1354 135.3 270.6 1353 1973-09-15 2024-10-11 00:22:33.000 1973-09-15 2024-10-11 00:22:33 +1354 1354 1355 135.4 270.8 1354 1973-09-16 2024-10-11 00:22:34.000 1973-09-16 2024-10-11 00:22:34 +1356 1356 1357 135.6 271.2 1356 1973-09-18 2024-10-11 00:22:36.000 1973-09-18 2024-10-11 00:22:36 +1357 1357 1358 135.7 271.40000000000003 1357 1973-09-19 2024-10-11 00:22:37.000 1973-09-19 2024-10-11 00:22:37 +1358 1358 1359 135.8 271.6 1358 1973-09-20 2024-10-11 00:22:38.000 1973-09-20 2024-10-11 00:22:38 +1359 1359 1360 135.9 271.8 1359 1973-09-21 2024-10-11 00:22:39.000 1973-09-21 2024-10-11 00:22:39 +1361 1361 1362 136.1 272.2 1361 1973-09-23 2024-10-11 00:22:41.000 1973-09-23 2024-10-11 00:22:41 +1362 1362 1363 136.2 272.40000000000003 1362 1973-09-24 2024-10-11 00:22:42.000 1973-09-24 2024-10-11 00:22:42 +1363 1363 1364 136.3 272.6 1363 1973-09-25 2024-10-11 00:22:43.000 1973-09-25 2024-10-11 00:22:43 +1364 1364 1365 136.4 272.8 1364 1973-09-26 2024-10-11 00:22:44.000 1973-09-26 2024-10-11 00:22:44 +1366 1366 1367 136.6 273.2 1366 1973-09-28 2024-10-11 00:22:46.000 1973-09-28 2024-10-11 00:22:46 +1367 1367 1368 136.7 273.40000000000003 1367 1973-09-29 2024-10-11 00:22:47.000 1973-09-29 2024-10-11 00:22:47 +1368 1368 1369 136.8 273.6 1368 1973-09-30 2024-10-11 00:22:48.000 1973-09-30 2024-10-11 00:22:48 +1369 1369 1370 136.9 273.8 1369 1973-10-01 2024-10-11 00:22:49.000 1973-10-01 2024-10-11 00:22:49 +1371 1371 1372 137.1 274.2 1371 1973-10-03 2024-10-11 00:22:51.000 1973-10-03 2024-10-11 00:22:51 +1372 1372 1373 137.2 274.40000000000003 1372 1973-10-04 2024-10-11 00:22:52.000 1973-10-04 2024-10-11 00:22:52 +1373 1373 1374 137.3 274.6 1373 1973-10-05 2024-10-11 00:22:53.000 1973-10-05 2024-10-11 00:22:53 +1374 1374 1375 137.4 274.8 1374 1973-10-06 2024-10-11 00:22:54.000 1973-10-06 2024-10-11 00:22:54 +1376 1376 1377 137.6 275.2 1376 1973-10-08 2024-10-11 00:22:56.000 1973-10-08 2024-10-11 00:22:56 +1377 1377 1378 137.7 275.40000000000003 1377 1973-10-09 2024-10-11 00:22:57.000 1973-10-09 2024-10-11 00:22:57 +1378 1378 1379 137.8 275.6 1378 1973-10-10 2024-10-11 00:22:58.000 1973-10-10 2024-10-11 00:22:58 +1379 1379 1380 137.9 275.8 1379 1973-10-11 2024-10-11 00:22:59.000 1973-10-11 2024-10-11 00:22:59 +1381 1381 1382 138.1 276.2 1381 1973-10-13 2024-10-11 00:23:01.000 1973-10-13 2024-10-11 00:23:01 +1382 1382 1383 138.2 276.40000000000003 1382 1973-10-14 2024-10-11 00:23:02.000 1973-10-14 2024-10-11 00:23:02 +1383 1383 1384 138.3 276.6 1383 1973-10-15 2024-10-11 00:23:03.000 1973-10-15 2024-10-11 00:23:03 +1384 1384 1385 138.4 276.8 1384 1973-10-16 2024-10-11 00:23:04.000 1973-10-16 2024-10-11 00:23:04 +1386 1386 1387 138.6 277.2 1386 1973-10-18 2024-10-11 00:23:06.000 1973-10-18 2024-10-11 00:23:06 +1387 1387 1388 138.7 277.40000000000003 1387 1973-10-19 2024-10-11 00:23:07.000 1973-10-19 2024-10-11 00:23:07 +1388 1388 1389 138.8 277.6 1388 1973-10-20 2024-10-11 00:23:08.000 1973-10-20 2024-10-11 00:23:08 +1389 1389 1390 138.9 277.8 1389 1973-10-21 2024-10-11 00:23:09.000 1973-10-21 2024-10-11 00:23:09 +1391 1391 1392 139.1 278.2 1391 1973-10-23 2024-10-11 00:23:11.000 1973-10-23 2024-10-11 00:23:11 +1392 1392 1393 139.2 278.40000000000003 1392 1973-10-24 2024-10-11 00:23:12.000 1973-10-24 2024-10-11 00:23:12 +1393 1393 1394 139.3 278.6 1393 1973-10-25 2024-10-11 00:23:13.000 1973-10-25 2024-10-11 00:23:13 +1394 1394 1395 139.4 278.8 1394 1973-10-26 2024-10-11 00:23:14.000 1973-10-26 2024-10-11 00:23:14 +1396 1396 1397 139.6 279.2 1396 1973-10-28 2024-10-11 00:23:16.000 1973-10-28 2024-10-11 00:23:16 +1397 1397 1398 139.7 279.40000000000003 1397 1973-10-29 2024-10-11 00:23:17.000 1973-10-29 2024-10-11 00:23:17 +1398 1398 1399 139.8 279.6 1398 1973-10-30 2024-10-11 00:23:18.000 1973-10-30 2024-10-11 00:23:18 +1399 1399 1400 139.9 279.8 1399 1973-10-31 2024-10-11 00:23:19.000 1973-10-31 2024-10-11 00:23:19 +1401 1401 1402 140.1 280.2 1401 1973-11-02 2024-10-11 00:23:21.000 1973-11-02 2024-10-11 00:23:21 +1402 1402 1403 140.2 280.40000000000003 1402 1973-11-03 2024-10-11 00:23:22.000 1973-11-03 2024-10-11 00:23:22 +1403 1403 1404 140.3 280.6 1403 1973-11-04 2024-10-11 00:23:23.000 1973-11-04 2024-10-11 00:23:23 +1404 1404 1405 140.4 280.8 1404 1973-11-05 2024-10-11 00:23:24.000 1973-11-05 2024-10-11 00:23:24 +1406 1406 1407 140.6 281.2 1406 1973-11-07 2024-10-11 00:23:26.000 1973-11-07 2024-10-11 00:23:26 +1407 1407 1408 140.7 281.40000000000003 1407 1973-11-08 2024-10-11 00:23:27.000 1973-11-08 2024-10-11 00:23:27 +1408 1408 1409 140.8 281.6 1408 1973-11-09 2024-10-11 00:23:28.000 1973-11-09 2024-10-11 00:23:28 +1409 1409 1410 140.9 281.8 1409 1973-11-10 2024-10-11 00:23:29.000 1973-11-10 2024-10-11 00:23:29 +1411 1411 1412 141.1 282.2 1411 1973-11-12 2024-10-11 00:23:31.000 1973-11-12 2024-10-11 00:23:31 +1412 1412 1413 141.2 282.40000000000003 1412 1973-11-13 2024-10-11 00:23:32.000 1973-11-13 2024-10-11 00:23:32 +1413 1413 1414 141.3 282.6 1413 1973-11-14 2024-10-11 00:23:33.000 1973-11-14 2024-10-11 00:23:33 +1414 1414 1415 141.4 282.8 1414 1973-11-15 2024-10-11 00:23:34.000 1973-11-15 2024-10-11 00:23:34 +1416 1416 1417 141.6 283.2 1416 1973-11-17 2024-10-11 00:23:36.000 1973-11-17 2024-10-11 00:23:36 +1417 1417 1418 141.7 283.40000000000003 1417 1973-11-18 2024-10-11 00:23:37.000 1973-11-18 2024-10-11 00:23:37 +1418 1418 1419 141.8 283.6 1418 1973-11-19 2024-10-11 00:23:38.000 1973-11-19 2024-10-11 00:23:38 +1419 1419 1420 141.9 283.8 1419 1973-11-20 2024-10-11 00:23:39.000 1973-11-20 2024-10-11 00:23:39 +1421 1421 1422 142.1 284.2 1421 1973-11-22 2024-10-11 00:23:41.000 1973-11-22 2024-10-11 00:23:41 +1422 1422 1423 142.2 284.40000000000003 1422 1973-11-23 2024-10-11 00:23:42.000 1973-11-23 2024-10-11 00:23:42 +1423 1423 1424 142.3 284.6 1423 1973-11-24 2024-10-11 00:23:43.000 1973-11-24 2024-10-11 00:23:43 +1424 1424 1425 142.4 284.8 1424 1973-11-25 2024-10-11 00:23:44.000 1973-11-25 2024-10-11 00:23:44 +1426 1426 1427 142.6 285.2 1426 1973-11-27 2024-10-11 00:23:46.000 1973-11-27 2024-10-11 00:23:46 +1427 1427 1428 142.7 285.40000000000003 1427 1973-11-28 2024-10-11 00:23:47.000 1973-11-28 2024-10-11 00:23:47 +1428 1428 1429 142.8 285.6 1428 1973-11-29 2024-10-11 00:23:48.000 1973-11-29 2024-10-11 00:23:48 +1429 1429 1430 142.9 285.8 1429 1973-11-30 2024-10-11 00:23:49.000 1973-11-30 2024-10-11 00:23:49 +1431 1431 1432 143.1 286.2 1431 1973-12-02 2024-10-11 00:23:51.000 1973-12-02 2024-10-11 00:23:51 +1432 1432 1433 143.2 286.40000000000003 1432 1973-12-03 2024-10-11 00:23:52.000 1973-12-03 2024-10-11 00:23:52 +1433 1433 1434 143.3 286.6 1433 1973-12-04 2024-10-11 00:23:53.000 1973-12-04 2024-10-11 00:23:53 +1434 1434 1435 143.4 286.8 1434 1973-12-05 2024-10-11 00:23:54.000 1973-12-05 2024-10-11 00:23:54 +1436 1436 1437 143.6 287.2 1436 1973-12-07 2024-10-11 00:23:56.000 1973-12-07 2024-10-11 00:23:56 +1437 1437 1438 143.7 287.40000000000003 1437 1973-12-08 2024-10-11 00:23:57.000 1973-12-08 2024-10-11 00:23:57 +1438 1438 1439 143.8 287.6 1438 1973-12-09 2024-10-11 00:23:58.000 1973-12-09 2024-10-11 00:23:58 +1439 1439 1440 143.9 287.8 1439 1973-12-10 2024-10-11 00:23:59.000 1973-12-10 2024-10-11 00:23:59 +1441 1441 1442 144.1 288.2 1441 1973-12-12 2024-10-11 00:24:01.000 1973-12-12 2024-10-11 00:24:01 +1442 1442 1443 144.2 288.40000000000003 1442 1973-12-13 2024-10-11 00:24:02.000 1973-12-13 2024-10-11 00:24:02 +1443 1443 1444 144.3 288.6 1443 1973-12-14 2024-10-11 00:24:03.000 1973-12-14 2024-10-11 00:24:03 +1444 1444 1445 144.4 288.8 1444 1973-12-15 2024-10-11 00:24:04.000 1973-12-15 2024-10-11 00:24:04 +1446 1446 1447 144.6 289.2 1446 1973-12-17 2024-10-11 00:24:06.000 1973-12-17 2024-10-11 00:24:06 +1447 1447 1448 144.7 289.40000000000003 1447 1973-12-18 2024-10-11 00:24:07.000 1973-12-18 2024-10-11 00:24:07 +1448 1448 1449 144.8 289.6 1448 1973-12-19 2024-10-11 00:24:08.000 1973-12-19 2024-10-11 00:24:08 +1449 1449 1450 144.9 289.8 1449 1973-12-20 2024-10-11 00:24:09.000 1973-12-20 2024-10-11 00:24:09 +1451 1451 1452 145.1 290.2 1451 1973-12-22 2024-10-11 00:24:11.000 1973-12-22 2024-10-11 00:24:11 +1452 1452 1453 145.2 290.40000000000003 1452 1973-12-23 2024-10-11 00:24:12.000 1973-12-23 2024-10-11 00:24:12 +1453 1453 1454 145.3 290.6 1453 1973-12-24 2024-10-11 00:24:13.000 1973-12-24 2024-10-11 00:24:13 +1454 1454 1455 145.4 290.8 1454 1973-12-25 2024-10-11 00:24:14.000 1973-12-25 2024-10-11 00:24:14 +1456 1456 1457 145.6 291.2 1456 1973-12-27 2024-10-11 00:24:16.000 1973-12-27 2024-10-11 00:24:16 +1457 1457 1458 145.7 291.40000000000003 1457 1973-12-28 2024-10-11 00:24:17.000 1973-12-28 2024-10-11 00:24:17 +1458 1458 1459 145.8 291.6 1458 1973-12-29 2024-10-11 00:24:18.000 1973-12-29 2024-10-11 00:24:18 +1459 1459 1460 145.9 291.8 1459 1973-12-30 2024-10-11 00:24:19.000 1973-12-30 2024-10-11 00:24:19 +1461 1461 1462 146.1 292.2 1461 1974-01-01 2024-10-11 00:24:21.000 1974-01-01 2024-10-11 00:24:21 +1462 1462 1463 146.2 292.40000000000003 1462 1974-01-02 2024-10-11 00:24:22.000 1974-01-02 2024-10-11 00:24:22 +1463 1463 1464 146.3 292.6 1463 1974-01-03 2024-10-11 00:24:23.000 1974-01-03 2024-10-11 00:24:23 +1464 1464 1465 146.4 292.8 1464 1974-01-04 2024-10-11 00:24:24.000 1974-01-04 2024-10-11 00:24:24 +1466 1466 1467 146.6 293.2 1466 1974-01-06 2024-10-11 00:24:26.000 1974-01-06 2024-10-11 00:24:26 +1467 1467 1468 146.7 293.40000000000003 1467 1974-01-07 2024-10-11 00:24:27.000 1974-01-07 2024-10-11 00:24:27 +1468 1468 1469 146.8 293.6 1468 1974-01-08 2024-10-11 00:24:28.000 1974-01-08 2024-10-11 00:24:28 +1469 1469 1470 146.9 293.8 1469 1974-01-09 2024-10-11 00:24:29.000 1974-01-09 2024-10-11 00:24:29 +1471 1471 1472 147.1 294.2 1471 1974-01-11 2024-10-11 00:24:31.000 1974-01-11 2024-10-11 00:24:31 +1472 1472 1473 147.2 294.40000000000003 1472 1974-01-12 2024-10-11 00:24:32.000 1974-01-12 2024-10-11 00:24:32 +1473 1473 1474 147.3 294.6 1473 1974-01-13 2024-10-11 00:24:33.000 1974-01-13 2024-10-11 00:24:33 +1474 1474 1475 147.4 294.8 1474 1974-01-14 2024-10-11 00:24:34.000 1974-01-14 2024-10-11 00:24:34 +1476 1476 1477 147.6 295.2 1476 1974-01-16 2024-10-11 00:24:36.000 1974-01-16 2024-10-11 00:24:36 +1477 1477 1478 147.7 295.40000000000003 1477 1974-01-17 2024-10-11 00:24:37.000 1974-01-17 2024-10-11 00:24:37 +1478 1478 1479 147.8 295.6 1478 1974-01-18 2024-10-11 00:24:38.000 1974-01-18 2024-10-11 00:24:38 +1479 1479 1480 147.9 295.8 1479 1974-01-19 2024-10-11 00:24:39.000 1974-01-19 2024-10-11 00:24:39 +1481 1481 1482 148.1 296.2 1481 1974-01-21 2024-10-11 00:24:41.000 1974-01-21 2024-10-11 00:24:41 +1482 1482 1483 148.2 296.40000000000003 1482 1974-01-22 2024-10-11 00:24:42.000 1974-01-22 2024-10-11 00:24:42 +1483 1483 1484 148.3 296.6 1483 1974-01-23 2024-10-11 00:24:43.000 1974-01-23 2024-10-11 00:24:43 +1484 1484 1485 148.4 296.8 1484 1974-01-24 2024-10-11 00:24:44.000 1974-01-24 2024-10-11 00:24:44 +1486 1486 1487 148.6 297.2 1486 1974-01-26 2024-10-11 00:24:46.000 1974-01-26 2024-10-11 00:24:46 +1487 1487 1488 148.7 297.40000000000003 1487 1974-01-27 2024-10-11 00:24:47.000 1974-01-27 2024-10-11 00:24:47 +1488 1488 1489 148.8 297.6 1488 1974-01-28 2024-10-11 00:24:48.000 1974-01-28 2024-10-11 00:24:48 +1489 1489 1490 148.9 297.8 1489 1974-01-29 2024-10-11 00:24:49.000 1974-01-29 2024-10-11 00:24:49 +1491 1491 1492 149.1 298.2 1491 1974-01-31 2024-10-11 00:24:51.000 1974-01-31 2024-10-11 00:24:51 +1492 1492 1493 149.2 298.40000000000003 1492 1974-02-01 2024-10-11 00:24:52.000 1974-02-01 2024-10-11 00:24:52 +1493 1493 1494 149.3 298.6 1493 1974-02-02 2024-10-11 00:24:53.000 1974-02-02 2024-10-11 00:24:53 +1494 1494 1495 149.4 298.8 1494 1974-02-03 2024-10-11 00:24:54.000 1974-02-03 2024-10-11 00:24:54 +1496 1496 1497 149.6 299.2 1496 1974-02-05 2024-10-11 00:24:56.000 1974-02-05 2024-10-11 00:24:56 +1497 1497 1498 149.7 299.40000000000003 1497 1974-02-06 2024-10-11 00:24:57.000 1974-02-06 2024-10-11 00:24:57 +1498 1498 1499 149.8 299.6 1498 1974-02-07 2024-10-11 00:24:58.000 1974-02-07 2024-10-11 00:24:58 +1499 1499 1500 149.9 299.8 1499 1974-02-08 2024-10-11 00:24:59.000 1974-02-08 2024-10-11 00:24:59 +1501 1501 1502 150.1 300.2 1501 1974-02-10 2024-10-11 00:25:01.000 1974-02-10 2024-10-11 00:25:01 +1502 1502 1503 150.2 300.40000000000003 1502 1974-02-11 2024-10-11 00:25:02.000 1974-02-11 2024-10-11 00:25:02 +1503 1503 1504 150.3 300.6 1503 1974-02-12 2024-10-11 00:25:03.000 1974-02-12 2024-10-11 00:25:03 +1504 1504 1505 150.4 300.8 1504 1974-02-13 2024-10-11 00:25:04.000 1974-02-13 2024-10-11 00:25:04 +1506 1506 1507 150.6 301.2 1506 1974-02-15 2024-10-11 00:25:06.000 1974-02-15 2024-10-11 00:25:06 +1507 1507 1508 150.7 301.40000000000003 1507 1974-02-16 2024-10-11 00:25:07.000 1974-02-16 2024-10-11 00:25:07 +1508 1508 1509 150.8 301.6 1508 1974-02-17 2024-10-11 00:25:08.000 1974-02-17 2024-10-11 00:25:08 +1509 1509 1510 150.9 301.8 1509 1974-02-18 2024-10-11 00:25:09.000 1974-02-18 2024-10-11 00:25:09 +1511 1511 1512 151.1 302.2 1511 1974-02-20 2024-10-11 00:25:11.000 1974-02-20 2024-10-11 00:25:11 +1512 1512 1513 151.2 302.40000000000003 1512 1974-02-21 2024-10-11 00:25:12.000 1974-02-21 2024-10-11 00:25:12 +1513 1513 1514 151.3 302.6 1513 1974-02-22 2024-10-11 00:25:13.000 1974-02-22 2024-10-11 00:25:13 +1514 1514 1515 151.4 302.8 1514 1974-02-23 2024-10-11 00:25:14.000 1974-02-23 2024-10-11 00:25:14 +1516 1516 1517 151.6 303.2 1516 1974-02-25 2024-10-11 00:25:16.000 1974-02-25 2024-10-11 00:25:16 +1517 1517 1518 151.7 303.40000000000003 1517 1974-02-26 2024-10-11 00:25:17.000 1974-02-26 2024-10-11 00:25:17 +1518 1518 1519 151.8 303.6 1518 1974-02-27 2024-10-11 00:25:18.000 1974-02-27 2024-10-11 00:25:18 +1519 1519 1520 151.9 303.8 1519 1974-02-28 2024-10-11 00:25:19.000 1974-02-28 2024-10-11 00:25:19 +1521 1521 1522 152.1 304.2 1521 1974-03-02 2024-10-11 00:25:21.000 1974-03-02 2024-10-11 00:25:21 +1522 1522 1523 152.2 304.40000000000003 1522 1974-03-03 2024-10-11 00:25:22.000 1974-03-03 2024-10-11 00:25:22 +1523 1523 1524 152.3 304.6 1523 1974-03-04 2024-10-11 00:25:23.000 1974-03-04 2024-10-11 00:25:23 +1524 1524 1525 152.4 304.8 1524 1974-03-05 2024-10-11 00:25:24.000 1974-03-05 2024-10-11 00:25:24 +1526 1526 1527 152.6 305.2 1526 1974-03-07 2024-10-11 00:25:26.000 1974-03-07 2024-10-11 00:25:26 +1527 1527 1528 152.7 305.40000000000003 1527 1974-03-08 2024-10-11 00:25:27.000 1974-03-08 2024-10-11 00:25:27 +1528 1528 1529 152.8 305.6 1528 1974-03-09 2024-10-11 00:25:28.000 1974-03-09 2024-10-11 00:25:28 +1529 1529 1530 152.9 305.8 1529 1974-03-10 2024-10-11 00:25:29.000 1974-03-10 2024-10-11 00:25:29 +1531 1531 1532 153.1 306.2 1531 1974-03-12 2024-10-11 00:25:31.000 1974-03-12 2024-10-11 00:25:31 +1532 1532 1533 153.2 306.40000000000003 1532 1974-03-13 2024-10-11 00:25:32.000 1974-03-13 2024-10-11 00:25:32 +1533 1533 1534 153.3 306.6 1533 1974-03-14 2024-10-11 00:25:33.000 1974-03-14 2024-10-11 00:25:33 +1534 1534 1535 153.4 306.8 1534 1974-03-15 2024-10-11 00:25:34.000 1974-03-15 2024-10-11 00:25:34 +1536 1536 1537 153.6 307.20000000000005 1536 1974-03-17 2024-10-11 00:25:36.000 1974-03-17 2024-10-11 00:25:36 +1537 1537 1538 153.7 307.40000000000003 1537 1974-03-18 2024-10-11 00:25:37.000 1974-03-18 2024-10-11 00:25:37 +1538 1538 1539 153.8 307.6 1538 1974-03-19 2024-10-11 00:25:38.000 1974-03-19 2024-10-11 00:25:38 +1539 1539 1540 153.9 307.8 1539 1974-03-20 2024-10-11 00:25:39.000 1974-03-20 2024-10-11 00:25:39 +1541 1541 1542 154.1 308.20000000000005 1541 1974-03-22 2024-10-11 00:25:41.000 1974-03-22 2024-10-11 00:25:41 +1542 1542 1543 154.2 308.40000000000003 1542 1974-03-23 2024-10-11 00:25:42.000 1974-03-23 2024-10-11 00:25:42 +1543 1543 1544 154.3 308.6 1543 1974-03-24 2024-10-11 00:25:43.000 1974-03-24 2024-10-11 00:25:43 +1544 1544 1545 154.4 308.8 1544 1974-03-25 2024-10-11 00:25:44.000 1974-03-25 2024-10-11 00:25:44 +1546 1546 1547 154.6 309.20000000000005 1546 1974-03-27 2024-10-11 00:25:46.000 1974-03-27 2024-10-11 00:25:46 +1547 1547 1548 154.7 309.40000000000003 1547 1974-03-28 2024-10-11 00:25:47.000 1974-03-28 2024-10-11 00:25:47 +1548 1548 1549 154.8 309.6 1548 1974-03-29 2024-10-11 00:25:48.000 1974-03-29 2024-10-11 00:25:48 +1549 1549 1550 154.9 309.8 1549 1974-03-30 2024-10-11 00:25:49.000 1974-03-30 2024-10-11 00:25:49 +1551 1551 1552 155.1 310.20000000000005 1551 1974-04-01 2024-10-11 00:25:51.000 1974-04-01 2024-10-11 00:25:51 +1552 1552 1553 155.2 310.40000000000003 1552 1974-04-02 2024-10-11 00:25:52.000 1974-04-02 2024-10-11 00:25:52 +1553 1553 1554 155.3 310.6 1553 1974-04-03 2024-10-11 00:25:53.000 1974-04-03 2024-10-11 00:25:53 +1554 1554 1555 155.4 310.8 1554 1974-04-04 2024-10-11 00:25:54.000 1974-04-04 2024-10-11 00:25:54 +1556 1556 1557 155.6 311.20000000000005 1556 1974-04-06 2024-10-11 00:25:56.000 1974-04-06 2024-10-11 00:25:56 +1557 1557 1558 155.7 311.40000000000003 1557 1974-04-07 2024-10-11 00:25:57.000 1974-04-07 2024-10-11 00:25:57 +1558 1558 1559 155.8 311.6 1558 1974-04-08 2024-10-11 00:25:58.000 1974-04-08 2024-10-11 00:25:58 +1559 1559 1560 155.9 311.8 1559 1974-04-09 2024-10-11 00:25:59.000 1974-04-09 2024-10-11 00:25:59 +1561 1561 1562 156.1 312.20000000000005 1561 1974-04-11 2024-10-11 00:26:01.000 1974-04-11 2024-10-11 00:26:01 +1562 1562 1563 156.2 312.40000000000003 1562 1974-04-12 2024-10-11 00:26:02.000 1974-04-12 2024-10-11 00:26:02 +1563 1563 1564 156.3 312.6 1563 1974-04-13 2024-10-11 00:26:03.000 1974-04-13 2024-10-11 00:26:03 +1564 1564 1565 156.4 312.8 1564 1974-04-14 2024-10-11 00:26:04.000 1974-04-14 2024-10-11 00:26:04 +1566 1566 1567 156.6 313.20000000000005 1566 1974-04-16 2024-10-11 00:26:06.000 1974-04-16 2024-10-11 00:26:06 +1567 1567 1568 156.7 313.40000000000003 1567 1974-04-17 2024-10-11 00:26:07.000 1974-04-17 2024-10-11 00:26:07 +1568 1568 1569 156.8 313.6 1568 1974-04-18 2024-10-11 00:26:08.000 1974-04-18 2024-10-11 00:26:08 +1569 1569 1570 156.9 313.8 1569 1974-04-19 2024-10-11 00:26:09.000 1974-04-19 2024-10-11 00:26:09 +1571 1571 1572 157.1 314.20000000000005 1571 1974-04-21 2024-10-11 00:26:11.000 1974-04-21 2024-10-11 00:26:11 +1572 1572 1573 157.2 314.40000000000003 1572 1974-04-22 2024-10-11 00:26:12.000 1974-04-22 2024-10-11 00:26:12 +1573 1573 1574 157.3 314.6 1573 1974-04-23 2024-10-11 00:26:13.000 1974-04-23 2024-10-11 00:26:13 +1574 1574 1575 157.4 314.8 1574 1974-04-24 2024-10-11 00:26:14.000 1974-04-24 2024-10-11 00:26:14 +1576 1576 1577 157.6 315.20000000000005 1576 1974-04-26 2024-10-11 00:26:16.000 1974-04-26 2024-10-11 00:26:16 +1577 1577 1578 157.7 315.40000000000003 1577 1974-04-27 2024-10-11 00:26:17.000 1974-04-27 2024-10-11 00:26:17 +1578 1578 1579 157.8 315.6 1578 1974-04-28 2024-10-11 00:26:18.000 1974-04-28 2024-10-11 00:26:18 +1579 1579 1580 157.9 315.8 1579 1974-04-29 2024-10-11 00:26:19.000 1974-04-29 2024-10-11 00:26:19 +1581 1581 1582 158.1 316.20000000000005 1581 1974-05-01 2024-10-11 00:26:21.000 1974-05-01 2024-10-11 00:26:21 +1582 1582 1583 158.2 316.40000000000003 1582 1974-05-02 2024-10-11 00:26:22.000 1974-05-02 2024-10-11 00:26:22 +1583 1583 1584 158.3 316.6 1583 1974-05-03 2024-10-11 00:26:23.000 1974-05-03 2024-10-11 00:26:23 +1584 1584 1585 158.4 316.8 1584 1974-05-04 2024-10-11 00:26:24.000 1974-05-04 2024-10-11 00:26:24 +1586 1586 1587 158.6 317.20000000000005 1586 1974-05-06 2024-10-11 00:26:26.000 1974-05-06 2024-10-11 00:26:26 +1587 1587 1588 158.7 317.40000000000003 1587 1974-05-07 2024-10-11 00:26:27.000 1974-05-07 2024-10-11 00:26:27 +1588 1588 1589 158.8 317.6 1588 1974-05-08 2024-10-11 00:26:28.000 1974-05-08 2024-10-11 00:26:28 +1589 1589 1590 158.9 317.8 1589 1974-05-09 2024-10-11 00:26:29.000 1974-05-09 2024-10-11 00:26:29 +1591 1591 1592 159.1 318.20000000000005 1591 1974-05-11 2024-10-11 00:26:31.000 1974-05-11 2024-10-11 00:26:31 +1592 1592 1593 159.2 318.40000000000003 1592 1974-05-12 2024-10-11 00:26:32.000 1974-05-12 2024-10-11 00:26:32 +1593 1593 1594 159.3 318.6 1593 1974-05-13 2024-10-11 00:26:33.000 1974-05-13 2024-10-11 00:26:33 +1594 1594 1595 159.4 318.8 1594 1974-05-14 2024-10-11 00:26:34.000 1974-05-14 2024-10-11 00:26:34 +1596 1596 1597 159.6 319.20000000000005 1596 1974-05-16 2024-10-11 00:26:36.000 1974-05-16 2024-10-11 00:26:36 +1597 1597 1598 159.7 319.40000000000003 1597 1974-05-17 2024-10-11 00:26:37.000 1974-05-17 2024-10-11 00:26:37 +1598 1598 1599 159.8 319.6 1598 1974-05-18 2024-10-11 00:26:38.000 1974-05-18 2024-10-11 00:26:38 +1599 1599 1600 159.9 319.8 1599 1974-05-19 2024-10-11 00:26:39.000 1974-05-19 2024-10-11 00:26:39 +1601 1601 1602 160.1 320.20000000000005 1601 1974-05-21 2024-10-11 00:26:41.000 1974-05-21 2024-10-11 00:26:41 +1602 1602 1603 160.2 320.40000000000003 1602 1974-05-22 2024-10-11 00:26:42.000 1974-05-22 2024-10-11 00:26:42 +1603 1603 1604 160.3 320.6 1603 1974-05-23 2024-10-11 00:26:43.000 1974-05-23 2024-10-11 00:26:43 +1604 1604 1605 160.4 320.8 1604 1974-05-24 2024-10-11 00:26:44.000 1974-05-24 2024-10-11 00:26:44 +1606 1606 1607 160.6 321.20000000000005 1606 1974-05-26 2024-10-11 00:26:46.000 1974-05-26 2024-10-11 00:26:46 +1607 1607 1608 160.7 321.40000000000003 1607 1974-05-27 2024-10-11 00:26:47.000 1974-05-27 2024-10-11 00:26:47 +1608 1608 1609 160.8 321.6 1608 1974-05-28 2024-10-11 00:26:48.000 1974-05-28 2024-10-11 00:26:48 +1609 1609 1610 160.9 321.8 1609 1974-05-29 2024-10-11 00:26:49.000 1974-05-29 2024-10-11 00:26:49 +1611 1611 1612 161.1 322.20000000000005 1611 1974-05-31 2024-10-11 00:26:51.000 1974-05-31 2024-10-11 00:26:51 +1612 1612 1613 161.2 322.40000000000003 1612 1974-06-01 2024-10-11 00:26:52.000 1974-06-01 2024-10-11 00:26:52 +1613 1613 1614 161.3 322.6 1613 1974-06-02 2024-10-11 00:26:53.000 1974-06-02 2024-10-11 00:26:53 +1614 1614 1615 161.4 322.8 1614 1974-06-03 2024-10-11 00:26:54.000 1974-06-03 2024-10-11 00:26:54 +1616 1616 1617 161.6 323.20000000000005 1616 1974-06-05 2024-10-11 00:26:56.000 1974-06-05 2024-10-11 00:26:56 +1617 1617 1618 161.7 323.40000000000003 1617 1974-06-06 2024-10-11 00:26:57.000 1974-06-06 2024-10-11 00:26:57 +1618 1618 1619 161.8 323.6 1618 1974-06-07 2024-10-11 00:26:58.000 1974-06-07 2024-10-11 00:26:58 +1619 1619 1620 161.9 323.8 1619 1974-06-08 2024-10-11 00:26:59.000 1974-06-08 2024-10-11 00:26:59 +1621 1621 1622 162.1 324.20000000000005 1621 1974-06-10 2024-10-11 00:27:01.000 1974-06-10 2024-10-11 00:27:01 +1622 1622 1623 162.2 324.40000000000003 1622 1974-06-11 2024-10-11 00:27:02.000 1974-06-11 2024-10-11 00:27:02 +1623 1623 1624 162.3 324.6 1623 1974-06-12 2024-10-11 00:27:03.000 1974-06-12 2024-10-11 00:27:03 +1624 1624 1625 162.4 324.8 1624 1974-06-13 2024-10-11 00:27:04.000 1974-06-13 2024-10-11 00:27:04 +1626 1626 1627 162.6 325.20000000000005 1626 1974-06-15 2024-10-11 00:27:06.000 1974-06-15 2024-10-11 00:27:06 +1627 1627 1628 162.7 325.40000000000003 1627 1974-06-16 2024-10-11 00:27:07.000 1974-06-16 2024-10-11 00:27:07 +1628 1628 1629 162.8 325.6 1628 1974-06-17 2024-10-11 00:27:08.000 1974-06-17 2024-10-11 00:27:08 +1629 1629 1630 162.9 325.8 1629 1974-06-18 2024-10-11 00:27:09.000 1974-06-18 2024-10-11 00:27:09 +1631 1631 1632 163.1 326.20000000000005 1631 1974-06-20 2024-10-11 00:27:11.000 1974-06-20 2024-10-11 00:27:11 +1632 1632 1633 163.2 326.40000000000003 1632 1974-06-21 2024-10-11 00:27:12.000 1974-06-21 2024-10-11 00:27:12 +1633 1633 1634 163.3 326.6 1633 1974-06-22 2024-10-11 00:27:13.000 1974-06-22 2024-10-11 00:27:13 +1634 1634 1635 163.4 326.8 1634 1974-06-23 2024-10-11 00:27:14.000 1974-06-23 2024-10-11 00:27:14 +1636 1636 1637 163.6 327.20000000000005 1636 1974-06-25 2024-10-11 00:27:16.000 1974-06-25 2024-10-11 00:27:16 +1637 1637 1638 163.7 327.40000000000003 1637 1974-06-26 2024-10-11 00:27:17.000 1974-06-26 2024-10-11 00:27:17 +1638 1638 1639 163.8 327.6 1638 1974-06-27 2024-10-11 00:27:18.000 1974-06-27 2024-10-11 00:27:18 +1639 1639 1640 163.9 327.8 1639 1974-06-28 2024-10-11 00:27:19.000 1974-06-28 2024-10-11 00:27:19 +1641 1641 1642 164.1 328.20000000000005 1641 1974-06-30 2024-10-11 00:27:21.000 1974-06-30 2024-10-11 00:27:21 +1642 1642 1643 164.2 328.40000000000003 1642 1974-07-01 2024-10-11 00:27:22.000 1974-07-01 2024-10-11 00:27:22 +1643 1643 1644 164.3 328.6 1643 1974-07-02 2024-10-11 00:27:23.000 1974-07-02 2024-10-11 00:27:23 +1644 1644 1645 164.4 328.8 1644 1974-07-03 2024-10-11 00:27:24.000 1974-07-03 2024-10-11 00:27:24 +1646 1646 1647 164.6 329.20000000000005 1646 1974-07-05 2024-10-11 00:27:26.000 1974-07-05 2024-10-11 00:27:26 +1647 1647 1648 164.7 329.40000000000003 1647 1974-07-06 2024-10-11 00:27:27.000 1974-07-06 2024-10-11 00:27:27 +1648 1648 1649 164.8 329.6 1648 1974-07-07 2024-10-11 00:27:28.000 1974-07-07 2024-10-11 00:27:28 +1649 1649 1650 164.9 329.8 1649 1974-07-08 2024-10-11 00:27:29.000 1974-07-08 2024-10-11 00:27:29 +1651 1651 1652 165.1 330.20000000000005 1651 1974-07-10 2024-10-11 00:27:31.000 1974-07-10 2024-10-11 00:27:31 +1652 1652 1653 165.2 330.40000000000003 1652 1974-07-11 2024-10-11 00:27:32.000 1974-07-11 2024-10-11 00:27:32 +1653 1653 1654 165.3 330.6 1653 1974-07-12 2024-10-11 00:27:33.000 1974-07-12 2024-10-11 00:27:33 +1654 1654 1655 165.4 330.8 1654 1974-07-13 2024-10-11 00:27:34.000 1974-07-13 2024-10-11 00:27:34 +1656 1656 1657 165.6 331.20000000000005 1656 1974-07-15 2024-10-11 00:27:36.000 1974-07-15 2024-10-11 00:27:36 +1657 1657 1658 165.7 331.40000000000003 1657 1974-07-16 2024-10-11 00:27:37.000 1974-07-16 2024-10-11 00:27:37 +1658 1658 1659 165.8 331.6 1658 1974-07-17 2024-10-11 00:27:38.000 1974-07-17 2024-10-11 00:27:38 +1659 1659 1660 165.9 331.8 1659 1974-07-18 2024-10-11 00:27:39.000 1974-07-18 2024-10-11 00:27:39 +1661 1661 1662 166.1 332.20000000000005 1661 1974-07-20 2024-10-11 00:27:41.000 1974-07-20 2024-10-11 00:27:41 +1662 1662 1663 166.2 332.40000000000003 1662 1974-07-21 2024-10-11 00:27:42.000 1974-07-21 2024-10-11 00:27:42 +1663 1663 1664 166.3 332.6 1663 1974-07-22 2024-10-11 00:27:43.000 1974-07-22 2024-10-11 00:27:43 +1664 1664 1665 166.4 332.8 1664 1974-07-23 2024-10-11 00:27:44.000 1974-07-23 2024-10-11 00:27:44 +1666 1666 1667 166.6 333.20000000000005 1666 1974-07-25 2024-10-11 00:27:46.000 1974-07-25 2024-10-11 00:27:46 +1667 1667 1668 166.7 333.40000000000003 1667 1974-07-26 2024-10-11 00:27:47.000 1974-07-26 2024-10-11 00:27:47 +1668 1668 1669 166.8 333.6 1668 1974-07-27 2024-10-11 00:27:48.000 1974-07-27 2024-10-11 00:27:48 +1669 1669 1670 166.9 333.8 1669 1974-07-28 2024-10-11 00:27:49.000 1974-07-28 2024-10-11 00:27:49 +1671 1671 1672 167.1 334.20000000000005 1671 1974-07-30 2024-10-11 00:27:51.000 1974-07-30 2024-10-11 00:27:51 +1672 1672 1673 167.2 334.40000000000003 1672 1974-07-31 2024-10-11 00:27:52.000 1974-07-31 2024-10-11 00:27:52 +1673 1673 1674 167.3 334.6 1673 1974-08-01 2024-10-11 00:27:53.000 1974-08-01 2024-10-11 00:27:53 +1674 1674 1675 167.4 334.8 1674 1974-08-02 2024-10-11 00:27:54.000 1974-08-02 2024-10-11 00:27:54 +1676 1676 1677 167.6 335.20000000000005 1676 1974-08-04 2024-10-11 00:27:56.000 1974-08-04 2024-10-11 00:27:56 +1677 1677 1678 167.7 335.40000000000003 1677 1974-08-05 2024-10-11 00:27:57.000 1974-08-05 2024-10-11 00:27:57 +1678 1678 1679 167.8 335.6 1678 1974-08-06 2024-10-11 00:27:58.000 1974-08-06 2024-10-11 00:27:58 +1679 1679 1680 167.9 335.8 1679 1974-08-07 2024-10-11 00:27:59.000 1974-08-07 2024-10-11 00:27:59 +1681 1681 1682 168.1 336.20000000000005 1681 1974-08-09 2024-10-11 00:28:01.000 1974-08-09 2024-10-11 00:28:01 +1682 1682 1683 168.2 336.40000000000003 1682 1974-08-10 2024-10-11 00:28:02.000 1974-08-10 2024-10-11 00:28:02 +1683 1683 1684 168.3 336.6 1683 1974-08-11 2024-10-11 00:28:03.000 1974-08-11 2024-10-11 00:28:03 +1684 1684 1685 168.4 336.8 1684 1974-08-12 2024-10-11 00:28:04.000 1974-08-12 2024-10-11 00:28:04 +1686 1686 1687 168.6 337.20000000000005 1686 1974-08-14 2024-10-11 00:28:06.000 1974-08-14 2024-10-11 00:28:06 +1687 1687 1688 168.7 337.40000000000003 1687 1974-08-15 2024-10-11 00:28:07.000 1974-08-15 2024-10-11 00:28:07 +1688 1688 1689 168.8 337.6 1688 1974-08-16 2024-10-11 00:28:08.000 1974-08-16 2024-10-11 00:28:08 +1689 1689 1690 168.9 337.8 1689 1974-08-17 2024-10-11 00:28:09.000 1974-08-17 2024-10-11 00:28:09 +1691 1691 1692 169.1 338.20000000000005 1691 1974-08-19 2024-10-11 00:28:11.000 1974-08-19 2024-10-11 00:28:11 +1692 1692 1693 169.2 338.40000000000003 1692 1974-08-20 2024-10-11 00:28:12.000 1974-08-20 2024-10-11 00:28:12 +1693 1693 1694 169.3 338.6 1693 1974-08-21 2024-10-11 00:28:13.000 1974-08-21 2024-10-11 00:28:13 +1694 1694 1695 169.4 338.8 1694 1974-08-22 2024-10-11 00:28:14.000 1974-08-22 2024-10-11 00:28:14 +1696 1696 1697 169.6 339.20000000000005 1696 1974-08-24 2024-10-11 00:28:16.000 1974-08-24 2024-10-11 00:28:16 +1697 1697 1698 169.7 339.40000000000003 1697 1974-08-25 2024-10-11 00:28:17.000 1974-08-25 2024-10-11 00:28:17 +1698 1698 1699 169.8 339.6 1698 1974-08-26 2024-10-11 00:28:18.000 1974-08-26 2024-10-11 00:28:18 +1699 1699 1700 169.9 339.8 1699 1974-08-27 2024-10-11 00:28:19.000 1974-08-27 2024-10-11 00:28:19 +1701 1701 1702 170.1 340.20000000000005 1701 1974-08-29 2024-10-11 00:28:21.000 1974-08-29 2024-10-11 00:28:21 +1702 1702 1703 170.2 340.40000000000003 1702 1974-08-30 2024-10-11 00:28:22.000 1974-08-30 2024-10-11 00:28:22 +1703 1703 1704 170.3 340.6 1703 1974-08-31 2024-10-11 00:28:23.000 1974-08-31 2024-10-11 00:28:23 +1704 1704 1705 170.4 340.8 1704 1974-09-01 2024-10-11 00:28:24.000 1974-09-01 2024-10-11 00:28:24 +1706 1706 1707 170.6 341.20000000000005 1706 1974-09-03 2024-10-11 00:28:26.000 1974-09-03 2024-10-11 00:28:26 +1707 1707 1708 170.7 341.40000000000003 1707 1974-09-04 2024-10-11 00:28:27.000 1974-09-04 2024-10-11 00:28:27 +1708 1708 1709 170.8 341.6 1708 1974-09-05 2024-10-11 00:28:28.000 1974-09-05 2024-10-11 00:28:28 +1709 1709 1710 170.9 341.8 1709 1974-09-06 2024-10-11 00:28:29.000 1974-09-06 2024-10-11 00:28:29 +1711 1711 1712 171.1 342.20000000000005 1711 1974-09-08 2024-10-11 00:28:31.000 1974-09-08 2024-10-11 00:28:31 +1712 1712 1713 171.2 342.40000000000003 1712 1974-09-09 2024-10-11 00:28:32.000 1974-09-09 2024-10-11 00:28:32 +1713 1713 1714 171.3 342.6 1713 1974-09-10 2024-10-11 00:28:33.000 1974-09-10 2024-10-11 00:28:33 +1714 1714 1715 171.4 342.8 1714 1974-09-11 2024-10-11 00:28:34.000 1974-09-11 2024-10-11 00:28:34 +1716 1716 1717 171.6 343.20000000000005 1716 1974-09-13 2024-10-11 00:28:36.000 1974-09-13 2024-10-11 00:28:36 +1717 1717 1718 171.7 343.40000000000003 1717 1974-09-14 2024-10-11 00:28:37.000 1974-09-14 2024-10-11 00:28:37 +1718 1718 1719 171.8 343.6 1718 1974-09-15 2024-10-11 00:28:38.000 1974-09-15 2024-10-11 00:28:38 +1719 1719 1720 171.9 343.8 1719 1974-09-16 2024-10-11 00:28:39.000 1974-09-16 2024-10-11 00:28:39 +1721 1721 1722 172.1 344.20000000000005 1721 1974-09-18 2024-10-11 00:28:41.000 1974-09-18 2024-10-11 00:28:41 +1722 1722 1723 172.2 344.40000000000003 1722 1974-09-19 2024-10-11 00:28:42.000 1974-09-19 2024-10-11 00:28:42 +1723 1723 1724 172.3 344.6 1723 1974-09-20 2024-10-11 00:28:43.000 1974-09-20 2024-10-11 00:28:43 +1724 1724 1725 172.4 344.8 1724 1974-09-21 2024-10-11 00:28:44.000 1974-09-21 2024-10-11 00:28:44 +1726 1726 1727 172.6 345.20000000000005 1726 1974-09-23 2024-10-11 00:28:46.000 1974-09-23 2024-10-11 00:28:46 +1727 1727 1728 172.7 345.40000000000003 1727 1974-09-24 2024-10-11 00:28:47.000 1974-09-24 2024-10-11 00:28:47 +1728 1728 1729 172.8 345.6 1728 1974-09-25 2024-10-11 00:28:48.000 1974-09-25 2024-10-11 00:28:48 +1729 1729 1730 172.9 345.8 1729 1974-09-26 2024-10-11 00:28:49.000 1974-09-26 2024-10-11 00:28:49 +1731 1731 1732 173.1 346.20000000000005 1731 1974-09-28 2024-10-11 00:28:51.000 1974-09-28 2024-10-11 00:28:51 +1732 1732 1733 173.2 346.40000000000003 1732 1974-09-29 2024-10-11 00:28:52.000 1974-09-29 2024-10-11 00:28:52 +1733 1733 1734 173.3 346.6 1733 1974-09-30 2024-10-11 00:28:53.000 1974-09-30 2024-10-11 00:28:53 +1734 1734 1735 173.4 346.8 1734 1974-10-01 2024-10-11 00:28:54.000 1974-10-01 2024-10-11 00:28:54 +1736 1736 1737 173.6 347.20000000000005 1736 1974-10-03 2024-10-11 00:28:56.000 1974-10-03 2024-10-11 00:28:56 +1737 1737 1738 173.7 347.40000000000003 1737 1974-10-04 2024-10-11 00:28:57.000 1974-10-04 2024-10-11 00:28:57 +1738 1738 1739 173.8 347.6 1738 1974-10-05 2024-10-11 00:28:58.000 1974-10-05 2024-10-11 00:28:58 +1739 1739 1740 173.9 347.8 1739 1974-10-06 2024-10-11 00:28:59.000 1974-10-06 2024-10-11 00:28:59 +1741 1741 1742 174.1 348.20000000000005 1741 1974-10-08 2024-10-11 00:29:01.000 1974-10-08 2024-10-11 00:29:01 +1742 1742 1743 174.2 348.40000000000003 1742 1974-10-09 2024-10-11 00:29:02.000 1974-10-09 2024-10-11 00:29:02 +1743 1743 1744 174.3 348.6 1743 1974-10-10 2024-10-11 00:29:03.000 1974-10-10 2024-10-11 00:29:03 +1744 1744 1745 174.4 348.8 1744 1974-10-11 2024-10-11 00:29:04.000 1974-10-11 2024-10-11 00:29:04 +1746 1746 1747 174.6 349.20000000000005 1746 1974-10-13 2024-10-11 00:29:06.000 1974-10-13 2024-10-11 00:29:06 +1747 1747 1748 174.7 349.40000000000003 1747 1974-10-14 2024-10-11 00:29:07.000 1974-10-14 2024-10-11 00:29:07 +1748 1748 1749 174.8 349.6 1748 1974-10-15 2024-10-11 00:29:08.000 1974-10-15 2024-10-11 00:29:08 +1749 1749 1750 174.9 349.8 1749 1974-10-16 2024-10-11 00:29:09.000 1974-10-16 2024-10-11 00:29:09 +1751 1751 1752 175.1 350.20000000000005 1751 1974-10-18 2024-10-11 00:29:11.000 1974-10-18 2024-10-11 00:29:11 +1752 1752 1753 175.2 350.40000000000003 1752 1974-10-19 2024-10-11 00:29:12.000 1974-10-19 2024-10-11 00:29:12 +1753 1753 1754 175.3 350.6 1753 1974-10-20 2024-10-11 00:29:13.000 1974-10-20 2024-10-11 00:29:13 +1754 1754 1755 175.4 350.8 1754 1974-10-21 2024-10-11 00:29:14.000 1974-10-21 2024-10-11 00:29:14 +1756 1756 1757 175.6 351.20000000000005 1756 1974-10-23 2024-10-11 00:29:16.000 1974-10-23 2024-10-11 00:29:16 +1757 1757 1758 175.7 351.40000000000003 1757 1974-10-24 2024-10-11 00:29:17.000 1974-10-24 2024-10-11 00:29:17 +1758 1758 1759 175.8 351.6 1758 1974-10-25 2024-10-11 00:29:18.000 1974-10-25 2024-10-11 00:29:18 +1759 1759 1760 175.9 351.8 1759 1974-10-26 2024-10-11 00:29:19.000 1974-10-26 2024-10-11 00:29:19 +1761 1761 1762 176.1 352.20000000000005 1761 1974-10-28 2024-10-11 00:29:21.000 1974-10-28 2024-10-11 00:29:21 +1762 1762 1763 176.2 352.40000000000003 1762 1974-10-29 2024-10-11 00:29:22.000 1974-10-29 2024-10-11 00:29:22 +1763 1763 1764 176.3 352.6 1763 1974-10-30 2024-10-11 00:29:23.000 1974-10-30 2024-10-11 00:29:23 +1764 1764 1765 176.4 352.8 1764 1974-10-31 2024-10-11 00:29:24.000 1974-10-31 2024-10-11 00:29:24 +1766 1766 1767 176.6 353.20000000000005 1766 1974-11-02 2024-10-11 00:29:26.000 1974-11-02 2024-10-11 00:29:26 +1767 1767 1768 176.7 353.40000000000003 1767 1974-11-03 2024-10-11 00:29:27.000 1974-11-03 2024-10-11 00:29:27 +1768 1768 1769 176.8 353.6 1768 1974-11-04 2024-10-11 00:29:28.000 1974-11-04 2024-10-11 00:29:28 +1769 1769 1770 176.9 353.8 1769 1974-11-05 2024-10-11 00:29:29.000 1974-11-05 2024-10-11 00:29:29 +1771 1771 1772 177.1 354.20000000000005 1771 1974-11-07 2024-10-11 00:29:31.000 1974-11-07 2024-10-11 00:29:31 +1772 1772 1773 177.2 354.40000000000003 1772 1974-11-08 2024-10-11 00:29:32.000 1974-11-08 2024-10-11 00:29:32 +1773 1773 1774 177.3 354.6 1773 1974-11-09 2024-10-11 00:29:33.000 1974-11-09 2024-10-11 00:29:33 +1774 1774 1775 177.4 354.8 1774 1974-11-10 2024-10-11 00:29:34.000 1974-11-10 2024-10-11 00:29:34 +1776 1776 1777 177.6 355.20000000000005 1776 1974-11-12 2024-10-11 00:29:36.000 1974-11-12 2024-10-11 00:29:36 +1777 1777 1778 177.7 355.40000000000003 1777 1974-11-13 2024-10-11 00:29:37.000 1974-11-13 2024-10-11 00:29:37 +1778 1778 1779 177.8 355.6 1778 1974-11-14 2024-10-11 00:29:38.000 1974-11-14 2024-10-11 00:29:38 +1779 1779 1780 177.9 355.8 1779 1974-11-15 2024-10-11 00:29:39.000 1974-11-15 2024-10-11 00:29:39 +1781 1781 1782 178.1 356.20000000000005 1781 1974-11-17 2024-10-11 00:29:41.000 1974-11-17 2024-10-11 00:29:41 +1782 1782 1783 178.2 356.40000000000003 1782 1974-11-18 2024-10-11 00:29:42.000 1974-11-18 2024-10-11 00:29:42 +1783 1783 1784 178.3 356.6 1783 1974-11-19 2024-10-11 00:29:43.000 1974-11-19 2024-10-11 00:29:43 +1784 1784 1785 178.4 356.8 1784 1974-11-20 2024-10-11 00:29:44.000 1974-11-20 2024-10-11 00:29:44 +1786 1786 1787 178.6 357.20000000000005 1786 1974-11-22 2024-10-11 00:29:46.000 1974-11-22 2024-10-11 00:29:46 +1787 1787 1788 178.7 357.40000000000003 1787 1974-11-23 2024-10-11 00:29:47.000 1974-11-23 2024-10-11 00:29:47 +1788 1788 1789 178.8 357.6 1788 1974-11-24 2024-10-11 00:29:48.000 1974-11-24 2024-10-11 00:29:48 +1789 1789 1790 178.9 357.8 1789 1974-11-25 2024-10-11 00:29:49.000 1974-11-25 2024-10-11 00:29:49 +1791 1791 1792 179.1 358.20000000000005 1791 1974-11-27 2024-10-11 00:29:51.000 1974-11-27 2024-10-11 00:29:51 +1792 1792 1793 179.2 358.40000000000003 1792 1974-11-28 2024-10-11 00:29:52.000 1974-11-28 2024-10-11 00:29:52 +1793 1793 1794 179.3 358.6 1793 1974-11-29 2024-10-11 00:29:53.000 1974-11-29 2024-10-11 00:29:53 +1794 1794 1795 179.4 358.8 1794 1974-11-30 2024-10-11 00:29:54.000 1974-11-30 2024-10-11 00:29:54 +1796 1796 1797 179.6 359.20000000000005 1796 1974-12-02 2024-10-11 00:29:56.000 1974-12-02 2024-10-11 00:29:56 +1797 1797 1798 179.7 359.40000000000003 1797 1974-12-03 2024-10-11 00:29:57.000 1974-12-03 2024-10-11 00:29:57 +1798 1798 1799 179.8 359.6 1798 1974-12-04 2024-10-11 00:29:58.000 1974-12-04 2024-10-11 00:29:58 +1799 1799 1800 179.9 359.8 1799 1974-12-05 2024-10-11 00:29:59.000 1974-12-05 2024-10-11 00:29:59 +1801 1801 1802 180.1 360.20000000000005 1801 1974-12-07 2024-10-11 00:30:01.000 1974-12-07 2024-10-11 00:30:01 +1802 1802 1803 180.2 360.40000000000003 1802 1974-12-08 2024-10-11 00:30:02.000 1974-12-08 2024-10-11 00:30:02 +1803 1803 1804 180.3 360.6 1803 1974-12-09 2024-10-11 00:30:03.000 1974-12-09 2024-10-11 00:30:03 +1804 1804 1805 180.4 360.8 1804 1974-12-10 2024-10-11 00:30:04.000 1974-12-10 2024-10-11 00:30:04 +1806 1806 1807 180.6 361.20000000000005 1806 1974-12-12 2024-10-11 00:30:06.000 1974-12-12 2024-10-11 00:30:06 +1807 1807 1808 180.7 361.40000000000003 1807 1974-12-13 2024-10-11 00:30:07.000 1974-12-13 2024-10-11 00:30:07 +1808 1808 1809 180.8 361.6 1808 1974-12-14 2024-10-11 00:30:08.000 1974-12-14 2024-10-11 00:30:08 +1809 1809 1810 180.9 361.8 1809 1974-12-15 2024-10-11 00:30:09.000 1974-12-15 2024-10-11 00:30:09 +1811 1811 1812 181.1 362.20000000000005 1811 1974-12-17 2024-10-11 00:30:11.000 1974-12-17 2024-10-11 00:30:11 +1812 1812 1813 181.2 362.40000000000003 1812 1974-12-18 2024-10-11 00:30:12.000 1974-12-18 2024-10-11 00:30:12 +1813 1813 1814 181.3 362.6 1813 1974-12-19 2024-10-11 00:30:13.000 1974-12-19 2024-10-11 00:30:13 +1814 1814 1815 181.4 362.8 1814 1974-12-20 2024-10-11 00:30:14.000 1974-12-20 2024-10-11 00:30:14 +1816 1816 1817 181.6 363.20000000000005 1816 1974-12-22 2024-10-11 00:30:16.000 1974-12-22 2024-10-11 00:30:16 +1817 1817 1818 181.7 363.40000000000003 1817 1974-12-23 2024-10-11 00:30:17.000 1974-12-23 2024-10-11 00:30:17 +1818 1818 1819 181.8 363.6 1818 1974-12-24 2024-10-11 00:30:18.000 1974-12-24 2024-10-11 00:30:18 +1819 1819 1820 181.9 363.8 1819 1974-12-25 2024-10-11 00:30:19.000 1974-12-25 2024-10-11 00:30:19 +1821 1821 1822 182.1 364.20000000000005 1821 1974-12-27 2024-10-11 00:30:21.000 1974-12-27 2024-10-11 00:30:21 +1822 1822 1823 182.2 364.40000000000003 1822 1974-12-28 2024-10-11 00:30:22.000 1974-12-28 2024-10-11 00:30:22 +1823 1823 1824 182.3 364.6 1823 1974-12-29 2024-10-11 00:30:23.000 1974-12-29 2024-10-11 00:30:23 +1824 1824 1825 182.4 364.8 1824 1974-12-30 2024-10-11 00:30:24.000 1974-12-30 2024-10-11 00:30:24 +1826 1826 1827 182.6 365.20000000000005 1826 1975-01-01 2024-10-11 00:30:26.000 1975-01-01 2024-10-11 00:30:26 +1827 1827 1828 182.7 365.40000000000003 1827 1975-01-02 2024-10-11 00:30:27.000 1975-01-02 2024-10-11 00:30:27 +1828 1828 1829 182.8 365.6 1828 1975-01-03 2024-10-11 00:30:28.000 1975-01-03 2024-10-11 00:30:28 +1829 1829 1830 182.9 365.8 1829 1975-01-04 2024-10-11 00:30:29.000 1975-01-04 2024-10-11 00:30:29 +1831 1831 1832 183.1 366.20000000000005 1831 1975-01-06 2024-10-11 00:30:31.000 1975-01-06 2024-10-11 00:30:31 +1832 1832 1833 183.2 366.40000000000003 1832 1975-01-07 2024-10-11 00:30:32.000 1975-01-07 2024-10-11 00:30:32 +1833 1833 1834 183.3 366.6 1833 1975-01-08 2024-10-11 00:30:33.000 1975-01-08 2024-10-11 00:30:33 +1834 1834 1835 183.4 366.8 1834 1975-01-09 2024-10-11 00:30:34.000 1975-01-09 2024-10-11 00:30:34 +1836 1836 1837 183.6 367.20000000000005 1836 1975-01-11 2024-10-11 00:30:36.000 1975-01-11 2024-10-11 00:30:36 +1837 1837 1838 183.7 367.40000000000003 1837 1975-01-12 2024-10-11 00:30:37.000 1975-01-12 2024-10-11 00:30:37 +1838 1838 1839 183.8 367.6 1838 1975-01-13 2024-10-11 00:30:38.000 1975-01-13 2024-10-11 00:30:38 +1839 1839 1840 183.9 367.8 1839 1975-01-14 2024-10-11 00:30:39.000 1975-01-14 2024-10-11 00:30:39 +1841 1841 1842 184.1 368.20000000000005 1841 1975-01-16 2024-10-11 00:30:41.000 1975-01-16 2024-10-11 00:30:41 +1842 1842 1843 184.2 368.40000000000003 1842 1975-01-17 2024-10-11 00:30:42.000 1975-01-17 2024-10-11 00:30:42 +1843 1843 1844 184.3 368.6 1843 1975-01-18 2024-10-11 00:30:43.000 1975-01-18 2024-10-11 00:30:43 +1844 1844 1845 184.4 368.8 1844 1975-01-19 2024-10-11 00:30:44.000 1975-01-19 2024-10-11 00:30:44 +1846 1846 1847 184.6 369.20000000000005 1846 1975-01-21 2024-10-11 00:30:46.000 1975-01-21 2024-10-11 00:30:46 +1847 1847 1848 184.7 369.40000000000003 1847 1975-01-22 2024-10-11 00:30:47.000 1975-01-22 2024-10-11 00:30:47 +1848 1848 1849 184.8 369.6 1848 1975-01-23 2024-10-11 00:30:48.000 1975-01-23 2024-10-11 00:30:48 +1849 1849 1850 184.9 369.8 1849 1975-01-24 2024-10-11 00:30:49.000 1975-01-24 2024-10-11 00:30:49 +1851 1851 1852 185.1 370.20000000000005 1851 1975-01-26 2024-10-11 00:30:51.000 1975-01-26 2024-10-11 00:30:51 +1852 1852 1853 185.2 370.40000000000003 1852 1975-01-27 2024-10-11 00:30:52.000 1975-01-27 2024-10-11 00:30:52 +1853 1853 1854 185.3 370.6 1853 1975-01-28 2024-10-11 00:30:53.000 1975-01-28 2024-10-11 00:30:53 +1854 1854 1855 185.4 370.8 1854 1975-01-29 2024-10-11 00:30:54.000 1975-01-29 2024-10-11 00:30:54 +1856 1856 1857 185.6 371.20000000000005 1856 1975-01-31 2024-10-11 00:30:56.000 1975-01-31 2024-10-11 00:30:56 +1857 1857 1858 185.7 371.40000000000003 1857 1975-02-01 2024-10-11 00:30:57.000 1975-02-01 2024-10-11 00:30:57 +1858 1858 1859 185.8 371.6 1858 1975-02-02 2024-10-11 00:30:58.000 1975-02-02 2024-10-11 00:30:58 +1859 1859 1860 185.9 371.8 1859 1975-02-03 2024-10-11 00:30:59.000 1975-02-03 2024-10-11 00:30:59 +1861 1861 1862 186.1 372.20000000000005 1861 1975-02-05 2024-10-11 00:31:01.000 1975-02-05 2024-10-11 00:31:01 +1862 1862 1863 186.2 372.40000000000003 1862 1975-02-06 2024-10-11 00:31:02.000 1975-02-06 2024-10-11 00:31:02 +1863 1863 1864 186.3 372.6 1863 1975-02-07 2024-10-11 00:31:03.000 1975-02-07 2024-10-11 00:31:03 +1864 1864 1865 186.4 372.8 1864 1975-02-08 2024-10-11 00:31:04.000 1975-02-08 2024-10-11 00:31:04 +1866 1866 1867 186.6 373.20000000000005 1866 1975-02-10 2024-10-11 00:31:06.000 1975-02-10 2024-10-11 00:31:06 +1867 1867 1868 186.7 373.40000000000003 1867 1975-02-11 2024-10-11 00:31:07.000 1975-02-11 2024-10-11 00:31:07 +1868 1868 1869 186.8 373.6 1868 1975-02-12 2024-10-11 00:31:08.000 1975-02-12 2024-10-11 00:31:08 +1869 1869 1870 186.9 373.8 1869 1975-02-13 2024-10-11 00:31:09.000 1975-02-13 2024-10-11 00:31:09 +1871 1871 1872 187.1 374.20000000000005 1871 1975-02-15 2024-10-11 00:31:11.000 1975-02-15 2024-10-11 00:31:11 +1872 1872 1873 187.2 374.40000000000003 1872 1975-02-16 2024-10-11 00:31:12.000 1975-02-16 2024-10-11 00:31:12 +1873 1873 1874 187.3 374.6 1873 1975-02-17 2024-10-11 00:31:13.000 1975-02-17 2024-10-11 00:31:13 +1874 1874 1875 187.4 374.8 1874 1975-02-18 2024-10-11 00:31:14.000 1975-02-18 2024-10-11 00:31:14 +1876 1876 1877 187.6 375.20000000000005 1876 1975-02-20 2024-10-11 00:31:16.000 1975-02-20 2024-10-11 00:31:16 +1877 1877 1878 187.7 375.40000000000003 1877 1975-02-21 2024-10-11 00:31:17.000 1975-02-21 2024-10-11 00:31:17 +1878 1878 1879 187.8 375.6 1878 1975-02-22 2024-10-11 00:31:18.000 1975-02-22 2024-10-11 00:31:18 +1879 1879 1880 187.9 375.8 1879 1975-02-23 2024-10-11 00:31:19.000 1975-02-23 2024-10-11 00:31:19 +1881 1881 1882 188.1 376.20000000000005 1881 1975-02-25 2024-10-11 00:31:21.000 1975-02-25 2024-10-11 00:31:21 +1882 1882 1883 188.2 376.40000000000003 1882 1975-02-26 2024-10-11 00:31:22.000 1975-02-26 2024-10-11 00:31:22 +1883 1883 1884 188.3 376.6 1883 1975-02-27 2024-10-11 00:31:23.000 1975-02-27 2024-10-11 00:31:23 +1884 1884 1885 188.4 376.8 1884 1975-02-28 2024-10-11 00:31:24.000 1975-02-28 2024-10-11 00:31:24 +1886 1886 1887 188.6 377.20000000000005 1886 1975-03-02 2024-10-11 00:31:26.000 1975-03-02 2024-10-11 00:31:26 +1887 1887 1888 188.7 377.40000000000003 1887 1975-03-03 2024-10-11 00:31:27.000 1975-03-03 2024-10-11 00:31:27 +1888 1888 1889 188.8 377.6 1888 1975-03-04 2024-10-11 00:31:28.000 1975-03-04 2024-10-11 00:31:28 +1889 1889 1890 188.9 377.8 1889 1975-03-05 2024-10-11 00:31:29.000 1975-03-05 2024-10-11 00:31:29 +1891 1891 1892 189.1 378.20000000000005 1891 1975-03-07 2024-10-11 00:31:31.000 1975-03-07 2024-10-11 00:31:31 +1892 1892 1893 189.2 378.40000000000003 1892 1975-03-08 2024-10-11 00:31:32.000 1975-03-08 2024-10-11 00:31:32 +1893 1893 1894 189.3 378.6 1893 1975-03-09 2024-10-11 00:31:33.000 1975-03-09 2024-10-11 00:31:33 +1894 1894 1895 189.4 378.8 1894 1975-03-10 2024-10-11 00:31:34.000 1975-03-10 2024-10-11 00:31:34 +1896 1896 1897 189.6 379.20000000000005 1896 1975-03-12 2024-10-11 00:31:36.000 1975-03-12 2024-10-11 00:31:36 +1897 1897 1898 189.7 379.40000000000003 1897 1975-03-13 2024-10-11 00:31:37.000 1975-03-13 2024-10-11 00:31:37 +1898 1898 1899 189.8 379.6 1898 1975-03-14 2024-10-11 00:31:38.000 1975-03-14 2024-10-11 00:31:38 +1899 1899 1900 189.9 379.8 1899 1975-03-15 2024-10-11 00:31:39.000 1975-03-15 2024-10-11 00:31:39 +1901 1901 1902 190.1 380.20000000000005 1901 1975-03-17 2024-10-11 00:31:41.000 1975-03-17 2024-10-11 00:31:41 +1902 1902 1903 190.2 380.40000000000003 1902 1975-03-18 2024-10-11 00:31:42.000 1975-03-18 2024-10-11 00:31:42 +1903 1903 1904 190.3 380.6 1903 1975-03-19 2024-10-11 00:31:43.000 1975-03-19 2024-10-11 00:31:43 +1904 1904 1905 190.4 380.8 1904 1975-03-20 2024-10-11 00:31:44.000 1975-03-20 2024-10-11 00:31:44 +1906 1906 1907 190.6 381.20000000000005 1906 1975-03-22 2024-10-11 00:31:46.000 1975-03-22 2024-10-11 00:31:46 +1907 1907 1908 190.7 381.40000000000003 1907 1975-03-23 2024-10-11 00:31:47.000 1975-03-23 2024-10-11 00:31:47 +1908 1908 1909 190.8 381.6 1908 1975-03-24 2024-10-11 00:31:48.000 1975-03-24 2024-10-11 00:31:48 +1909 1909 1910 190.9 381.8 1909 1975-03-25 2024-10-11 00:31:49.000 1975-03-25 2024-10-11 00:31:49 +1911 1911 1912 191.1 382.20000000000005 1911 1975-03-27 2024-10-11 00:31:51.000 1975-03-27 2024-10-11 00:31:51 +1912 1912 1913 191.2 382.40000000000003 1912 1975-03-28 2024-10-11 00:31:52.000 1975-03-28 2024-10-11 00:31:52 +1913 1913 1914 191.3 382.6 1913 1975-03-29 2024-10-11 00:31:53.000 1975-03-29 2024-10-11 00:31:53 +1914 1914 1915 191.4 382.8 1914 1975-03-30 2024-10-11 00:31:54.000 1975-03-30 2024-10-11 00:31:54 +1916 1916 1917 191.6 383.20000000000005 1916 1975-04-01 2024-10-11 00:31:56.000 1975-04-01 2024-10-11 00:31:56 +1917 1917 1918 191.7 383.40000000000003 1917 1975-04-02 2024-10-11 00:31:57.000 1975-04-02 2024-10-11 00:31:57 +1918 1918 1919 191.8 383.6 1918 1975-04-03 2024-10-11 00:31:58.000 1975-04-03 2024-10-11 00:31:58 +1919 1919 1920 191.9 383.8 1919 1975-04-04 2024-10-11 00:31:59.000 1975-04-04 2024-10-11 00:31:59 +1921 1921 1922 192.1 384.20000000000005 1921 1975-04-06 2024-10-11 00:32:01.000 1975-04-06 2024-10-11 00:32:01 +1922 1922 1923 192.2 384.40000000000003 1922 1975-04-07 2024-10-11 00:32:02.000 1975-04-07 2024-10-11 00:32:02 +1923 1923 1924 192.3 384.6 1923 1975-04-08 2024-10-11 00:32:03.000 1975-04-08 2024-10-11 00:32:03 +1924 1924 1925 192.4 384.8 1924 1975-04-09 2024-10-11 00:32:04.000 1975-04-09 2024-10-11 00:32:04 +1926 1926 1927 192.6 385.20000000000005 1926 1975-04-11 2024-10-11 00:32:06.000 1975-04-11 2024-10-11 00:32:06 +1927 1927 1928 192.7 385.40000000000003 1927 1975-04-12 2024-10-11 00:32:07.000 1975-04-12 2024-10-11 00:32:07 +1928 1928 1929 192.8 385.6 1928 1975-04-13 2024-10-11 00:32:08.000 1975-04-13 2024-10-11 00:32:08 +1929 1929 1930 192.9 385.8 1929 1975-04-14 2024-10-11 00:32:09.000 1975-04-14 2024-10-11 00:32:09 +1931 1931 1932 193.1 386.20000000000005 1931 1975-04-16 2024-10-11 00:32:11.000 1975-04-16 2024-10-11 00:32:11 +1932 1932 1933 193.2 386.40000000000003 1932 1975-04-17 2024-10-11 00:32:12.000 1975-04-17 2024-10-11 00:32:12 +1933 1933 1934 193.3 386.6 1933 1975-04-18 2024-10-11 00:32:13.000 1975-04-18 2024-10-11 00:32:13 +1934 1934 1935 193.4 386.8 1934 1975-04-19 2024-10-11 00:32:14.000 1975-04-19 2024-10-11 00:32:14 +1936 1936 1937 193.6 387.20000000000005 1936 1975-04-21 2024-10-11 00:32:16.000 1975-04-21 2024-10-11 00:32:16 +1937 1937 1938 193.7 387.40000000000003 1937 1975-04-22 2024-10-11 00:32:17.000 1975-04-22 2024-10-11 00:32:17 +1938 1938 1939 193.8 387.6 1938 1975-04-23 2024-10-11 00:32:18.000 1975-04-23 2024-10-11 00:32:18 +1939 1939 1940 193.9 387.8 1939 1975-04-24 2024-10-11 00:32:19.000 1975-04-24 2024-10-11 00:32:19 +1941 1941 1942 194.1 388.20000000000005 1941 1975-04-26 2024-10-11 00:32:21.000 1975-04-26 2024-10-11 00:32:21 +1942 1942 1943 194.2 388.40000000000003 1942 1975-04-27 2024-10-11 00:32:22.000 1975-04-27 2024-10-11 00:32:22 +1943 1943 1944 194.3 388.6 1943 1975-04-28 2024-10-11 00:32:23.000 1975-04-28 2024-10-11 00:32:23 +1944 1944 1945 194.4 388.8 1944 1975-04-29 2024-10-11 00:32:24.000 1975-04-29 2024-10-11 00:32:24 +1946 1946 1947 194.6 389.20000000000005 1946 1975-05-01 2024-10-11 00:32:26.000 1975-05-01 2024-10-11 00:32:26 +1947 1947 1948 194.7 389.40000000000003 1947 1975-05-02 2024-10-11 00:32:27.000 1975-05-02 2024-10-11 00:32:27 +1948 1948 1949 194.8 389.6 1948 1975-05-03 2024-10-11 00:32:28.000 1975-05-03 2024-10-11 00:32:28 +1949 1949 1950 194.9 389.8 1949 1975-05-04 2024-10-11 00:32:29.000 1975-05-04 2024-10-11 00:32:29 +1951 1951 1952 195.1 390.20000000000005 1951 1975-05-06 2024-10-11 00:32:31.000 1975-05-06 2024-10-11 00:32:31 +1952 1952 1953 195.2 390.40000000000003 1952 1975-05-07 2024-10-11 00:32:32.000 1975-05-07 2024-10-11 00:32:32 +1953 1953 1954 195.3 390.6 1953 1975-05-08 2024-10-11 00:32:33.000 1975-05-08 2024-10-11 00:32:33 +1954 1954 1955 195.4 390.8 1954 1975-05-09 2024-10-11 00:32:34.000 1975-05-09 2024-10-11 00:32:34 +1956 1956 1957 195.6 391.20000000000005 1956 1975-05-11 2024-10-11 00:32:36.000 1975-05-11 2024-10-11 00:32:36 +1957 1957 1958 195.7 391.40000000000003 1957 1975-05-12 2024-10-11 00:32:37.000 1975-05-12 2024-10-11 00:32:37 +1958 1958 1959 195.8 391.6 1958 1975-05-13 2024-10-11 00:32:38.000 1975-05-13 2024-10-11 00:32:38 +1959 1959 1960 195.9 391.8 1959 1975-05-14 2024-10-11 00:32:39.000 1975-05-14 2024-10-11 00:32:39 +1961 1961 1962 196.1 392.20000000000005 1961 1975-05-16 2024-10-11 00:32:41.000 1975-05-16 2024-10-11 00:32:41 +1962 1962 1963 196.2 392.40000000000003 1962 1975-05-17 2024-10-11 00:32:42.000 1975-05-17 2024-10-11 00:32:42 +1963 1963 1964 196.3 392.6 1963 1975-05-18 2024-10-11 00:32:43.000 1975-05-18 2024-10-11 00:32:43 +1964 1964 1965 196.4 392.8 1964 1975-05-19 2024-10-11 00:32:44.000 1975-05-19 2024-10-11 00:32:44 +1966 1966 1967 196.6 393.20000000000005 1966 1975-05-21 2024-10-11 00:32:46.000 1975-05-21 2024-10-11 00:32:46 +1967 1967 1968 196.7 393.40000000000003 1967 1975-05-22 2024-10-11 00:32:47.000 1975-05-22 2024-10-11 00:32:47 +1968 1968 1969 196.8 393.6 1968 1975-05-23 2024-10-11 00:32:48.000 1975-05-23 2024-10-11 00:32:48 +1969 1969 1970 196.9 393.8 1969 1975-05-24 2024-10-11 00:32:49.000 1975-05-24 2024-10-11 00:32:49 +1971 1971 1972 197.1 394.20000000000005 1971 1975-05-26 2024-10-11 00:32:51.000 1975-05-26 2024-10-11 00:32:51 +1972 1972 1973 197.2 394.40000000000003 1972 1975-05-27 2024-10-11 00:32:52.000 1975-05-27 2024-10-11 00:32:52 +1973 1973 1974 197.3 394.6 1973 1975-05-28 2024-10-11 00:32:53.000 1975-05-28 2024-10-11 00:32:53 +1974 1974 1975 197.4 394.8 1974 1975-05-29 2024-10-11 00:32:54.000 1975-05-29 2024-10-11 00:32:54 +1976 1976 1977 197.6 395.20000000000005 1976 1975-05-31 2024-10-11 00:32:56.000 1975-05-31 2024-10-11 00:32:56 +1977 1977 1978 197.7 395.40000000000003 1977 1975-06-01 2024-10-11 00:32:57.000 1975-06-01 2024-10-11 00:32:57 +1978 1978 1979 197.8 395.6 1978 1975-06-02 2024-10-11 00:32:58.000 1975-06-02 2024-10-11 00:32:58 +1979 1979 1980 197.9 395.8 1979 1975-06-03 2024-10-11 00:32:59.000 1975-06-03 2024-10-11 00:32:59 +1981 1981 1982 198.1 396.20000000000005 1981 1975-06-05 2024-10-11 00:33:01.000 1975-06-05 2024-10-11 00:33:01 +1982 1982 1983 198.2 396.40000000000003 1982 1975-06-06 2024-10-11 00:33:02.000 1975-06-06 2024-10-11 00:33:02 +1983 1983 1984 198.3 396.6 1983 1975-06-07 2024-10-11 00:33:03.000 1975-06-07 2024-10-11 00:33:03 +1984 1984 1985 198.4 396.8 1984 1975-06-08 2024-10-11 00:33:04.000 1975-06-08 2024-10-11 00:33:04 +1986 1986 1987 198.6 397.20000000000005 1986 1975-06-10 2024-10-11 00:33:06.000 1975-06-10 2024-10-11 00:33:06 +1987 1987 1988 198.7 397.40000000000003 1987 1975-06-11 2024-10-11 00:33:07.000 1975-06-11 2024-10-11 00:33:07 +1988 1988 1989 198.8 397.6 1988 1975-06-12 2024-10-11 00:33:08.000 1975-06-12 2024-10-11 00:33:08 +1989 1989 1990 198.9 397.8 1989 1975-06-13 2024-10-11 00:33:09.000 1975-06-13 2024-10-11 00:33:09 +1991 1991 1992 199.1 398.20000000000005 1991 1975-06-15 2024-10-11 00:33:11.000 1975-06-15 2024-10-11 00:33:11 +1992 1992 1993 199.2 398.40000000000003 1992 1975-06-16 2024-10-11 00:33:12.000 1975-06-16 2024-10-11 00:33:12 +1993 1993 1994 199.3 398.6 1993 1975-06-17 2024-10-11 00:33:13.000 1975-06-17 2024-10-11 00:33:13 +1994 1994 1995 199.4 398.8 1994 1975-06-18 2024-10-11 00:33:14.000 1975-06-18 2024-10-11 00:33:14 +1996 1996 1997 199.6 399.20000000000005 1996 1975-06-20 2024-10-11 00:33:16.000 1975-06-20 2024-10-11 00:33:16 +1997 1997 1998 199.7 399.40000000000003 1997 1975-06-21 2024-10-11 00:33:17.000 1975-06-21 2024-10-11 00:33:17 +1998 1998 1999 199.8 399.6 1998 1975-06-22 2024-10-11 00:33:18.000 1975-06-22 2024-10-11 00:33:18 +1999 1999 2000 199.9 399.8 1999 1975-06-23 2024-10-11 00:33:19.000 1975-06-23 2024-10-11 00:33:19 +2001 2001 2002 200.1 400.20000000000005 2001 1975-06-25 2024-10-11 00:33:21.000 1975-06-25 2024-10-11 00:33:21 +2002 2002 2003 200.2 400.40000000000003 2002 1975-06-26 2024-10-11 00:33:22.000 1975-06-26 2024-10-11 00:33:22 +2003 2003 2004 200.3 400.6 2003 1975-06-27 2024-10-11 00:33:23.000 1975-06-27 2024-10-11 00:33:23 +2004 2004 2005 200.4 400.8 2004 1975-06-28 2024-10-11 00:33:24.000 1975-06-28 2024-10-11 00:33:24 +2006 2006 2007 200.6 401.20000000000005 2006 1975-06-30 2024-10-11 00:33:26.000 1975-06-30 2024-10-11 00:33:26 +2007 2007 2008 200.7 401.40000000000003 2007 1975-07-01 2024-10-11 00:33:27.000 1975-07-01 2024-10-11 00:33:27 +2008 2008 2009 200.8 401.6 2008 1975-07-02 2024-10-11 00:33:28.000 1975-07-02 2024-10-11 00:33:28 +2009 2009 2010 200.9 401.8 2009 1975-07-03 2024-10-11 00:33:29.000 1975-07-03 2024-10-11 00:33:29 +2011 2011 2012 201.1 402.20000000000005 2011 1975-07-05 2024-10-11 00:33:31.000 1975-07-05 2024-10-11 00:33:31 +2012 2012 2013 201.2 402.40000000000003 2012 1975-07-06 2024-10-11 00:33:32.000 1975-07-06 2024-10-11 00:33:32 +2013 2013 2014 201.3 402.6 2013 1975-07-07 2024-10-11 00:33:33.000 1975-07-07 2024-10-11 00:33:33 +2014 2014 2015 201.4 402.8 2014 1975-07-08 2024-10-11 00:33:34.000 1975-07-08 2024-10-11 00:33:34 +2016 2016 2017 201.6 403.20000000000005 2016 1975-07-10 2024-10-11 00:33:36.000 1975-07-10 2024-10-11 00:33:36 +2017 2017 2018 201.7 403.40000000000003 2017 1975-07-11 2024-10-11 00:33:37.000 1975-07-11 2024-10-11 00:33:37 +2018 2018 2019 201.8 403.6 2018 1975-07-12 2024-10-11 00:33:38.000 1975-07-12 2024-10-11 00:33:38 +2019 2019 2020 201.9 403.8 2019 1975-07-13 2024-10-11 00:33:39.000 1975-07-13 2024-10-11 00:33:39 +2021 2021 2022 202.1 404.20000000000005 2021 1975-07-15 2024-10-11 00:33:41.000 1975-07-15 2024-10-11 00:33:41 +2022 2022 2023 202.2 404.40000000000003 2022 1975-07-16 2024-10-11 00:33:42.000 1975-07-16 2024-10-11 00:33:42 +2023 2023 2024 202.3 404.6 2023 1975-07-17 2024-10-11 00:33:43.000 1975-07-17 2024-10-11 00:33:43 +2024 2024 2025 202.4 404.8 2024 1975-07-18 2024-10-11 00:33:44.000 1975-07-18 2024-10-11 00:33:44 +2026 2026 2027 202.6 405.20000000000005 2026 1975-07-20 2024-10-11 00:33:46.000 1975-07-20 2024-10-11 00:33:46 +2027 2027 2028 202.7 405.40000000000003 2027 1975-07-21 2024-10-11 00:33:47.000 1975-07-21 2024-10-11 00:33:47 +2028 2028 2029 202.8 405.6 2028 1975-07-22 2024-10-11 00:33:48.000 1975-07-22 2024-10-11 00:33:48 +2029 2029 2030 202.9 405.8 2029 1975-07-23 2024-10-11 00:33:49.000 1975-07-23 2024-10-11 00:33:49 +2031 2031 2032 203.1 406.20000000000005 2031 1975-07-25 2024-10-11 00:33:51.000 1975-07-25 2024-10-11 00:33:51 +2032 2032 2033 203.2 406.40000000000003 2032 1975-07-26 2024-10-11 00:33:52.000 1975-07-26 2024-10-11 00:33:52 +2033 2033 2034 203.3 406.6 2033 1975-07-27 2024-10-11 00:33:53.000 1975-07-27 2024-10-11 00:33:53 +2034 2034 2035 203.4 406.8 2034 1975-07-28 2024-10-11 00:33:54.000 1975-07-28 2024-10-11 00:33:54 +2036 2036 2037 203.6 407.20000000000005 2036 1975-07-30 2024-10-11 00:33:56.000 1975-07-30 2024-10-11 00:33:56 +2037 2037 2038 203.7 407.40000000000003 2037 1975-07-31 2024-10-11 00:33:57.000 1975-07-31 2024-10-11 00:33:57 +2038 2038 2039 203.8 407.6 2038 1975-08-01 2024-10-11 00:33:58.000 1975-08-01 2024-10-11 00:33:58 +2039 2039 2040 203.9 407.8 2039 1975-08-02 2024-10-11 00:33:59.000 1975-08-02 2024-10-11 00:33:59 +2041 2041 2042 204.1 408.20000000000005 2041 1975-08-04 2024-10-11 00:34:01.000 1975-08-04 2024-10-11 00:34:01 +2042 2042 2043 204.2 408.40000000000003 2042 1975-08-05 2024-10-11 00:34:02.000 1975-08-05 2024-10-11 00:34:02 +2043 2043 2044 204.3 408.6 2043 1975-08-06 2024-10-11 00:34:03.000 1975-08-06 2024-10-11 00:34:03 +2044 2044 2045 204.4 408.8 2044 1975-08-07 2024-10-11 00:34:04.000 1975-08-07 2024-10-11 00:34:04 +2046 2046 2047 204.6 409.20000000000005 2046 1975-08-09 2024-10-11 00:34:06.000 1975-08-09 2024-10-11 00:34:06 +2047 2047 2048 204.7 409.40000000000003 2047 1975-08-10 2024-10-11 00:34:07.000 1975-08-10 2024-10-11 00:34:07 +2048 2048 2049 204.8 409.6 2048 1975-08-11 2024-10-11 00:34:08.000 1975-08-11 2024-10-11 00:34:08 +2049 2049 2050 204.9 409.8 2049 1975-08-12 2024-10-11 00:34:09.000 1975-08-12 2024-10-11 00:34:09 +2051 2051 2052 205.1 410.20000000000005 2051 1975-08-14 2024-10-11 00:34:11.000 1975-08-14 2024-10-11 00:34:11 +2052 2052 2053 205.2 410.40000000000003 2052 1975-08-15 2024-10-11 00:34:12.000 1975-08-15 2024-10-11 00:34:12 +2053 2053 2054 205.3 410.6 2053 1975-08-16 2024-10-11 00:34:13.000 1975-08-16 2024-10-11 00:34:13 +2054 2054 2055 205.4 410.8 2054 1975-08-17 2024-10-11 00:34:14.000 1975-08-17 2024-10-11 00:34:14 +2056 2056 2057 205.6 411.20000000000005 2056 1975-08-19 2024-10-11 00:34:16.000 1975-08-19 2024-10-11 00:34:16 +2057 2057 2058 205.7 411.40000000000003 2057 1975-08-20 2024-10-11 00:34:17.000 1975-08-20 2024-10-11 00:34:17 +2058 2058 2059 205.8 411.6 2058 1975-08-21 2024-10-11 00:34:18.000 1975-08-21 2024-10-11 00:34:18 +2059 2059 2060 205.9 411.8 2059 1975-08-22 2024-10-11 00:34:19.000 1975-08-22 2024-10-11 00:34:19 +2061 2061 2062 206.1 412.20000000000005 2061 1975-08-24 2024-10-11 00:34:21.000 1975-08-24 2024-10-11 00:34:21 +2062 2062 2063 206.2 412.40000000000003 2062 1975-08-25 2024-10-11 00:34:22.000 1975-08-25 2024-10-11 00:34:22 +2063 2063 2064 206.3 412.6 2063 1975-08-26 2024-10-11 00:34:23.000 1975-08-26 2024-10-11 00:34:23 +2064 2064 2065 206.4 412.8 2064 1975-08-27 2024-10-11 00:34:24.000 1975-08-27 2024-10-11 00:34:24 +2066 2066 2067 206.6 413.20000000000005 2066 1975-08-29 2024-10-11 00:34:26.000 1975-08-29 2024-10-11 00:34:26 +2067 2067 2068 206.7 413.40000000000003 2067 1975-08-30 2024-10-11 00:34:27.000 1975-08-30 2024-10-11 00:34:27 +2068 2068 2069 206.8 413.6 2068 1975-08-31 2024-10-11 00:34:28.000 1975-08-31 2024-10-11 00:34:28 +2069 2069 2070 206.9 413.8 2069 1975-09-01 2024-10-11 00:34:29.000 1975-09-01 2024-10-11 00:34:29 +2071 2071 2072 207.1 414.20000000000005 2071 1975-09-03 2024-10-11 00:34:31.000 1975-09-03 2024-10-11 00:34:31 +2072 2072 2073 207.2 414.40000000000003 2072 1975-09-04 2024-10-11 00:34:32.000 1975-09-04 2024-10-11 00:34:32 +2073 2073 2074 207.3 414.6 2073 1975-09-05 2024-10-11 00:34:33.000 1975-09-05 2024-10-11 00:34:33 +2074 2074 2075 207.4 414.8 2074 1975-09-06 2024-10-11 00:34:34.000 1975-09-06 2024-10-11 00:34:34 +2076 2076 2077 207.6 415.20000000000005 2076 1975-09-08 2024-10-11 00:34:36.000 1975-09-08 2024-10-11 00:34:36 +2077 2077 2078 207.7 415.40000000000003 2077 1975-09-09 2024-10-11 00:34:37.000 1975-09-09 2024-10-11 00:34:37 +2078 2078 2079 207.8 415.6 2078 1975-09-10 2024-10-11 00:34:38.000 1975-09-10 2024-10-11 00:34:38 +2079 2079 2080 207.9 415.8 2079 1975-09-11 2024-10-11 00:34:39.000 1975-09-11 2024-10-11 00:34:39 +2081 2081 2082 208.1 416.20000000000005 2081 1975-09-13 2024-10-11 00:34:41.000 1975-09-13 2024-10-11 00:34:41 +2082 2082 2083 208.2 416.40000000000003 2082 1975-09-14 2024-10-11 00:34:42.000 1975-09-14 2024-10-11 00:34:42 +2083 2083 2084 208.3 416.6 2083 1975-09-15 2024-10-11 00:34:43.000 1975-09-15 2024-10-11 00:34:43 +2084 2084 2085 208.4 416.8 2084 1975-09-16 2024-10-11 00:34:44.000 1975-09-16 2024-10-11 00:34:44 +2086 2086 2087 208.6 417.20000000000005 2086 1975-09-18 2024-10-11 00:34:46.000 1975-09-18 2024-10-11 00:34:46 +2087 2087 2088 208.7 417.40000000000003 2087 1975-09-19 2024-10-11 00:34:47.000 1975-09-19 2024-10-11 00:34:47 +2088 2088 2089 208.8 417.6 2088 1975-09-20 2024-10-11 00:34:48.000 1975-09-20 2024-10-11 00:34:48 +2089 2089 2090 208.9 417.8 2089 1975-09-21 2024-10-11 00:34:49.000 1975-09-21 2024-10-11 00:34:49 +2091 2091 2092 209.1 418.20000000000005 2091 1975-09-23 2024-10-11 00:34:51.000 1975-09-23 2024-10-11 00:34:51 +2092 2092 2093 209.2 418.40000000000003 2092 1975-09-24 2024-10-11 00:34:52.000 1975-09-24 2024-10-11 00:34:52 +2093 2093 2094 209.3 418.6 2093 1975-09-25 2024-10-11 00:34:53.000 1975-09-25 2024-10-11 00:34:53 +2094 2094 2095 209.4 418.8 2094 1975-09-26 2024-10-11 00:34:54.000 1975-09-26 2024-10-11 00:34:54 +2096 2096 2097 209.6 419.20000000000005 2096 1975-09-28 2024-10-11 00:34:56.000 1975-09-28 2024-10-11 00:34:56 +2097 2097 2098 209.7 419.40000000000003 2097 1975-09-29 2024-10-11 00:34:57.000 1975-09-29 2024-10-11 00:34:57 +2098 2098 2099 209.8 419.6 2098 1975-09-30 2024-10-11 00:34:58.000 1975-09-30 2024-10-11 00:34:58 +2099 2099 2100 209.9 419.8 2099 1975-10-01 2024-10-11 00:34:59.000 1975-10-01 2024-10-11 00:34:59 +2101 2101 2102 210.1 420.20000000000005 2101 1975-10-03 2024-10-11 00:35:01.000 1975-10-03 2024-10-11 00:35:01 +2102 2102 2103 210.2 420.40000000000003 2102 1975-10-04 2024-10-11 00:35:02.000 1975-10-04 2024-10-11 00:35:02 +2103 2103 2104 210.3 420.6 2103 1975-10-05 2024-10-11 00:35:03.000 1975-10-05 2024-10-11 00:35:03 +2104 2104 2105 210.4 420.8 2104 1975-10-06 2024-10-11 00:35:04.000 1975-10-06 2024-10-11 00:35:04 +2106 2106 2107 210.6 421.20000000000005 2106 1975-10-08 2024-10-11 00:35:06.000 1975-10-08 2024-10-11 00:35:06 +2107 2107 2108 210.7 421.40000000000003 2107 1975-10-09 2024-10-11 00:35:07.000 1975-10-09 2024-10-11 00:35:07 +2108 2108 2109 210.8 421.6 2108 1975-10-10 2024-10-11 00:35:08.000 1975-10-10 2024-10-11 00:35:08 +2109 2109 2110 210.9 421.8 2109 1975-10-11 2024-10-11 00:35:09.000 1975-10-11 2024-10-11 00:35:09 +2111 2111 2112 211.1 422.20000000000005 2111 1975-10-13 2024-10-11 00:35:11.000 1975-10-13 2024-10-11 00:35:11 +2112 2112 2113 211.2 422.40000000000003 2112 1975-10-14 2024-10-11 00:35:12.000 1975-10-14 2024-10-11 00:35:12 +2113 2113 2114 211.3 422.6 2113 1975-10-15 2024-10-11 00:35:13.000 1975-10-15 2024-10-11 00:35:13 +2114 2114 2115 211.4 422.8 2114 1975-10-16 2024-10-11 00:35:14.000 1975-10-16 2024-10-11 00:35:14 +2116 2116 2117 211.6 423.20000000000005 2116 1975-10-18 2024-10-11 00:35:16.000 1975-10-18 2024-10-11 00:35:16 +2117 2117 2118 211.7 423.40000000000003 2117 1975-10-19 2024-10-11 00:35:17.000 1975-10-19 2024-10-11 00:35:17 +2118 2118 2119 211.8 423.6 2118 1975-10-20 2024-10-11 00:35:18.000 1975-10-20 2024-10-11 00:35:18 +2119 2119 2120 211.9 423.8 2119 1975-10-21 2024-10-11 00:35:19.000 1975-10-21 2024-10-11 00:35:19 +2121 2121 2122 212.1 424.20000000000005 2121 1975-10-23 2024-10-11 00:35:21.000 1975-10-23 2024-10-11 00:35:21 +2122 2122 2123 212.2 424.40000000000003 2122 1975-10-24 2024-10-11 00:35:22.000 1975-10-24 2024-10-11 00:35:22 +2123 2123 2124 212.3 424.6 2123 1975-10-25 2024-10-11 00:35:23.000 1975-10-25 2024-10-11 00:35:23 +2124 2124 2125 212.4 424.8 2124 1975-10-26 2024-10-11 00:35:24.000 1975-10-26 2024-10-11 00:35:24 +2126 2126 2127 212.6 425.20000000000005 2126 1975-10-28 2024-10-11 00:35:26.000 1975-10-28 2024-10-11 00:35:26 +2127 2127 2128 212.7 425.40000000000003 2127 1975-10-29 2024-10-11 00:35:27.000 1975-10-29 2024-10-11 00:35:27 +2128 2128 2129 212.8 425.6 2128 1975-10-30 2024-10-11 00:35:28.000 1975-10-30 2024-10-11 00:35:28 +2129 2129 2130 212.9 425.8 2129 1975-10-31 2024-10-11 00:35:29.000 1975-10-31 2024-10-11 00:35:29 +2131 2131 2132 213.1 426.20000000000005 2131 1975-11-02 2024-10-11 00:35:31.000 1975-11-02 2024-10-11 00:35:31 +2132 2132 2133 213.2 426.40000000000003 2132 1975-11-03 2024-10-11 00:35:32.000 1975-11-03 2024-10-11 00:35:32 +2133 2133 2134 213.3 426.6 2133 1975-11-04 2024-10-11 00:35:33.000 1975-11-04 2024-10-11 00:35:33 +2134 2134 2135 213.4 426.8 2134 1975-11-05 2024-10-11 00:35:34.000 1975-11-05 2024-10-11 00:35:34 +2136 2136 2137 213.6 427.20000000000005 2136 1975-11-07 2024-10-11 00:35:36.000 1975-11-07 2024-10-11 00:35:36 +2137 2137 2138 213.7 427.40000000000003 2137 1975-11-08 2024-10-11 00:35:37.000 1975-11-08 2024-10-11 00:35:37 +2138 2138 2139 213.8 427.6 2138 1975-11-09 2024-10-11 00:35:38.000 1975-11-09 2024-10-11 00:35:38 +2139 2139 2140 213.9 427.8 2139 1975-11-10 2024-10-11 00:35:39.000 1975-11-10 2024-10-11 00:35:39 +2141 2141 2142 214.1 428.20000000000005 2141 1975-11-12 2024-10-11 00:35:41.000 1975-11-12 2024-10-11 00:35:41 +2142 2142 2143 214.2 428.40000000000003 2142 1975-11-13 2024-10-11 00:35:42.000 1975-11-13 2024-10-11 00:35:42 +2143 2143 2144 214.3 428.6 2143 1975-11-14 2024-10-11 00:35:43.000 1975-11-14 2024-10-11 00:35:43 +2144 2144 2145 214.4 428.8 2144 1975-11-15 2024-10-11 00:35:44.000 1975-11-15 2024-10-11 00:35:44 +2146 2146 2147 214.6 429.20000000000005 2146 1975-11-17 2024-10-11 00:35:46.000 1975-11-17 2024-10-11 00:35:46 +2147 2147 2148 214.7 429.40000000000003 2147 1975-11-18 2024-10-11 00:35:47.000 1975-11-18 2024-10-11 00:35:47 +2148 2148 2149 214.8 429.6 2148 1975-11-19 2024-10-11 00:35:48.000 1975-11-19 2024-10-11 00:35:48 +2149 2149 2150 214.9 429.8 2149 1975-11-20 2024-10-11 00:35:49.000 1975-11-20 2024-10-11 00:35:49 +2151 2151 2152 215.1 430.20000000000005 2151 1975-11-22 2024-10-11 00:35:51.000 1975-11-22 2024-10-11 00:35:51 +2152 2152 2153 215.2 430.40000000000003 2152 1975-11-23 2024-10-11 00:35:52.000 1975-11-23 2024-10-11 00:35:52 +2153 2153 2154 215.3 430.6 2153 1975-11-24 2024-10-11 00:35:53.000 1975-11-24 2024-10-11 00:35:53 +2154 2154 2155 215.4 430.8 2154 1975-11-25 2024-10-11 00:35:54.000 1975-11-25 2024-10-11 00:35:54 +2156 2156 2157 215.6 431.20000000000005 2156 1975-11-27 2024-10-11 00:35:56.000 1975-11-27 2024-10-11 00:35:56 +2157 2157 2158 215.7 431.40000000000003 2157 1975-11-28 2024-10-11 00:35:57.000 1975-11-28 2024-10-11 00:35:57 +2158 2158 2159 215.8 431.6 2158 1975-11-29 2024-10-11 00:35:58.000 1975-11-29 2024-10-11 00:35:58 +2159 2159 2160 215.9 431.8 2159 1975-11-30 2024-10-11 00:35:59.000 1975-11-30 2024-10-11 00:35:59 +2161 2161 2162 216.1 432.20000000000005 2161 1975-12-02 2024-10-11 00:36:01.000 1975-12-02 2024-10-11 00:36:01 +2162 2162 2163 216.2 432.40000000000003 2162 1975-12-03 2024-10-11 00:36:02.000 1975-12-03 2024-10-11 00:36:02 +2163 2163 2164 216.3 432.6 2163 1975-12-04 2024-10-11 00:36:03.000 1975-12-04 2024-10-11 00:36:03 +2164 2164 2165 216.4 432.8 2164 1975-12-05 2024-10-11 00:36:04.000 1975-12-05 2024-10-11 00:36:04 +2166 2166 2167 216.6 433.20000000000005 2166 1975-12-07 2024-10-11 00:36:06.000 1975-12-07 2024-10-11 00:36:06 +2167 2167 2168 216.7 433.40000000000003 2167 1975-12-08 2024-10-11 00:36:07.000 1975-12-08 2024-10-11 00:36:07 +2168 2168 2169 216.8 433.6 2168 1975-12-09 2024-10-11 00:36:08.000 1975-12-09 2024-10-11 00:36:08 +2169 2169 2170 216.9 433.8 2169 1975-12-10 2024-10-11 00:36:09.000 1975-12-10 2024-10-11 00:36:09 +2171 2171 2172 217.1 434.20000000000005 2171 1975-12-12 2024-10-11 00:36:11.000 1975-12-12 2024-10-11 00:36:11 +2172 2172 2173 217.2 434.40000000000003 2172 1975-12-13 2024-10-11 00:36:12.000 1975-12-13 2024-10-11 00:36:12 +2173 2173 2174 217.3 434.6 2173 1975-12-14 2024-10-11 00:36:13.000 1975-12-14 2024-10-11 00:36:13 +2174 2174 2175 217.4 434.8 2174 1975-12-15 2024-10-11 00:36:14.000 1975-12-15 2024-10-11 00:36:14 +2176 2176 2177 217.6 435.20000000000005 2176 1975-12-17 2024-10-11 00:36:16.000 1975-12-17 2024-10-11 00:36:16 +2177 2177 2178 217.7 435.40000000000003 2177 1975-12-18 2024-10-11 00:36:17.000 1975-12-18 2024-10-11 00:36:17 +2178 2178 2179 217.8 435.6 2178 1975-12-19 2024-10-11 00:36:18.000 1975-12-19 2024-10-11 00:36:18 +2179 2179 2180 217.9 435.8 2179 1975-12-20 2024-10-11 00:36:19.000 1975-12-20 2024-10-11 00:36:19 +2181 2181 2182 218.1 436.20000000000005 2181 1975-12-22 2024-10-11 00:36:21.000 1975-12-22 2024-10-11 00:36:21 +2182 2182 2183 218.2 436.40000000000003 2182 1975-12-23 2024-10-11 00:36:22.000 1975-12-23 2024-10-11 00:36:22 +2183 2183 2184 218.3 436.6 2183 1975-12-24 2024-10-11 00:36:23.000 1975-12-24 2024-10-11 00:36:23 +2184 2184 2185 218.4 436.8 2184 1975-12-25 2024-10-11 00:36:24.000 1975-12-25 2024-10-11 00:36:24 +2186 2186 2187 218.6 437.20000000000005 2186 1975-12-27 2024-10-11 00:36:26.000 1975-12-27 2024-10-11 00:36:26 +2187 2187 2188 218.7 437.40000000000003 2187 1975-12-28 2024-10-11 00:36:27.000 1975-12-28 2024-10-11 00:36:27 +2188 2188 2189 218.8 437.6 2188 1975-12-29 2024-10-11 00:36:28.000 1975-12-29 2024-10-11 00:36:28 +2189 2189 2190 218.9 437.8 2189 1975-12-30 2024-10-11 00:36:29.000 1975-12-30 2024-10-11 00:36:29 +2191 2191 2192 219.1 438.20000000000005 2191 1976-01-01 2024-10-11 00:36:31.000 1976-01-01 2024-10-11 00:36:31 +2192 2192 2193 219.2 438.40000000000003 2192 1976-01-02 2024-10-11 00:36:32.000 1976-01-02 2024-10-11 00:36:32 +2193 2193 2194 219.3 438.6 2193 1976-01-03 2024-10-11 00:36:33.000 1976-01-03 2024-10-11 00:36:33 +2194 2194 2195 219.4 438.8 2194 1976-01-04 2024-10-11 00:36:34.000 1976-01-04 2024-10-11 00:36:34 +2196 2196 2197 219.6 439.20000000000005 2196 1976-01-06 2024-10-11 00:36:36.000 1976-01-06 2024-10-11 00:36:36 +2197 2197 2198 219.7 439.40000000000003 2197 1976-01-07 2024-10-11 00:36:37.000 1976-01-07 2024-10-11 00:36:37 +2198 2198 2199 219.8 439.6 2198 1976-01-08 2024-10-11 00:36:38.000 1976-01-08 2024-10-11 00:36:38 +2199 2199 2200 219.9 439.8 2199 1976-01-09 2024-10-11 00:36:39.000 1976-01-09 2024-10-11 00:36:39 +2201 2201 2202 220.1 440.20000000000005 2201 1976-01-11 2024-10-11 00:36:41.000 1976-01-11 2024-10-11 00:36:41 +2202 2202 2203 220.2 440.40000000000003 2202 1976-01-12 2024-10-11 00:36:42.000 1976-01-12 2024-10-11 00:36:42 +2203 2203 2204 220.3 440.6 2203 1976-01-13 2024-10-11 00:36:43.000 1976-01-13 2024-10-11 00:36:43 +2204 2204 2205 220.4 440.8 2204 1976-01-14 2024-10-11 00:36:44.000 1976-01-14 2024-10-11 00:36:44 +2206 2206 2207 220.6 441.20000000000005 2206 1976-01-16 2024-10-11 00:36:46.000 1976-01-16 2024-10-11 00:36:46 +2207 2207 2208 220.7 441.40000000000003 2207 1976-01-17 2024-10-11 00:36:47.000 1976-01-17 2024-10-11 00:36:47 +2208 2208 2209 220.8 441.6 2208 1976-01-18 2024-10-11 00:36:48.000 1976-01-18 2024-10-11 00:36:48 +2209 2209 2210 220.9 441.8 2209 1976-01-19 2024-10-11 00:36:49.000 1976-01-19 2024-10-11 00:36:49 +2211 2211 2212 221.1 442.20000000000005 2211 1976-01-21 2024-10-11 00:36:51.000 1976-01-21 2024-10-11 00:36:51 +2212 2212 2213 221.2 442.40000000000003 2212 1976-01-22 2024-10-11 00:36:52.000 1976-01-22 2024-10-11 00:36:52 +2213 2213 2214 221.3 442.6 2213 1976-01-23 2024-10-11 00:36:53.000 1976-01-23 2024-10-11 00:36:53 +2214 2214 2215 221.4 442.8 2214 1976-01-24 2024-10-11 00:36:54.000 1976-01-24 2024-10-11 00:36:54 +2216 2216 2217 221.6 443.20000000000005 2216 1976-01-26 2024-10-11 00:36:56.000 1976-01-26 2024-10-11 00:36:56 +2217 2217 2218 221.7 443.40000000000003 2217 1976-01-27 2024-10-11 00:36:57.000 1976-01-27 2024-10-11 00:36:57 +2218 2218 2219 221.8 443.6 2218 1976-01-28 2024-10-11 00:36:58.000 1976-01-28 2024-10-11 00:36:58 +2219 2219 2220 221.9 443.8 2219 1976-01-29 2024-10-11 00:36:59.000 1976-01-29 2024-10-11 00:36:59 +2221 2221 2222 222.1 444.20000000000005 2221 1976-01-31 2024-10-11 00:37:01.000 1976-01-31 2024-10-11 00:37:01 +2222 2222 2223 222.2 444.40000000000003 2222 1976-02-01 2024-10-11 00:37:02.000 1976-02-01 2024-10-11 00:37:02 +2223 2223 2224 222.3 444.6 2223 1976-02-02 2024-10-11 00:37:03.000 1976-02-02 2024-10-11 00:37:03 +2224 2224 2225 222.4 444.8 2224 1976-02-03 2024-10-11 00:37:04.000 1976-02-03 2024-10-11 00:37:04 +2226 2226 2227 222.6 445.20000000000005 2226 1976-02-05 2024-10-11 00:37:06.000 1976-02-05 2024-10-11 00:37:06 +2227 2227 2228 222.7 445.40000000000003 2227 1976-02-06 2024-10-11 00:37:07.000 1976-02-06 2024-10-11 00:37:07 +2228 2228 2229 222.8 445.6 2228 1976-02-07 2024-10-11 00:37:08.000 1976-02-07 2024-10-11 00:37:08 +2229 2229 2230 222.9 445.8 2229 1976-02-08 2024-10-11 00:37:09.000 1976-02-08 2024-10-11 00:37:09 +2231 2231 2232 223.1 446.20000000000005 2231 1976-02-10 2024-10-11 00:37:11.000 1976-02-10 2024-10-11 00:37:11 +2232 2232 2233 223.2 446.40000000000003 2232 1976-02-11 2024-10-11 00:37:12.000 1976-02-11 2024-10-11 00:37:12 +2233 2233 2234 223.3 446.6 2233 1976-02-12 2024-10-11 00:37:13.000 1976-02-12 2024-10-11 00:37:13 +2234 2234 2235 223.4 446.8 2234 1976-02-13 2024-10-11 00:37:14.000 1976-02-13 2024-10-11 00:37:14 +2236 2236 2237 223.6 447.20000000000005 2236 1976-02-15 2024-10-11 00:37:16.000 1976-02-15 2024-10-11 00:37:16 +2237 2237 2238 223.7 447.40000000000003 2237 1976-02-16 2024-10-11 00:37:17.000 1976-02-16 2024-10-11 00:37:17 +2238 2238 2239 223.8 447.6 2238 1976-02-17 2024-10-11 00:37:18.000 1976-02-17 2024-10-11 00:37:18 +2239 2239 2240 223.9 447.8 2239 1976-02-18 2024-10-11 00:37:19.000 1976-02-18 2024-10-11 00:37:19 +2241 2241 2242 224.1 448.20000000000005 2241 1976-02-20 2024-10-11 00:37:21.000 1976-02-20 2024-10-11 00:37:21 +2242 2242 2243 224.2 448.40000000000003 2242 1976-02-21 2024-10-11 00:37:22.000 1976-02-21 2024-10-11 00:37:22 +2243 2243 2244 224.3 448.6 2243 1976-02-22 2024-10-11 00:37:23.000 1976-02-22 2024-10-11 00:37:23 +2244 2244 2245 224.4 448.8 2244 1976-02-23 2024-10-11 00:37:24.000 1976-02-23 2024-10-11 00:37:24 +2246 2246 2247 224.6 449.20000000000005 2246 1976-02-25 2024-10-11 00:37:26.000 1976-02-25 2024-10-11 00:37:26 +2247 2247 2248 224.7 449.40000000000003 2247 1976-02-26 2024-10-11 00:37:27.000 1976-02-26 2024-10-11 00:37:27 +2248 2248 2249 224.8 449.6 2248 1976-02-27 2024-10-11 00:37:28.000 1976-02-27 2024-10-11 00:37:28 +2249 2249 2250 224.9 449.8 2249 1976-02-28 2024-10-11 00:37:29.000 1976-02-28 2024-10-11 00:37:29 +2251 2251 2252 225.1 450.20000000000005 2251 1976-03-01 2024-10-11 00:37:31.000 1976-03-01 2024-10-11 00:37:31 +2252 2252 2253 225.2 450.40000000000003 2252 1976-03-02 2024-10-11 00:37:32.000 1976-03-02 2024-10-11 00:37:32 +2253 2253 2254 225.3 450.6 2253 1976-03-03 2024-10-11 00:37:33.000 1976-03-03 2024-10-11 00:37:33 +2254 2254 2255 225.4 450.8 2254 1976-03-04 2024-10-11 00:37:34.000 1976-03-04 2024-10-11 00:37:34 +2256 2256 2257 225.6 451.20000000000005 2256 1976-03-06 2024-10-11 00:37:36.000 1976-03-06 2024-10-11 00:37:36 +2257 2257 2258 225.7 451.40000000000003 2257 1976-03-07 2024-10-11 00:37:37.000 1976-03-07 2024-10-11 00:37:37 +2258 2258 2259 225.8 451.6 2258 1976-03-08 2024-10-11 00:37:38.000 1976-03-08 2024-10-11 00:37:38 +2259 2259 2260 225.9 451.8 2259 1976-03-09 2024-10-11 00:37:39.000 1976-03-09 2024-10-11 00:37:39 +2261 2261 2262 226.1 452.20000000000005 2261 1976-03-11 2024-10-11 00:37:41.000 1976-03-11 2024-10-11 00:37:41 +2262 2262 2263 226.2 452.40000000000003 2262 1976-03-12 2024-10-11 00:37:42.000 1976-03-12 2024-10-11 00:37:42 +2263 2263 2264 226.3 452.6 2263 1976-03-13 2024-10-11 00:37:43.000 1976-03-13 2024-10-11 00:37:43 +2264 2264 2265 226.4 452.8 2264 1976-03-14 2024-10-11 00:37:44.000 1976-03-14 2024-10-11 00:37:44 +2266 2266 2267 226.6 453.20000000000005 2266 1976-03-16 2024-10-11 00:37:46.000 1976-03-16 2024-10-11 00:37:46 +2267 2267 2268 226.7 453.40000000000003 2267 1976-03-17 2024-10-11 00:37:47.000 1976-03-17 2024-10-11 00:37:47 +2268 2268 2269 226.8 453.6 2268 1976-03-18 2024-10-11 00:37:48.000 1976-03-18 2024-10-11 00:37:48 +2269 2269 2270 226.9 453.8 2269 1976-03-19 2024-10-11 00:37:49.000 1976-03-19 2024-10-11 00:37:49 +2271 2271 2272 227.1 454.20000000000005 2271 1976-03-21 2024-10-11 00:37:51.000 1976-03-21 2024-10-11 00:37:51 +2272 2272 2273 227.2 454.40000000000003 2272 1976-03-22 2024-10-11 00:37:52.000 1976-03-22 2024-10-11 00:37:52 +2273 2273 2274 227.3 454.6 2273 1976-03-23 2024-10-11 00:37:53.000 1976-03-23 2024-10-11 00:37:53 +2274 2274 2275 227.4 454.8 2274 1976-03-24 2024-10-11 00:37:54.000 1976-03-24 2024-10-11 00:37:54 +2276 2276 2277 227.6 455.20000000000005 2276 1976-03-26 2024-10-11 00:37:56.000 1976-03-26 2024-10-11 00:37:56 +2277 2277 2278 227.7 455.40000000000003 2277 1976-03-27 2024-10-11 00:37:57.000 1976-03-27 2024-10-11 00:37:57 +2278 2278 2279 227.8 455.6 2278 1976-03-28 2024-10-11 00:37:58.000 1976-03-28 2024-10-11 00:37:58 +2279 2279 2280 227.9 455.8 2279 1976-03-29 2024-10-11 00:37:59.000 1976-03-29 2024-10-11 00:37:59 +2281 2281 2282 228.1 456.20000000000005 2281 1976-03-31 2024-10-11 00:38:01.000 1976-03-31 2024-10-11 00:38:01 +2282 2282 2283 228.2 456.40000000000003 2282 1976-04-01 2024-10-11 00:38:02.000 1976-04-01 2024-10-11 00:38:02 +2283 2283 2284 228.3 456.6 2283 1976-04-02 2024-10-11 00:38:03.000 1976-04-02 2024-10-11 00:38:03 +2284 2284 2285 228.4 456.8 2284 1976-04-03 2024-10-11 00:38:04.000 1976-04-03 2024-10-11 00:38:04 +2286 2286 2287 228.6 457.20000000000005 2286 1976-04-05 2024-10-11 00:38:06.000 1976-04-05 2024-10-11 00:38:06 +2287 2287 2288 228.7 457.40000000000003 2287 1976-04-06 2024-10-11 00:38:07.000 1976-04-06 2024-10-11 00:38:07 +2288 2288 2289 228.8 457.6 2288 1976-04-07 2024-10-11 00:38:08.000 1976-04-07 2024-10-11 00:38:08 +2289 2289 2290 228.9 457.8 2289 1976-04-08 2024-10-11 00:38:09.000 1976-04-08 2024-10-11 00:38:09 +2291 2291 2292 229.1 458.20000000000005 2291 1976-04-10 2024-10-11 00:38:11.000 1976-04-10 2024-10-11 00:38:11 +2292 2292 2293 229.2 458.40000000000003 2292 1976-04-11 2024-10-11 00:38:12.000 1976-04-11 2024-10-11 00:38:12 +2293 2293 2294 229.3 458.6 2293 1976-04-12 2024-10-11 00:38:13.000 1976-04-12 2024-10-11 00:38:13 +2294 2294 2295 229.4 458.8 2294 1976-04-13 2024-10-11 00:38:14.000 1976-04-13 2024-10-11 00:38:14 +2296 2296 2297 229.6 459.20000000000005 2296 1976-04-15 2024-10-11 00:38:16.000 1976-04-15 2024-10-11 00:38:16 +2297 2297 2298 229.7 459.40000000000003 2297 1976-04-16 2024-10-11 00:38:17.000 1976-04-16 2024-10-11 00:38:17 +2298 2298 2299 229.8 459.6 2298 1976-04-17 2024-10-11 00:38:18.000 1976-04-17 2024-10-11 00:38:18 +2299 2299 2300 229.9 459.8 2299 1976-04-18 2024-10-11 00:38:19.000 1976-04-18 2024-10-11 00:38:19 +2301 2301 2302 230.1 460.20000000000005 2301 1976-04-20 2024-10-11 00:38:21.000 1976-04-20 2024-10-11 00:38:21 +2302 2302 2303 230.2 460.40000000000003 2302 1976-04-21 2024-10-11 00:38:22.000 1976-04-21 2024-10-11 00:38:22 +2303 2303 2304 230.3 460.6 2303 1976-04-22 2024-10-11 00:38:23.000 1976-04-22 2024-10-11 00:38:23 +2304 2304 2305 230.4 460.8 2304 1976-04-23 2024-10-11 00:38:24.000 1976-04-23 2024-10-11 00:38:24 +2306 2306 2307 230.6 461.20000000000005 2306 1976-04-25 2024-10-11 00:38:26.000 1976-04-25 2024-10-11 00:38:26 +2307 2307 2308 230.7 461.40000000000003 2307 1976-04-26 2024-10-11 00:38:27.000 1976-04-26 2024-10-11 00:38:27 +2308 2308 2309 230.8 461.6 2308 1976-04-27 2024-10-11 00:38:28.000 1976-04-27 2024-10-11 00:38:28 +2309 2309 2310 230.9 461.8 2309 1976-04-28 2024-10-11 00:38:29.000 1976-04-28 2024-10-11 00:38:29 +2311 2311 2312 231.1 462.20000000000005 2311 1976-04-30 2024-10-11 00:38:31.000 1976-04-30 2024-10-11 00:38:31 +2312 2312 2313 231.2 462.40000000000003 2312 1976-05-01 2024-10-11 00:38:32.000 1976-05-01 2024-10-11 00:38:32 +2313 2313 2314 231.3 462.6 2313 1976-05-02 2024-10-11 00:38:33.000 1976-05-02 2024-10-11 00:38:33 +2314 2314 2315 231.4 462.8 2314 1976-05-03 2024-10-11 00:38:34.000 1976-05-03 2024-10-11 00:38:34 +2316 2316 2317 231.6 463.20000000000005 2316 1976-05-05 2024-10-11 00:38:36.000 1976-05-05 2024-10-11 00:38:36 +2317 2317 2318 231.7 463.40000000000003 2317 1976-05-06 2024-10-11 00:38:37.000 1976-05-06 2024-10-11 00:38:37 +2318 2318 2319 231.8 463.6 2318 1976-05-07 2024-10-11 00:38:38.000 1976-05-07 2024-10-11 00:38:38 +2319 2319 2320 231.9 463.8 2319 1976-05-08 2024-10-11 00:38:39.000 1976-05-08 2024-10-11 00:38:39 +2321 2321 2322 232.1 464.20000000000005 2321 1976-05-10 2024-10-11 00:38:41.000 1976-05-10 2024-10-11 00:38:41 +2322 2322 2323 232.2 464.40000000000003 2322 1976-05-11 2024-10-11 00:38:42.000 1976-05-11 2024-10-11 00:38:42 +2323 2323 2324 232.3 464.6 2323 1976-05-12 2024-10-11 00:38:43.000 1976-05-12 2024-10-11 00:38:43 +2324 2324 2325 232.4 464.8 2324 1976-05-13 2024-10-11 00:38:44.000 1976-05-13 2024-10-11 00:38:44 +2326 2326 2327 232.6 465.20000000000005 2326 1976-05-15 2024-10-11 00:38:46.000 1976-05-15 2024-10-11 00:38:46 +2327 2327 2328 232.7 465.40000000000003 2327 1976-05-16 2024-10-11 00:38:47.000 1976-05-16 2024-10-11 00:38:47 +2328 2328 2329 232.8 465.6 2328 1976-05-17 2024-10-11 00:38:48.000 1976-05-17 2024-10-11 00:38:48 +2329 2329 2330 232.9 465.8 2329 1976-05-18 2024-10-11 00:38:49.000 1976-05-18 2024-10-11 00:38:49 +2331 2331 2332 233.1 466.20000000000005 2331 1976-05-20 2024-10-11 00:38:51.000 1976-05-20 2024-10-11 00:38:51 +2332 2332 2333 233.2 466.40000000000003 2332 1976-05-21 2024-10-11 00:38:52.000 1976-05-21 2024-10-11 00:38:52 +2333 2333 2334 233.3 466.6 2333 1976-05-22 2024-10-11 00:38:53.000 1976-05-22 2024-10-11 00:38:53 +2334 2334 2335 233.4 466.8 2334 1976-05-23 2024-10-11 00:38:54.000 1976-05-23 2024-10-11 00:38:54 +2336 2336 2337 233.6 467.20000000000005 2336 1976-05-25 2024-10-11 00:38:56.000 1976-05-25 2024-10-11 00:38:56 +2337 2337 2338 233.7 467.40000000000003 2337 1976-05-26 2024-10-11 00:38:57.000 1976-05-26 2024-10-11 00:38:57 +2338 2338 2339 233.8 467.6 2338 1976-05-27 2024-10-11 00:38:58.000 1976-05-27 2024-10-11 00:38:58 +2339 2339 2340 233.9 467.8 2339 1976-05-28 2024-10-11 00:38:59.000 1976-05-28 2024-10-11 00:38:59 +2341 2341 2342 234.1 468.20000000000005 2341 1976-05-30 2024-10-11 00:39:01.000 1976-05-30 2024-10-11 00:39:01 +2342 2342 2343 234.2 468.40000000000003 2342 1976-05-31 2024-10-11 00:39:02.000 1976-05-31 2024-10-11 00:39:02 +2343 2343 2344 234.3 468.6 2343 1976-06-01 2024-10-11 00:39:03.000 1976-06-01 2024-10-11 00:39:03 +2344 2344 2345 234.4 468.8 2344 1976-06-02 2024-10-11 00:39:04.000 1976-06-02 2024-10-11 00:39:04 +2346 2346 2347 234.6 469.20000000000005 2346 1976-06-04 2024-10-11 00:39:06.000 1976-06-04 2024-10-11 00:39:06 +2347 2347 2348 234.7 469.40000000000003 2347 1976-06-05 2024-10-11 00:39:07.000 1976-06-05 2024-10-11 00:39:07 +2348 2348 2349 234.8 469.6 2348 1976-06-06 2024-10-11 00:39:08.000 1976-06-06 2024-10-11 00:39:08 +2349 2349 2350 234.9 469.8 2349 1976-06-07 2024-10-11 00:39:09.000 1976-06-07 2024-10-11 00:39:09 +2351 2351 2352 235.1 470.20000000000005 2351 1976-06-09 2024-10-11 00:39:11.000 1976-06-09 2024-10-11 00:39:11 +2352 2352 2353 235.2 470.40000000000003 2352 1976-06-10 2024-10-11 00:39:12.000 1976-06-10 2024-10-11 00:39:12 +2353 2353 2354 235.3 470.6 2353 1976-06-11 2024-10-11 00:39:13.000 1976-06-11 2024-10-11 00:39:13 +2354 2354 2355 235.4 470.8 2354 1976-06-12 2024-10-11 00:39:14.000 1976-06-12 2024-10-11 00:39:14 +2356 2356 2357 235.6 471.20000000000005 2356 1976-06-14 2024-10-11 00:39:16.000 1976-06-14 2024-10-11 00:39:16 +2357 2357 2358 235.7 471.40000000000003 2357 1976-06-15 2024-10-11 00:39:17.000 1976-06-15 2024-10-11 00:39:17 +2358 2358 2359 235.8 471.6 2358 1976-06-16 2024-10-11 00:39:18.000 1976-06-16 2024-10-11 00:39:18 +2359 2359 2360 235.9 471.8 2359 1976-06-17 2024-10-11 00:39:19.000 1976-06-17 2024-10-11 00:39:19 +2361 2361 2362 236.1 472.20000000000005 2361 1976-06-19 2024-10-11 00:39:21.000 1976-06-19 2024-10-11 00:39:21 +2362 2362 2363 236.2 472.40000000000003 2362 1976-06-20 2024-10-11 00:39:22.000 1976-06-20 2024-10-11 00:39:22 +2363 2363 2364 236.3 472.6 2363 1976-06-21 2024-10-11 00:39:23.000 1976-06-21 2024-10-11 00:39:23 +2364 2364 2365 236.4 472.8 2364 1976-06-22 2024-10-11 00:39:24.000 1976-06-22 2024-10-11 00:39:24 +2366 2366 2367 236.6 473.20000000000005 2366 1976-06-24 2024-10-11 00:39:26.000 1976-06-24 2024-10-11 00:39:26 +2367 2367 2368 236.7 473.40000000000003 2367 1976-06-25 2024-10-11 00:39:27.000 1976-06-25 2024-10-11 00:39:27 +2368 2368 2369 236.8 473.6 2368 1976-06-26 2024-10-11 00:39:28.000 1976-06-26 2024-10-11 00:39:28 +2369 2369 2370 236.9 473.8 2369 1976-06-27 2024-10-11 00:39:29.000 1976-06-27 2024-10-11 00:39:29 +2371 2371 2372 237.1 474.20000000000005 2371 1976-06-29 2024-10-11 00:39:31.000 1976-06-29 2024-10-11 00:39:31 +2372 2372 2373 237.2 474.40000000000003 2372 1976-06-30 2024-10-11 00:39:32.000 1976-06-30 2024-10-11 00:39:32 +2373 2373 2374 237.3 474.6 2373 1976-07-01 2024-10-11 00:39:33.000 1976-07-01 2024-10-11 00:39:33 +2374 2374 2375 237.4 474.8 2374 1976-07-02 2024-10-11 00:39:34.000 1976-07-02 2024-10-11 00:39:34 +2376 2376 2377 237.6 475.20000000000005 2376 1976-07-04 2024-10-11 00:39:36.000 1976-07-04 2024-10-11 00:39:36 +2377 2377 2378 237.7 475.40000000000003 2377 1976-07-05 2024-10-11 00:39:37.000 1976-07-05 2024-10-11 00:39:37 +2378 2378 2379 237.8 475.6 2378 1976-07-06 2024-10-11 00:39:38.000 1976-07-06 2024-10-11 00:39:38 +2379 2379 2380 237.9 475.8 2379 1976-07-07 2024-10-11 00:39:39.000 1976-07-07 2024-10-11 00:39:39 +2381 2381 2382 238.1 476.20000000000005 2381 1976-07-09 2024-10-11 00:39:41.000 1976-07-09 2024-10-11 00:39:41 +2382 2382 2383 238.2 476.40000000000003 2382 1976-07-10 2024-10-11 00:39:42.000 1976-07-10 2024-10-11 00:39:42 +2383 2383 2384 238.3 476.6 2383 1976-07-11 2024-10-11 00:39:43.000 1976-07-11 2024-10-11 00:39:43 +2384 2384 2385 238.4 476.8 2384 1976-07-12 2024-10-11 00:39:44.000 1976-07-12 2024-10-11 00:39:44 +2386 2386 2387 238.6 477.20000000000005 2386 1976-07-14 2024-10-11 00:39:46.000 1976-07-14 2024-10-11 00:39:46 +2387 2387 2388 238.7 477.40000000000003 2387 1976-07-15 2024-10-11 00:39:47.000 1976-07-15 2024-10-11 00:39:47 +2388 2388 2389 238.8 477.6 2388 1976-07-16 2024-10-11 00:39:48.000 1976-07-16 2024-10-11 00:39:48 +2389 2389 2390 238.9 477.8 2389 1976-07-17 2024-10-11 00:39:49.000 1976-07-17 2024-10-11 00:39:49 +2391 2391 2392 239.1 478.20000000000005 2391 1976-07-19 2024-10-11 00:39:51.000 1976-07-19 2024-10-11 00:39:51 +2392 2392 2393 239.2 478.40000000000003 2392 1976-07-20 2024-10-11 00:39:52.000 1976-07-20 2024-10-11 00:39:52 +2393 2393 2394 239.3 478.6 2393 1976-07-21 2024-10-11 00:39:53.000 1976-07-21 2024-10-11 00:39:53 +2394 2394 2395 239.4 478.8 2394 1976-07-22 2024-10-11 00:39:54.000 1976-07-22 2024-10-11 00:39:54 +2396 2396 2397 239.6 479.20000000000005 2396 1976-07-24 2024-10-11 00:39:56.000 1976-07-24 2024-10-11 00:39:56 +2397 2397 2398 239.7 479.40000000000003 2397 1976-07-25 2024-10-11 00:39:57.000 1976-07-25 2024-10-11 00:39:57 +2398 2398 2399 239.8 479.6 2398 1976-07-26 2024-10-11 00:39:58.000 1976-07-26 2024-10-11 00:39:58 +2399 2399 2400 239.9 479.8 2399 1976-07-27 2024-10-11 00:39:59.000 1976-07-27 2024-10-11 00:39:59 +2401 2401 2402 240.1 480.20000000000005 2401 1976-07-29 2024-10-11 00:40:01.000 1976-07-29 2024-10-11 00:40:01 +2402 2402 2403 240.2 480.40000000000003 2402 1976-07-30 2024-10-11 00:40:02.000 1976-07-30 2024-10-11 00:40:02 +2403 2403 2404 240.3 480.6 2403 1976-07-31 2024-10-11 00:40:03.000 1976-07-31 2024-10-11 00:40:03 +2404 2404 2405 240.4 480.8 2404 1976-08-01 2024-10-11 00:40:04.000 1976-08-01 2024-10-11 00:40:04 +2406 2406 2407 240.6 481.20000000000005 2406 1976-08-03 2024-10-11 00:40:06.000 1976-08-03 2024-10-11 00:40:06 +2407 2407 2408 240.7 481.40000000000003 2407 1976-08-04 2024-10-11 00:40:07.000 1976-08-04 2024-10-11 00:40:07 +2408 2408 2409 240.8 481.6 2408 1976-08-05 2024-10-11 00:40:08.000 1976-08-05 2024-10-11 00:40:08 +2409 2409 2410 240.9 481.8 2409 1976-08-06 2024-10-11 00:40:09.000 1976-08-06 2024-10-11 00:40:09 +2411 2411 2412 241.1 482.20000000000005 2411 1976-08-08 2024-10-11 00:40:11.000 1976-08-08 2024-10-11 00:40:11 +2412 2412 2413 241.2 482.40000000000003 2412 1976-08-09 2024-10-11 00:40:12.000 1976-08-09 2024-10-11 00:40:12 +2413 2413 2414 241.3 482.6 2413 1976-08-10 2024-10-11 00:40:13.000 1976-08-10 2024-10-11 00:40:13 +2414 2414 2415 241.4 482.8 2414 1976-08-11 2024-10-11 00:40:14.000 1976-08-11 2024-10-11 00:40:14 +2416 2416 2417 241.6 483.20000000000005 2416 1976-08-13 2024-10-11 00:40:16.000 1976-08-13 2024-10-11 00:40:16 +2417 2417 2418 241.7 483.40000000000003 2417 1976-08-14 2024-10-11 00:40:17.000 1976-08-14 2024-10-11 00:40:17 +2418 2418 2419 241.8 483.6 2418 1976-08-15 2024-10-11 00:40:18.000 1976-08-15 2024-10-11 00:40:18 +2419 2419 2420 241.9 483.8 2419 1976-08-16 2024-10-11 00:40:19.000 1976-08-16 2024-10-11 00:40:19 +2421 2421 2422 242.1 484.20000000000005 2421 1976-08-18 2024-10-11 00:40:21.000 1976-08-18 2024-10-11 00:40:21 +2422 2422 2423 242.2 484.40000000000003 2422 1976-08-19 2024-10-11 00:40:22.000 1976-08-19 2024-10-11 00:40:22 +2423 2423 2424 242.3 484.6 2423 1976-08-20 2024-10-11 00:40:23.000 1976-08-20 2024-10-11 00:40:23 +2424 2424 2425 242.4 484.8 2424 1976-08-21 2024-10-11 00:40:24.000 1976-08-21 2024-10-11 00:40:24 +2426 2426 2427 242.6 485.20000000000005 2426 1976-08-23 2024-10-11 00:40:26.000 1976-08-23 2024-10-11 00:40:26 +2427 2427 2428 242.7 485.40000000000003 2427 1976-08-24 2024-10-11 00:40:27.000 1976-08-24 2024-10-11 00:40:27 +2428 2428 2429 242.8 485.6 2428 1976-08-25 2024-10-11 00:40:28.000 1976-08-25 2024-10-11 00:40:28 +2429 2429 2430 242.9 485.8 2429 1976-08-26 2024-10-11 00:40:29.000 1976-08-26 2024-10-11 00:40:29 +2431 2431 2432 243.1 486.20000000000005 2431 1976-08-28 2024-10-11 00:40:31.000 1976-08-28 2024-10-11 00:40:31 +2432 2432 2433 243.2 486.40000000000003 2432 1976-08-29 2024-10-11 00:40:32.000 1976-08-29 2024-10-11 00:40:32 +2433 2433 2434 243.3 486.6 2433 1976-08-30 2024-10-11 00:40:33.000 1976-08-30 2024-10-11 00:40:33 +2434 2434 2435 243.4 486.8 2434 1976-08-31 2024-10-11 00:40:34.000 1976-08-31 2024-10-11 00:40:34 +2436 2436 2437 243.6 487.20000000000005 2436 1976-09-02 2024-10-11 00:40:36.000 1976-09-02 2024-10-11 00:40:36 +2437 2437 2438 243.7 487.40000000000003 2437 1976-09-03 2024-10-11 00:40:37.000 1976-09-03 2024-10-11 00:40:37 +2438 2438 2439 243.8 487.6 2438 1976-09-04 2024-10-11 00:40:38.000 1976-09-04 2024-10-11 00:40:38 +2439 2439 2440 243.9 487.8 2439 1976-09-05 2024-10-11 00:40:39.000 1976-09-05 2024-10-11 00:40:39 +2441 2441 2442 244.1 488.20000000000005 2441 1976-09-07 2024-10-11 00:40:41.000 1976-09-07 2024-10-11 00:40:41 +2442 2442 2443 244.2 488.40000000000003 2442 1976-09-08 2024-10-11 00:40:42.000 1976-09-08 2024-10-11 00:40:42 +2443 2443 2444 244.3 488.6 2443 1976-09-09 2024-10-11 00:40:43.000 1976-09-09 2024-10-11 00:40:43 +2444 2444 2445 244.4 488.8 2444 1976-09-10 2024-10-11 00:40:44.000 1976-09-10 2024-10-11 00:40:44 +2446 2446 2447 244.6 489.20000000000005 2446 1976-09-12 2024-10-11 00:40:46.000 1976-09-12 2024-10-11 00:40:46 +2447 2447 2448 244.7 489.40000000000003 2447 1976-09-13 2024-10-11 00:40:47.000 1976-09-13 2024-10-11 00:40:47 +2448 2448 2449 244.8 489.6 2448 1976-09-14 2024-10-11 00:40:48.000 1976-09-14 2024-10-11 00:40:48 +2449 2449 2450 244.9 489.8 2449 1976-09-15 2024-10-11 00:40:49.000 1976-09-15 2024-10-11 00:40:49 +2451 2451 2452 245.1 490.20000000000005 2451 1976-09-17 2024-10-11 00:40:51.000 1976-09-17 2024-10-11 00:40:51 +2452 2452 2453 245.2 490.40000000000003 2452 1976-09-18 2024-10-11 00:40:52.000 1976-09-18 2024-10-11 00:40:52 +2453 2453 2454 245.3 490.6 2453 1976-09-19 2024-10-11 00:40:53.000 1976-09-19 2024-10-11 00:40:53 +2454 2454 2455 245.4 490.8 2454 1976-09-20 2024-10-11 00:40:54.000 1976-09-20 2024-10-11 00:40:54 +2456 2456 2457 245.6 491.20000000000005 2456 1976-09-22 2024-10-11 00:40:56.000 1976-09-22 2024-10-11 00:40:56 +2457 2457 2458 245.7 491.40000000000003 2457 1976-09-23 2024-10-11 00:40:57.000 1976-09-23 2024-10-11 00:40:57 +2458 2458 2459 245.8 491.6 2458 1976-09-24 2024-10-11 00:40:58.000 1976-09-24 2024-10-11 00:40:58 +2459 2459 2460 245.9 491.8 2459 1976-09-25 2024-10-11 00:40:59.000 1976-09-25 2024-10-11 00:40:59 +2461 2461 2462 246.1 492.20000000000005 2461 1976-09-27 2024-10-11 00:41:01.000 1976-09-27 2024-10-11 00:41:01 +2462 2462 2463 246.2 492.40000000000003 2462 1976-09-28 2024-10-11 00:41:02.000 1976-09-28 2024-10-11 00:41:02 +2463 2463 2464 246.3 492.6 2463 1976-09-29 2024-10-11 00:41:03.000 1976-09-29 2024-10-11 00:41:03 +2464 2464 2465 246.4 492.8 2464 1976-09-30 2024-10-11 00:41:04.000 1976-09-30 2024-10-11 00:41:04 +2466 2466 2467 246.6 493.20000000000005 2466 1976-10-02 2024-10-11 00:41:06.000 1976-10-02 2024-10-11 00:41:06 +2467 2467 2468 246.7 493.40000000000003 2467 1976-10-03 2024-10-11 00:41:07.000 1976-10-03 2024-10-11 00:41:07 +2468 2468 2469 246.8 493.6 2468 1976-10-04 2024-10-11 00:41:08.000 1976-10-04 2024-10-11 00:41:08 +2469 2469 2470 246.9 493.8 2469 1976-10-05 2024-10-11 00:41:09.000 1976-10-05 2024-10-11 00:41:09 +2471 2471 2472 247.1 494.20000000000005 2471 1976-10-07 2024-10-11 00:41:11.000 1976-10-07 2024-10-11 00:41:11 +2472 2472 2473 247.2 494.40000000000003 2472 1976-10-08 2024-10-11 00:41:12.000 1976-10-08 2024-10-11 00:41:12 +2473 2473 2474 247.3 494.6 2473 1976-10-09 2024-10-11 00:41:13.000 1976-10-09 2024-10-11 00:41:13 +2474 2474 2475 247.4 494.8 2474 1976-10-10 2024-10-11 00:41:14.000 1976-10-10 2024-10-11 00:41:14 +2476 2476 2477 247.6 495.20000000000005 2476 1976-10-12 2024-10-11 00:41:16.000 1976-10-12 2024-10-11 00:41:16 +2477 2477 2478 247.7 495.40000000000003 2477 1976-10-13 2024-10-11 00:41:17.000 1976-10-13 2024-10-11 00:41:17 +2478 2478 2479 247.8 495.6 2478 1976-10-14 2024-10-11 00:41:18.000 1976-10-14 2024-10-11 00:41:18 +2479 2479 2480 247.9 495.8 2479 1976-10-15 2024-10-11 00:41:19.000 1976-10-15 2024-10-11 00:41:19 +2481 2481 2482 248.1 496.20000000000005 2481 1976-10-17 2024-10-11 00:41:21.000 1976-10-17 2024-10-11 00:41:21 +2482 2482 2483 248.2 496.40000000000003 2482 1976-10-18 2024-10-11 00:41:22.000 1976-10-18 2024-10-11 00:41:22 +2483 2483 2484 248.3 496.6 2483 1976-10-19 2024-10-11 00:41:23.000 1976-10-19 2024-10-11 00:41:23 +2484 2484 2485 248.4 496.8 2484 1976-10-20 2024-10-11 00:41:24.000 1976-10-20 2024-10-11 00:41:24 +2486 2486 2487 248.6 497.20000000000005 2486 1976-10-22 2024-10-11 00:41:26.000 1976-10-22 2024-10-11 00:41:26 +2487 2487 2488 248.7 497.40000000000003 2487 1976-10-23 2024-10-11 00:41:27.000 1976-10-23 2024-10-11 00:41:27 +2488 2488 2489 248.8 497.6 2488 1976-10-24 2024-10-11 00:41:28.000 1976-10-24 2024-10-11 00:41:28 +2489 2489 2490 248.9 497.8 2489 1976-10-25 2024-10-11 00:41:29.000 1976-10-25 2024-10-11 00:41:29 +2491 2491 2492 249.1 498.20000000000005 2491 1976-10-27 2024-10-11 00:41:31.000 1976-10-27 2024-10-11 00:41:31 +2492 2492 2493 249.2 498.40000000000003 2492 1976-10-28 2024-10-11 00:41:32.000 1976-10-28 2024-10-11 00:41:32 +2493 2493 2494 249.3 498.6 2493 1976-10-29 2024-10-11 00:41:33.000 1976-10-29 2024-10-11 00:41:33 +2494 2494 2495 249.4 498.8 2494 1976-10-30 2024-10-11 00:41:34.000 1976-10-30 2024-10-11 00:41:34 +2496 2496 2497 249.6 499.20000000000005 2496 1976-11-01 2024-10-11 00:41:36.000 1976-11-01 2024-10-11 00:41:36 +2497 2497 2498 249.7 499.40000000000003 2497 1976-11-02 2024-10-11 00:41:37.000 1976-11-02 2024-10-11 00:41:37 +2498 2498 2499 249.8 499.6 2498 1976-11-03 2024-10-11 00:41:38.000 1976-11-03 2024-10-11 00:41:38 +2499 2499 2500 249.9 499.8 2499 1976-11-04 2024-10-11 00:41:39.000 1976-11-04 2024-10-11 00:41:39 +2501 2501 2502 250.1 500.20000000000005 2501 1976-11-06 2024-10-11 00:41:41.000 1976-11-06 2024-10-11 00:41:41 +2502 2502 2503 250.2 500.40000000000003 2502 1976-11-07 2024-10-11 00:41:42.000 1976-11-07 2024-10-11 00:41:42 +2503 2503 2504 250.3 500.6 2503 1976-11-08 2024-10-11 00:41:43.000 1976-11-08 2024-10-11 00:41:43 +2504 2504 2505 250.4 500.8 2504 1976-11-09 2024-10-11 00:41:44.000 1976-11-09 2024-10-11 00:41:44 +2506 2506 2507 250.6 501.20000000000005 2506 1976-11-11 2024-10-11 00:41:46.000 1976-11-11 2024-10-11 00:41:46 +2507 2507 2508 250.7 501.40000000000003 2507 1976-11-12 2024-10-11 00:41:47.000 1976-11-12 2024-10-11 00:41:47 +2508 2508 2509 250.8 501.6 2508 1976-11-13 2024-10-11 00:41:48.000 1976-11-13 2024-10-11 00:41:48 +2509 2509 2510 250.9 501.8 2509 1976-11-14 2024-10-11 00:41:49.000 1976-11-14 2024-10-11 00:41:49 +2511 2511 2512 251.1 502.20000000000005 2511 1976-11-16 2024-10-11 00:41:51.000 1976-11-16 2024-10-11 00:41:51 +2512 2512 2513 251.2 502.40000000000003 2512 1976-11-17 2024-10-11 00:41:52.000 1976-11-17 2024-10-11 00:41:52 +2513 2513 2514 251.3 502.6 2513 1976-11-18 2024-10-11 00:41:53.000 1976-11-18 2024-10-11 00:41:53 +2514 2514 2515 251.4 502.8 2514 1976-11-19 2024-10-11 00:41:54.000 1976-11-19 2024-10-11 00:41:54 +2516 2516 2517 251.6 503.20000000000005 2516 1976-11-21 2024-10-11 00:41:56.000 1976-11-21 2024-10-11 00:41:56 +2517 2517 2518 251.7 503.40000000000003 2517 1976-11-22 2024-10-11 00:41:57.000 1976-11-22 2024-10-11 00:41:57 +2518 2518 2519 251.8 503.6 2518 1976-11-23 2024-10-11 00:41:58.000 1976-11-23 2024-10-11 00:41:58 +2519 2519 2520 251.9 503.8 2519 1976-11-24 2024-10-11 00:41:59.000 1976-11-24 2024-10-11 00:41:59 +2521 2521 2522 252.1 504.20000000000005 2521 1976-11-26 2024-10-11 00:42:01.000 1976-11-26 2024-10-11 00:42:01 +2522 2522 2523 252.2 504.40000000000003 2522 1976-11-27 2024-10-11 00:42:02.000 1976-11-27 2024-10-11 00:42:02 +2523 2523 2524 252.3 504.6 2523 1976-11-28 2024-10-11 00:42:03.000 1976-11-28 2024-10-11 00:42:03 +2524 2524 2525 252.4 504.8 2524 1976-11-29 2024-10-11 00:42:04.000 1976-11-29 2024-10-11 00:42:04 +2526 2526 2527 252.6 505.20000000000005 2526 1976-12-01 2024-10-11 00:42:06.000 1976-12-01 2024-10-11 00:42:06 +2527 2527 2528 252.7 505.40000000000003 2527 1976-12-02 2024-10-11 00:42:07.000 1976-12-02 2024-10-11 00:42:07 +2528 2528 2529 252.8 505.6 2528 1976-12-03 2024-10-11 00:42:08.000 1976-12-03 2024-10-11 00:42:08 +2529 2529 2530 252.9 505.8 2529 1976-12-04 2024-10-11 00:42:09.000 1976-12-04 2024-10-11 00:42:09 +2531 2531 2532 253.1 506.20000000000005 2531 1976-12-06 2024-10-11 00:42:11.000 1976-12-06 2024-10-11 00:42:11 +2532 2532 2533 253.2 506.40000000000003 2532 1976-12-07 2024-10-11 00:42:12.000 1976-12-07 2024-10-11 00:42:12 +2533 2533 2534 253.3 506.6 2533 1976-12-08 2024-10-11 00:42:13.000 1976-12-08 2024-10-11 00:42:13 +2534 2534 2535 253.4 506.8 2534 1976-12-09 2024-10-11 00:42:14.000 1976-12-09 2024-10-11 00:42:14 +2536 2536 2537 253.6 507.20000000000005 2536 1976-12-11 2024-10-11 00:42:16.000 1976-12-11 2024-10-11 00:42:16 +2537 2537 2538 253.7 507.40000000000003 2537 1976-12-12 2024-10-11 00:42:17.000 1976-12-12 2024-10-11 00:42:17 +2538 2538 2539 253.8 507.6 2538 1976-12-13 2024-10-11 00:42:18.000 1976-12-13 2024-10-11 00:42:18 +2539 2539 2540 253.9 507.8 2539 1976-12-14 2024-10-11 00:42:19.000 1976-12-14 2024-10-11 00:42:19 +2541 2541 2542 254.1 508.20000000000005 2541 1976-12-16 2024-10-11 00:42:21.000 1976-12-16 2024-10-11 00:42:21 +2542 2542 2543 254.2 508.40000000000003 2542 1976-12-17 2024-10-11 00:42:22.000 1976-12-17 2024-10-11 00:42:22 +2543 2543 2544 254.3 508.6 2543 1976-12-18 2024-10-11 00:42:23.000 1976-12-18 2024-10-11 00:42:23 +2544 2544 2545 254.4 508.8 2544 1976-12-19 2024-10-11 00:42:24.000 1976-12-19 2024-10-11 00:42:24 +2546 2546 2547 254.6 509.20000000000005 2546 1976-12-21 2024-10-11 00:42:26.000 1976-12-21 2024-10-11 00:42:26 +2547 2547 2548 254.7 509.40000000000003 2547 1976-12-22 2024-10-11 00:42:27.000 1976-12-22 2024-10-11 00:42:27 +2548 2548 2549 254.8 509.6 2548 1976-12-23 2024-10-11 00:42:28.000 1976-12-23 2024-10-11 00:42:28 +2549 2549 2550 254.9 509.8 2549 1976-12-24 2024-10-11 00:42:29.000 1976-12-24 2024-10-11 00:42:29 +2551 2551 2552 255.1 510.20000000000005 2551 1976-12-26 2024-10-11 00:42:31.000 1976-12-26 2024-10-11 00:42:31 +2552 2552 2553 255.2 510.40000000000003 2552 1976-12-27 2024-10-11 00:42:32.000 1976-12-27 2024-10-11 00:42:32 +2553 2553 2554 255.3 510.6 2553 1976-12-28 2024-10-11 00:42:33.000 1976-12-28 2024-10-11 00:42:33 +2554 2554 2555 255.4 510.8 2554 1976-12-29 2024-10-11 00:42:34.000 1976-12-29 2024-10-11 00:42:34 +2556 2556 2557 255.6 511.20000000000005 2556 1976-12-31 2024-10-11 00:42:36.000 1976-12-31 2024-10-11 00:42:36 +2557 2557 2558 255.7 511.40000000000003 2557 1977-01-01 2024-10-11 00:42:37.000 1977-01-01 2024-10-11 00:42:37 +2558 2558 2559 255.8 511.6 2558 1977-01-02 2024-10-11 00:42:38.000 1977-01-02 2024-10-11 00:42:38 +2559 2559 2560 255.9 511.8 2559 1977-01-03 2024-10-11 00:42:39.000 1977-01-03 2024-10-11 00:42:39 +2561 2561 2562 256.1 512.2 2561 1977-01-05 2024-10-11 00:42:41.000 1977-01-05 2024-10-11 00:42:41 +2562 2562 2563 256.2 512.4 2562 1977-01-06 2024-10-11 00:42:42.000 1977-01-06 2024-10-11 00:42:42 +2563 2563 2564 256.3 512.6 2563 1977-01-07 2024-10-11 00:42:43.000 1977-01-07 2024-10-11 00:42:43 +2564 2564 2565 256.4 512.8000000000001 2564 1977-01-08 2024-10-11 00:42:44.000 1977-01-08 2024-10-11 00:42:44 +2566 2566 2567 256.6 513.2 2566 1977-01-10 2024-10-11 00:42:46.000 1977-01-10 2024-10-11 00:42:46 +2567 2567 2568 256.7 513.4 2567 1977-01-11 2024-10-11 00:42:47.000 1977-01-11 2024-10-11 00:42:47 +2568 2568 2569 256.8 513.6 2568 1977-01-12 2024-10-11 00:42:48.000 1977-01-12 2024-10-11 00:42:48 +2569 2569 2570 256.9 513.8000000000001 2569 1977-01-13 2024-10-11 00:42:49.000 1977-01-13 2024-10-11 00:42:49 +2571 2571 2572 257.1 514.2 2571 1977-01-15 2024-10-11 00:42:51.000 1977-01-15 2024-10-11 00:42:51 +2572 2572 2573 257.2 514.4 2572 1977-01-16 2024-10-11 00:42:52.000 1977-01-16 2024-10-11 00:42:52 +2573 2573 2574 257.3 514.6 2573 1977-01-17 2024-10-11 00:42:53.000 1977-01-17 2024-10-11 00:42:53 +2574 2574 2575 257.4 514.8000000000001 2574 1977-01-18 2024-10-11 00:42:54.000 1977-01-18 2024-10-11 00:42:54 +2576 2576 2577 257.6 515.2 2576 1977-01-20 2024-10-11 00:42:56.000 1977-01-20 2024-10-11 00:42:56 +2577 2577 2578 257.7 515.4 2577 1977-01-21 2024-10-11 00:42:57.000 1977-01-21 2024-10-11 00:42:57 +2578 2578 2579 257.8 515.6 2578 1977-01-22 2024-10-11 00:42:58.000 1977-01-22 2024-10-11 00:42:58 +2579 2579 2580 257.9 515.8000000000001 2579 1977-01-23 2024-10-11 00:42:59.000 1977-01-23 2024-10-11 00:42:59 +2581 2581 2582 258.1 516.2 2581 1977-01-25 2024-10-11 00:43:01.000 1977-01-25 2024-10-11 00:43:01 +2582 2582 2583 258.2 516.4 2582 1977-01-26 2024-10-11 00:43:02.000 1977-01-26 2024-10-11 00:43:02 +2583 2583 2584 258.3 516.6 2583 1977-01-27 2024-10-11 00:43:03.000 1977-01-27 2024-10-11 00:43:03 +2584 2584 2585 258.4 516.8000000000001 2584 1977-01-28 2024-10-11 00:43:04.000 1977-01-28 2024-10-11 00:43:04 +2586 2586 2587 258.6 517.2 2586 1977-01-30 2024-10-11 00:43:06.000 1977-01-30 2024-10-11 00:43:06 +2587 2587 2588 258.7 517.4 2587 1977-01-31 2024-10-11 00:43:07.000 1977-01-31 2024-10-11 00:43:07 +2588 2588 2589 258.8 517.6 2588 1977-02-01 2024-10-11 00:43:08.000 1977-02-01 2024-10-11 00:43:08 +2589 2589 2590 258.9 517.8000000000001 2589 1977-02-02 2024-10-11 00:43:09.000 1977-02-02 2024-10-11 00:43:09 +2591 2591 2592 259.1 518.2 2591 1977-02-04 2024-10-11 00:43:11.000 1977-02-04 2024-10-11 00:43:11 +2592 2592 2593 259.2 518.4 2592 1977-02-05 2024-10-11 00:43:12.000 1977-02-05 2024-10-11 00:43:12 +2593 2593 2594 259.3 518.6 2593 1977-02-06 2024-10-11 00:43:13.000 1977-02-06 2024-10-11 00:43:13 +2594 2594 2595 259.4 518.8000000000001 2594 1977-02-07 2024-10-11 00:43:14.000 1977-02-07 2024-10-11 00:43:14 +2596 2596 2597 259.6 519.2 2596 1977-02-09 2024-10-11 00:43:16.000 1977-02-09 2024-10-11 00:43:16 +2597 2597 2598 259.7 519.4 2597 1977-02-10 2024-10-11 00:43:17.000 1977-02-10 2024-10-11 00:43:17 +2598 2598 2599 259.8 519.6 2598 1977-02-11 2024-10-11 00:43:18.000 1977-02-11 2024-10-11 00:43:18 +2599 2599 2600 259.9 519.8000000000001 2599 1977-02-12 2024-10-11 00:43:19.000 1977-02-12 2024-10-11 00:43:19 +2601 2601 2602 260.1 520.2 2601 1977-02-14 2024-10-11 00:43:21.000 1977-02-14 2024-10-11 00:43:21 +2602 2602 2603 260.2 520.4 2602 1977-02-15 2024-10-11 00:43:22.000 1977-02-15 2024-10-11 00:43:22 +2603 2603 2604 260.3 520.6 2603 1977-02-16 2024-10-11 00:43:23.000 1977-02-16 2024-10-11 00:43:23 +2604 2604 2605 260.4 520.8000000000001 2604 1977-02-17 2024-10-11 00:43:24.000 1977-02-17 2024-10-11 00:43:24 +2606 2606 2607 260.6 521.2 2606 1977-02-19 2024-10-11 00:43:26.000 1977-02-19 2024-10-11 00:43:26 +2607 2607 2608 260.7 521.4 2607 1977-02-20 2024-10-11 00:43:27.000 1977-02-20 2024-10-11 00:43:27 +2608 2608 2609 260.8 521.6 2608 1977-02-21 2024-10-11 00:43:28.000 1977-02-21 2024-10-11 00:43:28 +2609 2609 2610 260.9 521.8000000000001 2609 1977-02-22 2024-10-11 00:43:29.000 1977-02-22 2024-10-11 00:43:29 +2611 2611 2612 261.1 522.2 2611 1977-02-24 2024-10-11 00:43:31.000 1977-02-24 2024-10-11 00:43:31 +2612 2612 2613 261.2 522.4 2612 1977-02-25 2024-10-11 00:43:32.000 1977-02-25 2024-10-11 00:43:32 +2613 2613 2614 261.3 522.6 2613 1977-02-26 2024-10-11 00:43:33.000 1977-02-26 2024-10-11 00:43:33 +2614 2614 2615 261.4 522.8000000000001 2614 1977-02-27 2024-10-11 00:43:34.000 1977-02-27 2024-10-11 00:43:34 +2616 2616 2617 261.6 523.2 2616 1977-03-01 2024-10-11 00:43:36.000 1977-03-01 2024-10-11 00:43:36 +2617 2617 2618 261.7 523.4 2617 1977-03-02 2024-10-11 00:43:37.000 1977-03-02 2024-10-11 00:43:37 +2618 2618 2619 261.8 523.6 2618 1977-03-03 2024-10-11 00:43:38.000 1977-03-03 2024-10-11 00:43:38 +2619 2619 2620 261.9 523.8000000000001 2619 1977-03-04 2024-10-11 00:43:39.000 1977-03-04 2024-10-11 00:43:39 +2621 2621 2622 262.1 524.2 2621 1977-03-06 2024-10-11 00:43:41.000 1977-03-06 2024-10-11 00:43:41 +2622 2622 2623 262.2 524.4 2622 1977-03-07 2024-10-11 00:43:42.000 1977-03-07 2024-10-11 00:43:42 +2623 2623 2624 262.3 524.6 2623 1977-03-08 2024-10-11 00:43:43.000 1977-03-08 2024-10-11 00:43:43 +2624 2624 2625 262.4 524.8000000000001 2624 1977-03-09 2024-10-11 00:43:44.000 1977-03-09 2024-10-11 00:43:44 +2626 2626 2627 262.6 525.2 2626 1977-03-11 2024-10-11 00:43:46.000 1977-03-11 2024-10-11 00:43:46 +2627 2627 2628 262.7 525.4 2627 1977-03-12 2024-10-11 00:43:47.000 1977-03-12 2024-10-11 00:43:47 +2628 2628 2629 262.8 525.6 2628 1977-03-13 2024-10-11 00:43:48.000 1977-03-13 2024-10-11 00:43:48 +2629 2629 2630 262.9 525.8000000000001 2629 1977-03-14 2024-10-11 00:43:49.000 1977-03-14 2024-10-11 00:43:49 +2631 2631 2632 263.1 526.2 2631 1977-03-16 2024-10-11 00:43:51.000 1977-03-16 2024-10-11 00:43:51 +2632 2632 2633 263.2 526.4 2632 1977-03-17 2024-10-11 00:43:52.000 1977-03-17 2024-10-11 00:43:52 +2633 2633 2634 263.3 526.6 2633 1977-03-18 2024-10-11 00:43:53.000 1977-03-18 2024-10-11 00:43:53 +2634 2634 2635 263.4 526.8000000000001 2634 1977-03-19 2024-10-11 00:43:54.000 1977-03-19 2024-10-11 00:43:54 +2636 2636 2637 263.6 527.2 2636 1977-03-21 2024-10-11 00:43:56.000 1977-03-21 2024-10-11 00:43:56 +2637 2637 2638 263.7 527.4 2637 1977-03-22 2024-10-11 00:43:57.000 1977-03-22 2024-10-11 00:43:57 +2638 2638 2639 263.8 527.6 2638 1977-03-23 2024-10-11 00:43:58.000 1977-03-23 2024-10-11 00:43:58 +2639 2639 2640 263.9 527.8000000000001 2639 1977-03-24 2024-10-11 00:43:59.000 1977-03-24 2024-10-11 00:43:59 +2641 2641 2642 264.1 528.2 2641 1977-03-26 2024-10-11 00:44:01.000 1977-03-26 2024-10-11 00:44:01 +2642 2642 2643 264.2 528.4 2642 1977-03-27 2024-10-11 00:44:02.000 1977-03-27 2024-10-11 00:44:02 +2643 2643 2644 264.3 528.6 2643 1977-03-28 2024-10-11 00:44:03.000 1977-03-28 2024-10-11 00:44:03 +2644 2644 2645 264.4 528.8000000000001 2644 1977-03-29 2024-10-11 00:44:04.000 1977-03-29 2024-10-11 00:44:04 +2646 2646 2647 264.6 529.2 2646 1977-03-31 2024-10-11 00:44:06.000 1977-03-31 2024-10-11 00:44:06 +2647 2647 2648 264.7 529.4 2647 1977-04-01 2024-10-11 00:44:07.000 1977-04-01 2024-10-11 00:44:07 +2648 2648 2649 264.8 529.6 2648 1977-04-02 2024-10-11 00:44:08.000 1977-04-02 2024-10-11 00:44:08 +2649 2649 2650 264.9 529.8000000000001 2649 1977-04-03 2024-10-11 00:44:09.000 1977-04-03 2024-10-11 00:44:09 +2651 2651 2652 265.1 530.2 2651 1977-04-05 2024-10-11 00:44:11.000 1977-04-05 2024-10-11 00:44:11 +2652 2652 2653 265.2 530.4 2652 1977-04-06 2024-10-11 00:44:12.000 1977-04-06 2024-10-11 00:44:12 +2653 2653 2654 265.3 530.6 2653 1977-04-07 2024-10-11 00:44:13.000 1977-04-07 2024-10-11 00:44:13 +2654 2654 2655 265.4 530.8000000000001 2654 1977-04-08 2024-10-11 00:44:14.000 1977-04-08 2024-10-11 00:44:14 +2656 2656 2657 265.6 531.2 2656 1977-04-10 2024-10-11 00:44:16.000 1977-04-10 2024-10-11 00:44:16 +2657 2657 2658 265.7 531.4 2657 1977-04-11 2024-10-11 00:44:17.000 1977-04-11 2024-10-11 00:44:17 +2658 2658 2659 265.8 531.6 2658 1977-04-12 2024-10-11 00:44:18.000 1977-04-12 2024-10-11 00:44:18 +2659 2659 2660 265.9 531.8000000000001 2659 1977-04-13 2024-10-11 00:44:19.000 1977-04-13 2024-10-11 00:44:19 +2661 2661 2662 266.1 532.2 2661 1977-04-15 2024-10-11 00:44:21.000 1977-04-15 2024-10-11 00:44:21 +2662 2662 2663 266.2 532.4 2662 1977-04-16 2024-10-11 00:44:22.000 1977-04-16 2024-10-11 00:44:22 +2663 2663 2664 266.3 532.6 2663 1977-04-17 2024-10-11 00:44:23.000 1977-04-17 2024-10-11 00:44:23 +2664 2664 2665 266.4 532.8000000000001 2664 1977-04-18 2024-10-11 00:44:24.000 1977-04-18 2024-10-11 00:44:24 +2666 2666 2667 266.6 533.2 2666 1977-04-20 2024-10-11 00:44:26.000 1977-04-20 2024-10-11 00:44:26 +2667 2667 2668 266.7 533.4 2667 1977-04-21 2024-10-11 00:44:27.000 1977-04-21 2024-10-11 00:44:27 +2668 2668 2669 266.8 533.6 2668 1977-04-22 2024-10-11 00:44:28.000 1977-04-22 2024-10-11 00:44:28 +2669 2669 2670 266.9 533.8000000000001 2669 1977-04-23 2024-10-11 00:44:29.000 1977-04-23 2024-10-11 00:44:29 +2671 2671 2672 267.1 534.2 2671 1977-04-25 2024-10-11 00:44:31.000 1977-04-25 2024-10-11 00:44:31 +2672 2672 2673 267.2 534.4 2672 1977-04-26 2024-10-11 00:44:32.000 1977-04-26 2024-10-11 00:44:32 +2673 2673 2674 267.3 534.6 2673 1977-04-27 2024-10-11 00:44:33.000 1977-04-27 2024-10-11 00:44:33 +2674 2674 2675 267.4 534.8000000000001 2674 1977-04-28 2024-10-11 00:44:34.000 1977-04-28 2024-10-11 00:44:34 +2676 2676 2677 267.6 535.2 2676 1977-04-30 2024-10-11 00:44:36.000 1977-04-30 2024-10-11 00:44:36 +2677 2677 2678 267.7 535.4 2677 1977-05-01 2024-10-11 00:44:37.000 1977-05-01 2024-10-11 00:44:37 +2678 2678 2679 267.8 535.6 2678 1977-05-02 2024-10-11 00:44:38.000 1977-05-02 2024-10-11 00:44:38 +2679 2679 2680 267.9 535.8000000000001 2679 1977-05-03 2024-10-11 00:44:39.000 1977-05-03 2024-10-11 00:44:39 +2681 2681 2682 268.1 536.2 2681 1977-05-05 2024-10-11 00:44:41.000 1977-05-05 2024-10-11 00:44:41 +2682 2682 2683 268.2 536.4 2682 1977-05-06 2024-10-11 00:44:42.000 1977-05-06 2024-10-11 00:44:42 +2683 2683 2684 268.3 536.6 2683 1977-05-07 2024-10-11 00:44:43.000 1977-05-07 2024-10-11 00:44:43 +2684 2684 2685 268.4 536.8000000000001 2684 1977-05-08 2024-10-11 00:44:44.000 1977-05-08 2024-10-11 00:44:44 +2686 2686 2687 268.6 537.2 2686 1977-05-10 2024-10-11 00:44:46.000 1977-05-10 2024-10-11 00:44:46 +2687 2687 2688 268.7 537.4 2687 1977-05-11 2024-10-11 00:44:47.000 1977-05-11 2024-10-11 00:44:47 +2688 2688 2689 268.8 537.6 2688 1977-05-12 2024-10-11 00:44:48.000 1977-05-12 2024-10-11 00:44:48 +2689 2689 2690 268.9 537.8000000000001 2689 1977-05-13 2024-10-11 00:44:49.000 1977-05-13 2024-10-11 00:44:49 +2691 2691 2692 269.1 538.2 2691 1977-05-15 2024-10-11 00:44:51.000 1977-05-15 2024-10-11 00:44:51 +2692 2692 2693 269.2 538.4 2692 1977-05-16 2024-10-11 00:44:52.000 1977-05-16 2024-10-11 00:44:52 +2693 2693 2694 269.3 538.6 2693 1977-05-17 2024-10-11 00:44:53.000 1977-05-17 2024-10-11 00:44:53 +2694 2694 2695 269.4 538.8000000000001 2694 1977-05-18 2024-10-11 00:44:54.000 1977-05-18 2024-10-11 00:44:54 +2696 2696 2697 269.6 539.2 2696 1977-05-20 2024-10-11 00:44:56.000 1977-05-20 2024-10-11 00:44:56 +2697 2697 2698 269.7 539.4 2697 1977-05-21 2024-10-11 00:44:57.000 1977-05-21 2024-10-11 00:44:57 +2698 2698 2699 269.8 539.6 2698 1977-05-22 2024-10-11 00:44:58.000 1977-05-22 2024-10-11 00:44:58 +2699 2699 2700 269.9 539.8000000000001 2699 1977-05-23 2024-10-11 00:44:59.000 1977-05-23 2024-10-11 00:44:59 +2701 2701 2702 270.1 540.2 2701 1977-05-25 2024-10-11 00:45:01.000 1977-05-25 2024-10-11 00:45:01 +2702 2702 2703 270.2 540.4 2702 1977-05-26 2024-10-11 00:45:02.000 1977-05-26 2024-10-11 00:45:02 +2703 2703 2704 270.3 540.6 2703 1977-05-27 2024-10-11 00:45:03.000 1977-05-27 2024-10-11 00:45:03 +2704 2704 2705 270.4 540.8000000000001 2704 1977-05-28 2024-10-11 00:45:04.000 1977-05-28 2024-10-11 00:45:04 +2706 2706 2707 270.6 541.2 2706 1977-05-30 2024-10-11 00:45:06.000 1977-05-30 2024-10-11 00:45:06 +2707 2707 2708 270.7 541.4 2707 1977-05-31 2024-10-11 00:45:07.000 1977-05-31 2024-10-11 00:45:07 +2708 2708 2709 270.8 541.6 2708 1977-06-01 2024-10-11 00:45:08.000 1977-06-01 2024-10-11 00:45:08 +2709 2709 2710 270.9 541.8000000000001 2709 1977-06-02 2024-10-11 00:45:09.000 1977-06-02 2024-10-11 00:45:09 +2711 2711 2712 271.1 542.2 2711 1977-06-04 2024-10-11 00:45:11.000 1977-06-04 2024-10-11 00:45:11 +2712 2712 2713 271.2 542.4 2712 1977-06-05 2024-10-11 00:45:12.000 1977-06-05 2024-10-11 00:45:12 +2713 2713 2714 271.3 542.6 2713 1977-06-06 2024-10-11 00:45:13.000 1977-06-06 2024-10-11 00:45:13 +2714 2714 2715 271.4 542.8000000000001 2714 1977-06-07 2024-10-11 00:45:14.000 1977-06-07 2024-10-11 00:45:14 +2716 2716 2717 271.6 543.2 2716 1977-06-09 2024-10-11 00:45:16.000 1977-06-09 2024-10-11 00:45:16 +2717 2717 2718 271.7 543.4 2717 1977-06-10 2024-10-11 00:45:17.000 1977-06-10 2024-10-11 00:45:17 +2718 2718 2719 271.8 543.6 2718 1977-06-11 2024-10-11 00:45:18.000 1977-06-11 2024-10-11 00:45:18 +2719 2719 2720 271.9 543.8000000000001 2719 1977-06-12 2024-10-11 00:45:19.000 1977-06-12 2024-10-11 00:45:19 +2721 2721 2722 272.1 544.2 2721 1977-06-14 2024-10-11 00:45:21.000 1977-06-14 2024-10-11 00:45:21 +2722 2722 2723 272.2 544.4 2722 1977-06-15 2024-10-11 00:45:22.000 1977-06-15 2024-10-11 00:45:22 +2723 2723 2724 272.3 544.6 2723 1977-06-16 2024-10-11 00:45:23.000 1977-06-16 2024-10-11 00:45:23 +2724 2724 2725 272.4 544.8000000000001 2724 1977-06-17 2024-10-11 00:45:24.000 1977-06-17 2024-10-11 00:45:24 +2726 2726 2727 272.6 545.2 2726 1977-06-19 2024-10-11 00:45:26.000 1977-06-19 2024-10-11 00:45:26 +2727 2727 2728 272.7 545.4 2727 1977-06-20 2024-10-11 00:45:27.000 1977-06-20 2024-10-11 00:45:27 +2728 2728 2729 272.8 545.6 2728 1977-06-21 2024-10-11 00:45:28.000 1977-06-21 2024-10-11 00:45:28 +2729 2729 2730 272.9 545.8000000000001 2729 1977-06-22 2024-10-11 00:45:29.000 1977-06-22 2024-10-11 00:45:29 +2731 2731 2732 273.1 546.2 2731 1977-06-24 2024-10-11 00:45:31.000 1977-06-24 2024-10-11 00:45:31 +2732 2732 2733 273.2 546.4 2732 1977-06-25 2024-10-11 00:45:32.000 1977-06-25 2024-10-11 00:45:32 +2733 2733 2734 273.3 546.6 2733 1977-06-26 2024-10-11 00:45:33.000 1977-06-26 2024-10-11 00:45:33 +2734 2734 2735 273.4 546.8000000000001 2734 1977-06-27 2024-10-11 00:45:34.000 1977-06-27 2024-10-11 00:45:34 +2736 2736 2737 273.6 547.2 2736 1977-06-29 2024-10-11 00:45:36.000 1977-06-29 2024-10-11 00:45:36 +2737 2737 2738 273.7 547.4 2737 1977-06-30 2024-10-11 00:45:37.000 1977-06-30 2024-10-11 00:45:37 +2738 2738 2739 273.8 547.6 2738 1977-07-01 2024-10-11 00:45:38.000 1977-07-01 2024-10-11 00:45:38 +2739 2739 2740 273.9 547.8000000000001 2739 1977-07-02 2024-10-11 00:45:39.000 1977-07-02 2024-10-11 00:45:39 +2741 2741 2742 274.1 548.2 2741 1977-07-04 2024-10-11 00:45:41.000 1977-07-04 2024-10-11 00:45:41 +2742 2742 2743 274.2 548.4 2742 1977-07-05 2024-10-11 00:45:42.000 1977-07-05 2024-10-11 00:45:42 +2743 2743 2744 274.3 548.6 2743 1977-07-06 2024-10-11 00:45:43.000 1977-07-06 2024-10-11 00:45:43 +2744 2744 2745 274.4 548.8000000000001 2744 1977-07-07 2024-10-11 00:45:44.000 1977-07-07 2024-10-11 00:45:44 +2746 2746 2747 274.6 549.2 2746 1977-07-09 2024-10-11 00:45:46.000 1977-07-09 2024-10-11 00:45:46 +2747 2747 2748 274.7 549.4 2747 1977-07-10 2024-10-11 00:45:47.000 1977-07-10 2024-10-11 00:45:47 +2748 2748 2749 274.8 549.6 2748 1977-07-11 2024-10-11 00:45:48.000 1977-07-11 2024-10-11 00:45:48 +2749 2749 2750 274.9 549.8000000000001 2749 1977-07-12 2024-10-11 00:45:49.000 1977-07-12 2024-10-11 00:45:49 +2751 2751 2752 275.1 550.2 2751 1977-07-14 2024-10-11 00:45:51.000 1977-07-14 2024-10-11 00:45:51 +2752 2752 2753 275.2 550.4 2752 1977-07-15 2024-10-11 00:45:52.000 1977-07-15 2024-10-11 00:45:52 +2753 2753 2754 275.3 550.6 2753 1977-07-16 2024-10-11 00:45:53.000 1977-07-16 2024-10-11 00:45:53 +2754 2754 2755 275.4 550.8000000000001 2754 1977-07-17 2024-10-11 00:45:54.000 1977-07-17 2024-10-11 00:45:54 +2756 2756 2757 275.6 551.2 2756 1977-07-19 2024-10-11 00:45:56.000 1977-07-19 2024-10-11 00:45:56 +2757 2757 2758 275.7 551.4 2757 1977-07-20 2024-10-11 00:45:57.000 1977-07-20 2024-10-11 00:45:57 +2758 2758 2759 275.8 551.6 2758 1977-07-21 2024-10-11 00:45:58.000 1977-07-21 2024-10-11 00:45:58 +2759 2759 2760 275.9 551.8000000000001 2759 1977-07-22 2024-10-11 00:45:59.000 1977-07-22 2024-10-11 00:45:59 +2761 2761 2762 276.1 552.2 2761 1977-07-24 2024-10-11 00:46:01.000 1977-07-24 2024-10-11 00:46:01 +2762 2762 2763 276.2 552.4 2762 1977-07-25 2024-10-11 00:46:02.000 1977-07-25 2024-10-11 00:46:02 +2763 2763 2764 276.3 552.6 2763 1977-07-26 2024-10-11 00:46:03.000 1977-07-26 2024-10-11 00:46:03 +2764 2764 2765 276.4 552.8000000000001 2764 1977-07-27 2024-10-11 00:46:04.000 1977-07-27 2024-10-11 00:46:04 +2766 2766 2767 276.6 553.2 2766 1977-07-29 2024-10-11 00:46:06.000 1977-07-29 2024-10-11 00:46:06 +2767 2767 2768 276.7 553.4 2767 1977-07-30 2024-10-11 00:46:07.000 1977-07-30 2024-10-11 00:46:07 +2768 2768 2769 276.8 553.6 2768 1977-07-31 2024-10-11 00:46:08.000 1977-07-31 2024-10-11 00:46:08 +2769 2769 2770 276.9 553.8000000000001 2769 1977-08-01 2024-10-11 00:46:09.000 1977-08-01 2024-10-11 00:46:09 +2771 2771 2772 277.1 554.2 2771 1977-08-03 2024-10-11 00:46:11.000 1977-08-03 2024-10-11 00:46:11 +2772 2772 2773 277.2 554.4 2772 1977-08-04 2024-10-11 00:46:12.000 1977-08-04 2024-10-11 00:46:12 +2773 2773 2774 277.3 554.6 2773 1977-08-05 2024-10-11 00:46:13.000 1977-08-05 2024-10-11 00:46:13 +2774 2774 2775 277.4 554.8000000000001 2774 1977-08-06 2024-10-11 00:46:14.000 1977-08-06 2024-10-11 00:46:14 +2776 2776 2777 277.6 555.2 2776 1977-08-08 2024-10-11 00:46:16.000 1977-08-08 2024-10-11 00:46:16 +2777 2777 2778 277.7 555.4 2777 1977-08-09 2024-10-11 00:46:17.000 1977-08-09 2024-10-11 00:46:17 +2778 2778 2779 277.8 555.6 2778 1977-08-10 2024-10-11 00:46:18.000 1977-08-10 2024-10-11 00:46:18 +2779 2779 2780 277.9 555.8000000000001 2779 1977-08-11 2024-10-11 00:46:19.000 1977-08-11 2024-10-11 00:46:19 +2781 2781 2782 278.1 556.2 2781 1977-08-13 2024-10-11 00:46:21.000 1977-08-13 2024-10-11 00:46:21 +2782 2782 2783 278.2 556.4 2782 1977-08-14 2024-10-11 00:46:22.000 1977-08-14 2024-10-11 00:46:22 +2783 2783 2784 278.3 556.6 2783 1977-08-15 2024-10-11 00:46:23.000 1977-08-15 2024-10-11 00:46:23 +2784 2784 2785 278.4 556.8000000000001 2784 1977-08-16 2024-10-11 00:46:24.000 1977-08-16 2024-10-11 00:46:24 +2786 2786 2787 278.6 557.2 2786 1977-08-18 2024-10-11 00:46:26.000 1977-08-18 2024-10-11 00:46:26 +2787 2787 2788 278.7 557.4 2787 1977-08-19 2024-10-11 00:46:27.000 1977-08-19 2024-10-11 00:46:27 +2788 2788 2789 278.8 557.6 2788 1977-08-20 2024-10-11 00:46:28.000 1977-08-20 2024-10-11 00:46:28 +2789 2789 2790 278.9 557.8000000000001 2789 1977-08-21 2024-10-11 00:46:29.000 1977-08-21 2024-10-11 00:46:29 +2791 2791 2792 279.1 558.2 2791 1977-08-23 2024-10-11 00:46:31.000 1977-08-23 2024-10-11 00:46:31 +2792 2792 2793 279.2 558.4 2792 1977-08-24 2024-10-11 00:46:32.000 1977-08-24 2024-10-11 00:46:32 +2793 2793 2794 279.3 558.6 2793 1977-08-25 2024-10-11 00:46:33.000 1977-08-25 2024-10-11 00:46:33 +2794 2794 2795 279.4 558.8000000000001 2794 1977-08-26 2024-10-11 00:46:34.000 1977-08-26 2024-10-11 00:46:34 +2796 2796 2797 279.6 559.2 2796 1977-08-28 2024-10-11 00:46:36.000 1977-08-28 2024-10-11 00:46:36 +2797 2797 2798 279.7 559.4 2797 1977-08-29 2024-10-11 00:46:37.000 1977-08-29 2024-10-11 00:46:37 +2798 2798 2799 279.8 559.6 2798 1977-08-30 2024-10-11 00:46:38.000 1977-08-30 2024-10-11 00:46:38 +2799 2799 2800 279.9 559.8000000000001 2799 1977-08-31 2024-10-11 00:46:39.000 1977-08-31 2024-10-11 00:46:39 +2801 2801 2802 280.1 560.2 2801 1977-09-02 2024-10-11 00:46:41.000 1977-09-02 2024-10-11 00:46:41 +2802 2802 2803 280.2 560.4 2802 1977-09-03 2024-10-11 00:46:42.000 1977-09-03 2024-10-11 00:46:42 +2803 2803 2804 280.3 560.6 2803 1977-09-04 2024-10-11 00:46:43.000 1977-09-04 2024-10-11 00:46:43 +2804 2804 2805 280.4 560.8000000000001 2804 1977-09-05 2024-10-11 00:46:44.000 1977-09-05 2024-10-11 00:46:44 +2806 2806 2807 280.6 561.2 2806 1977-09-07 2024-10-11 00:46:46.000 1977-09-07 2024-10-11 00:46:46 +2807 2807 2808 280.7 561.4 2807 1977-09-08 2024-10-11 00:46:47.000 1977-09-08 2024-10-11 00:46:47 +2808 2808 2809 280.8 561.6 2808 1977-09-09 2024-10-11 00:46:48.000 1977-09-09 2024-10-11 00:46:48 +2809 2809 2810 280.9 561.8000000000001 2809 1977-09-10 2024-10-11 00:46:49.000 1977-09-10 2024-10-11 00:46:49 +2811 2811 2812 281.1 562.2 2811 1977-09-12 2024-10-11 00:46:51.000 1977-09-12 2024-10-11 00:46:51 +2812 2812 2813 281.2 562.4 2812 1977-09-13 2024-10-11 00:46:52.000 1977-09-13 2024-10-11 00:46:52 +2813 2813 2814 281.3 562.6 2813 1977-09-14 2024-10-11 00:46:53.000 1977-09-14 2024-10-11 00:46:53 +2814 2814 2815 281.4 562.8000000000001 2814 1977-09-15 2024-10-11 00:46:54.000 1977-09-15 2024-10-11 00:46:54 +2816 2816 2817 281.6 563.2 2816 1977-09-17 2024-10-11 00:46:56.000 1977-09-17 2024-10-11 00:46:56 +2817 2817 2818 281.7 563.4 2817 1977-09-18 2024-10-11 00:46:57.000 1977-09-18 2024-10-11 00:46:57 +2818 2818 2819 281.8 563.6 2818 1977-09-19 2024-10-11 00:46:58.000 1977-09-19 2024-10-11 00:46:58 +2819 2819 2820 281.9 563.8000000000001 2819 1977-09-20 2024-10-11 00:46:59.000 1977-09-20 2024-10-11 00:46:59 +2821 2821 2822 282.1 564.2 2821 1977-09-22 2024-10-11 00:47:01.000 1977-09-22 2024-10-11 00:47:01 +2822 2822 2823 282.2 564.4 2822 1977-09-23 2024-10-11 00:47:02.000 1977-09-23 2024-10-11 00:47:02 +2823 2823 2824 282.3 564.6 2823 1977-09-24 2024-10-11 00:47:03.000 1977-09-24 2024-10-11 00:47:03 +2824 2824 2825 282.4 564.8000000000001 2824 1977-09-25 2024-10-11 00:47:04.000 1977-09-25 2024-10-11 00:47:04 +2826 2826 2827 282.6 565.2 2826 1977-09-27 2024-10-11 00:47:06.000 1977-09-27 2024-10-11 00:47:06 +2827 2827 2828 282.7 565.4 2827 1977-09-28 2024-10-11 00:47:07.000 1977-09-28 2024-10-11 00:47:07 +2828 2828 2829 282.8 565.6 2828 1977-09-29 2024-10-11 00:47:08.000 1977-09-29 2024-10-11 00:47:08 +2829 2829 2830 282.9 565.8000000000001 2829 1977-09-30 2024-10-11 00:47:09.000 1977-09-30 2024-10-11 00:47:09 +2831 2831 2832 283.1 566.2 2831 1977-10-02 2024-10-11 00:47:11.000 1977-10-02 2024-10-11 00:47:11 +2832 2832 2833 283.2 566.4 2832 1977-10-03 2024-10-11 00:47:12.000 1977-10-03 2024-10-11 00:47:12 +2833 2833 2834 283.3 566.6 2833 1977-10-04 2024-10-11 00:47:13.000 1977-10-04 2024-10-11 00:47:13 +2834 2834 2835 283.4 566.8000000000001 2834 1977-10-05 2024-10-11 00:47:14.000 1977-10-05 2024-10-11 00:47:14 +2836 2836 2837 283.6 567.2 2836 1977-10-07 2024-10-11 00:47:16.000 1977-10-07 2024-10-11 00:47:16 +2837 2837 2838 283.7 567.4 2837 1977-10-08 2024-10-11 00:47:17.000 1977-10-08 2024-10-11 00:47:17 +2838 2838 2839 283.8 567.6 2838 1977-10-09 2024-10-11 00:47:18.000 1977-10-09 2024-10-11 00:47:18 +2839 2839 2840 283.9 567.8000000000001 2839 1977-10-10 2024-10-11 00:47:19.000 1977-10-10 2024-10-11 00:47:19 +2841 2841 2842 284.1 568.2 2841 1977-10-12 2024-10-11 00:47:21.000 1977-10-12 2024-10-11 00:47:21 +2842 2842 2843 284.2 568.4 2842 1977-10-13 2024-10-11 00:47:22.000 1977-10-13 2024-10-11 00:47:22 +2843 2843 2844 284.3 568.6 2843 1977-10-14 2024-10-11 00:47:23.000 1977-10-14 2024-10-11 00:47:23 +2844 2844 2845 284.4 568.8000000000001 2844 1977-10-15 2024-10-11 00:47:24.000 1977-10-15 2024-10-11 00:47:24 +2846 2846 2847 284.6 569.2 2846 1977-10-17 2024-10-11 00:47:26.000 1977-10-17 2024-10-11 00:47:26 +2847 2847 2848 284.7 569.4 2847 1977-10-18 2024-10-11 00:47:27.000 1977-10-18 2024-10-11 00:47:27 +2848 2848 2849 284.8 569.6 2848 1977-10-19 2024-10-11 00:47:28.000 1977-10-19 2024-10-11 00:47:28 +2849 2849 2850 284.9 569.8000000000001 2849 1977-10-20 2024-10-11 00:47:29.000 1977-10-20 2024-10-11 00:47:29 +2851 2851 2852 285.1 570.2 2851 1977-10-22 2024-10-11 00:47:31.000 1977-10-22 2024-10-11 00:47:31 +2852 2852 2853 285.2 570.4 2852 1977-10-23 2024-10-11 00:47:32.000 1977-10-23 2024-10-11 00:47:32 +2853 2853 2854 285.3 570.6 2853 1977-10-24 2024-10-11 00:47:33.000 1977-10-24 2024-10-11 00:47:33 +2854 2854 2855 285.4 570.8000000000001 2854 1977-10-25 2024-10-11 00:47:34.000 1977-10-25 2024-10-11 00:47:34 +2856 2856 2857 285.6 571.2 2856 1977-10-27 2024-10-11 00:47:36.000 1977-10-27 2024-10-11 00:47:36 +2857 2857 2858 285.7 571.4 2857 1977-10-28 2024-10-11 00:47:37.000 1977-10-28 2024-10-11 00:47:37 +2858 2858 2859 285.8 571.6 2858 1977-10-29 2024-10-11 00:47:38.000 1977-10-29 2024-10-11 00:47:38 +2859 2859 2860 285.9 571.8000000000001 2859 1977-10-30 2024-10-11 00:47:39.000 1977-10-30 2024-10-11 00:47:39 +2861 2861 2862 286.1 572.2 2861 1977-11-01 2024-10-11 00:47:41.000 1977-11-01 2024-10-11 00:47:41 +2862 2862 2863 286.2 572.4 2862 1977-11-02 2024-10-11 00:47:42.000 1977-11-02 2024-10-11 00:47:42 +2863 2863 2864 286.3 572.6 2863 1977-11-03 2024-10-11 00:47:43.000 1977-11-03 2024-10-11 00:47:43 +2864 2864 2865 286.4 572.8000000000001 2864 1977-11-04 2024-10-11 00:47:44.000 1977-11-04 2024-10-11 00:47:44 +2866 2866 2867 286.6 573.2 2866 1977-11-06 2024-10-11 00:47:46.000 1977-11-06 2024-10-11 00:47:46 +2867 2867 2868 286.7 573.4 2867 1977-11-07 2024-10-11 00:47:47.000 1977-11-07 2024-10-11 00:47:47 +2868 2868 2869 286.8 573.6 2868 1977-11-08 2024-10-11 00:47:48.000 1977-11-08 2024-10-11 00:47:48 +2869 2869 2870 286.9 573.8000000000001 2869 1977-11-09 2024-10-11 00:47:49.000 1977-11-09 2024-10-11 00:47:49 +2871 2871 2872 287.1 574.2 2871 1977-11-11 2024-10-11 00:47:51.000 1977-11-11 2024-10-11 00:47:51 +2872 2872 2873 287.2 574.4 2872 1977-11-12 2024-10-11 00:47:52.000 1977-11-12 2024-10-11 00:47:52 +2873 2873 2874 287.3 574.6 2873 1977-11-13 2024-10-11 00:47:53.000 1977-11-13 2024-10-11 00:47:53 +2874 2874 2875 287.4 574.8000000000001 2874 1977-11-14 2024-10-11 00:47:54.000 1977-11-14 2024-10-11 00:47:54 +2876 2876 2877 287.6 575.2 2876 1977-11-16 2024-10-11 00:47:56.000 1977-11-16 2024-10-11 00:47:56 +2877 2877 2878 287.7 575.4 2877 1977-11-17 2024-10-11 00:47:57.000 1977-11-17 2024-10-11 00:47:57 +2878 2878 2879 287.8 575.6 2878 1977-11-18 2024-10-11 00:47:58.000 1977-11-18 2024-10-11 00:47:58 +2879 2879 2880 287.9 575.8000000000001 2879 1977-11-19 2024-10-11 00:47:59.000 1977-11-19 2024-10-11 00:47:59 +2881 2881 2882 288.1 576.2 2881 1977-11-21 2024-10-11 00:48:01.000 1977-11-21 2024-10-11 00:48:01 +2882 2882 2883 288.2 576.4 2882 1977-11-22 2024-10-11 00:48:02.000 1977-11-22 2024-10-11 00:48:02 +2883 2883 2884 288.3 576.6 2883 1977-11-23 2024-10-11 00:48:03.000 1977-11-23 2024-10-11 00:48:03 +2884 2884 2885 288.4 576.8000000000001 2884 1977-11-24 2024-10-11 00:48:04.000 1977-11-24 2024-10-11 00:48:04 +2886 2886 2887 288.6 577.2 2886 1977-11-26 2024-10-11 00:48:06.000 1977-11-26 2024-10-11 00:48:06 +2887 2887 2888 288.7 577.4 2887 1977-11-27 2024-10-11 00:48:07.000 1977-11-27 2024-10-11 00:48:07 +2888 2888 2889 288.8 577.6 2888 1977-11-28 2024-10-11 00:48:08.000 1977-11-28 2024-10-11 00:48:08 +2889 2889 2890 288.9 577.8000000000001 2889 1977-11-29 2024-10-11 00:48:09.000 1977-11-29 2024-10-11 00:48:09 +2891 2891 2892 289.1 578.2 2891 1977-12-01 2024-10-11 00:48:11.000 1977-12-01 2024-10-11 00:48:11 +2892 2892 2893 289.2 578.4 2892 1977-12-02 2024-10-11 00:48:12.000 1977-12-02 2024-10-11 00:48:12 +2893 2893 2894 289.3 578.6 2893 1977-12-03 2024-10-11 00:48:13.000 1977-12-03 2024-10-11 00:48:13 +2894 2894 2895 289.4 578.8000000000001 2894 1977-12-04 2024-10-11 00:48:14.000 1977-12-04 2024-10-11 00:48:14 +2896 2896 2897 289.6 579.2 2896 1977-12-06 2024-10-11 00:48:16.000 1977-12-06 2024-10-11 00:48:16 +2897 2897 2898 289.7 579.4 2897 1977-12-07 2024-10-11 00:48:17.000 1977-12-07 2024-10-11 00:48:17 +2898 2898 2899 289.8 579.6 2898 1977-12-08 2024-10-11 00:48:18.000 1977-12-08 2024-10-11 00:48:18 +2899 2899 2900 289.9 579.8000000000001 2899 1977-12-09 2024-10-11 00:48:19.000 1977-12-09 2024-10-11 00:48:19 +2901 2901 2902 290.1 580.2 2901 1977-12-11 2024-10-11 00:48:21.000 1977-12-11 2024-10-11 00:48:21 +2902 2902 2903 290.2 580.4 2902 1977-12-12 2024-10-11 00:48:22.000 1977-12-12 2024-10-11 00:48:22 +2903 2903 2904 290.3 580.6 2903 1977-12-13 2024-10-11 00:48:23.000 1977-12-13 2024-10-11 00:48:23 +2904 2904 2905 290.4 580.8000000000001 2904 1977-12-14 2024-10-11 00:48:24.000 1977-12-14 2024-10-11 00:48:24 +2906 2906 2907 290.6 581.2 2906 1977-12-16 2024-10-11 00:48:26.000 1977-12-16 2024-10-11 00:48:26 +2907 2907 2908 290.7 581.4 2907 1977-12-17 2024-10-11 00:48:27.000 1977-12-17 2024-10-11 00:48:27 +2908 2908 2909 290.8 581.6 2908 1977-12-18 2024-10-11 00:48:28.000 1977-12-18 2024-10-11 00:48:28 +2909 2909 2910 290.9 581.8000000000001 2909 1977-12-19 2024-10-11 00:48:29.000 1977-12-19 2024-10-11 00:48:29 +2911 2911 2912 291.1 582.2 2911 1977-12-21 2024-10-11 00:48:31.000 1977-12-21 2024-10-11 00:48:31 +2912 2912 2913 291.2 582.4 2912 1977-12-22 2024-10-11 00:48:32.000 1977-12-22 2024-10-11 00:48:32 +2913 2913 2914 291.3 582.6 2913 1977-12-23 2024-10-11 00:48:33.000 1977-12-23 2024-10-11 00:48:33 +2914 2914 2915 291.4 582.8000000000001 2914 1977-12-24 2024-10-11 00:48:34.000 1977-12-24 2024-10-11 00:48:34 +2916 2916 2917 291.6 583.2 2916 1977-12-26 2024-10-11 00:48:36.000 1977-12-26 2024-10-11 00:48:36 +2917 2917 2918 291.7 583.4 2917 1977-12-27 2024-10-11 00:48:37.000 1977-12-27 2024-10-11 00:48:37 +2918 2918 2919 291.8 583.6 2918 1977-12-28 2024-10-11 00:48:38.000 1977-12-28 2024-10-11 00:48:38 +2919 2919 2920 291.9 583.8000000000001 2919 1977-12-29 2024-10-11 00:48:39.000 1977-12-29 2024-10-11 00:48:39 +2921 2921 2922 292.1 584.2 2921 1977-12-31 2024-10-11 00:48:41.000 1977-12-31 2024-10-11 00:48:41 +2922 2922 2923 292.2 584.4 2922 1978-01-01 2024-10-11 00:48:42.000 1978-01-01 2024-10-11 00:48:42 +2923 2923 2924 292.3 584.6 2923 1978-01-02 2024-10-11 00:48:43.000 1978-01-02 2024-10-11 00:48:43 +2924 2924 2925 292.4 584.8000000000001 2924 1978-01-03 2024-10-11 00:48:44.000 1978-01-03 2024-10-11 00:48:44 +2926 2926 2927 292.6 585.2 2926 1978-01-05 2024-10-11 00:48:46.000 1978-01-05 2024-10-11 00:48:46 +2927 2927 2928 292.7 585.4 2927 1978-01-06 2024-10-11 00:48:47.000 1978-01-06 2024-10-11 00:48:47 +2928 2928 2929 292.8 585.6 2928 1978-01-07 2024-10-11 00:48:48.000 1978-01-07 2024-10-11 00:48:48 +2929 2929 2930 292.9 585.8000000000001 2929 1978-01-08 2024-10-11 00:48:49.000 1978-01-08 2024-10-11 00:48:49 +2931 2931 2932 293.1 586.2 2931 1978-01-10 2024-10-11 00:48:51.000 1978-01-10 2024-10-11 00:48:51 +2932 2932 2933 293.2 586.4 2932 1978-01-11 2024-10-11 00:48:52.000 1978-01-11 2024-10-11 00:48:52 +2933 2933 2934 293.3 586.6 2933 1978-01-12 2024-10-11 00:48:53.000 1978-01-12 2024-10-11 00:48:53 +2934 2934 2935 293.4 586.8000000000001 2934 1978-01-13 2024-10-11 00:48:54.000 1978-01-13 2024-10-11 00:48:54 +2936 2936 2937 293.6 587.2 2936 1978-01-15 2024-10-11 00:48:56.000 1978-01-15 2024-10-11 00:48:56 +2937 2937 2938 293.7 587.4 2937 1978-01-16 2024-10-11 00:48:57.000 1978-01-16 2024-10-11 00:48:57 +2938 2938 2939 293.8 587.6 2938 1978-01-17 2024-10-11 00:48:58.000 1978-01-17 2024-10-11 00:48:58 +2939 2939 2940 293.9 587.8000000000001 2939 1978-01-18 2024-10-11 00:48:59.000 1978-01-18 2024-10-11 00:48:59 +2941 2941 2942 294.1 588.2 2941 1978-01-20 2024-10-11 00:49:01.000 1978-01-20 2024-10-11 00:49:01 +2942 2942 2943 294.2 588.4 2942 1978-01-21 2024-10-11 00:49:02.000 1978-01-21 2024-10-11 00:49:02 +2943 2943 2944 294.3 588.6 2943 1978-01-22 2024-10-11 00:49:03.000 1978-01-22 2024-10-11 00:49:03 +2944 2944 2945 294.4 588.8000000000001 2944 1978-01-23 2024-10-11 00:49:04.000 1978-01-23 2024-10-11 00:49:04 +2946 2946 2947 294.6 589.2 2946 1978-01-25 2024-10-11 00:49:06.000 1978-01-25 2024-10-11 00:49:06 +2947 2947 2948 294.7 589.4 2947 1978-01-26 2024-10-11 00:49:07.000 1978-01-26 2024-10-11 00:49:07 +2948 2948 2949 294.8 589.6 2948 1978-01-27 2024-10-11 00:49:08.000 1978-01-27 2024-10-11 00:49:08 +2949 2949 2950 294.9 589.8000000000001 2949 1978-01-28 2024-10-11 00:49:09.000 1978-01-28 2024-10-11 00:49:09 +2951 2951 2952 295.1 590.2 2951 1978-01-30 2024-10-11 00:49:11.000 1978-01-30 2024-10-11 00:49:11 +2952 2952 2953 295.2 590.4 2952 1978-01-31 2024-10-11 00:49:12.000 1978-01-31 2024-10-11 00:49:12 +2953 2953 2954 295.3 590.6 2953 1978-02-01 2024-10-11 00:49:13.000 1978-02-01 2024-10-11 00:49:13 +2954 2954 2955 295.4 590.8000000000001 2954 1978-02-02 2024-10-11 00:49:14.000 1978-02-02 2024-10-11 00:49:14 +2956 2956 2957 295.6 591.2 2956 1978-02-04 2024-10-11 00:49:16.000 1978-02-04 2024-10-11 00:49:16 +2957 2957 2958 295.7 591.4 2957 1978-02-05 2024-10-11 00:49:17.000 1978-02-05 2024-10-11 00:49:17 +2958 2958 2959 295.8 591.6 2958 1978-02-06 2024-10-11 00:49:18.000 1978-02-06 2024-10-11 00:49:18 +2959 2959 2960 295.9 591.8000000000001 2959 1978-02-07 2024-10-11 00:49:19.000 1978-02-07 2024-10-11 00:49:19 +2961 2961 2962 296.1 592.2 2961 1978-02-09 2024-10-11 00:49:21.000 1978-02-09 2024-10-11 00:49:21 +2962 2962 2963 296.2 592.4 2962 1978-02-10 2024-10-11 00:49:22.000 1978-02-10 2024-10-11 00:49:22 +2963 2963 2964 296.3 592.6 2963 1978-02-11 2024-10-11 00:49:23.000 1978-02-11 2024-10-11 00:49:23 +2964 2964 2965 296.4 592.8000000000001 2964 1978-02-12 2024-10-11 00:49:24.000 1978-02-12 2024-10-11 00:49:24 +2966 2966 2967 296.6 593.2 2966 1978-02-14 2024-10-11 00:49:26.000 1978-02-14 2024-10-11 00:49:26 +2967 2967 2968 296.7 593.4 2967 1978-02-15 2024-10-11 00:49:27.000 1978-02-15 2024-10-11 00:49:27 +2968 2968 2969 296.8 593.6 2968 1978-02-16 2024-10-11 00:49:28.000 1978-02-16 2024-10-11 00:49:28 +2969 2969 2970 296.9 593.8000000000001 2969 1978-02-17 2024-10-11 00:49:29.000 1978-02-17 2024-10-11 00:49:29 +2971 2971 2972 297.1 594.2 2971 1978-02-19 2024-10-11 00:49:31.000 1978-02-19 2024-10-11 00:49:31 +2972 2972 2973 297.2 594.4 2972 1978-02-20 2024-10-11 00:49:32.000 1978-02-20 2024-10-11 00:49:32 +2973 2973 2974 297.3 594.6 2973 1978-02-21 2024-10-11 00:49:33.000 1978-02-21 2024-10-11 00:49:33 +2974 2974 2975 297.4 594.8000000000001 2974 1978-02-22 2024-10-11 00:49:34.000 1978-02-22 2024-10-11 00:49:34 +2976 2976 2977 297.6 595.2 2976 1978-02-24 2024-10-11 00:49:36.000 1978-02-24 2024-10-11 00:49:36 +2977 2977 2978 297.7 595.4 2977 1978-02-25 2024-10-11 00:49:37.000 1978-02-25 2024-10-11 00:49:37 +2978 2978 2979 297.8 595.6 2978 1978-02-26 2024-10-11 00:49:38.000 1978-02-26 2024-10-11 00:49:38 +2979 2979 2980 297.9 595.8000000000001 2979 1978-02-27 2024-10-11 00:49:39.000 1978-02-27 2024-10-11 00:49:39 +2981 2981 2982 298.1 596.2 2981 1978-03-01 2024-10-11 00:49:41.000 1978-03-01 2024-10-11 00:49:41 +2982 2982 2983 298.2 596.4 2982 1978-03-02 2024-10-11 00:49:42.000 1978-03-02 2024-10-11 00:49:42 +2983 2983 2984 298.3 596.6 2983 1978-03-03 2024-10-11 00:49:43.000 1978-03-03 2024-10-11 00:49:43 +2984 2984 2985 298.4 596.8000000000001 2984 1978-03-04 2024-10-11 00:49:44.000 1978-03-04 2024-10-11 00:49:44 +2986 2986 2987 298.6 597.2 2986 1978-03-06 2024-10-11 00:49:46.000 1978-03-06 2024-10-11 00:49:46 +2987 2987 2988 298.7 597.4 2987 1978-03-07 2024-10-11 00:49:47.000 1978-03-07 2024-10-11 00:49:47 +2988 2988 2989 298.8 597.6 2988 1978-03-08 2024-10-11 00:49:48.000 1978-03-08 2024-10-11 00:49:48 +2989 2989 2990 298.9 597.8000000000001 2989 1978-03-09 2024-10-11 00:49:49.000 1978-03-09 2024-10-11 00:49:49 +2991 2991 2992 299.1 598.2 2991 1978-03-11 2024-10-11 00:49:51.000 1978-03-11 2024-10-11 00:49:51 +2992 2992 2993 299.2 598.4 2992 1978-03-12 2024-10-11 00:49:52.000 1978-03-12 2024-10-11 00:49:52 +2993 2993 2994 299.3 598.6 2993 1978-03-13 2024-10-11 00:49:53.000 1978-03-13 2024-10-11 00:49:53 +2994 2994 2995 299.4 598.8000000000001 2994 1978-03-14 2024-10-11 00:49:54.000 1978-03-14 2024-10-11 00:49:54 +2996 2996 2997 299.6 599.2 2996 1978-03-16 2024-10-11 00:49:56.000 1978-03-16 2024-10-11 00:49:56 +2997 2997 2998 299.7 599.4 2997 1978-03-17 2024-10-11 00:49:57.000 1978-03-17 2024-10-11 00:49:57 +2998 2998 2999 299.8 599.6 2998 1978-03-18 2024-10-11 00:49:58.000 1978-03-18 2024-10-11 00:49:58 +2999 2999 3000 299.9 599.8000000000001 2999 1978-03-19 2024-10-11 00:49:59.000 1978-03-19 2024-10-11 00:49:59 +3001 3001 3002 300.1 600.2 3001 1978-03-21 2024-10-11 00:50:01.000 1978-03-21 2024-10-11 00:50:01 +3002 3002 3003 300.2 600.4 3002 1978-03-22 2024-10-11 00:50:02.000 1978-03-22 2024-10-11 00:50:02 +3003 3003 3004 300.3 600.6 3003 1978-03-23 2024-10-11 00:50:03.000 1978-03-23 2024-10-11 00:50:03 +3004 3004 3005 300.4 600.8000000000001 3004 1978-03-24 2024-10-11 00:50:04.000 1978-03-24 2024-10-11 00:50:04 +3006 3006 3007 300.6 601.2 3006 1978-03-26 2024-10-11 00:50:06.000 1978-03-26 2024-10-11 00:50:06 +3007 3007 3008 300.7 601.4 3007 1978-03-27 2024-10-11 00:50:07.000 1978-03-27 2024-10-11 00:50:07 +3008 3008 3009 300.8 601.6 3008 1978-03-28 2024-10-11 00:50:08.000 1978-03-28 2024-10-11 00:50:08 +3009 3009 3010 300.9 601.8000000000001 3009 1978-03-29 2024-10-11 00:50:09.000 1978-03-29 2024-10-11 00:50:09 +3011 3011 3012 301.1 602.2 3011 1978-03-31 2024-10-11 00:50:11.000 1978-03-31 2024-10-11 00:50:11 +3012 3012 3013 301.2 602.4 3012 1978-04-01 2024-10-11 00:50:12.000 1978-04-01 2024-10-11 00:50:12 +3013 3013 3014 301.3 602.6 3013 1978-04-02 2024-10-11 00:50:13.000 1978-04-02 2024-10-11 00:50:13 +3014 3014 3015 301.4 602.8000000000001 3014 1978-04-03 2024-10-11 00:50:14.000 1978-04-03 2024-10-11 00:50:14 +3016 3016 3017 301.6 603.2 3016 1978-04-05 2024-10-11 00:50:16.000 1978-04-05 2024-10-11 00:50:16 +3017 3017 3018 301.7 603.4 3017 1978-04-06 2024-10-11 00:50:17.000 1978-04-06 2024-10-11 00:50:17 +3018 3018 3019 301.8 603.6 3018 1978-04-07 2024-10-11 00:50:18.000 1978-04-07 2024-10-11 00:50:18 +3019 3019 3020 301.9 603.8000000000001 3019 1978-04-08 2024-10-11 00:50:19.000 1978-04-08 2024-10-11 00:50:19 +3021 3021 3022 302.1 604.2 3021 1978-04-10 2024-10-11 00:50:21.000 1978-04-10 2024-10-11 00:50:21 +3022 3022 3023 302.2 604.4 3022 1978-04-11 2024-10-11 00:50:22.000 1978-04-11 2024-10-11 00:50:22 +3023 3023 3024 302.3 604.6 3023 1978-04-12 2024-10-11 00:50:23.000 1978-04-12 2024-10-11 00:50:23 +3024 3024 3025 302.4 604.8000000000001 3024 1978-04-13 2024-10-11 00:50:24.000 1978-04-13 2024-10-11 00:50:24 +3026 3026 3027 302.6 605.2 3026 1978-04-15 2024-10-11 00:50:26.000 1978-04-15 2024-10-11 00:50:26 +3027 3027 3028 302.7 605.4 3027 1978-04-16 2024-10-11 00:50:27.000 1978-04-16 2024-10-11 00:50:27 +3028 3028 3029 302.8 605.6 3028 1978-04-17 2024-10-11 00:50:28.000 1978-04-17 2024-10-11 00:50:28 +3029 3029 3030 302.9 605.8000000000001 3029 1978-04-18 2024-10-11 00:50:29.000 1978-04-18 2024-10-11 00:50:29 +3031 3031 3032 303.1 606.2 3031 1978-04-20 2024-10-11 00:50:31.000 1978-04-20 2024-10-11 00:50:31 +3032 3032 3033 303.2 606.4 3032 1978-04-21 2024-10-11 00:50:32.000 1978-04-21 2024-10-11 00:50:32 +3033 3033 3034 303.3 606.6 3033 1978-04-22 2024-10-11 00:50:33.000 1978-04-22 2024-10-11 00:50:33 +3034 3034 3035 303.4 606.8000000000001 3034 1978-04-23 2024-10-11 00:50:34.000 1978-04-23 2024-10-11 00:50:34 +3036 3036 3037 303.6 607.2 3036 1978-04-25 2024-10-11 00:50:36.000 1978-04-25 2024-10-11 00:50:36 +3037 3037 3038 303.7 607.4 3037 1978-04-26 2024-10-11 00:50:37.000 1978-04-26 2024-10-11 00:50:37 +3038 3038 3039 303.8 607.6 3038 1978-04-27 2024-10-11 00:50:38.000 1978-04-27 2024-10-11 00:50:38 +3039 3039 3040 303.9 607.8000000000001 3039 1978-04-28 2024-10-11 00:50:39.000 1978-04-28 2024-10-11 00:50:39 +3041 3041 3042 304.1 608.2 3041 1978-04-30 2024-10-11 00:50:41.000 1978-04-30 2024-10-11 00:50:41 +3042 3042 3043 304.2 608.4 3042 1978-05-01 2024-10-11 00:50:42.000 1978-05-01 2024-10-11 00:50:42 +3043 3043 3044 304.3 608.6 3043 1978-05-02 2024-10-11 00:50:43.000 1978-05-02 2024-10-11 00:50:43 +3044 3044 3045 304.4 608.8000000000001 3044 1978-05-03 2024-10-11 00:50:44.000 1978-05-03 2024-10-11 00:50:44 +3046 3046 3047 304.6 609.2 3046 1978-05-05 2024-10-11 00:50:46.000 1978-05-05 2024-10-11 00:50:46 +3047 3047 3048 304.7 609.4 3047 1978-05-06 2024-10-11 00:50:47.000 1978-05-06 2024-10-11 00:50:47 +3048 3048 3049 304.8 609.6 3048 1978-05-07 2024-10-11 00:50:48.000 1978-05-07 2024-10-11 00:50:48 +3049 3049 3050 304.9 609.8000000000001 3049 1978-05-08 2024-10-11 00:50:49.000 1978-05-08 2024-10-11 00:50:49 +3051 3051 3052 305.1 610.2 3051 1978-05-10 2024-10-11 00:50:51.000 1978-05-10 2024-10-11 00:50:51 +3052 3052 3053 305.2 610.4 3052 1978-05-11 2024-10-11 00:50:52.000 1978-05-11 2024-10-11 00:50:52 +3053 3053 3054 305.3 610.6 3053 1978-05-12 2024-10-11 00:50:53.000 1978-05-12 2024-10-11 00:50:53 +3054 3054 3055 305.4 610.8000000000001 3054 1978-05-13 2024-10-11 00:50:54.000 1978-05-13 2024-10-11 00:50:54 +3056 3056 3057 305.6 611.2 3056 1978-05-15 2024-10-11 00:50:56.000 1978-05-15 2024-10-11 00:50:56 +3057 3057 3058 305.7 611.4 3057 1978-05-16 2024-10-11 00:50:57.000 1978-05-16 2024-10-11 00:50:57 +3058 3058 3059 305.8 611.6 3058 1978-05-17 2024-10-11 00:50:58.000 1978-05-17 2024-10-11 00:50:58 +3059 3059 3060 305.9 611.8000000000001 3059 1978-05-18 2024-10-11 00:50:59.000 1978-05-18 2024-10-11 00:50:59 +3061 3061 3062 306.1 612.2 3061 1978-05-20 2024-10-11 00:51:01.000 1978-05-20 2024-10-11 00:51:01 +3062 3062 3063 306.2 612.4 3062 1978-05-21 2024-10-11 00:51:02.000 1978-05-21 2024-10-11 00:51:02 +3063 3063 3064 306.3 612.6 3063 1978-05-22 2024-10-11 00:51:03.000 1978-05-22 2024-10-11 00:51:03 +3064 3064 3065 306.4 612.8000000000001 3064 1978-05-23 2024-10-11 00:51:04.000 1978-05-23 2024-10-11 00:51:04 +3066 3066 3067 306.6 613.2 3066 1978-05-25 2024-10-11 00:51:06.000 1978-05-25 2024-10-11 00:51:06 +3067 3067 3068 306.7 613.4 3067 1978-05-26 2024-10-11 00:51:07.000 1978-05-26 2024-10-11 00:51:07 +3068 3068 3069 306.8 613.6 3068 1978-05-27 2024-10-11 00:51:08.000 1978-05-27 2024-10-11 00:51:08 +3069 3069 3070 306.9 613.8000000000001 3069 1978-05-28 2024-10-11 00:51:09.000 1978-05-28 2024-10-11 00:51:09 +3071 3071 3072 307.1 614.2 3071 1978-05-30 2024-10-11 00:51:11.000 1978-05-30 2024-10-11 00:51:11 +3072 3072 3073 307.2 614.4000000000001 3072 1978-05-31 2024-10-11 00:51:12.000 1978-05-31 2024-10-11 00:51:12 +3073 3073 3074 307.3 614.6 3073 1978-06-01 2024-10-11 00:51:13.000 1978-06-01 2024-10-11 00:51:13 +3074 3074 3075 307.4 614.8000000000001 3074 1978-06-02 2024-10-11 00:51:14.000 1978-06-02 2024-10-11 00:51:14 +3076 3076 3077 307.6 615.2 3076 1978-06-04 2024-10-11 00:51:16.000 1978-06-04 2024-10-11 00:51:16 +3077 3077 3078 307.7 615.4000000000001 3077 1978-06-05 2024-10-11 00:51:17.000 1978-06-05 2024-10-11 00:51:17 +3078 3078 3079 307.8 615.6 3078 1978-06-06 2024-10-11 00:51:18.000 1978-06-06 2024-10-11 00:51:18 +3079 3079 3080 307.9 615.8000000000001 3079 1978-06-07 2024-10-11 00:51:19.000 1978-06-07 2024-10-11 00:51:19 +3081 3081 3082 308.1 616.2 3081 1978-06-09 2024-10-11 00:51:21.000 1978-06-09 2024-10-11 00:51:21 +3082 3082 3083 308.2 616.4000000000001 3082 1978-06-10 2024-10-11 00:51:22.000 1978-06-10 2024-10-11 00:51:22 +3083 3083 3084 308.3 616.6 3083 1978-06-11 2024-10-11 00:51:23.000 1978-06-11 2024-10-11 00:51:23 +3084 3084 3085 308.4 616.8000000000001 3084 1978-06-12 2024-10-11 00:51:24.000 1978-06-12 2024-10-11 00:51:24 +3086 3086 3087 308.6 617.2 3086 1978-06-14 2024-10-11 00:51:26.000 1978-06-14 2024-10-11 00:51:26 +3087 3087 3088 308.7 617.4000000000001 3087 1978-06-15 2024-10-11 00:51:27.000 1978-06-15 2024-10-11 00:51:27 +3088 3088 3089 308.8 617.6 3088 1978-06-16 2024-10-11 00:51:28.000 1978-06-16 2024-10-11 00:51:28 +3089 3089 3090 308.9 617.8000000000001 3089 1978-06-17 2024-10-11 00:51:29.000 1978-06-17 2024-10-11 00:51:29 +3091 3091 3092 309.1 618.2 3091 1978-06-19 2024-10-11 00:51:31.000 1978-06-19 2024-10-11 00:51:31 +3092 3092 3093 309.2 618.4000000000001 3092 1978-06-20 2024-10-11 00:51:32.000 1978-06-20 2024-10-11 00:51:32 +3093 3093 3094 309.3 618.6 3093 1978-06-21 2024-10-11 00:51:33.000 1978-06-21 2024-10-11 00:51:33 +3094 3094 3095 309.4 618.8000000000001 3094 1978-06-22 2024-10-11 00:51:34.000 1978-06-22 2024-10-11 00:51:34 +3096 3096 3097 309.6 619.2 3096 1978-06-24 2024-10-11 00:51:36.000 1978-06-24 2024-10-11 00:51:36 +3097 3097 3098 309.7 619.4000000000001 3097 1978-06-25 2024-10-11 00:51:37.000 1978-06-25 2024-10-11 00:51:37 +3098 3098 3099 309.8 619.6 3098 1978-06-26 2024-10-11 00:51:38.000 1978-06-26 2024-10-11 00:51:38 +3099 3099 3100 309.9 619.8000000000001 3099 1978-06-27 2024-10-11 00:51:39.000 1978-06-27 2024-10-11 00:51:39 +3101 3101 3102 310.1 620.2 3101 1978-06-29 2024-10-11 00:51:41.000 1978-06-29 2024-10-11 00:51:41 +3102 3102 3103 310.2 620.4000000000001 3102 1978-06-30 2024-10-11 00:51:42.000 1978-06-30 2024-10-11 00:51:42 +3103 3103 3104 310.3 620.6 3103 1978-07-01 2024-10-11 00:51:43.000 1978-07-01 2024-10-11 00:51:43 +3104 3104 3105 310.4 620.8000000000001 3104 1978-07-02 2024-10-11 00:51:44.000 1978-07-02 2024-10-11 00:51:44 +3106 3106 3107 310.6 621.2 3106 1978-07-04 2024-10-11 00:51:46.000 1978-07-04 2024-10-11 00:51:46 +3107 3107 3108 310.7 621.4000000000001 3107 1978-07-05 2024-10-11 00:51:47.000 1978-07-05 2024-10-11 00:51:47 +3108 3108 3109 310.8 621.6 3108 1978-07-06 2024-10-11 00:51:48.000 1978-07-06 2024-10-11 00:51:48 +3109 3109 3110 310.9 621.8000000000001 3109 1978-07-07 2024-10-11 00:51:49.000 1978-07-07 2024-10-11 00:51:49 +3111 3111 3112 311.1 622.2 3111 1978-07-09 2024-10-11 00:51:51.000 1978-07-09 2024-10-11 00:51:51 +3112 3112 3113 311.2 622.4000000000001 3112 1978-07-10 2024-10-11 00:51:52.000 1978-07-10 2024-10-11 00:51:52 +3113 3113 3114 311.3 622.6 3113 1978-07-11 2024-10-11 00:51:53.000 1978-07-11 2024-10-11 00:51:53 +3114 3114 3115 311.4 622.8000000000001 3114 1978-07-12 2024-10-11 00:51:54.000 1978-07-12 2024-10-11 00:51:54 +3116 3116 3117 311.6 623.2 3116 1978-07-14 2024-10-11 00:51:56.000 1978-07-14 2024-10-11 00:51:56 +3117 3117 3118 311.7 623.4000000000001 3117 1978-07-15 2024-10-11 00:51:57.000 1978-07-15 2024-10-11 00:51:57 +3118 3118 3119 311.8 623.6 3118 1978-07-16 2024-10-11 00:51:58.000 1978-07-16 2024-10-11 00:51:58 +3119 3119 3120 311.9 623.8000000000001 3119 1978-07-17 2024-10-11 00:51:59.000 1978-07-17 2024-10-11 00:51:59 +3121 3121 3122 312.1 624.2 3121 1978-07-19 2024-10-11 00:52:01.000 1978-07-19 2024-10-11 00:52:01 +3122 3122 3123 312.2 624.4000000000001 3122 1978-07-20 2024-10-11 00:52:02.000 1978-07-20 2024-10-11 00:52:02 +3123 3123 3124 312.3 624.6 3123 1978-07-21 2024-10-11 00:52:03.000 1978-07-21 2024-10-11 00:52:03 +3124 3124 3125 312.4 624.8000000000001 3124 1978-07-22 2024-10-11 00:52:04.000 1978-07-22 2024-10-11 00:52:04 +3126 3126 3127 312.6 625.2 3126 1978-07-24 2024-10-11 00:52:06.000 1978-07-24 2024-10-11 00:52:06 +3127 3127 3128 312.7 625.4000000000001 3127 1978-07-25 2024-10-11 00:52:07.000 1978-07-25 2024-10-11 00:52:07 +3128 3128 3129 312.8 625.6 3128 1978-07-26 2024-10-11 00:52:08.000 1978-07-26 2024-10-11 00:52:08 +3129 3129 3130 312.9 625.8000000000001 3129 1978-07-27 2024-10-11 00:52:09.000 1978-07-27 2024-10-11 00:52:09 +3131 3131 3132 313.1 626.2 3131 1978-07-29 2024-10-11 00:52:11.000 1978-07-29 2024-10-11 00:52:11 +3132 3132 3133 313.2 626.4000000000001 3132 1978-07-30 2024-10-11 00:52:12.000 1978-07-30 2024-10-11 00:52:12 +3133 3133 3134 313.3 626.6 3133 1978-07-31 2024-10-11 00:52:13.000 1978-07-31 2024-10-11 00:52:13 +3134 3134 3135 313.4 626.8000000000001 3134 1978-08-01 2024-10-11 00:52:14.000 1978-08-01 2024-10-11 00:52:14 +3136 3136 3137 313.6 627.2 3136 1978-08-03 2024-10-11 00:52:16.000 1978-08-03 2024-10-11 00:52:16 +3137 3137 3138 313.7 627.4000000000001 3137 1978-08-04 2024-10-11 00:52:17.000 1978-08-04 2024-10-11 00:52:17 +3138 3138 3139 313.8 627.6 3138 1978-08-05 2024-10-11 00:52:18.000 1978-08-05 2024-10-11 00:52:18 +3139 3139 3140 313.9 627.8000000000001 3139 1978-08-06 2024-10-11 00:52:19.000 1978-08-06 2024-10-11 00:52:19 +3141 3141 3142 314.1 628.2 3141 1978-08-08 2024-10-11 00:52:21.000 1978-08-08 2024-10-11 00:52:21 +3142 3142 3143 314.2 628.4000000000001 3142 1978-08-09 2024-10-11 00:52:22.000 1978-08-09 2024-10-11 00:52:22 +3143 3143 3144 314.3 628.6 3143 1978-08-10 2024-10-11 00:52:23.000 1978-08-10 2024-10-11 00:52:23 +3144 3144 3145 314.4 628.8000000000001 3144 1978-08-11 2024-10-11 00:52:24.000 1978-08-11 2024-10-11 00:52:24 +3146 3146 3147 314.6 629.2 3146 1978-08-13 2024-10-11 00:52:26.000 1978-08-13 2024-10-11 00:52:26 +3147 3147 3148 314.7 629.4000000000001 3147 1978-08-14 2024-10-11 00:52:27.000 1978-08-14 2024-10-11 00:52:27 +3148 3148 3149 314.8 629.6 3148 1978-08-15 2024-10-11 00:52:28.000 1978-08-15 2024-10-11 00:52:28 +3149 3149 3150 314.9 629.8000000000001 3149 1978-08-16 2024-10-11 00:52:29.000 1978-08-16 2024-10-11 00:52:29 +3151 3151 3152 315.1 630.2 3151 1978-08-18 2024-10-11 00:52:31.000 1978-08-18 2024-10-11 00:52:31 +3152 3152 3153 315.2 630.4000000000001 3152 1978-08-19 2024-10-11 00:52:32.000 1978-08-19 2024-10-11 00:52:32 +3153 3153 3154 315.3 630.6 3153 1978-08-20 2024-10-11 00:52:33.000 1978-08-20 2024-10-11 00:52:33 +3154 3154 3155 315.4 630.8000000000001 3154 1978-08-21 2024-10-11 00:52:34.000 1978-08-21 2024-10-11 00:52:34 +3156 3156 3157 315.6 631.2 3156 1978-08-23 2024-10-11 00:52:36.000 1978-08-23 2024-10-11 00:52:36 +3157 3157 3158 315.7 631.4000000000001 3157 1978-08-24 2024-10-11 00:52:37.000 1978-08-24 2024-10-11 00:52:37 +3158 3158 3159 315.8 631.6 3158 1978-08-25 2024-10-11 00:52:38.000 1978-08-25 2024-10-11 00:52:38 +3159 3159 3160 315.9 631.8000000000001 3159 1978-08-26 2024-10-11 00:52:39.000 1978-08-26 2024-10-11 00:52:39 +3161 3161 3162 316.1 632.2 3161 1978-08-28 2024-10-11 00:52:41.000 1978-08-28 2024-10-11 00:52:41 +3162 3162 3163 316.2 632.4000000000001 3162 1978-08-29 2024-10-11 00:52:42.000 1978-08-29 2024-10-11 00:52:42 +3163 3163 3164 316.3 632.6 3163 1978-08-30 2024-10-11 00:52:43.000 1978-08-30 2024-10-11 00:52:43 +3164 3164 3165 316.4 632.8000000000001 3164 1978-08-31 2024-10-11 00:52:44.000 1978-08-31 2024-10-11 00:52:44 +3166 3166 3167 316.6 633.2 3166 1978-09-02 2024-10-11 00:52:46.000 1978-09-02 2024-10-11 00:52:46 +3167 3167 3168 316.7 633.4000000000001 3167 1978-09-03 2024-10-11 00:52:47.000 1978-09-03 2024-10-11 00:52:47 +3168 3168 3169 316.8 633.6 3168 1978-09-04 2024-10-11 00:52:48.000 1978-09-04 2024-10-11 00:52:48 +3169 3169 3170 316.9 633.8000000000001 3169 1978-09-05 2024-10-11 00:52:49.000 1978-09-05 2024-10-11 00:52:49 +3171 3171 3172 317.1 634.2 3171 1978-09-07 2024-10-11 00:52:51.000 1978-09-07 2024-10-11 00:52:51 +3172 3172 3173 317.2 634.4000000000001 3172 1978-09-08 2024-10-11 00:52:52.000 1978-09-08 2024-10-11 00:52:52 +3173 3173 3174 317.3 634.6 3173 1978-09-09 2024-10-11 00:52:53.000 1978-09-09 2024-10-11 00:52:53 +3174 3174 3175 317.4 634.8000000000001 3174 1978-09-10 2024-10-11 00:52:54.000 1978-09-10 2024-10-11 00:52:54 +3176 3176 3177 317.6 635.2 3176 1978-09-12 2024-10-11 00:52:56.000 1978-09-12 2024-10-11 00:52:56 +3177 3177 3178 317.7 635.4000000000001 3177 1978-09-13 2024-10-11 00:52:57.000 1978-09-13 2024-10-11 00:52:57 +3178 3178 3179 317.8 635.6 3178 1978-09-14 2024-10-11 00:52:58.000 1978-09-14 2024-10-11 00:52:58 +3179 3179 3180 317.9 635.8000000000001 3179 1978-09-15 2024-10-11 00:52:59.000 1978-09-15 2024-10-11 00:52:59 +3181 3181 3182 318.1 636.2 3181 1978-09-17 2024-10-11 00:53:01.000 1978-09-17 2024-10-11 00:53:01 +3182 3182 3183 318.2 636.4000000000001 3182 1978-09-18 2024-10-11 00:53:02.000 1978-09-18 2024-10-11 00:53:02 +3183 3183 3184 318.3 636.6 3183 1978-09-19 2024-10-11 00:53:03.000 1978-09-19 2024-10-11 00:53:03 +3184 3184 3185 318.4 636.8000000000001 3184 1978-09-20 2024-10-11 00:53:04.000 1978-09-20 2024-10-11 00:53:04 +3186 3186 3187 318.6 637.2 3186 1978-09-22 2024-10-11 00:53:06.000 1978-09-22 2024-10-11 00:53:06 +3187 3187 3188 318.7 637.4000000000001 3187 1978-09-23 2024-10-11 00:53:07.000 1978-09-23 2024-10-11 00:53:07 +3188 3188 3189 318.8 637.6 3188 1978-09-24 2024-10-11 00:53:08.000 1978-09-24 2024-10-11 00:53:08 +3189 3189 3190 318.9 637.8000000000001 3189 1978-09-25 2024-10-11 00:53:09.000 1978-09-25 2024-10-11 00:53:09 +3191 3191 3192 319.1 638.2 3191 1978-09-27 2024-10-11 00:53:11.000 1978-09-27 2024-10-11 00:53:11 +3192 3192 3193 319.2 638.4000000000001 3192 1978-09-28 2024-10-11 00:53:12.000 1978-09-28 2024-10-11 00:53:12 +3193 3193 3194 319.3 638.6 3193 1978-09-29 2024-10-11 00:53:13.000 1978-09-29 2024-10-11 00:53:13 +3194 3194 3195 319.4 638.8000000000001 3194 1978-09-30 2024-10-11 00:53:14.000 1978-09-30 2024-10-11 00:53:14 +3196 3196 3197 319.6 639.2 3196 1978-10-02 2024-10-11 00:53:16.000 1978-10-02 2024-10-11 00:53:16 +3197 3197 3198 319.7 639.4000000000001 3197 1978-10-03 2024-10-11 00:53:17.000 1978-10-03 2024-10-11 00:53:17 +3198 3198 3199 319.8 639.6 3198 1978-10-04 2024-10-11 00:53:18.000 1978-10-04 2024-10-11 00:53:18 +3199 3199 3200 319.9 639.8000000000001 3199 1978-10-05 2024-10-11 00:53:19.000 1978-10-05 2024-10-11 00:53:19 +3201 3201 3202 320.1 640.2 3201 1978-10-07 2024-10-11 00:53:21.000 1978-10-07 2024-10-11 00:53:21 +3202 3202 3203 320.2 640.4000000000001 3202 1978-10-08 2024-10-11 00:53:22.000 1978-10-08 2024-10-11 00:53:22 +3203 3203 3204 320.3 640.6 3203 1978-10-09 2024-10-11 00:53:23.000 1978-10-09 2024-10-11 00:53:23 +3204 3204 3205 320.4 640.8000000000001 3204 1978-10-10 2024-10-11 00:53:24.000 1978-10-10 2024-10-11 00:53:24 +3206 3206 3207 320.6 641.2 3206 1978-10-12 2024-10-11 00:53:26.000 1978-10-12 2024-10-11 00:53:26 +3207 3207 3208 320.7 641.4000000000001 3207 1978-10-13 2024-10-11 00:53:27.000 1978-10-13 2024-10-11 00:53:27 +3208 3208 3209 320.8 641.6 3208 1978-10-14 2024-10-11 00:53:28.000 1978-10-14 2024-10-11 00:53:28 +3209 3209 3210 320.9 641.8000000000001 3209 1978-10-15 2024-10-11 00:53:29.000 1978-10-15 2024-10-11 00:53:29 +3211 3211 3212 321.1 642.2 3211 1978-10-17 2024-10-11 00:53:31.000 1978-10-17 2024-10-11 00:53:31 +3212 3212 3213 321.2 642.4000000000001 3212 1978-10-18 2024-10-11 00:53:32.000 1978-10-18 2024-10-11 00:53:32 +3213 3213 3214 321.3 642.6 3213 1978-10-19 2024-10-11 00:53:33.000 1978-10-19 2024-10-11 00:53:33 +3214 3214 3215 321.4 642.8000000000001 3214 1978-10-20 2024-10-11 00:53:34.000 1978-10-20 2024-10-11 00:53:34 +3216 3216 3217 321.6 643.2 3216 1978-10-22 2024-10-11 00:53:36.000 1978-10-22 2024-10-11 00:53:36 +3217 3217 3218 321.7 643.4000000000001 3217 1978-10-23 2024-10-11 00:53:37.000 1978-10-23 2024-10-11 00:53:37 +3218 3218 3219 321.8 643.6 3218 1978-10-24 2024-10-11 00:53:38.000 1978-10-24 2024-10-11 00:53:38 +3219 3219 3220 321.9 643.8000000000001 3219 1978-10-25 2024-10-11 00:53:39.000 1978-10-25 2024-10-11 00:53:39 +3221 3221 3222 322.1 644.2 3221 1978-10-27 2024-10-11 00:53:41.000 1978-10-27 2024-10-11 00:53:41 +3222 3222 3223 322.2 644.4000000000001 3222 1978-10-28 2024-10-11 00:53:42.000 1978-10-28 2024-10-11 00:53:42 +3223 3223 3224 322.3 644.6 3223 1978-10-29 2024-10-11 00:53:43.000 1978-10-29 2024-10-11 00:53:43 +3224 3224 3225 322.4 644.8000000000001 3224 1978-10-30 2024-10-11 00:53:44.000 1978-10-30 2024-10-11 00:53:44 +3226 3226 3227 322.6 645.2 3226 1978-11-01 2024-10-11 00:53:46.000 1978-11-01 2024-10-11 00:53:46 +3227 3227 3228 322.7 645.4000000000001 3227 1978-11-02 2024-10-11 00:53:47.000 1978-11-02 2024-10-11 00:53:47 +3228 3228 3229 322.8 645.6 3228 1978-11-03 2024-10-11 00:53:48.000 1978-11-03 2024-10-11 00:53:48 +3229 3229 3230 322.9 645.8000000000001 3229 1978-11-04 2024-10-11 00:53:49.000 1978-11-04 2024-10-11 00:53:49 +3231 3231 3232 323.1 646.2 3231 1978-11-06 2024-10-11 00:53:51.000 1978-11-06 2024-10-11 00:53:51 +3232 3232 3233 323.2 646.4000000000001 3232 1978-11-07 2024-10-11 00:53:52.000 1978-11-07 2024-10-11 00:53:52 +3233 3233 3234 323.3 646.6 3233 1978-11-08 2024-10-11 00:53:53.000 1978-11-08 2024-10-11 00:53:53 +3234 3234 3235 323.4 646.8000000000001 3234 1978-11-09 2024-10-11 00:53:54.000 1978-11-09 2024-10-11 00:53:54 +3236 3236 3237 323.6 647.2 3236 1978-11-11 2024-10-11 00:53:56.000 1978-11-11 2024-10-11 00:53:56 +3237 3237 3238 323.7 647.4000000000001 3237 1978-11-12 2024-10-11 00:53:57.000 1978-11-12 2024-10-11 00:53:57 +3238 3238 3239 323.8 647.6 3238 1978-11-13 2024-10-11 00:53:58.000 1978-11-13 2024-10-11 00:53:58 +3239 3239 3240 323.9 647.8000000000001 3239 1978-11-14 2024-10-11 00:53:59.000 1978-11-14 2024-10-11 00:53:59 +3241 3241 3242 324.1 648.2 3241 1978-11-16 2024-10-11 00:54:01.000 1978-11-16 2024-10-11 00:54:01 +3242 3242 3243 324.2 648.4000000000001 3242 1978-11-17 2024-10-11 00:54:02.000 1978-11-17 2024-10-11 00:54:02 +3243 3243 3244 324.3 648.6 3243 1978-11-18 2024-10-11 00:54:03.000 1978-11-18 2024-10-11 00:54:03 +3244 3244 3245 324.4 648.8000000000001 3244 1978-11-19 2024-10-11 00:54:04.000 1978-11-19 2024-10-11 00:54:04 +3246 3246 3247 324.6 649.2 3246 1978-11-21 2024-10-11 00:54:06.000 1978-11-21 2024-10-11 00:54:06 +3247 3247 3248 324.7 649.4000000000001 3247 1978-11-22 2024-10-11 00:54:07.000 1978-11-22 2024-10-11 00:54:07 +3248 3248 3249 324.8 649.6 3248 1978-11-23 2024-10-11 00:54:08.000 1978-11-23 2024-10-11 00:54:08 +3249 3249 3250 324.9 649.8000000000001 3249 1978-11-24 2024-10-11 00:54:09.000 1978-11-24 2024-10-11 00:54:09 +3251 3251 3252 325.1 650.2 3251 1978-11-26 2024-10-11 00:54:11.000 1978-11-26 2024-10-11 00:54:11 +3252 3252 3253 325.2 650.4000000000001 3252 1978-11-27 2024-10-11 00:54:12.000 1978-11-27 2024-10-11 00:54:12 +3253 3253 3254 325.3 650.6 3253 1978-11-28 2024-10-11 00:54:13.000 1978-11-28 2024-10-11 00:54:13 +3254 3254 3255 325.4 650.8000000000001 3254 1978-11-29 2024-10-11 00:54:14.000 1978-11-29 2024-10-11 00:54:14 +3256 3256 3257 325.6 651.2 3256 1978-12-01 2024-10-11 00:54:16.000 1978-12-01 2024-10-11 00:54:16 +3257 3257 3258 325.7 651.4000000000001 3257 1978-12-02 2024-10-11 00:54:17.000 1978-12-02 2024-10-11 00:54:17 +3258 3258 3259 325.8 651.6 3258 1978-12-03 2024-10-11 00:54:18.000 1978-12-03 2024-10-11 00:54:18 +3259 3259 3260 325.9 651.8000000000001 3259 1978-12-04 2024-10-11 00:54:19.000 1978-12-04 2024-10-11 00:54:19 +3261 3261 3262 326.1 652.2 3261 1978-12-06 2024-10-11 00:54:21.000 1978-12-06 2024-10-11 00:54:21 +3262 3262 3263 326.2 652.4000000000001 3262 1978-12-07 2024-10-11 00:54:22.000 1978-12-07 2024-10-11 00:54:22 +3263 3263 3264 326.3 652.6 3263 1978-12-08 2024-10-11 00:54:23.000 1978-12-08 2024-10-11 00:54:23 +3264 3264 3265 326.4 652.8000000000001 3264 1978-12-09 2024-10-11 00:54:24.000 1978-12-09 2024-10-11 00:54:24 +3266 3266 3267 326.6 653.2 3266 1978-12-11 2024-10-11 00:54:26.000 1978-12-11 2024-10-11 00:54:26 +3267 3267 3268 326.7 653.4000000000001 3267 1978-12-12 2024-10-11 00:54:27.000 1978-12-12 2024-10-11 00:54:27 +3268 3268 3269 326.8 653.6 3268 1978-12-13 2024-10-11 00:54:28.000 1978-12-13 2024-10-11 00:54:28 +3269 3269 3270 326.9 653.8000000000001 3269 1978-12-14 2024-10-11 00:54:29.000 1978-12-14 2024-10-11 00:54:29 +3271 3271 3272 327.1 654.2 3271 1978-12-16 2024-10-11 00:54:31.000 1978-12-16 2024-10-11 00:54:31 +3272 3272 3273 327.2 654.4000000000001 3272 1978-12-17 2024-10-11 00:54:32.000 1978-12-17 2024-10-11 00:54:32 +3273 3273 3274 327.3 654.6 3273 1978-12-18 2024-10-11 00:54:33.000 1978-12-18 2024-10-11 00:54:33 +3274 3274 3275 327.4 654.8000000000001 3274 1978-12-19 2024-10-11 00:54:34.000 1978-12-19 2024-10-11 00:54:34 +3276 3276 3277 327.6 655.2 3276 1978-12-21 2024-10-11 00:54:36.000 1978-12-21 2024-10-11 00:54:36 +3277 3277 3278 327.7 655.4000000000001 3277 1978-12-22 2024-10-11 00:54:37.000 1978-12-22 2024-10-11 00:54:37 +3278 3278 3279 327.8 655.6 3278 1978-12-23 2024-10-11 00:54:38.000 1978-12-23 2024-10-11 00:54:38 +3279 3279 3280 327.9 655.8000000000001 3279 1978-12-24 2024-10-11 00:54:39.000 1978-12-24 2024-10-11 00:54:39 +3281 3281 3282 328.1 656.2 3281 1978-12-26 2024-10-11 00:54:41.000 1978-12-26 2024-10-11 00:54:41 +3282 3282 3283 328.2 656.4000000000001 3282 1978-12-27 2024-10-11 00:54:42.000 1978-12-27 2024-10-11 00:54:42 +3283 3283 3284 328.3 656.6 3283 1978-12-28 2024-10-11 00:54:43.000 1978-12-28 2024-10-11 00:54:43 +3284 3284 3285 328.4 656.8000000000001 3284 1978-12-29 2024-10-11 00:54:44.000 1978-12-29 2024-10-11 00:54:44 +3286 3286 3287 328.6 657.2 3286 1978-12-31 2024-10-11 00:54:46.000 1978-12-31 2024-10-11 00:54:46 +3287 3287 3288 328.7 657.4000000000001 3287 1979-01-01 2024-10-11 00:54:47.000 1979-01-01 2024-10-11 00:54:47 +3288 3288 3289 328.8 657.6 3288 1979-01-02 2024-10-11 00:54:48.000 1979-01-02 2024-10-11 00:54:48 +3289 3289 3290 328.9 657.8000000000001 3289 1979-01-03 2024-10-11 00:54:49.000 1979-01-03 2024-10-11 00:54:49 +3291 3291 3292 329.1 658.2 3291 1979-01-05 2024-10-11 00:54:51.000 1979-01-05 2024-10-11 00:54:51 +3292 3292 3293 329.2 658.4000000000001 3292 1979-01-06 2024-10-11 00:54:52.000 1979-01-06 2024-10-11 00:54:52 +3293 3293 3294 329.3 658.6 3293 1979-01-07 2024-10-11 00:54:53.000 1979-01-07 2024-10-11 00:54:53 +3294 3294 3295 329.4 658.8000000000001 3294 1979-01-08 2024-10-11 00:54:54.000 1979-01-08 2024-10-11 00:54:54 +3296 3296 3297 329.6 659.2 3296 1979-01-10 2024-10-11 00:54:56.000 1979-01-10 2024-10-11 00:54:56 +3297 3297 3298 329.7 659.4000000000001 3297 1979-01-11 2024-10-11 00:54:57.000 1979-01-11 2024-10-11 00:54:57 +3298 3298 3299 329.8 659.6 3298 1979-01-12 2024-10-11 00:54:58.000 1979-01-12 2024-10-11 00:54:58 +3299 3299 3300 329.9 659.8000000000001 3299 1979-01-13 2024-10-11 00:54:59.000 1979-01-13 2024-10-11 00:54:59 +3301 3301 3302 330.1 660.2 3301 1979-01-15 2024-10-11 00:55:01.000 1979-01-15 2024-10-11 00:55:01 +3302 3302 3303 330.2 660.4000000000001 3302 1979-01-16 2024-10-11 00:55:02.000 1979-01-16 2024-10-11 00:55:02 +3303 3303 3304 330.3 660.6 3303 1979-01-17 2024-10-11 00:55:03.000 1979-01-17 2024-10-11 00:55:03 +3304 3304 3305 330.4 660.8000000000001 3304 1979-01-18 2024-10-11 00:55:04.000 1979-01-18 2024-10-11 00:55:04 +3306 3306 3307 330.6 661.2 3306 1979-01-20 2024-10-11 00:55:06.000 1979-01-20 2024-10-11 00:55:06 +3307 3307 3308 330.7 661.4000000000001 3307 1979-01-21 2024-10-11 00:55:07.000 1979-01-21 2024-10-11 00:55:07 +3308 3308 3309 330.8 661.6 3308 1979-01-22 2024-10-11 00:55:08.000 1979-01-22 2024-10-11 00:55:08 +3309 3309 3310 330.9 661.8000000000001 3309 1979-01-23 2024-10-11 00:55:09.000 1979-01-23 2024-10-11 00:55:09 +3311 3311 3312 331.1 662.2 3311 1979-01-25 2024-10-11 00:55:11.000 1979-01-25 2024-10-11 00:55:11 +3312 3312 3313 331.2 662.4000000000001 3312 1979-01-26 2024-10-11 00:55:12.000 1979-01-26 2024-10-11 00:55:12 +3313 3313 3314 331.3 662.6 3313 1979-01-27 2024-10-11 00:55:13.000 1979-01-27 2024-10-11 00:55:13 +3314 3314 3315 331.4 662.8000000000001 3314 1979-01-28 2024-10-11 00:55:14.000 1979-01-28 2024-10-11 00:55:14 +3316 3316 3317 331.6 663.2 3316 1979-01-30 2024-10-11 00:55:16.000 1979-01-30 2024-10-11 00:55:16 +3317 3317 3318 331.7 663.4000000000001 3317 1979-01-31 2024-10-11 00:55:17.000 1979-01-31 2024-10-11 00:55:17 +3318 3318 3319 331.8 663.6 3318 1979-02-01 2024-10-11 00:55:18.000 1979-02-01 2024-10-11 00:55:18 +3319 3319 3320 331.9 663.8000000000001 3319 1979-02-02 2024-10-11 00:55:19.000 1979-02-02 2024-10-11 00:55:19 +3321 3321 3322 332.1 664.2 3321 1979-02-04 2024-10-11 00:55:21.000 1979-02-04 2024-10-11 00:55:21 +3322 3322 3323 332.2 664.4000000000001 3322 1979-02-05 2024-10-11 00:55:22.000 1979-02-05 2024-10-11 00:55:22 +3323 3323 3324 332.3 664.6 3323 1979-02-06 2024-10-11 00:55:23.000 1979-02-06 2024-10-11 00:55:23 +3324 3324 3325 332.4 664.8000000000001 3324 1979-02-07 2024-10-11 00:55:24.000 1979-02-07 2024-10-11 00:55:24 +3326 3326 3327 332.6 665.2 3326 1979-02-09 2024-10-11 00:55:26.000 1979-02-09 2024-10-11 00:55:26 +3327 3327 3328 332.7 665.4000000000001 3327 1979-02-10 2024-10-11 00:55:27.000 1979-02-10 2024-10-11 00:55:27 +3328 3328 3329 332.8 665.6 3328 1979-02-11 2024-10-11 00:55:28.000 1979-02-11 2024-10-11 00:55:28 +3329 3329 3330 332.9 665.8000000000001 3329 1979-02-12 2024-10-11 00:55:29.000 1979-02-12 2024-10-11 00:55:29 +3331 3331 3332 333.1 666.2 3331 1979-02-14 2024-10-11 00:55:31.000 1979-02-14 2024-10-11 00:55:31 +3332 3332 3333 333.2 666.4000000000001 3332 1979-02-15 2024-10-11 00:55:32.000 1979-02-15 2024-10-11 00:55:32 +3333 3333 3334 333.3 666.6 3333 1979-02-16 2024-10-11 00:55:33.000 1979-02-16 2024-10-11 00:55:33 +3334 3334 3335 333.4 666.8000000000001 3334 1979-02-17 2024-10-11 00:55:34.000 1979-02-17 2024-10-11 00:55:34 +3336 3336 3337 333.6 667.2 3336 1979-02-19 2024-10-11 00:55:36.000 1979-02-19 2024-10-11 00:55:36 +3337 3337 3338 333.7 667.4000000000001 3337 1979-02-20 2024-10-11 00:55:37.000 1979-02-20 2024-10-11 00:55:37 +3338 3338 3339 333.8 667.6 3338 1979-02-21 2024-10-11 00:55:38.000 1979-02-21 2024-10-11 00:55:38 +3339 3339 3340 333.9 667.8000000000001 3339 1979-02-22 2024-10-11 00:55:39.000 1979-02-22 2024-10-11 00:55:39 +3341 3341 3342 334.1 668.2 3341 1979-02-24 2024-10-11 00:55:41.000 1979-02-24 2024-10-11 00:55:41 +3342 3342 3343 334.2 668.4000000000001 3342 1979-02-25 2024-10-11 00:55:42.000 1979-02-25 2024-10-11 00:55:42 +3343 3343 3344 334.3 668.6 3343 1979-02-26 2024-10-11 00:55:43.000 1979-02-26 2024-10-11 00:55:43 +3344 3344 3345 334.4 668.8000000000001 3344 1979-02-27 2024-10-11 00:55:44.000 1979-02-27 2024-10-11 00:55:44 +3346 3346 3347 334.6 669.2 3346 1979-03-01 2024-10-11 00:55:46.000 1979-03-01 2024-10-11 00:55:46 +3347 3347 3348 334.7 669.4000000000001 3347 1979-03-02 2024-10-11 00:55:47.000 1979-03-02 2024-10-11 00:55:47 +3348 3348 3349 334.8 669.6 3348 1979-03-03 2024-10-11 00:55:48.000 1979-03-03 2024-10-11 00:55:48 +3349 3349 3350 334.9 669.8000000000001 3349 1979-03-04 2024-10-11 00:55:49.000 1979-03-04 2024-10-11 00:55:49 +3351 3351 3352 335.1 670.2 3351 1979-03-06 2024-10-11 00:55:51.000 1979-03-06 2024-10-11 00:55:51 +3352 3352 3353 335.2 670.4000000000001 3352 1979-03-07 2024-10-11 00:55:52.000 1979-03-07 2024-10-11 00:55:52 +3353 3353 3354 335.3 670.6 3353 1979-03-08 2024-10-11 00:55:53.000 1979-03-08 2024-10-11 00:55:53 +3354 3354 3355 335.4 670.8000000000001 3354 1979-03-09 2024-10-11 00:55:54.000 1979-03-09 2024-10-11 00:55:54 +3356 3356 3357 335.6 671.2 3356 1979-03-11 2024-10-11 00:55:56.000 1979-03-11 2024-10-11 00:55:56 +3357 3357 3358 335.7 671.4000000000001 3357 1979-03-12 2024-10-11 00:55:57.000 1979-03-12 2024-10-11 00:55:57 +3358 3358 3359 335.8 671.6 3358 1979-03-13 2024-10-11 00:55:58.000 1979-03-13 2024-10-11 00:55:58 +3359 3359 3360 335.9 671.8000000000001 3359 1979-03-14 2024-10-11 00:55:59.000 1979-03-14 2024-10-11 00:55:59 +3361 3361 3362 336.1 672.2 3361 1979-03-16 2024-10-11 00:56:01.000 1979-03-16 2024-10-11 00:56:01 +3362 3362 3363 336.2 672.4000000000001 3362 1979-03-17 2024-10-11 00:56:02.000 1979-03-17 2024-10-11 00:56:02 +3363 3363 3364 336.3 672.6 3363 1979-03-18 2024-10-11 00:56:03.000 1979-03-18 2024-10-11 00:56:03 +3364 3364 3365 336.4 672.8000000000001 3364 1979-03-19 2024-10-11 00:56:04.000 1979-03-19 2024-10-11 00:56:04 +3366 3366 3367 336.6 673.2 3366 1979-03-21 2024-10-11 00:56:06.000 1979-03-21 2024-10-11 00:56:06 +3367 3367 3368 336.7 673.4000000000001 3367 1979-03-22 2024-10-11 00:56:07.000 1979-03-22 2024-10-11 00:56:07 +3368 3368 3369 336.8 673.6 3368 1979-03-23 2024-10-11 00:56:08.000 1979-03-23 2024-10-11 00:56:08 +3369 3369 3370 336.9 673.8000000000001 3369 1979-03-24 2024-10-11 00:56:09.000 1979-03-24 2024-10-11 00:56:09 +3371 3371 3372 337.1 674.2 3371 1979-03-26 2024-10-11 00:56:11.000 1979-03-26 2024-10-11 00:56:11 +3372 3372 3373 337.2 674.4000000000001 3372 1979-03-27 2024-10-11 00:56:12.000 1979-03-27 2024-10-11 00:56:12 +3373 3373 3374 337.3 674.6 3373 1979-03-28 2024-10-11 00:56:13.000 1979-03-28 2024-10-11 00:56:13 +3374 3374 3375 337.4 674.8000000000001 3374 1979-03-29 2024-10-11 00:56:14.000 1979-03-29 2024-10-11 00:56:14 +3376 3376 3377 337.6 675.2 3376 1979-03-31 2024-10-11 00:56:16.000 1979-03-31 2024-10-11 00:56:16 +3377 3377 3378 337.7 675.4000000000001 3377 1979-04-01 2024-10-11 00:56:17.000 1979-04-01 2024-10-11 00:56:17 +3378 3378 3379 337.8 675.6 3378 1979-04-02 2024-10-11 00:56:18.000 1979-04-02 2024-10-11 00:56:18 +3379 3379 3380 337.9 675.8000000000001 3379 1979-04-03 2024-10-11 00:56:19.000 1979-04-03 2024-10-11 00:56:19 +3381 3381 3382 338.1 676.2 3381 1979-04-05 2024-10-11 00:56:21.000 1979-04-05 2024-10-11 00:56:21 +3382 3382 3383 338.2 676.4000000000001 3382 1979-04-06 2024-10-11 00:56:22.000 1979-04-06 2024-10-11 00:56:22 +3383 3383 3384 338.3 676.6 3383 1979-04-07 2024-10-11 00:56:23.000 1979-04-07 2024-10-11 00:56:23 +3384 3384 3385 338.4 676.8000000000001 3384 1979-04-08 2024-10-11 00:56:24.000 1979-04-08 2024-10-11 00:56:24 +3386 3386 3387 338.6 677.2 3386 1979-04-10 2024-10-11 00:56:26.000 1979-04-10 2024-10-11 00:56:26 +3387 3387 3388 338.7 677.4000000000001 3387 1979-04-11 2024-10-11 00:56:27.000 1979-04-11 2024-10-11 00:56:27 +3388 3388 3389 338.8 677.6 3388 1979-04-12 2024-10-11 00:56:28.000 1979-04-12 2024-10-11 00:56:28 +3389 3389 3390 338.9 677.8000000000001 3389 1979-04-13 2024-10-11 00:56:29.000 1979-04-13 2024-10-11 00:56:29 +3391 3391 3392 339.1 678.2 3391 1979-04-15 2024-10-11 00:56:31.000 1979-04-15 2024-10-11 00:56:31 +3392 3392 3393 339.2 678.4000000000001 3392 1979-04-16 2024-10-11 00:56:32.000 1979-04-16 2024-10-11 00:56:32 +3393 3393 3394 339.3 678.6 3393 1979-04-17 2024-10-11 00:56:33.000 1979-04-17 2024-10-11 00:56:33 +3394 3394 3395 339.4 678.8000000000001 3394 1979-04-18 2024-10-11 00:56:34.000 1979-04-18 2024-10-11 00:56:34 +3396 3396 3397 339.6 679.2 3396 1979-04-20 2024-10-11 00:56:36.000 1979-04-20 2024-10-11 00:56:36 +3397 3397 3398 339.7 679.4000000000001 3397 1979-04-21 2024-10-11 00:56:37.000 1979-04-21 2024-10-11 00:56:37 +3398 3398 3399 339.8 679.6 3398 1979-04-22 2024-10-11 00:56:38.000 1979-04-22 2024-10-11 00:56:38 +3399 3399 3400 339.9 679.8000000000001 3399 1979-04-23 2024-10-11 00:56:39.000 1979-04-23 2024-10-11 00:56:39 +3401 3401 3402 340.1 680.2 3401 1979-04-25 2024-10-11 00:56:41.000 1979-04-25 2024-10-11 00:56:41 +3402 3402 3403 340.2 680.4000000000001 3402 1979-04-26 2024-10-11 00:56:42.000 1979-04-26 2024-10-11 00:56:42 +3403 3403 3404 340.3 680.6 3403 1979-04-27 2024-10-11 00:56:43.000 1979-04-27 2024-10-11 00:56:43 +3404 3404 3405 340.4 680.8000000000001 3404 1979-04-28 2024-10-11 00:56:44.000 1979-04-28 2024-10-11 00:56:44 +3406 3406 3407 340.6 681.2 3406 1979-04-30 2024-10-11 00:56:46.000 1979-04-30 2024-10-11 00:56:46 +3407 3407 3408 340.7 681.4000000000001 3407 1979-05-01 2024-10-11 00:56:47.000 1979-05-01 2024-10-11 00:56:47 +3408 3408 3409 340.8 681.6 3408 1979-05-02 2024-10-11 00:56:48.000 1979-05-02 2024-10-11 00:56:48 +3409 3409 3410 340.9 681.8000000000001 3409 1979-05-03 2024-10-11 00:56:49.000 1979-05-03 2024-10-11 00:56:49 +3411 3411 3412 341.1 682.2 3411 1979-05-05 2024-10-11 00:56:51.000 1979-05-05 2024-10-11 00:56:51 +3412 3412 3413 341.2 682.4000000000001 3412 1979-05-06 2024-10-11 00:56:52.000 1979-05-06 2024-10-11 00:56:52 +3413 3413 3414 341.3 682.6 3413 1979-05-07 2024-10-11 00:56:53.000 1979-05-07 2024-10-11 00:56:53 +3414 3414 3415 341.4 682.8000000000001 3414 1979-05-08 2024-10-11 00:56:54.000 1979-05-08 2024-10-11 00:56:54 +3416 3416 3417 341.6 683.2 3416 1979-05-10 2024-10-11 00:56:56.000 1979-05-10 2024-10-11 00:56:56 +3417 3417 3418 341.7 683.4000000000001 3417 1979-05-11 2024-10-11 00:56:57.000 1979-05-11 2024-10-11 00:56:57 +3418 3418 3419 341.8 683.6 3418 1979-05-12 2024-10-11 00:56:58.000 1979-05-12 2024-10-11 00:56:58 +3419 3419 3420 341.9 683.8000000000001 3419 1979-05-13 2024-10-11 00:56:59.000 1979-05-13 2024-10-11 00:56:59 +3421 3421 3422 342.1 684.2 3421 1979-05-15 2024-10-11 00:57:01.000 1979-05-15 2024-10-11 00:57:01 +3422 3422 3423 342.2 684.4000000000001 3422 1979-05-16 2024-10-11 00:57:02.000 1979-05-16 2024-10-11 00:57:02 +3423 3423 3424 342.3 684.6 3423 1979-05-17 2024-10-11 00:57:03.000 1979-05-17 2024-10-11 00:57:03 +3424 3424 3425 342.4 684.8000000000001 3424 1979-05-18 2024-10-11 00:57:04.000 1979-05-18 2024-10-11 00:57:04 +3426 3426 3427 342.6 685.2 3426 1979-05-20 2024-10-11 00:57:06.000 1979-05-20 2024-10-11 00:57:06 +3427 3427 3428 342.7 685.4000000000001 3427 1979-05-21 2024-10-11 00:57:07.000 1979-05-21 2024-10-11 00:57:07 +3428 3428 3429 342.8 685.6 3428 1979-05-22 2024-10-11 00:57:08.000 1979-05-22 2024-10-11 00:57:08 +3429 3429 3430 342.9 685.8000000000001 3429 1979-05-23 2024-10-11 00:57:09.000 1979-05-23 2024-10-11 00:57:09 +3431 3431 3432 343.1 686.2 3431 1979-05-25 2024-10-11 00:57:11.000 1979-05-25 2024-10-11 00:57:11 +3432 3432 3433 343.2 686.4000000000001 3432 1979-05-26 2024-10-11 00:57:12.000 1979-05-26 2024-10-11 00:57:12 +3433 3433 3434 343.3 686.6 3433 1979-05-27 2024-10-11 00:57:13.000 1979-05-27 2024-10-11 00:57:13 +3434 3434 3435 343.4 686.8000000000001 3434 1979-05-28 2024-10-11 00:57:14.000 1979-05-28 2024-10-11 00:57:14 +3436 3436 3437 343.6 687.2 3436 1979-05-30 2024-10-11 00:57:16.000 1979-05-30 2024-10-11 00:57:16 +3437 3437 3438 343.7 687.4000000000001 3437 1979-05-31 2024-10-11 00:57:17.000 1979-05-31 2024-10-11 00:57:17 +3438 3438 3439 343.8 687.6 3438 1979-06-01 2024-10-11 00:57:18.000 1979-06-01 2024-10-11 00:57:18 +3439 3439 3440 343.9 687.8000000000001 3439 1979-06-02 2024-10-11 00:57:19.000 1979-06-02 2024-10-11 00:57:19 +3441 3441 3442 344.1 688.2 3441 1979-06-04 2024-10-11 00:57:21.000 1979-06-04 2024-10-11 00:57:21 +3442 3442 3443 344.2 688.4000000000001 3442 1979-06-05 2024-10-11 00:57:22.000 1979-06-05 2024-10-11 00:57:22 +3443 3443 3444 344.3 688.6 3443 1979-06-06 2024-10-11 00:57:23.000 1979-06-06 2024-10-11 00:57:23 +3444 3444 3445 344.4 688.8000000000001 3444 1979-06-07 2024-10-11 00:57:24.000 1979-06-07 2024-10-11 00:57:24 +3446 3446 3447 344.6 689.2 3446 1979-06-09 2024-10-11 00:57:26.000 1979-06-09 2024-10-11 00:57:26 +3447 3447 3448 344.7 689.4000000000001 3447 1979-06-10 2024-10-11 00:57:27.000 1979-06-10 2024-10-11 00:57:27 +3448 3448 3449 344.8 689.6 3448 1979-06-11 2024-10-11 00:57:28.000 1979-06-11 2024-10-11 00:57:28 +3449 3449 3450 344.9 689.8000000000001 3449 1979-06-12 2024-10-11 00:57:29.000 1979-06-12 2024-10-11 00:57:29 +3451 3451 3452 345.1 690.2 3451 1979-06-14 2024-10-11 00:57:31.000 1979-06-14 2024-10-11 00:57:31 +3452 3452 3453 345.2 690.4000000000001 3452 1979-06-15 2024-10-11 00:57:32.000 1979-06-15 2024-10-11 00:57:32 +3453 3453 3454 345.3 690.6 3453 1979-06-16 2024-10-11 00:57:33.000 1979-06-16 2024-10-11 00:57:33 +3454 3454 3455 345.4 690.8000000000001 3454 1979-06-17 2024-10-11 00:57:34.000 1979-06-17 2024-10-11 00:57:34 +3456 3456 3457 345.6 691.2 3456 1979-06-19 2024-10-11 00:57:36.000 1979-06-19 2024-10-11 00:57:36 +3457 3457 3458 345.7 691.4000000000001 3457 1979-06-20 2024-10-11 00:57:37.000 1979-06-20 2024-10-11 00:57:37 +3458 3458 3459 345.8 691.6 3458 1979-06-21 2024-10-11 00:57:38.000 1979-06-21 2024-10-11 00:57:38 +3459 3459 3460 345.9 691.8000000000001 3459 1979-06-22 2024-10-11 00:57:39.000 1979-06-22 2024-10-11 00:57:39 +3461 3461 3462 346.1 692.2 3461 1979-06-24 2024-10-11 00:57:41.000 1979-06-24 2024-10-11 00:57:41 +3462 3462 3463 346.2 692.4000000000001 3462 1979-06-25 2024-10-11 00:57:42.000 1979-06-25 2024-10-11 00:57:42 +3463 3463 3464 346.3 692.6 3463 1979-06-26 2024-10-11 00:57:43.000 1979-06-26 2024-10-11 00:57:43 +3464 3464 3465 346.4 692.8000000000001 3464 1979-06-27 2024-10-11 00:57:44.000 1979-06-27 2024-10-11 00:57:44 +3466 3466 3467 346.6 693.2 3466 1979-06-29 2024-10-11 00:57:46.000 1979-06-29 2024-10-11 00:57:46 +3467 3467 3468 346.7 693.4000000000001 3467 1979-06-30 2024-10-11 00:57:47.000 1979-06-30 2024-10-11 00:57:47 +3468 3468 3469 346.8 693.6 3468 1979-07-01 2024-10-11 00:57:48.000 1979-07-01 2024-10-11 00:57:48 +3469 3469 3470 346.9 693.8000000000001 3469 1979-07-02 2024-10-11 00:57:49.000 1979-07-02 2024-10-11 00:57:49 +3471 3471 3472 347.1 694.2 3471 1979-07-04 2024-10-11 00:57:51.000 1979-07-04 2024-10-11 00:57:51 +3472 3472 3473 347.2 694.4000000000001 3472 1979-07-05 2024-10-11 00:57:52.000 1979-07-05 2024-10-11 00:57:52 +3473 3473 3474 347.3 694.6 3473 1979-07-06 2024-10-11 00:57:53.000 1979-07-06 2024-10-11 00:57:53 +3474 3474 3475 347.4 694.8000000000001 3474 1979-07-07 2024-10-11 00:57:54.000 1979-07-07 2024-10-11 00:57:54 +3476 3476 3477 347.6 695.2 3476 1979-07-09 2024-10-11 00:57:56.000 1979-07-09 2024-10-11 00:57:56 +3477 3477 3478 347.7 695.4000000000001 3477 1979-07-10 2024-10-11 00:57:57.000 1979-07-10 2024-10-11 00:57:57 +3478 3478 3479 347.8 695.6 3478 1979-07-11 2024-10-11 00:57:58.000 1979-07-11 2024-10-11 00:57:58 +3479 3479 3480 347.9 695.8000000000001 3479 1979-07-12 2024-10-11 00:57:59.000 1979-07-12 2024-10-11 00:57:59 +3481 3481 3482 348.1 696.2 3481 1979-07-14 2024-10-11 00:58:01.000 1979-07-14 2024-10-11 00:58:01 +3482 3482 3483 348.2 696.4000000000001 3482 1979-07-15 2024-10-11 00:58:02.000 1979-07-15 2024-10-11 00:58:02 +3483 3483 3484 348.3 696.6 3483 1979-07-16 2024-10-11 00:58:03.000 1979-07-16 2024-10-11 00:58:03 +3484 3484 3485 348.4 696.8000000000001 3484 1979-07-17 2024-10-11 00:58:04.000 1979-07-17 2024-10-11 00:58:04 +3486 3486 3487 348.6 697.2 3486 1979-07-19 2024-10-11 00:58:06.000 1979-07-19 2024-10-11 00:58:06 +3487 3487 3488 348.7 697.4000000000001 3487 1979-07-20 2024-10-11 00:58:07.000 1979-07-20 2024-10-11 00:58:07 +3488 3488 3489 348.8 697.6 3488 1979-07-21 2024-10-11 00:58:08.000 1979-07-21 2024-10-11 00:58:08 +3489 3489 3490 348.9 697.8000000000001 3489 1979-07-22 2024-10-11 00:58:09.000 1979-07-22 2024-10-11 00:58:09 +3491 3491 3492 349.1 698.2 3491 1979-07-24 2024-10-11 00:58:11.000 1979-07-24 2024-10-11 00:58:11 +3492 3492 3493 349.2 698.4000000000001 3492 1979-07-25 2024-10-11 00:58:12.000 1979-07-25 2024-10-11 00:58:12 +3493 3493 3494 349.3 698.6 3493 1979-07-26 2024-10-11 00:58:13.000 1979-07-26 2024-10-11 00:58:13 +3494 3494 3495 349.4 698.8000000000001 3494 1979-07-27 2024-10-11 00:58:14.000 1979-07-27 2024-10-11 00:58:14 +3496 3496 3497 349.6 699.2 3496 1979-07-29 2024-10-11 00:58:16.000 1979-07-29 2024-10-11 00:58:16 +3497 3497 3498 349.7 699.4000000000001 3497 1979-07-30 2024-10-11 00:58:17.000 1979-07-30 2024-10-11 00:58:17 +3498 3498 3499 349.8 699.6 3498 1979-07-31 2024-10-11 00:58:18.000 1979-07-31 2024-10-11 00:58:18 +3499 3499 3500 349.9 699.8000000000001 3499 1979-08-01 2024-10-11 00:58:19.000 1979-08-01 2024-10-11 00:58:19 +3501 3501 3502 350.1 700.2 3501 1979-08-03 2024-10-11 00:58:21.000 1979-08-03 2024-10-11 00:58:21 +3502 3502 3503 350.2 700.4000000000001 3502 1979-08-04 2024-10-11 00:58:22.000 1979-08-04 2024-10-11 00:58:22 +3503 3503 3504 350.3 700.6 3503 1979-08-05 2024-10-11 00:58:23.000 1979-08-05 2024-10-11 00:58:23 +3504 3504 3505 350.4 700.8000000000001 3504 1979-08-06 2024-10-11 00:58:24.000 1979-08-06 2024-10-11 00:58:24 +3506 3506 3507 350.6 701.2 3506 1979-08-08 2024-10-11 00:58:26.000 1979-08-08 2024-10-11 00:58:26 +3507 3507 3508 350.7 701.4000000000001 3507 1979-08-09 2024-10-11 00:58:27.000 1979-08-09 2024-10-11 00:58:27 +3508 3508 3509 350.8 701.6 3508 1979-08-10 2024-10-11 00:58:28.000 1979-08-10 2024-10-11 00:58:28 +3509 3509 3510 350.9 701.8000000000001 3509 1979-08-11 2024-10-11 00:58:29.000 1979-08-11 2024-10-11 00:58:29 +3511 3511 3512 351.1 702.2 3511 1979-08-13 2024-10-11 00:58:31.000 1979-08-13 2024-10-11 00:58:31 +3512 3512 3513 351.2 702.4000000000001 3512 1979-08-14 2024-10-11 00:58:32.000 1979-08-14 2024-10-11 00:58:32 +3513 3513 3514 351.3 702.6 3513 1979-08-15 2024-10-11 00:58:33.000 1979-08-15 2024-10-11 00:58:33 +3514 3514 3515 351.4 702.8000000000001 3514 1979-08-16 2024-10-11 00:58:34.000 1979-08-16 2024-10-11 00:58:34 +3516 3516 3517 351.6 703.2 3516 1979-08-18 2024-10-11 00:58:36.000 1979-08-18 2024-10-11 00:58:36 +3517 3517 3518 351.7 703.4000000000001 3517 1979-08-19 2024-10-11 00:58:37.000 1979-08-19 2024-10-11 00:58:37 +3518 3518 3519 351.8 703.6 3518 1979-08-20 2024-10-11 00:58:38.000 1979-08-20 2024-10-11 00:58:38 +3519 3519 3520 351.9 703.8000000000001 3519 1979-08-21 2024-10-11 00:58:39.000 1979-08-21 2024-10-11 00:58:39 +3521 3521 3522 352.1 704.2 3521 1979-08-23 2024-10-11 00:58:41.000 1979-08-23 2024-10-11 00:58:41 +3522 3522 3523 352.2 704.4000000000001 3522 1979-08-24 2024-10-11 00:58:42.000 1979-08-24 2024-10-11 00:58:42 +3523 3523 3524 352.3 704.6 3523 1979-08-25 2024-10-11 00:58:43.000 1979-08-25 2024-10-11 00:58:43 +3524 3524 3525 352.4 704.8000000000001 3524 1979-08-26 2024-10-11 00:58:44.000 1979-08-26 2024-10-11 00:58:44 +3526 3526 3527 352.6 705.2 3526 1979-08-28 2024-10-11 00:58:46.000 1979-08-28 2024-10-11 00:58:46 +3527 3527 3528 352.7 705.4000000000001 3527 1979-08-29 2024-10-11 00:58:47.000 1979-08-29 2024-10-11 00:58:47 +3528 3528 3529 352.8 705.6 3528 1979-08-30 2024-10-11 00:58:48.000 1979-08-30 2024-10-11 00:58:48 +3529 3529 3530 352.9 705.8000000000001 3529 1979-08-31 2024-10-11 00:58:49.000 1979-08-31 2024-10-11 00:58:49 +3531 3531 3532 353.1 706.2 3531 1979-09-02 2024-10-11 00:58:51.000 1979-09-02 2024-10-11 00:58:51 +3532 3532 3533 353.2 706.4000000000001 3532 1979-09-03 2024-10-11 00:58:52.000 1979-09-03 2024-10-11 00:58:52 +3533 3533 3534 353.3 706.6 3533 1979-09-04 2024-10-11 00:58:53.000 1979-09-04 2024-10-11 00:58:53 +3534 3534 3535 353.4 706.8000000000001 3534 1979-09-05 2024-10-11 00:58:54.000 1979-09-05 2024-10-11 00:58:54 +3536 3536 3537 353.6 707.2 3536 1979-09-07 2024-10-11 00:58:56.000 1979-09-07 2024-10-11 00:58:56 +3537 3537 3538 353.7 707.4000000000001 3537 1979-09-08 2024-10-11 00:58:57.000 1979-09-08 2024-10-11 00:58:57 +3538 3538 3539 353.8 707.6 3538 1979-09-09 2024-10-11 00:58:58.000 1979-09-09 2024-10-11 00:58:58 +3539 3539 3540 353.9 707.8000000000001 3539 1979-09-10 2024-10-11 00:58:59.000 1979-09-10 2024-10-11 00:58:59 +3541 3541 3542 354.1 708.2 3541 1979-09-12 2024-10-11 00:59:01.000 1979-09-12 2024-10-11 00:59:01 +3542 3542 3543 354.2 708.4000000000001 3542 1979-09-13 2024-10-11 00:59:02.000 1979-09-13 2024-10-11 00:59:02 +3543 3543 3544 354.3 708.6 3543 1979-09-14 2024-10-11 00:59:03.000 1979-09-14 2024-10-11 00:59:03 +3544 3544 3545 354.4 708.8000000000001 3544 1979-09-15 2024-10-11 00:59:04.000 1979-09-15 2024-10-11 00:59:04 +3546 3546 3547 354.6 709.2 3546 1979-09-17 2024-10-11 00:59:06.000 1979-09-17 2024-10-11 00:59:06 +3547 3547 3548 354.7 709.4000000000001 3547 1979-09-18 2024-10-11 00:59:07.000 1979-09-18 2024-10-11 00:59:07 +3548 3548 3549 354.8 709.6 3548 1979-09-19 2024-10-11 00:59:08.000 1979-09-19 2024-10-11 00:59:08 +3549 3549 3550 354.9 709.8000000000001 3549 1979-09-20 2024-10-11 00:59:09.000 1979-09-20 2024-10-11 00:59:09 +3551 3551 3552 355.1 710.2 3551 1979-09-22 2024-10-11 00:59:11.000 1979-09-22 2024-10-11 00:59:11 +3552 3552 3553 355.2 710.4000000000001 3552 1979-09-23 2024-10-11 00:59:12.000 1979-09-23 2024-10-11 00:59:12 +3553 3553 3554 355.3 710.6 3553 1979-09-24 2024-10-11 00:59:13.000 1979-09-24 2024-10-11 00:59:13 +3554 3554 3555 355.4 710.8000000000001 3554 1979-09-25 2024-10-11 00:59:14.000 1979-09-25 2024-10-11 00:59:14 +3556 3556 3557 355.6 711.2 3556 1979-09-27 2024-10-11 00:59:16.000 1979-09-27 2024-10-11 00:59:16 +3557 3557 3558 355.7 711.4000000000001 3557 1979-09-28 2024-10-11 00:59:17.000 1979-09-28 2024-10-11 00:59:17 +3558 3558 3559 355.8 711.6 3558 1979-09-29 2024-10-11 00:59:18.000 1979-09-29 2024-10-11 00:59:18 +3559 3559 3560 355.9 711.8000000000001 3559 1979-09-30 2024-10-11 00:59:19.000 1979-09-30 2024-10-11 00:59:19 +3561 3561 3562 356.1 712.2 3561 1979-10-02 2024-10-11 00:59:21.000 1979-10-02 2024-10-11 00:59:21 +3562 3562 3563 356.2 712.4000000000001 3562 1979-10-03 2024-10-11 00:59:22.000 1979-10-03 2024-10-11 00:59:22 +3563 3563 3564 356.3 712.6 3563 1979-10-04 2024-10-11 00:59:23.000 1979-10-04 2024-10-11 00:59:23 +3564 3564 3565 356.4 712.8000000000001 3564 1979-10-05 2024-10-11 00:59:24.000 1979-10-05 2024-10-11 00:59:24 +3566 3566 3567 356.6 713.2 3566 1979-10-07 2024-10-11 00:59:26.000 1979-10-07 2024-10-11 00:59:26 +3567 3567 3568 356.7 713.4000000000001 3567 1979-10-08 2024-10-11 00:59:27.000 1979-10-08 2024-10-11 00:59:27 +3568 3568 3569 356.8 713.6 3568 1979-10-09 2024-10-11 00:59:28.000 1979-10-09 2024-10-11 00:59:28 +3569 3569 3570 356.9 713.8000000000001 3569 1979-10-10 2024-10-11 00:59:29.000 1979-10-10 2024-10-11 00:59:29 +3571 3571 3572 357.1 714.2 3571 1979-10-12 2024-10-11 00:59:31.000 1979-10-12 2024-10-11 00:59:31 +3572 3572 3573 357.2 714.4000000000001 3572 1979-10-13 2024-10-11 00:59:32.000 1979-10-13 2024-10-11 00:59:32 +3573 3573 3574 357.3 714.6 3573 1979-10-14 2024-10-11 00:59:33.000 1979-10-14 2024-10-11 00:59:33 +3574 3574 3575 357.4 714.8000000000001 3574 1979-10-15 2024-10-11 00:59:34.000 1979-10-15 2024-10-11 00:59:34 +3576 3576 3577 357.6 715.2 3576 1979-10-17 2024-10-11 00:59:36.000 1979-10-17 2024-10-11 00:59:36 +3577 3577 3578 357.7 715.4000000000001 3577 1979-10-18 2024-10-11 00:59:37.000 1979-10-18 2024-10-11 00:59:37 +3578 3578 3579 357.8 715.6 3578 1979-10-19 2024-10-11 00:59:38.000 1979-10-19 2024-10-11 00:59:38 +3579 3579 3580 357.9 715.8000000000001 3579 1979-10-20 2024-10-11 00:59:39.000 1979-10-20 2024-10-11 00:59:39 +3581 3581 3582 358.1 716.2 3581 1979-10-22 2024-10-11 00:59:41.000 1979-10-22 2024-10-11 00:59:41 +3582 3582 3583 358.2 716.4000000000001 3582 1979-10-23 2024-10-11 00:59:42.000 1979-10-23 2024-10-11 00:59:42 +3583 3583 3584 358.3 716.6 3583 1979-10-24 2024-10-11 00:59:43.000 1979-10-24 2024-10-11 00:59:43 +3584 3584 3585 358.4 716.8000000000001 3584 1979-10-25 2024-10-11 00:59:44.000 1979-10-25 2024-10-11 00:59:44 +3586 3586 3587 358.6 717.2 3586 1979-10-27 2024-10-11 00:59:46.000 1979-10-27 2024-10-11 00:59:46 +3587 3587 3588 358.7 717.4000000000001 3587 1979-10-28 2024-10-11 00:59:47.000 1979-10-28 2024-10-11 00:59:47 +3588 3588 3589 358.8 717.6 3588 1979-10-29 2024-10-11 00:59:48.000 1979-10-29 2024-10-11 00:59:48 +3589 3589 3590 358.9 717.8000000000001 3589 1979-10-30 2024-10-11 00:59:49.000 1979-10-30 2024-10-11 00:59:49 +3591 3591 3592 359.1 718.2 3591 1979-11-01 2024-10-11 00:59:51.000 1979-11-01 2024-10-11 00:59:51 +3592 3592 3593 359.2 718.4000000000001 3592 1979-11-02 2024-10-11 00:59:52.000 1979-11-02 2024-10-11 00:59:52 +3593 3593 3594 359.3 718.6 3593 1979-11-03 2024-10-11 00:59:53.000 1979-11-03 2024-10-11 00:59:53 +3594 3594 3595 359.4 718.8000000000001 3594 1979-11-04 2024-10-11 00:59:54.000 1979-11-04 2024-10-11 00:59:54 +3596 3596 3597 359.6 719.2 3596 1979-11-06 2024-10-11 00:59:56.000 1979-11-06 2024-10-11 00:59:56 +3597 3597 3598 359.7 719.4000000000001 3597 1979-11-07 2024-10-11 00:59:57.000 1979-11-07 2024-10-11 00:59:57 +3598 3598 3599 359.8 719.6 3598 1979-11-08 2024-10-11 00:59:58.000 1979-11-08 2024-10-11 00:59:58 +3599 3599 3600 359.9 719.8000000000001 3599 1979-11-09 2024-10-11 00:59:59.000 1979-11-09 2024-10-11 00:59:59 +3601 3601 3602 360.1 720.2 3601 1979-11-11 2024-10-11 01:00:01.000 1979-11-11 2024-10-11 01:00:01 +3602 3602 3603 360.2 720.4000000000001 3602 1979-11-12 2024-10-11 01:00:02.000 1979-11-12 2024-10-11 01:00:02 +3603 3603 3604 360.3 720.6 3603 1979-11-13 2024-10-11 01:00:03.000 1979-11-13 2024-10-11 01:00:03 +3604 3604 3605 360.4 720.8000000000001 3604 1979-11-14 2024-10-11 01:00:04.000 1979-11-14 2024-10-11 01:00:04 +3606 3606 3607 360.6 721.2 3606 1979-11-16 2024-10-11 01:00:06.000 1979-11-16 2024-10-11 01:00:06 +3607 3607 3608 360.7 721.4000000000001 3607 1979-11-17 2024-10-11 01:00:07.000 1979-11-17 2024-10-11 01:00:07 +3608 3608 3609 360.8 721.6 3608 1979-11-18 2024-10-11 01:00:08.000 1979-11-18 2024-10-11 01:00:08 +3609 3609 3610 360.9 721.8000000000001 3609 1979-11-19 2024-10-11 01:00:09.000 1979-11-19 2024-10-11 01:00:09 +3611 3611 3612 361.1 722.2 3611 1979-11-21 2024-10-11 01:00:11.000 1979-11-21 2024-10-11 01:00:11 +3612 3612 3613 361.2 722.4000000000001 3612 1979-11-22 2024-10-11 01:00:12.000 1979-11-22 2024-10-11 01:00:12 +3613 3613 3614 361.3 722.6 3613 1979-11-23 2024-10-11 01:00:13.000 1979-11-23 2024-10-11 01:00:13 +3614 3614 3615 361.4 722.8000000000001 3614 1979-11-24 2024-10-11 01:00:14.000 1979-11-24 2024-10-11 01:00:14 +3616 3616 3617 361.6 723.2 3616 1979-11-26 2024-10-11 01:00:16.000 1979-11-26 2024-10-11 01:00:16 +3617 3617 3618 361.7 723.4000000000001 3617 1979-11-27 2024-10-11 01:00:17.000 1979-11-27 2024-10-11 01:00:17 +3618 3618 3619 361.8 723.6 3618 1979-11-28 2024-10-11 01:00:18.000 1979-11-28 2024-10-11 01:00:18 +3619 3619 3620 361.9 723.8000000000001 3619 1979-11-29 2024-10-11 01:00:19.000 1979-11-29 2024-10-11 01:00:19 +3621 3621 3622 362.1 724.2 3621 1979-12-01 2024-10-11 01:00:21.000 1979-12-01 2024-10-11 01:00:21 +3622 3622 3623 362.2 724.4000000000001 3622 1979-12-02 2024-10-11 01:00:22.000 1979-12-02 2024-10-11 01:00:22 +3623 3623 3624 362.3 724.6 3623 1979-12-03 2024-10-11 01:00:23.000 1979-12-03 2024-10-11 01:00:23 +3624 3624 3625 362.4 724.8000000000001 3624 1979-12-04 2024-10-11 01:00:24.000 1979-12-04 2024-10-11 01:00:24 +3626 3626 3627 362.6 725.2 3626 1979-12-06 2024-10-11 01:00:26.000 1979-12-06 2024-10-11 01:00:26 +3627 3627 3628 362.7 725.4000000000001 3627 1979-12-07 2024-10-11 01:00:27.000 1979-12-07 2024-10-11 01:00:27 +3628 3628 3629 362.8 725.6 3628 1979-12-08 2024-10-11 01:00:28.000 1979-12-08 2024-10-11 01:00:28 +3629 3629 3630 362.9 725.8000000000001 3629 1979-12-09 2024-10-11 01:00:29.000 1979-12-09 2024-10-11 01:00:29 +3631 3631 3632 363.1 726.2 3631 1979-12-11 2024-10-11 01:00:31.000 1979-12-11 2024-10-11 01:00:31 +3632 3632 3633 363.2 726.4000000000001 3632 1979-12-12 2024-10-11 01:00:32.000 1979-12-12 2024-10-11 01:00:32 +3633 3633 3634 363.3 726.6 3633 1979-12-13 2024-10-11 01:00:33.000 1979-12-13 2024-10-11 01:00:33 +3634 3634 3635 363.4 726.8000000000001 3634 1979-12-14 2024-10-11 01:00:34.000 1979-12-14 2024-10-11 01:00:34 +3636 3636 3637 363.6 727.2 3636 1979-12-16 2024-10-11 01:00:36.000 1979-12-16 2024-10-11 01:00:36 +3637 3637 3638 363.7 727.4000000000001 3637 1979-12-17 2024-10-11 01:00:37.000 1979-12-17 2024-10-11 01:00:37 +3638 3638 3639 363.8 727.6 3638 1979-12-18 2024-10-11 01:00:38.000 1979-12-18 2024-10-11 01:00:38 +3639 3639 3640 363.9 727.8000000000001 3639 1979-12-19 2024-10-11 01:00:39.000 1979-12-19 2024-10-11 01:00:39 +3641 3641 3642 364.1 728.2 3641 1979-12-21 2024-10-11 01:00:41.000 1979-12-21 2024-10-11 01:00:41 +3642 3642 3643 364.2 728.4000000000001 3642 1979-12-22 2024-10-11 01:00:42.000 1979-12-22 2024-10-11 01:00:42 +3643 3643 3644 364.3 728.6 3643 1979-12-23 2024-10-11 01:00:43.000 1979-12-23 2024-10-11 01:00:43 +3644 3644 3645 364.4 728.8000000000001 3644 1979-12-24 2024-10-11 01:00:44.000 1979-12-24 2024-10-11 01:00:44 +3646 3646 3647 364.6 729.2 3646 1979-12-26 2024-10-11 01:00:46.000 1979-12-26 2024-10-11 01:00:46 +3647 3647 3648 364.7 729.4000000000001 3647 1979-12-27 2024-10-11 01:00:47.000 1979-12-27 2024-10-11 01:00:47 +3648 3648 3649 364.8 729.6 3648 1979-12-28 2024-10-11 01:00:48.000 1979-12-28 2024-10-11 01:00:48 +3649 3649 3650 364.9 729.8000000000001 3649 1979-12-29 2024-10-11 01:00:49.000 1979-12-29 2024-10-11 01:00:49 +3651 3651 3652 365.1 730.2 3651 1979-12-31 2024-10-11 01:00:51.000 1979-12-31 2024-10-11 01:00:51 +3652 3652 3653 365.2 730.4000000000001 3652 1980-01-01 2024-10-11 01:00:52.000 1980-01-01 2024-10-11 01:00:52 +3653 3653 3654 365.3 730.6 3653 1980-01-02 2024-10-11 01:00:53.000 1980-01-02 2024-10-11 01:00:53 +3654 3654 3655 365.4 730.8000000000001 3654 1980-01-03 2024-10-11 01:00:54.000 1980-01-03 2024-10-11 01:00:54 +3656 3656 3657 365.6 731.2 3656 1980-01-05 2024-10-11 01:00:56.000 1980-01-05 2024-10-11 01:00:56 +3657 3657 3658 365.7 731.4000000000001 3657 1980-01-06 2024-10-11 01:00:57.000 1980-01-06 2024-10-11 01:00:57 +3658 3658 3659 365.8 731.6 3658 1980-01-07 2024-10-11 01:00:58.000 1980-01-07 2024-10-11 01:00:58 +3659 3659 3660 365.9 731.8000000000001 3659 1980-01-08 2024-10-11 01:00:59.000 1980-01-08 2024-10-11 01:00:59 +3661 3661 3662 366.1 732.2 3661 1980-01-10 2024-10-11 01:01:01.000 1980-01-10 2024-10-11 01:01:01 +3662 3662 3663 366.2 732.4000000000001 3662 1980-01-11 2024-10-11 01:01:02.000 1980-01-11 2024-10-11 01:01:02 +3663 3663 3664 366.3 732.6 3663 1980-01-12 2024-10-11 01:01:03.000 1980-01-12 2024-10-11 01:01:03 +3664 3664 3665 366.4 732.8000000000001 3664 1980-01-13 2024-10-11 01:01:04.000 1980-01-13 2024-10-11 01:01:04 +3666 3666 3667 366.6 733.2 3666 1980-01-15 2024-10-11 01:01:06.000 1980-01-15 2024-10-11 01:01:06 +3667 3667 3668 366.7 733.4000000000001 3667 1980-01-16 2024-10-11 01:01:07.000 1980-01-16 2024-10-11 01:01:07 +3668 3668 3669 366.8 733.6 3668 1980-01-17 2024-10-11 01:01:08.000 1980-01-17 2024-10-11 01:01:08 +3669 3669 3670 366.9 733.8000000000001 3669 1980-01-18 2024-10-11 01:01:09.000 1980-01-18 2024-10-11 01:01:09 +3671 3671 3672 367.1 734.2 3671 1980-01-20 2024-10-11 01:01:11.000 1980-01-20 2024-10-11 01:01:11 +3672 3672 3673 367.2 734.4000000000001 3672 1980-01-21 2024-10-11 01:01:12.000 1980-01-21 2024-10-11 01:01:12 +3673 3673 3674 367.3 734.6 3673 1980-01-22 2024-10-11 01:01:13.000 1980-01-22 2024-10-11 01:01:13 +3674 3674 3675 367.4 734.8000000000001 3674 1980-01-23 2024-10-11 01:01:14.000 1980-01-23 2024-10-11 01:01:14 +3676 3676 3677 367.6 735.2 3676 1980-01-25 2024-10-11 01:01:16.000 1980-01-25 2024-10-11 01:01:16 +3677 3677 3678 367.7 735.4000000000001 3677 1980-01-26 2024-10-11 01:01:17.000 1980-01-26 2024-10-11 01:01:17 +3678 3678 3679 367.8 735.6 3678 1980-01-27 2024-10-11 01:01:18.000 1980-01-27 2024-10-11 01:01:18 +3679 3679 3680 367.9 735.8000000000001 3679 1980-01-28 2024-10-11 01:01:19.000 1980-01-28 2024-10-11 01:01:19 +3681 3681 3682 368.1 736.2 3681 1980-01-30 2024-10-11 01:01:21.000 1980-01-30 2024-10-11 01:01:21 +3682 3682 3683 368.2 736.4000000000001 3682 1980-01-31 2024-10-11 01:01:22.000 1980-01-31 2024-10-11 01:01:22 +3683 3683 3684 368.3 736.6 3683 1980-02-01 2024-10-11 01:01:23.000 1980-02-01 2024-10-11 01:01:23 +3684 3684 3685 368.4 736.8000000000001 3684 1980-02-02 2024-10-11 01:01:24.000 1980-02-02 2024-10-11 01:01:24 +3686 3686 3687 368.6 737.2 3686 1980-02-04 2024-10-11 01:01:26.000 1980-02-04 2024-10-11 01:01:26 +3687 3687 3688 368.7 737.4000000000001 3687 1980-02-05 2024-10-11 01:01:27.000 1980-02-05 2024-10-11 01:01:27 +3688 3688 3689 368.8 737.6 3688 1980-02-06 2024-10-11 01:01:28.000 1980-02-06 2024-10-11 01:01:28 +3689 3689 3690 368.9 737.8000000000001 3689 1980-02-07 2024-10-11 01:01:29.000 1980-02-07 2024-10-11 01:01:29 +3691 3691 3692 369.1 738.2 3691 1980-02-09 2024-10-11 01:01:31.000 1980-02-09 2024-10-11 01:01:31 +3692 3692 3693 369.2 738.4000000000001 3692 1980-02-10 2024-10-11 01:01:32.000 1980-02-10 2024-10-11 01:01:32 +3693 3693 3694 369.3 738.6 3693 1980-02-11 2024-10-11 01:01:33.000 1980-02-11 2024-10-11 01:01:33 +3694 3694 3695 369.4 738.8000000000001 3694 1980-02-12 2024-10-11 01:01:34.000 1980-02-12 2024-10-11 01:01:34 +3696 3696 3697 369.6 739.2 3696 1980-02-14 2024-10-11 01:01:36.000 1980-02-14 2024-10-11 01:01:36 +3697 3697 3698 369.7 739.4000000000001 3697 1980-02-15 2024-10-11 01:01:37.000 1980-02-15 2024-10-11 01:01:37 +3698 3698 3699 369.8 739.6 3698 1980-02-16 2024-10-11 01:01:38.000 1980-02-16 2024-10-11 01:01:38 +3699 3699 3700 369.9 739.8000000000001 3699 1980-02-17 2024-10-11 01:01:39.000 1980-02-17 2024-10-11 01:01:39 +3701 3701 3702 370.1 740.2 3701 1980-02-19 2024-10-11 01:01:41.000 1980-02-19 2024-10-11 01:01:41 +3702 3702 3703 370.2 740.4000000000001 3702 1980-02-20 2024-10-11 01:01:42.000 1980-02-20 2024-10-11 01:01:42 +3703 3703 3704 370.3 740.6 3703 1980-02-21 2024-10-11 01:01:43.000 1980-02-21 2024-10-11 01:01:43 +3704 3704 3705 370.4 740.8000000000001 3704 1980-02-22 2024-10-11 01:01:44.000 1980-02-22 2024-10-11 01:01:44 +3706 3706 3707 370.6 741.2 3706 1980-02-24 2024-10-11 01:01:46.000 1980-02-24 2024-10-11 01:01:46 +3707 3707 3708 370.7 741.4000000000001 3707 1980-02-25 2024-10-11 01:01:47.000 1980-02-25 2024-10-11 01:01:47 +3708 3708 3709 370.8 741.6 3708 1980-02-26 2024-10-11 01:01:48.000 1980-02-26 2024-10-11 01:01:48 +3709 3709 3710 370.9 741.8000000000001 3709 1980-02-27 2024-10-11 01:01:49.000 1980-02-27 2024-10-11 01:01:49 +3711 3711 3712 371.1 742.2 3711 1980-02-29 2024-10-11 01:01:51.000 1980-02-29 2024-10-11 01:01:51 +3712 3712 3713 371.2 742.4000000000001 3712 1980-03-01 2024-10-11 01:01:52.000 1980-03-01 2024-10-11 01:01:52 +3713 3713 3714 371.3 742.6 3713 1980-03-02 2024-10-11 01:01:53.000 1980-03-02 2024-10-11 01:01:53 +3714 3714 3715 371.4 742.8000000000001 3714 1980-03-03 2024-10-11 01:01:54.000 1980-03-03 2024-10-11 01:01:54 +3716 3716 3717 371.6 743.2 3716 1980-03-05 2024-10-11 01:01:56.000 1980-03-05 2024-10-11 01:01:56 +3717 3717 3718 371.7 743.4000000000001 3717 1980-03-06 2024-10-11 01:01:57.000 1980-03-06 2024-10-11 01:01:57 +3718 3718 3719 371.8 743.6 3718 1980-03-07 2024-10-11 01:01:58.000 1980-03-07 2024-10-11 01:01:58 +3719 3719 3720 371.9 743.8000000000001 3719 1980-03-08 2024-10-11 01:01:59.000 1980-03-08 2024-10-11 01:01:59 +3721 3721 3722 372.1 744.2 3721 1980-03-10 2024-10-11 01:02:01.000 1980-03-10 2024-10-11 01:02:01 +3722 3722 3723 372.2 744.4000000000001 3722 1980-03-11 2024-10-11 01:02:02.000 1980-03-11 2024-10-11 01:02:02 +3723 3723 3724 372.3 744.6 3723 1980-03-12 2024-10-11 01:02:03.000 1980-03-12 2024-10-11 01:02:03 +3724 3724 3725 372.4 744.8000000000001 3724 1980-03-13 2024-10-11 01:02:04.000 1980-03-13 2024-10-11 01:02:04 +3726 3726 3727 372.6 745.2 3726 1980-03-15 2024-10-11 01:02:06.000 1980-03-15 2024-10-11 01:02:06 +3727 3727 3728 372.7 745.4000000000001 3727 1980-03-16 2024-10-11 01:02:07.000 1980-03-16 2024-10-11 01:02:07 +3728 3728 3729 372.8 745.6 3728 1980-03-17 2024-10-11 01:02:08.000 1980-03-17 2024-10-11 01:02:08 +3729 3729 3730 372.9 745.8000000000001 3729 1980-03-18 2024-10-11 01:02:09.000 1980-03-18 2024-10-11 01:02:09 +3731 3731 3732 373.1 746.2 3731 1980-03-20 2024-10-11 01:02:11.000 1980-03-20 2024-10-11 01:02:11 +3732 3732 3733 373.2 746.4000000000001 3732 1980-03-21 2024-10-11 01:02:12.000 1980-03-21 2024-10-11 01:02:12 +3733 3733 3734 373.3 746.6 3733 1980-03-22 2024-10-11 01:02:13.000 1980-03-22 2024-10-11 01:02:13 +3734 3734 3735 373.4 746.8000000000001 3734 1980-03-23 2024-10-11 01:02:14.000 1980-03-23 2024-10-11 01:02:14 +3736 3736 3737 373.6 747.2 3736 1980-03-25 2024-10-11 01:02:16.000 1980-03-25 2024-10-11 01:02:16 +3737 3737 3738 373.7 747.4000000000001 3737 1980-03-26 2024-10-11 01:02:17.000 1980-03-26 2024-10-11 01:02:17 +3738 3738 3739 373.8 747.6 3738 1980-03-27 2024-10-11 01:02:18.000 1980-03-27 2024-10-11 01:02:18 +3739 3739 3740 373.9 747.8000000000001 3739 1980-03-28 2024-10-11 01:02:19.000 1980-03-28 2024-10-11 01:02:19 +3741 3741 3742 374.1 748.2 3741 1980-03-30 2024-10-11 01:02:21.000 1980-03-30 2024-10-11 01:02:21 +3742 3742 3743 374.2 748.4000000000001 3742 1980-03-31 2024-10-11 01:02:22.000 1980-03-31 2024-10-11 01:02:22 +3743 3743 3744 374.3 748.6 3743 1980-04-01 2024-10-11 01:02:23.000 1980-04-01 2024-10-11 01:02:23 +3744 3744 3745 374.4 748.8000000000001 3744 1980-04-02 2024-10-11 01:02:24.000 1980-04-02 2024-10-11 01:02:24 +3746 3746 3747 374.6 749.2 3746 1980-04-04 2024-10-11 01:02:26.000 1980-04-04 2024-10-11 01:02:26 +3747 3747 3748 374.7 749.4000000000001 3747 1980-04-05 2024-10-11 01:02:27.000 1980-04-05 2024-10-11 01:02:27 +3748 3748 3749 374.8 749.6 3748 1980-04-06 2024-10-11 01:02:28.000 1980-04-06 2024-10-11 01:02:28 +3749 3749 3750 374.9 749.8000000000001 3749 1980-04-07 2024-10-11 01:02:29.000 1980-04-07 2024-10-11 01:02:29 +3751 3751 3752 375.1 750.2 3751 1980-04-09 2024-10-11 01:02:31.000 1980-04-09 2024-10-11 01:02:31 +3752 3752 3753 375.2 750.4000000000001 3752 1980-04-10 2024-10-11 01:02:32.000 1980-04-10 2024-10-11 01:02:32 +3753 3753 3754 375.3 750.6 3753 1980-04-11 2024-10-11 01:02:33.000 1980-04-11 2024-10-11 01:02:33 +3754 3754 3755 375.4 750.8000000000001 3754 1980-04-12 2024-10-11 01:02:34.000 1980-04-12 2024-10-11 01:02:34 +3756 3756 3757 375.6 751.2 3756 1980-04-14 2024-10-11 01:02:36.000 1980-04-14 2024-10-11 01:02:36 +3757 3757 3758 375.7 751.4000000000001 3757 1980-04-15 2024-10-11 01:02:37.000 1980-04-15 2024-10-11 01:02:37 +3758 3758 3759 375.8 751.6 3758 1980-04-16 2024-10-11 01:02:38.000 1980-04-16 2024-10-11 01:02:38 +3759 3759 3760 375.9 751.8000000000001 3759 1980-04-17 2024-10-11 01:02:39.000 1980-04-17 2024-10-11 01:02:39 +3761 3761 3762 376.1 752.2 3761 1980-04-19 2024-10-11 01:02:41.000 1980-04-19 2024-10-11 01:02:41 +3762 3762 3763 376.2 752.4000000000001 3762 1980-04-20 2024-10-11 01:02:42.000 1980-04-20 2024-10-11 01:02:42 +3763 3763 3764 376.3 752.6 3763 1980-04-21 2024-10-11 01:02:43.000 1980-04-21 2024-10-11 01:02:43 +3764 3764 3765 376.4 752.8000000000001 3764 1980-04-22 2024-10-11 01:02:44.000 1980-04-22 2024-10-11 01:02:44 +3766 3766 3767 376.6 753.2 3766 1980-04-24 2024-10-11 01:02:46.000 1980-04-24 2024-10-11 01:02:46 +3767 3767 3768 376.7 753.4000000000001 3767 1980-04-25 2024-10-11 01:02:47.000 1980-04-25 2024-10-11 01:02:47 +3768 3768 3769 376.8 753.6 3768 1980-04-26 2024-10-11 01:02:48.000 1980-04-26 2024-10-11 01:02:48 +3769 3769 3770 376.9 753.8000000000001 3769 1980-04-27 2024-10-11 01:02:49.000 1980-04-27 2024-10-11 01:02:49 +3771 3771 3772 377.1 754.2 3771 1980-04-29 2024-10-11 01:02:51.000 1980-04-29 2024-10-11 01:02:51 +3772 3772 3773 377.2 754.4000000000001 3772 1980-04-30 2024-10-11 01:02:52.000 1980-04-30 2024-10-11 01:02:52 +3773 3773 3774 377.3 754.6 3773 1980-05-01 2024-10-11 01:02:53.000 1980-05-01 2024-10-11 01:02:53 +3774 3774 3775 377.4 754.8000000000001 3774 1980-05-02 2024-10-11 01:02:54.000 1980-05-02 2024-10-11 01:02:54 +3776 3776 3777 377.6 755.2 3776 1980-05-04 2024-10-11 01:02:56.000 1980-05-04 2024-10-11 01:02:56 +3777 3777 3778 377.7 755.4000000000001 3777 1980-05-05 2024-10-11 01:02:57.000 1980-05-05 2024-10-11 01:02:57 +3778 3778 3779 377.8 755.6 3778 1980-05-06 2024-10-11 01:02:58.000 1980-05-06 2024-10-11 01:02:58 +3779 3779 3780 377.9 755.8000000000001 3779 1980-05-07 2024-10-11 01:02:59.000 1980-05-07 2024-10-11 01:02:59 +3781 3781 3782 378.1 756.2 3781 1980-05-09 2024-10-11 01:03:01.000 1980-05-09 2024-10-11 01:03:01 +3782 3782 3783 378.2 756.4000000000001 3782 1980-05-10 2024-10-11 01:03:02.000 1980-05-10 2024-10-11 01:03:02 +3783 3783 3784 378.3 756.6 3783 1980-05-11 2024-10-11 01:03:03.000 1980-05-11 2024-10-11 01:03:03 +3784 3784 3785 378.4 756.8000000000001 3784 1980-05-12 2024-10-11 01:03:04.000 1980-05-12 2024-10-11 01:03:04 +3786 3786 3787 378.6 757.2 3786 1980-05-14 2024-10-11 01:03:06.000 1980-05-14 2024-10-11 01:03:06 +3787 3787 3788 378.7 757.4000000000001 3787 1980-05-15 2024-10-11 01:03:07.000 1980-05-15 2024-10-11 01:03:07 +3788 3788 3789 378.8 757.6 3788 1980-05-16 2024-10-11 01:03:08.000 1980-05-16 2024-10-11 01:03:08 +3789 3789 3790 378.9 757.8000000000001 3789 1980-05-17 2024-10-11 01:03:09.000 1980-05-17 2024-10-11 01:03:09 +3791 3791 3792 379.1 758.2 3791 1980-05-19 2024-10-11 01:03:11.000 1980-05-19 2024-10-11 01:03:11 +3792 3792 3793 379.2 758.4000000000001 3792 1980-05-20 2024-10-11 01:03:12.000 1980-05-20 2024-10-11 01:03:12 +3793 3793 3794 379.3 758.6 3793 1980-05-21 2024-10-11 01:03:13.000 1980-05-21 2024-10-11 01:03:13 +3794 3794 3795 379.4 758.8000000000001 3794 1980-05-22 2024-10-11 01:03:14.000 1980-05-22 2024-10-11 01:03:14 +3796 3796 3797 379.6 759.2 3796 1980-05-24 2024-10-11 01:03:16.000 1980-05-24 2024-10-11 01:03:16 +3797 3797 3798 379.7 759.4000000000001 3797 1980-05-25 2024-10-11 01:03:17.000 1980-05-25 2024-10-11 01:03:17 +3798 3798 3799 379.8 759.6 3798 1980-05-26 2024-10-11 01:03:18.000 1980-05-26 2024-10-11 01:03:18 +3799 3799 3800 379.9 759.8000000000001 3799 1980-05-27 2024-10-11 01:03:19.000 1980-05-27 2024-10-11 01:03:19 +3801 3801 3802 380.1 760.2 3801 1980-05-29 2024-10-11 01:03:21.000 1980-05-29 2024-10-11 01:03:21 +3802 3802 3803 380.2 760.4000000000001 3802 1980-05-30 2024-10-11 01:03:22.000 1980-05-30 2024-10-11 01:03:22 +3803 3803 3804 380.3 760.6 3803 1980-05-31 2024-10-11 01:03:23.000 1980-05-31 2024-10-11 01:03:23 +3804 3804 3805 380.4 760.8000000000001 3804 1980-06-01 2024-10-11 01:03:24.000 1980-06-01 2024-10-11 01:03:24 +3806 3806 3807 380.6 761.2 3806 1980-06-03 2024-10-11 01:03:26.000 1980-06-03 2024-10-11 01:03:26 +3807 3807 3808 380.7 761.4000000000001 3807 1980-06-04 2024-10-11 01:03:27.000 1980-06-04 2024-10-11 01:03:27 +3808 3808 3809 380.8 761.6 3808 1980-06-05 2024-10-11 01:03:28.000 1980-06-05 2024-10-11 01:03:28 +3809 3809 3810 380.9 761.8000000000001 3809 1980-06-06 2024-10-11 01:03:29.000 1980-06-06 2024-10-11 01:03:29 +3811 3811 3812 381.1 762.2 3811 1980-06-08 2024-10-11 01:03:31.000 1980-06-08 2024-10-11 01:03:31 +3812 3812 3813 381.2 762.4000000000001 3812 1980-06-09 2024-10-11 01:03:32.000 1980-06-09 2024-10-11 01:03:32 +3813 3813 3814 381.3 762.6 3813 1980-06-10 2024-10-11 01:03:33.000 1980-06-10 2024-10-11 01:03:33 +3814 3814 3815 381.4 762.8000000000001 3814 1980-06-11 2024-10-11 01:03:34.000 1980-06-11 2024-10-11 01:03:34 +3816 3816 3817 381.6 763.2 3816 1980-06-13 2024-10-11 01:03:36.000 1980-06-13 2024-10-11 01:03:36 +3817 3817 3818 381.7 763.4000000000001 3817 1980-06-14 2024-10-11 01:03:37.000 1980-06-14 2024-10-11 01:03:37 +3818 3818 3819 381.8 763.6 3818 1980-06-15 2024-10-11 01:03:38.000 1980-06-15 2024-10-11 01:03:38 +3819 3819 3820 381.9 763.8000000000001 3819 1980-06-16 2024-10-11 01:03:39.000 1980-06-16 2024-10-11 01:03:39 +3821 3821 3822 382.1 764.2 3821 1980-06-18 2024-10-11 01:03:41.000 1980-06-18 2024-10-11 01:03:41 +3822 3822 3823 382.2 764.4000000000001 3822 1980-06-19 2024-10-11 01:03:42.000 1980-06-19 2024-10-11 01:03:42 +3823 3823 3824 382.3 764.6 3823 1980-06-20 2024-10-11 01:03:43.000 1980-06-20 2024-10-11 01:03:43 +3824 3824 3825 382.4 764.8000000000001 3824 1980-06-21 2024-10-11 01:03:44.000 1980-06-21 2024-10-11 01:03:44 +3826 3826 3827 382.6 765.2 3826 1980-06-23 2024-10-11 01:03:46.000 1980-06-23 2024-10-11 01:03:46 +3827 3827 3828 382.7 765.4000000000001 3827 1980-06-24 2024-10-11 01:03:47.000 1980-06-24 2024-10-11 01:03:47 +3828 3828 3829 382.8 765.6 3828 1980-06-25 2024-10-11 01:03:48.000 1980-06-25 2024-10-11 01:03:48 +3829 3829 3830 382.9 765.8000000000001 3829 1980-06-26 2024-10-11 01:03:49.000 1980-06-26 2024-10-11 01:03:49 +3831 3831 3832 383.1 766.2 3831 1980-06-28 2024-10-11 01:03:51.000 1980-06-28 2024-10-11 01:03:51 +3832 3832 3833 383.2 766.4000000000001 3832 1980-06-29 2024-10-11 01:03:52.000 1980-06-29 2024-10-11 01:03:52 +3833 3833 3834 383.3 766.6 3833 1980-06-30 2024-10-11 01:03:53.000 1980-06-30 2024-10-11 01:03:53 +3834 3834 3835 383.4 766.8000000000001 3834 1980-07-01 2024-10-11 01:03:54.000 1980-07-01 2024-10-11 01:03:54 +3836 3836 3837 383.6 767.2 3836 1980-07-03 2024-10-11 01:03:56.000 1980-07-03 2024-10-11 01:03:56 +3837 3837 3838 383.7 767.4000000000001 3837 1980-07-04 2024-10-11 01:03:57.000 1980-07-04 2024-10-11 01:03:57 +3838 3838 3839 383.8 767.6 3838 1980-07-05 2024-10-11 01:03:58.000 1980-07-05 2024-10-11 01:03:58 +3839 3839 3840 383.9 767.8000000000001 3839 1980-07-06 2024-10-11 01:03:59.000 1980-07-06 2024-10-11 01:03:59 +3841 3841 3842 384.1 768.2 3841 1980-07-08 2024-10-11 01:04:01.000 1980-07-08 2024-10-11 01:04:01 +3842 3842 3843 384.2 768.4000000000001 3842 1980-07-09 2024-10-11 01:04:02.000 1980-07-09 2024-10-11 01:04:02 +3843 3843 3844 384.3 768.6 3843 1980-07-10 2024-10-11 01:04:03.000 1980-07-10 2024-10-11 01:04:03 +3844 3844 3845 384.4 768.8000000000001 3844 1980-07-11 2024-10-11 01:04:04.000 1980-07-11 2024-10-11 01:04:04 +3846 3846 3847 384.6 769.2 3846 1980-07-13 2024-10-11 01:04:06.000 1980-07-13 2024-10-11 01:04:06 +3847 3847 3848 384.7 769.4000000000001 3847 1980-07-14 2024-10-11 01:04:07.000 1980-07-14 2024-10-11 01:04:07 +3848 3848 3849 384.8 769.6 3848 1980-07-15 2024-10-11 01:04:08.000 1980-07-15 2024-10-11 01:04:08 +3849 3849 3850 384.9 769.8000000000001 3849 1980-07-16 2024-10-11 01:04:09.000 1980-07-16 2024-10-11 01:04:09 +3851 3851 3852 385.1 770.2 3851 1980-07-18 2024-10-11 01:04:11.000 1980-07-18 2024-10-11 01:04:11 +3852 3852 3853 385.2 770.4000000000001 3852 1980-07-19 2024-10-11 01:04:12.000 1980-07-19 2024-10-11 01:04:12 +3853 3853 3854 385.3 770.6 3853 1980-07-20 2024-10-11 01:04:13.000 1980-07-20 2024-10-11 01:04:13 +3854 3854 3855 385.4 770.8000000000001 3854 1980-07-21 2024-10-11 01:04:14.000 1980-07-21 2024-10-11 01:04:14 +3856 3856 3857 385.6 771.2 3856 1980-07-23 2024-10-11 01:04:16.000 1980-07-23 2024-10-11 01:04:16 +3857 3857 3858 385.7 771.4000000000001 3857 1980-07-24 2024-10-11 01:04:17.000 1980-07-24 2024-10-11 01:04:17 +3858 3858 3859 385.8 771.6 3858 1980-07-25 2024-10-11 01:04:18.000 1980-07-25 2024-10-11 01:04:18 +3859 3859 3860 385.9 771.8000000000001 3859 1980-07-26 2024-10-11 01:04:19.000 1980-07-26 2024-10-11 01:04:19 +3861 3861 3862 386.1 772.2 3861 1980-07-28 2024-10-11 01:04:21.000 1980-07-28 2024-10-11 01:04:21 +3862 3862 3863 386.2 772.4000000000001 3862 1980-07-29 2024-10-11 01:04:22.000 1980-07-29 2024-10-11 01:04:22 +3863 3863 3864 386.3 772.6 3863 1980-07-30 2024-10-11 01:04:23.000 1980-07-30 2024-10-11 01:04:23 +3864 3864 3865 386.4 772.8000000000001 3864 1980-07-31 2024-10-11 01:04:24.000 1980-07-31 2024-10-11 01:04:24 +3866 3866 3867 386.6 773.2 3866 1980-08-02 2024-10-11 01:04:26.000 1980-08-02 2024-10-11 01:04:26 +3867 3867 3868 386.7 773.4000000000001 3867 1980-08-03 2024-10-11 01:04:27.000 1980-08-03 2024-10-11 01:04:27 +3868 3868 3869 386.8 773.6 3868 1980-08-04 2024-10-11 01:04:28.000 1980-08-04 2024-10-11 01:04:28 +3869 3869 3870 386.9 773.8000000000001 3869 1980-08-05 2024-10-11 01:04:29.000 1980-08-05 2024-10-11 01:04:29 +3871 3871 3872 387.1 774.2 3871 1980-08-07 2024-10-11 01:04:31.000 1980-08-07 2024-10-11 01:04:31 +3872 3872 3873 387.2 774.4000000000001 3872 1980-08-08 2024-10-11 01:04:32.000 1980-08-08 2024-10-11 01:04:32 +3873 3873 3874 387.3 774.6 3873 1980-08-09 2024-10-11 01:04:33.000 1980-08-09 2024-10-11 01:04:33 +3874 3874 3875 387.4 774.8000000000001 3874 1980-08-10 2024-10-11 01:04:34.000 1980-08-10 2024-10-11 01:04:34 +3876 3876 3877 387.6 775.2 3876 1980-08-12 2024-10-11 01:04:36.000 1980-08-12 2024-10-11 01:04:36 +3877 3877 3878 387.7 775.4000000000001 3877 1980-08-13 2024-10-11 01:04:37.000 1980-08-13 2024-10-11 01:04:37 +3878 3878 3879 387.8 775.6 3878 1980-08-14 2024-10-11 01:04:38.000 1980-08-14 2024-10-11 01:04:38 +3879 3879 3880 387.9 775.8000000000001 3879 1980-08-15 2024-10-11 01:04:39.000 1980-08-15 2024-10-11 01:04:39 +3881 3881 3882 388.1 776.2 3881 1980-08-17 2024-10-11 01:04:41.000 1980-08-17 2024-10-11 01:04:41 +3882 3882 3883 388.2 776.4000000000001 3882 1980-08-18 2024-10-11 01:04:42.000 1980-08-18 2024-10-11 01:04:42 +3883 3883 3884 388.3 776.6 3883 1980-08-19 2024-10-11 01:04:43.000 1980-08-19 2024-10-11 01:04:43 +3884 3884 3885 388.4 776.8000000000001 3884 1980-08-20 2024-10-11 01:04:44.000 1980-08-20 2024-10-11 01:04:44 +3886 3886 3887 388.6 777.2 3886 1980-08-22 2024-10-11 01:04:46.000 1980-08-22 2024-10-11 01:04:46 +3887 3887 3888 388.7 777.4000000000001 3887 1980-08-23 2024-10-11 01:04:47.000 1980-08-23 2024-10-11 01:04:47 +3888 3888 3889 388.8 777.6 3888 1980-08-24 2024-10-11 01:04:48.000 1980-08-24 2024-10-11 01:04:48 +3889 3889 3890 388.9 777.8000000000001 3889 1980-08-25 2024-10-11 01:04:49.000 1980-08-25 2024-10-11 01:04:49 +3891 3891 3892 389.1 778.2 3891 1980-08-27 2024-10-11 01:04:51.000 1980-08-27 2024-10-11 01:04:51 +3892 3892 3893 389.2 778.4000000000001 3892 1980-08-28 2024-10-11 01:04:52.000 1980-08-28 2024-10-11 01:04:52 +3893 3893 3894 389.3 778.6 3893 1980-08-29 2024-10-11 01:04:53.000 1980-08-29 2024-10-11 01:04:53 +3894 3894 3895 389.4 778.8000000000001 3894 1980-08-30 2024-10-11 01:04:54.000 1980-08-30 2024-10-11 01:04:54 +3896 3896 3897 389.6 779.2 3896 1980-09-01 2024-10-11 01:04:56.000 1980-09-01 2024-10-11 01:04:56 +3897 3897 3898 389.7 779.4000000000001 3897 1980-09-02 2024-10-11 01:04:57.000 1980-09-02 2024-10-11 01:04:57 +3898 3898 3899 389.8 779.6 3898 1980-09-03 2024-10-11 01:04:58.000 1980-09-03 2024-10-11 01:04:58 +3899 3899 3900 389.9 779.8000000000001 3899 1980-09-04 2024-10-11 01:04:59.000 1980-09-04 2024-10-11 01:04:59 +3901 3901 3902 390.1 780.2 3901 1980-09-06 2024-10-11 01:05:01.000 1980-09-06 2024-10-11 01:05:01 +3902 3902 3903 390.2 780.4000000000001 3902 1980-09-07 2024-10-11 01:05:02.000 1980-09-07 2024-10-11 01:05:02 +3903 3903 3904 390.3 780.6 3903 1980-09-08 2024-10-11 01:05:03.000 1980-09-08 2024-10-11 01:05:03 +3904 3904 3905 390.4 780.8000000000001 3904 1980-09-09 2024-10-11 01:05:04.000 1980-09-09 2024-10-11 01:05:04 +3906 3906 3907 390.6 781.2 3906 1980-09-11 2024-10-11 01:05:06.000 1980-09-11 2024-10-11 01:05:06 +3907 3907 3908 390.7 781.4000000000001 3907 1980-09-12 2024-10-11 01:05:07.000 1980-09-12 2024-10-11 01:05:07 +3908 3908 3909 390.8 781.6 3908 1980-09-13 2024-10-11 01:05:08.000 1980-09-13 2024-10-11 01:05:08 +3909 3909 3910 390.9 781.8000000000001 3909 1980-09-14 2024-10-11 01:05:09.000 1980-09-14 2024-10-11 01:05:09 +3911 3911 3912 391.1 782.2 3911 1980-09-16 2024-10-11 01:05:11.000 1980-09-16 2024-10-11 01:05:11 +3912 3912 3913 391.2 782.4000000000001 3912 1980-09-17 2024-10-11 01:05:12.000 1980-09-17 2024-10-11 01:05:12 +3913 3913 3914 391.3 782.6 3913 1980-09-18 2024-10-11 01:05:13.000 1980-09-18 2024-10-11 01:05:13 +3914 3914 3915 391.4 782.8000000000001 3914 1980-09-19 2024-10-11 01:05:14.000 1980-09-19 2024-10-11 01:05:14 +3916 3916 3917 391.6 783.2 3916 1980-09-21 2024-10-11 01:05:16.000 1980-09-21 2024-10-11 01:05:16 +3917 3917 3918 391.7 783.4000000000001 3917 1980-09-22 2024-10-11 01:05:17.000 1980-09-22 2024-10-11 01:05:17 +3918 3918 3919 391.8 783.6 3918 1980-09-23 2024-10-11 01:05:18.000 1980-09-23 2024-10-11 01:05:18 +3919 3919 3920 391.9 783.8000000000001 3919 1980-09-24 2024-10-11 01:05:19.000 1980-09-24 2024-10-11 01:05:19 +3921 3921 3922 392.1 784.2 3921 1980-09-26 2024-10-11 01:05:21.000 1980-09-26 2024-10-11 01:05:21 +3922 3922 3923 392.2 784.4000000000001 3922 1980-09-27 2024-10-11 01:05:22.000 1980-09-27 2024-10-11 01:05:22 +3923 3923 3924 392.3 784.6 3923 1980-09-28 2024-10-11 01:05:23.000 1980-09-28 2024-10-11 01:05:23 +3924 3924 3925 392.4 784.8000000000001 3924 1980-09-29 2024-10-11 01:05:24.000 1980-09-29 2024-10-11 01:05:24 +3926 3926 3927 392.6 785.2 3926 1980-10-01 2024-10-11 01:05:26.000 1980-10-01 2024-10-11 01:05:26 +3927 3927 3928 392.7 785.4000000000001 3927 1980-10-02 2024-10-11 01:05:27.000 1980-10-02 2024-10-11 01:05:27 +3928 3928 3929 392.8 785.6 3928 1980-10-03 2024-10-11 01:05:28.000 1980-10-03 2024-10-11 01:05:28 +3929 3929 3930 392.9 785.8000000000001 3929 1980-10-04 2024-10-11 01:05:29.000 1980-10-04 2024-10-11 01:05:29 +3931 3931 3932 393.1 786.2 3931 1980-10-06 2024-10-11 01:05:31.000 1980-10-06 2024-10-11 01:05:31 +3932 3932 3933 393.2 786.4000000000001 3932 1980-10-07 2024-10-11 01:05:32.000 1980-10-07 2024-10-11 01:05:32 +3933 3933 3934 393.3 786.6 3933 1980-10-08 2024-10-11 01:05:33.000 1980-10-08 2024-10-11 01:05:33 +3934 3934 3935 393.4 786.8000000000001 3934 1980-10-09 2024-10-11 01:05:34.000 1980-10-09 2024-10-11 01:05:34 +3936 3936 3937 393.6 787.2 3936 1980-10-11 2024-10-11 01:05:36.000 1980-10-11 2024-10-11 01:05:36 +3937 3937 3938 393.7 787.4000000000001 3937 1980-10-12 2024-10-11 01:05:37.000 1980-10-12 2024-10-11 01:05:37 +3938 3938 3939 393.8 787.6 3938 1980-10-13 2024-10-11 01:05:38.000 1980-10-13 2024-10-11 01:05:38 +3939 3939 3940 393.9 787.8000000000001 3939 1980-10-14 2024-10-11 01:05:39.000 1980-10-14 2024-10-11 01:05:39 +3941 3941 3942 394.1 788.2 3941 1980-10-16 2024-10-11 01:05:41.000 1980-10-16 2024-10-11 01:05:41 +3942 3942 3943 394.2 788.4000000000001 3942 1980-10-17 2024-10-11 01:05:42.000 1980-10-17 2024-10-11 01:05:42 +3943 3943 3944 394.3 788.6 3943 1980-10-18 2024-10-11 01:05:43.000 1980-10-18 2024-10-11 01:05:43 +3944 3944 3945 394.4 788.8000000000001 3944 1980-10-19 2024-10-11 01:05:44.000 1980-10-19 2024-10-11 01:05:44 +3946 3946 3947 394.6 789.2 3946 1980-10-21 2024-10-11 01:05:46.000 1980-10-21 2024-10-11 01:05:46 +3947 3947 3948 394.7 789.4000000000001 3947 1980-10-22 2024-10-11 01:05:47.000 1980-10-22 2024-10-11 01:05:47 +3948 3948 3949 394.8 789.6 3948 1980-10-23 2024-10-11 01:05:48.000 1980-10-23 2024-10-11 01:05:48 +3949 3949 3950 394.9 789.8000000000001 3949 1980-10-24 2024-10-11 01:05:49.000 1980-10-24 2024-10-11 01:05:49 +3951 3951 3952 395.1 790.2 3951 1980-10-26 2024-10-11 01:05:51.000 1980-10-26 2024-10-11 01:05:51 +3952 3952 3953 395.2 790.4000000000001 3952 1980-10-27 2024-10-11 01:05:52.000 1980-10-27 2024-10-11 01:05:52 +3953 3953 3954 395.3 790.6 3953 1980-10-28 2024-10-11 01:05:53.000 1980-10-28 2024-10-11 01:05:53 +3954 3954 3955 395.4 790.8000000000001 3954 1980-10-29 2024-10-11 01:05:54.000 1980-10-29 2024-10-11 01:05:54 +3956 3956 3957 395.6 791.2 3956 1980-10-31 2024-10-11 01:05:56.000 1980-10-31 2024-10-11 01:05:56 +3957 3957 3958 395.7 791.4000000000001 3957 1980-11-01 2024-10-11 01:05:57.000 1980-11-01 2024-10-11 01:05:57 +3958 3958 3959 395.8 791.6 3958 1980-11-02 2024-10-11 01:05:58.000 1980-11-02 2024-10-11 01:05:58 +3959 3959 3960 395.9 791.8000000000001 3959 1980-11-03 2024-10-11 01:05:59.000 1980-11-03 2024-10-11 01:05:59 +3961 3961 3962 396.1 792.2 3961 1980-11-05 2024-10-11 01:06:01.000 1980-11-05 2024-10-11 01:06:01 +3962 3962 3963 396.2 792.4000000000001 3962 1980-11-06 2024-10-11 01:06:02.000 1980-11-06 2024-10-11 01:06:02 +3963 3963 3964 396.3 792.6 3963 1980-11-07 2024-10-11 01:06:03.000 1980-11-07 2024-10-11 01:06:03 +3964 3964 3965 396.4 792.8000000000001 3964 1980-11-08 2024-10-11 01:06:04.000 1980-11-08 2024-10-11 01:06:04 +3966 3966 3967 396.6 793.2 3966 1980-11-10 2024-10-11 01:06:06.000 1980-11-10 2024-10-11 01:06:06 +3967 3967 3968 396.7 793.4000000000001 3967 1980-11-11 2024-10-11 01:06:07.000 1980-11-11 2024-10-11 01:06:07 +3968 3968 3969 396.8 793.6 3968 1980-11-12 2024-10-11 01:06:08.000 1980-11-12 2024-10-11 01:06:08 +3969 3969 3970 396.9 793.8000000000001 3969 1980-11-13 2024-10-11 01:06:09.000 1980-11-13 2024-10-11 01:06:09 +3971 3971 3972 397.1 794.2 3971 1980-11-15 2024-10-11 01:06:11.000 1980-11-15 2024-10-11 01:06:11 +3972 3972 3973 397.2 794.4000000000001 3972 1980-11-16 2024-10-11 01:06:12.000 1980-11-16 2024-10-11 01:06:12 +3973 3973 3974 397.3 794.6 3973 1980-11-17 2024-10-11 01:06:13.000 1980-11-17 2024-10-11 01:06:13 +3974 3974 3975 397.4 794.8000000000001 3974 1980-11-18 2024-10-11 01:06:14.000 1980-11-18 2024-10-11 01:06:14 +3976 3976 3977 397.6 795.2 3976 1980-11-20 2024-10-11 01:06:16.000 1980-11-20 2024-10-11 01:06:16 +3977 3977 3978 397.7 795.4000000000001 3977 1980-11-21 2024-10-11 01:06:17.000 1980-11-21 2024-10-11 01:06:17 +3978 3978 3979 397.8 795.6 3978 1980-11-22 2024-10-11 01:06:18.000 1980-11-22 2024-10-11 01:06:18 +3979 3979 3980 397.9 795.8000000000001 3979 1980-11-23 2024-10-11 01:06:19.000 1980-11-23 2024-10-11 01:06:19 +3981 3981 3982 398.1 796.2 3981 1980-11-25 2024-10-11 01:06:21.000 1980-11-25 2024-10-11 01:06:21 +3982 3982 3983 398.2 796.4000000000001 3982 1980-11-26 2024-10-11 01:06:22.000 1980-11-26 2024-10-11 01:06:22 +3983 3983 3984 398.3 796.6 3983 1980-11-27 2024-10-11 01:06:23.000 1980-11-27 2024-10-11 01:06:23 +3984 3984 3985 398.4 796.8000000000001 3984 1980-11-28 2024-10-11 01:06:24.000 1980-11-28 2024-10-11 01:06:24 +3986 3986 3987 398.6 797.2 3986 1980-11-30 2024-10-11 01:06:26.000 1980-11-30 2024-10-11 01:06:26 +3987 3987 3988 398.7 797.4000000000001 3987 1980-12-01 2024-10-11 01:06:27.000 1980-12-01 2024-10-11 01:06:27 +3988 3988 3989 398.8 797.6 3988 1980-12-02 2024-10-11 01:06:28.000 1980-12-02 2024-10-11 01:06:28 +3989 3989 3990 398.9 797.8000000000001 3989 1980-12-03 2024-10-11 01:06:29.000 1980-12-03 2024-10-11 01:06:29 +3991 3991 3992 399.1 798.2 3991 1980-12-05 2024-10-11 01:06:31.000 1980-12-05 2024-10-11 01:06:31 +3992 3992 3993 399.2 798.4000000000001 3992 1980-12-06 2024-10-11 01:06:32.000 1980-12-06 2024-10-11 01:06:32 +3993 3993 3994 399.3 798.6 3993 1980-12-07 2024-10-11 01:06:33.000 1980-12-07 2024-10-11 01:06:33 +3994 3994 3995 399.4 798.8000000000001 3994 1980-12-08 2024-10-11 01:06:34.000 1980-12-08 2024-10-11 01:06:34 +3996 3996 3997 399.6 799.2 3996 1980-12-10 2024-10-11 01:06:36.000 1980-12-10 2024-10-11 01:06:36 +3997 3997 3998 399.7 799.4000000000001 3997 1980-12-11 2024-10-11 01:06:37.000 1980-12-11 2024-10-11 01:06:37 +3998 3998 3999 399.8 799.6 3998 1980-12-12 2024-10-11 01:06:38.000 1980-12-12 2024-10-11 01:06:38 +3999 3999 4000 399.9 799.8000000000001 3999 1980-12-13 2024-10-11 01:06:39.000 1980-12-13 2024-10-11 01:06:39 +4001 4001 4002 400.1 800.2 4001 1980-12-15 2024-10-11 01:06:41.000 1980-12-15 2024-10-11 01:06:41 +4002 4002 4003 400.2 800.4000000000001 4002 1980-12-16 2024-10-11 01:06:42.000 1980-12-16 2024-10-11 01:06:42 +4003 4003 4004 400.3 800.6 4003 1980-12-17 2024-10-11 01:06:43.000 1980-12-17 2024-10-11 01:06:43 +4004 4004 4005 400.4 800.8000000000001 4004 1980-12-18 2024-10-11 01:06:44.000 1980-12-18 2024-10-11 01:06:44 +4006 4006 4007 400.6 801.2 4006 1980-12-20 2024-10-11 01:06:46.000 1980-12-20 2024-10-11 01:06:46 +4007 4007 4008 400.7 801.4000000000001 4007 1980-12-21 2024-10-11 01:06:47.000 1980-12-21 2024-10-11 01:06:47 +4008 4008 4009 400.8 801.6 4008 1980-12-22 2024-10-11 01:06:48.000 1980-12-22 2024-10-11 01:06:48 +4009 4009 4010 400.9 801.8000000000001 4009 1980-12-23 2024-10-11 01:06:49.000 1980-12-23 2024-10-11 01:06:49 +4011 4011 4012 401.1 802.2 4011 1980-12-25 2024-10-11 01:06:51.000 1980-12-25 2024-10-11 01:06:51 +4012 4012 4013 401.2 802.4000000000001 4012 1980-12-26 2024-10-11 01:06:52.000 1980-12-26 2024-10-11 01:06:52 +4013 4013 4014 401.3 802.6 4013 1980-12-27 2024-10-11 01:06:53.000 1980-12-27 2024-10-11 01:06:53 +4014 4014 4015 401.4 802.8000000000001 4014 1980-12-28 2024-10-11 01:06:54.000 1980-12-28 2024-10-11 01:06:54 +4016 4016 4017 401.6 803.2 4016 1980-12-30 2024-10-11 01:06:56.000 1980-12-30 2024-10-11 01:06:56 +4017 4017 4018 401.7 803.4000000000001 4017 1980-12-31 2024-10-11 01:06:57.000 1980-12-31 2024-10-11 01:06:57 +4018 4018 4019 401.8 803.6 4018 1981-01-01 2024-10-11 01:06:58.000 1981-01-01 2024-10-11 01:06:58 +4019 4019 4020 401.9 803.8000000000001 4019 1981-01-02 2024-10-11 01:06:59.000 1981-01-02 2024-10-11 01:06:59 +4021 4021 4022 402.1 804.2 4021 1981-01-04 2024-10-11 01:07:01.000 1981-01-04 2024-10-11 01:07:01 +4022 4022 4023 402.2 804.4000000000001 4022 1981-01-05 2024-10-11 01:07:02.000 1981-01-05 2024-10-11 01:07:02 +4023 4023 4024 402.3 804.6 4023 1981-01-06 2024-10-11 01:07:03.000 1981-01-06 2024-10-11 01:07:03 +4024 4024 4025 402.4 804.8000000000001 4024 1981-01-07 2024-10-11 01:07:04.000 1981-01-07 2024-10-11 01:07:04 +4026 4026 4027 402.6 805.2 4026 1981-01-09 2024-10-11 01:07:06.000 1981-01-09 2024-10-11 01:07:06 +4027 4027 4028 402.7 805.4000000000001 4027 1981-01-10 2024-10-11 01:07:07.000 1981-01-10 2024-10-11 01:07:07 +4028 4028 4029 402.8 805.6 4028 1981-01-11 2024-10-11 01:07:08.000 1981-01-11 2024-10-11 01:07:08 +4029 4029 4030 402.9 805.8000000000001 4029 1981-01-12 2024-10-11 01:07:09.000 1981-01-12 2024-10-11 01:07:09 +4031 4031 4032 403.1 806.2 4031 1981-01-14 2024-10-11 01:07:11.000 1981-01-14 2024-10-11 01:07:11 +4032 4032 4033 403.2 806.4000000000001 4032 1981-01-15 2024-10-11 01:07:12.000 1981-01-15 2024-10-11 01:07:12 +4033 4033 4034 403.3 806.6 4033 1981-01-16 2024-10-11 01:07:13.000 1981-01-16 2024-10-11 01:07:13 +4034 4034 4035 403.4 806.8000000000001 4034 1981-01-17 2024-10-11 01:07:14.000 1981-01-17 2024-10-11 01:07:14 +4036 4036 4037 403.6 807.2 4036 1981-01-19 2024-10-11 01:07:16.000 1981-01-19 2024-10-11 01:07:16 +4037 4037 4038 403.7 807.4000000000001 4037 1981-01-20 2024-10-11 01:07:17.000 1981-01-20 2024-10-11 01:07:17 +4038 4038 4039 403.8 807.6 4038 1981-01-21 2024-10-11 01:07:18.000 1981-01-21 2024-10-11 01:07:18 +4039 4039 4040 403.9 807.8000000000001 4039 1981-01-22 2024-10-11 01:07:19.000 1981-01-22 2024-10-11 01:07:19 +4041 4041 4042 404.1 808.2 4041 1981-01-24 2024-10-11 01:07:21.000 1981-01-24 2024-10-11 01:07:21 +4042 4042 4043 404.2 808.4000000000001 4042 1981-01-25 2024-10-11 01:07:22.000 1981-01-25 2024-10-11 01:07:22 +4043 4043 4044 404.3 808.6 4043 1981-01-26 2024-10-11 01:07:23.000 1981-01-26 2024-10-11 01:07:23 +4044 4044 4045 404.4 808.8000000000001 4044 1981-01-27 2024-10-11 01:07:24.000 1981-01-27 2024-10-11 01:07:24 +4046 4046 4047 404.6 809.2 4046 1981-01-29 2024-10-11 01:07:26.000 1981-01-29 2024-10-11 01:07:26 +4047 4047 4048 404.7 809.4000000000001 4047 1981-01-30 2024-10-11 01:07:27.000 1981-01-30 2024-10-11 01:07:27 +4048 4048 4049 404.8 809.6 4048 1981-01-31 2024-10-11 01:07:28.000 1981-01-31 2024-10-11 01:07:28 +4049 4049 4050 404.9 809.8000000000001 4049 1981-02-01 2024-10-11 01:07:29.000 1981-02-01 2024-10-11 01:07:29 +4051 4051 4052 405.1 810.2 4051 1981-02-03 2024-10-11 01:07:31.000 1981-02-03 2024-10-11 01:07:31 +4052 4052 4053 405.2 810.4000000000001 4052 1981-02-04 2024-10-11 01:07:32.000 1981-02-04 2024-10-11 01:07:32 +4053 4053 4054 405.3 810.6 4053 1981-02-05 2024-10-11 01:07:33.000 1981-02-05 2024-10-11 01:07:33 +4054 4054 4055 405.4 810.8000000000001 4054 1981-02-06 2024-10-11 01:07:34.000 1981-02-06 2024-10-11 01:07:34 +4056 4056 4057 405.6 811.2 4056 1981-02-08 2024-10-11 01:07:36.000 1981-02-08 2024-10-11 01:07:36 +4057 4057 4058 405.7 811.4000000000001 4057 1981-02-09 2024-10-11 01:07:37.000 1981-02-09 2024-10-11 01:07:37 +4058 4058 4059 405.8 811.6 4058 1981-02-10 2024-10-11 01:07:38.000 1981-02-10 2024-10-11 01:07:38 +4059 4059 4060 405.9 811.8000000000001 4059 1981-02-11 2024-10-11 01:07:39.000 1981-02-11 2024-10-11 01:07:39 +4061 4061 4062 406.1 812.2 4061 1981-02-13 2024-10-11 01:07:41.000 1981-02-13 2024-10-11 01:07:41 +4062 4062 4063 406.2 812.4000000000001 4062 1981-02-14 2024-10-11 01:07:42.000 1981-02-14 2024-10-11 01:07:42 +4063 4063 4064 406.3 812.6 4063 1981-02-15 2024-10-11 01:07:43.000 1981-02-15 2024-10-11 01:07:43 +4064 4064 4065 406.4 812.8000000000001 4064 1981-02-16 2024-10-11 01:07:44.000 1981-02-16 2024-10-11 01:07:44 +4066 4066 4067 406.6 813.2 4066 1981-02-18 2024-10-11 01:07:46.000 1981-02-18 2024-10-11 01:07:46 +4067 4067 4068 406.7 813.4000000000001 4067 1981-02-19 2024-10-11 01:07:47.000 1981-02-19 2024-10-11 01:07:47 +4068 4068 4069 406.8 813.6 4068 1981-02-20 2024-10-11 01:07:48.000 1981-02-20 2024-10-11 01:07:48 +4069 4069 4070 406.9 813.8000000000001 4069 1981-02-21 2024-10-11 01:07:49.000 1981-02-21 2024-10-11 01:07:49 +4071 4071 4072 407.1 814.2 4071 1981-02-23 2024-10-11 01:07:51.000 1981-02-23 2024-10-11 01:07:51 +4072 4072 4073 407.2 814.4000000000001 4072 1981-02-24 2024-10-11 01:07:52.000 1981-02-24 2024-10-11 01:07:52 +4073 4073 4074 407.3 814.6 4073 1981-02-25 2024-10-11 01:07:53.000 1981-02-25 2024-10-11 01:07:53 +4074 4074 4075 407.4 814.8000000000001 4074 1981-02-26 2024-10-11 01:07:54.000 1981-02-26 2024-10-11 01:07:54 +4076 4076 4077 407.6 815.2 4076 1981-02-28 2024-10-11 01:07:56.000 1981-02-28 2024-10-11 01:07:56 +4077 4077 4078 407.7 815.4000000000001 4077 1981-03-01 2024-10-11 01:07:57.000 1981-03-01 2024-10-11 01:07:57 +4078 4078 4079 407.8 815.6 4078 1981-03-02 2024-10-11 01:07:58.000 1981-03-02 2024-10-11 01:07:58 +4079 4079 4080 407.9 815.8000000000001 4079 1981-03-03 2024-10-11 01:07:59.000 1981-03-03 2024-10-11 01:07:59 +4081 4081 4082 408.1 816.2 4081 1981-03-05 2024-10-11 01:08:01.000 1981-03-05 2024-10-11 01:08:01 +4082 4082 4083 408.2 816.4000000000001 4082 1981-03-06 2024-10-11 01:08:02.000 1981-03-06 2024-10-11 01:08:02 +4083 4083 4084 408.3 816.6 4083 1981-03-07 2024-10-11 01:08:03.000 1981-03-07 2024-10-11 01:08:03 +4084 4084 4085 408.4 816.8000000000001 4084 1981-03-08 2024-10-11 01:08:04.000 1981-03-08 2024-10-11 01:08:04 +4086 4086 4087 408.6 817.2 4086 1981-03-10 2024-10-11 01:08:06.000 1981-03-10 2024-10-11 01:08:06 +4087 4087 4088 408.7 817.4000000000001 4087 1981-03-11 2024-10-11 01:08:07.000 1981-03-11 2024-10-11 01:08:07 +4088 4088 4089 408.8 817.6 4088 1981-03-12 2024-10-11 01:08:08.000 1981-03-12 2024-10-11 01:08:08 +4089 4089 4090 408.9 817.8000000000001 4089 1981-03-13 2024-10-11 01:08:09.000 1981-03-13 2024-10-11 01:08:09 +4091 4091 4092 409.1 818.2 4091 1981-03-15 2024-10-11 01:08:11.000 1981-03-15 2024-10-11 01:08:11 +4092 4092 4093 409.2 818.4000000000001 4092 1981-03-16 2024-10-11 01:08:12.000 1981-03-16 2024-10-11 01:08:12 +4093 4093 4094 409.3 818.6 4093 1981-03-17 2024-10-11 01:08:13.000 1981-03-17 2024-10-11 01:08:13 +4094 4094 4095 409.4 818.8000000000001 4094 1981-03-18 2024-10-11 01:08:14.000 1981-03-18 2024-10-11 01:08:14 +4096 4096 4097 409.6 819.2 4096 1981-03-20 2024-10-11 01:08:16.000 1981-03-20 2024-10-11 01:08:16 +4097 4097 4098 409.7 819.4000000000001 4097 1981-03-21 2024-10-11 01:08:17.000 1981-03-21 2024-10-11 01:08:17 +4098 4098 4099 409.8 819.6 4098 1981-03-22 2024-10-11 01:08:18.000 1981-03-22 2024-10-11 01:08:18 +4099 4099 4100 409.9 819.8000000000001 4099 1981-03-23 2024-10-11 01:08:19.000 1981-03-23 2024-10-11 01:08:19 +4101 4101 4102 410.1 820.2 4101 1981-03-25 2024-10-11 01:08:21.000 1981-03-25 2024-10-11 01:08:21 +4102 4102 4103 410.2 820.4000000000001 4102 1981-03-26 2024-10-11 01:08:22.000 1981-03-26 2024-10-11 01:08:22 +4103 4103 4104 410.3 820.6 4103 1981-03-27 2024-10-11 01:08:23.000 1981-03-27 2024-10-11 01:08:23 +4104 4104 4105 410.4 820.8000000000001 4104 1981-03-28 2024-10-11 01:08:24.000 1981-03-28 2024-10-11 01:08:24 +4106 4106 4107 410.6 821.2 4106 1981-03-30 2024-10-11 01:08:26.000 1981-03-30 2024-10-11 01:08:26 +4107 4107 4108 410.7 821.4000000000001 4107 1981-03-31 2024-10-11 01:08:27.000 1981-03-31 2024-10-11 01:08:27 +4108 4108 4109 410.8 821.6 4108 1981-04-01 2024-10-11 01:08:28.000 1981-04-01 2024-10-11 01:08:28 +4109 4109 4110 410.9 821.8000000000001 4109 1981-04-02 2024-10-11 01:08:29.000 1981-04-02 2024-10-11 01:08:29 +4111 4111 4112 411.1 822.2 4111 1981-04-04 2024-10-11 01:08:31.000 1981-04-04 2024-10-11 01:08:31 +4112 4112 4113 411.2 822.4000000000001 4112 1981-04-05 2024-10-11 01:08:32.000 1981-04-05 2024-10-11 01:08:32 +4113 4113 4114 411.3 822.6 4113 1981-04-06 2024-10-11 01:08:33.000 1981-04-06 2024-10-11 01:08:33 +4114 4114 4115 411.4 822.8000000000001 4114 1981-04-07 2024-10-11 01:08:34.000 1981-04-07 2024-10-11 01:08:34 +4116 4116 4117 411.6 823.2 4116 1981-04-09 2024-10-11 01:08:36.000 1981-04-09 2024-10-11 01:08:36 +4117 4117 4118 411.7 823.4000000000001 4117 1981-04-10 2024-10-11 01:08:37.000 1981-04-10 2024-10-11 01:08:37 +4118 4118 4119 411.8 823.6 4118 1981-04-11 2024-10-11 01:08:38.000 1981-04-11 2024-10-11 01:08:38 +4119 4119 4120 411.9 823.8000000000001 4119 1981-04-12 2024-10-11 01:08:39.000 1981-04-12 2024-10-11 01:08:39 +4121 4121 4122 412.1 824.2 4121 1981-04-14 2024-10-11 01:08:41.000 1981-04-14 2024-10-11 01:08:41 +4122 4122 4123 412.2 824.4000000000001 4122 1981-04-15 2024-10-11 01:08:42.000 1981-04-15 2024-10-11 01:08:42 +4123 4123 4124 412.3 824.6 4123 1981-04-16 2024-10-11 01:08:43.000 1981-04-16 2024-10-11 01:08:43 +4124 4124 4125 412.4 824.8000000000001 4124 1981-04-17 2024-10-11 01:08:44.000 1981-04-17 2024-10-11 01:08:44 +4126 4126 4127 412.6 825.2 4126 1981-04-19 2024-10-11 01:08:46.000 1981-04-19 2024-10-11 01:08:46 +4127 4127 4128 412.7 825.4000000000001 4127 1981-04-20 2024-10-11 01:08:47.000 1981-04-20 2024-10-11 01:08:47 +4128 4128 4129 412.8 825.6 4128 1981-04-21 2024-10-11 01:08:48.000 1981-04-21 2024-10-11 01:08:48 +4129 4129 4130 412.9 825.8000000000001 4129 1981-04-22 2024-10-11 01:08:49.000 1981-04-22 2024-10-11 01:08:49 +4131 4131 4132 413.1 826.2 4131 1981-04-24 2024-10-11 01:08:51.000 1981-04-24 2024-10-11 01:08:51 +4132 4132 4133 413.2 826.4000000000001 4132 1981-04-25 2024-10-11 01:08:52.000 1981-04-25 2024-10-11 01:08:52 +4133 4133 4134 413.3 826.6 4133 1981-04-26 2024-10-11 01:08:53.000 1981-04-26 2024-10-11 01:08:53 +4134 4134 4135 413.4 826.8000000000001 4134 1981-04-27 2024-10-11 01:08:54.000 1981-04-27 2024-10-11 01:08:54 +4136 4136 4137 413.6 827.2 4136 1981-04-29 2024-10-11 01:08:56.000 1981-04-29 2024-10-11 01:08:56 +4137 4137 4138 413.7 827.4000000000001 4137 1981-04-30 2024-10-11 01:08:57.000 1981-04-30 2024-10-11 01:08:57 +4138 4138 4139 413.8 827.6 4138 1981-05-01 2024-10-11 01:08:58.000 1981-05-01 2024-10-11 01:08:58 +4139 4139 4140 413.9 827.8000000000001 4139 1981-05-02 2024-10-11 01:08:59.000 1981-05-02 2024-10-11 01:08:59 +4141 4141 4142 414.1 828.2 4141 1981-05-04 2024-10-11 01:09:01.000 1981-05-04 2024-10-11 01:09:01 +4142 4142 4143 414.2 828.4000000000001 4142 1981-05-05 2024-10-11 01:09:02.000 1981-05-05 2024-10-11 01:09:02 +4143 4143 4144 414.3 828.6 4143 1981-05-06 2024-10-11 01:09:03.000 1981-05-06 2024-10-11 01:09:03 +4144 4144 4145 414.4 828.8000000000001 4144 1981-05-07 2024-10-11 01:09:04.000 1981-05-07 2024-10-11 01:09:04 +4146 4146 4147 414.6 829.2 4146 1981-05-09 2024-10-11 01:09:06.000 1981-05-09 2024-10-11 01:09:06 +4147 4147 4148 414.7 829.4000000000001 4147 1981-05-10 2024-10-11 01:09:07.000 1981-05-10 2024-10-11 01:09:07 +4148 4148 4149 414.8 829.6 4148 1981-05-11 2024-10-11 01:09:08.000 1981-05-11 2024-10-11 01:09:08 +4149 4149 4150 414.9 829.8000000000001 4149 1981-05-12 2024-10-11 01:09:09.000 1981-05-12 2024-10-11 01:09:09 +4151 4151 4152 415.1 830.2 4151 1981-05-14 2024-10-11 01:09:11.000 1981-05-14 2024-10-11 01:09:11 +4152 4152 4153 415.2 830.4000000000001 4152 1981-05-15 2024-10-11 01:09:12.000 1981-05-15 2024-10-11 01:09:12 +4153 4153 4154 415.3 830.6 4153 1981-05-16 2024-10-11 01:09:13.000 1981-05-16 2024-10-11 01:09:13 +4154 4154 4155 415.4 830.8000000000001 4154 1981-05-17 2024-10-11 01:09:14.000 1981-05-17 2024-10-11 01:09:14 +4156 4156 4157 415.6 831.2 4156 1981-05-19 2024-10-11 01:09:16.000 1981-05-19 2024-10-11 01:09:16 +4157 4157 4158 415.7 831.4000000000001 4157 1981-05-20 2024-10-11 01:09:17.000 1981-05-20 2024-10-11 01:09:17 +4158 4158 4159 415.8 831.6 4158 1981-05-21 2024-10-11 01:09:18.000 1981-05-21 2024-10-11 01:09:18 +4159 4159 4160 415.9 831.8000000000001 4159 1981-05-22 2024-10-11 01:09:19.000 1981-05-22 2024-10-11 01:09:19 +4161 4161 4162 416.1 832.2 4161 1981-05-24 2024-10-11 01:09:21.000 1981-05-24 2024-10-11 01:09:21 +4162 4162 4163 416.2 832.4000000000001 4162 1981-05-25 2024-10-11 01:09:22.000 1981-05-25 2024-10-11 01:09:22 +4163 4163 4164 416.3 832.6 4163 1981-05-26 2024-10-11 01:09:23.000 1981-05-26 2024-10-11 01:09:23 +4164 4164 4165 416.4 832.8000000000001 4164 1981-05-27 2024-10-11 01:09:24.000 1981-05-27 2024-10-11 01:09:24 +4166 4166 4167 416.6 833.2 4166 1981-05-29 2024-10-11 01:09:26.000 1981-05-29 2024-10-11 01:09:26 +4167 4167 4168 416.7 833.4000000000001 4167 1981-05-30 2024-10-11 01:09:27.000 1981-05-30 2024-10-11 01:09:27 +4168 4168 4169 416.8 833.6 4168 1981-05-31 2024-10-11 01:09:28.000 1981-05-31 2024-10-11 01:09:28 +4169 4169 4170 416.9 833.8000000000001 4169 1981-06-01 2024-10-11 01:09:29.000 1981-06-01 2024-10-11 01:09:29 +4171 4171 4172 417.1 834.2 4171 1981-06-03 2024-10-11 01:09:31.000 1981-06-03 2024-10-11 01:09:31 +4172 4172 4173 417.2 834.4000000000001 4172 1981-06-04 2024-10-11 01:09:32.000 1981-06-04 2024-10-11 01:09:32 +4173 4173 4174 417.3 834.6 4173 1981-06-05 2024-10-11 01:09:33.000 1981-06-05 2024-10-11 01:09:33 +4174 4174 4175 417.4 834.8000000000001 4174 1981-06-06 2024-10-11 01:09:34.000 1981-06-06 2024-10-11 01:09:34 +4176 4176 4177 417.6 835.2 4176 1981-06-08 2024-10-11 01:09:36.000 1981-06-08 2024-10-11 01:09:36 +4177 4177 4178 417.7 835.4000000000001 4177 1981-06-09 2024-10-11 01:09:37.000 1981-06-09 2024-10-11 01:09:37 +4178 4178 4179 417.8 835.6 4178 1981-06-10 2024-10-11 01:09:38.000 1981-06-10 2024-10-11 01:09:38 +4179 4179 4180 417.9 835.8000000000001 4179 1981-06-11 2024-10-11 01:09:39.000 1981-06-11 2024-10-11 01:09:39 +4181 4181 4182 418.1 836.2 4181 1981-06-13 2024-10-11 01:09:41.000 1981-06-13 2024-10-11 01:09:41 +4182 4182 4183 418.2 836.4000000000001 4182 1981-06-14 2024-10-11 01:09:42.000 1981-06-14 2024-10-11 01:09:42 +4183 4183 4184 418.3 836.6 4183 1981-06-15 2024-10-11 01:09:43.000 1981-06-15 2024-10-11 01:09:43 +4184 4184 4185 418.4 836.8000000000001 4184 1981-06-16 2024-10-11 01:09:44.000 1981-06-16 2024-10-11 01:09:44 +4186 4186 4187 418.6 837.2 4186 1981-06-18 2024-10-11 01:09:46.000 1981-06-18 2024-10-11 01:09:46 +4187 4187 4188 418.7 837.4000000000001 4187 1981-06-19 2024-10-11 01:09:47.000 1981-06-19 2024-10-11 01:09:47 +4188 4188 4189 418.8 837.6 4188 1981-06-20 2024-10-11 01:09:48.000 1981-06-20 2024-10-11 01:09:48 +4189 4189 4190 418.9 837.8000000000001 4189 1981-06-21 2024-10-11 01:09:49.000 1981-06-21 2024-10-11 01:09:49 +4191 4191 4192 419.1 838.2 4191 1981-06-23 2024-10-11 01:09:51.000 1981-06-23 2024-10-11 01:09:51 +4192 4192 4193 419.2 838.4000000000001 4192 1981-06-24 2024-10-11 01:09:52.000 1981-06-24 2024-10-11 01:09:52 +4193 4193 4194 419.3 838.6 4193 1981-06-25 2024-10-11 01:09:53.000 1981-06-25 2024-10-11 01:09:53 +4194 4194 4195 419.4 838.8000000000001 4194 1981-06-26 2024-10-11 01:09:54.000 1981-06-26 2024-10-11 01:09:54 +4196 4196 4197 419.6 839.2 4196 1981-06-28 2024-10-11 01:09:56.000 1981-06-28 2024-10-11 01:09:56 +4197 4197 4198 419.7 839.4000000000001 4197 1981-06-29 2024-10-11 01:09:57.000 1981-06-29 2024-10-11 01:09:57 +4198 4198 4199 419.8 839.6 4198 1981-06-30 2024-10-11 01:09:58.000 1981-06-30 2024-10-11 01:09:58 +4199 4199 4200 419.9 839.8000000000001 4199 1981-07-01 2024-10-11 01:09:59.000 1981-07-01 2024-10-11 01:09:59 +4201 4201 4202 420.1 840.2 4201 1981-07-03 2024-10-11 01:10:01.000 1981-07-03 2024-10-11 01:10:01 +4202 4202 4203 420.2 840.4000000000001 4202 1981-07-04 2024-10-11 01:10:02.000 1981-07-04 2024-10-11 01:10:02 +4203 4203 4204 420.3 840.6 4203 1981-07-05 2024-10-11 01:10:03.000 1981-07-05 2024-10-11 01:10:03 +4204 4204 4205 420.4 840.8000000000001 4204 1981-07-06 2024-10-11 01:10:04.000 1981-07-06 2024-10-11 01:10:04 +4206 4206 4207 420.6 841.2 4206 1981-07-08 2024-10-11 01:10:06.000 1981-07-08 2024-10-11 01:10:06 +4207 4207 4208 420.7 841.4000000000001 4207 1981-07-09 2024-10-11 01:10:07.000 1981-07-09 2024-10-11 01:10:07 +4208 4208 4209 420.8 841.6 4208 1981-07-10 2024-10-11 01:10:08.000 1981-07-10 2024-10-11 01:10:08 +4209 4209 4210 420.9 841.8000000000001 4209 1981-07-11 2024-10-11 01:10:09.000 1981-07-11 2024-10-11 01:10:09 +4211 4211 4212 421.1 842.2 4211 1981-07-13 2024-10-11 01:10:11.000 1981-07-13 2024-10-11 01:10:11 +4212 4212 4213 421.2 842.4000000000001 4212 1981-07-14 2024-10-11 01:10:12.000 1981-07-14 2024-10-11 01:10:12 +4213 4213 4214 421.3 842.6 4213 1981-07-15 2024-10-11 01:10:13.000 1981-07-15 2024-10-11 01:10:13 +4214 4214 4215 421.4 842.8000000000001 4214 1981-07-16 2024-10-11 01:10:14.000 1981-07-16 2024-10-11 01:10:14 +4216 4216 4217 421.6 843.2 4216 1981-07-18 2024-10-11 01:10:16.000 1981-07-18 2024-10-11 01:10:16 +4217 4217 4218 421.7 843.4000000000001 4217 1981-07-19 2024-10-11 01:10:17.000 1981-07-19 2024-10-11 01:10:17 +4218 4218 4219 421.8 843.6 4218 1981-07-20 2024-10-11 01:10:18.000 1981-07-20 2024-10-11 01:10:18 +4219 4219 4220 421.9 843.8000000000001 4219 1981-07-21 2024-10-11 01:10:19.000 1981-07-21 2024-10-11 01:10:19 +4221 4221 4222 422.1 844.2 4221 1981-07-23 2024-10-11 01:10:21.000 1981-07-23 2024-10-11 01:10:21 +4222 4222 4223 422.2 844.4000000000001 4222 1981-07-24 2024-10-11 01:10:22.000 1981-07-24 2024-10-11 01:10:22 +4223 4223 4224 422.3 844.6 4223 1981-07-25 2024-10-11 01:10:23.000 1981-07-25 2024-10-11 01:10:23 +4224 4224 4225 422.4 844.8000000000001 4224 1981-07-26 2024-10-11 01:10:24.000 1981-07-26 2024-10-11 01:10:24 +4226 4226 4227 422.6 845.2 4226 1981-07-28 2024-10-11 01:10:26.000 1981-07-28 2024-10-11 01:10:26 +4227 4227 4228 422.7 845.4000000000001 4227 1981-07-29 2024-10-11 01:10:27.000 1981-07-29 2024-10-11 01:10:27 +4228 4228 4229 422.8 845.6 4228 1981-07-30 2024-10-11 01:10:28.000 1981-07-30 2024-10-11 01:10:28 +4229 4229 4230 422.9 845.8000000000001 4229 1981-07-31 2024-10-11 01:10:29.000 1981-07-31 2024-10-11 01:10:29 +4231 4231 4232 423.1 846.2 4231 1981-08-02 2024-10-11 01:10:31.000 1981-08-02 2024-10-11 01:10:31 +4232 4232 4233 423.2 846.4000000000001 4232 1981-08-03 2024-10-11 01:10:32.000 1981-08-03 2024-10-11 01:10:32 +4233 4233 4234 423.3 846.6 4233 1981-08-04 2024-10-11 01:10:33.000 1981-08-04 2024-10-11 01:10:33 +4234 4234 4235 423.4 846.8000000000001 4234 1981-08-05 2024-10-11 01:10:34.000 1981-08-05 2024-10-11 01:10:34 +4236 4236 4237 423.6 847.2 4236 1981-08-07 2024-10-11 01:10:36.000 1981-08-07 2024-10-11 01:10:36 +4237 4237 4238 423.7 847.4000000000001 4237 1981-08-08 2024-10-11 01:10:37.000 1981-08-08 2024-10-11 01:10:37 +4238 4238 4239 423.8 847.6 4238 1981-08-09 2024-10-11 01:10:38.000 1981-08-09 2024-10-11 01:10:38 +4239 4239 4240 423.9 847.8000000000001 4239 1981-08-10 2024-10-11 01:10:39.000 1981-08-10 2024-10-11 01:10:39 +4241 4241 4242 424.1 848.2 4241 1981-08-12 2024-10-11 01:10:41.000 1981-08-12 2024-10-11 01:10:41 +4242 4242 4243 424.2 848.4000000000001 4242 1981-08-13 2024-10-11 01:10:42.000 1981-08-13 2024-10-11 01:10:42 +4243 4243 4244 424.3 848.6 4243 1981-08-14 2024-10-11 01:10:43.000 1981-08-14 2024-10-11 01:10:43 +4244 4244 4245 424.4 848.8000000000001 4244 1981-08-15 2024-10-11 01:10:44.000 1981-08-15 2024-10-11 01:10:44 +4246 4246 4247 424.6 849.2 4246 1981-08-17 2024-10-11 01:10:46.000 1981-08-17 2024-10-11 01:10:46 +4247 4247 4248 424.7 849.4000000000001 4247 1981-08-18 2024-10-11 01:10:47.000 1981-08-18 2024-10-11 01:10:47 +4248 4248 4249 424.8 849.6 4248 1981-08-19 2024-10-11 01:10:48.000 1981-08-19 2024-10-11 01:10:48 +4249 4249 4250 424.9 849.8000000000001 4249 1981-08-20 2024-10-11 01:10:49.000 1981-08-20 2024-10-11 01:10:49 +4251 4251 4252 425.1 850.2 4251 1981-08-22 2024-10-11 01:10:51.000 1981-08-22 2024-10-11 01:10:51 +4252 4252 4253 425.2 850.4000000000001 4252 1981-08-23 2024-10-11 01:10:52.000 1981-08-23 2024-10-11 01:10:52 +4253 4253 4254 425.3 850.6 4253 1981-08-24 2024-10-11 01:10:53.000 1981-08-24 2024-10-11 01:10:53 +4254 4254 4255 425.4 850.8000000000001 4254 1981-08-25 2024-10-11 01:10:54.000 1981-08-25 2024-10-11 01:10:54 +4256 4256 4257 425.6 851.2 4256 1981-08-27 2024-10-11 01:10:56.000 1981-08-27 2024-10-11 01:10:56 +4257 4257 4258 425.7 851.4000000000001 4257 1981-08-28 2024-10-11 01:10:57.000 1981-08-28 2024-10-11 01:10:57 +4258 4258 4259 425.8 851.6 4258 1981-08-29 2024-10-11 01:10:58.000 1981-08-29 2024-10-11 01:10:58 +4259 4259 4260 425.9 851.8000000000001 4259 1981-08-30 2024-10-11 01:10:59.000 1981-08-30 2024-10-11 01:10:59 +4261 4261 4262 426.1 852.2 4261 1981-09-01 2024-10-11 01:11:01.000 1981-09-01 2024-10-11 01:11:01 +4262 4262 4263 426.2 852.4000000000001 4262 1981-09-02 2024-10-11 01:11:02.000 1981-09-02 2024-10-11 01:11:02 +4263 4263 4264 426.3 852.6 4263 1981-09-03 2024-10-11 01:11:03.000 1981-09-03 2024-10-11 01:11:03 +4264 4264 4265 426.4 852.8000000000001 4264 1981-09-04 2024-10-11 01:11:04.000 1981-09-04 2024-10-11 01:11:04 +4266 4266 4267 426.6 853.2 4266 1981-09-06 2024-10-11 01:11:06.000 1981-09-06 2024-10-11 01:11:06 +4267 4267 4268 426.7 853.4000000000001 4267 1981-09-07 2024-10-11 01:11:07.000 1981-09-07 2024-10-11 01:11:07 +4268 4268 4269 426.8 853.6 4268 1981-09-08 2024-10-11 01:11:08.000 1981-09-08 2024-10-11 01:11:08 +4269 4269 4270 426.9 853.8000000000001 4269 1981-09-09 2024-10-11 01:11:09.000 1981-09-09 2024-10-11 01:11:09 +4271 4271 4272 427.1 854.2 4271 1981-09-11 2024-10-11 01:11:11.000 1981-09-11 2024-10-11 01:11:11 +4272 4272 4273 427.2 854.4000000000001 4272 1981-09-12 2024-10-11 01:11:12.000 1981-09-12 2024-10-11 01:11:12 +4273 4273 4274 427.3 854.6 4273 1981-09-13 2024-10-11 01:11:13.000 1981-09-13 2024-10-11 01:11:13 +4274 4274 4275 427.4 854.8000000000001 4274 1981-09-14 2024-10-11 01:11:14.000 1981-09-14 2024-10-11 01:11:14 +4276 4276 4277 427.6 855.2 4276 1981-09-16 2024-10-11 01:11:16.000 1981-09-16 2024-10-11 01:11:16 +4277 4277 4278 427.7 855.4000000000001 4277 1981-09-17 2024-10-11 01:11:17.000 1981-09-17 2024-10-11 01:11:17 +4278 4278 4279 427.8 855.6 4278 1981-09-18 2024-10-11 01:11:18.000 1981-09-18 2024-10-11 01:11:18 +4279 4279 4280 427.9 855.8000000000001 4279 1981-09-19 2024-10-11 01:11:19.000 1981-09-19 2024-10-11 01:11:19 +4281 4281 4282 428.1 856.2 4281 1981-09-21 2024-10-11 01:11:21.000 1981-09-21 2024-10-11 01:11:21 +4282 4282 4283 428.2 856.4000000000001 4282 1981-09-22 2024-10-11 01:11:22.000 1981-09-22 2024-10-11 01:11:22 +4283 4283 4284 428.3 856.6 4283 1981-09-23 2024-10-11 01:11:23.000 1981-09-23 2024-10-11 01:11:23 +4284 4284 4285 428.4 856.8000000000001 4284 1981-09-24 2024-10-11 01:11:24.000 1981-09-24 2024-10-11 01:11:24 +4286 4286 4287 428.6 857.2 4286 1981-09-26 2024-10-11 01:11:26.000 1981-09-26 2024-10-11 01:11:26 +4287 4287 4288 428.7 857.4000000000001 4287 1981-09-27 2024-10-11 01:11:27.000 1981-09-27 2024-10-11 01:11:27 +4288 4288 4289 428.8 857.6 4288 1981-09-28 2024-10-11 01:11:28.000 1981-09-28 2024-10-11 01:11:28 +4289 4289 4290 428.9 857.8000000000001 4289 1981-09-29 2024-10-11 01:11:29.000 1981-09-29 2024-10-11 01:11:29 +4291 4291 4292 429.1 858.2 4291 1981-10-01 2024-10-11 01:11:31.000 1981-10-01 2024-10-11 01:11:31 +4292 4292 4293 429.2 858.4000000000001 4292 1981-10-02 2024-10-11 01:11:32.000 1981-10-02 2024-10-11 01:11:32 +4293 4293 4294 429.3 858.6 4293 1981-10-03 2024-10-11 01:11:33.000 1981-10-03 2024-10-11 01:11:33 +4294 4294 4295 429.4 858.8000000000001 4294 1981-10-04 2024-10-11 01:11:34.000 1981-10-04 2024-10-11 01:11:34 +4296 4296 4297 429.6 859.2 4296 1981-10-06 2024-10-11 01:11:36.000 1981-10-06 2024-10-11 01:11:36 +4297 4297 4298 429.7 859.4000000000001 4297 1981-10-07 2024-10-11 01:11:37.000 1981-10-07 2024-10-11 01:11:37 +4298 4298 4299 429.8 859.6 4298 1981-10-08 2024-10-11 01:11:38.000 1981-10-08 2024-10-11 01:11:38 +4299 4299 4300 429.9 859.8000000000001 4299 1981-10-09 2024-10-11 01:11:39.000 1981-10-09 2024-10-11 01:11:39 +4301 4301 4302 430.1 860.2 4301 1981-10-11 2024-10-11 01:11:41.000 1981-10-11 2024-10-11 01:11:41 +4302 4302 4303 430.2 860.4000000000001 4302 1981-10-12 2024-10-11 01:11:42.000 1981-10-12 2024-10-11 01:11:42 +4303 4303 4304 430.3 860.6 4303 1981-10-13 2024-10-11 01:11:43.000 1981-10-13 2024-10-11 01:11:43 +4304 4304 4305 430.4 860.8000000000001 4304 1981-10-14 2024-10-11 01:11:44.000 1981-10-14 2024-10-11 01:11:44 +4306 4306 4307 430.6 861.2 4306 1981-10-16 2024-10-11 01:11:46.000 1981-10-16 2024-10-11 01:11:46 +4307 4307 4308 430.7 861.4000000000001 4307 1981-10-17 2024-10-11 01:11:47.000 1981-10-17 2024-10-11 01:11:47 +4308 4308 4309 430.8 861.6 4308 1981-10-18 2024-10-11 01:11:48.000 1981-10-18 2024-10-11 01:11:48 +4309 4309 4310 430.9 861.8000000000001 4309 1981-10-19 2024-10-11 01:11:49.000 1981-10-19 2024-10-11 01:11:49 +4311 4311 4312 431.1 862.2 4311 1981-10-21 2024-10-11 01:11:51.000 1981-10-21 2024-10-11 01:11:51 +4312 4312 4313 431.2 862.4000000000001 4312 1981-10-22 2024-10-11 01:11:52.000 1981-10-22 2024-10-11 01:11:52 +4313 4313 4314 431.3 862.6 4313 1981-10-23 2024-10-11 01:11:53.000 1981-10-23 2024-10-11 01:11:53 +4314 4314 4315 431.4 862.8000000000001 4314 1981-10-24 2024-10-11 01:11:54.000 1981-10-24 2024-10-11 01:11:54 +4316 4316 4317 431.6 863.2 4316 1981-10-26 2024-10-11 01:11:56.000 1981-10-26 2024-10-11 01:11:56 +4317 4317 4318 431.7 863.4000000000001 4317 1981-10-27 2024-10-11 01:11:57.000 1981-10-27 2024-10-11 01:11:57 +4318 4318 4319 431.8 863.6 4318 1981-10-28 2024-10-11 01:11:58.000 1981-10-28 2024-10-11 01:11:58 +4319 4319 4320 431.9 863.8000000000001 4319 1981-10-29 2024-10-11 01:11:59.000 1981-10-29 2024-10-11 01:11:59 +4321 4321 4322 432.1 864.2 4321 1981-10-31 2024-10-11 01:12:01.000 1981-10-31 2024-10-11 01:12:01 +4322 4322 4323 432.2 864.4000000000001 4322 1981-11-01 2024-10-11 01:12:02.000 1981-11-01 2024-10-11 01:12:02 +4323 4323 4324 432.3 864.6 4323 1981-11-02 2024-10-11 01:12:03.000 1981-11-02 2024-10-11 01:12:03 +4324 4324 4325 432.4 864.8000000000001 4324 1981-11-03 2024-10-11 01:12:04.000 1981-11-03 2024-10-11 01:12:04 +4326 4326 4327 432.6 865.2 4326 1981-11-05 2024-10-11 01:12:06.000 1981-11-05 2024-10-11 01:12:06 +4327 4327 4328 432.7 865.4000000000001 4327 1981-11-06 2024-10-11 01:12:07.000 1981-11-06 2024-10-11 01:12:07 +4328 4328 4329 432.8 865.6 4328 1981-11-07 2024-10-11 01:12:08.000 1981-11-07 2024-10-11 01:12:08 +4329 4329 4330 432.9 865.8000000000001 4329 1981-11-08 2024-10-11 01:12:09.000 1981-11-08 2024-10-11 01:12:09 +4331 4331 4332 433.1 866.2 4331 1981-11-10 2024-10-11 01:12:11.000 1981-11-10 2024-10-11 01:12:11 +4332 4332 4333 433.2 866.4000000000001 4332 1981-11-11 2024-10-11 01:12:12.000 1981-11-11 2024-10-11 01:12:12 +4333 4333 4334 433.3 866.6 4333 1981-11-12 2024-10-11 01:12:13.000 1981-11-12 2024-10-11 01:12:13 +4334 4334 4335 433.4 866.8000000000001 4334 1981-11-13 2024-10-11 01:12:14.000 1981-11-13 2024-10-11 01:12:14 +4336 4336 4337 433.6 867.2 4336 1981-11-15 2024-10-11 01:12:16.000 1981-11-15 2024-10-11 01:12:16 +4337 4337 4338 433.7 867.4000000000001 4337 1981-11-16 2024-10-11 01:12:17.000 1981-11-16 2024-10-11 01:12:17 +4338 4338 4339 433.8 867.6 4338 1981-11-17 2024-10-11 01:12:18.000 1981-11-17 2024-10-11 01:12:18 +4339 4339 4340 433.9 867.8000000000001 4339 1981-11-18 2024-10-11 01:12:19.000 1981-11-18 2024-10-11 01:12:19 +4341 4341 4342 434.1 868.2 4341 1981-11-20 2024-10-11 01:12:21.000 1981-11-20 2024-10-11 01:12:21 +4342 4342 4343 434.2 868.4000000000001 4342 1981-11-21 2024-10-11 01:12:22.000 1981-11-21 2024-10-11 01:12:22 +4343 4343 4344 434.3 868.6 4343 1981-11-22 2024-10-11 01:12:23.000 1981-11-22 2024-10-11 01:12:23 +4344 4344 4345 434.4 868.8000000000001 4344 1981-11-23 2024-10-11 01:12:24.000 1981-11-23 2024-10-11 01:12:24 +4346 4346 4347 434.6 869.2 4346 1981-11-25 2024-10-11 01:12:26.000 1981-11-25 2024-10-11 01:12:26 +4347 4347 4348 434.7 869.4000000000001 4347 1981-11-26 2024-10-11 01:12:27.000 1981-11-26 2024-10-11 01:12:27 +4348 4348 4349 434.8 869.6 4348 1981-11-27 2024-10-11 01:12:28.000 1981-11-27 2024-10-11 01:12:28 +4349 4349 4350 434.9 869.8000000000001 4349 1981-11-28 2024-10-11 01:12:29.000 1981-11-28 2024-10-11 01:12:29 +4351 4351 4352 435.1 870.2 4351 1981-11-30 2024-10-11 01:12:31.000 1981-11-30 2024-10-11 01:12:31 +4352 4352 4353 435.2 870.4000000000001 4352 1981-12-01 2024-10-11 01:12:32.000 1981-12-01 2024-10-11 01:12:32 +4353 4353 4354 435.3 870.6 4353 1981-12-02 2024-10-11 01:12:33.000 1981-12-02 2024-10-11 01:12:33 +4354 4354 4355 435.4 870.8000000000001 4354 1981-12-03 2024-10-11 01:12:34.000 1981-12-03 2024-10-11 01:12:34 +4356 4356 4357 435.6 871.2 4356 1981-12-05 2024-10-11 01:12:36.000 1981-12-05 2024-10-11 01:12:36 +4357 4357 4358 435.7 871.4000000000001 4357 1981-12-06 2024-10-11 01:12:37.000 1981-12-06 2024-10-11 01:12:37 +4358 4358 4359 435.8 871.6 4358 1981-12-07 2024-10-11 01:12:38.000 1981-12-07 2024-10-11 01:12:38 +4359 4359 4360 435.9 871.8000000000001 4359 1981-12-08 2024-10-11 01:12:39.000 1981-12-08 2024-10-11 01:12:39 +4361 4361 4362 436.1 872.2 4361 1981-12-10 2024-10-11 01:12:41.000 1981-12-10 2024-10-11 01:12:41 +4362 4362 4363 436.2 872.4000000000001 4362 1981-12-11 2024-10-11 01:12:42.000 1981-12-11 2024-10-11 01:12:42 +4363 4363 4364 436.3 872.6 4363 1981-12-12 2024-10-11 01:12:43.000 1981-12-12 2024-10-11 01:12:43 +4364 4364 4365 436.4 872.8000000000001 4364 1981-12-13 2024-10-11 01:12:44.000 1981-12-13 2024-10-11 01:12:44 +4366 4366 4367 436.6 873.2 4366 1981-12-15 2024-10-11 01:12:46.000 1981-12-15 2024-10-11 01:12:46 +4367 4367 4368 436.7 873.4000000000001 4367 1981-12-16 2024-10-11 01:12:47.000 1981-12-16 2024-10-11 01:12:47 +4368 4368 4369 436.8 873.6 4368 1981-12-17 2024-10-11 01:12:48.000 1981-12-17 2024-10-11 01:12:48 +4369 4369 4370 436.9 873.8000000000001 4369 1981-12-18 2024-10-11 01:12:49.000 1981-12-18 2024-10-11 01:12:49 +4371 4371 4372 437.1 874.2 4371 1981-12-20 2024-10-11 01:12:51.000 1981-12-20 2024-10-11 01:12:51 +4372 4372 4373 437.2 874.4000000000001 4372 1981-12-21 2024-10-11 01:12:52.000 1981-12-21 2024-10-11 01:12:52 +4373 4373 4374 437.3 874.6 4373 1981-12-22 2024-10-11 01:12:53.000 1981-12-22 2024-10-11 01:12:53 +4374 4374 4375 437.4 874.8000000000001 4374 1981-12-23 2024-10-11 01:12:54.000 1981-12-23 2024-10-11 01:12:54 +4376 4376 4377 437.6 875.2 4376 1981-12-25 2024-10-11 01:12:56.000 1981-12-25 2024-10-11 01:12:56 +4377 4377 4378 437.7 875.4000000000001 4377 1981-12-26 2024-10-11 01:12:57.000 1981-12-26 2024-10-11 01:12:57 +4378 4378 4379 437.8 875.6 4378 1981-12-27 2024-10-11 01:12:58.000 1981-12-27 2024-10-11 01:12:58 +4379 4379 4380 437.9 875.8000000000001 4379 1981-12-28 2024-10-11 01:12:59.000 1981-12-28 2024-10-11 01:12:59 +4381 4381 4382 438.1 876.2 4381 1981-12-30 2024-10-11 01:13:01.000 1981-12-30 2024-10-11 01:13:01 +4382 4382 4383 438.2 876.4000000000001 4382 1981-12-31 2024-10-11 01:13:02.000 1981-12-31 2024-10-11 01:13:02 +4383 4383 4384 438.3 876.6 4383 1982-01-01 2024-10-11 01:13:03.000 1982-01-01 2024-10-11 01:13:03 +4384 4384 4385 438.4 876.8000000000001 4384 1982-01-02 2024-10-11 01:13:04.000 1982-01-02 2024-10-11 01:13:04 +4386 4386 4387 438.6 877.2 4386 1982-01-04 2024-10-11 01:13:06.000 1982-01-04 2024-10-11 01:13:06 +4387 4387 4388 438.7 877.4000000000001 4387 1982-01-05 2024-10-11 01:13:07.000 1982-01-05 2024-10-11 01:13:07 +4388 4388 4389 438.8 877.6 4388 1982-01-06 2024-10-11 01:13:08.000 1982-01-06 2024-10-11 01:13:08 +4389 4389 4390 438.9 877.8000000000001 4389 1982-01-07 2024-10-11 01:13:09.000 1982-01-07 2024-10-11 01:13:09 +4391 4391 4392 439.1 878.2 4391 1982-01-09 2024-10-11 01:13:11.000 1982-01-09 2024-10-11 01:13:11 +4392 4392 4393 439.2 878.4000000000001 4392 1982-01-10 2024-10-11 01:13:12.000 1982-01-10 2024-10-11 01:13:12 +4393 4393 4394 439.3 878.6 4393 1982-01-11 2024-10-11 01:13:13.000 1982-01-11 2024-10-11 01:13:13 +4394 4394 4395 439.4 878.8000000000001 4394 1982-01-12 2024-10-11 01:13:14.000 1982-01-12 2024-10-11 01:13:14 +4396 4396 4397 439.6 879.2 4396 1982-01-14 2024-10-11 01:13:16.000 1982-01-14 2024-10-11 01:13:16 +4397 4397 4398 439.7 879.4000000000001 4397 1982-01-15 2024-10-11 01:13:17.000 1982-01-15 2024-10-11 01:13:17 +4398 4398 4399 439.8 879.6 4398 1982-01-16 2024-10-11 01:13:18.000 1982-01-16 2024-10-11 01:13:18 +4399 4399 4400 439.9 879.8000000000001 4399 1982-01-17 2024-10-11 01:13:19.000 1982-01-17 2024-10-11 01:13:19 +4401 4401 4402 440.1 880.2 4401 1982-01-19 2024-10-11 01:13:21.000 1982-01-19 2024-10-11 01:13:21 +4402 4402 4403 440.2 880.4000000000001 4402 1982-01-20 2024-10-11 01:13:22.000 1982-01-20 2024-10-11 01:13:22 +4403 4403 4404 440.3 880.6 4403 1982-01-21 2024-10-11 01:13:23.000 1982-01-21 2024-10-11 01:13:23 +4404 4404 4405 440.4 880.8000000000001 4404 1982-01-22 2024-10-11 01:13:24.000 1982-01-22 2024-10-11 01:13:24 +4406 4406 4407 440.6 881.2 4406 1982-01-24 2024-10-11 01:13:26.000 1982-01-24 2024-10-11 01:13:26 +4407 4407 4408 440.7 881.4000000000001 4407 1982-01-25 2024-10-11 01:13:27.000 1982-01-25 2024-10-11 01:13:27 +4408 4408 4409 440.8 881.6 4408 1982-01-26 2024-10-11 01:13:28.000 1982-01-26 2024-10-11 01:13:28 +4409 4409 4410 440.9 881.8000000000001 4409 1982-01-27 2024-10-11 01:13:29.000 1982-01-27 2024-10-11 01:13:29 +4411 4411 4412 441.1 882.2 4411 1982-01-29 2024-10-11 01:13:31.000 1982-01-29 2024-10-11 01:13:31 +4412 4412 4413 441.2 882.4000000000001 4412 1982-01-30 2024-10-11 01:13:32.000 1982-01-30 2024-10-11 01:13:32 +4413 4413 4414 441.3 882.6 4413 1982-01-31 2024-10-11 01:13:33.000 1982-01-31 2024-10-11 01:13:33 +4414 4414 4415 441.4 882.8000000000001 4414 1982-02-01 2024-10-11 01:13:34.000 1982-02-01 2024-10-11 01:13:34 +4416 4416 4417 441.6 883.2 4416 1982-02-03 2024-10-11 01:13:36.000 1982-02-03 2024-10-11 01:13:36 +4417 4417 4418 441.7 883.4000000000001 4417 1982-02-04 2024-10-11 01:13:37.000 1982-02-04 2024-10-11 01:13:37 +4418 4418 4419 441.8 883.6 4418 1982-02-05 2024-10-11 01:13:38.000 1982-02-05 2024-10-11 01:13:38 +4419 4419 4420 441.9 883.8000000000001 4419 1982-02-06 2024-10-11 01:13:39.000 1982-02-06 2024-10-11 01:13:39 +4421 4421 4422 442.1 884.2 4421 1982-02-08 2024-10-11 01:13:41.000 1982-02-08 2024-10-11 01:13:41 +4422 4422 4423 442.2 884.4000000000001 4422 1982-02-09 2024-10-11 01:13:42.000 1982-02-09 2024-10-11 01:13:42 +4423 4423 4424 442.3 884.6 4423 1982-02-10 2024-10-11 01:13:43.000 1982-02-10 2024-10-11 01:13:43 +4424 4424 4425 442.4 884.8000000000001 4424 1982-02-11 2024-10-11 01:13:44.000 1982-02-11 2024-10-11 01:13:44 +4426 4426 4427 442.6 885.2 4426 1982-02-13 2024-10-11 01:13:46.000 1982-02-13 2024-10-11 01:13:46 +4427 4427 4428 442.7 885.4000000000001 4427 1982-02-14 2024-10-11 01:13:47.000 1982-02-14 2024-10-11 01:13:47 +4428 4428 4429 442.8 885.6 4428 1982-02-15 2024-10-11 01:13:48.000 1982-02-15 2024-10-11 01:13:48 +4429 4429 4430 442.9 885.8000000000001 4429 1982-02-16 2024-10-11 01:13:49.000 1982-02-16 2024-10-11 01:13:49 +4431 4431 4432 443.1 886.2 4431 1982-02-18 2024-10-11 01:13:51.000 1982-02-18 2024-10-11 01:13:51 +4432 4432 4433 443.2 886.4000000000001 4432 1982-02-19 2024-10-11 01:13:52.000 1982-02-19 2024-10-11 01:13:52 +4433 4433 4434 443.3 886.6 4433 1982-02-20 2024-10-11 01:13:53.000 1982-02-20 2024-10-11 01:13:53 +4434 4434 4435 443.4 886.8000000000001 4434 1982-02-21 2024-10-11 01:13:54.000 1982-02-21 2024-10-11 01:13:54 +4436 4436 4437 443.6 887.2 4436 1982-02-23 2024-10-11 01:13:56.000 1982-02-23 2024-10-11 01:13:56 +4437 4437 4438 443.7 887.4000000000001 4437 1982-02-24 2024-10-11 01:13:57.000 1982-02-24 2024-10-11 01:13:57 +4438 4438 4439 443.8 887.6 4438 1982-02-25 2024-10-11 01:13:58.000 1982-02-25 2024-10-11 01:13:58 +4439 4439 4440 443.9 887.8000000000001 4439 1982-02-26 2024-10-11 01:13:59.000 1982-02-26 2024-10-11 01:13:59 +4441 4441 4442 444.1 888.2 4441 1982-02-28 2024-10-11 01:14:01.000 1982-02-28 2024-10-11 01:14:01 +4442 4442 4443 444.2 888.4000000000001 4442 1982-03-01 2024-10-11 01:14:02.000 1982-03-01 2024-10-11 01:14:02 +4443 4443 4444 444.3 888.6 4443 1982-03-02 2024-10-11 01:14:03.000 1982-03-02 2024-10-11 01:14:03 +4444 4444 4445 444.4 888.8000000000001 4444 1982-03-03 2024-10-11 01:14:04.000 1982-03-03 2024-10-11 01:14:04 +4446 4446 4447 444.6 889.2 4446 1982-03-05 2024-10-11 01:14:06.000 1982-03-05 2024-10-11 01:14:06 +4447 4447 4448 444.7 889.4000000000001 4447 1982-03-06 2024-10-11 01:14:07.000 1982-03-06 2024-10-11 01:14:07 +4448 4448 4449 444.8 889.6 4448 1982-03-07 2024-10-11 01:14:08.000 1982-03-07 2024-10-11 01:14:08 +4449 4449 4450 444.9 889.8000000000001 4449 1982-03-08 2024-10-11 01:14:09.000 1982-03-08 2024-10-11 01:14:09 +4451 4451 4452 445.1 890.2 4451 1982-03-10 2024-10-11 01:14:11.000 1982-03-10 2024-10-11 01:14:11 +4452 4452 4453 445.2 890.4000000000001 4452 1982-03-11 2024-10-11 01:14:12.000 1982-03-11 2024-10-11 01:14:12 +4453 4453 4454 445.3 890.6 4453 1982-03-12 2024-10-11 01:14:13.000 1982-03-12 2024-10-11 01:14:13 +4454 4454 4455 445.4 890.8000000000001 4454 1982-03-13 2024-10-11 01:14:14.000 1982-03-13 2024-10-11 01:14:14 +4456 4456 4457 445.6 891.2 4456 1982-03-15 2024-10-11 01:14:16.000 1982-03-15 2024-10-11 01:14:16 +4457 4457 4458 445.7 891.4000000000001 4457 1982-03-16 2024-10-11 01:14:17.000 1982-03-16 2024-10-11 01:14:17 +4458 4458 4459 445.8 891.6 4458 1982-03-17 2024-10-11 01:14:18.000 1982-03-17 2024-10-11 01:14:18 +4459 4459 4460 445.9 891.8000000000001 4459 1982-03-18 2024-10-11 01:14:19.000 1982-03-18 2024-10-11 01:14:19 +4461 4461 4462 446.1 892.2 4461 1982-03-20 2024-10-11 01:14:21.000 1982-03-20 2024-10-11 01:14:21 +4462 4462 4463 446.2 892.4000000000001 4462 1982-03-21 2024-10-11 01:14:22.000 1982-03-21 2024-10-11 01:14:22 +4463 4463 4464 446.3 892.6 4463 1982-03-22 2024-10-11 01:14:23.000 1982-03-22 2024-10-11 01:14:23 +4464 4464 4465 446.4 892.8000000000001 4464 1982-03-23 2024-10-11 01:14:24.000 1982-03-23 2024-10-11 01:14:24 +4466 4466 4467 446.6 893.2 4466 1982-03-25 2024-10-11 01:14:26.000 1982-03-25 2024-10-11 01:14:26 +4467 4467 4468 446.7 893.4000000000001 4467 1982-03-26 2024-10-11 01:14:27.000 1982-03-26 2024-10-11 01:14:27 +4468 4468 4469 446.8 893.6 4468 1982-03-27 2024-10-11 01:14:28.000 1982-03-27 2024-10-11 01:14:28 +4469 4469 4470 446.9 893.8000000000001 4469 1982-03-28 2024-10-11 01:14:29.000 1982-03-28 2024-10-11 01:14:29 +4471 4471 4472 447.1 894.2 4471 1982-03-30 2024-10-11 01:14:31.000 1982-03-30 2024-10-11 01:14:31 +4472 4472 4473 447.2 894.4000000000001 4472 1982-03-31 2024-10-11 01:14:32.000 1982-03-31 2024-10-11 01:14:32 +4473 4473 4474 447.3 894.6 4473 1982-04-01 2024-10-11 01:14:33.000 1982-04-01 2024-10-11 01:14:33 +4474 4474 4475 447.4 894.8000000000001 4474 1982-04-02 2024-10-11 01:14:34.000 1982-04-02 2024-10-11 01:14:34 +4476 4476 4477 447.6 895.2 4476 1982-04-04 2024-10-11 01:14:36.000 1982-04-04 2024-10-11 01:14:36 +4477 4477 4478 447.7 895.4000000000001 4477 1982-04-05 2024-10-11 01:14:37.000 1982-04-05 2024-10-11 01:14:37 +4478 4478 4479 447.8 895.6 4478 1982-04-06 2024-10-11 01:14:38.000 1982-04-06 2024-10-11 01:14:38 +4479 4479 4480 447.9 895.8000000000001 4479 1982-04-07 2024-10-11 01:14:39.000 1982-04-07 2024-10-11 01:14:39 +4481 4481 4482 448.1 896.2 4481 1982-04-09 2024-10-11 01:14:41.000 1982-04-09 2024-10-11 01:14:41 +4482 4482 4483 448.2 896.4000000000001 4482 1982-04-10 2024-10-11 01:14:42.000 1982-04-10 2024-10-11 01:14:42 +4483 4483 4484 448.3 896.6 4483 1982-04-11 2024-10-11 01:14:43.000 1982-04-11 2024-10-11 01:14:43 +4484 4484 4485 448.4 896.8000000000001 4484 1982-04-12 2024-10-11 01:14:44.000 1982-04-12 2024-10-11 01:14:44 +4486 4486 4487 448.6 897.2 4486 1982-04-14 2024-10-11 01:14:46.000 1982-04-14 2024-10-11 01:14:46 +4487 4487 4488 448.7 897.4000000000001 4487 1982-04-15 2024-10-11 01:14:47.000 1982-04-15 2024-10-11 01:14:47 +4488 4488 4489 448.8 897.6 4488 1982-04-16 2024-10-11 01:14:48.000 1982-04-16 2024-10-11 01:14:48 +4489 4489 4490 448.9 897.8000000000001 4489 1982-04-17 2024-10-11 01:14:49.000 1982-04-17 2024-10-11 01:14:49 +4491 4491 4492 449.1 898.2 4491 1982-04-19 2024-10-11 01:14:51.000 1982-04-19 2024-10-11 01:14:51 +4492 4492 4493 449.2 898.4000000000001 4492 1982-04-20 2024-10-11 01:14:52.000 1982-04-20 2024-10-11 01:14:52 +4493 4493 4494 449.3 898.6 4493 1982-04-21 2024-10-11 01:14:53.000 1982-04-21 2024-10-11 01:14:53 +4494 4494 4495 449.4 898.8000000000001 4494 1982-04-22 2024-10-11 01:14:54.000 1982-04-22 2024-10-11 01:14:54 +4496 4496 4497 449.6 899.2 4496 1982-04-24 2024-10-11 01:14:56.000 1982-04-24 2024-10-11 01:14:56 +4497 4497 4498 449.7 899.4000000000001 4497 1982-04-25 2024-10-11 01:14:57.000 1982-04-25 2024-10-11 01:14:57 +4498 4498 4499 449.8 899.6 4498 1982-04-26 2024-10-11 01:14:58.000 1982-04-26 2024-10-11 01:14:58 +4499 4499 4500 449.9 899.8000000000001 4499 1982-04-27 2024-10-11 01:14:59.000 1982-04-27 2024-10-11 01:14:59 +4501 4501 4502 450.1 900.2 4501 1982-04-29 2024-10-11 01:15:01.000 1982-04-29 2024-10-11 01:15:01 +4502 4502 4503 450.2 900.4000000000001 4502 1982-04-30 2024-10-11 01:15:02.000 1982-04-30 2024-10-11 01:15:02 +4503 4503 4504 450.3 900.6 4503 1982-05-01 2024-10-11 01:15:03.000 1982-05-01 2024-10-11 01:15:03 +4504 4504 4505 450.4 900.8000000000001 4504 1982-05-02 2024-10-11 01:15:04.000 1982-05-02 2024-10-11 01:15:04 +4506 4506 4507 450.6 901.2 4506 1982-05-04 2024-10-11 01:15:06.000 1982-05-04 2024-10-11 01:15:06 +4507 4507 4508 450.7 901.4000000000001 4507 1982-05-05 2024-10-11 01:15:07.000 1982-05-05 2024-10-11 01:15:07 +4508 4508 4509 450.8 901.6 4508 1982-05-06 2024-10-11 01:15:08.000 1982-05-06 2024-10-11 01:15:08 +4509 4509 4510 450.9 901.8000000000001 4509 1982-05-07 2024-10-11 01:15:09.000 1982-05-07 2024-10-11 01:15:09 +4511 4511 4512 451.1 902.2 4511 1982-05-09 2024-10-11 01:15:11.000 1982-05-09 2024-10-11 01:15:11 +4512 4512 4513 451.2 902.4000000000001 4512 1982-05-10 2024-10-11 01:15:12.000 1982-05-10 2024-10-11 01:15:12 +4513 4513 4514 451.3 902.6 4513 1982-05-11 2024-10-11 01:15:13.000 1982-05-11 2024-10-11 01:15:13 +4514 4514 4515 451.4 902.8000000000001 4514 1982-05-12 2024-10-11 01:15:14.000 1982-05-12 2024-10-11 01:15:14 +4516 4516 4517 451.6 903.2 4516 1982-05-14 2024-10-11 01:15:16.000 1982-05-14 2024-10-11 01:15:16 +4517 4517 4518 451.7 903.4000000000001 4517 1982-05-15 2024-10-11 01:15:17.000 1982-05-15 2024-10-11 01:15:17 +4518 4518 4519 451.8 903.6 4518 1982-05-16 2024-10-11 01:15:18.000 1982-05-16 2024-10-11 01:15:18 +4519 4519 4520 451.9 903.8000000000001 4519 1982-05-17 2024-10-11 01:15:19.000 1982-05-17 2024-10-11 01:15:19 +4521 4521 4522 452.1 904.2 4521 1982-05-19 2024-10-11 01:15:21.000 1982-05-19 2024-10-11 01:15:21 +4522 4522 4523 452.2 904.4000000000001 4522 1982-05-20 2024-10-11 01:15:22.000 1982-05-20 2024-10-11 01:15:22 +4523 4523 4524 452.3 904.6 4523 1982-05-21 2024-10-11 01:15:23.000 1982-05-21 2024-10-11 01:15:23 +4524 4524 4525 452.4 904.8000000000001 4524 1982-05-22 2024-10-11 01:15:24.000 1982-05-22 2024-10-11 01:15:24 +4526 4526 4527 452.6 905.2 4526 1982-05-24 2024-10-11 01:15:26.000 1982-05-24 2024-10-11 01:15:26 +4527 4527 4528 452.7 905.4000000000001 4527 1982-05-25 2024-10-11 01:15:27.000 1982-05-25 2024-10-11 01:15:27 +4528 4528 4529 452.8 905.6 4528 1982-05-26 2024-10-11 01:15:28.000 1982-05-26 2024-10-11 01:15:28 +4529 4529 4530 452.9 905.8000000000001 4529 1982-05-27 2024-10-11 01:15:29.000 1982-05-27 2024-10-11 01:15:29 +4531 4531 4532 453.1 906.2 4531 1982-05-29 2024-10-11 01:15:31.000 1982-05-29 2024-10-11 01:15:31 +4532 4532 4533 453.2 906.4000000000001 4532 1982-05-30 2024-10-11 01:15:32.000 1982-05-30 2024-10-11 01:15:32 +4533 4533 4534 453.3 906.6 4533 1982-05-31 2024-10-11 01:15:33.000 1982-05-31 2024-10-11 01:15:33 +4534 4534 4535 453.4 906.8000000000001 4534 1982-06-01 2024-10-11 01:15:34.000 1982-06-01 2024-10-11 01:15:34 +4536 4536 4537 453.6 907.2 4536 1982-06-03 2024-10-11 01:15:36.000 1982-06-03 2024-10-11 01:15:36 +4537 4537 4538 453.7 907.4000000000001 4537 1982-06-04 2024-10-11 01:15:37.000 1982-06-04 2024-10-11 01:15:37 +4538 4538 4539 453.8 907.6 4538 1982-06-05 2024-10-11 01:15:38.000 1982-06-05 2024-10-11 01:15:38 +4539 4539 4540 453.9 907.8000000000001 4539 1982-06-06 2024-10-11 01:15:39.000 1982-06-06 2024-10-11 01:15:39 +4541 4541 4542 454.1 908.2 4541 1982-06-08 2024-10-11 01:15:41.000 1982-06-08 2024-10-11 01:15:41 +4542 4542 4543 454.2 908.4000000000001 4542 1982-06-09 2024-10-11 01:15:42.000 1982-06-09 2024-10-11 01:15:42 +4543 4543 4544 454.3 908.6 4543 1982-06-10 2024-10-11 01:15:43.000 1982-06-10 2024-10-11 01:15:43 +4544 4544 4545 454.4 908.8000000000001 4544 1982-06-11 2024-10-11 01:15:44.000 1982-06-11 2024-10-11 01:15:44 +4546 4546 4547 454.6 909.2 4546 1982-06-13 2024-10-11 01:15:46.000 1982-06-13 2024-10-11 01:15:46 +4547 4547 4548 454.7 909.4000000000001 4547 1982-06-14 2024-10-11 01:15:47.000 1982-06-14 2024-10-11 01:15:47 +4548 4548 4549 454.8 909.6 4548 1982-06-15 2024-10-11 01:15:48.000 1982-06-15 2024-10-11 01:15:48 +4549 4549 4550 454.9 909.8000000000001 4549 1982-06-16 2024-10-11 01:15:49.000 1982-06-16 2024-10-11 01:15:49 +4551 4551 4552 455.1 910.2 4551 1982-06-18 2024-10-11 01:15:51.000 1982-06-18 2024-10-11 01:15:51 +4552 4552 4553 455.2 910.4000000000001 4552 1982-06-19 2024-10-11 01:15:52.000 1982-06-19 2024-10-11 01:15:52 +4553 4553 4554 455.3 910.6 4553 1982-06-20 2024-10-11 01:15:53.000 1982-06-20 2024-10-11 01:15:53 +4554 4554 4555 455.4 910.8000000000001 4554 1982-06-21 2024-10-11 01:15:54.000 1982-06-21 2024-10-11 01:15:54 +4556 4556 4557 455.6 911.2 4556 1982-06-23 2024-10-11 01:15:56.000 1982-06-23 2024-10-11 01:15:56 +4557 4557 4558 455.7 911.4000000000001 4557 1982-06-24 2024-10-11 01:15:57.000 1982-06-24 2024-10-11 01:15:57 +4558 4558 4559 455.8 911.6 4558 1982-06-25 2024-10-11 01:15:58.000 1982-06-25 2024-10-11 01:15:58 +4559 4559 4560 455.9 911.8000000000001 4559 1982-06-26 2024-10-11 01:15:59.000 1982-06-26 2024-10-11 01:15:59 +4561 4561 4562 456.1 912.2 4561 1982-06-28 2024-10-11 01:16:01.000 1982-06-28 2024-10-11 01:16:01 +4562 4562 4563 456.2 912.4000000000001 4562 1982-06-29 2024-10-11 01:16:02.000 1982-06-29 2024-10-11 01:16:02 +4563 4563 4564 456.3 912.6 4563 1982-06-30 2024-10-11 01:16:03.000 1982-06-30 2024-10-11 01:16:03 +4564 4564 4565 456.4 912.8000000000001 4564 1982-07-01 2024-10-11 01:16:04.000 1982-07-01 2024-10-11 01:16:04 +4566 4566 4567 456.6 913.2 4566 1982-07-03 2024-10-11 01:16:06.000 1982-07-03 2024-10-11 01:16:06 +4567 4567 4568 456.7 913.4000000000001 4567 1982-07-04 2024-10-11 01:16:07.000 1982-07-04 2024-10-11 01:16:07 +4568 4568 4569 456.8 913.6 4568 1982-07-05 2024-10-11 01:16:08.000 1982-07-05 2024-10-11 01:16:08 +4569 4569 4570 456.9 913.8000000000001 4569 1982-07-06 2024-10-11 01:16:09.000 1982-07-06 2024-10-11 01:16:09 +4571 4571 4572 457.1 914.2 4571 1982-07-08 2024-10-11 01:16:11.000 1982-07-08 2024-10-11 01:16:11 +4572 4572 4573 457.2 914.4000000000001 4572 1982-07-09 2024-10-11 01:16:12.000 1982-07-09 2024-10-11 01:16:12 +4573 4573 4574 457.3 914.6 4573 1982-07-10 2024-10-11 01:16:13.000 1982-07-10 2024-10-11 01:16:13 +4574 4574 4575 457.4 914.8000000000001 4574 1982-07-11 2024-10-11 01:16:14.000 1982-07-11 2024-10-11 01:16:14 +4576 4576 4577 457.6 915.2 4576 1982-07-13 2024-10-11 01:16:16.000 1982-07-13 2024-10-11 01:16:16 +4577 4577 4578 457.7 915.4000000000001 4577 1982-07-14 2024-10-11 01:16:17.000 1982-07-14 2024-10-11 01:16:17 +4578 4578 4579 457.8 915.6 4578 1982-07-15 2024-10-11 01:16:18.000 1982-07-15 2024-10-11 01:16:18 +4579 4579 4580 457.9 915.8000000000001 4579 1982-07-16 2024-10-11 01:16:19.000 1982-07-16 2024-10-11 01:16:19 +4581 4581 4582 458.1 916.2 4581 1982-07-18 2024-10-11 01:16:21.000 1982-07-18 2024-10-11 01:16:21 +4582 4582 4583 458.2 916.4000000000001 4582 1982-07-19 2024-10-11 01:16:22.000 1982-07-19 2024-10-11 01:16:22 +4583 4583 4584 458.3 916.6 4583 1982-07-20 2024-10-11 01:16:23.000 1982-07-20 2024-10-11 01:16:23 +4584 4584 4585 458.4 916.8000000000001 4584 1982-07-21 2024-10-11 01:16:24.000 1982-07-21 2024-10-11 01:16:24 +4586 4586 4587 458.6 917.2 4586 1982-07-23 2024-10-11 01:16:26.000 1982-07-23 2024-10-11 01:16:26 +4587 4587 4588 458.7 917.4000000000001 4587 1982-07-24 2024-10-11 01:16:27.000 1982-07-24 2024-10-11 01:16:27 +4588 4588 4589 458.8 917.6 4588 1982-07-25 2024-10-11 01:16:28.000 1982-07-25 2024-10-11 01:16:28 +4589 4589 4590 458.9 917.8000000000001 4589 1982-07-26 2024-10-11 01:16:29.000 1982-07-26 2024-10-11 01:16:29 +4591 4591 4592 459.1 918.2 4591 1982-07-28 2024-10-11 01:16:31.000 1982-07-28 2024-10-11 01:16:31 +4592 4592 4593 459.2 918.4000000000001 4592 1982-07-29 2024-10-11 01:16:32.000 1982-07-29 2024-10-11 01:16:32 +4593 4593 4594 459.3 918.6 4593 1982-07-30 2024-10-11 01:16:33.000 1982-07-30 2024-10-11 01:16:33 +4594 4594 4595 459.4 918.8000000000001 4594 1982-07-31 2024-10-11 01:16:34.000 1982-07-31 2024-10-11 01:16:34 +4596 4596 4597 459.6 919.2 4596 1982-08-02 2024-10-11 01:16:36.000 1982-08-02 2024-10-11 01:16:36 +4597 4597 4598 459.7 919.4000000000001 4597 1982-08-03 2024-10-11 01:16:37.000 1982-08-03 2024-10-11 01:16:37 +4598 4598 4599 459.8 919.6 4598 1982-08-04 2024-10-11 01:16:38.000 1982-08-04 2024-10-11 01:16:38 +4599 4599 4600 459.9 919.8000000000001 4599 1982-08-05 2024-10-11 01:16:39.000 1982-08-05 2024-10-11 01:16:39 +4601 4601 4602 460.1 920.2 4601 1982-08-07 2024-10-11 01:16:41.000 1982-08-07 2024-10-11 01:16:41 +4602 4602 4603 460.2 920.4000000000001 4602 1982-08-08 2024-10-11 01:16:42.000 1982-08-08 2024-10-11 01:16:42 +4603 4603 4604 460.3 920.6 4603 1982-08-09 2024-10-11 01:16:43.000 1982-08-09 2024-10-11 01:16:43 +4604 4604 4605 460.4 920.8000000000001 4604 1982-08-10 2024-10-11 01:16:44.000 1982-08-10 2024-10-11 01:16:44 +4606 4606 4607 460.6 921.2 4606 1982-08-12 2024-10-11 01:16:46.000 1982-08-12 2024-10-11 01:16:46 +4607 4607 4608 460.7 921.4000000000001 4607 1982-08-13 2024-10-11 01:16:47.000 1982-08-13 2024-10-11 01:16:47 +4608 4608 4609 460.8 921.6 4608 1982-08-14 2024-10-11 01:16:48.000 1982-08-14 2024-10-11 01:16:48 +4609 4609 4610 460.9 921.8000000000001 4609 1982-08-15 2024-10-11 01:16:49.000 1982-08-15 2024-10-11 01:16:49 +4611 4611 4612 461.1 922.2 4611 1982-08-17 2024-10-11 01:16:51.000 1982-08-17 2024-10-11 01:16:51 +4612 4612 4613 461.2 922.4000000000001 4612 1982-08-18 2024-10-11 01:16:52.000 1982-08-18 2024-10-11 01:16:52 +4613 4613 4614 461.3 922.6 4613 1982-08-19 2024-10-11 01:16:53.000 1982-08-19 2024-10-11 01:16:53 +4614 4614 4615 461.4 922.8000000000001 4614 1982-08-20 2024-10-11 01:16:54.000 1982-08-20 2024-10-11 01:16:54 +4616 4616 4617 461.6 923.2 4616 1982-08-22 2024-10-11 01:16:56.000 1982-08-22 2024-10-11 01:16:56 +4617 4617 4618 461.7 923.4000000000001 4617 1982-08-23 2024-10-11 01:16:57.000 1982-08-23 2024-10-11 01:16:57 +4618 4618 4619 461.8 923.6 4618 1982-08-24 2024-10-11 01:16:58.000 1982-08-24 2024-10-11 01:16:58 +4619 4619 4620 461.9 923.8000000000001 4619 1982-08-25 2024-10-11 01:16:59.000 1982-08-25 2024-10-11 01:16:59 +4621 4621 4622 462.1 924.2 4621 1982-08-27 2024-10-11 01:17:01.000 1982-08-27 2024-10-11 01:17:01 +4622 4622 4623 462.2 924.4000000000001 4622 1982-08-28 2024-10-11 01:17:02.000 1982-08-28 2024-10-11 01:17:02 +4623 4623 4624 462.3 924.6 4623 1982-08-29 2024-10-11 01:17:03.000 1982-08-29 2024-10-11 01:17:03 +4624 4624 4625 462.4 924.8000000000001 4624 1982-08-30 2024-10-11 01:17:04.000 1982-08-30 2024-10-11 01:17:04 +4626 4626 4627 462.6 925.2 4626 1982-09-01 2024-10-11 01:17:06.000 1982-09-01 2024-10-11 01:17:06 +4627 4627 4628 462.7 925.4000000000001 4627 1982-09-02 2024-10-11 01:17:07.000 1982-09-02 2024-10-11 01:17:07 +4628 4628 4629 462.8 925.6 4628 1982-09-03 2024-10-11 01:17:08.000 1982-09-03 2024-10-11 01:17:08 +4629 4629 4630 462.9 925.8000000000001 4629 1982-09-04 2024-10-11 01:17:09.000 1982-09-04 2024-10-11 01:17:09 +4631 4631 4632 463.1 926.2 4631 1982-09-06 2024-10-11 01:17:11.000 1982-09-06 2024-10-11 01:17:11 +4632 4632 4633 463.2 926.4000000000001 4632 1982-09-07 2024-10-11 01:17:12.000 1982-09-07 2024-10-11 01:17:12 +4633 4633 4634 463.3 926.6 4633 1982-09-08 2024-10-11 01:17:13.000 1982-09-08 2024-10-11 01:17:13 +4634 4634 4635 463.4 926.8000000000001 4634 1982-09-09 2024-10-11 01:17:14.000 1982-09-09 2024-10-11 01:17:14 +4636 4636 4637 463.6 927.2 4636 1982-09-11 2024-10-11 01:17:16.000 1982-09-11 2024-10-11 01:17:16 +4637 4637 4638 463.7 927.4000000000001 4637 1982-09-12 2024-10-11 01:17:17.000 1982-09-12 2024-10-11 01:17:17 +4638 4638 4639 463.8 927.6 4638 1982-09-13 2024-10-11 01:17:18.000 1982-09-13 2024-10-11 01:17:18 +4639 4639 4640 463.9 927.8000000000001 4639 1982-09-14 2024-10-11 01:17:19.000 1982-09-14 2024-10-11 01:17:19 +4641 4641 4642 464.1 928.2 4641 1982-09-16 2024-10-11 01:17:21.000 1982-09-16 2024-10-11 01:17:21 +4642 4642 4643 464.2 928.4000000000001 4642 1982-09-17 2024-10-11 01:17:22.000 1982-09-17 2024-10-11 01:17:22 +4643 4643 4644 464.3 928.6 4643 1982-09-18 2024-10-11 01:17:23.000 1982-09-18 2024-10-11 01:17:23 +4644 4644 4645 464.4 928.8000000000001 4644 1982-09-19 2024-10-11 01:17:24.000 1982-09-19 2024-10-11 01:17:24 +4646 4646 4647 464.6 929.2 4646 1982-09-21 2024-10-11 01:17:26.000 1982-09-21 2024-10-11 01:17:26 +4647 4647 4648 464.7 929.4000000000001 4647 1982-09-22 2024-10-11 01:17:27.000 1982-09-22 2024-10-11 01:17:27 +4648 4648 4649 464.8 929.6 4648 1982-09-23 2024-10-11 01:17:28.000 1982-09-23 2024-10-11 01:17:28 +4649 4649 4650 464.9 929.8000000000001 4649 1982-09-24 2024-10-11 01:17:29.000 1982-09-24 2024-10-11 01:17:29 +4651 4651 4652 465.1 930.2 4651 1982-09-26 2024-10-11 01:17:31.000 1982-09-26 2024-10-11 01:17:31 +4652 4652 4653 465.2 930.4000000000001 4652 1982-09-27 2024-10-11 01:17:32.000 1982-09-27 2024-10-11 01:17:32 +4653 4653 4654 465.3 930.6 4653 1982-09-28 2024-10-11 01:17:33.000 1982-09-28 2024-10-11 01:17:33 +4654 4654 4655 465.4 930.8000000000001 4654 1982-09-29 2024-10-11 01:17:34.000 1982-09-29 2024-10-11 01:17:34 +4656 4656 4657 465.6 931.2 4656 1982-10-01 2024-10-11 01:17:36.000 1982-10-01 2024-10-11 01:17:36 +4657 4657 4658 465.7 931.4000000000001 4657 1982-10-02 2024-10-11 01:17:37.000 1982-10-02 2024-10-11 01:17:37 +4658 4658 4659 465.8 931.6 4658 1982-10-03 2024-10-11 01:17:38.000 1982-10-03 2024-10-11 01:17:38 +4659 4659 4660 465.9 931.8000000000001 4659 1982-10-04 2024-10-11 01:17:39.000 1982-10-04 2024-10-11 01:17:39 +4661 4661 4662 466.1 932.2 4661 1982-10-06 2024-10-11 01:17:41.000 1982-10-06 2024-10-11 01:17:41 +4662 4662 4663 466.2 932.4000000000001 4662 1982-10-07 2024-10-11 01:17:42.000 1982-10-07 2024-10-11 01:17:42 +4663 4663 4664 466.3 932.6 4663 1982-10-08 2024-10-11 01:17:43.000 1982-10-08 2024-10-11 01:17:43 +4664 4664 4665 466.4 932.8000000000001 4664 1982-10-09 2024-10-11 01:17:44.000 1982-10-09 2024-10-11 01:17:44 +4666 4666 4667 466.6 933.2 4666 1982-10-11 2024-10-11 01:17:46.000 1982-10-11 2024-10-11 01:17:46 +4667 4667 4668 466.7 933.4000000000001 4667 1982-10-12 2024-10-11 01:17:47.000 1982-10-12 2024-10-11 01:17:47 +4668 4668 4669 466.8 933.6 4668 1982-10-13 2024-10-11 01:17:48.000 1982-10-13 2024-10-11 01:17:48 +4669 4669 4670 466.9 933.8000000000001 4669 1982-10-14 2024-10-11 01:17:49.000 1982-10-14 2024-10-11 01:17:49 +4671 4671 4672 467.1 934.2 4671 1982-10-16 2024-10-11 01:17:51.000 1982-10-16 2024-10-11 01:17:51 +4672 4672 4673 467.2 934.4000000000001 4672 1982-10-17 2024-10-11 01:17:52.000 1982-10-17 2024-10-11 01:17:52 +4673 4673 4674 467.3 934.6 4673 1982-10-18 2024-10-11 01:17:53.000 1982-10-18 2024-10-11 01:17:53 +4674 4674 4675 467.4 934.8000000000001 4674 1982-10-19 2024-10-11 01:17:54.000 1982-10-19 2024-10-11 01:17:54 +4676 4676 4677 467.6 935.2 4676 1982-10-21 2024-10-11 01:17:56.000 1982-10-21 2024-10-11 01:17:56 +4677 4677 4678 467.7 935.4000000000001 4677 1982-10-22 2024-10-11 01:17:57.000 1982-10-22 2024-10-11 01:17:57 +4678 4678 4679 467.8 935.6 4678 1982-10-23 2024-10-11 01:17:58.000 1982-10-23 2024-10-11 01:17:58 +4679 4679 4680 467.9 935.8000000000001 4679 1982-10-24 2024-10-11 01:17:59.000 1982-10-24 2024-10-11 01:17:59 +4681 4681 4682 468.1 936.2 4681 1982-10-26 2024-10-11 01:18:01.000 1982-10-26 2024-10-11 01:18:01 +4682 4682 4683 468.2 936.4000000000001 4682 1982-10-27 2024-10-11 01:18:02.000 1982-10-27 2024-10-11 01:18:02 +4683 4683 4684 468.3 936.6 4683 1982-10-28 2024-10-11 01:18:03.000 1982-10-28 2024-10-11 01:18:03 +4684 4684 4685 468.4 936.8000000000001 4684 1982-10-29 2024-10-11 01:18:04.000 1982-10-29 2024-10-11 01:18:04 +4686 4686 4687 468.6 937.2 4686 1982-10-31 2024-10-11 01:18:06.000 1982-10-31 2024-10-11 01:18:06 +4687 4687 4688 468.7 937.4000000000001 4687 1982-11-01 2024-10-11 01:18:07.000 1982-11-01 2024-10-11 01:18:07 +4688 4688 4689 468.8 937.6 4688 1982-11-02 2024-10-11 01:18:08.000 1982-11-02 2024-10-11 01:18:08 +4689 4689 4690 468.9 937.8000000000001 4689 1982-11-03 2024-10-11 01:18:09.000 1982-11-03 2024-10-11 01:18:09 +4691 4691 4692 469.1 938.2 4691 1982-11-05 2024-10-11 01:18:11.000 1982-11-05 2024-10-11 01:18:11 +4692 4692 4693 469.2 938.4000000000001 4692 1982-11-06 2024-10-11 01:18:12.000 1982-11-06 2024-10-11 01:18:12 +4693 4693 4694 469.3 938.6 4693 1982-11-07 2024-10-11 01:18:13.000 1982-11-07 2024-10-11 01:18:13 +4694 4694 4695 469.4 938.8000000000001 4694 1982-11-08 2024-10-11 01:18:14.000 1982-11-08 2024-10-11 01:18:14 +4696 4696 4697 469.6 939.2 4696 1982-11-10 2024-10-11 01:18:16.000 1982-11-10 2024-10-11 01:18:16 +4697 4697 4698 469.7 939.4000000000001 4697 1982-11-11 2024-10-11 01:18:17.000 1982-11-11 2024-10-11 01:18:17 +4698 4698 4699 469.8 939.6 4698 1982-11-12 2024-10-11 01:18:18.000 1982-11-12 2024-10-11 01:18:18 +4699 4699 4700 469.9 939.8000000000001 4699 1982-11-13 2024-10-11 01:18:19.000 1982-11-13 2024-10-11 01:18:19 +4701 4701 4702 470.1 940.2 4701 1982-11-15 2024-10-11 01:18:21.000 1982-11-15 2024-10-11 01:18:21 +4702 4702 4703 470.2 940.4000000000001 4702 1982-11-16 2024-10-11 01:18:22.000 1982-11-16 2024-10-11 01:18:22 +4703 4703 4704 470.3 940.6 4703 1982-11-17 2024-10-11 01:18:23.000 1982-11-17 2024-10-11 01:18:23 +4704 4704 4705 470.4 940.8000000000001 4704 1982-11-18 2024-10-11 01:18:24.000 1982-11-18 2024-10-11 01:18:24 +4706 4706 4707 470.6 941.2 4706 1982-11-20 2024-10-11 01:18:26.000 1982-11-20 2024-10-11 01:18:26 +4707 4707 4708 470.7 941.4000000000001 4707 1982-11-21 2024-10-11 01:18:27.000 1982-11-21 2024-10-11 01:18:27 +4708 4708 4709 470.8 941.6 4708 1982-11-22 2024-10-11 01:18:28.000 1982-11-22 2024-10-11 01:18:28 +4709 4709 4710 470.9 941.8000000000001 4709 1982-11-23 2024-10-11 01:18:29.000 1982-11-23 2024-10-11 01:18:29 +4711 4711 4712 471.1 942.2 4711 1982-11-25 2024-10-11 01:18:31.000 1982-11-25 2024-10-11 01:18:31 +4712 4712 4713 471.2 942.4000000000001 4712 1982-11-26 2024-10-11 01:18:32.000 1982-11-26 2024-10-11 01:18:32 +4713 4713 4714 471.3 942.6 4713 1982-11-27 2024-10-11 01:18:33.000 1982-11-27 2024-10-11 01:18:33 +4714 4714 4715 471.4 942.8000000000001 4714 1982-11-28 2024-10-11 01:18:34.000 1982-11-28 2024-10-11 01:18:34 +4716 4716 4717 471.6 943.2 4716 1982-11-30 2024-10-11 01:18:36.000 1982-11-30 2024-10-11 01:18:36 +4717 4717 4718 471.7 943.4000000000001 4717 1982-12-01 2024-10-11 01:18:37.000 1982-12-01 2024-10-11 01:18:37 +4718 4718 4719 471.8 943.6 4718 1982-12-02 2024-10-11 01:18:38.000 1982-12-02 2024-10-11 01:18:38 +4719 4719 4720 471.9 943.8000000000001 4719 1982-12-03 2024-10-11 01:18:39.000 1982-12-03 2024-10-11 01:18:39 +4721 4721 4722 472.1 944.2 4721 1982-12-05 2024-10-11 01:18:41.000 1982-12-05 2024-10-11 01:18:41 +4722 4722 4723 472.2 944.4000000000001 4722 1982-12-06 2024-10-11 01:18:42.000 1982-12-06 2024-10-11 01:18:42 +4723 4723 4724 472.3 944.6 4723 1982-12-07 2024-10-11 01:18:43.000 1982-12-07 2024-10-11 01:18:43 +4724 4724 4725 472.4 944.8000000000001 4724 1982-12-08 2024-10-11 01:18:44.000 1982-12-08 2024-10-11 01:18:44 +4726 4726 4727 472.6 945.2 4726 1982-12-10 2024-10-11 01:18:46.000 1982-12-10 2024-10-11 01:18:46 +4727 4727 4728 472.7 945.4000000000001 4727 1982-12-11 2024-10-11 01:18:47.000 1982-12-11 2024-10-11 01:18:47 +4728 4728 4729 472.8 945.6 4728 1982-12-12 2024-10-11 01:18:48.000 1982-12-12 2024-10-11 01:18:48 +4729 4729 4730 472.9 945.8000000000001 4729 1982-12-13 2024-10-11 01:18:49.000 1982-12-13 2024-10-11 01:18:49 +4731 4731 4732 473.1 946.2 4731 1982-12-15 2024-10-11 01:18:51.000 1982-12-15 2024-10-11 01:18:51 +4732 4732 4733 473.2 946.4000000000001 4732 1982-12-16 2024-10-11 01:18:52.000 1982-12-16 2024-10-11 01:18:52 +4733 4733 4734 473.3 946.6 4733 1982-12-17 2024-10-11 01:18:53.000 1982-12-17 2024-10-11 01:18:53 +4734 4734 4735 473.4 946.8000000000001 4734 1982-12-18 2024-10-11 01:18:54.000 1982-12-18 2024-10-11 01:18:54 +4736 4736 4737 473.6 947.2 4736 1982-12-20 2024-10-11 01:18:56.000 1982-12-20 2024-10-11 01:18:56 +4737 4737 4738 473.7 947.4000000000001 4737 1982-12-21 2024-10-11 01:18:57.000 1982-12-21 2024-10-11 01:18:57 +4738 4738 4739 473.8 947.6 4738 1982-12-22 2024-10-11 01:18:58.000 1982-12-22 2024-10-11 01:18:58 +4739 4739 4740 473.9 947.8000000000001 4739 1982-12-23 2024-10-11 01:18:59.000 1982-12-23 2024-10-11 01:18:59 +4741 4741 4742 474.1 948.2 4741 1982-12-25 2024-10-11 01:19:01.000 1982-12-25 2024-10-11 01:19:01 +4742 4742 4743 474.2 948.4000000000001 4742 1982-12-26 2024-10-11 01:19:02.000 1982-12-26 2024-10-11 01:19:02 +4743 4743 4744 474.3 948.6 4743 1982-12-27 2024-10-11 01:19:03.000 1982-12-27 2024-10-11 01:19:03 +4744 4744 4745 474.4 948.8000000000001 4744 1982-12-28 2024-10-11 01:19:04.000 1982-12-28 2024-10-11 01:19:04 +4746 4746 4747 474.6 949.2 4746 1982-12-30 2024-10-11 01:19:06.000 1982-12-30 2024-10-11 01:19:06 +4747 4747 4748 474.7 949.4000000000001 4747 1982-12-31 2024-10-11 01:19:07.000 1982-12-31 2024-10-11 01:19:07 +4748 4748 4749 474.8 949.6 4748 1983-01-01 2024-10-11 01:19:08.000 1983-01-01 2024-10-11 01:19:08 +4749 4749 4750 474.9 949.8000000000001 4749 1983-01-02 2024-10-11 01:19:09.000 1983-01-02 2024-10-11 01:19:09 +4751 4751 4752 475.1 950.2 4751 1983-01-04 2024-10-11 01:19:11.000 1983-01-04 2024-10-11 01:19:11 +4752 4752 4753 475.2 950.4000000000001 4752 1983-01-05 2024-10-11 01:19:12.000 1983-01-05 2024-10-11 01:19:12 +4753 4753 4754 475.3 950.6 4753 1983-01-06 2024-10-11 01:19:13.000 1983-01-06 2024-10-11 01:19:13 +4754 4754 4755 475.4 950.8000000000001 4754 1983-01-07 2024-10-11 01:19:14.000 1983-01-07 2024-10-11 01:19:14 +4756 4756 4757 475.6 951.2 4756 1983-01-09 2024-10-11 01:19:16.000 1983-01-09 2024-10-11 01:19:16 +4757 4757 4758 475.7 951.4000000000001 4757 1983-01-10 2024-10-11 01:19:17.000 1983-01-10 2024-10-11 01:19:17 +4758 4758 4759 475.8 951.6 4758 1983-01-11 2024-10-11 01:19:18.000 1983-01-11 2024-10-11 01:19:18 +4759 4759 4760 475.9 951.8000000000001 4759 1983-01-12 2024-10-11 01:19:19.000 1983-01-12 2024-10-11 01:19:19 +4761 4761 4762 476.1 952.2 4761 1983-01-14 2024-10-11 01:19:21.000 1983-01-14 2024-10-11 01:19:21 +4762 4762 4763 476.2 952.4000000000001 4762 1983-01-15 2024-10-11 01:19:22.000 1983-01-15 2024-10-11 01:19:22 +4763 4763 4764 476.3 952.6 4763 1983-01-16 2024-10-11 01:19:23.000 1983-01-16 2024-10-11 01:19:23 +4764 4764 4765 476.4 952.8000000000001 4764 1983-01-17 2024-10-11 01:19:24.000 1983-01-17 2024-10-11 01:19:24 +4766 4766 4767 476.6 953.2 4766 1983-01-19 2024-10-11 01:19:26.000 1983-01-19 2024-10-11 01:19:26 +4767 4767 4768 476.7 953.4000000000001 4767 1983-01-20 2024-10-11 01:19:27.000 1983-01-20 2024-10-11 01:19:27 +4768 4768 4769 476.8 953.6 4768 1983-01-21 2024-10-11 01:19:28.000 1983-01-21 2024-10-11 01:19:28 +4769 4769 4770 476.9 953.8000000000001 4769 1983-01-22 2024-10-11 01:19:29.000 1983-01-22 2024-10-11 01:19:29 +4771 4771 4772 477.1 954.2 4771 1983-01-24 2024-10-11 01:19:31.000 1983-01-24 2024-10-11 01:19:31 +4772 4772 4773 477.2 954.4000000000001 4772 1983-01-25 2024-10-11 01:19:32.000 1983-01-25 2024-10-11 01:19:32 +4773 4773 4774 477.3 954.6 4773 1983-01-26 2024-10-11 01:19:33.000 1983-01-26 2024-10-11 01:19:33 +4774 4774 4775 477.4 954.8000000000001 4774 1983-01-27 2024-10-11 01:19:34.000 1983-01-27 2024-10-11 01:19:34 +4776 4776 4777 477.6 955.2 4776 1983-01-29 2024-10-11 01:19:36.000 1983-01-29 2024-10-11 01:19:36 +4777 4777 4778 477.7 955.4000000000001 4777 1983-01-30 2024-10-11 01:19:37.000 1983-01-30 2024-10-11 01:19:37 +4778 4778 4779 477.8 955.6 4778 1983-01-31 2024-10-11 01:19:38.000 1983-01-31 2024-10-11 01:19:38 +4779 4779 4780 477.9 955.8000000000001 4779 1983-02-01 2024-10-11 01:19:39.000 1983-02-01 2024-10-11 01:19:39 +4781 4781 4782 478.1 956.2 4781 1983-02-03 2024-10-11 01:19:41.000 1983-02-03 2024-10-11 01:19:41 +4782 4782 4783 478.2 956.4000000000001 4782 1983-02-04 2024-10-11 01:19:42.000 1983-02-04 2024-10-11 01:19:42 +4783 4783 4784 478.3 956.6 4783 1983-02-05 2024-10-11 01:19:43.000 1983-02-05 2024-10-11 01:19:43 +4784 4784 4785 478.4 956.8000000000001 4784 1983-02-06 2024-10-11 01:19:44.000 1983-02-06 2024-10-11 01:19:44 +4786 4786 4787 478.6 957.2 4786 1983-02-08 2024-10-11 01:19:46.000 1983-02-08 2024-10-11 01:19:46 +4787 4787 4788 478.7 957.4000000000001 4787 1983-02-09 2024-10-11 01:19:47.000 1983-02-09 2024-10-11 01:19:47 +4788 4788 4789 478.8 957.6 4788 1983-02-10 2024-10-11 01:19:48.000 1983-02-10 2024-10-11 01:19:48 +4789 4789 4790 478.9 957.8000000000001 4789 1983-02-11 2024-10-11 01:19:49.000 1983-02-11 2024-10-11 01:19:49 +4791 4791 4792 479.1 958.2 4791 1983-02-13 2024-10-11 01:19:51.000 1983-02-13 2024-10-11 01:19:51 +4792 4792 4793 479.2 958.4000000000001 4792 1983-02-14 2024-10-11 01:19:52.000 1983-02-14 2024-10-11 01:19:52 +4793 4793 4794 479.3 958.6 4793 1983-02-15 2024-10-11 01:19:53.000 1983-02-15 2024-10-11 01:19:53 +4794 4794 4795 479.4 958.8000000000001 4794 1983-02-16 2024-10-11 01:19:54.000 1983-02-16 2024-10-11 01:19:54 +4796 4796 4797 479.6 959.2 4796 1983-02-18 2024-10-11 01:19:56.000 1983-02-18 2024-10-11 01:19:56 +4797 4797 4798 479.7 959.4000000000001 4797 1983-02-19 2024-10-11 01:19:57.000 1983-02-19 2024-10-11 01:19:57 +4798 4798 4799 479.8 959.6 4798 1983-02-20 2024-10-11 01:19:58.000 1983-02-20 2024-10-11 01:19:58 +4799 4799 4800 479.9 959.8000000000001 4799 1983-02-21 2024-10-11 01:19:59.000 1983-02-21 2024-10-11 01:19:59 +4801 4801 4802 480.1 960.2 4801 1983-02-23 2024-10-11 01:20:01.000 1983-02-23 2024-10-11 01:20:01 +4802 4802 4803 480.2 960.4000000000001 4802 1983-02-24 2024-10-11 01:20:02.000 1983-02-24 2024-10-11 01:20:02 +4803 4803 4804 480.3 960.6 4803 1983-02-25 2024-10-11 01:20:03.000 1983-02-25 2024-10-11 01:20:03 +4804 4804 4805 480.4 960.8000000000001 4804 1983-02-26 2024-10-11 01:20:04.000 1983-02-26 2024-10-11 01:20:04 +4806 4806 4807 480.6 961.2 4806 1983-02-28 2024-10-11 01:20:06.000 1983-02-28 2024-10-11 01:20:06 +4807 4807 4808 480.7 961.4000000000001 4807 1983-03-01 2024-10-11 01:20:07.000 1983-03-01 2024-10-11 01:20:07 +4808 4808 4809 480.8 961.6 4808 1983-03-02 2024-10-11 01:20:08.000 1983-03-02 2024-10-11 01:20:08 +4809 4809 4810 480.9 961.8000000000001 4809 1983-03-03 2024-10-11 01:20:09.000 1983-03-03 2024-10-11 01:20:09 +4811 4811 4812 481.1 962.2 4811 1983-03-05 2024-10-11 01:20:11.000 1983-03-05 2024-10-11 01:20:11 +4812 4812 4813 481.2 962.4000000000001 4812 1983-03-06 2024-10-11 01:20:12.000 1983-03-06 2024-10-11 01:20:12 +4813 4813 4814 481.3 962.6 4813 1983-03-07 2024-10-11 01:20:13.000 1983-03-07 2024-10-11 01:20:13 +4814 4814 4815 481.4 962.8000000000001 4814 1983-03-08 2024-10-11 01:20:14.000 1983-03-08 2024-10-11 01:20:14 +4816 4816 4817 481.6 963.2 4816 1983-03-10 2024-10-11 01:20:16.000 1983-03-10 2024-10-11 01:20:16 +4817 4817 4818 481.7 963.4000000000001 4817 1983-03-11 2024-10-11 01:20:17.000 1983-03-11 2024-10-11 01:20:17 +4818 4818 4819 481.8 963.6 4818 1983-03-12 2024-10-11 01:20:18.000 1983-03-12 2024-10-11 01:20:18 +4819 4819 4820 481.9 963.8000000000001 4819 1983-03-13 2024-10-11 01:20:19.000 1983-03-13 2024-10-11 01:20:19 +4821 4821 4822 482.1 964.2 4821 1983-03-15 2024-10-11 01:20:21.000 1983-03-15 2024-10-11 01:20:21 +4822 4822 4823 482.2 964.4000000000001 4822 1983-03-16 2024-10-11 01:20:22.000 1983-03-16 2024-10-11 01:20:22 +4823 4823 4824 482.3 964.6 4823 1983-03-17 2024-10-11 01:20:23.000 1983-03-17 2024-10-11 01:20:23 +4824 4824 4825 482.4 964.8000000000001 4824 1983-03-18 2024-10-11 01:20:24.000 1983-03-18 2024-10-11 01:20:24 +4826 4826 4827 482.6 965.2 4826 1983-03-20 2024-10-11 01:20:26.000 1983-03-20 2024-10-11 01:20:26 +4827 4827 4828 482.7 965.4000000000001 4827 1983-03-21 2024-10-11 01:20:27.000 1983-03-21 2024-10-11 01:20:27 +4828 4828 4829 482.8 965.6 4828 1983-03-22 2024-10-11 01:20:28.000 1983-03-22 2024-10-11 01:20:28 +4829 4829 4830 482.9 965.8000000000001 4829 1983-03-23 2024-10-11 01:20:29.000 1983-03-23 2024-10-11 01:20:29 +4831 4831 4832 483.1 966.2 4831 1983-03-25 2024-10-11 01:20:31.000 1983-03-25 2024-10-11 01:20:31 +4832 4832 4833 483.2 966.4000000000001 4832 1983-03-26 2024-10-11 01:20:32.000 1983-03-26 2024-10-11 01:20:32 +4833 4833 4834 483.3 966.6 4833 1983-03-27 2024-10-11 01:20:33.000 1983-03-27 2024-10-11 01:20:33 +4834 4834 4835 483.4 966.8000000000001 4834 1983-03-28 2024-10-11 01:20:34.000 1983-03-28 2024-10-11 01:20:34 +4836 4836 4837 483.6 967.2 4836 1983-03-30 2024-10-11 01:20:36.000 1983-03-30 2024-10-11 01:20:36 +4837 4837 4838 483.7 967.4000000000001 4837 1983-03-31 2024-10-11 01:20:37.000 1983-03-31 2024-10-11 01:20:37 +4838 4838 4839 483.8 967.6 4838 1983-04-01 2024-10-11 01:20:38.000 1983-04-01 2024-10-11 01:20:38 +4839 4839 4840 483.9 967.8000000000001 4839 1983-04-02 2024-10-11 01:20:39.000 1983-04-02 2024-10-11 01:20:39 +4841 4841 4842 484.1 968.2 4841 1983-04-04 2024-10-11 01:20:41.000 1983-04-04 2024-10-11 01:20:41 +4842 4842 4843 484.2 968.4000000000001 4842 1983-04-05 2024-10-11 01:20:42.000 1983-04-05 2024-10-11 01:20:42 +4843 4843 4844 484.3 968.6 4843 1983-04-06 2024-10-11 01:20:43.000 1983-04-06 2024-10-11 01:20:43 +4844 4844 4845 484.4 968.8000000000001 4844 1983-04-07 2024-10-11 01:20:44.000 1983-04-07 2024-10-11 01:20:44 +4846 4846 4847 484.6 969.2 4846 1983-04-09 2024-10-11 01:20:46.000 1983-04-09 2024-10-11 01:20:46 +4847 4847 4848 484.7 969.4000000000001 4847 1983-04-10 2024-10-11 01:20:47.000 1983-04-10 2024-10-11 01:20:47 +4848 4848 4849 484.8 969.6 4848 1983-04-11 2024-10-11 01:20:48.000 1983-04-11 2024-10-11 01:20:48 +4849 4849 4850 484.9 969.8000000000001 4849 1983-04-12 2024-10-11 01:20:49.000 1983-04-12 2024-10-11 01:20:49 +4851 4851 4852 485.1 970.2 4851 1983-04-14 2024-10-11 01:20:51.000 1983-04-14 2024-10-11 01:20:51 +4852 4852 4853 485.2 970.4000000000001 4852 1983-04-15 2024-10-11 01:20:52.000 1983-04-15 2024-10-11 01:20:52 +4853 4853 4854 485.3 970.6 4853 1983-04-16 2024-10-11 01:20:53.000 1983-04-16 2024-10-11 01:20:53 +4854 4854 4855 485.4 970.8000000000001 4854 1983-04-17 2024-10-11 01:20:54.000 1983-04-17 2024-10-11 01:20:54 +4856 4856 4857 485.6 971.2 4856 1983-04-19 2024-10-11 01:20:56.000 1983-04-19 2024-10-11 01:20:56 +4857 4857 4858 485.7 971.4000000000001 4857 1983-04-20 2024-10-11 01:20:57.000 1983-04-20 2024-10-11 01:20:57 +4858 4858 4859 485.8 971.6 4858 1983-04-21 2024-10-11 01:20:58.000 1983-04-21 2024-10-11 01:20:58 +4859 4859 4860 485.9 971.8000000000001 4859 1983-04-22 2024-10-11 01:20:59.000 1983-04-22 2024-10-11 01:20:59 +4861 4861 4862 486.1 972.2 4861 1983-04-24 2024-10-11 01:21:01.000 1983-04-24 2024-10-11 01:21:01 +4862 4862 4863 486.2 972.4000000000001 4862 1983-04-25 2024-10-11 01:21:02.000 1983-04-25 2024-10-11 01:21:02 +4863 4863 4864 486.3 972.6 4863 1983-04-26 2024-10-11 01:21:03.000 1983-04-26 2024-10-11 01:21:03 +4864 4864 4865 486.4 972.8000000000001 4864 1983-04-27 2024-10-11 01:21:04.000 1983-04-27 2024-10-11 01:21:04 +4866 4866 4867 486.6 973.2 4866 1983-04-29 2024-10-11 01:21:06.000 1983-04-29 2024-10-11 01:21:06 +4867 4867 4868 486.7 973.4000000000001 4867 1983-04-30 2024-10-11 01:21:07.000 1983-04-30 2024-10-11 01:21:07 +4868 4868 4869 486.8 973.6 4868 1983-05-01 2024-10-11 01:21:08.000 1983-05-01 2024-10-11 01:21:08 +4869 4869 4870 486.9 973.8000000000001 4869 1983-05-02 2024-10-11 01:21:09.000 1983-05-02 2024-10-11 01:21:09 +4871 4871 4872 487.1 974.2 4871 1983-05-04 2024-10-11 01:21:11.000 1983-05-04 2024-10-11 01:21:11 +4872 4872 4873 487.2 974.4000000000001 4872 1983-05-05 2024-10-11 01:21:12.000 1983-05-05 2024-10-11 01:21:12 +4873 4873 4874 487.3 974.6 4873 1983-05-06 2024-10-11 01:21:13.000 1983-05-06 2024-10-11 01:21:13 +4874 4874 4875 487.4 974.8000000000001 4874 1983-05-07 2024-10-11 01:21:14.000 1983-05-07 2024-10-11 01:21:14 +4876 4876 4877 487.6 975.2 4876 1983-05-09 2024-10-11 01:21:16.000 1983-05-09 2024-10-11 01:21:16 +4877 4877 4878 487.7 975.4000000000001 4877 1983-05-10 2024-10-11 01:21:17.000 1983-05-10 2024-10-11 01:21:17 +4878 4878 4879 487.8 975.6 4878 1983-05-11 2024-10-11 01:21:18.000 1983-05-11 2024-10-11 01:21:18 +4879 4879 4880 487.9 975.8000000000001 4879 1983-05-12 2024-10-11 01:21:19.000 1983-05-12 2024-10-11 01:21:19 +4881 4881 4882 488.1 976.2 4881 1983-05-14 2024-10-11 01:21:21.000 1983-05-14 2024-10-11 01:21:21 +4882 4882 4883 488.2 976.4000000000001 4882 1983-05-15 2024-10-11 01:21:22.000 1983-05-15 2024-10-11 01:21:22 +4883 4883 4884 488.3 976.6 4883 1983-05-16 2024-10-11 01:21:23.000 1983-05-16 2024-10-11 01:21:23 +4884 4884 4885 488.4 976.8000000000001 4884 1983-05-17 2024-10-11 01:21:24.000 1983-05-17 2024-10-11 01:21:24 +4886 4886 4887 488.6 977.2 4886 1983-05-19 2024-10-11 01:21:26.000 1983-05-19 2024-10-11 01:21:26 +4887 4887 4888 488.7 977.4000000000001 4887 1983-05-20 2024-10-11 01:21:27.000 1983-05-20 2024-10-11 01:21:27 +4888 4888 4889 488.8 977.6 4888 1983-05-21 2024-10-11 01:21:28.000 1983-05-21 2024-10-11 01:21:28 +4889 4889 4890 488.9 977.8000000000001 4889 1983-05-22 2024-10-11 01:21:29.000 1983-05-22 2024-10-11 01:21:29 +4891 4891 4892 489.1 978.2 4891 1983-05-24 2024-10-11 01:21:31.000 1983-05-24 2024-10-11 01:21:31 +4892 4892 4893 489.2 978.4000000000001 4892 1983-05-25 2024-10-11 01:21:32.000 1983-05-25 2024-10-11 01:21:32 +4893 4893 4894 489.3 978.6 4893 1983-05-26 2024-10-11 01:21:33.000 1983-05-26 2024-10-11 01:21:33 +4894 4894 4895 489.4 978.8000000000001 4894 1983-05-27 2024-10-11 01:21:34.000 1983-05-27 2024-10-11 01:21:34 +4896 4896 4897 489.6 979.2 4896 1983-05-29 2024-10-11 01:21:36.000 1983-05-29 2024-10-11 01:21:36 +4897 4897 4898 489.7 979.4000000000001 4897 1983-05-30 2024-10-11 01:21:37.000 1983-05-30 2024-10-11 01:21:37 +4898 4898 4899 489.8 979.6 4898 1983-05-31 2024-10-11 01:21:38.000 1983-05-31 2024-10-11 01:21:38 +4899 4899 4900 489.9 979.8000000000001 4899 1983-06-01 2024-10-11 01:21:39.000 1983-06-01 2024-10-11 01:21:39 +4901 4901 4902 490.1 980.2 4901 1983-06-03 2024-10-11 01:21:41.000 1983-06-03 2024-10-11 01:21:41 +4902 4902 4903 490.2 980.4000000000001 4902 1983-06-04 2024-10-11 01:21:42.000 1983-06-04 2024-10-11 01:21:42 +4903 4903 4904 490.3 980.6 4903 1983-06-05 2024-10-11 01:21:43.000 1983-06-05 2024-10-11 01:21:43 +4904 4904 4905 490.4 980.8000000000001 4904 1983-06-06 2024-10-11 01:21:44.000 1983-06-06 2024-10-11 01:21:44 +4906 4906 4907 490.6 981.2 4906 1983-06-08 2024-10-11 01:21:46.000 1983-06-08 2024-10-11 01:21:46 +4907 4907 4908 490.7 981.4000000000001 4907 1983-06-09 2024-10-11 01:21:47.000 1983-06-09 2024-10-11 01:21:47 +4908 4908 4909 490.8 981.6 4908 1983-06-10 2024-10-11 01:21:48.000 1983-06-10 2024-10-11 01:21:48 +4909 4909 4910 490.9 981.8000000000001 4909 1983-06-11 2024-10-11 01:21:49.000 1983-06-11 2024-10-11 01:21:49 +4911 4911 4912 491.1 982.2 4911 1983-06-13 2024-10-11 01:21:51.000 1983-06-13 2024-10-11 01:21:51 +4912 4912 4913 491.2 982.4000000000001 4912 1983-06-14 2024-10-11 01:21:52.000 1983-06-14 2024-10-11 01:21:52 +4913 4913 4914 491.3 982.6 4913 1983-06-15 2024-10-11 01:21:53.000 1983-06-15 2024-10-11 01:21:53 +4914 4914 4915 491.4 982.8000000000001 4914 1983-06-16 2024-10-11 01:21:54.000 1983-06-16 2024-10-11 01:21:54 +4916 4916 4917 491.6 983.2 4916 1983-06-18 2024-10-11 01:21:56.000 1983-06-18 2024-10-11 01:21:56 +4917 4917 4918 491.7 983.4000000000001 4917 1983-06-19 2024-10-11 01:21:57.000 1983-06-19 2024-10-11 01:21:57 +4918 4918 4919 491.8 983.6 4918 1983-06-20 2024-10-11 01:21:58.000 1983-06-20 2024-10-11 01:21:58 +4919 4919 4920 491.9 983.8000000000001 4919 1983-06-21 2024-10-11 01:21:59.000 1983-06-21 2024-10-11 01:21:59 +4921 4921 4922 492.1 984.2 4921 1983-06-23 2024-10-11 01:22:01.000 1983-06-23 2024-10-11 01:22:01 +4922 4922 4923 492.2 984.4000000000001 4922 1983-06-24 2024-10-11 01:22:02.000 1983-06-24 2024-10-11 01:22:02 +4923 4923 4924 492.3 984.6 4923 1983-06-25 2024-10-11 01:22:03.000 1983-06-25 2024-10-11 01:22:03 +4924 4924 4925 492.4 984.8000000000001 4924 1983-06-26 2024-10-11 01:22:04.000 1983-06-26 2024-10-11 01:22:04 +4926 4926 4927 492.6 985.2 4926 1983-06-28 2024-10-11 01:22:06.000 1983-06-28 2024-10-11 01:22:06 +4927 4927 4928 492.7 985.4000000000001 4927 1983-06-29 2024-10-11 01:22:07.000 1983-06-29 2024-10-11 01:22:07 +4928 4928 4929 492.8 985.6 4928 1983-06-30 2024-10-11 01:22:08.000 1983-06-30 2024-10-11 01:22:08 +4929 4929 4930 492.9 985.8000000000001 4929 1983-07-01 2024-10-11 01:22:09.000 1983-07-01 2024-10-11 01:22:09 +4931 4931 4932 493.1 986.2 4931 1983-07-03 2024-10-11 01:22:11.000 1983-07-03 2024-10-11 01:22:11 +4932 4932 4933 493.2 986.4000000000001 4932 1983-07-04 2024-10-11 01:22:12.000 1983-07-04 2024-10-11 01:22:12 +4933 4933 4934 493.3 986.6 4933 1983-07-05 2024-10-11 01:22:13.000 1983-07-05 2024-10-11 01:22:13 +4934 4934 4935 493.4 986.8000000000001 4934 1983-07-06 2024-10-11 01:22:14.000 1983-07-06 2024-10-11 01:22:14 +4936 4936 4937 493.6 987.2 4936 1983-07-08 2024-10-11 01:22:16.000 1983-07-08 2024-10-11 01:22:16 +4937 4937 4938 493.7 987.4000000000001 4937 1983-07-09 2024-10-11 01:22:17.000 1983-07-09 2024-10-11 01:22:17 +4938 4938 4939 493.8 987.6 4938 1983-07-10 2024-10-11 01:22:18.000 1983-07-10 2024-10-11 01:22:18 +4939 4939 4940 493.9 987.8000000000001 4939 1983-07-11 2024-10-11 01:22:19.000 1983-07-11 2024-10-11 01:22:19 +4941 4941 4942 494.1 988.2 4941 1983-07-13 2024-10-11 01:22:21.000 1983-07-13 2024-10-11 01:22:21 +4942 4942 4943 494.2 988.4000000000001 4942 1983-07-14 2024-10-11 01:22:22.000 1983-07-14 2024-10-11 01:22:22 +4943 4943 4944 494.3 988.6 4943 1983-07-15 2024-10-11 01:22:23.000 1983-07-15 2024-10-11 01:22:23 +4944 4944 4945 494.4 988.8000000000001 4944 1983-07-16 2024-10-11 01:22:24.000 1983-07-16 2024-10-11 01:22:24 +4946 4946 4947 494.6 989.2 4946 1983-07-18 2024-10-11 01:22:26.000 1983-07-18 2024-10-11 01:22:26 +4947 4947 4948 494.7 989.4000000000001 4947 1983-07-19 2024-10-11 01:22:27.000 1983-07-19 2024-10-11 01:22:27 +4948 4948 4949 494.8 989.6 4948 1983-07-20 2024-10-11 01:22:28.000 1983-07-20 2024-10-11 01:22:28 +4949 4949 4950 494.9 989.8000000000001 4949 1983-07-21 2024-10-11 01:22:29.000 1983-07-21 2024-10-11 01:22:29 +4951 4951 4952 495.1 990.2 4951 1983-07-23 2024-10-11 01:22:31.000 1983-07-23 2024-10-11 01:22:31 +4952 4952 4953 495.2 990.4000000000001 4952 1983-07-24 2024-10-11 01:22:32.000 1983-07-24 2024-10-11 01:22:32 +4953 4953 4954 495.3 990.6 4953 1983-07-25 2024-10-11 01:22:33.000 1983-07-25 2024-10-11 01:22:33 +4954 4954 4955 495.4 990.8000000000001 4954 1983-07-26 2024-10-11 01:22:34.000 1983-07-26 2024-10-11 01:22:34 +4956 4956 4957 495.6 991.2 4956 1983-07-28 2024-10-11 01:22:36.000 1983-07-28 2024-10-11 01:22:36 +4957 4957 4958 495.7 991.4000000000001 4957 1983-07-29 2024-10-11 01:22:37.000 1983-07-29 2024-10-11 01:22:37 +4958 4958 4959 495.8 991.6 4958 1983-07-30 2024-10-11 01:22:38.000 1983-07-30 2024-10-11 01:22:38 +4959 4959 4960 495.9 991.8000000000001 4959 1983-07-31 2024-10-11 01:22:39.000 1983-07-31 2024-10-11 01:22:39 +4961 4961 4962 496.1 992.2 4961 1983-08-02 2024-10-11 01:22:41.000 1983-08-02 2024-10-11 01:22:41 +4962 4962 4963 496.2 992.4000000000001 4962 1983-08-03 2024-10-11 01:22:42.000 1983-08-03 2024-10-11 01:22:42 +4963 4963 4964 496.3 992.6 4963 1983-08-04 2024-10-11 01:22:43.000 1983-08-04 2024-10-11 01:22:43 +4964 4964 4965 496.4 992.8000000000001 4964 1983-08-05 2024-10-11 01:22:44.000 1983-08-05 2024-10-11 01:22:44 +4966 4966 4967 496.6 993.2 4966 1983-08-07 2024-10-11 01:22:46.000 1983-08-07 2024-10-11 01:22:46 +4967 4967 4968 496.7 993.4000000000001 4967 1983-08-08 2024-10-11 01:22:47.000 1983-08-08 2024-10-11 01:22:47 +4968 4968 4969 496.8 993.6 4968 1983-08-09 2024-10-11 01:22:48.000 1983-08-09 2024-10-11 01:22:48 +4969 4969 4970 496.9 993.8000000000001 4969 1983-08-10 2024-10-11 01:22:49.000 1983-08-10 2024-10-11 01:22:49 +4971 4971 4972 497.1 994.2 4971 1983-08-12 2024-10-11 01:22:51.000 1983-08-12 2024-10-11 01:22:51 +4972 4972 4973 497.2 994.4000000000001 4972 1983-08-13 2024-10-11 01:22:52.000 1983-08-13 2024-10-11 01:22:52 +4973 4973 4974 497.3 994.6 4973 1983-08-14 2024-10-11 01:22:53.000 1983-08-14 2024-10-11 01:22:53 +4974 4974 4975 497.4 994.8000000000001 4974 1983-08-15 2024-10-11 01:22:54.000 1983-08-15 2024-10-11 01:22:54 +4976 4976 4977 497.6 995.2 4976 1983-08-17 2024-10-11 01:22:56.000 1983-08-17 2024-10-11 01:22:56 +4977 4977 4978 497.7 995.4000000000001 4977 1983-08-18 2024-10-11 01:22:57.000 1983-08-18 2024-10-11 01:22:57 +4978 4978 4979 497.8 995.6 4978 1983-08-19 2024-10-11 01:22:58.000 1983-08-19 2024-10-11 01:22:58 +4979 4979 4980 497.9 995.8000000000001 4979 1983-08-20 2024-10-11 01:22:59.000 1983-08-20 2024-10-11 01:22:59 +4981 4981 4982 498.1 996.2 4981 1983-08-22 2024-10-11 01:23:01.000 1983-08-22 2024-10-11 01:23:01 +4982 4982 4983 498.2 996.4000000000001 4982 1983-08-23 2024-10-11 01:23:02.000 1983-08-23 2024-10-11 01:23:02 +4983 4983 4984 498.3 996.6 4983 1983-08-24 2024-10-11 01:23:03.000 1983-08-24 2024-10-11 01:23:03 +4984 4984 4985 498.4 996.8000000000001 4984 1983-08-25 2024-10-11 01:23:04.000 1983-08-25 2024-10-11 01:23:04 +4986 4986 4987 498.6 997.2 4986 1983-08-27 2024-10-11 01:23:06.000 1983-08-27 2024-10-11 01:23:06 +4987 4987 4988 498.7 997.4000000000001 4987 1983-08-28 2024-10-11 01:23:07.000 1983-08-28 2024-10-11 01:23:07 +4988 4988 4989 498.8 997.6 4988 1983-08-29 2024-10-11 01:23:08.000 1983-08-29 2024-10-11 01:23:08 +4989 4989 4990 498.9 997.8000000000001 4989 1983-08-30 2024-10-11 01:23:09.000 1983-08-30 2024-10-11 01:23:09 +4991 4991 4992 499.1 998.2 4991 1983-09-01 2024-10-11 01:23:11.000 1983-09-01 2024-10-11 01:23:11 +4992 4992 4993 499.2 998.4000000000001 4992 1983-09-02 2024-10-11 01:23:12.000 1983-09-02 2024-10-11 01:23:12 +4993 4993 4994 499.3 998.6 4993 1983-09-03 2024-10-11 01:23:13.000 1983-09-03 2024-10-11 01:23:13 +4994 4994 4995 499.4 998.8000000000001 4994 1983-09-04 2024-10-11 01:23:14.000 1983-09-04 2024-10-11 01:23:14 +4996 4996 4997 499.6 999.2 4996 1983-09-06 2024-10-11 01:23:16.000 1983-09-06 2024-10-11 01:23:16 +4997 4997 4998 499.7 999.4000000000001 4997 1983-09-07 2024-10-11 01:23:17.000 1983-09-07 2024-10-11 01:23:17 +4998 4998 4999 499.8 999.6 4998 1983-09-08 2024-10-11 01:23:18.000 1983-09-08 2024-10-11 01:23:18 +4999 4999 5000 499.9 999.8000000000001 4999 1983-09-09 2024-10-11 01:23:19.000 1983-09-09 2024-10-11 01:23:19 +5001 5001 5002 500.1 1000.2 5001 1983-09-11 2024-10-11 01:23:21.000 1983-09-11 2024-10-11 01:23:21 +5002 5002 5003 500.2 1000.4000000000001 5002 1983-09-12 2024-10-11 01:23:22.000 1983-09-12 2024-10-11 01:23:22 +5003 5003 5004 500.3 1000.6 5003 1983-09-13 2024-10-11 01:23:23.000 1983-09-13 2024-10-11 01:23:23 +5004 5004 5005 500.4 1000.8000000000001 5004 1983-09-14 2024-10-11 01:23:24.000 1983-09-14 2024-10-11 01:23:24 +5006 5006 5007 500.6 1001.2 5006 1983-09-16 2024-10-11 01:23:26.000 1983-09-16 2024-10-11 01:23:26 +5007 5007 5008 500.7 1001.4000000000001 5007 1983-09-17 2024-10-11 01:23:27.000 1983-09-17 2024-10-11 01:23:27 +5008 5008 5009 500.8 1001.6 5008 1983-09-18 2024-10-11 01:23:28.000 1983-09-18 2024-10-11 01:23:28 +5009 5009 5010 500.9 1001.8000000000001 5009 1983-09-19 2024-10-11 01:23:29.000 1983-09-19 2024-10-11 01:23:29 +5011 5011 5012 501.1 1002.2 5011 1983-09-21 2024-10-11 01:23:31.000 1983-09-21 2024-10-11 01:23:31 +5012 5012 5013 501.2 1002.4000000000001 5012 1983-09-22 2024-10-11 01:23:32.000 1983-09-22 2024-10-11 01:23:32 +5013 5013 5014 501.3 1002.6 5013 1983-09-23 2024-10-11 01:23:33.000 1983-09-23 2024-10-11 01:23:33 +5014 5014 5015 501.4 1002.8000000000001 5014 1983-09-24 2024-10-11 01:23:34.000 1983-09-24 2024-10-11 01:23:34 +5016 5016 5017 501.6 1003.2 5016 1983-09-26 2024-10-11 01:23:36.000 1983-09-26 2024-10-11 01:23:36 +5017 5017 5018 501.7 1003.4000000000001 5017 1983-09-27 2024-10-11 01:23:37.000 1983-09-27 2024-10-11 01:23:37 +5018 5018 5019 501.8 1003.6 5018 1983-09-28 2024-10-11 01:23:38.000 1983-09-28 2024-10-11 01:23:38 +5019 5019 5020 501.9 1003.8000000000001 5019 1983-09-29 2024-10-11 01:23:39.000 1983-09-29 2024-10-11 01:23:39 +5021 5021 5022 502.1 1004.2 5021 1983-10-01 2024-10-11 01:23:41.000 1983-10-01 2024-10-11 01:23:41 +5022 5022 5023 502.2 1004.4000000000001 5022 1983-10-02 2024-10-11 01:23:42.000 1983-10-02 2024-10-11 01:23:42 +5023 5023 5024 502.3 1004.6 5023 1983-10-03 2024-10-11 01:23:43.000 1983-10-03 2024-10-11 01:23:43 +5024 5024 5025 502.4 1004.8000000000001 5024 1983-10-04 2024-10-11 01:23:44.000 1983-10-04 2024-10-11 01:23:44 +5026 5026 5027 502.6 1005.2 5026 1983-10-06 2024-10-11 01:23:46.000 1983-10-06 2024-10-11 01:23:46 +5027 5027 5028 502.7 1005.4000000000001 5027 1983-10-07 2024-10-11 01:23:47.000 1983-10-07 2024-10-11 01:23:47 +5028 5028 5029 502.8 1005.6 5028 1983-10-08 2024-10-11 01:23:48.000 1983-10-08 2024-10-11 01:23:48 +5029 5029 5030 502.9 1005.8000000000001 5029 1983-10-09 2024-10-11 01:23:49.000 1983-10-09 2024-10-11 01:23:49 +5031 5031 5032 503.1 1006.2 5031 1983-10-11 2024-10-11 01:23:51.000 1983-10-11 2024-10-11 01:23:51 +5032 5032 5033 503.2 1006.4000000000001 5032 1983-10-12 2024-10-11 01:23:52.000 1983-10-12 2024-10-11 01:23:52 +5033 5033 5034 503.3 1006.6 5033 1983-10-13 2024-10-11 01:23:53.000 1983-10-13 2024-10-11 01:23:53 +5034 5034 5035 503.4 1006.8000000000001 5034 1983-10-14 2024-10-11 01:23:54.000 1983-10-14 2024-10-11 01:23:54 +5036 5036 5037 503.6 1007.2 5036 1983-10-16 2024-10-11 01:23:56.000 1983-10-16 2024-10-11 01:23:56 +5037 5037 5038 503.7 1007.4000000000001 5037 1983-10-17 2024-10-11 01:23:57.000 1983-10-17 2024-10-11 01:23:57 +5038 5038 5039 503.8 1007.6 5038 1983-10-18 2024-10-11 01:23:58.000 1983-10-18 2024-10-11 01:23:58 +5039 5039 5040 503.9 1007.8000000000001 5039 1983-10-19 2024-10-11 01:23:59.000 1983-10-19 2024-10-11 01:23:59 +5041 5041 5042 504.1 1008.2 5041 1983-10-21 2024-10-11 01:24:01.000 1983-10-21 2024-10-11 01:24:01 +5042 5042 5043 504.2 1008.4000000000001 5042 1983-10-22 2024-10-11 01:24:02.000 1983-10-22 2024-10-11 01:24:02 +5043 5043 5044 504.3 1008.6 5043 1983-10-23 2024-10-11 01:24:03.000 1983-10-23 2024-10-11 01:24:03 +5044 5044 5045 504.4 1008.8000000000001 5044 1983-10-24 2024-10-11 01:24:04.000 1983-10-24 2024-10-11 01:24:04 +5046 5046 5047 504.6 1009.2 5046 1983-10-26 2024-10-11 01:24:06.000 1983-10-26 2024-10-11 01:24:06 +5047 5047 5048 504.7 1009.4000000000001 5047 1983-10-27 2024-10-11 01:24:07.000 1983-10-27 2024-10-11 01:24:07 +5048 5048 5049 504.8 1009.6 5048 1983-10-28 2024-10-11 01:24:08.000 1983-10-28 2024-10-11 01:24:08 +5049 5049 5050 504.9 1009.8000000000001 5049 1983-10-29 2024-10-11 01:24:09.000 1983-10-29 2024-10-11 01:24:09 +5051 5051 5052 505.1 1010.2 5051 1983-10-31 2024-10-11 01:24:11.000 1983-10-31 2024-10-11 01:24:11 +5052 5052 5053 505.2 1010.4000000000001 5052 1983-11-01 2024-10-11 01:24:12.000 1983-11-01 2024-10-11 01:24:12 +5053 5053 5054 505.3 1010.6 5053 1983-11-02 2024-10-11 01:24:13.000 1983-11-02 2024-10-11 01:24:13 +5054 5054 5055 505.4 1010.8000000000001 5054 1983-11-03 2024-10-11 01:24:14.000 1983-11-03 2024-10-11 01:24:14 +5056 5056 5057 505.6 1011.2 5056 1983-11-05 2024-10-11 01:24:16.000 1983-11-05 2024-10-11 01:24:16 +5057 5057 5058 505.7 1011.4000000000001 5057 1983-11-06 2024-10-11 01:24:17.000 1983-11-06 2024-10-11 01:24:17 +5058 5058 5059 505.8 1011.6 5058 1983-11-07 2024-10-11 01:24:18.000 1983-11-07 2024-10-11 01:24:18 +5059 5059 5060 505.9 1011.8000000000001 5059 1983-11-08 2024-10-11 01:24:19.000 1983-11-08 2024-10-11 01:24:19 +5061 5061 5062 506.1 1012.2 5061 1983-11-10 2024-10-11 01:24:21.000 1983-11-10 2024-10-11 01:24:21 +5062 5062 5063 506.2 1012.4000000000001 5062 1983-11-11 2024-10-11 01:24:22.000 1983-11-11 2024-10-11 01:24:22 +5063 5063 5064 506.3 1012.6 5063 1983-11-12 2024-10-11 01:24:23.000 1983-11-12 2024-10-11 01:24:23 +5064 5064 5065 506.4 1012.8000000000001 5064 1983-11-13 2024-10-11 01:24:24.000 1983-11-13 2024-10-11 01:24:24 +5066 5066 5067 506.6 1013.2 5066 1983-11-15 2024-10-11 01:24:26.000 1983-11-15 2024-10-11 01:24:26 +5067 5067 5068 506.7 1013.4000000000001 5067 1983-11-16 2024-10-11 01:24:27.000 1983-11-16 2024-10-11 01:24:27 +5068 5068 5069 506.8 1013.6 5068 1983-11-17 2024-10-11 01:24:28.000 1983-11-17 2024-10-11 01:24:28 +5069 5069 5070 506.9 1013.8000000000001 5069 1983-11-18 2024-10-11 01:24:29.000 1983-11-18 2024-10-11 01:24:29 +5071 5071 5072 507.1 1014.2 5071 1983-11-20 2024-10-11 01:24:31.000 1983-11-20 2024-10-11 01:24:31 +5072 5072 5073 507.2 1014.4000000000001 5072 1983-11-21 2024-10-11 01:24:32.000 1983-11-21 2024-10-11 01:24:32 +5073 5073 5074 507.3 1014.6 5073 1983-11-22 2024-10-11 01:24:33.000 1983-11-22 2024-10-11 01:24:33 +5074 5074 5075 507.4 1014.8000000000001 5074 1983-11-23 2024-10-11 01:24:34.000 1983-11-23 2024-10-11 01:24:34 +5076 5076 5077 507.6 1015.2 5076 1983-11-25 2024-10-11 01:24:36.000 1983-11-25 2024-10-11 01:24:36 +5077 5077 5078 507.7 1015.4000000000001 5077 1983-11-26 2024-10-11 01:24:37.000 1983-11-26 2024-10-11 01:24:37 +5078 5078 5079 507.8 1015.6 5078 1983-11-27 2024-10-11 01:24:38.000 1983-11-27 2024-10-11 01:24:38 +5079 5079 5080 507.9 1015.8000000000001 5079 1983-11-28 2024-10-11 01:24:39.000 1983-11-28 2024-10-11 01:24:39 +5081 5081 5082 508.1 1016.2 5081 1983-11-30 2024-10-11 01:24:41.000 1983-11-30 2024-10-11 01:24:41 +5082 5082 5083 508.2 1016.4000000000001 5082 1983-12-01 2024-10-11 01:24:42.000 1983-12-01 2024-10-11 01:24:42 +5083 5083 5084 508.3 1016.6 5083 1983-12-02 2024-10-11 01:24:43.000 1983-12-02 2024-10-11 01:24:43 +5084 5084 5085 508.4 1016.8000000000001 5084 1983-12-03 2024-10-11 01:24:44.000 1983-12-03 2024-10-11 01:24:44 +5086 5086 5087 508.6 1017.2 5086 1983-12-05 2024-10-11 01:24:46.000 1983-12-05 2024-10-11 01:24:46 +5087 5087 5088 508.7 1017.4000000000001 5087 1983-12-06 2024-10-11 01:24:47.000 1983-12-06 2024-10-11 01:24:47 +5088 5088 5089 508.8 1017.6 5088 1983-12-07 2024-10-11 01:24:48.000 1983-12-07 2024-10-11 01:24:48 +5089 5089 5090 508.9 1017.8000000000001 5089 1983-12-08 2024-10-11 01:24:49.000 1983-12-08 2024-10-11 01:24:49 +5091 5091 5092 509.1 1018.2 5091 1983-12-10 2024-10-11 01:24:51.000 1983-12-10 2024-10-11 01:24:51 +5092 5092 5093 509.2 1018.4000000000001 5092 1983-12-11 2024-10-11 01:24:52.000 1983-12-11 2024-10-11 01:24:52 +5093 5093 5094 509.3 1018.6 5093 1983-12-12 2024-10-11 01:24:53.000 1983-12-12 2024-10-11 01:24:53 +5094 5094 5095 509.4 1018.8000000000001 5094 1983-12-13 2024-10-11 01:24:54.000 1983-12-13 2024-10-11 01:24:54 +5096 5096 5097 509.6 1019.2 5096 1983-12-15 2024-10-11 01:24:56.000 1983-12-15 2024-10-11 01:24:56 +5097 5097 5098 509.7 1019.4000000000001 5097 1983-12-16 2024-10-11 01:24:57.000 1983-12-16 2024-10-11 01:24:57 +5098 5098 5099 509.8 1019.6 5098 1983-12-17 2024-10-11 01:24:58.000 1983-12-17 2024-10-11 01:24:58 +5099 5099 5100 509.9 1019.8000000000001 5099 1983-12-18 2024-10-11 01:24:59.000 1983-12-18 2024-10-11 01:24:59 +5101 5101 5102 510.1 1020.2 5101 1983-12-20 2024-10-11 01:25:01.000 1983-12-20 2024-10-11 01:25:01 +5102 5102 5103 510.2 1020.4000000000001 5102 1983-12-21 2024-10-11 01:25:02.000 1983-12-21 2024-10-11 01:25:02 +5103 5103 5104 510.3 1020.6 5103 1983-12-22 2024-10-11 01:25:03.000 1983-12-22 2024-10-11 01:25:03 +5104 5104 5105 510.4 1020.8000000000001 5104 1983-12-23 2024-10-11 01:25:04.000 1983-12-23 2024-10-11 01:25:04 +5106 5106 5107 510.6 1021.2 5106 1983-12-25 2024-10-11 01:25:06.000 1983-12-25 2024-10-11 01:25:06 +5107 5107 5108 510.7 1021.4000000000001 5107 1983-12-26 2024-10-11 01:25:07.000 1983-12-26 2024-10-11 01:25:07 +5108 5108 5109 510.8 1021.6 5108 1983-12-27 2024-10-11 01:25:08.000 1983-12-27 2024-10-11 01:25:08 +5109 5109 5110 510.9 1021.8000000000001 5109 1983-12-28 2024-10-11 01:25:09.000 1983-12-28 2024-10-11 01:25:09 +5111 5111 5112 511.1 1022.2 5111 1983-12-30 2024-10-11 01:25:11.000 1983-12-30 2024-10-11 01:25:11 +5112 5112 5113 511.2 1022.4000000000001 5112 1983-12-31 2024-10-11 01:25:12.000 1983-12-31 2024-10-11 01:25:12 +5113 5113 5114 511.3 1022.6 5113 1984-01-01 2024-10-11 01:25:13.000 1984-01-01 2024-10-11 01:25:13 +5114 5114 5115 511.4 1022.8000000000001 5114 1984-01-02 2024-10-11 01:25:14.000 1984-01-02 2024-10-11 01:25:14 +5116 5116 5117 511.6 1023.2 5116 1984-01-04 2024-10-11 01:25:16.000 1984-01-04 2024-10-11 01:25:16 +5117 5117 5118 511.7 1023.4000000000001 5117 1984-01-05 2024-10-11 01:25:17.000 1984-01-05 2024-10-11 01:25:17 +5118 5118 5119 511.8 1023.6 5118 1984-01-06 2024-10-11 01:25:18.000 1984-01-06 2024-10-11 01:25:18 +5119 5119 5120 511.9 1023.8000000000001 5119 1984-01-07 2024-10-11 01:25:19.000 1984-01-07 2024-10-11 01:25:19 +5121 5121 5122 512.1 1024.2 5121 1984-01-09 2024-10-11 01:25:21.000 1984-01-09 2024-10-11 01:25:21 +5122 5122 5123 512.2 1024.4 5122 1984-01-10 2024-10-11 01:25:22.000 1984-01-10 2024-10-11 01:25:22 +5123 5123 5124 512.3 1024.6000000000001 5123 1984-01-11 2024-10-11 01:25:23.000 1984-01-11 2024-10-11 01:25:23 +5124 5124 5125 512.4 1024.8 5124 1984-01-12 2024-10-11 01:25:24.000 1984-01-12 2024-10-11 01:25:24 +5126 5126 5127 512.6 1025.2 5126 1984-01-14 2024-10-11 01:25:26.000 1984-01-14 2024-10-11 01:25:26 +5127 5127 5128 512.7 1025.4 5127 1984-01-15 2024-10-11 01:25:27.000 1984-01-15 2024-10-11 01:25:27 +5128 5128 5129 512.8 1025.6000000000001 5128 1984-01-16 2024-10-11 01:25:28.000 1984-01-16 2024-10-11 01:25:28 +5129 5129 5130 512.9 1025.8 5129 1984-01-17 2024-10-11 01:25:29.000 1984-01-17 2024-10-11 01:25:29 +5131 5131 5132 513.1 1026.2 5131 1984-01-19 2024-10-11 01:25:31.000 1984-01-19 2024-10-11 01:25:31 +5132 5132 5133 513.2 1026.4 5132 1984-01-20 2024-10-11 01:25:32.000 1984-01-20 2024-10-11 01:25:32 +5133 5133 5134 513.3 1026.6000000000001 5133 1984-01-21 2024-10-11 01:25:33.000 1984-01-21 2024-10-11 01:25:33 +5134 5134 5135 513.4 1026.8 5134 1984-01-22 2024-10-11 01:25:34.000 1984-01-22 2024-10-11 01:25:34 +5136 5136 5137 513.6 1027.2 5136 1984-01-24 2024-10-11 01:25:36.000 1984-01-24 2024-10-11 01:25:36 +5137 5137 5138 513.7 1027.4 5137 1984-01-25 2024-10-11 01:25:37.000 1984-01-25 2024-10-11 01:25:37 +5138 5138 5139 513.8 1027.6000000000001 5138 1984-01-26 2024-10-11 01:25:38.000 1984-01-26 2024-10-11 01:25:38 +5139 5139 5140 513.9 1027.8 5139 1984-01-27 2024-10-11 01:25:39.000 1984-01-27 2024-10-11 01:25:39 +5141 5141 5142 514.1 1028.2 5141 1984-01-29 2024-10-11 01:25:41.000 1984-01-29 2024-10-11 01:25:41 +5142 5142 5143 514.2 1028.4 5142 1984-01-30 2024-10-11 01:25:42.000 1984-01-30 2024-10-11 01:25:42 +5143 5143 5144 514.3 1028.6000000000001 5143 1984-01-31 2024-10-11 01:25:43.000 1984-01-31 2024-10-11 01:25:43 +5144 5144 5145 514.4 1028.8 5144 1984-02-01 2024-10-11 01:25:44.000 1984-02-01 2024-10-11 01:25:44 +5146 5146 5147 514.6 1029.2 5146 1984-02-03 2024-10-11 01:25:46.000 1984-02-03 2024-10-11 01:25:46 +5147 5147 5148 514.7 1029.4 5147 1984-02-04 2024-10-11 01:25:47.000 1984-02-04 2024-10-11 01:25:47 +5148 5148 5149 514.8 1029.6000000000001 5148 1984-02-05 2024-10-11 01:25:48.000 1984-02-05 2024-10-11 01:25:48 +5149 5149 5150 514.9 1029.8 5149 1984-02-06 2024-10-11 01:25:49.000 1984-02-06 2024-10-11 01:25:49 +5151 5151 5152 515.1 1030.2 5151 1984-02-08 2024-10-11 01:25:51.000 1984-02-08 2024-10-11 01:25:51 +5152 5152 5153 515.2 1030.4 5152 1984-02-09 2024-10-11 01:25:52.000 1984-02-09 2024-10-11 01:25:52 +5153 5153 5154 515.3 1030.6000000000001 5153 1984-02-10 2024-10-11 01:25:53.000 1984-02-10 2024-10-11 01:25:53 +5154 5154 5155 515.4 1030.8 5154 1984-02-11 2024-10-11 01:25:54.000 1984-02-11 2024-10-11 01:25:54 +5156 5156 5157 515.6 1031.2 5156 1984-02-13 2024-10-11 01:25:56.000 1984-02-13 2024-10-11 01:25:56 +5157 5157 5158 515.7 1031.4 5157 1984-02-14 2024-10-11 01:25:57.000 1984-02-14 2024-10-11 01:25:57 +5158 5158 5159 515.8 1031.6000000000001 5158 1984-02-15 2024-10-11 01:25:58.000 1984-02-15 2024-10-11 01:25:58 +5159 5159 5160 515.9 1031.8 5159 1984-02-16 2024-10-11 01:25:59.000 1984-02-16 2024-10-11 01:25:59 +5161 5161 5162 516.1 1032.2 5161 1984-02-18 2024-10-11 01:26:01.000 1984-02-18 2024-10-11 01:26:01 +5162 5162 5163 516.2 1032.4 5162 1984-02-19 2024-10-11 01:26:02.000 1984-02-19 2024-10-11 01:26:02 +5163 5163 5164 516.3 1032.6000000000001 5163 1984-02-20 2024-10-11 01:26:03.000 1984-02-20 2024-10-11 01:26:03 +5164 5164 5165 516.4 1032.8 5164 1984-02-21 2024-10-11 01:26:04.000 1984-02-21 2024-10-11 01:26:04 +5166 5166 5167 516.6 1033.2 5166 1984-02-23 2024-10-11 01:26:06.000 1984-02-23 2024-10-11 01:26:06 +5167 5167 5168 516.7 1033.4 5167 1984-02-24 2024-10-11 01:26:07.000 1984-02-24 2024-10-11 01:26:07 +5168 5168 5169 516.8 1033.6000000000001 5168 1984-02-25 2024-10-11 01:26:08.000 1984-02-25 2024-10-11 01:26:08 +5169 5169 5170 516.9 1033.8 5169 1984-02-26 2024-10-11 01:26:09.000 1984-02-26 2024-10-11 01:26:09 +5171 5171 5172 517.1 1034.2 5171 1984-02-28 2024-10-11 01:26:11.000 1984-02-28 2024-10-11 01:26:11 +5172 5172 5173 517.2 1034.4 5172 1984-02-29 2024-10-11 01:26:12.000 1984-02-29 2024-10-11 01:26:12 +5173 5173 5174 517.3 1034.6000000000001 5173 1984-03-01 2024-10-11 01:26:13.000 1984-03-01 2024-10-11 01:26:13 +5174 5174 5175 517.4 1034.8 5174 1984-03-02 2024-10-11 01:26:14.000 1984-03-02 2024-10-11 01:26:14 +5176 5176 5177 517.6 1035.2 5176 1984-03-04 2024-10-11 01:26:16.000 1984-03-04 2024-10-11 01:26:16 +5177 5177 5178 517.7 1035.4 5177 1984-03-05 2024-10-11 01:26:17.000 1984-03-05 2024-10-11 01:26:17 +5178 5178 5179 517.8 1035.6000000000001 5178 1984-03-06 2024-10-11 01:26:18.000 1984-03-06 2024-10-11 01:26:18 +5179 5179 5180 517.9 1035.8 5179 1984-03-07 2024-10-11 01:26:19.000 1984-03-07 2024-10-11 01:26:19 +5181 5181 5182 518.1 1036.2 5181 1984-03-09 2024-10-11 01:26:21.000 1984-03-09 2024-10-11 01:26:21 +5182 5182 5183 518.2 1036.4 5182 1984-03-10 2024-10-11 01:26:22.000 1984-03-10 2024-10-11 01:26:22 +5183 5183 5184 518.3 1036.6000000000001 5183 1984-03-11 2024-10-11 01:26:23.000 1984-03-11 2024-10-11 01:26:23 +5184 5184 5185 518.4 1036.8 5184 1984-03-12 2024-10-11 01:26:24.000 1984-03-12 2024-10-11 01:26:24 +5186 5186 5187 518.6 1037.2 5186 1984-03-14 2024-10-11 01:26:26.000 1984-03-14 2024-10-11 01:26:26 +5187 5187 5188 518.7 1037.4 5187 1984-03-15 2024-10-11 01:26:27.000 1984-03-15 2024-10-11 01:26:27 +5188 5188 5189 518.8 1037.6000000000001 5188 1984-03-16 2024-10-11 01:26:28.000 1984-03-16 2024-10-11 01:26:28 +5189 5189 5190 518.9 1037.8 5189 1984-03-17 2024-10-11 01:26:29.000 1984-03-17 2024-10-11 01:26:29 +5191 5191 5192 519.1 1038.2 5191 1984-03-19 2024-10-11 01:26:31.000 1984-03-19 2024-10-11 01:26:31 +5192 5192 5193 519.2 1038.4 5192 1984-03-20 2024-10-11 01:26:32.000 1984-03-20 2024-10-11 01:26:32 +5193 5193 5194 519.3 1038.6000000000001 5193 1984-03-21 2024-10-11 01:26:33.000 1984-03-21 2024-10-11 01:26:33 +5194 5194 5195 519.4 1038.8 5194 1984-03-22 2024-10-11 01:26:34.000 1984-03-22 2024-10-11 01:26:34 +5196 5196 5197 519.6 1039.2 5196 1984-03-24 2024-10-11 01:26:36.000 1984-03-24 2024-10-11 01:26:36 +5197 5197 5198 519.7 1039.4 5197 1984-03-25 2024-10-11 01:26:37.000 1984-03-25 2024-10-11 01:26:37 +5198 5198 5199 519.8 1039.6000000000001 5198 1984-03-26 2024-10-11 01:26:38.000 1984-03-26 2024-10-11 01:26:38 +5199 5199 5200 519.9 1039.8 5199 1984-03-27 2024-10-11 01:26:39.000 1984-03-27 2024-10-11 01:26:39 +5201 5201 5202 520.1 1040.2 5201 1984-03-29 2024-10-11 01:26:41.000 1984-03-29 2024-10-11 01:26:41 +5202 5202 5203 520.2 1040.4 5202 1984-03-30 2024-10-11 01:26:42.000 1984-03-30 2024-10-11 01:26:42 +5203 5203 5204 520.3 1040.6000000000001 5203 1984-03-31 2024-10-11 01:26:43.000 1984-03-31 2024-10-11 01:26:43 +5204 5204 5205 520.4 1040.8 5204 1984-04-01 2024-10-11 01:26:44.000 1984-04-01 2024-10-11 01:26:44 +5206 5206 5207 520.6 1041.2 5206 1984-04-03 2024-10-11 01:26:46.000 1984-04-03 2024-10-11 01:26:46 +5207 5207 5208 520.7 1041.4 5207 1984-04-04 2024-10-11 01:26:47.000 1984-04-04 2024-10-11 01:26:47 +5208 5208 5209 520.8 1041.6000000000001 5208 1984-04-05 2024-10-11 01:26:48.000 1984-04-05 2024-10-11 01:26:48 +5209 5209 5210 520.9 1041.8 5209 1984-04-06 2024-10-11 01:26:49.000 1984-04-06 2024-10-11 01:26:49 +5211 5211 5212 521.1 1042.2 5211 1984-04-08 2024-10-11 01:26:51.000 1984-04-08 2024-10-11 01:26:51 +5212 5212 5213 521.2 1042.4 5212 1984-04-09 2024-10-11 01:26:52.000 1984-04-09 2024-10-11 01:26:52 +5213 5213 5214 521.3 1042.6000000000001 5213 1984-04-10 2024-10-11 01:26:53.000 1984-04-10 2024-10-11 01:26:53 +5214 5214 5215 521.4 1042.8 5214 1984-04-11 2024-10-11 01:26:54.000 1984-04-11 2024-10-11 01:26:54 +5216 5216 5217 521.6 1043.2 5216 1984-04-13 2024-10-11 01:26:56.000 1984-04-13 2024-10-11 01:26:56 +5217 5217 5218 521.7 1043.4 5217 1984-04-14 2024-10-11 01:26:57.000 1984-04-14 2024-10-11 01:26:57 +5218 5218 5219 521.8 1043.6000000000001 5218 1984-04-15 2024-10-11 01:26:58.000 1984-04-15 2024-10-11 01:26:58 +5219 5219 5220 521.9 1043.8 5219 1984-04-16 2024-10-11 01:26:59.000 1984-04-16 2024-10-11 01:26:59 +5221 5221 5222 522.1 1044.2 5221 1984-04-18 2024-10-11 01:27:01.000 1984-04-18 2024-10-11 01:27:01 +5222 5222 5223 522.2 1044.4 5222 1984-04-19 2024-10-11 01:27:02.000 1984-04-19 2024-10-11 01:27:02 +5223 5223 5224 522.3 1044.6000000000001 5223 1984-04-20 2024-10-11 01:27:03.000 1984-04-20 2024-10-11 01:27:03 +5224 5224 5225 522.4 1044.8 5224 1984-04-21 2024-10-11 01:27:04.000 1984-04-21 2024-10-11 01:27:04 +5226 5226 5227 522.6 1045.2 5226 1984-04-23 2024-10-11 01:27:06.000 1984-04-23 2024-10-11 01:27:06 +5227 5227 5228 522.7 1045.4 5227 1984-04-24 2024-10-11 01:27:07.000 1984-04-24 2024-10-11 01:27:07 +5228 5228 5229 522.8 1045.6000000000001 5228 1984-04-25 2024-10-11 01:27:08.000 1984-04-25 2024-10-11 01:27:08 +5229 5229 5230 522.9 1045.8 5229 1984-04-26 2024-10-11 01:27:09.000 1984-04-26 2024-10-11 01:27:09 +5231 5231 5232 523.1 1046.2 5231 1984-04-28 2024-10-11 01:27:11.000 1984-04-28 2024-10-11 01:27:11 +5232 5232 5233 523.2 1046.4 5232 1984-04-29 2024-10-11 01:27:12.000 1984-04-29 2024-10-11 01:27:12 +5233 5233 5234 523.3 1046.6000000000001 5233 1984-04-30 2024-10-11 01:27:13.000 1984-04-30 2024-10-11 01:27:13 +5234 5234 5235 523.4 1046.8 5234 1984-05-01 2024-10-11 01:27:14.000 1984-05-01 2024-10-11 01:27:14 +5236 5236 5237 523.6 1047.2 5236 1984-05-03 2024-10-11 01:27:16.000 1984-05-03 2024-10-11 01:27:16 +5237 5237 5238 523.7 1047.4 5237 1984-05-04 2024-10-11 01:27:17.000 1984-05-04 2024-10-11 01:27:17 +5238 5238 5239 523.8 1047.6000000000001 5238 1984-05-05 2024-10-11 01:27:18.000 1984-05-05 2024-10-11 01:27:18 +5239 5239 5240 523.9 1047.8 5239 1984-05-06 2024-10-11 01:27:19.000 1984-05-06 2024-10-11 01:27:19 +5241 5241 5242 524.1 1048.2 5241 1984-05-08 2024-10-11 01:27:21.000 1984-05-08 2024-10-11 01:27:21 +5242 5242 5243 524.2 1048.4 5242 1984-05-09 2024-10-11 01:27:22.000 1984-05-09 2024-10-11 01:27:22 +5243 5243 5244 524.3 1048.6000000000001 5243 1984-05-10 2024-10-11 01:27:23.000 1984-05-10 2024-10-11 01:27:23 +5244 5244 5245 524.4 1048.8 5244 1984-05-11 2024-10-11 01:27:24.000 1984-05-11 2024-10-11 01:27:24 +5246 5246 5247 524.6 1049.2 5246 1984-05-13 2024-10-11 01:27:26.000 1984-05-13 2024-10-11 01:27:26 +5247 5247 5248 524.7 1049.4 5247 1984-05-14 2024-10-11 01:27:27.000 1984-05-14 2024-10-11 01:27:27 +5248 5248 5249 524.8 1049.6000000000001 5248 1984-05-15 2024-10-11 01:27:28.000 1984-05-15 2024-10-11 01:27:28 +5249 5249 5250 524.9 1049.8 5249 1984-05-16 2024-10-11 01:27:29.000 1984-05-16 2024-10-11 01:27:29 +5251 5251 5252 525.1 1050.2 5251 1984-05-18 2024-10-11 01:27:31.000 1984-05-18 2024-10-11 01:27:31 +5252 5252 5253 525.2 1050.4 5252 1984-05-19 2024-10-11 01:27:32.000 1984-05-19 2024-10-11 01:27:32 +5253 5253 5254 525.3 1050.6000000000001 5253 1984-05-20 2024-10-11 01:27:33.000 1984-05-20 2024-10-11 01:27:33 +5254 5254 5255 525.4 1050.8 5254 1984-05-21 2024-10-11 01:27:34.000 1984-05-21 2024-10-11 01:27:34 +5256 5256 5257 525.6 1051.2 5256 1984-05-23 2024-10-11 01:27:36.000 1984-05-23 2024-10-11 01:27:36 +5257 5257 5258 525.7 1051.4 5257 1984-05-24 2024-10-11 01:27:37.000 1984-05-24 2024-10-11 01:27:37 +5258 5258 5259 525.8 1051.6000000000001 5258 1984-05-25 2024-10-11 01:27:38.000 1984-05-25 2024-10-11 01:27:38 +5259 5259 5260 525.9 1051.8 5259 1984-05-26 2024-10-11 01:27:39.000 1984-05-26 2024-10-11 01:27:39 +5261 5261 5262 526.1 1052.2 5261 1984-05-28 2024-10-11 01:27:41.000 1984-05-28 2024-10-11 01:27:41 +5262 5262 5263 526.2 1052.4 5262 1984-05-29 2024-10-11 01:27:42.000 1984-05-29 2024-10-11 01:27:42 +5263 5263 5264 526.3 1052.6000000000001 5263 1984-05-30 2024-10-11 01:27:43.000 1984-05-30 2024-10-11 01:27:43 +5264 5264 5265 526.4 1052.8 5264 1984-05-31 2024-10-11 01:27:44.000 1984-05-31 2024-10-11 01:27:44 +5266 5266 5267 526.6 1053.2 5266 1984-06-02 2024-10-11 01:27:46.000 1984-06-02 2024-10-11 01:27:46 +5267 5267 5268 526.7 1053.4 5267 1984-06-03 2024-10-11 01:27:47.000 1984-06-03 2024-10-11 01:27:47 +5268 5268 5269 526.8 1053.6000000000001 5268 1984-06-04 2024-10-11 01:27:48.000 1984-06-04 2024-10-11 01:27:48 +5269 5269 5270 526.9 1053.8 5269 1984-06-05 2024-10-11 01:27:49.000 1984-06-05 2024-10-11 01:27:49 +5271 5271 5272 527.1 1054.2 5271 1984-06-07 2024-10-11 01:27:51.000 1984-06-07 2024-10-11 01:27:51 +5272 5272 5273 527.2 1054.4 5272 1984-06-08 2024-10-11 01:27:52.000 1984-06-08 2024-10-11 01:27:52 +5273 5273 5274 527.3 1054.6000000000001 5273 1984-06-09 2024-10-11 01:27:53.000 1984-06-09 2024-10-11 01:27:53 +5274 5274 5275 527.4 1054.8 5274 1984-06-10 2024-10-11 01:27:54.000 1984-06-10 2024-10-11 01:27:54 +5276 5276 5277 527.6 1055.2 5276 1984-06-12 2024-10-11 01:27:56.000 1984-06-12 2024-10-11 01:27:56 +5277 5277 5278 527.7 1055.4 5277 1984-06-13 2024-10-11 01:27:57.000 1984-06-13 2024-10-11 01:27:57 +5278 5278 5279 527.8 1055.6000000000001 5278 1984-06-14 2024-10-11 01:27:58.000 1984-06-14 2024-10-11 01:27:58 +5279 5279 5280 527.9 1055.8 5279 1984-06-15 2024-10-11 01:27:59.000 1984-06-15 2024-10-11 01:27:59 +5281 5281 5282 528.1 1056.2 5281 1984-06-17 2024-10-11 01:28:01.000 1984-06-17 2024-10-11 01:28:01 +5282 5282 5283 528.2 1056.4 5282 1984-06-18 2024-10-11 01:28:02.000 1984-06-18 2024-10-11 01:28:02 +5283 5283 5284 528.3 1056.6000000000001 5283 1984-06-19 2024-10-11 01:28:03.000 1984-06-19 2024-10-11 01:28:03 +5284 5284 5285 528.4 1056.8 5284 1984-06-20 2024-10-11 01:28:04.000 1984-06-20 2024-10-11 01:28:04 +5286 5286 5287 528.6 1057.2 5286 1984-06-22 2024-10-11 01:28:06.000 1984-06-22 2024-10-11 01:28:06 +5287 5287 5288 528.7 1057.4 5287 1984-06-23 2024-10-11 01:28:07.000 1984-06-23 2024-10-11 01:28:07 +5288 5288 5289 528.8 1057.6000000000001 5288 1984-06-24 2024-10-11 01:28:08.000 1984-06-24 2024-10-11 01:28:08 +5289 5289 5290 528.9 1057.8 5289 1984-06-25 2024-10-11 01:28:09.000 1984-06-25 2024-10-11 01:28:09 +5291 5291 5292 529.1 1058.2 5291 1984-06-27 2024-10-11 01:28:11.000 1984-06-27 2024-10-11 01:28:11 +5292 5292 5293 529.2 1058.4 5292 1984-06-28 2024-10-11 01:28:12.000 1984-06-28 2024-10-11 01:28:12 +5293 5293 5294 529.3 1058.6000000000001 5293 1984-06-29 2024-10-11 01:28:13.000 1984-06-29 2024-10-11 01:28:13 +5294 5294 5295 529.4 1058.8 5294 1984-06-30 2024-10-11 01:28:14.000 1984-06-30 2024-10-11 01:28:14 +5296 5296 5297 529.6 1059.2 5296 1984-07-02 2024-10-11 01:28:16.000 1984-07-02 2024-10-11 01:28:16 +5297 5297 5298 529.7 1059.4 5297 1984-07-03 2024-10-11 01:28:17.000 1984-07-03 2024-10-11 01:28:17 +5298 5298 5299 529.8 1059.6000000000001 5298 1984-07-04 2024-10-11 01:28:18.000 1984-07-04 2024-10-11 01:28:18 +5299 5299 5300 529.9 1059.8 5299 1984-07-05 2024-10-11 01:28:19.000 1984-07-05 2024-10-11 01:28:19 +5301 5301 5302 530.1 1060.2 5301 1984-07-07 2024-10-11 01:28:21.000 1984-07-07 2024-10-11 01:28:21 +5302 5302 5303 530.2 1060.4 5302 1984-07-08 2024-10-11 01:28:22.000 1984-07-08 2024-10-11 01:28:22 +5303 5303 5304 530.3 1060.6000000000001 5303 1984-07-09 2024-10-11 01:28:23.000 1984-07-09 2024-10-11 01:28:23 +5304 5304 5305 530.4 1060.8 5304 1984-07-10 2024-10-11 01:28:24.000 1984-07-10 2024-10-11 01:28:24 +5306 5306 5307 530.6 1061.2 5306 1984-07-12 2024-10-11 01:28:26.000 1984-07-12 2024-10-11 01:28:26 +5307 5307 5308 530.7 1061.4 5307 1984-07-13 2024-10-11 01:28:27.000 1984-07-13 2024-10-11 01:28:27 +5308 5308 5309 530.8 1061.6000000000001 5308 1984-07-14 2024-10-11 01:28:28.000 1984-07-14 2024-10-11 01:28:28 +5309 5309 5310 530.9 1061.8 5309 1984-07-15 2024-10-11 01:28:29.000 1984-07-15 2024-10-11 01:28:29 +5311 5311 5312 531.1 1062.2 5311 1984-07-17 2024-10-11 01:28:31.000 1984-07-17 2024-10-11 01:28:31 +5312 5312 5313 531.2 1062.4 5312 1984-07-18 2024-10-11 01:28:32.000 1984-07-18 2024-10-11 01:28:32 +5313 5313 5314 531.3 1062.6000000000001 5313 1984-07-19 2024-10-11 01:28:33.000 1984-07-19 2024-10-11 01:28:33 +5314 5314 5315 531.4 1062.8 5314 1984-07-20 2024-10-11 01:28:34.000 1984-07-20 2024-10-11 01:28:34 +5316 5316 5317 531.6 1063.2 5316 1984-07-22 2024-10-11 01:28:36.000 1984-07-22 2024-10-11 01:28:36 +5317 5317 5318 531.7 1063.4 5317 1984-07-23 2024-10-11 01:28:37.000 1984-07-23 2024-10-11 01:28:37 +5318 5318 5319 531.8 1063.6000000000001 5318 1984-07-24 2024-10-11 01:28:38.000 1984-07-24 2024-10-11 01:28:38 +5319 5319 5320 531.9 1063.8 5319 1984-07-25 2024-10-11 01:28:39.000 1984-07-25 2024-10-11 01:28:39 +5321 5321 5322 532.1 1064.2 5321 1984-07-27 2024-10-11 01:28:41.000 1984-07-27 2024-10-11 01:28:41 +5322 5322 5323 532.2 1064.4 5322 1984-07-28 2024-10-11 01:28:42.000 1984-07-28 2024-10-11 01:28:42 +5323 5323 5324 532.3 1064.6000000000001 5323 1984-07-29 2024-10-11 01:28:43.000 1984-07-29 2024-10-11 01:28:43 +5324 5324 5325 532.4 1064.8 5324 1984-07-30 2024-10-11 01:28:44.000 1984-07-30 2024-10-11 01:28:44 +5326 5326 5327 532.6 1065.2 5326 1984-08-01 2024-10-11 01:28:46.000 1984-08-01 2024-10-11 01:28:46 +5327 5327 5328 532.7 1065.4 5327 1984-08-02 2024-10-11 01:28:47.000 1984-08-02 2024-10-11 01:28:47 +5328 5328 5329 532.8 1065.6000000000001 5328 1984-08-03 2024-10-11 01:28:48.000 1984-08-03 2024-10-11 01:28:48 +5329 5329 5330 532.9 1065.8 5329 1984-08-04 2024-10-11 01:28:49.000 1984-08-04 2024-10-11 01:28:49 +5331 5331 5332 533.1 1066.2 5331 1984-08-06 2024-10-11 01:28:51.000 1984-08-06 2024-10-11 01:28:51 +5332 5332 5333 533.2 1066.4 5332 1984-08-07 2024-10-11 01:28:52.000 1984-08-07 2024-10-11 01:28:52 +5333 5333 5334 533.3 1066.6000000000001 5333 1984-08-08 2024-10-11 01:28:53.000 1984-08-08 2024-10-11 01:28:53 +5334 5334 5335 533.4 1066.8 5334 1984-08-09 2024-10-11 01:28:54.000 1984-08-09 2024-10-11 01:28:54 +5336 5336 5337 533.6 1067.2 5336 1984-08-11 2024-10-11 01:28:56.000 1984-08-11 2024-10-11 01:28:56 +5337 5337 5338 533.7 1067.4 5337 1984-08-12 2024-10-11 01:28:57.000 1984-08-12 2024-10-11 01:28:57 +5338 5338 5339 533.8 1067.6000000000001 5338 1984-08-13 2024-10-11 01:28:58.000 1984-08-13 2024-10-11 01:28:58 +5339 5339 5340 533.9 1067.8 5339 1984-08-14 2024-10-11 01:28:59.000 1984-08-14 2024-10-11 01:28:59 +5341 5341 5342 534.1 1068.2 5341 1984-08-16 2024-10-11 01:29:01.000 1984-08-16 2024-10-11 01:29:01 +5342 5342 5343 534.2 1068.4 5342 1984-08-17 2024-10-11 01:29:02.000 1984-08-17 2024-10-11 01:29:02 +5343 5343 5344 534.3 1068.6000000000001 5343 1984-08-18 2024-10-11 01:29:03.000 1984-08-18 2024-10-11 01:29:03 +5344 5344 5345 534.4 1068.8 5344 1984-08-19 2024-10-11 01:29:04.000 1984-08-19 2024-10-11 01:29:04 +5346 5346 5347 534.6 1069.2 5346 1984-08-21 2024-10-11 01:29:06.000 1984-08-21 2024-10-11 01:29:06 +5347 5347 5348 534.7 1069.4 5347 1984-08-22 2024-10-11 01:29:07.000 1984-08-22 2024-10-11 01:29:07 +5348 5348 5349 534.8 1069.6000000000001 5348 1984-08-23 2024-10-11 01:29:08.000 1984-08-23 2024-10-11 01:29:08 +5349 5349 5350 534.9 1069.8 5349 1984-08-24 2024-10-11 01:29:09.000 1984-08-24 2024-10-11 01:29:09 +5351 5351 5352 535.1 1070.2 5351 1984-08-26 2024-10-11 01:29:11.000 1984-08-26 2024-10-11 01:29:11 +5352 5352 5353 535.2 1070.4 5352 1984-08-27 2024-10-11 01:29:12.000 1984-08-27 2024-10-11 01:29:12 +5353 5353 5354 535.3 1070.6000000000001 5353 1984-08-28 2024-10-11 01:29:13.000 1984-08-28 2024-10-11 01:29:13 +5354 5354 5355 535.4 1070.8 5354 1984-08-29 2024-10-11 01:29:14.000 1984-08-29 2024-10-11 01:29:14 +5356 5356 5357 535.6 1071.2 5356 1984-08-31 2024-10-11 01:29:16.000 1984-08-31 2024-10-11 01:29:16 +5357 5357 5358 535.7 1071.4 5357 1984-09-01 2024-10-11 01:29:17.000 1984-09-01 2024-10-11 01:29:17 +5358 5358 5359 535.8 1071.6000000000001 5358 1984-09-02 2024-10-11 01:29:18.000 1984-09-02 2024-10-11 01:29:18 +5359 5359 5360 535.9 1071.8 5359 1984-09-03 2024-10-11 01:29:19.000 1984-09-03 2024-10-11 01:29:19 +5361 5361 5362 536.1 1072.2 5361 1984-09-05 2024-10-11 01:29:21.000 1984-09-05 2024-10-11 01:29:21 +5362 5362 5363 536.2 1072.4 5362 1984-09-06 2024-10-11 01:29:22.000 1984-09-06 2024-10-11 01:29:22 +5363 5363 5364 536.3 1072.6000000000001 5363 1984-09-07 2024-10-11 01:29:23.000 1984-09-07 2024-10-11 01:29:23 +5364 5364 5365 536.4 1072.8 5364 1984-09-08 2024-10-11 01:29:24.000 1984-09-08 2024-10-11 01:29:24 +5366 5366 5367 536.6 1073.2 5366 1984-09-10 2024-10-11 01:29:26.000 1984-09-10 2024-10-11 01:29:26 +5367 5367 5368 536.7 1073.4 5367 1984-09-11 2024-10-11 01:29:27.000 1984-09-11 2024-10-11 01:29:27 +5368 5368 5369 536.8 1073.6000000000001 5368 1984-09-12 2024-10-11 01:29:28.000 1984-09-12 2024-10-11 01:29:28 +5369 5369 5370 536.9 1073.8 5369 1984-09-13 2024-10-11 01:29:29.000 1984-09-13 2024-10-11 01:29:29 +5371 5371 5372 537.1 1074.2 5371 1984-09-15 2024-10-11 01:29:31.000 1984-09-15 2024-10-11 01:29:31 +5372 5372 5373 537.2 1074.4 5372 1984-09-16 2024-10-11 01:29:32.000 1984-09-16 2024-10-11 01:29:32 +5373 5373 5374 537.3 1074.6000000000001 5373 1984-09-17 2024-10-11 01:29:33.000 1984-09-17 2024-10-11 01:29:33 +5374 5374 5375 537.4 1074.8 5374 1984-09-18 2024-10-11 01:29:34.000 1984-09-18 2024-10-11 01:29:34 +5376 5376 5377 537.6 1075.2 5376 1984-09-20 2024-10-11 01:29:36.000 1984-09-20 2024-10-11 01:29:36 +5377 5377 5378 537.7 1075.4 5377 1984-09-21 2024-10-11 01:29:37.000 1984-09-21 2024-10-11 01:29:37 +5378 5378 5379 537.8 1075.6000000000001 5378 1984-09-22 2024-10-11 01:29:38.000 1984-09-22 2024-10-11 01:29:38 +5379 5379 5380 537.9 1075.8 5379 1984-09-23 2024-10-11 01:29:39.000 1984-09-23 2024-10-11 01:29:39 +5381 5381 5382 538.1 1076.2 5381 1984-09-25 2024-10-11 01:29:41.000 1984-09-25 2024-10-11 01:29:41 +5382 5382 5383 538.2 1076.4 5382 1984-09-26 2024-10-11 01:29:42.000 1984-09-26 2024-10-11 01:29:42 +5383 5383 5384 538.3 1076.6000000000001 5383 1984-09-27 2024-10-11 01:29:43.000 1984-09-27 2024-10-11 01:29:43 +5384 5384 5385 538.4 1076.8 5384 1984-09-28 2024-10-11 01:29:44.000 1984-09-28 2024-10-11 01:29:44 +5386 5386 5387 538.6 1077.2 5386 1984-09-30 2024-10-11 01:29:46.000 1984-09-30 2024-10-11 01:29:46 +5387 5387 5388 538.7 1077.4 5387 1984-10-01 2024-10-11 01:29:47.000 1984-10-01 2024-10-11 01:29:47 +5388 5388 5389 538.8 1077.6000000000001 5388 1984-10-02 2024-10-11 01:29:48.000 1984-10-02 2024-10-11 01:29:48 +5389 5389 5390 538.9 1077.8 5389 1984-10-03 2024-10-11 01:29:49.000 1984-10-03 2024-10-11 01:29:49 +5391 5391 5392 539.1 1078.2 5391 1984-10-05 2024-10-11 01:29:51.000 1984-10-05 2024-10-11 01:29:51 +5392 5392 5393 539.2 1078.4 5392 1984-10-06 2024-10-11 01:29:52.000 1984-10-06 2024-10-11 01:29:52 +5393 5393 5394 539.3 1078.6000000000001 5393 1984-10-07 2024-10-11 01:29:53.000 1984-10-07 2024-10-11 01:29:53 +5394 5394 5395 539.4 1078.8 5394 1984-10-08 2024-10-11 01:29:54.000 1984-10-08 2024-10-11 01:29:54 +5396 5396 5397 539.6 1079.2 5396 1984-10-10 2024-10-11 01:29:56.000 1984-10-10 2024-10-11 01:29:56 +5397 5397 5398 539.7 1079.4 5397 1984-10-11 2024-10-11 01:29:57.000 1984-10-11 2024-10-11 01:29:57 +5398 5398 5399 539.8 1079.6000000000001 5398 1984-10-12 2024-10-11 01:29:58.000 1984-10-12 2024-10-11 01:29:58 +5399 5399 5400 539.9 1079.8 5399 1984-10-13 2024-10-11 01:29:59.000 1984-10-13 2024-10-11 01:29:59 +5401 5401 5402 540.1 1080.2 5401 1984-10-15 2024-10-11 01:30:01.000 1984-10-15 2024-10-11 01:30:01 +5402 5402 5403 540.2 1080.4 5402 1984-10-16 2024-10-11 01:30:02.000 1984-10-16 2024-10-11 01:30:02 +5403 5403 5404 540.3 1080.6000000000001 5403 1984-10-17 2024-10-11 01:30:03.000 1984-10-17 2024-10-11 01:30:03 +5404 5404 5405 540.4 1080.8 5404 1984-10-18 2024-10-11 01:30:04.000 1984-10-18 2024-10-11 01:30:04 +5406 5406 5407 540.6 1081.2 5406 1984-10-20 2024-10-11 01:30:06.000 1984-10-20 2024-10-11 01:30:06 +5407 5407 5408 540.7 1081.4 5407 1984-10-21 2024-10-11 01:30:07.000 1984-10-21 2024-10-11 01:30:07 +5408 5408 5409 540.8 1081.6000000000001 5408 1984-10-22 2024-10-11 01:30:08.000 1984-10-22 2024-10-11 01:30:08 +5409 5409 5410 540.9 1081.8 5409 1984-10-23 2024-10-11 01:30:09.000 1984-10-23 2024-10-11 01:30:09 +5411 5411 5412 541.1 1082.2 5411 1984-10-25 2024-10-11 01:30:11.000 1984-10-25 2024-10-11 01:30:11 +5412 5412 5413 541.2 1082.4 5412 1984-10-26 2024-10-11 01:30:12.000 1984-10-26 2024-10-11 01:30:12 +5413 5413 5414 541.3 1082.6000000000001 5413 1984-10-27 2024-10-11 01:30:13.000 1984-10-27 2024-10-11 01:30:13 +5414 5414 5415 541.4 1082.8 5414 1984-10-28 2024-10-11 01:30:14.000 1984-10-28 2024-10-11 01:30:14 +5416 5416 5417 541.6 1083.2 5416 1984-10-30 2024-10-11 01:30:16.000 1984-10-30 2024-10-11 01:30:16 +5417 5417 5418 541.7 1083.4 5417 1984-10-31 2024-10-11 01:30:17.000 1984-10-31 2024-10-11 01:30:17 +5418 5418 5419 541.8 1083.6000000000001 5418 1984-11-01 2024-10-11 01:30:18.000 1984-11-01 2024-10-11 01:30:18 +5419 5419 5420 541.9 1083.8 5419 1984-11-02 2024-10-11 01:30:19.000 1984-11-02 2024-10-11 01:30:19 +5421 5421 5422 542.1 1084.2 5421 1984-11-04 2024-10-11 01:30:21.000 1984-11-04 2024-10-11 01:30:21 +5422 5422 5423 542.2 1084.4 5422 1984-11-05 2024-10-11 01:30:22.000 1984-11-05 2024-10-11 01:30:22 +5423 5423 5424 542.3 1084.6000000000001 5423 1984-11-06 2024-10-11 01:30:23.000 1984-11-06 2024-10-11 01:30:23 +5424 5424 5425 542.4 1084.8 5424 1984-11-07 2024-10-11 01:30:24.000 1984-11-07 2024-10-11 01:30:24 +5426 5426 5427 542.6 1085.2 5426 1984-11-09 2024-10-11 01:30:26.000 1984-11-09 2024-10-11 01:30:26 +5427 5427 5428 542.7 1085.4 5427 1984-11-10 2024-10-11 01:30:27.000 1984-11-10 2024-10-11 01:30:27 +5428 5428 5429 542.8 1085.6000000000001 5428 1984-11-11 2024-10-11 01:30:28.000 1984-11-11 2024-10-11 01:30:28 +5429 5429 5430 542.9 1085.8 5429 1984-11-12 2024-10-11 01:30:29.000 1984-11-12 2024-10-11 01:30:29 +5431 5431 5432 543.1 1086.2 5431 1984-11-14 2024-10-11 01:30:31.000 1984-11-14 2024-10-11 01:30:31 +5432 5432 5433 543.2 1086.4 5432 1984-11-15 2024-10-11 01:30:32.000 1984-11-15 2024-10-11 01:30:32 +5433 5433 5434 543.3 1086.6000000000001 5433 1984-11-16 2024-10-11 01:30:33.000 1984-11-16 2024-10-11 01:30:33 +5434 5434 5435 543.4 1086.8 5434 1984-11-17 2024-10-11 01:30:34.000 1984-11-17 2024-10-11 01:30:34 +5436 5436 5437 543.6 1087.2 5436 1984-11-19 2024-10-11 01:30:36.000 1984-11-19 2024-10-11 01:30:36 +5437 5437 5438 543.7 1087.4 5437 1984-11-20 2024-10-11 01:30:37.000 1984-11-20 2024-10-11 01:30:37 +5438 5438 5439 543.8 1087.6000000000001 5438 1984-11-21 2024-10-11 01:30:38.000 1984-11-21 2024-10-11 01:30:38 +5439 5439 5440 543.9 1087.8 5439 1984-11-22 2024-10-11 01:30:39.000 1984-11-22 2024-10-11 01:30:39 +5441 5441 5442 544.1 1088.2 5441 1984-11-24 2024-10-11 01:30:41.000 1984-11-24 2024-10-11 01:30:41 +5442 5442 5443 544.2 1088.4 5442 1984-11-25 2024-10-11 01:30:42.000 1984-11-25 2024-10-11 01:30:42 +5443 5443 5444 544.3 1088.6000000000001 5443 1984-11-26 2024-10-11 01:30:43.000 1984-11-26 2024-10-11 01:30:43 +5444 5444 5445 544.4 1088.8 5444 1984-11-27 2024-10-11 01:30:44.000 1984-11-27 2024-10-11 01:30:44 +5446 5446 5447 544.6 1089.2 5446 1984-11-29 2024-10-11 01:30:46.000 1984-11-29 2024-10-11 01:30:46 +5447 5447 5448 544.7 1089.4 5447 1984-11-30 2024-10-11 01:30:47.000 1984-11-30 2024-10-11 01:30:47 +5448 5448 5449 544.8 1089.6000000000001 5448 1984-12-01 2024-10-11 01:30:48.000 1984-12-01 2024-10-11 01:30:48 +5449 5449 5450 544.9 1089.8 5449 1984-12-02 2024-10-11 01:30:49.000 1984-12-02 2024-10-11 01:30:49 +5451 5451 5452 545.1 1090.2 5451 1984-12-04 2024-10-11 01:30:51.000 1984-12-04 2024-10-11 01:30:51 +5452 5452 5453 545.2 1090.4 5452 1984-12-05 2024-10-11 01:30:52.000 1984-12-05 2024-10-11 01:30:52 +5453 5453 5454 545.3 1090.6000000000001 5453 1984-12-06 2024-10-11 01:30:53.000 1984-12-06 2024-10-11 01:30:53 +5454 5454 5455 545.4 1090.8 5454 1984-12-07 2024-10-11 01:30:54.000 1984-12-07 2024-10-11 01:30:54 +5456 5456 5457 545.6 1091.2 5456 1984-12-09 2024-10-11 01:30:56.000 1984-12-09 2024-10-11 01:30:56 +5457 5457 5458 545.7 1091.4 5457 1984-12-10 2024-10-11 01:30:57.000 1984-12-10 2024-10-11 01:30:57 +5458 5458 5459 545.8 1091.6000000000001 5458 1984-12-11 2024-10-11 01:30:58.000 1984-12-11 2024-10-11 01:30:58 +5459 5459 5460 545.9 1091.8 5459 1984-12-12 2024-10-11 01:30:59.000 1984-12-12 2024-10-11 01:30:59 +5461 5461 5462 546.1 1092.2 5461 1984-12-14 2024-10-11 01:31:01.000 1984-12-14 2024-10-11 01:31:01 +5462 5462 5463 546.2 1092.4 5462 1984-12-15 2024-10-11 01:31:02.000 1984-12-15 2024-10-11 01:31:02 +5463 5463 5464 546.3 1092.6000000000001 5463 1984-12-16 2024-10-11 01:31:03.000 1984-12-16 2024-10-11 01:31:03 +5464 5464 5465 546.4 1092.8 5464 1984-12-17 2024-10-11 01:31:04.000 1984-12-17 2024-10-11 01:31:04 +5466 5466 5467 546.6 1093.2 5466 1984-12-19 2024-10-11 01:31:06.000 1984-12-19 2024-10-11 01:31:06 +5467 5467 5468 546.7 1093.4 5467 1984-12-20 2024-10-11 01:31:07.000 1984-12-20 2024-10-11 01:31:07 +5468 5468 5469 546.8 1093.6000000000001 5468 1984-12-21 2024-10-11 01:31:08.000 1984-12-21 2024-10-11 01:31:08 +5469 5469 5470 546.9 1093.8 5469 1984-12-22 2024-10-11 01:31:09.000 1984-12-22 2024-10-11 01:31:09 +5471 5471 5472 547.1 1094.2 5471 1984-12-24 2024-10-11 01:31:11.000 1984-12-24 2024-10-11 01:31:11 +5472 5472 5473 547.2 1094.4 5472 1984-12-25 2024-10-11 01:31:12.000 1984-12-25 2024-10-11 01:31:12 +5473 5473 5474 547.3 1094.6000000000001 5473 1984-12-26 2024-10-11 01:31:13.000 1984-12-26 2024-10-11 01:31:13 +5474 5474 5475 547.4 1094.8 5474 1984-12-27 2024-10-11 01:31:14.000 1984-12-27 2024-10-11 01:31:14 +5476 5476 5477 547.6 1095.2 5476 1984-12-29 2024-10-11 01:31:16.000 1984-12-29 2024-10-11 01:31:16 +5477 5477 5478 547.7 1095.4 5477 1984-12-30 2024-10-11 01:31:17.000 1984-12-30 2024-10-11 01:31:17 +5478 5478 5479 547.8 1095.6000000000001 5478 1984-12-31 2024-10-11 01:31:18.000 1984-12-31 2024-10-11 01:31:18 +5479 5479 5480 547.9 1095.8 5479 1985-01-01 2024-10-11 01:31:19.000 1985-01-01 2024-10-11 01:31:19 +5481 5481 5482 548.1 1096.2 5481 1985-01-03 2024-10-11 01:31:21.000 1985-01-03 2024-10-11 01:31:21 +5482 5482 5483 548.2 1096.4 5482 1985-01-04 2024-10-11 01:31:22.000 1985-01-04 2024-10-11 01:31:22 +5483 5483 5484 548.3 1096.6000000000001 5483 1985-01-05 2024-10-11 01:31:23.000 1985-01-05 2024-10-11 01:31:23 +5484 5484 5485 548.4 1096.8 5484 1985-01-06 2024-10-11 01:31:24.000 1985-01-06 2024-10-11 01:31:24 +5486 5486 5487 548.6 1097.2 5486 1985-01-08 2024-10-11 01:31:26.000 1985-01-08 2024-10-11 01:31:26 +5487 5487 5488 548.7 1097.4 5487 1985-01-09 2024-10-11 01:31:27.000 1985-01-09 2024-10-11 01:31:27 +5488 5488 5489 548.8 1097.6000000000001 5488 1985-01-10 2024-10-11 01:31:28.000 1985-01-10 2024-10-11 01:31:28 +5489 5489 5490 548.9 1097.8 5489 1985-01-11 2024-10-11 01:31:29.000 1985-01-11 2024-10-11 01:31:29 +5491 5491 5492 549.1 1098.2 5491 1985-01-13 2024-10-11 01:31:31.000 1985-01-13 2024-10-11 01:31:31 +5492 5492 5493 549.2 1098.4 5492 1985-01-14 2024-10-11 01:31:32.000 1985-01-14 2024-10-11 01:31:32 +5493 5493 5494 549.3 1098.6000000000001 5493 1985-01-15 2024-10-11 01:31:33.000 1985-01-15 2024-10-11 01:31:33 +5494 5494 5495 549.4 1098.8 5494 1985-01-16 2024-10-11 01:31:34.000 1985-01-16 2024-10-11 01:31:34 +5496 5496 5497 549.6 1099.2 5496 1985-01-18 2024-10-11 01:31:36.000 1985-01-18 2024-10-11 01:31:36 +5497 5497 5498 549.7 1099.4 5497 1985-01-19 2024-10-11 01:31:37.000 1985-01-19 2024-10-11 01:31:37 +5498 5498 5499 549.8 1099.6000000000001 5498 1985-01-20 2024-10-11 01:31:38.000 1985-01-20 2024-10-11 01:31:38 +5499 5499 5500 549.9 1099.8 5499 1985-01-21 2024-10-11 01:31:39.000 1985-01-21 2024-10-11 01:31:39 +5501 5501 5502 550.1 1100.2 5501 1985-01-23 2024-10-11 01:31:41.000 1985-01-23 2024-10-11 01:31:41 +5502 5502 5503 550.2 1100.4 5502 1985-01-24 2024-10-11 01:31:42.000 1985-01-24 2024-10-11 01:31:42 +5503 5503 5504 550.3 1100.6000000000001 5503 1985-01-25 2024-10-11 01:31:43.000 1985-01-25 2024-10-11 01:31:43 +5504 5504 5505 550.4 1100.8 5504 1985-01-26 2024-10-11 01:31:44.000 1985-01-26 2024-10-11 01:31:44 +5506 5506 5507 550.6 1101.2 5506 1985-01-28 2024-10-11 01:31:46.000 1985-01-28 2024-10-11 01:31:46 +5507 5507 5508 550.7 1101.4 5507 1985-01-29 2024-10-11 01:31:47.000 1985-01-29 2024-10-11 01:31:47 +5508 5508 5509 550.8 1101.6000000000001 5508 1985-01-30 2024-10-11 01:31:48.000 1985-01-30 2024-10-11 01:31:48 +5509 5509 5510 550.9 1101.8 5509 1985-01-31 2024-10-11 01:31:49.000 1985-01-31 2024-10-11 01:31:49 +5511 5511 5512 551.1 1102.2 5511 1985-02-02 2024-10-11 01:31:51.000 1985-02-02 2024-10-11 01:31:51 +5512 5512 5513 551.2 1102.4 5512 1985-02-03 2024-10-11 01:31:52.000 1985-02-03 2024-10-11 01:31:52 +5513 5513 5514 551.3 1102.6000000000001 5513 1985-02-04 2024-10-11 01:31:53.000 1985-02-04 2024-10-11 01:31:53 +5514 5514 5515 551.4 1102.8 5514 1985-02-05 2024-10-11 01:31:54.000 1985-02-05 2024-10-11 01:31:54 +5516 5516 5517 551.6 1103.2 5516 1985-02-07 2024-10-11 01:31:56.000 1985-02-07 2024-10-11 01:31:56 +5517 5517 5518 551.7 1103.4 5517 1985-02-08 2024-10-11 01:31:57.000 1985-02-08 2024-10-11 01:31:57 +5518 5518 5519 551.8 1103.6000000000001 5518 1985-02-09 2024-10-11 01:31:58.000 1985-02-09 2024-10-11 01:31:58 +5519 5519 5520 551.9 1103.8 5519 1985-02-10 2024-10-11 01:31:59.000 1985-02-10 2024-10-11 01:31:59 +5521 5521 5522 552.1 1104.2 5521 1985-02-12 2024-10-11 01:32:01.000 1985-02-12 2024-10-11 01:32:01 +5522 5522 5523 552.2 1104.4 5522 1985-02-13 2024-10-11 01:32:02.000 1985-02-13 2024-10-11 01:32:02 +5523 5523 5524 552.3 1104.6000000000001 5523 1985-02-14 2024-10-11 01:32:03.000 1985-02-14 2024-10-11 01:32:03 +5524 5524 5525 552.4 1104.8 5524 1985-02-15 2024-10-11 01:32:04.000 1985-02-15 2024-10-11 01:32:04 +5526 5526 5527 552.6 1105.2 5526 1985-02-17 2024-10-11 01:32:06.000 1985-02-17 2024-10-11 01:32:06 +5527 5527 5528 552.7 1105.4 5527 1985-02-18 2024-10-11 01:32:07.000 1985-02-18 2024-10-11 01:32:07 +5528 5528 5529 552.8 1105.6000000000001 5528 1985-02-19 2024-10-11 01:32:08.000 1985-02-19 2024-10-11 01:32:08 +5529 5529 5530 552.9 1105.8 5529 1985-02-20 2024-10-11 01:32:09.000 1985-02-20 2024-10-11 01:32:09 +5531 5531 5532 553.1 1106.2 5531 1985-02-22 2024-10-11 01:32:11.000 1985-02-22 2024-10-11 01:32:11 +5532 5532 5533 553.2 1106.4 5532 1985-02-23 2024-10-11 01:32:12.000 1985-02-23 2024-10-11 01:32:12 +5533 5533 5534 553.3 1106.6000000000001 5533 1985-02-24 2024-10-11 01:32:13.000 1985-02-24 2024-10-11 01:32:13 +5534 5534 5535 553.4 1106.8 5534 1985-02-25 2024-10-11 01:32:14.000 1985-02-25 2024-10-11 01:32:14 +5536 5536 5537 553.6 1107.2 5536 1985-02-27 2024-10-11 01:32:16.000 1985-02-27 2024-10-11 01:32:16 +5537 5537 5538 553.7 1107.4 5537 1985-02-28 2024-10-11 01:32:17.000 1985-02-28 2024-10-11 01:32:17 +5538 5538 5539 553.8 1107.6000000000001 5538 1985-03-01 2024-10-11 01:32:18.000 1985-03-01 2024-10-11 01:32:18 +5539 5539 5540 553.9 1107.8 5539 1985-03-02 2024-10-11 01:32:19.000 1985-03-02 2024-10-11 01:32:19 +5541 5541 5542 554.1 1108.2 5541 1985-03-04 2024-10-11 01:32:21.000 1985-03-04 2024-10-11 01:32:21 +5542 5542 5543 554.2 1108.4 5542 1985-03-05 2024-10-11 01:32:22.000 1985-03-05 2024-10-11 01:32:22 +5543 5543 5544 554.3 1108.6000000000001 5543 1985-03-06 2024-10-11 01:32:23.000 1985-03-06 2024-10-11 01:32:23 +5544 5544 5545 554.4 1108.8 5544 1985-03-07 2024-10-11 01:32:24.000 1985-03-07 2024-10-11 01:32:24 +5546 5546 5547 554.6 1109.2 5546 1985-03-09 2024-10-11 01:32:26.000 1985-03-09 2024-10-11 01:32:26 +5547 5547 5548 554.7 1109.4 5547 1985-03-10 2024-10-11 01:32:27.000 1985-03-10 2024-10-11 01:32:27 +5548 5548 5549 554.8 1109.6000000000001 5548 1985-03-11 2024-10-11 01:32:28.000 1985-03-11 2024-10-11 01:32:28 +5549 5549 5550 554.9 1109.8 5549 1985-03-12 2024-10-11 01:32:29.000 1985-03-12 2024-10-11 01:32:29 +5551 5551 5552 555.1 1110.2 5551 1985-03-14 2024-10-11 01:32:31.000 1985-03-14 2024-10-11 01:32:31 +5552 5552 5553 555.2 1110.4 5552 1985-03-15 2024-10-11 01:32:32.000 1985-03-15 2024-10-11 01:32:32 +5553 5553 5554 555.3 1110.6000000000001 5553 1985-03-16 2024-10-11 01:32:33.000 1985-03-16 2024-10-11 01:32:33 +5554 5554 5555 555.4 1110.8 5554 1985-03-17 2024-10-11 01:32:34.000 1985-03-17 2024-10-11 01:32:34 +5556 5556 5557 555.6 1111.2 5556 1985-03-19 2024-10-11 01:32:36.000 1985-03-19 2024-10-11 01:32:36 +5557 5557 5558 555.7 1111.4 5557 1985-03-20 2024-10-11 01:32:37.000 1985-03-20 2024-10-11 01:32:37 +5558 5558 5559 555.8 1111.6000000000001 5558 1985-03-21 2024-10-11 01:32:38.000 1985-03-21 2024-10-11 01:32:38 +5559 5559 5560 555.9 1111.8 5559 1985-03-22 2024-10-11 01:32:39.000 1985-03-22 2024-10-11 01:32:39 +5561 5561 5562 556.1 1112.2 5561 1985-03-24 2024-10-11 01:32:41.000 1985-03-24 2024-10-11 01:32:41 +5562 5562 5563 556.2 1112.4 5562 1985-03-25 2024-10-11 01:32:42.000 1985-03-25 2024-10-11 01:32:42 +5563 5563 5564 556.3 1112.6000000000001 5563 1985-03-26 2024-10-11 01:32:43.000 1985-03-26 2024-10-11 01:32:43 +5564 5564 5565 556.4 1112.8 5564 1985-03-27 2024-10-11 01:32:44.000 1985-03-27 2024-10-11 01:32:44 +5566 5566 5567 556.6 1113.2 5566 1985-03-29 2024-10-11 01:32:46.000 1985-03-29 2024-10-11 01:32:46 +5567 5567 5568 556.7 1113.4 5567 1985-03-30 2024-10-11 01:32:47.000 1985-03-30 2024-10-11 01:32:47 +5568 5568 5569 556.8 1113.6000000000001 5568 1985-03-31 2024-10-11 01:32:48.000 1985-03-31 2024-10-11 01:32:48 +5569 5569 5570 556.9 1113.8 5569 1985-04-01 2024-10-11 01:32:49.000 1985-04-01 2024-10-11 01:32:49 +5571 5571 5572 557.1 1114.2 5571 1985-04-03 2024-10-11 01:32:51.000 1985-04-03 2024-10-11 01:32:51 +5572 5572 5573 557.2 1114.4 5572 1985-04-04 2024-10-11 01:32:52.000 1985-04-04 2024-10-11 01:32:52 +5573 5573 5574 557.3 1114.6000000000001 5573 1985-04-05 2024-10-11 01:32:53.000 1985-04-05 2024-10-11 01:32:53 +5574 5574 5575 557.4 1114.8 5574 1985-04-06 2024-10-11 01:32:54.000 1985-04-06 2024-10-11 01:32:54 +5576 5576 5577 557.6 1115.2 5576 1985-04-08 2024-10-11 01:32:56.000 1985-04-08 2024-10-11 01:32:56 +5577 5577 5578 557.7 1115.4 5577 1985-04-09 2024-10-11 01:32:57.000 1985-04-09 2024-10-11 01:32:57 +5578 5578 5579 557.8 1115.6000000000001 5578 1985-04-10 2024-10-11 01:32:58.000 1985-04-10 2024-10-11 01:32:58 +5579 5579 5580 557.9 1115.8 5579 1985-04-11 2024-10-11 01:32:59.000 1985-04-11 2024-10-11 01:32:59 +5581 5581 5582 558.1 1116.2 5581 1985-04-13 2024-10-11 01:33:01.000 1985-04-13 2024-10-11 01:33:01 +5582 5582 5583 558.2 1116.4 5582 1985-04-14 2024-10-11 01:33:02.000 1985-04-14 2024-10-11 01:33:02 +5583 5583 5584 558.3 1116.6000000000001 5583 1985-04-15 2024-10-11 01:33:03.000 1985-04-15 2024-10-11 01:33:03 +5584 5584 5585 558.4 1116.8 5584 1985-04-16 2024-10-11 01:33:04.000 1985-04-16 2024-10-11 01:33:04 +5586 5586 5587 558.6 1117.2 5586 1985-04-18 2024-10-11 01:33:06.000 1985-04-18 2024-10-11 01:33:06 +5587 5587 5588 558.7 1117.4 5587 1985-04-19 2024-10-11 01:33:07.000 1985-04-19 2024-10-11 01:33:07 +5588 5588 5589 558.8 1117.6000000000001 5588 1985-04-20 2024-10-11 01:33:08.000 1985-04-20 2024-10-11 01:33:08 +5589 5589 5590 558.9 1117.8 5589 1985-04-21 2024-10-11 01:33:09.000 1985-04-21 2024-10-11 01:33:09 +5591 5591 5592 559.1 1118.2 5591 1985-04-23 2024-10-11 01:33:11.000 1985-04-23 2024-10-11 01:33:11 +5592 5592 5593 559.2 1118.4 5592 1985-04-24 2024-10-11 01:33:12.000 1985-04-24 2024-10-11 01:33:12 +5593 5593 5594 559.3 1118.6000000000001 5593 1985-04-25 2024-10-11 01:33:13.000 1985-04-25 2024-10-11 01:33:13 +5594 5594 5595 559.4 1118.8 5594 1985-04-26 2024-10-11 01:33:14.000 1985-04-26 2024-10-11 01:33:14 +5596 5596 5597 559.6 1119.2 5596 1985-04-28 2024-10-11 01:33:16.000 1985-04-28 2024-10-11 01:33:16 +5597 5597 5598 559.7 1119.4 5597 1985-04-29 2024-10-11 01:33:17.000 1985-04-29 2024-10-11 01:33:17 +5598 5598 5599 559.8 1119.6000000000001 5598 1985-04-30 2024-10-11 01:33:18.000 1985-04-30 2024-10-11 01:33:18 +5599 5599 5600 559.9 1119.8 5599 1985-05-01 2024-10-11 01:33:19.000 1985-05-01 2024-10-11 01:33:19 +5601 5601 5602 560.1 1120.2 5601 1985-05-03 2024-10-11 01:33:21.000 1985-05-03 2024-10-11 01:33:21 +5602 5602 5603 560.2 1120.4 5602 1985-05-04 2024-10-11 01:33:22.000 1985-05-04 2024-10-11 01:33:22 +5603 5603 5604 560.3 1120.6000000000001 5603 1985-05-05 2024-10-11 01:33:23.000 1985-05-05 2024-10-11 01:33:23 +5604 5604 5605 560.4 1120.8 5604 1985-05-06 2024-10-11 01:33:24.000 1985-05-06 2024-10-11 01:33:24 +5606 5606 5607 560.6 1121.2 5606 1985-05-08 2024-10-11 01:33:26.000 1985-05-08 2024-10-11 01:33:26 +5607 5607 5608 560.7 1121.4 5607 1985-05-09 2024-10-11 01:33:27.000 1985-05-09 2024-10-11 01:33:27 +5608 5608 5609 560.8 1121.6000000000001 5608 1985-05-10 2024-10-11 01:33:28.000 1985-05-10 2024-10-11 01:33:28 +5609 5609 5610 560.9 1121.8 5609 1985-05-11 2024-10-11 01:33:29.000 1985-05-11 2024-10-11 01:33:29 +5611 5611 5612 561.1 1122.2 5611 1985-05-13 2024-10-11 01:33:31.000 1985-05-13 2024-10-11 01:33:31 +5612 5612 5613 561.2 1122.4 5612 1985-05-14 2024-10-11 01:33:32.000 1985-05-14 2024-10-11 01:33:32 +5613 5613 5614 561.3 1122.6000000000001 5613 1985-05-15 2024-10-11 01:33:33.000 1985-05-15 2024-10-11 01:33:33 +5614 5614 5615 561.4 1122.8 5614 1985-05-16 2024-10-11 01:33:34.000 1985-05-16 2024-10-11 01:33:34 +5616 5616 5617 561.6 1123.2 5616 1985-05-18 2024-10-11 01:33:36.000 1985-05-18 2024-10-11 01:33:36 +5617 5617 5618 561.7 1123.4 5617 1985-05-19 2024-10-11 01:33:37.000 1985-05-19 2024-10-11 01:33:37 +5618 5618 5619 561.8 1123.6000000000001 5618 1985-05-20 2024-10-11 01:33:38.000 1985-05-20 2024-10-11 01:33:38 +5619 5619 5620 561.9 1123.8 5619 1985-05-21 2024-10-11 01:33:39.000 1985-05-21 2024-10-11 01:33:39 +5621 5621 5622 562.1 1124.2 5621 1985-05-23 2024-10-11 01:33:41.000 1985-05-23 2024-10-11 01:33:41 +5622 5622 5623 562.2 1124.4 5622 1985-05-24 2024-10-11 01:33:42.000 1985-05-24 2024-10-11 01:33:42 +5623 5623 5624 562.3 1124.6000000000001 5623 1985-05-25 2024-10-11 01:33:43.000 1985-05-25 2024-10-11 01:33:43 +5624 5624 5625 562.4 1124.8 5624 1985-05-26 2024-10-11 01:33:44.000 1985-05-26 2024-10-11 01:33:44 +5626 5626 5627 562.6 1125.2 5626 1985-05-28 2024-10-11 01:33:46.000 1985-05-28 2024-10-11 01:33:46 +5627 5627 5628 562.7 1125.4 5627 1985-05-29 2024-10-11 01:33:47.000 1985-05-29 2024-10-11 01:33:47 +5628 5628 5629 562.8 1125.6000000000001 5628 1985-05-30 2024-10-11 01:33:48.000 1985-05-30 2024-10-11 01:33:48 +5629 5629 5630 562.9 1125.8 5629 1985-05-31 2024-10-11 01:33:49.000 1985-05-31 2024-10-11 01:33:49 +5631 5631 5632 563.1 1126.2 5631 1985-06-02 2024-10-11 01:33:51.000 1985-06-02 2024-10-11 01:33:51 +5632 5632 5633 563.2 1126.4 5632 1985-06-03 2024-10-11 01:33:52.000 1985-06-03 2024-10-11 01:33:52 +5633 5633 5634 563.3 1126.6000000000001 5633 1985-06-04 2024-10-11 01:33:53.000 1985-06-04 2024-10-11 01:33:53 +5634 5634 5635 563.4 1126.8 5634 1985-06-05 2024-10-11 01:33:54.000 1985-06-05 2024-10-11 01:33:54 +5636 5636 5637 563.6 1127.2 5636 1985-06-07 2024-10-11 01:33:56.000 1985-06-07 2024-10-11 01:33:56 +5637 5637 5638 563.7 1127.4 5637 1985-06-08 2024-10-11 01:33:57.000 1985-06-08 2024-10-11 01:33:57 +5638 5638 5639 563.8 1127.6000000000001 5638 1985-06-09 2024-10-11 01:33:58.000 1985-06-09 2024-10-11 01:33:58 +5639 5639 5640 563.9 1127.8 5639 1985-06-10 2024-10-11 01:33:59.000 1985-06-10 2024-10-11 01:33:59 +5641 5641 5642 564.1 1128.2 5641 1985-06-12 2024-10-11 01:34:01.000 1985-06-12 2024-10-11 01:34:01 +5642 5642 5643 564.2 1128.4 5642 1985-06-13 2024-10-11 01:34:02.000 1985-06-13 2024-10-11 01:34:02 +5643 5643 5644 564.3 1128.6000000000001 5643 1985-06-14 2024-10-11 01:34:03.000 1985-06-14 2024-10-11 01:34:03 +5644 5644 5645 564.4 1128.8 5644 1985-06-15 2024-10-11 01:34:04.000 1985-06-15 2024-10-11 01:34:04 +5646 5646 5647 564.6 1129.2 5646 1985-06-17 2024-10-11 01:34:06.000 1985-06-17 2024-10-11 01:34:06 +5647 5647 5648 564.7 1129.4 5647 1985-06-18 2024-10-11 01:34:07.000 1985-06-18 2024-10-11 01:34:07 +5648 5648 5649 564.8 1129.6000000000001 5648 1985-06-19 2024-10-11 01:34:08.000 1985-06-19 2024-10-11 01:34:08 +5649 5649 5650 564.9 1129.8 5649 1985-06-20 2024-10-11 01:34:09.000 1985-06-20 2024-10-11 01:34:09 +5651 5651 5652 565.1 1130.2 5651 1985-06-22 2024-10-11 01:34:11.000 1985-06-22 2024-10-11 01:34:11 +5652 5652 5653 565.2 1130.4 5652 1985-06-23 2024-10-11 01:34:12.000 1985-06-23 2024-10-11 01:34:12 +5653 5653 5654 565.3 1130.6000000000001 5653 1985-06-24 2024-10-11 01:34:13.000 1985-06-24 2024-10-11 01:34:13 +5654 5654 5655 565.4 1130.8 5654 1985-06-25 2024-10-11 01:34:14.000 1985-06-25 2024-10-11 01:34:14 +5656 5656 5657 565.6 1131.2 5656 1985-06-27 2024-10-11 01:34:16.000 1985-06-27 2024-10-11 01:34:16 +5657 5657 5658 565.7 1131.4 5657 1985-06-28 2024-10-11 01:34:17.000 1985-06-28 2024-10-11 01:34:17 +5658 5658 5659 565.8 1131.6000000000001 5658 1985-06-29 2024-10-11 01:34:18.000 1985-06-29 2024-10-11 01:34:18 +5659 5659 5660 565.9 1131.8 5659 1985-06-30 2024-10-11 01:34:19.000 1985-06-30 2024-10-11 01:34:19 +5661 5661 5662 566.1 1132.2 5661 1985-07-02 2024-10-11 01:34:21.000 1985-07-02 2024-10-11 01:34:21 +5662 5662 5663 566.2 1132.4 5662 1985-07-03 2024-10-11 01:34:22.000 1985-07-03 2024-10-11 01:34:22 +5663 5663 5664 566.3 1132.6000000000001 5663 1985-07-04 2024-10-11 01:34:23.000 1985-07-04 2024-10-11 01:34:23 +5664 5664 5665 566.4 1132.8 5664 1985-07-05 2024-10-11 01:34:24.000 1985-07-05 2024-10-11 01:34:24 +5666 5666 5667 566.6 1133.2 5666 1985-07-07 2024-10-11 01:34:26.000 1985-07-07 2024-10-11 01:34:26 +5667 5667 5668 566.7 1133.4 5667 1985-07-08 2024-10-11 01:34:27.000 1985-07-08 2024-10-11 01:34:27 +5668 5668 5669 566.8 1133.6000000000001 5668 1985-07-09 2024-10-11 01:34:28.000 1985-07-09 2024-10-11 01:34:28 +5669 5669 5670 566.9 1133.8 5669 1985-07-10 2024-10-11 01:34:29.000 1985-07-10 2024-10-11 01:34:29 +5671 5671 5672 567.1 1134.2 5671 1985-07-12 2024-10-11 01:34:31.000 1985-07-12 2024-10-11 01:34:31 +5672 5672 5673 567.2 1134.4 5672 1985-07-13 2024-10-11 01:34:32.000 1985-07-13 2024-10-11 01:34:32 +5673 5673 5674 567.3 1134.6000000000001 5673 1985-07-14 2024-10-11 01:34:33.000 1985-07-14 2024-10-11 01:34:33 +5674 5674 5675 567.4 1134.8 5674 1985-07-15 2024-10-11 01:34:34.000 1985-07-15 2024-10-11 01:34:34 +5676 5676 5677 567.6 1135.2 5676 1985-07-17 2024-10-11 01:34:36.000 1985-07-17 2024-10-11 01:34:36 +5677 5677 5678 567.7 1135.4 5677 1985-07-18 2024-10-11 01:34:37.000 1985-07-18 2024-10-11 01:34:37 +5678 5678 5679 567.8 1135.6000000000001 5678 1985-07-19 2024-10-11 01:34:38.000 1985-07-19 2024-10-11 01:34:38 +5679 5679 5680 567.9 1135.8 5679 1985-07-20 2024-10-11 01:34:39.000 1985-07-20 2024-10-11 01:34:39 +5681 5681 5682 568.1 1136.2 5681 1985-07-22 2024-10-11 01:34:41.000 1985-07-22 2024-10-11 01:34:41 +5682 5682 5683 568.2 1136.4 5682 1985-07-23 2024-10-11 01:34:42.000 1985-07-23 2024-10-11 01:34:42 +5683 5683 5684 568.3 1136.6000000000001 5683 1985-07-24 2024-10-11 01:34:43.000 1985-07-24 2024-10-11 01:34:43 +5684 5684 5685 568.4 1136.8 5684 1985-07-25 2024-10-11 01:34:44.000 1985-07-25 2024-10-11 01:34:44 +5686 5686 5687 568.6 1137.2 5686 1985-07-27 2024-10-11 01:34:46.000 1985-07-27 2024-10-11 01:34:46 +5687 5687 5688 568.7 1137.4 5687 1985-07-28 2024-10-11 01:34:47.000 1985-07-28 2024-10-11 01:34:47 +5688 5688 5689 568.8 1137.6000000000001 5688 1985-07-29 2024-10-11 01:34:48.000 1985-07-29 2024-10-11 01:34:48 +5689 5689 5690 568.9 1137.8 5689 1985-07-30 2024-10-11 01:34:49.000 1985-07-30 2024-10-11 01:34:49 +5691 5691 5692 569.1 1138.2 5691 1985-08-01 2024-10-11 01:34:51.000 1985-08-01 2024-10-11 01:34:51 +5692 5692 5693 569.2 1138.4 5692 1985-08-02 2024-10-11 01:34:52.000 1985-08-02 2024-10-11 01:34:52 +5693 5693 5694 569.3 1138.6000000000001 5693 1985-08-03 2024-10-11 01:34:53.000 1985-08-03 2024-10-11 01:34:53 +5694 5694 5695 569.4 1138.8 5694 1985-08-04 2024-10-11 01:34:54.000 1985-08-04 2024-10-11 01:34:54 +5696 5696 5697 569.6 1139.2 5696 1985-08-06 2024-10-11 01:34:56.000 1985-08-06 2024-10-11 01:34:56 +5697 5697 5698 569.7 1139.4 5697 1985-08-07 2024-10-11 01:34:57.000 1985-08-07 2024-10-11 01:34:57 +5698 5698 5699 569.8 1139.6000000000001 5698 1985-08-08 2024-10-11 01:34:58.000 1985-08-08 2024-10-11 01:34:58 +5699 5699 5700 569.9 1139.8 5699 1985-08-09 2024-10-11 01:34:59.000 1985-08-09 2024-10-11 01:34:59 +5701 5701 5702 570.1 1140.2 5701 1985-08-11 2024-10-11 01:35:01.000 1985-08-11 2024-10-11 01:35:01 +5702 5702 5703 570.2 1140.4 5702 1985-08-12 2024-10-11 01:35:02.000 1985-08-12 2024-10-11 01:35:02 +5703 5703 5704 570.3 1140.6000000000001 5703 1985-08-13 2024-10-11 01:35:03.000 1985-08-13 2024-10-11 01:35:03 +5704 5704 5705 570.4 1140.8 5704 1985-08-14 2024-10-11 01:35:04.000 1985-08-14 2024-10-11 01:35:04 +5706 5706 5707 570.6 1141.2 5706 1985-08-16 2024-10-11 01:35:06.000 1985-08-16 2024-10-11 01:35:06 +5707 5707 5708 570.7 1141.4 5707 1985-08-17 2024-10-11 01:35:07.000 1985-08-17 2024-10-11 01:35:07 +5708 5708 5709 570.8 1141.6000000000001 5708 1985-08-18 2024-10-11 01:35:08.000 1985-08-18 2024-10-11 01:35:08 +5709 5709 5710 570.9 1141.8 5709 1985-08-19 2024-10-11 01:35:09.000 1985-08-19 2024-10-11 01:35:09 +5711 5711 5712 571.1 1142.2 5711 1985-08-21 2024-10-11 01:35:11.000 1985-08-21 2024-10-11 01:35:11 +5712 5712 5713 571.2 1142.4 5712 1985-08-22 2024-10-11 01:35:12.000 1985-08-22 2024-10-11 01:35:12 +5713 5713 5714 571.3 1142.6000000000001 5713 1985-08-23 2024-10-11 01:35:13.000 1985-08-23 2024-10-11 01:35:13 +5714 5714 5715 571.4 1142.8 5714 1985-08-24 2024-10-11 01:35:14.000 1985-08-24 2024-10-11 01:35:14 +5716 5716 5717 571.6 1143.2 5716 1985-08-26 2024-10-11 01:35:16.000 1985-08-26 2024-10-11 01:35:16 +5717 5717 5718 571.7 1143.4 5717 1985-08-27 2024-10-11 01:35:17.000 1985-08-27 2024-10-11 01:35:17 +5718 5718 5719 571.8 1143.6000000000001 5718 1985-08-28 2024-10-11 01:35:18.000 1985-08-28 2024-10-11 01:35:18 +5719 5719 5720 571.9 1143.8 5719 1985-08-29 2024-10-11 01:35:19.000 1985-08-29 2024-10-11 01:35:19 +5721 5721 5722 572.1 1144.2 5721 1985-08-31 2024-10-11 01:35:21.000 1985-08-31 2024-10-11 01:35:21 +5722 5722 5723 572.2 1144.4 5722 1985-09-01 2024-10-11 01:35:22.000 1985-09-01 2024-10-11 01:35:22 +5723 5723 5724 572.3 1144.6000000000001 5723 1985-09-02 2024-10-11 01:35:23.000 1985-09-02 2024-10-11 01:35:23 +5724 5724 5725 572.4 1144.8 5724 1985-09-03 2024-10-11 01:35:24.000 1985-09-03 2024-10-11 01:35:24 +5726 5726 5727 572.6 1145.2 5726 1985-09-05 2024-10-11 01:35:26.000 1985-09-05 2024-10-11 01:35:26 +5727 5727 5728 572.7 1145.4 5727 1985-09-06 2024-10-11 01:35:27.000 1985-09-06 2024-10-11 01:35:27 +5728 5728 5729 572.8 1145.6000000000001 5728 1985-09-07 2024-10-11 01:35:28.000 1985-09-07 2024-10-11 01:35:28 +5729 5729 5730 572.9 1145.8 5729 1985-09-08 2024-10-11 01:35:29.000 1985-09-08 2024-10-11 01:35:29 +5731 5731 5732 573.1 1146.2 5731 1985-09-10 2024-10-11 01:35:31.000 1985-09-10 2024-10-11 01:35:31 +5732 5732 5733 573.2 1146.4 5732 1985-09-11 2024-10-11 01:35:32.000 1985-09-11 2024-10-11 01:35:32 +5733 5733 5734 573.3 1146.6000000000001 5733 1985-09-12 2024-10-11 01:35:33.000 1985-09-12 2024-10-11 01:35:33 +5734 5734 5735 573.4 1146.8 5734 1985-09-13 2024-10-11 01:35:34.000 1985-09-13 2024-10-11 01:35:34 +5736 5736 5737 573.6 1147.2 5736 1985-09-15 2024-10-11 01:35:36.000 1985-09-15 2024-10-11 01:35:36 +5737 5737 5738 573.7 1147.4 5737 1985-09-16 2024-10-11 01:35:37.000 1985-09-16 2024-10-11 01:35:37 +5738 5738 5739 573.8 1147.6000000000001 5738 1985-09-17 2024-10-11 01:35:38.000 1985-09-17 2024-10-11 01:35:38 +5739 5739 5740 573.9 1147.8 5739 1985-09-18 2024-10-11 01:35:39.000 1985-09-18 2024-10-11 01:35:39 +5741 5741 5742 574.1 1148.2 5741 1985-09-20 2024-10-11 01:35:41.000 1985-09-20 2024-10-11 01:35:41 +5742 5742 5743 574.2 1148.4 5742 1985-09-21 2024-10-11 01:35:42.000 1985-09-21 2024-10-11 01:35:42 +5743 5743 5744 574.3 1148.6000000000001 5743 1985-09-22 2024-10-11 01:35:43.000 1985-09-22 2024-10-11 01:35:43 +5744 5744 5745 574.4 1148.8 5744 1985-09-23 2024-10-11 01:35:44.000 1985-09-23 2024-10-11 01:35:44 +5746 5746 5747 574.6 1149.2 5746 1985-09-25 2024-10-11 01:35:46.000 1985-09-25 2024-10-11 01:35:46 +5747 5747 5748 574.7 1149.4 5747 1985-09-26 2024-10-11 01:35:47.000 1985-09-26 2024-10-11 01:35:47 +5748 5748 5749 574.8 1149.6000000000001 5748 1985-09-27 2024-10-11 01:35:48.000 1985-09-27 2024-10-11 01:35:48 +5749 5749 5750 574.9 1149.8 5749 1985-09-28 2024-10-11 01:35:49.000 1985-09-28 2024-10-11 01:35:49 +5751 5751 5752 575.1 1150.2 5751 1985-09-30 2024-10-11 01:35:51.000 1985-09-30 2024-10-11 01:35:51 +5752 5752 5753 575.2 1150.4 5752 1985-10-01 2024-10-11 01:35:52.000 1985-10-01 2024-10-11 01:35:52 +5753 5753 5754 575.3 1150.6000000000001 5753 1985-10-02 2024-10-11 01:35:53.000 1985-10-02 2024-10-11 01:35:53 +5754 5754 5755 575.4 1150.8 5754 1985-10-03 2024-10-11 01:35:54.000 1985-10-03 2024-10-11 01:35:54 +5756 5756 5757 575.6 1151.2 5756 1985-10-05 2024-10-11 01:35:56.000 1985-10-05 2024-10-11 01:35:56 +5757 5757 5758 575.7 1151.4 5757 1985-10-06 2024-10-11 01:35:57.000 1985-10-06 2024-10-11 01:35:57 +5758 5758 5759 575.8 1151.6000000000001 5758 1985-10-07 2024-10-11 01:35:58.000 1985-10-07 2024-10-11 01:35:58 +5759 5759 5760 575.9 1151.8 5759 1985-10-08 2024-10-11 01:35:59.000 1985-10-08 2024-10-11 01:35:59 +5761 5761 5762 576.1 1152.2 5761 1985-10-10 2024-10-11 01:36:01.000 1985-10-10 2024-10-11 01:36:01 +5762 5762 5763 576.2 1152.4 5762 1985-10-11 2024-10-11 01:36:02.000 1985-10-11 2024-10-11 01:36:02 +5763 5763 5764 576.3 1152.6000000000001 5763 1985-10-12 2024-10-11 01:36:03.000 1985-10-12 2024-10-11 01:36:03 +5764 5764 5765 576.4 1152.8 5764 1985-10-13 2024-10-11 01:36:04.000 1985-10-13 2024-10-11 01:36:04 +5766 5766 5767 576.6 1153.2 5766 1985-10-15 2024-10-11 01:36:06.000 1985-10-15 2024-10-11 01:36:06 +5767 5767 5768 576.7 1153.4 5767 1985-10-16 2024-10-11 01:36:07.000 1985-10-16 2024-10-11 01:36:07 +5768 5768 5769 576.8 1153.6000000000001 5768 1985-10-17 2024-10-11 01:36:08.000 1985-10-17 2024-10-11 01:36:08 +5769 5769 5770 576.9 1153.8 5769 1985-10-18 2024-10-11 01:36:09.000 1985-10-18 2024-10-11 01:36:09 +5771 5771 5772 577.1 1154.2 5771 1985-10-20 2024-10-11 01:36:11.000 1985-10-20 2024-10-11 01:36:11 +5772 5772 5773 577.2 1154.4 5772 1985-10-21 2024-10-11 01:36:12.000 1985-10-21 2024-10-11 01:36:12 +5773 5773 5774 577.3 1154.6000000000001 5773 1985-10-22 2024-10-11 01:36:13.000 1985-10-22 2024-10-11 01:36:13 +5774 5774 5775 577.4 1154.8 5774 1985-10-23 2024-10-11 01:36:14.000 1985-10-23 2024-10-11 01:36:14 +5776 5776 5777 577.6 1155.2 5776 1985-10-25 2024-10-11 01:36:16.000 1985-10-25 2024-10-11 01:36:16 +5777 5777 5778 577.7 1155.4 5777 1985-10-26 2024-10-11 01:36:17.000 1985-10-26 2024-10-11 01:36:17 +5778 5778 5779 577.8 1155.6000000000001 5778 1985-10-27 2024-10-11 01:36:18.000 1985-10-27 2024-10-11 01:36:18 +5779 5779 5780 577.9 1155.8 5779 1985-10-28 2024-10-11 01:36:19.000 1985-10-28 2024-10-11 01:36:19 +5781 5781 5782 578.1 1156.2 5781 1985-10-30 2024-10-11 01:36:21.000 1985-10-30 2024-10-11 01:36:21 +5782 5782 5783 578.2 1156.4 5782 1985-10-31 2024-10-11 01:36:22.000 1985-10-31 2024-10-11 01:36:22 +5783 5783 5784 578.3 1156.6000000000001 5783 1985-11-01 2024-10-11 01:36:23.000 1985-11-01 2024-10-11 01:36:23 +5784 5784 5785 578.4 1156.8 5784 1985-11-02 2024-10-11 01:36:24.000 1985-11-02 2024-10-11 01:36:24 +5786 5786 5787 578.6 1157.2 5786 1985-11-04 2024-10-11 01:36:26.000 1985-11-04 2024-10-11 01:36:26 +5787 5787 5788 578.7 1157.4 5787 1985-11-05 2024-10-11 01:36:27.000 1985-11-05 2024-10-11 01:36:27 +5788 5788 5789 578.8 1157.6000000000001 5788 1985-11-06 2024-10-11 01:36:28.000 1985-11-06 2024-10-11 01:36:28 +5789 5789 5790 578.9 1157.8 5789 1985-11-07 2024-10-11 01:36:29.000 1985-11-07 2024-10-11 01:36:29 +5791 5791 5792 579.1 1158.2 5791 1985-11-09 2024-10-11 01:36:31.000 1985-11-09 2024-10-11 01:36:31 +5792 5792 5793 579.2 1158.4 5792 1985-11-10 2024-10-11 01:36:32.000 1985-11-10 2024-10-11 01:36:32 +5793 5793 5794 579.3 1158.6000000000001 5793 1985-11-11 2024-10-11 01:36:33.000 1985-11-11 2024-10-11 01:36:33 +5794 5794 5795 579.4 1158.8 5794 1985-11-12 2024-10-11 01:36:34.000 1985-11-12 2024-10-11 01:36:34 +5796 5796 5797 579.6 1159.2 5796 1985-11-14 2024-10-11 01:36:36.000 1985-11-14 2024-10-11 01:36:36 +5797 5797 5798 579.7 1159.4 5797 1985-11-15 2024-10-11 01:36:37.000 1985-11-15 2024-10-11 01:36:37 +5798 5798 5799 579.8 1159.6000000000001 5798 1985-11-16 2024-10-11 01:36:38.000 1985-11-16 2024-10-11 01:36:38 +5799 5799 5800 579.9 1159.8 5799 1985-11-17 2024-10-11 01:36:39.000 1985-11-17 2024-10-11 01:36:39 +5801 5801 5802 580.1 1160.2 5801 1985-11-19 2024-10-11 01:36:41.000 1985-11-19 2024-10-11 01:36:41 +5802 5802 5803 580.2 1160.4 5802 1985-11-20 2024-10-11 01:36:42.000 1985-11-20 2024-10-11 01:36:42 +5803 5803 5804 580.3 1160.6000000000001 5803 1985-11-21 2024-10-11 01:36:43.000 1985-11-21 2024-10-11 01:36:43 +5804 5804 5805 580.4 1160.8 5804 1985-11-22 2024-10-11 01:36:44.000 1985-11-22 2024-10-11 01:36:44 +5806 5806 5807 580.6 1161.2 5806 1985-11-24 2024-10-11 01:36:46.000 1985-11-24 2024-10-11 01:36:46 +5807 5807 5808 580.7 1161.4 5807 1985-11-25 2024-10-11 01:36:47.000 1985-11-25 2024-10-11 01:36:47 +5808 5808 5809 580.8 1161.6000000000001 5808 1985-11-26 2024-10-11 01:36:48.000 1985-11-26 2024-10-11 01:36:48 +5809 5809 5810 580.9 1161.8 5809 1985-11-27 2024-10-11 01:36:49.000 1985-11-27 2024-10-11 01:36:49 +5811 5811 5812 581.1 1162.2 5811 1985-11-29 2024-10-11 01:36:51.000 1985-11-29 2024-10-11 01:36:51 +5812 5812 5813 581.2 1162.4 5812 1985-11-30 2024-10-11 01:36:52.000 1985-11-30 2024-10-11 01:36:52 +5813 5813 5814 581.3 1162.6000000000001 5813 1985-12-01 2024-10-11 01:36:53.000 1985-12-01 2024-10-11 01:36:53 +5814 5814 5815 581.4 1162.8 5814 1985-12-02 2024-10-11 01:36:54.000 1985-12-02 2024-10-11 01:36:54 +5816 5816 5817 581.6 1163.2 5816 1985-12-04 2024-10-11 01:36:56.000 1985-12-04 2024-10-11 01:36:56 +5817 5817 5818 581.7 1163.4 5817 1985-12-05 2024-10-11 01:36:57.000 1985-12-05 2024-10-11 01:36:57 +5818 5818 5819 581.8 1163.6000000000001 5818 1985-12-06 2024-10-11 01:36:58.000 1985-12-06 2024-10-11 01:36:58 +5819 5819 5820 581.9 1163.8 5819 1985-12-07 2024-10-11 01:36:59.000 1985-12-07 2024-10-11 01:36:59 +5821 5821 5822 582.1 1164.2 5821 1985-12-09 2024-10-11 01:37:01.000 1985-12-09 2024-10-11 01:37:01 +5822 5822 5823 582.2 1164.4 5822 1985-12-10 2024-10-11 01:37:02.000 1985-12-10 2024-10-11 01:37:02 +5823 5823 5824 582.3 1164.6000000000001 5823 1985-12-11 2024-10-11 01:37:03.000 1985-12-11 2024-10-11 01:37:03 +5824 5824 5825 582.4 1164.8 5824 1985-12-12 2024-10-11 01:37:04.000 1985-12-12 2024-10-11 01:37:04 +5826 5826 5827 582.6 1165.2 5826 1985-12-14 2024-10-11 01:37:06.000 1985-12-14 2024-10-11 01:37:06 +5827 5827 5828 582.7 1165.4 5827 1985-12-15 2024-10-11 01:37:07.000 1985-12-15 2024-10-11 01:37:07 +5828 5828 5829 582.8 1165.6000000000001 5828 1985-12-16 2024-10-11 01:37:08.000 1985-12-16 2024-10-11 01:37:08 +5829 5829 5830 582.9 1165.8 5829 1985-12-17 2024-10-11 01:37:09.000 1985-12-17 2024-10-11 01:37:09 +5831 5831 5832 583.1 1166.2 5831 1985-12-19 2024-10-11 01:37:11.000 1985-12-19 2024-10-11 01:37:11 +5832 5832 5833 583.2 1166.4 5832 1985-12-20 2024-10-11 01:37:12.000 1985-12-20 2024-10-11 01:37:12 +5833 5833 5834 583.3 1166.6000000000001 5833 1985-12-21 2024-10-11 01:37:13.000 1985-12-21 2024-10-11 01:37:13 +5834 5834 5835 583.4 1166.8 5834 1985-12-22 2024-10-11 01:37:14.000 1985-12-22 2024-10-11 01:37:14 +5836 5836 5837 583.6 1167.2 5836 1985-12-24 2024-10-11 01:37:16.000 1985-12-24 2024-10-11 01:37:16 +5837 5837 5838 583.7 1167.4 5837 1985-12-25 2024-10-11 01:37:17.000 1985-12-25 2024-10-11 01:37:17 +5838 5838 5839 583.8 1167.6000000000001 5838 1985-12-26 2024-10-11 01:37:18.000 1985-12-26 2024-10-11 01:37:18 +5839 5839 5840 583.9 1167.8 5839 1985-12-27 2024-10-11 01:37:19.000 1985-12-27 2024-10-11 01:37:19 +5841 5841 5842 584.1 1168.2 5841 1985-12-29 2024-10-11 01:37:21.000 1985-12-29 2024-10-11 01:37:21 +5842 5842 5843 584.2 1168.4 5842 1985-12-30 2024-10-11 01:37:22.000 1985-12-30 2024-10-11 01:37:22 +5843 5843 5844 584.3 1168.6000000000001 5843 1985-12-31 2024-10-11 01:37:23.000 1985-12-31 2024-10-11 01:37:23 +5844 5844 5845 584.4 1168.8 5844 1986-01-01 2024-10-11 01:37:24.000 1986-01-01 2024-10-11 01:37:24 +5846 5846 5847 584.6 1169.2 5846 1986-01-03 2024-10-11 01:37:26.000 1986-01-03 2024-10-11 01:37:26 +5847 5847 5848 584.7 1169.4 5847 1986-01-04 2024-10-11 01:37:27.000 1986-01-04 2024-10-11 01:37:27 +5848 5848 5849 584.8 1169.6000000000001 5848 1986-01-05 2024-10-11 01:37:28.000 1986-01-05 2024-10-11 01:37:28 +5849 5849 5850 584.9 1169.8 5849 1986-01-06 2024-10-11 01:37:29.000 1986-01-06 2024-10-11 01:37:29 +5851 5851 5852 585.1 1170.2 5851 1986-01-08 2024-10-11 01:37:31.000 1986-01-08 2024-10-11 01:37:31 +5852 5852 5853 585.2 1170.4 5852 1986-01-09 2024-10-11 01:37:32.000 1986-01-09 2024-10-11 01:37:32 +5853 5853 5854 585.3 1170.6000000000001 5853 1986-01-10 2024-10-11 01:37:33.000 1986-01-10 2024-10-11 01:37:33 +5854 5854 5855 585.4 1170.8 5854 1986-01-11 2024-10-11 01:37:34.000 1986-01-11 2024-10-11 01:37:34 +5856 5856 5857 585.6 1171.2 5856 1986-01-13 2024-10-11 01:37:36.000 1986-01-13 2024-10-11 01:37:36 +5857 5857 5858 585.7 1171.4 5857 1986-01-14 2024-10-11 01:37:37.000 1986-01-14 2024-10-11 01:37:37 +5858 5858 5859 585.8 1171.6000000000001 5858 1986-01-15 2024-10-11 01:37:38.000 1986-01-15 2024-10-11 01:37:38 +5859 5859 5860 585.9 1171.8 5859 1986-01-16 2024-10-11 01:37:39.000 1986-01-16 2024-10-11 01:37:39 +5861 5861 5862 586.1 1172.2 5861 1986-01-18 2024-10-11 01:37:41.000 1986-01-18 2024-10-11 01:37:41 +5862 5862 5863 586.2 1172.4 5862 1986-01-19 2024-10-11 01:37:42.000 1986-01-19 2024-10-11 01:37:42 +5863 5863 5864 586.3 1172.6000000000001 5863 1986-01-20 2024-10-11 01:37:43.000 1986-01-20 2024-10-11 01:37:43 +5864 5864 5865 586.4 1172.8 5864 1986-01-21 2024-10-11 01:37:44.000 1986-01-21 2024-10-11 01:37:44 +5866 5866 5867 586.6 1173.2 5866 1986-01-23 2024-10-11 01:37:46.000 1986-01-23 2024-10-11 01:37:46 +5867 5867 5868 586.7 1173.4 5867 1986-01-24 2024-10-11 01:37:47.000 1986-01-24 2024-10-11 01:37:47 +5868 5868 5869 586.8 1173.6000000000001 5868 1986-01-25 2024-10-11 01:37:48.000 1986-01-25 2024-10-11 01:37:48 +5869 5869 5870 586.9 1173.8 5869 1986-01-26 2024-10-11 01:37:49.000 1986-01-26 2024-10-11 01:37:49 +5871 5871 5872 587.1 1174.2 5871 1986-01-28 2024-10-11 01:37:51.000 1986-01-28 2024-10-11 01:37:51 +5872 5872 5873 587.2 1174.4 5872 1986-01-29 2024-10-11 01:37:52.000 1986-01-29 2024-10-11 01:37:52 +5873 5873 5874 587.3 1174.6000000000001 5873 1986-01-30 2024-10-11 01:37:53.000 1986-01-30 2024-10-11 01:37:53 +5874 5874 5875 587.4 1174.8 5874 1986-01-31 2024-10-11 01:37:54.000 1986-01-31 2024-10-11 01:37:54 +5876 5876 5877 587.6 1175.2 5876 1986-02-02 2024-10-11 01:37:56.000 1986-02-02 2024-10-11 01:37:56 +5877 5877 5878 587.7 1175.4 5877 1986-02-03 2024-10-11 01:37:57.000 1986-02-03 2024-10-11 01:37:57 +5878 5878 5879 587.8 1175.6000000000001 5878 1986-02-04 2024-10-11 01:37:58.000 1986-02-04 2024-10-11 01:37:58 +5879 5879 5880 587.9 1175.8 5879 1986-02-05 2024-10-11 01:37:59.000 1986-02-05 2024-10-11 01:37:59 +5881 5881 5882 588.1 1176.2 5881 1986-02-07 2024-10-11 01:38:01.000 1986-02-07 2024-10-11 01:38:01 +5882 5882 5883 588.2 1176.4 5882 1986-02-08 2024-10-11 01:38:02.000 1986-02-08 2024-10-11 01:38:02 +5883 5883 5884 588.3 1176.6000000000001 5883 1986-02-09 2024-10-11 01:38:03.000 1986-02-09 2024-10-11 01:38:03 +5884 5884 5885 588.4 1176.8 5884 1986-02-10 2024-10-11 01:38:04.000 1986-02-10 2024-10-11 01:38:04 +5886 5886 5887 588.6 1177.2 5886 1986-02-12 2024-10-11 01:38:06.000 1986-02-12 2024-10-11 01:38:06 +5887 5887 5888 588.7 1177.4 5887 1986-02-13 2024-10-11 01:38:07.000 1986-02-13 2024-10-11 01:38:07 +5888 5888 5889 588.8 1177.6000000000001 5888 1986-02-14 2024-10-11 01:38:08.000 1986-02-14 2024-10-11 01:38:08 +5889 5889 5890 588.9 1177.8 5889 1986-02-15 2024-10-11 01:38:09.000 1986-02-15 2024-10-11 01:38:09 +5891 5891 5892 589.1 1178.2 5891 1986-02-17 2024-10-11 01:38:11.000 1986-02-17 2024-10-11 01:38:11 +5892 5892 5893 589.2 1178.4 5892 1986-02-18 2024-10-11 01:38:12.000 1986-02-18 2024-10-11 01:38:12 +5893 5893 5894 589.3 1178.6000000000001 5893 1986-02-19 2024-10-11 01:38:13.000 1986-02-19 2024-10-11 01:38:13 +5894 5894 5895 589.4 1178.8 5894 1986-02-20 2024-10-11 01:38:14.000 1986-02-20 2024-10-11 01:38:14 +5896 5896 5897 589.6 1179.2 5896 1986-02-22 2024-10-11 01:38:16.000 1986-02-22 2024-10-11 01:38:16 +5897 5897 5898 589.7 1179.4 5897 1986-02-23 2024-10-11 01:38:17.000 1986-02-23 2024-10-11 01:38:17 +5898 5898 5899 589.8 1179.6000000000001 5898 1986-02-24 2024-10-11 01:38:18.000 1986-02-24 2024-10-11 01:38:18 +5899 5899 5900 589.9 1179.8 5899 1986-02-25 2024-10-11 01:38:19.000 1986-02-25 2024-10-11 01:38:19 +5901 5901 5902 590.1 1180.2 5901 1986-02-27 2024-10-11 01:38:21.000 1986-02-27 2024-10-11 01:38:21 +5902 5902 5903 590.2 1180.4 5902 1986-02-28 2024-10-11 01:38:22.000 1986-02-28 2024-10-11 01:38:22 +5903 5903 5904 590.3 1180.6000000000001 5903 1986-03-01 2024-10-11 01:38:23.000 1986-03-01 2024-10-11 01:38:23 +5904 5904 5905 590.4 1180.8 5904 1986-03-02 2024-10-11 01:38:24.000 1986-03-02 2024-10-11 01:38:24 +5906 5906 5907 590.6 1181.2 5906 1986-03-04 2024-10-11 01:38:26.000 1986-03-04 2024-10-11 01:38:26 +5907 5907 5908 590.7 1181.4 5907 1986-03-05 2024-10-11 01:38:27.000 1986-03-05 2024-10-11 01:38:27 +5908 5908 5909 590.8 1181.6000000000001 5908 1986-03-06 2024-10-11 01:38:28.000 1986-03-06 2024-10-11 01:38:28 +5909 5909 5910 590.9 1181.8 5909 1986-03-07 2024-10-11 01:38:29.000 1986-03-07 2024-10-11 01:38:29 +5911 5911 5912 591.1 1182.2 5911 1986-03-09 2024-10-11 01:38:31.000 1986-03-09 2024-10-11 01:38:31 +5912 5912 5913 591.2 1182.4 5912 1986-03-10 2024-10-11 01:38:32.000 1986-03-10 2024-10-11 01:38:32 +5913 5913 5914 591.3 1182.6000000000001 5913 1986-03-11 2024-10-11 01:38:33.000 1986-03-11 2024-10-11 01:38:33 +5914 5914 5915 591.4 1182.8 5914 1986-03-12 2024-10-11 01:38:34.000 1986-03-12 2024-10-11 01:38:34 +5916 5916 5917 591.6 1183.2 5916 1986-03-14 2024-10-11 01:38:36.000 1986-03-14 2024-10-11 01:38:36 +5917 5917 5918 591.7 1183.4 5917 1986-03-15 2024-10-11 01:38:37.000 1986-03-15 2024-10-11 01:38:37 +5918 5918 5919 591.8 1183.6000000000001 5918 1986-03-16 2024-10-11 01:38:38.000 1986-03-16 2024-10-11 01:38:38 +5919 5919 5920 591.9 1183.8 5919 1986-03-17 2024-10-11 01:38:39.000 1986-03-17 2024-10-11 01:38:39 +5921 5921 5922 592.1 1184.2 5921 1986-03-19 2024-10-11 01:38:41.000 1986-03-19 2024-10-11 01:38:41 +5922 5922 5923 592.2 1184.4 5922 1986-03-20 2024-10-11 01:38:42.000 1986-03-20 2024-10-11 01:38:42 +5923 5923 5924 592.3 1184.6000000000001 5923 1986-03-21 2024-10-11 01:38:43.000 1986-03-21 2024-10-11 01:38:43 +5924 5924 5925 592.4 1184.8 5924 1986-03-22 2024-10-11 01:38:44.000 1986-03-22 2024-10-11 01:38:44 +5926 5926 5927 592.6 1185.2 5926 1986-03-24 2024-10-11 01:38:46.000 1986-03-24 2024-10-11 01:38:46 +5927 5927 5928 592.7 1185.4 5927 1986-03-25 2024-10-11 01:38:47.000 1986-03-25 2024-10-11 01:38:47 +5928 5928 5929 592.8 1185.6000000000001 5928 1986-03-26 2024-10-11 01:38:48.000 1986-03-26 2024-10-11 01:38:48 +5929 5929 5930 592.9 1185.8 5929 1986-03-27 2024-10-11 01:38:49.000 1986-03-27 2024-10-11 01:38:49 +5931 5931 5932 593.1 1186.2 5931 1986-03-29 2024-10-11 01:38:51.000 1986-03-29 2024-10-11 01:38:51 +5932 5932 5933 593.2 1186.4 5932 1986-03-30 2024-10-11 01:38:52.000 1986-03-30 2024-10-11 01:38:52 +5933 5933 5934 593.3 1186.6000000000001 5933 1986-03-31 2024-10-11 01:38:53.000 1986-03-31 2024-10-11 01:38:53 +5934 5934 5935 593.4 1186.8 5934 1986-04-01 2024-10-11 01:38:54.000 1986-04-01 2024-10-11 01:38:54 +5936 5936 5937 593.6 1187.2 5936 1986-04-03 2024-10-11 01:38:56.000 1986-04-03 2024-10-11 01:38:56 +5937 5937 5938 593.7 1187.4 5937 1986-04-04 2024-10-11 01:38:57.000 1986-04-04 2024-10-11 01:38:57 +5938 5938 5939 593.8 1187.6000000000001 5938 1986-04-05 2024-10-11 01:38:58.000 1986-04-05 2024-10-11 01:38:58 +5939 5939 5940 593.9 1187.8 5939 1986-04-06 2024-10-11 01:38:59.000 1986-04-06 2024-10-11 01:38:59 +5941 5941 5942 594.1 1188.2 5941 1986-04-08 2024-10-11 01:39:01.000 1986-04-08 2024-10-11 01:39:01 +5942 5942 5943 594.2 1188.4 5942 1986-04-09 2024-10-11 01:39:02.000 1986-04-09 2024-10-11 01:39:02 +5943 5943 5944 594.3 1188.6000000000001 5943 1986-04-10 2024-10-11 01:39:03.000 1986-04-10 2024-10-11 01:39:03 +5944 5944 5945 594.4 1188.8 5944 1986-04-11 2024-10-11 01:39:04.000 1986-04-11 2024-10-11 01:39:04 +5946 5946 5947 594.6 1189.2 5946 1986-04-13 2024-10-11 01:39:06.000 1986-04-13 2024-10-11 01:39:06 +5947 5947 5948 594.7 1189.4 5947 1986-04-14 2024-10-11 01:39:07.000 1986-04-14 2024-10-11 01:39:07 +5948 5948 5949 594.8 1189.6000000000001 5948 1986-04-15 2024-10-11 01:39:08.000 1986-04-15 2024-10-11 01:39:08 +5949 5949 5950 594.9 1189.8 5949 1986-04-16 2024-10-11 01:39:09.000 1986-04-16 2024-10-11 01:39:09 +5951 5951 5952 595.1 1190.2 5951 1986-04-18 2024-10-11 01:39:11.000 1986-04-18 2024-10-11 01:39:11 +5952 5952 5953 595.2 1190.4 5952 1986-04-19 2024-10-11 01:39:12.000 1986-04-19 2024-10-11 01:39:12 +5953 5953 5954 595.3 1190.6000000000001 5953 1986-04-20 2024-10-11 01:39:13.000 1986-04-20 2024-10-11 01:39:13 +5954 5954 5955 595.4 1190.8 5954 1986-04-21 2024-10-11 01:39:14.000 1986-04-21 2024-10-11 01:39:14 +5956 5956 5957 595.6 1191.2 5956 1986-04-23 2024-10-11 01:39:16.000 1986-04-23 2024-10-11 01:39:16 +5957 5957 5958 595.7 1191.4 5957 1986-04-24 2024-10-11 01:39:17.000 1986-04-24 2024-10-11 01:39:17 +5958 5958 5959 595.8 1191.6000000000001 5958 1986-04-25 2024-10-11 01:39:18.000 1986-04-25 2024-10-11 01:39:18 +5959 5959 5960 595.9 1191.8 5959 1986-04-26 2024-10-11 01:39:19.000 1986-04-26 2024-10-11 01:39:19 +5961 5961 5962 596.1 1192.2 5961 1986-04-28 2024-10-11 01:39:21.000 1986-04-28 2024-10-11 01:39:21 +5962 5962 5963 596.2 1192.4 5962 1986-04-29 2024-10-11 01:39:22.000 1986-04-29 2024-10-11 01:39:22 +5963 5963 5964 596.3 1192.6000000000001 5963 1986-04-30 2024-10-11 01:39:23.000 1986-04-30 2024-10-11 01:39:23 +5964 5964 5965 596.4 1192.8 5964 1986-05-01 2024-10-11 01:39:24.000 1986-05-01 2024-10-11 01:39:24 +5966 5966 5967 596.6 1193.2 5966 1986-05-03 2024-10-11 01:39:26.000 1986-05-03 2024-10-11 01:39:26 +5967 5967 5968 596.7 1193.4 5967 1986-05-04 2024-10-11 01:39:27.000 1986-05-04 2024-10-11 01:39:27 +5968 5968 5969 596.8 1193.6000000000001 5968 1986-05-05 2024-10-11 01:39:28.000 1986-05-05 2024-10-11 01:39:28 +5969 5969 5970 596.9 1193.8 5969 1986-05-06 2024-10-11 01:39:29.000 1986-05-06 2024-10-11 01:39:29 +5971 5971 5972 597.1 1194.2 5971 1986-05-08 2024-10-11 01:39:31.000 1986-05-08 2024-10-11 01:39:31 +5972 5972 5973 597.2 1194.4 5972 1986-05-09 2024-10-11 01:39:32.000 1986-05-09 2024-10-11 01:39:32 +5973 5973 5974 597.3 1194.6000000000001 5973 1986-05-10 2024-10-11 01:39:33.000 1986-05-10 2024-10-11 01:39:33 +5974 5974 5975 597.4 1194.8 5974 1986-05-11 2024-10-11 01:39:34.000 1986-05-11 2024-10-11 01:39:34 +5976 5976 5977 597.6 1195.2 5976 1986-05-13 2024-10-11 01:39:36.000 1986-05-13 2024-10-11 01:39:36 +5977 5977 5978 597.7 1195.4 5977 1986-05-14 2024-10-11 01:39:37.000 1986-05-14 2024-10-11 01:39:37 +5978 5978 5979 597.8 1195.6000000000001 5978 1986-05-15 2024-10-11 01:39:38.000 1986-05-15 2024-10-11 01:39:38 +5979 5979 5980 597.9 1195.8 5979 1986-05-16 2024-10-11 01:39:39.000 1986-05-16 2024-10-11 01:39:39 +5981 5981 5982 598.1 1196.2 5981 1986-05-18 2024-10-11 01:39:41.000 1986-05-18 2024-10-11 01:39:41 +5982 5982 5983 598.2 1196.4 5982 1986-05-19 2024-10-11 01:39:42.000 1986-05-19 2024-10-11 01:39:42 +5983 5983 5984 598.3 1196.6000000000001 5983 1986-05-20 2024-10-11 01:39:43.000 1986-05-20 2024-10-11 01:39:43 +5984 5984 5985 598.4 1196.8 5984 1986-05-21 2024-10-11 01:39:44.000 1986-05-21 2024-10-11 01:39:44 +5986 5986 5987 598.6 1197.2 5986 1986-05-23 2024-10-11 01:39:46.000 1986-05-23 2024-10-11 01:39:46 +5987 5987 5988 598.7 1197.4 5987 1986-05-24 2024-10-11 01:39:47.000 1986-05-24 2024-10-11 01:39:47 +5988 5988 5989 598.8 1197.6000000000001 5988 1986-05-25 2024-10-11 01:39:48.000 1986-05-25 2024-10-11 01:39:48 +5989 5989 5990 598.9 1197.8 5989 1986-05-26 2024-10-11 01:39:49.000 1986-05-26 2024-10-11 01:39:49 +5991 5991 5992 599.1 1198.2 5991 1986-05-28 2024-10-11 01:39:51.000 1986-05-28 2024-10-11 01:39:51 +5992 5992 5993 599.2 1198.4 5992 1986-05-29 2024-10-11 01:39:52.000 1986-05-29 2024-10-11 01:39:52 +5993 5993 5994 599.3 1198.6000000000001 5993 1986-05-30 2024-10-11 01:39:53.000 1986-05-30 2024-10-11 01:39:53 +5994 5994 5995 599.4 1198.8 5994 1986-05-31 2024-10-11 01:39:54.000 1986-05-31 2024-10-11 01:39:54 +5996 5996 5997 599.6 1199.2 5996 1986-06-02 2024-10-11 01:39:56.000 1986-06-02 2024-10-11 01:39:56 +5997 5997 5998 599.7 1199.4 5997 1986-06-03 2024-10-11 01:39:57.000 1986-06-03 2024-10-11 01:39:57 +5998 5998 5999 599.8 1199.6000000000001 5998 1986-06-04 2024-10-11 01:39:58.000 1986-06-04 2024-10-11 01:39:58 +5999 5999 6000 599.9 1199.8 5999 1986-06-05 2024-10-11 01:39:59.000 1986-06-05 2024-10-11 01:39:59 +6001 6001 6002 600.1 1200.2 6001 1986-06-07 2024-10-11 01:40:01.000 1986-06-07 2024-10-11 01:40:01 +6002 6002 6003 600.2 1200.4 6002 1986-06-08 2024-10-11 01:40:02.000 1986-06-08 2024-10-11 01:40:02 +6003 6003 6004 600.3 1200.6000000000001 6003 1986-06-09 2024-10-11 01:40:03.000 1986-06-09 2024-10-11 01:40:03 +6004 6004 6005 600.4 1200.8 6004 1986-06-10 2024-10-11 01:40:04.000 1986-06-10 2024-10-11 01:40:04 +6006 6006 6007 600.6 1201.2 6006 1986-06-12 2024-10-11 01:40:06.000 1986-06-12 2024-10-11 01:40:06 +6007 6007 6008 600.7 1201.4 6007 1986-06-13 2024-10-11 01:40:07.000 1986-06-13 2024-10-11 01:40:07 +6008 6008 6009 600.8 1201.6000000000001 6008 1986-06-14 2024-10-11 01:40:08.000 1986-06-14 2024-10-11 01:40:08 +6009 6009 6010 600.9 1201.8 6009 1986-06-15 2024-10-11 01:40:09.000 1986-06-15 2024-10-11 01:40:09 +6011 6011 6012 601.1 1202.2 6011 1986-06-17 2024-10-11 01:40:11.000 1986-06-17 2024-10-11 01:40:11 +6012 6012 6013 601.2 1202.4 6012 1986-06-18 2024-10-11 01:40:12.000 1986-06-18 2024-10-11 01:40:12 +6013 6013 6014 601.3 1202.6000000000001 6013 1986-06-19 2024-10-11 01:40:13.000 1986-06-19 2024-10-11 01:40:13 +6014 6014 6015 601.4 1202.8 6014 1986-06-20 2024-10-11 01:40:14.000 1986-06-20 2024-10-11 01:40:14 +6016 6016 6017 601.6 1203.2 6016 1986-06-22 2024-10-11 01:40:16.000 1986-06-22 2024-10-11 01:40:16 +6017 6017 6018 601.7 1203.4 6017 1986-06-23 2024-10-11 01:40:17.000 1986-06-23 2024-10-11 01:40:17 +6018 6018 6019 601.8 1203.6000000000001 6018 1986-06-24 2024-10-11 01:40:18.000 1986-06-24 2024-10-11 01:40:18 +6019 6019 6020 601.9 1203.8 6019 1986-06-25 2024-10-11 01:40:19.000 1986-06-25 2024-10-11 01:40:19 +6021 6021 6022 602.1 1204.2 6021 1986-06-27 2024-10-11 01:40:21.000 1986-06-27 2024-10-11 01:40:21 +6022 6022 6023 602.2 1204.4 6022 1986-06-28 2024-10-11 01:40:22.000 1986-06-28 2024-10-11 01:40:22 +6023 6023 6024 602.3 1204.6000000000001 6023 1986-06-29 2024-10-11 01:40:23.000 1986-06-29 2024-10-11 01:40:23 +6024 6024 6025 602.4 1204.8 6024 1986-06-30 2024-10-11 01:40:24.000 1986-06-30 2024-10-11 01:40:24 +6026 6026 6027 602.6 1205.2 6026 1986-07-02 2024-10-11 01:40:26.000 1986-07-02 2024-10-11 01:40:26 +6027 6027 6028 602.7 1205.4 6027 1986-07-03 2024-10-11 01:40:27.000 1986-07-03 2024-10-11 01:40:27 +6028 6028 6029 602.8 1205.6000000000001 6028 1986-07-04 2024-10-11 01:40:28.000 1986-07-04 2024-10-11 01:40:28 +6029 6029 6030 602.9 1205.8 6029 1986-07-05 2024-10-11 01:40:29.000 1986-07-05 2024-10-11 01:40:29 +6031 6031 6032 603.1 1206.2 6031 1986-07-07 2024-10-11 01:40:31.000 1986-07-07 2024-10-11 01:40:31 +6032 6032 6033 603.2 1206.4 6032 1986-07-08 2024-10-11 01:40:32.000 1986-07-08 2024-10-11 01:40:32 +6033 6033 6034 603.3 1206.6000000000001 6033 1986-07-09 2024-10-11 01:40:33.000 1986-07-09 2024-10-11 01:40:33 +6034 6034 6035 603.4 1206.8 6034 1986-07-10 2024-10-11 01:40:34.000 1986-07-10 2024-10-11 01:40:34 +6036 6036 6037 603.6 1207.2 6036 1986-07-12 2024-10-11 01:40:36.000 1986-07-12 2024-10-11 01:40:36 +6037 6037 6038 603.7 1207.4 6037 1986-07-13 2024-10-11 01:40:37.000 1986-07-13 2024-10-11 01:40:37 +6038 6038 6039 603.8 1207.6000000000001 6038 1986-07-14 2024-10-11 01:40:38.000 1986-07-14 2024-10-11 01:40:38 +6039 6039 6040 603.9 1207.8 6039 1986-07-15 2024-10-11 01:40:39.000 1986-07-15 2024-10-11 01:40:39 +6041 6041 6042 604.1 1208.2 6041 1986-07-17 2024-10-11 01:40:41.000 1986-07-17 2024-10-11 01:40:41 +6042 6042 6043 604.2 1208.4 6042 1986-07-18 2024-10-11 01:40:42.000 1986-07-18 2024-10-11 01:40:42 +6043 6043 6044 604.3 1208.6000000000001 6043 1986-07-19 2024-10-11 01:40:43.000 1986-07-19 2024-10-11 01:40:43 +6044 6044 6045 604.4 1208.8 6044 1986-07-20 2024-10-11 01:40:44.000 1986-07-20 2024-10-11 01:40:44 +6046 6046 6047 604.6 1209.2 6046 1986-07-22 2024-10-11 01:40:46.000 1986-07-22 2024-10-11 01:40:46 +6047 6047 6048 604.7 1209.4 6047 1986-07-23 2024-10-11 01:40:47.000 1986-07-23 2024-10-11 01:40:47 +6048 6048 6049 604.8 1209.6000000000001 6048 1986-07-24 2024-10-11 01:40:48.000 1986-07-24 2024-10-11 01:40:48 +6049 6049 6050 604.9 1209.8 6049 1986-07-25 2024-10-11 01:40:49.000 1986-07-25 2024-10-11 01:40:49 +6051 6051 6052 605.1 1210.2 6051 1986-07-27 2024-10-11 01:40:51.000 1986-07-27 2024-10-11 01:40:51 +6052 6052 6053 605.2 1210.4 6052 1986-07-28 2024-10-11 01:40:52.000 1986-07-28 2024-10-11 01:40:52 +6053 6053 6054 605.3 1210.6000000000001 6053 1986-07-29 2024-10-11 01:40:53.000 1986-07-29 2024-10-11 01:40:53 +6054 6054 6055 605.4 1210.8 6054 1986-07-30 2024-10-11 01:40:54.000 1986-07-30 2024-10-11 01:40:54 +6056 6056 6057 605.6 1211.2 6056 1986-08-01 2024-10-11 01:40:56.000 1986-08-01 2024-10-11 01:40:56 +6057 6057 6058 605.7 1211.4 6057 1986-08-02 2024-10-11 01:40:57.000 1986-08-02 2024-10-11 01:40:57 +6058 6058 6059 605.8 1211.6000000000001 6058 1986-08-03 2024-10-11 01:40:58.000 1986-08-03 2024-10-11 01:40:58 +6059 6059 6060 605.9 1211.8 6059 1986-08-04 2024-10-11 01:40:59.000 1986-08-04 2024-10-11 01:40:59 +6061 6061 6062 606.1 1212.2 6061 1986-08-06 2024-10-11 01:41:01.000 1986-08-06 2024-10-11 01:41:01 +6062 6062 6063 606.2 1212.4 6062 1986-08-07 2024-10-11 01:41:02.000 1986-08-07 2024-10-11 01:41:02 +6063 6063 6064 606.3 1212.6000000000001 6063 1986-08-08 2024-10-11 01:41:03.000 1986-08-08 2024-10-11 01:41:03 +6064 6064 6065 606.4 1212.8 6064 1986-08-09 2024-10-11 01:41:04.000 1986-08-09 2024-10-11 01:41:04 +6066 6066 6067 606.6 1213.2 6066 1986-08-11 2024-10-11 01:41:06.000 1986-08-11 2024-10-11 01:41:06 +6067 6067 6068 606.7 1213.4 6067 1986-08-12 2024-10-11 01:41:07.000 1986-08-12 2024-10-11 01:41:07 +6068 6068 6069 606.8 1213.6000000000001 6068 1986-08-13 2024-10-11 01:41:08.000 1986-08-13 2024-10-11 01:41:08 +6069 6069 6070 606.9 1213.8 6069 1986-08-14 2024-10-11 01:41:09.000 1986-08-14 2024-10-11 01:41:09 +6071 6071 6072 607.1 1214.2 6071 1986-08-16 2024-10-11 01:41:11.000 1986-08-16 2024-10-11 01:41:11 +6072 6072 6073 607.2 1214.4 6072 1986-08-17 2024-10-11 01:41:12.000 1986-08-17 2024-10-11 01:41:12 +6073 6073 6074 607.3 1214.6000000000001 6073 1986-08-18 2024-10-11 01:41:13.000 1986-08-18 2024-10-11 01:41:13 +6074 6074 6075 607.4 1214.8 6074 1986-08-19 2024-10-11 01:41:14.000 1986-08-19 2024-10-11 01:41:14 +6076 6076 6077 607.6 1215.2 6076 1986-08-21 2024-10-11 01:41:16.000 1986-08-21 2024-10-11 01:41:16 +6077 6077 6078 607.7 1215.4 6077 1986-08-22 2024-10-11 01:41:17.000 1986-08-22 2024-10-11 01:41:17 +6078 6078 6079 607.8 1215.6000000000001 6078 1986-08-23 2024-10-11 01:41:18.000 1986-08-23 2024-10-11 01:41:18 +6079 6079 6080 607.9 1215.8 6079 1986-08-24 2024-10-11 01:41:19.000 1986-08-24 2024-10-11 01:41:19 +6081 6081 6082 608.1 1216.2 6081 1986-08-26 2024-10-11 01:41:21.000 1986-08-26 2024-10-11 01:41:21 +6082 6082 6083 608.2 1216.4 6082 1986-08-27 2024-10-11 01:41:22.000 1986-08-27 2024-10-11 01:41:22 +6083 6083 6084 608.3 1216.6000000000001 6083 1986-08-28 2024-10-11 01:41:23.000 1986-08-28 2024-10-11 01:41:23 +6084 6084 6085 608.4 1216.8 6084 1986-08-29 2024-10-11 01:41:24.000 1986-08-29 2024-10-11 01:41:24 +6086 6086 6087 608.6 1217.2 6086 1986-08-31 2024-10-11 01:41:26.000 1986-08-31 2024-10-11 01:41:26 +6087 6087 6088 608.7 1217.4 6087 1986-09-01 2024-10-11 01:41:27.000 1986-09-01 2024-10-11 01:41:27 +6088 6088 6089 608.8 1217.6000000000001 6088 1986-09-02 2024-10-11 01:41:28.000 1986-09-02 2024-10-11 01:41:28 +6089 6089 6090 608.9 1217.8 6089 1986-09-03 2024-10-11 01:41:29.000 1986-09-03 2024-10-11 01:41:29 +6091 6091 6092 609.1 1218.2 6091 1986-09-05 2024-10-11 01:41:31.000 1986-09-05 2024-10-11 01:41:31 +6092 6092 6093 609.2 1218.4 6092 1986-09-06 2024-10-11 01:41:32.000 1986-09-06 2024-10-11 01:41:32 +6093 6093 6094 609.3 1218.6000000000001 6093 1986-09-07 2024-10-11 01:41:33.000 1986-09-07 2024-10-11 01:41:33 +6094 6094 6095 609.4 1218.8 6094 1986-09-08 2024-10-11 01:41:34.000 1986-09-08 2024-10-11 01:41:34 +6096 6096 6097 609.6 1219.2 6096 1986-09-10 2024-10-11 01:41:36.000 1986-09-10 2024-10-11 01:41:36 +6097 6097 6098 609.7 1219.4 6097 1986-09-11 2024-10-11 01:41:37.000 1986-09-11 2024-10-11 01:41:37 +6098 6098 6099 609.8 1219.6000000000001 6098 1986-09-12 2024-10-11 01:41:38.000 1986-09-12 2024-10-11 01:41:38 +6099 6099 6100 609.9 1219.8 6099 1986-09-13 2024-10-11 01:41:39.000 1986-09-13 2024-10-11 01:41:39 +6101 6101 6102 610.1 1220.2 6101 1986-09-15 2024-10-11 01:41:41.000 1986-09-15 2024-10-11 01:41:41 +6102 6102 6103 610.2 1220.4 6102 1986-09-16 2024-10-11 01:41:42.000 1986-09-16 2024-10-11 01:41:42 +6103 6103 6104 610.3 1220.6000000000001 6103 1986-09-17 2024-10-11 01:41:43.000 1986-09-17 2024-10-11 01:41:43 +6104 6104 6105 610.4 1220.8 6104 1986-09-18 2024-10-11 01:41:44.000 1986-09-18 2024-10-11 01:41:44 +6106 6106 6107 610.6 1221.2 6106 1986-09-20 2024-10-11 01:41:46.000 1986-09-20 2024-10-11 01:41:46 +6107 6107 6108 610.7 1221.4 6107 1986-09-21 2024-10-11 01:41:47.000 1986-09-21 2024-10-11 01:41:47 +6108 6108 6109 610.8 1221.6000000000001 6108 1986-09-22 2024-10-11 01:41:48.000 1986-09-22 2024-10-11 01:41:48 +6109 6109 6110 610.9 1221.8 6109 1986-09-23 2024-10-11 01:41:49.000 1986-09-23 2024-10-11 01:41:49 +6111 6111 6112 611.1 1222.2 6111 1986-09-25 2024-10-11 01:41:51.000 1986-09-25 2024-10-11 01:41:51 +6112 6112 6113 611.2 1222.4 6112 1986-09-26 2024-10-11 01:41:52.000 1986-09-26 2024-10-11 01:41:52 +6113 6113 6114 611.3 1222.6000000000001 6113 1986-09-27 2024-10-11 01:41:53.000 1986-09-27 2024-10-11 01:41:53 +6114 6114 6115 611.4 1222.8 6114 1986-09-28 2024-10-11 01:41:54.000 1986-09-28 2024-10-11 01:41:54 +6116 6116 6117 611.6 1223.2 6116 1986-09-30 2024-10-11 01:41:56.000 1986-09-30 2024-10-11 01:41:56 +6117 6117 6118 611.7 1223.4 6117 1986-10-01 2024-10-11 01:41:57.000 1986-10-01 2024-10-11 01:41:57 +6118 6118 6119 611.8 1223.6000000000001 6118 1986-10-02 2024-10-11 01:41:58.000 1986-10-02 2024-10-11 01:41:58 +6119 6119 6120 611.9 1223.8 6119 1986-10-03 2024-10-11 01:41:59.000 1986-10-03 2024-10-11 01:41:59 +6121 6121 6122 612.1 1224.2 6121 1986-10-05 2024-10-11 01:42:01.000 1986-10-05 2024-10-11 01:42:01 +6122 6122 6123 612.2 1224.4 6122 1986-10-06 2024-10-11 01:42:02.000 1986-10-06 2024-10-11 01:42:02 +6123 6123 6124 612.3 1224.6000000000001 6123 1986-10-07 2024-10-11 01:42:03.000 1986-10-07 2024-10-11 01:42:03 +6124 6124 6125 612.4 1224.8 6124 1986-10-08 2024-10-11 01:42:04.000 1986-10-08 2024-10-11 01:42:04 +6126 6126 6127 612.6 1225.2 6126 1986-10-10 2024-10-11 01:42:06.000 1986-10-10 2024-10-11 01:42:06 +6127 6127 6128 612.7 1225.4 6127 1986-10-11 2024-10-11 01:42:07.000 1986-10-11 2024-10-11 01:42:07 +6128 6128 6129 612.8 1225.6000000000001 6128 1986-10-12 2024-10-11 01:42:08.000 1986-10-12 2024-10-11 01:42:08 +6129 6129 6130 612.9 1225.8 6129 1986-10-13 2024-10-11 01:42:09.000 1986-10-13 2024-10-11 01:42:09 +6131 6131 6132 613.1 1226.2 6131 1986-10-15 2024-10-11 01:42:11.000 1986-10-15 2024-10-11 01:42:11 +6132 6132 6133 613.2 1226.4 6132 1986-10-16 2024-10-11 01:42:12.000 1986-10-16 2024-10-11 01:42:12 +6133 6133 6134 613.3 1226.6000000000001 6133 1986-10-17 2024-10-11 01:42:13.000 1986-10-17 2024-10-11 01:42:13 +6134 6134 6135 613.4 1226.8 6134 1986-10-18 2024-10-11 01:42:14.000 1986-10-18 2024-10-11 01:42:14 +6136 6136 6137 613.6 1227.2 6136 1986-10-20 2024-10-11 01:42:16.000 1986-10-20 2024-10-11 01:42:16 +6137 6137 6138 613.7 1227.4 6137 1986-10-21 2024-10-11 01:42:17.000 1986-10-21 2024-10-11 01:42:17 +6138 6138 6139 613.8 1227.6000000000001 6138 1986-10-22 2024-10-11 01:42:18.000 1986-10-22 2024-10-11 01:42:18 +6139 6139 6140 613.9 1227.8 6139 1986-10-23 2024-10-11 01:42:19.000 1986-10-23 2024-10-11 01:42:19 +6141 6141 6142 614.1 1228.2 6141 1986-10-25 2024-10-11 01:42:21.000 1986-10-25 2024-10-11 01:42:21 +6142 6142 6143 614.2 1228.4 6142 1986-10-26 2024-10-11 01:42:22.000 1986-10-26 2024-10-11 01:42:22 +6143 6143 6144 614.3 1228.6000000000001 6143 1986-10-27 2024-10-11 01:42:23.000 1986-10-27 2024-10-11 01:42:23 +6144 6144 6145 614.4 1228.8000000000002 6144 1986-10-28 2024-10-11 01:42:24.000 1986-10-28 2024-10-11 01:42:24 +6146 6146 6147 614.6 1229.2 6146 1986-10-30 2024-10-11 01:42:26.000 1986-10-30 2024-10-11 01:42:26 +6147 6147 6148 614.7 1229.4 6147 1986-10-31 2024-10-11 01:42:27.000 1986-10-31 2024-10-11 01:42:27 +6148 6148 6149 614.8 1229.6000000000001 6148 1986-11-01 2024-10-11 01:42:28.000 1986-11-01 2024-10-11 01:42:28 +6149 6149 6150 614.9 1229.8000000000002 6149 1986-11-02 2024-10-11 01:42:29.000 1986-11-02 2024-10-11 01:42:29 +6151 6151 6152 615.1 1230.2 6151 1986-11-04 2024-10-11 01:42:31.000 1986-11-04 2024-10-11 01:42:31 +6152 6152 6153 615.2 1230.4 6152 1986-11-05 2024-10-11 01:42:32.000 1986-11-05 2024-10-11 01:42:32 +6153 6153 6154 615.3 1230.6000000000001 6153 1986-11-06 2024-10-11 01:42:33.000 1986-11-06 2024-10-11 01:42:33 +6154 6154 6155 615.4 1230.8000000000002 6154 1986-11-07 2024-10-11 01:42:34.000 1986-11-07 2024-10-11 01:42:34 +6156 6156 6157 615.6 1231.2 6156 1986-11-09 2024-10-11 01:42:36.000 1986-11-09 2024-10-11 01:42:36 +6157 6157 6158 615.7 1231.4 6157 1986-11-10 2024-10-11 01:42:37.000 1986-11-10 2024-10-11 01:42:37 +6158 6158 6159 615.8 1231.6000000000001 6158 1986-11-11 2024-10-11 01:42:38.000 1986-11-11 2024-10-11 01:42:38 +6159 6159 6160 615.9 1231.8000000000002 6159 1986-11-12 2024-10-11 01:42:39.000 1986-11-12 2024-10-11 01:42:39 +6161 6161 6162 616.1 1232.2 6161 1986-11-14 2024-10-11 01:42:41.000 1986-11-14 2024-10-11 01:42:41 +6162 6162 6163 616.2 1232.4 6162 1986-11-15 2024-10-11 01:42:42.000 1986-11-15 2024-10-11 01:42:42 +6163 6163 6164 616.3 1232.6000000000001 6163 1986-11-16 2024-10-11 01:42:43.000 1986-11-16 2024-10-11 01:42:43 +6164 6164 6165 616.4 1232.8000000000002 6164 1986-11-17 2024-10-11 01:42:44.000 1986-11-17 2024-10-11 01:42:44 +6166 6166 6167 616.6 1233.2 6166 1986-11-19 2024-10-11 01:42:46.000 1986-11-19 2024-10-11 01:42:46 +6167 6167 6168 616.7 1233.4 6167 1986-11-20 2024-10-11 01:42:47.000 1986-11-20 2024-10-11 01:42:47 +6168 6168 6169 616.8 1233.6000000000001 6168 1986-11-21 2024-10-11 01:42:48.000 1986-11-21 2024-10-11 01:42:48 +6169 6169 6170 616.9 1233.8000000000002 6169 1986-11-22 2024-10-11 01:42:49.000 1986-11-22 2024-10-11 01:42:49 +6171 6171 6172 617.1 1234.2 6171 1986-11-24 2024-10-11 01:42:51.000 1986-11-24 2024-10-11 01:42:51 +6172 6172 6173 617.2 1234.4 6172 1986-11-25 2024-10-11 01:42:52.000 1986-11-25 2024-10-11 01:42:52 +6173 6173 6174 617.3 1234.6000000000001 6173 1986-11-26 2024-10-11 01:42:53.000 1986-11-26 2024-10-11 01:42:53 +6174 6174 6175 617.4 1234.8000000000002 6174 1986-11-27 2024-10-11 01:42:54.000 1986-11-27 2024-10-11 01:42:54 +6176 6176 6177 617.6 1235.2 6176 1986-11-29 2024-10-11 01:42:56.000 1986-11-29 2024-10-11 01:42:56 +6177 6177 6178 617.7 1235.4 6177 1986-11-30 2024-10-11 01:42:57.000 1986-11-30 2024-10-11 01:42:57 +6178 6178 6179 617.8 1235.6000000000001 6178 1986-12-01 2024-10-11 01:42:58.000 1986-12-01 2024-10-11 01:42:58 +6179 6179 6180 617.9 1235.8000000000002 6179 1986-12-02 2024-10-11 01:42:59.000 1986-12-02 2024-10-11 01:42:59 +6181 6181 6182 618.1 1236.2 6181 1986-12-04 2024-10-11 01:43:01.000 1986-12-04 2024-10-11 01:43:01 +6182 6182 6183 618.2 1236.4 6182 1986-12-05 2024-10-11 01:43:02.000 1986-12-05 2024-10-11 01:43:02 +6183 6183 6184 618.3 1236.6000000000001 6183 1986-12-06 2024-10-11 01:43:03.000 1986-12-06 2024-10-11 01:43:03 +6184 6184 6185 618.4 1236.8000000000002 6184 1986-12-07 2024-10-11 01:43:04.000 1986-12-07 2024-10-11 01:43:04 +6186 6186 6187 618.6 1237.2 6186 1986-12-09 2024-10-11 01:43:06.000 1986-12-09 2024-10-11 01:43:06 +6187 6187 6188 618.7 1237.4 6187 1986-12-10 2024-10-11 01:43:07.000 1986-12-10 2024-10-11 01:43:07 +6188 6188 6189 618.8 1237.6000000000001 6188 1986-12-11 2024-10-11 01:43:08.000 1986-12-11 2024-10-11 01:43:08 +6189 6189 6190 618.9 1237.8000000000002 6189 1986-12-12 2024-10-11 01:43:09.000 1986-12-12 2024-10-11 01:43:09 +6191 6191 6192 619.1 1238.2 6191 1986-12-14 2024-10-11 01:43:11.000 1986-12-14 2024-10-11 01:43:11 +6192 6192 6193 619.2 1238.4 6192 1986-12-15 2024-10-11 01:43:12.000 1986-12-15 2024-10-11 01:43:12 +6193 6193 6194 619.3 1238.6000000000001 6193 1986-12-16 2024-10-11 01:43:13.000 1986-12-16 2024-10-11 01:43:13 +6194 6194 6195 619.4 1238.8000000000002 6194 1986-12-17 2024-10-11 01:43:14.000 1986-12-17 2024-10-11 01:43:14 +6196 6196 6197 619.6 1239.2 6196 1986-12-19 2024-10-11 01:43:16.000 1986-12-19 2024-10-11 01:43:16 +6197 6197 6198 619.7 1239.4 6197 1986-12-20 2024-10-11 01:43:17.000 1986-12-20 2024-10-11 01:43:17 +6198 6198 6199 619.8 1239.6000000000001 6198 1986-12-21 2024-10-11 01:43:18.000 1986-12-21 2024-10-11 01:43:18 +6199 6199 6200 619.9 1239.8000000000002 6199 1986-12-22 2024-10-11 01:43:19.000 1986-12-22 2024-10-11 01:43:19 +6201 6201 6202 620.1 1240.2 6201 1986-12-24 2024-10-11 01:43:21.000 1986-12-24 2024-10-11 01:43:21 +6202 6202 6203 620.2 1240.4 6202 1986-12-25 2024-10-11 01:43:22.000 1986-12-25 2024-10-11 01:43:22 +6203 6203 6204 620.3 1240.6000000000001 6203 1986-12-26 2024-10-11 01:43:23.000 1986-12-26 2024-10-11 01:43:23 +6204 6204 6205 620.4 1240.8000000000002 6204 1986-12-27 2024-10-11 01:43:24.000 1986-12-27 2024-10-11 01:43:24 +6206 6206 6207 620.6 1241.2 6206 1986-12-29 2024-10-11 01:43:26.000 1986-12-29 2024-10-11 01:43:26 +6207 6207 6208 620.7 1241.4 6207 1986-12-30 2024-10-11 01:43:27.000 1986-12-30 2024-10-11 01:43:27 +6208 6208 6209 620.8 1241.6000000000001 6208 1986-12-31 2024-10-11 01:43:28.000 1986-12-31 2024-10-11 01:43:28 +6209 6209 6210 620.9 1241.8000000000002 6209 1987-01-01 2024-10-11 01:43:29.000 1987-01-01 2024-10-11 01:43:29 +6211 6211 6212 621.1 1242.2 6211 1987-01-03 2024-10-11 01:43:31.000 1987-01-03 2024-10-11 01:43:31 +6212 6212 6213 621.2 1242.4 6212 1987-01-04 2024-10-11 01:43:32.000 1987-01-04 2024-10-11 01:43:32 +6213 6213 6214 621.3 1242.6000000000001 6213 1987-01-05 2024-10-11 01:43:33.000 1987-01-05 2024-10-11 01:43:33 +6214 6214 6215 621.4 1242.8000000000002 6214 1987-01-06 2024-10-11 01:43:34.000 1987-01-06 2024-10-11 01:43:34 +6216 6216 6217 621.6 1243.2 6216 1987-01-08 2024-10-11 01:43:36.000 1987-01-08 2024-10-11 01:43:36 +6217 6217 6218 621.7 1243.4 6217 1987-01-09 2024-10-11 01:43:37.000 1987-01-09 2024-10-11 01:43:37 +6218 6218 6219 621.8 1243.6000000000001 6218 1987-01-10 2024-10-11 01:43:38.000 1987-01-10 2024-10-11 01:43:38 +6219 6219 6220 621.9 1243.8000000000002 6219 1987-01-11 2024-10-11 01:43:39.000 1987-01-11 2024-10-11 01:43:39 +6221 6221 6222 622.1 1244.2 6221 1987-01-13 2024-10-11 01:43:41.000 1987-01-13 2024-10-11 01:43:41 +6222 6222 6223 622.2 1244.4 6222 1987-01-14 2024-10-11 01:43:42.000 1987-01-14 2024-10-11 01:43:42 +6223 6223 6224 622.3 1244.6000000000001 6223 1987-01-15 2024-10-11 01:43:43.000 1987-01-15 2024-10-11 01:43:43 +6224 6224 6225 622.4 1244.8000000000002 6224 1987-01-16 2024-10-11 01:43:44.000 1987-01-16 2024-10-11 01:43:44 +6226 6226 6227 622.6 1245.2 6226 1987-01-18 2024-10-11 01:43:46.000 1987-01-18 2024-10-11 01:43:46 +6227 6227 6228 622.7 1245.4 6227 1987-01-19 2024-10-11 01:43:47.000 1987-01-19 2024-10-11 01:43:47 +6228 6228 6229 622.8 1245.6000000000001 6228 1987-01-20 2024-10-11 01:43:48.000 1987-01-20 2024-10-11 01:43:48 +6229 6229 6230 622.9 1245.8000000000002 6229 1987-01-21 2024-10-11 01:43:49.000 1987-01-21 2024-10-11 01:43:49 +6231 6231 6232 623.1 1246.2 6231 1987-01-23 2024-10-11 01:43:51.000 1987-01-23 2024-10-11 01:43:51 +6232 6232 6233 623.2 1246.4 6232 1987-01-24 2024-10-11 01:43:52.000 1987-01-24 2024-10-11 01:43:52 +6233 6233 6234 623.3 1246.6000000000001 6233 1987-01-25 2024-10-11 01:43:53.000 1987-01-25 2024-10-11 01:43:53 +6234 6234 6235 623.4 1246.8000000000002 6234 1987-01-26 2024-10-11 01:43:54.000 1987-01-26 2024-10-11 01:43:54 +6236 6236 6237 623.6 1247.2 6236 1987-01-28 2024-10-11 01:43:56.000 1987-01-28 2024-10-11 01:43:56 +6237 6237 6238 623.7 1247.4 6237 1987-01-29 2024-10-11 01:43:57.000 1987-01-29 2024-10-11 01:43:57 +6238 6238 6239 623.8 1247.6000000000001 6238 1987-01-30 2024-10-11 01:43:58.000 1987-01-30 2024-10-11 01:43:58 +6239 6239 6240 623.9 1247.8000000000002 6239 1987-01-31 2024-10-11 01:43:59.000 1987-01-31 2024-10-11 01:43:59 +6241 6241 6242 624.1 1248.2 6241 1987-02-02 2024-10-11 01:44:01.000 1987-02-02 2024-10-11 01:44:01 +6242 6242 6243 624.2 1248.4 6242 1987-02-03 2024-10-11 01:44:02.000 1987-02-03 2024-10-11 01:44:02 +6243 6243 6244 624.3 1248.6000000000001 6243 1987-02-04 2024-10-11 01:44:03.000 1987-02-04 2024-10-11 01:44:03 +6244 6244 6245 624.4 1248.8000000000002 6244 1987-02-05 2024-10-11 01:44:04.000 1987-02-05 2024-10-11 01:44:04 +6246 6246 6247 624.6 1249.2 6246 1987-02-07 2024-10-11 01:44:06.000 1987-02-07 2024-10-11 01:44:06 +6247 6247 6248 624.7 1249.4 6247 1987-02-08 2024-10-11 01:44:07.000 1987-02-08 2024-10-11 01:44:07 +6248 6248 6249 624.8 1249.6000000000001 6248 1987-02-09 2024-10-11 01:44:08.000 1987-02-09 2024-10-11 01:44:08 +6249 6249 6250 624.9 1249.8000000000002 6249 1987-02-10 2024-10-11 01:44:09.000 1987-02-10 2024-10-11 01:44:09 +6251 6251 6252 625.1 1250.2 6251 1987-02-12 2024-10-11 01:44:11.000 1987-02-12 2024-10-11 01:44:11 +6252 6252 6253 625.2 1250.4 6252 1987-02-13 2024-10-11 01:44:12.000 1987-02-13 2024-10-11 01:44:12 +6253 6253 6254 625.3 1250.6000000000001 6253 1987-02-14 2024-10-11 01:44:13.000 1987-02-14 2024-10-11 01:44:13 +6254 6254 6255 625.4 1250.8000000000002 6254 1987-02-15 2024-10-11 01:44:14.000 1987-02-15 2024-10-11 01:44:14 +6256 6256 6257 625.6 1251.2 6256 1987-02-17 2024-10-11 01:44:16.000 1987-02-17 2024-10-11 01:44:16 +6257 6257 6258 625.7 1251.4 6257 1987-02-18 2024-10-11 01:44:17.000 1987-02-18 2024-10-11 01:44:17 +6258 6258 6259 625.8 1251.6000000000001 6258 1987-02-19 2024-10-11 01:44:18.000 1987-02-19 2024-10-11 01:44:18 +6259 6259 6260 625.9 1251.8000000000002 6259 1987-02-20 2024-10-11 01:44:19.000 1987-02-20 2024-10-11 01:44:19 +6261 6261 6262 626.1 1252.2 6261 1987-02-22 2024-10-11 01:44:21.000 1987-02-22 2024-10-11 01:44:21 +6262 6262 6263 626.2 1252.4 6262 1987-02-23 2024-10-11 01:44:22.000 1987-02-23 2024-10-11 01:44:22 +6263 6263 6264 626.3 1252.6000000000001 6263 1987-02-24 2024-10-11 01:44:23.000 1987-02-24 2024-10-11 01:44:23 +6264 6264 6265 626.4 1252.8000000000002 6264 1987-02-25 2024-10-11 01:44:24.000 1987-02-25 2024-10-11 01:44:24 +6266 6266 6267 626.6 1253.2 6266 1987-02-27 2024-10-11 01:44:26.000 1987-02-27 2024-10-11 01:44:26 +6267 6267 6268 626.7 1253.4 6267 1987-02-28 2024-10-11 01:44:27.000 1987-02-28 2024-10-11 01:44:27 +6268 6268 6269 626.8 1253.6000000000001 6268 1987-03-01 2024-10-11 01:44:28.000 1987-03-01 2024-10-11 01:44:28 +6269 6269 6270 626.9 1253.8000000000002 6269 1987-03-02 2024-10-11 01:44:29.000 1987-03-02 2024-10-11 01:44:29 +6271 6271 6272 627.1 1254.2 6271 1987-03-04 2024-10-11 01:44:31.000 1987-03-04 2024-10-11 01:44:31 +6272 6272 6273 627.2 1254.4 6272 1987-03-05 2024-10-11 01:44:32.000 1987-03-05 2024-10-11 01:44:32 +6273 6273 6274 627.3 1254.6000000000001 6273 1987-03-06 2024-10-11 01:44:33.000 1987-03-06 2024-10-11 01:44:33 +6274 6274 6275 627.4 1254.8000000000002 6274 1987-03-07 2024-10-11 01:44:34.000 1987-03-07 2024-10-11 01:44:34 +6276 6276 6277 627.6 1255.2 6276 1987-03-09 2024-10-11 01:44:36.000 1987-03-09 2024-10-11 01:44:36 +6277 6277 6278 627.7 1255.4 6277 1987-03-10 2024-10-11 01:44:37.000 1987-03-10 2024-10-11 01:44:37 +6278 6278 6279 627.8 1255.6000000000001 6278 1987-03-11 2024-10-11 01:44:38.000 1987-03-11 2024-10-11 01:44:38 +6279 6279 6280 627.9 1255.8000000000002 6279 1987-03-12 2024-10-11 01:44:39.000 1987-03-12 2024-10-11 01:44:39 +6281 6281 6282 628.1 1256.2 6281 1987-03-14 2024-10-11 01:44:41.000 1987-03-14 2024-10-11 01:44:41 +6282 6282 6283 628.2 1256.4 6282 1987-03-15 2024-10-11 01:44:42.000 1987-03-15 2024-10-11 01:44:42 +6283 6283 6284 628.3 1256.6000000000001 6283 1987-03-16 2024-10-11 01:44:43.000 1987-03-16 2024-10-11 01:44:43 +6284 6284 6285 628.4 1256.8000000000002 6284 1987-03-17 2024-10-11 01:44:44.000 1987-03-17 2024-10-11 01:44:44 +6286 6286 6287 628.6 1257.2 6286 1987-03-19 2024-10-11 01:44:46.000 1987-03-19 2024-10-11 01:44:46 +6287 6287 6288 628.7 1257.4 6287 1987-03-20 2024-10-11 01:44:47.000 1987-03-20 2024-10-11 01:44:47 +6288 6288 6289 628.8 1257.6000000000001 6288 1987-03-21 2024-10-11 01:44:48.000 1987-03-21 2024-10-11 01:44:48 +6289 6289 6290 628.9 1257.8000000000002 6289 1987-03-22 2024-10-11 01:44:49.000 1987-03-22 2024-10-11 01:44:49 +6291 6291 6292 629.1 1258.2 6291 1987-03-24 2024-10-11 01:44:51.000 1987-03-24 2024-10-11 01:44:51 +6292 6292 6293 629.2 1258.4 6292 1987-03-25 2024-10-11 01:44:52.000 1987-03-25 2024-10-11 01:44:52 +6293 6293 6294 629.3 1258.6000000000001 6293 1987-03-26 2024-10-11 01:44:53.000 1987-03-26 2024-10-11 01:44:53 +6294 6294 6295 629.4 1258.8000000000002 6294 1987-03-27 2024-10-11 01:44:54.000 1987-03-27 2024-10-11 01:44:54 +6296 6296 6297 629.6 1259.2 6296 1987-03-29 2024-10-11 01:44:56.000 1987-03-29 2024-10-11 01:44:56 +6297 6297 6298 629.7 1259.4 6297 1987-03-30 2024-10-11 01:44:57.000 1987-03-30 2024-10-11 01:44:57 +6298 6298 6299 629.8 1259.6000000000001 6298 1987-03-31 2024-10-11 01:44:58.000 1987-03-31 2024-10-11 01:44:58 +6299 6299 6300 629.9 1259.8000000000002 6299 1987-04-01 2024-10-11 01:44:59.000 1987-04-01 2024-10-11 01:44:59 +6301 6301 6302 630.1 1260.2 6301 1987-04-03 2024-10-11 01:45:01.000 1987-04-03 2024-10-11 01:45:01 +6302 6302 6303 630.2 1260.4 6302 1987-04-04 2024-10-11 01:45:02.000 1987-04-04 2024-10-11 01:45:02 +6303 6303 6304 630.3 1260.6000000000001 6303 1987-04-05 2024-10-11 01:45:03.000 1987-04-05 2024-10-11 01:45:03 +6304 6304 6305 630.4 1260.8000000000002 6304 1987-04-06 2024-10-11 01:45:04.000 1987-04-06 2024-10-11 01:45:04 +6306 6306 6307 630.6 1261.2 6306 1987-04-08 2024-10-11 01:45:06.000 1987-04-08 2024-10-11 01:45:06 +6307 6307 6308 630.7 1261.4 6307 1987-04-09 2024-10-11 01:45:07.000 1987-04-09 2024-10-11 01:45:07 +6308 6308 6309 630.8 1261.6000000000001 6308 1987-04-10 2024-10-11 01:45:08.000 1987-04-10 2024-10-11 01:45:08 +6309 6309 6310 630.9 1261.8000000000002 6309 1987-04-11 2024-10-11 01:45:09.000 1987-04-11 2024-10-11 01:45:09 +6311 6311 6312 631.1 1262.2 6311 1987-04-13 2024-10-11 01:45:11.000 1987-04-13 2024-10-11 01:45:11 +6312 6312 6313 631.2 1262.4 6312 1987-04-14 2024-10-11 01:45:12.000 1987-04-14 2024-10-11 01:45:12 +6313 6313 6314 631.3 1262.6000000000001 6313 1987-04-15 2024-10-11 01:45:13.000 1987-04-15 2024-10-11 01:45:13 +6314 6314 6315 631.4 1262.8000000000002 6314 1987-04-16 2024-10-11 01:45:14.000 1987-04-16 2024-10-11 01:45:14 +6316 6316 6317 631.6 1263.2 6316 1987-04-18 2024-10-11 01:45:16.000 1987-04-18 2024-10-11 01:45:16 +6317 6317 6318 631.7 1263.4 6317 1987-04-19 2024-10-11 01:45:17.000 1987-04-19 2024-10-11 01:45:17 +6318 6318 6319 631.8 1263.6000000000001 6318 1987-04-20 2024-10-11 01:45:18.000 1987-04-20 2024-10-11 01:45:18 +6319 6319 6320 631.9 1263.8000000000002 6319 1987-04-21 2024-10-11 01:45:19.000 1987-04-21 2024-10-11 01:45:19 +6321 6321 6322 632.1 1264.2 6321 1987-04-23 2024-10-11 01:45:21.000 1987-04-23 2024-10-11 01:45:21 +6322 6322 6323 632.2 1264.4 6322 1987-04-24 2024-10-11 01:45:22.000 1987-04-24 2024-10-11 01:45:22 +6323 6323 6324 632.3 1264.6000000000001 6323 1987-04-25 2024-10-11 01:45:23.000 1987-04-25 2024-10-11 01:45:23 +6324 6324 6325 632.4 1264.8000000000002 6324 1987-04-26 2024-10-11 01:45:24.000 1987-04-26 2024-10-11 01:45:24 +6326 6326 6327 632.6 1265.2 6326 1987-04-28 2024-10-11 01:45:26.000 1987-04-28 2024-10-11 01:45:26 +6327 6327 6328 632.7 1265.4 6327 1987-04-29 2024-10-11 01:45:27.000 1987-04-29 2024-10-11 01:45:27 +6328 6328 6329 632.8 1265.6000000000001 6328 1987-04-30 2024-10-11 01:45:28.000 1987-04-30 2024-10-11 01:45:28 +6329 6329 6330 632.9 1265.8000000000002 6329 1987-05-01 2024-10-11 01:45:29.000 1987-05-01 2024-10-11 01:45:29 +6331 6331 6332 633.1 1266.2 6331 1987-05-03 2024-10-11 01:45:31.000 1987-05-03 2024-10-11 01:45:31 +6332 6332 6333 633.2 1266.4 6332 1987-05-04 2024-10-11 01:45:32.000 1987-05-04 2024-10-11 01:45:32 +6333 6333 6334 633.3 1266.6000000000001 6333 1987-05-05 2024-10-11 01:45:33.000 1987-05-05 2024-10-11 01:45:33 +6334 6334 6335 633.4 1266.8000000000002 6334 1987-05-06 2024-10-11 01:45:34.000 1987-05-06 2024-10-11 01:45:34 +6336 6336 6337 633.6 1267.2 6336 1987-05-08 2024-10-11 01:45:36.000 1987-05-08 2024-10-11 01:45:36 +6337 6337 6338 633.7 1267.4 6337 1987-05-09 2024-10-11 01:45:37.000 1987-05-09 2024-10-11 01:45:37 +6338 6338 6339 633.8 1267.6000000000001 6338 1987-05-10 2024-10-11 01:45:38.000 1987-05-10 2024-10-11 01:45:38 +6339 6339 6340 633.9 1267.8000000000002 6339 1987-05-11 2024-10-11 01:45:39.000 1987-05-11 2024-10-11 01:45:39 +6341 6341 6342 634.1 1268.2 6341 1987-05-13 2024-10-11 01:45:41.000 1987-05-13 2024-10-11 01:45:41 +6342 6342 6343 634.2 1268.4 6342 1987-05-14 2024-10-11 01:45:42.000 1987-05-14 2024-10-11 01:45:42 +6343 6343 6344 634.3 1268.6000000000001 6343 1987-05-15 2024-10-11 01:45:43.000 1987-05-15 2024-10-11 01:45:43 +6344 6344 6345 634.4 1268.8000000000002 6344 1987-05-16 2024-10-11 01:45:44.000 1987-05-16 2024-10-11 01:45:44 +6346 6346 6347 634.6 1269.2 6346 1987-05-18 2024-10-11 01:45:46.000 1987-05-18 2024-10-11 01:45:46 +6347 6347 6348 634.7 1269.4 6347 1987-05-19 2024-10-11 01:45:47.000 1987-05-19 2024-10-11 01:45:47 +6348 6348 6349 634.8 1269.6000000000001 6348 1987-05-20 2024-10-11 01:45:48.000 1987-05-20 2024-10-11 01:45:48 +6349 6349 6350 634.9 1269.8000000000002 6349 1987-05-21 2024-10-11 01:45:49.000 1987-05-21 2024-10-11 01:45:49 +6351 6351 6352 635.1 1270.2 6351 1987-05-23 2024-10-11 01:45:51.000 1987-05-23 2024-10-11 01:45:51 +6352 6352 6353 635.2 1270.4 6352 1987-05-24 2024-10-11 01:45:52.000 1987-05-24 2024-10-11 01:45:52 +6353 6353 6354 635.3 1270.6000000000001 6353 1987-05-25 2024-10-11 01:45:53.000 1987-05-25 2024-10-11 01:45:53 +6354 6354 6355 635.4 1270.8000000000002 6354 1987-05-26 2024-10-11 01:45:54.000 1987-05-26 2024-10-11 01:45:54 +6356 6356 6357 635.6 1271.2 6356 1987-05-28 2024-10-11 01:45:56.000 1987-05-28 2024-10-11 01:45:56 +6357 6357 6358 635.7 1271.4 6357 1987-05-29 2024-10-11 01:45:57.000 1987-05-29 2024-10-11 01:45:57 +6358 6358 6359 635.8 1271.6000000000001 6358 1987-05-30 2024-10-11 01:45:58.000 1987-05-30 2024-10-11 01:45:58 +6359 6359 6360 635.9 1271.8000000000002 6359 1987-05-31 2024-10-11 01:45:59.000 1987-05-31 2024-10-11 01:45:59 +6361 6361 6362 636.1 1272.2 6361 1987-06-02 2024-10-11 01:46:01.000 1987-06-02 2024-10-11 01:46:01 +6362 6362 6363 636.2 1272.4 6362 1987-06-03 2024-10-11 01:46:02.000 1987-06-03 2024-10-11 01:46:02 +6363 6363 6364 636.3 1272.6000000000001 6363 1987-06-04 2024-10-11 01:46:03.000 1987-06-04 2024-10-11 01:46:03 +6364 6364 6365 636.4 1272.8000000000002 6364 1987-06-05 2024-10-11 01:46:04.000 1987-06-05 2024-10-11 01:46:04 +6366 6366 6367 636.6 1273.2 6366 1987-06-07 2024-10-11 01:46:06.000 1987-06-07 2024-10-11 01:46:06 +6367 6367 6368 636.7 1273.4 6367 1987-06-08 2024-10-11 01:46:07.000 1987-06-08 2024-10-11 01:46:07 +6368 6368 6369 636.8 1273.6000000000001 6368 1987-06-09 2024-10-11 01:46:08.000 1987-06-09 2024-10-11 01:46:08 +6369 6369 6370 636.9 1273.8000000000002 6369 1987-06-10 2024-10-11 01:46:09.000 1987-06-10 2024-10-11 01:46:09 +6371 6371 6372 637.1 1274.2 6371 1987-06-12 2024-10-11 01:46:11.000 1987-06-12 2024-10-11 01:46:11 +6372 6372 6373 637.2 1274.4 6372 1987-06-13 2024-10-11 01:46:12.000 1987-06-13 2024-10-11 01:46:12 +6373 6373 6374 637.3 1274.6000000000001 6373 1987-06-14 2024-10-11 01:46:13.000 1987-06-14 2024-10-11 01:46:13 +6374 6374 6375 637.4 1274.8000000000002 6374 1987-06-15 2024-10-11 01:46:14.000 1987-06-15 2024-10-11 01:46:14 +6376 6376 6377 637.6 1275.2 6376 1987-06-17 2024-10-11 01:46:16.000 1987-06-17 2024-10-11 01:46:16 +6377 6377 6378 637.7 1275.4 6377 1987-06-18 2024-10-11 01:46:17.000 1987-06-18 2024-10-11 01:46:17 +6378 6378 6379 637.8 1275.6000000000001 6378 1987-06-19 2024-10-11 01:46:18.000 1987-06-19 2024-10-11 01:46:18 +6379 6379 6380 637.9 1275.8000000000002 6379 1987-06-20 2024-10-11 01:46:19.000 1987-06-20 2024-10-11 01:46:19 +6381 6381 6382 638.1 1276.2 6381 1987-06-22 2024-10-11 01:46:21.000 1987-06-22 2024-10-11 01:46:21 +6382 6382 6383 638.2 1276.4 6382 1987-06-23 2024-10-11 01:46:22.000 1987-06-23 2024-10-11 01:46:22 +6383 6383 6384 638.3 1276.6000000000001 6383 1987-06-24 2024-10-11 01:46:23.000 1987-06-24 2024-10-11 01:46:23 +6384 6384 6385 638.4 1276.8000000000002 6384 1987-06-25 2024-10-11 01:46:24.000 1987-06-25 2024-10-11 01:46:24 +6386 6386 6387 638.6 1277.2 6386 1987-06-27 2024-10-11 01:46:26.000 1987-06-27 2024-10-11 01:46:26 +6387 6387 6388 638.7 1277.4 6387 1987-06-28 2024-10-11 01:46:27.000 1987-06-28 2024-10-11 01:46:27 +6388 6388 6389 638.8 1277.6000000000001 6388 1987-06-29 2024-10-11 01:46:28.000 1987-06-29 2024-10-11 01:46:28 +6389 6389 6390 638.9 1277.8000000000002 6389 1987-06-30 2024-10-11 01:46:29.000 1987-06-30 2024-10-11 01:46:29 +6391 6391 6392 639.1 1278.2 6391 1987-07-02 2024-10-11 01:46:31.000 1987-07-02 2024-10-11 01:46:31 +6392 6392 6393 639.2 1278.4 6392 1987-07-03 2024-10-11 01:46:32.000 1987-07-03 2024-10-11 01:46:32 +6393 6393 6394 639.3 1278.6000000000001 6393 1987-07-04 2024-10-11 01:46:33.000 1987-07-04 2024-10-11 01:46:33 +6394 6394 6395 639.4 1278.8000000000002 6394 1987-07-05 2024-10-11 01:46:34.000 1987-07-05 2024-10-11 01:46:34 +6396 6396 6397 639.6 1279.2 6396 1987-07-07 2024-10-11 01:46:36.000 1987-07-07 2024-10-11 01:46:36 +6397 6397 6398 639.7 1279.4 6397 1987-07-08 2024-10-11 01:46:37.000 1987-07-08 2024-10-11 01:46:37 +6398 6398 6399 639.8 1279.6000000000001 6398 1987-07-09 2024-10-11 01:46:38.000 1987-07-09 2024-10-11 01:46:38 +6399 6399 6400 639.9 1279.8000000000002 6399 1987-07-10 2024-10-11 01:46:39.000 1987-07-10 2024-10-11 01:46:39 +6401 6401 6402 640.1 1280.2 6401 1987-07-12 2024-10-11 01:46:41.000 1987-07-12 2024-10-11 01:46:41 +6402 6402 6403 640.2 1280.4 6402 1987-07-13 2024-10-11 01:46:42.000 1987-07-13 2024-10-11 01:46:42 +6403 6403 6404 640.3 1280.6000000000001 6403 1987-07-14 2024-10-11 01:46:43.000 1987-07-14 2024-10-11 01:46:43 +6404 6404 6405 640.4 1280.8000000000002 6404 1987-07-15 2024-10-11 01:46:44.000 1987-07-15 2024-10-11 01:46:44 +6406 6406 6407 640.6 1281.2 6406 1987-07-17 2024-10-11 01:46:46.000 1987-07-17 2024-10-11 01:46:46 +6407 6407 6408 640.7 1281.4 6407 1987-07-18 2024-10-11 01:46:47.000 1987-07-18 2024-10-11 01:46:47 +6408 6408 6409 640.8 1281.6000000000001 6408 1987-07-19 2024-10-11 01:46:48.000 1987-07-19 2024-10-11 01:46:48 +6409 6409 6410 640.9 1281.8000000000002 6409 1987-07-20 2024-10-11 01:46:49.000 1987-07-20 2024-10-11 01:46:49 +6411 6411 6412 641.1 1282.2 6411 1987-07-22 2024-10-11 01:46:51.000 1987-07-22 2024-10-11 01:46:51 +6412 6412 6413 641.2 1282.4 6412 1987-07-23 2024-10-11 01:46:52.000 1987-07-23 2024-10-11 01:46:52 +6413 6413 6414 641.3 1282.6000000000001 6413 1987-07-24 2024-10-11 01:46:53.000 1987-07-24 2024-10-11 01:46:53 +6414 6414 6415 641.4 1282.8000000000002 6414 1987-07-25 2024-10-11 01:46:54.000 1987-07-25 2024-10-11 01:46:54 +6416 6416 6417 641.6 1283.2 6416 1987-07-27 2024-10-11 01:46:56.000 1987-07-27 2024-10-11 01:46:56 +6417 6417 6418 641.7 1283.4 6417 1987-07-28 2024-10-11 01:46:57.000 1987-07-28 2024-10-11 01:46:57 +6418 6418 6419 641.8 1283.6000000000001 6418 1987-07-29 2024-10-11 01:46:58.000 1987-07-29 2024-10-11 01:46:58 +6419 6419 6420 641.9 1283.8000000000002 6419 1987-07-30 2024-10-11 01:46:59.000 1987-07-30 2024-10-11 01:46:59 +6421 6421 6422 642.1 1284.2 6421 1987-08-01 2024-10-11 01:47:01.000 1987-08-01 2024-10-11 01:47:01 +6422 6422 6423 642.2 1284.4 6422 1987-08-02 2024-10-11 01:47:02.000 1987-08-02 2024-10-11 01:47:02 +6423 6423 6424 642.3 1284.6000000000001 6423 1987-08-03 2024-10-11 01:47:03.000 1987-08-03 2024-10-11 01:47:03 +6424 6424 6425 642.4 1284.8000000000002 6424 1987-08-04 2024-10-11 01:47:04.000 1987-08-04 2024-10-11 01:47:04 +6426 6426 6427 642.6 1285.2 6426 1987-08-06 2024-10-11 01:47:06.000 1987-08-06 2024-10-11 01:47:06 +6427 6427 6428 642.7 1285.4 6427 1987-08-07 2024-10-11 01:47:07.000 1987-08-07 2024-10-11 01:47:07 +6428 6428 6429 642.8 1285.6000000000001 6428 1987-08-08 2024-10-11 01:47:08.000 1987-08-08 2024-10-11 01:47:08 +6429 6429 6430 642.9 1285.8000000000002 6429 1987-08-09 2024-10-11 01:47:09.000 1987-08-09 2024-10-11 01:47:09 +6431 6431 6432 643.1 1286.2 6431 1987-08-11 2024-10-11 01:47:11.000 1987-08-11 2024-10-11 01:47:11 +6432 6432 6433 643.2 1286.4 6432 1987-08-12 2024-10-11 01:47:12.000 1987-08-12 2024-10-11 01:47:12 +6433 6433 6434 643.3 1286.6000000000001 6433 1987-08-13 2024-10-11 01:47:13.000 1987-08-13 2024-10-11 01:47:13 +6434 6434 6435 643.4 1286.8000000000002 6434 1987-08-14 2024-10-11 01:47:14.000 1987-08-14 2024-10-11 01:47:14 +6436 6436 6437 643.6 1287.2 6436 1987-08-16 2024-10-11 01:47:16.000 1987-08-16 2024-10-11 01:47:16 +6437 6437 6438 643.7 1287.4 6437 1987-08-17 2024-10-11 01:47:17.000 1987-08-17 2024-10-11 01:47:17 +6438 6438 6439 643.8 1287.6000000000001 6438 1987-08-18 2024-10-11 01:47:18.000 1987-08-18 2024-10-11 01:47:18 +6439 6439 6440 643.9 1287.8000000000002 6439 1987-08-19 2024-10-11 01:47:19.000 1987-08-19 2024-10-11 01:47:19 +6441 6441 6442 644.1 1288.2 6441 1987-08-21 2024-10-11 01:47:21.000 1987-08-21 2024-10-11 01:47:21 +6442 6442 6443 644.2 1288.4 6442 1987-08-22 2024-10-11 01:47:22.000 1987-08-22 2024-10-11 01:47:22 +6443 6443 6444 644.3 1288.6000000000001 6443 1987-08-23 2024-10-11 01:47:23.000 1987-08-23 2024-10-11 01:47:23 +6444 6444 6445 644.4 1288.8000000000002 6444 1987-08-24 2024-10-11 01:47:24.000 1987-08-24 2024-10-11 01:47:24 +6446 6446 6447 644.6 1289.2 6446 1987-08-26 2024-10-11 01:47:26.000 1987-08-26 2024-10-11 01:47:26 +6447 6447 6448 644.7 1289.4 6447 1987-08-27 2024-10-11 01:47:27.000 1987-08-27 2024-10-11 01:47:27 +6448 6448 6449 644.8 1289.6000000000001 6448 1987-08-28 2024-10-11 01:47:28.000 1987-08-28 2024-10-11 01:47:28 +6449 6449 6450 644.9 1289.8000000000002 6449 1987-08-29 2024-10-11 01:47:29.000 1987-08-29 2024-10-11 01:47:29 +6451 6451 6452 645.1 1290.2 6451 1987-08-31 2024-10-11 01:47:31.000 1987-08-31 2024-10-11 01:47:31 +6452 6452 6453 645.2 1290.4 6452 1987-09-01 2024-10-11 01:47:32.000 1987-09-01 2024-10-11 01:47:32 +6453 6453 6454 645.3 1290.6000000000001 6453 1987-09-02 2024-10-11 01:47:33.000 1987-09-02 2024-10-11 01:47:33 +6454 6454 6455 645.4 1290.8000000000002 6454 1987-09-03 2024-10-11 01:47:34.000 1987-09-03 2024-10-11 01:47:34 +6456 6456 6457 645.6 1291.2 6456 1987-09-05 2024-10-11 01:47:36.000 1987-09-05 2024-10-11 01:47:36 +6457 6457 6458 645.7 1291.4 6457 1987-09-06 2024-10-11 01:47:37.000 1987-09-06 2024-10-11 01:47:37 +6458 6458 6459 645.8 1291.6000000000001 6458 1987-09-07 2024-10-11 01:47:38.000 1987-09-07 2024-10-11 01:47:38 +6459 6459 6460 645.9 1291.8000000000002 6459 1987-09-08 2024-10-11 01:47:39.000 1987-09-08 2024-10-11 01:47:39 +6461 6461 6462 646.1 1292.2 6461 1987-09-10 2024-10-11 01:47:41.000 1987-09-10 2024-10-11 01:47:41 +6462 6462 6463 646.2 1292.4 6462 1987-09-11 2024-10-11 01:47:42.000 1987-09-11 2024-10-11 01:47:42 +6463 6463 6464 646.3 1292.6000000000001 6463 1987-09-12 2024-10-11 01:47:43.000 1987-09-12 2024-10-11 01:47:43 +6464 6464 6465 646.4 1292.8000000000002 6464 1987-09-13 2024-10-11 01:47:44.000 1987-09-13 2024-10-11 01:47:44 +6466 6466 6467 646.6 1293.2 6466 1987-09-15 2024-10-11 01:47:46.000 1987-09-15 2024-10-11 01:47:46 +6467 6467 6468 646.7 1293.4 6467 1987-09-16 2024-10-11 01:47:47.000 1987-09-16 2024-10-11 01:47:47 +6468 6468 6469 646.8 1293.6000000000001 6468 1987-09-17 2024-10-11 01:47:48.000 1987-09-17 2024-10-11 01:47:48 +6469 6469 6470 646.9 1293.8000000000002 6469 1987-09-18 2024-10-11 01:47:49.000 1987-09-18 2024-10-11 01:47:49 +6471 6471 6472 647.1 1294.2 6471 1987-09-20 2024-10-11 01:47:51.000 1987-09-20 2024-10-11 01:47:51 +6472 6472 6473 647.2 1294.4 6472 1987-09-21 2024-10-11 01:47:52.000 1987-09-21 2024-10-11 01:47:52 +6473 6473 6474 647.3 1294.6000000000001 6473 1987-09-22 2024-10-11 01:47:53.000 1987-09-22 2024-10-11 01:47:53 +6474 6474 6475 647.4 1294.8000000000002 6474 1987-09-23 2024-10-11 01:47:54.000 1987-09-23 2024-10-11 01:47:54 +6476 6476 6477 647.6 1295.2 6476 1987-09-25 2024-10-11 01:47:56.000 1987-09-25 2024-10-11 01:47:56 +6477 6477 6478 647.7 1295.4 6477 1987-09-26 2024-10-11 01:47:57.000 1987-09-26 2024-10-11 01:47:57 +6478 6478 6479 647.8 1295.6000000000001 6478 1987-09-27 2024-10-11 01:47:58.000 1987-09-27 2024-10-11 01:47:58 +6479 6479 6480 647.9 1295.8000000000002 6479 1987-09-28 2024-10-11 01:47:59.000 1987-09-28 2024-10-11 01:47:59 +6481 6481 6482 648.1 1296.2 6481 1987-09-30 2024-10-11 01:48:01.000 1987-09-30 2024-10-11 01:48:01 +6482 6482 6483 648.2 1296.4 6482 1987-10-01 2024-10-11 01:48:02.000 1987-10-01 2024-10-11 01:48:02 +6483 6483 6484 648.3 1296.6000000000001 6483 1987-10-02 2024-10-11 01:48:03.000 1987-10-02 2024-10-11 01:48:03 +6484 6484 6485 648.4 1296.8000000000002 6484 1987-10-03 2024-10-11 01:48:04.000 1987-10-03 2024-10-11 01:48:04 +6486 6486 6487 648.6 1297.2 6486 1987-10-05 2024-10-11 01:48:06.000 1987-10-05 2024-10-11 01:48:06 +6487 6487 6488 648.7 1297.4 6487 1987-10-06 2024-10-11 01:48:07.000 1987-10-06 2024-10-11 01:48:07 +6488 6488 6489 648.8 1297.6000000000001 6488 1987-10-07 2024-10-11 01:48:08.000 1987-10-07 2024-10-11 01:48:08 +6489 6489 6490 648.9 1297.8000000000002 6489 1987-10-08 2024-10-11 01:48:09.000 1987-10-08 2024-10-11 01:48:09 +6491 6491 6492 649.1 1298.2 6491 1987-10-10 2024-10-11 01:48:11.000 1987-10-10 2024-10-11 01:48:11 +6492 6492 6493 649.2 1298.4 6492 1987-10-11 2024-10-11 01:48:12.000 1987-10-11 2024-10-11 01:48:12 +6493 6493 6494 649.3 1298.6000000000001 6493 1987-10-12 2024-10-11 01:48:13.000 1987-10-12 2024-10-11 01:48:13 +6494 6494 6495 649.4 1298.8000000000002 6494 1987-10-13 2024-10-11 01:48:14.000 1987-10-13 2024-10-11 01:48:14 +6496 6496 6497 649.6 1299.2 6496 1987-10-15 2024-10-11 01:48:16.000 1987-10-15 2024-10-11 01:48:16 +6497 6497 6498 649.7 1299.4 6497 1987-10-16 2024-10-11 01:48:17.000 1987-10-16 2024-10-11 01:48:17 +6498 6498 6499 649.8 1299.6000000000001 6498 1987-10-17 2024-10-11 01:48:18.000 1987-10-17 2024-10-11 01:48:18 +6499 6499 6500 649.9 1299.8000000000002 6499 1987-10-18 2024-10-11 01:48:19.000 1987-10-18 2024-10-11 01:48:19 +6501 6501 6502 650.1 1300.2 6501 1987-10-20 2024-10-11 01:48:21.000 1987-10-20 2024-10-11 01:48:21 +6502 6502 6503 650.2 1300.4 6502 1987-10-21 2024-10-11 01:48:22.000 1987-10-21 2024-10-11 01:48:22 +6503 6503 6504 650.3 1300.6000000000001 6503 1987-10-22 2024-10-11 01:48:23.000 1987-10-22 2024-10-11 01:48:23 +6504 6504 6505 650.4 1300.8000000000002 6504 1987-10-23 2024-10-11 01:48:24.000 1987-10-23 2024-10-11 01:48:24 +6506 6506 6507 650.6 1301.2 6506 1987-10-25 2024-10-11 01:48:26.000 1987-10-25 2024-10-11 01:48:26 +6507 6507 6508 650.7 1301.4 6507 1987-10-26 2024-10-11 01:48:27.000 1987-10-26 2024-10-11 01:48:27 +6508 6508 6509 650.8 1301.6000000000001 6508 1987-10-27 2024-10-11 01:48:28.000 1987-10-27 2024-10-11 01:48:28 +6509 6509 6510 650.9 1301.8000000000002 6509 1987-10-28 2024-10-11 01:48:29.000 1987-10-28 2024-10-11 01:48:29 +6511 6511 6512 651.1 1302.2 6511 1987-10-30 2024-10-11 01:48:31.000 1987-10-30 2024-10-11 01:48:31 +6512 6512 6513 651.2 1302.4 6512 1987-10-31 2024-10-11 01:48:32.000 1987-10-31 2024-10-11 01:48:32 +6513 6513 6514 651.3 1302.6000000000001 6513 1987-11-01 2024-10-11 01:48:33.000 1987-11-01 2024-10-11 01:48:33 +6514 6514 6515 651.4 1302.8000000000002 6514 1987-11-02 2024-10-11 01:48:34.000 1987-11-02 2024-10-11 01:48:34 +6516 6516 6517 651.6 1303.2 6516 1987-11-04 2024-10-11 01:48:36.000 1987-11-04 2024-10-11 01:48:36 +6517 6517 6518 651.7 1303.4 6517 1987-11-05 2024-10-11 01:48:37.000 1987-11-05 2024-10-11 01:48:37 +6518 6518 6519 651.8 1303.6000000000001 6518 1987-11-06 2024-10-11 01:48:38.000 1987-11-06 2024-10-11 01:48:38 +6519 6519 6520 651.9 1303.8000000000002 6519 1987-11-07 2024-10-11 01:48:39.000 1987-11-07 2024-10-11 01:48:39 +6521 6521 6522 652.1 1304.2 6521 1987-11-09 2024-10-11 01:48:41.000 1987-11-09 2024-10-11 01:48:41 +6522 6522 6523 652.2 1304.4 6522 1987-11-10 2024-10-11 01:48:42.000 1987-11-10 2024-10-11 01:48:42 +6523 6523 6524 652.3 1304.6000000000001 6523 1987-11-11 2024-10-11 01:48:43.000 1987-11-11 2024-10-11 01:48:43 +6524 6524 6525 652.4 1304.8000000000002 6524 1987-11-12 2024-10-11 01:48:44.000 1987-11-12 2024-10-11 01:48:44 +6526 6526 6527 652.6 1305.2 6526 1987-11-14 2024-10-11 01:48:46.000 1987-11-14 2024-10-11 01:48:46 +6527 6527 6528 652.7 1305.4 6527 1987-11-15 2024-10-11 01:48:47.000 1987-11-15 2024-10-11 01:48:47 +6528 6528 6529 652.8 1305.6000000000001 6528 1987-11-16 2024-10-11 01:48:48.000 1987-11-16 2024-10-11 01:48:48 +6529 6529 6530 652.9 1305.8000000000002 6529 1987-11-17 2024-10-11 01:48:49.000 1987-11-17 2024-10-11 01:48:49 +6531 6531 6532 653.1 1306.2 6531 1987-11-19 2024-10-11 01:48:51.000 1987-11-19 2024-10-11 01:48:51 +6532 6532 6533 653.2 1306.4 6532 1987-11-20 2024-10-11 01:48:52.000 1987-11-20 2024-10-11 01:48:52 +6533 6533 6534 653.3 1306.6000000000001 6533 1987-11-21 2024-10-11 01:48:53.000 1987-11-21 2024-10-11 01:48:53 +6534 6534 6535 653.4 1306.8000000000002 6534 1987-11-22 2024-10-11 01:48:54.000 1987-11-22 2024-10-11 01:48:54 +6536 6536 6537 653.6 1307.2 6536 1987-11-24 2024-10-11 01:48:56.000 1987-11-24 2024-10-11 01:48:56 +6537 6537 6538 653.7 1307.4 6537 1987-11-25 2024-10-11 01:48:57.000 1987-11-25 2024-10-11 01:48:57 +6538 6538 6539 653.8 1307.6000000000001 6538 1987-11-26 2024-10-11 01:48:58.000 1987-11-26 2024-10-11 01:48:58 +6539 6539 6540 653.9 1307.8000000000002 6539 1987-11-27 2024-10-11 01:48:59.000 1987-11-27 2024-10-11 01:48:59 +6541 6541 6542 654.1 1308.2 6541 1987-11-29 2024-10-11 01:49:01.000 1987-11-29 2024-10-11 01:49:01 +6542 6542 6543 654.2 1308.4 6542 1987-11-30 2024-10-11 01:49:02.000 1987-11-30 2024-10-11 01:49:02 +6543 6543 6544 654.3 1308.6000000000001 6543 1987-12-01 2024-10-11 01:49:03.000 1987-12-01 2024-10-11 01:49:03 +6544 6544 6545 654.4 1308.8000000000002 6544 1987-12-02 2024-10-11 01:49:04.000 1987-12-02 2024-10-11 01:49:04 +6546 6546 6547 654.6 1309.2 6546 1987-12-04 2024-10-11 01:49:06.000 1987-12-04 2024-10-11 01:49:06 +6547 6547 6548 654.7 1309.4 6547 1987-12-05 2024-10-11 01:49:07.000 1987-12-05 2024-10-11 01:49:07 +6548 6548 6549 654.8 1309.6000000000001 6548 1987-12-06 2024-10-11 01:49:08.000 1987-12-06 2024-10-11 01:49:08 +6549 6549 6550 654.9 1309.8000000000002 6549 1987-12-07 2024-10-11 01:49:09.000 1987-12-07 2024-10-11 01:49:09 +6551 6551 6552 655.1 1310.2 6551 1987-12-09 2024-10-11 01:49:11.000 1987-12-09 2024-10-11 01:49:11 +6552 6552 6553 655.2 1310.4 6552 1987-12-10 2024-10-11 01:49:12.000 1987-12-10 2024-10-11 01:49:12 +6553 6553 6554 655.3 1310.6000000000001 6553 1987-12-11 2024-10-11 01:49:13.000 1987-12-11 2024-10-11 01:49:13 +6554 6554 6555 655.4 1310.8000000000002 6554 1987-12-12 2024-10-11 01:49:14.000 1987-12-12 2024-10-11 01:49:14 +6556 6556 6557 655.6 1311.2 6556 1987-12-14 2024-10-11 01:49:16.000 1987-12-14 2024-10-11 01:49:16 +6557 6557 6558 655.7 1311.4 6557 1987-12-15 2024-10-11 01:49:17.000 1987-12-15 2024-10-11 01:49:17 +6558 6558 6559 655.8 1311.6000000000001 6558 1987-12-16 2024-10-11 01:49:18.000 1987-12-16 2024-10-11 01:49:18 +6559 6559 6560 655.9 1311.8000000000002 6559 1987-12-17 2024-10-11 01:49:19.000 1987-12-17 2024-10-11 01:49:19 +6561 6561 6562 656.1 1312.2 6561 1987-12-19 2024-10-11 01:49:21.000 1987-12-19 2024-10-11 01:49:21 +6562 6562 6563 656.2 1312.4 6562 1987-12-20 2024-10-11 01:49:22.000 1987-12-20 2024-10-11 01:49:22 +6563 6563 6564 656.3 1312.6000000000001 6563 1987-12-21 2024-10-11 01:49:23.000 1987-12-21 2024-10-11 01:49:23 +6564 6564 6565 656.4 1312.8000000000002 6564 1987-12-22 2024-10-11 01:49:24.000 1987-12-22 2024-10-11 01:49:24 +6566 6566 6567 656.6 1313.2 6566 1987-12-24 2024-10-11 01:49:26.000 1987-12-24 2024-10-11 01:49:26 +6567 6567 6568 656.7 1313.4 6567 1987-12-25 2024-10-11 01:49:27.000 1987-12-25 2024-10-11 01:49:27 +6568 6568 6569 656.8 1313.6000000000001 6568 1987-12-26 2024-10-11 01:49:28.000 1987-12-26 2024-10-11 01:49:28 +6569 6569 6570 656.9 1313.8000000000002 6569 1987-12-27 2024-10-11 01:49:29.000 1987-12-27 2024-10-11 01:49:29 +6571 6571 6572 657.1 1314.2 6571 1987-12-29 2024-10-11 01:49:31.000 1987-12-29 2024-10-11 01:49:31 +6572 6572 6573 657.2 1314.4 6572 1987-12-30 2024-10-11 01:49:32.000 1987-12-30 2024-10-11 01:49:32 +6573 6573 6574 657.3 1314.6000000000001 6573 1987-12-31 2024-10-11 01:49:33.000 1987-12-31 2024-10-11 01:49:33 +6574 6574 6575 657.4 1314.8000000000002 6574 1988-01-01 2024-10-11 01:49:34.000 1988-01-01 2024-10-11 01:49:34 +6576 6576 6577 657.6 1315.2 6576 1988-01-03 2024-10-11 01:49:36.000 1988-01-03 2024-10-11 01:49:36 +6577 6577 6578 657.7 1315.4 6577 1988-01-04 2024-10-11 01:49:37.000 1988-01-04 2024-10-11 01:49:37 +6578 6578 6579 657.8 1315.6000000000001 6578 1988-01-05 2024-10-11 01:49:38.000 1988-01-05 2024-10-11 01:49:38 +6579 6579 6580 657.9 1315.8000000000002 6579 1988-01-06 2024-10-11 01:49:39.000 1988-01-06 2024-10-11 01:49:39 +6581 6581 6582 658.1 1316.2 6581 1988-01-08 2024-10-11 01:49:41.000 1988-01-08 2024-10-11 01:49:41 +6582 6582 6583 658.2 1316.4 6582 1988-01-09 2024-10-11 01:49:42.000 1988-01-09 2024-10-11 01:49:42 +6583 6583 6584 658.3 1316.6000000000001 6583 1988-01-10 2024-10-11 01:49:43.000 1988-01-10 2024-10-11 01:49:43 +6584 6584 6585 658.4 1316.8000000000002 6584 1988-01-11 2024-10-11 01:49:44.000 1988-01-11 2024-10-11 01:49:44 +6586 6586 6587 658.6 1317.2 6586 1988-01-13 2024-10-11 01:49:46.000 1988-01-13 2024-10-11 01:49:46 +6587 6587 6588 658.7 1317.4 6587 1988-01-14 2024-10-11 01:49:47.000 1988-01-14 2024-10-11 01:49:47 +6588 6588 6589 658.8 1317.6000000000001 6588 1988-01-15 2024-10-11 01:49:48.000 1988-01-15 2024-10-11 01:49:48 +6589 6589 6590 658.9 1317.8000000000002 6589 1988-01-16 2024-10-11 01:49:49.000 1988-01-16 2024-10-11 01:49:49 +6591 6591 6592 659.1 1318.2 6591 1988-01-18 2024-10-11 01:49:51.000 1988-01-18 2024-10-11 01:49:51 +6592 6592 6593 659.2 1318.4 6592 1988-01-19 2024-10-11 01:49:52.000 1988-01-19 2024-10-11 01:49:52 +6593 6593 6594 659.3 1318.6000000000001 6593 1988-01-20 2024-10-11 01:49:53.000 1988-01-20 2024-10-11 01:49:53 +6594 6594 6595 659.4 1318.8000000000002 6594 1988-01-21 2024-10-11 01:49:54.000 1988-01-21 2024-10-11 01:49:54 +6596 6596 6597 659.6 1319.2 6596 1988-01-23 2024-10-11 01:49:56.000 1988-01-23 2024-10-11 01:49:56 +6597 6597 6598 659.7 1319.4 6597 1988-01-24 2024-10-11 01:49:57.000 1988-01-24 2024-10-11 01:49:57 +6598 6598 6599 659.8 1319.6000000000001 6598 1988-01-25 2024-10-11 01:49:58.000 1988-01-25 2024-10-11 01:49:58 +6599 6599 6600 659.9 1319.8000000000002 6599 1988-01-26 2024-10-11 01:49:59.000 1988-01-26 2024-10-11 01:49:59 +6601 6601 6602 660.1 1320.2 6601 1988-01-28 2024-10-11 01:50:01.000 1988-01-28 2024-10-11 01:50:01 +6602 6602 6603 660.2 1320.4 6602 1988-01-29 2024-10-11 01:50:02.000 1988-01-29 2024-10-11 01:50:02 +6603 6603 6604 660.3 1320.6000000000001 6603 1988-01-30 2024-10-11 01:50:03.000 1988-01-30 2024-10-11 01:50:03 +6604 6604 6605 660.4 1320.8000000000002 6604 1988-01-31 2024-10-11 01:50:04.000 1988-01-31 2024-10-11 01:50:04 +6606 6606 6607 660.6 1321.2 6606 1988-02-02 2024-10-11 01:50:06.000 1988-02-02 2024-10-11 01:50:06 +6607 6607 6608 660.7 1321.4 6607 1988-02-03 2024-10-11 01:50:07.000 1988-02-03 2024-10-11 01:50:07 +6608 6608 6609 660.8 1321.6000000000001 6608 1988-02-04 2024-10-11 01:50:08.000 1988-02-04 2024-10-11 01:50:08 +6609 6609 6610 660.9 1321.8000000000002 6609 1988-02-05 2024-10-11 01:50:09.000 1988-02-05 2024-10-11 01:50:09 +6611 6611 6612 661.1 1322.2 6611 1988-02-07 2024-10-11 01:50:11.000 1988-02-07 2024-10-11 01:50:11 +6612 6612 6613 661.2 1322.4 6612 1988-02-08 2024-10-11 01:50:12.000 1988-02-08 2024-10-11 01:50:12 +6613 6613 6614 661.3 1322.6000000000001 6613 1988-02-09 2024-10-11 01:50:13.000 1988-02-09 2024-10-11 01:50:13 +6614 6614 6615 661.4 1322.8000000000002 6614 1988-02-10 2024-10-11 01:50:14.000 1988-02-10 2024-10-11 01:50:14 +6616 6616 6617 661.6 1323.2 6616 1988-02-12 2024-10-11 01:50:16.000 1988-02-12 2024-10-11 01:50:16 +6617 6617 6618 661.7 1323.4 6617 1988-02-13 2024-10-11 01:50:17.000 1988-02-13 2024-10-11 01:50:17 +6618 6618 6619 661.8 1323.6000000000001 6618 1988-02-14 2024-10-11 01:50:18.000 1988-02-14 2024-10-11 01:50:18 +6619 6619 6620 661.9 1323.8000000000002 6619 1988-02-15 2024-10-11 01:50:19.000 1988-02-15 2024-10-11 01:50:19 +6621 6621 6622 662.1 1324.2 6621 1988-02-17 2024-10-11 01:50:21.000 1988-02-17 2024-10-11 01:50:21 +6622 6622 6623 662.2 1324.4 6622 1988-02-18 2024-10-11 01:50:22.000 1988-02-18 2024-10-11 01:50:22 +6623 6623 6624 662.3 1324.6000000000001 6623 1988-02-19 2024-10-11 01:50:23.000 1988-02-19 2024-10-11 01:50:23 +6624 6624 6625 662.4 1324.8000000000002 6624 1988-02-20 2024-10-11 01:50:24.000 1988-02-20 2024-10-11 01:50:24 +6626 6626 6627 662.6 1325.2 6626 1988-02-22 2024-10-11 01:50:26.000 1988-02-22 2024-10-11 01:50:26 +6627 6627 6628 662.7 1325.4 6627 1988-02-23 2024-10-11 01:50:27.000 1988-02-23 2024-10-11 01:50:27 +6628 6628 6629 662.8 1325.6000000000001 6628 1988-02-24 2024-10-11 01:50:28.000 1988-02-24 2024-10-11 01:50:28 +6629 6629 6630 662.9 1325.8000000000002 6629 1988-02-25 2024-10-11 01:50:29.000 1988-02-25 2024-10-11 01:50:29 +6631 6631 6632 663.1 1326.2 6631 1988-02-27 2024-10-11 01:50:31.000 1988-02-27 2024-10-11 01:50:31 +6632 6632 6633 663.2 1326.4 6632 1988-02-28 2024-10-11 01:50:32.000 1988-02-28 2024-10-11 01:50:32 +6633 6633 6634 663.3 1326.6000000000001 6633 1988-02-29 2024-10-11 01:50:33.000 1988-02-29 2024-10-11 01:50:33 +6634 6634 6635 663.4 1326.8000000000002 6634 1988-03-01 2024-10-11 01:50:34.000 1988-03-01 2024-10-11 01:50:34 +6636 6636 6637 663.6 1327.2 6636 1988-03-03 2024-10-11 01:50:36.000 1988-03-03 2024-10-11 01:50:36 +6637 6637 6638 663.7 1327.4 6637 1988-03-04 2024-10-11 01:50:37.000 1988-03-04 2024-10-11 01:50:37 +6638 6638 6639 663.8 1327.6000000000001 6638 1988-03-05 2024-10-11 01:50:38.000 1988-03-05 2024-10-11 01:50:38 +6639 6639 6640 663.9 1327.8000000000002 6639 1988-03-06 2024-10-11 01:50:39.000 1988-03-06 2024-10-11 01:50:39 +6641 6641 6642 664.1 1328.2 6641 1988-03-08 2024-10-11 01:50:41.000 1988-03-08 2024-10-11 01:50:41 +6642 6642 6643 664.2 1328.4 6642 1988-03-09 2024-10-11 01:50:42.000 1988-03-09 2024-10-11 01:50:42 +6643 6643 6644 664.3 1328.6000000000001 6643 1988-03-10 2024-10-11 01:50:43.000 1988-03-10 2024-10-11 01:50:43 +6644 6644 6645 664.4 1328.8000000000002 6644 1988-03-11 2024-10-11 01:50:44.000 1988-03-11 2024-10-11 01:50:44 +6646 6646 6647 664.6 1329.2 6646 1988-03-13 2024-10-11 01:50:46.000 1988-03-13 2024-10-11 01:50:46 +6647 6647 6648 664.7 1329.4 6647 1988-03-14 2024-10-11 01:50:47.000 1988-03-14 2024-10-11 01:50:47 +6648 6648 6649 664.8 1329.6000000000001 6648 1988-03-15 2024-10-11 01:50:48.000 1988-03-15 2024-10-11 01:50:48 +6649 6649 6650 664.9 1329.8000000000002 6649 1988-03-16 2024-10-11 01:50:49.000 1988-03-16 2024-10-11 01:50:49 +6651 6651 6652 665.1 1330.2 6651 1988-03-18 2024-10-11 01:50:51.000 1988-03-18 2024-10-11 01:50:51 +6652 6652 6653 665.2 1330.4 6652 1988-03-19 2024-10-11 01:50:52.000 1988-03-19 2024-10-11 01:50:52 +6653 6653 6654 665.3 1330.6000000000001 6653 1988-03-20 2024-10-11 01:50:53.000 1988-03-20 2024-10-11 01:50:53 +6654 6654 6655 665.4 1330.8000000000002 6654 1988-03-21 2024-10-11 01:50:54.000 1988-03-21 2024-10-11 01:50:54 +6656 6656 6657 665.6 1331.2 6656 1988-03-23 2024-10-11 01:50:56.000 1988-03-23 2024-10-11 01:50:56 +6657 6657 6658 665.7 1331.4 6657 1988-03-24 2024-10-11 01:50:57.000 1988-03-24 2024-10-11 01:50:57 +6658 6658 6659 665.8 1331.6000000000001 6658 1988-03-25 2024-10-11 01:50:58.000 1988-03-25 2024-10-11 01:50:58 +6659 6659 6660 665.9 1331.8000000000002 6659 1988-03-26 2024-10-11 01:50:59.000 1988-03-26 2024-10-11 01:50:59 +6661 6661 6662 666.1 1332.2 6661 1988-03-28 2024-10-11 01:51:01.000 1988-03-28 2024-10-11 01:51:01 +6662 6662 6663 666.2 1332.4 6662 1988-03-29 2024-10-11 01:51:02.000 1988-03-29 2024-10-11 01:51:02 +6663 6663 6664 666.3 1332.6000000000001 6663 1988-03-30 2024-10-11 01:51:03.000 1988-03-30 2024-10-11 01:51:03 +6664 6664 6665 666.4 1332.8000000000002 6664 1988-03-31 2024-10-11 01:51:04.000 1988-03-31 2024-10-11 01:51:04 +6666 6666 6667 666.6 1333.2 6666 1988-04-02 2024-10-11 01:51:06.000 1988-04-02 2024-10-11 01:51:06 +6667 6667 6668 666.7 1333.4 6667 1988-04-03 2024-10-11 01:51:07.000 1988-04-03 2024-10-11 01:51:07 +6668 6668 6669 666.8 1333.6000000000001 6668 1988-04-04 2024-10-11 01:51:08.000 1988-04-04 2024-10-11 01:51:08 +6669 6669 6670 666.9 1333.8000000000002 6669 1988-04-05 2024-10-11 01:51:09.000 1988-04-05 2024-10-11 01:51:09 +6671 6671 6672 667.1 1334.2 6671 1988-04-07 2024-10-11 01:51:11.000 1988-04-07 2024-10-11 01:51:11 +6672 6672 6673 667.2 1334.4 6672 1988-04-08 2024-10-11 01:51:12.000 1988-04-08 2024-10-11 01:51:12 +6673 6673 6674 667.3 1334.6000000000001 6673 1988-04-09 2024-10-11 01:51:13.000 1988-04-09 2024-10-11 01:51:13 +6674 6674 6675 667.4 1334.8000000000002 6674 1988-04-10 2024-10-11 01:51:14.000 1988-04-10 2024-10-11 01:51:14 +6676 6676 6677 667.6 1335.2 6676 1988-04-12 2024-10-11 01:51:16.000 1988-04-12 2024-10-11 01:51:16 +6677 6677 6678 667.7 1335.4 6677 1988-04-13 2024-10-11 01:51:17.000 1988-04-13 2024-10-11 01:51:17 +6678 6678 6679 667.8 1335.6000000000001 6678 1988-04-14 2024-10-11 01:51:18.000 1988-04-14 2024-10-11 01:51:18 +6679 6679 6680 667.9 1335.8000000000002 6679 1988-04-15 2024-10-11 01:51:19.000 1988-04-15 2024-10-11 01:51:19 +6681 6681 6682 668.1 1336.2 6681 1988-04-17 2024-10-11 01:51:21.000 1988-04-17 2024-10-11 01:51:21 +6682 6682 6683 668.2 1336.4 6682 1988-04-18 2024-10-11 01:51:22.000 1988-04-18 2024-10-11 01:51:22 +6683 6683 6684 668.3 1336.6000000000001 6683 1988-04-19 2024-10-11 01:51:23.000 1988-04-19 2024-10-11 01:51:23 +6684 6684 6685 668.4 1336.8000000000002 6684 1988-04-20 2024-10-11 01:51:24.000 1988-04-20 2024-10-11 01:51:24 +6686 6686 6687 668.6 1337.2 6686 1988-04-22 2024-10-11 01:51:26.000 1988-04-22 2024-10-11 01:51:26 +6687 6687 6688 668.7 1337.4 6687 1988-04-23 2024-10-11 01:51:27.000 1988-04-23 2024-10-11 01:51:27 +6688 6688 6689 668.8 1337.6000000000001 6688 1988-04-24 2024-10-11 01:51:28.000 1988-04-24 2024-10-11 01:51:28 +6689 6689 6690 668.9 1337.8000000000002 6689 1988-04-25 2024-10-11 01:51:29.000 1988-04-25 2024-10-11 01:51:29 +6691 6691 6692 669.1 1338.2 6691 1988-04-27 2024-10-11 01:51:31.000 1988-04-27 2024-10-11 01:51:31 +6692 6692 6693 669.2 1338.4 6692 1988-04-28 2024-10-11 01:51:32.000 1988-04-28 2024-10-11 01:51:32 +6693 6693 6694 669.3 1338.6000000000001 6693 1988-04-29 2024-10-11 01:51:33.000 1988-04-29 2024-10-11 01:51:33 +6694 6694 6695 669.4 1338.8000000000002 6694 1988-04-30 2024-10-11 01:51:34.000 1988-04-30 2024-10-11 01:51:34 +6696 6696 6697 669.6 1339.2 6696 1988-05-02 2024-10-11 01:51:36.000 1988-05-02 2024-10-11 01:51:36 +6697 6697 6698 669.7 1339.4 6697 1988-05-03 2024-10-11 01:51:37.000 1988-05-03 2024-10-11 01:51:37 +6698 6698 6699 669.8 1339.6000000000001 6698 1988-05-04 2024-10-11 01:51:38.000 1988-05-04 2024-10-11 01:51:38 +6699 6699 6700 669.9 1339.8000000000002 6699 1988-05-05 2024-10-11 01:51:39.000 1988-05-05 2024-10-11 01:51:39 +6701 6701 6702 670.1 1340.2 6701 1988-05-07 2024-10-11 01:51:41.000 1988-05-07 2024-10-11 01:51:41 +6702 6702 6703 670.2 1340.4 6702 1988-05-08 2024-10-11 01:51:42.000 1988-05-08 2024-10-11 01:51:42 +6703 6703 6704 670.3 1340.6000000000001 6703 1988-05-09 2024-10-11 01:51:43.000 1988-05-09 2024-10-11 01:51:43 +6704 6704 6705 670.4 1340.8000000000002 6704 1988-05-10 2024-10-11 01:51:44.000 1988-05-10 2024-10-11 01:51:44 +6706 6706 6707 670.6 1341.2 6706 1988-05-12 2024-10-11 01:51:46.000 1988-05-12 2024-10-11 01:51:46 +6707 6707 6708 670.7 1341.4 6707 1988-05-13 2024-10-11 01:51:47.000 1988-05-13 2024-10-11 01:51:47 +6708 6708 6709 670.8 1341.6000000000001 6708 1988-05-14 2024-10-11 01:51:48.000 1988-05-14 2024-10-11 01:51:48 +6709 6709 6710 670.9 1341.8000000000002 6709 1988-05-15 2024-10-11 01:51:49.000 1988-05-15 2024-10-11 01:51:49 +6711 6711 6712 671.1 1342.2 6711 1988-05-17 2024-10-11 01:51:51.000 1988-05-17 2024-10-11 01:51:51 +6712 6712 6713 671.2 1342.4 6712 1988-05-18 2024-10-11 01:51:52.000 1988-05-18 2024-10-11 01:51:52 +6713 6713 6714 671.3 1342.6000000000001 6713 1988-05-19 2024-10-11 01:51:53.000 1988-05-19 2024-10-11 01:51:53 +6714 6714 6715 671.4 1342.8000000000002 6714 1988-05-20 2024-10-11 01:51:54.000 1988-05-20 2024-10-11 01:51:54 +6716 6716 6717 671.6 1343.2 6716 1988-05-22 2024-10-11 01:51:56.000 1988-05-22 2024-10-11 01:51:56 +6717 6717 6718 671.7 1343.4 6717 1988-05-23 2024-10-11 01:51:57.000 1988-05-23 2024-10-11 01:51:57 +6718 6718 6719 671.8 1343.6000000000001 6718 1988-05-24 2024-10-11 01:51:58.000 1988-05-24 2024-10-11 01:51:58 +6719 6719 6720 671.9 1343.8000000000002 6719 1988-05-25 2024-10-11 01:51:59.000 1988-05-25 2024-10-11 01:51:59 +6721 6721 6722 672.1 1344.2 6721 1988-05-27 2024-10-11 01:52:01.000 1988-05-27 2024-10-11 01:52:01 +6722 6722 6723 672.2 1344.4 6722 1988-05-28 2024-10-11 01:52:02.000 1988-05-28 2024-10-11 01:52:02 +6723 6723 6724 672.3 1344.6000000000001 6723 1988-05-29 2024-10-11 01:52:03.000 1988-05-29 2024-10-11 01:52:03 +6724 6724 6725 672.4 1344.8000000000002 6724 1988-05-30 2024-10-11 01:52:04.000 1988-05-30 2024-10-11 01:52:04 +6726 6726 6727 672.6 1345.2 6726 1988-06-01 2024-10-11 01:52:06.000 1988-06-01 2024-10-11 01:52:06 +6727 6727 6728 672.7 1345.4 6727 1988-06-02 2024-10-11 01:52:07.000 1988-06-02 2024-10-11 01:52:07 +6728 6728 6729 672.8 1345.6000000000001 6728 1988-06-03 2024-10-11 01:52:08.000 1988-06-03 2024-10-11 01:52:08 +6729 6729 6730 672.9 1345.8000000000002 6729 1988-06-04 2024-10-11 01:52:09.000 1988-06-04 2024-10-11 01:52:09 +6731 6731 6732 673.1 1346.2 6731 1988-06-06 2024-10-11 01:52:11.000 1988-06-06 2024-10-11 01:52:11 +6732 6732 6733 673.2 1346.4 6732 1988-06-07 2024-10-11 01:52:12.000 1988-06-07 2024-10-11 01:52:12 +6733 6733 6734 673.3 1346.6000000000001 6733 1988-06-08 2024-10-11 01:52:13.000 1988-06-08 2024-10-11 01:52:13 +6734 6734 6735 673.4 1346.8000000000002 6734 1988-06-09 2024-10-11 01:52:14.000 1988-06-09 2024-10-11 01:52:14 +6736 6736 6737 673.6 1347.2 6736 1988-06-11 2024-10-11 01:52:16.000 1988-06-11 2024-10-11 01:52:16 +6737 6737 6738 673.7 1347.4 6737 1988-06-12 2024-10-11 01:52:17.000 1988-06-12 2024-10-11 01:52:17 +6738 6738 6739 673.8 1347.6000000000001 6738 1988-06-13 2024-10-11 01:52:18.000 1988-06-13 2024-10-11 01:52:18 +6739 6739 6740 673.9 1347.8000000000002 6739 1988-06-14 2024-10-11 01:52:19.000 1988-06-14 2024-10-11 01:52:19 +6741 6741 6742 674.1 1348.2 6741 1988-06-16 2024-10-11 01:52:21.000 1988-06-16 2024-10-11 01:52:21 +6742 6742 6743 674.2 1348.4 6742 1988-06-17 2024-10-11 01:52:22.000 1988-06-17 2024-10-11 01:52:22 +6743 6743 6744 674.3 1348.6000000000001 6743 1988-06-18 2024-10-11 01:52:23.000 1988-06-18 2024-10-11 01:52:23 +6744 6744 6745 674.4 1348.8000000000002 6744 1988-06-19 2024-10-11 01:52:24.000 1988-06-19 2024-10-11 01:52:24 +6746 6746 6747 674.6 1349.2 6746 1988-06-21 2024-10-11 01:52:26.000 1988-06-21 2024-10-11 01:52:26 +6747 6747 6748 674.7 1349.4 6747 1988-06-22 2024-10-11 01:52:27.000 1988-06-22 2024-10-11 01:52:27 +6748 6748 6749 674.8 1349.6000000000001 6748 1988-06-23 2024-10-11 01:52:28.000 1988-06-23 2024-10-11 01:52:28 +6749 6749 6750 674.9 1349.8000000000002 6749 1988-06-24 2024-10-11 01:52:29.000 1988-06-24 2024-10-11 01:52:29 +6751 6751 6752 675.1 1350.2 6751 1988-06-26 2024-10-11 01:52:31.000 1988-06-26 2024-10-11 01:52:31 +6752 6752 6753 675.2 1350.4 6752 1988-06-27 2024-10-11 01:52:32.000 1988-06-27 2024-10-11 01:52:32 +6753 6753 6754 675.3 1350.6000000000001 6753 1988-06-28 2024-10-11 01:52:33.000 1988-06-28 2024-10-11 01:52:33 +6754 6754 6755 675.4 1350.8000000000002 6754 1988-06-29 2024-10-11 01:52:34.000 1988-06-29 2024-10-11 01:52:34 +6756 6756 6757 675.6 1351.2 6756 1988-07-01 2024-10-11 01:52:36.000 1988-07-01 2024-10-11 01:52:36 +6757 6757 6758 675.7 1351.4 6757 1988-07-02 2024-10-11 01:52:37.000 1988-07-02 2024-10-11 01:52:37 +6758 6758 6759 675.8 1351.6000000000001 6758 1988-07-03 2024-10-11 01:52:38.000 1988-07-03 2024-10-11 01:52:38 +6759 6759 6760 675.9 1351.8000000000002 6759 1988-07-04 2024-10-11 01:52:39.000 1988-07-04 2024-10-11 01:52:39 +6761 6761 6762 676.1 1352.2 6761 1988-07-06 2024-10-11 01:52:41.000 1988-07-06 2024-10-11 01:52:41 +6762 6762 6763 676.2 1352.4 6762 1988-07-07 2024-10-11 01:52:42.000 1988-07-07 2024-10-11 01:52:42 +6763 6763 6764 676.3 1352.6000000000001 6763 1988-07-08 2024-10-11 01:52:43.000 1988-07-08 2024-10-11 01:52:43 +6764 6764 6765 676.4 1352.8000000000002 6764 1988-07-09 2024-10-11 01:52:44.000 1988-07-09 2024-10-11 01:52:44 +6766 6766 6767 676.6 1353.2 6766 1988-07-11 2024-10-11 01:52:46.000 1988-07-11 2024-10-11 01:52:46 +6767 6767 6768 676.7 1353.4 6767 1988-07-12 2024-10-11 01:52:47.000 1988-07-12 2024-10-11 01:52:47 +6768 6768 6769 676.8 1353.6000000000001 6768 1988-07-13 2024-10-11 01:52:48.000 1988-07-13 2024-10-11 01:52:48 +6769 6769 6770 676.9 1353.8000000000002 6769 1988-07-14 2024-10-11 01:52:49.000 1988-07-14 2024-10-11 01:52:49 +6771 6771 6772 677.1 1354.2 6771 1988-07-16 2024-10-11 01:52:51.000 1988-07-16 2024-10-11 01:52:51 +6772 6772 6773 677.2 1354.4 6772 1988-07-17 2024-10-11 01:52:52.000 1988-07-17 2024-10-11 01:52:52 +6773 6773 6774 677.3 1354.6000000000001 6773 1988-07-18 2024-10-11 01:52:53.000 1988-07-18 2024-10-11 01:52:53 +6774 6774 6775 677.4 1354.8000000000002 6774 1988-07-19 2024-10-11 01:52:54.000 1988-07-19 2024-10-11 01:52:54 +6776 6776 6777 677.6 1355.2 6776 1988-07-21 2024-10-11 01:52:56.000 1988-07-21 2024-10-11 01:52:56 +6777 6777 6778 677.7 1355.4 6777 1988-07-22 2024-10-11 01:52:57.000 1988-07-22 2024-10-11 01:52:57 +6778 6778 6779 677.8 1355.6000000000001 6778 1988-07-23 2024-10-11 01:52:58.000 1988-07-23 2024-10-11 01:52:58 +6779 6779 6780 677.9 1355.8000000000002 6779 1988-07-24 2024-10-11 01:52:59.000 1988-07-24 2024-10-11 01:52:59 +6781 6781 6782 678.1 1356.2 6781 1988-07-26 2024-10-11 01:53:01.000 1988-07-26 2024-10-11 01:53:01 +6782 6782 6783 678.2 1356.4 6782 1988-07-27 2024-10-11 01:53:02.000 1988-07-27 2024-10-11 01:53:02 +6783 6783 6784 678.3 1356.6000000000001 6783 1988-07-28 2024-10-11 01:53:03.000 1988-07-28 2024-10-11 01:53:03 +6784 6784 6785 678.4 1356.8000000000002 6784 1988-07-29 2024-10-11 01:53:04.000 1988-07-29 2024-10-11 01:53:04 +6786 6786 6787 678.6 1357.2 6786 1988-07-31 2024-10-11 01:53:06.000 1988-07-31 2024-10-11 01:53:06 +6787 6787 6788 678.7 1357.4 6787 1988-08-01 2024-10-11 01:53:07.000 1988-08-01 2024-10-11 01:53:07 +6788 6788 6789 678.8 1357.6000000000001 6788 1988-08-02 2024-10-11 01:53:08.000 1988-08-02 2024-10-11 01:53:08 +6789 6789 6790 678.9 1357.8000000000002 6789 1988-08-03 2024-10-11 01:53:09.000 1988-08-03 2024-10-11 01:53:09 +6791 6791 6792 679.1 1358.2 6791 1988-08-05 2024-10-11 01:53:11.000 1988-08-05 2024-10-11 01:53:11 +6792 6792 6793 679.2 1358.4 6792 1988-08-06 2024-10-11 01:53:12.000 1988-08-06 2024-10-11 01:53:12 +6793 6793 6794 679.3 1358.6000000000001 6793 1988-08-07 2024-10-11 01:53:13.000 1988-08-07 2024-10-11 01:53:13 +6794 6794 6795 679.4 1358.8000000000002 6794 1988-08-08 2024-10-11 01:53:14.000 1988-08-08 2024-10-11 01:53:14 +6796 6796 6797 679.6 1359.2 6796 1988-08-10 2024-10-11 01:53:16.000 1988-08-10 2024-10-11 01:53:16 +6797 6797 6798 679.7 1359.4 6797 1988-08-11 2024-10-11 01:53:17.000 1988-08-11 2024-10-11 01:53:17 +6798 6798 6799 679.8 1359.6000000000001 6798 1988-08-12 2024-10-11 01:53:18.000 1988-08-12 2024-10-11 01:53:18 +6799 6799 6800 679.9 1359.8000000000002 6799 1988-08-13 2024-10-11 01:53:19.000 1988-08-13 2024-10-11 01:53:19 +6801 6801 6802 680.1 1360.2 6801 1988-08-15 2024-10-11 01:53:21.000 1988-08-15 2024-10-11 01:53:21 +6802 6802 6803 680.2 1360.4 6802 1988-08-16 2024-10-11 01:53:22.000 1988-08-16 2024-10-11 01:53:22 +6803 6803 6804 680.3 1360.6000000000001 6803 1988-08-17 2024-10-11 01:53:23.000 1988-08-17 2024-10-11 01:53:23 +6804 6804 6805 680.4 1360.8000000000002 6804 1988-08-18 2024-10-11 01:53:24.000 1988-08-18 2024-10-11 01:53:24 +6806 6806 6807 680.6 1361.2 6806 1988-08-20 2024-10-11 01:53:26.000 1988-08-20 2024-10-11 01:53:26 +6807 6807 6808 680.7 1361.4 6807 1988-08-21 2024-10-11 01:53:27.000 1988-08-21 2024-10-11 01:53:27 +6808 6808 6809 680.8 1361.6000000000001 6808 1988-08-22 2024-10-11 01:53:28.000 1988-08-22 2024-10-11 01:53:28 +6809 6809 6810 680.9 1361.8000000000002 6809 1988-08-23 2024-10-11 01:53:29.000 1988-08-23 2024-10-11 01:53:29 +6811 6811 6812 681.1 1362.2 6811 1988-08-25 2024-10-11 01:53:31.000 1988-08-25 2024-10-11 01:53:31 +6812 6812 6813 681.2 1362.4 6812 1988-08-26 2024-10-11 01:53:32.000 1988-08-26 2024-10-11 01:53:32 +6813 6813 6814 681.3 1362.6000000000001 6813 1988-08-27 2024-10-11 01:53:33.000 1988-08-27 2024-10-11 01:53:33 +6814 6814 6815 681.4 1362.8000000000002 6814 1988-08-28 2024-10-11 01:53:34.000 1988-08-28 2024-10-11 01:53:34 +6816 6816 6817 681.6 1363.2 6816 1988-08-30 2024-10-11 01:53:36.000 1988-08-30 2024-10-11 01:53:36 +6817 6817 6818 681.7 1363.4 6817 1988-08-31 2024-10-11 01:53:37.000 1988-08-31 2024-10-11 01:53:37 +6818 6818 6819 681.8 1363.6000000000001 6818 1988-09-01 2024-10-11 01:53:38.000 1988-09-01 2024-10-11 01:53:38 +6819 6819 6820 681.9 1363.8000000000002 6819 1988-09-02 2024-10-11 01:53:39.000 1988-09-02 2024-10-11 01:53:39 +6821 6821 6822 682.1 1364.2 6821 1988-09-04 2024-10-11 01:53:41.000 1988-09-04 2024-10-11 01:53:41 +6822 6822 6823 682.2 1364.4 6822 1988-09-05 2024-10-11 01:53:42.000 1988-09-05 2024-10-11 01:53:42 +6823 6823 6824 682.3 1364.6000000000001 6823 1988-09-06 2024-10-11 01:53:43.000 1988-09-06 2024-10-11 01:53:43 +6824 6824 6825 682.4 1364.8000000000002 6824 1988-09-07 2024-10-11 01:53:44.000 1988-09-07 2024-10-11 01:53:44 +6826 6826 6827 682.6 1365.2 6826 1988-09-09 2024-10-11 01:53:46.000 1988-09-09 2024-10-11 01:53:46 +6827 6827 6828 682.7 1365.4 6827 1988-09-10 2024-10-11 01:53:47.000 1988-09-10 2024-10-11 01:53:47 +6828 6828 6829 682.8 1365.6000000000001 6828 1988-09-11 2024-10-11 01:53:48.000 1988-09-11 2024-10-11 01:53:48 +6829 6829 6830 682.9 1365.8000000000002 6829 1988-09-12 2024-10-11 01:53:49.000 1988-09-12 2024-10-11 01:53:49 +6831 6831 6832 683.1 1366.2 6831 1988-09-14 2024-10-11 01:53:51.000 1988-09-14 2024-10-11 01:53:51 +6832 6832 6833 683.2 1366.4 6832 1988-09-15 2024-10-11 01:53:52.000 1988-09-15 2024-10-11 01:53:52 +6833 6833 6834 683.3 1366.6000000000001 6833 1988-09-16 2024-10-11 01:53:53.000 1988-09-16 2024-10-11 01:53:53 +6834 6834 6835 683.4 1366.8000000000002 6834 1988-09-17 2024-10-11 01:53:54.000 1988-09-17 2024-10-11 01:53:54 +6836 6836 6837 683.6 1367.2 6836 1988-09-19 2024-10-11 01:53:56.000 1988-09-19 2024-10-11 01:53:56 +6837 6837 6838 683.7 1367.4 6837 1988-09-20 2024-10-11 01:53:57.000 1988-09-20 2024-10-11 01:53:57 +6838 6838 6839 683.8 1367.6000000000001 6838 1988-09-21 2024-10-11 01:53:58.000 1988-09-21 2024-10-11 01:53:58 +6839 6839 6840 683.9 1367.8000000000002 6839 1988-09-22 2024-10-11 01:53:59.000 1988-09-22 2024-10-11 01:53:59 +6841 6841 6842 684.1 1368.2 6841 1988-09-24 2024-10-11 01:54:01.000 1988-09-24 2024-10-11 01:54:01 +6842 6842 6843 684.2 1368.4 6842 1988-09-25 2024-10-11 01:54:02.000 1988-09-25 2024-10-11 01:54:02 +6843 6843 6844 684.3 1368.6000000000001 6843 1988-09-26 2024-10-11 01:54:03.000 1988-09-26 2024-10-11 01:54:03 +6844 6844 6845 684.4 1368.8000000000002 6844 1988-09-27 2024-10-11 01:54:04.000 1988-09-27 2024-10-11 01:54:04 +6846 6846 6847 684.6 1369.2 6846 1988-09-29 2024-10-11 01:54:06.000 1988-09-29 2024-10-11 01:54:06 +6847 6847 6848 684.7 1369.4 6847 1988-09-30 2024-10-11 01:54:07.000 1988-09-30 2024-10-11 01:54:07 +6848 6848 6849 684.8 1369.6000000000001 6848 1988-10-01 2024-10-11 01:54:08.000 1988-10-01 2024-10-11 01:54:08 +6849 6849 6850 684.9 1369.8000000000002 6849 1988-10-02 2024-10-11 01:54:09.000 1988-10-02 2024-10-11 01:54:09 +6851 6851 6852 685.1 1370.2 6851 1988-10-04 2024-10-11 01:54:11.000 1988-10-04 2024-10-11 01:54:11 +6852 6852 6853 685.2 1370.4 6852 1988-10-05 2024-10-11 01:54:12.000 1988-10-05 2024-10-11 01:54:12 +6853 6853 6854 685.3 1370.6000000000001 6853 1988-10-06 2024-10-11 01:54:13.000 1988-10-06 2024-10-11 01:54:13 +6854 6854 6855 685.4 1370.8000000000002 6854 1988-10-07 2024-10-11 01:54:14.000 1988-10-07 2024-10-11 01:54:14 +6856 6856 6857 685.6 1371.2 6856 1988-10-09 2024-10-11 01:54:16.000 1988-10-09 2024-10-11 01:54:16 +6857 6857 6858 685.7 1371.4 6857 1988-10-10 2024-10-11 01:54:17.000 1988-10-10 2024-10-11 01:54:17 +6858 6858 6859 685.8 1371.6000000000001 6858 1988-10-11 2024-10-11 01:54:18.000 1988-10-11 2024-10-11 01:54:18 +6859 6859 6860 685.9 1371.8000000000002 6859 1988-10-12 2024-10-11 01:54:19.000 1988-10-12 2024-10-11 01:54:19 +6861 6861 6862 686.1 1372.2 6861 1988-10-14 2024-10-11 01:54:21.000 1988-10-14 2024-10-11 01:54:21 +6862 6862 6863 686.2 1372.4 6862 1988-10-15 2024-10-11 01:54:22.000 1988-10-15 2024-10-11 01:54:22 +6863 6863 6864 686.3 1372.6000000000001 6863 1988-10-16 2024-10-11 01:54:23.000 1988-10-16 2024-10-11 01:54:23 +6864 6864 6865 686.4 1372.8000000000002 6864 1988-10-17 2024-10-11 01:54:24.000 1988-10-17 2024-10-11 01:54:24 +6866 6866 6867 686.6 1373.2 6866 1988-10-19 2024-10-11 01:54:26.000 1988-10-19 2024-10-11 01:54:26 +6867 6867 6868 686.7 1373.4 6867 1988-10-20 2024-10-11 01:54:27.000 1988-10-20 2024-10-11 01:54:27 +6868 6868 6869 686.8 1373.6000000000001 6868 1988-10-21 2024-10-11 01:54:28.000 1988-10-21 2024-10-11 01:54:28 +6869 6869 6870 686.9 1373.8000000000002 6869 1988-10-22 2024-10-11 01:54:29.000 1988-10-22 2024-10-11 01:54:29 +6871 6871 6872 687.1 1374.2 6871 1988-10-24 2024-10-11 01:54:31.000 1988-10-24 2024-10-11 01:54:31 +6872 6872 6873 687.2 1374.4 6872 1988-10-25 2024-10-11 01:54:32.000 1988-10-25 2024-10-11 01:54:32 +6873 6873 6874 687.3 1374.6000000000001 6873 1988-10-26 2024-10-11 01:54:33.000 1988-10-26 2024-10-11 01:54:33 +6874 6874 6875 687.4 1374.8000000000002 6874 1988-10-27 2024-10-11 01:54:34.000 1988-10-27 2024-10-11 01:54:34 +6876 6876 6877 687.6 1375.2 6876 1988-10-29 2024-10-11 01:54:36.000 1988-10-29 2024-10-11 01:54:36 +6877 6877 6878 687.7 1375.4 6877 1988-10-30 2024-10-11 01:54:37.000 1988-10-30 2024-10-11 01:54:37 +6878 6878 6879 687.8 1375.6000000000001 6878 1988-10-31 2024-10-11 01:54:38.000 1988-10-31 2024-10-11 01:54:38 +6879 6879 6880 687.9 1375.8000000000002 6879 1988-11-01 2024-10-11 01:54:39.000 1988-11-01 2024-10-11 01:54:39 +6881 6881 6882 688.1 1376.2 6881 1988-11-03 2024-10-11 01:54:41.000 1988-11-03 2024-10-11 01:54:41 +6882 6882 6883 688.2 1376.4 6882 1988-11-04 2024-10-11 01:54:42.000 1988-11-04 2024-10-11 01:54:42 +6883 6883 6884 688.3 1376.6000000000001 6883 1988-11-05 2024-10-11 01:54:43.000 1988-11-05 2024-10-11 01:54:43 +6884 6884 6885 688.4 1376.8000000000002 6884 1988-11-06 2024-10-11 01:54:44.000 1988-11-06 2024-10-11 01:54:44 +6886 6886 6887 688.6 1377.2 6886 1988-11-08 2024-10-11 01:54:46.000 1988-11-08 2024-10-11 01:54:46 +6887 6887 6888 688.7 1377.4 6887 1988-11-09 2024-10-11 01:54:47.000 1988-11-09 2024-10-11 01:54:47 +6888 6888 6889 688.8 1377.6000000000001 6888 1988-11-10 2024-10-11 01:54:48.000 1988-11-10 2024-10-11 01:54:48 +6889 6889 6890 688.9 1377.8000000000002 6889 1988-11-11 2024-10-11 01:54:49.000 1988-11-11 2024-10-11 01:54:49 +6891 6891 6892 689.1 1378.2 6891 1988-11-13 2024-10-11 01:54:51.000 1988-11-13 2024-10-11 01:54:51 +6892 6892 6893 689.2 1378.4 6892 1988-11-14 2024-10-11 01:54:52.000 1988-11-14 2024-10-11 01:54:52 +6893 6893 6894 689.3 1378.6000000000001 6893 1988-11-15 2024-10-11 01:54:53.000 1988-11-15 2024-10-11 01:54:53 +6894 6894 6895 689.4 1378.8000000000002 6894 1988-11-16 2024-10-11 01:54:54.000 1988-11-16 2024-10-11 01:54:54 +6896 6896 6897 689.6 1379.2 6896 1988-11-18 2024-10-11 01:54:56.000 1988-11-18 2024-10-11 01:54:56 +6897 6897 6898 689.7 1379.4 6897 1988-11-19 2024-10-11 01:54:57.000 1988-11-19 2024-10-11 01:54:57 +6898 6898 6899 689.8 1379.6000000000001 6898 1988-11-20 2024-10-11 01:54:58.000 1988-11-20 2024-10-11 01:54:58 +6899 6899 6900 689.9 1379.8000000000002 6899 1988-11-21 2024-10-11 01:54:59.000 1988-11-21 2024-10-11 01:54:59 +6901 6901 6902 690.1 1380.2 6901 1988-11-23 2024-10-11 01:55:01.000 1988-11-23 2024-10-11 01:55:01 +6902 6902 6903 690.2 1380.4 6902 1988-11-24 2024-10-11 01:55:02.000 1988-11-24 2024-10-11 01:55:02 +6903 6903 6904 690.3 1380.6000000000001 6903 1988-11-25 2024-10-11 01:55:03.000 1988-11-25 2024-10-11 01:55:03 +6904 6904 6905 690.4 1380.8000000000002 6904 1988-11-26 2024-10-11 01:55:04.000 1988-11-26 2024-10-11 01:55:04 +6906 6906 6907 690.6 1381.2 6906 1988-11-28 2024-10-11 01:55:06.000 1988-11-28 2024-10-11 01:55:06 +6907 6907 6908 690.7 1381.4 6907 1988-11-29 2024-10-11 01:55:07.000 1988-11-29 2024-10-11 01:55:07 +6908 6908 6909 690.8 1381.6000000000001 6908 1988-11-30 2024-10-11 01:55:08.000 1988-11-30 2024-10-11 01:55:08 +6909 6909 6910 690.9 1381.8000000000002 6909 1988-12-01 2024-10-11 01:55:09.000 1988-12-01 2024-10-11 01:55:09 +6911 6911 6912 691.1 1382.2 6911 1988-12-03 2024-10-11 01:55:11.000 1988-12-03 2024-10-11 01:55:11 +6912 6912 6913 691.2 1382.4 6912 1988-12-04 2024-10-11 01:55:12.000 1988-12-04 2024-10-11 01:55:12 +6913 6913 6914 691.3 1382.6000000000001 6913 1988-12-05 2024-10-11 01:55:13.000 1988-12-05 2024-10-11 01:55:13 +6914 6914 6915 691.4 1382.8000000000002 6914 1988-12-06 2024-10-11 01:55:14.000 1988-12-06 2024-10-11 01:55:14 +6916 6916 6917 691.6 1383.2 6916 1988-12-08 2024-10-11 01:55:16.000 1988-12-08 2024-10-11 01:55:16 +6917 6917 6918 691.7 1383.4 6917 1988-12-09 2024-10-11 01:55:17.000 1988-12-09 2024-10-11 01:55:17 +6918 6918 6919 691.8 1383.6000000000001 6918 1988-12-10 2024-10-11 01:55:18.000 1988-12-10 2024-10-11 01:55:18 +6919 6919 6920 691.9 1383.8000000000002 6919 1988-12-11 2024-10-11 01:55:19.000 1988-12-11 2024-10-11 01:55:19 +6921 6921 6922 692.1 1384.2 6921 1988-12-13 2024-10-11 01:55:21.000 1988-12-13 2024-10-11 01:55:21 +6922 6922 6923 692.2 1384.4 6922 1988-12-14 2024-10-11 01:55:22.000 1988-12-14 2024-10-11 01:55:22 +6923 6923 6924 692.3 1384.6000000000001 6923 1988-12-15 2024-10-11 01:55:23.000 1988-12-15 2024-10-11 01:55:23 +6924 6924 6925 692.4 1384.8000000000002 6924 1988-12-16 2024-10-11 01:55:24.000 1988-12-16 2024-10-11 01:55:24 +6926 6926 6927 692.6 1385.2 6926 1988-12-18 2024-10-11 01:55:26.000 1988-12-18 2024-10-11 01:55:26 +6927 6927 6928 692.7 1385.4 6927 1988-12-19 2024-10-11 01:55:27.000 1988-12-19 2024-10-11 01:55:27 +6928 6928 6929 692.8 1385.6000000000001 6928 1988-12-20 2024-10-11 01:55:28.000 1988-12-20 2024-10-11 01:55:28 +6929 6929 6930 692.9 1385.8000000000002 6929 1988-12-21 2024-10-11 01:55:29.000 1988-12-21 2024-10-11 01:55:29 +6931 6931 6932 693.1 1386.2 6931 1988-12-23 2024-10-11 01:55:31.000 1988-12-23 2024-10-11 01:55:31 +6932 6932 6933 693.2 1386.4 6932 1988-12-24 2024-10-11 01:55:32.000 1988-12-24 2024-10-11 01:55:32 +6933 6933 6934 693.3 1386.6000000000001 6933 1988-12-25 2024-10-11 01:55:33.000 1988-12-25 2024-10-11 01:55:33 +6934 6934 6935 693.4 1386.8000000000002 6934 1988-12-26 2024-10-11 01:55:34.000 1988-12-26 2024-10-11 01:55:34 +6936 6936 6937 693.6 1387.2 6936 1988-12-28 2024-10-11 01:55:36.000 1988-12-28 2024-10-11 01:55:36 +6937 6937 6938 693.7 1387.4 6937 1988-12-29 2024-10-11 01:55:37.000 1988-12-29 2024-10-11 01:55:37 +6938 6938 6939 693.8 1387.6000000000001 6938 1988-12-30 2024-10-11 01:55:38.000 1988-12-30 2024-10-11 01:55:38 +6939 6939 6940 693.9 1387.8000000000002 6939 1988-12-31 2024-10-11 01:55:39.000 1988-12-31 2024-10-11 01:55:39 +6941 6941 6942 694.1 1388.2 6941 1989-01-02 2024-10-11 01:55:41.000 1989-01-02 2024-10-11 01:55:41 +6942 6942 6943 694.2 1388.4 6942 1989-01-03 2024-10-11 01:55:42.000 1989-01-03 2024-10-11 01:55:42 +6943 6943 6944 694.3 1388.6000000000001 6943 1989-01-04 2024-10-11 01:55:43.000 1989-01-04 2024-10-11 01:55:43 +6944 6944 6945 694.4 1388.8000000000002 6944 1989-01-05 2024-10-11 01:55:44.000 1989-01-05 2024-10-11 01:55:44 +6946 6946 6947 694.6 1389.2 6946 1989-01-07 2024-10-11 01:55:46.000 1989-01-07 2024-10-11 01:55:46 +6947 6947 6948 694.7 1389.4 6947 1989-01-08 2024-10-11 01:55:47.000 1989-01-08 2024-10-11 01:55:47 +6948 6948 6949 694.8 1389.6000000000001 6948 1989-01-09 2024-10-11 01:55:48.000 1989-01-09 2024-10-11 01:55:48 +6949 6949 6950 694.9 1389.8000000000002 6949 1989-01-10 2024-10-11 01:55:49.000 1989-01-10 2024-10-11 01:55:49 +6951 6951 6952 695.1 1390.2 6951 1989-01-12 2024-10-11 01:55:51.000 1989-01-12 2024-10-11 01:55:51 +6952 6952 6953 695.2 1390.4 6952 1989-01-13 2024-10-11 01:55:52.000 1989-01-13 2024-10-11 01:55:52 +6953 6953 6954 695.3 1390.6000000000001 6953 1989-01-14 2024-10-11 01:55:53.000 1989-01-14 2024-10-11 01:55:53 +6954 6954 6955 695.4 1390.8000000000002 6954 1989-01-15 2024-10-11 01:55:54.000 1989-01-15 2024-10-11 01:55:54 +6956 6956 6957 695.6 1391.2 6956 1989-01-17 2024-10-11 01:55:56.000 1989-01-17 2024-10-11 01:55:56 +6957 6957 6958 695.7 1391.4 6957 1989-01-18 2024-10-11 01:55:57.000 1989-01-18 2024-10-11 01:55:57 +6958 6958 6959 695.8 1391.6000000000001 6958 1989-01-19 2024-10-11 01:55:58.000 1989-01-19 2024-10-11 01:55:58 +6959 6959 6960 695.9 1391.8000000000002 6959 1989-01-20 2024-10-11 01:55:59.000 1989-01-20 2024-10-11 01:55:59 +6961 6961 6962 696.1 1392.2 6961 1989-01-22 2024-10-11 01:56:01.000 1989-01-22 2024-10-11 01:56:01 +6962 6962 6963 696.2 1392.4 6962 1989-01-23 2024-10-11 01:56:02.000 1989-01-23 2024-10-11 01:56:02 +6963 6963 6964 696.3 1392.6000000000001 6963 1989-01-24 2024-10-11 01:56:03.000 1989-01-24 2024-10-11 01:56:03 +6964 6964 6965 696.4 1392.8000000000002 6964 1989-01-25 2024-10-11 01:56:04.000 1989-01-25 2024-10-11 01:56:04 +6966 6966 6967 696.6 1393.2 6966 1989-01-27 2024-10-11 01:56:06.000 1989-01-27 2024-10-11 01:56:06 +6967 6967 6968 696.7 1393.4 6967 1989-01-28 2024-10-11 01:56:07.000 1989-01-28 2024-10-11 01:56:07 +6968 6968 6969 696.8 1393.6000000000001 6968 1989-01-29 2024-10-11 01:56:08.000 1989-01-29 2024-10-11 01:56:08 +6969 6969 6970 696.9 1393.8000000000002 6969 1989-01-30 2024-10-11 01:56:09.000 1989-01-30 2024-10-11 01:56:09 +6971 6971 6972 697.1 1394.2 6971 1989-02-01 2024-10-11 01:56:11.000 1989-02-01 2024-10-11 01:56:11 +6972 6972 6973 697.2 1394.4 6972 1989-02-02 2024-10-11 01:56:12.000 1989-02-02 2024-10-11 01:56:12 +6973 6973 6974 697.3 1394.6000000000001 6973 1989-02-03 2024-10-11 01:56:13.000 1989-02-03 2024-10-11 01:56:13 +6974 6974 6975 697.4 1394.8000000000002 6974 1989-02-04 2024-10-11 01:56:14.000 1989-02-04 2024-10-11 01:56:14 +6976 6976 6977 697.6 1395.2 6976 1989-02-06 2024-10-11 01:56:16.000 1989-02-06 2024-10-11 01:56:16 +6977 6977 6978 697.7 1395.4 6977 1989-02-07 2024-10-11 01:56:17.000 1989-02-07 2024-10-11 01:56:17 +6978 6978 6979 697.8 1395.6000000000001 6978 1989-02-08 2024-10-11 01:56:18.000 1989-02-08 2024-10-11 01:56:18 +6979 6979 6980 697.9 1395.8000000000002 6979 1989-02-09 2024-10-11 01:56:19.000 1989-02-09 2024-10-11 01:56:19 +6981 6981 6982 698.1 1396.2 6981 1989-02-11 2024-10-11 01:56:21.000 1989-02-11 2024-10-11 01:56:21 +6982 6982 6983 698.2 1396.4 6982 1989-02-12 2024-10-11 01:56:22.000 1989-02-12 2024-10-11 01:56:22 +6983 6983 6984 698.3 1396.6000000000001 6983 1989-02-13 2024-10-11 01:56:23.000 1989-02-13 2024-10-11 01:56:23 +6984 6984 6985 698.4 1396.8000000000002 6984 1989-02-14 2024-10-11 01:56:24.000 1989-02-14 2024-10-11 01:56:24 +6986 6986 6987 698.6 1397.2 6986 1989-02-16 2024-10-11 01:56:26.000 1989-02-16 2024-10-11 01:56:26 +6987 6987 6988 698.7 1397.4 6987 1989-02-17 2024-10-11 01:56:27.000 1989-02-17 2024-10-11 01:56:27 +6988 6988 6989 698.8 1397.6000000000001 6988 1989-02-18 2024-10-11 01:56:28.000 1989-02-18 2024-10-11 01:56:28 +6989 6989 6990 698.9 1397.8000000000002 6989 1989-02-19 2024-10-11 01:56:29.000 1989-02-19 2024-10-11 01:56:29 +6991 6991 6992 699.1 1398.2 6991 1989-02-21 2024-10-11 01:56:31.000 1989-02-21 2024-10-11 01:56:31 +6992 6992 6993 699.2 1398.4 6992 1989-02-22 2024-10-11 01:56:32.000 1989-02-22 2024-10-11 01:56:32 +6993 6993 6994 699.3 1398.6000000000001 6993 1989-02-23 2024-10-11 01:56:33.000 1989-02-23 2024-10-11 01:56:33 +6994 6994 6995 699.4 1398.8000000000002 6994 1989-02-24 2024-10-11 01:56:34.000 1989-02-24 2024-10-11 01:56:34 +6996 6996 6997 699.6 1399.2 6996 1989-02-26 2024-10-11 01:56:36.000 1989-02-26 2024-10-11 01:56:36 +6997 6997 6998 699.7 1399.4 6997 1989-02-27 2024-10-11 01:56:37.000 1989-02-27 2024-10-11 01:56:37 +6998 6998 6999 699.8 1399.6000000000001 6998 1989-02-28 2024-10-11 01:56:38.000 1989-02-28 2024-10-11 01:56:38 +6999 6999 7000 699.9 1399.8000000000002 6999 1989-03-01 2024-10-11 01:56:39.000 1989-03-01 2024-10-11 01:56:39 +7001 7001 7002 700.1 1400.2 7001 1989-03-03 2024-10-11 01:56:41.000 1989-03-03 2024-10-11 01:56:41 +7002 7002 7003 700.2 1400.4 7002 1989-03-04 2024-10-11 01:56:42.000 1989-03-04 2024-10-11 01:56:42 +7003 7003 7004 700.3 1400.6000000000001 7003 1989-03-05 2024-10-11 01:56:43.000 1989-03-05 2024-10-11 01:56:43 +7004 7004 7005 700.4 1400.8000000000002 7004 1989-03-06 2024-10-11 01:56:44.000 1989-03-06 2024-10-11 01:56:44 +7006 7006 7007 700.6 1401.2 7006 1989-03-08 2024-10-11 01:56:46.000 1989-03-08 2024-10-11 01:56:46 +7007 7007 7008 700.7 1401.4 7007 1989-03-09 2024-10-11 01:56:47.000 1989-03-09 2024-10-11 01:56:47 +7008 7008 7009 700.8 1401.6000000000001 7008 1989-03-10 2024-10-11 01:56:48.000 1989-03-10 2024-10-11 01:56:48 +7009 7009 7010 700.9 1401.8000000000002 7009 1989-03-11 2024-10-11 01:56:49.000 1989-03-11 2024-10-11 01:56:49 +7011 7011 7012 701.1 1402.2 7011 1989-03-13 2024-10-11 01:56:51.000 1989-03-13 2024-10-11 01:56:51 +7012 7012 7013 701.2 1402.4 7012 1989-03-14 2024-10-11 01:56:52.000 1989-03-14 2024-10-11 01:56:52 +7013 7013 7014 701.3 1402.6000000000001 7013 1989-03-15 2024-10-11 01:56:53.000 1989-03-15 2024-10-11 01:56:53 +7014 7014 7015 701.4 1402.8000000000002 7014 1989-03-16 2024-10-11 01:56:54.000 1989-03-16 2024-10-11 01:56:54 +7016 7016 7017 701.6 1403.2 7016 1989-03-18 2024-10-11 01:56:56.000 1989-03-18 2024-10-11 01:56:56 +7017 7017 7018 701.7 1403.4 7017 1989-03-19 2024-10-11 01:56:57.000 1989-03-19 2024-10-11 01:56:57 +7018 7018 7019 701.8 1403.6000000000001 7018 1989-03-20 2024-10-11 01:56:58.000 1989-03-20 2024-10-11 01:56:58 +7019 7019 7020 701.9 1403.8000000000002 7019 1989-03-21 2024-10-11 01:56:59.000 1989-03-21 2024-10-11 01:56:59 +7021 7021 7022 702.1 1404.2 7021 1989-03-23 2024-10-11 01:57:01.000 1989-03-23 2024-10-11 01:57:01 +7022 7022 7023 702.2 1404.4 7022 1989-03-24 2024-10-11 01:57:02.000 1989-03-24 2024-10-11 01:57:02 +7023 7023 7024 702.3 1404.6000000000001 7023 1989-03-25 2024-10-11 01:57:03.000 1989-03-25 2024-10-11 01:57:03 +7024 7024 7025 702.4 1404.8000000000002 7024 1989-03-26 2024-10-11 01:57:04.000 1989-03-26 2024-10-11 01:57:04 +7026 7026 7027 702.6 1405.2 7026 1989-03-28 2024-10-11 01:57:06.000 1989-03-28 2024-10-11 01:57:06 +7027 7027 7028 702.7 1405.4 7027 1989-03-29 2024-10-11 01:57:07.000 1989-03-29 2024-10-11 01:57:07 +7028 7028 7029 702.8 1405.6000000000001 7028 1989-03-30 2024-10-11 01:57:08.000 1989-03-30 2024-10-11 01:57:08 +7029 7029 7030 702.9 1405.8000000000002 7029 1989-03-31 2024-10-11 01:57:09.000 1989-03-31 2024-10-11 01:57:09 +7031 7031 7032 703.1 1406.2 7031 1989-04-02 2024-10-11 01:57:11.000 1989-04-02 2024-10-11 01:57:11 +7032 7032 7033 703.2 1406.4 7032 1989-04-03 2024-10-11 01:57:12.000 1989-04-03 2024-10-11 01:57:12 +7033 7033 7034 703.3 1406.6000000000001 7033 1989-04-04 2024-10-11 01:57:13.000 1989-04-04 2024-10-11 01:57:13 +7034 7034 7035 703.4 1406.8000000000002 7034 1989-04-05 2024-10-11 01:57:14.000 1989-04-05 2024-10-11 01:57:14 +7036 7036 7037 703.6 1407.2 7036 1989-04-07 2024-10-11 01:57:16.000 1989-04-07 2024-10-11 01:57:16 +7037 7037 7038 703.7 1407.4 7037 1989-04-08 2024-10-11 01:57:17.000 1989-04-08 2024-10-11 01:57:17 +7038 7038 7039 703.8 1407.6000000000001 7038 1989-04-09 2024-10-11 01:57:18.000 1989-04-09 2024-10-11 01:57:18 +7039 7039 7040 703.9 1407.8000000000002 7039 1989-04-10 2024-10-11 01:57:19.000 1989-04-10 2024-10-11 01:57:19 +7041 7041 7042 704.1 1408.2 7041 1989-04-12 2024-10-11 01:57:21.000 1989-04-12 2024-10-11 01:57:21 +7042 7042 7043 704.2 1408.4 7042 1989-04-13 2024-10-11 01:57:22.000 1989-04-13 2024-10-11 01:57:22 +7043 7043 7044 704.3 1408.6000000000001 7043 1989-04-14 2024-10-11 01:57:23.000 1989-04-14 2024-10-11 01:57:23 +7044 7044 7045 704.4 1408.8000000000002 7044 1989-04-15 2024-10-11 01:57:24.000 1989-04-15 2024-10-11 01:57:24 +7046 7046 7047 704.6 1409.2 7046 1989-04-17 2024-10-11 01:57:26.000 1989-04-17 2024-10-11 01:57:26 +7047 7047 7048 704.7 1409.4 7047 1989-04-18 2024-10-11 01:57:27.000 1989-04-18 2024-10-11 01:57:27 +7048 7048 7049 704.8 1409.6000000000001 7048 1989-04-19 2024-10-11 01:57:28.000 1989-04-19 2024-10-11 01:57:28 +7049 7049 7050 704.9 1409.8000000000002 7049 1989-04-20 2024-10-11 01:57:29.000 1989-04-20 2024-10-11 01:57:29 +7051 7051 7052 705.1 1410.2 7051 1989-04-22 2024-10-11 01:57:31.000 1989-04-22 2024-10-11 01:57:31 +7052 7052 7053 705.2 1410.4 7052 1989-04-23 2024-10-11 01:57:32.000 1989-04-23 2024-10-11 01:57:32 +7053 7053 7054 705.3 1410.6000000000001 7053 1989-04-24 2024-10-11 01:57:33.000 1989-04-24 2024-10-11 01:57:33 +7054 7054 7055 705.4 1410.8000000000002 7054 1989-04-25 2024-10-11 01:57:34.000 1989-04-25 2024-10-11 01:57:34 +7056 7056 7057 705.6 1411.2 7056 1989-04-27 2024-10-11 01:57:36.000 1989-04-27 2024-10-11 01:57:36 +7057 7057 7058 705.7 1411.4 7057 1989-04-28 2024-10-11 01:57:37.000 1989-04-28 2024-10-11 01:57:37 +7058 7058 7059 705.8 1411.6000000000001 7058 1989-04-29 2024-10-11 01:57:38.000 1989-04-29 2024-10-11 01:57:38 +7059 7059 7060 705.9 1411.8000000000002 7059 1989-04-30 2024-10-11 01:57:39.000 1989-04-30 2024-10-11 01:57:39 +7061 7061 7062 706.1 1412.2 7061 1989-05-02 2024-10-11 01:57:41.000 1989-05-02 2024-10-11 01:57:41 +7062 7062 7063 706.2 1412.4 7062 1989-05-03 2024-10-11 01:57:42.000 1989-05-03 2024-10-11 01:57:42 +7063 7063 7064 706.3 1412.6000000000001 7063 1989-05-04 2024-10-11 01:57:43.000 1989-05-04 2024-10-11 01:57:43 +7064 7064 7065 706.4 1412.8000000000002 7064 1989-05-05 2024-10-11 01:57:44.000 1989-05-05 2024-10-11 01:57:44 +7066 7066 7067 706.6 1413.2 7066 1989-05-07 2024-10-11 01:57:46.000 1989-05-07 2024-10-11 01:57:46 +7067 7067 7068 706.7 1413.4 7067 1989-05-08 2024-10-11 01:57:47.000 1989-05-08 2024-10-11 01:57:47 +7068 7068 7069 706.8 1413.6000000000001 7068 1989-05-09 2024-10-11 01:57:48.000 1989-05-09 2024-10-11 01:57:48 +7069 7069 7070 706.9 1413.8000000000002 7069 1989-05-10 2024-10-11 01:57:49.000 1989-05-10 2024-10-11 01:57:49 +7071 7071 7072 707.1 1414.2 7071 1989-05-12 2024-10-11 01:57:51.000 1989-05-12 2024-10-11 01:57:51 +7072 7072 7073 707.2 1414.4 7072 1989-05-13 2024-10-11 01:57:52.000 1989-05-13 2024-10-11 01:57:52 +7073 7073 7074 707.3 1414.6000000000001 7073 1989-05-14 2024-10-11 01:57:53.000 1989-05-14 2024-10-11 01:57:53 +7074 7074 7075 707.4 1414.8000000000002 7074 1989-05-15 2024-10-11 01:57:54.000 1989-05-15 2024-10-11 01:57:54 +7076 7076 7077 707.6 1415.2 7076 1989-05-17 2024-10-11 01:57:56.000 1989-05-17 2024-10-11 01:57:56 +7077 7077 7078 707.7 1415.4 7077 1989-05-18 2024-10-11 01:57:57.000 1989-05-18 2024-10-11 01:57:57 +7078 7078 7079 707.8 1415.6000000000001 7078 1989-05-19 2024-10-11 01:57:58.000 1989-05-19 2024-10-11 01:57:58 +7079 7079 7080 707.9 1415.8000000000002 7079 1989-05-20 2024-10-11 01:57:59.000 1989-05-20 2024-10-11 01:57:59 +7081 7081 7082 708.1 1416.2 7081 1989-05-22 2024-10-11 01:58:01.000 1989-05-22 2024-10-11 01:58:01 +7082 7082 7083 708.2 1416.4 7082 1989-05-23 2024-10-11 01:58:02.000 1989-05-23 2024-10-11 01:58:02 +7083 7083 7084 708.3 1416.6000000000001 7083 1989-05-24 2024-10-11 01:58:03.000 1989-05-24 2024-10-11 01:58:03 +7084 7084 7085 708.4 1416.8000000000002 7084 1989-05-25 2024-10-11 01:58:04.000 1989-05-25 2024-10-11 01:58:04 +7086 7086 7087 708.6 1417.2 7086 1989-05-27 2024-10-11 01:58:06.000 1989-05-27 2024-10-11 01:58:06 +7087 7087 7088 708.7 1417.4 7087 1989-05-28 2024-10-11 01:58:07.000 1989-05-28 2024-10-11 01:58:07 +7088 7088 7089 708.8 1417.6000000000001 7088 1989-05-29 2024-10-11 01:58:08.000 1989-05-29 2024-10-11 01:58:08 +7089 7089 7090 708.9 1417.8000000000002 7089 1989-05-30 2024-10-11 01:58:09.000 1989-05-30 2024-10-11 01:58:09 +7091 7091 7092 709.1 1418.2 7091 1989-06-01 2024-10-11 01:58:11.000 1989-06-01 2024-10-11 01:58:11 +7092 7092 7093 709.2 1418.4 7092 1989-06-02 2024-10-11 01:58:12.000 1989-06-02 2024-10-11 01:58:12 +7093 7093 7094 709.3 1418.6000000000001 7093 1989-06-03 2024-10-11 01:58:13.000 1989-06-03 2024-10-11 01:58:13 +7094 7094 7095 709.4 1418.8000000000002 7094 1989-06-04 2024-10-11 01:58:14.000 1989-06-04 2024-10-11 01:58:14 +7096 7096 7097 709.6 1419.2 7096 1989-06-06 2024-10-11 01:58:16.000 1989-06-06 2024-10-11 01:58:16 +7097 7097 7098 709.7 1419.4 7097 1989-06-07 2024-10-11 01:58:17.000 1989-06-07 2024-10-11 01:58:17 +7098 7098 7099 709.8 1419.6000000000001 7098 1989-06-08 2024-10-11 01:58:18.000 1989-06-08 2024-10-11 01:58:18 +7099 7099 7100 709.9 1419.8000000000002 7099 1989-06-09 2024-10-11 01:58:19.000 1989-06-09 2024-10-11 01:58:19 +7101 7101 7102 710.1 1420.2 7101 1989-06-11 2024-10-11 01:58:21.000 1989-06-11 2024-10-11 01:58:21 +7102 7102 7103 710.2 1420.4 7102 1989-06-12 2024-10-11 01:58:22.000 1989-06-12 2024-10-11 01:58:22 +7103 7103 7104 710.3 1420.6000000000001 7103 1989-06-13 2024-10-11 01:58:23.000 1989-06-13 2024-10-11 01:58:23 +7104 7104 7105 710.4 1420.8000000000002 7104 1989-06-14 2024-10-11 01:58:24.000 1989-06-14 2024-10-11 01:58:24 +7106 7106 7107 710.6 1421.2 7106 1989-06-16 2024-10-11 01:58:26.000 1989-06-16 2024-10-11 01:58:26 +7107 7107 7108 710.7 1421.4 7107 1989-06-17 2024-10-11 01:58:27.000 1989-06-17 2024-10-11 01:58:27 +7108 7108 7109 710.8 1421.6000000000001 7108 1989-06-18 2024-10-11 01:58:28.000 1989-06-18 2024-10-11 01:58:28 +7109 7109 7110 710.9 1421.8000000000002 7109 1989-06-19 2024-10-11 01:58:29.000 1989-06-19 2024-10-11 01:58:29 +7111 7111 7112 711.1 1422.2 7111 1989-06-21 2024-10-11 01:58:31.000 1989-06-21 2024-10-11 01:58:31 +7112 7112 7113 711.2 1422.4 7112 1989-06-22 2024-10-11 01:58:32.000 1989-06-22 2024-10-11 01:58:32 +7113 7113 7114 711.3 1422.6000000000001 7113 1989-06-23 2024-10-11 01:58:33.000 1989-06-23 2024-10-11 01:58:33 +7114 7114 7115 711.4 1422.8000000000002 7114 1989-06-24 2024-10-11 01:58:34.000 1989-06-24 2024-10-11 01:58:34 +7116 7116 7117 711.6 1423.2 7116 1989-06-26 2024-10-11 01:58:36.000 1989-06-26 2024-10-11 01:58:36 +7117 7117 7118 711.7 1423.4 7117 1989-06-27 2024-10-11 01:58:37.000 1989-06-27 2024-10-11 01:58:37 +7118 7118 7119 711.8 1423.6000000000001 7118 1989-06-28 2024-10-11 01:58:38.000 1989-06-28 2024-10-11 01:58:38 +7119 7119 7120 711.9 1423.8000000000002 7119 1989-06-29 2024-10-11 01:58:39.000 1989-06-29 2024-10-11 01:58:39 +7121 7121 7122 712.1 1424.2 7121 1989-07-01 2024-10-11 01:58:41.000 1989-07-01 2024-10-11 01:58:41 +7122 7122 7123 712.2 1424.4 7122 1989-07-02 2024-10-11 01:58:42.000 1989-07-02 2024-10-11 01:58:42 +7123 7123 7124 712.3 1424.6000000000001 7123 1989-07-03 2024-10-11 01:58:43.000 1989-07-03 2024-10-11 01:58:43 +7124 7124 7125 712.4 1424.8000000000002 7124 1989-07-04 2024-10-11 01:58:44.000 1989-07-04 2024-10-11 01:58:44 +7126 7126 7127 712.6 1425.2 7126 1989-07-06 2024-10-11 01:58:46.000 1989-07-06 2024-10-11 01:58:46 +7127 7127 7128 712.7 1425.4 7127 1989-07-07 2024-10-11 01:58:47.000 1989-07-07 2024-10-11 01:58:47 +7128 7128 7129 712.8 1425.6000000000001 7128 1989-07-08 2024-10-11 01:58:48.000 1989-07-08 2024-10-11 01:58:48 +7129 7129 7130 712.9 1425.8000000000002 7129 1989-07-09 2024-10-11 01:58:49.000 1989-07-09 2024-10-11 01:58:49 +7131 7131 7132 713.1 1426.2 7131 1989-07-11 2024-10-11 01:58:51.000 1989-07-11 2024-10-11 01:58:51 +7132 7132 7133 713.2 1426.4 7132 1989-07-12 2024-10-11 01:58:52.000 1989-07-12 2024-10-11 01:58:52 +7133 7133 7134 713.3 1426.6000000000001 7133 1989-07-13 2024-10-11 01:58:53.000 1989-07-13 2024-10-11 01:58:53 +7134 7134 7135 713.4 1426.8000000000002 7134 1989-07-14 2024-10-11 01:58:54.000 1989-07-14 2024-10-11 01:58:54 +7136 7136 7137 713.6 1427.2 7136 1989-07-16 2024-10-11 01:58:56.000 1989-07-16 2024-10-11 01:58:56 +7137 7137 7138 713.7 1427.4 7137 1989-07-17 2024-10-11 01:58:57.000 1989-07-17 2024-10-11 01:58:57 +7138 7138 7139 713.8 1427.6000000000001 7138 1989-07-18 2024-10-11 01:58:58.000 1989-07-18 2024-10-11 01:58:58 +7139 7139 7140 713.9 1427.8000000000002 7139 1989-07-19 2024-10-11 01:58:59.000 1989-07-19 2024-10-11 01:58:59 +7141 7141 7142 714.1 1428.2 7141 1989-07-21 2024-10-11 01:59:01.000 1989-07-21 2024-10-11 01:59:01 +7142 7142 7143 714.2 1428.4 7142 1989-07-22 2024-10-11 01:59:02.000 1989-07-22 2024-10-11 01:59:02 +7143 7143 7144 714.3 1428.6000000000001 7143 1989-07-23 2024-10-11 01:59:03.000 1989-07-23 2024-10-11 01:59:03 +7144 7144 7145 714.4 1428.8000000000002 7144 1989-07-24 2024-10-11 01:59:04.000 1989-07-24 2024-10-11 01:59:04 +7146 7146 7147 714.6 1429.2 7146 1989-07-26 2024-10-11 01:59:06.000 1989-07-26 2024-10-11 01:59:06 +7147 7147 7148 714.7 1429.4 7147 1989-07-27 2024-10-11 01:59:07.000 1989-07-27 2024-10-11 01:59:07 +7148 7148 7149 714.8 1429.6000000000001 7148 1989-07-28 2024-10-11 01:59:08.000 1989-07-28 2024-10-11 01:59:08 +7149 7149 7150 714.9 1429.8000000000002 7149 1989-07-29 2024-10-11 01:59:09.000 1989-07-29 2024-10-11 01:59:09 +7151 7151 7152 715.1 1430.2 7151 1989-07-31 2024-10-11 01:59:11.000 1989-07-31 2024-10-11 01:59:11 +7152 7152 7153 715.2 1430.4 7152 1989-08-01 2024-10-11 01:59:12.000 1989-08-01 2024-10-11 01:59:12 +7153 7153 7154 715.3 1430.6000000000001 7153 1989-08-02 2024-10-11 01:59:13.000 1989-08-02 2024-10-11 01:59:13 +7154 7154 7155 715.4 1430.8000000000002 7154 1989-08-03 2024-10-11 01:59:14.000 1989-08-03 2024-10-11 01:59:14 +7156 7156 7157 715.6 1431.2 7156 1989-08-05 2024-10-11 01:59:16.000 1989-08-05 2024-10-11 01:59:16 +7157 7157 7158 715.7 1431.4 7157 1989-08-06 2024-10-11 01:59:17.000 1989-08-06 2024-10-11 01:59:17 +7158 7158 7159 715.8 1431.6000000000001 7158 1989-08-07 2024-10-11 01:59:18.000 1989-08-07 2024-10-11 01:59:18 +7159 7159 7160 715.9 1431.8000000000002 7159 1989-08-08 2024-10-11 01:59:19.000 1989-08-08 2024-10-11 01:59:19 +7161 7161 7162 716.1 1432.2 7161 1989-08-10 2024-10-11 01:59:21.000 1989-08-10 2024-10-11 01:59:21 +7162 7162 7163 716.2 1432.4 7162 1989-08-11 2024-10-11 01:59:22.000 1989-08-11 2024-10-11 01:59:22 +7163 7163 7164 716.3 1432.6000000000001 7163 1989-08-12 2024-10-11 01:59:23.000 1989-08-12 2024-10-11 01:59:23 +7164 7164 7165 716.4 1432.8000000000002 7164 1989-08-13 2024-10-11 01:59:24.000 1989-08-13 2024-10-11 01:59:24 +7166 7166 7167 716.6 1433.2 7166 1989-08-15 2024-10-11 01:59:26.000 1989-08-15 2024-10-11 01:59:26 +7167 7167 7168 716.7 1433.4 7167 1989-08-16 2024-10-11 01:59:27.000 1989-08-16 2024-10-11 01:59:27 +7168 7168 7169 716.8 1433.6000000000001 7168 1989-08-17 2024-10-11 01:59:28.000 1989-08-17 2024-10-11 01:59:28 +7169 7169 7170 716.9 1433.8000000000002 7169 1989-08-18 2024-10-11 01:59:29.000 1989-08-18 2024-10-11 01:59:29 +7171 7171 7172 717.1 1434.2 7171 1989-08-20 2024-10-11 01:59:31.000 1989-08-20 2024-10-11 01:59:31 +7172 7172 7173 717.2 1434.4 7172 1989-08-21 2024-10-11 01:59:32.000 1989-08-21 2024-10-11 01:59:32 +7173 7173 7174 717.3 1434.6000000000001 7173 1989-08-22 2024-10-11 01:59:33.000 1989-08-22 2024-10-11 01:59:33 +7174 7174 7175 717.4 1434.8000000000002 7174 1989-08-23 2024-10-11 01:59:34.000 1989-08-23 2024-10-11 01:59:34 +7176 7176 7177 717.6 1435.2 7176 1989-08-25 2024-10-11 01:59:36.000 1989-08-25 2024-10-11 01:59:36 +7177 7177 7178 717.7 1435.4 7177 1989-08-26 2024-10-11 01:59:37.000 1989-08-26 2024-10-11 01:59:37 +7178 7178 7179 717.8 1435.6000000000001 7178 1989-08-27 2024-10-11 01:59:38.000 1989-08-27 2024-10-11 01:59:38 +7179 7179 7180 717.9 1435.8000000000002 7179 1989-08-28 2024-10-11 01:59:39.000 1989-08-28 2024-10-11 01:59:39 +7181 7181 7182 718.1 1436.2 7181 1989-08-30 2024-10-11 01:59:41.000 1989-08-30 2024-10-11 01:59:41 +7182 7182 7183 718.2 1436.4 7182 1989-08-31 2024-10-11 01:59:42.000 1989-08-31 2024-10-11 01:59:42 +7183 7183 7184 718.3 1436.6000000000001 7183 1989-09-01 2024-10-11 01:59:43.000 1989-09-01 2024-10-11 01:59:43 +7184 7184 7185 718.4 1436.8000000000002 7184 1989-09-02 2024-10-11 01:59:44.000 1989-09-02 2024-10-11 01:59:44 +7186 7186 7187 718.6 1437.2 7186 1989-09-04 2024-10-11 01:59:46.000 1989-09-04 2024-10-11 01:59:46 +7187 7187 7188 718.7 1437.4 7187 1989-09-05 2024-10-11 01:59:47.000 1989-09-05 2024-10-11 01:59:47 +7188 7188 7189 718.8 1437.6000000000001 7188 1989-09-06 2024-10-11 01:59:48.000 1989-09-06 2024-10-11 01:59:48 +7189 7189 7190 718.9 1437.8000000000002 7189 1989-09-07 2024-10-11 01:59:49.000 1989-09-07 2024-10-11 01:59:49 +7191 7191 7192 719.1 1438.2 7191 1989-09-09 2024-10-11 01:59:51.000 1989-09-09 2024-10-11 01:59:51 +7192 7192 7193 719.2 1438.4 7192 1989-09-10 2024-10-11 01:59:52.000 1989-09-10 2024-10-11 01:59:52 +7193 7193 7194 719.3 1438.6000000000001 7193 1989-09-11 2024-10-11 01:59:53.000 1989-09-11 2024-10-11 01:59:53 +7194 7194 7195 719.4 1438.8000000000002 7194 1989-09-12 2024-10-11 01:59:54.000 1989-09-12 2024-10-11 01:59:54 +7196 7196 7197 719.6 1439.2 7196 1989-09-14 2024-10-11 01:59:56.000 1989-09-14 2024-10-11 01:59:56 +7197 7197 7198 719.7 1439.4 7197 1989-09-15 2024-10-11 01:59:57.000 1989-09-15 2024-10-11 01:59:57 +7198 7198 7199 719.8 1439.6000000000001 7198 1989-09-16 2024-10-11 01:59:58.000 1989-09-16 2024-10-11 01:59:58 +7199 7199 7200 719.9 1439.8000000000002 7199 1989-09-17 2024-10-11 01:59:59.000 1989-09-17 2024-10-11 01:59:59 +7201 7201 7202 720.1 1440.2 7201 1989-09-19 2024-10-11 02:00:01.000 1989-09-19 2024-10-11 02:00:01 +7202 7202 7203 720.2 1440.4 7202 1989-09-20 2024-10-11 02:00:02.000 1989-09-20 2024-10-11 02:00:02 +7203 7203 7204 720.3 1440.6000000000001 7203 1989-09-21 2024-10-11 02:00:03.000 1989-09-21 2024-10-11 02:00:03 +7204 7204 7205 720.4 1440.8000000000002 7204 1989-09-22 2024-10-11 02:00:04.000 1989-09-22 2024-10-11 02:00:04 +7206 7206 7207 720.6 1441.2 7206 1989-09-24 2024-10-11 02:00:06.000 1989-09-24 2024-10-11 02:00:06 +7207 7207 7208 720.7 1441.4 7207 1989-09-25 2024-10-11 02:00:07.000 1989-09-25 2024-10-11 02:00:07 +7208 7208 7209 720.8 1441.6000000000001 7208 1989-09-26 2024-10-11 02:00:08.000 1989-09-26 2024-10-11 02:00:08 +7209 7209 7210 720.9 1441.8000000000002 7209 1989-09-27 2024-10-11 02:00:09.000 1989-09-27 2024-10-11 02:00:09 +7211 7211 7212 721.1 1442.2 7211 1989-09-29 2024-10-11 02:00:11.000 1989-09-29 2024-10-11 02:00:11 +7212 7212 7213 721.2 1442.4 7212 1989-09-30 2024-10-11 02:00:12.000 1989-09-30 2024-10-11 02:00:12 +7213 7213 7214 721.3 1442.6000000000001 7213 1989-10-01 2024-10-11 02:00:13.000 1989-10-01 2024-10-11 02:00:13 +7214 7214 7215 721.4 1442.8000000000002 7214 1989-10-02 2024-10-11 02:00:14.000 1989-10-02 2024-10-11 02:00:14 +7216 7216 7217 721.6 1443.2 7216 1989-10-04 2024-10-11 02:00:16.000 1989-10-04 2024-10-11 02:00:16 +7217 7217 7218 721.7 1443.4 7217 1989-10-05 2024-10-11 02:00:17.000 1989-10-05 2024-10-11 02:00:17 +7218 7218 7219 721.8 1443.6000000000001 7218 1989-10-06 2024-10-11 02:00:18.000 1989-10-06 2024-10-11 02:00:18 +7219 7219 7220 721.9 1443.8000000000002 7219 1989-10-07 2024-10-11 02:00:19.000 1989-10-07 2024-10-11 02:00:19 +7221 7221 7222 722.1 1444.2 7221 1989-10-09 2024-10-11 02:00:21.000 1989-10-09 2024-10-11 02:00:21 +7222 7222 7223 722.2 1444.4 7222 1989-10-10 2024-10-11 02:00:22.000 1989-10-10 2024-10-11 02:00:22 +7223 7223 7224 722.3 1444.6000000000001 7223 1989-10-11 2024-10-11 02:00:23.000 1989-10-11 2024-10-11 02:00:23 +7224 7224 7225 722.4 1444.8000000000002 7224 1989-10-12 2024-10-11 02:00:24.000 1989-10-12 2024-10-11 02:00:24 +7226 7226 7227 722.6 1445.2 7226 1989-10-14 2024-10-11 02:00:26.000 1989-10-14 2024-10-11 02:00:26 +7227 7227 7228 722.7 1445.4 7227 1989-10-15 2024-10-11 02:00:27.000 1989-10-15 2024-10-11 02:00:27 +7228 7228 7229 722.8 1445.6000000000001 7228 1989-10-16 2024-10-11 02:00:28.000 1989-10-16 2024-10-11 02:00:28 +7229 7229 7230 722.9 1445.8000000000002 7229 1989-10-17 2024-10-11 02:00:29.000 1989-10-17 2024-10-11 02:00:29 +7231 7231 7232 723.1 1446.2 7231 1989-10-19 2024-10-11 02:00:31.000 1989-10-19 2024-10-11 02:00:31 +7232 7232 7233 723.2 1446.4 7232 1989-10-20 2024-10-11 02:00:32.000 1989-10-20 2024-10-11 02:00:32 +7233 7233 7234 723.3 1446.6000000000001 7233 1989-10-21 2024-10-11 02:00:33.000 1989-10-21 2024-10-11 02:00:33 +7234 7234 7235 723.4 1446.8000000000002 7234 1989-10-22 2024-10-11 02:00:34.000 1989-10-22 2024-10-11 02:00:34 +7236 7236 7237 723.6 1447.2 7236 1989-10-24 2024-10-11 02:00:36.000 1989-10-24 2024-10-11 02:00:36 +7237 7237 7238 723.7 1447.4 7237 1989-10-25 2024-10-11 02:00:37.000 1989-10-25 2024-10-11 02:00:37 +7238 7238 7239 723.8 1447.6000000000001 7238 1989-10-26 2024-10-11 02:00:38.000 1989-10-26 2024-10-11 02:00:38 +7239 7239 7240 723.9 1447.8000000000002 7239 1989-10-27 2024-10-11 02:00:39.000 1989-10-27 2024-10-11 02:00:39 +7241 7241 7242 724.1 1448.2 7241 1989-10-29 2024-10-11 02:00:41.000 1989-10-29 2024-10-11 02:00:41 +7242 7242 7243 724.2 1448.4 7242 1989-10-30 2024-10-11 02:00:42.000 1989-10-30 2024-10-11 02:00:42 +7243 7243 7244 724.3 1448.6000000000001 7243 1989-10-31 2024-10-11 02:00:43.000 1989-10-31 2024-10-11 02:00:43 +7244 7244 7245 724.4 1448.8000000000002 7244 1989-11-01 2024-10-11 02:00:44.000 1989-11-01 2024-10-11 02:00:44 +7246 7246 7247 724.6 1449.2 7246 1989-11-03 2024-10-11 02:00:46.000 1989-11-03 2024-10-11 02:00:46 +7247 7247 7248 724.7 1449.4 7247 1989-11-04 2024-10-11 02:00:47.000 1989-11-04 2024-10-11 02:00:47 +7248 7248 7249 724.8 1449.6000000000001 7248 1989-11-05 2024-10-11 02:00:48.000 1989-11-05 2024-10-11 02:00:48 +7249 7249 7250 724.9 1449.8000000000002 7249 1989-11-06 2024-10-11 02:00:49.000 1989-11-06 2024-10-11 02:00:49 +7251 7251 7252 725.1 1450.2 7251 1989-11-08 2024-10-11 02:00:51.000 1989-11-08 2024-10-11 02:00:51 +7252 7252 7253 725.2 1450.4 7252 1989-11-09 2024-10-11 02:00:52.000 1989-11-09 2024-10-11 02:00:52 +7253 7253 7254 725.3 1450.6000000000001 7253 1989-11-10 2024-10-11 02:00:53.000 1989-11-10 2024-10-11 02:00:53 +7254 7254 7255 725.4 1450.8000000000002 7254 1989-11-11 2024-10-11 02:00:54.000 1989-11-11 2024-10-11 02:00:54 +7256 7256 7257 725.6 1451.2 7256 1989-11-13 2024-10-11 02:00:56.000 1989-11-13 2024-10-11 02:00:56 +7257 7257 7258 725.7 1451.4 7257 1989-11-14 2024-10-11 02:00:57.000 1989-11-14 2024-10-11 02:00:57 +7258 7258 7259 725.8 1451.6000000000001 7258 1989-11-15 2024-10-11 02:00:58.000 1989-11-15 2024-10-11 02:00:58 +7259 7259 7260 725.9 1451.8000000000002 7259 1989-11-16 2024-10-11 02:00:59.000 1989-11-16 2024-10-11 02:00:59 +7261 7261 7262 726.1 1452.2 7261 1989-11-18 2024-10-11 02:01:01.000 1989-11-18 2024-10-11 02:01:01 +7262 7262 7263 726.2 1452.4 7262 1989-11-19 2024-10-11 02:01:02.000 1989-11-19 2024-10-11 02:01:02 +7263 7263 7264 726.3 1452.6000000000001 7263 1989-11-20 2024-10-11 02:01:03.000 1989-11-20 2024-10-11 02:01:03 +7264 7264 7265 726.4 1452.8000000000002 7264 1989-11-21 2024-10-11 02:01:04.000 1989-11-21 2024-10-11 02:01:04 +7266 7266 7267 726.6 1453.2 7266 1989-11-23 2024-10-11 02:01:06.000 1989-11-23 2024-10-11 02:01:06 +7267 7267 7268 726.7 1453.4 7267 1989-11-24 2024-10-11 02:01:07.000 1989-11-24 2024-10-11 02:01:07 +7268 7268 7269 726.8 1453.6000000000001 7268 1989-11-25 2024-10-11 02:01:08.000 1989-11-25 2024-10-11 02:01:08 +7269 7269 7270 726.9 1453.8000000000002 7269 1989-11-26 2024-10-11 02:01:09.000 1989-11-26 2024-10-11 02:01:09 +7271 7271 7272 727.1 1454.2 7271 1989-11-28 2024-10-11 02:01:11.000 1989-11-28 2024-10-11 02:01:11 +7272 7272 7273 727.2 1454.4 7272 1989-11-29 2024-10-11 02:01:12.000 1989-11-29 2024-10-11 02:01:12 +7273 7273 7274 727.3 1454.6000000000001 7273 1989-11-30 2024-10-11 02:01:13.000 1989-11-30 2024-10-11 02:01:13 +7274 7274 7275 727.4 1454.8000000000002 7274 1989-12-01 2024-10-11 02:01:14.000 1989-12-01 2024-10-11 02:01:14 +7276 7276 7277 727.6 1455.2 7276 1989-12-03 2024-10-11 02:01:16.000 1989-12-03 2024-10-11 02:01:16 +7277 7277 7278 727.7 1455.4 7277 1989-12-04 2024-10-11 02:01:17.000 1989-12-04 2024-10-11 02:01:17 +7278 7278 7279 727.8 1455.6000000000001 7278 1989-12-05 2024-10-11 02:01:18.000 1989-12-05 2024-10-11 02:01:18 +7279 7279 7280 727.9 1455.8000000000002 7279 1989-12-06 2024-10-11 02:01:19.000 1989-12-06 2024-10-11 02:01:19 +7281 7281 7282 728.1 1456.2 7281 1989-12-08 2024-10-11 02:01:21.000 1989-12-08 2024-10-11 02:01:21 +7282 7282 7283 728.2 1456.4 7282 1989-12-09 2024-10-11 02:01:22.000 1989-12-09 2024-10-11 02:01:22 +7283 7283 7284 728.3 1456.6000000000001 7283 1989-12-10 2024-10-11 02:01:23.000 1989-12-10 2024-10-11 02:01:23 +7284 7284 7285 728.4 1456.8000000000002 7284 1989-12-11 2024-10-11 02:01:24.000 1989-12-11 2024-10-11 02:01:24 +7286 7286 7287 728.6 1457.2 7286 1989-12-13 2024-10-11 02:01:26.000 1989-12-13 2024-10-11 02:01:26 +7287 7287 7288 728.7 1457.4 7287 1989-12-14 2024-10-11 02:01:27.000 1989-12-14 2024-10-11 02:01:27 +7288 7288 7289 728.8 1457.6000000000001 7288 1989-12-15 2024-10-11 02:01:28.000 1989-12-15 2024-10-11 02:01:28 +7289 7289 7290 728.9 1457.8000000000002 7289 1989-12-16 2024-10-11 02:01:29.000 1989-12-16 2024-10-11 02:01:29 +7291 7291 7292 729.1 1458.2 7291 1989-12-18 2024-10-11 02:01:31.000 1989-12-18 2024-10-11 02:01:31 +7292 7292 7293 729.2 1458.4 7292 1989-12-19 2024-10-11 02:01:32.000 1989-12-19 2024-10-11 02:01:32 +7293 7293 7294 729.3 1458.6000000000001 7293 1989-12-20 2024-10-11 02:01:33.000 1989-12-20 2024-10-11 02:01:33 +7294 7294 7295 729.4 1458.8000000000002 7294 1989-12-21 2024-10-11 02:01:34.000 1989-12-21 2024-10-11 02:01:34 +7296 7296 7297 729.6 1459.2 7296 1989-12-23 2024-10-11 02:01:36.000 1989-12-23 2024-10-11 02:01:36 +7297 7297 7298 729.7 1459.4 7297 1989-12-24 2024-10-11 02:01:37.000 1989-12-24 2024-10-11 02:01:37 +7298 7298 7299 729.8 1459.6000000000001 7298 1989-12-25 2024-10-11 02:01:38.000 1989-12-25 2024-10-11 02:01:38 +7299 7299 7300 729.9 1459.8000000000002 7299 1989-12-26 2024-10-11 02:01:39.000 1989-12-26 2024-10-11 02:01:39 +7301 7301 7302 730.1 1460.2 7301 1989-12-28 2024-10-11 02:01:41.000 1989-12-28 2024-10-11 02:01:41 +7302 7302 7303 730.2 1460.4 7302 1989-12-29 2024-10-11 02:01:42.000 1989-12-29 2024-10-11 02:01:42 +7303 7303 7304 730.3 1460.6000000000001 7303 1989-12-30 2024-10-11 02:01:43.000 1989-12-30 2024-10-11 02:01:43 +7304 7304 7305 730.4 1460.8000000000002 7304 1989-12-31 2024-10-11 02:01:44.000 1989-12-31 2024-10-11 02:01:44 +7306 7306 7307 730.6 1461.2 7306 1990-01-02 2024-10-11 02:01:46.000 1990-01-02 2024-10-11 02:01:46 +7307 7307 7308 730.7 1461.4 7307 1990-01-03 2024-10-11 02:01:47.000 1990-01-03 2024-10-11 02:01:47 +7308 7308 7309 730.8 1461.6000000000001 7308 1990-01-04 2024-10-11 02:01:48.000 1990-01-04 2024-10-11 02:01:48 +7309 7309 7310 730.9 1461.8000000000002 7309 1990-01-05 2024-10-11 02:01:49.000 1990-01-05 2024-10-11 02:01:49 +7311 7311 7312 731.1 1462.2 7311 1990-01-07 2024-10-11 02:01:51.000 1990-01-07 2024-10-11 02:01:51 +7312 7312 7313 731.2 1462.4 7312 1990-01-08 2024-10-11 02:01:52.000 1990-01-08 2024-10-11 02:01:52 +7313 7313 7314 731.3 1462.6000000000001 7313 1990-01-09 2024-10-11 02:01:53.000 1990-01-09 2024-10-11 02:01:53 +7314 7314 7315 731.4 1462.8000000000002 7314 1990-01-10 2024-10-11 02:01:54.000 1990-01-10 2024-10-11 02:01:54 +7316 7316 7317 731.6 1463.2 7316 1990-01-12 2024-10-11 02:01:56.000 1990-01-12 2024-10-11 02:01:56 +7317 7317 7318 731.7 1463.4 7317 1990-01-13 2024-10-11 02:01:57.000 1990-01-13 2024-10-11 02:01:57 +7318 7318 7319 731.8 1463.6000000000001 7318 1990-01-14 2024-10-11 02:01:58.000 1990-01-14 2024-10-11 02:01:58 +7319 7319 7320 731.9 1463.8000000000002 7319 1990-01-15 2024-10-11 02:01:59.000 1990-01-15 2024-10-11 02:01:59 +7321 7321 7322 732.1 1464.2 7321 1990-01-17 2024-10-11 02:02:01.000 1990-01-17 2024-10-11 02:02:01 +7322 7322 7323 732.2 1464.4 7322 1990-01-18 2024-10-11 02:02:02.000 1990-01-18 2024-10-11 02:02:02 +7323 7323 7324 732.3 1464.6000000000001 7323 1990-01-19 2024-10-11 02:02:03.000 1990-01-19 2024-10-11 02:02:03 +7324 7324 7325 732.4 1464.8000000000002 7324 1990-01-20 2024-10-11 02:02:04.000 1990-01-20 2024-10-11 02:02:04 +7326 7326 7327 732.6 1465.2 7326 1990-01-22 2024-10-11 02:02:06.000 1990-01-22 2024-10-11 02:02:06 +7327 7327 7328 732.7 1465.4 7327 1990-01-23 2024-10-11 02:02:07.000 1990-01-23 2024-10-11 02:02:07 +7328 7328 7329 732.8 1465.6000000000001 7328 1990-01-24 2024-10-11 02:02:08.000 1990-01-24 2024-10-11 02:02:08 +7329 7329 7330 732.9 1465.8000000000002 7329 1990-01-25 2024-10-11 02:02:09.000 1990-01-25 2024-10-11 02:02:09 +7331 7331 7332 733.1 1466.2 7331 1990-01-27 2024-10-11 02:02:11.000 1990-01-27 2024-10-11 02:02:11 +7332 7332 7333 733.2 1466.4 7332 1990-01-28 2024-10-11 02:02:12.000 1990-01-28 2024-10-11 02:02:12 +7333 7333 7334 733.3 1466.6000000000001 7333 1990-01-29 2024-10-11 02:02:13.000 1990-01-29 2024-10-11 02:02:13 +7334 7334 7335 733.4 1466.8000000000002 7334 1990-01-30 2024-10-11 02:02:14.000 1990-01-30 2024-10-11 02:02:14 +7336 7336 7337 733.6 1467.2 7336 1990-02-01 2024-10-11 02:02:16.000 1990-02-01 2024-10-11 02:02:16 +7337 7337 7338 733.7 1467.4 7337 1990-02-02 2024-10-11 02:02:17.000 1990-02-02 2024-10-11 02:02:17 +7338 7338 7339 733.8 1467.6000000000001 7338 1990-02-03 2024-10-11 02:02:18.000 1990-02-03 2024-10-11 02:02:18 +7339 7339 7340 733.9 1467.8000000000002 7339 1990-02-04 2024-10-11 02:02:19.000 1990-02-04 2024-10-11 02:02:19 +7341 7341 7342 734.1 1468.2 7341 1990-02-06 2024-10-11 02:02:21.000 1990-02-06 2024-10-11 02:02:21 +7342 7342 7343 734.2 1468.4 7342 1990-02-07 2024-10-11 02:02:22.000 1990-02-07 2024-10-11 02:02:22 +7343 7343 7344 734.3 1468.6000000000001 7343 1990-02-08 2024-10-11 02:02:23.000 1990-02-08 2024-10-11 02:02:23 +7344 7344 7345 734.4 1468.8000000000002 7344 1990-02-09 2024-10-11 02:02:24.000 1990-02-09 2024-10-11 02:02:24 +7346 7346 7347 734.6 1469.2 7346 1990-02-11 2024-10-11 02:02:26.000 1990-02-11 2024-10-11 02:02:26 +7347 7347 7348 734.7 1469.4 7347 1990-02-12 2024-10-11 02:02:27.000 1990-02-12 2024-10-11 02:02:27 +7348 7348 7349 734.8 1469.6000000000001 7348 1990-02-13 2024-10-11 02:02:28.000 1990-02-13 2024-10-11 02:02:28 +7349 7349 7350 734.9 1469.8000000000002 7349 1990-02-14 2024-10-11 02:02:29.000 1990-02-14 2024-10-11 02:02:29 +7351 7351 7352 735.1 1470.2 7351 1990-02-16 2024-10-11 02:02:31.000 1990-02-16 2024-10-11 02:02:31 +7352 7352 7353 735.2 1470.4 7352 1990-02-17 2024-10-11 02:02:32.000 1990-02-17 2024-10-11 02:02:32 +7353 7353 7354 735.3 1470.6000000000001 7353 1990-02-18 2024-10-11 02:02:33.000 1990-02-18 2024-10-11 02:02:33 +7354 7354 7355 735.4 1470.8000000000002 7354 1990-02-19 2024-10-11 02:02:34.000 1990-02-19 2024-10-11 02:02:34 +7356 7356 7357 735.6 1471.2 7356 1990-02-21 2024-10-11 02:02:36.000 1990-02-21 2024-10-11 02:02:36 +7357 7357 7358 735.7 1471.4 7357 1990-02-22 2024-10-11 02:02:37.000 1990-02-22 2024-10-11 02:02:37 +7358 7358 7359 735.8 1471.6000000000001 7358 1990-02-23 2024-10-11 02:02:38.000 1990-02-23 2024-10-11 02:02:38 +7359 7359 7360 735.9 1471.8000000000002 7359 1990-02-24 2024-10-11 02:02:39.000 1990-02-24 2024-10-11 02:02:39 +7361 7361 7362 736.1 1472.2 7361 1990-02-26 2024-10-11 02:02:41.000 1990-02-26 2024-10-11 02:02:41 +7362 7362 7363 736.2 1472.4 7362 1990-02-27 2024-10-11 02:02:42.000 1990-02-27 2024-10-11 02:02:42 +7363 7363 7364 736.3 1472.6000000000001 7363 1990-02-28 2024-10-11 02:02:43.000 1990-02-28 2024-10-11 02:02:43 +7364 7364 7365 736.4 1472.8000000000002 7364 1990-03-01 2024-10-11 02:02:44.000 1990-03-01 2024-10-11 02:02:44 +7366 7366 7367 736.6 1473.2 7366 1990-03-03 2024-10-11 02:02:46.000 1990-03-03 2024-10-11 02:02:46 +7367 7367 7368 736.7 1473.4 7367 1990-03-04 2024-10-11 02:02:47.000 1990-03-04 2024-10-11 02:02:47 +7368 7368 7369 736.8 1473.6000000000001 7368 1990-03-05 2024-10-11 02:02:48.000 1990-03-05 2024-10-11 02:02:48 +7369 7369 7370 736.9 1473.8000000000002 7369 1990-03-06 2024-10-11 02:02:49.000 1990-03-06 2024-10-11 02:02:49 +7371 7371 7372 737.1 1474.2 7371 1990-03-08 2024-10-11 02:02:51.000 1990-03-08 2024-10-11 02:02:51 +7372 7372 7373 737.2 1474.4 7372 1990-03-09 2024-10-11 02:02:52.000 1990-03-09 2024-10-11 02:02:52 +7373 7373 7374 737.3 1474.6000000000001 7373 1990-03-10 2024-10-11 02:02:53.000 1990-03-10 2024-10-11 02:02:53 +7374 7374 7375 737.4 1474.8000000000002 7374 1990-03-11 2024-10-11 02:02:54.000 1990-03-11 2024-10-11 02:02:54 +7376 7376 7377 737.6 1475.2 7376 1990-03-13 2024-10-11 02:02:56.000 1990-03-13 2024-10-11 02:02:56 +7377 7377 7378 737.7 1475.4 7377 1990-03-14 2024-10-11 02:02:57.000 1990-03-14 2024-10-11 02:02:57 +7378 7378 7379 737.8 1475.6000000000001 7378 1990-03-15 2024-10-11 02:02:58.000 1990-03-15 2024-10-11 02:02:58 +7379 7379 7380 737.9 1475.8000000000002 7379 1990-03-16 2024-10-11 02:02:59.000 1990-03-16 2024-10-11 02:02:59 +7381 7381 7382 738.1 1476.2 7381 1990-03-18 2024-10-11 02:03:01.000 1990-03-18 2024-10-11 02:03:01 +7382 7382 7383 738.2 1476.4 7382 1990-03-19 2024-10-11 02:03:02.000 1990-03-19 2024-10-11 02:03:02 +7383 7383 7384 738.3 1476.6000000000001 7383 1990-03-20 2024-10-11 02:03:03.000 1990-03-20 2024-10-11 02:03:03 +7384 7384 7385 738.4 1476.8000000000002 7384 1990-03-21 2024-10-11 02:03:04.000 1990-03-21 2024-10-11 02:03:04 +7386 7386 7387 738.6 1477.2 7386 1990-03-23 2024-10-11 02:03:06.000 1990-03-23 2024-10-11 02:03:06 +7387 7387 7388 738.7 1477.4 7387 1990-03-24 2024-10-11 02:03:07.000 1990-03-24 2024-10-11 02:03:07 +7388 7388 7389 738.8 1477.6000000000001 7388 1990-03-25 2024-10-11 02:03:08.000 1990-03-25 2024-10-11 02:03:08 +7389 7389 7390 738.9 1477.8000000000002 7389 1990-03-26 2024-10-11 02:03:09.000 1990-03-26 2024-10-11 02:03:09 +7391 7391 7392 739.1 1478.2 7391 1990-03-28 2024-10-11 02:03:11.000 1990-03-28 2024-10-11 02:03:11 +7392 7392 7393 739.2 1478.4 7392 1990-03-29 2024-10-11 02:03:12.000 1990-03-29 2024-10-11 02:03:12 +7393 7393 7394 739.3 1478.6000000000001 7393 1990-03-30 2024-10-11 02:03:13.000 1990-03-30 2024-10-11 02:03:13 +7394 7394 7395 739.4 1478.8000000000002 7394 1990-03-31 2024-10-11 02:03:14.000 1990-03-31 2024-10-11 02:03:14 +7396 7396 7397 739.6 1479.2 7396 1990-04-02 2024-10-11 02:03:16.000 1990-04-02 2024-10-11 02:03:16 +7397 7397 7398 739.7 1479.4 7397 1990-04-03 2024-10-11 02:03:17.000 1990-04-03 2024-10-11 02:03:17 +7398 7398 7399 739.8 1479.6000000000001 7398 1990-04-04 2024-10-11 02:03:18.000 1990-04-04 2024-10-11 02:03:18 +7399 7399 7400 739.9 1479.8000000000002 7399 1990-04-05 2024-10-11 02:03:19.000 1990-04-05 2024-10-11 02:03:19 +7401 7401 7402 740.1 1480.2 7401 1990-04-07 2024-10-11 02:03:21.000 1990-04-07 2024-10-11 02:03:21 +7402 7402 7403 740.2 1480.4 7402 1990-04-08 2024-10-11 02:03:22.000 1990-04-08 2024-10-11 02:03:22 +7403 7403 7404 740.3 1480.6000000000001 7403 1990-04-09 2024-10-11 02:03:23.000 1990-04-09 2024-10-11 02:03:23 +7404 7404 7405 740.4 1480.8000000000002 7404 1990-04-10 2024-10-11 02:03:24.000 1990-04-10 2024-10-11 02:03:24 +7406 7406 7407 740.6 1481.2 7406 1990-04-12 2024-10-11 02:03:26.000 1990-04-12 2024-10-11 02:03:26 +7407 7407 7408 740.7 1481.4 7407 1990-04-13 2024-10-11 02:03:27.000 1990-04-13 2024-10-11 02:03:27 +7408 7408 7409 740.8 1481.6000000000001 7408 1990-04-14 2024-10-11 02:03:28.000 1990-04-14 2024-10-11 02:03:28 +7409 7409 7410 740.9 1481.8000000000002 7409 1990-04-15 2024-10-11 02:03:29.000 1990-04-15 2024-10-11 02:03:29 +7411 7411 7412 741.1 1482.2 7411 1990-04-17 2024-10-11 02:03:31.000 1990-04-17 2024-10-11 02:03:31 +7412 7412 7413 741.2 1482.4 7412 1990-04-18 2024-10-11 02:03:32.000 1990-04-18 2024-10-11 02:03:32 +7413 7413 7414 741.3 1482.6000000000001 7413 1990-04-19 2024-10-11 02:03:33.000 1990-04-19 2024-10-11 02:03:33 +7414 7414 7415 741.4 1482.8000000000002 7414 1990-04-20 2024-10-11 02:03:34.000 1990-04-20 2024-10-11 02:03:34 +7416 7416 7417 741.6 1483.2 7416 1990-04-22 2024-10-11 02:03:36.000 1990-04-22 2024-10-11 02:03:36 +7417 7417 7418 741.7 1483.4 7417 1990-04-23 2024-10-11 02:03:37.000 1990-04-23 2024-10-11 02:03:37 +7418 7418 7419 741.8 1483.6000000000001 7418 1990-04-24 2024-10-11 02:03:38.000 1990-04-24 2024-10-11 02:03:38 +7419 7419 7420 741.9 1483.8000000000002 7419 1990-04-25 2024-10-11 02:03:39.000 1990-04-25 2024-10-11 02:03:39 +7421 7421 7422 742.1 1484.2 7421 1990-04-27 2024-10-11 02:03:41.000 1990-04-27 2024-10-11 02:03:41 +7422 7422 7423 742.2 1484.4 7422 1990-04-28 2024-10-11 02:03:42.000 1990-04-28 2024-10-11 02:03:42 +7423 7423 7424 742.3 1484.6000000000001 7423 1990-04-29 2024-10-11 02:03:43.000 1990-04-29 2024-10-11 02:03:43 +7424 7424 7425 742.4 1484.8000000000002 7424 1990-04-30 2024-10-11 02:03:44.000 1990-04-30 2024-10-11 02:03:44 +7426 7426 7427 742.6 1485.2 7426 1990-05-02 2024-10-11 02:03:46.000 1990-05-02 2024-10-11 02:03:46 +7427 7427 7428 742.7 1485.4 7427 1990-05-03 2024-10-11 02:03:47.000 1990-05-03 2024-10-11 02:03:47 +7428 7428 7429 742.8 1485.6000000000001 7428 1990-05-04 2024-10-11 02:03:48.000 1990-05-04 2024-10-11 02:03:48 +7429 7429 7430 742.9 1485.8000000000002 7429 1990-05-05 2024-10-11 02:03:49.000 1990-05-05 2024-10-11 02:03:49 +7431 7431 7432 743.1 1486.2 7431 1990-05-07 2024-10-11 02:03:51.000 1990-05-07 2024-10-11 02:03:51 +7432 7432 7433 743.2 1486.4 7432 1990-05-08 2024-10-11 02:03:52.000 1990-05-08 2024-10-11 02:03:52 +7433 7433 7434 743.3 1486.6000000000001 7433 1990-05-09 2024-10-11 02:03:53.000 1990-05-09 2024-10-11 02:03:53 +7434 7434 7435 743.4 1486.8000000000002 7434 1990-05-10 2024-10-11 02:03:54.000 1990-05-10 2024-10-11 02:03:54 +7436 7436 7437 743.6 1487.2 7436 1990-05-12 2024-10-11 02:03:56.000 1990-05-12 2024-10-11 02:03:56 +7437 7437 7438 743.7 1487.4 7437 1990-05-13 2024-10-11 02:03:57.000 1990-05-13 2024-10-11 02:03:57 +7438 7438 7439 743.8 1487.6000000000001 7438 1990-05-14 2024-10-11 02:03:58.000 1990-05-14 2024-10-11 02:03:58 +7439 7439 7440 743.9 1487.8000000000002 7439 1990-05-15 2024-10-11 02:03:59.000 1990-05-15 2024-10-11 02:03:59 +7441 7441 7442 744.1 1488.2 7441 1990-05-17 2024-10-11 02:04:01.000 1990-05-17 2024-10-11 02:04:01 +7442 7442 7443 744.2 1488.4 7442 1990-05-18 2024-10-11 02:04:02.000 1990-05-18 2024-10-11 02:04:02 +7443 7443 7444 744.3 1488.6000000000001 7443 1990-05-19 2024-10-11 02:04:03.000 1990-05-19 2024-10-11 02:04:03 +7444 7444 7445 744.4 1488.8000000000002 7444 1990-05-20 2024-10-11 02:04:04.000 1990-05-20 2024-10-11 02:04:04 +7446 7446 7447 744.6 1489.2 7446 1990-05-22 2024-10-11 02:04:06.000 1990-05-22 2024-10-11 02:04:06 +7447 7447 7448 744.7 1489.4 7447 1990-05-23 2024-10-11 02:04:07.000 1990-05-23 2024-10-11 02:04:07 +7448 7448 7449 744.8 1489.6000000000001 7448 1990-05-24 2024-10-11 02:04:08.000 1990-05-24 2024-10-11 02:04:08 +7449 7449 7450 744.9 1489.8000000000002 7449 1990-05-25 2024-10-11 02:04:09.000 1990-05-25 2024-10-11 02:04:09 +7451 7451 7452 745.1 1490.2 7451 1990-05-27 2024-10-11 02:04:11.000 1990-05-27 2024-10-11 02:04:11 +7452 7452 7453 745.2 1490.4 7452 1990-05-28 2024-10-11 02:04:12.000 1990-05-28 2024-10-11 02:04:12 +7453 7453 7454 745.3 1490.6000000000001 7453 1990-05-29 2024-10-11 02:04:13.000 1990-05-29 2024-10-11 02:04:13 +7454 7454 7455 745.4 1490.8000000000002 7454 1990-05-30 2024-10-11 02:04:14.000 1990-05-30 2024-10-11 02:04:14 +7456 7456 7457 745.6 1491.2 7456 1990-06-01 2024-10-11 02:04:16.000 1990-06-01 2024-10-11 02:04:16 +7457 7457 7458 745.7 1491.4 7457 1990-06-02 2024-10-11 02:04:17.000 1990-06-02 2024-10-11 02:04:17 +7458 7458 7459 745.8 1491.6000000000001 7458 1990-06-03 2024-10-11 02:04:18.000 1990-06-03 2024-10-11 02:04:18 +7459 7459 7460 745.9 1491.8000000000002 7459 1990-06-04 2024-10-11 02:04:19.000 1990-06-04 2024-10-11 02:04:19 +7461 7461 7462 746.1 1492.2 7461 1990-06-06 2024-10-11 02:04:21.000 1990-06-06 2024-10-11 02:04:21 +7462 7462 7463 746.2 1492.4 7462 1990-06-07 2024-10-11 02:04:22.000 1990-06-07 2024-10-11 02:04:22 +7463 7463 7464 746.3 1492.6000000000001 7463 1990-06-08 2024-10-11 02:04:23.000 1990-06-08 2024-10-11 02:04:23 +7464 7464 7465 746.4 1492.8000000000002 7464 1990-06-09 2024-10-11 02:04:24.000 1990-06-09 2024-10-11 02:04:24 +7466 7466 7467 746.6 1493.2 7466 1990-06-11 2024-10-11 02:04:26.000 1990-06-11 2024-10-11 02:04:26 +7467 7467 7468 746.7 1493.4 7467 1990-06-12 2024-10-11 02:04:27.000 1990-06-12 2024-10-11 02:04:27 +7468 7468 7469 746.8 1493.6000000000001 7468 1990-06-13 2024-10-11 02:04:28.000 1990-06-13 2024-10-11 02:04:28 +7469 7469 7470 746.9 1493.8000000000002 7469 1990-06-14 2024-10-11 02:04:29.000 1990-06-14 2024-10-11 02:04:29 +7471 7471 7472 747.1 1494.2 7471 1990-06-16 2024-10-11 02:04:31.000 1990-06-16 2024-10-11 02:04:31 +7472 7472 7473 747.2 1494.4 7472 1990-06-17 2024-10-11 02:04:32.000 1990-06-17 2024-10-11 02:04:32 +7473 7473 7474 747.3 1494.6000000000001 7473 1990-06-18 2024-10-11 02:04:33.000 1990-06-18 2024-10-11 02:04:33 +7474 7474 7475 747.4 1494.8000000000002 7474 1990-06-19 2024-10-11 02:04:34.000 1990-06-19 2024-10-11 02:04:34 +7476 7476 7477 747.6 1495.2 7476 1990-06-21 2024-10-11 02:04:36.000 1990-06-21 2024-10-11 02:04:36 +7477 7477 7478 747.7 1495.4 7477 1990-06-22 2024-10-11 02:04:37.000 1990-06-22 2024-10-11 02:04:37 +7478 7478 7479 747.8 1495.6000000000001 7478 1990-06-23 2024-10-11 02:04:38.000 1990-06-23 2024-10-11 02:04:38 +7479 7479 7480 747.9 1495.8000000000002 7479 1990-06-24 2024-10-11 02:04:39.000 1990-06-24 2024-10-11 02:04:39 +7481 7481 7482 748.1 1496.2 7481 1990-06-26 2024-10-11 02:04:41.000 1990-06-26 2024-10-11 02:04:41 +7482 7482 7483 748.2 1496.4 7482 1990-06-27 2024-10-11 02:04:42.000 1990-06-27 2024-10-11 02:04:42 +7483 7483 7484 748.3 1496.6000000000001 7483 1990-06-28 2024-10-11 02:04:43.000 1990-06-28 2024-10-11 02:04:43 +7484 7484 7485 748.4 1496.8000000000002 7484 1990-06-29 2024-10-11 02:04:44.000 1990-06-29 2024-10-11 02:04:44 +7486 7486 7487 748.6 1497.2 7486 1990-07-01 2024-10-11 02:04:46.000 1990-07-01 2024-10-11 02:04:46 +7487 7487 7488 748.7 1497.4 7487 1990-07-02 2024-10-11 02:04:47.000 1990-07-02 2024-10-11 02:04:47 +7488 7488 7489 748.8 1497.6000000000001 7488 1990-07-03 2024-10-11 02:04:48.000 1990-07-03 2024-10-11 02:04:48 +7489 7489 7490 748.9 1497.8000000000002 7489 1990-07-04 2024-10-11 02:04:49.000 1990-07-04 2024-10-11 02:04:49 +7491 7491 7492 749.1 1498.2 7491 1990-07-06 2024-10-11 02:04:51.000 1990-07-06 2024-10-11 02:04:51 +7492 7492 7493 749.2 1498.4 7492 1990-07-07 2024-10-11 02:04:52.000 1990-07-07 2024-10-11 02:04:52 +7493 7493 7494 749.3 1498.6000000000001 7493 1990-07-08 2024-10-11 02:04:53.000 1990-07-08 2024-10-11 02:04:53 +7494 7494 7495 749.4 1498.8000000000002 7494 1990-07-09 2024-10-11 02:04:54.000 1990-07-09 2024-10-11 02:04:54 +7496 7496 7497 749.6 1499.2 7496 1990-07-11 2024-10-11 02:04:56.000 1990-07-11 2024-10-11 02:04:56 +7497 7497 7498 749.7 1499.4 7497 1990-07-12 2024-10-11 02:04:57.000 1990-07-12 2024-10-11 02:04:57 +7498 7498 7499 749.8 1499.6000000000001 7498 1990-07-13 2024-10-11 02:04:58.000 1990-07-13 2024-10-11 02:04:58 +7499 7499 7500 749.9 1499.8000000000002 7499 1990-07-14 2024-10-11 02:04:59.000 1990-07-14 2024-10-11 02:04:59 +7501 7501 7502 750.1 1500.2 7501 1990-07-16 2024-10-11 02:05:01.000 1990-07-16 2024-10-11 02:05:01 +7502 7502 7503 750.2 1500.4 7502 1990-07-17 2024-10-11 02:05:02.000 1990-07-17 2024-10-11 02:05:02 +7503 7503 7504 750.3 1500.6000000000001 7503 1990-07-18 2024-10-11 02:05:03.000 1990-07-18 2024-10-11 02:05:03 +7504 7504 7505 750.4 1500.8000000000002 7504 1990-07-19 2024-10-11 02:05:04.000 1990-07-19 2024-10-11 02:05:04 +7506 7506 7507 750.6 1501.2 7506 1990-07-21 2024-10-11 02:05:06.000 1990-07-21 2024-10-11 02:05:06 +7507 7507 7508 750.7 1501.4 7507 1990-07-22 2024-10-11 02:05:07.000 1990-07-22 2024-10-11 02:05:07 +7508 7508 7509 750.8 1501.6000000000001 7508 1990-07-23 2024-10-11 02:05:08.000 1990-07-23 2024-10-11 02:05:08 +7509 7509 7510 750.9 1501.8000000000002 7509 1990-07-24 2024-10-11 02:05:09.000 1990-07-24 2024-10-11 02:05:09 +7511 7511 7512 751.1 1502.2 7511 1990-07-26 2024-10-11 02:05:11.000 1990-07-26 2024-10-11 02:05:11 +7512 7512 7513 751.2 1502.4 7512 1990-07-27 2024-10-11 02:05:12.000 1990-07-27 2024-10-11 02:05:12 +7513 7513 7514 751.3 1502.6000000000001 7513 1990-07-28 2024-10-11 02:05:13.000 1990-07-28 2024-10-11 02:05:13 +7514 7514 7515 751.4 1502.8000000000002 7514 1990-07-29 2024-10-11 02:05:14.000 1990-07-29 2024-10-11 02:05:14 +7516 7516 7517 751.6 1503.2 7516 1990-07-31 2024-10-11 02:05:16.000 1990-07-31 2024-10-11 02:05:16 +7517 7517 7518 751.7 1503.4 7517 1990-08-01 2024-10-11 02:05:17.000 1990-08-01 2024-10-11 02:05:17 +7518 7518 7519 751.8 1503.6000000000001 7518 1990-08-02 2024-10-11 02:05:18.000 1990-08-02 2024-10-11 02:05:18 +7519 7519 7520 751.9 1503.8000000000002 7519 1990-08-03 2024-10-11 02:05:19.000 1990-08-03 2024-10-11 02:05:19 +7521 7521 7522 752.1 1504.2 7521 1990-08-05 2024-10-11 02:05:21.000 1990-08-05 2024-10-11 02:05:21 +7522 7522 7523 752.2 1504.4 7522 1990-08-06 2024-10-11 02:05:22.000 1990-08-06 2024-10-11 02:05:22 +7523 7523 7524 752.3 1504.6000000000001 7523 1990-08-07 2024-10-11 02:05:23.000 1990-08-07 2024-10-11 02:05:23 +7524 7524 7525 752.4 1504.8000000000002 7524 1990-08-08 2024-10-11 02:05:24.000 1990-08-08 2024-10-11 02:05:24 +7526 7526 7527 752.6 1505.2 7526 1990-08-10 2024-10-11 02:05:26.000 1990-08-10 2024-10-11 02:05:26 +7527 7527 7528 752.7 1505.4 7527 1990-08-11 2024-10-11 02:05:27.000 1990-08-11 2024-10-11 02:05:27 +7528 7528 7529 752.8 1505.6000000000001 7528 1990-08-12 2024-10-11 02:05:28.000 1990-08-12 2024-10-11 02:05:28 +7529 7529 7530 752.9 1505.8000000000002 7529 1990-08-13 2024-10-11 02:05:29.000 1990-08-13 2024-10-11 02:05:29 +7531 7531 7532 753.1 1506.2 7531 1990-08-15 2024-10-11 02:05:31.000 1990-08-15 2024-10-11 02:05:31 +7532 7532 7533 753.2 1506.4 7532 1990-08-16 2024-10-11 02:05:32.000 1990-08-16 2024-10-11 02:05:32 +7533 7533 7534 753.3 1506.6000000000001 7533 1990-08-17 2024-10-11 02:05:33.000 1990-08-17 2024-10-11 02:05:33 +7534 7534 7535 753.4 1506.8000000000002 7534 1990-08-18 2024-10-11 02:05:34.000 1990-08-18 2024-10-11 02:05:34 +7536 7536 7537 753.6 1507.2 7536 1990-08-20 2024-10-11 02:05:36.000 1990-08-20 2024-10-11 02:05:36 +7537 7537 7538 753.7 1507.4 7537 1990-08-21 2024-10-11 02:05:37.000 1990-08-21 2024-10-11 02:05:37 +7538 7538 7539 753.8 1507.6000000000001 7538 1990-08-22 2024-10-11 02:05:38.000 1990-08-22 2024-10-11 02:05:38 +7539 7539 7540 753.9 1507.8000000000002 7539 1990-08-23 2024-10-11 02:05:39.000 1990-08-23 2024-10-11 02:05:39 +7541 7541 7542 754.1 1508.2 7541 1990-08-25 2024-10-11 02:05:41.000 1990-08-25 2024-10-11 02:05:41 +7542 7542 7543 754.2 1508.4 7542 1990-08-26 2024-10-11 02:05:42.000 1990-08-26 2024-10-11 02:05:42 +7543 7543 7544 754.3 1508.6000000000001 7543 1990-08-27 2024-10-11 02:05:43.000 1990-08-27 2024-10-11 02:05:43 +7544 7544 7545 754.4 1508.8000000000002 7544 1990-08-28 2024-10-11 02:05:44.000 1990-08-28 2024-10-11 02:05:44 +7546 7546 7547 754.6 1509.2 7546 1990-08-30 2024-10-11 02:05:46.000 1990-08-30 2024-10-11 02:05:46 +7547 7547 7548 754.7 1509.4 7547 1990-08-31 2024-10-11 02:05:47.000 1990-08-31 2024-10-11 02:05:47 +7548 7548 7549 754.8 1509.6000000000001 7548 1990-09-01 2024-10-11 02:05:48.000 1990-09-01 2024-10-11 02:05:48 +7549 7549 7550 754.9 1509.8000000000002 7549 1990-09-02 2024-10-11 02:05:49.000 1990-09-02 2024-10-11 02:05:49 +7551 7551 7552 755.1 1510.2 7551 1990-09-04 2024-10-11 02:05:51.000 1990-09-04 2024-10-11 02:05:51 +7552 7552 7553 755.2 1510.4 7552 1990-09-05 2024-10-11 02:05:52.000 1990-09-05 2024-10-11 02:05:52 +7553 7553 7554 755.3 1510.6000000000001 7553 1990-09-06 2024-10-11 02:05:53.000 1990-09-06 2024-10-11 02:05:53 +7554 7554 7555 755.4 1510.8000000000002 7554 1990-09-07 2024-10-11 02:05:54.000 1990-09-07 2024-10-11 02:05:54 +7556 7556 7557 755.6 1511.2 7556 1990-09-09 2024-10-11 02:05:56.000 1990-09-09 2024-10-11 02:05:56 +7557 7557 7558 755.7 1511.4 7557 1990-09-10 2024-10-11 02:05:57.000 1990-09-10 2024-10-11 02:05:57 +7558 7558 7559 755.8 1511.6000000000001 7558 1990-09-11 2024-10-11 02:05:58.000 1990-09-11 2024-10-11 02:05:58 +7559 7559 7560 755.9 1511.8000000000002 7559 1990-09-12 2024-10-11 02:05:59.000 1990-09-12 2024-10-11 02:05:59 +7561 7561 7562 756.1 1512.2 7561 1990-09-14 2024-10-11 02:06:01.000 1990-09-14 2024-10-11 02:06:01 +7562 7562 7563 756.2 1512.4 7562 1990-09-15 2024-10-11 02:06:02.000 1990-09-15 2024-10-11 02:06:02 +7563 7563 7564 756.3 1512.6000000000001 7563 1990-09-16 2024-10-11 02:06:03.000 1990-09-16 2024-10-11 02:06:03 +7564 7564 7565 756.4 1512.8000000000002 7564 1990-09-17 2024-10-11 02:06:04.000 1990-09-17 2024-10-11 02:06:04 +7566 7566 7567 756.6 1513.2 7566 1990-09-19 2024-10-11 02:06:06.000 1990-09-19 2024-10-11 02:06:06 +7567 7567 7568 756.7 1513.4 7567 1990-09-20 2024-10-11 02:06:07.000 1990-09-20 2024-10-11 02:06:07 +7568 7568 7569 756.8 1513.6000000000001 7568 1990-09-21 2024-10-11 02:06:08.000 1990-09-21 2024-10-11 02:06:08 +7569 7569 7570 756.9 1513.8000000000002 7569 1990-09-22 2024-10-11 02:06:09.000 1990-09-22 2024-10-11 02:06:09 +7571 7571 7572 757.1 1514.2 7571 1990-09-24 2024-10-11 02:06:11.000 1990-09-24 2024-10-11 02:06:11 +7572 7572 7573 757.2 1514.4 7572 1990-09-25 2024-10-11 02:06:12.000 1990-09-25 2024-10-11 02:06:12 +7573 7573 7574 757.3 1514.6000000000001 7573 1990-09-26 2024-10-11 02:06:13.000 1990-09-26 2024-10-11 02:06:13 +7574 7574 7575 757.4 1514.8000000000002 7574 1990-09-27 2024-10-11 02:06:14.000 1990-09-27 2024-10-11 02:06:14 +7576 7576 7577 757.6 1515.2 7576 1990-09-29 2024-10-11 02:06:16.000 1990-09-29 2024-10-11 02:06:16 +7577 7577 7578 757.7 1515.4 7577 1990-09-30 2024-10-11 02:06:17.000 1990-09-30 2024-10-11 02:06:17 +7578 7578 7579 757.8 1515.6000000000001 7578 1990-10-01 2024-10-11 02:06:18.000 1990-10-01 2024-10-11 02:06:18 +7579 7579 7580 757.9 1515.8000000000002 7579 1990-10-02 2024-10-11 02:06:19.000 1990-10-02 2024-10-11 02:06:19 +7581 7581 7582 758.1 1516.2 7581 1990-10-04 2024-10-11 02:06:21.000 1990-10-04 2024-10-11 02:06:21 +7582 7582 7583 758.2 1516.4 7582 1990-10-05 2024-10-11 02:06:22.000 1990-10-05 2024-10-11 02:06:22 +7583 7583 7584 758.3 1516.6000000000001 7583 1990-10-06 2024-10-11 02:06:23.000 1990-10-06 2024-10-11 02:06:23 +7584 7584 7585 758.4 1516.8000000000002 7584 1990-10-07 2024-10-11 02:06:24.000 1990-10-07 2024-10-11 02:06:24 +7586 7586 7587 758.6 1517.2 7586 1990-10-09 2024-10-11 02:06:26.000 1990-10-09 2024-10-11 02:06:26 +7587 7587 7588 758.7 1517.4 7587 1990-10-10 2024-10-11 02:06:27.000 1990-10-10 2024-10-11 02:06:27 +7588 7588 7589 758.8 1517.6000000000001 7588 1990-10-11 2024-10-11 02:06:28.000 1990-10-11 2024-10-11 02:06:28 +7589 7589 7590 758.9 1517.8000000000002 7589 1990-10-12 2024-10-11 02:06:29.000 1990-10-12 2024-10-11 02:06:29 +7591 7591 7592 759.1 1518.2 7591 1990-10-14 2024-10-11 02:06:31.000 1990-10-14 2024-10-11 02:06:31 +7592 7592 7593 759.2 1518.4 7592 1990-10-15 2024-10-11 02:06:32.000 1990-10-15 2024-10-11 02:06:32 +7593 7593 7594 759.3 1518.6000000000001 7593 1990-10-16 2024-10-11 02:06:33.000 1990-10-16 2024-10-11 02:06:33 +7594 7594 7595 759.4 1518.8000000000002 7594 1990-10-17 2024-10-11 02:06:34.000 1990-10-17 2024-10-11 02:06:34 +7596 7596 7597 759.6 1519.2 7596 1990-10-19 2024-10-11 02:06:36.000 1990-10-19 2024-10-11 02:06:36 +7597 7597 7598 759.7 1519.4 7597 1990-10-20 2024-10-11 02:06:37.000 1990-10-20 2024-10-11 02:06:37 +7598 7598 7599 759.8 1519.6000000000001 7598 1990-10-21 2024-10-11 02:06:38.000 1990-10-21 2024-10-11 02:06:38 +7599 7599 7600 759.9 1519.8000000000002 7599 1990-10-22 2024-10-11 02:06:39.000 1990-10-22 2024-10-11 02:06:39 +7601 7601 7602 760.1 1520.2 7601 1990-10-24 2024-10-11 02:06:41.000 1990-10-24 2024-10-11 02:06:41 +7602 7602 7603 760.2 1520.4 7602 1990-10-25 2024-10-11 02:06:42.000 1990-10-25 2024-10-11 02:06:42 +7603 7603 7604 760.3 1520.6000000000001 7603 1990-10-26 2024-10-11 02:06:43.000 1990-10-26 2024-10-11 02:06:43 +7604 7604 7605 760.4 1520.8000000000002 7604 1990-10-27 2024-10-11 02:06:44.000 1990-10-27 2024-10-11 02:06:44 +7606 7606 7607 760.6 1521.2 7606 1990-10-29 2024-10-11 02:06:46.000 1990-10-29 2024-10-11 02:06:46 +7607 7607 7608 760.7 1521.4 7607 1990-10-30 2024-10-11 02:06:47.000 1990-10-30 2024-10-11 02:06:47 +7608 7608 7609 760.8 1521.6000000000001 7608 1990-10-31 2024-10-11 02:06:48.000 1990-10-31 2024-10-11 02:06:48 +7609 7609 7610 760.9 1521.8000000000002 7609 1990-11-01 2024-10-11 02:06:49.000 1990-11-01 2024-10-11 02:06:49 +7611 7611 7612 761.1 1522.2 7611 1990-11-03 2024-10-11 02:06:51.000 1990-11-03 2024-10-11 02:06:51 +7612 7612 7613 761.2 1522.4 7612 1990-11-04 2024-10-11 02:06:52.000 1990-11-04 2024-10-11 02:06:52 +7613 7613 7614 761.3 1522.6000000000001 7613 1990-11-05 2024-10-11 02:06:53.000 1990-11-05 2024-10-11 02:06:53 +7614 7614 7615 761.4 1522.8000000000002 7614 1990-11-06 2024-10-11 02:06:54.000 1990-11-06 2024-10-11 02:06:54 +7616 7616 7617 761.6 1523.2 7616 1990-11-08 2024-10-11 02:06:56.000 1990-11-08 2024-10-11 02:06:56 +7617 7617 7618 761.7 1523.4 7617 1990-11-09 2024-10-11 02:06:57.000 1990-11-09 2024-10-11 02:06:57 +7618 7618 7619 761.8 1523.6000000000001 7618 1990-11-10 2024-10-11 02:06:58.000 1990-11-10 2024-10-11 02:06:58 +7619 7619 7620 761.9 1523.8000000000002 7619 1990-11-11 2024-10-11 02:06:59.000 1990-11-11 2024-10-11 02:06:59 +7621 7621 7622 762.1 1524.2 7621 1990-11-13 2024-10-11 02:07:01.000 1990-11-13 2024-10-11 02:07:01 +7622 7622 7623 762.2 1524.4 7622 1990-11-14 2024-10-11 02:07:02.000 1990-11-14 2024-10-11 02:07:02 +7623 7623 7624 762.3 1524.6000000000001 7623 1990-11-15 2024-10-11 02:07:03.000 1990-11-15 2024-10-11 02:07:03 +7624 7624 7625 762.4 1524.8000000000002 7624 1990-11-16 2024-10-11 02:07:04.000 1990-11-16 2024-10-11 02:07:04 +7626 7626 7627 762.6 1525.2 7626 1990-11-18 2024-10-11 02:07:06.000 1990-11-18 2024-10-11 02:07:06 +7627 7627 7628 762.7 1525.4 7627 1990-11-19 2024-10-11 02:07:07.000 1990-11-19 2024-10-11 02:07:07 +7628 7628 7629 762.8 1525.6000000000001 7628 1990-11-20 2024-10-11 02:07:08.000 1990-11-20 2024-10-11 02:07:08 +7629 7629 7630 762.9 1525.8000000000002 7629 1990-11-21 2024-10-11 02:07:09.000 1990-11-21 2024-10-11 02:07:09 +7631 7631 7632 763.1 1526.2 7631 1990-11-23 2024-10-11 02:07:11.000 1990-11-23 2024-10-11 02:07:11 +7632 7632 7633 763.2 1526.4 7632 1990-11-24 2024-10-11 02:07:12.000 1990-11-24 2024-10-11 02:07:12 +7633 7633 7634 763.3 1526.6000000000001 7633 1990-11-25 2024-10-11 02:07:13.000 1990-11-25 2024-10-11 02:07:13 +7634 7634 7635 763.4 1526.8000000000002 7634 1990-11-26 2024-10-11 02:07:14.000 1990-11-26 2024-10-11 02:07:14 +7636 7636 7637 763.6 1527.2 7636 1990-11-28 2024-10-11 02:07:16.000 1990-11-28 2024-10-11 02:07:16 +7637 7637 7638 763.7 1527.4 7637 1990-11-29 2024-10-11 02:07:17.000 1990-11-29 2024-10-11 02:07:17 +7638 7638 7639 763.8 1527.6000000000001 7638 1990-11-30 2024-10-11 02:07:18.000 1990-11-30 2024-10-11 02:07:18 +7639 7639 7640 763.9 1527.8000000000002 7639 1990-12-01 2024-10-11 02:07:19.000 1990-12-01 2024-10-11 02:07:19 +7641 7641 7642 764.1 1528.2 7641 1990-12-03 2024-10-11 02:07:21.000 1990-12-03 2024-10-11 02:07:21 +7642 7642 7643 764.2 1528.4 7642 1990-12-04 2024-10-11 02:07:22.000 1990-12-04 2024-10-11 02:07:22 +7643 7643 7644 764.3 1528.6000000000001 7643 1990-12-05 2024-10-11 02:07:23.000 1990-12-05 2024-10-11 02:07:23 +7644 7644 7645 764.4 1528.8000000000002 7644 1990-12-06 2024-10-11 02:07:24.000 1990-12-06 2024-10-11 02:07:24 +7646 7646 7647 764.6 1529.2 7646 1990-12-08 2024-10-11 02:07:26.000 1990-12-08 2024-10-11 02:07:26 +7647 7647 7648 764.7 1529.4 7647 1990-12-09 2024-10-11 02:07:27.000 1990-12-09 2024-10-11 02:07:27 +7648 7648 7649 764.8 1529.6000000000001 7648 1990-12-10 2024-10-11 02:07:28.000 1990-12-10 2024-10-11 02:07:28 +7649 7649 7650 764.9 1529.8000000000002 7649 1990-12-11 2024-10-11 02:07:29.000 1990-12-11 2024-10-11 02:07:29 +7651 7651 7652 765.1 1530.2 7651 1990-12-13 2024-10-11 02:07:31.000 1990-12-13 2024-10-11 02:07:31 +7652 7652 7653 765.2 1530.4 7652 1990-12-14 2024-10-11 02:07:32.000 1990-12-14 2024-10-11 02:07:32 +7653 7653 7654 765.3 1530.6000000000001 7653 1990-12-15 2024-10-11 02:07:33.000 1990-12-15 2024-10-11 02:07:33 +7654 7654 7655 765.4 1530.8000000000002 7654 1990-12-16 2024-10-11 02:07:34.000 1990-12-16 2024-10-11 02:07:34 +7656 7656 7657 765.6 1531.2 7656 1990-12-18 2024-10-11 02:07:36.000 1990-12-18 2024-10-11 02:07:36 +7657 7657 7658 765.7 1531.4 7657 1990-12-19 2024-10-11 02:07:37.000 1990-12-19 2024-10-11 02:07:37 +7658 7658 7659 765.8 1531.6000000000001 7658 1990-12-20 2024-10-11 02:07:38.000 1990-12-20 2024-10-11 02:07:38 +7659 7659 7660 765.9 1531.8000000000002 7659 1990-12-21 2024-10-11 02:07:39.000 1990-12-21 2024-10-11 02:07:39 +7661 7661 7662 766.1 1532.2 7661 1990-12-23 2024-10-11 02:07:41.000 1990-12-23 2024-10-11 02:07:41 +7662 7662 7663 766.2 1532.4 7662 1990-12-24 2024-10-11 02:07:42.000 1990-12-24 2024-10-11 02:07:42 +7663 7663 7664 766.3 1532.6000000000001 7663 1990-12-25 2024-10-11 02:07:43.000 1990-12-25 2024-10-11 02:07:43 +7664 7664 7665 766.4 1532.8000000000002 7664 1990-12-26 2024-10-11 02:07:44.000 1990-12-26 2024-10-11 02:07:44 +7666 7666 7667 766.6 1533.2 7666 1990-12-28 2024-10-11 02:07:46.000 1990-12-28 2024-10-11 02:07:46 +7667 7667 7668 766.7 1533.4 7667 1990-12-29 2024-10-11 02:07:47.000 1990-12-29 2024-10-11 02:07:47 +7668 7668 7669 766.8 1533.6000000000001 7668 1990-12-30 2024-10-11 02:07:48.000 1990-12-30 2024-10-11 02:07:48 +7669 7669 7670 766.9 1533.8000000000002 7669 1990-12-31 2024-10-11 02:07:49.000 1990-12-31 2024-10-11 02:07:49 +7671 7671 7672 767.1 1534.2 7671 1991-01-02 2024-10-11 02:07:51.000 1991-01-02 2024-10-11 02:07:51 +7672 7672 7673 767.2 1534.4 7672 1991-01-03 2024-10-11 02:07:52.000 1991-01-03 2024-10-11 02:07:52 +7673 7673 7674 767.3 1534.6000000000001 7673 1991-01-04 2024-10-11 02:07:53.000 1991-01-04 2024-10-11 02:07:53 +7674 7674 7675 767.4 1534.8000000000002 7674 1991-01-05 2024-10-11 02:07:54.000 1991-01-05 2024-10-11 02:07:54 +7676 7676 7677 767.6 1535.2 7676 1991-01-07 2024-10-11 02:07:56.000 1991-01-07 2024-10-11 02:07:56 +7677 7677 7678 767.7 1535.4 7677 1991-01-08 2024-10-11 02:07:57.000 1991-01-08 2024-10-11 02:07:57 +7678 7678 7679 767.8 1535.6000000000001 7678 1991-01-09 2024-10-11 02:07:58.000 1991-01-09 2024-10-11 02:07:58 +7679 7679 7680 767.9 1535.8000000000002 7679 1991-01-10 2024-10-11 02:07:59.000 1991-01-10 2024-10-11 02:07:59 +7681 7681 7682 768.1 1536.2 7681 1991-01-12 2024-10-11 02:08:01.000 1991-01-12 2024-10-11 02:08:01 +7682 7682 7683 768.2 1536.4 7682 1991-01-13 2024-10-11 02:08:02.000 1991-01-13 2024-10-11 02:08:02 +7683 7683 7684 768.3 1536.6000000000001 7683 1991-01-14 2024-10-11 02:08:03.000 1991-01-14 2024-10-11 02:08:03 +7684 7684 7685 768.4 1536.8000000000002 7684 1991-01-15 2024-10-11 02:08:04.000 1991-01-15 2024-10-11 02:08:04 +7686 7686 7687 768.6 1537.2 7686 1991-01-17 2024-10-11 02:08:06.000 1991-01-17 2024-10-11 02:08:06 +7687 7687 7688 768.7 1537.4 7687 1991-01-18 2024-10-11 02:08:07.000 1991-01-18 2024-10-11 02:08:07 +7688 7688 7689 768.8 1537.6000000000001 7688 1991-01-19 2024-10-11 02:08:08.000 1991-01-19 2024-10-11 02:08:08 +7689 7689 7690 768.9 1537.8000000000002 7689 1991-01-20 2024-10-11 02:08:09.000 1991-01-20 2024-10-11 02:08:09 +7691 7691 7692 769.1 1538.2 7691 1991-01-22 2024-10-11 02:08:11.000 1991-01-22 2024-10-11 02:08:11 +7692 7692 7693 769.2 1538.4 7692 1991-01-23 2024-10-11 02:08:12.000 1991-01-23 2024-10-11 02:08:12 +7693 7693 7694 769.3 1538.6000000000001 7693 1991-01-24 2024-10-11 02:08:13.000 1991-01-24 2024-10-11 02:08:13 +7694 7694 7695 769.4 1538.8000000000002 7694 1991-01-25 2024-10-11 02:08:14.000 1991-01-25 2024-10-11 02:08:14 +7696 7696 7697 769.6 1539.2 7696 1991-01-27 2024-10-11 02:08:16.000 1991-01-27 2024-10-11 02:08:16 +7697 7697 7698 769.7 1539.4 7697 1991-01-28 2024-10-11 02:08:17.000 1991-01-28 2024-10-11 02:08:17 +7698 7698 7699 769.8 1539.6000000000001 7698 1991-01-29 2024-10-11 02:08:18.000 1991-01-29 2024-10-11 02:08:18 +7699 7699 7700 769.9 1539.8000000000002 7699 1991-01-30 2024-10-11 02:08:19.000 1991-01-30 2024-10-11 02:08:19 +7701 7701 7702 770.1 1540.2 7701 1991-02-01 2024-10-11 02:08:21.000 1991-02-01 2024-10-11 02:08:21 +7702 7702 7703 770.2 1540.4 7702 1991-02-02 2024-10-11 02:08:22.000 1991-02-02 2024-10-11 02:08:22 +7703 7703 7704 770.3 1540.6000000000001 7703 1991-02-03 2024-10-11 02:08:23.000 1991-02-03 2024-10-11 02:08:23 +7704 7704 7705 770.4 1540.8000000000002 7704 1991-02-04 2024-10-11 02:08:24.000 1991-02-04 2024-10-11 02:08:24 +7706 7706 7707 770.6 1541.2 7706 1991-02-06 2024-10-11 02:08:26.000 1991-02-06 2024-10-11 02:08:26 +7707 7707 7708 770.7 1541.4 7707 1991-02-07 2024-10-11 02:08:27.000 1991-02-07 2024-10-11 02:08:27 +7708 7708 7709 770.8 1541.6000000000001 7708 1991-02-08 2024-10-11 02:08:28.000 1991-02-08 2024-10-11 02:08:28 +7709 7709 7710 770.9 1541.8000000000002 7709 1991-02-09 2024-10-11 02:08:29.000 1991-02-09 2024-10-11 02:08:29 +7711 7711 7712 771.1 1542.2 7711 1991-02-11 2024-10-11 02:08:31.000 1991-02-11 2024-10-11 02:08:31 +7712 7712 7713 771.2 1542.4 7712 1991-02-12 2024-10-11 02:08:32.000 1991-02-12 2024-10-11 02:08:32 +7713 7713 7714 771.3 1542.6000000000001 7713 1991-02-13 2024-10-11 02:08:33.000 1991-02-13 2024-10-11 02:08:33 +7714 7714 7715 771.4 1542.8000000000002 7714 1991-02-14 2024-10-11 02:08:34.000 1991-02-14 2024-10-11 02:08:34 +7716 7716 7717 771.6 1543.2 7716 1991-02-16 2024-10-11 02:08:36.000 1991-02-16 2024-10-11 02:08:36 +7717 7717 7718 771.7 1543.4 7717 1991-02-17 2024-10-11 02:08:37.000 1991-02-17 2024-10-11 02:08:37 +7718 7718 7719 771.8 1543.6000000000001 7718 1991-02-18 2024-10-11 02:08:38.000 1991-02-18 2024-10-11 02:08:38 +7719 7719 7720 771.9 1543.8000000000002 7719 1991-02-19 2024-10-11 02:08:39.000 1991-02-19 2024-10-11 02:08:39 +7721 7721 7722 772.1 1544.2 7721 1991-02-21 2024-10-11 02:08:41.000 1991-02-21 2024-10-11 02:08:41 +7722 7722 7723 772.2 1544.4 7722 1991-02-22 2024-10-11 02:08:42.000 1991-02-22 2024-10-11 02:08:42 +7723 7723 7724 772.3 1544.6000000000001 7723 1991-02-23 2024-10-11 02:08:43.000 1991-02-23 2024-10-11 02:08:43 +7724 7724 7725 772.4 1544.8000000000002 7724 1991-02-24 2024-10-11 02:08:44.000 1991-02-24 2024-10-11 02:08:44 +7726 7726 7727 772.6 1545.2 7726 1991-02-26 2024-10-11 02:08:46.000 1991-02-26 2024-10-11 02:08:46 +7727 7727 7728 772.7 1545.4 7727 1991-02-27 2024-10-11 02:08:47.000 1991-02-27 2024-10-11 02:08:47 +7728 7728 7729 772.8 1545.6000000000001 7728 1991-02-28 2024-10-11 02:08:48.000 1991-02-28 2024-10-11 02:08:48 +7729 7729 7730 772.9 1545.8000000000002 7729 1991-03-01 2024-10-11 02:08:49.000 1991-03-01 2024-10-11 02:08:49 +7731 7731 7732 773.1 1546.2 7731 1991-03-03 2024-10-11 02:08:51.000 1991-03-03 2024-10-11 02:08:51 +7732 7732 7733 773.2 1546.4 7732 1991-03-04 2024-10-11 02:08:52.000 1991-03-04 2024-10-11 02:08:52 +7733 7733 7734 773.3 1546.6000000000001 7733 1991-03-05 2024-10-11 02:08:53.000 1991-03-05 2024-10-11 02:08:53 +7734 7734 7735 773.4 1546.8000000000002 7734 1991-03-06 2024-10-11 02:08:54.000 1991-03-06 2024-10-11 02:08:54 +7736 7736 7737 773.6 1547.2 7736 1991-03-08 2024-10-11 02:08:56.000 1991-03-08 2024-10-11 02:08:56 +7737 7737 7738 773.7 1547.4 7737 1991-03-09 2024-10-11 02:08:57.000 1991-03-09 2024-10-11 02:08:57 +7738 7738 7739 773.8 1547.6000000000001 7738 1991-03-10 2024-10-11 02:08:58.000 1991-03-10 2024-10-11 02:08:58 +7739 7739 7740 773.9 1547.8000000000002 7739 1991-03-11 2024-10-11 02:08:59.000 1991-03-11 2024-10-11 02:08:59 +7741 7741 7742 774.1 1548.2 7741 1991-03-13 2024-10-11 02:09:01.000 1991-03-13 2024-10-11 02:09:01 +7742 7742 7743 774.2 1548.4 7742 1991-03-14 2024-10-11 02:09:02.000 1991-03-14 2024-10-11 02:09:02 +7743 7743 7744 774.3 1548.6000000000001 7743 1991-03-15 2024-10-11 02:09:03.000 1991-03-15 2024-10-11 02:09:03 +7744 7744 7745 774.4 1548.8000000000002 7744 1991-03-16 2024-10-11 02:09:04.000 1991-03-16 2024-10-11 02:09:04 +7746 7746 7747 774.6 1549.2 7746 1991-03-18 2024-10-11 02:09:06.000 1991-03-18 2024-10-11 02:09:06 +7747 7747 7748 774.7 1549.4 7747 1991-03-19 2024-10-11 02:09:07.000 1991-03-19 2024-10-11 02:09:07 +7748 7748 7749 774.8 1549.6000000000001 7748 1991-03-20 2024-10-11 02:09:08.000 1991-03-20 2024-10-11 02:09:08 +7749 7749 7750 774.9 1549.8000000000002 7749 1991-03-21 2024-10-11 02:09:09.000 1991-03-21 2024-10-11 02:09:09 +7751 7751 7752 775.1 1550.2 7751 1991-03-23 2024-10-11 02:09:11.000 1991-03-23 2024-10-11 02:09:11 +7752 7752 7753 775.2 1550.4 7752 1991-03-24 2024-10-11 02:09:12.000 1991-03-24 2024-10-11 02:09:12 +7753 7753 7754 775.3 1550.6000000000001 7753 1991-03-25 2024-10-11 02:09:13.000 1991-03-25 2024-10-11 02:09:13 +7754 7754 7755 775.4 1550.8000000000002 7754 1991-03-26 2024-10-11 02:09:14.000 1991-03-26 2024-10-11 02:09:14 +7756 7756 7757 775.6 1551.2 7756 1991-03-28 2024-10-11 02:09:16.000 1991-03-28 2024-10-11 02:09:16 +7757 7757 7758 775.7 1551.4 7757 1991-03-29 2024-10-11 02:09:17.000 1991-03-29 2024-10-11 02:09:17 +7758 7758 7759 775.8 1551.6000000000001 7758 1991-03-30 2024-10-11 02:09:18.000 1991-03-30 2024-10-11 02:09:18 +7759 7759 7760 775.9 1551.8000000000002 7759 1991-03-31 2024-10-11 02:09:19.000 1991-03-31 2024-10-11 02:09:19 +7761 7761 7762 776.1 1552.2 7761 1991-04-02 2024-10-11 02:09:21.000 1991-04-02 2024-10-11 02:09:21 +7762 7762 7763 776.2 1552.4 7762 1991-04-03 2024-10-11 02:09:22.000 1991-04-03 2024-10-11 02:09:22 +7763 7763 7764 776.3 1552.6000000000001 7763 1991-04-04 2024-10-11 02:09:23.000 1991-04-04 2024-10-11 02:09:23 +7764 7764 7765 776.4 1552.8000000000002 7764 1991-04-05 2024-10-11 02:09:24.000 1991-04-05 2024-10-11 02:09:24 +7766 7766 7767 776.6 1553.2 7766 1991-04-07 2024-10-11 02:09:26.000 1991-04-07 2024-10-11 02:09:26 +7767 7767 7768 776.7 1553.4 7767 1991-04-08 2024-10-11 02:09:27.000 1991-04-08 2024-10-11 02:09:27 +7768 7768 7769 776.8 1553.6000000000001 7768 1991-04-09 2024-10-11 02:09:28.000 1991-04-09 2024-10-11 02:09:28 +7769 7769 7770 776.9 1553.8000000000002 7769 1991-04-10 2024-10-11 02:09:29.000 1991-04-10 2024-10-11 02:09:29 +7771 7771 7772 777.1 1554.2 7771 1991-04-12 2024-10-11 02:09:31.000 1991-04-12 2024-10-11 02:09:31 +7772 7772 7773 777.2 1554.4 7772 1991-04-13 2024-10-11 02:09:32.000 1991-04-13 2024-10-11 02:09:32 +7773 7773 7774 777.3 1554.6000000000001 7773 1991-04-14 2024-10-11 02:09:33.000 1991-04-14 2024-10-11 02:09:33 +7774 7774 7775 777.4 1554.8000000000002 7774 1991-04-15 2024-10-11 02:09:34.000 1991-04-15 2024-10-11 02:09:34 +7776 7776 7777 777.6 1555.2 7776 1991-04-17 2024-10-11 02:09:36.000 1991-04-17 2024-10-11 02:09:36 +7777 7777 7778 777.7 1555.4 7777 1991-04-18 2024-10-11 02:09:37.000 1991-04-18 2024-10-11 02:09:37 +7778 7778 7779 777.8 1555.6000000000001 7778 1991-04-19 2024-10-11 02:09:38.000 1991-04-19 2024-10-11 02:09:38 +7779 7779 7780 777.9 1555.8000000000002 7779 1991-04-20 2024-10-11 02:09:39.000 1991-04-20 2024-10-11 02:09:39 +7781 7781 7782 778.1 1556.2 7781 1991-04-22 2024-10-11 02:09:41.000 1991-04-22 2024-10-11 02:09:41 +7782 7782 7783 778.2 1556.4 7782 1991-04-23 2024-10-11 02:09:42.000 1991-04-23 2024-10-11 02:09:42 +7783 7783 7784 778.3 1556.6000000000001 7783 1991-04-24 2024-10-11 02:09:43.000 1991-04-24 2024-10-11 02:09:43 +7784 7784 7785 778.4 1556.8000000000002 7784 1991-04-25 2024-10-11 02:09:44.000 1991-04-25 2024-10-11 02:09:44 +7786 7786 7787 778.6 1557.2 7786 1991-04-27 2024-10-11 02:09:46.000 1991-04-27 2024-10-11 02:09:46 +7787 7787 7788 778.7 1557.4 7787 1991-04-28 2024-10-11 02:09:47.000 1991-04-28 2024-10-11 02:09:47 +7788 7788 7789 778.8 1557.6000000000001 7788 1991-04-29 2024-10-11 02:09:48.000 1991-04-29 2024-10-11 02:09:48 +7789 7789 7790 778.9 1557.8000000000002 7789 1991-04-30 2024-10-11 02:09:49.000 1991-04-30 2024-10-11 02:09:49 +7791 7791 7792 779.1 1558.2 7791 1991-05-02 2024-10-11 02:09:51.000 1991-05-02 2024-10-11 02:09:51 +7792 7792 7793 779.2 1558.4 7792 1991-05-03 2024-10-11 02:09:52.000 1991-05-03 2024-10-11 02:09:52 +7793 7793 7794 779.3 1558.6000000000001 7793 1991-05-04 2024-10-11 02:09:53.000 1991-05-04 2024-10-11 02:09:53 +7794 7794 7795 779.4 1558.8000000000002 7794 1991-05-05 2024-10-11 02:09:54.000 1991-05-05 2024-10-11 02:09:54 +7796 7796 7797 779.6 1559.2 7796 1991-05-07 2024-10-11 02:09:56.000 1991-05-07 2024-10-11 02:09:56 +7797 7797 7798 779.7 1559.4 7797 1991-05-08 2024-10-11 02:09:57.000 1991-05-08 2024-10-11 02:09:57 +7798 7798 7799 779.8 1559.6000000000001 7798 1991-05-09 2024-10-11 02:09:58.000 1991-05-09 2024-10-11 02:09:58 +7799 7799 7800 779.9 1559.8000000000002 7799 1991-05-10 2024-10-11 02:09:59.000 1991-05-10 2024-10-11 02:09:59 +7801 7801 7802 780.1 1560.2 7801 1991-05-12 2024-10-11 02:10:01.000 1991-05-12 2024-10-11 02:10:01 +7802 7802 7803 780.2 1560.4 7802 1991-05-13 2024-10-11 02:10:02.000 1991-05-13 2024-10-11 02:10:02 +7803 7803 7804 780.3 1560.6000000000001 7803 1991-05-14 2024-10-11 02:10:03.000 1991-05-14 2024-10-11 02:10:03 +7804 7804 7805 780.4 1560.8000000000002 7804 1991-05-15 2024-10-11 02:10:04.000 1991-05-15 2024-10-11 02:10:04 +7806 7806 7807 780.6 1561.2 7806 1991-05-17 2024-10-11 02:10:06.000 1991-05-17 2024-10-11 02:10:06 +7807 7807 7808 780.7 1561.4 7807 1991-05-18 2024-10-11 02:10:07.000 1991-05-18 2024-10-11 02:10:07 +7808 7808 7809 780.8 1561.6000000000001 7808 1991-05-19 2024-10-11 02:10:08.000 1991-05-19 2024-10-11 02:10:08 +7809 7809 7810 780.9 1561.8000000000002 7809 1991-05-20 2024-10-11 02:10:09.000 1991-05-20 2024-10-11 02:10:09 +7811 7811 7812 781.1 1562.2 7811 1991-05-22 2024-10-11 02:10:11.000 1991-05-22 2024-10-11 02:10:11 +7812 7812 7813 781.2 1562.4 7812 1991-05-23 2024-10-11 02:10:12.000 1991-05-23 2024-10-11 02:10:12 +7813 7813 7814 781.3 1562.6000000000001 7813 1991-05-24 2024-10-11 02:10:13.000 1991-05-24 2024-10-11 02:10:13 +7814 7814 7815 781.4 1562.8000000000002 7814 1991-05-25 2024-10-11 02:10:14.000 1991-05-25 2024-10-11 02:10:14 +7816 7816 7817 781.6 1563.2 7816 1991-05-27 2024-10-11 02:10:16.000 1991-05-27 2024-10-11 02:10:16 +7817 7817 7818 781.7 1563.4 7817 1991-05-28 2024-10-11 02:10:17.000 1991-05-28 2024-10-11 02:10:17 +7818 7818 7819 781.8 1563.6000000000001 7818 1991-05-29 2024-10-11 02:10:18.000 1991-05-29 2024-10-11 02:10:18 +7819 7819 7820 781.9 1563.8000000000002 7819 1991-05-30 2024-10-11 02:10:19.000 1991-05-30 2024-10-11 02:10:19 +7821 7821 7822 782.1 1564.2 7821 1991-06-01 2024-10-11 02:10:21.000 1991-06-01 2024-10-11 02:10:21 +7822 7822 7823 782.2 1564.4 7822 1991-06-02 2024-10-11 02:10:22.000 1991-06-02 2024-10-11 02:10:22 +7823 7823 7824 782.3 1564.6000000000001 7823 1991-06-03 2024-10-11 02:10:23.000 1991-06-03 2024-10-11 02:10:23 +7824 7824 7825 782.4 1564.8000000000002 7824 1991-06-04 2024-10-11 02:10:24.000 1991-06-04 2024-10-11 02:10:24 +7826 7826 7827 782.6 1565.2 7826 1991-06-06 2024-10-11 02:10:26.000 1991-06-06 2024-10-11 02:10:26 +7827 7827 7828 782.7 1565.4 7827 1991-06-07 2024-10-11 02:10:27.000 1991-06-07 2024-10-11 02:10:27 +7828 7828 7829 782.8 1565.6000000000001 7828 1991-06-08 2024-10-11 02:10:28.000 1991-06-08 2024-10-11 02:10:28 +7829 7829 7830 782.9 1565.8000000000002 7829 1991-06-09 2024-10-11 02:10:29.000 1991-06-09 2024-10-11 02:10:29 +7831 7831 7832 783.1 1566.2 7831 1991-06-11 2024-10-11 02:10:31.000 1991-06-11 2024-10-11 02:10:31 +7832 7832 7833 783.2 1566.4 7832 1991-06-12 2024-10-11 02:10:32.000 1991-06-12 2024-10-11 02:10:32 +7833 7833 7834 783.3 1566.6000000000001 7833 1991-06-13 2024-10-11 02:10:33.000 1991-06-13 2024-10-11 02:10:33 +7834 7834 7835 783.4 1566.8000000000002 7834 1991-06-14 2024-10-11 02:10:34.000 1991-06-14 2024-10-11 02:10:34 +7836 7836 7837 783.6 1567.2 7836 1991-06-16 2024-10-11 02:10:36.000 1991-06-16 2024-10-11 02:10:36 +7837 7837 7838 783.7 1567.4 7837 1991-06-17 2024-10-11 02:10:37.000 1991-06-17 2024-10-11 02:10:37 +7838 7838 7839 783.8 1567.6000000000001 7838 1991-06-18 2024-10-11 02:10:38.000 1991-06-18 2024-10-11 02:10:38 +7839 7839 7840 783.9 1567.8000000000002 7839 1991-06-19 2024-10-11 02:10:39.000 1991-06-19 2024-10-11 02:10:39 +7841 7841 7842 784.1 1568.2 7841 1991-06-21 2024-10-11 02:10:41.000 1991-06-21 2024-10-11 02:10:41 +7842 7842 7843 784.2 1568.4 7842 1991-06-22 2024-10-11 02:10:42.000 1991-06-22 2024-10-11 02:10:42 +7843 7843 7844 784.3 1568.6000000000001 7843 1991-06-23 2024-10-11 02:10:43.000 1991-06-23 2024-10-11 02:10:43 +7844 7844 7845 784.4 1568.8000000000002 7844 1991-06-24 2024-10-11 02:10:44.000 1991-06-24 2024-10-11 02:10:44 +7846 7846 7847 784.6 1569.2 7846 1991-06-26 2024-10-11 02:10:46.000 1991-06-26 2024-10-11 02:10:46 +7847 7847 7848 784.7 1569.4 7847 1991-06-27 2024-10-11 02:10:47.000 1991-06-27 2024-10-11 02:10:47 +7848 7848 7849 784.8 1569.6000000000001 7848 1991-06-28 2024-10-11 02:10:48.000 1991-06-28 2024-10-11 02:10:48 +7849 7849 7850 784.9 1569.8000000000002 7849 1991-06-29 2024-10-11 02:10:49.000 1991-06-29 2024-10-11 02:10:49 +7851 7851 7852 785.1 1570.2 7851 1991-07-01 2024-10-11 02:10:51.000 1991-07-01 2024-10-11 02:10:51 +7852 7852 7853 785.2 1570.4 7852 1991-07-02 2024-10-11 02:10:52.000 1991-07-02 2024-10-11 02:10:52 +7853 7853 7854 785.3 1570.6000000000001 7853 1991-07-03 2024-10-11 02:10:53.000 1991-07-03 2024-10-11 02:10:53 +7854 7854 7855 785.4 1570.8000000000002 7854 1991-07-04 2024-10-11 02:10:54.000 1991-07-04 2024-10-11 02:10:54 +7856 7856 7857 785.6 1571.2 7856 1991-07-06 2024-10-11 02:10:56.000 1991-07-06 2024-10-11 02:10:56 +7857 7857 7858 785.7 1571.4 7857 1991-07-07 2024-10-11 02:10:57.000 1991-07-07 2024-10-11 02:10:57 +7858 7858 7859 785.8 1571.6000000000001 7858 1991-07-08 2024-10-11 02:10:58.000 1991-07-08 2024-10-11 02:10:58 +7859 7859 7860 785.9 1571.8000000000002 7859 1991-07-09 2024-10-11 02:10:59.000 1991-07-09 2024-10-11 02:10:59 +7861 7861 7862 786.1 1572.2 7861 1991-07-11 2024-10-11 02:11:01.000 1991-07-11 2024-10-11 02:11:01 +7862 7862 7863 786.2 1572.4 7862 1991-07-12 2024-10-11 02:11:02.000 1991-07-12 2024-10-11 02:11:02 +7863 7863 7864 786.3 1572.6000000000001 7863 1991-07-13 2024-10-11 02:11:03.000 1991-07-13 2024-10-11 02:11:03 +7864 7864 7865 786.4 1572.8000000000002 7864 1991-07-14 2024-10-11 02:11:04.000 1991-07-14 2024-10-11 02:11:04 +7866 7866 7867 786.6 1573.2 7866 1991-07-16 2024-10-11 02:11:06.000 1991-07-16 2024-10-11 02:11:06 +7867 7867 7868 786.7 1573.4 7867 1991-07-17 2024-10-11 02:11:07.000 1991-07-17 2024-10-11 02:11:07 +7868 7868 7869 786.8 1573.6000000000001 7868 1991-07-18 2024-10-11 02:11:08.000 1991-07-18 2024-10-11 02:11:08 +7869 7869 7870 786.9 1573.8000000000002 7869 1991-07-19 2024-10-11 02:11:09.000 1991-07-19 2024-10-11 02:11:09 +7871 7871 7872 787.1 1574.2 7871 1991-07-21 2024-10-11 02:11:11.000 1991-07-21 2024-10-11 02:11:11 +7872 7872 7873 787.2 1574.4 7872 1991-07-22 2024-10-11 02:11:12.000 1991-07-22 2024-10-11 02:11:12 +7873 7873 7874 787.3 1574.6000000000001 7873 1991-07-23 2024-10-11 02:11:13.000 1991-07-23 2024-10-11 02:11:13 +7874 7874 7875 787.4 1574.8000000000002 7874 1991-07-24 2024-10-11 02:11:14.000 1991-07-24 2024-10-11 02:11:14 +7876 7876 7877 787.6 1575.2 7876 1991-07-26 2024-10-11 02:11:16.000 1991-07-26 2024-10-11 02:11:16 +7877 7877 7878 787.7 1575.4 7877 1991-07-27 2024-10-11 02:11:17.000 1991-07-27 2024-10-11 02:11:17 +7878 7878 7879 787.8 1575.6000000000001 7878 1991-07-28 2024-10-11 02:11:18.000 1991-07-28 2024-10-11 02:11:18 +7879 7879 7880 787.9 1575.8000000000002 7879 1991-07-29 2024-10-11 02:11:19.000 1991-07-29 2024-10-11 02:11:19 +7881 7881 7882 788.1 1576.2 7881 1991-07-31 2024-10-11 02:11:21.000 1991-07-31 2024-10-11 02:11:21 +7882 7882 7883 788.2 1576.4 7882 1991-08-01 2024-10-11 02:11:22.000 1991-08-01 2024-10-11 02:11:22 +7883 7883 7884 788.3 1576.6000000000001 7883 1991-08-02 2024-10-11 02:11:23.000 1991-08-02 2024-10-11 02:11:23 +7884 7884 7885 788.4 1576.8000000000002 7884 1991-08-03 2024-10-11 02:11:24.000 1991-08-03 2024-10-11 02:11:24 +7886 7886 7887 788.6 1577.2 7886 1991-08-05 2024-10-11 02:11:26.000 1991-08-05 2024-10-11 02:11:26 +7887 7887 7888 788.7 1577.4 7887 1991-08-06 2024-10-11 02:11:27.000 1991-08-06 2024-10-11 02:11:27 +7888 7888 7889 788.8 1577.6000000000001 7888 1991-08-07 2024-10-11 02:11:28.000 1991-08-07 2024-10-11 02:11:28 +7889 7889 7890 788.9 1577.8000000000002 7889 1991-08-08 2024-10-11 02:11:29.000 1991-08-08 2024-10-11 02:11:29 +7891 7891 7892 789.1 1578.2 7891 1991-08-10 2024-10-11 02:11:31.000 1991-08-10 2024-10-11 02:11:31 +7892 7892 7893 789.2 1578.4 7892 1991-08-11 2024-10-11 02:11:32.000 1991-08-11 2024-10-11 02:11:32 +7893 7893 7894 789.3 1578.6000000000001 7893 1991-08-12 2024-10-11 02:11:33.000 1991-08-12 2024-10-11 02:11:33 +7894 7894 7895 789.4 1578.8000000000002 7894 1991-08-13 2024-10-11 02:11:34.000 1991-08-13 2024-10-11 02:11:34 +7896 7896 7897 789.6 1579.2 7896 1991-08-15 2024-10-11 02:11:36.000 1991-08-15 2024-10-11 02:11:36 +7897 7897 7898 789.7 1579.4 7897 1991-08-16 2024-10-11 02:11:37.000 1991-08-16 2024-10-11 02:11:37 +7898 7898 7899 789.8 1579.6000000000001 7898 1991-08-17 2024-10-11 02:11:38.000 1991-08-17 2024-10-11 02:11:38 +7899 7899 7900 789.9 1579.8000000000002 7899 1991-08-18 2024-10-11 02:11:39.000 1991-08-18 2024-10-11 02:11:39 +7901 7901 7902 790.1 1580.2 7901 1991-08-20 2024-10-11 02:11:41.000 1991-08-20 2024-10-11 02:11:41 +7902 7902 7903 790.2 1580.4 7902 1991-08-21 2024-10-11 02:11:42.000 1991-08-21 2024-10-11 02:11:42 +7903 7903 7904 790.3 1580.6000000000001 7903 1991-08-22 2024-10-11 02:11:43.000 1991-08-22 2024-10-11 02:11:43 +7904 7904 7905 790.4 1580.8000000000002 7904 1991-08-23 2024-10-11 02:11:44.000 1991-08-23 2024-10-11 02:11:44 +7906 7906 7907 790.6 1581.2 7906 1991-08-25 2024-10-11 02:11:46.000 1991-08-25 2024-10-11 02:11:46 +7907 7907 7908 790.7 1581.4 7907 1991-08-26 2024-10-11 02:11:47.000 1991-08-26 2024-10-11 02:11:47 +7908 7908 7909 790.8 1581.6000000000001 7908 1991-08-27 2024-10-11 02:11:48.000 1991-08-27 2024-10-11 02:11:48 +7909 7909 7910 790.9 1581.8000000000002 7909 1991-08-28 2024-10-11 02:11:49.000 1991-08-28 2024-10-11 02:11:49 +7911 7911 7912 791.1 1582.2 7911 1991-08-30 2024-10-11 02:11:51.000 1991-08-30 2024-10-11 02:11:51 +7912 7912 7913 791.2 1582.4 7912 1991-08-31 2024-10-11 02:11:52.000 1991-08-31 2024-10-11 02:11:52 +7913 7913 7914 791.3 1582.6000000000001 7913 1991-09-01 2024-10-11 02:11:53.000 1991-09-01 2024-10-11 02:11:53 +7914 7914 7915 791.4 1582.8000000000002 7914 1991-09-02 2024-10-11 02:11:54.000 1991-09-02 2024-10-11 02:11:54 +7916 7916 7917 791.6 1583.2 7916 1991-09-04 2024-10-11 02:11:56.000 1991-09-04 2024-10-11 02:11:56 +7917 7917 7918 791.7 1583.4 7917 1991-09-05 2024-10-11 02:11:57.000 1991-09-05 2024-10-11 02:11:57 +7918 7918 7919 791.8 1583.6000000000001 7918 1991-09-06 2024-10-11 02:11:58.000 1991-09-06 2024-10-11 02:11:58 +7919 7919 7920 791.9 1583.8000000000002 7919 1991-09-07 2024-10-11 02:11:59.000 1991-09-07 2024-10-11 02:11:59 +7921 7921 7922 792.1 1584.2 7921 1991-09-09 2024-10-11 02:12:01.000 1991-09-09 2024-10-11 02:12:01 +7922 7922 7923 792.2 1584.4 7922 1991-09-10 2024-10-11 02:12:02.000 1991-09-10 2024-10-11 02:12:02 +7923 7923 7924 792.3 1584.6000000000001 7923 1991-09-11 2024-10-11 02:12:03.000 1991-09-11 2024-10-11 02:12:03 +7924 7924 7925 792.4 1584.8000000000002 7924 1991-09-12 2024-10-11 02:12:04.000 1991-09-12 2024-10-11 02:12:04 +7926 7926 7927 792.6 1585.2 7926 1991-09-14 2024-10-11 02:12:06.000 1991-09-14 2024-10-11 02:12:06 +7927 7927 7928 792.7 1585.4 7927 1991-09-15 2024-10-11 02:12:07.000 1991-09-15 2024-10-11 02:12:07 +7928 7928 7929 792.8 1585.6000000000001 7928 1991-09-16 2024-10-11 02:12:08.000 1991-09-16 2024-10-11 02:12:08 +7929 7929 7930 792.9 1585.8000000000002 7929 1991-09-17 2024-10-11 02:12:09.000 1991-09-17 2024-10-11 02:12:09 +7931 7931 7932 793.1 1586.2 7931 1991-09-19 2024-10-11 02:12:11.000 1991-09-19 2024-10-11 02:12:11 +7932 7932 7933 793.2 1586.4 7932 1991-09-20 2024-10-11 02:12:12.000 1991-09-20 2024-10-11 02:12:12 +7933 7933 7934 793.3 1586.6000000000001 7933 1991-09-21 2024-10-11 02:12:13.000 1991-09-21 2024-10-11 02:12:13 +7934 7934 7935 793.4 1586.8000000000002 7934 1991-09-22 2024-10-11 02:12:14.000 1991-09-22 2024-10-11 02:12:14 +7936 7936 7937 793.6 1587.2 7936 1991-09-24 2024-10-11 02:12:16.000 1991-09-24 2024-10-11 02:12:16 +7937 7937 7938 793.7 1587.4 7937 1991-09-25 2024-10-11 02:12:17.000 1991-09-25 2024-10-11 02:12:17 +7938 7938 7939 793.8 1587.6000000000001 7938 1991-09-26 2024-10-11 02:12:18.000 1991-09-26 2024-10-11 02:12:18 +7939 7939 7940 793.9 1587.8000000000002 7939 1991-09-27 2024-10-11 02:12:19.000 1991-09-27 2024-10-11 02:12:19 +7941 7941 7942 794.1 1588.2 7941 1991-09-29 2024-10-11 02:12:21.000 1991-09-29 2024-10-11 02:12:21 +7942 7942 7943 794.2 1588.4 7942 1991-09-30 2024-10-11 02:12:22.000 1991-09-30 2024-10-11 02:12:22 +7943 7943 7944 794.3 1588.6000000000001 7943 1991-10-01 2024-10-11 02:12:23.000 1991-10-01 2024-10-11 02:12:23 +7944 7944 7945 794.4 1588.8000000000002 7944 1991-10-02 2024-10-11 02:12:24.000 1991-10-02 2024-10-11 02:12:24 +7946 7946 7947 794.6 1589.2 7946 1991-10-04 2024-10-11 02:12:26.000 1991-10-04 2024-10-11 02:12:26 +7947 7947 7948 794.7 1589.4 7947 1991-10-05 2024-10-11 02:12:27.000 1991-10-05 2024-10-11 02:12:27 +7948 7948 7949 794.8 1589.6000000000001 7948 1991-10-06 2024-10-11 02:12:28.000 1991-10-06 2024-10-11 02:12:28 +7949 7949 7950 794.9 1589.8000000000002 7949 1991-10-07 2024-10-11 02:12:29.000 1991-10-07 2024-10-11 02:12:29 +7951 7951 7952 795.1 1590.2 7951 1991-10-09 2024-10-11 02:12:31.000 1991-10-09 2024-10-11 02:12:31 +7952 7952 7953 795.2 1590.4 7952 1991-10-10 2024-10-11 02:12:32.000 1991-10-10 2024-10-11 02:12:32 +7953 7953 7954 795.3 1590.6000000000001 7953 1991-10-11 2024-10-11 02:12:33.000 1991-10-11 2024-10-11 02:12:33 +7954 7954 7955 795.4 1590.8000000000002 7954 1991-10-12 2024-10-11 02:12:34.000 1991-10-12 2024-10-11 02:12:34 +7956 7956 7957 795.6 1591.2 7956 1991-10-14 2024-10-11 02:12:36.000 1991-10-14 2024-10-11 02:12:36 +7957 7957 7958 795.7 1591.4 7957 1991-10-15 2024-10-11 02:12:37.000 1991-10-15 2024-10-11 02:12:37 +7958 7958 7959 795.8 1591.6000000000001 7958 1991-10-16 2024-10-11 02:12:38.000 1991-10-16 2024-10-11 02:12:38 +7959 7959 7960 795.9 1591.8000000000002 7959 1991-10-17 2024-10-11 02:12:39.000 1991-10-17 2024-10-11 02:12:39 +7961 7961 7962 796.1 1592.2 7961 1991-10-19 2024-10-11 02:12:41.000 1991-10-19 2024-10-11 02:12:41 +7962 7962 7963 796.2 1592.4 7962 1991-10-20 2024-10-11 02:12:42.000 1991-10-20 2024-10-11 02:12:42 +7963 7963 7964 796.3 1592.6000000000001 7963 1991-10-21 2024-10-11 02:12:43.000 1991-10-21 2024-10-11 02:12:43 +7964 7964 7965 796.4 1592.8000000000002 7964 1991-10-22 2024-10-11 02:12:44.000 1991-10-22 2024-10-11 02:12:44 +7966 7966 7967 796.6 1593.2 7966 1991-10-24 2024-10-11 02:12:46.000 1991-10-24 2024-10-11 02:12:46 +7967 7967 7968 796.7 1593.4 7967 1991-10-25 2024-10-11 02:12:47.000 1991-10-25 2024-10-11 02:12:47 +7968 7968 7969 796.8 1593.6000000000001 7968 1991-10-26 2024-10-11 02:12:48.000 1991-10-26 2024-10-11 02:12:48 +7969 7969 7970 796.9 1593.8000000000002 7969 1991-10-27 2024-10-11 02:12:49.000 1991-10-27 2024-10-11 02:12:49 +7971 7971 7972 797.1 1594.2 7971 1991-10-29 2024-10-11 02:12:51.000 1991-10-29 2024-10-11 02:12:51 +7972 7972 7973 797.2 1594.4 7972 1991-10-30 2024-10-11 02:12:52.000 1991-10-30 2024-10-11 02:12:52 +7973 7973 7974 797.3 1594.6000000000001 7973 1991-10-31 2024-10-11 02:12:53.000 1991-10-31 2024-10-11 02:12:53 +7974 7974 7975 797.4 1594.8000000000002 7974 1991-11-01 2024-10-11 02:12:54.000 1991-11-01 2024-10-11 02:12:54 +7976 7976 7977 797.6 1595.2 7976 1991-11-03 2024-10-11 02:12:56.000 1991-11-03 2024-10-11 02:12:56 +7977 7977 7978 797.7 1595.4 7977 1991-11-04 2024-10-11 02:12:57.000 1991-11-04 2024-10-11 02:12:57 +7978 7978 7979 797.8 1595.6000000000001 7978 1991-11-05 2024-10-11 02:12:58.000 1991-11-05 2024-10-11 02:12:58 +7979 7979 7980 797.9 1595.8000000000002 7979 1991-11-06 2024-10-11 02:12:59.000 1991-11-06 2024-10-11 02:12:59 +7981 7981 7982 798.1 1596.2 7981 1991-11-08 2024-10-11 02:13:01.000 1991-11-08 2024-10-11 02:13:01 +7982 7982 7983 798.2 1596.4 7982 1991-11-09 2024-10-11 02:13:02.000 1991-11-09 2024-10-11 02:13:02 +7983 7983 7984 798.3 1596.6000000000001 7983 1991-11-10 2024-10-11 02:13:03.000 1991-11-10 2024-10-11 02:13:03 +7984 7984 7985 798.4 1596.8000000000002 7984 1991-11-11 2024-10-11 02:13:04.000 1991-11-11 2024-10-11 02:13:04 +7986 7986 7987 798.6 1597.2 7986 1991-11-13 2024-10-11 02:13:06.000 1991-11-13 2024-10-11 02:13:06 +7987 7987 7988 798.7 1597.4 7987 1991-11-14 2024-10-11 02:13:07.000 1991-11-14 2024-10-11 02:13:07 +7988 7988 7989 798.8 1597.6000000000001 7988 1991-11-15 2024-10-11 02:13:08.000 1991-11-15 2024-10-11 02:13:08 +7989 7989 7990 798.9 1597.8000000000002 7989 1991-11-16 2024-10-11 02:13:09.000 1991-11-16 2024-10-11 02:13:09 +7991 7991 7992 799.1 1598.2 7991 1991-11-18 2024-10-11 02:13:11.000 1991-11-18 2024-10-11 02:13:11 +7992 7992 7993 799.2 1598.4 7992 1991-11-19 2024-10-11 02:13:12.000 1991-11-19 2024-10-11 02:13:12 +7993 7993 7994 799.3 1598.6000000000001 7993 1991-11-20 2024-10-11 02:13:13.000 1991-11-20 2024-10-11 02:13:13 +7994 7994 7995 799.4 1598.8000000000002 7994 1991-11-21 2024-10-11 02:13:14.000 1991-11-21 2024-10-11 02:13:14 +7996 7996 7997 799.6 1599.2 7996 1991-11-23 2024-10-11 02:13:16.000 1991-11-23 2024-10-11 02:13:16 +7997 7997 7998 799.7 1599.4 7997 1991-11-24 2024-10-11 02:13:17.000 1991-11-24 2024-10-11 02:13:17 +7998 7998 7999 799.8 1599.6000000000001 7998 1991-11-25 2024-10-11 02:13:18.000 1991-11-25 2024-10-11 02:13:18 +7999 7999 8000 799.9 1599.8000000000002 7999 1991-11-26 2024-10-11 02:13:19.000 1991-11-26 2024-10-11 02:13:19 +8001 8001 8002 800.1 1600.2 8001 1991-11-28 2024-10-11 02:13:21.000 1991-11-28 2024-10-11 02:13:21 +8002 8002 8003 800.2 1600.4 8002 1991-11-29 2024-10-11 02:13:22.000 1991-11-29 2024-10-11 02:13:22 +8003 8003 8004 800.3 1600.6000000000001 8003 1991-11-30 2024-10-11 02:13:23.000 1991-11-30 2024-10-11 02:13:23 +8004 8004 8005 800.4 1600.8000000000002 8004 1991-12-01 2024-10-11 02:13:24.000 1991-12-01 2024-10-11 02:13:24 +8006 8006 8007 800.6 1601.2 8006 1991-12-03 2024-10-11 02:13:26.000 1991-12-03 2024-10-11 02:13:26 +8007 8007 8008 800.7 1601.4 8007 1991-12-04 2024-10-11 02:13:27.000 1991-12-04 2024-10-11 02:13:27 +8008 8008 8009 800.8 1601.6000000000001 8008 1991-12-05 2024-10-11 02:13:28.000 1991-12-05 2024-10-11 02:13:28 +8009 8009 8010 800.9 1601.8000000000002 8009 1991-12-06 2024-10-11 02:13:29.000 1991-12-06 2024-10-11 02:13:29 +8011 8011 8012 801.1 1602.2 8011 1991-12-08 2024-10-11 02:13:31.000 1991-12-08 2024-10-11 02:13:31 +8012 8012 8013 801.2 1602.4 8012 1991-12-09 2024-10-11 02:13:32.000 1991-12-09 2024-10-11 02:13:32 +8013 8013 8014 801.3 1602.6000000000001 8013 1991-12-10 2024-10-11 02:13:33.000 1991-12-10 2024-10-11 02:13:33 +8014 8014 8015 801.4 1602.8000000000002 8014 1991-12-11 2024-10-11 02:13:34.000 1991-12-11 2024-10-11 02:13:34 +8016 8016 8017 801.6 1603.2 8016 1991-12-13 2024-10-11 02:13:36.000 1991-12-13 2024-10-11 02:13:36 +8017 8017 8018 801.7 1603.4 8017 1991-12-14 2024-10-11 02:13:37.000 1991-12-14 2024-10-11 02:13:37 +8018 8018 8019 801.8 1603.6000000000001 8018 1991-12-15 2024-10-11 02:13:38.000 1991-12-15 2024-10-11 02:13:38 +8019 8019 8020 801.9 1603.8000000000002 8019 1991-12-16 2024-10-11 02:13:39.000 1991-12-16 2024-10-11 02:13:39 +8021 8021 8022 802.1 1604.2 8021 1991-12-18 2024-10-11 02:13:41.000 1991-12-18 2024-10-11 02:13:41 +8022 8022 8023 802.2 1604.4 8022 1991-12-19 2024-10-11 02:13:42.000 1991-12-19 2024-10-11 02:13:42 +8023 8023 8024 802.3 1604.6000000000001 8023 1991-12-20 2024-10-11 02:13:43.000 1991-12-20 2024-10-11 02:13:43 +8024 8024 8025 802.4 1604.8000000000002 8024 1991-12-21 2024-10-11 02:13:44.000 1991-12-21 2024-10-11 02:13:44 +8026 8026 8027 802.6 1605.2 8026 1991-12-23 2024-10-11 02:13:46.000 1991-12-23 2024-10-11 02:13:46 +8027 8027 8028 802.7 1605.4 8027 1991-12-24 2024-10-11 02:13:47.000 1991-12-24 2024-10-11 02:13:47 +8028 8028 8029 802.8 1605.6000000000001 8028 1991-12-25 2024-10-11 02:13:48.000 1991-12-25 2024-10-11 02:13:48 +8029 8029 8030 802.9 1605.8000000000002 8029 1991-12-26 2024-10-11 02:13:49.000 1991-12-26 2024-10-11 02:13:49 +8031 8031 8032 803.1 1606.2 8031 1991-12-28 2024-10-11 02:13:51.000 1991-12-28 2024-10-11 02:13:51 +8032 8032 8033 803.2 1606.4 8032 1991-12-29 2024-10-11 02:13:52.000 1991-12-29 2024-10-11 02:13:52 +8033 8033 8034 803.3 1606.6000000000001 8033 1991-12-30 2024-10-11 02:13:53.000 1991-12-30 2024-10-11 02:13:53 +8034 8034 8035 803.4 1606.8000000000002 8034 1991-12-31 2024-10-11 02:13:54.000 1991-12-31 2024-10-11 02:13:54 +8036 8036 8037 803.6 1607.2 8036 1992-01-02 2024-10-11 02:13:56.000 1992-01-02 2024-10-11 02:13:56 +8037 8037 8038 803.7 1607.4 8037 1992-01-03 2024-10-11 02:13:57.000 1992-01-03 2024-10-11 02:13:57 +8038 8038 8039 803.8 1607.6000000000001 8038 1992-01-04 2024-10-11 02:13:58.000 1992-01-04 2024-10-11 02:13:58 +8039 8039 8040 803.9 1607.8000000000002 8039 1992-01-05 2024-10-11 02:13:59.000 1992-01-05 2024-10-11 02:13:59 +8041 8041 8042 804.1 1608.2 8041 1992-01-07 2024-10-11 02:14:01.000 1992-01-07 2024-10-11 02:14:01 +8042 8042 8043 804.2 1608.4 8042 1992-01-08 2024-10-11 02:14:02.000 1992-01-08 2024-10-11 02:14:02 +8043 8043 8044 804.3 1608.6000000000001 8043 1992-01-09 2024-10-11 02:14:03.000 1992-01-09 2024-10-11 02:14:03 +8044 8044 8045 804.4 1608.8000000000002 8044 1992-01-10 2024-10-11 02:14:04.000 1992-01-10 2024-10-11 02:14:04 +8046 8046 8047 804.6 1609.2 8046 1992-01-12 2024-10-11 02:14:06.000 1992-01-12 2024-10-11 02:14:06 +8047 8047 8048 804.7 1609.4 8047 1992-01-13 2024-10-11 02:14:07.000 1992-01-13 2024-10-11 02:14:07 +8048 8048 8049 804.8 1609.6000000000001 8048 1992-01-14 2024-10-11 02:14:08.000 1992-01-14 2024-10-11 02:14:08 +8049 8049 8050 804.9 1609.8000000000002 8049 1992-01-15 2024-10-11 02:14:09.000 1992-01-15 2024-10-11 02:14:09 +8051 8051 8052 805.1 1610.2 8051 1992-01-17 2024-10-11 02:14:11.000 1992-01-17 2024-10-11 02:14:11 +8052 8052 8053 805.2 1610.4 8052 1992-01-18 2024-10-11 02:14:12.000 1992-01-18 2024-10-11 02:14:12 +8053 8053 8054 805.3 1610.6000000000001 8053 1992-01-19 2024-10-11 02:14:13.000 1992-01-19 2024-10-11 02:14:13 +8054 8054 8055 805.4 1610.8000000000002 8054 1992-01-20 2024-10-11 02:14:14.000 1992-01-20 2024-10-11 02:14:14 +8056 8056 8057 805.6 1611.2 8056 1992-01-22 2024-10-11 02:14:16.000 1992-01-22 2024-10-11 02:14:16 +8057 8057 8058 805.7 1611.4 8057 1992-01-23 2024-10-11 02:14:17.000 1992-01-23 2024-10-11 02:14:17 +8058 8058 8059 805.8 1611.6000000000001 8058 1992-01-24 2024-10-11 02:14:18.000 1992-01-24 2024-10-11 02:14:18 +8059 8059 8060 805.9 1611.8000000000002 8059 1992-01-25 2024-10-11 02:14:19.000 1992-01-25 2024-10-11 02:14:19 +8061 8061 8062 806.1 1612.2 8061 1992-01-27 2024-10-11 02:14:21.000 1992-01-27 2024-10-11 02:14:21 +8062 8062 8063 806.2 1612.4 8062 1992-01-28 2024-10-11 02:14:22.000 1992-01-28 2024-10-11 02:14:22 +8063 8063 8064 806.3 1612.6000000000001 8063 1992-01-29 2024-10-11 02:14:23.000 1992-01-29 2024-10-11 02:14:23 +8064 8064 8065 806.4 1612.8000000000002 8064 1992-01-30 2024-10-11 02:14:24.000 1992-01-30 2024-10-11 02:14:24 +8066 8066 8067 806.6 1613.2 8066 1992-02-01 2024-10-11 02:14:26.000 1992-02-01 2024-10-11 02:14:26 +8067 8067 8068 806.7 1613.4 8067 1992-02-02 2024-10-11 02:14:27.000 1992-02-02 2024-10-11 02:14:27 +8068 8068 8069 806.8 1613.6000000000001 8068 1992-02-03 2024-10-11 02:14:28.000 1992-02-03 2024-10-11 02:14:28 +8069 8069 8070 806.9 1613.8000000000002 8069 1992-02-04 2024-10-11 02:14:29.000 1992-02-04 2024-10-11 02:14:29 +8071 8071 8072 807.1 1614.2 8071 1992-02-06 2024-10-11 02:14:31.000 1992-02-06 2024-10-11 02:14:31 +8072 8072 8073 807.2 1614.4 8072 1992-02-07 2024-10-11 02:14:32.000 1992-02-07 2024-10-11 02:14:32 +8073 8073 8074 807.3 1614.6000000000001 8073 1992-02-08 2024-10-11 02:14:33.000 1992-02-08 2024-10-11 02:14:33 +8074 8074 8075 807.4 1614.8000000000002 8074 1992-02-09 2024-10-11 02:14:34.000 1992-02-09 2024-10-11 02:14:34 +8076 8076 8077 807.6 1615.2 8076 1992-02-11 2024-10-11 02:14:36.000 1992-02-11 2024-10-11 02:14:36 +8077 8077 8078 807.7 1615.4 8077 1992-02-12 2024-10-11 02:14:37.000 1992-02-12 2024-10-11 02:14:37 +8078 8078 8079 807.8 1615.6000000000001 8078 1992-02-13 2024-10-11 02:14:38.000 1992-02-13 2024-10-11 02:14:38 +8079 8079 8080 807.9 1615.8000000000002 8079 1992-02-14 2024-10-11 02:14:39.000 1992-02-14 2024-10-11 02:14:39 +8081 8081 8082 808.1 1616.2 8081 1992-02-16 2024-10-11 02:14:41.000 1992-02-16 2024-10-11 02:14:41 +8082 8082 8083 808.2 1616.4 8082 1992-02-17 2024-10-11 02:14:42.000 1992-02-17 2024-10-11 02:14:42 +8083 8083 8084 808.3 1616.6000000000001 8083 1992-02-18 2024-10-11 02:14:43.000 1992-02-18 2024-10-11 02:14:43 +8084 8084 8085 808.4 1616.8000000000002 8084 1992-02-19 2024-10-11 02:14:44.000 1992-02-19 2024-10-11 02:14:44 +8086 8086 8087 808.6 1617.2 8086 1992-02-21 2024-10-11 02:14:46.000 1992-02-21 2024-10-11 02:14:46 +8087 8087 8088 808.7 1617.4 8087 1992-02-22 2024-10-11 02:14:47.000 1992-02-22 2024-10-11 02:14:47 +8088 8088 8089 808.8 1617.6000000000001 8088 1992-02-23 2024-10-11 02:14:48.000 1992-02-23 2024-10-11 02:14:48 +8089 8089 8090 808.9 1617.8000000000002 8089 1992-02-24 2024-10-11 02:14:49.000 1992-02-24 2024-10-11 02:14:49 +8091 8091 8092 809.1 1618.2 8091 1992-02-26 2024-10-11 02:14:51.000 1992-02-26 2024-10-11 02:14:51 +8092 8092 8093 809.2 1618.4 8092 1992-02-27 2024-10-11 02:14:52.000 1992-02-27 2024-10-11 02:14:52 +8093 8093 8094 809.3 1618.6000000000001 8093 1992-02-28 2024-10-11 02:14:53.000 1992-02-28 2024-10-11 02:14:53 +8094 8094 8095 809.4 1618.8000000000002 8094 1992-02-29 2024-10-11 02:14:54.000 1992-02-29 2024-10-11 02:14:54 +8096 8096 8097 809.6 1619.2 8096 1992-03-02 2024-10-11 02:14:56.000 1992-03-02 2024-10-11 02:14:56 +8097 8097 8098 809.7 1619.4 8097 1992-03-03 2024-10-11 02:14:57.000 1992-03-03 2024-10-11 02:14:57 +8098 8098 8099 809.8 1619.6000000000001 8098 1992-03-04 2024-10-11 02:14:58.000 1992-03-04 2024-10-11 02:14:58 +8099 8099 8100 809.9 1619.8000000000002 8099 1992-03-05 2024-10-11 02:14:59.000 1992-03-05 2024-10-11 02:14:59 +8101 8101 8102 810.1 1620.2 8101 1992-03-07 2024-10-11 02:15:01.000 1992-03-07 2024-10-11 02:15:01 +8102 8102 8103 810.2 1620.4 8102 1992-03-08 2024-10-11 02:15:02.000 1992-03-08 2024-10-11 02:15:02 +8103 8103 8104 810.3 1620.6000000000001 8103 1992-03-09 2024-10-11 02:15:03.000 1992-03-09 2024-10-11 02:15:03 +8104 8104 8105 810.4 1620.8000000000002 8104 1992-03-10 2024-10-11 02:15:04.000 1992-03-10 2024-10-11 02:15:04 +8106 8106 8107 810.6 1621.2 8106 1992-03-12 2024-10-11 02:15:06.000 1992-03-12 2024-10-11 02:15:06 +8107 8107 8108 810.7 1621.4 8107 1992-03-13 2024-10-11 02:15:07.000 1992-03-13 2024-10-11 02:15:07 +8108 8108 8109 810.8 1621.6000000000001 8108 1992-03-14 2024-10-11 02:15:08.000 1992-03-14 2024-10-11 02:15:08 +8109 8109 8110 810.9 1621.8000000000002 8109 1992-03-15 2024-10-11 02:15:09.000 1992-03-15 2024-10-11 02:15:09 +8111 8111 8112 811.1 1622.2 8111 1992-03-17 2024-10-11 02:15:11.000 1992-03-17 2024-10-11 02:15:11 +8112 8112 8113 811.2 1622.4 8112 1992-03-18 2024-10-11 02:15:12.000 1992-03-18 2024-10-11 02:15:12 +8113 8113 8114 811.3 1622.6000000000001 8113 1992-03-19 2024-10-11 02:15:13.000 1992-03-19 2024-10-11 02:15:13 +8114 8114 8115 811.4 1622.8000000000002 8114 1992-03-20 2024-10-11 02:15:14.000 1992-03-20 2024-10-11 02:15:14 +8116 8116 8117 811.6 1623.2 8116 1992-03-22 2024-10-11 02:15:16.000 1992-03-22 2024-10-11 02:15:16 +8117 8117 8118 811.7 1623.4 8117 1992-03-23 2024-10-11 02:15:17.000 1992-03-23 2024-10-11 02:15:17 +8118 8118 8119 811.8 1623.6000000000001 8118 1992-03-24 2024-10-11 02:15:18.000 1992-03-24 2024-10-11 02:15:18 +8119 8119 8120 811.9 1623.8000000000002 8119 1992-03-25 2024-10-11 02:15:19.000 1992-03-25 2024-10-11 02:15:19 +8121 8121 8122 812.1 1624.2 8121 1992-03-27 2024-10-11 02:15:21.000 1992-03-27 2024-10-11 02:15:21 +8122 8122 8123 812.2 1624.4 8122 1992-03-28 2024-10-11 02:15:22.000 1992-03-28 2024-10-11 02:15:22 +8123 8123 8124 812.3 1624.6000000000001 8123 1992-03-29 2024-10-11 02:15:23.000 1992-03-29 2024-10-11 02:15:23 +8124 8124 8125 812.4 1624.8000000000002 8124 1992-03-30 2024-10-11 02:15:24.000 1992-03-30 2024-10-11 02:15:24 +8126 8126 8127 812.6 1625.2 8126 1992-04-01 2024-10-11 02:15:26.000 1992-04-01 2024-10-11 02:15:26 +8127 8127 8128 812.7 1625.4 8127 1992-04-02 2024-10-11 02:15:27.000 1992-04-02 2024-10-11 02:15:27 +8128 8128 8129 812.8 1625.6000000000001 8128 1992-04-03 2024-10-11 02:15:28.000 1992-04-03 2024-10-11 02:15:28 +8129 8129 8130 812.9 1625.8000000000002 8129 1992-04-04 2024-10-11 02:15:29.000 1992-04-04 2024-10-11 02:15:29 +8131 8131 8132 813.1 1626.2 8131 1992-04-06 2024-10-11 02:15:31.000 1992-04-06 2024-10-11 02:15:31 +8132 8132 8133 813.2 1626.4 8132 1992-04-07 2024-10-11 02:15:32.000 1992-04-07 2024-10-11 02:15:32 +8133 8133 8134 813.3 1626.6000000000001 8133 1992-04-08 2024-10-11 02:15:33.000 1992-04-08 2024-10-11 02:15:33 +8134 8134 8135 813.4 1626.8000000000002 8134 1992-04-09 2024-10-11 02:15:34.000 1992-04-09 2024-10-11 02:15:34 +8136 8136 8137 813.6 1627.2 8136 1992-04-11 2024-10-11 02:15:36.000 1992-04-11 2024-10-11 02:15:36 +8137 8137 8138 813.7 1627.4 8137 1992-04-12 2024-10-11 02:15:37.000 1992-04-12 2024-10-11 02:15:37 +8138 8138 8139 813.8 1627.6000000000001 8138 1992-04-13 2024-10-11 02:15:38.000 1992-04-13 2024-10-11 02:15:38 +8139 8139 8140 813.9 1627.8000000000002 8139 1992-04-14 2024-10-11 02:15:39.000 1992-04-14 2024-10-11 02:15:39 +8141 8141 8142 814.1 1628.2 8141 1992-04-16 2024-10-11 02:15:41.000 1992-04-16 2024-10-11 02:15:41 +8142 8142 8143 814.2 1628.4 8142 1992-04-17 2024-10-11 02:15:42.000 1992-04-17 2024-10-11 02:15:42 +8143 8143 8144 814.3 1628.6000000000001 8143 1992-04-18 2024-10-11 02:15:43.000 1992-04-18 2024-10-11 02:15:43 +8144 8144 8145 814.4 1628.8000000000002 8144 1992-04-19 2024-10-11 02:15:44.000 1992-04-19 2024-10-11 02:15:44 +8146 8146 8147 814.6 1629.2 8146 1992-04-21 2024-10-11 02:15:46.000 1992-04-21 2024-10-11 02:15:46 +8147 8147 8148 814.7 1629.4 8147 1992-04-22 2024-10-11 02:15:47.000 1992-04-22 2024-10-11 02:15:47 +8148 8148 8149 814.8 1629.6000000000001 8148 1992-04-23 2024-10-11 02:15:48.000 1992-04-23 2024-10-11 02:15:48 +8149 8149 8150 814.9 1629.8000000000002 8149 1992-04-24 2024-10-11 02:15:49.000 1992-04-24 2024-10-11 02:15:49 +8151 8151 8152 815.1 1630.2 8151 1992-04-26 2024-10-11 02:15:51.000 1992-04-26 2024-10-11 02:15:51 +8152 8152 8153 815.2 1630.4 8152 1992-04-27 2024-10-11 02:15:52.000 1992-04-27 2024-10-11 02:15:52 +8153 8153 8154 815.3 1630.6000000000001 8153 1992-04-28 2024-10-11 02:15:53.000 1992-04-28 2024-10-11 02:15:53 +8154 8154 8155 815.4 1630.8000000000002 8154 1992-04-29 2024-10-11 02:15:54.000 1992-04-29 2024-10-11 02:15:54 +8156 8156 8157 815.6 1631.2 8156 1992-05-01 2024-10-11 02:15:56.000 1992-05-01 2024-10-11 02:15:56 +8157 8157 8158 815.7 1631.4 8157 1992-05-02 2024-10-11 02:15:57.000 1992-05-02 2024-10-11 02:15:57 +8158 8158 8159 815.8 1631.6000000000001 8158 1992-05-03 2024-10-11 02:15:58.000 1992-05-03 2024-10-11 02:15:58 +8159 8159 8160 815.9 1631.8000000000002 8159 1992-05-04 2024-10-11 02:15:59.000 1992-05-04 2024-10-11 02:15:59 +8161 8161 8162 816.1 1632.2 8161 1992-05-06 2024-10-11 02:16:01.000 1992-05-06 2024-10-11 02:16:01 +8162 8162 8163 816.2 1632.4 8162 1992-05-07 2024-10-11 02:16:02.000 1992-05-07 2024-10-11 02:16:02 +8163 8163 8164 816.3 1632.6000000000001 8163 1992-05-08 2024-10-11 02:16:03.000 1992-05-08 2024-10-11 02:16:03 +8164 8164 8165 816.4 1632.8000000000002 8164 1992-05-09 2024-10-11 02:16:04.000 1992-05-09 2024-10-11 02:16:04 +8166 8166 8167 816.6 1633.2 8166 1992-05-11 2024-10-11 02:16:06.000 1992-05-11 2024-10-11 02:16:06 +8167 8167 8168 816.7 1633.4 8167 1992-05-12 2024-10-11 02:16:07.000 1992-05-12 2024-10-11 02:16:07 +8168 8168 8169 816.8 1633.6000000000001 8168 1992-05-13 2024-10-11 02:16:08.000 1992-05-13 2024-10-11 02:16:08 +8169 8169 8170 816.9 1633.8000000000002 8169 1992-05-14 2024-10-11 02:16:09.000 1992-05-14 2024-10-11 02:16:09 +8171 8171 8172 817.1 1634.2 8171 1992-05-16 2024-10-11 02:16:11.000 1992-05-16 2024-10-11 02:16:11 +8172 8172 8173 817.2 1634.4 8172 1992-05-17 2024-10-11 02:16:12.000 1992-05-17 2024-10-11 02:16:12 +8173 8173 8174 817.3 1634.6000000000001 8173 1992-05-18 2024-10-11 02:16:13.000 1992-05-18 2024-10-11 02:16:13 +8174 8174 8175 817.4 1634.8000000000002 8174 1992-05-19 2024-10-11 02:16:14.000 1992-05-19 2024-10-11 02:16:14 +8176 8176 8177 817.6 1635.2 8176 1992-05-21 2024-10-11 02:16:16.000 1992-05-21 2024-10-11 02:16:16 +8177 8177 8178 817.7 1635.4 8177 1992-05-22 2024-10-11 02:16:17.000 1992-05-22 2024-10-11 02:16:17 +8178 8178 8179 817.8 1635.6000000000001 8178 1992-05-23 2024-10-11 02:16:18.000 1992-05-23 2024-10-11 02:16:18 +8179 8179 8180 817.9 1635.8000000000002 8179 1992-05-24 2024-10-11 02:16:19.000 1992-05-24 2024-10-11 02:16:19 +8181 8181 8182 818.1 1636.2 8181 1992-05-26 2024-10-11 02:16:21.000 1992-05-26 2024-10-11 02:16:21 +8182 8182 8183 818.2 1636.4 8182 1992-05-27 2024-10-11 02:16:22.000 1992-05-27 2024-10-11 02:16:22 +8183 8183 8184 818.3 1636.6000000000001 8183 1992-05-28 2024-10-11 02:16:23.000 1992-05-28 2024-10-11 02:16:23 +8184 8184 8185 818.4 1636.8000000000002 8184 1992-05-29 2024-10-11 02:16:24.000 1992-05-29 2024-10-11 02:16:24 +8186 8186 8187 818.6 1637.2 8186 1992-05-31 2024-10-11 02:16:26.000 1992-05-31 2024-10-11 02:16:26 +8187 8187 8188 818.7 1637.4 8187 1992-06-01 2024-10-11 02:16:27.000 1992-06-01 2024-10-11 02:16:27 +8188 8188 8189 818.8 1637.6000000000001 8188 1992-06-02 2024-10-11 02:16:28.000 1992-06-02 2024-10-11 02:16:28 +8189 8189 8190 818.9 1637.8000000000002 8189 1992-06-03 2024-10-11 02:16:29.000 1992-06-03 2024-10-11 02:16:29 +8191 8191 8192 819.1 1638.2 8191 1992-06-05 2024-10-11 02:16:31.000 1992-06-05 2024-10-11 02:16:31 +8192 8192 8193 819.2 1638.4 8192 1992-06-06 2024-10-11 02:16:32.000 1992-06-06 2024-10-11 02:16:32 +8193 8193 8194 819.3 1638.6000000000001 8193 1992-06-07 2024-10-11 02:16:33.000 1992-06-07 2024-10-11 02:16:33 +8194 8194 8195 819.4 1638.8000000000002 8194 1992-06-08 2024-10-11 02:16:34.000 1992-06-08 2024-10-11 02:16:34 +8196 8196 8197 819.6 1639.2 8196 1992-06-10 2024-10-11 02:16:36.000 1992-06-10 2024-10-11 02:16:36 +8197 8197 8198 819.7 1639.4 8197 1992-06-11 2024-10-11 02:16:37.000 1992-06-11 2024-10-11 02:16:37 +8198 8198 8199 819.8 1639.6000000000001 8198 1992-06-12 2024-10-11 02:16:38.000 1992-06-12 2024-10-11 02:16:38 +8199 8199 8200 819.9 1639.8000000000002 8199 1992-06-13 2024-10-11 02:16:39.000 1992-06-13 2024-10-11 02:16:39 +8201 8201 8202 820.1 1640.2 8201 1992-06-15 2024-10-11 02:16:41.000 1992-06-15 2024-10-11 02:16:41 +8202 8202 8203 820.2 1640.4 8202 1992-06-16 2024-10-11 02:16:42.000 1992-06-16 2024-10-11 02:16:42 +8203 8203 8204 820.3 1640.6000000000001 8203 1992-06-17 2024-10-11 02:16:43.000 1992-06-17 2024-10-11 02:16:43 +8204 8204 8205 820.4 1640.8000000000002 8204 1992-06-18 2024-10-11 02:16:44.000 1992-06-18 2024-10-11 02:16:44 +8206 8206 8207 820.6 1641.2 8206 1992-06-20 2024-10-11 02:16:46.000 1992-06-20 2024-10-11 02:16:46 +8207 8207 8208 820.7 1641.4 8207 1992-06-21 2024-10-11 02:16:47.000 1992-06-21 2024-10-11 02:16:47 +8208 8208 8209 820.8 1641.6000000000001 8208 1992-06-22 2024-10-11 02:16:48.000 1992-06-22 2024-10-11 02:16:48 +8209 8209 8210 820.9 1641.8000000000002 8209 1992-06-23 2024-10-11 02:16:49.000 1992-06-23 2024-10-11 02:16:49 +8211 8211 8212 821.1 1642.2 8211 1992-06-25 2024-10-11 02:16:51.000 1992-06-25 2024-10-11 02:16:51 +8212 8212 8213 821.2 1642.4 8212 1992-06-26 2024-10-11 02:16:52.000 1992-06-26 2024-10-11 02:16:52 +8213 8213 8214 821.3 1642.6000000000001 8213 1992-06-27 2024-10-11 02:16:53.000 1992-06-27 2024-10-11 02:16:53 +8214 8214 8215 821.4 1642.8000000000002 8214 1992-06-28 2024-10-11 02:16:54.000 1992-06-28 2024-10-11 02:16:54 +8216 8216 8217 821.6 1643.2 8216 1992-06-30 2024-10-11 02:16:56.000 1992-06-30 2024-10-11 02:16:56 +8217 8217 8218 821.7 1643.4 8217 1992-07-01 2024-10-11 02:16:57.000 1992-07-01 2024-10-11 02:16:57 +8218 8218 8219 821.8 1643.6000000000001 8218 1992-07-02 2024-10-11 02:16:58.000 1992-07-02 2024-10-11 02:16:58 +8219 8219 8220 821.9 1643.8000000000002 8219 1992-07-03 2024-10-11 02:16:59.000 1992-07-03 2024-10-11 02:16:59 +8221 8221 8222 822.1 1644.2 8221 1992-07-05 2024-10-11 02:17:01.000 1992-07-05 2024-10-11 02:17:01 +8222 8222 8223 822.2 1644.4 8222 1992-07-06 2024-10-11 02:17:02.000 1992-07-06 2024-10-11 02:17:02 +8223 8223 8224 822.3 1644.6000000000001 8223 1992-07-07 2024-10-11 02:17:03.000 1992-07-07 2024-10-11 02:17:03 +8224 8224 8225 822.4 1644.8000000000002 8224 1992-07-08 2024-10-11 02:17:04.000 1992-07-08 2024-10-11 02:17:04 +8226 8226 8227 822.6 1645.2 8226 1992-07-10 2024-10-11 02:17:06.000 1992-07-10 2024-10-11 02:17:06 +8227 8227 8228 822.7 1645.4 8227 1992-07-11 2024-10-11 02:17:07.000 1992-07-11 2024-10-11 02:17:07 +8228 8228 8229 822.8 1645.6000000000001 8228 1992-07-12 2024-10-11 02:17:08.000 1992-07-12 2024-10-11 02:17:08 +8229 8229 8230 822.9 1645.8000000000002 8229 1992-07-13 2024-10-11 02:17:09.000 1992-07-13 2024-10-11 02:17:09 +8231 8231 8232 823.1 1646.2 8231 1992-07-15 2024-10-11 02:17:11.000 1992-07-15 2024-10-11 02:17:11 +8232 8232 8233 823.2 1646.4 8232 1992-07-16 2024-10-11 02:17:12.000 1992-07-16 2024-10-11 02:17:12 +8233 8233 8234 823.3 1646.6000000000001 8233 1992-07-17 2024-10-11 02:17:13.000 1992-07-17 2024-10-11 02:17:13 +8234 8234 8235 823.4 1646.8000000000002 8234 1992-07-18 2024-10-11 02:17:14.000 1992-07-18 2024-10-11 02:17:14 +8236 8236 8237 823.6 1647.2 8236 1992-07-20 2024-10-11 02:17:16.000 1992-07-20 2024-10-11 02:17:16 +8237 8237 8238 823.7 1647.4 8237 1992-07-21 2024-10-11 02:17:17.000 1992-07-21 2024-10-11 02:17:17 +8238 8238 8239 823.8 1647.6000000000001 8238 1992-07-22 2024-10-11 02:17:18.000 1992-07-22 2024-10-11 02:17:18 +8239 8239 8240 823.9 1647.8000000000002 8239 1992-07-23 2024-10-11 02:17:19.000 1992-07-23 2024-10-11 02:17:19 +8241 8241 8242 824.1 1648.2 8241 1992-07-25 2024-10-11 02:17:21.000 1992-07-25 2024-10-11 02:17:21 +8242 8242 8243 824.2 1648.4 8242 1992-07-26 2024-10-11 02:17:22.000 1992-07-26 2024-10-11 02:17:22 +8243 8243 8244 824.3 1648.6000000000001 8243 1992-07-27 2024-10-11 02:17:23.000 1992-07-27 2024-10-11 02:17:23 +8244 8244 8245 824.4 1648.8000000000002 8244 1992-07-28 2024-10-11 02:17:24.000 1992-07-28 2024-10-11 02:17:24 +8246 8246 8247 824.6 1649.2 8246 1992-07-30 2024-10-11 02:17:26.000 1992-07-30 2024-10-11 02:17:26 +8247 8247 8248 824.7 1649.4 8247 1992-07-31 2024-10-11 02:17:27.000 1992-07-31 2024-10-11 02:17:27 +8248 8248 8249 824.8 1649.6000000000001 8248 1992-08-01 2024-10-11 02:17:28.000 1992-08-01 2024-10-11 02:17:28 +8249 8249 8250 824.9 1649.8000000000002 8249 1992-08-02 2024-10-11 02:17:29.000 1992-08-02 2024-10-11 02:17:29 +8251 8251 8252 825.1 1650.2 8251 1992-08-04 2024-10-11 02:17:31.000 1992-08-04 2024-10-11 02:17:31 +8252 8252 8253 825.2 1650.4 8252 1992-08-05 2024-10-11 02:17:32.000 1992-08-05 2024-10-11 02:17:32 +8253 8253 8254 825.3 1650.6000000000001 8253 1992-08-06 2024-10-11 02:17:33.000 1992-08-06 2024-10-11 02:17:33 +8254 8254 8255 825.4 1650.8000000000002 8254 1992-08-07 2024-10-11 02:17:34.000 1992-08-07 2024-10-11 02:17:34 +8256 8256 8257 825.6 1651.2 8256 1992-08-09 2024-10-11 02:17:36.000 1992-08-09 2024-10-11 02:17:36 +8257 8257 8258 825.7 1651.4 8257 1992-08-10 2024-10-11 02:17:37.000 1992-08-10 2024-10-11 02:17:37 +8258 8258 8259 825.8 1651.6000000000001 8258 1992-08-11 2024-10-11 02:17:38.000 1992-08-11 2024-10-11 02:17:38 +8259 8259 8260 825.9 1651.8000000000002 8259 1992-08-12 2024-10-11 02:17:39.000 1992-08-12 2024-10-11 02:17:39 +8261 8261 8262 826.1 1652.2 8261 1992-08-14 2024-10-11 02:17:41.000 1992-08-14 2024-10-11 02:17:41 +8262 8262 8263 826.2 1652.4 8262 1992-08-15 2024-10-11 02:17:42.000 1992-08-15 2024-10-11 02:17:42 +8263 8263 8264 826.3 1652.6000000000001 8263 1992-08-16 2024-10-11 02:17:43.000 1992-08-16 2024-10-11 02:17:43 +8264 8264 8265 826.4 1652.8000000000002 8264 1992-08-17 2024-10-11 02:17:44.000 1992-08-17 2024-10-11 02:17:44 +8266 8266 8267 826.6 1653.2 8266 1992-08-19 2024-10-11 02:17:46.000 1992-08-19 2024-10-11 02:17:46 +8267 8267 8268 826.7 1653.4 8267 1992-08-20 2024-10-11 02:17:47.000 1992-08-20 2024-10-11 02:17:47 +8268 8268 8269 826.8 1653.6000000000001 8268 1992-08-21 2024-10-11 02:17:48.000 1992-08-21 2024-10-11 02:17:48 +8269 8269 8270 826.9 1653.8000000000002 8269 1992-08-22 2024-10-11 02:17:49.000 1992-08-22 2024-10-11 02:17:49 +8271 8271 8272 827.1 1654.2 8271 1992-08-24 2024-10-11 02:17:51.000 1992-08-24 2024-10-11 02:17:51 +8272 8272 8273 827.2 1654.4 8272 1992-08-25 2024-10-11 02:17:52.000 1992-08-25 2024-10-11 02:17:52 +8273 8273 8274 827.3 1654.6000000000001 8273 1992-08-26 2024-10-11 02:17:53.000 1992-08-26 2024-10-11 02:17:53 +8274 8274 8275 827.4 1654.8000000000002 8274 1992-08-27 2024-10-11 02:17:54.000 1992-08-27 2024-10-11 02:17:54 +8276 8276 8277 827.6 1655.2 8276 1992-08-29 2024-10-11 02:17:56.000 1992-08-29 2024-10-11 02:17:56 +8277 8277 8278 827.7 1655.4 8277 1992-08-30 2024-10-11 02:17:57.000 1992-08-30 2024-10-11 02:17:57 +8278 8278 8279 827.8 1655.6000000000001 8278 1992-08-31 2024-10-11 02:17:58.000 1992-08-31 2024-10-11 02:17:58 +8279 8279 8280 827.9 1655.8000000000002 8279 1992-09-01 2024-10-11 02:17:59.000 1992-09-01 2024-10-11 02:17:59 +8281 8281 8282 828.1 1656.2 8281 1992-09-03 2024-10-11 02:18:01.000 1992-09-03 2024-10-11 02:18:01 +8282 8282 8283 828.2 1656.4 8282 1992-09-04 2024-10-11 02:18:02.000 1992-09-04 2024-10-11 02:18:02 +8283 8283 8284 828.3 1656.6000000000001 8283 1992-09-05 2024-10-11 02:18:03.000 1992-09-05 2024-10-11 02:18:03 +8284 8284 8285 828.4 1656.8000000000002 8284 1992-09-06 2024-10-11 02:18:04.000 1992-09-06 2024-10-11 02:18:04 +8286 8286 8287 828.6 1657.2 8286 1992-09-08 2024-10-11 02:18:06.000 1992-09-08 2024-10-11 02:18:06 +8287 8287 8288 828.7 1657.4 8287 1992-09-09 2024-10-11 02:18:07.000 1992-09-09 2024-10-11 02:18:07 +8288 8288 8289 828.8 1657.6000000000001 8288 1992-09-10 2024-10-11 02:18:08.000 1992-09-10 2024-10-11 02:18:08 +8289 8289 8290 828.9 1657.8000000000002 8289 1992-09-11 2024-10-11 02:18:09.000 1992-09-11 2024-10-11 02:18:09 +8291 8291 8292 829.1 1658.2 8291 1992-09-13 2024-10-11 02:18:11.000 1992-09-13 2024-10-11 02:18:11 +8292 8292 8293 829.2 1658.4 8292 1992-09-14 2024-10-11 02:18:12.000 1992-09-14 2024-10-11 02:18:12 +8293 8293 8294 829.3 1658.6000000000001 8293 1992-09-15 2024-10-11 02:18:13.000 1992-09-15 2024-10-11 02:18:13 +8294 8294 8295 829.4 1658.8000000000002 8294 1992-09-16 2024-10-11 02:18:14.000 1992-09-16 2024-10-11 02:18:14 +8296 8296 8297 829.6 1659.2 8296 1992-09-18 2024-10-11 02:18:16.000 1992-09-18 2024-10-11 02:18:16 +8297 8297 8298 829.7 1659.4 8297 1992-09-19 2024-10-11 02:18:17.000 1992-09-19 2024-10-11 02:18:17 +8298 8298 8299 829.8 1659.6000000000001 8298 1992-09-20 2024-10-11 02:18:18.000 1992-09-20 2024-10-11 02:18:18 +8299 8299 8300 829.9 1659.8000000000002 8299 1992-09-21 2024-10-11 02:18:19.000 1992-09-21 2024-10-11 02:18:19 +8301 8301 8302 830.1 1660.2 8301 1992-09-23 2024-10-11 02:18:21.000 1992-09-23 2024-10-11 02:18:21 +8302 8302 8303 830.2 1660.4 8302 1992-09-24 2024-10-11 02:18:22.000 1992-09-24 2024-10-11 02:18:22 +8303 8303 8304 830.3 1660.6000000000001 8303 1992-09-25 2024-10-11 02:18:23.000 1992-09-25 2024-10-11 02:18:23 +8304 8304 8305 830.4 1660.8000000000002 8304 1992-09-26 2024-10-11 02:18:24.000 1992-09-26 2024-10-11 02:18:24 +8306 8306 8307 830.6 1661.2 8306 1992-09-28 2024-10-11 02:18:26.000 1992-09-28 2024-10-11 02:18:26 +8307 8307 8308 830.7 1661.4 8307 1992-09-29 2024-10-11 02:18:27.000 1992-09-29 2024-10-11 02:18:27 +8308 8308 8309 830.8 1661.6000000000001 8308 1992-09-30 2024-10-11 02:18:28.000 1992-09-30 2024-10-11 02:18:28 +8309 8309 8310 830.9 1661.8000000000002 8309 1992-10-01 2024-10-11 02:18:29.000 1992-10-01 2024-10-11 02:18:29 +8311 8311 8312 831.1 1662.2 8311 1992-10-03 2024-10-11 02:18:31.000 1992-10-03 2024-10-11 02:18:31 +8312 8312 8313 831.2 1662.4 8312 1992-10-04 2024-10-11 02:18:32.000 1992-10-04 2024-10-11 02:18:32 +8313 8313 8314 831.3 1662.6000000000001 8313 1992-10-05 2024-10-11 02:18:33.000 1992-10-05 2024-10-11 02:18:33 +8314 8314 8315 831.4 1662.8000000000002 8314 1992-10-06 2024-10-11 02:18:34.000 1992-10-06 2024-10-11 02:18:34 +8316 8316 8317 831.6 1663.2 8316 1992-10-08 2024-10-11 02:18:36.000 1992-10-08 2024-10-11 02:18:36 +8317 8317 8318 831.7 1663.4 8317 1992-10-09 2024-10-11 02:18:37.000 1992-10-09 2024-10-11 02:18:37 +8318 8318 8319 831.8 1663.6000000000001 8318 1992-10-10 2024-10-11 02:18:38.000 1992-10-10 2024-10-11 02:18:38 +8319 8319 8320 831.9 1663.8000000000002 8319 1992-10-11 2024-10-11 02:18:39.000 1992-10-11 2024-10-11 02:18:39 +8321 8321 8322 832.1 1664.2 8321 1992-10-13 2024-10-11 02:18:41.000 1992-10-13 2024-10-11 02:18:41 +8322 8322 8323 832.2 1664.4 8322 1992-10-14 2024-10-11 02:18:42.000 1992-10-14 2024-10-11 02:18:42 +8323 8323 8324 832.3 1664.6000000000001 8323 1992-10-15 2024-10-11 02:18:43.000 1992-10-15 2024-10-11 02:18:43 +8324 8324 8325 832.4 1664.8000000000002 8324 1992-10-16 2024-10-11 02:18:44.000 1992-10-16 2024-10-11 02:18:44 +8326 8326 8327 832.6 1665.2 8326 1992-10-18 2024-10-11 02:18:46.000 1992-10-18 2024-10-11 02:18:46 +8327 8327 8328 832.7 1665.4 8327 1992-10-19 2024-10-11 02:18:47.000 1992-10-19 2024-10-11 02:18:47 +8328 8328 8329 832.8 1665.6000000000001 8328 1992-10-20 2024-10-11 02:18:48.000 1992-10-20 2024-10-11 02:18:48 +8329 8329 8330 832.9 1665.8000000000002 8329 1992-10-21 2024-10-11 02:18:49.000 1992-10-21 2024-10-11 02:18:49 +8331 8331 8332 833.1 1666.2 8331 1992-10-23 2024-10-11 02:18:51.000 1992-10-23 2024-10-11 02:18:51 +8332 8332 8333 833.2 1666.4 8332 1992-10-24 2024-10-11 02:18:52.000 1992-10-24 2024-10-11 02:18:52 +8333 8333 8334 833.3 1666.6000000000001 8333 1992-10-25 2024-10-11 02:18:53.000 1992-10-25 2024-10-11 02:18:53 +8334 8334 8335 833.4 1666.8000000000002 8334 1992-10-26 2024-10-11 02:18:54.000 1992-10-26 2024-10-11 02:18:54 +8336 8336 8337 833.6 1667.2 8336 1992-10-28 2024-10-11 02:18:56.000 1992-10-28 2024-10-11 02:18:56 +8337 8337 8338 833.7 1667.4 8337 1992-10-29 2024-10-11 02:18:57.000 1992-10-29 2024-10-11 02:18:57 +8338 8338 8339 833.8 1667.6000000000001 8338 1992-10-30 2024-10-11 02:18:58.000 1992-10-30 2024-10-11 02:18:58 +8339 8339 8340 833.9 1667.8000000000002 8339 1992-10-31 2024-10-11 02:18:59.000 1992-10-31 2024-10-11 02:18:59 +8341 8341 8342 834.1 1668.2 8341 1992-11-02 2024-10-11 02:19:01.000 1992-11-02 2024-10-11 02:19:01 +8342 8342 8343 834.2 1668.4 8342 1992-11-03 2024-10-11 02:19:02.000 1992-11-03 2024-10-11 02:19:02 +8343 8343 8344 834.3 1668.6000000000001 8343 1992-11-04 2024-10-11 02:19:03.000 1992-11-04 2024-10-11 02:19:03 +8344 8344 8345 834.4 1668.8000000000002 8344 1992-11-05 2024-10-11 02:19:04.000 1992-11-05 2024-10-11 02:19:04 +8346 8346 8347 834.6 1669.2 8346 1992-11-07 2024-10-11 02:19:06.000 1992-11-07 2024-10-11 02:19:06 +8347 8347 8348 834.7 1669.4 8347 1992-11-08 2024-10-11 02:19:07.000 1992-11-08 2024-10-11 02:19:07 +8348 8348 8349 834.8 1669.6000000000001 8348 1992-11-09 2024-10-11 02:19:08.000 1992-11-09 2024-10-11 02:19:08 +8349 8349 8350 834.9 1669.8000000000002 8349 1992-11-10 2024-10-11 02:19:09.000 1992-11-10 2024-10-11 02:19:09 +8351 8351 8352 835.1 1670.2 8351 1992-11-12 2024-10-11 02:19:11.000 1992-11-12 2024-10-11 02:19:11 +8352 8352 8353 835.2 1670.4 8352 1992-11-13 2024-10-11 02:19:12.000 1992-11-13 2024-10-11 02:19:12 +8353 8353 8354 835.3 1670.6000000000001 8353 1992-11-14 2024-10-11 02:19:13.000 1992-11-14 2024-10-11 02:19:13 +8354 8354 8355 835.4 1670.8000000000002 8354 1992-11-15 2024-10-11 02:19:14.000 1992-11-15 2024-10-11 02:19:14 +8356 8356 8357 835.6 1671.2 8356 1992-11-17 2024-10-11 02:19:16.000 1992-11-17 2024-10-11 02:19:16 +8357 8357 8358 835.7 1671.4 8357 1992-11-18 2024-10-11 02:19:17.000 1992-11-18 2024-10-11 02:19:17 +8358 8358 8359 835.8 1671.6000000000001 8358 1992-11-19 2024-10-11 02:19:18.000 1992-11-19 2024-10-11 02:19:18 +8359 8359 8360 835.9 1671.8000000000002 8359 1992-11-20 2024-10-11 02:19:19.000 1992-11-20 2024-10-11 02:19:19 +8361 8361 8362 836.1 1672.2 8361 1992-11-22 2024-10-11 02:19:21.000 1992-11-22 2024-10-11 02:19:21 +8362 8362 8363 836.2 1672.4 8362 1992-11-23 2024-10-11 02:19:22.000 1992-11-23 2024-10-11 02:19:22 +8363 8363 8364 836.3 1672.6000000000001 8363 1992-11-24 2024-10-11 02:19:23.000 1992-11-24 2024-10-11 02:19:23 +8364 8364 8365 836.4 1672.8000000000002 8364 1992-11-25 2024-10-11 02:19:24.000 1992-11-25 2024-10-11 02:19:24 +8366 8366 8367 836.6 1673.2 8366 1992-11-27 2024-10-11 02:19:26.000 1992-11-27 2024-10-11 02:19:26 +8367 8367 8368 836.7 1673.4 8367 1992-11-28 2024-10-11 02:19:27.000 1992-11-28 2024-10-11 02:19:27 +8368 8368 8369 836.8 1673.6000000000001 8368 1992-11-29 2024-10-11 02:19:28.000 1992-11-29 2024-10-11 02:19:28 +8369 8369 8370 836.9 1673.8000000000002 8369 1992-11-30 2024-10-11 02:19:29.000 1992-11-30 2024-10-11 02:19:29 +8371 8371 8372 837.1 1674.2 8371 1992-12-02 2024-10-11 02:19:31.000 1992-12-02 2024-10-11 02:19:31 +8372 8372 8373 837.2 1674.4 8372 1992-12-03 2024-10-11 02:19:32.000 1992-12-03 2024-10-11 02:19:32 +8373 8373 8374 837.3 1674.6000000000001 8373 1992-12-04 2024-10-11 02:19:33.000 1992-12-04 2024-10-11 02:19:33 +8374 8374 8375 837.4 1674.8000000000002 8374 1992-12-05 2024-10-11 02:19:34.000 1992-12-05 2024-10-11 02:19:34 +8376 8376 8377 837.6 1675.2 8376 1992-12-07 2024-10-11 02:19:36.000 1992-12-07 2024-10-11 02:19:36 +8377 8377 8378 837.7 1675.4 8377 1992-12-08 2024-10-11 02:19:37.000 1992-12-08 2024-10-11 02:19:37 +8378 8378 8379 837.8 1675.6000000000001 8378 1992-12-09 2024-10-11 02:19:38.000 1992-12-09 2024-10-11 02:19:38 +8379 8379 8380 837.9 1675.8000000000002 8379 1992-12-10 2024-10-11 02:19:39.000 1992-12-10 2024-10-11 02:19:39 +8381 8381 8382 838.1 1676.2 8381 1992-12-12 2024-10-11 02:19:41.000 1992-12-12 2024-10-11 02:19:41 +8382 8382 8383 838.2 1676.4 8382 1992-12-13 2024-10-11 02:19:42.000 1992-12-13 2024-10-11 02:19:42 +8383 8383 8384 838.3 1676.6000000000001 8383 1992-12-14 2024-10-11 02:19:43.000 1992-12-14 2024-10-11 02:19:43 +8384 8384 8385 838.4 1676.8000000000002 8384 1992-12-15 2024-10-11 02:19:44.000 1992-12-15 2024-10-11 02:19:44 +8386 8386 8387 838.6 1677.2 8386 1992-12-17 2024-10-11 02:19:46.000 1992-12-17 2024-10-11 02:19:46 +8387 8387 8388 838.7 1677.4 8387 1992-12-18 2024-10-11 02:19:47.000 1992-12-18 2024-10-11 02:19:47 +8388 8388 8389 838.8 1677.6000000000001 8388 1992-12-19 2024-10-11 02:19:48.000 1992-12-19 2024-10-11 02:19:48 +8389 8389 8390 838.9 1677.8000000000002 8389 1992-12-20 2024-10-11 02:19:49.000 1992-12-20 2024-10-11 02:19:49 +8391 8391 8392 839.1 1678.2 8391 1992-12-22 2024-10-11 02:19:51.000 1992-12-22 2024-10-11 02:19:51 +8392 8392 8393 839.2 1678.4 8392 1992-12-23 2024-10-11 02:19:52.000 1992-12-23 2024-10-11 02:19:52 +8393 8393 8394 839.3 1678.6000000000001 8393 1992-12-24 2024-10-11 02:19:53.000 1992-12-24 2024-10-11 02:19:53 +8394 8394 8395 839.4 1678.8000000000002 8394 1992-12-25 2024-10-11 02:19:54.000 1992-12-25 2024-10-11 02:19:54 +8396 8396 8397 839.6 1679.2 8396 1992-12-27 2024-10-11 02:19:56.000 1992-12-27 2024-10-11 02:19:56 +8397 8397 8398 839.7 1679.4 8397 1992-12-28 2024-10-11 02:19:57.000 1992-12-28 2024-10-11 02:19:57 +8398 8398 8399 839.8 1679.6000000000001 8398 1992-12-29 2024-10-11 02:19:58.000 1992-12-29 2024-10-11 02:19:58 +8399 8399 8400 839.9 1679.8000000000002 8399 1992-12-30 2024-10-11 02:19:59.000 1992-12-30 2024-10-11 02:19:59 +8401 8401 8402 840.1 1680.2 8401 1993-01-01 2024-10-11 02:20:01.000 1993-01-01 2024-10-11 02:20:01 +8402 8402 8403 840.2 1680.4 8402 1993-01-02 2024-10-11 02:20:02.000 1993-01-02 2024-10-11 02:20:02 +8403 8403 8404 840.3 1680.6000000000001 8403 1993-01-03 2024-10-11 02:20:03.000 1993-01-03 2024-10-11 02:20:03 +8404 8404 8405 840.4 1680.8000000000002 8404 1993-01-04 2024-10-11 02:20:04.000 1993-01-04 2024-10-11 02:20:04 +8406 8406 8407 840.6 1681.2 8406 1993-01-06 2024-10-11 02:20:06.000 1993-01-06 2024-10-11 02:20:06 +8407 8407 8408 840.7 1681.4 8407 1993-01-07 2024-10-11 02:20:07.000 1993-01-07 2024-10-11 02:20:07 +8408 8408 8409 840.8 1681.6000000000001 8408 1993-01-08 2024-10-11 02:20:08.000 1993-01-08 2024-10-11 02:20:08 +8409 8409 8410 840.9 1681.8000000000002 8409 1993-01-09 2024-10-11 02:20:09.000 1993-01-09 2024-10-11 02:20:09 +8411 8411 8412 841.1 1682.2 8411 1993-01-11 2024-10-11 02:20:11.000 1993-01-11 2024-10-11 02:20:11 +8412 8412 8413 841.2 1682.4 8412 1993-01-12 2024-10-11 02:20:12.000 1993-01-12 2024-10-11 02:20:12 +8413 8413 8414 841.3 1682.6000000000001 8413 1993-01-13 2024-10-11 02:20:13.000 1993-01-13 2024-10-11 02:20:13 +8414 8414 8415 841.4 1682.8000000000002 8414 1993-01-14 2024-10-11 02:20:14.000 1993-01-14 2024-10-11 02:20:14 +8416 8416 8417 841.6 1683.2 8416 1993-01-16 2024-10-11 02:20:16.000 1993-01-16 2024-10-11 02:20:16 +8417 8417 8418 841.7 1683.4 8417 1993-01-17 2024-10-11 02:20:17.000 1993-01-17 2024-10-11 02:20:17 +8418 8418 8419 841.8 1683.6000000000001 8418 1993-01-18 2024-10-11 02:20:18.000 1993-01-18 2024-10-11 02:20:18 +8419 8419 8420 841.9 1683.8000000000002 8419 1993-01-19 2024-10-11 02:20:19.000 1993-01-19 2024-10-11 02:20:19 +8421 8421 8422 842.1 1684.2 8421 1993-01-21 2024-10-11 02:20:21.000 1993-01-21 2024-10-11 02:20:21 +8422 8422 8423 842.2 1684.4 8422 1993-01-22 2024-10-11 02:20:22.000 1993-01-22 2024-10-11 02:20:22 +8423 8423 8424 842.3 1684.6000000000001 8423 1993-01-23 2024-10-11 02:20:23.000 1993-01-23 2024-10-11 02:20:23 +8424 8424 8425 842.4 1684.8000000000002 8424 1993-01-24 2024-10-11 02:20:24.000 1993-01-24 2024-10-11 02:20:24 +8426 8426 8427 842.6 1685.2 8426 1993-01-26 2024-10-11 02:20:26.000 1993-01-26 2024-10-11 02:20:26 +8427 8427 8428 842.7 1685.4 8427 1993-01-27 2024-10-11 02:20:27.000 1993-01-27 2024-10-11 02:20:27 +8428 8428 8429 842.8 1685.6000000000001 8428 1993-01-28 2024-10-11 02:20:28.000 1993-01-28 2024-10-11 02:20:28 +8429 8429 8430 842.9 1685.8000000000002 8429 1993-01-29 2024-10-11 02:20:29.000 1993-01-29 2024-10-11 02:20:29 +8431 8431 8432 843.1 1686.2 8431 1993-01-31 2024-10-11 02:20:31.000 1993-01-31 2024-10-11 02:20:31 +8432 8432 8433 843.2 1686.4 8432 1993-02-01 2024-10-11 02:20:32.000 1993-02-01 2024-10-11 02:20:32 +8433 8433 8434 843.3 1686.6000000000001 8433 1993-02-02 2024-10-11 02:20:33.000 1993-02-02 2024-10-11 02:20:33 +8434 8434 8435 843.4 1686.8000000000002 8434 1993-02-03 2024-10-11 02:20:34.000 1993-02-03 2024-10-11 02:20:34 +8436 8436 8437 843.6 1687.2 8436 1993-02-05 2024-10-11 02:20:36.000 1993-02-05 2024-10-11 02:20:36 +8437 8437 8438 843.7 1687.4 8437 1993-02-06 2024-10-11 02:20:37.000 1993-02-06 2024-10-11 02:20:37 +8438 8438 8439 843.8 1687.6000000000001 8438 1993-02-07 2024-10-11 02:20:38.000 1993-02-07 2024-10-11 02:20:38 +8439 8439 8440 843.9 1687.8000000000002 8439 1993-02-08 2024-10-11 02:20:39.000 1993-02-08 2024-10-11 02:20:39 +8441 8441 8442 844.1 1688.2 8441 1993-02-10 2024-10-11 02:20:41.000 1993-02-10 2024-10-11 02:20:41 +8442 8442 8443 844.2 1688.4 8442 1993-02-11 2024-10-11 02:20:42.000 1993-02-11 2024-10-11 02:20:42 +8443 8443 8444 844.3 1688.6000000000001 8443 1993-02-12 2024-10-11 02:20:43.000 1993-02-12 2024-10-11 02:20:43 +8444 8444 8445 844.4 1688.8000000000002 8444 1993-02-13 2024-10-11 02:20:44.000 1993-02-13 2024-10-11 02:20:44 +8446 8446 8447 844.6 1689.2 8446 1993-02-15 2024-10-11 02:20:46.000 1993-02-15 2024-10-11 02:20:46 +8447 8447 8448 844.7 1689.4 8447 1993-02-16 2024-10-11 02:20:47.000 1993-02-16 2024-10-11 02:20:47 +8448 8448 8449 844.8 1689.6000000000001 8448 1993-02-17 2024-10-11 02:20:48.000 1993-02-17 2024-10-11 02:20:48 +8449 8449 8450 844.9 1689.8000000000002 8449 1993-02-18 2024-10-11 02:20:49.000 1993-02-18 2024-10-11 02:20:49 +8451 8451 8452 845.1 1690.2 8451 1993-02-20 2024-10-11 02:20:51.000 1993-02-20 2024-10-11 02:20:51 +8452 8452 8453 845.2 1690.4 8452 1993-02-21 2024-10-11 02:20:52.000 1993-02-21 2024-10-11 02:20:52 +8453 8453 8454 845.3 1690.6000000000001 8453 1993-02-22 2024-10-11 02:20:53.000 1993-02-22 2024-10-11 02:20:53 +8454 8454 8455 845.4 1690.8000000000002 8454 1993-02-23 2024-10-11 02:20:54.000 1993-02-23 2024-10-11 02:20:54 +8456 8456 8457 845.6 1691.2 8456 1993-02-25 2024-10-11 02:20:56.000 1993-02-25 2024-10-11 02:20:56 +8457 8457 8458 845.7 1691.4 8457 1993-02-26 2024-10-11 02:20:57.000 1993-02-26 2024-10-11 02:20:57 +8458 8458 8459 845.8 1691.6000000000001 8458 1993-02-27 2024-10-11 02:20:58.000 1993-02-27 2024-10-11 02:20:58 +8459 8459 8460 845.9 1691.8000000000002 8459 1993-02-28 2024-10-11 02:20:59.000 1993-02-28 2024-10-11 02:20:59 +8461 8461 8462 846.1 1692.2 8461 1993-03-02 2024-10-11 02:21:01.000 1993-03-02 2024-10-11 02:21:01 +8462 8462 8463 846.2 1692.4 8462 1993-03-03 2024-10-11 02:21:02.000 1993-03-03 2024-10-11 02:21:02 +8463 8463 8464 846.3 1692.6000000000001 8463 1993-03-04 2024-10-11 02:21:03.000 1993-03-04 2024-10-11 02:21:03 +8464 8464 8465 846.4 1692.8000000000002 8464 1993-03-05 2024-10-11 02:21:04.000 1993-03-05 2024-10-11 02:21:04 +8466 8466 8467 846.6 1693.2 8466 1993-03-07 2024-10-11 02:21:06.000 1993-03-07 2024-10-11 02:21:06 +8467 8467 8468 846.7 1693.4 8467 1993-03-08 2024-10-11 02:21:07.000 1993-03-08 2024-10-11 02:21:07 +8468 8468 8469 846.8 1693.6000000000001 8468 1993-03-09 2024-10-11 02:21:08.000 1993-03-09 2024-10-11 02:21:08 +8469 8469 8470 846.9 1693.8000000000002 8469 1993-03-10 2024-10-11 02:21:09.000 1993-03-10 2024-10-11 02:21:09 +8471 8471 8472 847.1 1694.2 8471 1993-03-12 2024-10-11 02:21:11.000 1993-03-12 2024-10-11 02:21:11 +8472 8472 8473 847.2 1694.4 8472 1993-03-13 2024-10-11 02:21:12.000 1993-03-13 2024-10-11 02:21:12 +8473 8473 8474 847.3 1694.6000000000001 8473 1993-03-14 2024-10-11 02:21:13.000 1993-03-14 2024-10-11 02:21:13 +8474 8474 8475 847.4 1694.8000000000002 8474 1993-03-15 2024-10-11 02:21:14.000 1993-03-15 2024-10-11 02:21:14 +8476 8476 8477 847.6 1695.2 8476 1993-03-17 2024-10-11 02:21:16.000 1993-03-17 2024-10-11 02:21:16 +8477 8477 8478 847.7 1695.4 8477 1993-03-18 2024-10-11 02:21:17.000 1993-03-18 2024-10-11 02:21:17 +8478 8478 8479 847.8 1695.6000000000001 8478 1993-03-19 2024-10-11 02:21:18.000 1993-03-19 2024-10-11 02:21:18 +8479 8479 8480 847.9 1695.8000000000002 8479 1993-03-20 2024-10-11 02:21:19.000 1993-03-20 2024-10-11 02:21:19 +8481 8481 8482 848.1 1696.2 8481 1993-03-22 2024-10-11 02:21:21.000 1993-03-22 2024-10-11 02:21:21 +8482 8482 8483 848.2 1696.4 8482 1993-03-23 2024-10-11 02:21:22.000 1993-03-23 2024-10-11 02:21:22 +8483 8483 8484 848.3 1696.6000000000001 8483 1993-03-24 2024-10-11 02:21:23.000 1993-03-24 2024-10-11 02:21:23 +8484 8484 8485 848.4 1696.8000000000002 8484 1993-03-25 2024-10-11 02:21:24.000 1993-03-25 2024-10-11 02:21:24 +8486 8486 8487 848.6 1697.2 8486 1993-03-27 2024-10-11 02:21:26.000 1993-03-27 2024-10-11 02:21:26 +8487 8487 8488 848.7 1697.4 8487 1993-03-28 2024-10-11 02:21:27.000 1993-03-28 2024-10-11 02:21:27 +8488 8488 8489 848.8 1697.6000000000001 8488 1993-03-29 2024-10-11 02:21:28.000 1993-03-29 2024-10-11 02:21:28 +8489 8489 8490 848.9 1697.8000000000002 8489 1993-03-30 2024-10-11 02:21:29.000 1993-03-30 2024-10-11 02:21:29 +8491 8491 8492 849.1 1698.2 8491 1993-04-01 2024-10-11 02:21:31.000 1993-04-01 2024-10-11 02:21:31 +8492 8492 8493 849.2 1698.4 8492 1993-04-02 2024-10-11 02:21:32.000 1993-04-02 2024-10-11 02:21:32 +8493 8493 8494 849.3 1698.6000000000001 8493 1993-04-03 2024-10-11 02:21:33.000 1993-04-03 2024-10-11 02:21:33 +8494 8494 8495 849.4 1698.8000000000002 8494 1993-04-04 2024-10-11 02:21:34.000 1993-04-04 2024-10-11 02:21:34 +8496 8496 8497 849.6 1699.2 8496 1993-04-06 2024-10-11 02:21:36.000 1993-04-06 2024-10-11 02:21:36 +8497 8497 8498 849.7 1699.4 8497 1993-04-07 2024-10-11 02:21:37.000 1993-04-07 2024-10-11 02:21:37 +8498 8498 8499 849.8 1699.6000000000001 8498 1993-04-08 2024-10-11 02:21:38.000 1993-04-08 2024-10-11 02:21:38 +8499 8499 8500 849.9 1699.8000000000002 8499 1993-04-09 2024-10-11 02:21:39.000 1993-04-09 2024-10-11 02:21:39 +8501 8501 8502 850.1 1700.2 8501 1993-04-11 2024-10-11 02:21:41.000 1993-04-11 2024-10-11 02:21:41 +8502 8502 8503 850.2 1700.4 8502 1993-04-12 2024-10-11 02:21:42.000 1993-04-12 2024-10-11 02:21:42 +8503 8503 8504 850.3 1700.6000000000001 8503 1993-04-13 2024-10-11 02:21:43.000 1993-04-13 2024-10-11 02:21:43 +8504 8504 8505 850.4 1700.8000000000002 8504 1993-04-14 2024-10-11 02:21:44.000 1993-04-14 2024-10-11 02:21:44 +8506 8506 8507 850.6 1701.2 8506 1993-04-16 2024-10-11 02:21:46.000 1993-04-16 2024-10-11 02:21:46 +8507 8507 8508 850.7 1701.4 8507 1993-04-17 2024-10-11 02:21:47.000 1993-04-17 2024-10-11 02:21:47 +8508 8508 8509 850.8 1701.6000000000001 8508 1993-04-18 2024-10-11 02:21:48.000 1993-04-18 2024-10-11 02:21:48 +8509 8509 8510 850.9 1701.8000000000002 8509 1993-04-19 2024-10-11 02:21:49.000 1993-04-19 2024-10-11 02:21:49 +8511 8511 8512 851.1 1702.2 8511 1993-04-21 2024-10-11 02:21:51.000 1993-04-21 2024-10-11 02:21:51 +8512 8512 8513 851.2 1702.4 8512 1993-04-22 2024-10-11 02:21:52.000 1993-04-22 2024-10-11 02:21:52 +8513 8513 8514 851.3 1702.6000000000001 8513 1993-04-23 2024-10-11 02:21:53.000 1993-04-23 2024-10-11 02:21:53 +8514 8514 8515 851.4 1702.8000000000002 8514 1993-04-24 2024-10-11 02:21:54.000 1993-04-24 2024-10-11 02:21:54 +8516 8516 8517 851.6 1703.2 8516 1993-04-26 2024-10-11 02:21:56.000 1993-04-26 2024-10-11 02:21:56 +8517 8517 8518 851.7 1703.4 8517 1993-04-27 2024-10-11 02:21:57.000 1993-04-27 2024-10-11 02:21:57 +8518 8518 8519 851.8 1703.6000000000001 8518 1993-04-28 2024-10-11 02:21:58.000 1993-04-28 2024-10-11 02:21:58 +8519 8519 8520 851.9 1703.8000000000002 8519 1993-04-29 2024-10-11 02:21:59.000 1993-04-29 2024-10-11 02:21:59 +8521 8521 8522 852.1 1704.2 8521 1993-05-01 2024-10-11 02:22:01.000 1993-05-01 2024-10-11 02:22:01 +8522 8522 8523 852.2 1704.4 8522 1993-05-02 2024-10-11 02:22:02.000 1993-05-02 2024-10-11 02:22:02 +8523 8523 8524 852.3 1704.6000000000001 8523 1993-05-03 2024-10-11 02:22:03.000 1993-05-03 2024-10-11 02:22:03 +8524 8524 8525 852.4 1704.8000000000002 8524 1993-05-04 2024-10-11 02:22:04.000 1993-05-04 2024-10-11 02:22:04 +8526 8526 8527 852.6 1705.2 8526 1993-05-06 2024-10-11 02:22:06.000 1993-05-06 2024-10-11 02:22:06 +8527 8527 8528 852.7 1705.4 8527 1993-05-07 2024-10-11 02:22:07.000 1993-05-07 2024-10-11 02:22:07 +8528 8528 8529 852.8 1705.6000000000001 8528 1993-05-08 2024-10-11 02:22:08.000 1993-05-08 2024-10-11 02:22:08 +8529 8529 8530 852.9 1705.8000000000002 8529 1993-05-09 2024-10-11 02:22:09.000 1993-05-09 2024-10-11 02:22:09 +8531 8531 8532 853.1 1706.2 8531 1993-05-11 2024-10-11 02:22:11.000 1993-05-11 2024-10-11 02:22:11 +8532 8532 8533 853.2 1706.4 8532 1993-05-12 2024-10-11 02:22:12.000 1993-05-12 2024-10-11 02:22:12 +8533 8533 8534 853.3 1706.6000000000001 8533 1993-05-13 2024-10-11 02:22:13.000 1993-05-13 2024-10-11 02:22:13 +8534 8534 8535 853.4 1706.8000000000002 8534 1993-05-14 2024-10-11 02:22:14.000 1993-05-14 2024-10-11 02:22:14 +8536 8536 8537 853.6 1707.2 8536 1993-05-16 2024-10-11 02:22:16.000 1993-05-16 2024-10-11 02:22:16 +8537 8537 8538 853.7 1707.4 8537 1993-05-17 2024-10-11 02:22:17.000 1993-05-17 2024-10-11 02:22:17 +8538 8538 8539 853.8 1707.6000000000001 8538 1993-05-18 2024-10-11 02:22:18.000 1993-05-18 2024-10-11 02:22:18 +8539 8539 8540 853.9 1707.8000000000002 8539 1993-05-19 2024-10-11 02:22:19.000 1993-05-19 2024-10-11 02:22:19 +8541 8541 8542 854.1 1708.2 8541 1993-05-21 2024-10-11 02:22:21.000 1993-05-21 2024-10-11 02:22:21 +8542 8542 8543 854.2 1708.4 8542 1993-05-22 2024-10-11 02:22:22.000 1993-05-22 2024-10-11 02:22:22 +8543 8543 8544 854.3 1708.6000000000001 8543 1993-05-23 2024-10-11 02:22:23.000 1993-05-23 2024-10-11 02:22:23 +8544 8544 8545 854.4 1708.8000000000002 8544 1993-05-24 2024-10-11 02:22:24.000 1993-05-24 2024-10-11 02:22:24 +8546 8546 8547 854.6 1709.2 8546 1993-05-26 2024-10-11 02:22:26.000 1993-05-26 2024-10-11 02:22:26 +8547 8547 8548 854.7 1709.4 8547 1993-05-27 2024-10-11 02:22:27.000 1993-05-27 2024-10-11 02:22:27 +8548 8548 8549 854.8 1709.6000000000001 8548 1993-05-28 2024-10-11 02:22:28.000 1993-05-28 2024-10-11 02:22:28 +8549 8549 8550 854.9 1709.8000000000002 8549 1993-05-29 2024-10-11 02:22:29.000 1993-05-29 2024-10-11 02:22:29 +8551 8551 8552 855.1 1710.2 8551 1993-05-31 2024-10-11 02:22:31.000 1993-05-31 2024-10-11 02:22:31 +8552 8552 8553 855.2 1710.4 8552 1993-06-01 2024-10-11 02:22:32.000 1993-06-01 2024-10-11 02:22:32 +8553 8553 8554 855.3 1710.6000000000001 8553 1993-06-02 2024-10-11 02:22:33.000 1993-06-02 2024-10-11 02:22:33 +8554 8554 8555 855.4 1710.8000000000002 8554 1993-06-03 2024-10-11 02:22:34.000 1993-06-03 2024-10-11 02:22:34 +8556 8556 8557 855.6 1711.2 8556 1993-06-05 2024-10-11 02:22:36.000 1993-06-05 2024-10-11 02:22:36 +8557 8557 8558 855.7 1711.4 8557 1993-06-06 2024-10-11 02:22:37.000 1993-06-06 2024-10-11 02:22:37 +8558 8558 8559 855.8 1711.6000000000001 8558 1993-06-07 2024-10-11 02:22:38.000 1993-06-07 2024-10-11 02:22:38 +8559 8559 8560 855.9 1711.8000000000002 8559 1993-06-08 2024-10-11 02:22:39.000 1993-06-08 2024-10-11 02:22:39 +8561 8561 8562 856.1 1712.2 8561 1993-06-10 2024-10-11 02:22:41.000 1993-06-10 2024-10-11 02:22:41 +8562 8562 8563 856.2 1712.4 8562 1993-06-11 2024-10-11 02:22:42.000 1993-06-11 2024-10-11 02:22:42 +8563 8563 8564 856.3 1712.6000000000001 8563 1993-06-12 2024-10-11 02:22:43.000 1993-06-12 2024-10-11 02:22:43 +8564 8564 8565 856.4 1712.8000000000002 8564 1993-06-13 2024-10-11 02:22:44.000 1993-06-13 2024-10-11 02:22:44 +8566 8566 8567 856.6 1713.2 8566 1993-06-15 2024-10-11 02:22:46.000 1993-06-15 2024-10-11 02:22:46 +8567 8567 8568 856.7 1713.4 8567 1993-06-16 2024-10-11 02:22:47.000 1993-06-16 2024-10-11 02:22:47 +8568 8568 8569 856.8 1713.6000000000001 8568 1993-06-17 2024-10-11 02:22:48.000 1993-06-17 2024-10-11 02:22:48 +8569 8569 8570 856.9 1713.8000000000002 8569 1993-06-18 2024-10-11 02:22:49.000 1993-06-18 2024-10-11 02:22:49 +8571 8571 8572 857.1 1714.2 8571 1993-06-20 2024-10-11 02:22:51.000 1993-06-20 2024-10-11 02:22:51 +8572 8572 8573 857.2 1714.4 8572 1993-06-21 2024-10-11 02:22:52.000 1993-06-21 2024-10-11 02:22:52 +8573 8573 8574 857.3 1714.6000000000001 8573 1993-06-22 2024-10-11 02:22:53.000 1993-06-22 2024-10-11 02:22:53 +8574 8574 8575 857.4 1714.8000000000002 8574 1993-06-23 2024-10-11 02:22:54.000 1993-06-23 2024-10-11 02:22:54 +8576 8576 8577 857.6 1715.2 8576 1993-06-25 2024-10-11 02:22:56.000 1993-06-25 2024-10-11 02:22:56 +8577 8577 8578 857.7 1715.4 8577 1993-06-26 2024-10-11 02:22:57.000 1993-06-26 2024-10-11 02:22:57 +8578 8578 8579 857.8 1715.6000000000001 8578 1993-06-27 2024-10-11 02:22:58.000 1993-06-27 2024-10-11 02:22:58 +8579 8579 8580 857.9 1715.8000000000002 8579 1993-06-28 2024-10-11 02:22:59.000 1993-06-28 2024-10-11 02:22:59 +8581 8581 8582 858.1 1716.2 8581 1993-06-30 2024-10-11 02:23:01.000 1993-06-30 2024-10-11 02:23:01 +8582 8582 8583 858.2 1716.4 8582 1993-07-01 2024-10-11 02:23:02.000 1993-07-01 2024-10-11 02:23:02 +8583 8583 8584 858.3 1716.6000000000001 8583 1993-07-02 2024-10-11 02:23:03.000 1993-07-02 2024-10-11 02:23:03 +8584 8584 8585 858.4 1716.8000000000002 8584 1993-07-03 2024-10-11 02:23:04.000 1993-07-03 2024-10-11 02:23:04 +8586 8586 8587 858.6 1717.2 8586 1993-07-05 2024-10-11 02:23:06.000 1993-07-05 2024-10-11 02:23:06 +8587 8587 8588 858.7 1717.4 8587 1993-07-06 2024-10-11 02:23:07.000 1993-07-06 2024-10-11 02:23:07 +8588 8588 8589 858.8 1717.6000000000001 8588 1993-07-07 2024-10-11 02:23:08.000 1993-07-07 2024-10-11 02:23:08 +8589 8589 8590 858.9 1717.8000000000002 8589 1993-07-08 2024-10-11 02:23:09.000 1993-07-08 2024-10-11 02:23:09 +8591 8591 8592 859.1 1718.2 8591 1993-07-10 2024-10-11 02:23:11.000 1993-07-10 2024-10-11 02:23:11 +8592 8592 8593 859.2 1718.4 8592 1993-07-11 2024-10-11 02:23:12.000 1993-07-11 2024-10-11 02:23:12 +8593 8593 8594 859.3 1718.6000000000001 8593 1993-07-12 2024-10-11 02:23:13.000 1993-07-12 2024-10-11 02:23:13 +8594 8594 8595 859.4 1718.8000000000002 8594 1993-07-13 2024-10-11 02:23:14.000 1993-07-13 2024-10-11 02:23:14 +8596 8596 8597 859.6 1719.2 8596 1993-07-15 2024-10-11 02:23:16.000 1993-07-15 2024-10-11 02:23:16 +8597 8597 8598 859.7 1719.4 8597 1993-07-16 2024-10-11 02:23:17.000 1993-07-16 2024-10-11 02:23:17 +8598 8598 8599 859.8 1719.6000000000001 8598 1993-07-17 2024-10-11 02:23:18.000 1993-07-17 2024-10-11 02:23:18 +8599 8599 8600 859.9 1719.8000000000002 8599 1993-07-18 2024-10-11 02:23:19.000 1993-07-18 2024-10-11 02:23:19 +8601 8601 8602 860.1 1720.2 8601 1993-07-20 2024-10-11 02:23:21.000 1993-07-20 2024-10-11 02:23:21 +8602 8602 8603 860.2 1720.4 8602 1993-07-21 2024-10-11 02:23:22.000 1993-07-21 2024-10-11 02:23:22 +8603 8603 8604 860.3 1720.6000000000001 8603 1993-07-22 2024-10-11 02:23:23.000 1993-07-22 2024-10-11 02:23:23 +8604 8604 8605 860.4 1720.8000000000002 8604 1993-07-23 2024-10-11 02:23:24.000 1993-07-23 2024-10-11 02:23:24 +8606 8606 8607 860.6 1721.2 8606 1993-07-25 2024-10-11 02:23:26.000 1993-07-25 2024-10-11 02:23:26 +8607 8607 8608 860.7 1721.4 8607 1993-07-26 2024-10-11 02:23:27.000 1993-07-26 2024-10-11 02:23:27 +8608 8608 8609 860.8 1721.6000000000001 8608 1993-07-27 2024-10-11 02:23:28.000 1993-07-27 2024-10-11 02:23:28 +8609 8609 8610 860.9 1721.8000000000002 8609 1993-07-28 2024-10-11 02:23:29.000 1993-07-28 2024-10-11 02:23:29 +8611 8611 8612 861.1 1722.2 8611 1993-07-30 2024-10-11 02:23:31.000 1993-07-30 2024-10-11 02:23:31 +8612 8612 8613 861.2 1722.4 8612 1993-07-31 2024-10-11 02:23:32.000 1993-07-31 2024-10-11 02:23:32 +8613 8613 8614 861.3 1722.6000000000001 8613 1993-08-01 2024-10-11 02:23:33.000 1993-08-01 2024-10-11 02:23:33 +8614 8614 8615 861.4 1722.8000000000002 8614 1993-08-02 2024-10-11 02:23:34.000 1993-08-02 2024-10-11 02:23:34 +8616 8616 8617 861.6 1723.2 8616 1993-08-04 2024-10-11 02:23:36.000 1993-08-04 2024-10-11 02:23:36 +8617 8617 8618 861.7 1723.4 8617 1993-08-05 2024-10-11 02:23:37.000 1993-08-05 2024-10-11 02:23:37 +8618 8618 8619 861.8 1723.6000000000001 8618 1993-08-06 2024-10-11 02:23:38.000 1993-08-06 2024-10-11 02:23:38 +8619 8619 8620 861.9 1723.8000000000002 8619 1993-08-07 2024-10-11 02:23:39.000 1993-08-07 2024-10-11 02:23:39 +8621 8621 8622 862.1 1724.2 8621 1993-08-09 2024-10-11 02:23:41.000 1993-08-09 2024-10-11 02:23:41 +8622 8622 8623 862.2 1724.4 8622 1993-08-10 2024-10-11 02:23:42.000 1993-08-10 2024-10-11 02:23:42 +8623 8623 8624 862.3 1724.6000000000001 8623 1993-08-11 2024-10-11 02:23:43.000 1993-08-11 2024-10-11 02:23:43 +8624 8624 8625 862.4 1724.8000000000002 8624 1993-08-12 2024-10-11 02:23:44.000 1993-08-12 2024-10-11 02:23:44 +8626 8626 8627 862.6 1725.2 8626 1993-08-14 2024-10-11 02:23:46.000 1993-08-14 2024-10-11 02:23:46 +8627 8627 8628 862.7 1725.4 8627 1993-08-15 2024-10-11 02:23:47.000 1993-08-15 2024-10-11 02:23:47 +8628 8628 8629 862.8 1725.6000000000001 8628 1993-08-16 2024-10-11 02:23:48.000 1993-08-16 2024-10-11 02:23:48 +8629 8629 8630 862.9 1725.8000000000002 8629 1993-08-17 2024-10-11 02:23:49.000 1993-08-17 2024-10-11 02:23:49 +8631 8631 8632 863.1 1726.2 8631 1993-08-19 2024-10-11 02:23:51.000 1993-08-19 2024-10-11 02:23:51 +8632 8632 8633 863.2 1726.4 8632 1993-08-20 2024-10-11 02:23:52.000 1993-08-20 2024-10-11 02:23:52 +8633 8633 8634 863.3 1726.6000000000001 8633 1993-08-21 2024-10-11 02:23:53.000 1993-08-21 2024-10-11 02:23:53 +8634 8634 8635 863.4 1726.8000000000002 8634 1993-08-22 2024-10-11 02:23:54.000 1993-08-22 2024-10-11 02:23:54 +8636 8636 8637 863.6 1727.2 8636 1993-08-24 2024-10-11 02:23:56.000 1993-08-24 2024-10-11 02:23:56 +8637 8637 8638 863.7 1727.4 8637 1993-08-25 2024-10-11 02:23:57.000 1993-08-25 2024-10-11 02:23:57 +8638 8638 8639 863.8 1727.6000000000001 8638 1993-08-26 2024-10-11 02:23:58.000 1993-08-26 2024-10-11 02:23:58 +8639 8639 8640 863.9 1727.8000000000002 8639 1993-08-27 2024-10-11 02:23:59.000 1993-08-27 2024-10-11 02:23:59 +8641 8641 8642 864.1 1728.2 8641 1993-08-29 2024-10-11 02:24:01.000 1993-08-29 2024-10-11 02:24:01 +8642 8642 8643 864.2 1728.4 8642 1993-08-30 2024-10-11 02:24:02.000 1993-08-30 2024-10-11 02:24:02 +8643 8643 8644 864.3 1728.6000000000001 8643 1993-08-31 2024-10-11 02:24:03.000 1993-08-31 2024-10-11 02:24:03 +8644 8644 8645 864.4 1728.8000000000002 8644 1993-09-01 2024-10-11 02:24:04.000 1993-09-01 2024-10-11 02:24:04 +8646 8646 8647 864.6 1729.2 8646 1993-09-03 2024-10-11 02:24:06.000 1993-09-03 2024-10-11 02:24:06 +8647 8647 8648 864.7 1729.4 8647 1993-09-04 2024-10-11 02:24:07.000 1993-09-04 2024-10-11 02:24:07 +8648 8648 8649 864.8 1729.6000000000001 8648 1993-09-05 2024-10-11 02:24:08.000 1993-09-05 2024-10-11 02:24:08 +8649 8649 8650 864.9 1729.8000000000002 8649 1993-09-06 2024-10-11 02:24:09.000 1993-09-06 2024-10-11 02:24:09 +8651 8651 8652 865.1 1730.2 8651 1993-09-08 2024-10-11 02:24:11.000 1993-09-08 2024-10-11 02:24:11 +8652 8652 8653 865.2 1730.4 8652 1993-09-09 2024-10-11 02:24:12.000 1993-09-09 2024-10-11 02:24:12 +8653 8653 8654 865.3 1730.6000000000001 8653 1993-09-10 2024-10-11 02:24:13.000 1993-09-10 2024-10-11 02:24:13 +8654 8654 8655 865.4 1730.8000000000002 8654 1993-09-11 2024-10-11 02:24:14.000 1993-09-11 2024-10-11 02:24:14 +8656 8656 8657 865.6 1731.2 8656 1993-09-13 2024-10-11 02:24:16.000 1993-09-13 2024-10-11 02:24:16 +8657 8657 8658 865.7 1731.4 8657 1993-09-14 2024-10-11 02:24:17.000 1993-09-14 2024-10-11 02:24:17 +8658 8658 8659 865.8 1731.6000000000001 8658 1993-09-15 2024-10-11 02:24:18.000 1993-09-15 2024-10-11 02:24:18 +8659 8659 8660 865.9 1731.8000000000002 8659 1993-09-16 2024-10-11 02:24:19.000 1993-09-16 2024-10-11 02:24:19 +8661 8661 8662 866.1 1732.2 8661 1993-09-18 2024-10-11 02:24:21.000 1993-09-18 2024-10-11 02:24:21 +8662 8662 8663 866.2 1732.4 8662 1993-09-19 2024-10-11 02:24:22.000 1993-09-19 2024-10-11 02:24:22 +8663 8663 8664 866.3 1732.6000000000001 8663 1993-09-20 2024-10-11 02:24:23.000 1993-09-20 2024-10-11 02:24:23 +8664 8664 8665 866.4 1732.8000000000002 8664 1993-09-21 2024-10-11 02:24:24.000 1993-09-21 2024-10-11 02:24:24 +8666 8666 8667 866.6 1733.2 8666 1993-09-23 2024-10-11 02:24:26.000 1993-09-23 2024-10-11 02:24:26 +8667 8667 8668 866.7 1733.4 8667 1993-09-24 2024-10-11 02:24:27.000 1993-09-24 2024-10-11 02:24:27 +8668 8668 8669 866.8 1733.6000000000001 8668 1993-09-25 2024-10-11 02:24:28.000 1993-09-25 2024-10-11 02:24:28 +8669 8669 8670 866.9 1733.8000000000002 8669 1993-09-26 2024-10-11 02:24:29.000 1993-09-26 2024-10-11 02:24:29 +8671 8671 8672 867.1 1734.2 8671 1993-09-28 2024-10-11 02:24:31.000 1993-09-28 2024-10-11 02:24:31 +8672 8672 8673 867.2 1734.4 8672 1993-09-29 2024-10-11 02:24:32.000 1993-09-29 2024-10-11 02:24:32 +8673 8673 8674 867.3 1734.6000000000001 8673 1993-09-30 2024-10-11 02:24:33.000 1993-09-30 2024-10-11 02:24:33 +8674 8674 8675 867.4 1734.8000000000002 8674 1993-10-01 2024-10-11 02:24:34.000 1993-10-01 2024-10-11 02:24:34 +8676 8676 8677 867.6 1735.2 8676 1993-10-03 2024-10-11 02:24:36.000 1993-10-03 2024-10-11 02:24:36 +8677 8677 8678 867.7 1735.4 8677 1993-10-04 2024-10-11 02:24:37.000 1993-10-04 2024-10-11 02:24:37 +8678 8678 8679 867.8 1735.6000000000001 8678 1993-10-05 2024-10-11 02:24:38.000 1993-10-05 2024-10-11 02:24:38 +8679 8679 8680 867.9 1735.8000000000002 8679 1993-10-06 2024-10-11 02:24:39.000 1993-10-06 2024-10-11 02:24:39 +8681 8681 8682 868.1 1736.2 8681 1993-10-08 2024-10-11 02:24:41.000 1993-10-08 2024-10-11 02:24:41 +8682 8682 8683 868.2 1736.4 8682 1993-10-09 2024-10-11 02:24:42.000 1993-10-09 2024-10-11 02:24:42 +8683 8683 8684 868.3 1736.6000000000001 8683 1993-10-10 2024-10-11 02:24:43.000 1993-10-10 2024-10-11 02:24:43 +8684 8684 8685 868.4 1736.8000000000002 8684 1993-10-11 2024-10-11 02:24:44.000 1993-10-11 2024-10-11 02:24:44 +8686 8686 8687 868.6 1737.2 8686 1993-10-13 2024-10-11 02:24:46.000 1993-10-13 2024-10-11 02:24:46 +8687 8687 8688 868.7 1737.4 8687 1993-10-14 2024-10-11 02:24:47.000 1993-10-14 2024-10-11 02:24:47 +8688 8688 8689 868.8 1737.6000000000001 8688 1993-10-15 2024-10-11 02:24:48.000 1993-10-15 2024-10-11 02:24:48 +8689 8689 8690 868.9 1737.8000000000002 8689 1993-10-16 2024-10-11 02:24:49.000 1993-10-16 2024-10-11 02:24:49 +8691 8691 8692 869.1 1738.2 8691 1993-10-18 2024-10-11 02:24:51.000 1993-10-18 2024-10-11 02:24:51 +8692 8692 8693 869.2 1738.4 8692 1993-10-19 2024-10-11 02:24:52.000 1993-10-19 2024-10-11 02:24:52 +8693 8693 8694 869.3 1738.6000000000001 8693 1993-10-20 2024-10-11 02:24:53.000 1993-10-20 2024-10-11 02:24:53 +8694 8694 8695 869.4 1738.8000000000002 8694 1993-10-21 2024-10-11 02:24:54.000 1993-10-21 2024-10-11 02:24:54 +8696 8696 8697 869.6 1739.2 8696 1993-10-23 2024-10-11 02:24:56.000 1993-10-23 2024-10-11 02:24:56 +8697 8697 8698 869.7 1739.4 8697 1993-10-24 2024-10-11 02:24:57.000 1993-10-24 2024-10-11 02:24:57 +8698 8698 8699 869.8 1739.6000000000001 8698 1993-10-25 2024-10-11 02:24:58.000 1993-10-25 2024-10-11 02:24:58 +8699 8699 8700 869.9 1739.8000000000002 8699 1993-10-26 2024-10-11 02:24:59.000 1993-10-26 2024-10-11 02:24:59 +8701 8701 8702 870.1 1740.2 8701 1993-10-28 2024-10-11 02:25:01.000 1993-10-28 2024-10-11 02:25:01 +8702 8702 8703 870.2 1740.4 8702 1993-10-29 2024-10-11 02:25:02.000 1993-10-29 2024-10-11 02:25:02 +8703 8703 8704 870.3 1740.6000000000001 8703 1993-10-30 2024-10-11 02:25:03.000 1993-10-30 2024-10-11 02:25:03 +8704 8704 8705 870.4 1740.8000000000002 8704 1993-10-31 2024-10-11 02:25:04.000 1993-10-31 2024-10-11 02:25:04 +8706 8706 8707 870.6 1741.2 8706 1993-11-02 2024-10-11 02:25:06.000 1993-11-02 2024-10-11 02:25:06 +8707 8707 8708 870.7 1741.4 8707 1993-11-03 2024-10-11 02:25:07.000 1993-11-03 2024-10-11 02:25:07 +8708 8708 8709 870.8 1741.6000000000001 8708 1993-11-04 2024-10-11 02:25:08.000 1993-11-04 2024-10-11 02:25:08 +8709 8709 8710 870.9 1741.8000000000002 8709 1993-11-05 2024-10-11 02:25:09.000 1993-11-05 2024-10-11 02:25:09 +8711 8711 8712 871.1 1742.2 8711 1993-11-07 2024-10-11 02:25:11.000 1993-11-07 2024-10-11 02:25:11 +8712 8712 8713 871.2 1742.4 8712 1993-11-08 2024-10-11 02:25:12.000 1993-11-08 2024-10-11 02:25:12 +8713 8713 8714 871.3 1742.6000000000001 8713 1993-11-09 2024-10-11 02:25:13.000 1993-11-09 2024-10-11 02:25:13 +8714 8714 8715 871.4 1742.8000000000002 8714 1993-11-10 2024-10-11 02:25:14.000 1993-11-10 2024-10-11 02:25:14 +8716 8716 8717 871.6 1743.2 8716 1993-11-12 2024-10-11 02:25:16.000 1993-11-12 2024-10-11 02:25:16 +8717 8717 8718 871.7 1743.4 8717 1993-11-13 2024-10-11 02:25:17.000 1993-11-13 2024-10-11 02:25:17 +8718 8718 8719 871.8 1743.6000000000001 8718 1993-11-14 2024-10-11 02:25:18.000 1993-11-14 2024-10-11 02:25:18 +8719 8719 8720 871.9 1743.8000000000002 8719 1993-11-15 2024-10-11 02:25:19.000 1993-11-15 2024-10-11 02:25:19 +8721 8721 8722 872.1 1744.2 8721 1993-11-17 2024-10-11 02:25:21.000 1993-11-17 2024-10-11 02:25:21 +8722 8722 8723 872.2 1744.4 8722 1993-11-18 2024-10-11 02:25:22.000 1993-11-18 2024-10-11 02:25:22 +8723 8723 8724 872.3 1744.6000000000001 8723 1993-11-19 2024-10-11 02:25:23.000 1993-11-19 2024-10-11 02:25:23 +8724 8724 8725 872.4 1744.8000000000002 8724 1993-11-20 2024-10-11 02:25:24.000 1993-11-20 2024-10-11 02:25:24 +8726 8726 8727 872.6 1745.2 8726 1993-11-22 2024-10-11 02:25:26.000 1993-11-22 2024-10-11 02:25:26 +8727 8727 8728 872.7 1745.4 8727 1993-11-23 2024-10-11 02:25:27.000 1993-11-23 2024-10-11 02:25:27 +8728 8728 8729 872.8 1745.6000000000001 8728 1993-11-24 2024-10-11 02:25:28.000 1993-11-24 2024-10-11 02:25:28 +8729 8729 8730 872.9 1745.8000000000002 8729 1993-11-25 2024-10-11 02:25:29.000 1993-11-25 2024-10-11 02:25:29 +8731 8731 8732 873.1 1746.2 8731 1993-11-27 2024-10-11 02:25:31.000 1993-11-27 2024-10-11 02:25:31 +8732 8732 8733 873.2 1746.4 8732 1993-11-28 2024-10-11 02:25:32.000 1993-11-28 2024-10-11 02:25:32 +8733 8733 8734 873.3 1746.6000000000001 8733 1993-11-29 2024-10-11 02:25:33.000 1993-11-29 2024-10-11 02:25:33 +8734 8734 8735 873.4 1746.8000000000002 8734 1993-11-30 2024-10-11 02:25:34.000 1993-11-30 2024-10-11 02:25:34 +8736 8736 8737 873.6 1747.2 8736 1993-12-02 2024-10-11 02:25:36.000 1993-12-02 2024-10-11 02:25:36 +8737 8737 8738 873.7 1747.4 8737 1993-12-03 2024-10-11 02:25:37.000 1993-12-03 2024-10-11 02:25:37 +8738 8738 8739 873.8 1747.6000000000001 8738 1993-12-04 2024-10-11 02:25:38.000 1993-12-04 2024-10-11 02:25:38 +8739 8739 8740 873.9 1747.8000000000002 8739 1993-12-05 2024-10-11 02:25:39.000 1993-12-05 2024-10-11 02:25:39 +8741 8741 8742 874.1 1748.2 8741 1993-12-07 2024-10-11 02:25:41.000 1993-12-07 2024-10-11 02:25:41 +8742 8742 8743 874.2 1748.4 8742 1993-12-08 2024-10-11 02:25:42.000 1993-12-08 2024-10-11 02:25:42 +8743 8743 8744 874.3 1748.6000000000001 8743 1993-12-09 2024-10-11 02:25:43.000 1993-12-09 2024-10-11 02:25:43 +8744 8744 8745 874.4 1748.8000000000002 8744 1993-12-10 2024-10-11 02:25:44.000 1993-12-10 2024-10-11 02:25:44 +8746 8746 8747 874.6 1749.2 8746 1993-12-12 2024-10-11 02:25:46.000 1993-12-12 2024-10-11 02:25:46 +8747 8747 8748 874.7 1749.4 8747 1993-12-13 2024-10-11 02:25:47.000 1993-12-13 2024-10-11 02:25:47 +8748 8748 8749 874.8 1749.6000000000001 8748 1993-12-14 2024-10-11 02:25:48.000 1993-12-14 2024-10-11 02:25:48 +8749 8749 8750 874.9 1749.8000000000002 8749 1993-12-15 2024-10-11 02:25:49.000 1993-12-15 2024-10-11 02:25:49 +8751 8751 8752 875.1 1750.2 8751 1993-12-17 2024-10-11 02:25:51.000 1993-12-17 2024-10-11 02:25:51 +8752 8752 8753 875.2 1750.4 8752 1993-12-18 2024-10-11 02:25:52.000 1993-12-18 2024-10-11 02:25:52 +8753 8753 8754 875.3 1750.6000000000001 8753 1993-12-19 2024-10-11 02:25:53.000 1993-12-19 2024-10-11 02:25:53 +8754 8754 8755 875.4 1750.8000000000002 8754 1993-12-20 2024-10-11 02:25:54.000 1993-12-20 2024-10-11 02:25:54 +8756 8756 8757 875.6 1751.2 8756 1993-12-22 2024-10-11 02:25:56.000 1993-12-22 2024-10-11 02:25:56 +8757 8757 8758 875.7 1751.4 8757 1993-12-23 2024-10-11 02:25:57.000 1993-12-23 2024-10-11 02:25:57 +8758 8758 8759 875.8 1751.6000000000001 8758 1993-12-24 2024-10-11 02:25:58.000 1993-12-24 2024-10-11 02:25:58 +8759 8759 8760 875.9 1751.8000000000002 8759 1993-12-25 2024-10-11 02:25:59.000 1993-12-25 2024-10-11 02:25:59 +8761 8761 8762 876.1 1752.2 8761 1993-12-27 2024-10-11 02:26:01.000 1993-12-27 2024-10-11 02:26:01 +8762 8762 8763 876.2 1752.4 8762 1993-12-28 2024-10-11 02:26:02.000 1993-12-28 2024-10-11 02:26:02 +8763 8763 8764 876.3 1752.6000000000001 8763 1993-12-29 2024-10-11 02:26:03.000 1993-12-29 2024-10-11 02:26:03 +8764 8764 8765 876.4 1752.8000000000002 8764 1993-12-30 2024-10-11 02:26:04.000 1993-12-30 2024-10-11 02:26:04 +8766 8766 8767 876.6 1753.2 8766 1994-01-01 2024-10-11 02:26:06.000 1994-01-01 2024-10-11 02:26:06 +8767 8767 8768 876.7 1753.4 8767 1994-01-02 2024-10-11 02:26:07.000 1994-01-02 2024-10-11 02:26:07 +8768 8768 8769 876.8 1753.6000000000001 8768 1994-01-03 2024-10-11 02:26:08.000 1994-01-03 2024-10-11 02:26:08 +8769 8769 8770 876.9 1753.8000000000002 8769 1994-01-04 2024-10-11 02:26:09.000 1994-01-04 2024-10-11 02:26:09 +8771 8771 8772 877.1 1754.2 8771 1994-01-06 2024-10-11 02:26:11.000 1994-01-06 2024-10-11 02:26:11 +8772 8772 8773 877.2 1754.4 8772 1994-01-07 2024-10-11 02:26:12.000 1994-01-07 2024-10-11 02:26:12 +8773 8773 8774 877.3 1754.6000000000001 8773 1994-01-08 2024-10-11 02:26:13.000 1994-01-08 2024-10-11 02:26:13 +8774 8774 8775 877.4 1754.8000000000002 8774 1994-01-09 2024-10-11 02:26:14.000 1994-01-09 2024-10-11 02:26:14 +8776 8776 8777 877.6 1755.2 8776 1994-01-11 2024-10-11 02:26:16.000 1994-01-11 2024-10-11 02:26:16 +8777 8777 8778 877.7 1755.4 8777 1994-01-12 2024-10-11 02:26:17.000 1994-01-12 2024-10-11 02:26:17 +8778 8778 8779 877.8 1755.6000000000001 8778 1994-01-13 2024-10-11 02:26:18.000 1994-01-13 2024-10-11 02:26:18 +8779 8779 8780 877.9 1755.8000000000002 8779 1994-01-14 2024-10-11 02:26:19.000 1994-01-14 2024-10-11 02:26:19 +8781 8781 8782 878.1 1756.2 8781 1994-01-16 2024-10-11 02:26:21.000 1994-01-16 2024-10-11 02:26:21 +8782 8782 8783 878.2 1756.4 8782 1994-01-17 2024-10-11 02:26:22.000 1994-01-17 2024-10-11 02:26:22 +8783 8783 8784 878.3 1756.6000000000001 8783 1994-01-18 2024-10-11 02:26:23.000 1994-01-18 2024-10-11 02:26:23 +8784 8784 8785 878.4 1756.8000000000002 8784 1994-01-19 2024-10-11 02:26:24.000 1994-01-19 2024-10-11 02:26:24 +8786 8786 8787 878.6 1757.2 8786 1994-01-21 2024-10-11 02:26:26.000 1994-01-21 2024-10-11 02:26:26 +8787 8787 8788 878.7 1757.4 8787 1994-01-22 2024-10-11 02:26:27.000 1994-01-22 2024-10-11 02:26:27 +8788 8788 8789 878.8 1757.6000000000001 8788 1994-01-23 2024-10-11 02:26:28.000 1994-01-23 2024-10-11 02:26:28 +8789 8789 8790 878.9 1757.8000000000002 8789 1994-01-24 2024-10-11 02:26:29.000 1994-01-24 2024-10-11 02:26:29 +8791 8791 8792 879.1 1758.2 8791 1994-01-26 2024-10-11 02:26:31.000 1994-01-26 2024-10-11 02:26:31 +8792 8792 8793 879.2 1758.4 8792 1994-01-27 2024-10-11 02:26:32.000 1994-01-27 2024-10-11 02:26:32 +8793 8793 8794 879.3 1758.6000000000001 8793 1994-01-28 2024-10-11 02:26:33.000 1994-01-28 2024-10-11 02:26:33 +8794 8794 8795 879.4 1758.8000000000002 8794 1994-01-29 2024-10-11 02:26:34.000 1994-01-29 2024-10-11 02:26:34 +8796 8796 8797 879.6 1759.2 8796 1994-01-31 2024-10-11 02:26:36.000 1994-01-31 2024-10-11 02:26:36 +8797 8797 8798 879.7 1759.4 8797 1994-02-01 2024-10-11 02:26:37.000 1994-02-01 2024-10-11 02:26:37 +8798 8798 8799 879.8 1759.6000000000001 8798 1994-02-02 2024-10-11 02:26:38.000 1994-02-02 2024-10-11 02:26:38 +8799 8799 8800 879.9 1759.8000000000002 8799 1994-02-03 2024-10-11 02:26:39.000 1994-02-03 2024-10-11 02:26:39 +8801 8801 8802 880.1 1760.2 8801 1994-02-05 2024-10-11 02:26:41.000 1994-02-05 2024-10-11 02:26:41 +8802 8802 8803 880.2 1760.4 8802 1994-02-06 2024-10-11 02:26:42.000 1994-02-06 2024-10-11 02:26:42 +8803 8803 8804 880.3 1760.6000000000001 8803 1994-02-07 2024-10-11 02:26:43.000 1994-02-07 2024-10-11 02:26:43 +8804 8804 8805 880.4 1760.8000000000002 8804 1994-02-08 2024-10-11 02:26:44.000 1994-02-08 2024-10-11 02:26:44 +8806 8806 8807 880.6 1761.2 8806 1994-02-10 2024-10-11 02:26:46.000 1994-02-10 2024-10-11 02:26:46 +8807 8807 8808 880.7 1761.4 8807 1994-02-11 2024-10-11 02:26:47.000 1994-02-11 2024-10-11 02:26:47 +8808 8808 8809 880.8 1761.6000000000001 8808 1994-02-12 2024-10-11 02:26:48.000 1994-02-12 2024-10-11 02:26:48 +8809 8809 8810 880.9 1761.8000000000002 8809 1994-02-13 2024-10-11 02:26:49.000 1994-02-13 2024-10-11 02:26:49 +8811 8811 8812 881.1 1762.2 8811 1994-02-15 2024-10-11 02:26:51.000 1994-02-15 2024-10-11 02:26:51 +8812 8812 8813 881.2 1762.4 8812 1994-02-16 2024-10-11 02:26:52.000 1994-02-16 2024-10-11 02:26:52 +8813 8813 8814 881.3 1762.6000000000001 8813 1994-02-17 2024-10-11 02:26:53.000 1994-02-17 2024-10-11 02:26:53 +8814 8814 8815 881.4 1762.8000000000002 8814 1994-02-18 2024-10-11 02:26:54.000 1994-02-18 2024-10-11 02:26:54 +8816 8816 8817 881.6 1763.2 8816 1994-02-20 2024-10-11 02:26:56.000 1994-02-20 2024-10-11 02:26:56 +8817 8817 8818 881.7 1763.4 8817 1994-02-21 2024-10-11 02:26:57.000 1994-02-21 2024-10-11 02:26:57 +8818 8818 8819 881.8 1763.6000000000001 8818 1994-02-22 2024-10-11 02:26:58.000 1994-02-22 2024-10-11 02:26:58 +8819 8819 8820 881.9 1763.8000000000002 8819 1994-02-23 2024-10-11 02:26:59.000 1994-02-23 2024-10-11 02:26:59 +8821 8821 8822 882.1 1764.2 8821 1994-02-25 2024-10-11 02:27:01.000 1994-02-25 2024-10-11 02:27:01 +8822 8822 8823 882.2 1764.4 8822 1994-02-26 2024-10-11 02:27:02.000 1994-02-26 2024-10-11 02:27:02 +8823 8823 8824 882.3 1764.6000000000001 8823 1994-02-27 2024-10-11 02:27:03.000 1994-02-27 2024-10-11 02:27:03 +8824 8824 8825 882.4 1764.8000000000002 8824 1994-02-28 2024-10-11 02:27:04.000 1994-02-28 2024-10-11 02:27:04 +8826 8826 8827 882.6 1765.2 8826 1994-03-02 2024-10-11 02:27:06.000 1994-03-02 2024-10-11 02:27:06 +8827 8827 8828 882.7 1765.4 8827 1994-03-03 2024-10-11 02:27:07.000 1994-03-03 2024-10-11 02:27:07 +8828 8828 8829 882.8 1765.6000000000001 8828 1994-03-04 2024-10-11 02:27:08.000 1994-03-04 2024-10-11 02:27:08 +8829 8829 8830 882.9 1765.8000000000002 8829 1994-03-05 2024-10-11 02:27:09.000 1994-03-05 2024-10-11 02:27:09 +8831 8831 8832 883.1 1766.2 8831 1994-03-07 2024-10-11 02:27:11.000 1994-03-07 2024-10-11 02:27:11 +8832 8832 8833 883.2 1766.4 8832 1994-03-08 2024-10-11 02:27:12.000 1994-03-08 2024-10-11 02:27:12 +8833 8833 8834 883.3 1766.6000000000001 8833 1994-03-09 2024-10-11 02:27:13.000 1994-03-09 2024-10-11 02:27:13 +8834 8834 8835 883.4 1766.8000000000002 8834 1994-03-10 2024-10-11 02:27:14.000 1994-03-10 2024-10-11 02:27:14 +8836 8836 8837 883.6 1767.2 8836 1994-03-12 2024-10-11 02:27:16.000 1994-03-12 2024-10-11 02:27:16 +8837 8837 8838 883.7 1767.4 8837 1994-03-13 2024-10-11 02:27:17.000 1994-03-13 2024-10-11 02:27:17 +8838 8838 8839 883.8 1767.6000000000001 8838 1994-03-14 2024-10-11 02:27:18.000 1994-03-14 2024-10-11 02:27:18 +8839 8839 8840 883.9 1767.8000000000002 8839 1994-03-15 2024-10-11 02:27:19.000 1994-03-15 2024-10-11 02:27:19 +8841 8841 8842 884.1 1768.2 8841 1994-03-17 2024-10-11 02:27:21.000 1994-03-17 2024-10-11 02:27:21 +8842 8842 8843 884.2 1768.4 8842 1994-03-18 2024-10-11 02:27:22.000 1994-03-18 2024-10-11 02:27:22 +8843 8843 8844 884.3 1768.6000000000001 8843 1994-03-19 2024-10-11 02:27:23.000 1994-03-19 2024-10-11 02:27:23 +8844 8844 8845 884.4 1768.8000000000002 8844 1994-03-20 2024-10-11 02:27:24.000 1994-03-20 2024-10-11 02:27:24 +8846 8846 8847 884.6 1769.2 8846 1994-03-22 2024-10-11 02:27:26.000 1994-03-22 2024-10-11 02:27:26 +8847 8847 8848 884.7 1769.4 8847 1994-03-23 2024-10-11 02:27:27.000 1994-03-23 2024-10-11 02:27:27 +8848 8848 8849 884.8 1769.6000000000001 8848 1994-03-24 2024-10-11 02:27:28.000 1994-03-24 2024-10-11 02:27:28 +8849 8849 8850 884.9 1769.8000000000002 8849 1994-03-25 2024-10-11 02:27:29.000 1994-03-25 2024-10-11 02:27:29 +8851 8851 8852 885.1 1770.2 8851 1994-03-27 2024-10-11 02:27:31.000 1994-03-27 2024-10-11 02:27:31 +8852 8852 8853 885.2 1770.4 8852 1994-03-28 2024-10-11 02:27:32.000 1994-03-28 2024-10-11 02:27:32 +8853 8853 8854 885.3 1770.6000000000001 8853 1994-03-29 2024-10-11 02:27:33.000 1994-03-29 2024-10-11 02:27:33 +8854 8854 8855 885.4 1770.8000000000002 8854 1994-03-30 2024-10-11 02:27:34.000 1994-03-30 2024-10-11 02:27:34 +8856 8856 8857 885.6 1771.2 8856 1994-04-01 2024-10-11 02:27:36.000 1994-04-01 2024-10-11 02:27:36 +8857 8857 8858 885.7 1771.4 8857 1994-04-02 2024-10-11 02:27:37.000 1994-04-02 2024-10-11 02:27:37 +8858 8858 8859 885.8 1771.6000000000001 8858 1994-04-03 2024-10-11 02:27:38.000 1994-04-03 2024-10-11 02:27:38 +8859 8859 8860 885.9 1771.8000000000002 8859 1994-04-04 2024-10-11 02:27:39.000 1994-04-04 2024-10-11 02:27:39 +8861 8861 8862 886.1 1772.2 8861 1994-04-06 2024-10-11 02:27:41.000 1994-04-06 2024-10-11 02:27:41 +8862 8862 8863 886.2 1772.4 8862 1994-04-07 2024-10-11 02:27:42.000 1994-04-07 2024-10-11 02:27:42 +8863 8863 8864 886.3 1772.6000000000001 8863 1994-04-08 2024-10-11 02:27:43.000 1994-04-08 2024-10-11 02:27:43 +8864 8864 8865 886.4 1772.8000000000002 8864 1994-04-09 2024-10-11 02:27:44.000 1994-04-09 2024-10-11 02:27:44 +8866 8866 8867 886.6 1773.2 8866 1994-04-11 2024-10-11 02:27:46.000 1994-04-11 2024-10-11 02:27:46 +8867 8867 8868 886.7 1773.4 8867 1994-04-12 2024-10-11 02:27:47.000 1994-04-12 2024-10-11 02:27:47 +8868 8868 8869 886.8 1773.6000000000001 8868 1994-04-13 2024-10-11 02:27:48.000 1994-04-13 2024-10-11 02:27:48 +8869 8869 8870 886.9 1773.8000000000002 8869 1994-04-14 2024-10-11 02:27:49.000 1994-04-14 2024-10-11 02:27:49 +8871 8871 8872 887.1 1774.2 8871 1994-04-16 2024-10-11 02:27:51.000 1994-04-16 2024-10-11 02:27:51 +8872 8872 8873 887.2 1774.4 8872 1994-04-17 2024-10-11 02:27:52.000 1994-04-17 2024-10-11 02:27:52 +8873 8873 8874 887.3 1774.6000000000001 8873 1994-04-18 2024-10-11 02:27:53.000 1994-04-18 2024-10-11 02:27:53 +8874 8874 8875 887.4 1774.8000000000002 8874 1994-04-19 2024-10-11 02:27:54.000 1994-04-19 2024-10-11 02:27:54 +8876 8876 8877 887.6 1775.2 8876 1994-04-21 2024-10-11 02:27:56.000 1994-04-21 2024-10-11 02:27:56 +8877 8877 8878 887.7 1775.4 8877 1994-04-22 2024-10-11 02:27:57.000 1994-04-22 2024-10-11 02:27:57 +8878 8878 8879 887.8 1775.6000000000001 8878 1994-04-23 2024-10-11 02:27:58.000 1994-04-23 2024-10-11 02:27:58 +8879 8879 8880 887.9 1775.8000000000002 8879 1994-04-24 2024-10-11 02:27:59.000 1994-04-24 2024-10-11 02:27:59 +8881 8881 8882 888.1 1776.2 8881 1994-04-26 2024-10-11 02:28:01.000 1994-04-26 2024-10-11 02:28:01 +8882 8882 8883 888.2 1776.4 8882 1994-04-27 2024-10-11 02:28:02.000 1994-04-27 2024-10-11 02:28:02 +8883 8883 8884 888.3 1776.6000000000001 8883 1994-04-28 2024-10-11 02:28:03.000 1994-04-28 2024-10-11 02:28:03 +8884 8884 8885 888.4 1776.8000000000002 8884 1994-04-29 2024-10-11 02:28:04.000 1994-04-29 2024-10-11 02:28:04 +8886 8886 8887 888.6 1777.2 8886 1994-05-01 2024-10-11 02:28:06.000 1994-05-01 2024-10-11 02:28:06 +8887 8887 8888 888.7 1777.4 8887 1994-05-02 2024-10-11 02:28:07.000 1994-05-02 2024-10-11 02:28:07 +8888 8888 8889 888.8 1777.6000000000001 8888 1994-05-03 2024-10-11 02:28:08.000 1994-05-03 2024-10-11 02:28:08 +8889 8889 8890 888.9 1777.8000000000002 8889 1994-05-04 2024-10-11 02:28:09.000 1994-05-04 2024-10-11 02:28:09 +8891 8891 8892 889.1 1778.2 8891 1994-05-06 2024-10-11 02:28:11.000 1994-05-06 2024-10-11 02:28:11 +8892 8892 8893 889.2 1778.4 8892 1994-05-07 2024-10-11 02:28:12.000 1994-05-07 2024-10-11 02:28:12 +8893 8893 8894 889.3 1778.6000000000001 8893 1994-05-08 2024-10-11 02:28:13.000 1994-05-08 2024-10-11 02:28:13 +8894 8894 8895 889.4 1778.8000000000002 8894 1994-05-09 2024-10-11 02:28:14.000 1994-05-09 2024-10-11 02:28:14 +8896 8896 8897 889.6 1779.2 8896 1994-05-11 2024-10-11 02:28:16.000 1994-05-11 2024-10-11 02:28:16 +8897 8897 8898 889.7 1779.4 8897 1994-05-12 2024-10-11 02:28:17.000 1994-05-12 2024-10-11 02:28:17 +8898 8898 8899 889.8 1779.6000000000001 8898 1994-05-13 2024-10-11 02:28:18.000 1994-05-13 2024-10-11 02:28:18 +8899 8899 8900 889.9 1779.8000000000002 8899 1994-05-14 2024-10-11 02:28:19.000 1994-05-14 2024-10-11 02:28:19 +8901 8901 8902 890.1 1780.2 8901 1994-05-16 2024-10-11 02:28:21.000 1994-05-16 2024-10-11 02:28:21 +8902 8902 8903 890.2 1780.4 8902 1994-05-17 2024-10-11 02:28:22.000 1994-05-17 2024-10-11 02:28:22 +8903 8903 8904 890.3 1780.6000000000001 8903 1994-05-18 2024-10-11 02:28:23.000 1994-05-18 2024-10-11 02:28:23 +8904 8904 8905 890.4 1780.8000000000002 8904 1994-05-19 2024-10-11 02:28:24.000 1994-05-19 2024-10-11 02:28:24 +8906 8906 8907 890.6 1781.2 8906 1994-05-21 2024-10-11 02:28:26.000 1994-05-21 2024-10-11 02:28:26 +8907 8907 8908 890.7 1781.4 8907 1994-05-22 2024-10-11 02:28:27.000 1994-05-22 2024-10-11 02:28:27 +8908 8908 8909 890.8 1781.6000000000001 8908 1994-05-23 2024-10-11 02:28:28.000 1994-05-23 2024-10-11 02:28:28 +8909 8909 8910 890.9 1781.8000000000002 8909 1994-05-24 2024-10-11 02:28:29.000 1994-05-24 2024-10-11 02:28:29 +8911 8911 8912 891.1 1782.2 8911 1994-05-26 2024-10-11 02:28:31.000 1994-05-26 2024-10-11 02:28:31 +8912 8912 8913 891.2 1782.4 8912 1994-05-27 2024-10-11 02:28:32.000 1994-05-27 2024-10-11 02:28:32 +8913 8913 8914 891.3 1782.6000000000001 8913 1994-05-28 2024-10-11 02:28:33.000 1994-05-28 2024-10-11 02:28:33 +8914 8914 8915 891.4 1782.8000000000002 8914 1994-05-29 2024-10-11 02:28:34.000 1994-05-29 2024-10-11 02:28:34 +8916 8916 8917 891.6 1783.2 8916 1994-05-31 2024-10-11 02:28:36.000 1994-05-31 2024-10-11 02:28:36 +8917 8917 8918 891.7 1783.4 8917 1994-06-01 2024-10-11 02:28:37.000 1994-06-01 2024-10-11 02:28:37 +8918 8918 8919 891.8 1783.6000000000001 8918 1994-06-02 2024-10-11 02:28:38.000 1994-06-02 2024-10-11 02:28:38 +8919 8919 8920 891.9 1783.8000000000002 8919 1994-06-03 2024-10-11 02:28:39.000 1994-06-03 2024-10-11 02:28:39 +8921 8921 8922 892.1 1784.2 8921 1994-06-05 2024-10-11 02:28:41.000 1994-06-05 2024-10-11 02:28:41 +8922 8922 8923 892.2 1784.4 8922 1994-06-06 2024-10-11 02:28:42.000 1994-06-06 2024-10-11 02:28:42 +8923 8923 8924 892.3 1784.6000000000001 8923 1994-06-07 2024-10-11 02:28:43.000 1994-06-07 2024-10-11 02:28:43 +8924 8924 8925 892.4 1784.8000000000002 8924 1994-06-08 2024-10-11 02:28:44.000 1994-06-08 2024-10-11 02:28:44 +8926 8926 8927 892.6 1785.2 8926 1994-06-10 2024-10-11 02:28:46.000 1994-06-10 2024-10-11 02:28:46 +8927 8927 8928 892.7 1785.4 8927 1994-06-11 2024-10-11 02:28:47.000 1994-06-11 2024-10-11 02:28:47 +8928 8928 8929 892.8 1785.6000000000001 8928 1994-06-12 2024-10-11 02:28:48.000 1994-06-12 2024-10-11 02:28:48 +8929 8929 8930 892.9 1785.8000000000002 8929 1994-06-13 2024-10-11 02:28:49.000 1994-06-13 2024-10-11 02:28:49 +8931 8931 8932 893.1 1786.2 8931 1994-06-15 2024-10-11 02:28:51.000 1994-06-15 2024-10-11 02:28:51 +8932 8932 8933 893.2 1786.4 8932 1994-06-16 2024-10-11 02:28:52.000 1994-06-16 2024-10-11 02:28:52 +8933 8933 8934 893.3 1786.6000000000001 8933 1994-06-17 2024-10-11 02:28:53.000 1994-06-17 2024-10-11 02:28:53 +8934 8934 8935 893.4 1786.8000000000002 8934 1994-06-18 2024-10-11 02:28:54.000 1994-06-18 2024-10-11 02:28:54 +8936 8936 8937 893.6 1787.2 8936 1994-06-20 2024-10-11 02:28:56.000 1994-06-20 2024-10-11 02:28:56 +8937 8937 8938 893.7 1787.4 8937 1994-06-21 2024-10-11 02:28:57.000 1994-06-21 2024-10-11 02:28:57 +8938 8938 8939 893.8 1787.6000000000001 8938 1994-06-22 2024-10-11 02:28:58.000 1994-06-22 2024-10-11 02:28:58 +8939 8939 8940 893.9 1787.8000000000002 8939 1994-06-23 2024-10-11 02:28:59.000 1994-06-23 2024-10-11 02:28:59 +8941 8941 8942 894.1 1788.2 8941 1994-06-25 2024-10-11 02:29:01.000 1994-06-25 2024-10-11 02:29:01 +8942 8942 8943 894.2 1788.4 8942 1994-06-26 2024-10-11 02:29:02.000 1994-06-26 2024-10-11 02:29:02 +8943 8943 8944 894.3 1788.6000000000001 8943 1994-06-27 2024-10-11 02:29:03.000 1994-06-27 2024-10-11 02:29:03 +8944 8944 8945 894.4 1788.8000000000002 8944 1994-06-28 2024-10-11 02:29:04.000 1994-06-28 2024-10-11 02:29:04 +8946 8946 8947 894.6 1789.2 8946 1994-06-30 2024-10-11 02:29:06.000 1994-06-30 2024-10-11 02:29:06 +8947 8947 8948 894.7 1789.4 8947 1994-07-01 2024-10-11 02:29:07.000 1994-07-01 2024-10-11 02:29:07 +8948 8948 8949 894.8 1789.6000000000001 8948 1994-07-02 2024-10-11 02:29:08.000 1994-07-02 2024-10-11 02:29:08 +8949 8949 8950 894.9 1789.8000000000002 8949 1994-07-03 2024-10-11 02:29:09.000 1994-07-03 2024-10-11 02:29:09 +8951 8951 8952 895.1 1790.2 8951 1994-07-05 2024-10-11 02:29:11.000 1994-07-05 2024-10-11 02:29:11 +8952 8952 8953 895.2 1790.4 8952 1994-07-06 2024-10-11 02:29:12.000 1994-07-06 2024-10-11 02:29:12 +8953 8953 8954 895.3 1790.6000000000001 8953 1994-07-07 2024-10-11 02:29:13.000 1994-07-07 2024-10-11 02:29:13 +8954 8954 8955 895.4 1790.8000000000002 8954 1994-07-08 2024-10-11 02:29:14.000 1994-07-08 2024-10-11 02:29:14 +8956 8956 8957 895.6 1791.2 8956 1994-07-10 2024-10-11 02:29:16.000 1994-07-10 2024-10-11 02:29:16 +8957 8957 8958 895.7 1791.4 8957 1994-07-11 2024-10-11 02:29:17.000 1994-07-11 2024-10-11 02:29:17 +8958 8958 8959 895.8 1791.6000000000001 8958 1994-07-12 2024-10-11 02:29:18.000 1994-07-12 2024-10-11 02:29:18 +8959 8959 8960 895.9 1791.8000000000002 8959 1994-07-13 2024-10-11 02:29:19.000 1994-07-13 2024-10-11 02:29:19 +8961 8961 8962 896.1 1792.2 8961 1994-07-15 2024-10-11 02:29:21.000 1994-07-15 2024-10-11 02:29:21 +8962 8962 8963 896.2 1792.4 8962 1994-07-16 2024-10-11 02:29:22.000 1994-07-16 2024-10-11 02:29:22 +8963 8963 8964 896.3 1792.6000000000001 8963 1994-07-17 2024-10-11 02:29:23.000 1994-07-17 2024-10-11 02:29:23 +8964 8964 8965 896.4 1792.8000000000002 8964 1994-07-18 2024-10-11 02:29:24.000 1994-07-18 2024-10-11 02:29:24 +8966 8966 8967 896.6 1793.2 8966 1994-07-20 2024-10-11 02:29:26.000 1994-07-20 2024-10-11 02:29:26 +8967 8967 8968 896.7 1793.4 8967 1994-07-21 2024-10-11 02:29:27.000 1994-07-21 2024-10-11 02:29:27 +8968 8968 8969 896.8 1793.6000000000001 8968 1994-07-22 2024-10-11 02:29:28.000 1994-07-22 2024-10-11 02:29:28 +8969 8969 8970 896.9 1793.8000000000002 8969 1994-07-23 2024-10-11 02:29:29.000 1994-07-23 2024-10-11 02:29:29 +8971 8971 8972 897.1 1794.2 8971 1994-07-25 2024-10-11 02:29:31.000 1994-07-25 2024-10-11 02:29:31 +8972 8972 8973 897.2 1794.4 8972 1994-07-26 2024-10-11 02:29:32.000 1994-07-26 2024-10-11 02:29:32 +8973 8973 8974 897.3 1794.6000000000001 8973 1994-07-27 2024-10-11 02:29:33.000 1994-07-27 2024-10-11 02:29:33 +8974 8974 8975 897.4 1794.8000000000002 8974 1994-07-28 2024-10-11 02:29:34.000 1994-07-28 2024-10-11 02:29:34 +8976 8976 8977 897.6 1795.2 8976 1994-07-30 2024-10-11 02:29:36.000 1994-07-30 2024-10-11 02:29:36 +8977 8977 8978 897.7 1795.4 8977 1994-07-31 2024-10-11 02:29:37.000 1994-07-31 2024-10-11 02:29:37 +8978 8978 8979 897.8 1795.6000000000001 8978 1994-08-01 2024-10-11 02:29:38.000 1994-08-01 2024-10-11 02:29:38 +8979 8979 8980 897.9 1795.8000000000002 8979 1994-08-02 2024-10-11 02:29:39.000 1994-08-02 2024-10-11 02:29:39 +8981 8981 8982 898.1 1796.2 8981 1994-08-04 2024-10-11 02:29:41.000 1994-08-04 2024-10-11 02:29:41 +8982 8982 8983 898.2 1796.4 8982 1994-08-05 2024-10-11 02:29:42.000 1994-08-05 2024-10-11 02:29:42 +8983 8983 8984 898.3 1796.6000000000001 8983 1994-08-06 2024-10-11 02:29:43.000 1994-08-06 2024-10-11 02:29:43 +8984 8984 8985 898.4 1796.8000000000002 8984 1994-08-07 2024-10-11 02:29:44.000 1994-08-07 2024-10-11 02:29:44 +8986 8986 8987 898.6 1797.2 8986 1994-08-09 2024-10-11 02:29:46.000 1994-08-09 2024-10-11 02:29:46 +8987 8987 8988 898.7 1797.4 8987 1994-08-10 2024-10-11 02:29:47.000 1994-08-10 2024-10-11 02:29:47 +8988 8988 8989 898.8 1797.6000000000001 8988 1994-08-11 2024-10-11 02:29:48.000 1994-08-11 2024-10-11 02:29:48 +8989 8989 8990 898.9 1797.8000000000002 8989 1994-08-12 2024-10-11 02:29:49.000 1994-08-12 2024-10-11 02:29:49 +8991 8991 8992 899.1 1798.2 8991 1994-08-14 2024-10-11 02:29:51.000 1994-08-14 2024-10-11 02:29:51 +8992 8992 8993 899.2 1798.4 8992 1994-08-15 2024-10-11 02:29:52.000 1994-08-15 2024-10-11 02:29:52 +8993 8993 8994 899.3 1798.6000000000001 8993 1994-08-16 2024-10-11 02:29:53.000 1994-08-16 2024-10-11 02:29:53 +8994 8994 8995 899.4 1798.8000000000002 8994 1994-08-17 2024-10-11 02:29:54.000 1994-08-17 2024-10-11 02:29:54 +8996 8996 8997 899.6 1799.2 8996 1994-08-19 2024-10-11 02:29:56.000 1994-08-19 2024-10-11 02:29:56 +8997 8997 8998 899.7 1799.4 8997 1994-08-20 2024-10-11 02:29:57.000 1994-08-20 2024-10-11 02:29:57 +8998 8998 8999 899.8 1799.6000000000001 8998 1994-08-21 2024-10-11 02:29:58.000 1994-08-21 2024-10-11 02:29:58 +8999 8999 9000 899.9 1799.8000000000002 8999 1994-08-22 2024-10-11 02:29:59.000 1994-08-22 2024-10-11 02:29:59 +9001 9001 9002 900.1 1800.2 9001 1994-08-24 2024-10-11 02:30:01.000 1994-08-24 2024-10-11 02:30:01 +9002 9002 9003 900.2 1800.4 9002 1994-08-25 2024-10-11 02:30:02.000 1994-08-25 2024-10-11 02:30:02 +9003 9003 9004 900.3 1800.6000000000001 9003 1994-08-26 2024-10-11 02:30:03.000 1994-08-26 2024-10-11 02:30:03 +9004 9004 9005 900.4 1800.8000000000002 9004 1994-08-27 2024-10-11 02:30:04.000 1994-08-27 2024-10-11 02:30:04 +9006 9006 9007 900.6 1801.2 9006 1994-08-29 2024-10-11 02:30:06.000 1994-08-29 2024-10-11 02:30:06 +9007 9007 9008 900.7 1801.4 9007 1994-08-30 2024-10-11 02:30:07.000 1994-08-30 2024-10-11 02:30:07 +9008 9008 9009 900.8 1801.6000000000001 9008 1994-08-31 2024-10-11 02:30:08.000 1994-08-31 2024-10-11 02:30:08 +9009 9009 9010 900.9 1801.8000000000002 9009 1994-09-01 2024-10-11 02:30:09.000 1994-09-01 2024-10-11 02:30:09 +9011 9011 9012 901.1 1802.2 9011 1994-09-03 2024-10-11 02:30:11.000 1994-09-03 2024-10-11 02:30:11 +9012 9012 9013 901.2 1802.4 9012 1994-09-04 2024-10-11 02:30:12.000 1994-09-04 2024-10-11 02:30:12 +9013 9013 9014 901.3 1802.6000000000001 9013 1994-09-05 2024-10-11 02:30:13.000 1994-09-05 2024-10-11 02:30:13 +9014 9014 9015 901.4 1802.8000000000002 9014 1994-09-06 2024-10-11 02:30:14.000 1994-09-06 2024-10-11 02:30:14 +9016 9016 9017 901.6 1803.2 9016 1994-09-08 2024-10-11 02:30:16.000 1994-09-08 2024-10-11 02:30:16 +9017 9017 9018 901.7 1803.4 9017 1994-09-09 2024-10-11 02:30:17.000 1994-09-09 2024-10-11 02:30:17 +9018 9018 9019 901.8 1803.6000000000001 9018 1994-09-10 2024-10-11 02:30:18.000 1994-09-10 2024-10-11 02:30:18 +9019 9019 9020 901.9 1803.8000000000002 9019 1994-09-11 2024-10-11 02:30:19.000 1994-09-11 2024-10-11 02:30:19 +9021 9021 9022 902.1 1804.2 9021 1994-09-13 2024-10-11 02:30:21.000 1994-09-13 2024-10-11 02:30:21 +9022 9022 9023 902.2 1804.4 9022 1994-09-14 2024-10-11 02:30:22.000 1994-09-14 2024-10-11 02:30:22 +9023 9023 9024 902.3 1804.6000000000001 9023 1994-09-15 2024-10-11 02:30:23.000 1994-09-15 2024-10-11 02:30:23 +9024 9024 9025 902.4 1804.8000000000002 9024 1994-09-16 2024-10-11 02:30:24.000 1994-09-16 2024-10-11 02:30:24 +9026 9026 9027 902.6 1805.2 9026 1994-09-18 2024-10-11 02:30:26.000 1994-09-18 2024-10-11 02:30:26 +9027 9027 9028 902.7 1805.4 9027 1994-09-19 2024-10-11 02:30:27.000 1994-09-19 2024-10-11 02:30:27 +9028 9028 9029 902.8 1805.6000000000001 9028 1994-09-20 2024-10-11 02:30:28.000 1994-09-20 2024-10-11 02:30:28 +9029 9029 9030 902.9 1805.8000000000002 9029 1994-09-21 2024-10-11 02:30:29.000 1994-09-21 2024-10-11 02:30:29 +9031 9031 9032 903.1 1806.2 9031 1994-09-23 2024-10-11 02:30:31.000 1994-09-23 2024-10-11 02:30:31 +9032 9032 9033 903.2 1806.4 9032 1994-09-24 2024-10-11 02:30:32.000 1994-09-24 2024-10-11 02:30:32 +9033 9033 9034 903.3 1806.6000000000001 9033 1994-09-25 2024-10-11 02:30:33.000 1994-09-25 2024-10-11 02:30:33 +9034 9034 9035 903.4 1806.8000000000002 9034 1994-09-26 2024-10-11 02:30:34.000 1994-09-26 2024-10-11 02:30:34 +9036 9036 9037 903.6 1807.2 9036 1994-09-28 2024-10-11 02:30:36.000 1994-09-28 2024-10-11 02:30:36 +9037 9037 9038 903.7 1807.4 9037 1994-09-29 2024-10-11 02:30:37.000 1994-09-29 2024-10-11 02:30:37 +9038 9038 9039 903.8 1807.6000000000001 9038 1994-09-30 2024-10-11 02:30:38.000 1994-09-30 2024-10-11 02:30:38 +9039 9039 9040 903.9 1807.8000000000002 9039 1994-10-01 2024-10-11 02:30:39.000 1994-10-01 2024-10-11 02:30:39 +9041 9041 9042 904.1 1808.2 9041 1994-10-03 2024-10-11 02:30:41.000 1994-10-03 2024-10-11 02:30:41 +9042 9042 9043 904.2 1808.4 9042 1994-10-04 2024-10-11 02:30:42.000 1994-10-04 2024-10-11 02:30:42 +9043 9043 9044 904.3 1808.6000000000001 9043 1994-10-05 2024-10-11 02:30:43.000 1994-10-05 2024-10-11 02:30:43 +9044 9044 9045 904.4 1808.8000000000002 9044 1994-10-06 2024-10-11 02:30:44.000 1994-10-06 2024-10-11 02:30:44 +9046 9046 9047 904.6 1809.2 9046 1994-10-08 2024-10-11 02:30:46.000 1994-10-08 2024-10-11 02:30:46 +9047 9047 9048 904.7 1809.4 9047 1994-10-09 2024-10-11 02:30:47.000 1994-10-09 2024-10-11 02:30:47 +9048 9048 9049 904.8 1809.6000000000001 9048 1994-10-10 2024-10-11 02:30:48.000 1994-10-10 2024-10-11 02:30:48 +9049 9049 9050 904.9 1809.8000000000002 9049 1994-10-11 2024-10-11 02:30:49.000 1994-10-11 2024-10-11 02:30:49 +9051 9051 9052 905.1 1810.2 9051 1994-10-13 2024-10-11 02:30:51.000 1994-10-13 2024-10-11 02:30:51 +9052 9052 9053 905.2 1810.4 9052 1994-10-14 2024-10-11 02:30:52.000 1994-10-14 2024-10-11 02:30:52 +9053 9053 9054 905.3 1810.6000000000001 9053 1994-10-15 2024-10-11 02:30:53.000 1994-10-15 2024-10-11 02:30:53 +9054 9054 9055 905.4 1810.8000000000002 9054 1994-10-16 2024-10-11 02:30:54.000 1994-10-16 2024-10-11 02:30:54 +9056 9056 9057 905.6 1811.2 9056 1994-10-18 2024-10-11 02:30:56.000 1994-10-18 2024-10-11 02:30:56 +9057 9057 9058 905.7 1811.4 9057 1994-10-19 2024-10-11 02:30:57.000 1994-10-19 2024-10-11 02:30:57 +9058 9058 9059 905.8 1811.6000000000001 9058 1994-10-20 2024-10-11 02:30:58.000 1994-10-20 2024-10-11 02:30:58 +9059 9059 9060 905.9 1811.8000000000002 9059 1994-10-21 2024-10-11 02:30:59.000 1994-10-21 2024-10-11 02:30:59 +9061 9061 9062 906.1 1812.2 9061 1994-10-23 2024-10-11 02:31:01.000 1994-10-23 2024-10-11 02:31:01 +9062 9062 9063 906.2 1812.4 9062 1994-10-24 2024-10-11 02:31:02.000 1994-10-24 2024-10-11 02:31:02 +9063 9063 9064 906.3 1812.6000000000001 9063 1994-10-25 2024-10-11 02:31:03.000 1994-10-25 2024-10-11 02:31:03 +9064 9064 9065 906.4 1812.8000000000002 9064 1994-10-26 2024-10-11 02:31:04.000 1994-10-26 2024-10-11 02:31:04 +9066 9066 9067 906.6 1813.2 9066 1994-10-28 2024-10-11 02:31:06.000 1994-10-28 2024-10-11 02:31:06 +9067 9067 9068 906.7 1813.4 9067 1994-10-29 2024-10-11 02:31:07.000 1994-10-29 2024-10-11 02:31:07 +9068 9068 9069 906.8 1813.6000000000001 9068 1994-10-30 2024-10-11 02:31:08.000 1994-10-30 2024-10-11 02:31:08 +9069 9069 9070 906.9 1813.8000000000002 9069 1994-10-31 2024-10-11 02:31:09.000 1994-10-31 2024-10-11 02:31:09 +9071 9071 9072 907.1 1814.2 9071 1994-11-02 2024-10-11 02:31:11.000 1994-11-02 2024-10-11 02:31:11 +9072 9072 9073 907.2 1814.4 9072 1994-11-03 2024-10-11 02:31:12.000 1994-11-03 2024-10-11 02:31:12 +9073 9073 9074 907.3 1814.6000000000001 9073 1994-11-04 2024-10-11 02:31:13.000 1994-11-04 2024-10-11 02:31:13 +9074 9074 9075 907.4 1814.8000000000002 9074 1994-11-05 2024-10-11 02:31:14.000 1994-11-05 2024-10-11 02:31:14 +9076 9076 9077 907.6 1815.2 9076 1994-11-07 2024-10-11 02:31:16.000 1994-11-07 2024-10-11 02:31:16 +9077 9077 9078 907.7 1815.4 9077 1994-11-08 2024-10-11 02:31:17.000 1994-11-08 2024-10-11 02:31:17 +9078 9078 9079 907.8 1815.6000000000001 9078 1994-11-09 2024-10-11 02:31:18.000 1994-11-09 2024-10-11 02:31:18 +9079 9079 9080 907.9 1815.8000000000002 9079 1994-11-10 2024-10-11 02:31:19.000 1994-11-10 2024-10-11 02:31:19 +9081 9081 9082 908.1 1816.2 9081 1994-11-12 2024-10-11 02:31:21.000 1994-11-12 2024-10-11 02:31:21 +9082 9082 9083 908.2 1816.4 9082 1994-11-13 2024-10-11 02:31:22.000 1994-11-13 2024-10-11 02:31:22 +9083 9083 9084 908.3 1816.6000000000001 9083 1994-11-14 2024-10-11 02:31:23.000 1994-11-14 2024-10-11 02:31:23 +9084 9084 9085 908.4 1816.8000000000002 9084 1994-11-15 2024-10-11 02:31:24.000 1994-11-15 2024-10-11 02:31:24 +9086 9086 9087 908.6 1817.2 9086 1994-11-17 2024-10-11 02:31:26.000 1994-11-17 2024-10-11 02:31:26 +9087 9087 9088 908.7 1817.4 9087 1994-11-18 2024-10-11 02:31:27.000 1994-11-18 2024-10-11 02:31:27 +9088 9088 9089 908.8 1817.6000000000001 9088 1994-11-19 2024-10-11 02:31:28.000 1994-11-19 2024-10-11 02:31:28 +9089 9089 9090 908.9 1817.8000000000002 9089 1994-11-20 2024-10-11 02:31:29.000 1994-11-20 2024-10-11 02:31:29 +9091 9091 9092 909.1 1818.2 9091 1994-11-22 2024-10-11 02:31:31.000 1994-11-22 2024-10-11 02:31:31 +9092 9092 9093 909.2 1818.4 9092 1994-11-23 2024-10-11 02:31:32.000 1994-11-23 2024-10-11 02:31:32 +9093 9093 9094 909.3 1818.6000000000001 9093 1994-11-24 2024-10-11 02:31:33.000 1994-11-24 2024-10-11 02:31:33 +9094 9094 9095 909.4 1818.8000000000002 9094 1994-11-25 2024-10-11 02:31:34.000 1994-11-25 2024-10-11 02:31:34 +9096 9096 9097 909.6 1819.2 9096 1994-11-27 2024-10-11 02:31:36.000 1994-11-27 2024-10-11 02:31:36 +9097 9097 9098 909.7 1819.4 9097 1994-11-28 2024-10-11 02:31:37.000 1994-11-28 2024-10-11 02:31:37 +9098 9098 9099 909.8 1819.6000000000001 9098 1994-11-29 2024-10-11 02:31:38.000 1994-11-29 2024-10-11 02:31:38 +9099 9099 9100 909.9 1819.8000000000002 9099 1994-11-30 2024-10-11 02:31:39.000 1994-11-30 2024-10-11 02:31:39 +9101 9101 9102 910.1 1820.2 9101 1994-12-02 2024-10-11 02:31:41.000 1994-12-02 2024-10-11 02:31:41 +9102 9102 9103 910.2 1820.4 9102 1994-12-03 2024-10-11 02:31:42.000 1994-12-03 2024-10-11 02:31:42 +9103 9103 9104 910.3 1820.6000000000001 9103 1994-12-04 2024-10-11 02:31:43.000 1994-12-04 2024-10-11 02:31:43 +9104 9104 9105 910.4 1820.8000000000002 9104 1994-12-05 2024-10-11 02:31:44.000 1994-12-05 2024-10-11 02:31:44 +9106 9106 9107 910.6 1821.2 9106 1994-12-07 2024-10-11 02:31:46.000 1994-12-07 2024-10-11 02:31:46 +9107 9107 9108 910.7 1821.4 9107 1994-12-08 2024-10-11 02:31:47.000 1994-12-08 2024-10-11 02:31:47 +9108 9108 9109 910.8 1821.6000000000001 9108 1994-12-09 2024-10-11 02:31:48.000 1994-12-09 2024-10-11 02:31:48 +9109 9109 9110 910.9 1821.8000000000002 9109 1994-12-10 2024-10-11 02:31:49.000 1994-12-10 2024-10-11 02:31:49 +9111 9111 9112 911.1 1822.2 9111 1994-12-12 2024-10-11 02:31:51.000 1994-12-12 2024-10-11 02:31:51 +9112 9112 9113 911.2 1822.4 9112 1994-12-13 2024-10-11 02:31:52.000 1994-12-13 2024-10-11 02:31:52 +9113 9113 9114 911.3 1822.6000000000001 9113 1994-12-14 2024-10-11 02:31:53.000 1994-12-14 2024-10-11 02:31:53 +9114 9114 9115 911.4 1822.8000000000002 9114 1994-12-15 2024-10-11 02:31:54.000 1994-12-15 2024-10-11 02:31:54 +9116 9116 9117 911.6 1823.2 9116 1994-12-17 2024-10-11 02:31:56.000 1994-12-17 2024-10-11 02:31:56 +9117 9117 9118 911.7 1823.4 9117 1994-12-18 2024-10-11 02:31:57.000 1994-12-18 2024-10-11 02:31:57 +9118 9118 9119 911.8 1823.6000000000001 9118 1994-12-19 2024-10-11 02:31:58.000 1994-12-19 2024-10-11 02:31:58 +9119 9119 9120 911.9 1823.8000000000002 9119 1994-12-20 2024-10-11 02:31:59.000 1994-12-20 2024-10-11 02:31:59 +9121 9121 9122 912.1 1824.2 9121 1994-12-22 2024-10-11 02:32:01.000 1994-12-22 2024-10-11 02:32:01 +9122 9122 9123 912.2 1824.4 9122 1994-12-23 2024-10-11 02:32:02.000 1994-12-23 2024-10-11 02:32:02 +9123 9123 9124 912.3 1824.6000000000001 9123 1994-12-24 2024-10-11 02:32:03.000 1994-12-24 2024-10-11 02:32:03 +9124 9124 9125 912.4 1824.8000000000002 9124 1994-12-25 2024-10-11 02:32:04.000 1994-12-25 2024-10-11 02:32:04 +9126 9126 9127 912.6 1825.2 9126 1994-12-27 2024-10-11 02:32:06.000 1994-12-27 2024-10-11 02:32:06 +9127 9127 9128 912.7 1825.4 9127 1994-12-28 2024-10-11 02:32:07.000 1994-12-28 2024-10-11 02:32:07 +9128 9128 9129 912.8 1825.6000000000001 9128 1994-12-29 2024-10-11 02:32:08.000 1994-12-29 2024-10-11 02:32:08 +9129 9129 9130 912.9 1825.8000000000002 9129 1994-12-30 2024-10-11 02:32:09.000 1994-12-30 2024-10-11 02:32:09 +9131 9131 9132 913.1 1826.2 9131 1995-01-01 2024-10-11 02:32:11.000 1995-01-01 2024-10-11 02:32:11 +9132 9132 9133 913.2 1826.4 9132 1995-01-02 2024-10-11 02:32:12.000 1995-01-02 2024-10-11 02:32:12 +9133 9133 9134 913.3 1826.6000000000001 9133 1995-01-03 2024-10-11 02:32:13.000 1995-01-03 2024-10-11 02:32:13 +9134 9134 9135 913.4 1826.8000000000002 9134 1995-01-04 2024-10-11 02:32:14.000 1995-01-04 2024-10-11 02:32:14 +9136 9136 9137 913.6 1827.2 9136 1995-01-06 2024-10-11 02:32:16.000 1995-01-06 2024-10-11 02:32:16 +9137 9137 9138 913.7 1827.4 9137 1995-01-07 2024-10-11 02:32:17.000 1995-01-07 2024-10-11 02:32:17 +9138 9138 9139 913.8 1827.6000000000001 9138 1995-01-08 2024-10-11 02:32:18.000 1995-01-08 2024-10-11 02:32:18 +9139 9139 9140 913.9 1827.8000000000002 9139 1995-01-09 2024-10-11 02:32:19.000 1995-01-09 2024-10-11 02:32:19 +9141 9141 9142 914.1 1828.2 9141 1995-01-11 2024-10-11 02:32:21.000 1995-01-11 2024-10-11 02:32:21 +9142 9142 9143 914.2 1828.4 9142 1995-01-12 2024-10-11 02:32:22.000 1995-01-12 2024-10-11 02:32:22 +9143 9143 9144 914.3 1828.6000000000001 9143 1995-01-13 2024-10-11 02:32:23.000 1995-01-13 2024-10-11 02:32:23 +9144 9144 9145 914.4 1828.8000000000002 9144 1995-01-14 2024-10-11 02:32:24.000 1995-01-14 2024-10-11 02:32:24 +9146 9146 9147 914.6 1829.2 9146 1995-01-16 2024-10-11 02:32:26.000 1995-01-16 2024-10-11 02:32:26 +9147 9147 9148 914.7 1829.4 9147 1995-01-17 2024-10-11 02:32:27.000 1995-01-17 2024-10-11 02:32:27 +9148 9148 9149 914.8 1829.6000000000001 9148 1995-01-18 2024-10-11 02:32:28.000 1995-01-18 2024-10-11 02:32:28 +9149 9149 9150 914.9 1829.8000000000002 9149 1995-01-19 2024-10-11 02:32:29.000 1995-01-19 2024-10-11 02:32:29 +9151 9151 9152 915.1 1830.2 9151 1995-01-21 2024-10-11 02:32:31.000 1995-01-21 2024-10-11 02:32:31 +9152 9152 9153 915.2 1830.4 9152 1995-01-22 2024-10-11 02:32:32.000 1995-01-22 2024-10-11 02:32:32 +9153 9153 9154 915.3 1830.6000000000001 9153 1995-01-23 2024-10-11 02:32:33.000 1995-01-23 2024-10-11 02:32:33 +9154 9154 9155 915.4 1830.8000000000002 9154 1995-01-24 2024-10-11 02:32:34.000 1995-01-24 2024-10-11 02:32:34 +9156 9156 9157 915.6 1831.2 9156 1995-01-26 2024-10-11 02:32:36.000 1995-01-26 2024-10-11 02:32:36 +9157 9157 9158 915.7 1831.4 9157 1995-01-27 2024-10-11 02:32:37.000 1995-01-27 2024-10-11 02:32:37 +9158 9158 9159 915.8 1831.6000000000001 9158 1995-01-28 2024-10-11 02:32:38.000 1995-01-28 2024-10-11 02:32:38 +9159 9159 9160 915.9 1831.8000000000002 9159 1995-01-29 2024-10-11 02:32:39.000 1995-01-29 2024-10-11 02:32:39 +9161 9161 9162 916.1 1832.2 9161 1995-01-31 2024-10-11 02:32:41.000 1995-01-31 2024-10-11 02:32:41 +9162 9162 9163 916.2 1832.4 9162 1995-02-01 2024-10-11 02:32:42.000 1995-02-01 2024-10-11 02:32:42 +9163 9163 9164 916.3 1832.6000000000001 9163 1995-02-02 2024-10-11 02:32:43.000 1995-02-02 2024-10-11 02:32:43 +9164 9164 9165 916.4 1832.8000000000002 9164 1995-02-03 2024-10-11 02:32:44.000 1995-02-03 2024-10-11 02:32:44 +9166 9166 9167 916.6 1833.2 9166 1995-02-05 2024-10-11 02:32:46.000 1995-02-05 2024-10-11 02:32:46 +9167 9167 9168 916.7 1833.4 9167 1995-02-06 2024-10-11 02:32:47.000 1995-02-06 2024-10-11 02:32:47 +9168 9168 9169 916.8 1833.6000000000001 9168 1995-02-07 2024-10-11 02:32:48.000 1995-02-07 2024-10-11 02:32:48 +9169 9169 9170 916.9 1833.8000000000002 9169 1995-02-08 2024-10-11 02:32:49.000 1995-02-08 2024-10-11 02:32:49 +9171 9171 9172 917.1 1834.2 9171 1995-02-10 2024-10-11 02:32:51.000 1995-02-10 2024-10-11 02:32:51 +9172 9172 9173 917.2 1834.4 9172 1995-02-11 2024-10-11 02:32:52.000 1995-02-11 2024-10-11 02:32:52 +9173 9173 9174 917.3 1834.6000000000001 9173 1995-02-12 2024-10-11 02:32:53.000 1995-02-12 2024-10-11 02:32:53 +9174 9174 9175 917.4 1834.8000000000002 9174 1995-02-13 2024-10-11 02:32:54.000 1995-02-13 2024-10-11 02:32:54 +9176 9176 9177 917.6 1835.2 9176 1995-02-15 2024-10-11 02:32:56.000 1995-02-15 2024-10-11 02:32:56 +9177 9177 9178 917.7 1835.4 9177 1995-02-16 2024-10-11 02:32:57.000 1995-02-16 2024-10-11 02:32:57 +9178 9178 9179 917.8 1835.6000000000001 9178 1995-02-17 2024-10-11 02:32:58.000 1995-02-17 2024-10-11 02:32:58 +9179 9179 9180 917.9 1835.8000000000002 9179 1995-02-18 2024-10-11 02:32:59.000 1995-02-18 2024-10-11 02:32:59 +9181 9181 9182 918.1 1836.2 9181 1995-02-20 2024-10-11 02:33:01.000 1995-02-20 2024-10-11 02:33:01 +9182 9182 9183 918.2 1836.4 9182 1995-02-21 2024-10-11 02:33:02.000 1995-02-21 2024-10-11 02:33:02 +9183 9183 9184 918.3 1836.6000000000001 9183 1995-02-22 2024-10-11 02:33:03.000 1995-02-22 2024-10-11 02:33:03 +9184 9184 9185 918.4 1836.8000000000002 9184 1995-02-23 2024-10-11 02:33:04.000 1995-02-23 2024-10-11 02:33:04 +9186 9186 9187 918.6 1837.2 9186 1995-02-25 2024-10-11 02:33:06.000 1995-02-25 2024-10-11 02:33:06 +9187 9187 9188 918.7 1837.4 9187 1995-02-26 2024-10-11 02:33:07.000 1995-02-26 2024-10-11 02:33:07 +9188 9188 9189 918.8 1837.6000000000001 9188 1995-02-27 2024-10-11 02:33:08.000 1995-02-27 2024-10-11 02:33:08 +9189 9189 9190 918.9 1837.8000000000002 9189 1995-02-28 2024-10-11 02:33:09.000 1995-02-28 2024-10-11 02:33:09 +9191 9191 9192 919.1 1838.2 9191 1995-03-02 2024-10-11 02:33:11.000 1995-03-02 2024-10-11 02:33:11 +9192 9192 9193 919.2 1838.4 9192 1995-03-03 2024-10-11 02:33:12.000 1995-03-03 2024-10-11 02:33:12 +9193 9193 9194 919.3 1838.6000000000001 9193 1995-03-04 2024-10-11 02:33:13.000 1995-03-04 2024-10-11 02:33:13 +9194 9194 9195 919.4 1838.8000000000002 9194 1995-03-05 2024-10-11 02:33:14.000 1995-03-05 2024-10-11 02:33:14 +9196 9196 9197 919.6 1839.2 9196 1995-03-07 2024-10-11 02:33:16.000 1995-03-07 2024-10-11 02:33:16 +9197 9197 9198 919.7 1839.4 9197 1995-03-08 2024-10-11 02:33:17.000 1995-03-08 2024-10-11 02:33:17 +9198 9198 9199 919.8 1839.6000000000001 9198 1995-03-09 2024-10-11 02:33:18.000 1995-03-09 2024-10-11 02:33:18 +9199 9199 9200 919.9 1839.8000000000002 9199 1995-03-10 2024-10-11 02:33:19.000 1995-03-10 2024-10-11 02:33:19 +9201 9201 9202 920.1 1840.2 9201 1995-03-12 2024-10-11 02:33:21.000 1995-03-12 2024-10-11 02:33:21 +9202 9202 9203 920.2 1840.4 9202 1995-03-13 2024-10-11 02:33:22.000 1995-03-13 2024-10-11 02:33:22 +9203 9203 9204 920.3 1840.6000000000001 9203 1995-03-14 2024-10-11 02:33:23.000 1995-03-14 2024-10-11 02:33:23 +9204 9204 9205 920.4 1840.8000000000002 9204 1995-03-15 2024-10-11 02:33:24.000 1995-03-15 2024-10-11 02:33:24 +9206 9206 9207 920.6 1841.2 9206 1995-03-17 2024-10-11 02:33:26.000 1995-03-17 2024-10-11 02:33:26 +9207 9207 9208 920.7 1841.4 9207 1995-03-18 2024-10-11 02:33:27.000 1995-03-18 2024-10-11 02:33:27 +9208 9208 9209 920.8 1841.6000000000001 9208 1995-03-19 2024-10-11 02:33:28.000 1995-03-19 2024-10-11 02:33:28 +9209 9209 9210 920.9 1841.8000000000002 9209 1995-03-20 2024-10-11 02:33:29.000 1995-03-20 2024-10-11 02:33:29 +9211 9211 9212 921.1 1842.2 9211 1995-03-22 2024-10-11 02:33:31.000 1995-03-22 2024-10-11 02:33:31 +9212 9212 9213 921.2 1842.4 9212 1995-03-23 2024-10-11 02:33:32.000 1995-03-23 2024-10-11 02:33:32 +9213 9213 9214 921.3 1842.6000000000001 9213 1995-03-24 2024-10-11 02:33:33.000 1995-03-24 2024-10-11 02:33:33 +9214 9214 9215 921.4 1842.8000000000002 9214 1995-03-25 2024-10-11 02:33:34.000 1995-03-25 2024-10-11 02:33:34 +9216 9216 9217 921.6 1843.2 9216 1995-03-27 2024-10-11 02:33:36.000 1995-03-27 2024-10-11 02:33:36 +9217 9217 9218 921.7 1843.4 9217 1995-03-28 2024-10-11 02:33:37.000 1995-03-28 2024-10-11 02:33:37 +9218 9218 9219 921.8 1843.6000000000001 9218 1995-03-29 2024-10-11 02:33:38.000 1995-03-29 2024-10-11 02:33:38 +9219 9219 9220 921.9 1843.8000000000002 9219 1995-03-30 2024-10-11 02:33:39.000 1995-03-30 2024-10-11 02:33:39 +9221 9221 9222 922.1 1844.2 9221 1995-04-01 2024-10-11 02:33:41.000 1995-04-01 2024-10-11 02:33:41 +9222 9222 9223 922.2 1844.4 9222 1995-04-02 2024-10-11 02:33:42.000 1995-04-02 2024-10-11 02:33:42 +9223 9223 9224 922.3 1844.6000000000001 9223 1995-04-03 2024-10-11 02:33:43.000 1995-04-03 2024-10-11 02:33:43 +9224 9224 9225 922.4 1844.8000000000002 9224 1995-04-04 2024-10-11 02:33:44.000 1995-04-04 2024-10-11 02:33:44 +9226 9226 9227 922.6 1845.2 9226 1995-04-06 2024-10-11 02:33:46.000 1995-04-06 2024-10-11 02:33:46 +9227 9227 9228 922.7 1845.4 9227 1995-04-07 2024-10-11 02:33:47.000 1995-04-07 2024-10-11 02:33:47 +9228 9228 9229 922.8 1845.6000000000001 9228 1995-04-08 2024-10-11 02:33:48.000 1995-04-08 2024-10-11 02:33:48 +9229 9229 9230 922.9 1845.8000000000002 9229 1995-04-09 2024-10-11 02:33:49.000 1995-04-09 2024-10-11 02:33:49 +9231 9231 9232 923.1 1846.2 9231 1995-04-11 2024-10-11 02:33:51.000 1995-04-11 2024-10-11 02:33:51 +9232 9232 9233 923.2 1846.4 9232 1995-04-12 2024-10-11 02:33:52.000 1995-04-12 2024-10-11 02:33:52 +9233 9233 9234 923.3 1846.6000000000001 9233 1995-04-13 2024-10-11 02:33:53.000 1995-04-13 2024-10-11 02:33:53 +9234 9234 9235 923.4 1846.8000000000002 9234 1995-04-14 2024-10-11 02:33:54.000 1995-04-14 2024-10-11 02:33:54 +9236 9236 9237 923.6 1847.2 9236 1995-04-16 2024-10-11 02:33:56.000 1995-04-16 2024-10-11 02:33:56 +9237 9237 9238 923.7 1847.4 9237 1995-04-17 2024-10-11 02:33:57.000 1995-04-17 2024-10-11 02:33:57 +9238 9238 9239 923.8 1847.6000000000001 9238 1995-04-18 2024-10-11 02:33:58.000 1995-04-18 2024-10-11 02:33:58 +9239 9239 9240 923.9 1847.8000000000002 9239 1995-04-19 2024-10-11 02:33:59.000 1995-04-19 2024-10-11 02:33:59 +9241 9241 9242 924.1 1848.2 9241 1995-04-21 2024-10-11 02:34:01.000 1995-04-21 2024-10-11 02:34:01 +9242 9242 9243 924.2 1848.4 9242 1995-04-22 2024-10-11 02:34:02.000 1995-04-22 2024-10-11 02:34:02 +9243 9243 9244 924.3 1848.6000000000001 9243 1995-04-23 2024-10-11 02:34:03.000 1995-04-23 2024-10-11 02:34:03 +9244 9244 9245 924.4 1848.8000000000002 9244 1995-04-24 2024-10-11 02:34:04.000 1995-04-24 2024-10-11 02:34:04 +9246 9246 9247 924.6 1849.2 9246 1995-04-26 2024-10-11 02:34:06.000 1995-04-26 2024-10-11 02:34:06 +9247 9247 9248 924.7 1849.4 9247 1995-04-27 2024-10-11 02:34:07.000 1995-04-27 2024-10-11 02:34:07 +9248 9248 9249 924.8 1849.6000000000001 9248 1995-04-28 2024-10-11 02:34:08.000 1995-04-28 2024-10-11 02:34:08 +9249 9249 9250 924.9 1849.8000000000002 9249 1995-04-29 2024-10-11 02:34:09.000 1995-04-29 2024-10-11 02:34:09 +9251 9251 9252 925.1 1850.2 9251 1995-05-01 2024-10-11 02:34:11.000 1995-05-01 2024-10-11 02:34:11 +9252 9252 9253 925.2 1850.4 9252 1995-05-02 2024-10-11 02:34:12.000 1995-05-02 2024-10-11 02:34:12 +9253 9253 9254 925.3 1850.6000000000001 9253 1995-05-03 2024-10-11 02:34:13.000 1995-05-03 2024-10-11 02:34:13 +9254 9254 9255 925.4 1850.8000000000002 9254 1995-05-04 2024-10-11 02:34:14.000 1995-05-04 2024-10-11 02:34:14 +9256 9256 9257 925.6 1851.2 9256 1995-05-06 2024-10-11 02:34:16.000 1995-05-06 2024-10-11 02:34:16 +9257 9257 9258 925.7 1851.4 9257 1995-05-07 2024-10-11 02:34:17.000 1995-05-07 2024-10-11 02:34:17 +9258 9258 9259 925.8 1851.6000000000001 9258 1995-05-08 2024-10-11 02:34:18.000 1995-05-08 2024-10-11 02:34:18 +9259 9259 9260 925.9 1851.8000000000002 9259 1995-05-09 2024-10-11 02:34:19.000 1995-05-09 2024-10-11 02:34:19 +9261 9261 9262 926.1 1852.2 9261 1995-05-11 2024-10-11 02:34:21.000 1995-05-11 2024-10-11 02:34:21 +9262 9262 9263 926.2 1852.4 9262 1995-05-12 2024-10-11 02:34:22.000 1995-05-12 2024-10-11 02:34:22 +9263 9263 9264 926.3 1852.6000000000001 9263 1995-05-13 2024-10-11 02:34:23.000 1995-05-13 2024-10-11 02:34:23 +9264 9264 9265 926.4 1852.8000000000002 9264 1995-05-14 2024-10-11 02:34:24.000 1995-05-14 2024-10-11 02:34:24 +9266 9266 9267 926.6 1853.2 9266 1995-05-16 2024-10-11 02:34:26.000 1995-05-16 2024-10-11 02:34:26 +9267 9267 9268 926.7 1853.4 9267 1995-05-17 2024-10-11 02:34:27.000 1995-05-17 2024-10-11 02:34:27 +9268 9268 9269 926.8 1853.6000000000001 9268 1995-05-18 2024-10-11 02:34:28.000 1995-05-18 2024-10-11 02:34:28 +9269 9269 9270 926.9 1853.8000000000002 9269 1995-05-19 2024-10-11 02:34:29.000 1995-05-19 2024-10-11 02:34:29 +9271 9271 9272 927.1 1854.2 9271 1995-05-21 2024-10-11 02:34:31.000 1995-05-21 2024-10-11 02:34:31 +9272 9272 9273 927.2 1854.4 9272 1995-05-22 2024-10-11 02:34:32.000 1995-05-22 2024-10-11 02:34:32 +9273 9273 9274 927.3 1854.6000000000001 9273 1995-05-23 2024-10-11 02:34:33.000 1995-05-23 2024-10-11 02:34:33 +9274 9274 9275 927.4 1854.8000000000002 9274 1995-05-24 2024-10-11 02:34:34.000 1995-05-24 2024-10-11 02:34:34 +9276 9276 9277 927.6 1855.2 9276 1995-05-26 2024-10-11 02:34:36.000 1995-05-26 2024-10-11 02:34:36 +9277 9277 9278 927.7 1855.4 9277 1995-05-27 2024-10-11 02:34:37.000 1995-05-27 2024-10-11 02:34:37 +9278 9278 9279 927.8 1855.6000000000001 9278 1995-05-28 2024-10-11 02:34:38.000 1995-05-28 2024-10-11 02:34:38 +9279 9279 9280 927.9 1855.8000000000002 9279 1995-05-29 2024-10-11 02:34:39.000 1995-05-29 2024-10-11 02:34:39 +9281 9281 9282 928.1 1856.2 9281 1995-05-31 2024-10-11 02:34:41.000 1995-05-31 2024-10-11 02:34:41 +9282 9282 9283 928.2 1856.4 9282 1995-06-01 2024-10-11 02:34:42.000 1995-06-01 2024-10-11 02:34:42 +9283 9283 9284 928.3 1856.6000000000001 9283 1995-06-02 2024-10-11 02:34:43.000 1995-06-02 2024-10-11 02:34:43 +9284 9284 9285 928.4 1856.8000000000002 9284 1995-06-03 2024-10-11 02:34:44.000 1995-06-03 2024-10-11 02:34:44 +9286 9286 9287 928.6 1857.2 9286 1995-06-05 2024-10-11 02:34:46.000 1995-06-05 2024-10-11 02:34:46 +9287 9287 9288 928.7 1857.4 9287 1995-06-06 2024-10-11 02:34:47.000 1995-06-06 2024-10-11 02:34:47 +9288 9288 9289 928.8 1857.6000000000001 9288 1995-06-07 2024-10-11 02:34:48.000 1995-06-07 2024-10-11 02:34:48 +9289 9289 9290 928.9 1857.8000000000002 9289 1995-06-08 2024-10-11 02:34:49.000 1995-06-08 2024-10-11 02:34:49 +9291 9291 9292 929.1 1858.2 9291 1995-06-10 2024-10-11 02:34:51.000 1995-06-10 2024-10-11 02:34:51 +9292 9292 9293 929.2 1858.4 9292 1995-06-11 2024-10-11 02:34:52.000 1995-06-11 2024-10-11 02:34:52 +9293 9293 9294 929.3 1858.6000000000001 9293 1995-06-12 2024-10-11 02:34:53.000 1995-06-12 2024-10-11 02:34:53 +9294 9294 9295 929.4 1858.8000000000002 9294 1995-06-13 2024-10-11 02:34:54.000 1995-06-13 2024-10-11 02:34:54 +9296 9296 9297 929.6 1859.2 9296 1995-06-15 2024-10-11 02:34:56.000 1995-06-15 2024-10-11 02:34:56 +9297 9297 9298 929.7 1859.4 9297 1995-06-16 2024-10-11 02:34:57.000 1995-06-16 2024-10-11 02:34:57 +9298 9298 9299 929.8 1859.6000000000001 9298 1995-06-17 2024-10-11 02:34:58.000 1995-06-17 2024-10-11 02:34:58 +9299 9299 9300 929.9 1859.8000000000002 9299 1995-06-18 2024-10-11 02:34:59.000 1995-06-18 2024-10-11 02:34:59 +9301 9301 9302 930.1 1860.2 9301 1995-06-20 2024-10-11 02:35:01.000 1995-06-20 2024-10-11 02:35:01 +9302 9302 9303 930.2 1860.4 9302 1995-06-21 2024-10-11 02:35:02.000 1995-06-21 2024-10-11 02:35:02 +9303 9303 9304 930.3 1860.6000000000001 9303 1995-06-22 2024-10-11 02:35:03.000 1995-06-22 2024-10-11 02:35:03 +9304 9304 9305 930.4 1860.8000000000002 9304 1995-06-23 2024-10-11 02:35:04.000 1995-06-23 2024-10-11 02:35:04 +9306 9306 9307 930.6 1861.2 9306 1995-06-25 2024-10-11 02:35:06.000 1995-06-25 2024-10-11 02:35:06 +9307 9307 9308 930.7 1861.4 9307 1995-06-26 2024-10-11 02:35:07.000 1995-06-26 2024-10-11 02:35:07 +9308 9308 9309 930.8 1861.6000000000001 9308 1995-06-27 2024-10-11 02:35:08.000 1995-06-27 2024-10-11 02:35:08 +9309 9309 9310 930.9 1861.8000000000002 9309 1995-06-28 2024-10-11 02:35:09.000 1995-06-28 2024-10-11 02:35:09 +9311 9311 9312 931.1 1862.2 9311 1995-06-30 2024-10-11 02:35:11.000 1995-06-30 2024-10-11 02:35:11 +9312 9312 9313 931.2 1862.4 9312 1995-07-01 2024-10-11 02:35:12.000 1995-07-01 2024-10-11 02:35:12 +9313 9313 9314 931.3 1862.6000000000001 9313 1995-07-02 2024-10-11 02:35:13.000 1995-07-02 2024-10-11 02:35:13 +9314 9314 9315 931.4 1862.8000000000002 9314 1995-07-03 2024-10-11 02:35:14.000 1995-07-03 2024-10-11 02:35:14 +9316 9316 9317 931.6 1863.2 9316 1995-07-05 2024-10-11 02:35:16.000 1995-07-05 2024-10-11 02:35:16 +9317 9317 9318 931.7 1863.4 9317 1995-07-06 2024-10-11 02:35:17.000 1995-07-06 2024-10-11 02:35:17 +9318 9318 9319 931.8 1863.6000000000001 9318 1995-07-07 2024-10-11 02:35:18.000 1995-07-07 2024-10-11 02:35:18 +9319 9319 9320 931.9 1863.8000000000002 9319 1995-07-08 2024-10-11 02:35:19.000 1995-07-08 2024-10-11 02:35:19 +9321 9321 9322 932.1 1864.2 9321 1995-07-10 2024-10-11 02:35:21.000 1995-07-10 2024-10-11 02:35:21 +9322 9322 9323 932.2 1864.4 9322 1995-07-11 2024-10-11 02:35:22.000 1995-07-11 2024-10-11 02:35:22 +9323 9323 9324 932.3 1864.6000000000001 9323 1995-07-12 2024-10-11 02:35:23.000 1995-07-12 2024-10-11 02:35:23 +9324 9324 9325 932.4 1864.8000000000002 9324 1995-07-13 2024-10-11 02:35:24.000 1995-07-13 2024-10-11 02:35:24 +9326 9326 9327 932.6 1865.2 9326 1995-07-15 2024-10-11 02:35:26.000 1995-07-15 2024-10-11 02:35:26 +9327 9327 9328 932.7 1865.4 9327 1995-07-16 2024-10-11 02:35:27.000 1995-07-16 2024-10-11 02:35:27 +9328 9328 9329 932.8 1865.6000000000001 9328 1995-07-17 2024-10-11 02:35:28.000 1995-07-17 2024-10-11 02:35:28 +9329 9329 9330 932.9 1865.8000000000002 9329 1995-07-18 2024-10-11 02:35:29.000 1995-07-18 2024-10-11 02:35:29 +9331 9331 9332 933.1 1866.2 9331 1995-07-20 2024-10-11 02:35:31.000 1995-07-20 2024-10-11 02:35:31 +9332 9332 9333 933.2 1866.4 9332 1995-07-21 2024-10-11 02:35:32.000 1995-07-21 2024-10-11 02:35:32 +9333 9333 9334 933.3 1866.6000000000001 9333 1995-07-22 2024-10-11 02:35:33.000 1995-07-22 2024-10-11 02:35:33 +9334 9334 9335 933.4 1866.8000000000002 9334 1995-07-23 2024-10-11 02:35:34.000 1995-07-23 2024-10-11 02:35:34 +9336 9336 9337 933.6 1867.2 9336 1995-07-25 2024-10-11 02:35:36.000 1995-07-25 2024-10-11 02:35:36 +9337 9337 9338 933.7 1867.4 9337 1995-07-26 2024-10-11 02:35:37.000 1995-07-26 2024-10-11 02:35:37 +9338 9338 9339 933.8 1867.6000000000001 9338 1995-07-27 2024-10-11 02:35:38.000 1995-07-27 2024-10-11 02:35:38 +9339 9339 9340 933.9 1867.8000000000002 9339 1995-07-28 2024-10-11 02:35:39.000 1995-07-28 2024-10-11 02:35:39 +9341 9341 9342 934.1 1868.2 9341 1995-07-30 2024-10-11 02:35:41.000 1995-07-30 2024-10-11 02:35:41 +9342 9342 9343 934.2 1868.4 9342 1995-07-31 2024-10-11 02:35:42.000 1995-07-31 2024-10-11 02:35:42 +9343 9343 9344 934.3 1868.6000000000001 9343 1995-08-01 2024-10-11 02:35:43.000 1995-08-01 2024-10-11 02:35:43 +9344 9344 9345 934.4 1868.8000000000002 9344 1995-08-02 2024-10-11 02:35:44.000 1995-08-02 2024-10-11 02:35:44 +9346 9346 9347 934.6 1869.2 9346 1995-08-04 2024-10-11 02:35:46.000 1995-08-04 2024-10-11 02:35:46 +9347 9347 9348 934.7 1869.4 9347 1995-08-05 2024-10-11 02:35:47.000 1995-08-05 2024-10-11 02:35:47 +9348 9348 9349 934.8 1869.6000000000001 9348 1995-08-06 2024-10-11 02:35:48.000 1995-08-06 2024-10-11 02:35:48 +9349 9349 9350 934.9 1869.8000000000002 9349 1995-08-07 2024-10-11 02:35:49.000 1995-08-07 2024-10-11 02:35:49 +9351 9351 9352 935.1 1870.2 9351 1995-08-09 2024-10-11 02:35:51.000 1995-08-09 2024-10-11 02:35:51 +9352 9352 9353 935.2 1870.4 9352 1995-08-10 2024-10-11 02:35:52.000 1995-08-10 2024-10-11 02:35:52 +9353 9353 9354 935.3 1870.6000000000001 9353 1995-08-11 2024-10-11 02:35:53.000 1995-08-11 2024-10-11 02:35:53 +9354 9354 9355 935.4 1870.8000000000002 9354 1995-08-12 2024-10-11 02:35:54.000 1995-08-12 2024-10-11 02:35:54 +9356 9356 9357 935.6 1871.2 9356 1995-08-14 2024-10-11 02:35:56.000 1995-08-14 2024-10-11 02:35:56 +9357 9357 9358 935.7 1871.4 9357 1995-08-15 2024-10-11 02:35:57.000 1995-08-15 2024-10-11 02:35:57 +9358 9358 9359 935.8 1871.6000000000001 9358 1995-08-16 2024-10-11 02:35:58.000 1995-08-16 2024-10-11 02:35:58 +9359 9359 9360 935.9 1871.8000000000002 9359 1995-08-17 2024-10-11 02:35:59.000 1995-08-17 2024-10-11 02:35:59 +9361 9361 9362 936.1 1872.2 9361 1995-08-19 2024-10-11 02:36:01.000 1995-08-19 2024-10-11 02:36:01 +9362 9362 9363 936.2 1872.4 9362 1995-08-20 2024-10-11 02:36:02.000 1995-08-20 2024-10-11 02:36:02 +9363 9363 9364 936.3 1872.6000000000001 9363 1995-08-21 2024-10-11 02:36:03.000 1995-08-21 2024-10-11 02:36:03 +9364 9364 9365 936.4 1872.8000000000002 9364 1995-08-22 2024-10-11 02:36:04.000 1995-08-22 2024-10-11 02:36:04 +9366 9366 9367 936.6 1873.2 9366 1995-08-24 2024-10-11 02:36:06.000 1995-08-24 2024-10-11 02:36:06 +9367 9367 9368 936.7 1873.4 9367 1995-08-25 2024-10-11 02:36:07.000 1995-08-25 2024-10-11 02:36:07 +9368 9368 9369 936.8 1873.6000000000001 9368 1995-08-26 2024-10-11 02:36:08.000 1995-08-26 2024-10-11 02:36:08 +9369 9369 9370 936.9 1873.8000000000002 9369 1995-08-27 2024-10-11 02:36:09.000 1995-08-27 2024-10-11 02:36:09 +9371 9371 9372 937.1 1874.2 9371 1995-08-29 2024-10-11 02:36:11.000 1995-08-29 2024-10-11 02:36:11 +9372 9372 9373 937.2 1874.4 9372 1995-08-30 2024-10-11 02:36:12.000 1995-08-30 2024-10-11 02:36:12 +9373 9373 9374 937.3 1874.6000000000001 9373 1995-08-31 2024-10-11 02:36:13.000 1995-08-31 2024-10-11 02:36:13 +9374 9374 9375 937.4 1874.8000000000002 9374 1995-09-01 2024-10-11 02:36:14.000 1995-09-01 2024-10-11 02:36:14 +9376 9376 9377 937.6 1875.2 9376 1995-09-03 2024-10-11 02:36:16.000 1995-09-03 2024-10-11 02:36:16 +9377 9377 9378 937.7 1875.4 9377 1995-09-04 2024-10-11 02:36:17.000 1995-09-04 2024-10-11 02:36:17 +9378 9378 9379 937.8 1875.6000000000001 9378 1995-09-05 2024-10-11 02:36:18.000 1995-09-05 2024-10-11 02:36:18 +9379 9379 9380 937.9 1875.8000000000002 9379 1995-09-06 2024-10-11 02:36:19.000 1995-09-06 2024-10-11 02:36:19 +9381 9381 9382 938.1 1876.2 9381 1995-09-08 2024-10-11 02:36:21.000 1995-09-08 2024-10-11 02:36:21 +9382 9382 9383 938.2 1876.4 9382 1995-09-09 2024-10-11 02:36:22.000 1995-09-09 2024-10-11 02:36:22 +9383 9383 9384 938.3 1876.6000000000001 9383 1995-09-10 2024-10-11 02:36:23.000 1995-09-10 2024-10-11 02:36:23 +9384 9384 9385 938.4 1876.8000000000002 9384 1995-09-11 2024-10-11 02:36:24.000 1995-09-11 2024-10-11 02:36:24 +9386 9386 9387 938.6 1877.2 9386 1995-09-13 2024-10-11 02:36:26.000 1995-09-13 2024-10-11 02:36:26 +9387 9387 9388 938.7 1877.4 9387 1995-09-14 2024-10-11 02:36:27.000 1995-09-14 2024-10-11 02:36:27 +9388 9388 9389 938.8 1877.6000000000001 9388 1995-09-15 2024-10-11 02:36:28.000 1995-09-15 2024-10-11 02:36:28 +9389 9389 9390 938.9 1877.8000000000002 9389 1995-09-16 2024-10-11 02:36:29.000 1995-09-16 2024-10-11 02:36:29 +9391 9391 9392 939.1 1878.2 9391 1995-09-18 2024-10-11 02:36:31.000 1995-09-18 2024-10-11 02:36:31 +9392 9392 9393 939.2 1878.4 9392 1995-09-19 2024-10-11 02:36:32.000 1995-09-19 2024-10-11 02:36:32 +9393 9393 9394 939.3 1878.6000000000001 9393 1995-09-20 2024-10-11 02:36:33.000 1995-09-20 2024-10-11 02:36:33 +9394 9394 9395 939.4 1878.8000000000002 9394 1995-09-21 2024-10-11 02:36:34.000 1995-09-21 2024-10-11 02:36:34 +9396 9396 9397 939.6 1879.2 9396 1995-09-23 2024-10-11 02:36:36.000 1995-09-23 2024-10-11 02:36:36 +9397 9397 9398 939.7 1879.4 9397 1995-09-24 2024-10-11 02:36:37.000 1995-09-24 2024-10-11 02:36:37 +9398 9398 9399 939.8 1879.6000000000001 9398 1995-09-25 2024-10-11 02:36:38.000 1995-09-25 2024-10-11 02:36:38 +9399 9399 9400 939.9 1879.8000000000002 9399 1995-09-26 2024-10-11 02:36:39.000 1995-09-26 2024-10-11 02:36:39 +9401 9401 9402 940.1 1880.2 9401 1995-09-28 2024-10-11 02:36:41.000 1995-09-28 2024-10-11 02:36:41 +9402 9402 9403 940.2 1880.4 9402 1995-09-29 2024-10-11 02:36:42.000 1995-09-29 2024-10-11 02:36:42 +9403 9403 9404 940.3 1880.6000000000001 9403 1995-09-30 2024-10-11 02:36:43.000 1995-09-30 2024-10-11 02:36:43 +9404 9404 9405 940.4 1880.8000000000002 9404 1995-10-01 2024-10-11 02:36:44.000 1995-10-01 2024-10-11 02:36:44 +9406 9406 9407 940.6 1881.2 9406 1995-10-03 2024-10-11 02:36:46.000 1995-10-03 2024-10-11 02:36:46 +9407 9407 9408 940.7 1881.4 9407 1995-10-04 2024-10-11 02:36:47.000 1995-10-04 2024-10-11 02:36:47 +9408 9408 9409 940.8 1881.6000000000001 9408 1995-10-05 2024-10-11 02:36:48.000 1995-10-05 2024-10-11 02:36:48 +9409 9409 9410 940.9 1881.8000000000002 9409 1995-10-06 2024-10-11 02:36:49.000 1995-10-06 2024-10-11 02:36:49 +9411 9411 9412 941.1 1882.2 9411 1995-10-08 2024-10-11 02:36:51.000 1995-10-08 2024-10-11 02:36:51 +9412 9412 9413 941.2 1882.4 9412 1995-10-09 2024-10-11 02:36:52.000 1995-10-09 2024-10-11 02:36:52 +9413 9413 9414 941.3 1882.6000000000001 9413 1995-10-10 2024-10-11 02:36:53.000 1995-10-10 2024-10-11 02:36:53 +9414 9414 9415 941.4 1882.8000000000002 9414 1995-10-11 2024-10-11 02:36:54.000 1995-10-11 2024-10-11 02:36:54 +9416 9416 9417 941.6 1883.2 9416 1995-10-13 2024-10-11 02:36:56.000 1995-10-13 2024-10-11 02:36:56 +9417 9417 9418 941.7 1883.4 9417 1995-10-14 2024-10-11 02:36:57.000 1995-10-14 2024-10-11 02:36:57 +9418 9418 9419 941.8 1883.6000000000001 9418 1995-10-15 2024-10-11 02:36:58.000 1995-10-15 2024-10-11 02:36:58 +9419 9419 9420 941.9 1883.8000000000002 9419 1995-10-16 2024-10-11 02:36:59.000 1995-10-16 2024-10-11 02:36:59 +9421 9421 9422 942.1 1884.2 9421 1995-10-18 2024-10-11 02:37:01.000 1995-10-18 2024-10-11 02:37:01 +9422 9422 9423 942.2 1884.4 9422 1995-10-19 2024-10-11 02:37:02.000 1995-10-19 2024-10-11 02:37:02 +9423 9423 9424 942.3 1884.6000000000001 9423 1995-10-20 2024-10-11 02:37:03.000 1995-10-20 2024-10-11 02:37:03 +9424 9424 9425 942.4 1884.8000000000002 9424 1995-10-21 2024-10-11 02:37:04.000 1995-10-21 2024-10-11 02:37:04 +9426 9426 9427 942.6 1885.2 9426 1995-10-23 2024-10-11 02:37:06.000 1995-10-23 2024-10-11 02:37:06 +9427 9427 9428 942.7 1885.4 9427 1995-10-24 2024-10-11 02:37:07.000 1995-10-24 2024-10-11 02:37:07 +9428 9428 9429 942.8 1885.6000000000001 9428 1995-10-25 2024-10-11 02:37:08.000 1995-10-25 2024-10-11 02:37:08 +9429 9429 9430 942.9 1885.8000000000002 9429 1995-10-26 2024-10-11 02:37:09.000 1995-10-26 2024-10-11 02:37:09 +9431 9431 9432 943.1 1886.2 9431 1995-10-28 2024-10-11 02:37:11.000 1995-10-28 2024-10-11 02:37:11 +9432 9432 9433 943.2 1886.4 9432 1995-10-29 2024-10-11 02:37:12.000 1995-10-29 2024-10-11 02:37:12 +9433 9433 9434 943.3 1886.6000000000001 9433 1995-10-30 2024-10-11 02:37:13.000 1995-10-30 2024-10-11 02:37:13 +9434 9434 9435 943.4 1886.8000000000002 9434 1995-10-31 2024-10-11 02:37:14.000 1995-10-31 2024-10-11 02:37:14 +9436 9436 9437 943.6 1887.2 9436 1995-11-02 2024-10-11 02:37:16.000 1995-11-02 2024-10-11 02:37:16 +9437 9437 9438 943.7 1887.4 9437 1995-11-03 2024-10-11 02:37:17.000 1995-11-03 2024-10-11 02:37:17 +9438 9438 9439 943.8 1887.6000000000001 9438 1995-11-04 2024-10-11 02:37:18.000 1995-11-04 2024-10-11 02:37:18 +9439 9439 9440 943.9 1887.8000000000002 9439 1995-11-05 2024-10-11 02:37:19.000 1995-11-05 2024-10-11 02:37:19 +9441 9441 9442 944.1 1888.2 9441 1995-11-07 2024-10-11 02:37:21.000 1995-11-07 2024-10-11 02:37:21 +9442 9442 9443 944.2 1888.4 9442 1995-11-08 2024-10-11 02:37:22.000 1995-11-08 2024-10-11 02:37:22 +9443 9443 9444 944.3 1888.6000000000001 9443 1995-11-09 2024-10-11 02:37:23.000 1995-11-09 2024-10-11 02:37:23 +9444 9444 9445 944.4 1888.8000000000002 9444 1995-11-10 2024-10-11 02:37:24.000 1995-11-10 2024-10-11 02:37:24 +9446 9446 9447 944.6 1889.2 9446 1995-11-12 2024-10-11 02:37:26.000 1995-11-12 2024-10-11 02:37:26 +9447 9447 9448 944.7 1889.4 9447 1995-11-13 2024-10-11 02:37:27.000 1995-11-13 2024-10-11 02:37:27 +9448 9448 9449 944.8 1889.6000000000001 9448 1995-11-14 2024-10-11 02:37:28.000 1995-11-14 2024-10-11 02:37:28 +9449 9449 9450 944.9 1889.8000000000002 9449 1995-11-15 2024-10-11 02:37:29.000 1995-11-15 2024-10-11 02:37:29 +9451 9451 9452 945.1 1890.2 9451 1995-11-17 2024-10-11 02:37:31.000 1995-11-17 2024-10-11 02:37:31 +9452 9452 9453 945.2 1890.4 9452 1995-11-18 2024-10-11 02:37:32.000 1995-11-18 2024-10-11 02:37:32 +9453 9453 9454 945.3 1890.6000000000001 9453 1995-11-19 2024-10-11 02:37:33.000 1995-11-19 2024-10-11 02:37:33 +9454 9454 9455 945.4 1890.8000000000002 9454 1995-11-20 2024-10-11 02:37:34.000 1995-11-20 2024-10-11 02:37:34 +9456 9456 9457 945.6 1891.2 9456 1995-11-22 2024-10-11 02:37:36.000 1995-11-22 2024-10-11 02:37:36 +9457 9457 9458 945.7 1891.4 9457 1995-11-23 2024-10-11 02:37:37.000 1995-11-23 2024-10-11 02:37:37 +9458 9458 9459 945.8 1891.6000000000001 9458 1995-11-24 2024-10-11 02:37:38.000 1995-11-24 2024-10-11 02:37:38 +9459 9459 9460 945.9 1891.8000000000002 9459 1995-11-25 2024-10-11 02:37:39.000 1995-11-25 2024-10-11 02:37:39 +9461 9461 9462 946.1 1892.2 9461 1995-11-27 2024-10-11 02:37:41.000 1995-11-27 2024-10-11 02:37:41 +9462 9462 9463 946.2 1892.4 9462 1995-11-28 2024-10-11 02:37:42.000 1995-11-28 2024-10-11 02:37:42 +9463 9463 9464 946.3 1892.6000000000001 9463 1995-11-29 2024-10-11 02:37:43.000 1995-11-29 2024-10-11 02:37:43 +9464 9464 9465 946.4 1892.8000000000002 9464 1995-11-30 2024-10-11 02:37:44.000 1995-11-30 2024-10-11 02:37:44 +9466 9466 9467 946.6 1893.2 9466 1995-12-02 2024-10-11 02:37:46.000 1995-12-02 2024-10-11 02:37:46 +9467 9467 9468 946.7 1893.4 9467 1995-12-03 2024-10-11 02:37:47.000 1995-12-03 2024-10-11 02:37:47 +9468 9468 9469 946.8 1893.6000000000001 9468 1995-12-04 2024-10-11 02:37:48.000 1995-12-04 2024-10-11 02:37:48 +9469 9469 9470 946.9 1893.8000000000002 9469 1995-12-05 2024-10-11 02:37:49.000 1995-12-05 2024-10-11 02:37:49 +9471 9471 9472 947.1 1894.2 9471 1995-12-07 2024-10-11 02:37:51.000 1995-12-07 2024-10-11 02:37:51 +9472 9472 9473 947.2 1894.4 9472 1995-12-08 2024-10-11 02:37:52.000 1995-12-08 2024-10-11 02:37:52 +9473 9473 9474 947.3 1894.6000000000001 9473 1995-12-09 2024-10-11 02:37:53.000 1995-12-09 2024-10-11 02:37:53 +9474 9474 9475 947.4 1894.8000000000002 9474 1995-12-10 2024-10-11 02:37:54.000 1995-12-10 2024-10-11 02:37:54 +9476 9476 9477 947.6 1895.2 9476 1995-12-12 2024-10-11 02:37:56.000 1995-12-12 2024-10-11 02:37:56 +9477 9477 9478 947.7 1895.4 9477 1995-12-13 2024-10-11 02:37:57.000 1995-12-13 2024-10-11 02:37:57 +9478 9478 9479 947.8 1895.6000000000001 9478 1995-12-14 2024-10-11 02:37:58.000 1995-12-14 2024-10-11 02:37:58 +9479 9479 9480 947.9 1895.8000000000002 9479 1995-12-15 2024-10-11 02:37:59.000 1995-12-15 2024-10-11 02:37:59 +9481 9481 9482 948.1 1896.2 9481 1995-12-17 2024-10-11 02:38:01.000 1995-12-17 2024-10-11 02:38:01 +9482 9482 9483 948.2 1896.4 9482 1995-12-18 2024-10-11 02:38:02.000 1995-12-18 2024-10-11 02:38:02 +9483 9483 9484 948.3 1896.6000000000001 9483 1995-12-19 2024-10-11 02:38:03.000 1995-12-19 2024-10-11 02:38:03 +9484 9484 9485 948.4 1896.8000000000002 9484 1995-12-20 2024-10-11 02:38:04.000 1995-12-20 2024-10-11 02:38:04 +9486 9486 9487 948.6 1897.2 9486 1995-12-22 2024-10-11 02:38:06.000 1995-12-22 2024-10-11 02:38:06 +9487 9487 9488 948.7 1897.4 9487 1995-12-23 2024-10-11 02:38:07.000 1995-12-23 2024-10-11 02:38:07 +9488 9488 9489 948.8 1897.6000000000001 9488 1995-12-24 2024-10-11 02:38:08.000 1995-12-24 2024-10-11 02:38:08 +9489 9489 9490 948.9 1897.8000000000002 9489 1995-12-25 2024-10-11 02:38:09.000 1995-12-25 2024-10-11 02:38:09 +9491 9491 9492 949.1 1898.2 9491 1995-12-27 2024-10-11 02:38:11.000 1995-12-27 2024-10-11 02:38:11 +9492 9492 9493 949.2 1898.4 9492 1995-12-28 2024-10-11 02:38:12.000 1995-12-28 2024-10-11 02:38:12 +9493 9493 9494 949.3 1898.6000000000001 9493 1995-12-29 2024-10-11 02:38:13.000 1995-12-29 2024-10-11 02:38:13 +9494 9494 9495 949.4 1898.8000000000002 9494 1995-12-30 2024-10-11 02:38:14.000 1995-12-30 2024-10-11 02:38:14 +9496 9496 9497 949.6 1899.2 9496 1996-01-01 2024-10-11 02:38:16.000 1996-01-01 2024-10-11 02:38:16 +9497 9497 9498 949.7 1899.4 9497 1996-01-02 2024-10-11 02:38:17.000 1996-01-02 2024-10-11 02:38:17 +9498 9498 9499 949.8 1899.6000000000001 9498 1996-01-03 2024-10-11 02:38:18.000 1996-01-03 2024-10-11 02:38:18 +9499 9499 9500 949.9 1899.8000000000002 9499 1996-01-04 2024-10-11 02:38:19.000 1996-01-04 2024-10-11 02:38:19 +9501 9501 9502 950.1 1900.2 9501 1996-01-06 2024-10-11 02:38:21.000 1996-01-06 2024-10-11 02:38:21 +9502 9502 9503 950.2 1900.4 9502 1996-01-07 2024-10-11 02:38:22.000 1996-01-07 2024-10-11 02:38:22 +9503 9503 9504 950.3 1900.6000000000001 9503 1996-01-08 2024-10-11 02:38:23.000 1996-01-08 2024-10-11 02:38:23 +9504 9504 9505 950.4 1900.8000000000002 9504 1996-01-09 2024-10-11 02:38:24.000 1996-01-09 2024-10-11 02:38:24 +9506 9506 9507 950.6 1901.2 9506 1996-01-11 2024-10-11 02:38:26.000 1996-01-11 2024-10-11 02:38:26 +9507 9507 9508 950.7 1901.4 9507 1996-01-12 2024-10-11 02:38:27.000 1996-01-12 2024-10-11 02:38:27 +9508 9508 9509 950.8 1901.6000000000001 9508 1996-01-13 2024-10-11 02:38:28.000 1996-01-13 2024-10-11 02:38:28 +9509 9509 9510 950.9 1901.8000000000002 9509 1996-01-14 2024-10-11 02:38:29.000 1996-01-14 2024-10-11 02:38:29 +9511 9511 9512 951.1 1902.2 9511 1996-01-16 2024-10-11 02:38:31.000 1996-01-16 2024-10-11 02:38:31 +9512 9512 9513 951.2 1902.4 9512 1996-01-17 2024-10-11 02:38:32.000 1996-01-17 2024-10-11 02:38:32 +9513 9513 9514 951.3 1902.6000000000001 9513 1996-01-18 2024-10-11 02:38:33.000 1996-01-18 2024-10-11 02:38:33 +9514 9514 9515 951.4 1902.8000000000002 9514 1996-01-19 2024-10-11 02:38:34.000 1996-01-19 2024-10-11 02:38:34 +9516 9516 9517 951.6 1903.2 9516 1996-01-21 2024-10-11 02:38:36.000 1996-01-21 2024-10-11 02:38:36 +9517 9517 9518 951.7 1903.4 9517 1996-01-22 2024-10-11 02:38:37.000 1996-01-22 2024-10-11 02:38:37 +9518 9518 9519 951.8 1903.6000000000001 9518 1996-01-23 2024-10-11 02:38:38.000 1996-01-23 2024-10-11 02:38:38 +9519 9519 9520 951.9 1903.8000000000002 9519 1996-01-24 2024-10-11 02:38:39.000 1996-01-24 2024-10-11 02:38:39 +9521 9521 9522 952.1 1904.2 9521 1996-01-26 2024-10-11 02:38:41.000 1996-01-26 2024-10-11 02:38:41 +9522 9522 9523 952.2 1904.4 9522 1996-01-27 2024-10-11 02:38:42.000 1996-01-27 2024-10-11 02:38:42 +9523 9523 9524 952.3 1904.6000000000001 9523 1996-01-28 2024-10-11 02:38:43.000 1996-01-28 2024-10-11 02:38:43 +9524 9524 9525 952.4 1904.8000000000002 9524 1996-01-29 2024-10-11 02:38:44.000 1996-01-29 2024-10-11 02:38:44 +9526 9526 9527 952.6 1905.2 9526 1996-01-31 2024-10-11 02:38:46.000 1996-01-31 2024-10-11 02:38:46 +9527 9527 9528 952.7 1905.4 9527 1996-02-01 2024-10-11 02:38:47.000 1996-02-01 2024-10-11 02:38:47 +9528 9528 9529 952.8 1905.6000000000001 9528 1996-02-02 2024-10-11 02:38:48.000 1996-02-02 2024-10-11 02:38:48 +9529 9529 9530 952.9 1905.8000000000002 9529 1996-02-03 2024-10-11 02:38:49.000 1996-02-03 2024-10-11 02:38:49 +9531 9531 9532 953.1 1906.2 9531 1996-02-05 2024-10-11 02:38:51.000 1996-02-05 2024-10-11 02:38:51 +9532 9532 9533 953.2 1906.4 9532 1996-02-06 2024-10-11 02:38:52.000 1996-02-06 2024-10-11 02:38:52 +9533 9533 9534 953.3 1906.6000000000001 9533 1996-02-07 2024-10-11 02:38:53.000 1996-02-07 2024-10-11 02:38:53 +9534 9534 9535 953.4 1906.8000000000002 9534 1996-02-08 2024-10-11 02:38:54.000 1996-02-08 2024-10-11 02:38:54 +9536 9536 9537 953.6 1907.2 9536 1996-02-10 2024-10-11 02:38:56.000 1996-02-10 2024-10-11 02:38:56 +9537 9537 9538 953.7 1907.4 9537 1996-02-11 2024-10-11 02:38:57.000 1996-02-11 2024-10-11 02:38:57 +9538 9538 9539 953.8 1907.6000000000001 9538 1996-02-12 2024-10-11 02:38:58.000 1996-02-12 2024-10-11 02:38:58 +9539 9539 9540 953.9 1907.8000000000002 9539 1996-02-13 2024-10-11 02:38:59.000 1996-02-13 2024-10-11 02:38:59 +9541 9541 9542 954.1 1908.2 9541 1996-02-15 2024-10-11 02:39:01.000 1996-02-15 2024-10-11 02:39:01 +9542 9542 9543 954.2 1908.4 9542 1996-02-16 2024-10-11 02:39:02.000 1996-02-16 2024-10-11 02:39:02 +9543 9543 9544 954.3 1908.6000000000001 9543 1996-02-17 2024-10-11 02:39:03.000 1996-02-17 2024-10-11 02:39:03 +9544 9544 9545 954.4 1908.8000000000002 9544 1996-02-18 2024-10-11 02:39:04.000 1996-02-18 2024-10-11 02:39:04 +9546 9546 9547 954.6 1909.2 9546 1996-02-20 2024-10-11 02:39:06.000 1996-02-20 2024-10-11 02:39:06 +9547 9547 9548 954.7 1909.4 9547 1996-02-21 2024-10-11 02:39:07.000 1996-02-21 2024-10-11 02:39:07 +9548 9548 9549 954.8 1909.6000000000001 9548 1996-02-22 2024-10-11 02:39:08.000 1996-02-22 2024-10-11 02:39:08 +9549 9549 9550 954.9 1909.8000000000002 9549 1996-02-23 2024-10-11 02:39:09.000 1996-02-23 2024-10-11 02:39:09 +9551 9551 9552 955.1 1910.2 9551 1996-02-25 2024-10-11 02:39:11.000 1996-02-25 2024-10-11 02:39:11 +9552 9552 9553 955.2 1910.4 9552 1996-02-26 2024-10-11 02:39:12.000 1996-02-26 2024-10-11 02:39:12 +9553 9553 9554 955.3 1910.6000000000001 9553 1996-02-27 2024-10-11 02:39:13.000 1996-02-27 2024-10-11 02:39:13 +9554 9554 9555 955.4 1910.8000000000002 9554 1996-02-28 2024-10-11 02:39:14.000 1996-02-28 2024-10-11 02:39:14 +9556 9556 9557 955.6 1911.2 9556 1996-03-01 2024-10-11 02:39:16.000 1996-03-01 2024-10-11 02:39:16 +9557 9557 9558 955.7 1911.4 9557 1996-03-02 2024-10-11 02:39:17.000 1996-03-02 2024-10-11 02:39:17 +9558 9558 9559 955.8 1911.6000000000001 9558 1996-03-03 2024-10-11 02:39:18.000 1996-03-03 2024-10-11 02:39:18 +9559 9559 9560 955.9 1911.8000000000002 9559 1996-03-04 2024-10-11 02:39:19.000 1996-03-04 2024-10-11 02:39:19 +9561 9561 9562 956.1 1912.2 9561 1996-03-06 2024-10-11 02:39:21.000 1996-03-06 2024-10-11 02:39:21 +9562 9562 9563 956.2 1912.4 9562 1996-03-07 2024-10-11 02:39:22.000 1996-03-07 2024-10-11 02:39:22 +9563 9563 9564 956.3 1912.6000000000001 9563 1996-03-08 2024-10-11 02:39:23.000 1996-03-08 2024-10-11 02:39:23 +9564 9564 9565 956.4 1912.8000000000002 9564 1996-03-09 2024-10-11 02:39:24.000 1996-03-09 2024-10-11 02:39:24 +9566 9566 9567 956.6 1913.2 9566 1996-03-11 2024-10-11 02:39:26.000 1996-03-11 2024-10-11 02:39:26 +9567 9567 9568 956.7 1913.4 9567 1996-03-12 2024-10-11 02:39:27.000 1996-03-12 2024-10-11 02:39:27 +9568 9568 9569 956.8 1913.6000000000001 9568 1996-03-13 2024-10-11 02:39:28.000 1996-03-13 2024-10-11 02:39:28 +9569 9569 9570 956.9 1913.8000000000002 9569 1996-03-14 2024-10-11 02:39:29.000 1996-03-14 2024-10-11 02:39:29 +9571 9571 9572 957.1 1914.2 9571 1996-03-16 2024-10-11 02:39:31.000 1996-03-16 2024-10-11 02:39:31 +9572 9572 9573 957.2 1914.4 9572 1996-03-17 2024-10-11 02:39:32.000 1996-03-17 2024-10-11 02:39:32 +9573 9573 9574 957.3 1914.6000000000001 9573 1996-03-18 2024-10-11 02:39:33.000 1996-03-18 2024-10-11 02:39:33 +9574 9574 9575 957.4 1914.8000000000002 9574 1996-03-19 2024-10-11 02:39:34.000 1996-03-19 2024-10-11 02:39:34 +9576 9576 9577 957.6 1915.2 9576 1996-03-21 2024-10-11 02:39:36.000 1996-03-21 2024-10-11 02:39:36 +9577 9577 9578 957.7 1915.4 9577 1996-03-22 2024-10-11 02:39:37.000 1996-03-22 2024-10-11 02:39:37 +9578 9578 9579 957.8 1915.6000000000001 9578 1996-03-23 2024-10-11 02:39:38.000 1996-03-23 2024-10-11 02:39:38 +9579 9579 9580 957.9 1915.8000000000002 9579 1996-03-24 2024-10-11 02:39:39.000 1996-03-24 2024-10-11 02:39:39 +9581 9581 9582 958.1 1916.2 9581 1996-03-26 2024-10-11 02:39:41.000 1996-03-26 2024-10-11 02:39:41 +9582 9582 9583 958.2 1916.4 9582 1996-03-27 2024-10-11 02:39:42.000 1996-03-27 2024-10-11 02:39:42 +9583 9583 9584 958.3 1916.6000000000001 9583 1996-03-28 2024-10-11 02:39:43.000 1996-03-28 2024-10-11 02:39:43 +9584 9584 9585 958.4 1916.8000000000002 9584 1996-03-29 2024-10-11 02:39:44.000 1996-03-29 2024-10-11 02:39:44 +9586 9586 9587 958.6 1917.2 9586 1996-03-31 2024-10-11 02:39:46.000 1996-03-31 2024-10-11 02:39:46 +9587 9587 9588 958.7 1917.4 9587 1996-04-01 2024-10-11 02:39:47.000 1996-04-01 2024-10-11 02:39:47 +9588 9588 9589 958.8 1917.6000000000001 9588 1996-04-02 2024-10-11 02:39:48.000 1996-04-02 2024-10-11 02:39:48 +9589 9589 9590 958.9 1917.8000000000002 9589 1996-04-03 2024-10-11 02:39:49.000 1996-04-03 2024-10-11 02:39:49 +9591 9591 9592 959.1 1918.2 9591 1996-04-05 2024-10-11 02:39:51.000 1996-04-05 2024-10-11 02:39:51 +9592 9592 9593 959.2 1918.4 9592 1996-04-06 2024-10-11 02:39:52.000 1996-04-06 2024-10-11 02:39:52 +9593 9593 9594 959.3 1918.6000000000001 9593 1996-04-07 2024-10-11 02:39:53.000 1996-04-07 2024-10-11 02:39:53 +9594 9594 9595 959.4 1918.8000000000002 9594 1996-04-08 2024-10-11 02:39:54.000 1996-04-08 2024-10-11 02:39:54 +9596 9596 9597 959.6 1919.2 9596 1996-04-10 2024-10-11 02:39:56.000 1996-04-10 2024-10-11 02:39:56 +9597 9597 9598 959.7 1919.4 9597 1996-04-11 2024-10-11 02:39:57.000 1996-04-11 2024-10-11 02:39:57 +9598 9598 9599 959.8 1919.6000000000001 9598 1996-04-12 2024-10-11 02:39:58.000 1996-04-12 2024-10-11 02:39:58 +9599 9599 9600 959.9 1919.8000000000002 9599 1996-04-13 2024-10-11 02:39:59.000 1996-04-13 2024-10-11 02:39:59 +9601 9601 9602 960.1 1920.2 9601 1996-04-15 2024-10-11 02:40:01.000 1996-04-15 2024-10-11 02:40:01 +9602 9602 9603 960.2 1920.4 9602 1996-04-16 2024-10-11 02:40:02.000 1996-04-16 2024-10-11 02:40:02 +9603 9603 9604 960.3 1920.6000000000001 9603 1996-04-17 2024-10-11 02:40:03.000 1996-04-17 2024-10-11 02:40:03 +9604 9604 9605 960.4 1920.8000000000002 9604 1996-04-18 2024-10-11 02:40:04.000 1996-04-18 2024-10-11 02:40:04 +9606 9606 9607 960.6 1921.2 9606 1996-04-20 2024-10-11 02:40:06.000 1996-04-20 2024-10-11 02:40:06 +9607 9607 9608 960.7 1921.4 9607 1996-04-21 2024-10-11 02:40:07.000 1996-04-21 2024-10-11 02:40:07 +9608 9608 9609 960.8 1921.6000000000001 9608 1996-04-22 2024-10-11 02:40:08.000 1996-04-22 2024-10-11 02:40:08 +9609 9609 9610 960.9 1921.8000000000002 9609 1996-04-23 2024-10-11 02:40:09.000 1996-04-23 2024-10-11 02:40:09 +9611 9611 9612 961.1 1922.2 9611 1996-04-25 2024-10-11 02:40:11.000 1996-04-25 2024-10-11 02:40:11 +9612 9612 9613 961.2 1922.4 9612 1996-04-26 2024-10-11 02:40:12.000 1996-04-26 2024-10-11 02:40:12 +9613 9613 9614 961.3 1922.6000000000001 9613 1996-04-27 2024-10-11 02:40:13.000 1996-04-27 2024-10-11 02:40:13 +9614 9614 9615 961.4 1922.8000000000002 9614 1996-04-28 2024-10-11 02:40:14.000 1996-04-28 2024-10-11 02:40:14 +9616 9616 9617 961.6 1923.2 9616 1996-04-30 2024-10-11 02:40:16.000 1996-04-30 2024-10-11 02:40:16 +9617 9617 9618 961.7 1923.4 9617 1996-05-01 2024-10-11 02:40:17.000 1996-05-01 2024-10-11 02:40:17 +9618 9618 9619 961.8 1923.6000000000001 9618 1996-05-02 2024-10-11 02:40:18.000 1996-05-02 2024-10-11 02:40:18 +9619 9619 9620 961.9 1923.8000000000002 9619 1996-05-03 2024-10-11 02:40:19.000 1996-05-03 2024-10-11 02:40:19 +9621 9621 9622 962.1 1924.2 9621 1996-05-05 2024-10-11 02:40:21.000 1996-05-05 2024-10-11 02:40:21 +9622 9622 9623 962.2 1924.4 9622 1996-05-06 2024-10-11 02:40:22.000 1996-05-06 2024-10-11 02:40:22 +9623 9623 9624 962.3 1924.6000000000001 9623 1996-05-07 2024-10-11 02:40:23.000 1996-05-07 2024-10-11 02:40:23 +9624 9624 9625 962.4 1924.8000000000002 9624 1996-05-08 2024-10-11 02:40:24.000 1996-05-08 2024-10-11 02:40:24 +9626 9626 9627 962.6 1925.2 9626 1996-05-10 2024-10-11 02:40:26.000 1996-05-10 2024-10-11 02:40:26 +9627 9627 9628 962.7 1925.4 9627 1996-05-11 2024-10-11 02:40:27.000 1996-05-11 2024-10-11 02:40:27 +9628 9628 9629 962.8 1925.6000000000001 9628 1996-05-12 2024-10-11 02:40:28.000 1996-05-12 2024-10-11 02:40:28 +9629 9629 9630 962.9 1925.8000000000002 9629 1996-05-13 2024-10-11 02:40:29.000 1996-05-13 2024-10-11 02:40:29 +9631 9631 9632 963.1 1926.2 9631 1996-05-15 2024-10-11 02:40:31.000 1996-05-15 2024-10-11 02:40:31 +9632 9632 9633 963.2 1926.4 9632 1996-05-16 2024-10-11 02:40:32.000 1996-05-16 2024-10-11 02:40:32 +9633 9633 9634 963.3 1926.6000000000001 9633 1996-05-17 2024-10-11 02:40:33.000 1996-05-17 2024-10-11 02:40:33 +9634 9634 9635 963.4 1926.8000000000002 9634 1996-05-18 2024-10-11 02:40:34.000 1996-05-18 2024-10-11 02:40:34 +9636 9636 9637 963.6 1927.2 9636 1996-05-20 2024-10-11 02:40:36.000 1996-05-20 2024-10-11 02:40:36 +9637 9637 9638 963.7 1927.4 9637 1996-05-21 2024-10-11 02:40:37.000 1996-05-21 2024-10-11 02:40:37 +9638 9638 9639 963.8 1927.6000000000001 9638 1996-05-22 2024-10-11 02:40:38.000 1996-05-22 2024-10-11 02:40:38 +9639 9639 9640 963.9 1927.8000000000002 9639 1996-05-23 2024-10-11 02:40:39.000 1996-05-23 2024-10-11 02:40:39 +9641 9641 9642 964.1 1928.2 9641 1996-05-25 2024-10-11 02:40:41.000 1996-05-25 2024-10-11 02:40:41 +9642 9642 9643 964.2 1928.4 9642 1996-05-26 2024-10-11 02:40:42.000 1996-05-26 2024-10-11 02:40:42 +9643 9643 9644 964.3 1928.6000000000001 9643 1996-05-27 2024-10-11 02:40:43.000 1996-05-27 2024-10-11 02:40:43 +9644 9644 9645 964.4 1928.8000000000002 9644 1996-05-28 2024-10-11 02:40:44.000 1996-05-28 2024-10-11 02:40:44 +9646 9646 9647 964.6 1929.2 9646 1996-05-30 2024-10-11 02:40:46.000 1996-05-30 2024-10-11 02:40:46 +9647 9647 9648 964.7 1929.4 9647 1996-05-31 2024-10-11 02:40:47.000 1996-05-31 2024-10-11 02:40:47 +9648 9648 9649 964.8 1929.6000000000001 9648 1996-06-01 2024-10-11 02:40:48.000 1996-06-01 2024-10-11 02:40:48 +9649 9649 9650 964.9 1929.8000000000002 9649 1996-06-02 2024-10-11 02:40:49.000 1996-06-02 2024-10-11 02:40:49 +9651 9651 9652 965.1 1930.2 9651 1996-06-04 2024-10-11 02:40:51.000 1996-06-04 2024-10-11 02:40:51 +9652 9652 9653 965.2 1930.4 9652 1996-06-05 2024-10-11 02:40:52.000 1996-06-05 2024-10-11 02:40:52 +9653 9653 9654 965.3 1930.6000000000001 9653 1996-06-06 2024-10-11 02:40:53.000 1996-06-06 2024-10-11 02:40:53 +9654 9654 9655 965.4 1930.8000000000002 9654 1996-06-07 2024-10-11 02:40:54.000 1996-06-07 2024-10-11 02:40:54 +9656 9656 9657 965.6 1931.2 9656 1996-06-09 2024-10-11 02:40:56.000 1996-06-09 2024-10-11 02:40:56 +9657 9657 9658 965.7 1931.4 9657 1996-06-10 2024-10-11 02:40:57.000 1996-06-10 2024-10-11 02:40:57 +9658 9658 9659 965.8 1931.6000000000001 9658 1996-06-11 2024-10-11 02:40:58.000 1996-06-11 2024-10-11 02:40:58 +9659 9659 9660 965.9 1931.8000000000002 9659 1996-06-12 2024-10-11 02:40:59.000 1996-06-12 2024-10-11 02:40:59 +9661 9661 9662 966.1 1932.2 9661 1996-06-14 2024-10-11 02:41:01.000 1996-06-14 2024-10-11 02:41:01 +9662 9662 9663 966.2 1932.4 9662 1996-06-15 2024-10-11 02:41:02.000 1996-06-15 2024-10-11 02:41:02 +9663 9663 9664 966.3 1932.6000000000001 9663 1996-06-16 2024-10-11 02:41:03.000 1996-06-16 2024-10-11 02:41:03 +9664 9664 9665 966.4 1932.8000000000002 9664 1996-06-17 2024-10-11 02:41:04.000 1996-06-17 2024-10-11 02:41:04 +9666 9666 9667 966.6 1933.2 9666 1996-06-19 2024-10-11 02:41:06.000 1996-06-19 2024-10-11 02:41:06 +9667 9667 9668 966.7 1933.4 9667 1996-06-20 2024-10-11 02:41:07.000 1996-06-20 2024-10-11 02:41:07 +9668 9668 9669 966.8 1933.6000000000001 9668 1996-06-21 2024-10-11 02:41:08.000 1996-06-21 2024-10-11 02:41:08 +9669 9669 9670 966.9 1933.8000000000002 9669 1996-06-22 2024-10-11 02:41:09.000 1996-06-22 2024-10-11 02:41:09 +9671 9671 9672 967.1 1934.2 9671 1996-06-24 2024-10-11 02:41:11.000 1996-06-24 2024-10-11 02:41:11 +9672 9672 9673 967.2 1934.4 9672 1996-06-25 2024-10-11 02:41:12.000 1996-06-25 2024-10-11 02:41:12 +9673 9673 9674 967.3 1934.6000000000001 9673 1996-06-26 2024-10-11 02:41:13.000 1996-06-26 2024-10-11 02:41:13 +9674 9674 9675 967.4 1934.8000000000002 9674 1996-06-27 2024-10-11 02:41:14.000 1996-06-27 2024-10-11 02:41:14 +9676 9676 9677 967.6 1935.2 9676 1996-06-29 2024-10-11 02:41:16.000 1996-06-29 2024-10-11 02:41:16 +9677 9677 9678 967.7 1935.4 9677 1996-06-30 2024-10-11 02:41:17.000 1996-06-30 2024-10-11 02:41:17 +9678 9678 9679 967.8 1935.6000000000001 9678 1996-07-01 2024-10-11 02:41:18.000 1996-07-01 2024-10-11 02:41:18 +9679 9679 9680 967.9 1935.8000000000002 9679 1996-07-02 2024-10-11 02:41:19.000 1996-07-02 2024-10-11 02:41:19 +9681 9681 9682 968.1 1936.2 9681 1996-07-04 2024-10-11 02:41:21.000 1996-07-04 2024-10-11 02:41:21 +9682 9682 9683 968.2 1936.4 9682 1996-07-05 2024-10-11 02:41:22.000 1996-07-05 2024-10-11 02:41:22 +9683 9683 9684 968.3 1936.6000000000001 9683 1996-07-06 2024-10-11 02:41:23.000 1996-07-06 2024-10-11 02:41:23 +9684 9684 9685 968.4 1936.8000000000002 9684 1996-07-07 2024-10-11 02:41:24.000 1996-07-07 2024-10-11 02:41:24 +9686 9686 9687 968.6 1937.2 9686 1996-07-09 2024-10-11 02:41:26.000 1996-07-09 2024-10-11 02:41:26 +9687 9687 9688 968.7 1937.4 9687 1996-07-10 2024-10-11 02:41:27.000 1996-07-10 2024-10-11 02:41:27 +9688 9688 9689 968.8 1937.6000000000001 9688 1996-07-11 2024-10-11 02:41:28.000 1996-07-11 2024-10-11 02:41:28 +9689 9689 9690 968.9 1937.8000000000002 9689 1996-07-12 2024-10-11 02:41:29.000 1996-07-12 2024-10-11 02:41:29 +9691 9691 9692 969.1 1938.2 9691 1996-07-14 2024-10-11 02:41:31.000 1996-07-14 2024-10-11 02:41:31 +9692 9692 9693 969.2 1938.4 9692 1996-07-15 2024-10-11 02:41:32.000 1996-07-15 2024-10-11 02:41:32 +9693 9693 9694 969.3 1938.6000000000001 9693 1996-07-16 2024-10-11 02:41:33.000 1996-07-16 2024-10-11 02:41:33 +9694 9694 9695 969.4 1938.8000000000002 9694 1996-07-17 2024-10-11 02:41:34.000 1996-07-17 2024-10-11 02:41:34 +9696 9696 9697 969.6 1939.2 9696 1996-07-19 2024-10-11 02:41:36.000 1996-07-19 2024-10-11 02:41:36 +9697 9697 9698 969.7 1939.4 9697 1996-07-20 2024-10-11 02:41:37.000 1996-07-20 2024-10-11 02:41:37 +9698 9698 9699 969.8 1939.6000000000001 9698 1996-07-21 2024-10-11 02:41:38.000 1996-07-21 2024-10-11 02:41:38 +9699 9699 9700 969.9 1939.8000000000002 9699 1996-07-22 2024-10-11 02:41:39.000 1996-07-22 2024-10-11 02:41:39 +9701 9701 9702 970.1 1940.2 9701 1996-07-24 2024-10-11 02:41:41.000 1996-07-24 2024-10-11 02:41:41 +9702 9702 9703 970.2 1940.4 9702 1996-07-25 2024-10-11 02:41:42.000 1996-07-25 2024-10-11 02:41:42 +9703 9703 9704 970.3 1940.6000000000001 9703 1996-07-26 2024-10-11 02:41:43.000 1996-07-26 2024-10-11 02:41:43 +9704 9704 9705 970.4 1940.8000000000002 9704 1996-07-27 2024-10-11 02:41:44.000 1996-07-27 2024-10-11 02:41:44 +9706 9706 9707 970.6 1941.2 9706 1996-07-29 2024-10-11 02:41:46.000 1996-07-29 2024-10-11 02:41:46 +9707 9707 9708 970.7 1941.4 9707 1996-07-30 2024-10-11 02:41:47.000 1996-07-30 2024-10-11 02:41:47 +9708 9708 9709 970.8 1941.6000000000001 9708 1996-07-31 2024-10-11 02:41:48.000 1996-07-31 2024-10-11 02:41:48 +9709 9709 9710 970.9 1941.8000000000002 9709 1996-08-01 2024-10-11 02:41:49.000 1996-08-01 2024-10-11 02:41:49 +9711 9711 9712 971.1 1942.2 9711 1996-08-03 2024-10-11 02:41:51.000 1996-08-03 2024-10-11 02:41:51 +9712 9712 9713 971.2 1942.4 9712 1996-08-04 2024-10-11 02:41:52.000 1996-08-04 2024-10-11 02:41:52 +9713 9713 9714 971.3 1942.6000000000001 9713 1996-08-05 2024-10-11 02:41:53.000 1996-08-05 2024-10-11 02:41:53 +9714 9714 9715 971.4 1942.8000000000002 9714 1996-08-06 2024-10-11 02:41:54.000 1996-08-06 2024-10-11 02:41:54 +9716 9716 9717 971.6 1943.2 9716 1996-08-08 2024-10-11 02:41:56.000 1996-08-08 2024-10-11 02:41:56 +9717 9717 9718 971.7 1943.4 9717 1996-08-09 2024-10-11 02:41:57.000 1996-08-09 2024-10-11 02:41:57 +9718 9718 9719 971.8 1943.6000000000001 9718 1996-08-10 2024-10-11 02:41:58.000 1996-08-10 2024-10-11 02:41:58 +9719 9719 9720 971.9 1943.8000000000002 9719 1996-08-11 2024-10-11 02:41:59.000 1996-08-11 2024-10-11 02:41:59 +9721 9721 9722 972.1 1944.2 9721 1996-08-13 2024-10-11 02:42:01.000 1996-08-13 2024-10-11 02:42:01 +9722 9722 9723 972.2 1944.4 9722 1996-08-14 2024-10-11 02:42:02.000 1996-08-14 2024-10-11 02:42:02 +9723 9723 9724 972.3 1944.6000000000001 9723 1996-08-15 2024-10-11 02:42:03.000 1996-08-15 2024-10-11 02:42:03 +9724 9724 9725 972.4 1944.8000000000002 9724 1996-08-16 2024-10-11 02:42:04.000 1996-08-16 2024-10-11 02:42:04 +9726 9726 9727 972.6 1945.2 9726 1996-08-18 2024-10-11 02:42:06.000 1996-08-18 2024-10-11 02:42:06 +9727 9727 9728 972.7 1945.4 9727 1996-08-19 2024-10-11 02:42:07.000 1996-08-19 2024-10-11 02:42:07 +9728 9728 9729 972.8 1945.6000000000001 9728 1996-08-20 2024-10-11 02:42:08.000 1996-08-20 2024-10-11 02:42:08 +9729 9729 9730 972.9 1945.8000000000002 9729 1996-08-21 2024-10-11 02:42:09.000 1996-08-21 2024-10-11 02:42:09 +9731 9731 9732 973.1 1946.2 9731 1996-08-23 2024-10-11 02:42:11.000 1996-08-23 2024-10-11 02:42:11 +9732 9732 9733 973.2 1946.4 9732 1996-08-24 2024-10-11 02:42:12.000 1996-08-24 2024-10-11 02:42:12 +9733 9733 9734 973.3 1946.6000000000001 9733 1996-08-25 2024-10-11 02:42:13.000 1996-08-25 2024-10-11 02:42:13 +9734 9734 9735 973.4 1946.8000000000002 9734 1996-08-26 2024-10-11 02:42:14.000 1996-08-26 2024-10-11 02:42:14 +9736 9736 9737 973.6 1947.2 9736 1996-08-28 2024-10-11 02:42:16.000 1996-08-28 2024-10-11 02:42:16 +9737 9737 9738 973.7 1947.4 9737 1996-08-29 2024-10-11 02:42:17.000 1996-08-29 2024-10-11 02:42:17 +9738 9738 9739 973.8 1947.6000000000001 9738 1996-08-30 2024-10-11 02:42:18.000 1996-08-30 2024-10-11 02:42:18 +9739 9739 9740 973.9 1947.8000000000002 9739 1996-08-31 2024-10-11 02:42:19.000 1996-08-31 2024-10-11 02:42:19 +9741 9741 9742 974.1 1948.2 9741 1996-09-02 2024-10-11 02:42:21.000 1996-09-02 2024-10-11 02:42:21 +9742 9742 9743 974.2 1948.4 9742 1996-09-03 2024-10-11 02:42:22.000 1996-09-03 2024-10-11 02:42:22 +9743 9743 9744 974.3 1948.6000000000001 9743 1996-09-04 2024-10-11 02:42:23.000 1996-09-04 2024-10-11 02:42:23 +9744 9744 9745 974.4 1948.8000000000002 9744 1996-09-05 2024-10-11 02:42:24.000 1996-09-05 2024-10-11 02:42:24 +9746 9746 9747 974.6 1949.2 9746 1996-09-07 2024-10-11 02:42:26.000 1996-09-07 2024-10-11 02:42:26 +9747 9747 9748 974.7 1949.4 9747 1996-09-08 2024-10-11 02:42:27.000 1996-09-08 2024-10-11 02:42:27 +9748 9748 9749 974.8 1949.6000000000001 9748 1996-09-09 2024-10-11 02:42:28.000 1996-09-09 2024-10-11 02:42:28 +9749 9749 9750 974.9 1949.8000000000002 9749 1996-09-10 2024-10-11 02:42:29.000 1996-09-10 2024-10-11 02:42:29 +9751 9751 9752 975.1 1950.2 9751 1996-09-12 2024-10-11 02:42:31.000 1996-09-12 2024-10-11 02:42:31 +9752 9752 9753 975.2 1950.4 9752 1996-09-13 2024-10-11 02:42:32.000 1996-09-13 2024-10-11 02:42:32 +9753 9753 9754 975.3 1950.6000000000001 9753 1996-09-14 2024-10-11 02:42:33.000 1996-09-14 2024-10-11 02:42:33 +9754 9754 9755 975.4 1950.8000000000002 9754 1996-09-15 2024-10-11 02:42:34.000 1996-09-15 2024-10-11 02:42:34 +9756 9756 9757 975.6 1951.2 9756 1996-09-17 2024-10-11 02:42:36.000 1996-09-17 2024-10-11 02:42:36 +9757 9757 9758 975.7 1951.4 9757 1996-09-18 2024-10-11 02:42:37.000 1996-09-18 2024-10-11 02:42:37 +9758 9758 9759 975.8 1951.6000000000001 9758 1996-09-19 2024-10-11 02:42:38.000 1996-09-19 2024-10-11 02:42:38 +9759 9759 9760 975.9 1951.8000000000002 9759 1996-09-20 2024-10-11 02:42:39.000 1996-09-20 2024-10-11 02:42:39 +9761 9761 9762 976.1 1952.2 9761 1996-09-22 2024-10-11 02:42:41.000 1996-09-22 2024-10-11 02:42:41 +9762 9762 9763 976.2 1952.4 9762 1996-09-23 2024-10-11 02:42:42.000 1996-09-23 2024-10-11 02:42:42 +9763 9763 9764 976.3 1952.6000000000001 9763 1996-09-24 2024-10-11 02:42:43.000 1996-09-24 2024-10-11 02:42:43 +9764 9764 9765 976.4 1952.8000000000002 9764 1996-09-25 2024-10-11 02:42:44.000 1996-09-25 2024-10-11 02:42:44 +9766 9766 9767 976.6 1953.2 9766 1996-09-27 2024-10-11 02:42:46.000 1996-09-27 2024-10-11 02:42:46 +9767 9767 9768 976.7 1953.4 9767 1996-09-28 2024-10-11 02:42:47.000 1996-09-28 2024-10-11 02:42:47 +9768 9768 9769 976.8 1953.6000000000001 9768 1996-09-29 2024-10-11 02:42:48.000 1996-09-29 2024-10-11 02:42:48 +9769 9769 9770 976.9 1953.8000000000002 9769 1996-09-30 2024-10-11 02:42:49.000 1996-09-30 2024-10-11 02:42:49 +9771 9771 9772 977.1 1954.2 9771 1996-10-02 2024-10-11 02:42:51.000 1996-10-02 2024-10-11 02:42:51 +9772 9772 9773 977.2 1954.4 9772 1996-10-03 2024-10-11 02:42:52.000 1996-10-03 2024-10-11 02:42:52 +9773 9773 9774 977.3 1954.6000000000001 9773 1996-10-04 2024-10-11 02:42:53.000 1996-10-04 2024-10-11 02:42:53 +9774 9774 9775 977.4 1954.8000000000002 9774 1996-10-05 2024-10-11 02:42:54.000 1996-10-05 2024-10-11 02:42:54 +9776 9776 9777 977.6 1955.2 9776 1996-10-07 2024-10-11 02:42:56.000 1996-10-07 2024-10-11 02:42:56 +9777 9777 9778 977.7 1955.4 9777 1996-10-08 2024-10-11 02:42:57.000 1996-10-08 2024-10-11 02:42:57 +9778 9778 9779 977.8 1955.6000000000001 9778 1996-10-09 2024-10-11 02:42:58.000 1996-10-09 2024-10-11 02:42:58 +9779 9779 9780 977.9 1955.8000000000002 9779 1996-10-10 2024-10-11 02:42:59.000 1996-10-10 2024-10-11 02:42:59 +9781 9781 9782 978.1 1956.2 9781 1996-10-12 2024-10-11 02:43:01.000 1996-10-12 2024-10-11 02:43:01 +9782 9782 9783 978.2 1956.4 9782 1996-10-13 2024-10-11 02:43:02.000 1996-10-13 2024-10-11 02:43:02 +9783 9783 9784 978.3 1956.6000000000001 9783 1996-10-14 2024-10-11 02:43:03.000 1996-10-14 2024-10-11 02:43:03 +9784 9784 9785 978.4 1956.8000000000002 9784 1996-10-15 2024-10-11 02:43:04.000 1996-10-15 2024-10-11 02:43:04 +9786 9786 9787 978.6 1957.2 9786 1996-10-17 2024-10-11 02:43:06.000 1996-10-17 2024-10-11 02:43:06 +9787 9787 9788 978.7 1957.4 9787 1996-10-18 2024-10-11 02:43:07.000 1996-10-18 2024-10-11 02:43:07 +9788 9788 9789 978.8 1957.6000000000001 9788 1996-10-19 2024-10-11 02:43:08.000 1996-10-19 2024-10-11 02:43:08 +9789 9789 9790 978.9 1957.8000000000002 9789 1996-10-20 2024-10-11 02:43:09.000 1996-10-20 2024-10-11 02:43:09 +9791 9791 9792 979.1 1958.2 9791 1996-10-22 2024-10-11 02:43:11.000 1996-10-22 2024-10-11 02:43:11 +9792 9792 9793 979.2 1958.4 9792 1996-10-23 2024-10-11 02:43:12.000 1996-10-23 2024-10-11 02:43:12 +9793 9793 9794 979.3 1958.6000000000001 9793 1996-10-24 2024-10-11 02:43:13.000 1996-10-24 2024-10-11 02:43:13 +9794 9794 9795 979.4 1958.8000000000002 9794 1996-10-25 2024-10-11 02:43:14.000 1996-10-25 2024-10-11 02:43:14 +9796 9796 9797 979.6 1959.2 9796 1996-10-27 2024-10-11 02:43:16.000 1996-10-27 2024-10-11 02:43:16 +9797 9797 9798 979.7 1959.4 9797 1996-10-28 2024-10-11 02:43:17.000 1996-10-28 2024-10-11 02:43:17 +9798 9798 9799 979.8 1959.6000000000001 9798 1996-10-29 2024-10-11 02:43:18.000 1996-10-29 2024-10-11 02:43:18 +9799 9799 9800 979.9 1959.8000000000002 9799 1996-10-30 2024-10-11 02:43:19.000 1996-10-30 2024-10-11 02:43:19 +9801 9801 9802 980.1 1960.2 9801 1996-11-01 2024-10-11 02:43:21.000 1996-11-01 2024-10-11 02:43:21 +9802 9802 9803 980.2 1960.4 9802 1996-11-02 2024-10-11 02:43:22.000 1996-11-02 2024-10-11 02:43:22 +9803 9803 9804 980.3 1960.6000000000001 9803 1996-11-03 2024-10-11 02:43:23.000 1996-11-03 2024-10-11 02:43:23 +9804 9804 9805 980.4 1960.8000000000002 9804 1996-11-04 2024-10-11 02:43:24.000 1996-11-04 2024-10-11 02:43:24 +9806 9806 9807 980.6 1961.2 9806 1996-11-06 2024-10-11 02:43:26.000 1996-11-06 2024-10-11 02:43:26 +9807 9807 9808 980.7 1961.4 9807 1996-11-07 2024-10-11 02:43:27.000 1996-11-07 2024-10-11 02:43:27 +9808 9808 9809 980.8 1961.6000000000001 9808 1996-11-08 2024-10-11 02:43:28.000 1996-11-08 2024-10-11 02:43:28 +9809 9809 9810 980.9 1961.8000000000002 9809 1996-11-09 2024-10-11 02:43:29.000 1996-11-09 2024-10-11 02:43:29 +9811 9811 9812 981.1 1962.2 9811 1996-11-11 2024-10-11 02:43:31.000 1996-11-11 2024-10-11 02:43:31 +9812 9812 9813 981.2 1962.4 9812 1996-11-12 2024-10-11 02:43:32.000 1996-11-12 2024-10-11 02:43:32 +9813 9813 9814 981.3 1962.6000000000001 9813 1996-11-13 2024-10-11 02:43:33.000 1996-11-13 2024-10-11 02:43:33 +9814 9814 9815 981.4 1962.8000000000002 9814 1996-11-14 2024-10-11 02:43:34.000 1996-11-14 2024-10-11 02:43:34 +9816 9816 9817 981.6 1963.2 9816 1996-11-16 2024-10-11 02:43:36.000 1996-11-16 2024-10-11 02:43:36 +9817 9817 9818 981.7 1963.4 9817 1996-11-17 2024-10-11 02:43:37.000 1996-11-17 2024-10-11 02:43:37 +9818 9818 9819 981.8 1963.6000000000001 9818 1996-11-18 2024-10-11 02:43:38.000 1996-11-18 2024-10-11 02:43:38 +9819 9819 9820 981.9 1963.8000000000002 9819 1996-11-19 2024-10-11 02:43:39.000 1996-11-19 2024-10-11 02:43:39 +9821 9821 9822 982.1 1964.2 9821 1996-11-21 2024-10-11 02:43:41.000 1996-11-21 2024-10-11 02:43:41 +9822 9822 9823 982.2 1964.4 9822 1996-11-22 2024-10-11 02:43:42.000 1996-11-22 2024-10-11 02:43:42 +9823 9823 9824 982.3 1964.6000000000001 9823 1996-11-23 2024-10-11 02:43:43.000 1996-11-23 2024-10-11 02:43:43 +9824 9824 9825 982.4 1964.8000000000002 9824 1996-11-24 2024-10-11 02:43:44.000 1996-11-24 2024-10-11 02:43:44 +9826 9826 9827 982.6 1965.2 9826 1996-11-26 2024-10-11 02:43:46.000 1996-11-26 2024-10-11 02:43:46 +9827 9827 9828 982.7 1965.4 9827 1996-11-27 2024-10-11 02:43:47.000 1996-11-27 2024-10-11 02:43:47 +9828 9828 9829 982.8 1965.6000000000001 9828 1996-11-28 2024-10-11 02:43:48.000 1996-11-28 2024-10-11 02:43:48 +9829 9829 9830 982.9 1965.8000000000002 9829 1996-11-29 2024-10-11 02:43:49.000 1996-11-29 2024-10-11 02:43:49 +9831 9831 9832 983.1 1966.2 9831 1996-12-01 2024-10-11 02:43:51.000 1996-12-01 2024-10-11 02:43:51 +9832 9832 9833 983.2 1966.4 9832 1996-12-02 2024-10-11 02:43:52.000 1996-12-02 2024-10-11 02:43:52 +9833 9833 9834 983.3 1966.6000000000001 9833 1996-12-03 2024-10-11 02:43:53.000 1996-12-03 2024-10-11 02:43:53 +9834 9834 9835 983.4 1966.8000000000002 9834 1996-12-04 2024-10-11 02:43:54.000 1996-12-04 2024-10-11 02:43:54 +9836 9836 9837 983.6 1967.2 9836 1996-12-06 2024-10-11 02:43:56.000 1996-12-06 2024-10-11 02:43:56 +9837 9837 9838 983.7 1967.4 9837 1996-12-07 2024-10-11 02:43:57.000 1996-12-07 2024-10-11 02:43:57 +9838 9838 9839 983.8 1967.6000000000001 9838 1996-12-08 2024-10-11 02:43:58.000 1996-12-08 2024-10-11 02:43:58 +9839 9839 9840 983.9 1967.8000000000002 9839 1996-12-09 2024-10-11 02:43:59.000 1996-12-09 2024-10-11 02:43:59 +9841 9841 9842 984.1 1968.2 9841 1996-12-11 2024-10-11 02:44:01.000 1996-12-11 2024-10-11 02:44:01 +9842 9842 9843 984.2 1968.4 9842 1996-12-12 2024-10-11 02:44:02.000 1996-12-12 2024-10-11 02:44:02 +9843 9843 9844 984.3 1968.6000000000001 9843 1996-12-13 2024-10-11 02:44:03.000 1996-12-13 2024-10-11 02:44:03 +9844 9844 9845 984.4 1968.8000000000002 9844 1996-12-14 2024-10-11 02:44:04.000 1996-12-14 2024-10-11 02:44:04 +9846 9846 9847 984.6 1969.2 9846 1996-12-16 2024-10-11 02:44:06.000 1996-12-16 2024-10-11 02:44:06 +9847 9847 9848 984.7 1969.4 9847 1996-12-17 2024-10-11 02:44:07.000 1996-12-17 2024-10-11 02:44:07 +9848 9848 9849 984.8 1969.6000000000001 9848 1996-12-18 2024-10-11 02:44:08.000 1996-12-18 2024-10-11 02:44:08 +9849 9849 9850 984.9 1969.8000000000002 9849 1996-12-19 2024-10-11 02:44:09.000 1996-12-19 2024-10-11 02:44:09 +9851 9851 9852 985.1 1970.2 9851 1996-12-21 2024-10-11 02:44:11.000 1996-12-21 2024-10-11 02:44:11 +9852 9852 9853 985.2 1970.4 9852 1996-12-22 2024-10-11 02:44:12.000 1996-12-22 2024-10-11 02:44:12 +9853 9853 9854 985.3 1970.6000000000001 9853 1996-12-23 2024-10-11 02:44:13.000 1996-12-23 2024-10-11 02:44:13 +9854 9854 9855 985.4 1970.8000000000002 9854 1996-12-24 2024-10-11 02:44:14.000 1996-12-24 2024-10-11 02:44:14 +9856 9856 9857 985.6 1971.2 9856 1996-12-26 2024-10-11 02:44:16.000 1996-12-26 2024-10-11 02:44:16 +9857 9857 9858 985.7 1971.4 9857 1996-12-27 2024-10-11 02:44:17.000 1996-12-27 2024-10-11 02:44:17 +9858 9858 9859 985.8 1971.6000000000001 9858 1996-12-28 2024-10-11 02:44:18.000 1996-12-28 2024-10-11 02:44:18 +9859 9859 9860 985.9 1971.8000000000002 9859 1996-12-29 2024-10-11 02:44:19.000 1996-12-29 2024-10-11 02:44:19 +9861 9861 9862 986.1 1972.2 9861 1996-12-31 2024-10-11 02:44:21.000 1996-12-31 2024-10-11 02:44:21 +9862 9862 9863 986.2 1972.4 9862 1997-01-01 2024-10-11 02:44:22.000 1997-01-01 2024-10-11 02:44:22 +9863 9863 9864 986.3 1972.6000000000001 9863 1997-01-02 2024-10-11 02:44:23.000 1997-01-02 2024-10-11 02:44:23 +9864 9864 9865 986.4 1972.8000000000002 9864 1997-01-03 2024-10-11 02:44:24.000 1997-01-03 2024-10-11 02:44:24 +9866 9866 9867 986.6 1973.2 9866 1997-01-05 2024-10-11 02:44:26.000 1997-01-05 2024-10-11 02:44:26 +9867 9867 9868 986.7 1973.4 9867 1997-01-06 2024-10-11 02:44:27.000 1997-01-06 2024-10-11 02:44:27 +9868 9868 9869 986.8 1973.6000000000001 9868 1997-01-07 2024-10-11 02:44:28.000 1997-01-07 2024-10-11 02:44:28 +9869 9869 9870 986.9 1973.8000000000002 9869 1997-01-08 2024-10-11 02:44:29.000 1997-01-08 2024-10-11 02:44:29 +9871 9871 9872 987.1 1974.2 9871 1997-01-10 2024-10-11 02:44:31.000 1997-01-10 2024-10-11 02:44:31 +9872 9872 9873 987.2 1974.4 9872 1997-01-11 2024-10-11 02:44:32.000 1997-01-11 2024-10-11 02:44:32 +9873 9873 9874 987.3 1974.6000000000001 9873 1997-01-12 2024-10-11 02:44:33.000 1997-01-12 2024-10-11 02:44:33 +9874 9874 9875 987.4 1974.8000000000002 9874 1997-01-13 2024-10-11 02:44:34.000 1997-01-13 2024-10-11 02:44:34 +9876 9876 9877 987.6 1975.2 9876 1997-01-15 2024-10-11 02:44:36.000 1997-01-15 2024-10-11 02:44:36 +9877 9877 9878 987.7 1975.4 9877 1997-01-16 2024-10-11 02:44:37.000 1997-01-16 2024-10-11 02:44:37 +9878 9878 9879 987.8 1975.6000000000001 9878 1997-01-17 2024-10-11 02:44:38.000 1997-01-17 2024-10-11 02:44:38 +9879 9879 9880 987.9 1975.8000000000002 9879 1997-01-18 2024-10-11 02:44:39.000 1997-01-18 2024-10-11 02:44:39 +9881 9881 9882 988.1 1976.2 9881 1997-01-20 2024-10-11 02:44:41.000 1997-01-20 2024-10-11 02:44:41 +9882 9882 9883 988.2 1976.4 9882 1997-01-21 2024-10-11 02:44:42.000 1997-01-21 2024-10-11 02:44:42 +9883 9883 9884 988.3 1976.6000000000001 9883 1997-01-22 2024-10-11 02:44:43.000 1997-01-22 2024-10-11 02:44:43 +9884 9884 9885 988.4 1976.8000000000002 9884 1997-01-23 2024-10-11 02:44:44.000 1997-01-23 2024-10-11 02:44:44 +9886 9886 9887 988.6 1977.2 9886 1997-01-25 2024-10-11 02:44:46.000 1997-01-25 2024-10-11 02:44:46 +9887 9887 9888 988.7 1977.4 9887 1997-01-26 2024-10-11 02:44:47.000 1997-01-26 2024-10-11 02:44:47 +9888 9888 9889 988.8 1977.6000000000001 9888 1997-01-27 2024-10-11 02:44:48.000 1997-01-27 2024-10-11 02:44:48 +9889 9889 9890 988.9 1977.8000000000002 9889 1997-01-28 2024-10-11 02:44:49.000 1997-01-28 2024-10-11 02:44:49 +9891 9891 9892 989.1 1978.2 9891 1997-01-30 2024-10-11 02:44:51.000 1997-01-30 2024-10-11 02:44:51 +9892 9892 9893 989.2 1978.4 9892 1997-01-31 2024-10-11 02:44:52.000 1997-01-31 2024-10-11 02:44:52 +9893 9893 9894 989.3 1978.6000000000001 9893 1997-02-01 2024-10-11 02:44:53.000 1997-02-01 2024-10-11 02:44:53 +9894 9894 9895 989.4 1978.8000000000002 9894 1997-02-02 2024-10-11 02:44:54.000 1997-02-02 2024-10-11 02:44:54 +9896 9896 9897 989.6 1979.2 9896 1997-02-04 2024-10-11 02:44:56.000 1997-02-04 2024-10-11 02:44:56 +9897 9897 9898 989.7 1979.4 9897 1997-02-05 2024-10-11 02:44:57.000 1997-02-05 2024-10-11 02:44:57 +9898 9898 9899 989.8 1979.6000000000001 9898 1997-02-06 2024-10-11 02:44:58.000 1997-02-06 2024-10-11 02:44:58 +9899 9899 9900 989.9 1979.8000000000002 9899 1997-02-07 2024-10-11 02:44:59.000 1997-02-07 2024-10-11 02:44:59 +9901 9901 9902 990.1 1980.2 9901 1997-02-09 2024-10-11 02:45:01.000 1997-02-09 2024-10-11 02:45:01 +9902 9902 9903 990.2 1980.4 9902 1997-02-10 2024-10-11 02:45:02.000 1997-02-10 2024-10-11 02:45:02 +9903 9903 9904 990.3 1980.6000000000001 9903 1997-02-11 2024-10-11 02:45:03.000 1997-02-11 2024-10-11 02:45:03 +9904 9904 9905 990.4 1980.8000000000002 9904 1997-02-12 2024-10-11 02:45:04.000 1997-02-12 2024-10-11 02:45:04 +9906 9906 9907 990.6 1981.2 9906 1997-02-14 2024-10-11 02:45:06.000 1997-02-14 2024-10-11 02:45:06 +9907 9907 9908 990.7 1981.4 9907 1997-02-15 2024-10-11 02:45:07.000 1997-02-15 2024-10-11 02:45:07 +9908 9908 9909 990.8 1981.6000000000001 9908 1997-02-16 2024-10-11 02:45:08.000 1997-02-16 2024-10-11 02:45:08 +9909 9909 9910 990.9 1981.8000000000002 9909 1997-02-17 2024-10-11 02:45:09.000 1997-02-17 2024-10-11 02:45:09 +9911 9911 9912 991.1 1982.2 9911 1997-02-19 2024-10-11 02:45:11.000 1997-02-19 2024-10-11 02:45:11 +9912 9912 9913 991.2 1982.4 9912 1997-02-20 2024-10-11 02:45:12.000 1997-02-20 2024-10-11 02:45:12 +9913 9913 9914 991.3 1982.6000000000001 9913 1997-02-21 2024-10-11 02:45:13.000 1997-02-21 2024-10-11 02:45:13 +9914 9914 9915 991.4 1982.8000000000002 9914 1997-02-22 2024-10-11 02:45:14.000 1997-02-22 2024-10-11 02:45:14 +9916 9916 9917 991.6 1983.2 9916 1997-02-24 2024-10-11 02:45:16.000 1997-02-24 2024-10-11 02:45:16 +9917 9917 9918 991.7 1983.4 9917 1997-02-25 2024-10-11 02:45:17.000 1997-02-25 2024-10-11 02:45:17 +9918 9918 9919 991.8 1983.6000000000001 9918 1997-02-26 2024-10-11 02:45:18.000 1997-02-26 2024-10-11 02:45:18 +9919 9919 9920 991.9 1983.8000000000002 9919 1997-02-27 2024-10-11 02:45:19.000 1997-02-27 2024-10-11 02:45:19 +9921 9921 9922 992.1 1984.2 9921 1997-03-01 2024-10-11 02:45:21.000 1997-03-01 2024-10-11 02:45:21 +9922 9922 9923 992.2 1984.4 9922 1997-03-02 2024-10-11 02:45:22.000 1997-03-02 2024-10-11 02:45:22 +9923 9923 9924 992.3 1984.6000000000001 9923 1997-03-03 2024-10-11 02:45:23.000 1997-03-03 2024-10-11 02:45:23 +9924 9924 9925 992.4 1984.8000000000002 9924 1997-03-04 2024-10-11 02:45:24.000 1997-03-04 2024-10-11 02:45:24 +9926 9926 9927 992.6 1985.2 9926 1997-03-06 2024-10-11 02:45:26.000 1997-03-06 2024-10-11 02:45:26 +9927 9927 9928 992.7 1985.4 9927 1997-03-07 2024-10-11 02:45:27.000 1997-03-07 2024-10-11 02:45:27 +9928 9928 9929 992.8 1985.6000000000001 9928 1997-03-08 2024-10-11 02:45:28.000 1997-03-08 2024-10-11 02:45:28 +9929 9929 9930 992.9 1985.8000000000002 9929 1997-03-09 2024-10-11 02:45:29.000 1997-03-09 2024-10-11 02:45:29 +9931 9931 9932 993.1 1986.2 9931 1997-03-11 2024-10-11 02:45:31.000 1997-03-11 2024-10-11 02:45:31 +9932 9932 9933 993.2 1986.4 9932 1997-03-12 2024-10-11 02:45:32.000 1997-03-12 2024-10-11 02:45:32 +9933 9933 9934 993.3 1986.6000000000001 9933 1997-03-13 2024-10-11 02:45:33.000 1997-03-13 2024-10-11 02:45:33 +9934 9934 9935 993.4 1986.8000000000002 9934 1997-03-14 2024-10-11 02:45:34.000 1997-03-14 2024-10-11 02:45:34 +9936 9936 9937 993.6 1987.2 9936 1997-03-16 2024-10-11 02:45:36.000 1997-03-16 2024-10-11 02:45:36 +9937 9937 9938 993.7 1987.4 9937 1997-03-17 2024-10-11 02:45:37.000 1997-03-17 2024-10-11 02:45:37 +9938 9938 9939 993.8 1987.6000000000001 9938 1997-03-18 2024-10-11 02:45:38.000 1997-03-18 2024-10-11 02:45:38 +9939 9939 9940 993.9 1987.8000000000002 9939 1997-03-19 2024-10-11 02:45:39.000 1997-03-19 2024-10-11 02:45:39 +9941 9941 9942 994.1 1988.2 9941 1997-03-21 2024-10-11 02:45:41.000 1997-03-21 2024-10-11 02:45:41 +9942 9942 9943 994.2 1988.4 9942 1997-03-22 2024-10-11 02:45:42.000 1997-03-22 2024-10-11 02:45:42 +9943 9943 9944 994.3 1988.6000000000001 9943 1997-03-23 2024-10-11 02:45:43.000 1997-03-23 2024-10-11 02:45:43 +9944 9944 9945 994.4 1988.8000000000002 9944 1997-03-24 2024-10-11 02:45:44.000 1997-03-24 2024-10-11 02:45:44 +9946 9946 9947 994.6 1989.2 9946 1997-03-26 2024-10-11 02:45:46.000 1997-03-26 2024-10-11 02:45:46 +9947 9947 9948 994.7 1989.4 9947 1997-03-27 2024-10-11 02:45:47.000 1997-03-27 2024-10-11 02:45:47 +9948 9948 9949 994.8 1989.6000000000001 9948 1997-03-28 2024-10-11 02:45:48.000 1997-03-28 2024-10-11 02:45:48 +9949 9949 9950 994.9 1989.8000000000002 9949 1997-03-29 2024-10-11 02:45:49.000 1997-03-29 2024-10-11 02:45:49 +9951 9951 9952 995.1 1990.2 9951 1997-03-31 2024-10-11 02:45:51.000 1997-03-31 2024-10-11 02:45:51 +9952 9952 9953 995.2 1990.4 9952 1997-04-01 2024-10-11 02:45:52.000 1997-04-01 2024-10-11 02:45:52 +9953 9953 9954 995.3 1990.6000000000001 9953 1997-04-02 2024-10-11 02:45:53.000 1997-04-02 2024-10-11 02:45:53 +9954 9954 9955 995.4 1990.8000000000002 9954 1997-04-03 2024-10-11 02:45:54.000 1997-04-03 2024-10-11 02:45:54 +9956 9956 9957 995.6 1991.2 9956 1997-04-05 2024-10-11 02:45:56.000 1997-04-05 2024-10-11 02:45:56 +9957 9957 9958 995.7 1991.4 9957 1997-04-06 2024-10-11 02:45:57.000 1997-04-06 2024-10-11 02:45:57 +9958 9958 9959 995.8 1991.6000000000001 9958 1997-04-07 2024-10-11 02:45:58.000 1997-04-07 2024-10-11 02:45:58 +9959 9959 9960 995.9 1991.8000000000002 9959 1997-04-08 2024-10-11 02:45:59.000 1997-04-08 2024-10-11 02:45:59 +9961 9961 9962 996.1 1992.2 9961 1997-04-10 2024-10-11 02:46:01.000 1997-04-10 2024-10-11 02:46:01 +9962 9962 9963 996.2 1992.4 9962 1997-04-11 2024-10-11 02:46:02.000 1997-04-11 2024-10-11 02:46:02 +9963 9963 9964 996.3 1992.6000000000001 9963 1997-04-12 2024-10-11 02:46:03.000 1997-04-12 2024-10-11 02:46:03 +9964 9964 9965 996.4 1992.8000000000002 9964 1997-04-13 2024-10-11 02:46:04.000 1997-04-13 2024-10-11 02:46:04 +9966 9966 9967 996.6 1993.2 9966 1997-04-15 2024-10-11 02:46:06.000 1997-04-15 2024-10-11 02:46:06 +9967 9967 9968 996.7 1993.4 9967 1997-04-16 2024-10-11 02:46:07.000 1997-04-16 2024-10-11 02:46:07 +9968 9968 9969 996.8 1993.6000000000001 9968 1997-04-17 2024-10-11 02:46:08.000 1997-04-17 2024-10-11 02:46:08 +9969 9969 9970 996.9 1993.8000000000002 9969 1997-04-18 2024-10-11 02:46:09.000 1997-04-18 2024-10-11 02:46:09 +9971 9971 9972 997.1 1994.2 9971 1997-04-20 2024-10-11 02:46:11.000 1997-04-20 2024-10-11 02:46:11 +9972 9972 9973 997.2 1994.4 9972 1997-04-21 2024-10-11 02:46:12.000 1997-04-21 2024-10-11 02:46:12 +9973 9973 9974 997.3 1994.6000000000001 9973 1997-04-22 2024-10-11 02:46:13.000 1997-04-22 2024-10-11 02:46:13 +9974 9974 9975 997.4 1994.8000000000002 9974 1997-04-23 2024-10-11 02:46:14.000 1997-04-23 2024-10-11 02:46:14 +9976 9976 9977 997.6 1995.2 9976 1997-04-25 2024-10-11 02:46:16.000 1997-04-25 2024-10-11 02:46:16 +9977 9977 9978 997.7 1995.4 9977 1997-04-26 2024-10-11 02:46:17.000 1997-04-26 2024-10-11 02:46:17 +9978 9978 9979 997.8 1995.6000000000001 9978 1997-04-27 2024-10-11 02:46:18.000 1997-04-27 2024-10-11 02:46:18 +9979 9979 9980 997.9 1995.8000000000002 9979 1997-04-28 2024-10-11 02:46:19.000 1997-04-28 2024-10-11 02:46:19 +9981 9981 9982 998.1 1996.2 9981 1997-04-30 2024-10-11 02:46:21.000 1997-04-30 2024-10-11 02:46:21 +9982 9982 9983 998.2 1996.4 9982 1997-05-01 2024-10-11 02:46:22.000 1997-05-01 2024-10-11 02:46:22 +9983 9983 9984 998.3 1996.6000000000001 9983 1997-05-02 2024-10-11 02:46:23.000 1997-05-02 2024-10-11 02:46:23 +9984 9984 9985 998.4 1996.8000000000002 9984 1997-05-03 2024-10-11 02:46:24.000 1997-05-03 2024-10-11 02:46:24 +9986 9986 9987 998.6 1997.2 9986 1997-05-05 2024-10-11 02:46:26.000 1997-05-05 2024-10-11 02:46:26 +9987 9987 9988 998.7 1997.4 9987 1997-05-06 2024-10-11 02:46:27.000 1997-05-06 2024-10-11 02:46:27 +9988 9988 9989 998.8 1997.6000000000001 9988 1997-05-07 2024-10-11 02:46:28.000 1997-05-07 2024-10-11 02:46:28 +9989 9989 9990 998.9 1997.8000000000002 9989 1997-05-08 2024-10-11 02:46:29.000 1997-05-08 2024-10-11 02:46:29 +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +select * from test_nullable_native_parquet where date >= '1970-01-10'; +9 9 10 0.9 1.8 9 1970-01-10 2024-10-11 00:00:09.000 1970-01-10 2024-10-11 00:00:09 +11 11 12 1.1 2.2 11 1970-01-12 2024-10-11 00:00:11.000 1970-01-12 2024-10-11 00:00:11 +12 12 13 1.2 2.4000000000000004 12 1970-01-13 2024-10-11 00:00:12.000 1970-01-13 2024-10-11 00:00:12 +13 13 14 1.3 2.6 13 1970-01-14 2024-10-11 00:00:13.000 1970-01-14 2024-10-11 00:00:13 +14 14 15 1.4 2.8000000000000003 14 1970-01-15 2024-10-11 00:00:14.000 1970-01-15 2024-10-11 00:00:14 +16 16 17 1.6 3.2 16 1970-01-17 2024-10-11 00:00:16.000 1970-01-17 2024-10-11 00:00:16 +17 17 18 1.7 3.4000000000000004 17 1970-01-18 2024-10-11 00:00:17.000 1970-01-18 2024-10-11 00:00:17 +18 18 19 1.8 3.6 18 1970-01-19 2024-10-11 00:00:18.000 1970-01-19 2024-10-11 00:00:18 +19 19 20 1.9 3.8000000000000003 19 1970-01-20 2024-10-11 00:00:19.000 1970-01-20 2024-10-11 00:00:19 +21 21 22 2.1 4.2 21 1970-01-22 2024-10-11 00:00:21.000 1970-01-22 2024-10-11 00:00:21 +22 22 23 2.2 4.4 22 1970-01-23 2024-10-11 00:00:22.000 1970-01-23 2024-10-11 00:00:22 +23 23 24 2.3 4.6000000000000005 23 1970-01-24 2024-10-11 00:00:23.000 1970-01-24 2024-10-11 00:00:23 +24 24 25 2.4 4.800000000000001 24 1970-01-25 2024-10-11 00:00:24.000 1970-01-25 2024-10-11 00:00:24 +26 26 27 2.6 5.2 26 1970-01-27 2024-10-11 00:00:26.000 1970-01-27 2024-10-11 00:00:26 +27 27 28 2.7 5.4 27 1970-01-28 2024-10-11 00:00:27.000 1970-01-28 2024-10-11 00:00:27 +28 28 29 2.8 5.6000000000000005 28 1970-01-29 2024-10-11 00:00:28.000 1970-01-29 2024-10-11 00:00:28 +29 29 30 2.9 5.800000000000001 29 1970-01-30 2024-10-11 00:00:29.000 1970-01-30 2024-10-11 00:00:29 +31 31 32 3.1 6.2 31 1970-02-01 2024-10-11 00:00:31.000 1970-02-01 2024-10-11 00:00:31 +32 32 33 3.2 6.4 32 1970-02-02 2024-10-11 00:00:32.000 1970-02-02 2024-10-11 00:00:32 +33 33 34 3.3 6.6000000000000005 33 1970-02-03 2024-10-11 00:00:33.000 1970-02-03 2024-10-11 00:00:33 +34 34 35 3.4 6.800000000000001 34 1970-02-04 2024-10-11 00:00:34.000 1970-02-04 2024-10-11 00:00:34 +36 36 37 3.6 7.2 36 1970-02-06 2024-10-11 00:00:36.000 1970-02-06 2024-10-11 00:00:36 +37 37 38 3.7 7.4 37 1970-02-07 2024-10-11 00:00:37.000 1970-02-07 2024-10-11 00:00:37 +38 38 39 3.8 7.6000000000000005 38 1970-02-08 2024-10-11 00:00:38.000 1970-02-08 2024-10-11 00:00:38 +39 39 40 3.9 7.800000000000001 39 1970-02-09 2024-10-11 00:00:39.000 1970-02-09 2024-10-11 00:00:39 +41 41 42 4.1 8.200000000000001 41 1970-02-11 2024-10-11 00:00:41.000 1970-02-11 2024-10-11 00:00:41 +42 42 43 4.2 8.4 42 1970-02-12 2024-10-11 00:00:42.000 1970-02-12 2024-10-11 00:00:42 +43 43 44 4.3 8.6 43 1970-02-13 2024-10-11 00:00:43.000 1970-02-13 2024-10-11 00:00:43 +44 44 45 4.4 8.8 44 1970-02-14 2024-10-11 00:00:44.000 1970-02-14 2024-10-11 00:00:44 +46 46 47 4.6 9.200000000000001 46 1970-02-16 2024-10-11 00:00:46.000 1970-02-16 2024-10-11 00:00:46 +47 47 48 4.7 9.4 47 1970-02-17 2024-10-11 00:00:47.000 1970-02-17 2024-10-11 00:00:47 +48 48 49 4.8 9.600000000000001 48 1970-02-18 2024-10-11 00:00:48.000 1970-02-18 2024-10-11 00:00:48 +49 49 50 4.9 9.8 49 1970-02-19 2024-10-11 00:00:49.000 1970-02-19 2024-10-11 00:00:49 +51 51 52 5.1 10.200000000000001 51 1970-02-21 2024-10-11 00:00:51.000 1970-02-21 2024-10-11 00:00:51 +52 52 53 5.2 10.4 52 1970-02-22 2024-10-11 00:00:52.000 1970-02-22 2024-10-11 00:00:52 +53 53 54 5.3 10.600000000000001 53 1970-02-23 2024-10-11 00:00:53.000 1970-02-23 2024-10-11 00:00:53 +54 54 55 5.4 10.8 54 1970-02-24 2024-10-11 00:00:54.000 1970-02-24 2024-10-11 00:00:54 +56 56 57 5.6 11.200000000000001 56 1970-02-26 2024-10-11 00:00:56.000 1970-02-26 2024-10-11 00:00:56 +57 57 58 5.7 11.4 57 1970-02-27 2024-10-11 00:00:57.000 1970-02-27 2024-10-11 00:00:57 +58 58 59 5.8 11.600000000000001 58 1970-02-28 2024-10-11 00:00:58.000 1970-02-28 2024-10-11 00:00:58 +59 59 60 5.9 11.8 59 1970-03-01 2024-10-11 00:00:59.000 1970-03-01 2024-10-11 00:00:59 +61 61 62 6.1 12.200000000000001 61 1970-03-03 2024-10-11 00:01:01.000 1970-03-03 2024-10-11 00:01:01 +62 62 63 6.2 12.4 62 1970-03-04 2024-10-11 00:01:02.000 1970-03-04 2024-10-11 00:01:02 +63 63 64 6.3 12.600000000000001 63 1970-03-05 2024-10-11 00:01:03.000 1970-03-05 2024-10-11 00:01:03 +64 64 65 6.4 12.8 64 1970-03-06 2024-10-11 00:01:04.000 1970-03-06 2024-10-11 00:01:04 +66 66 67 6.6 13.200000000000001 66 1970-03-08 2024-10-11 00:01:06.000 1970-03-08 2024-10-11 00:01:06 +67 67 68 6.7 13.4 67 1970-03-09 2024-10-11 00:01:07.000 1970-03-09 2024-10-11 00:01:07 +68 68 69 6.8 13.600000000000001 68 1970-03-10 2024-10-11 00:01:08.000 1970-03-10 2024-10-11 00:01:08 +69 69 70 6.9 13.8 69 1970-03-11 2024-10-11 00:01:09.000 1970-03-11 2024-10-11 00:01:09 +71 71 72 7.1 14.200000000000001 71 1970-03-13 2024-10-11 00:01:11.000 1970-03-13 2024-10-11 00:01:11 +72 72 73 7.2 14.4 72 1970-03-14 2024-10-11 00:01:12.000 1970-03-14 2024-10-11 00:01:12 +73 73 74 7.3 14.600000000000001 73 1970-03-15 2024-10-11 00:01:13.000 1970-03-15 2024-10-11 00:01:13 +74 74 75 7.4 14.8 74 1970-03-16 2024-10-11 00:01:14.000 1970-03-16 2024-10-11 00:01:14 +76 76 77 7.6 15.200000000000001 76 1970-03-18 2024-10-11 00:01:16.000 1970-03-18 2024-10-11 00:01:16 +77 77 78 7.7 15.4 77 1970-03-19 2024-10-11 00:01:17.000 1970-03-19 2024-10-11 00:01:17 +78 78 79 7.8 15.600000000000001 78 1970-03-20 2024-10-11 00:01:18.000 1970-03-20 2024-10-11 00:01:18 +79 79 80 7.9 15.8 79 1970-03-21 2024-10-11 00:01:19.000 1970-03-21 2024-10-11 00:01:19 +81 81 82 8.1 16.2 81 1970-03-23 2024-10-11 00:01:21.000 1970-03-23 2024-10-11 00:01:21 +82 82 83 8.2 16.400000000000002 82 1970-03-24 2024-10-11 00:01:22.000 1970-03-24 2024-10-11 00:01:22 +83 83 84 8.3 16.6 83 1970-03-25 2024-10-11 00:01:23.000 1970-03-25 2024-10-11 00:01:23 +84 84 85 8.4 16.8 84 1970-03-26 2024-10-11 00:01:24.000 1970-03-26 2024-10-11 00:01:24 +86 86 87 8.6 17.2 86 1970-03-28 2024-10-11 00:01:26.000 1970-03-28 2024-10-11 00:01:26 +87 87 88 8.7 17.400000000000002 87 1970-03-29 2024-10-11 00:01:27.000 1970-03-29 2024-10-11 00:01:27 +88 88 89 8.8 17.6 88 1970-03-30 2024-10-11 00:01:28.000 1970-03-30 2024-10-11 00:01:28 +89 89 90 8.9 17.8 89 1970-03-31 2024-10-11 00:01:29.000 1970-03-31 2024-10-11 00:01:29 +91 91 92 9.1 18.2 91 1970-04-02 2024-10-11 00:01:31.000 1970-04-02 2024-10-11 00:01:31 +92 92 93 9.2 18.400000000000002 92 1970-04-03 2024-10-11 00:01:32.000 1970-04-03 2024-10-11 00:01:32 +93 93 94 9.3 18.6 93 1970-04-04 2024-10-11 00:01:33.000 1970-04-04 2024-10-11 00:01:33 +94 94 95 9.4 18.8 94 1970-04-05 2024-10-11 00:01:34.000 1970-04-05 2024-10-11 00:01:34 +96 96 97 9.6 19.200000000000003 96 1970-04-07 2024-10-11 00:01:36.000 1970-04-07 2024-10-11 00:01:36 +97 97 98 9.7 19.400000000000002 97 1970-04-08 2024-10-11 00:01:37.000 1970-04-08 2024-10-11 00:01:37 +98 98 99 9.8 19.6 98 1970-04-09 2024-10-11 00:01:38.000 1970-04-09 2024-10-11 00:01:38 +99 99 100 9.9 19.8 99 1970-04-10 2024-10-11 00:01:39.000 1970-04-10 2024-10-11 00:01:39 +101 101 102 10.1 20.200000000000003 101 1970-04-12 2024-10-11 00:01:41.000 1970-04-12 2024-10-11 00:01:41 +102 102 103 10.2 20.400000000000002 102 1970-04-13 2024-10-11 00:01:42.000 1970-04-13 2024-10-11 00:01:42 +103 103 104 10.3 20.6 103 1970-04-14 2024-10-11 00:01:43.000 1970-04-14 2024-10-11 00:01:43 +104 104 105 10.4 20.8 104 1970-04-15 2024-10-11 00:01:44.000 1970-04-15 2024-10-11 00:01:44 +106 106 107 10.6 21.200000000000003 106 1970-04-17 2024-10-11 00:01:46.000 1970-04-17 2024-10-11 00:01:46 +107 107 108 10.7 21.400000000000002 107 1970-04-18 2024-10-11 00:01:47.000 1970-04-18 2024-10-11 00:01:47 +108 108 109 10.8 21.6 108 1970-04-19 2024-10-11 00:01:48.000 1970-04-19 2024-10-11 00:01:48 +109 109 110 10.9 21.8 109 1970-04-20 2024-10-11 00:01:49.000 1970-04-20 2024-10-11 00:01:49 +111 111 112 11.1 22.200000000000003 111 1970-04-22 2024-10-11 00:01:51.000 1970-04-22 2024-10-11 00:01:51 +112 112 113 11.2 22.400000000000002 112 1970-04-23 2024-10-11 00:01:52.000 1970-04-23 2024-10-11 00:01:52 +113 113 114 11.3 22.6 113 1970-04-24 2024-10-11 00:01:53.000 1970-04-24 2024-10-11 00:01:53 +114 114 115 11.4 22.8 114 1970-04-25 2024-10-11 00:01:54.000 1970-04-25 2024-10-11 00:01:54 +116 116 117 11.6 23.200000000000003 116 1970-04-27 2024-10-11 00:01:56.000 1970-04-27 2024-10-11 00:01:56 +117 117 118 11.7 23.400000000000002 117 1970-04-28 2024-10-11 00:01:57.000 1970-04-28 2024-10-11 00:01:57 +118 118 119 11.8 23.6 118 1970-04-29 2024-10-11 00:01:58.000 1970-04-29 2024-10-11 00:01:58 +119 119 120 11.9 23.8 119 1970-04-30 2024-10-11 00:01:59.000 1970-04-30 2024-10-11 00:01:59 +121 121 122 12.1 24.200000000000003 121 1970-05-02 2024-10-11 00:02:01.000 1970-05-02 2024-10-11 00:02:01 +122 122 123 12.2 24.400000000000002 122 1970-05-03 2024-10-11 00:02:02.000 1970-05-03 2024-10-11 00:02:02 +123 123 124 12.3 24.6 123 1970-05-04 2024-10-11 00:02:03.000 1970-05-04 2024-10-11 00:02:03 +124 124 125 12.4 24.8 124 1970-05-05 2024-10-11 00:02:04.000 1970-05-05 2024-10-11 00:02:04 +126 126 127 12.6 25.200000000000003 126 1970-05-07 2024-10-11 00:02:06.000 1970-05-07 2024-10-11 00:02:06 +127 127 128 12.7 25.400000000000002 127 1970-05-08 2024-10-11 00:02:07.000 1970-05-08 2024-10-11 00:02:07 +128 128 129 12.8 25.6 128 1970-05-09 2024-10-11 00:02:08.000 1970-05-09 2024-10-11 00:02:08 +129 129 130 12.9 25.8 129 1970-05-10 2024-10-11 00:02:09.000 1970-05-10 2024-10-11 00:02:09 +131 131 132 13.1 26.200000000000003 131 1970-05-12 2024-10-11 00:02:11.000 1970-05-12 2024-10-11 00:02:11 +132 132 133 13.2 26.400000000000002 132 1970-05-13 2024-10-11 00:02:12.000 1970-05-13 2024-10-11 00:02:12 +133 133 134 13.3 26.6 133 1970-05-14 2024-10-11 00:02:13.000 1970-05-14 2024-10-11 00:02:13 +134 134 135 13.4 26.8 134 1970-05-15 2024-10-11 00:02:14.000 1970-05-15 2024-10-11 00:02:14 +136 136 137 13.6 27.200000000000003 136 1970-05-17 2024-10-11 00:02:16.000 1970-05-17 2024-10-11 00:02:16 +137 137 138 13.7 27.400000000000002 137 1970-05-18 2024-10-11 00:02:17.000 1970-05-18 2024-10-11 00:02:17 +138 138 139 13.8 27.6 138 1970-05-19 2024-10-11 00:02:18.000 1970-05-19 2024-10-11 00:02:18 +139 139 140 13.9 27.8 139 1970-05-20 2024-10-11 00:02:19.000 1970-05-20 2024-10-11 00:02:19 +141 141 142 14.1 28.200000000000003 141 1970-05-22 2024-10-11 00:02:21.000 1970-05-22 2024-10-11 00:02:21 +142 142 143 14.2 28.400000000000002 142 1970-05-23 2024-10-11 00:02:22.000 1970-05-23 2024-10-11 00:02:22 +143 143 144 14.3 28.6 143 1970-05-24 2024-10-11 00:02:23.000 1970-05-24 2024-10-11 00:02:23 +144 144 145 14.4 28.8 144 1970-05-25 2024-10-11 00:02:24.000 1970-05-25 2024-10-11 00:02:24 +146 146 147 14.6 29.200000000000003 146 1970-05-27 2024-10-11 00:02:26.000 1970-05-27 2024-10-11 00:02:26 +147 147 148 14.7 29.400000000000002 147 1970-05-28 2024-10-11 00:02:27.000 1970-05-28 2024-10-11 00:02:27 +148 148 149 14.8 29.6 148 1970-05-29 2024-10-11 00:02:28.000 1970-05-29 2024-10-11 00:02:28 +149 149 150 14.9 29.8 149 1970-05-30 2024-10-11 00:02:29.000 1970-05-30 2024-10-11 00:02:29 +151 151 152 15.1 30.200000000000003 151 1970-06-01 2024-10-11 00:02:31.000 1970-06-01 2024-10-11 00:02:31 +152 152 153 15.2 30.400000000000002 152 1970-06-02 2024-10-11 00:02:32.000 1970-06-02 2024-10-11 00:02:32 +153 153 154 15.3 30.6 153 1970-06-03 2024-10-11 00:02:33.000 1970-06-03 2024-10-11 00:02:33 +154 154 155 15.4 30.8 154 1970-06-04 2024-10-11 00:02:34.000 1970-06-04 2024-10-11 00:02:34 +156 156 157 15.6 31.200000000000003 156 1970-06-06 2024-10-11 00:02:36.000 1970-06-06 2024-10-11 00:02:36 +157 157 158 15.7 31.400000000000002 157 1970-06-07 2024-10-11 00:02:37.000 1970-06-07 2024-10-11 00:02:37 +158 158 159 15.8 31.6 158 1970-06-08 2024-10-11 00:02:38.000 1970-06-08 2024-10-11 00:02:38 +159 159 160 15.9 31.8 159 1970-06-09 2024-10-11 00:02:39.000 1970-06-09 2024-10-11 00:02:39 +161 161 162 16.1 32.2 161 1970-06-11 2024-10-11 00:02:41.000 1970-06-11 2024-10-11 00:02:41 +162 162 163 16.2 32.4 162 1970-06-12 2024-10-11 00:02:42.000 1970-06-12 2024-10-11 00:02:42 +163 163 164 16.3 32.6 163 1970-06-13 2024-10-11 00:02:43.000 1970-06-13 2024-10-11 00:02:43 +164 164 165 16.4 32.800000000000004 164 1970-06-14 2024-10-11 00:02:44.000 1970-06-14 2024-10-11 00:02:44 +166 166 167 16.6 33.2 166 1970-06-16 2024-10-11 00:02:46.000 1970-06-16 2024-10-11 00:02:46 +167 167 168 16.7 33.4 167 1970-06-17 2024-10-11 00:02:47.000 1970-06-17 2024-10-11 00:02:47 +168 168 169 16.8 33.6 168 1970-06-18 2024-10-11 00:02:48.000 1970-06-18 2024-10-11 00:02:48 +169 169 170 16.9 33.800000000000004 169 1970-06-19 2024-10-11 00:02:49.000 1970-06-19 2024-10-11 00:02:49 +171 171 172 17.1 34.2 171 1970-06-21 2024-10-11 00:02:51.000 1970-06-21 2024-10-11 00:02:51 +172 172 173 17.2 34.4 172 1970-06-22 2024-10-11 00:02:52.000 1970-06-22 2024-10-11 00:02:52 +173 173 174 17.3 34.6 173 1970-06-23 2024-10-11 00:02:53.000 1970-06-23 2024-10-11 00:02:53 +174 174 175 17.4 34.800000000000004 174 1970-06-24 2024-10-11 00:02:54.000 1970-06-24 2024-10-11 00:02:54 +176 176 177 17.6 35.2 176 1970-06-26 2024-10-11 00:02:56.000 1970-06-26 2024-10-11 00:02:56 +177 177 178 17.7 35.4 177 1970-06-27 2024-10-11 00:02:57.000 1970-06-27 2024-10-11 00:02:57 +178 178 179 17.8 35.6 178 1970-06-28 2024-10-11 00:02:58.000 1970-06-28 2024-10-11 00:02:58 +179 179 180 17.9 35.800000000000004 179 1970-06-29 2024-10-11 00:02:59.000 1970-06-29 2024-10-11 00:02:59 +181 181 182 18.1 36.2 181 1970-07-01 2024-10-11 00:03:01.000 1970-07-01 2024-10-11 00:03:01 +182 182 183 18.2 36.4 182 1970-07-02 2024-10-11 00:03:02.000 1970-07-02 2024-10-11 00:03:02 +183 183 184 18.3 36.6 183 1970-07-03 2024-10-11 00:03:03.000 1970-07-03 2024-10-11 00:03:03 +184 184 185 18.4 36.800000000000004 184 1970-07-04 2024-10-11 00:03:04.000 1970-07-04 2024-10-11 00:03:04 +186 186 187 18.6 37.2 186 1970-07-06 2024-10-11 00:03:06.000 1970-07-06 2024-10-11 00:03:06 +187 187 188 18.7 37.4 187 1970-07-07 2024-10-11 00:03:07.000 1970-07-07 2024-10-11 00:03:07 +188 188 189 18.8 37.6 188 1970-07-08 2024-10-11 00:03:08.000 1970-07-08 2024-10-11 00:03:08 +189 189 190 18.9 37.800000000000004 189 1970-07-09 2024-10-11 00:03:09.000 1970-07-09 2024-10-11 00:03:09 +191 191 192 19.1 38.2 191 1970-07-11 2024-10-11 00:03:11.000 1970-07-11 2024-10-11 00:03:11 +192 192 193 19.2 38.400000000000006 192 1970-07-12 2024-10-11 00:03:12.000 1970-07-12 2024-10-11 00:03:12 +193 193 194 19.3 38.6 193 1970-07-13 2024-10-11 00:03:13.000 1970-07-13 2024-10-11 00:03:13 +194 194 195 19.4 38.800000000000004 194 1970-07-14 2024-10-11 00:03:14.000 1970-07-14 2024-10-11 00:03:14 +196 196 197 19.6 39.2 196 1970-07-16 2024-10-11 00:03:16.000 1970-07-16 2024-10-11 00:03:16 +197 197 198 19.7 39.400000000000006 197 1970-07-17 2024-10-11 00:03:17.000 1970-07-17 2024-10-11 00:03:17 +198 198 199 19.8 39.6 198 1970-07-18 2024-10-11 00:03:18.000 1970-07-18 2024-10-11 00:03:18 +199 199 200 19.9 39.800000000000004 199 1970-07-19 2024-10-11 00:03:19.000 1970-07-19 2024-10-11 00:03:19 +201 201 202 20.1 40.2 201 1970-07-21 2024-10-11 00:03:21.000 1970-07-21 2024-10-11 00:03:21 +202 202 203 20.2 40.400000000000006 202 1970-07-22 2024-10-11 00:03:22.000 1970-07-22 2024-10-11 00:03:22 +203 203 204 20.3 40.6 203 1970-07-23 2024-10-11 00:03:23.000 1970-07-23 2024-10-11 00:03:23 +204 204 205 20.4 40.800000000000004 204 1970-07-24 2024-10-11 00:03:24.000 1970-07-24 2024-10-11 00:03:24 +206 206 207 20.6 41.2 206 1970-07-26 2024-10-11 00:03:26.000 1970-07-26 2024-10-11 00:03:26 +207 207 208 20.7 41.400000000000006 207 1970-07-27 2024-10-11 00:03:27.000 1970-07-27 2024-10-11 00:03:27 +208 208 209 20.8 41.6 208 1970-07-28 2024-10-11 00:03:28.000 1970-07-28 2024-10-11 00:03:28 +209 209 210 20.9 41.800000000000004 209 1970-07-29 2024-10-11 00:03:29.000 1970-07-29 2024-10-11 00:03:29 +211 211 212 21.1 42.2 211 1970-07-31 2024-10-11 00:03:31.000 1970-07-31 2024-10-11 00:03:31 +212 212 213 21.2 42.400000000000006 212 1970-08-01 2024-10-11 00:03:32.000 1970-08-01 2024-10-11 00:03:32 +213 213 214 21.3 42.6 213 1970-08-02 2024-10-11 00:03:33.000 1970-08-02 2024-10-11 00:03:33 +214 214 215 21.4 42.800000000000004 214 1970-08-03 2024-10-11 00:03:34.000 1970-08-03 2024-10-11 00:03:34 +216 216 217 21.6 43.2 216 1970-08-05 2024-10-11 00:03:36.000 1970-08-05 2024-10-11 00:03:36 +217 217 218 21.7 43.400000000000006 217 1970-08-06 2024-10-11 00:03:37.000 1970-08-06 2024-10-11 00:03:37 +218 218 219 21.8 43.6 218 1970-08-07 2024-10-11 00:03:38.000 1970-08-07 2024-10-11 00:03:38 +219 219 220 21.9 43.800000000000004 219 1970-08-08 2024-10-11 00:03:39.000 1970-08-08 2024-10-11 00:03:39 +221 221 222 22.1 44.2 221 1970-08-10 2024-10-11 00:03:41.000 1970-08-10 2024-10-11 00:03:41 +222 222 223 22.2 44.400000000000006 222 1970-08-11 2024-10-11 00:03:42.000 1970-08-11 2024-10-11 00:03:42 +223 223 224 22.3 44.6 223 1970-08-12 2024-10-11 00:03:43.000 1970-08-12 2024-10-11 00:03:43 +224 224 225 22.4 44.800000000000004 224 1970-08-13 2024-10-11 00:03:44.000 1970-08-13 2024-10-11 00:03:44 +226 226 227 22.6 45.2 226 1970-08-15 2024-10-11 00:03:46.000 1970-08-15 2024-10-11 00:03:46 +227 227 228 22.7 45.400000000000006 227 1970-08-16 2024-10-11 00:03:47.000 1970-08-16 2024-10-11 00:03:47 +228 228 229 22.8 45.6 228 1970-08-17 2024-10-11 00:03:48.000 1970-08-17 2024-10-11 00:03:48 +229 229 230 22.9 45.800000000000004 229 1970-08-18 2024-10-11 00:03:49.000 1970-08-18 2024-10-11 00:03:49 +231 231 232 23.1 46.2 231 1970-08-20 2024-10-11 00:03:51.000 1970-08-20 2024-10-11 00:03:51 +232 232 233 23.2 46.400000000000006 232 1970-08-21 2024-10-11 00:03:52.000 1970-08-21 2024-10-11 00:03:52 +233 233 234 23.3 46.6 233 1970-08-22 2024-10-11 00:03:53.000 1970-08-22 2024-10-11 00:03:53 +234 234 235 23.4 46.800000000000004 234 1970-08-23 2024-10-11 00:03:54.000 1970-08-23 2024-10-11 00:03:54 +236 236 237 23.6 47.2 236 1970-08-25 2024-10-11 00:03:56.000 1970-08-25 2024-10-11 00:03:56 +237 237 238 23.7 47.400000000000006 237 1970-08-26 2024-10-11 00:03:57.000 1970-08-26 2024-10-11 00:03:57 +238 238 239 23.8 47.6 238 1970-08-27 2024-10-11 00:03:58.000 1970-08-27 2024-10-11 00:03:58 +239 239 240 23.9 47.800000000000004 239 1970-08-28 2024-10-11 00:03:59.000 1970-08-28 2024-10-11 00:03:59 +241 241 242 24.1 48.2 241 1970-08-30 2024-10-11 00:04:01.000 1970-08-30 2024-10-11 00:04:01 +242 242 243 24.2 48.400000000000006 242 1970-08-31 2024-10-11 00:04:02.000 1970-08-31 2024-10-11 00:04:02 +243 243 244 24.3 48.6 243 1970-09-01 2024-10-11 00:04:03.000 1970-09-01 2024-10-11 00:04:03 +244 244 245 24.4 48.800000000000004 244 1970-09-02 2024-10-11 00:04:04.000 1970-09-02 2024-10-11 00:04:04 +246 246 247 24.6 49.2 246 1970-09-04 2024-10-11 00:04:06.000 1970-09-04 2024-10-11 00:04:06 +247 247 248 24.7 49.400000000000006 247 1970-09-05 2024-10-11 00:04:07.000 1970-09-05 2024-10-11 00:04:07 +248 248 249 24.8 49.6 248 1970-09-06 2024-10-11 00:04:08.000 1970-09-06 2024-10-11 00:04:08 +249 249 250 24.9 49.800000000000004 249 1970-09-07 2024-10-11 00:04:09.000 1970-09-07 2024-10-11 00:04:09 +251 251 252 25.1 50.2 251 1970-09-09 2024-10-11 00:04:11.000 1970-09-09 2024-10-11 00:04:11 +252 252 253 25.2 50.400000000000006 252 1970-09-10 2024-10-11 00:04:12.000 1970-09-10 2024-10-11 00:04:12 +253 253 254 25.3 50.6 253 1970-09-11 2024-10-11 00:04:13.000 1970-09-11 2024-10-11 00:04:13 +254 254 255 25.4 50.800000000000004 254 1970-09-12 2024-10-11 00:04:14.000 1970-09-12 2024-10-11 00:04:14 +256 256 257 25.6 51.2 256 1970-09-14 2024-10-11 00:04:16.000 1970-09-14 2024-10-11 00:04:16 +257 257 258 25.7 51.400000000000006 257 1970-09-15 2024-10-11 00:04:17.000 1970-09-15 2024-10-11 00:04:17 +258 258 259 25.8 51.6 258 1970-09-16 2024-10-11 00:04:18.000 1970-09-16 2024-10-11 00:04:18 +259 259 260 25.9 51.800000000000004 259 1970-09-17 2024-10-11 00:04:19.000 1970-09-17 2024-10-11 00:04:19 +261 261 262 26.1 52.2 261 1970-09-19 2024-10-11 00:04:21.000 1970-09-19 2024-10-11 00:04:21 +262 262 263 26.2 52.400000000000006 262 1970-09-20 2024-10-11 00:04:22.000 1970-09-20 2024-10-11 00:04:22 +263 263 264 26.3 52.6 263 1970-09-21 2024-10-11 00:04:23.000 1970-09-21 2024-10-11 00:04:23 +264 264 265 26.4 52.800000000000004 264 1970-09-22 2024-10-11 00:04:24.000 1970-09-22 2024-10-11 00:04:24 +266 266 267 26.6 53.2 266 1970-09-24 2024-10-11 00:04:26.000 1970-09-24 2024-10-11 00:04:26 +267 267 268 26.7 53.400000000000006 267 1970-09-25 2024-10-11 00:04:27.000 1970-09-25 2024-10-11 00:04:27 +268 268 269 26.8 53.6 268 1970-09-26 2024-10-11 00:04:28.000 1970-09-26 2024-10-11 00:04:28 +269 269 270 26.9 53.800000000000004 269 1970-09-27 2024-10-11 00:04:29.000 1970-09-27 2024-10-11 00:04:29 +271 271 272 27.1 54.2 271 1970-09-29 2024-10-11 00:04:31.000 1970-09-29 2024-10-11 00:04:31 +272 272 273 27.2 54.400000000000006 272 1970-09-30 2024-10-11 00:04:32.000 1970-09-30 2024-10-11 00:04:32 +273 273 274 27.3 54.6 273 1970-10-01 2024-10-11 00:04:33.000 1970-10-01 2024-10-11 00:04:33 +274 274 275 27.4 54.800000000000004 274 1970-10-02 2024-10-11 00:04:34.000 1970-10-02 2024-10-11 00:04:34 +276 276 277 27.6 55.2 276 1970-10-04 2024-10-11 00:04:36.000 1970-10-04 2024-10-11 00:04:36 +277 277 278 27.7 55.400000000000006 277 1970-10-05 2024-10-11 00:04:37.000 1970-10-05 2024-10-11 00:04:37 +278 278 279 27.8 55.6 278 1970-10-06 2024-10-11 00:04:38.000 1970-10-06 2024-10-11 00:04:38 +279 279 280 27.9 55.800000000000004 279 1970-10-07 2024-10-11 00:04:39.000 1970-10-07 2024-10-11 00:04:39 +281 281 282 28.1 56.2 281 1970-10-09 2024-10-11 00:04:41.000 1970-10-09 2024-10-11 00:04:41 +282 282 283 28.2 56.400000000000006 282 1970-10-10 2024-10-11 00:04:42.000 1970-10-10 2024-10-11 00:04:42 +283 283 284 28.3 56.6 283 1970-10-11 2024-10-11 00:04:43.000 1970-10-11 2024-10-11 00:04:43 +284 284 285 28.4 56.800000000000004 284 1970-10-12 2024-10-11 00:04:44.000 1970-10-12 2024-10-11 00:04:44 +286 286 287 28.6 57.2 286 1970-10-14 2024-10-11 00:04:46.000 1970-10-14 2024-10-11 00:04:46 +287 287 288 28.7 57.400000000000006 287 1970-10-15 2024-10-11 00:04:47.000 1970-10-15 2024-10-11 00:04:47 +288 288 289 28.8 57.6 288 1970-10-16 2024-10-11 00:04:48.000 1970-10-16 2024-10-11 00:04:48 +289 289 290 28.9 57.800000000000004 289 1970-10-17 2024-10-11 00:04:49.000 1970-10-17 2024-10-11 00:04:49 +291 291 292 29.1 58.2 291 1970-10-19 2024-10-11 00:04:51.000 1970-10-19 2024-10-11 00:04:51 +292 292 293 29.2 58.400000000000006 292 1970-10-20 2024-10-11 00:04:52.000 1970-10-20 2024-10-11 00:04:52 +293 293 294 29.3 58.6 293 1970-10-21 2024-10-11 00:04:53.000 1970-10-21 2024-10-11 00:04:53 +294 294 295 29.4 58.800000000000004 294 1970-10-22 2024-10-11 00:04:54.000 1970-10-22 2024-10-11 00:04:54 +296 296 297 29.6 59.2 296 1970-10-24 2024-10-11 00:04:56.000 1970-10-24 2024-10-11 00:04:56 +297 297 298 29.7 59.400000000000006 297 1970-10-25 2024-10-11 00:04:57.000 1970-10-25 2024-10-11 00:04:57 +298 298 299 29.8 59.6 298 1970-10-26 2024-10-11 00:04:58.000 1970-10-26 2024-10-11 00:04:58 +299 299 300 29.9 59.800000000000004 299 1970-10-27 2024-10-11 00:04:59.000 1970-10-27 2024-10-11 00:04:59 +301 301 302 30.1 60.2 301 1970-10-29 2024-10-11 00:05:01.000 1970-10-29 2024-10-11 00:05:01 +302 302 303 30.2 60.400000000000006 302 1970-10-30 2024-10-11 00:05:02.000 1970-10-30 2024-10-11 00:05:02 +303 303 304 30.3 60.6 303 1970-10-31 2024-10-11 00:05:03.000 1970-10-31 2024-10-11 00:05:03 +304 304 305 30.4 60.800000000000004 304 1970-11-01 2024-10-11 00:05:04.000 1970-11-01 2024-10-11 00:05:04 +306 306 307 30.6 61.2 306 1970-11-03 2024-10-11 00:05:06.000 1970-11-03 2024-10-11 00:05:06 +307 307 308 30.7 61.400000000000006 307 1970-11-04 2024-10-11 00:05:07.000 1970-11-04 2024-10-11 00:05:07 +308 308 309 30.8 61.6 308 1970-11-05 2024-10-11 00:05:08.000 1970-11-05 2024-10-11 00:05:08 +309 309 310 30.9 61.800000000000004 309 1970-11-06 2024-10-11 00:05:09.000 1970-11-06 2024-10-11 00:05:09 +311 311 312 31.1 62.2 311 1970-11-08 2024-10-11 00:05:11.000 1970-11-08 2024-10-11 00:05:11 +312 312 313 31.2 62.400000000000006 312 1970-11-09 2024-10-11 00:05:12.000 1970-11-09 2024-10-11 00:05:12 +313 313 314 31.3 62.6 313 1970-11-10 2024-10-11 00:05:13.000 1970-11-10 2024-10-11 00:05:13 +314 314 315 31.4 62.800000000000004 314 1970-11-11 2024-10-11 00:05:14.000 1970-11-11 2024-10-11 00:05:14 +316 316 317 31.6 63.2 316 1970-11-13 2024-10-11 00:05:16.000 1970-11-13 2024-10-11 00:05:16 +317 317 318 31.7 63.400000000000006 317 1970-11-14 2024-10-11 00:05:17.000 1970-11-14 2024-10-11 00:05:17 +318 318 319 31.8 63.6 318 1970-11-15 2024-10-11 00:05:18.000 1970-11-15 2024-10-11 00:05:18 +319 319 320 31.9 63.800000000000004 319 1970-11-16 2024-10-11 00:05:19.000 1970-11-16 2024-10-11 00:05:19 +321 321 322 32.1 64.2 321 1970-11-18 2024-10-11 00:05:21.000 1970-11-18 2024-10-11 00:05:21 +322 322 323 32.2 64.4 322 1970-11-19 2024-10-11 00:05:22.000 1970-11-19 2024-10-11 00:05:22 +323 323 324 32.3 64.60000000000001 323 1970-11-20 2024-10-11 00:05:23.000 1970-11-20 2024-10-11 00:05:23 +324 324 325 32.4 64.8 324 1970-11-21 2024-10-11 00:05:24.000 1970-11-21 2024-10-11 00:05:24 +326 326 327 32.6 65.2 326 1970-11-23 2024-10-11 00:05:26.000 1970-11-23 2024-10-11 00:05:26 +327 327 328 32.7 65.4 327 1970-11-24 2024-10-11 00:05:27.000 1970-11-24 2024-10-11 00:05:27 +328 328 329 32.8 65.60000000000001 328 1970-11-25 2024-10-11 00:05:28.000 1970-11-25 2024-10-11 00:05:28 +329 329 330 32.9 65.8 329 1970-11-26 2024-10-11 00:05:29.000 1970-11-26 2024-10-11 00:05:29 +331 331 332 33.1 66.2 331 1970-11-28 2024-10-11 00:05:31.000 1970-11-28 2024-10-11 00:05:31 +332 332 333 33.2 66.4 332 1970-11-29 2024-10-11 00:05:32.000 1970-11-29 2024-10-11 00:05:32 +333 333 334 33.3 66.60000000000001 333 1970-11-30 2024-10-11 00:05:33.000 1970-11-30 2024-10-11 00:05:33 +334 334 335 33.4 66.8 334 1970-12-01 2024-10-11 00:05:34.000 1970-12-01 2024-10-11 00:05:34 +336 336 337 33.6 67.2 336 1970-12-03 2024-10-11 00:05:36.000 1970-12-03 2024-10-11 00:05:36 +337 337 338 33.7 67.4 337 1970-12-04 2024-10-11 00:05:37.000 1970-12-04 2024-10-11 00:05:37 +338 338 339 33.8 67.60000000000001 338 1970-12-05 2024-10-11 00:05:38.000 1970-12-05 2024-10-11 00:05:38 +339 339 340 33.9 67.8 339 1970-12-06 2024-10-11 00:05:39.000 1970-12-06 2024-10-11 00:05:39 +341 341 342 34.1 68.2 341 1970-12-08 2024-10-11 00:05:41.000 1970-12-08 2024-10-11 00:05:41 +342 342 343 34.2 68.4 342 1970-12-09 2024-10-11 00:05:42.000 1970-12-09 2024-10-11 00:05:42 +343 343 344 34.3 68.60000000000001 343 1970-12-10 2024-10-11 00:05:43.000 1970-12-10 2024-10-11 00:05:43 +344 344 345 34.4 68.8 344 1970-12-11 2024-10-11 00:05:44.000 1970-12-11 2024-10-11 00:05:44 +346 346 347 34.6 69.2 346 1970-12-13 2024-10-11 00:05:46.000 1970-12-13 2024-10-11 00:05:46 +347 347 348 34.7 69.4 347 1970-12-14 2024-10-11 00:05:47.000 1970-12-14 2024-10-11 00:05:47 +348 348 349 34.8 69.60000000000001 348 1970-12-15 2024-10-11 00:05:48.000 1970-12-15 2024-10-11 00:05:48 +349 349 350 34.9 69.8 349 1970-12-16 2024-10-11 00:05:49.000 1970-12-16 2024-10-11 00:05:49 +351 351 352 35.1 70.2 351 1970-12-18 2024-10-11 00:05:51.000 1970-12-18 2024-10-11 00:05:51 +352 352 353 35.2 70.4 352 1970-12-19 2024-10-11 00:05:52.000 1970-12-19 2024-10-11 00:05:52 +353 353 354 35.3 70.60000000000001 353 1970-12-20 2024-10-11 00:05:53.000 1970-12-20 2024-10-11 00:05:53 +354 354 355 35.4 70.8 354 1970-12-21 2024-10-11 00:05:54.000 1970-12-21 2024-10-11 00:05:54 +356 356 357 35.6 71.2 356 1970-12-23 2024-10-11 00:05:56.000 1970-12-23 2024-10-11 00:05:56 +357 357 358 35.7 71.4 357 1970-12-24 2024-10-11 00:05:57.000 1970-12-24 2024-10-11 00:05:57 +358 358 359 35.8 71.60000000000001 358 1970-12-25 2024-10-11 00:05:58.000 1970-12-25 2024-10-11 00:05:58 +359 359 360 35.9 71.8 359 1970-12-26 2024-10-11 00:05:59.000 1970-12-26 2024-10-11 00:05:59 +361 361 362 36.1 72.2 361 1970-12-28 2024-10-11 00:06:01.000 1970-12-28 2024-10-11 00:06:01 +362 362 363 36.2 72.4 362 1970-12-29 2024-10-11 00:06:02.000 1970-12-29 2024-10-11 00:06:02 +363 363 364 36.3 72.60000000000001 363 1970-12-30 2024-10-11 00:06:03.000 1970-12-30 2024-10-11 00:06:03 +364 364 365 36.4 72.8 364 1970-12-31 2024-10-11 00:06:04.000 1970-12-31 2024-10-11 00:06:04 +366 366 367 36.6 73.2 366 1971-01-02 2024-10-11 00:06:06.000 1971-01-02 2024-10-11 00:06:06 +367 367 368 36.7 73.4 367 1971-01-03 2024-10-11 00:06:07.000 1971-01-03 2024-10-11 00:06:07 +368 368 369 36.8 73.60000000000001 368 1971-01-04 2024-10-11 00:06:08.000 1971-01-04 2024-10-11 00:06:08 +369 369 370 36.9 73.8 369 1971-01-05 2024-10-11 00:06:09.000 1971-01-05 2024-10-11 00:06:09 +371 371 372 37.1 74.2 371 1971-01-07 2024-10-11 00:06:11.000 1971-01-07 2024-10-11 00:06:11 +372 372 373 37.2 74.4 372 1971-01-08 2024-10-11 00:06:12.000 1971-01-08 2024-10-11 00:06:12 +373 373 374 37.3 74.60000000000001 373 1971-01-09 2024-10-11 00:06:13.000 1971-01-09 2024-10-11 00:06:13 +374 374 375 37.4 74.8 374 1971-01-10 2024-10-11 00:06:14.000 1971-01-10 2024-10-11 00:06:14 +376 376 377 37.6 75.2 376 1971-01-12 2024-10-11 00:06:16.000 1971-01-12 2024-10-11 00:06:16 +377 377 378 37.7 75.4 377 1971-01-13 2024-10-11 00:06:17.000 1971-01-13 2024-10-11 00:06:17 +378 378 379 37.8 75.60000000000001 378 1971-01-14 2024-10-11 00:06:18.000 1971-01-14 2024-10-11 00:06:18 +379 379 380 37.9 75.8 379 1971-01-15 2024-10-11 00:06:19.000 1971-01-15 2024-10-11 00:06:19 +381 381 382 38.1 76.2 381 1971-01-17 2024-10-11 00:06:21.000 1971-01-17 2024-10-11 00:06:21 +382 382 383 38.2 76.4 382 1971-01-18 2024-10-11 00:06:22.000 1971-01-18 2024-10-11 00:06:22 +383 383 384 38.3 76.60000000000001 383 1971-01-19 2024-10-11 00:06:23.000 1971-01-19 2024-10-11 00:06:23 +384 384 385 38.4 76.80000000000001 384 1971-01-20 2024-10-11 00:06:24.000 1971-01-20 2024-10-11 00:06:24 +386 386 387 38.6 77.2 386 1971-01-22 2024-10-11 00:06:26.000 1971-01-22 2024-10-11 00:06:26 +387 387 388 38.7 77.4 387 1971-01-23 2024-10-11 00:06:27.000 1971-01-23 2024-10-11 00:06:27 +388 388 389 38.8 77.60000000000001 388 1971-01-24 2024-10-11 00:06:28.000 1971-01-24 2024-10-11 00:06:28 +389 389 390 38.9 77.80000000000001 389 1971-01-25 2024-10-11 00:06:29.000 1971-01-25 2024-10-11 00:06:29 +391 391 392 39.1 78.2 391 1971-01-27 2024-10-11 00:06:31.000 1971-01-27 2024-10-11 00:06:31 +392 392 393 39.2 78.4 392 1971-01-28 2024-10-11 00:06:32.000 1971-01-28 2024-10-11 00:06:32 +393 393 394 39.3 78.60000000000001 393 1971-01-29 2024-10-11 00:06:33.000 1971-01-29 2024-10-11 00:06:33 +394 394 395 39.4 78.80000000000001 394 1971-01-30 2024-10-11 00:06:34.000 1971-01-30 2024-10-11 00:06:34 +396 396 397 39.6 79.2 396 1971-02-01 2024-10-11 00:06:36.000 1971-02-01 2024-10-11 00:06:36 +397 397 398 39.7 79.4 397 1971-02-02 2024-10-11 00:06:37.000 1971-02-02 2024-10-11 00:06:37 +398 398 399 39.8 79.60000000000001 398 1971-02-03 2024-10-11 00:06:38.000 1971-02-03 2024-10-11 00:06:38 +399 399 400 39.9 79.80000000000001 399 1971-02-04 2024-10-11 00:06:39.000 1971-02-04 2024-10-11 00:06:39 +401 401 402 40.1 80.2 401 1971-02-06 2024-10-11 00:06:41.000 1971-02-06 2024-10-11 00:06:41 +402 402 403 40.2 80.4 402 1971-02-07 2024-10-11 00:06:42.000 1971-02-07 2024-10-11 00:06:42 +403 403 404 40.3 80.60000000000001 403 1971-02-08 2024-10-11 00:06:43.000 1971-02-08 2024-10-11 00:06:43 +404 404 405 40.4 80.80000000000001 404 1971-02-09 2024-10-11 00:06:44.000 1971-02-09 2024-10-11 00:06:44 +406 406 407 40.6 81.2 406 1971-02-11 2024-10-11 00:06:46.000 1971-02-11 2024-10-11 00:06:46 +407 407 408 40.7 81.4 407 1971-02-12 2024-10-11 00:06:47.000 1971-02-12 2024-10-11 00:06:47 +408 408 409 40.8 81.60000000000001 408 1971-02-13 2024-10-11 00:06:48.000 1971-02-13 2024-10-11 00:06:48 +409 409 410 40.9 81.80000000000001 409 1971-02-14 2024-10-11 00:06:49.000 1971-02-14 2024-10-11 00:06:49 +411 411 412 41.1 82.2 411 1971-02-16 2024-10-11 00:06:51.000 1971-02-16 2024-10-11 00:06:51 +412 412 413 41.2 82.4 412 1971-02-17 2024-10-11 00:06:52.000 1971-02-17 2024-10-11 00:06:52 +413 413 414 41.3 82.60000000000001 413 1971-02-18 2024-10-11 00:06:53.000 1971-02-18 2024-10-11 00:06:53 +414 414 415 41.4 82.80000000000001 414 1971-02-19 2024-10-11 00:06:54.000 1971-02-19 2024-10-11 00:06:54 +416 416 417 41.6 83.2 416 1971-02-21 2024-10-11 00:06:56.000 1971-02-21 2024-10-11 00:06:56 +417 417 418 41.7 83.4 417 1971-02-22 2024-10-11 00:06:57.000 1971-02-22 2024-10-11 00:06:57 +418 418 419 41.8 83.60000000000001 418 1971-02-23 2024-10-11 00:06:58.000 1971-02-23 2024-10-11 00:06:58 +419 419 420 41.9 83.80000000000001 419 1971-02-24 2024-10-11 00:06:59.000 1971-02-24 2024-10-11 00:06:59 +421 421 422 42.1 84.2 421 1971-02-26 2024-10-11 00:07:01.000 1971-02-26 2024-10-11 00:07:01 +422 422 423 42.2 84.4 422 1971-02-27 2024-10-11 00:07:02.000 1971-02-27 2024-10-11 00:07:02 +423 423 424 42.3 84.60000000000001 423 1971-02-28 2024-10-11 00:07:03.000 1971-02-28 2024-10-11 00:07:03 +424 424 425 42.4 84.80000000000001 424 1971-03-01 2024-10-11 00:07:04.000 1971-03-01 2024-10-11 00:07:04 +426 426 427 42.6 85.2 426 1971-03-03 2024-10-11 00:07:06.000 1971-03-03 2024-10-11 00:07:06 +427 427 428 42.7 85.4 427 1971-03-04 2024-10-11 00:07:07.000 1971-03-04 2024-10-11 00:07:07 +428 428 429 42.8 85.60000000000001 428 1971-03-05 2024-10-11 00:07:08.000 1971-03-05 2024-10-11 00:07:08 +429 429 430 42.9 85.80000000000001 429 1971-03-06 2024-10-11 00:07:09.000 1971-03-06 2024-10-11 00:07:09 +431 431 432 43.1 86.2 431 1971-03-08 2024-10-11 00:07:11.000 1971-03-08 2024-10-11 00:07:11 +432 432 433 43.2 86.4 432 1971-03-09 2024-10-11 00:07:12.000 1971-03-09 2024-10-11 00:07:12 +433 433 434 43.3 86.60000000000001 433 1971-03-10 2024-10-11 00:07:13.000 1971-03-10 2024-10-11 00:07:13 +434 434 435 43.4 86.80000000000001 434 1971-03-11 2024-10-11 00:07:14.000 1971-03-11 2024-10-11 00:07:14 +436 436 437 43.6 87.2 436 1971-03-13 2024-10-11 00:07:16.000 1971-03-13 2024-10-11 00:07:16 +437 437 438 43.7 87.4 437 1971-03-14 2024-10-11 00:07:17.000 1971-03-14 2024-10-11 00:07:17 +438 438 439 43.8 87.60000000000001 438 1971-03-15 2024-10-11 00:07:18.000 1971-03-15 2024-10-11 00:07:18 +439 439 440 43.9 87.80000000000001 439 1971-03-16 2024-10-11 00:07:19.000 1971-03-16 2024-10-11 00:07:19 +441 441 442 44.1 88.2 441 1971-03-18 2024-10-11 00:07:21.000 1971-03-18 2024-10-11 00:07:21 +442 442 443 44.2 88.4 442 1971-03-19 2024-10-11 00:07:22.000 1971-03-19 2024-10-11 00:07:22 +443 443 444 44.3 88.60000000000001 443 1971-03-20 2024-10-11 00:07:23.000 1971-03-20 2024-10-11 00:07:23 +444 444 445 44.4 88.80000000000001 444 1971-03-21 2024-10-11 00:07:24.000 1971-03-21 2024-10-11 00:07:24 +446 446 447 44.6 89.2 446 1971-03-23 2024-10-11 00:07:26.000 1971-03-23 2024-10-11 00:07:26 +447 447 448 44.7 89.4 447 1971-03-24 2024-10-11 00:07:27.000 1971-03-24 2024-10-11 00:07:27 +448 448 449 44.8 89.60000000000001 448 1971-03-25 2024-10-11 00:07:28.000 1971-03-25 2024-10-11 00:07:28 +449 449 450 44.9 89.80000000000001 449 1971-03-26 2024-10-11 00:07:29.000 1971-03-26 2024-10-11 00:07:29 +451 451 452 45.1 90.2 451 1971-03-28 2024-10-11 00:07:31.000 1971-03-28 2024-10-11 00:07:31 +452 452 453 45.2 90.4 452 1971-03-29 2024-10-11 00:07:32.000 1971-03-29 2024-10-11 00:07:32 +453 453 454 45.3 90.60000000000001 453 1971-03-30 2024-10-11 00:07:33.000 1971-03-30 2024-10-11 00:07:33 +454 454 455 45.4 90.80000000000001 454 1971-03-31 2024-10-11 00:07:34.000 1971-03-31 2024-10-11 00:07:34 +456 456 457 45.6 91.2 456 1971-04-02 2024-10-11 00:07:36.000 1971-04-02 2024-10-11 00:07:36 +457 457 458 45.7 91.4 457 1971-04-03 2024-10-11 00:07:37.000 1971-04-03 2024-10-11 00:07:37 +458 458 459 45.8 91.60000000000001 458 1971-04-04 2024-10-11 00:07:38.000 1971-04-04 2024-10-11 00:07:38 +459 459 460 45.9 91.80000000000001 459 1971-04-05 2024-10-11 00:07:39.000 1971-04-05 2024-10-11 00:07:39 +461 461 462 46.1 92.2 461 1971-04-07 2024-10-11 00:07:41.000 1971-04-07 2024-10-11 00:07:41 +462 462 463 46.2 92.4 462 1971-04-08 2024-10-11 00:07:42.000 1971-04-08 2024-10-11 00:07:42 +463 463 464 46.3 92.60000000000001 463 1971-04-09 2024-10-11 00:07:43.000 1971-04-09 2024-10-11 00:07:43 +464 464 465 46.4 92.80000000000001 464 1971-04-10 2024-10-11 00:07:44.000 1971-04-10 2024-10-11 00:07:44 +466 466 467 46.6 93.2 466 1971-04-12 2024-10-11 00:07:46.000 1971-04-12 2024-10-11 00:07:46 +467 467 468 46.7 93.4 467 1971-04-13 2024-10-11 00:07:47.000 1971-04-13 2024-10-11 00:07:47 +468 468 469 46.8 93.60000000000001 468 1971-04-14 2024-10-11 00:07:48.000 1971-04-14 2024-10-11 00:07:48 +469 469 470 46.9 93.80000000000001 469 1971-04-15 2024-10-11 00:07:49.000 1971-04-15 2024-10-11 00:07:49 +471 471 472 47.1 94.2 471 1971-04-17 2024-10-11 00:07:51.000 1971-04-17 2024-10-11 00:07:51 +472 472 473 47.2 94.4 472 1971-04-18 2024-10-11 00:07:52.000 1971-04-18 2024-10-11 00:07:52 +473 473 474 47.3 94.60000000000001 473 1971-04-19 2024-10-11 00:07:53.000 1971-04-19 2024-10-11 00:07:53 +474 474 475 47.4 94.80000000000001 474 1971-04-20 2024-10-11 00:07:54.000 1971-04-20 2024-10-11 00:07:54 +476 476 477 47.6 95.2 476 1971-04-22 2024-10-11 00:07:56.000 1971-04-22 2024-10-11 00:07:56 +477 477 478 47.7 95.4 477 1971-04-23 2024-10-11 00:07:57.000 1971-04-23 2024-10-11 00:07:57 +478 478 479 47.8 95.60000000000001 478 1971-04-24 2024-10-11 00:07:58.000 1971-04-24 2024-10-11 00:07:58 +479 479 480 47.9 95.80000000000001 479 1971-04-25 2024-10-11 00:07:59.000 1971-04-25 2024-10-11 00:07:59 +481 481 482 48.1 96.2 481 1971-04-27 2024-10-11 00:08:01.000 1971-04-27 2024-10-11 00:08:01 +482 482 483 48.2 96.4 482 1971-04-28 2024-10-11 00:08:02.000 1971-04-28 2024-10-11 00:08:02 +483 483 484 48.3 96.60000000000001 483 1971-04-29 2024-10-11 00:08:03.000 1971-04-29 2024-10-11 00:08:03 +484 484 485 48.4 96.80000000000001 484 1971-04-30 2024-10-11 00:08:04.000 1971-04-30 2024-10-11 00:08:04 +486 486 487 48.6 97.2 486 1971-05-02 2024-10-11 00:08:06.000 1971-05-02 2024-10-11 00:08:06 +487 487 488 48.7 97.4 487 1971-05-03 2024-10-11 00:08:07.000 1971-05-03 2024-10-11 00:08:07 +488 488 489 48.8 97.60000000000001 488 1971-05-04 2024-10-11 00:08:08.000 1971-05-04 2024-10-11 00:08:08 +489 489 490 48.9 97.80000000000001 489 1971-05-05 2024-10-11 00:08:09.000 1971-05-05 2024-10-11 00:08:09 +491 491 492 49.1 98.2 491 1971-05-07 2024-10-11 00:08:11.000 1971-05-07 2024-10-11 00:08:11 +492 492 493 49.2 98.4 492 1971-05-08 2024-10-11 00:08:12.000 1971-05-08 2024-10-11 00:08:12 +493 493 494 49.3 98.60000000000001 493 1971-05-09 2024-10-11 00:08:13.000 1971-05-09 2024-10-11 00:08:13 +494 494 495 49.4 98.80000000000001 494 1971-05-10 2024-10-11 00:08:14.000 1971-05-10 2024-10-11 00:08:14 +496 496 497 49.6 99.2 496 1971-05-12 2024-10-11 00:08:16.000 1971-05-12 2024-10-11 00:08:16 +497 497 498 49.7 99.4 497 1971-05-13 2024-10-11 00:08:17.000 1971-05-13 2024-10-11 00:08:17 +498 498 499 49.8 99.60000000000001 498 1971-05-14 2024-10-11 00:08:18.000 1971-05-14 2024-10-11 00:08:18 +499 499 500 49.9 99.80000000000001 499 1971-05-15 2024-10-11 00:08:19.000 1971-05-15 2024-10-11 00:08:19 +501 501 502 50.1 100.2 501 1971-05-17 2024-10-11 00:08:21.000 1971-05-17 2024-10-11 00:08:21 +502 502 503 50.2 100.4 502 1971-05-18 2024-10-11 00:08:22.000 1971-05-18 2024-10-11 00:08:22 +503 503 504 50.3 100.60000000000001 503 1971-05-19 2024-10-11 00:08:23.000 1971-05-19 2024-10-11 00:08:23 +504 504 505 50.4 100.80000000000001 504 1971-05-20 2024-10-11 00:08:24.000 1971-05-20 2024-10-11 00:08:24 +506 506 507 50.6 101.2 506 1971-05-22 2024-10-11 00:08:26.000 1971-05-22 2024-10-11 00:08:26 +507 507 508 50.7 101.4 507 1971-05-23 2024-10-11 00:08:27.000 1971-05-23 2024-10-11 00:08:27 +508 508 509 50.8 101.60000000000001 508 1971-05-24 2024-10-11 00:08:28.000 1971-05-24 2024-10-11 00:08:28 +509 509 510 50.9 101.80000000000001 509 1971-05-25 2024-10-11 00:08:29.000 1971-05-25 2024-10-11 00:08:29 +511 511 512 51.1 102.2 511 1971-05-27 2024-10-11 00:08:31.000 1971-05-27 2024-10-11 00:08:31 +512 512 513 51.2 102.4 512 1971-05-28 2024-10-11 00:08:32.000 1971-05-28 2024-10-11 00:08:32 +513 513 514 51.3 102.60000000000001 513 1971-05-29 2024-10-11 00:08:33.000 1971-05-29 2024-10-11 00:08:33 +514 514 515 51.4 102.80000000000001 514 1971-05-30 2024-10-11 00:08:34.000 1971-05-30 2024-10-11 00:08:34 +516 516 517 51.6 103.2 516 1971-06-01 2024-10-11 00:08:36.000 1971-06-01 2024-10-11 00:08:36 +517 517 518 51.7 103.4 517 1971-06-02 2024-10-11 00:08:37.000 1971-06-02 2024-10-11 00:08:37 +518 518 519 51.8 103.60000000000001 518 1971-06-03 2024-10-11 00:08:38.000 1971-06-03 2024-10-11 00:08:38 +519 519 520 51.9 103.80000000000001 519 1971-06-04 2024-10-11 00:08:39.000 1971-06-04 2024-10-11 00:08:39 +521 521 522 52.1 104.2 521 1971-06-06 2024-10-11 00:08:41.000 1971-06-06 2024-10-11 00:08:41 +522 522 523 52.2 104.4 522 1971-06-07 2024-10-11 00:08:42.000 1971-06-07 2024-10-11 00:08:42 +523 523 524 52.3 104.60000000000001 523 1971-06-08 2024-10-11 00:08:43.000 1971-06-08 2024-10-11 00:08:43 +524 524 525 52.4 104.80000000000001 524 1971-06-09 2024-10-11 00:08:44.000 1971-06-09 2024-10-11 00:08:44 +526 526 527 52.6 105.2 526 1971-06-11 2024-10-11 00:08:46.000 1971-06-11 2024-10-11 00:08:46 +527 527 528 52.7 105.4 527 1971-06-12 2024-10-11 00:08:47.000 1971-06-12 2024-10-11 00:08:47 +528 528 529 52.8 105.60000000000001 528 1971-06-13 2024-10-11 00:08:48.000 1971-06-13 2024-10-11 00:08:48 +529 529 530 52.9 105.80000000000001 529 1971-06-14 2024-10-11 00:08:49.000 1971-06-14 2024-10-11 00:08:49 +531 531 532 53.1 106.2 531 1971-06-16 2024-10-11 00:08:51.000 1971-06-16 2024-10-11 00:08:51 +532 532 533 53.2 106.4 532 1971-06-17 2024-10-11 00:08:52.000 1971-06-17 2024-10-11 00:08:52 +533 533 534 53.3 106.60000000000001 533 1971-06-18 2024-10-11 00:08:53.000 1971-06-18 2024-10-11 00:08:53 +534 534 535 53.4 106.80000000000001 534 1971-06-19 2024-10-11 00:08:54.000 1971-06-19 2024-10-11 00:08:54 +536 536 537 53.6 107.2 536 1971-06-21 2024-10-11 00:08:56.000 1971-06-21 2024-10-11 00:08:56 +537 537 538 53.7 107.4 537 1971-06-22 2024-10-11 00:08:57.000 1971-06-22 2024-10-11 00:08:57 +538 538 539 53.8 107.60000000000001 538 1971-06-23 2024-10-11 00:08:58.000 1971-06-23 2024-10-11 00:08:58 +539 539 540 53.9 107.80000000000001 539 1971-06-24 2024-10-11 00:08:59.000 1971-06-24 2024-10-11 00:08:59 +541 541 542 54.1 108.2 541 1971-06-26 2024-10-11 00:09:01.000 1971-06-26 2024-10-11 00:09:01 +542 542 543 54.2 108.4 542 1971-06-27 2024-10-11 00:09:02.000 1971-06-27 2024-10-11 00:09:02 +543 543 544 54.3 108.60000000000001 543 1971-06-28 2024-10-11 00:09:03.000 1971-06-28 2024-10-11 00:09:03 +544 544 545 54.4 108.80000000000001 544 1971-06-29 2024-10-11 00:09:04.000 1971-06-29 2024-10-11 00:09:04 +546 546 547 54.6 109.2 546 1971-07-01 2024-10-11 00:09:06.000 1971-07-01 2024-10-11 00:09:06 +547 547 548 54.7 109.4 547 1971-07-02 2024-10-11 00:09:07.000 1971-07-02 2024-10-11 00:09:07 +548 548 549 54.8 109.60000000000001 548 1971-07-03 2024-10-11 00:09:08.000 1971-07-03 2024-10-11 00:09:08 +549 549 550 54.9 109.80000000000001 549 1971-07-04 2024-10-11 00:09:09.000 1971-07-04 2024-10-11 00:09:09 +551 551 552 55.1 110.2 551 1971-07-06 2024-10-11 00:09:11.000 1971-07-06 2024-10-11 00:09:11 +552 552 553 55.2 110.4 552 1971-07-07 2024-10-11 00:09:12.000 1971-07-07 2024-10-11 00:09:12 +553 553 554 55.3 110.60000000000001 553 1971-07-08 2024-10-11 00:09:13.000 1971-07-08 2024-10-11 00:09:13 +554 554 555 55.4 110.80000000000001 554 1971-07-09 2024-10-11 00:09:14.000 1971-07-09 2024-10-11 00:09:14 +556 556 557 55.6 111.2 556 1971-07-11 2024-10-11 00:09:16.000 1971-07-11 2024-10-11 00:09:16 +557 557 558 55.7 111.4 557 1971-07-12 2024-10-11 00:09:17.000 1971-07-12 2024-10-11 00:09:17 +558 558 559 55.8 111.60000000000001 558 1971-07-13 2024-10-11 00:09:18.000 1971-07-13 2024-10-11 00:09:18 +559 559 560 55.9 111.80000000000001 559 1971-07-14 2024-10-11 00:09:19.000 1971-07-14 2024-10-11 00:09:19 +561 561 562 56.1 112.2 561 1971-07-16 2024-10-11 00:09:21.000 1971-07-16 2024-10-11 00:09:21 +562 562 563 56.2 112.4 562 1971-07-17 2024-10-11 00:09:22.000 1971-07-17 2024-10-11 00:09:22 +563 563 564 56.3 112.60000000000001 563 1971-07-18 2024-10-11 00:09:23.000 1971-07-18 2024-10-11 00:09:23 +564 564 565 56.4 112.80000000000001 564 1971-07-19 2024-10-11 00:09:24.000 1971-07-19 2024-10-11 00:09:24 +566 566 567 56.6 113.2 566 1971-07-21 2024-10-11 00:09:26.000 1971-07-21 2024-10-11 00:09:26 +567 567 568 56.7 113.4 567 1971-07-22 2024-10-11 00:09:27.000 1971-07-22 2024-10-11 00:09:27 +568 568 569 56.8 113.60000000000001 568 1971-07-23 2024-10-11 00:09:28.000 1971-07-23 2024-10-11 00:09:28 +569 569 570 56.9 113.80000000000001 569 1971-07-24 2024-10-11 00:09:29.000 1971-07-24 2024-10-11 00:09:29 +571 571 572 57.1 114.2 571 1971-07-26 2024-10-11 00:09:31.000 1971-07-26 2024-10-11 00:09:31 +572 572 573 57.2 114.4 572 1971-07-27 2024-10-11 00:09:32.000 1971-07-27 2024-10-11 00:09:32 +573 573 574 57.3 114.60000000000001 573 1971-07-28 2024-10-11 00:09:33.000 1971-07-28 2024-10-11 00:09:33 +574 574 575 57.4 114.80000000000001 574 1971-07-29 2024-10-11 00:09:34.000 1971-07-29 2024-10-11 00:09:34 +576 576 577 57.6 115.2 576 1971-07-31 2024-10-11 00:09:36.000 1971-07-31 2024-10-11 00:09:36 +577 577 578 57.7 115.4 577 1971-08-01 2024-10-11 00:09:37.000 1971-08-01 2024-10-11 00:09:37 +578 578 579 57.8 115.60000000000001 578 1971-08-02 2024-10-11 00:09:38.000 1971-08-02 2024-10-11 00:09:38 +579 579 580 57.9 115.80000000000001 579 1971-08-03 2024-10-11 00:09:39.000 1971-08-03 2024-10-11 00:09:39 +581 581 582 58.1 116.2 581 1971-08-05 2024-10-11 00:09:41.000 1971-08-05 2024-10-11 00:09:41 +582 582 583 58.2 116.4 582 1971-08-06 2024-10-11 00:09:42.000 1971-08-06 2024-10-11 00:09:42 +583 583 584 58.3 116.60000000000001 583 1971-08-07 2024-10-11 00:09:43.000 1971-08-07 2024-10-11 00:09:43 +584 584 585 58.4 116.80000000000001 584 1971-08-08 2024-10-11 00:09:44.000 1971-08-08 2024-10-11 00:09:44 +586 586 587 58.6 117.2 586 1971-08-10 2024-10-11 00:09:46.000 1971-08-10 2024-10-11 00:09:46 +587 587 588 58.7 117.4 587 1971-08-11 2024-10-11 00:09:47.000 1971-08-11 2024-10-11 00:09:47 +588 588 589 58.8 117.60000000000001 588 1971-08-12 2024-10-11 00:09:48.000 1971-08-12 2024-10-11 00:09:48 +589 589 590 58.9 117.80000000000001 589 1971-08-13 2024-10-11 00:09:49.000 1971-08-13 2024-10-11 00:09:49 +591 591 592 59.1 118.2 591 1971-08-15 2024-10-11 00:09:51.000 1971-08-15 2024-10-11 00:09:51 +592 592 593 59.2 118.4 592 1971-08-16 2024-10-11 00:09:52.000 1971-08-16 2024-10-11 00:09:52 +593 593 594 59.3 118.60000000000001 593 1971-08-17 2024-10-11 00:09:53.000 1971-08-17 2024-10-11 00:09:53 +594 594 595 59.4 118.80000000000001 594 1971-08-18 2024-10-11 00:09:54.000 1971-08-18 2024-10-11 00:09:54 +596 596 597 59.6 119.2 596 1971-08-20 2024-10-11 00:09:56.000 1971-08-20 2024-10-11 00:09:56 +597 597 598 59.7 119.4 597 1971-08-21 2024-10-11 00:09:57.000 1971-08-21 2024-10-11 00:09:57 +598 598 599 59.8 119.60000000000001 598 1971-08-22 2024-10-11 00:09:58.000 1971-08-22 2024-10-11 00:09:58 +599 599 600 59.9 119.80000000000001 599 1971-08-23 2024-10-11 00:09:59.000 1971-08-23 2024-10-11 00:09:59 +601 601 602 60.1 120.2 601 1971-08-25 2024-10-11 00:10:01.000 1971-08-25 2024-10-11 00:10:01 +602 602 603 60.2 120.4 602 1971-08-26 2024-10-11 00:10:02.000 1971-08-26 2024-10-11 00:10:02 +603 603 604 60.3 120.60000000000001 603 1971-08-27 2024-10-11 00:10:03.000 1971-08-27 2024-10-11 00:10:03 +604 604 605 60.4 120.80000000000001 604 1971-08-28 2024-10-11 00:10:04.000 1971-08-28 2024-10-11 00:10:04 +606 606 607 60.6 121.2 606 1971-08-30 2024-10-11 00:10:06.000 1971-08-30 2024-10-11 00:10:06 +607 607 608 60.7 121.4 607 1971-08-31 2024-10-11 00:10:07.000 1971-08-31 2024-10-11 00:10:07 +608 608 609 60.8 121.60000000000001 608 1971-09-01 2024-10-11 00:10:08.000 1971-09-01 2024-10-11 00:10:08 +609 609 610 60.9 121.80000000000001 609 1971-09-02 2024-10-11 00:10:09.000 1971-09-02 2024-10-11 00:10:09 +611 611 612 61.1 122.2 611 1971-09-04 2024-10-11 00:10:11.000 1971-09-04 2024-10-11 00:10:11 +612 612 613 61.2 122.4 612 1971-09-05 2024-10-11 00:10:12.000 1971-09-05 2024-10-11 00:10:12 +613 613 614 61.3 122.60000000000001 613 1971-09-06 2024-10-11 00:10:13.000 1971-09-06 2024-10-11 00:10:13 +614 614 615 61.4 122.80000000000001 614 1971-09-07 2024-10-11 00:10:14.000 1971-09-07 2024-10-11 00:10:14 +616 616 617 61.6 123.2 616 1971-09-09 2024-10-11 00:10:16.000 1971-09-09 2024-10-11 00:10:16 +617 617 618 61.7 123.4 617 1971-09-10 2024-10-11 00:10:17.000 1971-09-10 2024-10-11 00:10:17 +618 618 619 61.8 123.60000000000001 618 1971-09-11 2024-10-11 00:10:18.000 1971-09-11 2024-10-11 00:10:18 +619 619 620 61.9 123.80000000000001 619 1971-09-12 2024-10-11 00:10:19.000 1971-09-12 2024-10-11 00:10:19 +621 621 622 62.1 124.2 621 1971-09-14 2024-10-11 00:10:21.000 1971-09-14 2024-10-11 00:10:21 +622 622 623 62.2 124.4 622 1971-09-15 2024-10-11 00:10:22.000 1971-09-15 2024-10-11 00:10:22 +623 623 624 62.3 124.60000000000001 623 1971-09-16 2024-10-11 00:10:23.000 1971-09-16 2024-10-11 00:10:23 +624 624 625 62.4 124.80000000000001 624 1971-09-17 2024-10-11 00:10:24.000 1971-09-17 2024-10-11 00:10:24 +626 626 627 62.6 125.2 626 1971-09-19 2024-10-11 00:10:26.000 1971-09-19 2024-10-11 00:10:26 +627 627 628 62.7 125.4 627 1971-09-20 2024-10-11 00:10:27.000 1971-09-20 2024-10-11 00:10:27 +628 628 629 62.8 125.60000000000001 628 1971-09-21 2024-10-11 00:10:28.000 1971-09-21 2024-10-11 00:10:28 +629 629 630 62.9 125.80000000000001 629 1971-09-22 2024-10-11 00:10:29.000 1971-09-22 2024-10-11 00:10:29 +631 631 632 63.1 126.2 631 1971-09-24 2024-10-11 00:10:31.000 1971-09-24 2024-10-11 00:10:31 +632 632 633 63.2 126.4 632 1971-09-25 2024-10-11 00:10:32.000 1971-09-25 2024-10-11 00:10:32 +633 633 634 63.3 126.60000000000001 633 1971-09-26 2024-10-11 00:10:33.000 1971-09-26 2024-10-11 00:10:33 +634 634 635 63.4 126.80000000000001 634 1971-09-27 2024-10-11 00:10:34.000 1971-09-27 2024-10-11 00:10:34 +636 636 637 63.6 127.2 636 1971-09-29 2024-10-11 00:10:36.000 1971-09-29 2024-10-11 00:10:36 +637 637 638 63.7 127.4 637 1971-09-30 2024-10-11 00:10:37.000 1971-09-30 2024-10-11 00:10:37 +638 638 639 63.8 127.60000000000001 638 1971-10-01 2024-10-11 00:10:38.000 1971-10-01 2024-10-11 00:10:38 +639 639 640 63.9 127.80000000000001 639 1971-10-02 2024-10-11 00:10:39.000 1971-10-02 2024-10-11 00:10:39 +641 641 642 64.1 128.20000000000002 641 1971-10-04 2024-10-11 00:10:41.000 1971-10-04 2024-10-11 00:10:41 +642 642 643 64.2 128.4 642 1971-10-05 2024-10-11 00:10:42.000 1971-10-05 2024-10-11 00:10:42 +643 643 644 64.3 128.6 643 1971-10-06 2024-10-11 00:10:43.000 1971-10-06 2024-10-11 00:10:43 +644 644 645 64.4 128.8 644 1971-10-07 2024-10-11 00:10:44.000 1971-10-07 2024-10-11 00:10:44 +646 646 647 64.6 129.20000000000002 646 1971-10-09 2024-10-11 00:10:46.000 1971-10-09 2024-10-11 00:10:46 +647 647 648 64.7 129.4 647 1971-10-10 2024-10-11 00:10:47.000 1971-10-10 2024-10-11 00:10:47 +648 648 649 64.8 129.6 648 1971-10-11 2024-10-11 00:10:48.000 1971-10-11 2024-10-11 00:10:48 +649 649 650 64.9 129.8 649 1971-10-12 2024-10-11 00:10:49.000 1971-10-12 2024-10-11 00:10:49 +651 651 652 65.1 130.20000000000002 651 1971-10-14 2024-10-11 00:10:51.000 1971-10-14 2024-10-11 00:10:51 +652 652 653 65.2 130.4 652 1971-10-15 2024-10-11 00:10:52.000 1971-10-15 2024-10-11 00:10:52 +653 653 654 65.3 130.6 653 1971-10-16 2024-10-11 00:10:53.000 1971-10-16 2024-10-11 00:10:53 +654 654 655 65.4 130.8 654 1971-10-17 2024-10-11 00:10:54.000 1971-10-17 2024-10-11 00:10:54 +656 656 657 65.6 131.20000000000002 656 1971-10-19 2024-10-11 00:10:56.000 1971-10-19 2024-10-11 00:10:56 +657 657 658 65.7 131.4 657 1971-10-20 2024-10-11 00:10:57.000 1971-10-20 2024-10-11 00:10:57 +658 658 659 65.8 131.6 658 1971-10-21 2024-10-11 00:10:58.000 1971-10-21 2024-10-11 00:10:58 +659 659 660 65.9 131.8 659 1971-10-22 2024-10-11 00:10:59.000 1971-10-22 2024-10-11 00:10:59 +661 661 662 66.1 132.20000000000002 661 1971-10-24 2024-10-11 00:11:01.000 1971-10-24 2024-10-11 00:11:01 +662 662 663 66.2 132.4 662 1971-10-25 2024-10-11 00:11:02.000 1971-10-25 2024-10-11 00:11:02 +663 663 664 66.3 132.6 663 1971-10-26 2024-10-11 00:11:03.000 1971-10-26 2024-10-11 00:11:03 +664 664 665 66.4 132.8 664 1971-10-27 2024-10-11 00:11:04.000 1971-10-27 2024-10-11 00:11:04 +666 666 667 66.6 133.20000000000002 666 1971-10-29 2024-10-11 00:11:06.000 1971-10-29 2024-10-11 00:11:06 +667 667 668 66.7 133.4 667 1971-10-30 2024-10-11 00:11:07.000 1971-10-30 2024-10-11 00:11:07 +668 668 669 66.8 133.6 668 1971-10-31 2024-10-11 00:11:08.000 1971-10-31 2024-10-11 00:11:08 +669 669 670 66.9 133.8 669 1971-11-01 2024-10-11 00:11:09.000 1971-11-01 2024-10-11 00:11:09 +671 671 672 67.1 134.20000000000002 671 1971-11-03 2024-10-11 00:11:11.000 1971-11-03 2024-10-11 00:11:11 +672 672 673 67.2 134.4 672 1971-11-04 2024-10-11 00:11:12.000 1971-11-04 2024-10-11 00:11:12 +673 673 674 67.3 134.6 673 1971-11-05 2024-10-11 00:11:13.000 1971-11-05 2024-10-11 00:11:13 +674 674 675 67.4 134.8 674 1971-11-06 2024-10-11 00:11:14.000 1971-11-06 2024-10-11 00:11:14 +676 676 677 67.6 135.20000000000002 676 1971-11-08 2024-10-11 00:11:16.000 1971-11-08 2024-10-11 00:11:16 +677 677 678 67.7 135.4 677 1971-11-09 2024-10-11 00:11:17.000 1971-11-09 2024-10-11 00:11:17 +678 678 679 67.8 135.6 678 1971-11-10 2024-10-11 00:11:18.000 1971-11-10 2024-10-11 00:11:18 +679 679 680 67.9 135.8 679 1971-11-11 2024-10-11 00:11:19.000 1971-11-11 2024-10-11 00:11:19 +681 681 682 68.1 136.20000000000002 681 1971-11-13 2024-10-11 00:11:21.000 1971-11-13 2024-10-11 00:11:21 +682 682 683 68.2 136.4 682 1971-11-14 2024-10-11 00:11:22.000 1971-11-14 2024-10-11 00:11:22 +683 683 684 68.3 136.6 683 1971-11-15 2024-10-11 00:11:23.000 1971-11-15 2024-10-11 00:11:23 +684 684 685 68.4 136.8 684 1971-11-16 2024-10-11 00:11:24.000 1971-11-16 2024-10-11 00:11:24 +686 686 687 68.6 137.20000000000002 686 1971-11-18 2024-10-11 00:11:26.000 1971-11-18 2024-10-11 00:11:26 +687 687 688 68.7 137.4 687 1971-11-19 2024-10-11 00:11:27.000 1971-11-19 2024-10-11 00:11:27 +688 688 689 68.8 137.6 688 1971-11-20 2024-10-11 00:11:28.000 1971-11-20 2024-10-11 00:11:28 +689 689 690 68.9 137.8 689 1971-11-21 2024-10-11 00:11:29.000 1971-11-21 2024-10-11 00:11:29 +691 691 692 69.1 138.20000000000002 691 1971-11-23 2024-10-11 00:11:31.000 1971-11-23 2024-10-11 00:11:31 +692 692 693 69.2 138.4 692 1971-11-24 2024-10-11 00:11:32.000 1971-11-24 2024-10-11 00:11:32 +693 693 694 69.3 138.6 693 1971-11-25 2024-10-11 00:11:33.000 1971-11-25 2024-10-11 00:11:33 +694 694 695 69.4 138.8 694 1971-11-26 2024-10-11 00:11:34.000 1971-11-26 2024-10-11 00:11:34 +696 696 697 69.6 139.20000000000002 696 1971-11-28 2024-10-11 00:11:36.000 1971-11-28 2024-10-11 00:11:36 +697 697 698 69.7 139.4 697 1971-11-29 2024-10-11 00:11:37.000 1971-11-29 2024-10-11 00:11:37 +698 698 699 69.8 139.6 698 1971-11-30 2024-10-11 00:11:38.000 1971-11-30 2024-10-11 00:11:38 +699 699 700 69.9 139.8 699 1971-12-01 2024-10-11 00:11:39.000 1971-12-01 2024-10-11 00:11:39 +701 701 702 70.1 140.20000000000002 701 1971-12-03 2024-10-11 00:11:41.000 1971-12-03 2024-10-11 00:11:41 +702 702 703 70.2 140.4 702 1971-12-04 2024-10-11 00:11:42.000 1971-12-04 2024-10-11 00:11:42 +703 703 704 70.3 140.6 703 1971-12-05 2024-10-11 00:11:43.000 1971-12-05 2024-10-11 00:11:43 +704 704 705 70.4 140.8 704 1971-12-06 2024-10-11 00:11:44.000 1971-12-06 2024-10-11 00:11:44 +706 706 707 70.6 141.20000000000002 706 1971-12-08 2024-10-11 00:11:46.000 1971-12-08 2024-10-11 00:11:46 +707 707 708 70.7 141.4 707 1971-12-09 2024-10-11 00:11:47.000 1971-12-09 2024-10-11 00:11:47 +708 708 709 70.8 141.6 708 1971-12-10 2024-10-11 00:11:48.000 1971-12-10 2024-10-11 00:11:48 +709 709 710 70.9 141.8 709 1971-12-11 2024-10-11 00:11:49.000 1971-12-11 2024-10-11 00:11:49 +711 711 712 71.1 142.20000000000002 711 1971-12-13 2024-10-11 00:11:51.000 1971-12-13 2024-10-11 00:11:51 +712 712 713 71.2 142.4 712 1971-12-14 2024-10-11 00:11:52.000 1971-12-14 2024-10-11 00:11:52 +713 713 714 71.3 142.6 713 1971-12-15 2024-10-11 00:11:53.000 1971-12-15 2024-10-11 00:11:53 +714 714 715 71.4 142.8 714 1971-12-16 2024-10-11 00:11:54.000 1971-12-16 2024-10-11 00:11:54 +716 716 717 71.6 143.20000000000002 716 1971-12-18 2024-10-11 00:11:56.000 1971-12-18 2024-10-11 00:11:56 +717 717 718 71.7 143.4 717 1971-12-19 2024-10-11 00:11:57.000 1971-12-19 2024-10-11 00:11:57 +718 718 719 71.8 143.6 718 1971-12-20 2024-10-11 00:11:58.000 1971-12-20 2024-10-11 00:11:58 +719 719 720 71.9 143.8 719 1971-12-21 2024-10-11 00:11:59.000 1971-12-21 2024-10-11 00:11:59 +721 721 722 72.1 144.20000000000002 721 1971-12-23 2024-10-11 00:12:01.000 1971-12-23 2024-10-11 00:12:01 +722 722 723 72.2 144.4 722 1971-12-24 2024-10-11 00:12:02.000 1971-12-24 2024-10-11 00:12:02 +723 723 724 72.3 144.6 723 1971-12-25 2024-10-11 00:12:03.000 1971-12-25 2024-10-11 00:12:03 +724 724 725 72.4 144.8 724 1971-12-26 2024-10-11 00:12:04.000 1971-12-26 2024-10-11 00:12:04 +726 726 727 72.6 145.20000000000002 726 1971-12-28 2024-10-11 00:12:06.000 1971-12-28 2024-10-11 00:12:06 +727 727 728 72.7 145.4 727 1971-12-29 2024-10-11 00:12:07.000 1971-12-29 2024-10-11 00:12:07 +728 728 729 72.8 145.6 728 1971-12-30 2024-10-11 00:12:08.000 1971-12-30 2024-10-11 00:12:08 +729 729 730 72.9 145.8 729 1971-12-31 2024-10-11 00:12:09.000 1971-12-31 2024-10-11 00:12:09 +731 731 732 73.1 146.20000000000002 731 1972-01-02 2024-10-11 00:12:11.000 1972-01-02 2024-10-11 00:12:11 +732 732 733 73.2 146.4 732 1972-01-03 2024-10-11 00:12:12.000 1972-01-03 2024-10-11 00:12:12 +733 733 734 73.3 146.6 733 1972-01-04 2024-10-11 00:12:13.000 1972-01-04 2024-10-11 00:12:13 +734 734 735 73.4 146.8 734 1972-01-05 2024-10-11 00:12:14.000 1972-01-05 2024-10-11 00:12:14 +736 736 737 73.6 147.20000000000002 736 1972-01-07 2024-10-11 00:12:16.000 1972-01-07 2024-10-11 00:12:16 +737 737 738 73.7 147.4 737 1972-01-08 2024-10-11 00:12:17.000 1972-01-08 2024-10-11 00:12:17 +738 738 739 73.8 147.6 738 1972-01-09 2024-10-11 00:12:18.000 1972-01-09 2024-10-11 00:12:18 +739 739 740 73.9 147.8 739 1972-01-10 2024-10-11 00:12:19.000 1972-01-10 2024-10-11 00:12:19 +741 741 742 74.1 148.20000000000002 741 1972-01-12 2024-10-11 00:12:21.000 1972-01-12 2024-10-11 00:12:21 +742 742 743 74.2 148.4 742 1972-01-13 2024-10-11 00:12:22.000 1972-01-13 2024-10-11 00:12:22 +743 743 744 74.3 148.6 743 1972-01-14 2024-10-11 00:12:23.000 1972-01-14 2024-10-11 00:12:23 +744 744 745 74.4 148.8 744 1972-01-15 2024-10-11 00:12:24.000 1972-01-15 2024-10-11 00:12:24 +746 746 747 74.6 149.20000000000002 746 1972-01-17 2024-10-11 00:12:26.000 1972-01-17 2024-10-11 00:12:26 +747 747 748 74.7 149.4 747 1972-01-18 2024-10-11 00:12:27.000 1972-01-18 2024-10-11 00:12:27 +748 748 749 74.8 149.6 748 1972-01-19 2024-10-11 00:12:28.000 1972-01-19 2024-10-11 00:12:28 +749 749 750 74.9 149.8 749 1972-01-20 2024-10-11 00:12:29.000 1972-01-20 2024-10-11 00:12:29 +751 751 752 75.1 150.20000000000002 751 1972-01-22 2024-10-11 00:12:31.000 1972-01-22 2024-10-11 00:12:31 +752 752 753 75.2 150.4 752 1972-01-23 2024-10-11 00:12:32.000 1972-01-23 2024-10-11 00:12:32 +753 753 754 75.3 150.6 753 1972-01-24 2024-10-11 00:12:33.000 1972-01-24 2024-10-11 00:12:33 +754 754 755 75.4 150.8 754 1972-01-25 2024-10-11 00:12:34.000 1972-01-25 2024-10-11 00:12:34 +756 756 757 75.6 151.20000000000002 756 1972-01-27 2024-10-11 00:12:36.000 1972-01-27 2024-10-11 00:12:36 +757 757 758 75.7 151.4 757 1972-01-28 2024-10-11 00:12:37.000 1972-01-28 2024-10-11 00:12:37 +758 758 759 75.8 151.6 758 1972-01-29 2024-10-11 00:12:38.000 1972-01-29 2024-10-11 00:12:38 +759 759 760 75.9 151.8 759 1972-01-30 2024-10-11 00:12:39.000 1972-01-30 2024-10-11 00:12:39 +761 761 762 76.1 152.20000000000002 761 1972-02-01 2024-10-11 00:12:41.000 1972-02-01 2024-10-11 00:12:41 +762 762 763 76.2 152.4 762 1972-02-02 2024-10-11 00:12:42.000 1972-02-02 2024-10-11 00:12:42 +763 763 764 76.3 152.6 763 1972-02-03 2024-10-11 00:12:43.000 1972-02-03 2024-10-11 00:12:43 +764 764 765 76.4 152.8 764 1972-02-04 2024-10-11 00:12:44.000 1972-02-04 2024-10-11 00:12:44 +766 766 767 76.6 153.20000000000002 766 1972-02-06 2024-10-11 00:12:46.000 1972-02-06 2024-10-11 00:12:46 +767 767 768 76.7 153.4 767 1972-02-07 2024-10-11 00:12:47.000 1972-02-07 2024-10-11 00:12:47 +768 768 769 76.8 153.60000000000002 768 1972-02-08 2024-10-11 00:12:48.000 1972-02-08 2024-10-11 00:12:48 +769 769 770 76.9 153.8 769 1972-02-09 2024-10-11 00:12:49.000 1972-02-09 2024-10-11 00:12:49 +771 771 772 77.1 154.20000000000002 771 1972-02-11 2024-10-11 00:12:51.000 1972-02-11 2024-10-11 00:12:51 +772 772 773 77.2 154.4 772 1972-02-12 2024-10-11 00:12:52.000 1972-02-12 2024-10-11 00:12:52 +773 773 774 77.3 154.60000000000002 773 1972-02-13 2024-10-11 00:12:53.000 1972-02-13 2024-10-11 00:12:53 +774 774 775 77.4 154.8 774 1972-02-14 2024-10-11 00:12:54.000 1972-02-14 2024-10-11 00:12:54 +776 776 777 77.6 155.20000000000002 776 1972-02-16 2024-10-11 00:12:56.000 1972-02-16 2024-10-11 00:12:56 +777 777 778 77.7 155.4 777 1972-02-17 2024-10-11 00:12:57.000 1972-02-17 2024-10-11 00:12:57 +778 778 779 77.8 155.60000000000002 778 1972-02-18 2024-10-11 00:12:58.000 1972-02-18 2024-10-11 00:12:58 +779 779 780 77.9 155.8 779 1972-02-19 2024-10-11 00:12:59.000 1972-02-19 2024-10-11 00:12:59 +781 781 782 78.1 156.20000000000002 781 1972-02-21 2024-10-11 00:13:01.000 1972-02-21 2024-10-11 00:13:01 +782 782 783 78.2 156.4 782 1972-02-22 2024-10-11 00:13:02.000 1972-02-22 2024-10-11 00:13:02 +783 783 784 78.3 156.60000000000002 783 1972-02-23 2024-10-11 00:13:03.000 1972-02-23 2024-10-11 00:13:03 +784 784 785 78.4 156.8 784 1972-02-24 2024-10-11 00:13:04.000 1972-02-24 2024-10-11 00:13:04 +786 786 787 78.6 157.20000000000002 786 1972-02-26 2024-10-11 00:13:06.000 1972-02-26 2024-10-11 00:13:06 +787 787 788 78.7 157.4 787 1972-02-27 2024-10-11 00:13:07.000 1972-02-27 2024-10-11 00:13:07 +788 788 789 78.8 157.60000000000002 788 1972-02-28 2024-10-11 00:13:08.000 1972-02-28 2024-10-11 00:13:08 +789 789 790 78.9 157.8 789 1972-02-29 2024-10-11 00:13:09.000 1972-02-29 2024-10-11 00:13:09 +791 791 792 79.1 158.20000000000002 791 1972-03-02 2024-10-11 00:13:11.000 1972-03-02 2024-10-11 00:13:11 +792 792 793 79.2 158.4 792 1972-03-03 2024-10-11 00:13:12.000 1972-03-03 2024-10-11 00:13:12 +793 793 794 79.3 158.60000000000002 793 1972-03-04 2024-10-11 00:13:13.000 1972-03-04 2024-10-11 00:13:13 +794 794 795 79.4 158.8 794 1972-03-05 2024-10-11 00:13:14.000 1972-03-05 2024-10-11 00:13:14 +796 796 797 79.6 159.20000000000002 796 1972-03-07 2024-10-11 00:13:16.000 1972-03-07 2024-10-11 00:13:16 +797 797 798 79.7 159.4 797 1972-03-08 2024-10-11 00:13:17.000 1972-03-08 2024-10-11 00:13:17 +798 798 799 79.8 159.60000000000002 798 1972-03-09 2024-10-11 00:13:18.000 1972-03-09 2024-10-11 00:13:18 +799 799 800 79.9 159.8 799 1972-03-10 2024-10-11 00:13:19.000 1972-03-10 2024-10-11 00:13:19 +801 801 802 80.1 160.20000000000002 801 1972-03-12 2024-10-11 00:13:21.000 1972-03-12 2024-10-11 00:13:21 +802 802 803 80.2 160.4 802 1972-03-13 2024-10-11 00:13:22.000 1972-03-13 2024-10-11 00:13:22 +803 803 804 80.3 160.60000000000002 803 1972-03-14 2024-10-11 00:13:23.000 1972-03-14 2024-10-11 00:13:23 +804 804 805 80.4 160.8 804 1972-03-15 2024-10-11 00:13:24.000 1972-03-15 2024-10-11 00:13:24 +806 806 807 80.6 161.20000000000002 806 1972-03-17 2024-10-11 00:13:26.000 1972-03-17 2024-10-11 00:13:26 +807 807 808 80.7 161.4 807 1972-03-18 2024-10-11 00:13:27.000 1972-03-18 2024-10-11 00:13:27 +808 808 809 80.8 161.60000000000002 808 1972-03-19 2024-10-11 00:13:28.000 1972-03-19 2024-10-11 00:13:28 +809 809 810 80.9 161.8 809 1972-03-20 2024-10-11 00:13:29.000 1972-03-20 2024-10-11 00:13:29 +811 811 812 81.1 162.20000000000002 811 1972-03-22 2024-10-11 00:13:31.000 1972-03-22 2024-10-11 00:13:31 +812 812 813 81.2 162.4 812 1972-03-23 2024-10-11 00:13:32.000 1972-03-23 2024-10-11 00:13:32 +813 813 814 81.3 162.60000000000002 813 1972-03-24 2024-10-11 00:13:33.000 1972-03-24 2024-10-11 00:13:33 +814 814 815 81.4 162.8 814 1972-03-25 2024-10-11 00:13:34.000 1972-03-25 2024-10-11 00:13:34 +816 816 817 81.6 163.20000000000002 816 1972-03-27 2024-10-11 00:13:36.000 1972-03-27 2024-10-11 00:13:36 +817 817 818 81.7 163.4 817 1972-03-28 2024-10-11 00:13:37.000 1972-03-28 2024-10-11 00:13:37 +818 818 819 81.8 163.60000000000002 818 1972-03-29 2024-10-11 00:13:38.000 1972-03-29 2024-10-11 00:13:38 +819 819 820 81.9 163.8 819 1972-03-30 2024-10-11 00:13:39.000 1972-03-30 2024-10-11 00:13:39 +821 821 822 82.1 164.20000000000002 821 1972-04-01 2024-10-11 00:13:41.000 1972-04-01 2024-10-11 00:13:41 +822 822 823 82.2 164.4 822 1972-04-02 2024-10-11 00:13:42.000 1972-04-02 2024-10-11 00:13:42 +823 823 824 82.3 164.60000000000002 823 1972-04-03 2024-10-11 00:13:43.000 1972-04-03 2024-10-11 00:13:43 +824 824 825 82.4 164.8 824 1972-04-04 2024-10-11 00:13:44.000 1972-04-04 2024-10-11 00:13:44 +826 826 827 82.6 165.20000000000002 826 1972-04-06 2024-10-11 00:13:46.000 1972-04-06 2024-10-11 00:13:46 +827 827 828 82.7 165.4 827 1972-04-07 2024-10-11 00:13:47.000 1972-04-07 2024-10-11 00:13:47 +828 828 829 82.8 165.60000000000002 828 1972-04-08 2024-10-11 00:13:48.000 1972-04-08 2024-10-11 00:13:48 +829 829 830 82.9 165.8 829 1972-04-09 2024-10-11 00:13:49.000 1972-04-09 2024-10-11 00:13:49 +831 831 832 83.1 166.20000000000002 831 1972-04-11 2024-10-11 00:13:51.000 1972-04-11 2024-10-11 00:13:51 +832 832 833 83.2 166.4 832 1972-04-12 2024-10-11 00:13:52.000 1972-04-12 2024-10-11 00:13:52 +833 833 834 83.3 166.60000000000002 833 1972-04-13 2024-10-11 00:13:53.000 1972-04-13 2024-10-11 00:13:53 +834 834 835 83.4 166.8 834 1972-04-14 2024-10-11 00:13:54.000 1972-04-14 2024-10-11 00:13:54 +836 836 837 83.6 167.20000000000002 836 1972-04-16 2024-10-11 00:13:56.000 1972-04-16 2024-10-11 00:13:56 +837 837 838 83.7 167.4 837 1972-04-17 2024-10-11 00:13:57.000 1972-04-17 2024-10-11 00:13:57 +838 838 839 83.8 167.60000000000002 838 1972-04-18 2024-10-11 00:13:58.000 1972-04-18 2024-10-11 00:13:58 +839 839 840 83.9 167.8 839 1972-04-19 2024-10-11 00:13:59.000 1972-04-19 2024-10-11 00:13:59 +841 841 842 84.1 168.20000000000002 841 1972-04-21 2024-10-11 00:14:01.000 1972-04-21 2024-10-11 00:14:01 +842 842 843 84.2 168.4 842 1972-04-22 2024-10-11 00:14:02.000 1972-04-22 2024-10-11 00:14:02 +843 843 844 84.3 168.60000000000002 843 1972-04-23 2024-10-11 00:14:03.000 1972-04-23 2024-10-11 00:14:03 +844 844 845 84.4 168.8 844 1972-04-24 2024-10-11 00:14:04.000 1972-04-24 2024-10-11 00:14:04 +846 846 847 84.6 169.20000000000002 846 1972-04-26 2024-10-11 00:14:06.000 1972-04-26 2024-10-11 00:14:06 +847 847 848 84.7 169.4 847 1972-04-27 2024-10-11 00:14:07.000 1972-04-27 2024-10-11 00:14:07 +848 848 849 84.8 169.60000000000002 848 1972-04-28 2024-10-11 00:14:08.000 1972-04-28 2024-10-11 00:14:08 +849 849 850 84.9 169.8 849 1972-04-29 2024-10-11 00:14:09.000 1972-04-29 2024-10-11 00:14:09 +851 851 852 85.1 170.20000000000002 851 1972-05-01 2024-10-11 00:14:11.000 1972-05-01 2024-10-11 00:14:11 +852 852 853 85.2 170.4 852 1972-05-02 2024-10-11 00:14:12.000 1972-05-02 2024-10-11 00:14:12 +853 853 854 85.3 170.60000000000002 853 1972-05-03 2024-10-11 00:14:13.000 1972-05-03 2024-10-11 00:14:13 +854 854 855 85.4 170.8 854 1972-05-04 2024-10-11 00:14:14.000 1972-05-04 2024-10-11 00:14:14 +856 856 857 85.6 171.20000000000002 856 1972-05-06 2024-10-11 00:14:16.000 1972-05-06 2024-10-11 00:14:16 +857 857 858 85.7 171.4 857 1972-05-07 2024-10-11 00:14:17.000 1972-05-07 2024-10-11 00:14:17 +858 858 859 85.8 171.60000000000002 858 1972-05-08 2024-10-11 00:14:18.000 1972-05-08 2024-10-11 00:14:18 +859 859 860 85.9 171.8 859 1972-05-09 2024-10-11 00:14:19.000 1972-05-09 2024-10-11 00:14:19 +861 861 862 86.1 172.20000000000002 861 1972-05-11 2024-10-11 00:14:21.000 1972-05-11 2024-10-11 00:14:21 +862 862 863 86.2 172.4 862 1972-05-12 2024-10-11 00:14:22.000 1972-05-12 2024-10-11 00:14:22 +863 863 864 86.3 172.60000000000002 863 1972-05-13 2024-10-11 00:14:23.000 1972-05-13 2024-10-11 00:14:23 +864 864 865 86.4 172.8 864 1972-05-14 2024-10-11 00:14:24.000 1972-05-14 2024-10-11 00:14:24 +866 866 867 86.6 173.20000000000002 866 1972-05-16 2024-10-11 00:14:26.000 1972-05-16 2024-10-11 00:14:26 +867 867 868 86.7 173.4 867 1972-05-17 2024-10-11 00:14:27.000 1972-05-17 2024-10-11 00:14:27 +868 868 869 86.8 173.60000000000002 868 1972-05-18 2024-10-11 00:14:28.000 1972-05-18 2024-10-11 00:14:28 +869 869 870 86.9 173.8 869 1972-05-19 2024-10-11 00:14:29.000 1972-05-19 2024-10-11 00:14:29 +871 871 872 87.1 174.20000000000002 871 1972-05-21 2024-10-11 00:14:31.000 1972-05-21 2024-10-11 00:14:31 +872 872 873 87.2 174.4 872 1972-05-22 2024-10-11 00:14:32.000 1972-05-22 2024-10-11 00:14:32 +873 873 874 87.3 174.60000000000002 873 1972-05-23 2024-10-11 00:14:33.000 1972-05-23 2024-10-11 00:14:33 +874 874 875 87.4 174.8 874 1972-05-24 2024-10-11 00:14:34.000 1972-05-24 2024-10-11 00:14:34 +876 876 877 87.6 175.20000000000002 876 1972-05-26 2024-10-11 00:14:36.000 1972-05-26 2024-10-11 00:14:36 +877 877 878 87.7 175.4 877 1972-05-27 2024-10-11 00:14:37.000 1972-05-27 2024-10-11 00:14:37 +878 878 879 87.8 175.60000000000002 878 1972-05-28 2024-10-11 00:14:38.000 1972-05-28 2024-10-11 00:14:38 +879 879 880 87.9 175.8 879 1972-05-29 2024-10-11 00:14:39.000 1972-05-29 2024-10-11 00:14:39 +881 881 882 88.1 176.20000000000002 881 1972-05-31 2024-10-11 00:14:41.000 1972-05-31 2024-10-11 00:14:41 +882 882 883 88.2 176.4 882 1972-06-01 2024-10-11 00:14:42.000 1972-06-01 2024-10-11 00:14:42 +883 883 884 88.3 176.60000000000002 883 1972-06-02 2024-10-11 00:14:43.000 1972-06-02 2024-10-11 00:14:43 +884 884 885 88.4 176.8 884 1972-06-03 2024-10-11 00:14:44.000 1972-06-03 2024-10-11 00:14:44 +886 886 887 88.6 177.20000000000002 886 1972-06-05 2024-10-11 00:14:46.000 1972-06-05 2024-10-11 00:14:46 +887 887 888 88.7 177.4 887 1972-06-06 2024-10-11 00:14:47.000 1972-06-06 2024-10-11 00:14:47 +888 888 889 88.8 177.60000000000002 888 1972-06-07 2024-10-11 00:14:48.000 1972-06-07 2024-10-11 00:14:48 +889 889 890 88.9 177.8 889 1972-06-08 2024-10-11 00:14:49.000 1972-06-08 2024-10-11 00:14:49 +891 891 892 89.1 178.20000000000002 891 1972-06-10 2024-10-11 00:14:51.000 1972-06-10 2024-10-11 00:14:51 +892 892 893 89.2 178.4 892 1972-06-11 2024-10-11 00:14:52.000 1972-06-11 2024-10-11 00:14:52 +893 893 894 89.3 178.60000000000002 893 1972-06-12 2024-10-11 00:14:53.000 1972-06-12 2024-10-11 00:14:53 +894 894 895 89.4 178.8 894 1972-06-13 2024-10-11 00:14:54.000 1972-06-13 2024-10-11 00:14:54 +896 896 897 89.6 179.20000000000002 896 1972-06-15 2024-10-11 00:14:56.000 1972-06-15 2024-10-11 00:14:56 +897 897 898 89.7 179.4 897 1972-06-16 2024-10-11 00:14:57.000 1972-06-16 2024-10-11 00:14:57 +898 898 899 89.8 179.60000000000002 898 1972-06-17 2024-10-11 00:14:58.000 1972-06-17 2024-10-11 00:14:58 +899 899 900 89.9 179.8 899 1972-06-18 2024-10-11 00:14:59.000 1972-06-18 2024-10-11 00:14:59 +901 901 902 90.1 180.20000000000002 901 1972-06-20 2024-10-11 00:15:01.000 1972-06-20 2024-10-11 00:15:01 +902 902 903 90.2 180.4 902 1972-06-21 2024-10-11 00:15:02.000 1972-06-21 2024-10-11 00:15:02 +903 903 904 90.3 180.60000000000002 903 1972-06-22 2024-10-11 00:15:03.000 1972-06-22 2024-10-11 00:15:03 +904 904 905 90.4 180.8 904 1972-06-23 2024-10-11 00:15:04.000 1972-06-23 2024-10-11 00:15:04 +906 906 907 90.6 181.20000000000002 906 1972-06-25 2024-10-11 00:15:06.000 1972-06-25 2024-10-11 00:15:06 +907 907 908 90.7 181.4 907 1972-06-26 2024-10-11 00:15:07.000 1972-06-26 2024-10-11 00:15:07 +908 908 909 90.8 181.60000000000002 908 1972-06-27 2024-10-11 00:15:08.000 1972-06-27 2024-10-11 00:15:08 +909 909 910 90.9 181.8 909 1972-06-28 2024-10-11 00:15:09.000 1972-06-28 2024-10-11 00:15:09 +911 911 912 91.1 182.20000000000002 911 1972-06-30 2024-10-11 00:15:11.000 1972-06-30 2024-10-11 00:15:11 +912 912 913 91.2 182.4 912 1972-07-01 2024-10-11 00:15:12.000 1972-07-01 2024-10-11 00:15:12 +913 913 914 91.3 182.60000000000002 913 1972-07-02 2024-10-11 00:15:13.000 1972-07-02 2024-10-11 00:15:13 +914 914 915 91.4 182.8 914 1972-07-03 2024-10-11 00:15:14.000 1972-07-03 2024-10-11 00:15:14 +916 916 917 91.6 183.20000000000002 916 1972-07-05 2024-10-11 00:15:16.000 1972-07-05 2024-10-11 00:15:16 +917 917 918 91.7 183.4 917 1972-07-06 2024-10-11 00:15:17.000 1972-07-06 2024-10-11 00:15:17 +918 918 919 91.8 183.60000000000002 918 1972-07-07 2024-10-11 00:15:18.000 1972-07-07 2024-10-11 00:15:18 +919 919 920 91.9 183.8 919 1972-07-08 2024-10-11 00:15:19.000 1972-07-08 2024-10-11 00:15:19 +921 921 922 92.1 184.20000000000002 921 1972-07-10 2024-10-11 00:15:21.000 1972-07-10 2024-10-11 00:15:21 +922 922 923 92.2 184.4 922 1972-07-11 2024-10-11 00:15:22.000 1972-07-11 2024-10-11 00:15:22 +923 923 924 92.3 184.60000000000002 923 1972-07-12 2024-10-11 00:15:23.000 1972-07-12 2024-10-11 00:15:23 +924 924 925 92.4 184.8 924 1972-07-13 2024-10-11 00:15:24.000 1972-07-13 2024-10-11 00:15:24 +926 926 927 92.6 185.20000000000002 926 1972-07-15 2024-10-11 00:15:26.000 1972-07-15 2024-10-11 00:15:26 +927 927 928 92.7 185.4 927 1972-07-16 2024-10-11 00:15:27.000 1972-07-16 2024-10-11 00:15:27 +928 928 929 92.8 185.60000000000002 928 1972-07-17 2024-10-11 00:15:28.000 1972-07-17 2024-10-11 00:15:28 +929 929 930 92.9 185.8 929 1972-07-18 2024-10-11 00:15:29.000 1972-07-18 2024-10-11 00:15:29 +931 931 932 93.1 186.20000000000002 931 1972-07-20 2024-10-11 00:15:31.000 1972-07-20 2024-10-11 00:15:31 +932 932 933 93.2 186.4 932 1972-07-21 2024-10-11 00:15:32.000 1972-07-21 2024-10-11 00:15:32 +933 933 934 93.3 186.60000000000002 933 1972-07-22 2024-10-11 00:15:33.000 1972-07-22 2024-10-11 00:15:33 +934 934 935 93.4 186.8 934 1972-07-23 2024-10-11 00:15:34.000 1972-07-23 2024-10-11 00:15:34 +936 936 937 93.6 187.20000000000002 936 1972-07-25 2024-10-11 00:15:36.000 1972-07-25 2024-10-11 00:15:36 +937 937 938 93.7 187.4 937 1972-07-26 2024-10-11 00:15:37.000 1972-07-26 2024-10-11 00:15:37 +938 938 939 93.8 187.60000000000002 938 1972-07-27 2024-10-11 00:15:38.000 1972-07-27 2024-10-11 00:15:38 +939 939 940 93.9 187.8 939 1972-07-28 2024-10-11 00:15:39.000 1972-07-28 2024-10-11 00:15:39 +941 941 942 94.1 188.20000000000002 941 1972-07-30 2024-10-11 00:15:41.000 1972-07-30 2024-10-11 00:15:41 +942 942 943 94.2 188.4 942 1972-07-31 2024-10-11 00:15:42.000 1972-07-31 2024-10-11 00:15:42 +943 943 944 94.3 188.60000000000002 943 1972-08-01 2024-10-11 00:15:43.000 1972-08-01 2024-10-11 00:15:43 +944 944 945 94.4 188.8 944 1972-08-02 2024-10-11 00:15:44.000 1972-08-02 2024-10-11 00:15:44 +946 946 947 94.6 189.20000000000002 946 1972-08-04 2024-10-11 00:15:46.000 1972-08-04 2024-10-11 00:15:46 +947 947 948 94.7 189.4 947 1972-08-05 2024-10-11 00:15:47.000 1972-08-05 2024-10-11 00:15:47 +948 948 949 94.8 189.60000000000002 948 1972-08-06 2024-10-11 00:15:48.000 1972-08-06 2024-10-11 00:15:48 +949 949 950 94.9 189.8 949 1972-08-07 2024-10-11 00:15:49.000 1972-08-07 2024-10-11 00:15:49 +951 951 952 95.1 190.20000000000002 951 1972-08-09 2024-10-11 00:15:51.000 1972-08-09 2024-10-11 00:15:51 +952 952 953 95.2 190.4 952 1972-08-10 2024-10-11 00:15:52.000 1972-08-10 2024-10-11 00:15:52 +953 953 954 95.3 190.60000000000002 953 1972-08-11 2024-10-11 00:15:53.000 1972-08-11 2024-10-11 00:15:53 +954 954 955 95.4 190.8 954 1972-08-12 2024-10-11 00:15:54.000 1972-08-12 2024-10-11 00:15:54 +956 956 957 95.6 191.20000000000002 956 1972-08-14 2024-10-11 00:15:56.000 1972-08-14 2024-10-11 00:15:56 +957 957 958 95.7 191.4 957 1972-08-15 2024-10-11 00:15:57.000 1972-08-15 2024-10-11 00:15:57 +958 958 959 95.8 191.60000000000002 958 1972-08-16 2024-10-11 00:15:58.000 1972-08-16 2024-10-11 00:15:58 +959 959 960 95.9 191.8 959 1972-08-17 2024-10-11 00:15:59.000 1972-08-17 2024-10-11 00:15:59 +961 961 962 96.1 192.20000000000002 961 1972-08-19 2024-10-11 00:16:01.000 1972-08-19 2024-10-11 00:16:01 +962 962 963 96.2 192.4 962 1972-08-20 2024-10-11 00:16:02.000 1972-08-20 2024-10-11 00:16:02 +963 963 964 96.3 192.60000000000002 963 1972-08-21 2024-10-11 00:16:03.000 1972-08-21 2024-10-11 00:16:03 +964 964 965 96.4 192.8 964 1972-08-22 2024-10-11 00:16:04.000 1972-08-22 2024-10-11 00:16:04 +966 966 967 96.6 193.20000000000002 966 1972-08-24 2024-10-11 00:16:06.000 1972-08-24 2024-10-11 00:16:06 +967 967 968 96.7 193.4 967 1972-08-25 2024-10-11 00:16:07.000 1972-08-25 2024-10-11 00:16:07 +968 968 969 96.8 193.60000000000002 968 1972-08-26 2024-10-11 00:16:08.000 1972-08-26 2024-10-11 00:16:08 +969 969 970 96.9 193.8 969 1972-08-27 2024-10-11 00:16:09.000 1972-08-27 2024-10-11 00:16:09 +971 971 972 97.1 194.20000000000002 971 1972-08-29 2024-10-11 00:16:11.000 1972-08-29 2024-10-11 00:16:11 +972 972 973 97.2 194.4 972 1972-08-30 2024-10-11 00:16:12.000 1972-08-30 2024-10-11 00:16:12 +973 973 974 97.3 194.60000000000002 973 1972-08-31 2024-10-11 00:16:13.000 1972-08-31 2024-10-11 00:16:13 +974 974 975 97.4 194.8 974 1972-09-01 2024-10-11 00:16:14.000 1972-09-01 2024-10-11 00:16:14 +976 976 977 97.6 195.20000000000002 976 1972-09-03 2024-10-11 00:16:16.000 1972-09-03 2024-10-11 00:16:16 +977 977 978 97.7 195.4 977 1972-09-04 2024-10-11 00:16:17.000 1972-09-04 2024-10-11 00:16:17 +978 978 979 97.8 195.60000000000002 978 1972-09-05 2024-10-11 00:16:18.000 1972-09-05 2024-10-11 00:16:18 +979 979 980 97.9 195.8 979 1972-09-06 2024-10-11 00:16:19.000 1972-09-06 2024-10-11 00:16:19 +981 981 982 98.1 196.20000000000002 981 1972-09-08 2024-10-11 00:16:21.000 1972-09-08 2024-10-11 00:16:21 +982 982 983 98.2 196.4 982 1972-09-09 2024-10-11 00:16:22.000 1972-09-09 2024-10-11 00:16:22 +983 983 984 98.3 196.60000000000002 983 1972-09-10 2024-10-11 00:16:23.000 1972-09-10 2024-10-11 00:16:23 +984 984 985 98.4 196.8 984 1972-09-11 2024-10-11 00:16:24.000 1972-09-11 2024-10-11 00:16:24 +986 986 987 98.6 197.20000000000002 986 1972-09-13 2024-10-11 00:16:26.000 1972-09-13 2024-10-11 00:16:26 +987 987 988 98.7 197.4 987 1972-09-14 2024-10-11 00:16:27.000 1972-09-14 2024-10-11 00:16:27 +988 988 989 98.8 197.60000000000002 988 1972-09-15 2024-10-11 00:16:28.000 1972-09-15 2024-10-11 00:16:28 +989 989 990 98.9 197.8 989 1972-09-16 2024-10-11 00:16:29.000 1972-09-16 2024-10-11 00:16:29 +991 991 992 99.1 198.20000000000002 991 1972-09-18 2024-10-11 00:16:31.000 1972-09-18 2024-10-11 00:16:31 +992 992 993 99.2 198.4 992 1972-09-19 2024-10-11 00:16:32.000 1972-09-19 2024-10-11 00:16:32 +993 993 994 99.3 198.60000000000002 993 1972-09-20 2024-10-11 00:16:33.000 1972-09-20 2024-10-11 00:16:33 +994 994 995 99.4 198.8 994 1972-09-21 2024-10-11 00:16:34.000 1972-09-21 2024-10-11 00:16:34 +996 996 997 99.6 199.20000000000002 996 1972-09-23 2024-10-11 00:16:36.000 1972-09-23 2024-10-11 00:16:36 +997 997 998 99.7 199.4 997 1972-09-24 2024-10-11 00:16:37.000 1972-09-24 2024-10-11 00:16:37 +998 998 999 99.8 199.60000000000002 998 1972-09-25 2024-10-11 00:16:38.000 1972-09-25 2024-10-11 00:16:38 +999 999 1000 99.9 199.8 999 1972-09-26 2024-10-11 00:16:39.000 1972-09-26 2024-10-11 00:16:39 +1001 1001 1002 100.1 200.20000000000002 1001 1972-09-28 2024-10-11 00:16:41.000 1972-09-28 2024-10-11 00:16:41 +1002 1002 1003 100.2 200.4 1002 1972-09-29 2024-10-11 00:16:42.000 1972-09-29 2024-10-11 00:16:42 +1003 1003 1004 100.3 200.60000000000002 1003 1972-09-30 2024-10-11 00:16:43.000 1972-09-30 2024-10-11 00:16:43 +1004 1004 1005 100.4 200.8 1004 1972-10-01 2024-10-11 00:16:44.000 1972-10-01 2024-10-11 00:16:44 +1006 1006 1007 100.6 201.20000000000002 1006 1972-10-03 2024-10-11 00:16:46.000 1972-10-03 2024-10-11 00:16:46 +1007 1007 1008 100.7 201.4 1007 1972-10-04 2024-10-11 00:16:47.000 1972-10-04 2024-10-11 00:16:47 +1008 1008 1009 100.8 201.60000000000002 1008 1972-10-05 2024-10-11 00:16:48.000 1972-10-05 2024-10-11 00:16:48 +1009 1009 1010 100.9 201.8 1009 1972-10-06 2024-10-11 00:16:49.000 1972-10-06 2024-10-11 00:16:49 +1011 1011 1012 101.1 202.20000000000002 1011 1972-10-08 2024-10-11 00:16:51.000 1972-10-08 2024-10-11 00:16:51 +1012 1012 1013 101.2 202.4 1012 1972-10-09 2024-10-11 00:16:52.000 1972-10-09 2024-10-11 00:16:52 +1013 1013 1014 101.3 202.60000000000002 1013 1972-10-10 2024-10-11 00:16:53.000 1972-10-10 2024-10-11 00:16:53 +1014 1014 1015 101.4 202.8 1014 1972-10-11 2024-10-11 00:16:54.000 1972-10-11 2024-10-11 00:16:54 +1016 1016 1017 101.6 203.20000000000002 1016 1972-10-13 2024-10-11 00:16:56.000 1972-10-13 2024-10-11 00:16:56 +1017 1017 1018 101.7 203.4 1017 1972-10-14 2024-10-11 00:16:57.000 1972-10-14 2024-10-11 00:16:57 +1018 1018 1019 101.8 203.60000000000002 1018 1972-10-15 2024-10-11 00:16:58.000 1972-10-15 2024-10-11 00:16:58 +1019 1019 1020 101.9 203.8 1019 1972-10-16 2024-10-11 00:16:59.000 1972-10-16 2024-10-11 00:16:59 +1021 1021 1022 102.1 204.20000000000002 1021 1972-10-18 2024-10-11 00:17:01.000 1972-10-18 2024-10-11 00:17:01 +1022 1022 1023 102.2 204.4 1022 1972-10-19 2024-10-11 00:17:02.000 1972-10-19 2024-10-11 00:17:02 +1023 1023 1024 102.3 204.60000000000002 1023 1972-10-20 2024-10-11 00:17:03.000 1972-10-20 2024-10-11 00:17:03 +1024 1024 1025 102.4 204.8 1024 1972-10-21 2024-10-11 00:17:04.000 1972-10-21 2024-10-11 00:17:04 +1026 1026 1027 102.6 205.20000000000002 1026 1972-10-23 2024-10-11 00:17:06.000 1972-10-23 2024-10-11 00:17:06 +1027 1027 1028 102.7 205.4 1027 1972-10-24 2024-10-11 00:17:07.000 1972-10-24 2024-10-11 00:17:07 +1028 1028 1029 102.8 205.60000000000002 1028 1972-10-25 2024-10-11 00:17:08.000 1972-10-25 2024-10-11 00:17:08 +1029 1029 1030 102.9 205.8 1029 1972-10-26 2024-10-11 00:17:09.000 1972-10-26 2024-10-11 00:17:09 +1031 1031 1032 103.1 206.20000000000002 1031 1972-10-28 2024-10-11 00:17:11.000 1972-10-28 2024-10-11 00:17:11 +1032 1032 1033 103.2 206.4 1032 1972-10-29 2024-10-11 00:17:12.000 1972-10-29 2024-10-11 00:17:12 +1033 1033 1034 103.3 206.60000000000002 1033 1972-10-30 2024-10-11 00:17:13.000 1972-10-30 2024-10-11 00:17:13 +1034 1034 1035 103.4 206.8 1034 1972-10-31 2024-10-11 00:17:14.000 1972-10-31 2024-10-11 00:17:14 +1036 1036 1037 103.6 207.20000000000002 1036 1972-11-02 2024-10-11 00:17:16.000 1972-11-02 2024-10-11 00:17:16 +1037 1037 1038 103.7 207.4 1037 1972-11-03 2024-10-11 00:17:17.000 1972-11-03 2024-10-11 00:17:17 +1038 1038 1039 103.8 207.60000000000002 1038 1972-11-04 2024-10-11 00:17:18.000 1972-11-04 2024-10-11 00:17:18 +1039 1039 1040 103.9 207.8 1039 1972-11-05 2024-10-11 00:17:19.000 1972-11-05 2024-10-11 00:17:19 +1041 1041 1042 104.1 208.20000000000002 1041 1972-11-07 2024-10-11 00:17:21.000 1972-11-07 2024-10-11 00:17:21 +1042 1042 1043 104.2 208.4 1042 1972-11-08 2024-10-11 00:17:22.000 1972-11-08 2024-10-11 00:17:22 +1043 1043 1044 104.3 208.60000000000002 1043 1972-11-09 2024-10-11 00:17:23.000 1972-11-09 2024-10-11 00:17:23 +1044 1044 1045 104.4 208.8 1044 1972-11-10 2024-10-11 00:17:24.000 1972-11-10 2024-10-11 00:17:24 +1046 1046 1047 104.6 209.20000000000002 1046 1972-11-12 2024-10-11 00:17:26.000 1972-11-12 2024-10-11 00:17:26 +1047 1047 1048 104.7 209.4 1047 1972-11-13 2024-10-11 00:17:27.000 1972-11-13 2024-10-11 00:17:27 +1048 1048 1049 104.8 209.60000000000002 1048 1972-11-14 2024-10-11 00:17:28.000 1972-11-14 2024-10-11 00:17:28 +1049 1049 1050 104.9 209.8 1049 1972-11-15 2024-10-11 00:17:29.000 1972-11-15 2024-10-11 00:17:29 +1051 1051 1052 105.1 210.20000000000002 1051 1972-11-17 2024-10-11 00:17:31.000 1972-11-17 2024-10-11 00:17:31 +1052 1052 1053 105.2 210.4 1052 1972-11-18 2024-10-11 00:17:32.000 1972-11-18 2024-10-11 00:17:32 +1053 1053 1054 105.3 210.60000000000002 1053 1972-11-19 2024-10-11 00:17:33.000 1972-11-19 2024-10-11 00:17:33 +1054 1054 1055 105.4 210.8 1054 1972-11-20 2024-10-11 00:17:34.000 1972-11-20 2024-10-11 00:17:34 +1056 1056 1057 105.6 211.20000000000002 1056 1972-11-22 2024-10-11 00:17:36.000 1972-11-22 2024-10-11 00:17:36 +1057 1057 1058 105.7 211.4 1057 1972-11-23 2024-10-11 00:17:37.000 1972-11-23 2024-10-11 00:17:37 +1058 1058 1059 105.8 211.60000000000002 1058 1972-11-24 2024-10-11 00:17:38.000 1972-11-24 2024-10-11 00:17:38 +1059 1059 1060 105.9 211.8 1059 1972-11-25 2024-10-11 00:17:39.000 1972-11-25 2024-10-11 00:17:39 +1061 1061 1062 106.1 212.20000000000002 1061 1972-11-27 2024-10-11 00:17:41.000 1972-11-27 2024-10-11 00:17:41 +1062 1062 1063 106.2 212.4 1062 1972-11-28 2024-10-11 00:17:42.000 1972-11-28 2024-10-11 00:17:42 +1063 1063 1064 106.3 212.60000000000002 1063 1972-11-29 2024-10-11 00:17:43.000 1972-11-29 2024-10-11 00:17:43 +1064 1064 1065 106.4 212.8 1064 1972-11-30 2024-10-11 00:17:44.000 1972-11-30 2024-10-11 00:17:44 +1066 1066 1067 106.6 213.20000000000002 1066 1972-12-02 2024-10-11 00:17:46.000 1972-12-02 2024-10-11 00:17:46 +1067 1067 1068 106.7 213.4 1067 1972-12-03 2024-10-11 00:17:47.000 1972-12-03 2024-10-11 00:17:47 +1068 1068 1069 106.8 213.60000000000002 1068 1972-12-04 2024-10-11 00:17:48.000 1972-12-04 2024-10-11 00:17:48 +1069 1069 1070 106.9 213.8 1069 1972-12-05 2024-10-11 00:17:49.000 1972-12-05 2024-10-11 00:17:49 +1071 1071 1072 107.1 214.20000000000002 1071 1972-12-07 2024-10-11 00:17:51.000 1972-12-07 2024-10-11 00:17:51 +1072 1072 1073 107.2 214.4 1072 1972-12-08 2024-10-11 00:17:52.000 1972-12-08 2024-10-11 00:17:52 +1073 1073 1074 107.3 214.60000000000002 1073 1972-12-09 2024-10-11 00:17:53.000 1972-12-09 2024-10-11 00:17:53 +1074 1074 1075 107.4 214.8 1074 1972-12-10 2024-10-11 00:17:54.000 1972-12-10 2024-10-11 00:17:54 +1076 1076 1077 107.6 215.20000000000002 1076 1972-12-12 2024-10-11 00:17:56.000 1972-12-12 2024-10-11 00:17:56 +1077 1077 1078 107.7 215.4 1077 1972-12-13 2024-10-11 00:17:57.000 1972-12-13 2024-10-11 00:17:57 +1078 1078 1079 107.8 215.60000000000002 1078 1972-12-14 2024-10-11 00:17:58.000 1972-12-14 2024-10-11 00:17:58 +1079 1079 1080 107.9 215.8 1079 1972-12-15 2024-10-11 00:17:59.000 1972-12-15 2024-10-11 00:17:59 +1081 1081 1082 108.1 216.20000000000002 1081 1972-12-17 2024-10-11 00:18:01.000 1972-12-17 2024-10-11 00:18:01 +1082 1082 1083 108.2 216.4 1082 1972-12-18 2024-10-11 00:18:02.000 1972-12-18 2024-10-11 00:18:02 +1083 1083 1084 108.3 216.60000000000002 1083 1972-12-19 2024-10-11 00:18:03.000 1972-12-19 2024-10-11 00:18:03 +1084 1084 1085 108.4 216.8 1084 1972-12-20 2024-10-11 00:18:04.000 1972-12-20 2024-10-11 00:18:04 +1086 1086 1087 108.6 217.20000000000002 1086 1972-12-22 2024-10-11 00:18:06.000 1972-12-22 2024-10-11 00:18:06 +1087 1087 1088 108.7 217.4 1087 1972-12-23 2024-10-11 00:18:07.000 1972-12-23 2024-10-11 00:18:07 +1088 1088 1089 108.8 217.60000000000002 1088 1972-12-24 2024-10-11 00:18:08.000 1972-12-24 2024-10-11 00:18:08 +1089 1089 1090 108.9 217.8 1089 1972-12-25 2024-10-11 00:18:09.000 1972-12-25 2024-10-11 00:18:09 +1091 1091 1092 109.1 218.20000000000002 1091 1972-12-27 2024-10-11 00:18:11.000 1972-12-27 2024-10-11 00:18:11 +1092 1092 1093 109.2 218.4 1092 1972-12-28 2024-10-11 00:18:12.000 1972-12-28 2024-10-11 00:18:12 +1093 1093 1094 109.3 218.60000000000002 1093 1972-12-29 2024-10-11 00:18:13.000 1972-12-29 2024-10-11 00:18:13 +1094 1094 1095 109.4 218.8 1094 1972-12-30 2024-10-11 00:18:14.000 1972-12-30 2024-10-11 00:18:14 +1096 1096 1097 109.6 219.20000000000002 1096 1973-01-01 2024-10-11 00:18:16.000 1973-01-01 2024-10-11 00:18:16 +1097 1097 1098 109.7 219.4 1097 1973-01-02 2024-10-11 00:18:17.000 1973-01-02 2024-10-11 00:18:17 +1098 1098 1099 109.8 219.60000000000002 1098 1973-01-03 2024-10-11 00:18:18.000 1973-01-03 2024-10-11 00:18:18 +1099 1099 1100 109.9 219.8 1099 1973-01-04 2024-10-11 00:18:19.000 1973-01-04 2024-10-11 00:18:19 +1101 1101 1102 110.1 220.20000000000002 1101 1973-01-06 2024-10-11 00:18:21.000 1973-01-06 2024-10-11 00:18:21 +1102 1102 1103 110.2 220.4 1102 1973-01-07 2024-10-11 00:18:22.000 1973-01-07 2024-10-11 00:18:22 +1103 1103 1104 110.3 220.60000000000002 1103 1973-01-08 2024-10-11 00:18:23.000 1973-01-08 2024-10-11 00:18:23 +1104 1104 1105 110.4 220.8 1104 1973-01-09 2024-10-11 00:18:24.000 1973-01-09 2024-10-11 00:18:24 +1106 1106 1107 110.6 221.20000000000002 1106 1973-01-11 2024-10-11 00:18:26.000 1973-01-11 2024-10-11 00:18:26 +1107 1107 1108 110.7 221.4 1107 1973-01-12 2024-10-11 00:18:27.000 1973-01-12 2024-10-11 00:18:27 +1108 1108 1109 110.8 221.60000000000002 1108 1973-01-13 2024-10-11 00:18:28.000 1973-01-13 2024-10-11 00:18:28 +1109 1109 1110 110.9 221.8 1109 1973-01-14 2024-10-11 00:18:29.000 1973-01-14 2024-10-11 00:18:29 +1111 1111 1112 111.1 222.20000000000002 1111 1973-01-16 2024-10-11 00:18:31.000 1973-01-16 2024-10-11 00:18:31 +1112 1112 1113 111.2 222.4 1112 1973-01-17 2024-10-11 00:18:32.000 1973-01-17 2024-10-11 00:18:32 +1113 1113 1114 111.3 222.60000000000002 1113 1973-01-18 2024-10-11 00:18:33.000 1973-01-18 2024-10-11 00:18:33 +1114 1114 1115 111.4 222.8 1114 1973-01-19 2024-10-11 00:18:34.000 1973-01-19 2024-10-11 00:18:34 +1116 1116 1117 111.6 223.20000000000002 1116 1973-01-21 2024-10-11 00:18:36.000 1973-01-21 2024-10-11 00:18:36 +1117 1117 1118 111.7 223.4 1117 1973-01-22 2024-10-11 00:18:37.000 1973-01-22 2024-10-11 00:18:37 +1118 1118 1119 111.8 223.60000000000002 1118 1973-01-23 2024-10-11 00:18:38.000 1973-01-23 2024-10-11 00:18:38 +1119 1119 1120 111.9 223.8 1119 1973-01-24 2024-10-11 00:18:39.000 1973-01-24 2024-10-11 00:18:39 +1121 1121 1122 112.1 224.20000000000002 1121 1973-01-26 2024-10-11 00:18:41.000 1973-01-26 2024-10-11 00:18:41 +1122 1122 1123 112.2 224.4 1122 1973-01-27 2024-10-11 00:18:42.000 1973-01-27 2024-10-11 00:18:42 +1123 1123 1124 112.3 224.60000000000002 1123 1973-01-28 2024-10-11 00:18:43.000 1973-01-28 2024-10-11 00:18:43 +1124 1124 1125 112.4 224.8 1124 1973-01-29 2024-10-11 00:18:44.000 1973-01-29 2024-10-11 00:18:44 +1126 1126 1127 112.6 225.20000000000002 1126 1973-01-31 2024-10-11 00:18:46.000 1973-01-31 2024-10-11 00:18:46 +1127 1127 1128 112.7 225.4 1127 1973-02-01 2024-10-11 00:18:47.000 1973-02-01 2024-10-11 00:18:47 +1128 1128 1129 112.8 225.60000000000002 1128 1973-02-02 2024-10-11 00:18:48.000 1973-02-02 2024-10-11 00:18:48 +1129 1129 1130 112.9 225.8 1129 1973-02-03 2024-10-11 00:18:49.000 1973-02-03 2024-10-11 00:18:49 +1131 1131 1132 113.1 226.20000000000002 1131 1973-02-05 2024-10-11 00:18:51.000 1973-02-05 2024-10-11 00:18:51 +1132 1132 1133 113.2 226.4 1132 1973-02-06 2024-10-11 00:18:52.000 1973-02-06 2024-10-11 00:18:52 +1133 1133 1134 113.3 226.60000000000002 1133 1973-02-07 2024-10-11 00:18:53.000 1973-02-07 2024-10-11 00:18:53 +1134 1134 1135 113.4 226.8 1134 1973-02-08 2024-10-11 00:18:54.000 1973-02-08 2024-10-11 00:18:54 +1136 1136 1137 113.6 227.20000000000002 1136 1973-02-10 2024-10-11 00:18:56.000 1973-02-10 2024-10-11 00:18:56 +1137 1137 1138 113.7 227.4 1137 1973-02-11 2024-10-11 00:18:57.000 1973-02-11 2024-10-11 00:18:57 +1138 1138 1139 113.8 227.60000000000002 1138 1973-02-12 2024-10-11 00:18:58.000 1973-02-12 2024-10-11 00:18:58 +1139 1139 1140 113.9 227.8 1139 1973-02-13 2024-10-11 00:18:59.000 1973-02-13 2024-10-11 00:18:59 +1141 1141 1142 114.1 228.20000000000002 1141 1973-02-15 2024-10-11 00:19:01.000 1973-02-15 2024-10-11 00:19:01 +1142 1142 1143 114.2 228.4 1142 1973-02-16 2024-10-11 00:19:02.000 1973-02-16 2024-10-11 00:19:02 +1143 1143 1144 114.3 228.60000000000002 1143 1973-02-17 2024-10-11 00:19:03.000 1973-02-17 2024-10-11 00:19:03 +1144 1144 1145 114.4 228.8 1144 1973-02-18 2024-10-11 00:19:04.000 1973-02-18 2024-10-11 00:19:04 +1146 1146 1147 114.6 229.20000000000002 1146 1973-02-20 2024-10-11 00:19:06.000 1973-02-20 2024-10-11 00:19:06 +1147 1147 1148 114.7 229.4 1147 1973-02-21 2024-10-11 00:19:07.000 1973-02-21 2024-10-11 00:19:07 +1148 1148 1149 114.8 229.60000000000002 1148 1973-02-22 2024-10-11 00:19:08.000 1973-02-22 2024-10-11 00:19:08 +1149 1149 1150 114.9 229.8 1149 1973-02-23 2024-10-11 00:19:09.000 1973-02-23 2024-10-11 00:19:09 +1151 1151 1152 115.1 230.20000000000002 1151 1973-02-25 2024-10-11 00:19:11.000 1973-02-25 2024-10-11 00:19:11 +1152 1152 1153 115.2 230.4 1152 1973-02-26 2024-10-11 00:19:12.000 1973-02-26 2024-10-11 00:19:12 +1153 1153 1154 115.3 230.60000000000002 1153 1973-02-27 2024-10-11 00:19:13.000 1973-02-27 2024-10-11 00:19:13 +1154 1154 1155 115.4 230.8 1154 1973-02-28 2024-10-11 00:19:14.000 1973-02-28 2024-10-11 00:19:14 +1156 1156 1157 115.6 231.20000000000002 1156 1973-03-02 2024-10-11 00:19:16.000 1973-03-02 2024-10-11 00:19:16 +1157 1157 1158 115.7 231.4 1157 1973-03-03 2024-10-11 00:19:17.000 1973-03-03 2024-10-11 00:19:17 +1158 1158 1159 115.8 231.60000000000002 1158 1973-03-04 2024-10-11 00:19:18.000 1973-03-04 2024-10-11 00:19:18 +1159 1159 1160 115.9 231.8 1159 1973-03-05 2024-10-11 00:19:19.000 1973-03-05 2024-10-11 00:19:19 +1161 1161 1162 116.1 232.20000000000002 1161 1973-03-07 2024-10-11 00:19:21.000 1973-03-07 2024-10-11 00:19:21 +1162 1162 1163 116.2 232.4 1162 1973-03-08 2024-10-11 00:19:22.000 1973-03-08 2024-10-11 00:19:22 +1163 1163 1164 116.3 232.60000000000002 1163 1973-03-09 2024-10-11 00:19:23.000 1973-03-09 2024-10-11 00:19:23 +1164 1164 1165 116.4 232.8 1164 1973-03-10 2024-10-11 00:19:24.000 1973-03-10 2024-10-11 00:19:24 +1166 1166 1167 116.6 233.20000000000002 1166 1973-03-12 2024-10-11 00:19:26.000 1973-03-12 2024-10-11 00:19:26 +1167 1167 1168 116.7 233.4 1167 1973-03-13 2024-10-11 00:19:27.000 1973-03-13 2024-10-11 00:19:27 +1168 1168 1169 116.8 233.60000000000002 1168 1973-03-14 2024-10-11 00:19:28.000 1973-03-14 2024-10-11 00:19:28 +1169 1169 1170 116.9 233.8 1169 1973-03-15 2024-10-11 00:19:29.000 1973-03-15 2024-10-11 00:19:29 +1171 1171 1172 117.1 234.20000000000002 1171 1973-03-17 2024-10-11 00:19:31.000 1973-03-17 2024-10-11 00:19:31 +1172 1172 1173 117.2 234.4 1172 1973-03-18 2024-10-11 00:19:32.000 1973-03-18 2024-10-11 00:19:32 +1173 1173 1174 117.3 234.60000000000002 1173 1973-03-19 2024-10-11 00:19:33.000 1973-03-19 2024-10-11 00:19:33 +1174 1174 1175 117.4 234.8 1174 1973-03-20 2024-10-11 00:19:34.000 1973-03-20 2024-10-11 00:19:34 +1176 1176 1177 117.6 235.20000000000002 1176 1973-03-22 2024-10-11 00:19:36.000 1973-03-22 2024-10-11 00:19:36 +1177 1177 1178 117.7 235.4 1177 1973-03-23 2024-10-11 00:19:37.000 1973-03-23 2024-10-11 00:19:37 +1178 1178 1179 117.8 235.60000000000002 1178 1973-03-24 2024-10-11 00:19:38.000 1973-03-24 2024-10-11 00:19:38 +1179 1179 1180 117.9 235.8 1179 1973-03-25 2024-10-11 00:19:39.000 1973-03-25 2024-10-11 00:19:39 +1181 1181 1182 118.1 236.20000000000002 1181 1973-03-27 2024-10-11 00:19:41.000 1973-03-27 2024-10-11 00:19:41 +1182 1182 1183 118.2 236.4 1182 1973-03-28 2024-10-11 00:19:42.000 1973-03-28 2024-10-11 00:19:42 +1183 1183 1184 118.3 236.60000000000002 1183 1973-03-29 2024-10-11 00:19:43.000 1973-03-29 2024-10-11 00:19:43 +1184 1184 1185 118.4 236.8 1184 1973-03-30 2024-10-11 00:19:44.000 1973-03-30 2024-10-11 00:19:44 +1186 1186 1187 118.6 237.20000000000002 1186 1973-04-01 2024-10-11 00:19:46.000 1973-04-01 2024-10-11 00:19:46 +1187 1187 1188 118.7 237.4 1187 1973-04-02 2024-10-11 00:19:47.000 1973-04-02 2024-10-11 00:19:47 +1188 1188 1189 118.8 237.60000000000002 1188 1973-04-03 2024-10-11 00:19:48.000 1973-04-03 2024-10-11 00:19:48 +1189 1189 1190 118.9 237.8 1189 1973-04-04 2024-10-11 00:19:49.000 1973-04-04 2024-10-11 00:19:49 +1191 1191 1192 119.1 238.20000000000002 1191 1973-04-06 2024-10-11 00:19:51.000 1973-04-06 2024-10-11 00:19:51 +1192 1192 1193 119.2 238.4 1192 1973-04-07 2024-10-11 00:19:52.000 1973-04-07 2024-10-11 00:19:52 +1193 1193 1194 119.3 238.60000000000002 1193 1973-04-08 2024-10-11 00:19:53.000 1973-04-08 2024-10-11 00:19:53 +1194 1194 1195 119.4 238.8 1194 1973-04-09 2024-10-11 00:19:54.000 1973-04-09 2024-10-11 00:19:54 +1196 1196 1197 119.6 239.20000000000002 1196 1973-04-11 2024-10-11 00:19:56.000 1973-04-11 2024-10-11 00:19:56 +1197 1197 1198 119.7 239.4 1197 1973-04-12 2024-10-11 00:19:57.000 1973-04-12 2024-10-11 00:19:57 +1198 1198 1199 119.8 239.60000000000002 1198 1973-04-13 2024-10-11 00:19:58.000 1973-04-13 2024-10-11 00:19:58 +1199 1199 1200 119.9 239.8 1199 1973-04-14 2024-10-11 00:19:59.000 1973-04-14 2024-10-11 00:19:59 +1201 1201 1202 120.1 240.20000000000002 1201 1973-04-16 2024-10-11 00:20:01.000 1973-04-16 2024-10-11 00:20:01 +1202 1202 1203 120.2 240.4 1202 1973-04-17 2024-10-11 00:20:02.000 1973-04-17 2024-10-11 00:20:02 +1203 1203 1204 120.3 240.60000000000002 1203 1973-04-18 2024-10-11 00:20:03.000 1973-04-18 2024-10-11 00:20:03 +1204 1204 1205 120.4 240.8 1204 1973-04-19 2024-10-11 00:20:04.000 1973-04-19 2024-10-11 00:20:04 +1206 1206 1207 120.6 241.20000000000002 1206 1973-04-21 2024-10-11 00:20:06.000 1973-04-21 2024-10-11 00:20:06 +1207 1207 1208 120.7 241.4 1207 1973-04-22 2024-10-11 00:20:07.000 1973-04-22 2024-10-11 00:20:07 +1208 1208 1209 120.8 241.60000000000002 1208 1973-04-23 2024-10-11 00:20:08.000 1973-04-23 2024-10-11 00:20:08 +1209 1209 1210 120.9 241.8 1209 1973-04-24 2024-10-11 00:20:09.000 1973-04-24 2024-10-11 00:20:09 +1211 1211 1212 121.1 242.20000000000002 1211 1973-04-26 2024-10-11 00:20:11.000 1973-04-26 2024-10-11 00:20:11 +1212 1212 1213 121.2 242.4 1212 1973-04-27 2024-10-11 00:20:12.000 1973-04-27 2024-10-11 00:20:12 +1213 1213 1214 121.3 242.60000000000002 1213 1973-04-28 2024-10-11 00:20:13.000 1973-04-28 2024-10-11 00:20:13 +1214 1214 1215 121.4 242.8 1214 1973-04-29 2024-10-11 00:20:14.000 1973-04-29 2024-10-11 00:20:14 +1216 1216 1217 121.6 243.20000000000002 1216 1973-05-01 2024-10-11 00:20:16.000 1973-05-01 2024-10-11 00:20:16 +1217 1217 1218 121.7 243.4 1217 1973-05-02 2024-10-11 00:20:17.000 1973-05-02 2024-10-11 00:20:17 +1218 1218 1219 121.8 243.60000000000002 1218 1973-05-03 2024-10-11 00:20:18.000 1973-05-03 2024-10-11 00:20:18 +1219 1219 1220 121.9 243.8 1219 1973-05-04 2024-10-11 00:20:19.000 1973-05-04 2024-10-11 00:20:19 +1221 1221 1222 122.1 244.20000000000002 1221 1973-05-06 2024-10-11 00:20:21.000 1973-05-06 2024-10-11 00:20:21 +1222 1222 1223 122.2 244.4 1222 1973-05-07 2024-10-11 00:20:22.000 1973-05-07 2024-10-11 00:20:22 +1223 1223 1224 122.3 244.60000000000002 1223 1973-05-08 2024-10-11 00:20:23.000 1973-05-08 2024-10-11 00:20:23 +1224 1224 1225 122.4 244.8 1224 1973-05-09 2024-10-11 00:20:24.000 1973-05-09 2024-10-11 00:20:24 +1226 1226 1227 122.6 245.20000000000002 1226 1973-05-11 2024-10-11 00:20:26.000 1973-05-11 2024-10-11 00:20:26 +1227 1227 1228 122.7 245.4 1227 1973-05-12 2024-10-11 00:20:27.000 1973-05-12 2024-10-11 00:20:27 +1228 1228 1229 122.8 245.60000000000002 1228 1973-05-13 2024-10-11 00:20:28.000 1973-05-13 2024-10-11 00:20:28 +1229 1229 1230 122.9 245.8 1229 1973-05-14 2024-10-11 00:20:29.000 1973-05-14 2024-10-11 00:20:29 +1231 1231 1232 123.1 246.20000000000002 1231 1973-05-16 2024-10-11 00:20:31.000 1973-05-16 2024-10-11 00:20:31 +1232 1232 1233 123.2 246.4 1232 1973-05-17 2024-10-11 00:20:32.000 1973-05-17 2024-10-11 00:20:32 +1233 1233 1234 123.3 246.60000000000002 1233 1973-05-18 2024-10-11 00:20:33.000 1973-05-18 2024-10-11 00:20:33 +1234 1234 1235 123.4 246.8 1234 1973-05-19 2024-10-11 00:20:34.000 1973-05-19 2024-10-11 00:20:34 +1236 1236 1237 123.6 247.20000000000002 1236 1973-05-21 2024-10-11 00:20:36.000 1973-05-21 2024-10-11 00:20:36 +1237 1237 1238 123.7 247.4 1237 1973-05-22 2024-10-11 00:20:37.000 1973-05-22 2024-10-11 00:20:37 +1238 1238 1239 123.8 247.60000000000002 1238 1973-05-23 2024-10-11 00:20:38.000 1973-05-23 2024-10-11 00:20:38 +1239 1239 1240 123.9 247.8 1239 1973-05-24 2024-10-11 00:20:39.000 1973-05-24 2024-10-11 00:20:39 +1241 1241 1242 124.1 248.20000000000002 1241 1973-05-26 2024-10-11 00:20:41.000 1973-05-26 2024-10-11 00:20:41 +1242 1242 1243 124.2 248.4 1242 1973-05-27 2024-10-11 00:20:42.000 1973-05-27 2024-10-11 00:20:42 +1243 1243 1244 124.3 248.60000000000002 1243 1973-05-28 2024-10-11 00:20:43.000 1973-05-28 2024-10-11 00:20:43 +1244 1244 1245 124.4 248.8 1244 1973-05-29 2024-10-11 00:20:44.000 1973-05-29 2024-10-11 00:20:44 +1246 1246 1247 124.6 249.20000000000002 1246 1973-05-31 2024-10-11 00:20:46.000 1973-05-31 2024-10-11 00:20:46 +1247 1247 1248 124.7 249.4 1247 1973-06-01 2024-10-11 00:20:47.000 1973-06-01 2024-10-11 00:20:47 +1248 1248 1249 124.8 249.60000000000002 1248 1973-06-02 2024-10-11 00:20:48.000 1973-06-02 2024-10-11 00:20:48 +1249 1249 1250 124.9 249.8 1249 1973-06-03 2024-10-11 00:20:49.000 1973-06-03 2024-10-11 00:20:49 +1251 1251 1252 125.1 250.20000000000002 1251 1973-06-05 2024-10-11 00:20:51.000 1973-06-05 2024-10-11 00:20:51 +1252 1252 1253 125.2 250.4 1252 1973-06-06 2024-10-11 00:20:52.000 1973-06-06 2024-10-11 00:20:52 +1253 1253 1254 125.3 250.60000000000002 1253 1973-06-07 2024-10-11 00:20:53.000 1973-06-07 2024-10-11 00:20:53 +1254 1254 1255 125.4 250.8 1254 1973-06-08 2024-10-11 00:20:54.000 1973-06-08 2024-10-11 00:20:54 +1256 1256 1257 125.6 251.20000000000002 1256 1973-06-10 2024-10-11 00:20:56.000 1973-06-10 2024-10-11 00:20:56 +1257 1257 1258 125.7 251.4 1257 1973-06-11 2024-10-11 00:20:57.000 1973-06-11 2024-10-11 00:20:57 +1258 1258 1259 125.8 251.60000000000002 1258 1973-06-12 2024-10-11 00:20:58.000 1973-06-12 2024-10-11 00:20:58 +1259 1259 1260 125.9 251.8 1259 1973-06-13 2024-10-11 00:20:59.000 1973-06-13 2024-10-11 00:20:59 +1261 1261 1262 126.1 252.20000000000002 1261 1973-06-15 2024-10-11 00:21:01.000 1973-06-15 2024-10-11 00:21:01 +1262 1262 1263 126.2 252.4 1262 1973-06-16 2024-10-11 00:21:02.000 1973-06-16 2024-10-11 00:21:02 +1263 1263 1264 126.3 252.60000000000002 1263 1973-06-17 2024-10-11 00:21:03.000 1973-06-17 2024-10-11 00:21:03 +1264 1264 1265 126.4 252.8 1264 1973-06-18 2024-10-11 00:21:04.000 1973-06-18 2024-10-11 00:21:04 +1266 1266 1267 126.6 253.20000000000002 1266 1973-06-20 2024-10-11 00:21:06.000 1973-06-20 2024-10-11 00:21:06 +1267 1267 1268 126.7 253.4 1267 1973-06-21 2024-10-11 00:21:07.000 1973-06-21 2024-10-11 00:21:07 +1268 1268 1269 126.8 253.60000000000002 1268 1973-06-22 2024-10-11 00:21:08.000 1973-06-22 2024-10-11 00:21:08 +1269 1269 1270 126.9 253.8 1269 1973-06-23 2024-10-11 00:21:09.000 1973-06-23 2024-10-11 00:21:09 +1271 1271 1272 127.1 254.20000000000002 1271 1973-06-25 2024-10-11 00:21:11.000 1973-06-25 2024-10-11 00:21:11 +1272 1272 1273 127.2 254.4 1272 1973-06-26 2024-10-11 00:21:12.000 1973-06-26 2024-10-11 00:21:12 +1273 1273 1274 127.3 254.60000000000002 1273 1973-06-27 2024-10-11 00:21:13.000 1973-06-27 2024-10-11 00:21:13 +1274 1274 1275 127.4 254.8 1274 1973-06-28 2024-10-11 00:21:14.000 1973-06-28 2024-10-11 00:21:14 +1276 1276 1277 127.6 255.20000000000002 1276 1973-06-30 2024-10-11 00:21:16.000 1973-06-30 2024-10-11 00:21:16 +1277 1277 1278 127.7 255.4 1277 1973-07-01 2024-10-11 00:21:17.000 1973-07-01 2024-10-11 00:21:17 +1278 1278 1279 127.8 255.60000000000002 1278 1973-07-02 2024-10-11 00:21:18.000 1973-07-02 2024-10-11 00:21:18 +1279 1279 1280 127.9 255.8 1279 1973-07-03 2024-10-11 00:21:19.000 1973-07-03 2024-10-11 00:21:19 +1281 1281 1282 128.1 256.2 1281 1973-07-05 2024-10-11 00:21:21.000 1973-07-05 2024-10-11 00:21:21 +1282 1282 1283 128.2 256.40000000000003 1282 1973-07-06 2024-10-11 00:21:22.000 1973-07-06 2024-10-11 00:21:22 +1283 1283 1284 128.3 256.6 1283 1973-07-07 2024-10-11 00:21:23.000 1973-07-07 2024-10-11 00:21:23 +1284 1284 1285 128.4 256.8 1284 1973-07-08 2024-10-11 00:21:24.000 1973-07-08 2024-10-11 00:21:24 +1286 1286 1287 128.6 257.2 1286 1973-07-10 2024-10-11 00:21:26.000 1973-07-10 2024-10-11 00:21:26 +1287 1287 1288 128.7 257.40000000000003 1287 1973-07-11 2024-10-11 00:21:27.000 1973-07-11 2024-10-11 00:21:27 +1288 1288 1289 128.8 257.6 1288 1973-07-12 2024-10-11 00:21:28.000 1973-07-12 2024-10-11 00:21:28 +1289 1289 1290 128.9 257.8 1289 1973-07-13 2024-10-11 00:21:29.000 1973-07-13 2024-10-11 00:21:29 +1291 1291 1292 129.1 258.2 1291 1973-07-15 2024-10-11 00:21:31.000 1973-07-15 2024-10-11 00:21:31 +1292 1292 1293 129.2 258.40000000000003 1292 1973-07-16 2024-10-11 00:21:32.000 1973-07-16 2024-10-11 00:21:32 +1293 1293 1294 129.3 258.6 1293 1973-07-17 2024-10-11 00:21:33.000 1973-07-17 2024-10-11 00:21:33 +1294 1294 1295 129.4 258.8 1294 1973-07-18 2024-10-11 00:21:34.000 1973-07-18 2024-10-11 00:21:34 +1296 1296 1297 129.6 259.2 1296 1973-07-20 2024-10-11 00:21:36.000 1973-07-20 2024-10-11 00:21:36 +1297 1297 1298 129.7 259.40000000000003 1297 1973-07-21 2024-10-11 00:21:37.000 1973-07-21 2024-10-11 00:21:37 +1298 1298 1299 129.8 259.6 1298 1973-07-22 2024-10-11 00:21:38.000 1973-07-22 2024-10-11 00:21:38 +1299 1299 1300 129.9 259.8 1299 1973-07-23 2024-10-11 00:21:39.000 1973-07-23 2024-10-11 00:21:39 +1301 1301 1302 130.1 260.2 1301 1973-07-25 2024-10-11 00:21:41.000 1973-07-25 2024-10-11 00:21:41 +1302 1302 1303 130.2 260.40000000000003 1302 1973-07-26 2024-10-11 00:21:42.000 1973-07-26 2024-10-11 00:21:42 +1303 1303 1304 130.3 260.6 1303 1973-07-27 2024-10-11 00:21:43.000 1973-07-27 2024-10-11 00:21:43 +1304 1304 1305 130.4 260.8 1304 1973-07-28 2024-10-11 00:21:44.000 1973-07-28 2024-10-11 00:21:44 +1306 1306 1307 130.6 261.2 1306 1973-07-30 2024-10-11 00:21:46.000 1973-07-30 2024-10-11 00:21:46 +1307 1307 1308 130.7 261.40000000000003 1307 1973-07-31 2024-10-11 00:21:47.000 1973-07-31 2024-10-11 00:21:47 +1308 1308 1309 130.8 261.6 1308 1973-08-01 2024-10-11 00:21:48.000 1973-08-01 2024-10-11 00:21:48 +1309 1309 1310 130.9 261.8 1309 1973-08-02 2024-10-11 00:21:49.000 1973-08-02 2024-10-11 00:21:49 +1311 1311 1312 131.1 262.2 1311 1973-08-04 2024-10-11 00:21:51.000 1973-08-04 2024-10-11 00:21:51 +1312 1312 1313 131.2 262.40000000000003 1312 1973-08-05 2024-10-11 00:21:52.000 1973-08-05 2024-10-11 00:21:52 +1313 1313 1314 131.3 262.6 1313 1973-08-06 2024-10-11 00:21:53.000 1973-08-06 2024-10-11 00:21:53 +1314 1314 1315 131.4 262.8 1314 1973-08-07 2024-10-11 00:21:54.000 1973-08-07 2024-10-11 00:21:54 +1316 1316 1317 131.6 263.2 1316 1973-08-09 2024-10-11 00:21:56.000 1973-08-09 2024-10-11 00:21:56 +1317 1317 1318 131.7 263.40000000000003 1317 1973-08-10 2024-10-11 00:21:57.000 1973-08-10 2024-10-11 00:21:57 +1318 1318 1319 131.8 263.6 1318 1973-08-11 2024-10-11 00:21:58.000 1973-08-11 2024-10-11 00:21:58 +1319 1319 1320 131.9 263.8 1319 1973-08-12 2024-10-11 00:21:59.000 1973-08-12 2024-10-11 00:21:59 +1321 1321 1322 132.1 264.2 1321 1973-08-14 2024-10-11 00:22:01.000 1973-08-14 2024-10-11 00:22:01 +1322 1322 1323 132.2 264.40000000000003 1322 1973-08-15 2024-10-11 00:22:02.000 1973-08-15 2024-10-11 00:22:02 +1323 1323 1324 132.3 264.6 1323 1973-08-16 2024-10-11 00:22:03.000 1973-08-16 2024-10-11 00:22:03 +1324 1324 1325 132.4 264.8 1324 1973-08-17 2024-10-11 00:22:04.000 1973-08-17 2024-10-11 00:22:04 +1326 1326 1327 132.6 265.2 1326 1973-08-19 2024-10-11 00:22:06.000 1973-08-19 2024-10-11 00:22:06 +1327 1327 1328 132.7 265.40000000000003 1327 1973-08-20 2024-10-11 00:22:07.000 1973-08-20 2024-10-11 00:22:07 +1328 1328 1329 132.8 265.6 1328 1973-08-21 2024-10-11 00:22:08.000 1973-08-21 2024-10-11 00:22:08 +1329 1329 1330 132.9 265.8 1329 1973-08-22 2024-10-11 00:22:09.000 1973-08-22 2024-10-11 00:22:09 +1331 1331 1332 133.1 266.2 1331 1973-08-24 2024-10-11 00:22:11.000 1973-08-24 2024-10-11 00:22:11 +1332 1332 1333 133.2 266.40000000000003 1332 1973-08-25 2024-10-11 00:22:12.000 1973-08-25 2024-10-11 00:22:12 +1333 1333 1334 133.3 266.6 1333 1973-08-26 2024-10-11 00:22:13.000 1973-08-26 2024-10-11 00:22:13 +1334 1334 1335 133.4 266.8 1334 1973-08-27 2024-10-11 00:22:14.000 1973-08-27 2024-10-11 00:22:14 +1336 1336 1337 133.6 267.2 1336 1973-08-29 2024-10-11 00:22:16.000 1973-08-29 2024-10-11 00:22:16 +1337 1337 1338 133.7 267.40000000000003 1337 1973-08-30 2024-10-11 00:22:17.000 1973-08-30 2024-10-11 00:22:17 +1338 1338 1339 133.8 267.6 1338 1973-08-31 2024-10-11 00:22:18.000 1973-08-31 2024-10-11 00:22:18 +1339 1339 1340 133.9 267.8 1339 1973-09-01 2024-10-11 00:22:19.000 1973-09-01 2024-10-11 00:22:19 +1341 1341 1342 134.1 268.2 1341 1973-09-03 2024-10-11 00:22:21.000 1973-09-03 2024-10-11 00:22:21 +1342 1342 1343 134.2 268.40000000000003 1342 1973-09-04 2024-10-11 00:22:22.000 1973-09-04 2024-10-11 00:22:22 +1343 1343 1344 134.3 268.6 1343 1973-09-05 2024-10-11 00:22:23.000 1973-09-05 2024-10-11 00:22:23 +1344 1344 1345 134.4 268.8 1344 1973-09-06 2024-10-11 00:22:24.000 1973-09-06 2024-10-11 00:22:24 +1346 1346 1347 134.6 269.2 1346 1973-09-08 2024-10-11 00:22:26.000 1973-09-08 2024-10-11 00:22:26 +1347 1347 1348 134.7 269.40000000000003 1347 1973-09-09 2024-10-11 00:22:27.000 1973-09-09 2024-10-11 00:22:27 +1348 1348 1349 134.8 269.6 1348 1973-09-10 2024-10-11 00:22:28.000 1973-09-10 2024-10-11 00:22:28 +1349 1349 1350 134.9 269.8 1349 1973-09-11 2024-10-11 00:22:29.000 1973-09-11 2024-10-11 00:22:29 +1351 1351 1352 135.1 270.2 1351 1973-09-13 2024-10-11 00:22:31.000 1973-09-13 2024-10-11 00:22:31 +1352 1352 1353 135.2 270.40000000000003 1352 1973-09-14 2024-10-11 00:22:32.000 1973-09-14 2024-10-11 00:22:32 +1353 1353 1354 135.3 270.6 1353 1973-09-15 2024-10-11 00:22:33.000 1973-09-15 2024-10-11 00:22:33 +1354 1354 1355 135.4 270.8 1354 1973-09-16 2024-10-11 00:22:34.000 1973-09-16 2024-10-11 00:22:34 +1356 1356 1357 135.6 271.2 1356 1973-09-18 2024-10-11 00:22:36.000 1973-09-18 2024-10-11 00:22:36 +1357 1357 1358 135.7 271.40000000000003 1357 1973-09-19 2024-10-11 00:22:37.000 1973-09-19 2024-10-11 00:22:37 +1358 1358 1359 135.8 271.6 1358 1973-09-20 2024-10-11 00:22:38.000 1973-09-20 2024-10-11 00:22:38 +1359 1359 1360 135.9 271.8 1359 1973-09-21 2024-10-11 00:22:39.000 1973-09-21 2024-10-11 00:22:39 +1361 1361 1362 136.1 272.2 1361 1973-09-23 2024-10-11 00:22:41.000 1973-09-23 2024-10-11 00:22:41 +1362 1362 1363 136.2 272.40000000000003 1362 1973-09-24 2024-10-11 00:22:42.000 1973-09-24 2024-10-11 00:22:42 +1363 1363 1364 136.3 272.6 1363 1973-09-25 2024-10-11 00:22:43.000 1973-09-25 2024-10-11 00:22:43 +1364 1364 1365 136.4 272.8 1364 1973-09-26 2024-10-11 00:22:44.000 1973-09-26 2024-10-11 00:22:44 +1366 1366 1367 136.6 273.2 1366 1973-09-28 2024-10-11 00:22:46.000 1973-09-28 2024-10-11 00:22:46 +1367 1367 1368 136.7 273.40000000000003 1367 1973-09-29 2024-10-11 00:22:47.000 1973-09-29 2024-10-11 00:22:47 +1368 1368 1369 136.8 273.6 1368 1973-09-30 2024-10-11 00:22:48.000 1973-09-30 2024-10-11 00:22:48 +1369 1369 1370 136.9 273.8 1369 1973-10-01 2024-10-11 00:22:49.000 1973-10-01 2024-10-11 00:22:49 +1371 1371 1372 137.1 274.2 1371 1973-10-03 2024-10-11 00:22:51.000 1973-10-03 2024-10-11 00:22:51 +1372 1372 1373 137.2 274.40000000000003 1372 1973-10-04 2024-10-11 00:22:52.000 1973-10-04 2024-10-11 00:22:52 +1373 1373 1374 137.3 274.6 1373 1973-10-05 2024-10-11 00:22:53.000 1973-10-05 2024-10-11 00:22:53 +1374 1374 1375 137.4 274.8 1374 1973-10-06 2024-10-11 00:22:54.000 1973-10-06 2024-10-11 00:22:54 +1376 1376 1377 137.6 275.2 1376 1973-10-08 2024-10-11 00:22:56.000 1973-10-08 2024-10-11 00:22:56 +1377 1377 1378 137.7 275.40000000000003 1377 1973-10-09 2024-10-11 00:22:57.000 1973-10-09 2024-10-11 00:22:57 +1378 1378 1379 137.8 275.6 1378 1973-10-10 2024-10-11 00:22:58.000 1973-10-10 2024-10-11 00:22:58 +1379 1379 1380 137.9 275.8 1379 1973-10-11 2024-10-11 00:22:59.000 1973-10-11 2024-10-11 00:22:59 +1381 1381 1382 138.1 276.2 1381 1973-10-13 2024-10-11 00:23:01.000 1973-10-13 2024-10-11 00:23:01 +1382 1382 1383 138.2 276.40000000000003 1382 1973-10-14 2024-10-11 00:23:02.000 1973-10-14 2024-10-11 00:23:02 +1383 1383 1384 138.3 276.6 1383 1973-10-15 2024-10-11 00:23:03.000 1973-10-15 2024-10-11 00:23:03 +1384 1384 1385 138.4 276.8 1384 1973-10-16 2024-10-11 00:23:04.000 1973-10-16 2024-10-11 00:23:04 +1386 1386 1387 138.6 277.2 1386 1973-10-18 2024-10-11 00:23:06.000 1973-10-18 2024-10-11 00:23:06 +1387 1387 1388 138.7 277.40000000000003 1387 1973-10-19 2024-10-11 00:23:07.000 1973-10-19 2024-10-11 00:23:07 +1388 1388 1389 138.8 277.6 1388 1973-10-20 2024-10-11 00:23:08.000 1973-10-20 2024-10-11 00:23:08 +1389 1389 1390 138.9 277.8 1389 1973-10-21 2024-10-11 00:23:09.000 1973-10-21 2024-10-11 00:23:09 +1391 1391 1392 139.1 278.2 1391 1973-10-23 2024-10-11 00:23:11.000 1973-10-23 2024-10-11 00:23:11 +1392 1392 1393 139.2 278.40000000000003 1392 1973-10-24 2024-10-11 00:23:12.000 1973-10-24 2024-10-11 00:23:12 +1393 1393 1394 139.3 278.6 1393 1973-10-25 2024-10-11 00:23:13.000 1973-10-25 2024-10-11 00:23:13 +1394 1394 1395 139.4 278.8 1394 1973-10-26 2024-10-11 00:23:14.000 1973-10-26 2024-10-11 00:23:14 +1396 1396 1397 139.6 279.2 1396 1973-10-28 2024-10-11 00:23:16.000 1973-10-28 2024-10-11 00:23:16 +1397 1397 1398 139.7 279.40000000000003 1397 1973-10-29 2024-10-11 00:23:17.000 1973-10-29 2024-10-11 00:23:17 +1398 1398 1399 139.8 279.6 1398 1973-10-30 2024-10-11 00:23:18.000 1973-10-30 2024-10-11 00:23:18 +1399 1399 1400 139.9 279.8 1399 1973-10-31 2024-10-11 00:23:19.000 1973-10-31 2024-10-11 00:23:19 +1401 1401 1402 140.1 280.2 1401 1973-11-02 2024-10-11 00:23:21.000 1973-11-02 2024-10-11 00:23:21 +1402 1402 1403 140.2 280.40000000000003 1402 1973-11-03 2024-10-11 00:23:22.000 1973-11-03 2024-10-11 00:23:22 +1403 1403 1404 140.3 280.6 1403 1973-11-04 2024-10-11 00:23:23.000 1973-11-04 2024-10-11 00:23:23 +1404 1404 1405 140.4 280.8 1404 1973-11-05 2024-10-11 00:23:24.000 1973-11-05 2024-10-11 00:23:24 +1406 1406 1407 140.6 281.2 1406 1973-11-07 2024-10-11 00:23:26.000 1973-11-07 2024-10-11 00:23:26 +1407 1407 1408 140.7 281.40000000000003 1407 1973-11-08 2024-10-11 00:23:27.000 1973-11-08 2024-10-11 00:23:27 +1408 1408 1409 140.8 281.6 1408 1973-11-09 2024-10-11 00:23:28.000 1973-11-09 2024-10-11 00:23:28 +1409 1409 1410 140.9 281.8 1409 1973-11-10 2024-10-11 00:23:29.000 1973-11-10 2024-10-11 00:23:29 +1411 1411 1412 141.1 282.2 1411 1973-11-12 2024-10-11 00:23:31.000 1973-11-12 2024-10-11 00:23:31 +1412 1412 1413 141.2 282.40000000000003 1412 1973-11-13 2024-10-11 00:23:32.000 1973-11-13 2024-10-11 00:23:32 +1413 1413 1414 141.3 282.6 1413 1973-11-14 2024-10-11 00:23:33.000 1973-11-14 2024-10-11 00:23:33 +1414 1414 1415 141.4 282.8 1414 1973-11-15 2024-10-11 00:23:34.000 1973-11-15 2024-10-11 00:23:34 +1416 1416 1417 141.6 283.2 1416 1973-11-17 2024-10-11 00:23:36.000 1973-11-17 2024-10-11 00:23:36 +1417 1417 1418 141.7 283.40000000000003 1417 1973-11-18 2024-10-11 00:23:37.000 1973-11-18 2024-10-11 00:23:37 +1418 1418 1419 141.8 283.6 1418 1973-11-19 2024-10-11 00:23:38.000 1973-11-19 2024-10-11 00:23:38 +1419 1419 1420 141.9 283.8 1419 1973-11-20 2024-10-11 00:23:39.000 1973-11-20 2024-10-11 00:23:39 +1421 1421 1422 142.1 284.2 1421 1973-11-22 2024-10-11 00:23:41.000 1973-11-22 2024-10-11 00:23:41 +1422 1422 1423 142.2 284.40000000000003 1422 1973-11-23 2024-10-11 00:23:42.000 1973-11-23 2024-10-11 00:23:42 +1423 1423 1424 142.3 284.6 1423 1973-11-24 2024-10-11 00:23:43.000 1973-11-24 2024-10-11 00:23:43 +1424 1424 1425 142.4 284.8 1424 1973-11-25 2024-10-11 00:23:44.000 1973-11-25 2024-10-11 00:23:44 +1426 1426 1427 142.6 285.2 1426 1973-11-27 2024-10-11 00:23:46.000 1973-11-27 2024-10-11 00:23:46 +1427 1427 1428 142.7 285.40000000000003 1427 1973-11-28 2024-10-11 00:23:47.000 1973-11-28 2024-10-11 00:23:47 +1428 1428 1429 142.8 285.6 1428 1973-11-29 2024-10-11 00:23:48.000 1973-11-29 2024-10-11 00:23:48 +1429 1429 1430 142.9 285.8 1429 1973-11-30 2024-10-11 00:23:49.000 1973-11-30 2024-10-11 00:23:49 +1431 1431 1432 143.1 286.2 1431 1973-12-02 2024-10-11 00:23:51.000 1973-12-02 2024-10-11 00:23:51 +1432 1432 1433 143.2 286.40000000000003 1432 1973-12-03 2024-10-11 00:23:52.000 1973-12-03 2024-10-11 00:23:52 +1433 1433 1434 143.3 286.6 1433 1973-12-04 2024-10-11 00:23:53.000 1973-12-04 2024-10-11 00:23:53 +1434 1434 1435 143.4 286.8 1434 1973-12-05 2024-10-11 00:23:54.000 1973-12-05 2024-10-11 00:23:54 +1436 1436 1437 143.6 287.2 1436 1973-12-07 2024-10-11 00:23:56.000 1973-12-07 2024-10-11 00:23:56 +1437 1437 1438 143.7 287.40000000000003 1437 1973-12-08 2024-10-11 00:23:57.000 1973-12-08 2024-10-11 00:23:57 +1438 1438 1439 143.8 287.6 1438 1973-12-09 2024-10-11 00:23:58.000 1973-12-09 2024-10-11 00:23:58 +1439 1439 1440 143.9 287.8 1439 1973-12-10 2024-10-11 00:23:59.000 1973-12-10 2024-10-11 00:23:59 +1441 1441 1442 144.1 288.2 1441 1973-12-12 2024-10-11 00:24:01.000 1973-12-12 2024-10-11 00:24:01 +1442 1442 1443 144.2 288.40000000000003 1442 1973-12-13 2024-10-11 00:24:02.000 1973-12-13 2024-10-11 00:24:02 +1443 1443 1444 144.3 288.6 1443 1973-12-14 2024-10-11 00:24:03.000 1973-12-14 2024-10-11 00:24:03 +1444 1444 1445 144.4 288.8 1444 1973-12-15 2024-10-11 00:24:04.000 1973-12-15 2024-10-11 00:24:04 +1446 1446 1447 144.6 289.2 1446 1973-12-17 2024-10-11 00:24:06.000 1973-12-17 2024-10-11 00:24:06 +1447 1447 1448 144.7 289.40000000000003 1447 1973-12-18 2024-10-11 00:24:07.000 1973-12-18 2024-10-11 00:24:07 +1448 1448 1449 144.8 289.6 1448 1973-12-19 2024-10-11 00:24:08.000 1973-12-19 2024-10-11 00:24:08 +1449 1449 1450 144.9 289.8 1449 1973-12-20 2024-10-11 00:24:09.000 1973-12-20 2024-10-11 00:24:09 +1451 1451 1452 145.1 290.2 1451 1973-12-22 2024-10-11 00:24:11.000 1973-12-22 2024-10-11 00:24:11 +1452 1452 1453 145.2 290.40000000000003 1452 1973-12-23 2024-10-11 00:24:12.000 1973-12-23 2024-10-11 00:24:12 +1453 1453 1454 145.3 290.6 1453 1973-12-24 2024-10-11 00:24:13.000 1973-12-24 2024-10-11 00:24:13 +1454 1454 1455 145.4 290.8 1454 1973-12-25 2024-10-11 00:24:14.000 1973-12-25 2024-10-11 00:24:14 +1456 1456 1457 145.6 291.2 1456 1973-12-27 2024-10-11 00:24:16.000 1973-12-27 2024-10-11 00:24:16 +1457 1457 1458 145.7 291.40000000000003 1457 1973-12-28 2024-10-11 00:24:17.000 1973-12-28 2024-10-11 00:24:17 +1458 1458 1459 145.8 291.6 1458 1973-12-29 2024-10-11 00:24:18.000 1973-12-29 2024-10-11 00:24:18 +1459 1459 1460 145.9 291.8 1459 1973-12-30 2024-10-11 00:24:19.000 1973-12-30 2024-10-11 00:24:19 +1461 1461 1462 146.1 292.2 1461 1974-01-01 2024-10-11 00:24:21.000 1974-01-01 2024-10-11 00:24:21 +1462 1462 1463 146.2 292.40000000000003 1462 1974-01-02 2024-10-11 00:24:22.000 1974-01-02 2024-10-11 00:24:22 +1463 1463 1464 146.3 292.6 1463 1974-01-03 2024-10-11 00:24:23.000 1974-01-03 2024-10-11 00:24:23 +1464 1464 1465 146.4 292.8 1464 1974-01-04 2024-10-11 00:24:24.000 1974-01-04 2024-10-11 00:24:24 +1466 1466 1467 146.6 293.2 1466 1974-01-06 2024-10-11 00:24:26.000 1974-01-06 2024-10-11 00:24:26 +1467 1467 1468 146.7 293.40000000000003 1467 1974-01-07 2024-10-11 00:24:27.000 1974-01-07 2024-10-11 00:24:27 +1468 1468 1469 146.8 293.6 1468 1974-01-08 2024-10-11 00:24:28.000 1974-01-08 2024-10-11 00:24:28 +1469 1469 1470 146.9 293.8 1469 1974-01-09 2024-10-11 00:24:29.000 1974-01-09 2024-10-11 00:24:29 +1471 1471 1472 147.1 294.2 1471 1974-01-11 2024-10-11 00:24:31.000 1974-01-11 2024-10-11 00:24:31 +1472 1472 1473 147.2 294.40000000000003 1472 1974-01-12 2024-10-11 00:24:32.000 1974-01-12 2024-10-11 00:24:32 +1473 1473 1474 147.3 294.6 1473 1974-01-13 2024-10-11 00:24:33.000 1974-01-13 2024-10-11 00:24:33 +1474 1474 1475 147.4 294.8 1474 1974-01-14 2024-10-11 00:24:34.000 1974-01-14 2024-10-11 00:24:34 +1476 1476 1477 147.6 295.2 1476 1974-01-16 2024-10-11 00:24:36.000 1974-01-16 2024-10-11 00:24:36 +1477 1477 1478 147.7 295.40000000000003 1477 1974-01-17 2024-10-11 00:24:37.000 1974-01-17 2024-10-11 00:24:37 +1478 1478 1479 147.8 295.6 1478 1974-01-18 2024-10-11 00:24:38.000 1974-01-18 2024-10-11 00:24:38 +1479 1479 1480 147.9 295.8 1479 1974-01-19 2024-10-11 00:24:39.000 1974-01-19 2024-10-11 00:24:39 +1481 1481 1482 148.1 296.2 1481 1974-01-21 2024-10-11 00:24:41.000 1974-01-21 2024-10-11 00:24:41 +1482 1482 1483 148.2 296.40000000000003 1482 1974-01-22 2024-10-11 00:24:42.000 1974-01-22 2024-10-11 00:24:42 +1483 1483 1484 148.3 296.6 1483 1974-01-23 2024-10-11 00:24:43.000 1974-01-23 2024-10-11 00:24:43 +1484 1484 1485 148.4 296.8 1484 1974-01-24 2024-10-11 00:24:44.000 1974-01-24 2024-10-11 00:24:44 +1486 1486 1487 148.6 297.2 1486 1974-01-26 2024-10-11 00:24:46.000 1974-01-26 2024-10-11 00:24:46 +1487 1487 1488 148.7 297.40000000000003 1487 1974-01-27 2024-10-11 00:24:47.000 1974-01-27 2024-10-11 00:24:47 +1488 1488 1489 148.8 297.6 1488 1974-01-28 2024-10-11 00:24:48.000 1974-01-28 2024-10-11 00:24:48 +1489 1489 1490 148.9 297.8 1489 1974-01-29 2024-10-11 00:24:49.000 1974-01-29 2024-10-11 00:24:49 +1491 1491 1492 149.1 298.2 1491 1974-01-31 2024-10-11 00:24:51.000 1974-01-31 2024-10-11 00:24:51 +1492 1492 1493 149.2 298.40000000000003 1492 1974-02-01 2024-10-11 00:24:52.000 1974-02-01 2024-10-11 00:24:52 +1493 1493 1494 149.3 298.6 1493 1974-02-02 2024-10-11 00:24:53.000 1974-02-02 2024-10-11 00:24:53 +1494 1494 1495 149.4 298.8 1494 1974-02-03 2024-10-11 00:24:54.000 1974-02-03 2024-10-11 00:24:54 +1496 1496 1497 149.6 299.2 1496 1974-02-05 2024-10-11 00:24:56.000 1974-02-05 2024-10-11 00:24:56 +1497 1497 1498 149.7 299.40000000000003 1497 1974-02-06 2024-10-11 00:24:57.000 1974-02-06 2024-10-11 00:24:57 +1498 1498 1499 149.8 299.6 1498 1974-02-07 2024-10-11 00:24:58.000 1974-02-07 2024-10-11 00:24:58 +1499 1499 1500 149.9 299.8 1499 1974-02-08 2024-10-11 00:24:59.000 1974-02-08 2024-10-11 00:24:59 +1501 1501 1502 150.1 300.2 1501 1974-02-10 2024-10-11 00:25:01.000 1974-02-10 2024-10-11 00:25:01 +1502 1502 1503 150.2 300.40000000000003 1502 1974-02-11 2024-10-11 00:25:02.000 1974-02-11 2024-10-11 00:25:02 +1503 1503 1504 150.3 300.6 1503 1974-02-12 2024-10-11 00:25:03.000 1974-02-12 2024-10-11 00:25:03 +1504 1504 1505 150.4 300.8 1504 1974-02-13 2024-10-11 00:25:04.000 1974-02-13 2024-10-11 00:25:04 +1506 1506 1507 150.6 301.2 1506 1974-02-15 2024-10-11 00:25:06.000 1974-02-15 2024-10-11 00:25:06 +1507 1507 1508 150.7 301.40000000000003 1507 1974-02-16 2024-10-11 00:25:07.000 1974-02-16 2024-10-11 00:25:07 +1508 1508 1509 150.8 301.6 1508 1974-02-17 2024-10-11 00:25:08.000 1974-02-17 2024-10-11 00:25:08 +1509 1509 1510 150.9 301.8 1509 1974-02-18 2024-10-11 00:25:09.000 1974-02-18 2024-10-11 00:25:09 +1511 1511 1512 151.1 302.2 1511 1974-02-20 2024-10-11 00:25:11.000 1974-02-20 2024-10-11 00:25:11 +1512 1512 1513 151.2 302.40000000000003 1512 1974-02-21 2024-10-11 00:25:12.000 1974-02-21 2024-10-11 00:25:12 +1513 1513 1514 151.3 302.6 1513 1974-02-22 2024-10-11 00:25:13.000 1974-02-22 2024-10-11 00:25:13 +1514 1514 1515 151.4 302.8 1514 1974-02-23 2024-10-11 00:25:14.000 1974-02-23 2024-10-11 00:25:14 +1516 1516 1517 151.6 303.2 1516 1974-02-25 2024-10-11 00:25:16.000 1974-02-25 2024-10-11 00:25:16 +1517 1517 1518 151.7 303.40000000000003 1517 1974-02-26 2024-10-11 00:25:17.000 1974-02-26 2024-10-11 00:25:17 +1518 1518 1519 151.8 303.6 1518 1974-02-27 2024-10-11 00:25:18.000 1974-02-27 2024-10-11 00:25:18 +1519 1519 1520 151.9 303.8 1519 1974-02-28 2024-10-11 00:25:19.000 1974-02-28 2024-10-11 00:25:19 +1521 1521 1522 152.1 304.2 1521 1974-03-02 2024-10-11 00:25:21.000 1974-03-02 2024-10-11 00:25:21 +1522 1522 1523 152.2 304.40000000000003 1522 1974-03-03 2024-10-11 00:25:22.000 1974-03-03 2024-10-11 00:25:22 +1523 1523 1524 152.3 304.6 1523 1974-03-04 2024-10-11 00:25:23.000 1974-03-04 2024-10-11 00:25:23 +1524 1524 1525 152.4 304.8 1524 1974-03-05 2024-10-11 00:25:24.000 1974-03-05 2024-10-11 00:25:24 +1526 1526 1527 152.6 305.2 1526 1974-03-07 2024-10-11 00:25:26.000 1974-03-07 2024-10-11 00:25:26 +1527 1527 1528 152.7 305.40000000000003 1527 1974-03-08 2024-10-11 00:25:27.000 1974-03-08 2024-10-11 00:25:27 +1528 1528 1529 152.8 305.6 1528 1974-03-09 2024-10-11 00:25:28.000 1974-03-09 2024-10-11 00:25:28 +1529 1529 1530 152.9 305.8 1529 1974-03-10 2024-10-11 00:25:29.000 1974-03-10 2024-10-11 00:25:29 +1531 1531 1532 153.1 306.2 1531 1974-03-12 2024-10-11 00:25:31.000 1974-03-12 2024-10-11 00:25:31 +1532 1532 1533 153.2 306.40000000000003 1532 1974-03-13 2024-10-11 00:25:32.000 1974-03-13 2024-10-11 00:25:32 +1533 1533 1534 153.3 306.6 1533 1974-03-14 2024-10-11 00:25:33.000 1974-03-14 2024-10-11 00:25:33 +1534 1534 1535 153.4 306.8 1534 1974-03-15 2024-10-11 00:25:34.000 1974-03-15 2024-10-11 00:25:34 +1536 1536 1537 153.6 307.20000000000005 1536 1974-03-17 2024-10-11 00:25:36.000 1974-03-17 2024-10-11 00:25:36 +1537 1537 1538 153.7 307.40000000000003 1537 1974-03-18 2024-10-11 00:25:37.000 1974-03-18 2024-10-11 00:25:37 +1538 1538 1539 153.8 307.6 1538 1974-03-19 2024-10-11 00:25:38.000 1974-03-19 2024-10-11 00:25:38 +1539 1539 1540 153.9 307.8 1539 1974-03-20 2024-10-11 00:25:39.000 1974-03-20 2024-10-11 00:25:39 +1541 1541 1542 154.1 308.20000000000005 1541 1974-03-22 2024-10-11 00:25:41.000 1974-03-22 2024-10-11 00:25:41 +1542 1542 1543 154.2 308.40000000000003 1542 1974-03-23 2024-10-11 00:25:42.000 1974-03-23 2024-10-11 00:25:42 +1543 1543 1544 154.3 308.6 1543 1974-03-24 2024-10-11 00:25:43.000 1974-03-24 2024-10-11 00:25:43 +1544 1544 1545 154.4 308.8 1544 1974-03-25 2024-10-11 00:25:44.000 1974-03-25 2024-10-11 00:25:44 +1546 1546 1547 154.6 309.20000000000005 1546 1974-03-27 2024-10-11 00:25:46.000 1974-03-27 2024-10-11 00:25:46 +1547 1547 1548 154.7 309.40000000000003 1547 1974-03-28 2024-10-11 00:25:47.000 1974-03-28 2024-10-11 00:25:47 +1548 1548 1549 154.8 309.6 1548 1974-03-29 2024-10-11 00:25:48.000 1974-03-29 2024-10-11 00:25:48 +1549 1549 1550 154.9 309.8 1549 1974-03-30 2024-10-11 00:25:49.000 1974-03-30 2024-10-11 00:25:49 +1551 1551 1552 155.1 310.20000000000005 1551 1974-04-01 2024-10-11 00:25:51.000 1974-04-01 2024-10-11 00:25:51 +1552 1552 1553 155.2 310.40000000000003 1552 1974-04-02 2024-10-11 00:25:52.000 1974-04-02 2024-10-11 00:25:52 +1553 1553 1554 155.3 310.6 1553 1974-04-03 2024-10-11 00:25:53.000 1974-04-03 2024-10-11 00:25:53 +1554 1554 1555 155.4 310.8 1554 1974-04-04 2024-10-11 00:25:54.000 1974-04-04 2024-10-11 00:25:54 +1556 1556 1557 155.6 311.20000000000005 1556 1974-04-06 2024-10-11 00:25:56.000 1974-04-06 2024-10-11 00:25:56 +1557 1557 1558 155.7 311.40000000000003 1557 1974-04-07 2024-10-11 00:25:57.000 1974-04-07 2024-10-11 00:25:57 +1558 1558 1559 155.8 311.6 1558 1974-04-08 2024-10-11 00:25:58.000 1974-04-08 2024-10-11 00:25:58 +1559 1559 1560 155.9 311.8 1559 1974-04-09 2024-10-11 00:25:59.000 1974-04-09 2024-10-11 00:25:59 +1561 1561 1562 156.1 312.20000000000005 1561 1974-04-11 2024-10-11 00:26:01.000 1974-04-11 2024-10-11 00:26:01 +1562 1562 1563 156.2 312.40000000000003 1562 1974-04-12 2024-10-11 00:26:02.000 1974-04-12 2024-10-11 00:26:02 +1563 1563 1564 156.3 312.6 1563 1974-04-13 2024-10-11 00:26:03.000 1974-04-13 2024-10-11 00:26:03 +1564 1564 1565 156.4 312.8 1564 1974-04-14 2024-10-11 00:26:04.000 1974-04-14 2024-10-11 00:26:04 +1566 1566 1567 156.6 313.20000000000005 1566 1974-04-16 2024-10-11 00:26:06.000 1974-04-16 2024-10-11 00:26:06 +1567 1567 1568 156.7 313.40000000000003 1567 1974-04-17 2024-10-11 00:26:07.000 1974-04-17 2024-10-11 00:26:07 +1568 1568 1569 156.8 313.6 1568 1974-04-18 2024-10-11 00:26:08.000 1974-04-18 2024-10-11 00:26:08 +1569 1569 1570 156.9 313.8 1569 1974-04-19 2024-10-11 00:26:09.000 1974-04-19 2024-10-11 00:26:09 +1571 1571 1572 157.1 314.20000000000005 1571 1974-04-21 2024-10-11 00:26:11.000 1974-04-21 2024-10-11 00:26:11 +1572 1572 1573 157.2 314.40000000000003 1572 1974-04-22 2024-10-11 00:26:12.000 1974-04-22 2024-10-11 00:26:12 +1573 1573 1574 157.3 314.6 1573 1974-04-23 2024-10-11 00:26:13.000 1974-04-23 2024-10-11 00:26:13 +1574 1574 1575 157.4 314.8 1574 1974-04-24 2024-10-11 00:26:14.000 1974-04-24 2024-10-11 00:26:14 +1576 1576 1577 157.6 315.20000000000005 1576 1974-04-26 2024-10-11 00:26:16.000 1974-04-26 2024-10-11 00:26:16 +1577 1577 1578 157.7 315.40000000000003 1577 1974-04-27 2024-10-11 00:26:17.000 1974-04-27 2024-10-11 00:26:17 +1578 1578 1579 157.8 315.6 1578 1974-04-28 2024-10-11 00:26:18.000 1974-04-28 2024-10-11 00:26:18 +1579 1579 1580 157.9 315.8 1579 1974-04-29 2024-10-11 00:26:19.000 1974-04-29 2024-10-11 00:26:19 +1581 1581 1582 158.1 316.20000000000005 1581 1974-05-01 2024-10-11 00:26:21.000 1974-05-01 2024-10-11 00:26:21 +1582 1582 1583 158.2 316.40000000000003 1582 1974-05-02 2024-10-11 00:26:22.000 1974-05-02 2024-10-11 00:26:22 +1583 1583 1584 158.3 316.6 1583 1974-05-03 2024-10-11 00:26:23.000 1974-05-03 2024-10-11 00:26:23 +1584 1584 1585 158.4 316.8 1584 1974-05-04 2024-10-11 00:26:24.000 1974-05-04 2024-10-11 00:26:24 +1586 1586 1587 158.6 317.20000000000005 1586 1974-05-06 2024-10-11 00:26:26.000 1974-05-06 2024-10-11 00:26:26 +1587 1587 1588 158.7 317.40000000000003 1587 1974-05-07 2024-10-11 00:26:27.000 1974-05-07 2024-10-11 00:26:27 +1588 1588 1589 158.8 317.6 1588 1974-05-08 2024-10-11 00:26:28.000 1974-05-08 2024-10-11 00:26:28 +1589 1589 1590 158.9 317.8 1589 1974-05-09 2024-10-11 00:26:29.000 1974-05-09 2024-10-11 00:26:29 +1591 1591 1592 159.1 318.20000000000005 1591 1974-05-11 2024-10-11 00:26:31.000 1974-05-11 2024-10-11 00:26:31 +1592 1592 1593 159.2 318.40000000000003 1592 1974-05-12 2024-10-11 00:26:32.000 1974-05-12 2024-10-11 00:26:32 +1593 1593 1594 159.3 318.6 1593 1974-05-13 2024-10-11 00:26:33.000 1974-05-13 2024-10-11 00:26:33 +1594 1594 1595 159.4 318.8 1594 1974-05-14 2024-10-11 00:26:34.000 1974-05-14 2024-10-11 00:26:34 +1596 1596 1597 159.6 319.20000000000005 1596 1974-05-16 2024-10-11 00:26:36.000 1974-05-16 2024-10-11 00:26:36 +1597 1597 1598 159.7 319.40000000000003 1597 1974-05-17 2024-10-11 00:26:37.000 1974-05-17 2024-10-11 00:26:37 +1598 1598 1599 159.8 319.6 1598 1974-05-18 2024-10-11 00:26:38.000 1974-05-18 2024-10-11 00:26:38 +1599 1599 1600 159.9 319.8 1599 1974-05-19 2024-10-11 00:26:39.000 1974-05-19 2024-10-11 00:26:39 +1601 1601 1602 160.1 320.20000000000005 1601 1974-05-21 2024-10-11 00:26:41.000 1974-05-21 2024-10-11 00:26:41 +1602 1602 1603 160.2 320.40000000000003 1602 1974-05-22 2024-10-11 00:26:42.000 1974-05-22 2024-10-11 00:26:42 +1603 1603 1604 160.3 320.6 1603 1974-05-23 2024-10-11 00:26:43.000 1974-05-23 2024-10-11 00:26:43 +1604 1604 1605 160.4 320.8 1604 1974-05-24 2024-10-11 00:26:44.000 1974-05-24 2024-10-11 00:26:44 +1606 1606 1607 160.6 321.20000000000005 1606 1974-05-26 2024-10-11 00:26:46.000 1974-05-26 2024-10-11 00:26:46 +1607 1607 1608 160.7 321.40000000000003 1607 1974-05-27 2024-10-11 00:26:47.000 1974-05-27 2024-10-11 00:26:47 +1608 1608 1609 160.8 321.6 1608 1974-05-28 2024-10-11 00:26:48.000 1974-05-28 2024-10-11 00:26:48 +1609 1609 1610 160.9 321.8 1609 1974-05-29 2024-10-11 00:26:49.000 1974-05-29 2024-10-11 00:26:49 +1611 1611 1612 161.1 322.20000000000005 1611 1974-05-31 2024-10-11 00:26:51.000 1974-05-31 2024-10-11 00:26:51 +1612 1612 1613 161.2 322.40000000000003 1612 1974-06-01 2024-10-11 00:26:52.000 1974-06-01 2024-10-11 00:26:52 +1613 1613 1614 161.3 322.6 1613 1974-06-02 2024-10-11 00:26:53.000 1974-06-02 2024-10-11 00:26:53 +1614 1614 1615 161.4 322.8 1614 1974-06-03 2024-10-11 00:26:54.000 1974-06-03 2024-10-11 00:26:54 +1616 1616 1617 161.6 323.20000000000005 1616 1974-06-05 2024-10-11 00:26:56.000 1974-06-05 2024-10-11 00:26:56 +1617 1617 1618 161.7 323.40000000000003 1617 1974-06-06 2024-10-11 00:26:57.000 1974-06-06 2024-10-11 00:26:57 +1618 1618 1619 161.8 323.6 1618 1974-06-07 2024-10-11 00:26:58.000 1974-06-07 2024-10-11 00:26:58 +1619 1619 1620 161.9 323.8 1619 1974-06-08 2024-10-11 00:26:59.000 1974-06-08 2024-10-11 00:26:59 +1621 1621 1622 162.1 324.20000000000005 1621 1974-06-10 2024-10-11 00:27:01.000 1974-06-10 2024-10-11 00:27:01 +1622 1622 1623 162.2 324.40000000000003 1622 1974-06-11 2024-10-11 00:27:02.000 1974-06-11 2024-10-11 00:27:02 +1623 1623 1624 162.3 324.6 1623 1974-06-12 2024-10-11 00:27:03.000 1974-06-12 2024-10-11 00:27:03 +1624 1624 1625 162.4 324.8 1624 1974-06-13 2024-10-11 00:27:04.000 1974-06-13 2024-10-11 00:27:04 +1626 1626 1627 162.6 325.20000000000005 1626 1974-06-15 2024-10-11 00:27:06.000 1974-06-15 2024-10-11 00:27:06 +1627 1627 1628 162.7 325.40000000000003 1627 1974-06-16 2024-10-11 00:27:07.000 1974-06-16 2024-10-11 00:27:07 +1628 1628 1629 162.8 325.6 1628 1974-06-17 2024-10-11 00:27:08.000 1974-06-17 2024-10-11 00:27:08 +1629 1629 1630 162.9 325.8 1629 1974-06-18 2024-10-11 00:27:09.000 1974-06-18 2024-10-11 00:27:09 +1631 1631 1632 163.1 326.20000000000005 1631 1974-06-20 2024-10-11 00:27:11.000 1974-06-20 2024-10-11 00:27:11 +1632 1632 1633 163.2 326.40000000000003 1632 1974-06-21 2024-10-11 00:27:12.000 1974-06-21 2024-10-11 00:27:12 +1633 1633 1634 163.3 326.6 1633 1974-06-22 2024-10-11 00:27:13.000 1974-06-22 2024-10-11 00:27:13 +1634 1634 1635 163.4 326.8 1634 1974-06-23 2024-10-11 00:27:14.000 1974-06-23 2024-10-11 00:27:14 +1636 1636 1637 163.6 327.20000000000005 1636 1974-06-25 2024-10-11 00:27:16.000 1974-06-25 2024-10-11 00:27:16 +1637 1637 1638 163.7 327.40000000000003 1637 1974-06-26 2024-10-11 00:27:17.000 1974-06-26 2024-10-11 00:27:17 +1638 1638 1639 163.8 327.6 1638 1974-06-27 2024-10-11 00:27:18.000 1974-06-27 2024-10-11 00:27:18 +1639 1639 1640 163.9 327.8 1639 1974-06-28 2024-10-11 00:27:19.000 1974-06-28 2024-10-11 00:27:19 +1641 1641 1642 164.1 328.20000000000005 1641 1974-06-30 2024-10-11 00:27:21.000 1974-06-30 2024-10-11 00:27:21 +1642 1642 1643 164.2 328.40000000000003 1642 1974-07-01 2024-10-11 00:27:22.000 1974-07-01 2024-10-11 00:27:22 +1643 1643 1644 164.3 328.6 1643 1974-07-02 2024-10-11 00:27:23.000 1974-07-02 2024-10-11 00:27:23 +1644 1644 1645 164.4 328.8 1644 1974-07-03 2024-10-11 00:27:24.000 1974-07-03 2024-10-11 00:27:24 +1646 1646 1647 164.6 329.20000000000005 1646 1974-07-05 2024-10-11 00:27:26.000 1974-07-05 2024-10-11 00:27:26 +1647 1647 1648 164.7 329.40000000000003 1647 1974-07-06 2024-10-11 00:27:27.000 1974-07-06 2024-10-11 00:27:27 +1648 1648 1649 164.8 329.6 1648 1974-07-07 2024-10-11 00:27:28.000 1974-07-07 2024-10-11 00:27:28 +1649 1649 1650 164.9 329.8 1649 1974-07-08 2024-10-11 00:27:29.000 1974-07-08 2024-10-11 00:27:29 +1651 1651 1652 165.1 330.20000000000005 1651 1974-07-10 2024-10-11 00:27:31.000 1974-07-10 2024-10-11 00:27:31 +1652 1652 1653 165.2 330.40000000000003 1652 1974-07-11 2024-10-11 00:27:32.000 1974-07-11 2024-10-11 00:27:32 +1653 1653 1654 165.3 330.6 1653 1974-07-12 2024-10-11 00:27:33.000 1974-07-12 2024-10-11 00:27:33 +1654 1654 1655 165.4 330.8 1654 1974-07-13 2024-10-11 00:27:34.000 1974-07-13 2024-10-11 00:27:34 +1656 1656 1657 165.6 331.20000000000005 1656 1974-07-15 2024-10-11 00:27:36.000 1974-07-15 2024-10-11 00:27:36 +1657 1657 1658 165.7 331.40000000000003 1657 1974-07-16 2024-10-11 00:27:37.000 1974-07-16 2024-10-11 00:27:37 +1658 1658 1659 165.8 331.6 1658 1974-07-17 2024-10-11 00:27:38.000 1974-07-17 2024-10-11 00:27:38 +1659 1659 1660 165.9 331.8 1659 1974-07-18 2024-10-11 00:27:39.000 1974-07-18 2024-10-11 00:27:39 +1661 1661 1662 166.1 332.20000000000005 1661 1974-07-20 2024-10-11 00:27:41.000 1974-07-20 2024-10-11 00:27:41 +1662 1662 1663 166.2 332.40000000000003 1662 1974-07-21 2024-10-11 00:27:42.000 1974-07-21 2024-10-11 00:27:42 +1663 1663 1664 166.3 332.6 1663 1974-07-22 2024-10-11 00:27:43.000 1974-07-22 2024-10-11 00:27:43 +1664 1664 1665 166.4 332.8 1664 1974-07-23 2024-10-11 00:27:44.000 1974-07-23 2024-10-11 00:27:44 +1666 1666 1667 166.6 333.20000000000005 1666 1974-07-25 2024-10-11 00:27:46.000 1974-07-25 2024-10-11 00:27:46 +1667 1667 1668 166.7 333.40000000000003 1667 1974-07-26 2024-10-11 00:27:47.000 1974-07-26 2024-10-11 00:27:47 +1668 1668 1669 166.8 333.6 1668 1974-07-27 2024-10-11 00:27:48.000 1974-07-27 2024-10-11 00:27:48 +1669 1669 1670 166.9 333.8 1669 1974-07-28 2024-10-11 00:27:49.000 1974-07-28 2024-10-11 00:27:49 +1671 1671 1672 167.1 334.20000000000005 1671 1974-07-30 2024-10-11 00:27:51.000 1974-07-30 2024-10-11 00:27:51 +1672 1672 1673 167.2 334.40000000000003 1672 1974-07-31 2024-10-11 00:27:52.000 1974-07-31 2024-10-11 00:27:52 +1673 1673 1674 167.3 334.6 1673 1974-08-01 2024-10-11 00:27:53.000 1974-08-01 2024-10-11 00:27:53 +1674 1674 1675 167.4 334.8 1674 1974-08-02 2024-10-11 00:27:54.000 1974-08-02 2024-10-11 00:27:54 +1676 1676 1677 167.6 335.20000000000005 1676 1974-08-04 2024-10-11 00:27:56.000 1974-08-04 2024-10-11 00:27:56 +1677 1677 1678 167.7 335.40000000000003 1677 1974-08-05 2024-10-11 00:27:57.000 1974-08-05 2024-10-11 00:27:57 +1678 1678 1679 167.8 335.6 1678 1974-08-06 2024-10-11 00:27:58.000 1974-08-06 2024-10-11 00:27:58 +1679 1679 1680 167.9 335.8 1679 1974-08-07 2024-10-11 00:27:59.000 1974-08-07 2024-10-11 00:27:59 +1681 1681 1682 168.1 336.20000000000005 1681 1974-08-09 2024-10-11 00:28:01.000 1974-08-09 2024-10-11 00:28:01 +1682 1682 1683 168.2 336.40000000000003 1682 1974-08-10 2024-10-11 00:28:02.000 1974-08-10 2024-10-11 00:28:02 +1683 1683 1684 168.3 336.6 1683 1974-08-11 2024-10-11 00:28:03.000 1974-08-11 2024-10-11 00:28:03 +1684 1684 1685 168.4 336.8 1684 1974-08-12 2024-10-11 00:28:04.000 1974-08-12 2024-10-11 00:28:04 +1686 1686 1687 168.6 337.20000000000005 1686 1974-08-14 2024-10-11 00:28:06.000 1974-08-14 2024-10-11 00:28:06 +1687 1687 1688 168.7 337.40000000000003 1687 1974-08-15 2024-10-11 00:28:07.000 1974-08-15 2024-10-11 00:28:07 +1688 1688 1689 168.8 337.6 1688 1974-08-16 2024-10-11 00:28:08.000 1974-08-16 2024-10-11 00:28:08 +1689 1689 1690 168.9 337.8 1689 1974-08-17 2024-10-11 00:28:09.000 1974-08-17 2024-10-11 00:28:09 +1691 1691 1692 169.1 338.20000000000005 1691 1974-08-19 2024-10-11 00:28:11.000 1974-08-19 2024-10-11 00:28:11 +1692 1692 1693 169.2 338.40000000000003 1692 1974-08-20 2024-10-11 00:28:12.000 1974-08-20 2024-10-11 00:28:12 +1693 1693 1694 169.3 338.6 1693 1974-08-21 2024-10-11 00:28:13.000 1974-08-21 2024-10-11 00:28:13 +1694 1694 1695 169.4 338.8 1694 1974-08-22 2024-10-11 00:28:14.000 1974-08-22 2024-10-11 00:28:14 +1696 1696 1697 169.6 339.20000000000005 1696 1974-08-24 2024-10-11 00:28:16.000 1974-08-24 2024-10-11 00:28:16 +1697 1697 1698 169.7 339.40000000000003 1697 1974-08-25 2024-10-11 00:28:17.000 1974-08-25 2024-10-11 00:28:17 +1698 1698 1699 169.8 339.6 1698 1974-08-26 2024-10-11 00:28:18.000 1974-08-26 2024-10-11 00:28:18 +1699 1699 1700 169.9 339.8 1699 1974-08-27 2024-10-11 00:28:19.000 1974-08-27 2024-10-11 00:28:19 +1701 1701 1702 170.1 340.20000000000005 1701 1974-08-29 2024-10-11 00:28:21.000 1974-08-29 2024-10-11 00:28:21 +1702 1702 1703 170.2 340.40000000000003 1702 1974-08-30 2024-10-11 00:28:22.000 1974-08-30 2024-10-11 00:28:22 +1703 1703 1704 170.3 340.6 1703 1974-08-31 2024-10-11 00:28:23.000 1974-08-31 2024-10-11 00:28:23 +1704 1704 1705 170.4 340.8 1704 1974-09-01 2024-10-11 00:28:24.000 1974-09-01 2024-10-11 00:28:24 +1706 1706 1707 170.6 341.20000000000005 1706 1974-09-03 2024-10-11 00:28:26.000 1974-09-03 2024-10-11 00:28:26 +1707 1707 1708 170.7 341.40000000000003 1707 1974-09-04 2024-10-11 00:28:27.000 1974-09-04 2024-10-11 00:28:27 +1708 1708 1709 170.8 341.6 1708 1974-09-05 2024-10-11 00:28:28.000 1974-09-05 2024-10-11 00:28:28 +1709 1709 1710 170.9 341.8 1709 1974-09-06 2024-10-11 00:28:29.000 1974-09-06 2024-10-11 00:28:29 +1711 1711 1712 171.1 342.20000000000005 1711 1974-09-08 2024-10-11 00:28:31.000 1974-09-08 2024-10-11 00:28:31 +1712 1712 1713 171.2 342.40000000000003 1712 1974-09-09 2024-10-11 00:28:32.000 1974-09-09 2024-10-11 00:28:32 +1713 1713 1714 171.3 342.6 1713 1974-09-10 2024-10-11 00:28:33.000 1974-09-10 2024-10-11 00:28:33 +1714 1714 1715 171.4 342.8 1714 1974-09-11 2024-10-11 00:28:34.000 1974-09-11 2024-10-11 00:28:34 +1716 1716 1717 171.6 343.20000000000005 1716 1974-09-13 2024-10-11 00:28:36.000 1974-09-13 2024-10-11 00:28:36 +1717 1717 1718 171.7 343.40000000000003 1717 1974-09-14 2024-10-11 00:28:37.000 1974-09-14 2024-10-11 00:28:37 +1718 1718 1719 171.8 343.6 1718 1974-09-15 2024-10-11 00:28:38.000 1974-09-15 2024-10-11 00:28:38 +1719 1719 1720 171.9 343.8 1719 1974-09-16 2024-10-11 00:28:39.000 1974-09-16 2024-10-11 00:28:39 +1721 1721 1722 172.1 344.20000000000005 1721 1974-09-18 2024-10-11 00:28:41.000 1974-09-18 2024-10-11 00:28:41 +1722 1722 1723 172.2 344.40000000000003 1722 1974-09-19 2024-10-11 00:28:42.000 1974-09-19 2024-10-11 00:28:42 +1723 1723 1724 172.3 344.6 1723 1974-09-20 2024-10-11 00:28:43.000 1974-09-20 2024-10-11 00:28:43 +1724 1724 1725 172.4 344.8 1724 1974-09-21 2024-10-11 00:28:44.000 1974-09-21 2024-10-11 00:28:44 +1726 1726 1727 172.6 345.20000000000005 1726 1974-09-23 2024-10-11 00:28:46.000 1974-09-23 2024-10-11 00:28:46 +1727 1727 1728 172.7 345.40000000000003 1727 1974-09-24 2024-10-11 00:28:47.000 1974-09-24 2024-10-11 00:28:47 +1728 1728 1729 172.8 345.6 1728 1974-09-25 2024-10-11 00:28:48.000 1974-09-25 2024-10-11 00:28:48 +1729 1729 1730 172.9 345.8 1729 1974-09-26 2024-10-11 00:28:49.000 1974-09-26 2024-10-11 00:28:49 +1731 1731 1732 173.1 346.20000000000005 1731 1974-09-28 2024-10-11 00:28:51.000 1974-09-28 2024-10-11 00:28:51 +1732 1732 1733 173.2 346.40000000000003 1732 1974-09-29 2024-10-11 00:28:52.000 1974-09-29 2024-10-11 00:28:52 +1733 1733 1734 173.3 346.6 1733 1974-09-30 2024-10-11 00:28:53.000 1974-09-30 2024-10-11 00:28:53 +1734 1734 1735 173.4 346.8 1734 1974-10-01 2024-10-11 00:28:54.000 1974-10-01 2024-10-11 00:28:54 +1736 1736 1737 173.6 347.20000000000005 1736 1974-10-03 2024-10-11 00:28:56.000 1974-10-03 2024-10-11 00:28:56 +1737 1737 1738 173.7 347.40000000000003 1737 1974-10-04 2024-10-11 00:28:57.000 1974-10-04 2024-10-11 00:28:57 +1738 1738 1739 173.8 347.6 1738 1974-10-05 2024-10-11 00:28:58.000 1974-10-05 2024-10-11 00:28:58 +1739 1739 1740 173.9 347.8 1739 1974-10-06 2024-10-11 00:28:59.000 1974-10-06 2024-10-11 00:28:59 +1741 1741 1742 174.1 348.20000000000005 1741 1974-10-08 2024-10-11 00:29:01.000 1974-10-08 2024-10-11 00:29:01 +1742 1742 1743 174.2 348.40000000000003 1742 1974-10-09 2024-10-11 00:29:02.000 1974-10-09 2024-10-11 00:29:02 +1743 1743 1744 174.3 348.6 1743 1974-10-10 2024-10-11 00:29:03.000 1974-10-10 2024-10-11 00:29:03 +1744 1744 1745 174.4 348.8 1744 1974-10-11 2024-10-11 00:29:04.000 1974-10-11 2024-10-11 00:29:04 +1746 1746 1747 174.6 349.20000000000005 1746 1974-10-13 2024-10-11 00:29:06.000 1974-10-13 2024-10-11 00:29:06 +1747 1747 1748 174.7 349.40000000000003 1747 1974-10-14 2024-10-11 00:29:07.000 1974-10-14 2024-10-11 00:29:07 +1748 1748 1749 174.8 349.6 1748 1974-10-15 2024-10-11 00:29:08.000 1974-10-15 2024-10-11 00:29:08 +1749 1749 1750 174.9 349.8 1749 1974-10-16 2024-10-11 00:29:09.000 1974-10-16 2024-10-11 00:29:09 +1751 1751 1752 175.1 350.20000000000005 1751 1974-10-18 2024-10-11 00:29:11.000 1974-10-18 2024-10-11 00:29:11 +1752 1752 1753 175.2 350.40000000000003 1752 1974-10-19 2024-10-11 00:29:12.000 1974-10-19 2024-10-11 00:29:12 +1753 1753 1754 175.3 350.6 1753 1974-10-20 2024-10-11 00:29:13.000 1974-10-20 2024-10-11 00:29:13 +1754 1754 1755 175.4 350.8 1754 1974-10-21 2024-10-11 00:29:14.000 1974-10-21 2024-10-11 00:29:14 +1756 1756 1757 175.6 351.20000000000005 1756 1974-10-23 2024-10-11 00:29:16.000 1974-10-23 2024-10-11 00:29:16 +1757 1757 1758 175.7 351.40000000000003 1757 1974-10-24 2024-10-11 00:29:17.000 1974-10-24 2024-10-11 00:29:17 +1758 1758 1759 175.8 351.6 1758 1974-10-25 2024-10-11 00:29:18.000 1974-10-25 2024-10-11 00:29:18 +1759 1759 1760 175.9 351.8 1759 1974-10-26 2024-10-11 00:29:19.000 1974-10-26 2024-10-11 00:29:19 +1761 1761 1762 176.1 352.20000000000005 1761 1974-10-28 2024-10-11 00:29:21.000 1974-10-28 2024-10-11 00:29:21 +1762 1762 1763 176.2 352.40000000000003 1762 1974-10-29 2024-10-11 00:29:22.000 1974-10-29 2024-10-11 00:29:22 +1763 1763 1764 176.3 352.6 1763 1974-10-30 2024-10-11 00:29:23.000 1974-10-30 2024-10-11 00:29:23 +1764 1764 1765 176.4 352.8 1764 1974-10-31 2024-10-11 00:29:24.000 1974-10-31 2024-10-11 00:29:24 +1766 1766 1767 176.6 353.20000000000005 1766 1974-11-02 2024-10-11 00:29:26.000 1974-11-02 2024-10-11 00:29:26 +1767 1767 1768 176.7 353.40000000000003 1767 1974-11-03 2024-10-11 00:29:27.000 1974-11-03 2024-10-11 00:29:27 +1768 1768 1769 176.8 353.6 1768 1974-11-04 2024-10-11 00:29:28.000 1974-11-04 2024-10-11 00:29:28 +1769 1769 1770 176.9 353.8 1769 1974-11-05 2024-10-11 00:29:29.000 1974-11-05 2024-10-11 00:29:29 +1771 1771 1772 177.1 354.20000000000005 1771 1974-11-07 2024-10-11 00:29:31.000 1974-11-07 2024-10-11 00:29:31 +1772 1772 1773 177.2 354.40000000000003 1772 1974-11-08 2024-10-11 00:29:32.000 1974-11-08 2024-10-11 00:29:32 +1773 1773 1774 177.3 354.6 1773 1974-11-09 2024-10-11 00:29:33.000 1974-11-09 2024-10-11 00:29:33 +1774 1774 1775 177.4 354.8 1774 1974-11-10 2024-10-11 00:29:34.000 1974-11-10 2024-10-11 00:29:34 +1776 1776 1777 177.6 355.20000000000005 1776 1974-11-12 2024-10-11 00:29:36.000 1974-11-12 2024-10-11 00:29:36 +1777 1777 1778 177.7 355.40000000000003 1777 1974-11-13 2024-10-11 00:29:37.000 1974-11-13 2024-10-11 00:29:37 +1778 1778 1779 177.8 355.6 1778 1974-11-14 2024-10-11 00:29:38.000 1974-11-14 2024-10-11 00:29:38 +1779 1779 1780 177.9 355.8 1779 1974-11-15 2024-10-11 00:29:39.000 1974-11-15 2024-10-11 00:29:39 +1781 1781 1782 178.1 356.20000000000005 1781 1974-11-17 2024-10-11 00:29:41.000 1974-11-17 2024-10-11 00:29:41 +1782 1782 1783 178.2 356.40000000000003 1782 1974-11-18 2024-10-11 00:29:42.000 1974-11-18 2024-10-11 00:29:42 +1783 1783 1784 178.3 356.6 1783 1974-11-19 2024-10-11 00:29:43.000 1974-11-19 2024-10-11 00:29:43 +1784 1784 1785 178.4 356.8 1784 1974-11-20 2024-10-11 00:29:44.000 1974-11-20 2024-10-11 00:29:44 +1786 1786 1787 178.6 357.20000000000005 1786 1974-11-22 2024-10-11 00:29:46.000 1974-11-22 2024-10-11 00:29:46 +1787 1787 1788 178.7 357.40000000000003 1787 1974-11-23 2024-10-11 00:29:47.000 1974-11-23 2024-10-11 00:29:47 +1788 1788 1789 178.8 357.6 1788 1974-11-24 2024-10-11 00:29:48.000 1974-11-24 2024-10-11 00:29:48 +1789 1789 1790 178.9 357.8 1789 1974-11-25 2024-10-11 00:29:49.000 1974-11-25 2024-10-11 00:29:49 +1791 1791 1792 179.1 358.20000000000005 1791 1974-11-27 2024-10-11 00:29:51.000 1974-11-27 2024-10-11 00:29:51 +1792 1792 1793 179.2 358.40000000000003 1792 1974-11-28 2024-10-11 00:29:52.000 1974-11-28 2024-10-11 00:29:52 +1793 1793 1794 179.3 358.6 1793 1974-11-29 2024-10-11 00:29:53.000 1974-11-29 2024-10-11 00:29:53 +1794 1794 1795 179.4 358.8 1794 1974-11-30 2024-10-11 00:29:54.000 1974-11-30 2024-10-11 00:29:54 +1796 1796 1797 179.6 359.20000000000005 1796 1974-12-02 2024-10-11 00:29:56.000 1974-12-02 2024-10-11 00:29:56 +1797 1797 1798 179.7 359.40000000000003 1797 1974-12-03 2024-10-11 00:29:57.000 1974-12-03 2024-10-11 00:29:57 +1798 1798 1799 179.8 359.6 1798 1974-12-04 2024-10-11 00:29:58.000 1974-12-04 2024-10-11 00:29:58 +1799 1799 1800 179.9 359.8 1799 1974-12-05 2024-10-11 00:29:59.000 1974-12-05 2024-10-11 00:29:59 +1801 1801 1802 180.1 360.20000000000005 1801 1974-12-07 2024-10-11 00:30:01.000 1974-12-07 2024-10-11 00:30:01 +1802 1802 1803 180.2 360.40000000000003 1802 1974-12-08 2024-10-11 00:30:02.000 1974-12-08 2024-10-11 00:30:02 +1803 1803 1804 180.3 360.6 1803 1974-12-09 2024-10-11 00:30:03.000 1974-12-09 2024-10-11 00:30:03 +1804 1804 1805 180.4 360.8 1804 1974-12-10 2024-10-11 00:30:04.000 1974-12-10 2024-10-11 00:30:04 +1806 1806 1807 180.6 361.20000000000005 1806 1974-12-12 2024-10-11 00:30:06.000 1974-12-12 2024-10-11 00:30:06 +1807 1807 1808 180.7 361.40000000000003 1807 1974-12-13 2024-10-11 00:30:07.000 1974-12-13 2024-10-11 00:30:07 +1808 1808 1809 180.8 361.6 1808 1974-12-14 2024-10-11 00:30:08.000 1974-12-14 2024-10-11 00:30:08 +1809 1809 1810 180.9 361.8 1809 1974-12-15 2024-10-11 00:30:09.000 1974-12-15 2024-10-11 00:30:09 +1811 1811 1812 181.1 362.20000000000005 1811 1974-12-17 2024-10-11 00:30:11.000 1974-12-17 2024-10-11 00:30:11 +1812 1812 1813 181.2 362.40000000000003 1812 1974-12-18 2024-10-11 00:30:12.000 1974-12-18 2024-10-11 00:30:12 +1813 1813 1814 181.3 362.6 1813 1974-12-19 2024-10-11 00:30:13.000 1974-12-19 2024-10-11 00:30:13 +1814 1814 1815 181.4 362.8 1814 1974-12-20 2024-10-11 00:30:14.000 1974-12-20 2024-10-11 00:30:14 +1816 1816 1817 181.6 363.20000000000005 1816 1974-12-22 2024-10-11 00:30:16.000 1974-12-22 2024-10-11 00:30:16 +1817 1817 1818 181.7 363.40000000000003 1817 1974-12-23 2024-10-11 00:30:17.000 1974-12-23 2024-10-11 00:30:17 +1818 1818 1819 181.8 363.6 1818 1974-12-24 2024-10-11 00:30:18.000 1974-12-24 2024-10-11 00:30:18 +1819 1819 1820 181.9 363.8 1819 1974-12-25 2024-10-11 00:30:19.000 1974-12-25 2024-10-11 00:30:19 +1821 1821 1822 182.1 364.20000000000005 1821 1974-12-27 2024-10-11 00:30:21.000 1974-12-27 2024-10-11 00:30:21 +1822 1822 1823 182.2 364.40000000000003 1822 1974-12-28 2024-10-11 00:30:22.000 1974-12-28 2024-10-11 00:30:22 +1823 1823 1824 182.3 364.6 1823 1974-12-29 2024-10-11 00:30:23.000 1974-12-29 2024-10-11 00:30:23 +1824 1824 1825 182.4 364.8 1824 1974-12-30 2024-10-11 00:30:24.000 1974-12-30 2024-10-11 00:30:24 +1826 1826 1827 182.6 365.20000000000005 1826 1975-01-01 2024-10-11 00:30:26.000 1975-01-01 2024-10-11 00:30:26 +1827 1827 1828 182.7 365.40000000000003 1827 1975-01-02 2024-10-11 00:30:27.000 1975-01-02 2024-10-11 00:30:27 +1828 1828 1829 182.8 365.6 1828 1975-01-03 2024-10-11 00:30:28.000 1975-01-03 2024-10-11 00:30:28 +1829 1829 1830 182.9 365.8 1829 1975-01-04 2024-10-11 00:30:29.000 1975-01-04 2024-10-11 00:30:29 +1831 1831 1832 183.1 366.20000000000005 1831 1975-01-06 2024-10-11 00:30:31.000 1975-01-06 2024-10-11 00:30:31 +1832 1832 1833 183.2 366.40000000000003 1832 1975-01-07 2024-10-11 00:30:32.000 1975-01-07 2024-10-11 00:30:32 +1833 1833 1834 183.3 366.6 1833 1975-01-08 2024-10-11 00:30:33.000 1975-01-08 2024-10-11 00:30:33 +1834 1834 1835 183.4 366.8 1834 1975-01-09 2024-10-11 00:30:34.000 1975-01-09 2024-10-11 00:30:34 +1836 1836 1837 183.6 367.20000000000005 1836 1975-01-11 2024-10-11 00:30:36.000 1975-01-11 2024-10-11 00:30:36 +1837 1837 1838 183.7 367.40000000000003 1837 1975-01-12 2024-10-11 00:30:37.000 1975-01-12 2024-10-11 00:30:37 +1838 1838 1839 183.8 367.6 1838 1975-01-13 2024-10-11 00:30:38.000 1975-01-13 2024-10-11 00:30:38 +1839 1839 1840 183.9 367.8 1839 1975-01-14 2024-10-11 00:30:39.000 1975-01-14 2024-10-11 00:30:39 +1841 1841 1842 184.1 368.20000000000005 1841 1975-01-16 2024-10-11 00:30:41.000 1975-01-16 2024-10-11 00:30:41 +1842 1842 1843 184.2 368.40000000000003 1842 1975-01-17 2024-10-11 00:30:42.000 1975-01-17 2024-10-11 00:30:42 +1843 1843 1844 184.3 368.6 1843 1975-01-18 2024-10-11 00:30:43.000 1975-01-18 2024-10-11 00:30:43 +1844 1844 1845 184.4 368.8 1844 1975-01-19 2024-10-11 00:30:44.000 1975-01-19 2024-10-11 00:30:44 +1846 1846 1847 184.6 369.20000000000005 1846 1975-01-21 2024-10-11 00:30:46.000 1975-01-21 2024-10-11 00:30:46 +1847 1847 1848 184.7 369.40000000000003 1847 1975-01-22 2024-10-11 00:30:47.000 1975-01-22 2024-10-11 00:30:47 +1848 1848 1849 184.8 369.6 1848 1975-01-23 2024-10-11 00:30:48.000 1975-01-23 2024-10-11 00:30:48 +1849 1849 1850 184.9 369.8 1849 1975-01-24 2024-10-11 00:30:49.000 1975-01-24 2024-10-11 00:30:49 +1851 1851 1852 185.1 370.20000000000005 1851 1975-01-26 2024-10-11 00:30:51.000 1975-01-26 2024-10-11 00:30:51 +1852 1852 1853 185.2 370.40000000000003 1852 1975-01-27 2024-10-11 00:30:52.000 1975-01-27 2024-10-11 00:30:52 +1853 1853 1854 185.3 370.6 1853 1975-01-28 2024-10-11 00:30:53.000 1975-01-28 2024-10-11 00:30:53 +1854 1854 1855 185.4 370.8 1854 1975-01-29 2024-10-11 00:30:54.000 1975-01-29 2024-10-11 00:30:54 +1856 1856 1857 185.6 371.20000000000005 1856 1975-01-31 2024-10-11 00:30:56.000 1975-01-31 2024-10-11 00:30:56 +1857 1857 1858 185.7 371.40000000000003 1857 1975-02-01 2024-10-11 00:30:57.000 1975-02-01 2024-10-11 00:30:57 +1858 1858 1859 185.8 371.6 1858 1975-02-02 2024-10-11 00:30:58.000 1975-02-02 2024-10-11 00:30:58 +1859 1859 1860 185.9 371.8 1859 1975-02-03 2024-10-11 00:30:59.000 1975-02-03 2024-10-11 00:30:59 +1861 1861 1862 186.1 372.20000000000005 1861 1975-02-05 2024-10-11 00:31:01.000 1975-02-05 2024-10-11 00:31:01 +1862 1862 1863 186.2 372.40000000000003 1862 1975-02-06 2024-10-11 00:31:02.000 1975-02-06 2024-10-11 00:31:02 +1863 1863 1864 186.3 372.6 1863 1975-02-07 2024-10-11 00:31:03.000 1975-02-07 2024-10-11 00:31:03 +1864 1864 1865 186.4 372.8 1864 1975-02-08 2024-10-11 00:31:04.000 1975-02-08 2024-10-11 00:31:04 +1866 1866 1867 186.6 373.20000000000005 1866 1975-02-10 2024-10-11 00:31:06.000 1975-02-10 2024-10-11 00:31:06 +1867 1867 1868 186.7 373.40000000000003 1867 1975-02-11 2024-10-11 00:31:07.000 1975-02-11 2024-10-11 00:31:07 +1868 1868 1869 186.8 373.6 1868 1975-02-12 2024-10-11 00:31:08.000 1975-02-12 2024-10-11 00:31:08 +1869 1869 1870 186.9 373.8 1869 1975-02-13 2024-10-11 00:31:09.000 1975-02-13 2024-10-11 00:31:09 +1871 1871 1872 187.1 374.20000000000005 1871 1975-02-15 2024-10-11 00:31:11.000 1975-02-15 2024-10-11 00:31:11 +1872 1872 1873 187.2 374.40000000000003 1872 1975-02-16 2024-10-11 00:31:12.000 1975-02-16 2024-10-11 00:31:12 +1873 1873 1874 187.3 374.6 1873 1975-02-17 2024-10-11 00:31:13.000 1975-02-17 2024-10-11 00:31:13 +1874 1874 1875 187.4 374.8 1874 1975-02-18 2024-10-11 00:31:14.000 1975-02-18 2024-10-11 00:31:14 +1876 1876 1877 187.6 375.20000000000005 1876 1975-02-20 2024-10-11 00:31:16.000 1975-02-20 2024-10-11 00:31:16 +1877 1877 1878 187.7 375.40000000000003 1877 1975-02-21 2024-10-11 00:31:17.000 1975-02-21 2024-10-11 00:31:17 +1878 1878 1879 187.8 375.6 1878 1975-02-22 2024-10-11 00:31:18.000 1975-02-22 2024-10-11 00:31:18 +1879 1879 1880 187.9 375.8 1879 1975-02-23 2024-10-11 00:31:19.000 1975-02-23 2024-10-11 00:31:19 +1881 1881 1882 188.1 376.20000000000005 1881 1975-02-25 2024-10-11 00:31:21.000 1975-02-25 2024-10-11 00:31:21 +1882 1882 1883 188.2 376.40000000000003 1882 1975-02-26 2024-10-11 00:31:22.000 1975-02-26 2024-10-11 00:31:22 +1883 1883 1884 188.3 376.6 1883 1975-02-27 2024-10-11 00:31:23.000 1975-02-27 2024-10-11 00:31:23 +1884 1884 1885 188.4 376.8 1884 1975-02-28 2024-10-11 00:31:24.000 1975-02-28 2024-10-11 00:31:24 +1886 1886 1887 188.6 377.20000000000005 1886 1975-03-02 2024-10-11 00:31:26.000 1975-03-02 2024-10-11 00:31:26 +1887 1887 1888 188.7 377.40000000000003 1887 1975-03-03 2024-10-11 00:31:27.000 1975-03-03 2024-10-11 00:31:27 +1888 1888 1889 188.8 377.6 1888 1975-03-04 2024-10-11 00:31:28.000 1975-03-04 2024-10-11 00:31:28 +1889 1889 1890 188.9 377.8 1889 1975-03-05 2024-10-11 00:31:29.000 1975-03-05 2024-10-11 00:31:29 +1891 1891 1892 189.1 378.20000000000005 1891 1975-03-07 2024-10-11 00:31:31.000 1975-03-07 2024-10-11 00:31:31 +1892 1892 1893 189.2 378.40000000000003 1892 1975-03-08 2024-10-11 00:31:32.000 1975-03-08 2024-10-11 00:31:32 +1893 1893 1894 189.3 378.6 1893 1975-03-09 2024-10-11 00:31:33.000 1975-03-09 2024-10-11 00:31:33 +1894 1894 1895 189.4 378.8 1894 1975-03-10 2024-10-11 00:31:34.000 1975-03-10 2024-10-11 00:31:34 +1896 1896 1897 189.6 379.20000000000005 1896 1975-03-12 2024-10-11 00:31:36.000 1975-03-12 2024-10-11 00:31:36 +1897 1897 1898 189.7 379.40000000000003 1897 1975-03-13 2024-10-11 00:31:37.000 1975-03-13 2024-10-11 00:31:37 +1898 1898 1899 189.8 379.6 1898 1975-03-14 2024-10-11 00:31:38.000 1975-03-14 2024-10-11 00:31:38 +1899 1899 1900 189.9 379.8 1899 1975-03-15 2024-10-11 00:31:39.000 1975-03-15 2024-10-11 00:31:39 +1901 1901 1902 190.1 380.20000000000005 1901 1975-03-17 2024-10-11 00:31:41.000 1975-03-17 2024-10-11 00:31:41 +1902 1902 1903 190.2 380.40000000000003 1902 1975-03-18 2024-10-11 00:31:42.000 1975-03-18 2024-10-11 00:31:42 +1903 1903 1904 190.3 380.6 1903 1975-03-19 2024-10-11 00:31:43.000 1975-03-19 2024-10-11 00:31:43 +1904 1904 1905 190.4 380.8 1904 1975-03-20 2024-10-11 00:31:44.000 1975-03-20 2024-10-11 00:31:44 +1906 1906 1907 190.6 381.20000000000005 1906 1975-03-22 2024-10-11 00:31:46.000 1975-03-22 2024-10-11 00:31:46 +1907 1907 1908 190.7 381.40000000000003 1907 1975-03-23 2024-10-11 00:31:47.000 1975-03-23 2024-10-11 00:31:47 +1908 1908 1909 190.8 381.6 1908 1975-03-24 2024-10-11 00:31:48.000 1975-03-24 2024-10-11 00:31:48 +1909 1909 1910 190.9 381.8 1909 1975-03-25 2024-10-11 00:31:49.000 1975-03-25 2024-10-11 00:31:49 +1911 1911 1912 191.1 382.20000000000005 1911 1975-03-27 2024-10-11 00:31:51.000 1975-03-27 2024-10-11 00:31:51 +1912 1912 1913 191.2 382.40000000000003 1912 1975-03-28 2024-10-11 00:31:52.000 1975-03-28 2024-10-11 00:31:52 +1913 1913 1914 191.3 382.6 1913 1975-03-29 2024-10-11 00:31:53.000 1975-03-29 2024-10-11 00:31:53 +1914 1914 1915 191.4 382.8 1914 1975-03-30 2024-10-11 00:31:54.000 1975-03-30 2024-10-11 00:31:54 +1916 1916 1917 191.6 383.20000000000005 1916 1975-04-01 2024-10-11 00:31:56.000 1975-04-01 2024-10-11 00:31:56 +1917 1917 1918 191.7 383.40000000000003 1917 1975-04-02 2024-10-11 00:31:57.000 1975-04-02 2024-10-11 00:31:57 +1918 1918 1919 191.8 383.6 1918 1975-04-03 2024-10-11 00:31:58.000 1975-04-03 2024-10-11 00:31:58 +1919 1919 1920 191.9 383.8 1919 1975-04-04 2024-10-11 00:31:59.000 1975-04-04 2024-10-11 00:31:59 +1921 1921 1922 192.1 384.20000000000005 1921 1975-04-06 2024-10-11 00:32:01.000 1975-04-06 2024-10-11 00:32:01 +1922 1922 1923 192.2 384.40000000000003 1922 1975-04-07 2024-10-11 00:32:02.000 1975-04-07 2024-10-11 00:32:02 +1923 1923 1924 192.3 384.6 1923 1975-04-08 2024-10-11 00:32:03.000 1975-04-08 2024-10-11 00:32:03 +1924 1924 1925 192.4 384.8 1924 1975-04-09 2024-10-11 00:32:04.000 1975-04-09 2024-10-11 00:32:04 +1926 1926 1927 192.6 385.20000000000005 1926 1975-04-11 2024-10-11 00:32:06.000 1975-04-11 2024-10-11 00:32:06 +1927 1927 1928 192.7 385.40000000000003 1927 1975-04-12 2024-10-11 00:32:07.000 1975-04-12 2024-10-11 00:32:07 +1928 1928 1929 192.8 385.6 1928 1975-04-13 2024-10-11 00:32:08.000 1975-04-13 2024-10-11 00:32:08 +1929 1929 1930 192.9 385.8 1929 1975-04-14 2024-10-11 00:32:09.000 1975-04-14 2024-10-11 00:32:09 +1931 1931 1932 193.1 386.20000000000005 1931 1975-04-16 2024-10-11 00:32:11.000 1975-04-16 2024-10-11 00:32:11 +1932 1932 1933 193.2 386.40000000000003 1932 1975-04-17 2024-10-11 00:32:12.000 1975-04-17 2024-10-11 00:32:12 +1933 1933 1934 193.3 386.6 1933 1975-04-18 2024-10-11 00:32:13.000 1975-04-18 2024-10-11 00:32:13 +1934 1934 1935 193.4 386.8 1934 1975-04-19 2024-10-11 00:32:14.000 1975-04-19 2024-10-11 00:32:14 +1936 1936 1937 193.6 387.20000000000005 1936 1975-04-21 2024-10-11 00:32:16.000 1975-04-21 2024-10-11 00:32:16 +1937 1937 1938 193.7 387.40000000000003 1937 1975-04-22 2024-10-11 00:32:17.000 1975-04-22 2024-10-11 00:32:17 +1938 1938 1939 193.8 387.6 1938 1975-04-23 2024-10-11 00:32:18.000 1975-04-23 2024-10-11 00:32:18 +1939 1939 1940 193.9 387.8 1939 1975-04-24 2024-10-11 00:32:19.000 1975-04-24 2024-10-11 00:32:19 +1941 1941 1942 194.1 388.20000000000005 1941 1975-04-26 2024-10-11 00:32:21.000 1975-04-26 2024-10-11 00:32:21 +1942 1942 1943 194.2 388.40000000000003 1942 1975-04-27 2024-10-11 00:32:22.000 1975-04-27 2024-10-11 00:32:22 +1943 1943 1944 194.3 388.6 1943 1975-04-28 2024-10-11 00:32:23.000 1975-04-28 2024-10-11 00:32:23 +1944 1944 1945 194.4 388.8 1944 1975-04-29 2024-10-11 00:32:24.000 1975-04-29 2024-10-11 00:32:24 +1946 1946 1947 194.6 389.20000000000005 1946 1975-05-01 2024-10-11 00:32:26.000 1975-05-01 2024-10-11 00:32:26 +1947 1947 1948 194.7 389.40000000000003 1947 1975-05-02 2024-10-11 00:32:27.000 1975-05-02 2024-10-11 00:32:27 +1948 1948 1949 194.8 389.6 1948 1975-05-03 2024-10-11 00:32:28.000 1975-05-03 2024-10-11 00:32:28 +1949 1949 1950 194.9 389.8 1949 1975-05-04 2024-10-11 00:32:29.000 1975-05-04 2024-10-11 00:32:29 +1951 1951 1952 195.1 390.20000000000005 1951 1975-05-06 2024-10-11 00:32:31.000 1975-05-06 2024-10-11 00:32:31 +1952 1952 1953 195.2 390.40000000000003 1952 1975-05-07 2024-10-11 00:32:32.000 1975-05-07 2024-10-11 00:32:32 +1953 1953 1954 195.3 390.6 1953 1975-05-08 2024-10-11 00:32:33.000 1975-05-08 2024-10-11 00:32:33 +1954 1954 1955 195.4 390.8 1954 1975-05-09 2024-10-11 00:32:34.000 1975-05-09 2024-10-11 00:32:34 +1956 1956 1957 195.6 391.20000000000005 1956 1975-05-11 2024-10-11 00:32:36.000 1975-05-11 2024-10-11 00:32:36 +1957 1957 1958 195.7 391.40000000000003 1957 1975-05-12 2024-10-11 00:32:37.000 1975-05-12 2024-10-11 00:32:37 +1958 1958 1959 195.8 391.6 1958 1975-05-13 2024-10-11 00:32:38.000 1975-05-13 2024-10-11 00:32:38 +1959 1959 1960 195.9 391.8 1959 1975-05-14 2024-10-11 00:32:39.000 1975-05-14 2024-10-11 00:32:39 +1961 1961 1962 196.1 392.20000000000005 1961 1975-05-16 2024-10-11 00:32:41.000 1975-05-16 2024-10-11 00:32:41 +1962 1962 1963 196.2 392.40000000000003 1962 1975-05-17 2024-10-11 00:32:42.000 1975-05-17 2024-10-11 00:32:42 +1963 1963 1964 196.3 392.6 1963 1975-05-18 2024-10-11 00:32:43.000 1975-05-18 2024-10-11 00:32:43 +1964 1964 1965 196.4 392.8 1964 1975-05-19 2024-10-11 00:32:44.000 1975-05-19 2024-10-11 00:32:44 +1966 1966 1967 196.6 393.20000000000005 1966 1975-05-21 2024-10-11 00:32:46.000 1975-05-21 2024-10-11 00:32:46 +1967 1967 1968 196.7 393.40000000000003 1967 1975-05-22 2024-10-11 00:32:47.000 1975-05-22 2024-10-11 00:32:47 +1968 1968 1969 196.8 393.6 1968 1975-05-23 2024-10-11 00:32:48.000 1975-05-23 2024-10-11 00:32:48 +1969 1969 1970 196.9 393.8 1969 1975-05-24 2024-10-11 00:32:49.000 1975-05-24 2024-10-11 00:32:49 +1971 1971 1972 197.1 394.20000000000005 1971 1975-05-26 2024-10-11 00:32:51.000 1975-05-26 2024-10-11 00:32:51 +1972 1972 1973 197.2 394.40000000000003 1972 1975-05-27 2024-10-11 00:32:52.000 1975-05-27 2024-10-11 00:32:52 +1973 1973 1974 197.3 394.6 1973 1975-05-28 2024-10-11 00:32:53.000 1975-05-28 2024-10-11 00:32:53 +1974 1974 1975 197.4 394.8 1974 1975-05-29 2024-10-11 00:32:54.000 1975-05-29 2024-10-11 00:32:54 +1976 1976 1977 197.6 395.20000000000005 1976 1975-05-31 2024-10-11 00:32:56.000 1975-05-31 2024-10-11 00:32:56 +1977 1977 1978 197.7 395.40000000000003 1977 1975-06-01 2024-10-11 00:32:57.000 1975-06-01 2024-10-11 00:32:57 +1978 1978 1979 197.8 395.6 1978 1975-06-02 2024-10-11 00:32:58.000 1975-06-02 2024-10-11 00:32:58 +1979 1979 1980 197.9 395.8 1979 1975-06-03 2024-10-11 00:32:59.000 1975-06-03 2024-10-11 00:32:59 +1981 1981 1982 198.1 396.20000000000005 1981 1975-06-05 2024-10-11 00:33:01.000 1975-06-05 2024-10-11 00:33:01 +1982 1982 1983 198.2 396.40000000000003 1982 1975-06-06 2024-10-11 00:33:02.000 1975-06-06 2024-10-11 00:33:02 +1983 1983 1984 198.3 396.6 1983 1975-06-07 2024-10-11 00:33:03.000 1975-06-07 2024-10-11 00:33:03 +1984 1984 1985 198.4 396.8 1984 1975-06-08 2024-10-11 00:33:04.000 1975-06-08 2024-10-11 00:33:04 +1986 1986 1987 198.6 397.20000000000005 1986 1975-06-10 2024-10-11 00:33:06.000 1975-06-10 2024-10-11 00:33:06 +1987 1987 1988 198.7 397.40000000000003 1987 1975-06-11 2024-10-11 00:33:07.000 1975-06-11 2024-10-11 00:33:07 +1988 1988 1989 198.8 397.6 1988 1975-06-12 2024-10-11 00:33:08.000 1975-06-12 2024-10-11 00:33:08 +1989 1989 1990 198.9 397.8 1989 1975-06-13 2024-10-11 00:33:09.000 1975-06-13 2024-10-11 00:33:09 +1991 1991 1992 199.1 398.20000000000005 1991 1975-06-15 2024-10-11 00:33:11.000 1975-06-15 2024-10-11 00:33:11 +1992 1992 1993 199.2 398.40000000000003 1992 1975-06-16 2024-10-11 00:33:12.000 1975-06-16 2024-10-11 00:33:12 +1993 1993 1994 199.3 398.6 1993 1975-06-17 2024-10-11 00:33:13.000 1975-06-17 2024-10-11 00:33:13 +1994 1994 1995 199.4 398.8 1994 1975-06-18 2024-10-11 00:33:14.000 1975-06-18 2024-10-11 00:33:14 +1996 1996 1997 199.6 399.20000000000005 1996 1975-06-20 2024-10-11 00:33:16.000 1975-06-20 2024-10-11 00:33:16 +1997 1997 1998 199.7 399.40000000000003 1997 1975-06-21 2024-10-11 00:33:17.000 1975-06-21 2024-10-11 00:33:17 +1998 1998 1999 199.8 399.6 1998 1975-06-22 2024-10-11 00:33:18.000 1975-06-22 2024-10-11 00:33:18 +1999 1999 2000 199.9 399.8 1999 1975-06-23 2024-10-11 00:33:19.000 1975-06-23 2024-10-11 00:33:19 +2001 2001 2002 200.1 400.20000000000005 2001 1975-06-25 2024-10-11 00:33:21.000 1975-06-25 2024-10-11 00:33:21 +2002 2002 2003 200.2 400.40000000000003 2002 1975-06-26 2024-10-11 00:33:22.000 1975-06-26 2024-10-11 00:33:22 +2003 2003 2004 200.3 400.6 2003 1975-06-27 2024-10-11 00:33:23.000 1975-06-27 2024-10-11 00:33:23 +2004 2004 2005 200.4 400.8 2004 1975-06-28 2024-10-11 00:33:24.000 1975-06-28 2024-10-11 00:33:24 +2006 2006 2007 200.6 401.20000000000005 2006 1975-06-30 2024-10-11 00:33:26.000 1975-06-30 2024-10-11 00:33:26 +2007 2007 2008 200.7 401.40000000000003 2007 1975-07-01 2024-10-11 00:33:27.000 1975-07-01 2024-10-11 00:33:27 +2008 2008 2009 200.8 401.6 2008 1975-07-02 2024-10-11 00:33:28.000 1975-07-02 2024-10-11 00:33:28 +2009 2009 2010 200.9 401.8 2009 1975-07-03 2024-10-11 00:33:29.000 1975-07-03 2024-10-11 00:33:29 +2011 2011 2012 201.1 402.20000000000005 2011 1975-07-05 2024-10-11 00:33:31.000 1975-07-05 2024-10-11 00:33:31 +2012 2012 2013 201.2 402.40000000000003 2012 1975-07-06 2024-10-11 00:33:32.000 1975-07-06 2024-10-11 00:33:32 +2013 2013 2014 201.3 402.6 2013 1975-07-07 2024-10-11 00:33:33.000 1975-07-07 2024-10-11 00:33:33 +2014 2014 2015 201.4 402.8 2014 1975-07-08 2024-10-11 00:33:34.000 1975-07-08 2024-10-11 00:33:34 +2016 2016 2017 201.6 403.20000000000005 2016 1975-07-10 2024-10-11 00:33:36.000 1975-07-10 2024-10-11 00:33:36 +2017 2017 2018 201.7 403.40000000000003 2017 1975-07-11 2024-10-11 00:33:37.000 1975-07-11 2024-10-11 00:33:37 +2018 2018 2019 201.8 403.6 2018 1975-07-12 2024-10-11 00:33:38.000 1975-07-12 2024-10-11 00:33:38 +2019 2019 2020 201.9 403.8 2019 1975-07-13 2024-10-11 00:33:39.000 1975-07-13 2024-10-11 00:33:39 +2021 2021 2022 202.1 404.20000000000005 2021 1975-07-15 2024-10-11 00:33:41.000 1975-07-15 2024-10-11 00:33:41 +2022 2022 2023 202.2 404.40000000000003 2022 1975-07-16 2024-10-11 00:33:42.000 1975-07-16 2024-10-11 00:33:42 +2023 2023 2024 202.3 404.6 2023 1975-07-17 2024-10-11 00:33:43.000 1975-07-17 2024-10-11 00:33:43 +2024 2024 2025 202.4 404.8 2024 1975-07-18 2024-10-11 00:33:44.000 1975-07-18 2024-10-11 00:33:44 +2026 2026 2027 202.6 405.20000000000005 2026 1975-07-20 2024-10-11 00:33:46.000 1975-07-20 2024-10-11 00:33:46 +2027 2027 2028 202.7 405.40000000000003 2027 1975-07-21 2024-10-11 00:33:47.000 1975-07-21 2024-10-11 00:33:47 +2028 2028 2029 202.8 405.6 2028 1975-07-22 2024-10-11 00:33:48.000 1975-07-22 2024-10-11 00:33:48 +2029 2029 2030 202.9 405.8 2029 1975-07-23 2024-10-11 00:33:49.000 1975-07-23 2024-10-11 00:33:49 +2031 2031 2032 203.1 406.20000000000005 2031 1975-07-25 2024-10-11 00:33:51.000 1975-07-25 2024-10-11 00:33:51 +2032 2032 2033 203.2 406.40000000000003 2032 1975-07-26 2024-10-11 00:33:52.000 1975-07-26 2024-10-11 00:33:52 +2033 2033 2034 203.3 406.6 2033 1975-07-27 2024-10-11 00:33:53.000 1975-07-27 2024-10-11 00:33:53 +2034 2034 2035 203.4 406.8 2034 1975-07-28 2024-10-11 00:33:54.000 1975-07-28 2024-10-11 00:33:54 +2036 2036 2037 203.6 407.20000000000005 2036 1975-07-30 2024-10-11 00:33:56.000 1975-07-30 2024-10-11 00:33:56 +2037 2037 2038 203.7 407.40000000000003 2037 1975-07-31 2024-10-11 00:33:57.000 1975-07-31 2024-10-11 00:33:57 +2038 2038 2039 203.8 407.6 2038 1975-08-01 2024-10-11 00:33:58.000 1975-08-01 2024-10-11 00:33:58 +2039 2039 2040 203.9 407.8 2039 1975-08-02 2024-10-11 00:33:59.000 1975-08-02 2024-10-11 00:33:59 +2041 2041 2042 204.1 408.20000000000005 2041 1975-08-04 2024-10-11 00:34:01.000 1975-08-04 2024-10-11 00:34:01 +2042 2042 2043 204.2 408.40000000000003 2042 1975-08-05 2024-10-11 00:34:02.000 1975-08-05 2024-10-11 00:34:02 +2043 2043 2044 204.3 408.6 2043 1975-08-06 2024-10-11 00:34:03.000 1975-08-06 2024-10-11 00:34:03 +2044 2044 2045 204.4 408.8 2044 1975-08-07 2024-10-11 00:34:04.000 1975-08-07 2024-10-11 00:34:04 +2046 2046 2047 204.6 409.20000000000005 2046 1975-08-09 2024-10-11 00:34:06.000 1975-08-09 2024-10-11 00:34:06 +2047 2047 2048 204.7 409.40000000000003 2047 1975-08-10 2024-10-11 00:34:07.000 1975-08-10 2024-10-11 00:34:07 +2048 2048 2049 204.8 409.6 2048 1975-08-11 2024-10-11 00:34:08.000 1975-08-11 2024-10-11 00:34:08 +2049 2049 2050 204.9 409.8 2049 1975-08-12 2024-10-11 00:34:09.000 1975-08-12 2024-10-11 00:34:09 +2051 2051 2052 205.1 410.20000000000005 2051 1975-08-14 2024-10-11 00:34:11.000 1975-08-14 2024-10-11 00:34:11 +2052 2052 2053 205.2 410.40000000000003 2052 1975-08-15 2024-10-11 00:34:12.000 1975-08-15 2024-10-11 00:34:12 +2053 2053 2054 205.3 410.6 2053 1975-08-16 2024-10-11 00:34:13.000 1975-08-16 2024-10-11 00:34:13 +2054 2054 2055 205.4 410.8 2054 1975-08-17 2024-10-11 00:34:14.000 1975-08-17 2024-10-11 00:34:14 +2056 2056 2057 205.6 411.20000000000005 2056 1975-08-19 2024-10-11 00:34:16.000 1975-08-19 2024-10-11 00:34:16 +2057 2057 2058 205.7 411.40000000000003 2057 1975-08-20 2024-10-11 00:34:17.000 1975-08-20 2024-10-11 00:34:17 +2058 2058 2059 205.8 411.6 2058 1975-08-21 2024-10-11 00:34:18.000 1975-08-21 2024-10-11 00:34:18 +2059 2059 2060 205.9 411.8 2059 1975-08-22 2024-10-11 00:34:19.000 1975-08-22 2024-10-11 00:34:19 +2061 2061 2062 206.1 412.20000000000005 2061 1975-08-24 2024-10-11 00:34:21.000 1975-08-24 2024-10-11 00:34:21 +2062 2062 2063 206.2 412.40000000000003 2062 1975-08-25 2024-10-11 00:34:22.000 1975-08-25 2024-10-11 00:34:22 +2063 2063 2064 206.3 412.6 2063 1975-08-26 2024-10-11 00:34:23.000 1975-08-26 2024-10-11 00:34:23 +2064 2064 2065 206.4 412.8 2064 1975-08-27 2024-10-11 00:34:24.000 1975-08-27 2024-10-11 00:34:24 +2066 2066 2067 206.6 413.20000000000005 2066 1975-08-29 2024-10-11 00:34:26.000 1975-08-29 2024-10-11 00:34:26 +2067 2067 2068 206.7 413.40000000000003 2067 1975-08-30 2024-10-11 00:34:27.000 1975-08-30 2024-10-11 00:34:27 +2068 2068 2069 206.8 413.6 2068 1975-08-31 2024-10-11 00:34:28.000 1975-08-31 2024-10-11 00:34:28 +2069 2069 2070 206.9 413.8 2069 1975-09-01 2024-10-11 00:34:29.000 1975-09-01 2024-10-11 00:34:29 +2071 2071 2072 207.1 414.20000000000005 2071 1975-09-03 2024-10-11 00:34:31.000 1975-09-03 2024-10-11 00:34:31 +2072 2072 2073 207.2 414.40000000000003 2072 1975-09-04 2024-10-11 00:34:32.000 1975-09-04 2024-10-11 00:34:32 +2073 2073 2074 207.3 414.6 2073 1975-09-05 2024-10-11 00:34:33.000 1975-09-05 2024-10-11 00:34:33 +2074 2074 2075 207.4 414.8 2074 1975-09-06 2024-10-11 00:34:34.000 1975-09-06 2024-10-11 00:34:34 +2076 2076 2077 207.6 415.20000000000005 2076 1975-09-08 2024-10-11 00:34:36.000 1975-09-08 2024-10-11 00:34:36 +2077 2077 2078 207.7 415.40000000000003 2077 1975-09-09 2024-10-11 00:34:37.000 1975-09-09 2024-10-11 00:34:37 +2078 2078 2079 207.8 415.6 2078 1975-09-10 2024-10-11 00:34:38.000 1975-09-10 2024-10-11 00:34:38 +2079 2079 2080 207.9 415.8 2079 1975-09-11 2024-10-11 00:34:39.000 1975-09-11 2024-10-11 00:34:39 +2081 2081 2082 208.1 416.20000000000005 2081 1975-09-13 2024-10-11 00:34:41.000 1975-09-13 2024-10-11 00:34:41 +2082 2082 2083 208.2 416.40000000000003 2082 1975-09-14 2024-10-11 00:34:42.000 1975-09-14 2024-10-11 00:34:42 +2083 2083 2084 208.3 416.6 2083 1975-09-15 2024-10-11 00:34:43.000 1975-09-15 2024-10-11 00:34:43 +2084 2084 2085 208.4 416.8 2084 1975-09-16 2024-10-11 00:34:44.000 1975-09-16 2024-10-11 00:34:44 +2086 2086 2087 208.6 417.20000000000005 2086 1975-09-18 2024-10-11 00:34:46.000 1975-09-18 2024-10-11 00:34:46 +2087 2087 2088 208.7 417.40000000000003 2087 1975-09-19 2024-10-11 00:34:47.000 1975-09-19 2024-10-11 00:34:47 +2088 2088 2089 208.8 417.6 2088 1975-09-20 2024-10-11 00:34:48.000 1975-09-20 2024-10-11 00:34:48 +2089 2089 2090 208.9 417.8 2089 1975-09-21 2024-10-11 00:34:49.000 1975-09-21 2024-10-11 00:34:49 +2091 2091 2092 209.1 418.20000000000005 2091 1975-09-23 2024-10-11 00:34:51.000 1975-09-23 2024-10-11 00:34:51 +2092 2092 2093 209.2 418.40000000000003 2092 1975-09-24 2024-10-11 00:34:52.000 1975-09-24 2024-10-11 00:34:52 +2093 2093 2094 209.3 418.6 2093 1975-09-25 2024-10-11 00:34:53.000 1975-09-25 2024-10-11 00:34:53 +2094 2094 2095 209.4 418.8 2094 1975-09-26 2024-10-11 00:34:54.000 1975-09-26 2024-10-11 00:34:54 +2096 2096 2097 209.6 419.20000000000005 2096 1975-09-28 2024-10-11 00:34:56.000 1975-09-28 2024-10-11 00:34:56 +2097 2097 2098 209.7 419.40000000000003 2097 1975-09-29 2024-10-11 00:34:57.000 1975-09-29 2024-10-11 00:34:57 +2098 2098 2099 209.8 419.6 2098 1975-09-30 2024-10-11 00:34:58.000 1975-09-30 2024-10-11 00:34:58 +2099 2099 2100 209.9 419.8 2099 1975-10-01 2024-10-11 00:34:59.000 1975-10-01 2024-10-11 00:34:59 +2101 2101 2102 210.1 420.20000000000005 2101 1975-10-03 2024-10-11 00:35:01.000 1975-10-03 2024-10-11 00:35:01 +2102 2102 2103 210.2 420.40000000000003 2102 1975-10-04 2024-10-11 00:35:02.000 1975-10-04 2024-10-11 00:35:02 +2103 2103 2104 210.3 420.6 2103 1975-10-05 2024-10-11 00:35:03.000 1975-10-05 2024-10-11 00:35:03 +2104 2104 2105 210.4 420.8 2104 1975-10-06 2024-10-11 00:35:04.000 1975-10-06 2024-10-11 00:35:04 +2106 2106 2107 210.6 421.20000000000005 2106 1975-10-08 2024-10-11 00:35:06.000 1975-10-08 2024-10-11 00:35:06 +2107 2107 2108 210.7 421.40000000000003 2107 1975-10-09 2024-10-11 00:35:07.000 1975-10-09 2024-10-11 00:35:07 +2108 2108 2109 210.8 421.6 2108 1975-10-10 2024-10-11 00:35:08.000 1975-10-10 2024-10-11 00:35:08 +2109 2109 2110 210.9 421.8 2109 1975-10-11 2024-10-11 00:35:09.000 1975-10-11 2024-10-11 00:35:09 +2111 2111 2112 211.1 422.20000000000005 2111 1975-10-13 2024-10-11 00:35:11.000 1975-10-13 2024-10-11 00:35:11 +2112 2112 2113 211.2 422.40000000000003 2112 1975-10-14 2024-10-11 00:35:12.000 1975-10-14 2024-10-11 00:35:12 +2113 2113 2114 211.3 422.6 2113 1975-10-15 2024-10-11 00:35:13.000 1975-10-15 2024-10-11 00:35:13 +2114 2114 2115 211.4 422.8 2114 1975-10-16 2024-10-11 00:35:14.000 1975-10-16 2024-10-11 00:35:14 +2116 2116 2117 211.6 423.20000000000005 2116 1975-10-18 2024-10-11 00:35:16.000 1975-10-18 2024-10-11 00:35:16 +2117 2117 2118 211.7 423.40000000000003 2117 1975-10-19 2024-10-11 00:35:17.000 1975-10-19 2024-10-11 00:35:17 +2118 2118 2119 211.8 423.6 2118 1975-10-20 2024-10-11 00:35:18.000 1975-10-20 2024-10-11 00:35:18 +2119 2119 2120 211.9 423.8 2119 1975-10-21 2024-10-11 00:35:19.000 1975-10-21 2024-10-11 00:35:19 +2121 2121 2122 212.1 424.20000000000005 2121 1975-10-23 2024-10-11 00:35:21.000 1975-10-23 2024-10-11 00:35:21 +2122 2122 2123 212.2 424.40000000000003 2122 1975-10-24 2024-10-11 00:35:22.000 1975-10-24 2024-10-11 00:35:22 +2123 2123 2124 212.3 424.6 2123 1975-10-25 2024-10-11 00:35:23.000 1975-10-25 2024-10-11 00:35:23 +2124 2124 2125 212.4 424.8 2124 1975-10-26 2024-10-11 00:35:24.000 1975-10-26 2024-10-11 00:35:24 +2126 2126 2127 212.6 425.20000000000005 2126 1975-10-28 2024-10-11 00:35:26.000 1975-10-28 2024-10-11 00:35:26 +2127 2127 2128 212.7 425.40000000000003 2127 1975-10-29 2024-10-11 00:35:27.000 1975-10-29 2024-10-11 00:35:27 +2128 2128 2129 212.8 425.6 2128 1975-10-30 2024-10-11 00:35:28.000 1975-10-30 2024-10-11 00:35:28 +2129 2129 2130 212.9 425.8 2129 1975-10-31 2024-10-11 00:35:29.000 1975-10-31 2024-10-11 00:35:29 +2131 2131 2132 213.1 426.20000000000005 2131 1975-11-02 2024-10-11 00:35:31.000 1975-11-02 2024-10-11 00:35:31 +2132 2132 2133 213.2 426.40000000000003 2132 1975-11-03 2024-10-11 00:35:32.000 1975-11-03 2024-10-11 00:35:32 +2133 2133 2134 213.3 426.6 2133 1975-11-04 2024-10-11 00:35:33.000 1975-11-04 2024-10-11 00:35:33 +2134 2134 2135 213.4 426.8 2134 1975-11-05 2024-10-11 00:35:34.000 1975-11-05 2024-10-11 00:35:34 +2136 2136 2137 213.6 427.20000000000005 2136 1975-11-07 2024-10-11 00:35:36.000 1975-11-07 2024-10-11 00:35:36 +2137 2137 2138 213.7 427.40000000000003 2137 1975-11-08 2024-10-11 00:35:37.000 1975-11-08 2024-10-11 00:35:37 +2138 2138 2139 213.8 427.6 2138 1975-11-09 2024-10-11 00:35:38.000 1975-11-09 2024-10-11 00:35:38 +2139 2139 2140 213.9 427.8 2139 1975-11-10 2024-10-11 00:35:39.000 1975-11-10 2024-10-11 00:35:39 +2141 2141 2142 214.1 428.20000000000005 2141 1975-11-12 2024-10-11 00:35:41.000 1975-11-12 2024-10-11 00:35:41 +2142 2142 2143 214.2 428.40000000000003 2142 1975-11-13 2024-10-11 00:35:42.000 1975-11-13 2024-10-11 00:35:42 +2143 2143 2144 214.3 428.6 2143 1975-11-14 2024-10-11 00:35:43.000 1975-11-14 2024-10-11 00:35:43 +2144 2144 2145 214.4 428.8 2144 1975-11-15 2024-10-11 00:35:44.000 1975-11-15 2024-10-11 00:35:44 +2146 2146 2147 214.6 429.20000000000005 2146 1975-11-17 2024-10-11 00:35:46.000 1975-11-17 2024-10-11 00:35:46 +2147 2147 2148 214.7 429.40000000000003 2147 1975-11-18 2024-10-11 00:35:47.000 1975-11-18 2024-10-11 00:35:47 +2148 2148 2149 214.8 429.6 2148 1975-11-19 2024-10-11 00:35:48.000 1975-11-19 2024-10-11 00:35:48 +2149 2149 2150 214.9 429.8 2149 1975-11-20 2024-10-11 00:35:49.000 1975-11-20 2024-10-11 00:35:49 +2151 2151 2152 215.1 430.20000000000005 2151 1975-11-22 2024-10-11 00:35:51.000 1975-11-22 2024-10-11 00:35:51 +2152 2152 2153 215.2 430.40000000000003 2152 1975-11-23 2024-10-11 00:35:52.000 1975-11-23 2024-10-11 00:35:52 +2153 2153 2154 215.3 430.6 2153 1975-11-24 2024-10-11 00:35:53.000 1975-11-24 2024-10-11 00:35:53 +2154 2154 2155 215.4 430.8 2154 1975-11-25 2024-10-11 00:35:54.000 1975-11-25 2024-10-11 00:35:54 +2156 2156 2157 215.6 431.20000000000005 2156 1975-11-27 2024-10-11 00:35:56.000 1975-11-27 2024-10-11 00:35:56 +2157 2157 2158 215.7 431.40000000000003 2157 1975-11-28 2024-10-11 00:35:57.000 1975-11-28 2024-10-11 00:35:57 +2158 2158 2159 215.8 431.6 2158 1975-11-29 2024-10-11 00:35:58.000 1975-11-29 2024-10-11 00:35:58 +2159 2159 2160 215.9 431.8 2159 1975-11-30 2024-10-11 00:35:59.000 1975-11-30 2024-10-11 00:35:59 +2161 2161 2162 216.1 432.20000000000005 2161 1975-12-02 2024-10-11 00:36:01.000 1975-12-02 2024-10-11 00:36:01 +2162 2162 2163 216.2 432.40000000000003 2162 1975-12-03 2024-10-11 00:36:02.000 1975-12-03 2024-10-11 00:36:02 +2163 2163 2164 216.3 432.6 2163 1975-12-04 2024-10-11 00:36:03.000 1975-12-04 2024-10-11 00:36:03 +2164 2164 2165 216.4 432.8 2164 1975-12-05 2024-10-11 00:36:04.000 1975-12-05 2024-10-11 00:36:04 +2166 2166 2167 216.6 433.20000000000005 2166 1975-12-07 2024-10-11 00:36:06.000 1975-12-07 2024-10-11 00:36:06 +2167 2167 2168 216.7 433.40000000000003 2167 1975-12-08 2024-10-11 00:36:07.000 1975-12-08 2024-10-11 00:36:07 +2168 2168 2169 216.8 433.6 2168 1975-12-09 2024-10-11 00:36:08.000 1975-12-09 2024-10-11 00:36:08 +2169 2169 2170 216.9 433.8 2169 1975-12-10 2024-10-11 00:36:09.000 1975-12-10 2024-10-11 00:36:09 +2171 2171 2172 217.1 434.20000000000005 2171 1975-12-12 2024-10-11 00:36:11.000 1975-12-12 2024-10-11 00:36:11 +2172 2172 2173 217.2 434.40000000000003 2172 1975-12-13 2024-10-11 00:36:12.000 1975-12-13 2024-10-11 00:36:12 +2173 2173 2174 217.3 434.6 2173 1975-12-14 2024-10-11 00:36:13.000 1975-12-14 2024-10-11 00:36:13 +2174 2174 2175 217.4 434.8 2174 1975-12-15 2024-10-11 00:36:14.000 1975-12-15 2024-10-11 00:36:14 +2176 2176 2177 217.6 435.20000000000005 2176 1975-12-17 2024-10-11 00:36:16.000 1975-12-17 2024-10-11 00:36:16 +2177 2177 2178 217.7 435.40000000000003 2177 1975-12-18 2024-10-11 00:36:17.000 1975-12-18 2024-10-11 00:36:17 +2178 2178 2179 217.8 435.6 2178 1975-12-19 2024-10-11 00:36:18.000 1975-12-19 2024-10-11 00:36:18 +2179 2179 2180 217.9 435.8 2179 1975-12-20 2024-10-11 00:36:19.000 1975-12-20 2024-10-11 00:36:19 +2181 2181 2182 218.1 436.20000000000005 2181 1975-12-22 2024-10-11 00:36:21.000 1975-12-22 2024-10-11 00:36:21 +2182 2182 2183 218.2 436.40000000000003 2182 1975-12-23 2024-10-11 00:36:22.000 1975-12-23 2024-10-11 00:36:22 +2183 2183 2184 218.3 436.6 2183 1975-12-24 2024-10-11 00:36:23.000 1975-12-24 2024-10-11 00:36:23 +2184 2184 2185 218.4 436.8 2184 1975-12-25 2024-10-11 00:36:24.000 1975-12-25 2024-10-11 00:36:24 +2186 2186 2187 218.6 437.20000000000005 2186 1975-12-27 2024-10-11 00:36:26.000 1975-12-27 2024-10-11 00:36:26 +2187 2187 2188 218.7 437.40000000000003 2187 1975-12-28 2024-10-11 00:36:27.000 1975-12-28 2024-10-11 00:36:27 +2188 2188 2189 218.8 437.6 2188 1975-12-29 2024-10-11 00:36:28.000 1975-12-29 2024-10-11 00:36:28 +2189 2189 2190 218.9 437.8 2189 1975-12-30 2024-10-11 00:36:29.000 1975-12-30 2024-10-11 00:36:29 +2191 2191 2192 219.1 438.20000000000005 2191 1976-01-01 2024-10-11 00:36:31.000 1976-01-01 2024-10-11 00:36:31 +2192 2192 2193 219.2 438.40000000000003 2192 1976-01-02 2024-10-11 00:36:32.000 1976-01-02 2024-10-11 00:36:32 +2193 2193 2194 219.3 438.6 2193 1976-01-03 2024-10-11 00:36:33.000 1976-01-03 2024-10-11 00:36:33 +2194 2194 2195 219.4 438.8 2194 1976-01-04 2024-10-11 00:36:34.000 1976-01-04 2024-10-11 00:36:34 +2196 2196 2197 219.6 439.20000000000005 2196 1976-01-06 2024-10-11 00:36:36.000 1976-01-06 2024-10-11 00:36:36 +2197 2197 2198 219.7 439.40000000000003 2197 1976-01-07 2024-10-11 00:36:37.000 1976-01-07 2024-10-11 00:36:37 +2198 2198 2199 219.8 439.6 2198 1976-01-08 2024-10-11 00:36:38.000 1976-01-08 2024-10-11 00:36:38 +2199 2199 2200 219.9 439.8 2199 1976-01-09 2024-10-11 00:36:39.000 1976-01-09 2024-10-11 00:36:39 +2201 2201 2202 220.1 440.20000000000005 2201 1976-01-11 2024-10-11 00:36:41.000 1976-01-11 2024-10-11 00:36:41 +2202 2202 2203 220.2 440.40000000000003 2202 1976-01-12 2024-10-11 00:36:42.000 1976-01-12 2024-10-11 00:36:42 +2203 2203 2204 220.3 440.6 2203 1976-01-13 2024-10-11 00:36:43.000 1976-01-13 2024-10-11 00:36:43 +2204 2204 2205 220.4 440.8 2204 1976-01-14 2024-10-11 00:36:44.000 1976-01-14 2024-10-11 00:36:44 +2206 2206 2207 220.6 441.20000000000005 2206 1976-01-16 2024-10-11 00:36:46.000 1976-01-16 2024-10-11 00:36:46 +2207 2207 2208 220.7 441.40000000000003 2207 1976-01-17 2024-10-11 00:36:47.000 1976-01-17 2024-10-11 00:36:47 +2208 2208 2209 220.8 441.6 2208 1976-01-18 2024-10-11 00:36:48.000 1976-01-18 2024-10-11 00:36:48 +2209 2209 2210 220.9 441.8 2209 1976-01-19 2024-10-11 00:36:49.000 1976-01-19 2024-10-11 00:36:49 +2211 2211 2212 221.1 442.20000000000005 2211 1976-01-21 2024-10-11 00:36:51.000 1976-01-21 2024-10-11 00:36:51 +2212 2212 2213 221.2 442.40000000000003 2212 1976-01-22 2024-10-11 00:36:52.000 1976-01-22 2024-10-11 00:36:52 +2213 2213 2214 221.3 442.6 2213 1976-01-23 2024-10-11 00:36:53.000 1976-01-23 2024-10-11 00:36:53 +2214 2214 2215 221.4 442.8 2214 1976-01-24 2024-10-11 00:36:54.000 1976-01-24 2024-10-11 00:36:54 +2216 2216 2217 221.6 443.20000000000005 2216 1976-01-26 2024-10-11 00:36:56.000 1976-01-26 2024-10-11 00:36:56 +2217 2217 2218 221.7 443.40000000000003 2217 1976-01-27 2024-10-11 00:36:57.000 1976-01-27 2024-10-11 00:36:57 +2218 2218 2219 221.8 443.6 2218 1976-01-28 2024-10-11 00:36:58.000 1976-01-28 2024-10-11 00:36:58 +2219 2219 2220 221.9 443.8 2219 1976-01-29 2024-10-11 00:36:59.000 1976-01-29 2024-10-11 00:36:59 +2221 2221 2222 222.1 444.20000000000005 2221 1976-01-31 2024-10-11 00:37:01.000 1976-01-31 2024-10-11 00:37:01 +2222 2222 2223 222.2 444.40000000000003 2222 1976-02-01 2024-10-11 00:37:02.000 1976-02-01 2024-10-11 00:37:02 +2223 2223 2224 222.3 444.6 2223 1976-02-02 2024-10-11 00:37:03.000 1976-02-02 2024-10-11 00:37:03 +2224 2224 2225 222.4 444.8 2224 1976-02-03 2024-10-11 00:37:04.000 1976-02-03 2024-10-11 00:37:04 +2226 2226 2227 222.6 445.20000000000005 2226 1976-02-05 2024-10-11 00:37:06.000 1976-02-05 2024-10-11 00:37:06 +2227 2227 2228 222.7 445.40000000000003 2227 1976-02-06 2024-10-11 00:37:07.000 1976-02-06 2024-10-11 00:37:07 +2228 2228 2229 222.8 445.6 2228 1976-02-07 2024-10-11 00:37:08.000 1976-02-07 2024-10-11 00:37:08 +2229 2229 2230 222.9 445.8 2229 1976-02-08 2024-10-11 00:37:09.000 1976-02-08 2024-10-11 00:37:09 +2231 2231 2232 223.1 446.20000000000005 2231 1976-02-10 2024-10-11 00:37:11.000 1976-02-10 2024-10-11 00:37:11 +2232 2232 2233 223.2 446.40000000000003 2232 1976-02-11 2024-10-11 00:37:12.000 1976-02-11 2024-10-11 00:37:12 +2233 2233 2234 223.3 446.6 2233 1976-02-12 2024-10-11 00:37:13.000 1976-02-12 2024-10-11 00:37:13 +2234 2234 2235 223.4 446.8 2234 1976-02-13 2024-10-11 00:37:14.000 1976-02-13 2024-10-11 00:37:14 +2236 2236 2237 223.6 447.20000000000005 2236 1976-02-15 2024-10-11 00:37:16.000 1976-02-15 2024-10-11 00:37:16 +2237 2237 2238 223.7 447.40000000000003 2237 1976-02-16 2024-10-11 00:37:17.000 1976-02-16 2024-10-11 00:37:17 +2238 2238 2239 223.8 447.6 2238 1976-02-17 2024-10-11 00:37:18.000 1976-02-17 2024-10-11 00:37:18 +2239 2239 2240 223.9 447.8 2239 1976-02-18 2024-10-11 00:37:19.000 1976-02-18 2024-10-11 00:37:19 +2241 2241 2242 224.1 448.20000000000005 2241 1976-02-20 2024-10-11 00:37:21.000 1976-02-20 2024-10-11 00:37:21 +2242 2242 2243 224.2 448.40000000000003 2242 1976-02-21 2024-10-11 00:37:22.000 1976-02-21 2024-10-11 00:37:22 +2243 2243 2244 224.3 448.6 2243 1976-02-22 2024-10-11 00:37:23.000 1976-02-22 2024-10-11 00:37:23 +2244 2244 2245 224.4 448.8 2244 1976-02-23 2024-10-11 00:37:24.000 1976-02-23 2024-10-11 00:37:24 +2246 2246 2247 224.6 449.20000000000005 2246 1976-02-25 2024-10-11 00:37:26.000 1976-02-25 2024-10-11 00:37:26 +2247 2247 2248 224.7 449.40000000000003 2247 1976-02-26 2024-10-11 00:37:27.000 1976-02-26 2024-10-11 00:37:27 +2248 2248 2249 224.8 449.6 2248 1976-02-27 2024-10-11 00:37:28.000 1976-02-27 2024-10-11 00:37:28 +2249 2249 2250 224.9 449.8 2249 1976-02-28 2024-10-11 00:37:29.000 1976-02-28 2024-10-11 00:37:29 +2251 2251 2252 225.1 450.20000000000005 2251 1976-03-01 2024-10-11 00:37:31.000 1976-03-01 2024-10-11 00:37:31 +2252 2252 2253 225.2 450.40000000000003 2252 1976-03-02 2024-10-11 00:37:32.000 1976-03-02 2024-10-11 00:37:32 +2253 2253 2254 225.3 450.6 2253 1976-03-03 2024-10-11 00:37:33.000 1976-03-03 2024-10-11 00:37:33 +2254 2254 2255 225.4 450.8 2254 1976-03-04 2024-10-11 00:37:34.000 1976-03-04 2024-10-11 00:37:34 +2256 2256 2257 225.6 451.20000000000005 2256 1976-03-06 2024-10-11 00:37:36.000 1976-03-06 2024-10-11 00:37:36 +2257 2257 2258 225.7 451.40000000000003 2257 1976-03-07 2024-10-11 00:37:37.000 1976-03-07 2024-10-11 00:37:37 +2258 2258 2259 225.8 451.6 2258 1976-03-08 2024-10-11 00:37:38.000 1976-03-08 2024-10-11 00:37:38 +2259 2259 2260 225.9 451.8 2259 1976-03-09 2024-10-11 00:37:39.000 1976-03-09 2024-10-11 00:37:39 +2261 2261 2262 226.1 452.20000000000005 2261 1976-03-11 2024-10-11 00:37:41.000 1976-03-11 2024-10-11 00:37:41 +2262 2262 2263 226.2 452.40000000000003 2262 1976-03-12 2024-10-11 00:37:42.000 1976-03-12 2024-10-11 00:37:42 +2263 2263 2264 226.3 452.6 2263 1976-03-13 2024-10-11 00:37:43.000 1976-03-13 2024-10-11 00:37:43 +2264 2264 2265 226.4 452.8 2264 1976-03-14 2024-10-11 00:37:44.000 1976-03-14 2024-10-11 00:37:44 +2266 2266 2267 226.6 453.20000000000005 2266 1976-03-16 2024-10-11 00:37:46.000 1976-03-16 2024-10-11 00:37:46 +2267 2267 2268 226.7 453.40000000000003 2267 1976-03-17 2024-10-11 00:37:47.000 1976-03-17 2024-10-11 00:37:47 +2268 2268 2269 226.8 453.6 2268 1976-03-18 2024-10-11 00:37:48.000 1976-03-18 2024-10-11 00:37:48 +2269 2269 2270 226.9 453.8 2269 1976-03-19 2024-10-11 00:37:49.000 1976-03-19 2024-10-11 00:37:49 +2271 2271 2272 227.1 454.20000000000005 2271 1976-03-21 2024-10-11 00:37:51.000 1976-03-21 2024-10-11 00:37:51 +2272 2272 2273 227.2 454.40000000000003 2272 1976-03-22 2024-10-11 00:37:52.000 1976-03-22 2024-10-11 00:37:52 +2273 2273 2274 227.3 454.6 2273 1976-03-23 2024-10-11 00:37:53.000 1976-03-23 2024-10-11 00:37:53 +2274 2274 2275 227.4 454.8 2274 1976-03-24 2024-10-11 00:37:54.000 1976-03-24 2024-10-11 00:37:54 +2276 2276 2277 227.6 455.20000000000005 2276 1976-03-26 2024-10-11 00:37:56.000 1976-03-26 2024-10-11 00:37:56 +2277 2277 2278 227.7 455.40000000000003 2277 1976-03-27 2024-10-11 00:37:57.000 1976-03-27 2024-10-11 00:37:57 +2278 2278 2279 227.8 455.6 2278 1976-03-28 2024-10-11 00:37:58.000 1976-03-28 2024-10-11 00:37:58 +2279 2279 2280 227.9 455.8 2279 1976-03-29 2024-10-11 00:37:59.000 1976-03-29 2024-10-11 00:37:59 +2281 2281 2282 228.1 456.20000000000005 2281 1976-03-31 2024-10-11 00:38:01.000 1976-03-31 2024-10-11 00:38:01 +2282 2282 2283 228.2 456.40000000000003 2282 1976-04-01 2024-10-11 00:38:02.000 1976-04-01 2024-10-11 00:38:02 +2283 2283 2284 228.3 456.6 2283 1976-04-02 2024-10-11 00:38:03.000 1976-04-02 2024-10-11 00:38:03 +2284 2284 2285 228.4 456.8 2284 1976-04-03 2024-10-11 00:38:04.000 1976-04-03 2024-10-11 00:38:04 +2286 2286 2287 228.6 457.20000000000005 2286 1976-04-05 2024-10-11 00:38:06.000 1976-04-05 2024-10-11 00:38:06 +2287 2287 2288 228.7 457.40000000000003 2287 1976-04-06 2024-10-11 00:38:07.000 1976-04-06 2024-10-11 00:38:07 +2288 2288 2289 228.8 457.6 2288 1976-04-07 2024-10-11 00:38:08.000 1976-04-07 2024-10-11 00:38:08 +2289 2289 2290 228.9 457.8 2289 1976-04-08 2024-10-11 00:38:09.000 1976-04-08 2024-10-11 00:38:09 +2291 2291 2292 229.1 458.20000000000005 2291 1976-04-10 2024-10-11 00:38:11.000 1976-04-10 2024-10-11 00:38:11 +2292 2292 2293 229.2 458.40000000000003 2292 1976-04-11 2024-10-11 00:38:12.000 1976-04-11 2024-10-11 00:38:12 +2293 2293 2294 229.3 458.6 2293 1976-04-12 2024-10-11 00:38:13.000 1976-04-12 2024-10-11 00:38:13 +2294 2294 2295 229.4 458.8 2294 1976-04-13 2024-10-11 00:38:14.000 1976-04-13 2024-10-11 00:38:14 +2296 2296 2297 229.6 459.20000000000005 2296 1976-04-15 2024-10-11 00:38:16.000 1976-04-15 2024-10-11 00:38:16 +2297 2297 2298 229.7 459.40000000000003 2297 1976-04-16 2024-10-11 00:38:17.000 1976-04-16 2024-10-11 00:38:17 +2298 2298 2299 229.8 459.6 2298 1976-04-17 2024-10-11 00:38:18.000 1976-04-17 2024-10-11 00:38:18 +2299 2299 2300 229.9 459.8 2299 1976-04-18 2024-10-11 00:38:19.000 1976-04-18 2024-10-11 00:38:19 +2301 2301 2302 230.1 460.20000000000005 2301 1976-04-20 2024-10-11 00:38:21.000 1976-04-20 2024-10-11 00:38:21 +2302 2302 2303 230.2 460.40000000000003 2302 1976-04-21 2024-10-11 00:38:22.000 1976-04-21 2024-10-11 00:38:22 +2303 2303 2304 230.3 460.6 2303 1976-04-22 2024-10-11 00:38:23.000 1976-04-22 2024-10-11 00:38:23 +2304 2304 2305 230.4 460.8 2304 1976-04-23 2024-10-11 00:38:24.000 1976-04-23 2024-10-11 00:38:24 +2306 2306 2307 230.6 461.20000000000005 2306 1976-04-25 2024-10-11 00:38:26.000 1976-04-25 2024-10-11 00:38:26 +2307 2307 2308 230.7 461.40000000000003 2307 1976-04-26 2024-10-11 00:38:27.000 1976-04-26 2024-10-11 00:38:27 +2308 2308 2309 230.8 461.6 2308 1976-04-27 2024-10-11 00:38:28.000 1976-04-27 2024-10-11 00:38:28 +2309 2309 2310 230.9 461.8 2309 1976-04-28 2024-10-11 00:38:29.000 1976-04-28 2024-10-11 00:38:29 +2311 2311 2312 231.1 462.20000000000005 2311 1976-04-30 2024-10-11 00:38:31.000 1976-04-30 2024-10-11 00:38:31 +2312 2312 2313 231.2 462.40000000000003 2312 1976-05-01 2024-10-11 00:38:32.000 1976-05-01 2024-10-11 00:38:32 +2313 2313 2314 231.3 462.6 2313 1976-05-02 2024-10-11 00:38:33.000 1976-05-02 2024-10-11 00:38:33 +2314 2314 2315 231.4 462.8 2314 1976-05-03 2024-10-11 00:38:34.000 1976-05-03 2024-10-11 00:38:34 +2316 2316 2317 231.6 463.20000000000005 2316 1976-05-05 2024-10-11 00:38:36.000 1976-05-05 2024-10-11 00:38:36 +2317 2317 2318 231.7 463.40000000000003 2317 1976-05-06 2024-10-11 00:38:37.000 1976-05-06 2024-10-11 00:38:37 +2318 2318 2319 231.8 463.6 2318 1976-05-07 2024-10-11 00:38:38.000 1976-05-07 2024-10-11 00:38:38 +2319 2319 2320 231.9 463.8 2319 1976-05-08 2024-10-11 00:38:39.000 1976-05-08 2024-10-11 00:38:39 +2321 2321 2322 232.1 464.20000000000005 2321 1976-05-10 2024-10-11 00:38:41.000 1976-05-10 2024-10-11 00:38:41 +2322 2322 2323 232.2 464.40000000000003 2322 1976-05-11 2024-10-11 00:38:42.000 1976-05-11 2024-10-11 00:38:42 +2323 2323 2324 232.3 464.6 2323 1976-05-12 2024-10-11 00:38:43.000 1976-05-12 2024-10-11 00:38:43 +2324 2324 2325 232.4 464.8 2324 1976-05-13 2024-10-11 00:38:44.000 1976-05-13 2024-10-11 00:38:44 +2326 2326 2327 232.6 465.20000000000005 2326 1976-05-15 2024-10-11 00:38:46.000 1976-05-15 2024-10-11 00:38:46 +2327 2327 2328 232.7 465.40000000000003 2327 1976-05-16 2024-10-11 00:38:47.000 1976-05-16 2024-10-11 00:38:47 +2328 2328 2329 232.8 465.6 2328 1976-05-17 2024-10-11 00:38:48.000 1976-05-17 2024-10-11 00:38:48 +2329 2329 2330 232.9 465.8 2329 1976-05-18 2024-10-11 00:38:49.000 1976-05-18 2024-10-11 00:38:49 +2331 2331 2332 233.1 466.20000000000005 2331 1976-05-20 2024-10-11 00:38:51.000 1976-05-20 2024-10-11 00:38:51 +2332 2332 2333 233.2 466.40000000000003 2332 1976-05-21 2024-10-11 00:38:52.000 1976-05-21 2024-10-11 00:38:52 +2333 2333 2334 233.3 466.6 2333 1976-05-22 2024-10-11 00:38:53.000 1976-05-22 2024-10-11 00:38:53 +2334 2334 2335 233.4 466.8 2334 1976-05-23 2024-10-11 00:38:54.000 1976-05-23 2024-10-11 00:38:54 +2336 2336 2337 233.6 467.20000000000005 2336 1976-05-25 2024-10-11 00:38:56.000 1976-05-25 2024-10-11 00:38:56 +2337 2337 2338 233.7 467.40000000000003 2337 1976-05-26 2024-10-11 00:38:57.000 1976-05-26 2024-10-11 00:38:57 +2338 2338 2339 233.8 467.6 2338 1976-05-27 2024-10-11 00:38:58.000 1976-05-27 2024-10-11 00:38:58 +2339 2339 2340 233.9 467.8 2339 1976-05-28 2024-10-11 00:38:59.000 1976-05-28 2024-10-11 00:38:59 +2341 2341 2342 234.1 468.20000000000005 2341 1976-05-30 2024-10-11 00:39:01.000 1976-05-30 2024-10-11 00:39:01 +2342 2342 2343 234.2 468.40000000000003 2342 1976-05-31 2024-10-11 00:39:02.000 1976-05-31 2024-10-11 00:39:02 +2343 2343 2344 234.3 468.6 2343 1976-06-01 2024-10-11 00:39:03.000 1976-06-01 2024-10-11 00:39:03 +2344 2344 2345 234.4 468.8 2344 1976-06-02 2024-10-11 00:39:04.000 1976-06-02 2024-10-11 00:39:04 +2346 2346 2347 234.6 469.20000000000005 2346 1976-06-04 2024-10-11 00:39:06.000 1976-06-04 2024-10-11 00:39:06 +2347 2347 2348 234.7 469.40000000000003 2347 1976-06-05 2024-10-11 00:39:07.000 1976-06-05 2024-10-11 00:39:07 +2348 2348 2349 234.8 469.6 2348 1976-06-06 2024-10-11 00:39:08.000 1976-06-06 2024-10-11 00:39:08 +2349 2349 2350 234.9 469.8 2349 1976-06-07 2024-10-11 00:39:09.000 1976-06-07 2024-10-11 00:39:09 +2351 2351 2352 235.1 470.20000000000005 2351 1976-06-09 2024-10-11 00:39:11.000 1976-06-09 2024-10-11 00:39:11 +2352 2352 2353 235.2 470.40000000000003 2352 1976-06-10 2024-10-11 00:39:12.000 1976-06-10 2024-10-11 00:39:12 +2353 2353 2354 235.3 470.6 2353 1976-06-11 2024-10-11 00:39:13.000 1976-06-11 2024-10-11 00:39:13 +2354 2354 2355 235.4 470.8 2354 1976-06-12 2024-10-11 00:39:14.000 1976-06-12 2024-10-11 00:39:14 +2356 2356 2357 235.6 471.20000000000005 2356 1976-06-14 2024-10-11 00:39:16.000 1976-06-14 2024-10-11 00:39:16 +2357 2357 2358 235.7 471.40000000000003 2357 1976-06-15 2024-10-11 00:39:17.000 1976-06-15 2024-10-11 00:39:17 +2358 2358 2359 235.8 471.6 2358 1976-06-16 2024-10-11 00:39:18.000 1976-06-16 2024-10-11 00:39:18 +2359 2359 2360 235.9 471.8 2359 1976-06-17 2024-10-11 00:39:19.000 1976-06-17 2024-10-11 00:39:19 +2361 2361 2362 236.1 472.20000000000005 2361 1976-06-19 2024-10-11 00:39:21.000 1976-06-19 2024-10-11 00:39:21 +2362 2362 2363 236.2 472.40000000000003 2362 1976-06-20 2024-10-11 00:39:22.000 1976-06-20 2024-10-11 00:39:22 +2363 2363 2364 236.3 472.6 2363 1976-06-21 2024-10-11 00:39:23.000 1976-06-21 2024-10-11 00:39:23 +2364 2364 2365 236.4 472.8 2364 1976-06-22 2024-10-11 00:39:24.000 1976-06-22 2024-10-11 00:39:24 +2366 2366 2367 236.6 473.20000000000005 2366 1976-06-24 2024-10-11 00:39:26.000 1976-06-24 2024-10-11 00:39:26 +2367 2367 2368 236.7 473.40000000000003 2367 1976-06-25 2024-10-11 00:39:27.000 1976-06-25 2024-10-11 00:39:27 +2368 2368 2369 236.8 473.6 2368 1976-06-26 2024-10-11 00:39:28.000 1976-06-26 2024-10-11 00:39:28 +2369 2369 2370 236.9 473.8 2369 1976-06-27 2024-10-11 00:39:29.000 1976-06-27 2024-10-11 00:39:29 +2371 2371 2372 237.1 474.20000000000005 2371 1976-06-29 2024-10-11 00:39:31.000 1976-06-29 2024-10-11 00:39:31 +2372 2372 2373 237.2 474.40000000000003 2372 1976-06-30 2024-10-11 00:39:32.000 1976-06-30 2024-10-11 00:39:32 +2373 2373 2374 237.3 474.6 2373 1976-07-01 2024-10-11 00:39:33.000 1976-07-01 2024-10-11 00:39:33 +2374 2374 2375 237.4 474.8 2374 1976-07-02 2024-10-11 00:39:34.000 1976-07-02 2024-10-11 00:39:34 +2376 2376 2377 237.6 475.20000000000005 2376 1976-07-04 2024-10-11 00:39:36.000 1976-07-04 2024-10-11 00:39:36 +2377 2377 2378 237.7 475.40000000000003 2377 1976-07-05 2024-10-11 00:39:37.000 1976-07-05 2024-10-11 00:39:37 +2378 2378 2379 237.8 475.6 2378 1976-07-06 2024-10-11 00:39:38.000 1976-07-06 2024-10-11 00:39:38 +2379 2379 2380 237.9 475.8 2379 1976-07-07 2024-10-11 00:39:39.000 1976-07-07 2024-10-11 00:39:39 +2381 2381 2382 238.1 476.20000000000005 2381 1976-07-09 2024-10-11 00:39:41.000 1976-07-09 2024-10-11 00:39:41 +2382 2382 2383 238.2 476.40000000000003 2382 1976-07-10 2024-10-11 00:39:42.000 1976-07-10 2024-10-11 00:39:42 +2383 2383 2384 238.3 476.6 2383 1976-07-11 2024-10-11 00:39:43.000 1976-07-11 2024-10-11 00:39:43 +2384 2384 2385 238.4 476.8 2384 1976-07-12 2024-10-11 00:39:44.000 1976-07-12 2024-10-11 00:39:44 +2386 2386 2387 238.6 477.20000000000005 2386 1976-07-14 2024-10-11 00:39:46.000 1976-07-14 2024-10-11 00:39:46 +2387 2387 2388 238.7 477.40000000000003 2387 1976-07-15 2024-10-11 00:39:47.000 1976-07-15 2024-10-11 00:39:47 +2388 2388 2389 238.8 477.6 2388 1976-07-16 2024-10-11 00:39:48.000 1976-07-16 2024-10-11 00:39:48 +2389 2389 2390 238.9 477.8 2389 1976-07-17 2024-10-11 00:39:49.000 1976-07-17 2024-10-11 00:39:49 +2391 2391 2392 239.1 478.20000000000005 2391 1976-07-19 2024-10-11 00:39:51.000 1976-07-19 2024-10-11 00:39:51 +2392 2392 2393 239.2 478.40000000000003 2392 1976-07-20 2024-10-11 00:39:52.000 1976-07-20 2024-10-11 00:39:52 +2393 2393 2394 239.3 478.6 2393 1976-07-21 2024-10-11 00:39:53.000 1976-07-21 2024-10-11 00:39:53 +2394 2394 2395 239.4 478.8 2394 1976-07-22 2024-10-11 00:39:54.000 1976-07-22 2024-10-11 00:39:54 +2396 2396 2397 239.6 479.20000000000005 2396 1976-07-24 2024-10-11 00:39:56.000 1976-07-24 2024-10-11 00:39:56 +2397 2397 2398 239.7 479.40000000000003 2397 1976-07-25 2024-10-11 00:39:57.000 1976-07-25 2024-10-11 00:39:57 +2398 2398 2399 239.8 479.6 2398 1976-07-26 2024-10-11 00:39:58.000 1976-07-26 2024-10-11 00:39:58 +2399 2399 2400 239.9 479.8 2399 1976-07-27 2024-10-11 00:39:59.000 1976-07-27 2024-10-11 00:39:59 +2401 2401 2402 240.1 480.20000000000005 2401 1976-07-29 2024-10-11 00:40:01.000 1976-07-29 2024-10-11 00:40:01 +2402 2402 2403 240.2 480.40000000000003 2402 1976-07-30 2024-10-11 00:40:02.000 1976-07-30 2024-10-11 00:40:02 +2403 2403 2404 240.3 480.6 2403 1976-07-31 2024-10-11 00:40:03.000 1976-07-31 2024-10-11 00:40:03 +2404 2404 2405 240.4 480.8 2404 1976-08-01 2024-10-11 00:40:04.000 1976-08-01 2024-10-11 00:40:04 +2406 2406 2407 240.6 481.20000000000005 2406 1976-08-03 2024-10-11 00:40:06.000 1976-08-03 2024-10-11 00:40:06 +2407 2407 2408 240.7 481.40000000000003 2407 1976-08-04 2024-10-11 00:40:07.000 1976-08-04 2024-10-11 00:40:07 +2408 2408 2409 240.8 481.6 2408 1976-08-05 2024-10-11 00:40:08.000 1976-08-05 2024-10-11 00:40:08 +2409 2409 2410 240.9 481.8 2409 1976-08-06 2024-10-11 00:40:09.000 1976-08-06 2024-10-11 00:40:09 +2411 2411 2412 241.1 482.20000000000005 2411 1976-08-08 2024-10-11 00:40:11.000 1976-08-08 2024-10-11 00:40:11 +2412 2412 2413 241.2 482.40000000000003 2412 1976-08-09 2024-10-11 00:40:12.000 1976-08-09 2024-10-11 00:40:12 +2413 2413 2414 241.3 482.6 2413 1976-08-10 2024-10-11 00:40:13.000 1976-08-10 2024-10-11 00:40:13 +2414 2414 2415 241.4 482.8 2414 1976-08-11 2024-10-11 00:40:14.000 1976-08-11 2024-10-11 00:40:14 +2416 2416 2417 241.6 483.20000000000005 2416 1976-08-13 2024-10-11 00:40:16.000 1976-08-13 2024-10-11 00:40:16 +2417 2417 2418 241.7 483.40000000000003 2417 1976-08-14 2024-10-11 00:40:17.000 1976-08-14 2024-10-11 00:40:17 +2418 2418 2419 241.8 483.6 2418 1976-08-15 2024-10-11 00:40:18.000 1976-08-15 2024-10-11 00:40:18 +2419 2419 2420 241.9 483.8 2419 1976-08-16 2024-10-11 00:40:19.000 1976-08-16 2024-10-11 00:40:19 +2421 2421 2422 242.1 484.20000000000005 2421 1976-08-18 2024-10-11 00:40:21.000 1976-08-18 2024-10-11 00:40:21 +2422 2422 2423 242.2 484.40000000000003 2422 1976-08-19 2024-10-11 00:40:22.000 1976-08-19 2024-10-11 00:40:22 +2423 2423 2424 242.3 484.6 2423 1976-08-20 2024-10-11 00:40:23.000 1976-08-20 2024-10-11 00:40:23 +2424 2424 2425 242.4 484.8 2424 1976-08-21 2024-10-11 00:40:24.000 1976-08-21 2024-10-11 00:40:24 +2426 2426 2427 242.6 485.20000000000005 2426 1976-08-23 2024-10-11 00:40:26.000 1976-08-23 2024-10-11 00:40:26 +2427 2427 2428 242.7 485.40000000000003 2427 1976-08-24 2024-10-11 00:40:27.000 1976-08-24 2024-10-11 00:40:27 +2428 2428 2429 242.8 485.6 2428 1976-08-25 2024-10-11 00:40:28.000 1976-08-25 2024-10-11 00:40:28 +2429 2429 2430 242.9 485.8 2429 1976-08-26 2024-10-11 00:40:29.000 1976-08-26 2024-10-11 00:40:29 +2431 2431 2432 243.1 486.20000000000005 2431 1976-08-28 2024-10-11 00:40:31.000 1976-08-28 2024-10-11 00:40:31 +2432 2432 2433 243.2 486.40000000000003 2432 1976-08-29 2024-10-11 00:40:32.000 1976-08-29 2024-10-11 00:40:32 +2433 2433 2434 243.3 486.6 2433 1976-08-30 2024-10-11 00:40:33.000 1976-08-30 2024-10-11 00:40:33 +2434 2434 2435 243.4 486.8 2434 1976-08-31 2024-10-11 00:40:34.000 1976-08-31 2024-10-11 00:40:34 +2436 2436 2437 243.6 487.20000000000005 2436 1976-09-02 2024-10-11 00:40:36.000 1976-09-02 2024-10-11 00:40:36 +2437 2437 2438 243.7 487.40000000000003 2437 1976-09-03 2024-10-11 00:40:37.000 1976-09-03 2024-10-11 00:40:37 +2438 2438 2439 243.8 487.6 2438 1976-09-04 2024-10-11 00:40:38.000 1976-09-04 2024-10-11 00:40:38 +2439 2439 2440 243.9 487.8 2439 1976-09-05 2024-10-11 00:40:39.000 1976-09-05 2024-10-11 00:40:39 +2441 2441 2442 244.1 488.20000000000005 2441 1976-09-07 2024-10-11 00:40:41.000 1976-09-07 2024-10-11 00:40:41 +2442 2442 2443 244.2 488.40000000000003 2442 1976-09-08 2024-10-11 00:40:42.000 1976-09-08 2024-10-11 00:40:42 +2443 2443 2444 244.3 488.6 2443 1976-09-09 2024-10-11 00:40:43.000 1976-09-09 2024-10-11 00:40:43 +2444 2444 2445 244.4 488.8 2444 1976-09-10 2024-10-11 00:40:44.000 1976-09-10 2024-10-11 00:40:44 +2446 2446 2447 244.6 489.20000000000005 2446 1976-09-12 2024-10-11 00:40:46.000 1976-09-12 2024-10-11 00:40:46 +2447 2447 2448 244.7 489.40000000000003 2447 1976-09-13 2024-10-11 00:40:47.000 1976-09-13 2024-10-11 00:40:47 +2448 2448 2449 244.8 489.6 2448 1976-09-14 2024-10-11 00:40:48.000 1976-09-14 2024-10-11 00:40:48 +2449 2449 2450 244.9 489.8 2449 1976-09-15 2024-10-11 00:40:49.000 1976-09-15 2024-10-11 00:40:49 +2451 2451 2452 245.1 490.20000000000005 2451 1976-09-17 2024-10-11 00:40:51.000 1976-09-17 2024-10-11 00:40:51 +2452 2452 2453 245.2 490.40000000000003 2452 1976-09-18 2024-10-11 00:40:52.000 1976-09-18 2024-10-11 00:40:52 +2453 2453 2454 245.3 490.6 2453 1976-09-19 2024-10-11 00:40:53.000 1976-09-19 2024-10-11 00:40:53 +2454 2454 2455 245.4 490.8 2454 1976-09-20 2024-10-11 00:40:54.000 1976-09-20 2024-10-11 00:40:54 +2456 2456 2457 245.6 491.20000000000005 2456 1976-09-22 2024-10-11 00:40:56.000 1976-09-22 2024-10-11 00:40:56 +2457 2457 2458 245.7 491.40000000000003 2457 1976-09-23 2024-10-11 00:40:57.000 1976-09-23 2024-10-11 00:40:57 +2458 2458 2459 245.8 491.6 2458 1976-09-24 2024-10-11 00:40:58.000 1976-09-24 2024-10-11 00:40:58 +2459 2459 2460 245.9 491.8 2459 1976-09-25 2024-10-11 00:40:59.000 1976-09-25 2024-10-11 00:40:59 +2461 2461 2462 246.1 492.20000000000005 2461 1976-09-27 2024-10-11 00:41:01.000 1976-09-27 2024-10-11 00:41:01 +2462 2462 2463 246.2 492.40000000000003 2462 1976-09-28 2024-10-11 00:41:02.000 1976-09-28 2024-10-11 00:41:02 +2463 2463 2464 246.3 492.6 2463 1976-09-29 2024-10-11 00:41:03.000 1976-09-29 2024-10-11 00:41:03 +2464 2464 2465 246.4 492.8 2464 1976-09-30 2024-10-11 00:41:04.000 1976-09-30 2024-10-11 00:41:04 +2466 2466 2467 246.6 493.20000000000005 2466 1976-10-02 2024-10-11 00:41:06.000 1976-10-02 2024-10-11 00:41:06 +2467 2467 2468 246.7 493.40000000000003 2467 1976-10-03 2024-10-11 00:41:07.000 1976-10-03 2024-10-11 00:41:07 +2468 2468 2469 246.8 493.6 2468 1976-10-04 2024-10-11 00:41:08.000 1976-10-04 2024-10-11 00:41:08 +2469 2469 2470 246.9 493.8 2469 1976-10-05 2024-10-11 00:41:09.000 1976-10-05 2024-10-11 00:41:09 +2471 2471 2472 247.1 494.20000000000005 2471 1976-10-07 2024-10-11 00:41:11.000 1976-10-07 2024-10-11 00:41:11 +2472 2472 2473 247.2 494.40000000000003 2472 1976-10-08 2024-10-11 00:41:12.000 1976-10-08 2024-10-11 00:41:12 +2473 2473 2474 247.3 494.6 2473 1976-10-09 2024-10-11 00:41:13.000 1976-10-09 2024-10-11 00:41:13 +2474 2474 2475 247.4 494.8 2474 1976-10-10 2024-10-11 00:41:14.000 1976-10-10 2024-10-11 00:41:14 +2476 2476 2477 247.6 495.20000000000005 2476 1976-10-12 2024-10-11 00:41:16.000 1976-10-12 2024-10-11 00:41:16 +2477 2477 2478 247.7 495.40000000000003 2477 1976-10-13 2024-10-11 00:41:17.000 1976-10-13 2024-10-11 00:41:17 +2478 2478 2479 247.8 495.6 2478 1976-10-14 2024-10-11 00:41:18.000 1976-10-14 2024-10-11 00:41:18 +2479 2479 2480 247.9 495.8 2479 1976-10-15 2024-10-11 00:41:19.000 1976-10-15 2024-10-11 00:41:19 +2481 2481 2482 248.1 496.20000000000005 2481 1976-10-17 2024-10-11 00:41:21.000 1976-10-17 2024-10-11 00:41:21 +2482 2482 2483 248.2 496.40000000000003 2482 1976-10-18 2024-10-11 00:41:22.000 1976-10-18 2024-10-11 00:41:22 +2483 2483 2484 248.3 496.6 2483 1976-10-19 2024-10-11 00:41:23.000 1976-10-19 2024-10-11 00:41:23 +2484 2484 2485 248.4 496.8 2484 1976-10-20 2024-10-11 00:41:24.000 1976-10-20 2024-10-11 00:41:24 +2486 2486 2487 248.6 497.20000000000005 2486 1976-10-22 2024-10-11 00:41:26.000 1976-10-22 2024-10-11 00:41:26 +2487 2487 2488 248.7 497.40000000000003 2487 1976-10-23 2024-10-11 00:41:27.000 1976-10-23 2024-10-11 00:41:27 +2488 2488 2489 248.8 497.6 2488 1976-10-24 2024-10-11 00:41:28.000 1976-10-24 2024-10-11 00:41:28 +2489 2489 2490 248.9 497.8 2489 1976-10-25 2024-10-11 00:41:29.000 1976-10-25 2024-10-11 00:41:29 +2491 2491 2492 249.1 498.20000000000005 2491 1976-10-27 2024-10-11 00:41:31.000 1976-10-27 2024-10-11 00:41:31 +2492 2492 2493 249.2 498.40000000000003 2492 1976-10-28 2024-10-11 00:41:32.000 1976-10-28 2024-10-11 00:41:32 +2493 2493 2494 249.3 498.6 2493 1976-10-29 2024-10-11 00:41:33.000 1976-10-29 2024-10-11 00:41:33 +2494 2494 2495 249.4 498.8 2494 1976-10-30 2024-10-11 00:41:34.000 1976-10-30 2024-10-11 00:41:34 +2496 2496 2497 249.6 499.20000000000005 2496 1976-11-01 2024-10-11 00:41:36.000 1976-11-01 2024-10-11 00:41:36 +2497 2497 2498 249.7 499.40000000000003 2497 1976-11-02 2024-10-11 00:41:37.000 1976-11-02 2024-10-11 00:41:37 +2498 2498 2499 249.8 499.6 2498 1976-11-03 2024-10-11 00:41:38.000 1976-11-03 2024-10-11 00:41:38 +2499 2499 2500 249.9 499.8 2499 1976-11-04 2024-10-11 00:41:39.000 1976-11-04 2024-10-11 00:41:39 +2501 2501 2502 250.1 500.20000000000005 2501 1976-11-06 2024-10-11 00:41:41.000 1976-11-06 2024-10-11 00:41:41 +2502 2502 2503 250.2 500.40000000000003 2502 1976-11-07 2024-10-11 00:41:42.000 1976-11-07 2024-10-11 00:41:42 +2503 2503 2504 250.3 500.6 2503 1976-11-08 2024-10-11 00:41:43.000 1976-11-08 2024-10-11 00:41:43 +2504 2504 2505 250.4 500.8 2504 1976-11-09 2024-10-11 00:41:44.000 1976-11-09 2024-10-11 00:41:44 +2506 2506 2507 250.6 501.20000000000005 2506 1976-11-11 2024-10-11 00:41:46.000 1976-11-11 2024-10-11 00:41:46 +2507 2507 2508 250.7 501.40000000000003 2507 1976-11-12 2024-10-11 00:41:47.000 1976-11-12 2024-10-11 00:41:47 +2508 2508 2509 250.8 501.6 2508 1976-11-13 2024-10-11 00:41:48.000 1976-11-13 2024-10-11 00:41:48 +2509 2509 2510 250.9 501.8 2509 1976-11-14 2024-10-11 00:41:49.000 1976-11-14 2024-10-11 00:41:49 +2511 2511 2512 251.1 502.20000000000005 2511 1976-11-16 2024-10-11 00:41:51.000 1976-11-16 2024-10-11 00:41:51 +2512 2512 2513 251.2 502.40000000000003 2512 1976-11-17 2024-10-11 00:41:52.000 1976-11-17 2024-10-11 00:41:52 +2513 2513 2514 251.3 502.6 2513 1976-11-18 2024-10-11 00:41:53.000 1976-11-18 2024-10-11 00:41:53 +2514 2514 2515 251.4 502.8 2514 1976-11-19 2024-10-11 00:41:54.000 1976-11-19 2024-10-11 00:41:54 +2516 2516 2517 251.6 503.20000000000005 2516 1976-11-21 2024-10-11 00:41:56.000 1976-11-21 2024-10-11 00:41:56 +2517 2517 2518 251.7 503.40000000000003 2517 1976-11-22 2024-10-11 00:41:57.000 1976-11-22 2024-10-11 00:41:57 +2518 2518 2519 251.8 503.6 2518 1976-11-23 2024-10-11 00:41:58.000 1976-11-23 2024-10-11 00:41:58 +2519 2519 2520 251.9 503.8 2519 1976-11-24 2024-10-11 00:41:59.000 1976-11-24 2024-10-11 00:41:59 +2521 2521 2522 252.1 504.20000000000005 2521 1976-11-26 2024-10-11 00:42:01.000 1976-11-26 2024-10-11 00:42:01 +2522 2522 2523 252.2 504.40000000000003 2522 1976-11-27 2024-10-11 00:42:02.000 1976-11-27 2024-10-11 00:42:02 +2523 2523 2524 252.3 504.6 2523 1976-11-28 2024-10-11 00:42:03.000 1976-11-28 2024-10-11 00:42:03 +2524 2524 2525 252.4 504.8 2524 1976-11-29 2024-10-11 00:42:04.000 1976-11-29 2024-10-11 00:42:04 +2526 2526 2527 252.6 505.20000000000005 2526 1976-12-01 2024-10-11 00:42:06.000 1976-12-01 2024-10-11 00:42:06 +2527 2527 2528 252.7 505.40000000000003 2527 1976-12-02 2024-10-11 00:42:07.000 1976-12-02 2024-10-11 00:42:07 +2528 2528 2529 252.8 505.6 2528 1976-12-03 2024-10-11 00:42:08.000 1976-12-03 2024-10-11 00:42:08 +2529 2529 2530 252.9 505.8 2529 1976-12-04 2024-10-11 00:42:09.000 1976-12-04 2024-10-11 00:42:09 +2531 2531 2532 253.1 506.20000000000005 2531 1976-12-06 2024-10-11 00:42:11.000 1976-12-06 2024-10-11 00:42:11 +2532 2532 2533 253.2 506.40000000000003 2532 1976-12-07 2024-10-11 00:42:12.000 1976-12-07 2024-10-11 00:42:12 +2533 2533 2534 253.3 506.6 2533 1976-12-08 2024-10-11 00:42:13.000 1976-12-08 2024-10-11 00:42:13 +2534 2534 2535 253.4 506.8 2534 1976-12-09 2024-10-11 00:42:14.000 1976-12-09 2024-10-11 00:42:14 +2536 2536 2537 253.6 507.20000000000005 2536 1976-12-11 2024-10-11 00:42:16.000 1976-12-11 2024-10-11 00:42:16 +2537 2537 2538 253.7 507.40000000000003 2537 1976-12-12 2024-10-11 00:42:17.000 1976-12-12 2024-10-11 00:42:17 +2538 2538 2539 253.8 507.6 2538 1976-12-13 2024-10-11 00:42:18.000 1976-12-13 2024-10-11 00:42:18 +2539 2539 2540 253.9 507.8 2539 1976-12-14 2024-10-11 00:42:19.000 1976-12-14 2024-10-11 00:42:19 +2541 2541 2542 254.1 508.20000000000005 2541 1976-12-16 2024-10-11 00:42:21.000 1976-12-16 2024-10-11 00:42:21 +2542 2542 2543 254.2 508.40000000000003 2542 1976-12-17 2024-10-11 00:42:22.000 1976-12-17 2024-10-11 00:42:22 +2543 2543 2544 254.3 508.6 2543 1976-12-18 2024-10-11 00:42:23.000 1976-12-18 2024-10-11 00:42:23 +2544 2544 2545 254.4 508.8 2544 1976-12-19 2024-10-11 00:42:24.000 1976-12-19 2024-10-11 00:42:24 +2546 2546 2547 254.6 509.20000000000005 2546 1976-12-21 2024-10-11 00:42:26.000 1976-12-21 2024-10-11 00:42:26 +2547 2547 2548 254.7 509.40000000000003 2547 1976-12-22 2024-10-11 00:42:27.000 1976-12-22 2024-10-11 00:42:27 +2548 2548 2549 254.8 509.6 2548 1976-12-23 2024-10-11 00:42:28.000 1976-12-23 2024-10-11 00:42:28 +2549 2549 2550 254.9 509.8 2549 1976-12-24 2024-10-11 00:42:29.000 1976-12-24 2024-10-11 00:42:29 +2551 2551 2552 255.1 510.20000000000005 2551 1976-12-26 2024-10-11 00:42:31.000 1976-12-26 2024-10-11 00:42:31 +2552 2552 2553 255.2 510.40000000000003 2552 1976-12-27 2024-10-11 00:42:32.000 1976-12-27 2024-10-11 00:42:32 +2553 2553 2554 255.3 510.6 2553 1976-12-28 2024-10-11 00:42:33.000 1976-12-28 2024-10-11 00:42:33 +2554 2554 2555 255.4 510.8 2554 1976-12-29 2024-10-11 00:42:34.000 1976-12-29 2024-10-11 00:42:34 +2556 2556 2557 255.6 511.20000000000005 2556 1976-12-31 2024-10-11 00:42:36.000 1976-12-31 2024-10-11 00:42:36 +2557 2557 2558 255.7 511.40000000000003 2557 1977-01-01 2024-10-11 00:42:37.000 1977-01-01 2024-10-11 00:42:37 +2558 2558 2559 255.8 511.6 2558 1977-01-02 2024-10-11 00:42:38.000 1977-01-02 2024-10-11 00:42:38 +2559 2559 2560 255.9 511.8 2559 1977-01-03 2024-10-11 00:42:39.000 1977-01-03 2024-10-11 00:42:39 +2561 2561 2562 256.1 512.2 2561 1977-01-05 2024-10-11 00:42:41.000 1977-01-05 2024-10-11 00:42:41 +2562 2562 2563 256.2 512.4 2562 1977-01-06 2024-10-11 00:42:42.000 1977-01-06 2024-10-11 00:42:42 +2563 2563 2564 256.3 512.6 2563 1977-01-07 2024-10-11 00:42:43.000 1977-01-07 2024-10-11 00:42:43 +2564 2564 2565 256.4 512.8000000000001 2564 1977-01-08 2024-10-11 00:42:44.000 1977-01-08 2024-10-11 00:42:44 +2566 2566 2567 256.6 513.2 2566 1977-01-10 2024-10-11 00:42:46.000 1977-01-10 2024-10-11 00:42:46 +2567 2567 2568 256.7 513.4 2567 1977-01-11 2024-10-11 00:42:47.000 1977-01-11 2024-10-11 00:42:47 +2568 2568 2569 256.8 513.6 2568 1977-01-12 2024-10-11 00:42:48.000 1977-01-12 2024-10-11 00:42:48 +2569 2569 2570 256.9 513.8000000000001 2569 1977-01-13 2024-10-11 00:42:49.000 1977-01-13 2024-10-11 00:42:49 +2571 2571 2572 257.1 514.2 2571 1977-01-15 2024-10-11 00:42:51.000 1977-01-15 2024-10-11 00:42:51 +2572 2572 2573 257.2 514.4 2572 1977-01-16 2024-10-11 00:42:52.000 1977-01-16 2024-10-11 00:42:52 +2573 2573 2574 257.3 514.6 2573 1977-01-17 2024-10-11 00:42:53.000 1977-01-17 2024-10-11 00:42:53 +2574 2574 2575 257.4 514.8000000000001 2574 1977-01-18 2024-10-11 00:42:54.000 1977-01-18 2024-10-11 00:42:54 +2576 2576 2577 257.6 515.2 2576 1977-01-20 2024-10-11 00:42:56.000 1977-01-20 2024-10-11 00:42:56 +2577 2577 2578 257.7 515.4 2577 1977-01-21 2024-10-11 00:42:57.000 1977-01-21 2024-10-11 00:42:57 +2578 2578 2579 257.8 515.6 2578 1977-01-22 2024-10-11 00:42:58.000 1977-01-22 2024-10-11 00:42:58 +2579 2579 2580 257.9 515.8000000000001 2579 1977-01-23 2024-10-11 00:42:59.000 1977-01-23 2024-10-11 00:42:59 +2581 2581 2582 258.1 516.2 2581 1977-01-25 2024-10-11 00:43:01.000 1977-01-25 2024-10-11 00:43:01 +2582 2582 2583 258.2 516.4 2582 1977-01-26 2024-10-11 00:43:02.000 1977-01-26 2024-10-11 00:43:02 +2583 2583 2584 258.3 516.6 2583 1977-01-27 2024-10-11 00:43:03.000 1977-01-27 2024-10-11 00:43:03 +2584 2584 2585 258.4 516.8000000000001 2584 1977-01-28 2024-10-11 00:43:04.000 1977-01-28 2024-10-11 00:43:04 +2586 2586 2587 258.6 517.2 2586 1977-01-30 2024-10-11 00:43:06.000 1977-01-30 2024-10-11 00:43:06 +2587 2587 2588 258.7 517.4 2587 1977-01-31 2024-10-11 00:43:07.000 1977-01-31 2024-10-11 00:43:07 +2588 2588 2589 258.8 517.6 2588 1977-02-01 2024-10-11 00:43:08.000 1977-02-01 2024-10-11 00:43:08 +2589 2589 2590 258.9 517.8000000000001 2589 1977-02-02 2024-10-11 00:43:09.000 1977-02-02 2024-10-11 00:43:09 +2591 2591 2592 259.1 518.2 2591 1977-02-04 2024-10-11 00:43:11.000 1977-02-04 2024-10-11 00:43:11 +2592 2592 2593 259.2 518.4 2592 1977-02-05 2024-10-11 00:43:12.000 1977-02-05 2024-10-11 00:43:12 +2593 2593 2594 259.3 518.6 2593 1977-02-06 2024-10-11 00:43:13.000 1977-02-06 2024-10-11 00:43:13 +2594 2594 2595 259.4 518.8000000000001 2594 1977-02-07 2024-10-11 00:43:14.000 1977-02-07 2024-10-11 00:43:14 +2596 2596 2597 259.6 519.2 2596 1977-02-09 2024-10-11 00:43:16.000 1977-02-09 2024-10-11 00:43:16 +2597 2597 2598 259.7 519.4 2597 1977-02-10 2024-10-11 00:43:17.000 1977-02-10 2024-10-11 00:43:17 +2598 2598 2599 259.8 519.6 2598 1977-02-11 2024-10-11 00:43:18.000 1977-02-11 2024-10-11 00:43:18 +2599 2599 2600 259.9 519.8000000000001 2599 1977-02-12 2024-10-11 00:43:19.000 1977-02-12 2024-10-11 00:43:19 +2601 2601 2602 260.1 520.2 2601 1977-02-14 2024-10-11 00:43:21.000 1977-02-14 2024-10-11 00:43:21 +2602 2602 2603 260.2 520.4 2602 1977-02-15 2024-10-11 00:43:22.000 1977-02-15 2024-10-11 00:43:22 +2603 2603 2604 260.3 520.6 2603 1977-02-16 2024-10-11 00:43:23.000 1977-02-16 2024-10-11 00:43:23 +2604 2604 2605 260.4 520.8000000000001 2604 1977-02-17 2024-10-11 00:43:24.000 1977-02-17 2024-10-11 00:43:24 +2606 2606 2607 260.6 521.2 2606 1977-02-19 2024-10-11 00:43:26.000 1977-02-19 2024-10-11 00:43:26 +2607 2607 2608 260.7 521.4 2607 1977-02-20 2024-10-11 00:43:27.000 1977-02-20 2024-10-11 00:43:27 +2608 2608 2609 260.8 521.6 2608 1977-02-21 2024-10-11 00:43:28.000 1977-02-21 2024-10-11 00:43:28 +2609 2609 2610 260.9 521.8000000000001 2609 1977-02-22 2024-10-11 00:43:29.000 1977-02-22 2024-10-11 00:43:29 +2611 2611 2612 261.1 522.2 2611 1977-02-24 2024-10-11 00:43:31.000 1977-02-24 2024-10-11 00:43:31 +2612 2612 2613 261.2 522.4 2612 1977-02-25 2024-10-11 00:43:32.000 1977-02-25 2024-10-11 00:43:32 +2613 2613 2614 261.3 522.6 2613 1977-02-26 2024-10-11 00:43:33.000 1977-02-26 2024-10-11 00:43:33 +2614 2614 2615 261.4 522.8000000000001 2614 1977-02-27 2024-10-11 00:43:34.000 1977-02-27 2024-10-11 00:43:34 +2616 2616 2617 261.6 523.2 2616 1977-03-01 2024-10-11 00:43:36.000 1977-03-01 2024-10-11 00:43:36 +2617 2617 2618 261.7 523.4 2617 1977-03-02 2024-10-11 00:43:37.000 1977-03-02 2024-10-11 00:43:37 +2618 2618 2619 261.8 523.6 2618 1977-03-03 2024-10-11 00:43:38.000 1977-03-03 2024-10-11 00:43:38 +2619 2619 2620 261.9 523.8000000000001 2619 1977-03-04 2024-10-11 00:43:39.000 1977-03-04 2024-10-11 00:43:39 +2621 2621 2622 262.1 524.2 2621 1977-03-06 2024-10-11 00:43:41.000 1977-03-06 2024-10-11 00:43:41 +2622 2622 2623 262.2 524.4 2622 1977-03-07 2024-10-11 00:43:42.000 1977-03-07 2024-10-11 00:43:42 +2623 2623 2624 262.3 524.6 2623 1977-03-08 2024-10-11 00:43:43.000 1977-03-08 2024-10-11 00:43:43 +2624 2624 2625 262.4 524.8000000000001 2624 1977-03-09 2024-10-11 00:43:44.000 1977-03-09 2024-10-11 00:43:44 +2626 2626 2627 262.6 525.2 2626 1977-03-11 2024-10-11 00:43:46.000 1977-03-11 2024-10-11 00:43:46 +2627 2627 2628 262.7 525.4 2627 1977-03-12 2024-10-11 00:43:47.000 1977-03-12 2024-10-11 00:43:47 +2628 2628 2629 262.8 525.6 2628 1977-03-13 2024-10-11 00:43:48.000 1977-03-13 2024-10-11 00:43:48 +2629 2629 2630 262.9 525.8000000000001 2629 1977-03-14 2024-10-11 00:43:49.000 1977-03-14 2024-10-11 00:43:49 +2631 2631 2632 263.1 526.2 2631 1977-03-16 2024-10-11 00:43:51.000 1977-03-16 2024-10-11 00:43:51 +2632 2632 2633 263.2 526.4 2632 1977-03-17 2024-10-11 00:43:52.000 1977-03-17 2024-10-11 00:43:52 +2633 2633 2634 263.3 526.6 2633 1977-03-18 2024-10-11 00:43:53.000 1977-03-18 2024-10-11 00:43:53 +2634 2634 2635 263.4 526.8000000000001 2634 1977-03-19 2024-10-11 00:43:54.000 1977-03-19 2024-10-11 00:43:54 +2636 2636 2637 263.6 527.2 2636 1977-03-21 2024-10-11 00:43:56.000 1977-03-21 2024-10-11 00:43:56 +2637 2637 2638 263.7 527.4 2637 1977-03-22 2024-10-11 00:43:57.000 1977-03-22 2024-10-11 00:43:57 +2638 2638 2639 263.8 527.6 2638 1977-03-23 2024-10-11 00:43:58.000 1977-03-23 2024-10-11 00:43:58 +2639 2639 2640 263.9 527.8000000000001 2639 1977-03-24 2024-10-11 00:43:59.000 1977-03-24 2024-10-11 00:43:59 +2641 2641 2642 264.1 528.2 2641 1977-03-26 2024-10-11 00:44:01.000 1977-03-26 2024-10-11 00:44:01 +2642 2642 2643 264.2 528.4 2642 1977-03-27 2024-10-11 00:44:02.000 1977-03-27 2024-10-11 00:44:02 +2643 2643 2644 264.3 528.6 2643 1977-03-28 2024-10-11 00:44:03.000 1977-03-28 2024-10-11 00:44:03 +2644 2644 2645 264.4 528.8000000000001 2644 1977-03-29 2024-10-11 00:44:04.000 1977-03-29 2024-10-11 00:44:04 +2646 2646 2647 264.6 529.2 2646 1977-03-31 2024-10-11 00:44:06.000 1977-03-31 2024-10-11 00:44:06 +2647 2647 2648 264.7 529.4 2647 1977-04-01 2024-10-11 00:44:07.000 1977-04-01 2024-10-11 00:44:07 +2648 2648 2649 264.8 529.6 2648 1977-04-02 2024-10-11 00:44:08.000 1977-04-02 2024-10-11 00:44:08 +2649 2649 2650 264.9 529.8000000000001 2649 1977-04-03 2024-10-11 00:44:09.000 1977-04-03 2024-10-11 00:44:09 +2651 2651 2652 265.1 530.2 2651 1977-04-05 2024-10-11 00:44:11.000 1977-04-05 2024-10-11 00:44:11 +2652 2652 2653 265.2 530.4 2652 1977-04-06 2024-10-11 00:44:12.000 1977-04-06 2024-10-11 00:44:12 +2653 2653 2654 265.3 530.6 2653 1977-04-07 2024-10-11 00:44:13.000 1977-04-07 2024-10-11 00:44:13 +2654 2654 2655 265.4 530.8000000000001 2654 1977-04-08 2024-10-11 00:44:14.000 1977-04-08 2024-10-11 00:44:14 +2656 2656 2657 265.6 531.2 2656 1977-04-10 2024-10-11 00:44:16.000 1977-04-10 2024-10-11 00:44:16 +2657 2657 2658 265.7 531.4 2657 1977-04-11 2024-10-11 00:44:17.000 1977-04-11 2024-10-11 00:44:17 +2658 2658 2659 265.8 531.6 2658 1977-04-12 2024-10-11 00:44:18.000 1977-04-12 2024-10-11 00:44:18 +2659 2659 2660 265.9 531.8000000000001 2659 1977-04-13 2024-10-11 00:44:19.000 1977-04-13 2024-10-11 00:44:19 +2661 2661 2662 266.1 532.2 2661 1977-04-15 2024-10-11 00:44:21.000 1977-04-15 2024-10-11 00:44:21 +2662 2662 2663 266.2 532.4 2662 1977-04-16 2024-10-11 00:44:22.000 1977-04-16 2024-10-11 00:44:22 +2663 2663 2664 266.3 532.6 2663 1977-04-17 2024-10-11 00:44:23.000 1977-04-17 2024-10-11 00:44:23 +2664 2664 2665 266.4 532.8000000000001 2664 1977-04-18 2024-10-11 00:44:24.000 1977-04-18 2024-10-11 00:44:24 +2666 2666 2667 266.6 533.2 2666 1977-04-20 2024-10-11 00:44:26.000 1977-04-20 2024-10-11 00:44:26 +2667 2667 2668 266.7 533.4 2667 1977-04-21 2024-10-11 00:44:27.000 1977-04-21 2024-10-11 00:44:27 +2668 2668 2669 266.8 533.6 2668 1977-04-22 2024-10-11 00:44:28.000 1977-04-22 2024-10-11 00:44:28 +2669 2669 2670 266.9 533.8000000000001 2669 1977-04-23 2024-10-11 00:44:29.000 1977-04-23 2024-10-11 00:44:29 +2671 2671 2672 267.1 534.2 2671 1977-04-25 2024-10-11 00:44:31.000 1977-04-25 2024-10-11 00:44:31 +2672 2672 2673 267.2 534.4 2672 1977-04-26 2024-10-11 00:44:32.000 1977-04-26 2024-10-11 00:44:32 +2673 2673 2674 267.3 534.6 2673 1977-04-27 2024-10-11 00:44:33.000 1977-04-27 2024-10-11 00:44:33 +2674 2674 2675 267.4 534.8000000000001 2674 1977-04-28 2024-10-11 00:44:34.000 1977-04-28 2024-10-11 00:44:34 +2676 2676 2677 267.6 535.2 2676 1977-04-30 2024-10-11 00:44:36.000 1977-04-30 2024-10-11 00:44:36 +2677 2677 2678 267.7 535.4 2677 1977-05-01 2024-10-11 00:44:37.000 1977-05-01 2024-10-11 00:44:37 +2678 2678 2679 267.8 535.6 2678 1977-05-02 2024-10-11 00:44:38.000 1977-05-02 2024-10-11 00:44:38 +2679 2679 2680 267.9 535.8000000000001 2679 1977-05-03 2024-10-11 00:44:39.000 1977-05-03 2024-10-11 00:44:39 +2681 2681 2682 268.1 536.2 2681 1977-05-05 2024-10-11 00:44:41.000 1977-05-05 2024-10-11 00:44:41 +2682 2682 2683 268.2 536.4 2682 1977-05-06 2024-10-11 00:44:42.000 1977-05-06 2024-10-11 00:44:42 +2683 2683 2684 268.3 536.6 2683 1977-05-07 2024-10-11 00:44:43.000 1977-05-07 2024-10-11 00:44:43 +2684 2684 2685 268.4 536.8000000000001 2684 1977-05-08 2024-10-11 00:44:44.000 1977-05-08 2024-10-11 00:44:44 +2686 2686 2687 268.6 537.2 2686 1977-05-10 2024-10-11 00:44:46.000 1977-05-10 2024-10-11 00:44:46 +2687 2687 2688 268.7 537.4 2687 1977-05-11 2024-10-11 00:44:47.000 1977-05-11 2024-10-11 00:44:47 +2688 2688 2689 268.8 537.6 2688 1977-05-12 2024-10-11 00:44:48.000 1977-05-12 2024-10-11 00:44:48 +2689 2689 2690 268.9 537.8000000000001 2689 1977-05-13 2024-10-11 00:44:49.000 1977-05-13 2024-10-11 00:44:49 +2691 2691 2692 269.1 538.2 2691 1977-05-15 2024-10-11 00:44:51.000 1977-05-15 2024-10-11 00:44:51 +2692 2692 2693 269.2 538.4 2692 1977-05-16 2024-10-11 00:44:52.000 1977-05-16 2024-10-11 00:44:52 +2693 2693 2694 269.3 538.6 2693 1977-05-17 2024-10-11 00:44:53.000 1977-05-17 2024-10-11 00:44:53 +2694 2694 2695 269.4 538.8000000000001 2694 1977-05-18 2024-10-11 00:44:54.000 1977-05-18 2024-10-11 00:44:54 +2696 2696 2697 269.6 539.2 2696 1977-05-20 2024-10-11 00:44:56.000 1977-05-20 2024-10-11 00:44:56 +2697 2697 2698 269.7 539.4 2697 1977-05-21 2024-10-11 00:44:57.000 1977-05-21 2024-10-11 00:44:57 +2698 2698 2699 269.8 539.6 2698 1977-05-22 2024-10-11 00:44:58.000 1977-05-22 2024-10-11 00:44:58 +2699 2699 2700 269.9 539.8000000000001 2699 1977-05-23 2024-10-11 00:44:59.000 1977-05-23 2024-10-11 00:44:59 +2701 2701 2702 270.1 540.2 2701 1977-05-25 2024-10-11 00:45:01.000 1977-05-25 2024-10-11 00:45:01 +2702 2702 2703 270.2 540.4 2702 1977-05-26 2024-10-11 00:45:02.000 1977-05-26 2024-10-11 00:45:02 +2703 2703 2704 270.3 540.6 2703 1977-05-27 2024-10-11 00:45:03.000 1977-05-27 2024-10-11 00:45:03 +2704 2704 2705 270.4 540.8000000000001 2704 1977-05-28 2024-10-11 00:45:04.000 1977-05-28 2024-10-11 00:45:04 +2706 2706 2707 270.6 541.2 2706 1977-05-30 2024-10-11 00:45:06.000 1977-05-30 2024-10-11 00:45:06 +2707 2707 2708 270.7 541.4 2707 1977-05-31 2024-10-11 00:45:07.000 1977-05-31 2024-10-11 00:45:07 +2708 2708 2709 270.8 541.6 2708 1977-06-01 2024-10-11 00:45:08.000 1977-06-01 2024-10-11 00:45:08 +2709 2709 2710 270.9 541.8000000000001 2709 1977-06-02 2024-10-11 00:45:09.000 1977-06-02 2024-10-11 00:45:09 +2711 2711 2712 271.1 542.2 2711 1977-06-04 2024-10-11 00:45:11.000 1977-06-04 2024-10-11 00:45:11 +2712 2712 2713 271.2 542.4 2712 1977-06-05 2024-10-11 00:45:12.000 1977-06-05 2024-10-11 00:45:12 +2713 2713 2714 271.3 542.6 2713 1977-06-06 2024-10-11 00:45:13.000 1977-06-06 2024-10-11 00:45:13 +2714 2714 2715 271.4 542.8000000000001 2714 1977-06-07 2024-10-11 00:45:14.000 1977-06-07 2024-10-11 00:45:14 +2716 2716 2717 271.6 543.2 2716 1977-06-09 2024-10-11 00:45:16.000 1977-06-09 2024-10-11 00:45:16 +2717 2717 2718 271.7 543.4 2717 1977-06-10 2024-10-11 00:45:17.000 1977-06-10 2024-10-11 00:45:17 +2718 2718 2719 271.8 543.6 2718 1977-06-11 2024-10-11 00:45:18.000 1977-06-11 2024-10-11 00:45:18 +2719 2719 2720 271.9 543.8000000000001 2719 1977-06-12 2024-10-11 00:45:19.000 1977-06-12 2024-10-11 00:45:19 +2721 2721 2722 272.1 544.2 2721 1977-06-14 2024-10-11 00:45:21.000 1977-06-14 2024-10-11 00:45:21 +2722 2722 2723 272.2 544.4 2722 1977-06-15 2024-10-11 00:45:22.000 1977-06-15 2024-10-11 00:45:22 +2723 2723 2724 272.3 544.6 2723 1977-06-16 2024-10-11 00:45:23.000 1977-06-16 2024-10-11 00:45:23 +2724 2724 2725 272.4 544.8000000000001 2724 1977-06-17 2024-10-11 00:45:24.000 1977-06-17 2024-10-11 00:45:24 +2726 2726 2727 272.6 545.2 2726 1977-06-19 2024-10-11 00:45:26.000 1977-06-19 2024-10-11 00:45:26 +2727 2727 2728 272.7 545.4 2727 1977-06-20 2024-10-11 00:45:27.000 1977-06-20 2024-10-11 00:45:27 +2728 2728 2729 272.8 545.6 2728 1977-06-21 2024-10-11 00:45:28.000 1977-06-21 2024-10-11 00:45:28 +2729 2729 2730 272.9 545.8000000000001 2729 1977-06-22 2024-10-11 00:45:29.000 1977-06-22 2024-10-11 00:45:29 +2731 2731 2732 273.1 546.2 2731 1977-06-24 2024-10-11 00:45:31.000 1977-06-24 2024-10-11 00:45:31 +2732 2732 2733 273.2 546.4 2732 1977-06-25 2024-10-11 00:45:32.000 1977-06-25 2024-10-11 00:45:32 +2733 2733 2734 273.3 546.6 2733 1977-06-26 2024-10-11 00:45:33.000 1977-06-26 2024-10-11 00:45:33 +2734 2734 2735 273.4 546.8000000000001 2734 1977-06-27 2024-10-11 00:45:34.000 1977-06-27 2024-10-11 00:45:34 +2736 2736 2737 273.6 547.2 2736 1977-06-29 2024-10-11 00:45:36.000 1977-06-29 2024-10-11 00:45:36 +2737 2737 2738 273.7 547.4 2737 1977-06-30 2024-10-11 00:45:37.000 1977-06-30 2024-10-11 00:45:37 +2738 2738 2739 273.8 547.6 2738 1977-07-01 2024-10-11 00:45:38.000 1977-07-01 2024-10-11 00:45:38 +2739 2739 2740 273.9 547.8000000000001 2739 1977-07-02 2024-10-11 00:45:39.000 1977-07-02 2024-10-11 00:45:39 +2741 2741 2742 274.1 548.2 2741 1977-07-04 2024-10-11 00:45:41.000 1977-07-04 2024-10-11 00:45:41 +2742 2742 2743 274.2 548.4 2742 1977-07-05 2024-10-11 00:45:42.000 1977-07-05 2024-10-11 00:45:42 +2743 2743 2744 274.3 548.6 2743 1977-07-06 2024-10-11 00:45:43.000 1977-07-06 2024-10-11 00:45:43 +2744 2744 2745 274.4 548.8000000000001 2744 1977-07-07 2024-10-11 00:45:44.000 1977-07-07 2024-10-11 00:45:44 +2746 2746 2747 274.6 549.2 2746 1977-07-09 2024-10-11 00:45:46.000 1977-07-09 2024-10-11 00:45:46 +2747 2747 2748 274.7 549.4 2747 1977-07-10 2024-10-11 00:45:47.000 1977-07-10 2024-10-11 00:45:47 +2748 2748 2749 274.8 549.6 2748 1977-07-11 2024-10-11 00:45:48.000 1977-07-11 2024-10-11 00:45:48 +2749 2749 2750 274.9 549.8000000000001 2749 1977-07-12 2024-10-11 00:45:49.000 1977-07-12 2024-10-11 00:45:49 +2751 2751 2752 275.1 550.2 2751 1977-07-14 2024-10-11 00:45:51.000 1977-07-14 2024-10-11 00:45:51 +2752 2752 2753 275.2 550.4 2752 1977-07-15 2024-10-11 00:45:52.000 1977-07-15 2024-10-11 00:45:52 +2753 2753 2754 275.3 550.6 2753 1977-07-16 2024-10-11 00:45:53.000 1977-07-16 2024-10-11 00:45:53 +2754 2754 2755 275.4 550.8000000000001 2754 1977-07-17 2024-10-11 00:45:54.000 1977-07-17 2024-10-11 00:45:54 +2756 2756 2757 275.6 551.2 2756 1977-07-19 2024-10-11 00:45:56.000 1977-07-19 2024-10-11 00:45:56 +2757 2757 2758 275.7 551.4 2757 1977-07-20 2024-10-11 00:45:57.000 1977-07-20 2024-10-11 00:45:57 +2758 2758 2759 275.8 551.6 2758 1977-07-21 2024-10-11 00:45:58.000 1977-07-21 2024-10-11 00:45:58 +2759 2759 2760 275.9 551.8000000000001 2759 1977-07-22 2024-10-11 00:45:59.000 1977-07-22 2024-10-11 00:45:59 +2761 2761 2762 276.1 552.2 2761 1977-07-24 2024-10-11 00:46:01.000 1977-07-24 2024-10-11 00:46:01 +2762 2762 2763 276.2 552.4 2762 1977-07-25 2024-10-11 00:46:02.000 1977-07-25 2024-10-11 00:46:02 +2763 2763 2764 276.3 552.6 2763 1977-07-26 2024-10-11 00:46:03.000 1977-07-26 2024-10-11 00:46:03 +2764 2764 2765 276.4 552.8000000000001 2764 1977-07-27 2024-10-11 00:46:04.000 1977-07-27 2024-10-11 00:46:04 +2766 2766 2767 276.6 553.2 2766 1977-07-29 2024-10-11 00:46:06.000 1977-07-29 2024-10-11 00:46:06 +2767 2767 2768 276.7 553.4 2767 1977-07-30 2024-10-11 00:46:07.000 1977-07-30 2024-10-11 00:46:07 +2768 2768 2769 276.8 553.6 2768 1977-07-31 2024-10-11 00:46:08.000 1977-07-31 2024-10-11 00:46:08 +2769 2769 2770 276.9 553.8000000000001 2769 1977-08-01 2024-10-11 00:46:09.000 1977-08-01 2024-10-11 00:46:09 +2771 2771 2772 277.1 554.2 2771 1977-08-03 2024-10-11 00:46:11.000 1977-08-03 2024-10-11 00:46:11 +2772 2772 2773 277.2 554.4 2772 1977-08-04 2024-10-11 00:46:12.000 1977-08-04 2024-10-11 00:46:12 +2773 2773 2774 277.3 554.6 2773 1977-08-05 2024-10-11 00:46:13.000 1977-08-05 2024-10-11 00:46:13 +2774 2774 2775 277.4 554.8000000000001 2774 1977-08-06 2024-10-11 00:46:14.000 1977-08-06 2024-10-11 00:46:14 +2776 2776 2777 277.6 555.2 2776 1977-08-08 2024-10-11 00:46:16.000 1977-08-08 2024-10-11 00:46:16 +2777 2777 2778 277.7 555.4 2777 1977-08-09 2024-10-11 00:46:17.000 1977-08-09 2024-10-11 00:46:17 +2778 2778 2779 277.8 555.6 2778 1977-08-10 2024-10-11 00:46:18.000 1977-08-10 2024-10-11 00:46:18 +2779 2779 2780 277.9 555.8000000000001 2779 1977-08-11 2024-10-11 00:46:19.000 1977-08-11 2024-10-11 00:46:19 +2781 2781 2782 278.1 556.2 2781 1977-08-13 2024-10-11 00:46:21.000 1977-08-13 2024-10-11 00:46:21 +2782 2782 2783 278.2 556.4 2782 1977-08-14 2024-10-11 00:46:22.000 1977-08-14 2024-10-11 00:46:22 +2783 2783 2784 278.3 556.6 2783 1977-08-15 2024-10-11 00:46:23.000 1977-08-15 2024-10-11 00:46:23 +2784 2784 2785 278.4 556.8000000000001 2784 1977-08-16 2024-10-11 00:46:24.000 1977-08-16 2024-10-11 00:46:24 +2786 2786 2787 278.6 557.2 2786 1977-08-18 2024-10-11 00:46:26.000 1977-08-18 2024-10-11 00:46:26 +2787 2787 2788 278.7 557.4 2787 1977-08-19 2024-10-11 00:46:27.000 1977-08-19 2024-10-11 00:46:27 +2788 2788 2789 278.8 557.6 2788 1977-08-20 2024-10-11 00:46:28.000 1977-08-20 2024-10-11 00:46:28 +2789 2789 2790 278.9 557.8000000000001 2789 1977-08-21 2024-10-11 00:46:29.000 1977-08-21 2024-10-11 00:46:29 +2791 2791 2792 279.1 558.2 2791 1977-08-23 2024-10-11 00:46:31.000 1977-08-23 2024-10-11 00:46:31 +2792 2792 2793 279.2 558.4 2792 1977-08-24 2024-10-11 00:46:32.000 1977-08-24 2024-10-11 00:46:32 +2793 2793 2794 279.3 558.6 2793 1977-08-25 2024-10-11 00:46:33.000 1977-08-25 2024-10-11 00:46:33 +2794 2794 2795 279.4 558.8000000000001 2794 1977-08-26 2024-10-11 00:46:34.000 1977-08-26 2024-10-11 00:46:34 +2796 2796 2797 279.6 559.2 2796 1977-08-28 2024-10-11 00:46:36.000 1977-08-28 2024-10-11 00:46:36 +2797 2797 2798 279.7 559.4 2797 1977-08-29 2024-10-11 00:46:37.000 1977-08-29 2024-10-11 00:46:37 +2798 2798 2799 279.8 559.6 2798 1977-08-30 2024-10-11 00:46:38.000 1977-08-30 2024-10-11 00:46:38 +2799 2799 2800 279.9 559.8000000000001 2799 1977-08-31 2024-10-11 00:46:39.000 1977-08-31 2024-10-11 00:46:39 +2801 2801 2802 280.1 560.2 2801 1977-09-02 2024-10-11 00:46:41.000 1977-09-02 2024-10-11 00:46:41 +2802 2802 2803 280.2 560.4 2802 1977-09-03 2024-10-11 00:46:42.000 1977-09-03 2024-10-11 00:46:42 +2803 2803 2804 280.3 560.6 2803 1977-09-04 2024-10-11 00:46:43.000 1977-09-04 2024-10-11 00:46:43 +2804 2804 2805 280.4 560.8000000000001 2804 1977-09-05 2024-10-11 00:46:44.000 1977-09-05 2024-10-11 00:46:44 +2806 2806 2807 280.6 561.2 2806 1977-09-07 2024-10-11 00:46:46.000 1977-09-07 2024-10-11 00:46:46 +2807 2807 2808 280.7 561.4 2807 1977-09-08 2024-10-11 00:46:47.000 1977-09-08 2024-10-11 00:46:47 +2808 2808 2809 280.8 561.6 2808 1977-09-09 2024-10-11 00:46:48.000 1977-09-09 2024-10-11 00:46:48 +2809 2809 2810 280.9 561.8000000000001 2809 1977-09-10 2024-10-11 00:46:49.000 1977-09-10 2024-10-11 00:46:49 +2811 2811 2812 281.1 562.2 2811 1977-09-12 2024-10-11 00:46:51.000 1977-09-12 2024-10-11 00:46:51 +2812 2812 2813 281.2 562.4 2812 1977-09-13 2024-10-11 00:46:52.000 1977-09-13 2024-10-11 00:46:52 +2813 2813 2814 281.3 562.6 2813 1977-09-14 2024-10-11 00:46:53.000 1977-09-14 2024-10-11 00:46:53 +2814 2814 2815 281.4 562.8000000000001 2814 1977-09-15 2024-10-11 00:46:54.000 1977-09-15 2024-10-11 00:46:54 +2816 2816 2817 281.6 563.2 2816 1977-09-17 2024-10-11 00:46:56.000 1977-09-17 2024-10-11 00:46:56 +2817 2817 2818 281.7 563.4 2817 1977-09-18 2024-10-11 00:46:57.000 1977-09-18 2024-10-11 00:46:57 +2818 2818 2819 281.8 563.6 2818 1977-09-19 2024-10-11 00:46:58.000 1977-09-19 2024-10-11 00:46:58 +2819 2819 2820 281.9 563.8000000000001 2819 1977-09-20 2024-10-11 00:46:59.000 1977-09-20 2024-10-11 00:46:59 +2821 2821 2822 282.1 564.2 2821 1977-09-22 2024-10-11 00:47:01.000 1977-09-22 2024-10-11 00:47:01 +2822 2822 2823 282.2 564.4 2822 1977-09-23 2024-10-11 00:47:02.000 1977-09-23 2024-10-11 00:47:02 +2823 2823 2824 282.3 564.6 2823 1977-09-24 2024-10-11 00:47:03.000 1977-09-24 2024-10-11 00:47:03 +2824 2824 2825 282.4 564.8000000000001 2824 1977-09-25 2024-10-11 00:47:04.000 1977-09-25 2024-10-11 00:47:04 +2826 2826 2827 282.6 565.2 2826 1977-09-27 2024-10-11 00:47:06.000 1977-09-27 2024-10-11 00:47:06 +2827 2827 2828 282.7 565.4 2827 1977-09-28 2024-10-11 00:47:07.000 1977-09-28 2024-10-11 00:47:07 +2828 2828 2829 282.8 565.6 2828 1977-09-29 2024-10-11 00:47:08.000 1977-09-29 2024-10-11 00:47:08 +2829 2829 2830 282.9 565.8000000000001 2829 1977-09-30 2024-10-11 00:47:09.000 1977-09-30 2024-10-11 00:47:09 +2831 2831 2832 283.1 566.2 2831 1977-10-02 2024-10-11 00:47:11.000 1977-10-02 2024-10-11 00:47:11 +2832 2832 2833 283.2 566.4 2832 1977-10-03 2024-10-11 00:47:12.000 1977-10-03 2024-10-11 00:47:12 +2833 2833 2834 283.3 566.6 2833 1977-10-04 2024-10-11 00:47:13.000 1977-10-04 2024-10-11 00:47:13 +2834 2834 2835 283.4 566.8000000000001 2834 1977-10-05 2024-10-11 00:47:14.000 1977-10-05 2024-10-11 00:47:14 +2836 2836 2837 283.6 567.2 2836 1977-10-07 2024-10-11 00:47:16.000 1977-10-07 2024-10-11 00:47:16 +2837 2837 2838 283.7 567.4 2837 1977-10-08 2024-10-11 00:47:17.000 1977-10-08 2024-10-11 00:47:17 +2838 2838 2839 283.8 567.6 2838 1977-10-09 2024-10-11 00:47:18.000 1977-10-09 2024-10-11 00:47:18 +2839 2839 2840 283.9 567.8000000000001 2839 1977-10-10 2024-10-11 00:47:19.000 1977-10-10 2024-10-11 00:47:19 +2841 2841 2842 284.1 568.2 2841 1977-10-12 2024-10-11 00:47:21.000 1977-10-12 2024-10-11 00:47:21 +2842 2842 2843 284.2 568.4 2842 1977-10-13 2024-10-11 00:47:22.000 1977-10-13 2024-10-11 00:47:22 +2843 2843 2844 284.3 568.6 2843 1977-10-14 2024-10-11 00:47:23.000 1977-10-14 2024-10-11 00:47:23 +2844 2844 2845 284.4 568.8000000000001 2844 1977-10-15 2024-10-11 00:47:24.000 1977-10-15 2024-10-11 00:47:24 +2846 2846 2847 284.6 569.2 2846 1977-10-17 2024-10-11 00:47:26.000 1977-10-17 2024-10-11 00:47:26 +2847 2847 2848 284.7 569.4 2847 1977-10-18 2024-10-11 00:47:27.000 1977-10-18 2024-10-11 00:47:27 +2848 2848 2849 284.8 569.6 2848 1977-10-19 2024-10-11 00:47:28.000 1977-10-19 2024-10-11 00:47:28 +2849 2849 2850 284.9 569.8000000000001 2849 1977-10-20 2024-10-11 00:47:29.000 1977-10-20 2024-10-11 00:47:29 +2851 2851 2852 285.1 570.2 2851 1977-10-22 2024-10-11 00:47:31.000 1977-10-22 2024-10-11 00:47:31 +2852 2852 2853 285.2 570.4 2852 1977-10-23 2024-10-11 00:47:32.000 1977-10-23 2024-10-11 00:47:32 +2853 2853 2854 285.3 570.6 2853 1977-10-24 2024-10-11 00:47:33.000 1977-10-24 2024-10-11 00:47:33 +2854 2854 2855 285.4 570.8000000000001 2854 1977-10-25 2024-10-11 00:47:34.000 1977-10-25 2024-10-11 00:47:34 +2856 2856 2857 285.6 571.2 2856 1977-10-27 2024-10-11 00:47:36.000 1977-10-27 2024-10-11 00:47:36 +2857 2857 2858 285.7 571.4 2857 1977-10-28 2024-10-11 00:47:37.000 1977-10-28 2024-10-11 00:47:37 +2858 2858 2859 285.8 571.6 2858 1977-10-29 2024-10-11 00:47:38.000 1977-10-29 2024-10-11 00:47:38 +2859 2859 2860 285.9 571.8000000000001 2859 1977-10-30 2024-10-11 00:47:39.000 1977-10-30 2024-10-11 00:47:39 +2861 2861 2862 286.1 572.2 2861 1977-11-01 2024-10-11 00:47:41.000 1977-11-01 2024-10-11 00:47:41 +2862 2862 2863 286.2 572.4 2862 1977-11-02 2024-10-11 00:47:42.000 1977-11-02 2024-10-11 00:47:42 +2863 2863 2864 286.3 572.6 2863 1977-11-03 2024-10-11 00:47:43.000 1977-11-03 2024-10-11 00:47:43 +2864 2864 2865 286.4 572.8000000000001 2864 1977-11-04 2024-10-11 00:47:44.000 1977-11-04 2024-10-11 00:47:44 +2866 2866 2867 286.6 573.2 2866 1977-11-06 2024-10-11 00:47:46.000 1977-11-06 2024-10-11 00:47:46 +2867 2867 2868 286.7 573.4 2867 1977-11-07 2024-10-11 00:47:47.000 1977-11-07 2024-10-11 00:47:47 +2868 2868 2869 286.8 573.6 2868 1977-11-08 2024-10-11 00:47:48.000 1977-11-08 2024-10-11 00:47:48 +2869 2869 2870 286.9 573.8000000000001 2869 1977-11-09 2024-10-11 00:47:49.000 1977-11-09 2024-10-11 00:47:49 +2871 2871 2872 287.1 574.2 2871 1977-11-11 2024-10-11 00:47:51.000 1977-11-11 2024-10-11 00:47:51 +2872 2872 2873 287.2 574.4 2872 1977-11-12 2024-10-11 00:47:52.000 1977-11-12 2024-10-11 00:47:52 +2873 2873 2874 287.3 574.6 2873 1977-11-13 2024-10-11 00:47:53.000 1977-11-13 2024-10-11 00:47:53 +2874 2874 2875 287.4 574.8000000000001 2874 1977-11-14 2024-10-11 00:47:54.000 1977-11-14 2024-10-11 00:47:54 +2876 2876 2877 287.6 575.2 2876 1977-11-16 2024-10-11 00:47:56.000 1977-11-16 2024-10-11 00:47:56 +2877 2877 2878 287.7 575.4 2877 1977-11-17 2024-10-11 00:47:57.000 1977-11-17 2024-10-11 00:47:57 +2878 2878 2879 287.8 575.6 2878 1977-11-18 2024-10-11 00:47:58.000 1977-11-18 2024-10-11 00:47:58 +2879 2879 2880 287.9 575.8000000000001 2879 1977-11-19 2024-10-11 00:47:59.000 1977-11-19 2024-10-11 00:47:59 +2881 2881 2882 288.1 576.2 2881 1977-11-21 2024-10-11 00:48:01.000 1977-11-21 2024-10-11 00:48:01 +2882 2882 2883 288.2 576.4 2882 1977-11-22 2024-10-11 00:48:02.000 1977-11-22 2024-10-11 00:48:02 +2883 2883 2884 288.3 576.6 2883 1977-11-23 2024-10-11 00:48:03.000 1977-11-23 2024-10-11 00:48:03 +2884 2884 2885 288.4 576.8000000000001 2884 1977-11-24 2024-10-11 00:48:04.000 1977-11-24 2024-10-11 00:48:04 +2886 2886 2887 288.6 577.2 2886 1977-11-26 2024-10-11 00:48:06.000 1977-11-26 2024-10-11 00:48:06 +2887 2887 2888 288.7 577.4 2887 1977-11-27 2024-10-11 00:48:07.000 1977-11-27 2024-10-11 00:48:07 +2888 2888 2889 288.8 577.6 2888 1977-11-28 2024-10-11 00:48:08.000 1977-11-28 2024-10-11 00:48:08 +2889 2889 2890 288.9 577.8000000000001 2889 1977-11-29 2024-10-11 00:48:09.000 1977-11-29 2024-10-11 00:48:09 +2891 2891 2892 289.1 578.2 2891 1977-12-01 2024-10-11 00:48:11.000 1977-12-01 2024-10-11 00:48:11 +2892 2892 2893 289.2 578.4 2892 1977-12-02 2024-10-11 00:48:12.000 1977-12-02 2024-10-11 00:48:12 +2893 2893 2894 289.3 578.6 2893 1977-12-03 2024-10-11 00:48:13.000 1977-12-03 2024-10-11 00:48:13 +2894 2894 2895 289.4 578.8000000000001 2894 1977-12-04 2024-10-11 00:48:14.000 1977-12-04 2024-10-11 00:48:14 +2896 2896 2897 289.6 579.2 2896 1977-12-06 2024-10-11 00:48:16.000 1977-12-06 2024-10-11 00:48:16 +2897 2897 2898 289.7 579.4 2897 1977-12-07 2024-10-11 00:48:17.000 1977-12-07 2024-10-11 00:48:17 +2898 2898 2899 289.8 579.6 2898 1977-12-08 2024-10-11 00:48:18.000 1977-12-08 2024-10-11 00:48:18 +2899 2899 2900 289.9 579.8000000000001 2899 1977-12-09 2024-10-11 00:48:19.000 1977-12-09 2024-10-11 00:48:19 +2901 2901 2902 290.1 580.2 2901 1977-12-11 2024-10-11 00:48:21.000 1977-12-11 2024-10-11 00:48:21 +2902 2902 2903 290.2 580.4 2902 1977-12-12 2024-10-11 00:48:22.000 1977-12-12 2024-10-11 00:48:22 +2903 2903 2904 290.3 580.6 2903 1977-12-13 2024-10-11 00:48:23.000 1977-12-13 2024-10-11 00:48:23 +2904 2904 2905 290.4 580.8000000000001 2904 1977-12-14 2024-10-11 00:48:24.000 1977-12-14 2024-10-11 00:48:24 +2906 2906 2907 290.6 581.2 2906 1977-12-16 2024-10-11 00:48:26.000 1977-12-16 2024-10-11 00:48:26 +2907 2907 2908 290.7 581.4 2907 1977-12-17 2024-10-11 00:48:27.000 1977-12-17 2024-10-11 00:48:27 +2908 2908 2909 290.8 581.6 2908 1977-12-18 2024-10-11 00:48:28.000 1977-12-18 2024-10-11 00:48:28 +2909 2909 2910 290.9 581.8000000000001 2909 1977-12-19 2024-10-11 00:48:29.000 1977-12-19 2024-10-11 00:48:29 +2911 2911 2912 291.1 582.2 2911 1977-12-21 2024-10-11 00:48:31.000 1977-12-21 2024-10-11 00:48:31 +2912 2912 2913 291.2 582.4 2912 1977-12-22 2024-10-11 00:48:32.000 1977-12-22 2024-10-11 00:48:32 +2913 2913 2914 291.3 582.6 2913 1977-12-23 2024-10-11 00:48:33.000 1977-12-23 2024-10-11 00:48:33 +2914 2914 2915 291.4 582.8000000000001 2914 1977-12-24 2024-10-11 00:48:34.000 1977-12-24 2024-10-11 00:48:34 +2916 2916 2917 291.6 583.2 2916 1977-12-26 2024-10-11 00:48:36.000 1977-12-26 2024-10-11 00:48:36 +2917 2917 2918 291.7 583.4 2917 1977-12-27 2024-10-11 00:48:37.000 1977-12-27 2024-10-11 00:48:37 +2918 2918 2919 291.8 583.6 2918 1977-12-28 2024-10-11 00:48:38.000 1977-12-28 2024-10-11 00:48:38 +2919 2919 2920 291.9 583.8000000000001 2919 1977-12-29 2024-10-11 00:48:39.000 1977-12-29 2024-10-11 00:48:39 +2921 2921 2922 292.1 584.2 2921 1977-12-31 2024-10-11 00:48:41.000 1977-12-31 2024-10-11 00:48:41 +2922 2922 2923 292.2 584.4 2922 1978-01-01 2024-10-11 00:48:42.000 1978-01-01 2024-10-11 00:48:42 +2923 2923 2924 292.3 584.6 2923 1978-01-02 2024-10-11 00:48:43.000 1978-01-02 2024-10-11 00:48:43 +2924 2924 2925 292.4 584.8000000000001 2924 1978-01-03 2024-10-11 00:48:44.000 1978-01-03 2024-10-11 00:48:44 +2926 2926 2927 292.6 585.2 2926 1978-01-05 2024-10-11 00:48:46.000 1978-01-05 2024-10-11 00:48:46 +2927 2927 2928 292.7 585.4 2927 1978-01-06 2024-10-11 00:48:47.000 1978-01-06 2024-10-11 00:48:47 +2928 2928 2929 292.8 585.6 2928 1978-01-07 2024-10-11 00:48:48.000 1978-01-07 2024-10-11 00:48:48 +2929 2929 2930 292.9 585.8000000000001 2929 1978-01-08 2024-10-11 00:48:49.000 1978-01-08 2024-10-11 00:48:49 +2931 2931 2932 293.1 586.2 2931 1978-01-10 2024-10-11 00:48:51.000 1978-01-10 2024-10-11 00:48:51 +2932 2932 2933 293.2 586.4 2932 1978-01-11 2024-10-11 00:48:52.000 1978-01-11 2024-10-11 00:48:52 +2933 2933 2934 293.3 586.6 2933 1978-01-12 2024-10-11 00:48:53.000 1978-01-12 2024-10-11 00:48:53 +2934 2934 2935 293.4 586.8000000000001 2934 1978-01-13 2024-10-11 00:48:54.000 1978-01-13 2024-10-11 00:48:54 +2936 2936 2937 293.6 587.2 2936 1978-01-15 2024-10-11 00:48:56.000 1978-01-15 2024-10-11 00:48:56 +2937 2937 2938 293.7 587.4 2937 1978-01-16 2024-10-11 00:48:57.000 1978-01-16 2024-10-11 00:48:57 +2938 2938 2939 293.8 587.6 2938 1978-01-17 2024-10-11 00:48:58.000 1978-01-17 2024-10-11 00:48:58 +2939 2939 2940 293.9 587.8000000000001 2939 1978-01-18 2024-10-11 00:48:59.000 1978-01-18 2024-10-11 00:48:59 +2941 2941 2942 294.1 588.2 2941 1978-01-20 2024-10-11 00:49:01.000 1978-01-20 2024-10-11 00:49:01 +2942 2942 2943 294.2 588.4 2942 1978-01-21 2024-10-11 00:49:02.000 1978-01-21 2024-10-11 00:49:02 +2943 2943 2944 294.3 588.6 2943 1978-01-22 2024-10-11 00:49:03.000 1978-01-22 2024-10-11 00:49:03 +2944 2944 2945 294.4 588.8000000000001 2944 1978-01-23 2024-10-11 00:49:04.000 1978-01-23 2024-10-11 00:49:04 +2946 2946 2947 294.6 589.2 2946 1978-01-25 2024-10-11 00:49:06.000 1978-01-25 2024-10-11 00:49:06 +2947 2947 2948 294.7 589.4 2947 1978-01-26 2024-10-11 00:49:07.000 1978-01-26 2024-10-11 00:49:07 +2948 2948 2949 294.8 589.6 2948 1978-01-27 2024-10-11 00:49:08.000 1978-01-27 2024-10-11 00:49:08 +2949 2949 2950 294.9 589.8000000000001 2949 1978-01-28 2024-10-11 00:49:09.000 1978-01-28 2024-10-11 00:49:09 +2951 2951 2952 295.1 590.2 2951 1978-01-30 2024-10-11 00:49:11.000 1978-01-30 2024-10-11 00:49:11 +2952 2952 2953 295.2 590.4 2952 1978-01-31 2024-10-11 00:49:12.000 1978-01-31 2024-10-11 00:49:12 +2953 2953 2954 295.3 590.6 2953 1978-02-01 2024-10-11 00:49:13.000 1978-02-01 2024-10-11 00:49:13 +2954 2954 2955 295.4 590.8000000000001 2954 1978-02-02 2024-10-11 00:49:14.000 1978-02-02 2024-10-11 00:49:14 +2956 2956 2957 295.6 591.2 2956 1978-02-04 2024-10-11 00:49:16.000 1978-02-04 2024-10-11 00:49:16 +2957 2957 2958 295.7 591.4 2957 1978-02-05 2024-10-11 00:49:17.000 1978-02-05 2024-10-11 00:49:17 +2958 2958 2959 295.8 591.6 2958 1978-02-06 2024-10-11 00:49:18.000 1978-02-06 2024-10-11 00:49:18 +2959 2959 2960 295.9 591.8000000000001 2959 1978-02-07 2024-10-11 00:49:19.000 1978-02-07 2024-10-11 00:49:19 +2961 2961 2962 296.1 592.2 2961 1978-02-09 2024-10-11 00:49:21.000 1978-02-09 2024-10-11 00:49:21 +2962 2962 2963 296.2 592.4 2962 1978-02-10 2024-10-11 00:49:22.000 1978-02-10 2024-10-11 00:49:22 +2963 2963 2964 296.3 592.6 2963 1978-02-11 2024-10-11 00:49:23.000 1978-02-11 2024-10-11 00:49:23 +2964 2964 2965 296.4 592.8000000000001 2964 1978-02-12 2024-10-11 00:49:24.000 1978-02-12 2024-10-11 00:49:24 +2966 2966 2967 296.6 593.2 2966 1978-02-14 2024-10-11 00:49:26.000 1978-02-14 2024-10-11 00:49:26 +2967 2967 2968 296.7 593.4 2967 1978-02-15 2024-10-11 00:49:27.000 1978-02-15 2024-10-11 00:49:27 +2968 2968 2969 296.8 593.6 2968 1978-02-16 2024-10-11 00:49:28.000 1978-02-16 2024-10-11 00:49:28 +2969 2969 2970 296.9 593.8000000000001 2969 1978-02-17 2024-10-11 00:49:29.000 1978-02-17 2024-10-11 00:49:29 +2971 2971 2972 297.1 594.2 2971 1978-02-19 2024-10-11 00:49:31.000 1978-02-19 2024-10-11 00:49:31 +2972 2972 2973 297.2 594.4 2972 1978-02-20 2024-10-11 00:49:32.000 1978-02-20 2024-10-11 00:49:32 +2973 2973 2974 297.3 594.6 2973 1978-02-21 2024-10-11 00:49:33.000 1978-02-21 2024-10-11 00:49:33 +2974 2974 2975 297.4 594.8000000000001 2974 1978-02-22 2024-10-11 00:49:34.000 1978-02-22 2024-10-11 00:49:34 +2976 2976 2977 297.6 595.2 2976 1978-02-24 2024-10-11 00:49:36.000 1978-02-24 2024-10-11 00:49:36 +2977 2977 2978 297.7 595.4 2977 1978-02-25 2024-10-11 00:49:37.000 1978-02-25 2024-10-11 00:49:37 +2978 2978 2979 297.8 595.6 2978 1978-02-26 2024-10-11 00:49:38.000 1978-02-26 2024-10-11 00:49:38 +2979 2979 2980 297.9 595.8000000000001 2979 1978-02-27 2024-10-11 00:49:39.000 1978-02-27 2024-10-11 00:49:39 +2981 2981 2982 298.1 596.2 2981 1978-03-01 2024-10-11 00:49:41.000 1978-03-01 2024-10-11 00:49:41 +2982 2982 2983 298.2 596.4 2982 1978-03-02 2024-10-11 00:49:42.000 1978-03-02 2024-10-11 00:49:42 +2983 2983 2984 298.3 596.6 2983 1978-03-03 2024-10-11 00:49:43.000 1978-03-03 2024-10-11 00:49:43 +2984 2984 2985 298.4 596.8000000000001 2984 1978-03-04 2024-10-11 00:49:44.000 1978-03-04 2024-10-11 00:49:44 +2986 2986 2987 298.6 597.2 2986 1978-03-06 2024-10-11 00:49:46.000 1978-03-06 2024-10-11 00:49:46 +2987 2987 2988 298.7 597.4 2987 1978-03-07 2024-10-11 00:49:47.000 1978-03-07 2024-10-11 00:49:47 +2988 2988 2989 298.8 597.6 2988 1978-03-08 2024-10-11 00:49:48.000 1978-03-08 2024-10-11 00:49:48 +2989 2989 2990 298.9 597.8000000000001 2989 1978-03-09 2024-10-11 00:49:49.000 1978-03-09 2024-10-11 00:49:49 +2991 2991 2992 299.1 598.2 2991 1978-03-11 2024-10-11 00:49:51.000 1978-03-11 2024-10-11 00:49:51 +2992 2992 2993 299.2 598.4 2992 1978-03-12 2024-10-11 00:49:52.000 1978-03-12 2024-10-11 00:49:52 +2993 2993 2994 299.3 598.6 2993 1978-03-13 2024-10-11 00:49:53.000 1978-03-13 2024-10-11 00:49:53 +2994 2994 2995 299.4 598.8000000000001 2994 1978-03-14 2024-10-11 00:49:54.000 1978-03-14 2024-10-11 00:49:54 +2996 2996 2997 299.6 599.2 2996 1978-03-16 2024-10-11 00:49:56.000 1978-03-16 2024-10-11 00:49:56 +2997 2997 2998 299.7 599.4 2997 1978-03-17 2024-10-11 00:49:57.000 1978-03-17 2024-10-11 00:49:57 +2998 2998 2999 299.8 599.6 2998 1978-03-18 2024-10-11 00:49:58.000 1978-03-18 2024-10-11 00:49:58 +2999 2999 3000 299.9 599.8000000000001 2999 1978-03-19 2024-10-11 00:49:59.000 1978-03-19 2024-10-11 00:49:59 +3001 3001 3002 300.1 600.2 3001 1978-03-21 2024-10-11 00:50:01.000 1978-03-21 2024-10-11 00:50:01 +3002 3002 3003 300.2 600.4 3002 1978-03-22 2024-10-11 00:50:02.000 1978-03-22 2024-10-11 00:50:02 +3003 3003 3004 300.3 600.6 3003 1978-03-23 2024-10-11 00:50:03.000 1978-03-23 2024-10-11 00:50:03 +3004 3004 3005 300.4 600.8000000000001 3004 1978-03-24 2024-10-11 00:50:04.000 1978-03-24 2024-10-11 00:50:04 +3006 3006 3007 300.6 601.2 3006 1978-03-26 2024-10-11 00:50:06.000 1978-03-26 2024-10-11 00:50:06 +3007 3007 3008 300.7 601.4 3007 1978-03-27 2024-10-11 00:50:07.000 1978-03-27 2024-10-11 00:50:07 +3008 3008 3009 300.8 601.6 3008 1978-03-28 2024-10-11 00:50:08.000 1978-03-28 2024-10-11 00:50:08 +3009 3009 3010 300.9 601.8000000000001 3009 1978-03-29 2024-10-11 00:50:09.000 1978-03-29 2024-10-11 00:50:09 +3011 3011 3012 301.1 602.2 3011 1978-03-31 2024-10-11 00:50:11.000 1978-03-31 2024-10-11 00:50:11 +3012 3012 3013 301.2 602.4 3012 1978-04-01 2024-10-11 00:50:12.000 1978-04-01 2024-10-11 00:50:12 +3013 3013 3014 301.3 602.6 3013 1978-04-02 2024-10-11 00:50:13.000 1978-04-02 2024-10-11 00:50:13 +3014 3014 3015 301.4 602.8000000000001 3014 1978-04-03 2024-10-11 00:50:14.000 1978-04-03 2024-10-11 00:50:14 +3016 3016 3017 301.6 603.2 3016 1978-04-05 2024-10-11 00:50:16.000 1978-04-05 2024-10-11 00:50:16 +3017 3017 3018 301.7 603.4 3017 1978-04-06 2024-10-11 00:50:17.000 1978-04-06 2024-10-11 00:50:17 +3018 3018 3019 301.8 603.6 3018 1978-04-07 2024-10-11 00:50:18.000 1978-04-07 2024-10-11 00:50:18 +3019 3019 3020 301.9 603.8000000000001 3019 1978-04-08 2024-10-11 00:50:19.000 1978-04-08 2024-10-11 00:50:19 +3021 3021 3022 302.1 604.2 3021 1978-04-10 2024-10-11 00:50:21.000 1978-04-10 2024-10-11 00:50:21 +3022 3022 3023 302.2 604.4 3022 1978-04-11 2024-10-11 00:50:22.000 1978-04-11 2024-10-11 00:50:22 +3023 3023 3024 302.3 604.6 3023 1978-04-12 2024-10-11 00:50:23.000 1978-04-12 2024-10-11 00:50:23 +3024 3024 3025 302.4 604.8000000000001 3024 1978-04-13 2024-10-11 00:50:24.000 1978-04-13 2024-10-11 00:50:24 +3026 3026 3027 302.6 605.2 3026 1978-04-15 2024-10-11 00:50:26.000 1978-04-15 2024-10-11 00:50:26 +3027 3027 3028 302.7 605.4 3027 1978-04-16 2024-10-11 00:50:27.000 1978-04-16 2024-10-11 00:50:27 +3028 3028 3029 302.8 605.6 3028 1978-04-17 2024-10-11 00:50:28.000 1978-04-17 2024-10-11 00:50:28 +3029 3029 3030 302.9 605.8000000000001 3029 1978-04-18 2024-10-11 00:50:29.000 1978-04-18 2024-10-11 00:50:29 +3031 3031 3032 303.1 606.2 3031 1978-04-20 2024-10-11 00:50:31.000 1978-04-20 2024-10-11 00:50:31 +3032 3032 3033 303.2 606.4 3032 1978-04-21 2024-10-11 00:50:32.000 1978-04-21 2024-10-11 00:50:32 +3033 3033 3034 303.3 606.6 3033 1978-04-22 2024-10-11 00:50:33.000 1978-04-22 2024-10-11 00:50:33 +3034 3034 3035 303.4 606.8000000000001 3034 1978-04-23 2024-10-11 00:50:34.000 1978-04-23 2024-10-11 00:50:34 +3036 3036 3037 303.6 607.2 3036 1978-04-25 2024-10-11 00:50:36.000 1978-04-25 2024-10-11 00:50:36 +3037 3037 3038 303.7 607.4 3037 1978-04-26 2024-10-11 00:50:37.000 1978-04-26 2024-10-11 00:50:37 +3038 3038 3039 303.8 607.6 3038 1978-04-27 2024-10-11 00:50:38.000 1978-04-27 2024-10-11 00:50:38 +3039 3039 3040 303.9 607.8000000000001 3039 1978-04-28 2024-10-11 00:50:39.000 1978-04-28 2024-10-11 00:50:39 +3041 3041 3042 304.1 608.2 3041 1978-04-30 2024-10-11 00:50:41.000 1978-04-30 2024-10-11 00:50:41 +3042 3042 3043 304.2 608.4 3042 1978-05-01 2024-10-11 00:50:42.000 1978-05-01 2024-10-11 00:50:42 +3043 3043 3044 304.3 608.6 3043 1978-05-02 2024-10-11 00:50:43.000 1978-05-02 2024-10-11 00:50:43 +3044 3044 3045 304.4 608.8000000000001 3044 1978-05-03 2024-10-11 00:50:44.000 1978-05-03 2024-10-11 00:50:44 +3046 3046 3047 304.6 609.2 3046 1978-05-05 2024-10-11 00:50:46.000 1978-05-05 2024-10-11 00:50:46 +3047 3047 3048 304.7 609.4 3047 1978-05-06 2024-10-11 00:50:47.000 1978-05-06 2024-10-11 00:50:47 +3048 3048 3049 304.8 609.6 3048 1978-05-07 2024-10-11 00:50:48.000 1978-05-07 2024-10-11 00:50:48 +3049 3049 3050 304.9 609.8000000000001 3049 1978-05-08 2024-10-11 00:50:49.000 1978-05-08 2024-10-11 00:50:49 +3051 3051 3052 305.1 610.2 3051 1978-05-10 2024-10-11 00:50:51.000 1978-05-10 2024-10-11 00:50:51 +3052 3052 3053 305.2 610.4 3052 1978-05-11 2024-10-11 00:50:52.000 1978-05-11 2024-10-11 00:50:52 +3053 3053 3054 305.3 610.6 3053 1978-05-12 2024-10-11 00:50:53.000 1978-05-12 2024-10-11 00:50:53 +3054 3054 3055 305.4 610.8000000000001 3054 1978-05-13 2024-10-11 00:50:54.000 1978-05-13 2024-10-11 00:50:54 +3056 3056 3057 305.6 611.2 3056 1978-05-15 2024-10-11 00:50:56.000 1978-05-15 2024-10-11 00:50:56 +3057 3057 3058 305.7 611.4 3057 1978-05-16 2024-10-11 00:50:57.000 1978-05-16 2024-10-11 00:50:57 +3058 3058 3059 305.8 611.6 3058 1978-05-17 2024-10-11 00:50:58.000 1978-05-17 2024-10-11 00:50:58 +3059 3059 3060 305.9 611.8000000000001 3059 1978-05-18 2024-10-11 00:50:59.000 1978-05-18 2024-10-11 00:50:59 +3061 3061 3062 306.1 612.2 3061 1978-05-20 2024-10-11 00:51:01.000 1978-05-20 2024-10-11 00:51:01 +3062 3062 3063 306.2 612.4 3062 1978-05-21 2024-10-11 00:51:02.000 1978-05-21 2024-10-11 00:51:02 +3063 3063 3064 306.3 612.6 3063 1978-05-22 2024-10-11 00:51:03.000 1978-05-22 2024-10-11 00:51:03 +3064 3064 3065 306.4 612.8000000000001 3064 1978-05-23 2024-10-11 00:51:04.000 1978-05-23 2024-10-11 00:51:04 +3066 3066 3067 306.6 613.2 3066 1978-05-25 2024-10-11 00:51:06.000 1978-05-25 2024-10-11 00:51:06 +3067 3067 3068 306.7 613.4 3067 1978-05-26 2024-10-11 00:51:07.000 1978-05-26 2024-10-11 00:51:07 +3068 3068 3069 306.8 613.6 3068 1978-05-27 2024-10-11 00:51:08.000 1978-05-27 2024-10-11 00:51:08 +3069 3069 3070 306.9 613.8000000000001 3069 1978-05-28 2024-10-11 00:51:09.000 1978-05-28 2024-10-11 00:51:09 +3071 3071 3072 307.1 614.2 3071 1978-05-30 2024-10-11 00:51:11.000 1978-05-30 2024-10-11 00:51:11 +3072 3072 3073 307.2 614.4000000000001 3072 1978-05-31 2024-10-11 00:51:12.000 1978-05-31 2024-10-11 00:51:12 +3073 3073 3074 307.3 614.6 3073 1978-06-01 2024-10-11 00:51:13.000 1978-06-01 2024-10-11 00:51:13 +3074 3074 3075 307.4 614.8000000000001 3074 1978-06-02 2024-10-11 00:51:14.000 1978-06-02 2024-10-11 00:51:14 +3076 3076 3077 307.6 615.2 3076 1978-06-04 2024-10-11 00:51:16.000 1978-06-04 2024-10-11 00:51:16 +3077 3077 3078 307.7 615.4000000000001 3077 1978-06-05 2024-10-11 00:51:17.000 1978-06-05 2024-10-11 00:51:17 +3078 3078 3079 307.8 615.6 3078 1978-06-06 2024-10-11 00:51:18.000 1978-06-06 2024-10-11 00:51:18 +3079 3079 3080 307.9 615.8000000000001 3079 1978-06-07 2024-10-11 00:51:19.000 1978-06-07 2024-10-11 00:51:19 +3081 3081 3082 308.1 616.2 3081 1978-06-09 2024-10-11 00:51:21.000 1978-06-09 2024-10-11 00:51:21 +3082 3082 3083 308.2 616.4000000000001 3082 1978-06-10 2024-10-11 00:51:22.000 1978-06-10 2024-10-11 00:51:22 +3083 3083 3084 308.3 616.6 3083 1978-06-11 2024-10-11 00:51:23.000 1978-06-11 2024-10-11 00:51:23 +3084 3084 3085 308.4 616.8000000000001 3084 1978-06-12 2024-10-11 00:51:24.000 1978-06-12 2024-10-11 00:51:24 +3086 3086 3087 308.6 617.2 3086 1978-06-14 2024-10-11 00:51:26.000 1978-06-14 2024-10-11 00:51:26 +3087 3087 3088 308.7 617.4000000000001 3087 1978-06-15 2024-10-11 00:51:27.000 1978-06-15 2024-10-11 00:51:27 +3088 3088 3089 308.8 617.6 3088 1978-06-16 2024-10-11 00:51:28.000 1978-06-16 2024-10-11 00:51:28 +3089 3089 3090 308.9 617.8000000000001 3089 1978-06-17 2024-10-11 00:51:29.000 1978-06-17 2024-10-11 00:51:29 +3091 3091 3092 309.1 618.2 3091 1978-06-19 2024-10-11 00:51:31.000 1978-06-19 2024-10-11 00:51:31 +3092 3092 3093 309.2 618.4000000000001 3092 1978-06-20 2024-10-11 00:51:32.000 1978-06-20 2024-10-11 00:51:32 +3093 3093 3094 309.3 618.6 3093 1978-06-21 2024-10-11 00:51:33.000 1978-06-21 2024-10-11 00:51:33 +3094 3094 3095 309.4 618.8000000000001 3094 1978-06-22 2024-10-11 00:51:34.000 1978-06-22 2024-10-11 00:51:34 +3096 3096 3097 309.6 619.2 3096 1978-06-24 2024-10-11 00:51:36.000 1978-06-24 2024-10-11 00:51:36 +3097 3097 3098 309.7 619.4000000000001 3097 1978-06-25 2024-10-11 00:51:37.000 1978-06-25 2024-10-11 00:51:37 +3098 3098 3099 309.8 619.6 3098 1978-06-26 2024-10-11 00:51:38.000 1978-06-26 2024-10-11 00:51:38 +3099 3099 3100 309.9 619.8000000000001 3099 1978-06-27 2024-10-11 00:51:39.000 1978-06-27 2024-10-11 00:51:39 +3101 3101 3102 310.1 620.2 3101 1978-06-29 2024-10-11 00:51:41.000 1978-06-29 2024-10-11 00:51:41 +3102 3102 3103 310.2 620.4000000000001 3102 1978-06-30 2024-10-11 00:51:42.000 1978-06-30 2024-10-11 00:51:42 +3103 3103 3104 310.3 620.6 3103 1978-07-01 2024-10-11 00:51:43.000 1978-07-01 2024-10-11 00:51:43 +3104 3104 3105 310.4 620.8000000000001 3104 1978-07-02 2024-10-11 00:51:44.000 1978-07-02 2024-10-11 00:51:44 +3106 3106 3107 310.6 621.2 3106 1978-07-04 2024-10-11 00:51:46.000 1978-07-04 2024-10-11 00:51:46 +3107 3107 3108 310.7 621.4000000000001 3107 1978-07-05 2024-10-11 00:51:47.000 1978-07-05 2024-10-11 00:51:47 +3108 3108 3109 310.8 621.6 3108 1978-07-06 2024-10-11 00:51:48.000 1978-07-06 2024-10-11 00:51:48 +3109 3109 3110 310.9 621.8000000000001 3109 1978-07-07 2024-10-11 00:51:49.000 1978-07-07 2024-10-11 00:51:49 +3111 3111 3112 311.1 622.2 3111 1978-07-09 2024-10-11 00:51:51.000 1978-07-09 2024-10-11 00:51:51 +3112 3112 3113 311.2 622.4000000000001 3112 1978-07-10 2024-10-11 00:51:52.000 1978-07-10 2024-10-11 00:51:52 +3113 3113 3114 311.3 622.6 3113 1978-07-11 2024-10-11 00:51:53.000 1978-07-11 2024-10-11 00:51:53 +3114 3114 3115 311.4 622.8000000000001 3114 1978-07-12 2024-10-11 00:51:54.000 1978-07-12 2024-10-11 00:51:54 +3116 3116 3117 311.6 623.2 3116 1978-07-14 2024-10-11 00:51:56.000 1978-07-14 2024-10-11 00:51:56 +3117 3117 3118 311.7 623.4000000000001 3117 1978-07-15 2024-10-11 00:51:57.000 1978-07-15 2024-10-11 00:51:57 +3118 3118 3119 311.8 623.6 3118 1978-07-16 2024-10-11 00:51:58.000 1978-07-16 2024-10-11 00:51:58 +3119 3119 3120 311.9 623.8000000000001 3119 1978-07-17 2024-10-11 00:51:59.000 1978-07-17 2024-10-11 00:51:59 +3121 3121 3122 312.1 624.2 3121 1978-07-19 2024-10-11 00:52:01.000 1978-07-19 2024-10-11 00:52:01 +3122 3122 3123 312.2 624.4000000000001 3122 1978-07-20 2024-10-11 00:52:02.000 1978-07-20 2024-10-11 00:52:02 +3123 3123 3124 312.3 624.6 3123 1978-07-21 2024-10-11 00:52:03.000 1978-07-21 2024-10-11 00:52:03 +3124 3124 3125 312.4 624.8000000000001 3124 1978-07-22 2024-10-11 00:52:04.000 1978-07-22 2024-10-11 00:52:04 +3126 3126 3127 312.6 625.2 3126 1978-07-24 2024-10-11 00:52:06.000 1978-07-24 2024-10-11 00:52:06 +3127 3127 3128 312.7 625.4000000000001 3127 1978-07-25 2024-10-11 00:52:07.000 1978-07-25 2024-10-11 00:52:07 +3128 3128 3129 312.8 625.6 3128 1978-07-26 2024-10-11 00:52:08.000 1978-07-26 2024-10-11 00:52:08 +3129 3129 3130 312.9 625.8000000000001 3129 1978-07-27 2024-10-11 00:52:09.000 1978-07-27 2024-10-11 00:52:09 +3131 3131 3132 313.1 626.2 3131 1978-07-29 2024-10-11 00:52:11.000 1978-07-29 2024-10-11 00:52:11 +3132 3132 3133 313.2 626.4000000000001 3132 1978-07-30 2024-10-11 00:52:12.000 1978-07-30 2024-10-11 00:52:12 +3133 3133 3134 313.3 626.6 3133 1978-07-31 2024-10-11 00:52:13.000 1978-07-31 2024-10-11 00:52:13 +3134 3134 3135 313.4 626.8000000000001 3134 1978-08-01 2024-10-11 00:52:14.000 1978-08-01 2024-10-11 00:52:14 +3136 3136 3137 313.6 627.2 3136 1978-08-03 2024-10-11 00:52:16.000 1978-08-03 2024-10-11 00:52:16 +3137 3137 3138 313.7 627.4000000000001 3137 1978-08-04 2024-10-11 00:52:17.000 1978-08-04 2024-10-11 00:52:17 +3138 3138 3139 313.8 627.6 3138 1978-08-05 2024-10-11 00:52:18.000 1978-08-05 2024-10-11 00:52:18 +3139 3139 3140 313.9 627.8000000000001 3139 1978-08-06 2024-10-11 00:52:19.000 1978-08-06 2024-10-11 00:52:19 +3141 3141 3142 314.1 628.2 3141 1978-08-08 2024-10-11 00:52:21.000 1978-08-08 2024-10-11 00:52:21 +3142 3142 3143 314.2 628.4000000000001 3142 1978-08-09 2024-10-11 00:52:22.000 1978-08-09 2024-10-11 00:52:22 +3143 3143 3144 314.3 628.6 3143 1978-08-10 2024-10-11 00:52:23.000 1978-08-10 2024-10-11 00:52:23 +3144 3144 3145 314.4 628.8000000000001 3144 1978-08-11 2024-10-11 00:52:24.000 1978-08-11 2024-10-11 00:52:24 +3146 3146 3147 314.6 629.2 3146 1978-08-13 2024-10-11 00:52:26.000 1978-08-13 2024-10-11 00:52:26 +3147 3147 3148 314.7 629.4000000000001 3147 1978-08-14 2024-10-11 00:52:27.000 1978-08-14 2024-10-11 00:52:27 +3148 3148 3149 314.8 629.6 3148 1978-08-15 2024-10-11 00:52:28.000 1978-08-15 2024-10-11 00:52:28 +3149 3149 3150 314.9 629.8000000000001 3149 1978-08-16 2024-10-11 00:52:29.000 1978-08-16 2024-10-11 00:52:29 +3151 3151 3152 315.1 630.2 3151 1978-08-18 2024-10-11 00:52:31.000 1978-08-18 2024-10-11 00:52:31 +3152 3152 3153 315.2 630.4000000000001 3152 1978-08-19 2024-10-11 00:52:32.000 1978-08-19 2024-10-11 00:52:32 +3153 3153 3154 315.3 630.6 3153 1978-08-20 2024-10-11 00:52:33.000 1978-08-20 2024-10-11 00:52:33 +3154 3154 3155 315.4 630.8000000000001 3154 1978-08-21 2024-10-11 00:52:34.000 1978-08-21 2024-10-11 00:52:34 +3156 3156 3157 315.6 631.2 3156 1978-08-23 2024-10-11 00:52:36.000 1978-08-23 2024-10-11 00:52:36 +3157 3157 3158 315.7 631.4000000000001 3157 1978-08-24 2024-10-11 00:52:37.000 1978-08-24 2024-10-11 00:52:37 +3158 3158 3159 315.8 631.6 3158 1978-08-25 2024-10-11 00:52:38.000 1978-08-25 2024-10-11 00:52:38 +3159 3159 3160 315.9 631.8000000000001 3159 1978-08-26 2024-10-11 00:52:39.000 1978-08-26 2024-10-11 00:52:39 +3161 3161 3162 316.1 632.2 3161 1978-08-28 2024-10-11 00:52:41.000 1978-08-28 2024-10-11 00:52:41 +3162 3162 3163 316.2 632.4000000000001 3162 1978-08-29 2024-10-11 00:52:42.000 1978-08-29 2024-10-11 00:52:42 +3163 3163 3164 316.3 632.6 3163 1978-08-30 2024-10-11 00:52:43.000 1978-08-30 2024-10-11 00:52:43 +3164 3164 3165 316.4 632.8000000000001 3164 1978-08-31 2024-10-11 00:52:44.000 1978-08-31 2024-10-11 00:52:44 +3166 3166 3167 316.6 633.2 3166 1978-09-02 2024-10-11 00:52:46.000 1978-09-02 2024-10-11 00:52:46 +3167 3167 3168 316.7 633.4000000000001 3167 1978-09-03 2024-10-11 00:52:47.000 1978-09-03 2024-10-11 00:52:47 +3168 3168 3169 316.8 633.6 3168 1978-09-04 2024-10-11 00:52:48.000 1978-09-04 2024-10-11 00:52:48 +3169 3169 3170 316.9 633.8000000000001 3169 1978-09-05 2024-10-11 00:52:49.000 1978-09-05 2024-10-11 00:52:49 +3171 3171 3172 317.1 634.2 3171 1978-09-07 2024-10-11 00:52:51.000 1978-09-07 2024-10-11 00:52:51 +3172 3172 3173 317.2 634.4000000000001 3172 1978-09-08 2024-10-11 00:52:52.000 1978-09-08 2024-10-11 00:52:52 +3173 3173 3174 317.3 634.6 3173 1978-09-09 2024-10-11 00:52:53.000 1978-09-09 2024-10-11 00:52:53 +3174 3174 3175 317.4 634.8000000000001 3174 1978-09-10 2024-10-11 00:52:54.000 1978-09-10 2024-10-11 00:52:54 +3176 3176 3177 317.6 635.2 3176 1978-09-12 2024-10-11 00:52:56.000 1978-09-12 2024-10-11 00:52:56 +3177 3177 3178 317.7 635.4000000000001 3177 1978-09-13 2024-10-11 00:52:57.000 1978-09-13 2024-10-11 00:52:57 +3178 3178 3179 317.8 635.6 3178 1978-09-14 2024-10-11 00:52:58.000 1978-09-14 2024-10-11 00:52:58 +3179 3179 3180 317.9 635.8000000000001 3179 1978-09-15 2024-10-11 00:52:59.000 1978-09-15 2024-10-11 00:52:59 +3181 3181 3182 318.1 636.2 3181 1978-09-17 2024-10-11 00:53:01.000 1978-09-17 2024-10-11 00:53:01 +3182 3182 3183 318.2 636.4000000000001 3182 1978-09-18 2024-10-11 00:53:02.000 1978-09-18 2024-10-11 00:53:02 +3183 3183 3184 318.3 636.6 3183 1978-09-19 2024-10-11 00:53:03.000 1978-09-19 2024-10-11 00:53:03 +3184 3184 3185 318.4 636.8000000000001 3184 1978-09-20 2024-10-11 00:53:04.000 1978-09-20 2024-10-11 00:53:04 +3186 3186 3187 318.6 637.2 3186 1978-09-22 2024-10-11 00:53:06.000 1978-09-22 2024-10-11 00:53:06 +3187 3187 3188 318.7 637.4000000000001 3187 1978-09-23 2024-10-11 00:53:07.000 1978-09-23 2024-10-11 00:53:07 +3188 3188 3189 318.8 637.6 3188 1978-09-24 2024-10-11 00:53:08.000 1978-09-24 2024-10-11 00:53:08 +3189 3189 3190 318.9 637.8000000000001 3189 1978-09-25 2024-10-11 00:53:09.000 1978-09-25 2024-10-11 00:53:09 +3191 3191 3192 319.1 638.2 3191 1978-09-27 2024-10-11 00:53:11.000 1978-09-27 2024-10-11 00:53:11 +3192 3192 3193 319.2 638.4000000000001 3192 1978-09-28 2024-10-11 00:53:12.000 1978-09-28 2024-10-11 00:53:12 +3193 3193 3194 319.3 638.6 3193 1978-09-29 2024-10-11 00:53:13.000 1978-09-29 2024-10-11 00:53:13 +3194 3194 3195 319.4 638.8000000000001 3194 1978-09-30 2024-10-11 00:53:14.000 1978-09-30 2024-10-11 00:53:14 +3196 3196 3197 319.6 639.2 3196 1978-10-02 2024-10-11 00:53:16.000 1978-10-02 2024-10-11 00:53:16 +3197 3197 3198 319.7 639.4000000000001 3197 1978-10-03 2024-10-11 00:53:17.000 1978-10-03 2024-10-11 00:53:17 +3198 3198 3199 319.8 639.6 3198 1978-10-04 2024-10-11 00:53:18.000 1978-10-04 2024-10-11 00:53:18 +3199 3199 3200 319.9 639.8000000000001 3199 1978-10-05 2024-10-11 00:53:19.000 1978-10-05 2024-10-11 00:53:19 +3201 3201 3202 320.1 640.2 3201 1978-10-07 2024-10-11 00:53:21.000 1978-10-07 2024-10-11 00:53:21 +3202 3202 3203 320.2 640.4000000000001 3202 1978-10-08 2024-10-11 00:53:22.000 1978-10-08 2024-10-11 00:53:22 +3203 3203 3204 320.3 640.6 3203 1978-10-09 2024-10-11 00:53:23.000 1978-10-09 2024-10-11 00:53:23 +3204 3204 3205 320.4 640.8000000000001 3204 1978-10-10 2024-10-11 00:53:24.000 1978-10-10 2024-10-11 00:53:24 +3206 3206 3207 320.6 641.2 3206 1978-10-12 2024-10-11 00:53:26.000 1978-10-12 2024-10-11 00:53:26 +3207 3207 3208 320.7 641.4000000000001 3207 1978-10-13 2024-10-11 00:53:27.000 1978-10-13 2024-10-11 00:53:27 +3208 3208 3209 320.8 641.6 3208 1978-10-14 2024-10-11 00:53:28.000 1978-10-14 2024-10-11 00:53:28 +3209 3209 3210 320.9 641.8000000000001 3209 1978-10-15 2024-10-11 00:53:29.000 1978-10-15 2024-10-11 00:53:29 +3211 3211 3212 321.1 642.2 3211 1978-10-17 2024-10-11 00:53:31.000 1978-10-17 2024-10-11 00:53:31 +3212 3212 3213 321.2 642.4000000000001 3212 1978-10-18 2024-10-11 00:53:32.000 1978-10-18 2024-10-11 00:53:32 +3213 3213 3214 321.3 642.6 3213 1978-10-19 2024-10-11 00:53:33.000 1978-10-19 2024-10-11 00:53:33 +3214 3214 3215 321.4 642.8000000000001 3214 1978-10-20 2024-10-11 00:53:34.000 1978-10-20 2024-10-11 00:53:34 +3216 3216 3217 321.6 643.2 3216 1978-10-22 2024-10-11 00:53:36.000 1978-10-22 2024-10-11 00:53:36 +3217 3217 3218 321.7 643.4000000000001 3217 1978-10-23 2024-10-11 00:53:37.000 1978-10-23 2024-10-11 00:53:37 +3218 3218 3219 321.8 643.6 3218 1978-10-24 2024-10-11 00:53:38.000 1978-10-24 2024-10-11 00:53:38 +3219 3219 3220 321.9 643.8000000000001 3219 1978-10-25 2024-10-11 00:53:39.000 1978-10-25 2024-10-11 00:53:39 +3221 3221 3222 322.1 644.2 3221 1978-10-27 2024-10-11 00:53:41.000 1978-10-27 2024-10-11 00:53:41 +3222 3222 3223 322.2 644.4000000000001 3222 1978-10-28 2024-10-11 00:53:42.000 1978-10-28 2024-10-11 00:53:42 +3223 3223 3224 322.3 644.6 3223 1978-10-29 2024-10-11 00:53:43.000 1978-10-29 2024-10-11 00:53:43 +3224 3224 3225 322.4 644.8000000000001 3224 1978-10-30 2024-10-11 00:53:44.000 1978-10-30 2024-10-11 00:53:44 +3226 3226 3227 322.6 645.2 3226 1978-11-01 2024-10-11 00:53:46.000 1978-11-01 2024-10-11 00:53:46 +3227 3227 3228 322.7 645.4000000000001 3227 1978-11-02 2024-10-11 00:53:47.000 1978-11-02 2024-10-11 00:53:47 +3228 3228 3229 322.8 645.6 3228 1978-11-03 2024-10-11 00:53:48.000 1978-11-03 2024-10-11 00:53:48 +3229 3229 3230 322.9 645.8000000000001 3229 1978-11-04 2024-10-11 00:53:49.000 1978-11-04 2024-10-11 00:53:49 +3231 3231 3232 323.1 646.2 3231 1978-11-06 2024-10-11 00:53:51.000 1978-11-06 2024-10-11 00:53:51 +3232 3232 3233 323.2 646.4000000000001 3232 1978-11-07 2024-10-11 00:53:52.000 1978-11-07 2024-10-11 00:53:52 +3233 3233 3234 323.3 646.6 3233 1978-11-08 2024-10-11 00:53:53.000 1978-11-08 2024-10-11 00:53:53 +3234 3234 3235 323.4 646.8000000000001 3234 1978-11-09 2024-10-11 00:53:54.000 1978-11-09 2024-10-11 00:53:54 +3236 3236 3237 323.6 647.2 3236 1978-11-11 2024-10-11 00:53:56.000 1978-11-11 2024-10-11 00:53:56 +3237 3237 3238 323.7 647.4000000000001 3237 1978-11-12 2024-10-11 00:53:57.000 1978-11-12 2024-10-11 00:53:57 +3238 3238 3239 323.8 647.6 3238 1978-11-13 2024-10-11 00:53:58.000 1978-11-13 2024-10-11 00:53:58 +3239 3239 3240 323.9 647.8000000000001 3239 1978-11-14 2024-10-11 00:53:59.000 1978-11-14 2024-10-11 00:53:59 +3241 3241 3242 324.1 648.2 3241 1978-11-16 2024-10-11 00:54:01.000 1978-11-16 2024-10-11 00:54:01 +3242 3242 3243 324.2 648.4000000000001 3242 1978-11-17 2024-10-11 00:54:02.000 1978-11-17 2024-10-11 00:54:02 +3243 3243 3244 324.3 648.6 3243 1978-11-18 2024-10-11 00:54:03.000 1978-11-18 2024-10-11 00:54:03 +3244 3244 3245 324.4 648.8000000000001 3244 1978-11-19 2024-10-11 00:54:04.000 1978-11-19 2024-10-11 00:54:04 +3246 3246 3247 324.6 649.2 3246 1978-11-21 2024-10-11 00:54:06.000 1978-11-21 2024-10-11 00:54:06 +3247 3247 3248 324.7 649.4000000000001 3247 1978-11-22 2024-10-11 00:54:07.000 1978-11-22 2024-10-11 00:54:07 +3248 3248 3249 324.8 649.6 3248 1978-11-23 2024-10-11 00:54:08.000 1978-11-23 2024-10-11 00:54:08 +3249 3249 3250 324.9 649.8000000000001 3249 1978-11-24 2024-10-11 00:54:09.000 1978-11-24 2024-10-11 00:54:09 +3251 3251 3252 325.1 650.2 3251 1978-11-26 2024-10-11 00:54:11.000 1978-11-26 2024-10-11 00:54:11 +3252 3252 3253 325.2 650.4000000000001 3252 1978-11-27 2024-10-11 00:54:12.000 1978-11-27 2024-10-11 00:54:12 +3253 3253 3254 325.3 650.6 3253 1978-11-28 2024-10-11 00:54:13.000 1978-11-28 2024-10-11 00:54:13 +3254 3254 3255 325.4 650.8000000000001 3254 1978-11-29 2024-10-11 00:54:14.000 1978-11-29 2024-10-11 00:54:14 +3256 3256 3257 325.6 651.2 3256 1978-12-01 2024-10-11 00:54:16.000 1978-12-01 2024-10-11 00:54:16 +3257 3257 3258 325.7 651.4000000000001 3257 1978-12-02 2024-10-11 00:54:17.000 1978-12-02 2024-10-11 00:54:17 +3258 3258 3259 325.8 651.6 3258 1978-12-03 2024-10-11 00:54:18.000 1978-12-03 2024-10-11 00:54:18 +3259 3259 3260 325.9 651.8000000000001 3259 1978-12-04 2024-10-11 00:54:19.000 1978-12-04 2024-10-11 00:54:19 +3261 3261 3262 326.1 652.2 3261 1978-12-06 2024-10-11 00:54:21.000 1978-12-06 2024-10-11 00:54:21 +3262 3262 3263 326.2 652.4000000000001 3262 1978-12-07 2024-10-11 00:54:22.000 1978-12-07 2024-10-11 00:54:22 +3263 3263 3264 326.3 652.6 3263 1978-12-08 2024-10-11 00:54:23.000 1978-12-08 2024-10-11 00:54:23 +3264 3264 3265 326.4 652.8000000000001 3264 1978-12-09 2024-10-11 00:54:24.000 1978-12-09 2024-10-11 00:54:24 +3266 3266 3267 326.6 653.2 3266 1978-12-11 2024-10-11 00:54:26.000 1978-12-11 2024-10-11 00:54:26 +3267 3267 3268 326.7 653.4000000000001 3267 1978-12-12 2024-10-11 00:54:27.000 1978-12-12 2024-10-11 00:54:27 +3268 3268 3269 326.8 653.6 3268 1978-12-13 2024-10-11 00:54:28.000 1978-12-13 2024-10-11 00:54:28 +3269 3269 3270 326.9 653.8000000000001 3269 1978-12-14 2024-10-11 00:54:29.000 1978-12-14 2024-10-11 00:54:29 +3271 3271 3272 327.1 654.2 3271 1978-12-16 2024-10-11 00:54:31.000 1978-12-16 2024-10-11 00:54:31 +3272 3272 3273 327.2 654.4000000000001 3272 1978-12-17 2024-10-11 00:54:32.000 1978-12-17 2024-10-11 00:54:32 +3273 3273 3274 327.3 654.6 3273 1978-12-18 2024-10-11 00:54:33.000 1978-12-18 2024-10-11 00:54:33 +3274 3274 3275 327.4 654.8000000000001 3274 1978-12-19 2024-10-11 00:54:34.000 1978-12-19 2024-10-11 00:54:34 +3276 3276 3277 327.6 655.2 3276 1978-12-21 2024-10-11 00:54:36.000 1978-12-21 2024-10-11 00:54:36 +3277 3277 3278 327.7 655.4000000000001 3277 1978-12-22 2024-10-11 00:54:37.000 1978-12-22 2024-10-11 00:54:37 +3278 3278 3279 327.8 655.6 3278 1978-12-23 2024-10-11 00:54:38.000 1978-12-23 2024-10-11 00:54:38 +3279 3279 3280 327.9 655.8000000000001 3279 1978-12-24 2024-10-11 00:54:39.000 1978-12-24 2024-10-11 00:54:39 +3281 3281 3282 328.1 656.2 3281 1978-12-26 2024-10-11 00:54:41.000 1978-12-26 2024-10-11 00:54:41 +3282 3282 3283 328.2 656.4000000000001 3282 1978-12-27 2024-10-11 00:54:42.000 1978-12-27 2024-10-11 00:54:42 +3283 3283 3284 328.3 656.6 3283 1978-12-28 2024-10-11 00:54:43.000 1978-12-28 2024-10-11 00:54:43 +3284 3284 3285 328.4 656.8000000000001 3284 1978-12-29 2024-10-11 00:54:44.000 1978-12-29 2024-10-11 00:54:44 +3286 3286 3287 328.6 657.2 3286 1978-12-31 2024-10-11 00:54:46.000 1978-12-31 2024-10-11 00:54:46 +3287 3287 3288 328.7 657.4000000000001 3287 1979-01-01 2024-10-11 00:54:47.000 1979-01-01 2024-10-11 00:54:47 +3288 3288 3289 328.8 657.6 3288 1979-01-02 2024-10-11 00:54:48.000 1979-01-02 2024-10-11 00:54:48 +3289 3289 3290 328.9 657.8000000000001 3289 1979-01-03 2024-10-11 00:54:49.000 1979-01-03 2024-10-11 00:54:49 +3291 3291 3292 329.1 658.2 3291 1979-01-05 2024-10-11 00:54:51.000 1979-01-05 2024-10-11 00:54:51 +3292 3292 3293 329.2 658.4000000000001 3292 1979-01-06 2024-10-11 00:54:52.000 1979-01-06 2024-10-11 00:54:52 +3293 3293 3294 329.3 658.6 3293 1979-01-07 2024-10-11 00:54:53.000 1979-01-07 2024-10-11 00:54:53 +3294 3294 3295 329.4 658.8000000000001 3294 1979-01-08 2024-10-11 00:54:54.000 1979-01-08 2024-10-11 00:54:54 +3296 3296 3297 329.6 659.2 3296 1979-01-10 2024-10-11 00:54:56.000 1979-01-10 2024-10-11 00:54:56 +3297 3297 3298 329.7 659.4000000000001 3297 1979-01-11 2024-10-11 00:54:57.000 1979-01-11 2024-10-11 00:54:57 +3298 3298 3299 329.8 659.6 3298 1979-01-12 2024-10-11 00:54:58.000 1979-01-12 2024-10-11 00:54:58 +3299 3299 3300 329.9 659.8000000000001 3299 1979-01-13 2024-10-11 00:54:59.000 1979-01-13 2024-10-11 00:54:59 +3301 3301 3302 330.1 660.2 3301 1979-01-15 2024-10-11 00:55:01.000 1979-01-15 2024-10-11 00:55:01 +3302 3302 3303 330.2 660.4000000000001 3302 1979-01-16 2024-10-11 00:55:02.000 1979-01-16 2024-10-11 00:55:02 +3303 3303 3304 330.3 660.6 3303 1979-01-17 2024-10-11 00:55:03.000 1979-01-17 2024-10-11 00:55:03 +3304 3304 3305 330.4 660.8000000000001 3304 1979-01-18 2024-10-11 00:55:04.000 1979-01-18 2024-10-11 00:55:04 +3306 3306 3307 330.6 661.2 3306 1979-01-20 2024-10-11 00:55:06.000 1979-01-20 2024-10-11 00:55:06 +3307 3307 3308 330.7 661.4000000000001 3307 1979-01-21 2024-10-11 00:55:07.000 1979-01-21 2024-10-11 00:55:07 +3308 3308 3309 330.8 661.6 3308 1979-01-22 2024-10-11 00:55:08.000 1979-01-22 2024-10-11 00:55:08 +3309 3309 3310 330.9 661.8000000000001 3309 1979-01-23 2024-10-11 00:55:09.000 1979-01-23 2024-10-11 00:55:09 +3311 3311 3312 331.1 662.2 3311 1979-01-25 2024-10-11 00:55:11.000 1979-01-25 2024-10-11 00:55:11 +3312 3312 3313 331.2 662.4000000000001 3312 1979-01-26 2024-10-11 00:55:12.000 1979-01-26 2024-10-11 00:55:12 +3313 3313 3314 331.3 662.6 3313 1979-01-27 2024-10-11 00:55:13.000 1979-01-27 2024-10-11 00:55:13 +3314 3314 3315 331.4 662.8000000000001 3314 1979-01-28 2024-10-11 00:55:14.000 1979-01-28 2024-10-11 00:55:14 +3316 3316 3317 331.6 663.2 3316 1979-01-30 2024-10-11 00:55:16.000 1979-01-30 2024-10-11 00:55:16 +3317 3317 3318 331.7 663.4000000000001 3317 1979-01-31 2024-10-11 00:55:17.000 1979-01-31 2024-10-11 00:55:17 +3318 3318 3319 331.8 663.6 3318 1979-02-01 2024-10-11 00:55:18.000 1979-02-01 2024-10-11 00:55:18 +3319 3319 3320 331.9 663.8000000000001 3319 1979-02-02 2024-10-11 00:55:19.000 1979-02-02 2024-10-11 00:55:19 +3321 3321 3322 332.1 664.2 3321 1979-02-04 2024-10-11 00:55:21.000 1979-02-04 2024-10-11 00:55:21 +3322 3322 3323 332.2 664.4000000000001 3322 1979-02-05 2024-10-11 00:55:22.000 1979-02-05 2024-10-11 00:55:22 +3323 3323 3324 332.3 664.6 3323 1979-02-06 2024-10-11 00:55:23.000 1979-02-06 2024-10-11 00:55:23 +3324 3324 3325 332.4 664.8000000000001 3324 1979-02-07 2024-10-11 00:55:24.000 1979-02-07 2024-10-11 00:55:24 +3326 3326 3327 332.6 665.2 3326 1979-02-09 2024-10-11 00:55:26.000 1979-02-09 2024-10-11 00:55:26 +3327 3327 3328 332.7 665.4000000000001 3327 1979-02-10 2024-10-11 00:55:27.000 1979-02-10 2024-10-11 00:55:27 +3328 3328 3329 332.8 665.6 3328 1979-02-11 2024-10-11 00:55:28.000 1979-02-11 2024-10-11 00:55:28 +3329 3329 3330 332.9 665.8000000000001 3329 1979-02-12 2024-10-11 00:55:29.000 1979-02-12 2024-10-11 00:55:29 +3331 3331 3332 333.1 666.2 3331 1979-02-14 2024-10-11 00:55:31.000 1979-02-14 2024-10-11 00:55:31 +3332 3332 3333 333.2 666.4000000000001 3332 1979-02-15 2024-10-11 00:55:32.000 1979-02-15 2024-10-11 00:55:32 +3333 3333 3334 333.3 666.6 3333 1979-02-16 2024-10-11 00:55:33.000 1979-02-16 2024-10-11 00:55:33 +3334 3334 3335 333.4 666.8000000000001 3334 1979-02-17 2024-10-11 00:55:34.000 1979-02-17 2024-10-11 00:55:34 +3336 3336 3337 333.6 667.2 3336 1979-02-19 2024-10-11 00:55:36.000 1979-02-19 2024-10-11 00:55:36 +3337 3337 3338 333.7 667.4000000000001 3337 1979-02-20 2024-10-11 00:55:37.000 1979-02-20 2024-10-11 00:55:37 +3338 3338 3339 333.8 667.6 3338 1979-02-21 2024-10-11 00:55:38.000 1979-02-21 2024-10-11 00:55:38 +3339 3339 3340 333.9 667.8000000000001 3339 1979-02-22 2024-10-11 00:55:39.000 1979-02-22 2024-10-11 00:55:39 +3341 3341 3342 334.1 668.2 3341 1979-02-24 2024-10-11 00:55:41.000 1979-02-24 2024-10-11 00:55:41 +3342 3342 3343 334.2 668.4000000000001 3342 1979-02-25 2024-10-11 00:55:42.000 1979-02-25 2024-10-11 00:55:42 +3343 3343 3344 334.3 668.6 3343 1979-02-26 2024-10-11 00:55:43.000 1979-02-26 2024-10-11 00:55:43 +3344 3344 3345 334.4 668.8000000000001 3344 1979-02-27 2024-10-11 00:55:44.000 1979-02-27 2024-10-11 00:55:44 +3346 3346 3347 334.6 669.2 3346 1979-03-01 2024-10-11 00:55:46.000 1979-03-01 2024-10-11 00:55:46 +3347 3347 3348 334.7 669.4000000000001 3347 1979-03-02 2024-10-11 00:55:47.000 1979-03-02 2024-10-11 00:55:47 +3348 3348 3349 334.8 669.6 3348 1979-03-03 2024-10-11 00:55:48.000 1979-03-03 2024-10-11 00:55:48 +3349 3349 3350 334.9 669.8000000000001 3349 1979-03-04 2024-10-11 00:55:49.000 1979-03-04 2024-10-11 00:55:49 +3351 3351 3352 335.1 670.2 3351 1979-03-06 2024-10-11 00:55:51.000 1979-03-06 2024-10-11 00:55:51 +3352 3352 3353 335.2 670.4000000000001 3352 1979-03-07 2024-10-11 00:55:52.000 1979-03-07 2024-10-11 00:55:52 +3353 3353 3354 335.3 670.6 3353 1979-03-08 2024-10-11 00:55:53.000 1979-03-08 2024-10-11 00:55:53 +3354 3354 3355 335.4 670.8000000000001 3354 1979-03-09 2024-10-11 00:55:54.000 1979-03-09 2024-10-11 00:55:54 +3356 3356 3357 335.6 671.2 3356 1979-03-11 2024-10-11 00:55:56.000 1979-03-11 2024-10-11 00:55:56 +3357 3357 3358 335.7 671.4000000000001 3357 1979-03-12 2024-10-11 00:55:57.000 1979-03-12 2024-10-11 00:55:57 +3358 3358 3359 335.8 671.6 3358 1979-03-13 2024-10-11 00:55:58.000 1979-03-13 2024-10-11 00:55:58 +3359 3359 3360 335.9 671.8000000000001 3359 1979-03-14 2024-10-11 00:55:59.000 1979-03-14 2024-10-11 00:55:59 +3361 3361 3362 336.1 672.2 3361 1979-03-16 2024-10-11 00:56:01.000 1979-03-16 2024-10-11 00:56:01 +3362 3362 3363 336.2 672.4000000000001 3362 1979-03-17 2024-10-11 00:56:02.000 1979-03-17 2024-10-11 00:56:02 +3363 3363 3364 336.3 672.6 3363 1979-03-18 2024-10-11 00:56:03.000 1979-03-18 2024-10-11 00:56:03 +3364 3364 3365 336.4 672.8000000000001 3364 1979-03-19 2024-10-11 00:56:04.000 1979-03-19 2024-10-11 00:56:04 +3366 3366 3367 336.6 673.2 3366 1979-03-21 2024-10-11 00:56:06.000 1979-03-21 2024-10-11 00:56:06 +3367 3367 3368 336.7 673.4000000000001 3367 1979-03-22 2024-10-11 00:56:07.000 1979-03-22 2024-10-11 00:56:07 +3368 3368 3369 336.8 673.6 3368 1979-03-23 2024-10-11 00:56:08.000 1979-03-23 2024-10-11 00:56:08 +3369 3369 3370 336.9 673.8000000000001 3369 1979-03-24 2024-10-11 00:56:09.000 1979-03-24 2024-10-11 00:56:09 +3371 3371 3372 337.1 674.2 3371 1979-03-26 2024-10-11 00:56:11.000 1979-03-26 2024-10-11 00:56:11 +3372 3372 3373 337.2 674.4000000000001 3372 1979-03-27 2024-10-11 00:56:12.000 1979-03-27 2024-10-11 00:56:12 +3373 3373 3374 337.3 674.6 3373 1979-03-28 2024-10-11 00:56:13.000 1979-03-28 2024-10-11 00:56:13 +3374 3374 3375 337.4 674.8000000000001 3374 1979-03-29 2024-10-11 00:56:14.000 1979-03-29 2024-10-11 00:56:14 +3376 3376 3377 337.6 675.2 3376 1979-03-31 2024-10-11 00:56:16.000 1979-03-31 2024-10-11 00:56:16 +3377 3377 3378 337.7 675.4000000000001 3377 1979-04-01 2024-10-11 00:56:17.000 1979-04-01 2024-10-11 00:56:17 +3378 3378 3379 337.8 675.6 3378 1979-04-02 2024-10-11 00:56:18.000 1979-04-02 2024-10-11 00:56:18 +3379 3379 3380 337.9 675.8000000000001 3379 1979-04-03 2024-10-11 00:56:19.000 1979-04-03 2024-10-11 00:56:19 +3381 3381 3382 338.1 676.2 3381 1979-04-05 2024-10-11 00:56:21.000 1979-04-05 2024-10-11 00:56:21 +3382 3382 3383 338.2 676.4000000000001 3382 1979-04-06 2024-10-11 00:56:22.000 1979-04-06 2024-10-11 00:56:22 +3383 3383 3384 338.3 676.6 3383 1979-04-07 2024-10-11 00:56:23.000 1979-04-07 2024-10-11 00:56:23 +3384 3384 3385 338.4 676.8000000000001 3384 1979-04-08 2024-10-11 00:56:24.000 1979-04-08 2024-10-11 00:56:24 +3386 3386 3387 338.6 677.2 3386 1979-04-10 2024-10-11 00:56:26.000 1979-04-10 2024-10-11 00:56:26 +3387 3387 3388 338.7 677.4000000000001 3387 1979-04-11 2024-10-11 00:56:27.000 1979-04-11 2024-10-11 00:56:27 +3388 3388 3389 338.8 677.6 3388 1979-04-12 2024-10-11 00:56:28.000 1979-04-12 2024-10-11 00:56:28 +3389 3389 3390 338.9 677.8000000000001 3389 1979-04-13 2024-10-11 00:56:29.000 1979-04-13 2024-10-11 00:56:29 +3391 3391 3392 339.1 678.2 3391 1979-04-15 2024-10-11 00:56:31.000 1979-04-15 2024-10-11 00:56:31 +3392 3392 3393 339.2 678.4000000000001 3392 1979-04-16 2024-10-11 00:56:32.000 1979-04-16 2024-10-11 00:56:32 +3393 3393 3394 339.3 678.6 3393 1979-04-17 2024-10-11 00:56:33.000 1979-04-17 2024-10-11 00:56:33 +3394 3394 3395 339.4 678.8000000000001 3394 1979-04-18 2024-10-11 00:56:34.000 1979-04-18 2024-10-11 00:56:34 +3396 3396 3397 339.6 679.2 3396 1979-04-20 2024-10-11 00:56:36.000 1979-04-20 2024-10-11 00:56:36 +3397 3397 3398 339.7 679.4000000000001 3397 1979-04-21 2024-10-11 00:56:37.000 1979-04-21 2024-10-11 00:56:37 +3398 3398 3399 339.8 679.6 3398 1979-04-22 2024-10-11 00:56:38.000 1979-04-22 2024-10-11 00:56:38 +3399 3399 3400 339.9 679.8000000000001 3399 1979-04-23 2024-10-11 00:56:39.000 1979-04-23 2024-10-11 00:56:39 +3401 3401 3402 340.1 680.2 3401 1979-04-25 2024-10-11 00:56:41.000 1979-04-25 2024-10-11 00:56:41 +3402 3402 3403 340.2 680.4000000000001 3402 1979-04-26 2024-10-11 00:56:42.000 1979-04-26 2024-10-11 00:56:42 +3403 3403 3404 340.3 680.6 3403 1979-04-27 2024-10-11 00:56:43.000 1979-04-27 2024-10-11 00:56:43 +3404 3404 3405 340.4 680.8000000000001 3404 1979-04-28 2024-10-11 00:56:44.000 1979-04-28 2024-10-11 00:56:44 +3406 3406 3407 340.6 681.2 3406 1979-04-30 2024-10-11 00:56:46.000 1979-04-30 2024-10-11 00:56:46 +3407 3407 3408 340.7 681.4000000000001 3407 1979-05-01 2024-10-11 00:56:47.000 1979-05-01 2024-10-11 00:56:47 +3408 3408 3409 340.8 681.6 3408 1979-05-02 2024-10-11 00:56:48.000 1979-05-02 2024-10-11 00:56:48 +3409 3409 3410 340.9 681.8000000000001 3409 1979-05-03 2024-10-11 00:56:49.000 1979-05-03 2024-10-11 00:56:49 +3411 3411 3412 341.1 682.2 3411 1979-05-05 2024-10-11 00:56:51.000 1979-05-05 2024-10-11 00:56:51 +3412 3412 3413 341.2 682.4000000000001 3412 1979-05-06 2024-10-11 00:56:52.000 1979-05-06 2024-10-11 00:56:52 +3413 3413 3414 341.3 682.6 3413 1979-05-07 2024-10-11 00:56:53.000 1979-05-07 2024-10-11 00:56:53 +3414 3414 3415 341.4 682.8000000000001 3414 1979-05-08 2024-10-11 00:56:54.000 1979-05-08 2024-10-11 00:56:54 +3416 3416 3417 341.6 683.2 3416 1979-05-10 2024-10-11 00:56:56.000 1979-05-10 2024-10-11 00:56:56 +3417 3417 3418 341.7 683.4000000000001 3417 1979-05-11 2024-10-11 00:56:57.000 1979-05-11 2024-10-11 00:56:57 +3418 3418 3419 341.8 683.6 3418 1979-05-12 2024-10-11 00:56:58.000 1979-05-12 2024-10-11 00:56:58 +3419 3419 3420 341.9 683.8000000000001 3419 1979-05-13 2024-10-11 00:56:59.000 1979-05-13 2024-10-11 00:56:59 +3421 3421 3422 342.1 684.2 3421 1979-05-15 2024-10-11 00:57:01.000 1979-05-15 2024-10-11 00:57:01 +3422 3422 3423 342.2 684.4000000000001 3422 1979-05-16 2024-10-11 00:57:02.000 1979-05-16 2024-10-11 00:57:02 +3423 3423 3424 342.3 684.6 3423 1979-05-17 2024-10-11 00:57:03.000 1979-05-17 2024-10-11 00:57:03 +3424 3424 3425 342.4 684.8000000000001 3424 1979-05-18 2024-10-11 00:57:04.000 1979-05-18 2024-10-11 00:57:04 +3426 3426 3427 342.6 685.2 3426 1979-05-20 2024-10-11 00:57:06.000 1979-05-20 2024-10-11 00:57:06 +3427 3427 3428 342.7 685.4000000000001 3427 1979-05-21 2024-10-11 00:57:07.000 1979-05-21 2024-10-11 00:57:07 +3428 3428 3429 342.8 685.6 3428 1979-05-22 2024-10-11 00:57:08.000 1979-05-22 2024-10-11 00:57:08 +3429 3429 3430 342.9 685.8000000000001 3429 1979-05-23 2024-10-11 00:57:09.000 1979-05-23 2024-10-11 00:57:09 +3431 3431 3432 343.1 686.2 3431 1979-05-25 2024-10-11 00:57:11.000 1979-05-25 2024-10-11 00:57:11 +3432 3432 3433 343.2 686.4000000000001 3432 1979-05-26 2024-10-11 00:57:12.000 1979-05-26 2024-10-11 00:57:12 +3433 3433 3434 343.3 686.6 3433 1979-05-27 2024-10-11 00:57:13.000 1979-05-27 2024-10-11 00:57:13 +3434 3434 3435 343.4 686.8000000000001 3434 1979-05-28 2024-10-11 00:57:14.000 1979-05-28 2024-10-11 00:57:14 +3436 3436 3437 343.6 687.2 3436 1979-05-30 2024-10-11 00:57:16.000 1979-05-30 2024-10-11 00:57:16 +3437 3437 3438 343.7 687.4000000000001 3437 1979-05-31 2024-10-11 00:57:17.000 1979-05-31 2024-10-11 00:57:17 +3438 3438 3439 343.8 687.6 3438 1979-06-01 2024-10-11 00:57:18.000 1979-06-01 2024-10-11 00:57:18 +3439 3439 3440 343.9 687.8000000000001 3439 1979-06-02 2024-10-11 00:57:19.000 1979-06-02 2024-10-11 00:57:19 +3441 3441 3442 344.1 688.2 3441 1979-06-04 2024-10-11 00:57:21.000 1979-06-04 2024-10-11 00:57:21 +3442 3442 3443 344.2 688.4000000000001 3442 1979-06-05 2024-10-11 00:57:22.000 1979-06-05 2024-10-11 00:57:22 +3443 3443 3444 344.3 688.6 3443 1979-06-06 2024-10-11 00:57:23.000 1979-06-06 2024-10-11 00:57:23 +3444 3444 3445 344.4 688.8000000000001 3444 1979-06-07 2024-10-11 00:57:24.000 1979-06-07 2024-10-11 00:57:24 +3446 3446 3447 344.6 689.2 3446 1979-06-09 2024-10-11 00:57:26.000 1979-06-09 2024-10-11 00:57:26 +3447 3447 3448 344.7 689.4000000000001 3447 1979-06-10 2024-10-11 00:57:27.000 1979-06-10 2024-10-11 00:57:27 +3448 3448 3449 344.8 689.6 3448 1979-06-11 2024-10-11 00:57:28.000 1979-06-11 2024-10-11 00:57:28 +3449 3449 3450 344.9 689.8000000000001 3449 1979-06-12 2024-10-11 00:57:29.000 1979-06-12 2024-10-11 00:57:29 +3451 3451 3452 345.1 690.2 3451 1979-06-14 2024-10-11 00:57:31.000 1979-06-14 2024-10-11 00:57:31 +3452 3452 3453 345.2 690.4000000000001 3452 1979-06-15 2024-10-11 00:57:32.000 1979-06-15 2024-10-11 00:57:32 +3453 3453 3454 345.3 690.6 3453 1979-06-16 2024-10-11 00:57:33.000 1979-06-16 2024-10-11 00:57:33 +3454 3454 3455 345.4 690.8000000000001 3454 1979-06-17 2024-10-11 00:57:34.000 1979-06-17 2024-10-11 00:57:34 +3456 3456 3457 345.6 691.2 3456 1979-06-19 2024-10-11 00:57:36.000 1979-06-19 2024-10-11 00:57:36 +3457 3457 3458 345.7 691.4000000000001 3457 1979-06-20 2024-10-11 00:57:37.000 1979-06-20 2024-10-11 00:57:37 +3458 3458 3459 345.8 691.6 3458 1979-06-21 2024-10-11 00:57:38.000 1979-06-21 2024-10-11 00:57:38 +3459 3459 3460 345.9 691.8000000000001 3459 1979-06-22 2024-10-11 00:57:39.000 1979-06-22 2024-10-11 00:57:39 +3461 3461 3462 346.1 692.2 3461 1979-06-24 2024-10-11 00:57:41.000 1979-06-24 2024-10-11 00:57:41 +3462 3462 3463 346.2 692.4000000000001 3462 1979-06-25 2024-10-11 00:57:42.000 1979-06-25 2024-10-11 00:57:42 +3463 3463 3464 346.3 692.6 3463 1979-06-26 2024-10-11 00:57:43.000 1979-06-26 2024-10-11 00:57:43 +3464 3464 3465 346.4 692.8000000000001 3464 1979-06-27 2024-10-11 00:57:44.000 1979-06-27 2024-10-11 00:57:44 +3466 3466 3467 346.6 693.2 3466 1979-06-29 2024-10-11 00:57:46.000 1979-06-29 2024-10-11 00:57:46 +3467 3467 3468 346.7 693.4000000000001 3467 1979-06-30 2024-10-11 00:57:47.000 1979-06-30 2024-10-11 00:57:47 +3468 3468 3469 346.8 693.6 3468 1979-07-01 2024-10-11 00:57:48.000 1979-07-01 2024-10-11 00:57:48 +3469 3469 3470 346.9 693.8000000000001 3469 1979-07-02 2024-10-11 00:57:49.000 1979-07-02 2024-10-11 00:57:49 +3471 3471 3472 347.1 694.2 3471 1979-07-04 2024-10-11 00:57:51.000 1979-07-04 2024-10-11 00:57:51 +3472 3472 3473 347.2 694.4000000000001 3472 1979-07-05 2024-10-11 00:57:52.000 1979-07-05 2024-10-11 00:57:52 +3473 3473 3474 347.3 694.6 3473 1979-07-06 2024-10-11 00:57:53.000 1979-07-06 2024-10-11 00:57:53 +3474 3474 3475 347.4 694.8000000000001 3474 1979-07-07 2024-10-11 00:57:54.000 1979-07-07 2024-10-11 00:57:54 +3476 3476 3477 347.6 695.2 3476 1979-07-09 2024-10-11 00:57:56.000 1979-07-09 2024-10-11 00:57:56 +3477 3477 3478 347.7 695.4000000000001 3477 1979-07-10 2024-10-11 00:57:57.000 1979-07-10 2024-10-11 00:57:57 +3478 3478 3479 347.8 695.6 3478 1979-07-11 2024-10-11 00:57:58.000 1979-07-11 2024-10-11 00:57:58 +3479 3479 3480 347.9 695.8000000000001 3479 1979-07-12 2024-10-11 00:57:59.000 1979-07-12 2024-10-11 00:57:59 +3481 3481 3482 348.1 696.2 3481 1979-07-14 2024-10-11 00:58:01.000 1979-07-14 2024-10-11 00:58:01 +3482 3482 3483 348.2 696.4000000000001 3482 1979-07-15 2024-10-11 00:58:02.000 1979-07-15 2024-10-11 00:58:02 +3483 3483 3484 348.3 696.6 3483 1979-07-16 2024-10-11 00:58:03.000 1979-07-16 2024-10-11 00:58:03 +3484 3484 3485 348.4 696.8000000000001 3484 1979-07-17 2024-10-11 00:58:04.000 1979-07-17 2024-10-11 00:58:04 +3486 3486 3487 348.6 697.2 3486 1979-07-19 2024-10-11 00:58:06.000 1979-07-19 2024-10-11 00:58:06 +3487 3487 3488 348.7 697.4000000000001 3487 1979-07-20 2024-10-11 00:58:07.000 1979-07-20 2024-10-11 00:58:07 +3488 3488 3489 348.8 697.6 3488 1979-07-21 2024-10-11 00:58:08.000 1979-07-21 2024-10-11 00:58:08 +3489 3489 3490 348.9 697.8000000000001 3489 1979-07-22 2024-10-11 00:58:09.000 1979-07-22 2024-10-11 00:58:09 +3491 3491 3492 349.1 698.2 3491 1979-07-24 2024-10-11 00:58:11.000 1979-07-24 2024-10-11 00:58:11 +3492 3492 3493 349.2 698.4000000000001 3492 1979-07-25 2024-10-11 00:58:12.000 1979-07-25 2024-10-11 00:58:12 +3493 3493 3494 349.3 698.6 3493 1979-07-26 2024-10-11 00:58:13.000 1979-07-26 2024-10-11 00:58:13 +3494 3494 3495 349.4 698.8000000000001 3494 1979-07-27 2024-10-11 00:58:14.000 1979-07-27 2024-10-11 00:58:14 +3496 3496 3497 349.6 699.2 3496 1979-07-29 2024-10-11 00:58:16.000 1979-07-29 2024-10-11 00:58:16 +3497 3497 3498 349.7 699.4000000000001 3497 1979-07-30 2024-10-11 00:58:17.000 1979-07-30 2024-10-11 00:58:17 +3498 3498 3499 349.8 699.6 3498 1979-07-31 2024-10-11 00:58:18.000 1979-07-31 2024-10-11 00:58:18 +3499 3499 3500 349.9 699.8000000000001 3499 1979-08-01 2024-10-11 00:58:19.000 1979-08-01 2024-10-11 00:58:19 +3501 3501 3502 350.1 700.2 3501 1979-08-03 2024-10-11 00:58:21.000 1979-08-03 2024-10-11 00:58:21 +3502 3502 3503 350.2 700.4000000000001 3502 1979-08-04 2024-10-11 00:58:22.000 1979-08-04 2024-10-11 00:58:22 +3503 3503 3504 350.3 700.6 3503 1979-08-05 2024-10-11 00:58:23.000 1979-08-05 2024-10-11 00:58:23 +3504 3504 3505 350.4 700.8000000000001 3504 1979-08-06 2024-10-11 00:58:24.000 1979-08-06 2024-10-11 00:58:24 +3506 3506 3507 350.6 701.2 3506 1979-08-08 2024-10-11 00:58:26.000 1979-08-08 2024-10-11 00:58:26 +3507 3507 3508 350.7 701.4000000000001 3507 1979-08-09 2024-10-11 00:58:27.000 1979-08-09 2024-10-11 00:58:27 +3508 3508 3509 350.8 701.6 3508 1979-08-10 2024-10-11 00:58:28.000 1979-08-10 2024-10-11 00:58:28 +3509 3509 3510 350.9 701.8000000000001 3509 1979-08-11 2024-10-11 00:58:29.000 1979-08-11 2024-10-11 00:58:29 +3511 3511 3512 351.1 702.2 3511 1979-08-13 2024-10-11 00:58:31.000 1979-08-13 2024-10-11 00:58:31 +3512 3512 3513 351.2 702.4000000000001 3512 1979-08-14 2024-10-11 00:58:32.000 1979-08-14 2024-10-11 00:58:32 +3513 3513 3514 351.3 702.6 3513 1979-08-15 2024-10-11 00:58:33.000 1979-08-15 2024-10-11 00:58:33 +3514 3514 3515 351.4 702.8000000000001 3514 1979-08-16 2024-10-11 00:58:34.000 1979-08-16 2024-10-11 00:58:34 +3516 3516 3517 351.6 703.2 3516 1979-08-18 2024-10-11 00:58:36.000 1979-08-18 2024-10-11 00:58:36 +3517 3517 3518 351.7 703.4000000000001 3517 1979-08-19 2024-10-11 00:58:37.000 1979-08-19 2024-10-11 00:58:37 +3518 3518 3519 351.8 703.6 3518 1979-08-20 2024-10-11 00:58:38.000 1979-08-20 2024-10-11 00:58:38 +3519 3519 3520 351.9 703.8000000000001 3519 1979-08-21 2024-10-11 00:58:39.000 1979-08-21 2024-10-11 00:58:39 +3521 3521 3522 352.1 704.2 3521 1979-08-23 2024-10-11 00:58:41.000 1979-08-23 2024-10-11 00:58:41 +3522 3522 3523 352.2 704.4000000000001 3522 1979-08-24 2024-10-11 00:58:42.000 1979-08-24 2024-10-11 00:58:42 +3523 3523 3524 352.3 704.6 3523 1979-08-25 2024-10-11 00:58:43.000 1979-08-25 2024-10-11 00:58:43 +3524 3524 3525 352.4 704.8000000000001 3524 1979-08-26 2024-10-11 00:58:44.000 1979-08-26 2024-10-11 00:58:44 +3526 3526 3527 352.6 705.2 3526 1979-08-28 2024-10-11 00:58:46.000 1979-08-28 2024-10-11 00:58:46 +3527 3527 3528 352.7 705.4000000000001 3527 1979-08-29 2024-10-11 00:58:47.000 1979-08-29 2024-10-11 00:58:47 +3528 3528 3529 352.8 705.6 3528 1979-08-30 2024-10-11 00:58:48.000 1979-08-30 2024-10-11 00:58:48 +3529 3529 3530 352.9 705.8000000000001 3529 1979-08-31 2024-10-11 00:58:49.000 1979-08-31 2024-10-11 00:58:49 +3531 3531 3532 353.1 706.2 3531 1979-09-02 2024-10-11 00:58:51.000 1979-09-02 2024-10-11 00:58:51 +3532 3532 3533 353.2 706.4000000000001 3532 1979-09-03 2024-10-11 00:58:52.000 1979-09-03 2024-10-11 00:58:52 +3533 3533 3534 353.3 706.6 3533 1979-09-04 2024-10-11 00:58:53.000 1979-09-04 2024-10-11 00:58:53 +3534 3534 3535 353.4 706.8000000000001 3534 1979-09-05 2024-10-11 00:58:54.000 1979-09-05 2024-10-11 00:58:54 +3536 3536 3537 353.6 707.2 3536 1979-09-07 2024-10-11 00:58:56.000 1979-09-07 2024-10-11 00:58:56 +3537 3537 3538 353.7 707.4000000000001 3537 1979-09-08 2024-10-11 00:58:57.000 1979-09-08 2024-10-11 00:58:57 +3538 3538 3539 353.8 707.6 3538 1979-09-09 2024-10-11 00:58:58.000 1979-09-09 2024-10-11 00:58:58 +3539 3539 3540 353.9 707.8000000000001 3539 1979-09-10 2024-10-11 00:58:59.000 1979-09-10 2024-10-11 00:58:59 +3541 3541 3542 354.1 708.2 3541 1979-09-12 2024-10-11 00:59:01.000 1979-09-12 2024-10-11 00:59:01 +3542 3542 3543 354.2 708.4000000000001 3542 1979-09-13 2024-10-11 00:59:02.000 1979-09-13 2024-10-11 00:59:02 +3543 3543 3544 354.3 708.6 3543 1979-09-14 2024-10-11 00:59:03.000 1979-09-14 2024-10-11 00:59:03 +3544 3544 3545 354.4 708.8000000000001 3544 1979-09-15 2024-10-11 00:59:04.000 1979-09-15 2024-10-11 00:59:04 +3546 3546 3547 354.6 709.2 3546 1979-09-17 2024-10-11 00:59:06.000 1979-09-17 2024-10-11 00:59:06 +3547 3547 3548 354.7 709.4000000000001 3547 1979-09-18 2024-10-11 00:59:07.000 1979-09-18 2024-10-11 00:59:07 +3548 3548 3549 354.8 709.6 3548 1979-09-19 2024-10-11 00:59:08.000 1979-09-19 2024-10-11 00:59:08 +3549 3549 3550 354.9 709.8000000000001 3549 1979-09-20 2024-10-11 00:59:09.000 1979-09-20 2024-10-11 00:59:09 +3551 3551 3552 355.1 710.2 3551 1979-09-22 2024-10-11 00:59:11.000 1979-09-22 2024-10-11 00:59:11 +3552 3552 3553 355.2 710.4000000000001 3552 1979-09-23 2024-10-11 00:59:12.000 1979-09-23 2024-10-11 00:59:12 +3553 3553 3554 355.3 710.6 3553 1979-09-24 2024-10-11 00:59:13.000 1979-09-24 2024-10-11 00:59:13 +3554 3554 3555 355.4 710.8000000000001 3554 1979-09-25 2024-10-11 00:59:14.000 1979-09-25 2024-10-11 00:59:14 +3556 3556 3557 355.6 711.2 3556 1979-09-27 2024-10-11 00:59:16.000 1979-09-27 2024-10-11 00:59:16 +3557 3557 3558 355.7 711.4000000000001 3557 1979-09-28 2024-10-11 00:59:17.000 1979-09-28 2024-10-11 00:59:17 +3558 3558 3559 355.8 711.6 3558 1979-09-29 2024-10-11 00:59:18.000 1979-09-29 2024-10-11 00:59:18 +3559 3559 3560 355.9 711.8000000000001 3559 1979-09-30 2024-10-11 00:59:19.000 1979-09-30 2024-10-11 00:59:19 +3561 3561 3562 356.1 712.2 3561 1979-10-02 2024-10-11 00:59:21.000 1979-10-02 2024-10-11 00:59:21 +3562 3562 3563 356.2 712.4000000000001 3562 1979-10-03 2024-10-11 00:59:22.000 1979-10-03 2024-10-11 00:59:22 +3563 3563 3564 356.3 712.6 3563 1979-10-04 2024-10-11 00:59:23.000 1979-10-04 2024-10-11 00:59:23 +3564 3564 3565 356.4 712.8000000000001 3564 1979-10-05 2024-10-11 00:59:24.000 1979-10-05 2024-10-11 00:59:24 +3566 3566 3567 356.6 713.2 3566 1979-10-07 2024-10-11 00:59:26.000 1979-10-07 2024-10-11 00:59:26 +3567 3567 3568 356.7 713.4000000000001 3567 1979-10-08 2024-10-11 00:59:27.000 1979-10-08 2024-10-11 00:59:27 +3568 3568 3569 356.8 713.6 3568 1979-10-09 2024-10-11 00:59:28.000 1979-10-09 2024-10-11 00:59:28 +3569 3569 3570 356.9 713.8000000000001 3569 1979-10-10 2024-10-11 00:59:29.000 1979-10-10 2024-10-11 00:59:29 +3571 3571 3572 357.1 714.2 3571 1979-10-12 2024-10-11 00:59:31.000 1979-10-12 2024-10-11 00:59:31 +3572 3572 3573 357.2 714.4000000000001 3572 1979-10-13 2024-10-11 00:59:32.000 1979-10-13 2024-10-11 00:59:32 +3573 3573 3574 357.3 714.6 3573 1979-10-14 2024-10-11 00:59:33.000 1979-10-14 2024-10-11 00:59:33 +3574 3574 3575 357.4 714.8000000000001 3574 1979-10-15 2024-10-11 00:59:34.000 1979-10-15 2024-10-11 00:59:34 +3576 3576 3577 357.6 715.2 3576 1979-10-17 2024-10-11 00:59:36.000 1979-10-17 2024-10-11 00:59:36 +3577 3577 3578 357.7 715.4000000000001 3577 1979-10-18 2024-10-11 00:59:37.000 1979-10-18 2024-10-11 00:59:37 +3578 3578 3579 357.8 715.6 3578 1979-10-19 2024-10-11 00:59:38.000 1979-10-19 2024-10-11 00:59:38 +3579 3579 3580 357.9 715.8000000000001 3579 1979-10-20 2024-10-11 00:59:39.000 1979-10-20 2024-10-11 00:59:39 +3581 3581 3582 358.1 716.2 3581 1979-10-22 2024-10-11 00:59:41.000 1979-10-22 2024-10-11 00:59:41 +3582 3582 3583 358.2 716.4000000000001 3582 1979-10-23 2024-10-11 00:59:42.000 1979-10-23 2024-10-11 00:59:42 +3583 3583 3584 358.3 716.6 3583 1979-10-24 2024-10-11 00:59:43.000 1979-10-24 2024-10-11 00:59:43 +3584 3584 3585 358.4 716.8000000000001 3584 1979-10-25 2024-10-11 00:59:44.000 1979-10-25 2024-10-11 00:59:44 +3586 3586 3587 358.6 717.2 3586 1979-10-27 2024-10-11 00:59:46.000 1979-10-27 2024-10-11 00:59:46 +3587 3587 3588 358.7 717.4000000000001 3587 1979-10-28 2024-10-11 00:59:47.000 1979-10-28 2024-10-11 00:59:47 +3588 3588 3589 358.8 717.6 3588 1979-10-29 2024-10-11 00:59:48.000 1979-10-29 2024-10-11 00:59:48 +3589 3589 3590 358.9 717.8000000000001 3589 1979-10-30 2024-10-11 00:59:49.000 1979-10-30 2024-10-11 00:59:49 +3591 3591 3592 359.1 718.2 3591 1979-11-01 2024-10-11 00:59:51.000 1979-11-01 2024-10-11 00:59:51 +3592 3592 3593 359.2 718.4000000000001 3592 1979-11-02 2024-10-11 00:59:52.000 1979-11-02 2024-10-11 00:59:52 +3593 3593 3594 359.3 718.6 3593 1979-11-03 2024-10-11 00:59:53.000 1979-11-03 2024-10-11 00:59:53 +3594 3594 3595 359.4 718.8000000000001 3594 1979-11-04 2024-10-11 00:59:54.000 1979-11-04 2024-10-11 00:59:54 +3596 3596 3597 359.6 719.2 3596 1979-11-06 2024-10-11 00:59:56.000 1979-11-06 2024-10-11 00:59:56 +3597 3597 3598 359.7 719.4000000000001 3597 1979-11-07 2024-10-11 00:59:57.000 1979-11-07 2024-10-11 00:59:57 +3598 3598 3599 359.8 719.6 3598 1979-11-08 2024-10-11 00:59:58.000 1979-11-08 2024-10-11 00:59:58 +3599 3599 3600 359.9 719.8000000000001 3599 1979-11-09 2024-10-11 00:59:59.000 1979-11-09 2024-10-11 00:59:59 +3601 3601 3602 360.1 720.2 3601 1979-11-11 2024-10-11 01:00:01.000 1979-11-11 2024-10-11 01:00:01 +3602 3602 3603 360.2 720.4000000000001 3602 1979-11-12 2024-10-11 01:00:02.000 1979-11-12 2024-10-11 01:00:02 +3603 3603 3604 360.3 720.6 3603 1979-11-13 2024-10-11 01:00:03.000 1979-11-13 2024-10-11 01:00:03 +3604 3604 3605 360.4 720.8000000000001 3604 1979-11-14 2024-10-11 01:00:04.000 1979-11-14 2024-10-11 01:00:04 +3606 3606 3607 360.6 721.2 3606 1979-11-16 2024-10-11 01:00:06.000 1979-11-16 2024-10-11 01:00:06 +3607 3607 3608 360.7 721.4000000000001 3607 1979-11-17 2024-10-11 01:00:07.000 1979-11-17 2024-10-11 01:00:07 +3608 3608 3609 360.8 721.6 3608 1979-11-18 2024-10-11 01:00:08.000 1979-11-18 2024-10-11 01:00:08 +3609 3609 3610 360.9 721.8000000000001 3609 1979-11-19 2024-10-11 01:00:09.000 1979-11-19 2024-10-11 01:00:09 +3611 3611 3612 361.1 722.2 3611 1979-11-21 2024-10-11 01:00:11.000 1979-11-21 2024-10-11 01:00:11 +3612 3612 3613 361.2 722.4000000000001 3612 1979-11-22 2024-10-11 01:00:12.000 1979-11-22 2024-10-11 01:00:12 +3613 3613 3614 361.3 722.6 3613 1979-11-23 2024-10-11 01:00:13.000 1979-11-23 2024-10-11 01:00:13 +3614 3614 3615 361.4 722.8000000000001 3614 1979-11-24 2024-10-11 01:00:14.000 1979-11-24 2024-10-11 01:00:14 +3616 3616 3617 361.6 723.2 3616 1979-11-26 2024-10-11 01:00:16.000 1979-11-26 2024-10-11 01:00:16 +3617 3617 3618 361.7 723.4000000000001 3617 1979-11-27 2024-10-11 01:00:17.000 1979-11-27 2024-10-11 01:00:17 +3618 3618 3619 361.8 723.6 3618 1979-11-28 2024-10-11 01:00:18.000 1979-11-28 2024-10-11 01:00:18 +3619 3619 3620 361.9 723.8000000000001 3619 1979-11-29 2024-10-11 01:00:19.000 1979-11-29 2024-10-11 01:00:19 +3621 3621 3622 362.1 724.2 3621 1979-12-01 2024-10-11 01:00:21.000 1979-12-01 2024-10-11 01:00:21 +3622 3622 3623 362.2 724.4000000000001 3622 1979-12-02 2024-10-11 01:00:22.000 1979-12-02 2024-10-11 01:00:22 +3623 3623 3624 362.3 724.6 3623 1979-12-03 2024-10-11 01:00:23.000 1979-12-03 2024-10-11 01:00:23 +3624 3624 3625 362.4 724.8000000000001 3624 1979-12-04 2024-10-11 01:00:24.000 1979-12-04 2024-10-11 01:00:24 +3626 3626 3627 362.6 725.2 3626 1979-12-06 2024-10-11 01:00:26.000 1979-12-06 2024-10-11 01:00:26 +3627 3627 3628 362.7 725.4000000000001 3627 1979-12-07 2024-10-11 01:00:27.000 1979-12-07 2024-10-11 01:00:27 +3628 3628 3629 362.8 725.6 3628 1979-12-08 2024-10-11 01:00:28.000 1979-12-08 2024-10-11 01:00:28 +3629 3629 3630 362.9 725.8000000000001 3629 1979-12-09 2024-10-11 01:00:29.000 1979-12-09 2024-10-11 01:00:29 +3631 3631 3632 363.1 726.2 3631 1979-12-11 2024-10-11 01:00:31.000 1979-12-11 2024-10-11 01:00:31 +3632 3632 3633 363.2 726.4000000000001 3632 1979-12-12 2024-10-11 01:00:32.000 1979-12-12 2024-10-11 01:00:32 +3633 3633 3634 363.3 726.6 3633 1979-12-13 2024-10-11 01:00:33.000 1979-12-13 2024-10-11 01:00:33 +3634 3634 3635 363.4 726.8000000000001 3634 1979-12-14 2024-10-11 01:00:34.000 1979-12-14 2024-10-11 01:00:34 +3636 3636 3637 363.6 727.2 3636 1979-12-16 2024-10-11 01:00:36.000 1979-12-16 2024-10-11 01:00:36 +3637 3637 3638 363.7 727.4000000000001 3637 1979-12-17 2024-10-11 01:00:37.000 1979-12-17 2024-10-11 01:00:37 +3638 3638 3639 363.8 727.6 3638 1979-12-18 2024-10-11 01:00:38.000 1979-12-18 2024-10-11 01:00:38 +3639 3639 3640 363.9 727.8000000000001 3639 1979-12-19 2024-10-11 01:00:39.000 1979-12-19 2024-10-11 01:00:39 +3641 3641 3642 364.1 728.2 3641 1979-12-21 2024-10-11 01:00:41.000 1979-12-21 2024-10-11 01:00:41 +3642 3642 3643 364.2 728.4000000000001 3642 1979-12-22 2024-10-11 01:00:42.000 1979-12-22 2024-10-11 01:00:42 +3643 3643 3644 364.3 728.6 3643 1979-12-23 2024-10-11 01:00:43.000 1979-12-23 2024-10-11 01:00:43 +3644 3644 3645 364.4 728.8000000000001 3644 1979-12-24 2024-10-11 01:00:44.000 1979-12-24 2024-10-11 01:00:44 +3646 3646 3647 364.6 729.2 3646 1979-12-26 2024-10-11 01:00:46.000 1979-12-26 2024-10-11 01:00:46 +3647 3647 3648 364.7 729.4000000000001 3647 1979-12-27 2024-10-11 01:00:47.000 1979-12-27 2024-10-11 01:00:47 +3648 3648 3649 364.8 729.6 3648 1979-12-28 2024-10-11 01:00:48.000 1979-12-28 2024-10-11 01:00:48 +3649 3649 3650 364.9 729.8000000000001 3649 1979-12-29 2024-10-11 01:00:49.000 1979-12-29 2024-10-11 01:00:49 +3651 3651 3652 365.1 730.2 3651 1979-12-31 2024-10-11 01:00:51.000 1979-12-31 2024-10-11 01:00:51 +3652 3652 3653 365.2 730.4000000000001 3652 1980-01-01 2024-10-11 01:00:52.000 1980-01-01 2024-10-11 01:00:52 +3653 3653 3654 365.3 730.6 3653 1980-01-02 2024-10-11 01:00:53.000 1980-01-02 2024-10-11 01:00:53 +3654 3654 3655 365.4 730.8000000000001 3654 1980-01-03 2024-10-11 01:00:54.000 1980-01-03 2024-10-11 01:00:54 +3656 3656 3657 365.6 731.2 3656 1980-01-05 2024-10-11 01:00:56.000 1980-01-05 2024-10-11 01:00:56 +3657 3657 3658 365.7 731.4000000000001 3657 1980-01-06 2024-10-11 01:00:57.000 1980-01-06 2024-10-11 01:00:57 +3658 3658 3659 365.8 731.6 3658 1980-01-07 2024-10-11 01:00:58.000 1980-01-07 2024-10-11 01:00:58 +3659 3659 3660 365.9 731.8000000000001 3659 1980-01-08 2024-10-11 01:00:59.000 1980-01-08 2024-10-11 01:00:59 +3661 3661 3662 366.1 732.2 3661 1980-01-10 2024-10-11 01:01:01.000 1980-01-10 2024-10-11 01:01:01 +3662 3662 3663 366.2 732.4000000000001 3662 1980-01-11 2024-10-11 01:01:02.000 1980-01-11 2024-10-11 01:01:02 +3663 3663 3664 366.3 732.6 3663 1980-01-12 2024-10-11 01:01:03.000 1980-01-12 2024-10-11 01:01:03 +3664 3664 3665 366.4 732.8000000000001 3664 1980-01-13 2024-10-11 01:01:04.000 1980-01-13 2024-10-11 01:01:04 +3666 3666 3667 366.6 733.2 3666 1980-01-15 2024-10-11 01:01:06.000 1980-01-15 2024-10-11 01:01:06 +3667 3667 3668 366.7 733.4000000000001 3667 1980-01-16 2024-10-11 01:01:07.000 1980-01-16 2024-10-11 01:01:07 +3668 3668 3669 366.8 733.6 3668 1980-01-17 2024-10-11 01:01:08.000 1980-01-17 2024-10-11 01:01:08 +3669 3669 3670 366.9 733.8000000000001 3669 1980-01-18 2024-10-11 01:01:09.000 1980-01-18 2024-10-11 01:01:09 +3671 3671 3672 367.1 734.2 3671 1980-01-20 2024-10-11 01:01:11.000 1980-01-20 2024-10-11 01:01:11 +3672 3672 3673 367.2 734.4000000000001 3672 1980-01-21 2024-10-11 01:01:12.000 1980-01-21 2024-10-11 01:01:12 +3673 3673 3674 367.3 734.6 3673 1980-01-22 2024-10-11 01:01:13.000 1980-01-22 2024-10-11 01:01:13 +3674 3674 3675 367.4 734.8000000000001 3674 1980-01-23 2024-10-11 01:01:14.000 1980-01-23 2024-10-11 01:01:14 +3676 3676 3677 367.6 735.2 3676 1980-01-25 2024-10-11 01:01:16.000 1980-01-25 2024-10-11 01:01:16 +3677 3677 3678 367.7 735.4000000000001 3677 1980-01-26 2024-10-11 01:01:17.000 1980-01-26 2024-10-11 01:01:17 +3678 3678 3679 367.8 735.6 3678 1980-01-27 2024-10-11 01:01:18.000 1980-01-27 2024-10-11 01:01:18 +3679 3679 3680 367.9 735.8000000000001 3679 1980-01-28 2024-10-11 01:01:19.000 1980-01-28 2024-10-11 01:01:19 +3681 3681 3682 368.1 736.2 3681 1980-01-30 2024-10-11 01:01:21.000 1980-01-30 2024-10-11 01:01:21 +3682 3682 3683 368.2 736.4000000000001 3682 1980-01-31 2024-10-11 01:01:22.000 1980-01-31 2024-10-11 01:01:22 +3683 3683 3684 368.3 736.6 3683 1980-02-01 2024-10-11 01:01:23.000 1980-02-01 2024-10-11 01:01:23 +3684 3684 3685 368.4 736.8000000000001 3684 1980-02-02 2024-10-11 01:01:24.000 1980-02-02 2024-10-11 01:01:24 +3686 3686 3687 368.6 737.2 3686 1980-02-04 2024-10-11 01:01:26.000 1980-02-04 2024-10-11 01:01:26 +3687 3687 3688 368.7 737.4000000000001 3687 1980-02-05 2024-10-11 01:01:27.000 1980-02-05 2024-10-11 01:01:27 +3688 3688 3689 368.8 737.6 3688 1980-02-06 2024-10-11 01:01:28.000 1980-02-06 2024-10-11 01:01:28 +3689 3689 3690 368.9 737.8000000000001 3689 1980-02-07 2024-10-11 01:01:29.000 1980-02-07 2024-10-11 01:01:29 +3691 3691 3692 369.1 738.2 3691 1980-02-09 2024-10-11 01:01:31.000 1980-02-09 2024-10-11 01:01:31 +3692 3692 3693 369.2 738.4000000000001 3692 1980-02-10 2024-10-11 01:01:32.000 1980-02-10 2024-10-11 01:01:32 +3693 3693 3694 369.3 738.6 3693 1980-02-11 2024-10-11 01:01:33.000 1980-02-11 2024-10-11 01:01:33 +3694 3694 3695 369.4 738.8000000000001 3694 1980-02-12 2024-10-11 01:01:34.000 1980-02-12 2024-10-11 01:01:34 +3696 3696 3697 369.6 739.2 3696 1980-02-14 2024-10-11 01:01:36.000 1980-02-14 2024-10-11 01:01:36 +3697 3697 3698 369.7 739.4000000000001 3697 1980-02-15 2024-10-11 01:01:37.000 1980-02-15 2024-10-11 01:01:37 +3698 3698 3699 369.8 739.6 3698 1980-02-16 2024-10-11 01:01:38.000 1980-02-16 2024-10-11 01:01:38 +3699 3699 3700 369.9 739.8000000000001 3699 1980-02-17 2024-10-11 01:01:39.000 1980-02-17 2024-10-11 01:01:39 +3701 3701 3702 370.1 740.2 3701 1980-02-19 2024-10-11 01:01:41.000 1980-02-19 2024-10-11 01:01:41 +3702 3702 3703 370.2 740.4000000000001 3702 1980-02-20 2024-10-11 01:01:42.000 1980-02-20 2024-10-11 01:01:42 +3703 3703 3704 370.3 740.6 3703 1980-02-21 2024-10-11 01:01:43.000 1980-02-21 2024-10-11 01:01:43 +3704 3704 3705 370.4 740.8000000000001 3704 1980-02-22 2024-10-11 01:01:44.000 1980-02-22 2024-10-11 01:01:44 +3706 3706 3707 370.6 741.2 3706 1980-02-24 2024-10-11 01:01:46.000 1980-02-24 2024-10-11 01:01:46 +3707 3707 3708 370.7 741.4000000000001 3707 1980-02-25 2024-10-11 01:01:47.000 1980-02-25 2024-10-11 01:01:47 +3708 3708 3709 370.8 741.6 3708 1980-02-26 2024-10-11 01:01:48.000 1980-02-26 2024-10-11 01:01:48 +3709 3709 3710 370.9 741.8000000000001 3709 1980-02-27 2024-10-11 01:01:49.000 1980-02-27 2024-10-11 01:01:49 +3711 3711 3712 371.1 742.2 3711 1980-02-29 2024-10-11 01:01:51.000 1980-02-29 2024-10-11 01:01:51 +3712 3712 3713 371.2 742.4000000000001 3712 1980-03-01 2024-10-11 01:01:52.000 1980-03-01 2024-10-11 01:01:52 +3713 3713 3714 371.3 742.6 3713 1980-03-02 2024-10-11 01:01:53.000 1980-03-02 2024-10-11 01:01:53 +3714 3714 3715 371.4 742.8000000000001 3714 1980-03-03 2024-10-11 01:01:54.000 1980-03-03 2024-10-11 01:01:54 +3716 3716 3717 371.6 743.2 3716 1980-03-05 2024-10-11 01:01:56.000 1980-03-05 2024-10-11 01:01:56 +3717 3717 3718 371.7 743.4000000000001 3717 1980-03-06 2024-10-11 01:01:57.000 1980-03-06 2024-10-11 01:01:57 +3718 3718 3719 371.8 743.6 3718 1980-03-07 2024-10-11 01:01:58.000 1980-03-07 2024-10-11 01:01:58 +3719 3719 3720 371.9 743.8000000000001 3719 1980-03-08 2024-10-11 01:01:59.000 1980-03-08 2024-10-11 01:01:59 +3721 3721 3722 372.1 744.2 3721 1980-03-10 2024-10-11 01:02:01.000 1980-03-10 2024-10-11 01:02:01 +3722 3722 3723 372.2 744.4000000000001 3722 1980-03-11 2024-10-11 01:02:02.000 1980-03-11 2024-10-11 01:02:02 +3723 3723 3724 372.3 744.6 3723 1980-03-12 2024-10-11 01:02:03.000 1980-03-12 2024-10-11 01:02:03 +3724 3724 3725 372.4 744.8000000000001 3724 1980-03-13 2024-10-11 01:02:04.000 1980-03-13 2024-10-11 01:02:04 +3726 3726 3727 372.6 745.2 3726 1980-03-15 2024-10-11 01:02:06.000 1980-03-15 2024-10-11 01:02:06 +3727 3727 3728 372.7 745.4000000000001 3727 1980-03-16 2024-10-11 01:02:07.000 1980-03-16 2024-10-11 01:02:07 +3728 3728 3729 372.8 745.6 3728 1980-03-17 2024-10-11 01:02:08.000 1980-03-17 2024-10-11 01:02:08 +3729 3729 3730 372.9 745.8000000000001 3729 1980-03-18 2024-10-11 01:02:09.000 1980-03-18 2024-10-11 01:02:09 +3731 3731 3732 373.1 746.2 3731 1980-03-20 2024-10-11 01:02:11.000 1980-03-20 2024-10-11 01:02:11 +3732 3732 3733 373.2 746.4000000000001 3732 1980-03-21 2024-10-11 01:02:12.000 1980-03-21 2024-10-11 01:02:12 +3733 3733 3734 373.3 746.6 3733 1980-03-22 2024-10-11 01:02:13.000 1980-03-22 2024-10-11 01:02:13 +3734 3734 3735 373.4 746.8000000000001 3734 1980-03-23 2024-10-11 01:02:14.000 1980-03-23 2024-10-11 01:02:14 +3736 3736 3737 373.6 747.2 3736 1980-03-25 2024-10-11 01:02:16.000 1980-03-25 2024-10-11 01:02:16 +3737 3737 3738 373.7 747.4000000000001 3737 1980-03-26 2024-10-11 01:02:17.000 1980-03-26 2024-10-11 01:02:17 +3738 3738 3739 373.8 747.6 3738 1980-03-27 2024-10-11 01:02:18.000 1980-03-27 2024-10-11 01:02:18 +3739 3739 3740 373.9 747.8000000000001 3739 1980-03-28 2024-10-11 01:02:19.000 1980-03-28 2024-10-11 01:02:19 +3741 3741 3742 374.1 748.2 3741 1980-03-30 2024-10-11 01:02:21.000 1980-03-30 2024-10-11 01:02:21 +3742 3742 3743 374.2 748.4000000000001 3742 1980-03-31 2024-10-11 01:02:22.000 1980-03-31 2024-10-11 01:02:22 +3743 3743 3744 374.3 748.6 3743 1980-04-01 2024-10-11 01:02:23.000 1980-04-01 2024-10-11 01:02:23 +3744 3744 3745 374.4 748.8000000000001 3744 1980-04-02 2024-10-11 01:02:24.000 1980-04-02 2024-10-11 01:02:24 +3746 3746 3747 374.6 749.2 3746 1980-04-04 2024-10-11 01:02:26.000 1980-04-04 2024-10-11 01:02:26 +3747 3747 3748 374.7 749.4000000000001 3747 1980-04-05 2024-10-11 01:02:27.000 1980-04-05 2024-10-11 01:02:27 +3748 3748 3749 374.8 749.6 3748 1980-04-06 2024-10-11 01:02:28.000 1980-04-06 2024-10-11 01:02:28 +3749 3749 3750 374.9 749.8000000000001 3749 1980-04-07 2024-10-11 01:02:29.000 1980-04-07 2024-10-11 01:02:29 +3751 3751 3752 375.1 750.2 3751 1980-04-09 2024-10-11 01:02:31.000 1980-04-09 2024-10-11 01:02:31 +3752 3752 3753 375.2 750.4000000000001 3752 1980-04-10 2024-10-11 01:02:32.000 1980-04-10 2024-10-11 01:02:32 +3753 3753 3754 375.3 750.6 3753 1980-04-11 2024-10-11 01:02:33.000 1980-04-11 2024-10-11 01:02:33 +3754 3754 3755 375.4 750.8000000000001 3754 1980-04-12 2024-10-11 01:02:34.000 1980-04-12 2024-10-11 01:02:34 +3756 3756 3757 375.6 751.2 3756 1980-04-14 2024-10-11 01:02:36.000 1980-04-14 2024-10-11 01:02:36 +3757 3757 3758 375.7 751.4000000000001 3757 1980-04-15 2024-10-11 01:02:37.000 1980-04-15 2024-10-11 01:02:37 +3758 3758 3759 375.8 751.6 3758 1980-04-16 2024-10-11 01:02:38.000 1980-04-16 2024-10-11 01:02:38 +3759 3759 3760 375.9 751.8000000000001 3759 1980-04-17 2024-10-11 01:02:39.000 1980-04-17 2024-10-11 01:02:39 +3761 3761 3762 376.1 752.2 3761 1980-04-19 2024-10-11 01:02:41.000 1980-04-19 2024-10-11 01:02:41 +3762 3762 3763 376.2 752.4000000000001 3762 1980-04-20 2024-10-11 01:02:42.000 1980-04-20 2024-10-11 01:02:42 +3763 3763 3764 376.3 752.6 3763 1980-04-21 2024-10-11 01:02:43.000 1980-04-21 2024-10-11 01:02:43 +3764 3764 3765 376.4 752.8000000000001 3764 1980-04-22 2024-10-11 01:02:44.000 1980-04-22 2024-10-11 01:02:44 +3766 3766 3767 376.6 753.2 3766 1980-04-24 2024-10-11 01:02:46.000 1980-04-24 2024-10-11 01:02:46 +3767 3767 3768 376.7 753.4000000000001 3767 1980-04-25 2024-10-11 01:02:47.000 1980-04-25 2024-10-11 01:02:47 +3768 3768 3769 376.8 753.6 3768 1980-04-26 2024-10-11 01:02:48.000 1980-04-26 2024-10-11 01:02:48 +3769 3769 3770 376.9 753.8000000000001 3769 1980-04-27 2024-10-11 01:02:49.000 1980-04-27 2024-10-11 01:02:49 +3771 3771 3772 377.1 754.2 3771 1980-04-29 2024-10-11 01:02:51.000 1980-04-29 2024-10-11 01:02:51 +3772 3772 3773 377.2 754.4000000000001 3772 1980-04-30 2024-10-11 01:02:52.000 1980-04-30 2024-10-11 01:02:52 +3773 3773 3774 377.3 754.6 3773 1980-05-01 2024-10-11 01:02:53.000 1980-05-01 2024-10-11 01:02:53 +3774 3774 3775 377.4 754.8000000000001 3774 1980-05-02 2024-10-11 01:02:54.000 1980-05-02 2024-10-11 01:02:54 +3776 3776 3777 377.6 755.2 3776 1980-05-04 2024-10-11 01:02:56.000 1980-05-04 2024-10-11 01:02:56 +3777 3777 3778 377.7 755.4000000000001 3777 1980-05-05 2024-10-11 01:02:57.000 1980-05-05 2024-10-11 01:02:57 +3778 3778 3779 377.8 755.6 3778 1980-05-06 2024-10-11 01:02:58.000 1980-05-06 2024-10-11 01:02:58 +3779 3779 3780 377.9 755.8000000000001 3779 1980-05-07 2024-10-11 01:02:59.000 1980-05-07 2024-10-11 01:02:59 +3781 3781 3782 378.1 756.2 3781 1980-05-09 2024-10-11 01:03:01.000 1980-05-09 2024-10-11 01:03:01 +3782 3782 3783 378.2 756.4000000000001 3782 1980-05-10 2024-10-11 01:03:02.000 1980-05-10 2024-10-11 01:03:02 +3783 3783 3784 378.3 756.6 3783 1980-05-11 2024-10-11 01:03:03.000 1980-05-11 2024-10-11 01:03:03 +3784 3784 3785 378.4 756.8000000000001 3784 1980-05-12 2024-10-11 01:03:04.000 1980-05-12 2024-10-11 01:03:04 +3786 3786 3787 378.6 757.2 3786 1980-05-14 2024-10-11 01:03:06.000 1980-05-14 2024-10-11 01:03:06 +3787 3787 3788 378.7 757.4000000000001 3787 1980-05-15 2024-10-11 01:03:07.000 1980-05-15 2024-10-11 01:03:07 +3788 3788 3789 378.8 757.6 3788 1980-05-16 2024-10-11 01:03:08.000 1980-05-16 2024-10-11 01:03:08 +3789 3789 3790 378.9 757.8000000000001 3789 1980-05-17 2024-10-11 01:03:09.000 1980-05-17 2024-10-11 01:03:09 +3791 3791 3792 379.1 758.2 3791 1980-05-19 2024-10-11 01:03:11.000 1980-05-19 2024-10-11 01:03:11 +3792 3792 3793 379.2 758.4000000000001 3792 1980-05-20 2024-10-11 01:03:12.000 1980-05-20 2024-10-11 01:03:12 +3793 3793 3794 379.3 758.6 3793 1980-05-21 2024-10-11 01:03:13.000 1980-05-21 2024-10-11 01:03:13 +3794 3794 3795 379.4 758.8000000000001 3794 1980-05-22 2024-10-11 01:03:14.000 1980-05-22 2024-10-11 01:03:14 +3796 3796 3797 379.6 759.2 3796 1980-05-24 2024-10-11 01:03:16.000 1980-05-24 2024-10-11 01:03:16 +3797 3797 3798 379.7 759.4000000000001 3797 1980-05-25 2024-10-11 01:03:17.000 1980-05-25 2024-10-11 01:03:17 +3798 3798 3799 379.8 759.6 3798 1980-05-26 2024-10-11 01:03:18.000 1980-05-26 2024-10-11 01:03:18 +3799 3799 3800 379.9 759.8000000000001 3799 1980-05-27 2024-10-11 01:03:19.000 1980-05-27 2024-10-11 01:03:19 +3801 3801 3802 380.1 760.2 3801 1980-05-29 2024-10-11 01:03:21.000 1980-05-29 2024-10-11 01:03:21 +3802 3802 3803 380.2 760.4000000000001 3802 1980-05-30 2024-10-11 01:03:22.000 1980-05-30 2024-10-11 01:03:22 +3803 3803 3804 380.3 760.6 3803 1980-05-31 2024-10-11 01:03:23.000 1980-05-31 2024-10-11 01:03:23 +3804 3804 3805 380.4 760.8000000000001 3804 1980-06-01 2024-10-11 01:03:24.000 1980-06-01 2024-10-11 01:03:24 +3806 3806 3807 380.6 761.2 3806 1980-06-03 2024-10-11 01:03:26.000 1980-06-03 2024-10-11 01:03:26 +3807 3807 3808 380.7 761.4000000000001 3807 1980-06-04 2024-10-11 01:03:27.000 1980-06-04 2024-10-11 01:03:27 +3808 3808 3809 380.8 761.6 3808 1980-06-05 2024-10-11 01:03:28.000 1980-06-05 2024-10-11 01:03:28 +3809 3809 3810 380.9 761.8000000000001 3809 1980-06-06 2024-10-11 01:03:29.000 1980-06-06 2024-10-11 01:03:29 +3811 3811 3812 381.1 762.2 3811 1980-06-08 2024-10-11 01:03:31.000 1980-06-08 2024-10-11 01:03:31 +3812 3812 3813 381.2 762.4000000000001 3812 1980-06-09 2024-10-11 01:03:32.000 1980-06-09 2024-10-11 01:03:32 +3813 3813 3814 381.3 762.6 3813 1980-06-10 2024-10-11 01:03:33.000 1980-06-10 2024-10-11 01:03:33 +3814 3814 3815 381.4 762.8000000000001 3814 1980-06-11 2024-10-11 01:03:34.000 1980-06-11 2024-10-11 01:03:34 +3816 3816 3817 381.6 763.2 3816 1980-06-13 2024-10-11 01:03:36.000 1980-06-13 2024-10-11 01:03:36 +3817 3817 3818 381.7 763.4000000000001 3817 1980-06-14 2024-10-11 01:03:37.000 1980-06-14 2024-10-11 01:03:37 +3818 3818 3819 381.8 763.6 3818 1980-06-15 2024-10-11 01:03:38.000 1980-06-15 2024-10-11 01:03:38 +3819 3819 3820 381.9 763.8000000000001 3819 1980-06-16 2024-10-11 01:03:39.000 1980-06-16 2024-10-11 01:03:39 +3821 3821 3822 382.1 764.2 3821 1980-06-18 2024-10-11 01:03:41.000 1980-06-18 2024-10-11 01:03:41 +3822 3822 3823 382.2 764.4000000000001 3822 1980-06-19 2024-10-11 01:03:42.000 1980-06-19 2024-10-11 01:03:42 +3823 3823 3824 382.3 764.6 3823 1980-06-20 2024-10-11 01:03:43.000 1980-06-20 2024-10-11 01:03:43 +3824 3824 3825 382.4 764.8000000000001 3824 1980-06-21 2024-10-11 01:03:44.000 1980-06-21 2024-10-11 01:03:44 +3826 3826 3827 382.6 765.2 3826 1980-06-23 2024-10-11 01:03:46.000 1980-06-23 2024-10-11 01:03:46 +3827 3827 3828 382.7 765.4000000000001 3827 1980-06-24 2024-10-11 01:03:47.000 1980-06-24 2024-10-11 01:03:47 +3828 3828 3829 382.8 765.6 3828 1980-06-25 2024-10-11 01:03:48.000 1980-06-25 2024-10-11 01:03:48 +3829 3829 3830 382.9 765.8000000000001 3829 1980-06-26 2024-10-11 01:03:49.000 1980-06-26 2024-10-11 01:03:49 +3831 3831 3832 383.1 766.2 3831 1980-06-28 2024-10-11 01:03:51.000 1980-06-28 2024-10-11 01:03:51 +3832 3832 3833 383.2 766.4000000000001 3832 1980-06-29 2024-10-11 01:03:52.000 1980-06-29 2024-10-11 01:03:52 +3833 3833 3834 383.3 766.6 3833 1980-06-30 2024-10-11 01:03:53.000 1980-06-30 2024-10-11 01:03:53 +3834 3834 3835 383.4 766.8000000000001 3834 1980-07-01 2024-10-11 01:03:54.000 1980-07-01 2024-10-11 01:03:54 +3836 3836 3837 383.6 767.2 3836 1980-07-03 2024-10-11 01:03:56.000 1980-07-03 2024-10-11 01:03:56 +3837 3837 3838 383.7 767.4000000000001 3837 1980-07-04 2024-10-11 01:03:57.000 1980-07-04 2024-10-11 01:03:57 +3838 3838 3839 383.8 767.6 3838 1980-07-05 2024-10-11 01:03:58.000 1980-07-05 2024-10-11 01:03:58 +3839 3839 3840 383.9 767.8000000000001 3839 1980-07-06 2024-10-11 01:03:59.000 1980-07-06 2024-10-11 01:03:59 +3841 3841 3842 384.1 768.2 3841 1980-07-08 2024-10-11 01:04:01.000 1980-07-08 2024-10-11 01:04:01 +3842 3842 3843 384.2 768.4000000000001 3842 1980-07-09 2024-10-11 01:04:02.000 1980-07-09 2024-10-11 01:04:02 +3843 3843 3844 384.3 768.6 3843 1980-07-10 2024-10-11 01:04:03.000 1980-07-10 2024-10-11 01:04:03 +3844 3844 3845 384.4 768.8000000000001 3844 1980-07-11 2024-10-11 01:04:04.000 1980-07-11 2024-10-11 01:04:04 +3846 3846 3847 384.6 769.2 3846 1980-07-13 2024-10-11 01:04:06.000 1980-07-13 2024-10-11 01:04:06 +3847 3847 3848 384.7 769.4000000000001 3847 1980-07-14 2024-10-11 01:04:07.000 1980-07-14 2024-10-11 01:04:07 +3848 3848 3849 384.8 769.6 3848 1980-07-15 2024-10-11 01:04:08.000 1980-07-15 2024-10-11 01:04:08 +3849 3849 3850 384.9 769.8000000000001 3849 1980-07-16 2024-10-11 01:04:09.000 1980-07-16 2024-10-11 01:04:09 +3851 3851 3852 385.1 770.2 3851 1980-07-18 2024-10-11 01:04:11.000 1980-07-18 2024-10-11 01:04:11 +3852 3852 3853 385.2 770.4000000000001 3852 1980-07-19 2024-10-11 01:04:12.000 1980-07-19 2024-10-11 01:04:12 +3853 3853 3854 385.3 770.6 3853 1980-07-20 2024-10-11 01:04:13.000 1980-07-20 2024-10-11 01:04:13 +3854 3854 3855 385.4 770.8000000000001 3854 1980-07-21 2024-10-11 01:04:14.000 1980-07-21 2024-10-11 01:04:14 +3856 3856 3857 385.6 771.2 3856 1980-07-23 2024-10-11 01:04:16.000 1980-07-23 2024-10-11 01:04:16 +3857 3857 3858 385.7 771.4000000000001 3857 1980-07-24 2024-10-11 01:04:17.000 1980-07-24 2024-10-11 01:04:17 +3858 3858 3859 385.8 771.6 3858 1980-07-25 2024-10-11 01:04:18.000 1980-07-25 2024-10-11 01:04:18 +3859 3859 3860 385.9 771.8000000000001 3859 1980-07-26 2024-10-11 01:04:19.000 1980-07-26 2024-10-11 01:04:19 +3861 3861 3862 386.1 772.2 3861 1980-07-28 2024-10-11 01:04:21.000 1980-07-28 2024-10-11 01:04:21 +3862 3862 3863 386.2 772.4000000000001 3862 1980-07-29 2024-10-11 01:04:22.000 1980-07-29 2024-10-11 01:04:22 +3863 3863 3864 386.3 772.6 3863 1980-07-30 2024-10-11 01:04:23.000 1980-07-30 2024-10-11 01:04:23 +3864 3864 3865 386.4 772.8000000000001 3864 1980-07-31 2024-10-11 01:04:24.000 1980-07-31 2024-10-11 01:04:24 +3866 3866 3867 386.6 773.2 3866 1980-08-02 2024-10-11 01:04:26.000 1980-08-02 2024-10-11 01:04:26 +3867 3867 3868 386.7 773.4000000000001 3867 1980-08-03 2024-10-11 01:04:27.000 1980-08-03 2024-10-11 01:04:27 +3868 3868 3869 386.8 773.6 3868 1980-08-04 2024-10-11 01:04:28.000 1980-08-04 2024-10-11 01:04:28 +3869 3869 3870 386.9 773.8000000000001 3869 1980-08-05 2024-10-11 01:04:29.000 1980-08-05 2024-10-11 01:04:29 +3871 3871 3872 387.1 774.2 3871 1980-08-07 2024-10-11 01:04:31.000 1980-08-07 2024-10-11 01:04:31 +3872 3872 3873 387.2 774.4000000000001 3872 1980-08-08 2024-10-11 01:04:32.000 1980-08-08 2024-10-11 01:04:32 +3873 3873 3874 387.3 774.6 3873 1980-08-09 2024-10-11 01:04:33.000 1980-08-09 2024-10-11 01:04:33 +3874 3874 3875 387.4 774.8000000000001 3874 1980-08-10 2024-10-11 01:04:34.000 1980-08-10 2024-10-11 01:04:34 +3876 3876 3877 387.6 775.2 3876 1980-08-12 2024-10-11 01:04:36.000 1980-08-12 2024-10-11 01:04:36 +3877 3877 3878 387.7 775.4000000000001 3877 1980-08-13 2024-10-11 01:04:37.000 1980-08-13 2024-10-11 01:04:37 +3878 3878 3879 387.8 775.6 3878 1980-08-14 2024-10-11 01:04:38.000 1980-08-14 2024-10-11 01:04:38 +3879 3879 3880 387.9 775.8000000000001 3879 1980-08-15 2024-10-11 01:04:39.000 1980-08-15 2024-10-11 01:04:39 +3881 3881 3882 388.1 776.2 3881 1980-08-17 2024-10-11 01:04:41.000 1980-08-17 2024-10-11 01:04:41 +3882 3882 3883 388.2 776.4000000000001 3882 1980-08-18 2024-10-11 01:04:42.000 1980-08-18 2024-10-11 01:04:42 +3883 3883 3884 388.3 776.6 3883 1980-08-19 2024-10-11 01:04:43.000 1980-08-19 2024-10-11 01:04:43 +3884 3884 3885 388.4 776.8000000000001 3884 1980-08-20 2024-10-11 01:04:44.000 1980-08-20 2024-10-11 01:04:44 +3886 3886 3887 388.6 777.2 3886 1980-08-22 2024-10-11 01:04:46.000 1980-08-22 2024-10-11 01:04:46 +3887 3887 3888 388.7 777.4000000000001 3887 1980-08-23 2024-10-11 01:04:47.000 1980-08-23 2024-10-11 01:04:47 +3888 3888 3889 388.8 777.6 3888 1980-08-24 2024-10-11 01:04:48.000 1980-08-24 2024-10-11 01:04:48 +3889 3889 3890 388.9 777.8000000000001 3889 1980-08-25 2024-10-11 01:04:49.000 1980-08-25 2024-10-11 01:04:49 +3891 3891 3892 389.1 778.2 3891 1980-08-27 2024-10-11 01:04:51.000 1980-08-27 2024-10-11 01:04:51 +3892 3892 3893 389.2 778.4000000000001 3892 1980-08-28 2024-10-11 01:04:52.000 1980-08-28 2024-10-11 01:04:52 +3893 3893 3894 389.3 778.6 3893 1980-08-29 2024-10-11 01:04:53.000 1980-08-29 2024-10-11 01:04:53 +3894 3894 3895 389.4 778.8000000000001 3894 1980-08-30 2024-10-11 01:04:54.000 1980-08-30 2024-10-11 01:04:54 +3896 3896 3897 389.6 779.2 3896 1980-09-01 2024-10-11 01:04:56.000 1980-09-01 2024-10-11 01:04:56 +3897 3897 3898 389.7 779.4000000000001 3897 1980-09-02 2024-10-11 01:04:57.000 1980-09-02 2024-10-11 01:04:57 +3898 3898 3899 389.8 779.6 3898 1980-09-03 2024-10-11 01:04:58.000 1980-09-03 2024-10-11 01:04:58 +3899 3899 3900 389.9 779.8000000000001 3899 1980-09-04 2024-10-11 01:04:59.000 1980-09-04 2024-10-11 01:04:59 +3901 3901 3902 390.1 780.2 3901 1980-09-06 2024-10-11 01:05:01.000 1980-09-06 2024-10-11 01:05:01 +3902 3902 3903 390.2 780.4000000000001 3902 1980-09-07 2024-10-11 01:05:02.000 1980-09-07 2024-10-11 01:05:02 +3903 3903 3904 390.3 780.6 3903 1980-09-08 2024-10-11 01:05:03.000 1980-09-08 2024-10-11 01:05:03 +3904 3904 3905 390.4 780.8000000000001 3904 1980-09-09 2024-10-11 01:05:04.000 1980-09-09 2024-10-11 01:05:04 +3906 3906 3907 390.6 781.2 3906 1980-09-11 2024-10-11 01:05:06.000 1980-09-11 2024-10-11 01:05:06 +3907 3907 3908 390.7 781.4000000000001 3907 1980-09-12 2024-10-11 01:05:07.000 1980-09-12 2024-10-11 01:05:07 +3908 3908 3909 390.8 781.6 3908 1980-09-13 2024-10-11 01:05:08.000 1980-09-13 2024-10-11 01:05:08 +3909 3909 3910 390.9 781.8000000000001 3909 1980-09-14 2024-10-11 01:05:09.000 1980-09-14 2024-10-11 01:05:09 +3911 3911 3912 391.1 782.2 3911 1980-09-16 2024-10-11 01:05:11.000 1980-09-16 2024-10-11 01:05:11 +3912 3912 3913 391.2 782.4000000000001 3912 1980-09-17 2024-10-11 01:05:12.000 1980-09-17 2024-10-11 01:05:12 +3913 3913 3914 391.3 782.6 3913 1980-09-18 2024-10-11 01:05:13.000 1980-09-18 2024-10-11 01:05:13 +3914 3914 3915 391.4 782.8000000000001 3914 1980-09-19 2024-10-11 01:05:14.000 1980-09-19 2024-10-11 01:05:14 +3916 3916 3917 391.6 783.2 3916 1980-09-21 2024-10-11 01:05:16.000 1980-09-21 2024-10-11 01:05:16 +3917 3917 3918 391.7 783.4000000000001 3917 1980-09-22 2024-10-11 01:05:17.000 1980-09-22 2024-10-11 01:05:17 +3918 3918 3919 391.8 783.6 3918 1980-09-23 2024-10-11 01:05:18.000 1980-09-23 2024-10-11 01:05:18 +3919 3919 3920 391.9 783.8000000000001 3919 1980-09-24 2024-10-11 01:05:19.000 1980-09-24 2024-10-11 01:05:19 +3921 3921 3922 392.1 784.2 3921 1980-09-26 2024-10-11 01:05:21.000 1980-09-26 2024-10-11 01:05:21 +3922 3922 3923 392.2 784.4000000000001 3922 1980-09-27 2024-10-11 01:05:22.000 1980-09-27 2024-10-11 01:05:22 +3923 3923 3924 392.3 784.6 3923 1980-09-28 2024-10-11 01:05:23.000 1980-09-28 2024-10-11 01:05:23 +3924 3924 3925 392.4 784.8000000000001 3924 1980-09-29 2024-10-11 01:05:24.000 1980-09-29 2024-10-11 01:05:24 +3926 3926 3927 392.6 785.2 3926 1980-10-01 2024-10-11 01:05:26.000 1980-10-01 2024-10-11 01:05:26 +3927 3927 3928 392.7 785.4000000000001 3927 1980-10-02 2024-10-11 01:05:27.000 1980-10-02 2024-10-11 01:05:27 +3928 3928 3929 392.8 785.6 3928 1980-10-03 2024-10-11 01:05:28.000 1980-10-03 2024-10-11 01:05:28 +3929 3929 3930 392.9 785.8000000000001 3929 1980-10-04 2024-10-11 01:05:29.000 1980-10-04 2024-10-11 01:05:29 +3931 3931 3932 393.1 786.2 3931 1980-10-06 2024-10-11 01:05:31.000 1980-10-06 2024-10-11 01:05:31 +3932 3932 3933 393.2 786.4000000000001 3932 1980-10-07 2024-10-11 01:05:32.000 1980-10-07 2024-10-11 01:05:32 +3933 3933 3934 393.3 786.6 3933 1980-10-08 2024-10-11 01:05:33.000 1980-10-08 2024-10-11 01:05:33 +3934 3934 3935 393.4 786.8000000000001 3934 1980-10-09 2024-10-11 01:05:34.000 1980-10-09 2024-10-11 01:05:34 +3936 3936 3937 393.6 787.2 3936 1980-10-11 2024-10-11 01:05:36.000 1980-10-11 2024-10-11 01:05:36 +3937 3937 3938 393.7 787.4000000000001 3937 1980-10-12 2024-10-11 01:05:37.000 1980-10-12 2024-10-11 01:05:37 +3938 3938 3939 393.8 787.6 3938 1980-10-13 2024-10-11 01:05:38.000 1980-10-13 2024-10-11 01:05:38 +3939 3939 3940 393.9 787.8000000000001 3939 1980-10-14 2024-10-11 01:05:39.000 1980-10-14 2024-10-11 01:05:39 +3941 3941 3942 394.1 788.2 3941 1980-10-16 2024-10-11 01:05:41.000 1980-10-16 2024-10-11 01:05:41 +3942 3942 3943 394.2 788.4000000000001 3942 1980-10-17 2024-10-11 01:05:42.000 1980-10-17 2024-10-11 01:05:42 +3943 3943 3944 394.3 788.6 3943 1980-10-18 2024-10-11 01:05:43.000 1980-10-18 2024-10-11 01:05:43 +3944 3944 3945 394.4 788.8000000000001 3944 1980-10-19 2024-10-11 01:05:44.000 1980-10-19 2024-10-11 01:05:44 +3946 3946 3947 394.6 789.2 3946 1980-10-21 2024-10-11 01:05:46.000 1980-10-21 2024-10-11 01:05:46 +3947 3947 3948 394.7 789.4000000000001 3947 1980-10-22 2024-10-11 01:05:47.000 1980-10-22 2024-10-11 01:05:47 +3948 3948 3949 394.8 789.6 3948 1980-10-23 2024-10-11 01:05:48.000 1980-10-23 2024-10-11 01:05:48 +3949 3949 3950 394.9 789.8000000000001 3949 1980-10-24 2024-10-11 01:05:49.000 1980-10-24 2024-10-11 01:05:49 +3951 3951 3952 395.1 790.2 3951 1980-10-26 2024-10-11 01:05:51.000 1980-10-26 2024-10-11 01:05:51 +3952 3952 3953 395.2 790.4000000000001 3952 1980-10-27 2024-10-11 01:05:52.000 1980-10-27 2024-10-11 01:05:52 +3953 3953 3954 395.3 790.6 3953 1980-10-28 2024-10-11 01:05:53.000 1980-10-28 2024-10-11 01:05:53 +3954 3954 3955 395.4 790.8000000000001 3954 1980-10-29 2024-10-11 01:05:54.000 1980-10-29 2024-10-11 01:05:54 +3956 3956 3957 395.6 791.2 3956 1980-10-31 2024-10-11 01:05:56.000 1980-10-31 2024-10-11 01:05:56 +3957 3957 3958 395.7 791.4000000000001 3957 1980-11-01 2024-10-11 01:05:57.000 1980-11-01 2024-10-11 01:05:57 +3958 3958 3959 395.8 791.6 3958 1980-11-02 2024-10-11 01:05:58.000 1980-11-02 2024-10-11 01:05:58 +3959 3959 3960 395.9 791.8000000000001 3959 1980-11-03 2024-10-11 01:05:59.000 1980-11-03 2024-10-11 01:05:59 +3961 3961 3962 396.1 792.2 3961 1980-11-05 2024-10-11 01:06:01.000 1980-11-05 2024-10-11 01:06:01 +3962 3962 3963 396.2 792.4000000000001 3962 1980-11-06 2024-10-11 01:06:02.000 1980-11-06 2024-10-11 01:06:02 +3963 3963 3964 396.3 792.6 3963 1980-11-07 2024-10-11 01:06:03.000 1980-11-07 2024-10-11 01:06:03 +3964 3964 3965 396.4 792.8000000000001 3964 1980-11-08 2024-10-11 01:06:04.000 1980-11-08 2024-10-11 01:06:04 +3966 3966 3967 396.6 793.2 3966 1980-11-10 2024-10-11 01:06:06.000 1980-11-10 2024-10-11 01:06:06 +3967 3967 3968 396.7 793.4000000000001 3967 1980-11-11 2024-10-11 01:06:07.000 1980-11-11 2024-10-11 01:06:07 +3968 3968 3969 396.8 793.6 3968 1980-11-12 2024-10-11 01:06:08.000 1980-11-12 2024-10-11 01:06:08 +3969 3969 3970 396.9 793.8000000000001 3969 1980-11-13 2024-10-11 01:06:09.000 1980-11-13 2024-10-11 01:06:09 +3971 3971 3972 397.1 794.2 3971 1980-11-15 2024-10-11 01:06:11.000 1980-11-15 2024-10-11 01:06:11 +3972 3972 3973 397.2 794.4000000000001 3972 1980-11-16 2024-10-11 01:06:12.000 1980-11-16 2024-10-11 01:06:12 +3973 3973 3974 397.3 794.6 3973 1980-11-17 2024-10-11 01:06:13.000 1980-11-17 2024-10-11 01:06:13 +3974 3974 3975 397.4 794.8000000000001 3974 1980-11-18 2024-10-11 01:06:14.000 1980-11-18 2024-10-11 01:06:14 +3976 3976 3977 397.6 795.2 3976 1980-11-20 2024-10-11 01:06:16.000 1980-11-20 2024-10-11 01:06:16 +3977 3977 3978 397.7 795.4000000000001 3977 1980-11-21 2024-10-11 01:06:17.000 1980-11-21 2024-10-11 01:06:17 +3978 3978 3979 397.8 795.6 3978 1980-11-22 2024-10-11 01:06:18.000 1980-11-22 2024-10-11 01:06:18 +3979 3979 3980 397.9 795.8000000000001 3979 1980-11-23 2024-10-11 01:06:19.000 1980-11-23 2024-10-11 01:06:19 +3981 3981 3982 398.1 796.2 3981 1980-11-25 2024-10-11 01:06:21.000 1980-11-25 2024-10-11 01:06:21 +3982 3982 3983 398.2 796.4000000000001 3982 1980-11-26 2024-10-11 01:06:22.000 1980-11-26 2024-10-11 01:06:22 +3983 3983 3984 398.3 796.6 3983 1980-11-27 2024-10-11 01:06:23.000 1980-11-27 2024-10-11 01:06:23 +3984 3984 3985 398.4 796.8000000000001 3984 1980-11-28 2024-10-11 01:06:24.000 1980-11-28 2024-10-11 01:06:24 +3986 3986 3987 398.6 797.2 3986 1980-11-30 2024-10-11 01:06:26.000 1980-11-30 2024-10-11 01:06:26 +3987 3987 3988 398.7 797.4000000000001 3987 1980-12-01 2024-10-11 01:06:27.000 1980-12-01 2024-10-11 01:06:27 +3988 3988 3989 398.8 797.6 3988 1980-12-02 2024-10-11 01:06:28.000 1980-12-02 2024-10-11 01:06:28 +3989 3989 3990 398.9 797.8000000000001 3989 1980-12-03 2024-10-11 01:06:29.000 1980-12-03 2024-10-11 01:06:29 +3991 3991 3992 399.1 798.2 3991 1980-12-05 2024-10-11 01:06:31.000 1980-12-05 2024-10-11 01:06:31 +3992 3992 3993 399.2 798.4000000000001 3992 1980-12-06 2024-10-11 01:06:32.000 1980-12-06 2024-10-11 01:06:32 +3993 3993 3994 399.3 798.6 3993 1980-12-07 2024-10-11 01:06:33.000 1980-12-07 2024-10-11 01:06:33 +3994 3994 3995 399.4 798.8000000000001 3994 1980-12-08 2024-10-11 01:06:34.000 1980-12-08 2024-10-11 01:06:34 +3996 3996 3997 399.6 799.2 3996 1980-12-10 2024-10-11 01:06:36.000 1980-12-10 2024-10-11 01:06:36 +3997 3997 3998 399.7 799.4000000000001 3997 1980-12-11 2024-10-11 01:06:37.000 1980-12-11 2024-10-11 01:06:37 +3998 3998 3999 399.8 799.6 3998 1980-12-12 2024-10-11 01:06:38.000 1980-12-12 2024-10-11 01:06:38 +3999 3999 4000 399.9 799.8000000000001 3999 1980-12-13 2024-10-11 01:06:39.000 1980-12-13 2024-10-11 01:06:39 +4001 4001 4002 400.1 800.2 4001 1980-12-15 2024-10-11 01:06:41.000 1980-12-15 2024-10-11 01:06:41 +4002 4002 4003 400.2 800.4000000000001 4002 1980-12-16 2024-10-11 01:06:42.000 1980-12-16 2024-10-11 01:06:42 +4003 4003 4004 400.3 800.6 4003 1980-12-17 2024-10-11 01:06:43.000 1980-12-17 2024-10-11 01:06:43 +4004 4004 4005 400.4 800.8000000000001 4004 1980-12-18 2024-10-11 01:06:44.000 1980-12-18 2024-10-11 01:06:44 +4006 4006 4007 400.6 801.2 4006 1980-12-20 2024-10-11 01:06:46.000 1980-12-20 2024-10-11 01:06:46 +4007 4007 4008 400.7 801.4000000000001 4007 1980-12-21 2024-10-11 01:06:47.000 1980-12-21 2024-10-11 01:06:47 +4008 4008 4009 400.8 801.6 4008 1980-12-22 2024-10-11 01:06:48.000 1980-12-22 2024-10-11 01:06:48 +4009 4009 4010 400.9 801.8000000000001 4009 1980-12-23 2024-10-11 01:06:49.000 1980-12-23 2024-10-11 01:06:49 +4011 4011 4012 401.1 802.2 4011 1980-12-25 2024-10-11 01:06:51.000 1980-12-25 2024-10-11 01:06:51 +4012 4012 4013 401.2 802.4000000000001 4012 1980-12-26 2024-10-11 01:06:52.000 1980-12-26 2024-10-11 01:06:52 +4013 4013 4014 401.3 802.6 4013 1980-12-27 2024-10-11 01:06:53.000 1980-12-27 2024-10-11 01:06:53 +4014 4014 4015 401.4 802.8000000000001 4014 1980-12-28 2024-10-11 01:06:54.000 1980-12-28 2024-10-11 01:06:54 +4016 4016 4017 401.6 803.2 4016 1980-12-30 2024-10-11 01:06:56.000 1980-12-30 2024-10-11 01:06:56 +4017 4017 4018 401.7 803.4000000000001 4017 1980-12-31 2024-10-11 01:06:57.000 1980-12-31 2024-10-11 01:06:57 +4018 4018 4019 401.8 803.6 4018 1981-01-01 2024-10-11 01:06:58.000 1981-01-01 2024-10-11 01:06:58 +4019 4019 4020 401.9 803.8000000000001 4019 1981-01-02 2024-10-11 01:06:59.000 1981-01-02 2024-10-11 01:06:59 +4021 4021 4022 402.1 804.2 4021 1981-01-04 2024-10-11 01:07:01.000 1981-01-04 2024-10-11 01:07:01 +4022 4022 4023 402.2 804.4000000000001 4022 1981-01-05 2024-10-11 01:07:02.000 1981-01-05 2024-10-11 01:07:02 +4023 4023 4024 402.3 804.6 4023 1981-01-06 2024-10-11 01:07:03.000 1981-01-06 2024-10-11 01:07:03 +4024 4024 4025 402.4 804.8000000000001 4024 1981-01-07 2024-10-11 01:07:04.000 1981-01-07 2024-10-11 01:07:04 +4026 4026 4027 402.6 805.2 4026 1981-01-09 2024-10-11 01:07:06.000 1981-01-09 2024-10-11 01:07:06 +4027 4027 4028 402.7 805.4000000000001 4027 1981-01-10 2024-10-11 01:07:07.000 1981-01-10 2024-10-11 01:07:07 +4028 4028 4029 402.8 805.6 4028 1981-01-11 2024-10-11 01:07:08.000 1981-01-11 2024-10-11 01:07:08 +4029 4029 4030 402.9 805.8000000000001 4029 1981-01-12 2024-10-11 01:07:09.000 1981-01-12 2024-10-11 01:07:09 +4031 4031 4032 403.1 806.2 4031 1981-01-14 2024-10-11 01:07:11.000 1981-01-14 2024-10-11 01:07:11 +4032 4032 4033 403.2 806.4000000000001 4032 1981-01-15 2024-10-11 01:07:12.000 1981-01-15 2024-10-11 01:07:12 +4033 4033 4034 403.3 806.6 4033 1981-01-16 2024-10-11 01:07:13.000 1981-01-16 2024-10-11 01:07:13 +4034 4034 4035 403.4 806.8000000000001 4034 1981-01-17 2024-10-11 01:07:14.000 1981-01-17 2024-10-11 01:07:14 +4036 4036 4037 403.6 807.2 4036 1981-01-19 2024-10-11 01:07:16.000 1981-01-19 2024-10-11 01:07:16 +4037 4037 4038 403.7 807.4000000000001 4037 1981-01-20 2024-10-11 01:07:17.000 1981-01-20 2024-10-11 01:07:17 +4038 4038 4039 403.8 807.6 4038 1981-01-21 2024-10-11 01:07:18.000 1981-01-21 2024-10-11 01:07:18 +4039 4039 4040 403.9 807.8000000000001 4039 1981-01-22 2024-10-11 01:07:19.000 1981-01-22 2024-10-11 01:07:19 +4041 4041 4042 404.1 808.2 4041 1981-01-24 2024-10-11 01:07:21.000 1981-01-24 2024-10-11 01:07:21 +4042 4042 4043 404.2 808.4000000000001 4042 1981-01-25 2024-10-11 01:07:22.000 1981-01-25 2024-10-11 01:07:22 +4043 4043 4044 404.3 808.6 4043 1981-01-26 2024-10-11 01:07:23.000 1981-01-26 2024-10-11 01:07:23 +4044 4044 4045 404.4 808.8000000000001 4044 1981-01-27 2024-10-11 01:07:24.000 1981-01-27 2024-10-11 01:07:24 +4046 4046 4047 404.6 809.2 4046 1981-01-29 2024-10-11 01:07:26.000 1981-01-29 2024-10-11 01:07:26 +4047 4047 4048 404.7 809.4000000000001 4047 1981-01-30 2024-10-11 01:07:27.000 1981-01-30 2024-10-11 01:07:27 +4048 4048 4049 404.8 809.6 4048 1981-01-31 2024-10-11 01:07:28.000 1981-01-31 2024-10-11 01:07:28 +4049 4049 4050 404.9 809.8000000000001 4049 1981-02-01 2024-10-11 01:07:29.000 1981-02-01 2024-10-11 01:07:29 +4051 4051 4052 405.1 810.2 4051 1981-02-03 2024-10-11 01:07:31.000 1981-02-03 2024-10-11 01:07:31 +4052 4052 4053 405.2 810.4000000000001 4052 1981-02-04 2024-10-11 01:07:32.000 1981-02-04 2024-10-11 01:07:32 +4053 4053 4054 405.3 810.6 4053 1981-02-05 2024-10-11 01:07:33.000 1981-02-05 2024-10-11 01:07:33 +4054 4054 4055 405.4 810.8000000000001 4054 1981-02-06 2024-10-11 01:07:34.000 1981-02-06 2024-10-11 01:07:34 +4056 4056 4057 405.6 811.2 4056 1981-02-08 2024-10-11 01:07:36.000 1981-02-08 2024-10-11 01:07:36 +4057 4057 4058 405.7 811.4000000000001 4057 1981-02-09 2024-10-11 01:07:37.000 1981-02-09 2024-10-11 01:07:37 +4058 4058 4059 405.8 811.6 4058 1981-02-10 2024-10-11 01:07:38.000 1981-02-10 2024-10-11 01:07:38 +4059 4059 4060 405.9 811.8000000000001 4059 1981-02-11 2024-10-11 01:07:39.000 1981-02-11 2024-10-11 01:07:39 +4061 4061 4062 406.1 812.2 4061 1981-02-13 2024-10-11 01:07:41.000 1981-02-13 2024-10-11 01:07:41 +4062 4062 4063 406.2 812.4000000000001 4062 1981-02-14 2024-10-11 01:07:42.000 1981-02-14 2024-10-11 01:07:42 +4063 4063 4064 406.3 812.6 4063 1981-02-15 2024-10-11 01:07:43.000 1981-02-15 2024-10-11 01:07:43 +4064 4064 4065 406.4 812.8000000000001 4064 1981-02-16 2024-10-11 01:07:44.000 1981-02-16 2024-10-11 01:07:44 +4066 4066 4067 406.6 813.2 4066 1981-02-18 2024-10-11 01:07:46.000 1981-02-18 2024-10-11 01:07:46 +4067 4067 4068 406.7 813.4000000000001 4067 1981-02-19 2024-10-11 01:07:47.000 1981-02-19 2024-10-11 01:07:47 +4068 4068 4069 406.8 813.6 4068 1981-02-20 2024-10-11 01:07:48.000 1981-02-20 2024-10-11 01:07:48 +4069 4069 4070 406.9 813.8000000000001 4069 1981-02-21 2024-10-11 01:07:49.000 1981-02-21 2024-10-11 01:07:49 +4071 4071 4072 407.1 814.2 4071 1981-02-23 2024-10-11 01:07:51.000 1981-02-23 2024-10-11 01:07:51 +4072 4072 4073 407.2 814.4000000000001 4072 1981-02-24 2024-10-11 01:07:52.000 1981-02-24 2024-10-11 01:07:52 +4073 4073 4074 407.3 814.6 4073 1981-02-25 2024-10-11 01:07:53.000 1981-02-25 2024-10-11 01:07:53 +4074 4074 4075 407.4 814.8000000000001 4074 1981-02-26 2024-10-11 01:07:54.000 1981-02-26 2024-10-11 01:07:54 +4076 4076 4077 407.6 815.2 4076 1981-02-28 2024-10-11 01:07:56.000 1981-02-28 2024-10-11 01:07:56 +4077 4077 4078 407.7 815.4000000000001 4077 1981-03-01 2024-10-11 01:07:57.000 1981-03-01 2024-10-11 01:07:57 +4078 4078 4079 407.8 815.6 4078 1981-03-02 2024-10-11 01:07:58.000 1981-03-02 2024-10-11 01:07:58 +4079 4079 4080 407.9 815.8000000000001 4079 1981-03-03 2024-10-11 01:07:59.000 1981-03-03 2024-10-11 01:07:59 +4081 4081 4082 408.1 816.2 4081 1981-03-05 2024-10-11 01:08:01.000 1981-03-05 2024-10-11 01:08:01 +4082 4082 4083 408.2 816.4000000000001 4082 1981-03-06 2024-10-11 01:08:02.000 1981-03-06 2024-10-11 01:08:02 +4083 4083 4084 408.3 816.6 4083 1981-03-07 2024-10-11 01:08:03.000 1981-03-07 2024-10-11 01:08:03 +4084 4084 4085 408.4 816.8000000000001 4084 1981-03-08 2024-10-11 01:08:04.000 1981-03-08 2024-10-11 01:08:04 +4086 4086 4087 408.6 817.2 4086 1981-03-10 2024-10-11 01:08:06.000 1981-03-10 2024-10-11 01:08:06 +4087 4087 4088 408.7 817.4000000000001 4087 1981-03-11 2024-10-11 01:08:07.000 1981-03-11 2024-10-11 01:08:07 +4088 4088 4089 408.8 817.6 4088 1981-03-12 2024-10-11 01:08:08.000 1981-03-12 2024-10-11 01:08:08 +4089 4089 4090 408.9 817.8000000000001 4089 1981-03-13 2024-10-11 01:08:09.000 1981-03-13 2024-10-11 01:08:09 +4091 4091 4092 409.1 818.2 4091 1981-03-15 2024-10-11 01:08:11.000 1981-03-15 2024-10-11 01:08:11 +4092 4092 4093 409.2 818.4000000000001 4092 1981-03-16 2024-10-11 01:08:12.000 1981-03-16 2024-10-11 01:08:12 +4093 4093 4094 409.3 818.6 4093 1981-03-17 2024-10-11 01:08:13.000 1981-03-17 2024-10-11 01:08:13 +4094 4094 4095 409.4 818.8000000000001 4094 1981-03-18 2024-10-11 01:08:14.000 1981-03-18 2024-10-11 01:08:14 +4096 4096 4097 409.6 819.2 4096 1981-03-20 2024-10-11 01:08:16.000 1981-03-20 2024-10-11 01:08:16 +4097 4097 4098 409.7 819.4000000000001 4097 1981-03-21 2024-10-11 01:08:17.000 1981-03-21 2024-10-11 01:08:17 +4098 4098 4099 409.8 819.6 4098 1981-03-22 2024-10-11 01:08:18.000 1981-03-22 2024-10-11 01:08:18 +4099 4099 4100 409.9 819.8000000000001 4099 1981-03-23 2024-10-11 01:08:19.000 1981-03-23 2024-10-11 01:08:19 +4101 4101 4102 410.1 820.2 4101 1981-03-25 2024-10-11 01:08:21.000 1981-03-25 2024-10-11 01:08:21 +4102 4102 4103 410.2 820.4000000000001 4102 1981-03-26 2024-10-11 01:08:22.000 1981-03-26 2024-10-11 01:08:22 +4103 4103 4104 410.3 820.6 4103 1981-03-27 2024-10-11 01:08:23.000 1981-03-27 2024-10-11 01:08:23 +4104 4104 4105 410.4 820.8000000000001 4104 1981-03-28 2024-10-11 01:08:24.000 1981-03-28 2024-10-11 01:08:24 +4106 4106 4107 410.6 821.2 4106 1981-03-30 2024-10-11 01:08:26.000 1981-03-30 2024-10-11 01:08:26 +4107 4107 4108 410.7 821.4000000000001 4107 1981-03-31 2024-10-11 01:08:27.000 1981-03-31 2024-10-11 01:08:27 +4108 4108 4109 410.8 821.6 4108 1981-04-01 2024-10-11 01:08:28.000 1981-04-01 2024-10-11 01:08:28 +4109 4109 4110 410.9 821.8000000000001 4109 1981-04-02 2024-10-11 01:08:29.000 1981-04-02 2024-10-11 01:08:29 +4111 4111 4112 411.1 822.2 4111 1981-04-04 2024-10-11 01:08:31.000 1981-04-04 2024-10-11 01:08:31 +4112 4112 4113 411.2 822.4000000000001 4112 1981-04-05 2024-10-11 01:08:32.000 1981-04-05 2024-10-11 01:08:32 +4113 4113 4114 411.3 822.6 4113 1981-04-06 2024-10-11 01:08:33.000 1981-04-06 2024-10-11 01:08:33 +4114 4114 4115 411.4 822.8000000000001 4114 1981-04-07 2024-10-11 01:08:34.000 1981-04-07 2024-10-11 01:08:34 +4116 4116 4117 411.6 823.2 4116 1981-04-09 2024-10-11 01:08:36.000 1981-04-09 2024-10-11 01:08:36 +4117 4117 4118 411.7 823.4000000000001 4117 1981-04-10 2024-10-11 01:08:37.000 1981-04-10 2024-10-11 01:08:37 +4118 4118 4119 411.8 823.6 4118 1981-04-11 2024-10-11 01:08:38.000 1981-04-11 2024-10-11 01:08:38 +4119 4119 4120 411.9 823.8000000000001 4119 1981-04-12 2024-10-11 01:08:39.000 1981-04-12 2024-10-11 01:08:39 +4121 4121 4122 412.1 824.2 4121 1981-04-14 2024-10-11 01:08:41.000 1981-04-14 2024-10-11 01:08:41 +4122 4122 4123 412.2 824.4000000000001 4122 1981-04-15 2024-10-11 01:08:42.000 1981-04-15 2024-10-11 01:08:42 +4123 4123 4124 412.3 824.6 4123 1981-04-16 2024-10-11 01:08:43.000 1981-04-16 2024-10-11 01:08:43 +4124 4124 4125 412.4 824.8000000000001 4124 1981-04-17 2024-10-11 01:08:44.000 1981-04-17 2024-10-11 01:08:44 +4126 4126 4127 412.6 825.2 4126 1981-04-19 2024-10-11 01:08:46.000 1981-04-19 2024-10-11 01:08:46 +4127 4127 4128 412.7 825.4000000000001 4127 1981-04-20 2024-10-11 01:08:47.000 1981-04-20 2024-10-11 01:08:47 +4128 4128 4129 412.8 825.6 4128 1981-04-21 2024-10-11 01:08:48.000 1981-04-21 2024-10-11 01:08:48 +4129 4129 4130 412.9 825.8000000000001 4129 1981-04-22 2024-10-11 01:08:49.000 1981-04-22 2024-10-11 01:08:49 +4131 4131 4132 413.1 826.2 4131 1981-04-24 2024-10-11 01:08:51.000 1981-04-24 2024-10-11 01:08:51 +4132 4132 4133 413.2 826.4000000000001 4132 1981-04-25 2024-10-11 01:08:52.000 1981-04-25 2024-10-11 01:08:52 +4133 4133 4134 413.3 826.6 4133 1981-04-26 2024-10-11 01:08:53.000 1981-04-26 2024-10-11 01:08:53 +4134 4134 4135 413.4 826.8000000000001 4134 1981-04-27 2024-10-11 01:08:54.000 1981-04-27 2024-10-11 01:08:54 +4136 4136 4137 413.6 827.2 4136 1981-04-29 2024-10-11 01:08:56.000 1981-04-29 2024-10-11 01:08:56 +4137 4137 4138 413.7 827.4000000000001 4137 1981-04-30 2024-10-11 01:08:57.000 1981-04-30 2024-10-11 01:08:57 +4138 4138 4139 413.8 827.6 4138 1981-05-01 2024-10-11 01:08:58.000 1981-05-01 2024-10-11 01:08:58 +4139 4139 4140 413.9 827.8000000000001 4139 1981-05-02 2024-10-11 01:08:59.000 1981-05-02 2024-10-11 01:08:59 +4141 4141 4142 414.1 828.2 4141 1981-05-04 2024-10-11 01:09:01.000 1981-05-04 2024-10-11 01:09:01 +4142 4142 4143 414.2 828.4000000000001 4142 1981-05-05 2024-10-11 01:09:02.000 1981-05-05 2024-10-11 01:09:02 +4143 4143 4144 414.3 828.6 4143 1981-05-06 2024-10-11 01:09:03.000 1981-05-06 2024-10-11 01:09:03 +4144 4144 4145 414.4 828.8000000000001 4144 1981-05-07 2024-10-11 01:09:04.000 1981-05-07 2024-10-11 01:09:04 +4146 4146 4147 414.6 829.2 4146 1981-05-09 2024-10-11 01:09:06.000 1981-05-09 2024-10-11 01:09:06 +4147 4147 4148 414.7 829.4000000000001 4147 1981-05-10 2024-10-11 01:09:07.000 1981-05-10 2024-10-11 01:09:07 +4148 4148 4149 414.8 829.6 4148 1981-05-11 2024-10-11 01:09:08.000 1981-05-11 2024-10-11 01:09:08 +4149 4149 4150 414.9 829.8000000000001 4149 1981-05-12 2024-10-11 01:09:09.000 1981-05-12 2024-10-11 01:09:09 +4151 4151 4152 415.1 830.2 4151 1981-05-14 2024-10-11 01:09:11.000 1981-05-14 2024-10-11 01:09:11 +4152 4152 4153 415.2 830.4000000000001 4152 1981-05-15 2024-10-11 01:09:12.000 1981-05-15 2024-10-11 01:09:12 +4153 4153 4154 415.3 830.6 4153 1981-05-16 2024-10-11 01:09:13.000 1981-05-16 2024-10-11 01:09:13 +4154 4154 4155 415.4 830.8000000000001 4154 1981-05-17 2024-10-11 01:09:14.000 1981-05-17 2024-10-11 01:09:14 +4156 4156 4157 415.6 831.2 4156 1981-05-19 2024-10-11 01:09:16.000 1981-05-19 2024-10-11 01:09:16 +4157 4157 4158 415.7 831.4000000000001 4157 1981-05-20 2024-10-11 01:09:17.000 1981-05-20 2024-10-11 01:09:17 +4158 4158 4159 415.8 831.6 4158 1981-05-21 2024-10-11 01:09:18.000 1981-05-21 2024-10-11 01:09:18 +4159 4159 4160 415.9 831.8000000000001 4159 1981-05-22 2024-10-11 01:09:19.000 1981-05-22 2024-10-11 01:09:19 +4161 4161 4162 416.1 832.2 4161 1981-05-24 2024-10-11 01:09:21.000 1981-05-24 2024-10-11 01:09:21 +4162 4162 4163 416.2 832.4000000000001 4162 1981-05-25 2024-10-11 01:09:22.000 1981-05-25 2024-10-11 01:09:22 +4163 4163 4164 416.3 832.6 4163 1981-05-26 2024-10-11 01:09:23.000 1981-05-26 2024-10-11 01:09:23 +4164 4164 4165 416.4 832.8000000000001 4164 1981-05-27 2024-10-11 01:09:24.000 1981-05-27 2024-10-11 01:09:24 +4166 4166 4167 416.6 833.2 4166 1981-05-29 2024-10-11 01:09:26.000 1981-05-29 2024-10-11 01:09:26 +4167 4167 4168 416.7 833.4000000000001 4167 1981-05-30 2024-10-11 01:09:27.000 1981-05-30 2024-10-11 01:09:27 +4168 4168 4169 416.8 833.6 4168 1981-05-31 2024-10-11 01:09:28.000 1981-05-31 2024-10-11 01:09:28 +4169 4169 4170 416.9 833.8000000000001 4169 1981-06-01 2024-10-11 01:09:29.000 1981-06-01 2024-10-11 01:09:29 +4171 4171 4172 417.1 834.2 4171 1981-06-03 2024-10-11 01:09:31.000 1981-06-03 2024-10-11 01:09:31 +4172 4172 4173 417.2 834.4000000000001 4172 1981-06-04 2024-10-11 01:09:32.000 1981-06-04 2024-10-11 01:09:32 +4173 4173 4174 417.3 834.6 4173 1981-06-05 2024-10-11 01:09:33.000 1981-06-05 2024-10-11 01:09:33 +4174 4174 4175 417.4 834.8000000000001 4174 1981-06-06 2024-10-11 01:09:34.000 1981-06-06 2024-10-11 01:09:34 +4176 4176 4177 417.6 835.2 4176 1981-06-08 2024-10-11 01:09:36.000 1981-06-08 2024-10-11 01:09:36 +4177 4177 4178 417.7 835.4000000000001 4177 1981-06-09 2024-10-11 01:09:37.000 1981-06-09 2024-10-11 01:09:37 +4178 4178 4179 417.8 835.6 4178 1981-06-10 2024-10-11 01:09:38.000 1981-06-10 2024-10-11 01:09:38 +4179 4179 4180 417.9 835.8000000000001 4179 1981-06-11 2024-10-11 01:09:39.000 1981-06-11 2024-10-11 01:09:39 +4181 4181 4182 418.1 836.2 4181 1981-06-13 2024-10-11 01:09:41.000 1981-06-13 2024-10-11 01:09:41 +4182 4182 4183 418.2 836.4000000000001 4182 1981-06-14 2024-10-11 01:09:42.000 1981-06-14 2024-10-11 01:09:42 +4183 4183 4184 418.3 836.6 4183 1981-06-15 2024-10-11 01:09:43.000 1981-06-15 2024-10-11 01:09:43 +4184 4184 4185 418.4 836.8000000000001 4184 1981-06-16 2024-10-11 01:09:44.000 1981-06-16 2024-10-11 01:09:44 +4186 4186 4187 418.6 837.2 4186 1981-06-18 2024-10-11 01:09:46.000 1981-06-18 2024-10-11 01:09:46 +4187 4187 4188 418.7 837.4000000000001 4187 1981-06-19 2024-10-11 01:09:47.000 1981-06-19 2024-10-11 01:09:47 +4188 4188 4189 418.8 837.6 4188 1981-06-20 2024-10-11 01:09:48.000 1981-06-20 2024-10-11 01:09:48 +4189 4189 4190 418.9 837.8000000000001 4189 1981-06-21 2024-10-11 01:09:49.000 1981-06-21 2024-10-11 01:09:49 +4191 4191 4192 419.1 838.2 4191 1981-06-23 2024-10-11 01:09:51.000 1981-06-23 2024-10-11 01:09:51 +4192 4192 4193 419.2 838.4000000000001 4192 1981-06-24 2024-10-11 01:09:52.000 1981-06-24 2024-10-11 01:09:52 +4193 4193 4194 419.3 838.6 4193 1981-06-25 2024-10-11 01:09:53.000 1981-06-25 2024-10-11 01:09:53 +4194 4194 4195 419.4 838.8000000000001 4194 1981-06-26 2024-10-11 01:09:54.000 1981-06-26 2024-10-11 01:09:54 +4196 4196 4197 419.6 839.2 4196 1981-06-28 2024-10-11 01:09:56.000 1981-06-28 2024-10-11 01:09:56 +4197 4197 4198 419.7 839.4000000000001 4197 1981-06-29 2024-10-11 01:09:57.000 1981-06-29 2024-10-11 01:09:57 +4198 4198 4199 419.8 839.6 4198 1981-06-30 2024-10-11 01:09:58.000 1981-06-30 2024-10-11 01:09:58 +4199 4199 4200 419.9 839.8000000000001 4199 1981-07-01 2024-10-11 01:09:59.000 1981-07-01 2024-10-11 01:09:59 +4201 4201 4202 420.1 840.2 4201 1981-07-03 2024-10-11 01:10:01.000 1981-07-03 2024-10-11 01:10:01 +4202 4202 4203 420.2 840.4000000000001 4202 1981-07-04 2024-10-11 01:10:02.000 1981-07-04 2024-10-11 01:10:02 +4203 4203 4204 420.3 840.6 4203 1981-07-05 2024-10-11 01:10:03.000 1981-07-05 2024-10-11 01:10:03 +4204 4204 4205 420.4 840.8000000000001 4204 1981-07-06 2024-10-11 01:10:04.000 1981-07-06 2024-10-11 01:10:04 +4206 4206 4207 420.6 841.2 4206 1981-07-08 2024-10-11 01:10:06.000 1981-07-08 2024-10-11 01:10:06 +4207 4207 4208 420.7 841.4000000000001 4207 1981-07-09 2024-10-11 01:10:07.000 1981-07-09 2024-10-11 01:10:07 +4208 4208 4209 420.8 841.6 4208 1981-07-10 2024-10-11 01:10:08.000 1981-07-10 2024-10-11 01:10:08 +4209 4209 4210 420.9 841.8000000000001 4209 1981-07-11 2024-10-11 01:10:09.000 1981-07-11 2024-10-11 01:10:09 +4211 4211 4212 421.1 842.2 4211 1981-07-13 2024-10-11 01:10:11.000 1981-07-13 2024-10-11 01:10:11 +4212 4212 4213 421.2 842.4000000000001 4212 1981-07-14 2024-10-11 01:10:12.000 1981-07-14 2024-10-11 01:10:12 +4213 4213 4214 421.3 842.6 4213 1981-07-15 2024-10-11 01:10:13.000 1981-07-15 2024-10-11 01:10:13 +4214 4214 4215 421.4 842.8000000000001 4214 1981-07-16 2024-10-11 01:10:14.000 1981-07-16 2024-10-11 01:10:14 +4216 4216 4217 421.6 843.2 4216 1981-07-18 2024-10-11 01:10:16.000 1981-07-18 2024-10-11 01:10:16 +4217 4217 4218 421.7 843.4000000000001 4217 1981-07-19 2024-10-11 01:10:17.000 1981-07-19 2024-10-11 01:10:17 +4218 4218 4219 421.8 843.6 4218 1981-07-20 2024-10-11 01:10:18.000 1981-07-20 2024-10-11 01:10:18 +4219 4219 4220 421.9 843.8000000000001 4219 1981-07-21 2024-10-11 01:10:19.000 1981-07-21 2024-10-11 01:10:19 +4221 4221 4222 422.1 844.2 4221 1981-07-23 2024-10-11 01:10:21.000 1981-07-23 2024-10-11 01:10:21 +4222 4222 4223 422.2 844.4000000000001 4222 1981-07-24 2024-10-11 01:10:22.000 1981-07-24 2024-10-11 01:10:22 +4223 4223 4224 422.3 844.6 4223 1981-07-25 2024-10-11 01:10:23.000 1981-07-25 2024-10-11 01:10:23 +4224 4224 4225 422.4 844.8000000000001 4224 1981-07-26 2024-10-11 01:10:24.000 1981-07-26 2024-10-11 01:10:24 +4226 4226 4227 422.6 845.2 4226 1981-07-28 2024-10-11 01:10:26.000 1981-07-28 2024-10-11 01:10:26 +4227 4227 4228 422.7 845.4000000000001 4227 1981-07-29 2024-10-11 01:10:27.000 1981-07-29 2024-10-11 01:10:27 +4228 4228 4229 422.8 845.6 4228 1981-07-30 2024-10-11 01:10:28.000 1981-07-30 2024-10-11 01:10:28 +4229 4229 4230 422.9 845.8000000000001 4229 1981-07-31 2024-10-11 01:10:29.000 1981-07-31 2024-10-11 01:10:29 +4231 4231 4232 423.1 846.2 4231 1981-08-02 2024-10-11 01:10:31.000 1981-08-02 2024-10-11 01:10:31 +4232 4232 4233 423.2 846.4000000000001 4232 1981-08-03 2024-10-11 01:10:32.000 1981-08-03 2024-10-11 01:10:32 +4233 4233 4234 423.3 846.6 4233 1981-08-04 2024-10-11 01:10:33.000 1981-08-04 2024-10-11 01:10:33 +4234 4234 4235 423.4 846.8000000000001 4234 1981-08-05 2024-10-11 01:10:34.000 1981-08-05 2024-10-11 01:10:34 +4236 4236 4237 423.6 847.2 4236 1981-08-07 2024-10-11 01:10:36.000 1981-08-07 2024-10-11 01:10:36 +4237 4237 4238 423.7 847.4000000000001 4237 1981-08-08 2024-10-11 01:10:37.000 1981-08-08 2024-10-11 01:10:37 +4238 4238 4239 423.8 847.6 4238 1981-08-09 2024-10-11 01:10:38.000 1981-08-09 2024-10-11 01:10:38 +4239 4239 4240 423.9 847.8000000000001 4239 1981-08-10 2024-10-11 01:10:39.000 1981-08-10 2024-10-11 01:10:39 +4241 4241 4242 424.1 848.2 4241 1981-08-12 2024-10-11 01:10:41.000 1981-08-12 2024-10-11 01:10:41 +4242 4242 4243 424.2 848.4000000000001 4242 1981-08-13 2024-10-11 01:10:42.000 1981-08-13 2024-10-11 01:10:42 +4243 4243 4244 424.3 848.6 4243 1981-08-14 2024-10-11 01:10:43.000 1981-08-14 2024-10-11 01:10:43 +4244 4244 4245 424.4 848.8000000000001 4244 1981-08-15 2024-10-11 01:10:44.000 1981-08-15 2024-10-11 01:10:44 +4246 4246 4247 424.6 849.2 4246 1981-08-17 2024-10-11 01:10:46.000 1981-08-17 2024-10-11 01:10:46 +4247 4247 4248 424.7 849.4000000000001 4247 1981-08-18 2024-10-11 01:10:47.000 1981-08-18 2024-10-11 01:10:47 +4248 4248 4249 424.8 849.6 4248 1981-08-19 2024-10-11 01:10:48.000 1981-08-19 2024-10-11 01:10:48 +4249 4249 4250 424.9 849.8000000000001 4249 1981-08-20 2024-10-11 01:10:49.000 1981-08-20 2024-10-11 01:10:49 +4251 4251 4252 425.1 850.2 4251 1981-08-22 2024-10-11 01:10:51.000 1981-08-22 2024-10-11 01:10:51 +4252 4252 4253 425.2 850.4000000000001 4252 1981-08-23 2024-10-11 01:10:52.000 1981-08-23 2024-10-11 01:10:52 +4253 4253 4254 425.3 850.6 4253 1981-08-24 2024-10-11 01:10:53.000 1981-08-24 2024-10-11 01:10:53 +4254 4254 4255 425.4 850.8000000000001 4254 1981-08-25 2024-10-11 01:10:54.000 1981-08-25 2024-10-11 01:10:54 +4256 4256 4257 425.6 851.2 4256 1981-08-27 2024-10-11 01:10:56.000 1981-08-27 2024-10-11 01:10:56 +4257 4257 4258 425.7 851.4000000000001 4257 1981-08-28 2024-10-11 01:10:57.000 1981-08-28 2024-10-11 01:10:57 +4258 4258 4259 425.8 851.6 4258 1981-08-29 2024-10-11 01:10:58.000 1981-08-29 2024-10-11 01:10:58 +4259 4259 4260 425.9 851.8000000000001 4259 1981-08-30 2024-10-11 01:10:59.000 1981-08-30 2024-10-11 01:10:59 +4261 4261 4262 426.1 852.2 4261 1981-09-01 2024-10-11 01:11:01.000 1981-09-01 2024-10-11 01:11:01 +4262 4262 4263 426.2 852.4000000000001 4262 1981-09-02 2024-10-11 01:11:02.000 1981-09-02 2024-10-11 01:11:02 +4263 4263 4264 426.3 852.6 4263 1981-09-03 2024-10-11 01:11:03.000 1981-09-03 2024-10-11 01:11:03 +4264 4264 4265 426.4 852.8000000000001 4264 1981-09-04 2024-10-11 01:11:04.000 1981-09-04 2024-10-11 01:11:04 +4266 4266 4267 426.6 853.2 4266 1981-09-06 2024-10-11 01:11:06.000 1981-09-06 2024-10-11 01:11:06 +4267 4267 4268 426.7 853.4000000000001 4267 1981-09-07 2024-10-11 01:11:07.000 1981-09-07 2024-10-11 01:11:07 +4268 4268 4269 426.8 853.6 4268 1981-09-08 2024-10-11 01:11:08.000 1981-09-08 2024-10-11 01:11:08 +4269 4269 4270 426.9 853.8000000000001 4269 1981-09-09 2024-10-11 01:11:09.000 1981-09-09 2024-10-11 01:11:09 +4271 4271 4272 427.1 854.2 4271 1981-09-11 2024-10-11 01:11:11.000 1981-09-11 2024-10-11 01:11:11 +4272 4272 4273 427.2 854.4000000000001 4272 1981-09-12 2024-10-11 01:11:12.000 1981-09-12 2024-10-11 01:11:12 +4273 4273 4274 427.3 854.6 4273 1981-09-13 2024-10-11 01:11:13.000 1981-09-13 2024-10-11 01:11:13 +4274 4274 4275 427.4 854.8000000000001 4274 1981-09-14 2024-10-11 01:11:14.000 1981-09-14 2024-10-11 01:11:14 +4276 4276 4277 427.6 855.2 4276 1981-09-16 2024-10-11 01:11:16.000 1981-09-16 2024-10-11 01:11:16 +4277 4277 4278 427.7 855.4000000000001 4277 1981-09-17 2024-10-11 01:11:17.000 1981-09-17 2024-10-11 01:11:17 +4278 4278 4279 427.8 855.6 4278 1981-09-18 2024-10-11 01:11:18.000 1981-09-18 2024-10-11 01:11:18 +4279 4279 4280 427.9 855.8000000000001 4279 1981-09-19 2024-10-11 01:11:19.000 1981-09-19 2024-10-11 01:11:19 +4281 4281 4282 428.1 856.2 4281 1981-09-21 2024-10-11 01:11:21.000 1981-09-21 2024-10-11 01:11:21 +4282 4282 4283 428.2 856.4000000000001 4282 1981-09-22 2024-10-11 01:11:22.000 1981-09-22 2024-10-11 01:11:22 +4283 4283 4284 428.3 856.6 4283 1981-09-23 2024-10-11 01:11:23.000 1981-09-23 2024-10-11 01:11:23 +4284 4284 4285 428.4 856.8000000000001 4284 1981-09-24 2024-10-11 01:11:24.000 1981-09-24 2024-10-11 01:11:24 +4286 4286 4287 428.6 857.2 4286 1981-09-26 2024-10-11 01:11:26.000 1981-09-26 2024-10-11 01:11:26 +4287 4287 4288 428.7 857.4000000000001 4287 1981-09-27 2024-10-11 01:11:27.000 1981-09-27 2024-10-11 01:11:27 +4288 4288 4289 428.8 857.6 4288 1981-09-28 2024-10-11 01:11:28.000 1981-09-28 2024-10-11 01:11:28 +4289 4289 4290 428.9 857.8000000000001 4289 1981-09-29 2024-10-11 01:11:29.000 1981-09-29 2024-10-11 01:11:29 +4291 4291 4292 429.1 858.2 4291 1981-10-01 2024-10-11 01:11:31.000 1981-10-01 2024-10-11 01:11:31 +4292 4292 4293 429.2 858.4000000000001 4292 1981-10-02 2024-10-11 01:11:32.000 1981-10-02 2024-10-11 01:11:32 +4293 4293 4294 429.3 858.6 4293 1981-10-03 2024-10-11 01:11:33.000 1981-10-03 2024-10-11 01:11:33 +4294 4294 4295 429.4 858.8000000000001 4294 1981-10-04 2024-10-11 01:11:34.000 1981-10-04 2024-10-11 01:11:34 +4296 4296 4297 429.6 859.2 4296 1981-10-06 2024-10-11 01:11:36.000 1981-10-06 2024-10-11 01:11:36 +4297 4297 4298 429.7 859.4000000000001 4297 1981-10-07 2024-10-11 01:11:37.000 1981-10-07 2024-10-11 01:11:37 +4298 4298 4299 429.8 859.6 4298 1981-10-08 2024-10-11 01:11:38.000 1981-10-08 2024-10-11 01:11:38 +4299 4299 4300 429.9 859.8000000000001 4299 1981-10-09 2024-10-11 01:11:39.000 1981-10-09 2024-10-11 01:11:39 +4301 4301 4302 430.1 860.2 4301 1981-10-11 2024-10-11 01:11:41.000 1981-10-11 2024-10-11 01:11:41 +4302 4302 4303 430.2 860.4000000000001 4302 1981-10-12 2024-10-11 01:11:42.000 1981-10-12 2024-10-11 01:11:42 +4303 4303 4304 430.3 860.6 4303 1981-10-13 2024-10-11 01:11:43.000 1981-10-13 2024-10-11 01:11:43 +4304 4304 4305 430.4 860.8000000000001 4304 1981-10-14 2024-10-11 01:11:44.000 1981-10-14 2024-10-11 01:11:44 +4306 4306 4307 430.6 861.2 4306 1981-10-16 2024-10-11 01:11:46.000 1981-10-16 2024-10-11 01:11:46 +4307 4307 4308 430.7 861.4000000000001 4307 1981-10-17 2024-10-11 01:11:47.000 1981-10-17 2024-10-11 01:11:47 +4308 4308 4309 430.8 861.6 4308 1981-10-18 2024-10-11 01:11:48.000 1981-10-18 2024-10-11 01:11:48 +4309 4309 4310 430.9 861.8000000000001 4309 1981-10-19 2024-10-11 01:11:49.000 1981-10-19 2024-10-11 01:11:49 +4311 4311 4312 431.1 862.2 4311 1981-10-21 2024-10-11 01:11:51.000 1981-10-21 2024-10-11 01:11:51 +4312 4312 4313 431.2 862.4000000000001 4312 1981-10-22 2024-10-11 01:11:52.000 1981-10-22 2024-10-11 01:11:52 +4313 4313 4314 431.3 862.6 4313 1981-10-23 2024-10-11 01:11:53.000 1981-10-23 2024-10-11 01:11:53 +4314 4314 4315 431.4 862.8000000000001 4314 1981-10-24 2024-10-11 01:11:54.000 1981-10-24 2024-10-11 01:11:54 +4316 4316 4317 431.6 863.2 4316 1981-10-26 2024-10-11 01:11:56.000 1981-10-26 2024-10-11 01:11:56 +4317 4317 4318 431.7 863.4000000000001 4317 1981-10-27 2024-10-11 01:11:57.000 1981-10-27 2024-10-11 01:11:57 +4318 4318 4319 431.8 863.6 4318 1981-10-28 2024-10-11 01:11:58.000 1981-10-28 2024-10-11 01:11:58 +4319 4319 4320 431.9 863.8000000000001 4319 1981-10-29 2024-10-11 01:11:59.000 1981-10-29 2024-10-11 01:11:59 +4321 4321 4322 432.1 864.2 4321 1981-10-31 2024-10-11 01:12:01.000 1981-10-31 2024-10-11 01:12:01 +4322 4322 4323 432.2 864.4000000000001 4322 1981-11-01 2024-10-11 01:12:02.000 1981-11-01 2024-10-11 01:12:02 +4323 4323 4324 432.3 864.6 4323 1981-11-02 2024-10-11 01:12:03.000 1981-11-02 2024-10-11 01:12:03 +4324 4324 4325 432.4 864.8000000000001 4324 1981-11-03 2024-10-11 01:12:04.000 1981-11-03 2024-10-11 01:12:04 +4326 4326 4327 432.6 865.2 4326 1981-11-05 2024-10-11 01:12:06.000 1981-11-05 2024-10-11 01:12:06 +4327 4327 4328 432.7 865.4000000000001 4327 1981-11-06 2024-10-11 01:12:07.000 1981-11-06 2024-10-11 01:12:07 +4328 4328 4329 432.8 865.6 4328 1981-11-07 2024-10-11 01:12:08.000 1981-11-07 2024-10-11 01:12:08 +4329 4329 4330 432.9 865.8000000000001 4329 1981-11-08 2024-10-11 01:12:09.000 1981-11-08 2024-10-11 01:12:09 +4331 4331 4332 433.1 866.2 4331 1981-11-10 2024-10-11 01:12:11.000 1981-11-10 2024-10-11 01:12:11 +4332 4332 4333 433.2 866.4000000000001 4332 1981-11-11 2024-10-11 01:12:12.000 1981-11-11 2024-10-11 01:12:12 +4333 4333 4334 433.3 866.6 4333 1981-11-12 2024-10-11 01:12:13.000 1981-11-12 2024-10-11 01:12:13 +4334 4334 4335 433.4 866.8000000000001 4334 1981-11-13 2024-10-11 01:12:14.000 1981-11-13 2024-10-11 01:12:14 +4336 4336 4337 433.6 867.2 4336 1981-11-15 2024-10-11 01:12:16.000 1981-11-15 2024-10-11 01:12:16 +4337 4337 4338 433.7 867.4000000000001 4337 1981-11-16 2024-10-11 01:12:17.000 1981-11-16 2024-10-11 01:12:17 +4338 4338 4339 433.8 867.6 4338 1981-11-17 2024-10-11 01:12:18.000 1981-11-17 2024-10-11 01:12:18 +4339 4339 4340 433.9 867.8000000000001 4339 1981-11-18 2024-10-11 01:12:19.000 1981-11-18 2024-10-11 01:12:19 +4341 4341 4342 434.1 868.2 4341 1981-11-20 2024-10-11 01:12:21.000 1981-11-20 2024-10-11 01:12:21 +4342 4342 4343 434.2 868.4000000000001 4342 1981-11-21 2024-10-11 01:12:22.000 1981-11-21 2024-10-11 01:12:22 +4343 4343 4344 434.3 868.6 4343 1981-11-22 2024-10-11 01:12:23.000 1981-11-22 2024-10-11 01:12:23 +4344 4344 4345 434.4 868.8000000000001 4344 1981-11-23 2024-10-11 01:12:24.000 1981-11-23 2024-10-11 01:12:24 +4346 4346 4347 434.6 869.2 4346 1981-11-25 2024-10-11 01:12:26.000 1981-11-25 2024-10-11 01:12:26 +4347 4347 4348 434.7 869.4000000000001 4347 1981-11-26 2024-10-11 01:12:27.000 1981-11-26 2024-10-11 01:12:27 +4348 4348 4349 434.8 869.6 4348 1981-11-27 2024-10-11 01:12:28.000 1981-11-27 2024-10-11 01:12:28 +4349 4349 4350 434.9 869.8000000000001 4349 1981-11-28 2024-10-11 01:12:29.000 1981-11-28 2024-10-11 01:12:29 +4351 4351 4352 435.1 870.2 4351 1981-11-30 2024-10-11 01:12:31.000 1981-11-30 2024-10-11 01:12:31 +4352 4352 4353 435.2 870.4000000000001 4352 1981-12-01 2024-10-11 01:12:32.000 1981-12-01 2024-10-11 01:12:32 +4353 4353 4354 435.3 870.6 4353 1981-12-02 2024-10-11 01:12:33.000 1981-12-02 2024-10-11 01:12:33 +4354 4354 4355 435.4 870.8000000000001 4354 1981-12-03 2024-10-11 01:12:34.000 1981-12-03 2024-10-11 01:12:34 +4356 4356 4357 435.6 871.2 4356 1981-12-05 2024-10-11 01:12:36.000 1981-12-05 2024-10-11 01:12:36 +4357 4357 4358 435.7 871.4000000000001 4357 1981-12-06 2024-10-11 01:12:37.000 1981-12-06 2024-10-11 01:12:37 +4358 4358 4359 435.8 871.6 4358 1981-12-07 2024-10-11 01:12:38.000 1981-12-07 2024-10-11 01:12:38 +4359 4359 4360 435.9 871.8000000000001 4359 1981-12-08 2024-10-11 01:12:39.000 1981-12-08 2024-10-11 01:12:39 +4361 4361 4362 436.1 872.2 4361 1981-12-10 2024-10-11 01:12:41.000 1981-12-10 2024-10-11 01:12:41 +4362 4362 4363 436.2 872.4000000000001 4362 1981-12-11 2024-10-11 01:12:42.000 1981-12-11 2024-10-11 01:12:42 +4363 4363 4364 436.3 872.6 4363 1981-12-12 2024-10-11 01:12:43.000 1981-12-12 2024-10-11 01:12:43 +4364 4364 4365 436.4 872.8000000000001 4364 1981-12-13 2024-10-11 01:12:44.000 1981-12-13 2024-10-11 01:12:44 +4366 4366 4367 436.6 873.2 4366 1981-12-15 2024-10-11 01:12:46.000 1981-12-15 2024-10-11 01:12:46 +4367 4367 4368 436.7 873.4000000000001 4367 1981-12-16 2024-10-11 01:12:47.000 1981-12-16 2024-10-11 01:12:47 +4368 4368 4369 436.8 873.6 4368 1981-12-17 2024-10-11 01:12:48.000 1981-12-17 2024-10-11 01:12:48 +4369 4369 4370 436.9 873.8000000000001 4369 1981-12-18 2024-10-11 01:12:49.000 1981-12-18 2024-10-11 01:12:49 +4371 4371 4372 437.1 874.2 4371 1981-12-20 2024-10-11 01:12:51.000 1981-12-20 2024-10-11 01:12:51 +4372 4372 4373 437.2 874.4000000000001 4372 1981-12-21 2024-10-11 01:12:52.000 1981-12-21 2024-10-11 01:12:52 +4373 4373 4374 437.3 874.6 4373 1981-12-22 2024-10-11 01:12:53.000 1981-12-22 2024-10-11 01:12:53 +4374 4374 4375 437.4 874.8000000000001 4374 1981-12-23 2024-10-11 01:12:54.000 1981-12-23 2024-10-11 01:12:54 +4376 4376 4377 437.6 875.2 4376 1981-12-25 2024-10-11 01:12:56.000 1981-12-25 2024-10-11 01:12:56 +4377 4377 4378 437.7 875.4000000000001 4377 1981-12-26 2024-10-11 01:12:57.000 1981-12-26 2024-10-11 01:12:57 +4378 4378 4379 437.8 875.6 4378 1981-12-27 2024-10-11 01:12:58.000 1981-12-27 2024-10-11 01:12:58 +4379 4379 4380 437.9 875.8000000000001 4379 1981-12-28 2024-10-11 01:12:59.000 1981-12-28 2024-10-11 01:12:59 +4381 4381 4382 438.1 876.2 4381 1981-12-30 2024-10-11 01:13:01.000 1981-12-30 2024-10-11 01:13:01 +4382 4382 4383 438.2 876.4000000000001 4382 1981-12-31 2024-10-11 01:13:02.000 1981-12-31 2024-10-11 01:13:02 +4383 4383 4384 438.3 876.6 4383 1982-01-01 2024-10-11 01:13:03.000 1982-01-01 2024-10-11 01:13:03 +4384 4384 4385 438.4 876.8000000000001 4384 1982-01-02 2024-10-11 01:13:04.000 1982-01-02 2024-10-11 01:13:04 +4386 4386 4387 438.6 877.2 4386 1982-01-04 2024-10-11 01:13:06.000 1982-01-04 2024-10-11 01:13:06 +4387 4387 4388 438.7 877.4000000000001 4387 1982-01-05 2024-10-11 01:13:07.000 1982-01-05 2024-10-11 01:13:07 +4388 4388 4389 438.8 877.6 4388 1982-01-06 2024-10-11 01:13:08.000 1982-01-06 2024-10-11 01:13:08 +4389 4389 4390 438.9 877.8000000000001 4389 1982-01-07 2024-10-11 01:13:09.000 1982-01-07 2024-10-11 01:13:09 +4391 4391 4392 439.1 878.2 4391 1982-01-09 2024-10-11 01:13:11.000 1982-01-09 2024-10-11 01:13:11 +4392 4392 4393 439.2 878.4000000000001 4392 1982-01-10 2024-10-11 01:13:12.000 1982-01-10 2024-10-11 01:13:12 +4393 4393 4394 439.3 878.6 4393 1982-01-11 2024-10-11 01:13:13.000 1982-01-11 2024-10-11 01:13:13 +4394 4394 4395 439.4 878.8000000000001 4394 1982-01-12 2024-10-11 01:13:14.000 1982-01-12 2024-10-11 01:13:14 +4396 4396 4397 439.6 879.2 4396 1982-01-14 2024-10-11 01:13:16.000 1982-01-14 2024-10-11 01:13:16 +4397 4397 4398 439.7 879.4000000000001 4397 1982-01-15 2024-10-11 01:13:17.000 1982-01-15 2024-10-11 01:13:17 +4398 4398 4399 439.8 879.6 4398 1982-01-16 2024-10-11 01:13:18.000 1982-01-16 2024-10-11 01:13:18 +4399 4399 4400 439.9 879.8000000000001 4399 1982-01-17 2024-10-11 01:13:19.000 1982-01-17 2024-10-11 01:13:19 +4401 4401 4402 440.1 880.2 4401 1982-01-19 2024-10-11 01:13:21.000 1982-01-19 2024-10-11 01:13:21 +4402 4402 4403 440.2 880.4000000000001 4402 1982-01-20 2024-10-11 01:13:22.000 1982-01-20 2024-10-11 01:13:22 +4403 4403 4404 440.3 880.6 4403 1982-01-21 2024-10-11 01:13:23.000 1982-01-21 2024-10-11 01:13:23 +4404 4404 4405 440.4 880.8000000000001 4404 1982-01-22 2024-10-11 01:13:24.000 1982-01-22 2024-10-11 01:13:24 +4406 4406 4407 440.6 881.2 4406 1982-01-24 2024-10-11 01:13:26.000 1982-01-24 2024-10-11 01:13:26 +4407 4407 4408 440.7 881.4000000000001 4407 1982-01-25 2024-10-11 01:13:27.000 1982-01-25 2024-10-11 01:13:27 +4408 4408 4409 440.8 881.6 4408 1982-01-26 2024-10-11 01:13:28.000 1982-01-26 2024-10-11 01:13:28 +4409 4409 4410 440.9 881.8000000000001 4409 1982-01-27 2024-10-11 01:13:29.000 1982-01-27 2024-10-11 01:13:29 +4411 4411 4412 441.1 882.2 4411 1982-01-29 2024-10-11 01:13:31.000 1982-01-29 2024-10-11 01:13:31 +4412 4412 4413 441.2 882.4000000000001 4412 1982-01-30 2024-10-11 01:13:32.000 1982-01-30 2024-10-11 01:13:32 +4413 4413 4414 441.3 882.6 4413 1982-01-31 2024-10-11 01:13:33.000 1982-01-31 2024-10-11 01:13:33 +4414 4414 4415 441.4 882.8000000000001 4414 1982-02-01 2024-10-11 01:13:34.000 1982-02-01 2024-10-11 01:13:34 +4416 4416 4417 441.6 883.2 4416 1982-02-03 2024-10-11 01:13:36.000 1982-02-03 2024-10-11 01:13:36 +4417 4417 4418 441.7 883.4000000000001 4417 1982-02-04 2024-10-11 01:13:37.000 1982-02-04 2024-10-11 01:13:37 +4418 4418 4419 441.8 883.6 4418 1982-02-05 2024-10-11 01:13:38.000 1982-02-05 2024-10-11 01:13:38 +4419 4419 4420 441.9 883.8000000000001 4419 1982-02-06 2024-10-11 01:13:39.000 1982-02-06 2024-10-11 01:13:39 +4421 4421 4422 442.1 884.2 4421 1982-02-08 2024-10-11 01:13:41.000 1982-02-08 2024-10-11 01:13:41 +4422 4422 4423 442.2 884.4000000000001 4422 1982-02-09 2024-10-11 01:13:42.000 1982-02-09 2024-10-11 01:13:42 +4423 4423 4424 442.3 884.6 4423 1982-02-10 2024-10-11 01:13:43.000 1982-02-10 2024-10-11 01:13:43 +4424 4424 4425 442.4 884.8000000000001 4424 1982-02-11 2024-10-11 01:13:44.000 1982-02-11 2024-10-11 01:13:44 +4426 4426 4427 442.6 885.2 4426 1982-02-13 2024-10-11 01:13:46.000 1982-02-13 2024-10-11 01:13:46 +4427 4427 4428 442.7 885.4000000000001 4427 1982-02-14 2024-10-11 01:13:47.000 1982-02-14 2024-10-11 01:13:47 +4428 4428 4429 442.8 885.6 4428 1982-02-15 2024-10-11 01:13:48.000 1982-02-15 2024-10-11 01:13:48 +4429 4429 4430 442.9 885.8000000000001 4429 1982-02-16 2024-10-11 01:13:49.000 1982-02-16 2024-10-11 01:13:49 +4431 4431 4432 443.1 886.2 4431 1982-02-18 2024-10-11 01:13:51.000 1982-02-18 2024-10-11 01:13:51 +4432 4432 4433 443.2 886.4000000000001 4432 1982-02-19 2024-10-11 01:13:52.000 1982-02-19 2024-10-11 01:13:52 +4433 4433 4434 443.3 886.6 4433 1982-02-20 2024-10-11 01:13:53.000 1982-02-20 2024-10-11 01:13:53 +4434 4434 4435 443.4 886.8000000000001 4434 1982-02-21 2024-10-11 01:13:54.000 1982-02-21 2024-10-11 01:13:54 +4436 4436 4437 443.6 887.2 4436 1982-02-23 2024-10-11 01:13:56.000 1982-02-23 2024-10-11 01:13:56 +4437 4437 4438 443.7 887.4000000000001 4437 1982-02-24 2024-10-11 01:13:57.000 1982-02-24 2024-10-11 01:13:57 +4438 4438 4439 443.8 887.6 4438 1982-02-25 2024-10-11 01:13:58.000 1982-02-25 2024-10-11 01:13:58 +4439 4439 4440 443.9 887.8000000000001 4439 1982-02-26 2024-10-11 01:13:59.000 1982-02-26 2024-10-11 01:13:59 +4441 4441 4442 444.1 888.2 4441 1982-02-28 2024-10-11 01:14:01.000 1982-02-28 2024-10-11 01:14:01 +4442 4442 4443 444.2 888.4000000000001 4442 1982-03-01 2024-10-11 01:14:02.000 1982-03-01 2024-10-11 01:14:02 +4443 4443 4444 444.3 888.6 4443 1982-03-02 2024-10-11 01:14:03.000 1982-03-02 2024-10-11 01:14:03 +4444 4444 4445 444.4 888.8000000000001 4444 1982-03-03 2024-10-11 01:14:04.000 1982-03-03 2024-10-11 01:14:04 +4446 4446 4447 444.6 889.2 4446 1982-03-05 2024-10-11 01:14:06.000 1982-03-05 2024-10-11 01:14:06 +4447 4447 4448 444.7 889.4000000000001 4447 1982-03-06 2024-10-11 01:14:07.000 1982-03-06 2024-10-11 01:14:07 +4448 4448 4449 444.8 889.6 4448 1982-03-07 2024-10-11 01:14:08.000 1982-03-07 2024-10-11 01:14:08 +4449 4449 4450 444.9 889.8000000000001 4449 1982-03-08 2024-10-11 01:14:09.000 1982-03-08 2024-10-11 01:14:09 +4451 4451 4452 445.1 890.2 4451 1982-03-10 2024-10-11 01:14:11.000 1982-03-10 2024-10-11 01:14:11 +4452 4452 4453 445.2 890.4000000000001 4452 1982-03-11 2024-10-11 01:14:12.000 1982-03-11 2024-10-11 01:14:12 +4453 4453 4454 445.3 890.6 4453 1982-03-12 2024-10-11 01:14:13.000 1982-03-12 2024-10-11 01:14:13 +4454 4454 4455 445.4 890.8000000000001 4454 1982-03-13 2024-10-11 01:14:14.000 1982-03-13 2024-10-11 01:14:14 +4456 4456 4457 445.6 891.2 4456 1982-03-15 2024-10-11 01:14:16.000 1982-03-15 2024-10-11 01:14:16 +4457 4457 4458 445.7 891.4000000000001 4457 1982-03-16 2024-10-11 01:14:17.000 1982-03-16 2024-10-11 01:14:17 +4458 4458 4459 445.8 891.6 4458 1982-03-17 2024-10-11 01:14:18.000 1982-03-17 2024-10-11 01:14:18 +4459 4459 4460 445.9 891.8000000000001 4459 1982-03-18 2024-10-11 01:14:19.000 1982-03-18 2024-10-11 01:14:19 +4461 4461 4462 446.1 892.2 4461 1982-03-20 2024-10-11 01:14:21.000 1982-03-20 2024-10-11 01:14:21 +4462 4462 4463 446.2 892.4000000000001 4462 1982-03-21 2024-10-11 01:14:22.000 1982-03-21 2024-10-11 01:14:22 +4463 4463 4464 446.3 892.6 4463 1982-03-22 2024-10-11 01:14:23.000 1982-03-22 2024-10-11 01:14:23 +4464 4464 4465 446.4 892.8000000000001 4464 1982-03-23 2024-10-11 01:14:24.000 1982-03-23 2024-10-11 01:14:24 +4466 4466 4467 446.6 893.2 4466 1982-03-25 2024-10-11 01:14:26.000 1982-03-25 2024-10-11 01:14:26 +4467 4467 4468 446.7 893.4000000000001 4467 1982-03-26 2024-10-11 01:14:27.000 1982-03-26 2024-10-11 01:14:27 +4468 4468 4469 446.8 893.6 4468 1982-03-27 2024-10-11 01:14:28.000 1982-03-27 2024-10-11 01:14:28 +4469 4469 4470 446.9 893.8000000000001 4469 1982-03-28 2024-10-11 01:14:29.000 1982-03-28 2024-10-11 01:14:29 +4471 4471 4472 447.1 894.2 4471 1982-03-30 2024-10-11 01:14:31.000 1982-03-30 2024-10-11 01:14:31 +4472 4472 4473 447.2 894.4000000000001 4472 1982-03-31 2024-10-11 01:14:32.000 1982-03-31 2024-10-11 01:14:32 +4473 4473 4474 447.3 894.6 4473 1982-04-01 2024-10-11 01:14:33.000 1982-04-01 2024-10-11 01:14:33 +4474 4474 4475 447.4 894.8000000000001 4474 1982-04-02 2024-10-11 01:14:34.000 1982-04-02 2024-10-11 01:14:34 +4476 4476 4477 447.6 895.2 4476 1982-04-04 2024-10-11 01:14:36.000 1982-04-04 2024-10-11 01:14:36 +4477 4477 4478 447.7 895.4000000000001 4477 1982-04-05 2024-10-11 01:14:37.000 1982-04-05 2024-10-11 01:14:37 +4478 4478 4479 447.8 895.6 4478 1982-04-06 2024-10-11 01:14:38.000 1982-04-06 2024-10-11 01:14:38 +4479 4479 4480 447.9 895.8000000000001 4479 1982-04-07 2024-10-11 01:14:39.000 1982-04-07 2024-10-11 01:14:39 +4481 4481 4482 448.1 896.2 4481 1982-04-09 2024-10-11 01:14:41.000 1982-04-09 2024-10-11 01:14:41 +4482 4482 4483 448.2 896.4000000000001 4482 1982-04-10 2024-10-11 01:14:42.000 1982-04-10 2024-10-11 01:14:42 +4483 4483 4484 448.3 896.6 4483 1982-04-11 2024-10-11 01:14:43.000 1982-04-11 2024-10-11 01:14:43 +4484 4484 4485 448.4 896.8000000000001 4484 1982-04-12 2024-10-11 01:14:44.000 1982-04-12 2024-10-11 01:14:44 +4486 4486 4487 448.6 897.2 4486 1982-04-14 2024-10-11 01:14:46.000 1982-04-14 2024-10-11 01:14:46 +4487 4487 4488 448.7 897.4000000000001 4487 1982-04-15 2024-10-11 01:14:47.000 1982-04-15 2024-10-11 01:14:47 +4488 4488 4489 448.8 897.6 4488 1982-04-16 2024-10-11 01:14:48.000 1982-04-16 2024-10-11 01:14:48 +4489 4489 4490 448.9 897.8000000000001 4489 1982-04-17 2024-10-11 01:14:49.000 1982-04-17 2024-10-11 01:14:49 +4491 4491 4492 449.1 898.2 4491 1982-04-19 2024-10-11 01:14:51.000 1982-04-19 2024-10-11 01:14:51 +4492 4492 4493 449.2 898.4000000000001 4492 1982-04-20 2024-10-11 01:14:52.000 1982-04-20 2024-10-11 01:14:52 +4493 4493 4494 449.3 898.6 4493 1982-04-21 2024-10-11 01:14:53.000 1982-04-21 2024-10-11 01:14:53 +4494 4494 4495 449.4 898.8000000000001 4494 1982-04-22 2024-10-11 01:14:54.000 1982-04-22 2024-10-11 01:14:54 +4496 4496 4497 449.6 899.2 4496 1982-04-24 2024-10-11 01:14:56.000 1982-04-24 2024-10-11 01:14:56 +4497 4497 4498 449.7 899.4000000000001 4497 1982-04-25 2024-10-11 01:14:57.000 1982-04-25 2024-10-11 01:14:57 +4498 4498 4499 449.8 899.6 4498 1982-04-26 2024-10-11 01:14:58.000 1982-04-26 2024-10-11 01:14:58 +4499 4499 4500 449.9 899.8000000000001 4499 1982-04-27 2024-10-11 01:14:59.000 1982-04-27 2024-10-11 01:14:59 +4501 4501 4502 450.1 900.2 4501 1982-04-29 2024-10-11 01:15:01.000 1982-04-29 2024-10-11 01:15:01 +4502 4502 4503 450.2 900.4000000000001 4502 1982-04-30 2024-10-11 01:15:02.000 1982-04-30 2024-10-11 01:15:02 +4503 4503 4504 450.3 900.6 4503 1982-05-01 2024-10-11 01:15:03.000 1982-05-01 2024-10-11 01:15:03 +4504 4504 4505 450.4 900.8000000000001 4504 1982-05-02 2024-10-11 01:15:04.000 1982-05-02 2024-10-11 01:15:04 +4506 4506 4507 450.6 901.2 4506 1982-05-04 2024-10-11 01:15:06.000 1982-05-04 2024-10-11 01:15:06 +4507 4507 4508 450.7 901.4000000000001 4507 1982-05-05 2024-10-11 01:15:07.000 1982-05-05 2024-10-11 01:15:07 +4508 4508 4509 450.8 901.6 4508 1982-05-06 2024-10-11 01:15:08.000 1982-05-06 2024-10-11 01:15:08 +4509 4509 4510 450.9 901.8000000000001 4509 1982-05-07 2024-10-11 01:15:09.000 1982-05-07 2024-10-11 01:15:09 +4511 4511 4512 451.1 902.2 4511 1982-05-09 2024-10-11 01:15:11.000 1982-05-09 2024-10-11 01:15:11 +4512 4512 4513 451.2 902.4000000000001 4512 1982-05-10 2024-10-11 01:15:12.000 1982-05-10 2024-10-11 01:15:12 +4513 4513 4514 451.3 902.6 4513 1982-05-11 2024-10-11 01:15:13.000 1982-05-11 2024-10-11 01:15:13 +4514 4514 4515 451.4 902.8000000000001 4514 1982-05-12 2024-10-11 01:15:14.000 1982-05-12 2024-10-11 01:15:14 +4516 4516 4517 451.6 903.2 4516 1982-05-14 2024-10-11 01:15:16.000 1982-05-14 2024-10-11 01:15:16 +4517 4517 4518 451.7 903.4000000000001 4517 1982-05-15 2024-10-11 01:15:17.000 1982-05-15 2024-10-11 01:15:17 +4518 4518 4519 451.8 903.6 4518 1982-05-16 2024-10-11 01:15:18.000 1982-05-16 2024-10-11 01:15:18 +4519 4519 4520 451.9 903.8000000000001 4519 1982-05-17 2024-10-11 01:15:19.000 1982-05-17 2024-10-11 01:15:19 +4521 4521 4522 452.1 904.2 4521 1982-05-19 2024-10-11 01:15:21.000 1982-05-19 2024-10-11 01:15:21 +4522 4522 4523 452.2 904.4000000000001 4522 1982-05-20 2024-10-11 01:15:22.000 1982-05-20 2024-10-11 01:15:22 +4523 4523 4524 452.3 904.6 4523 1982-05-21 2024-10-11 01:15:23.000 1982-05-21 2024-10-11 01:15:23 +4524 4524 4525 452.4 904.8000000000001 4524 1982-05-22 2024-10-11 01:15:24.000 1982-05-22 2024-10-11 01:15:24 +4526 4526 4527 452.6 905.2 4526 1982-05-24 2024-10-11 01:15:26.000 1982-05-24 2024-10-11 01:15:26 +4527 4527 4528 452.7 905.4000000000001 4527 1982-05-25 2024-10-11 01:15:27.000 1982-05-25 2024-10-11 01:15:27 +4528 4528 4529 452.8 905.6 4528 1982-05-26 2024-10-11 01:15:28.000 1982-05-26 2024-10-11 01:15:28 +4529 4529 4530 452.9 905.8000000000001 4529 1982-05-27 2024-10-11 01:15:29.000 1982-05-27 2024-10-11 01:15:29 +4531 4531 4532 453.1 906.2 4531 1982-05-29 2024-10-11 01:15:31.000 1982-05-29 2024-10-11 01:15:31 +4532 4532 4533 453.2 906.4000000000001 4532 1982-05-30 2024-10-11 01:15:32.000 1982-05-30 2024-10-11 01:15:32 +4533 4533 4534 453.3 906.6 4533 1982-05-31 2024-10-11 01:15:33.000 1982-05-31 2024-10-11 01:15:33 +4534 4534 4535 453.4 906.8000000000001 4534 1982-06-01 2024-10-11 01:15:34.000 1982-06-01 2024-10-11 01:15:34 +4536 4536 4537 453.6 907.2 4536 1982-06-03 2024-10-11 01:15:36.000 1982-06-03 2024-10-11 01:15:36 +4537 4537 4538 453.7 907.4000000000001 4537 1982-06-04 2024-10-11 01:15:37.000 1982-06-04 2024-10-11 01:15:37 +4538 4538 4539 453.8 907.6 4538 1982-06-05 2024-10-11 01:15:38.000 1982-06-05 2024-10-11 01:15:38 +4539 4539 4540 453.9 907.8000000000001 4539 1982-06-06 2024-10-11 01:15:39.000 1982-06-06 2024-10-11 01:15:39 +4541 4541 4542 454.1 908.2 4541 1982-06-08 2024-10-11 01:15:41.000 1982-06-08 2024-10-11 01:15:41 +4542 4542 4543 454.2 908.4000000000001 4542 1982-06-09 2024-10-11 01:15:42.000 1982-06-09 2024-10-11 01:15:42 +4543 4543 4544 454.3 908.6 4543 1982-06-10 2024-10-11 01:15:43.000 1982-06-10 2024-10-11 01:15:43 +4544 4544 4545 454.4 908.8000000000001 4544 1982-06-11 2024-10-11 01:15:44.000 1982-06-11 2024-10-11 01:15:44 +4546 4546 4547 454.6 909.2 4546 1982-06-13 2024-10-11 01:15:46.000 1982-06-13 2024-10-11 01:15:46 +4547 4547 4548 454.7 909.4000000000001 4547 1982-06-14 2024-10-11 01:15:47.000 1982-06-14 2024-10-11 01:15:47 +4548 4548 4549 454.8 909.6 4548 1982-06-15 2024-10-11 01:15:48.000 1982-06-15 2024-10-11 01:15:48 +4549 4549 4550 454.9 909.8000000000001 4549 1982-06-16 2024-10-11 01:15:49.000 1982-06-16 2024-10-11 01:15:49 +4551 4551 4552 455.1 910.2 4551 1982-06-18 2024-10-11 01:15:51.000 1982-06-18 2024-10-11 01:15:51 +4552 4552 4553 455.2 910.4000000000001 4552 1982-06-19 2024-10-11 01:15:52.000 1982-06-19 2024-10-11 01:15:52 +4553 4553 4554 455.3 910.6 4553 1982-06-20 2024-10-11 01:15:53.000 1982-06-20 2024-10-11 01:15:53 +4554 4554 4555 455.4 910.8000000000001 4554 1982-06-21 2024-10-11 01:15:54.000 1982-06-21 2024-10-11 01:15:54 +4556 4556 4557 455.6 911.2 4556 1982-06-23 2024-10-11 01:15:56.000 1982-06-23 2024-10-11 01:15:56 +4557 4557 4558 455.7 911.4000000000001 4557 1982-06-24 2024-10-11 01:15:57.000 1982-06-24 2024-10-11 01:15:57 +4558 4558 4559 455.8 911.6 4558 1982-06-25 2024-10-11 01:15:58.000 1982-06-25 2024-10-11 01:15:58 +4559 4559 4560 455.9 911.8000000000001 4559 1982-06-26 2024-10-11 01:15:59.000 1982-06-26 2024-10-11 01:15:59 +4561 4561 4562 456.1 912.2 4561 1982-06-28 2024-10-11 01:16:01.000 1982-06-28 2024-10-11 01:16:01 +4562 4562 4563 456.2 912.4000000000001 4562 1982-06-29 2024-10-11 01:16:02.000 1982-06-29 2024-10-11 01:16:02 +4563 4563 4564 456.3 912.6 4563 1982-06-30 2024-10-11 01:16:03.000 1982-06-30 2024-10-11 01:16:03 +4564 4564 4565 456.4 912.8000000000001 4564 1982-07-01 2024-10-11 01:16:04.000 1982-07-01 2024-10-11 01:16:04 +4566 4566 4567 456.6 913.2 4566 1982-07-03 2024-10-11 01:16:06.000 1982-07-03 2024-10-11 01:16:06 +4567 4567 4568 456.7 913.4000000000001 4567 1982-07-04 2024-10-11 01:16:07.000 1982-07-04 2024-10-11 01:16:07 +4568 4568 4569 456.8 913.6 4568 1982-07-05 2024-10-11 01:16:08.000 1982-07-05 2024-10-11 01:16:08 +4569 4569 4570 456.9 913.8000000000001 4569 1982-07-06 2024-10-11 01:16:09.000 1982-07-06 2024-10-11 01:16:09 +4571 4571 4572 457.1 914.2 4571 1982-07-08 2024-10-11 01:16:11.000 1982-07-08 2024-10-11 01:16:11 +4572 4572 4573 457.2 914.4000000000001 4572 1982-07-09 2024-10-11 01:16:12.000 1982-07-09 2024-10-11 01:16:12 +4573 4573 4574 457.3 914.6 4573 1982-07-10 2024-10-11 01:16:13.000 1982-07-10 2024-10-11 01:16:13 +4574 4574 4575 457.4 914.8000000000001 4574 1982-07-11 2024-10-11 01:16:14.000 1982-07-11 2024-10-11 01:16:14 +4576 4576 4577 457.6 915.2 4576 1982-07-13 2024-10-11 01:16:16.000 1982-07-13 2024-10-11 01:16:16 +4577 4577 4578 457.7 915.4000000000001 4577 1982-07-14 2024-10-11 01:16:17.000 1982-07-14 2024-10-11 01:16:17 +4578 4578 4579 457.8 915.6 4578 1982-07-15 2024-10-11 01:16:18.000 1982-07-15 2024-10-11 01:16:18 +4579 4579 4580 457.9 915.8000000000001 4579 1982-07-16 2024-10-11 01:16:19.000 1982-07-16 2024-10-11 01:16:19 +4581 4581 4582 458.1 916.2 4581 1982-07-18 2024-10-11 01:16:21.000 1982-07-18 2024-10-11 01:16:21 +4582 4582 4583 458.2 916.4000000000001 4582 1982-07-19 2024-10-11 01:16:22.000 1982-07-19 2024-10-11 01:16:22 +4583 4583 4584 458.3 916.6 4583 1982-07-20 2024-10-11 01:16:23.000 1982-07-20 2024-10-11 01:16:23 +4584 4584 4585 458.4 916.8000000000001 4584 1982-07-21 2024-10-11 01:16:24.000 1982-07-21 2024-10-11 01:16:24 +4586 4586 4587 458.6 917.2 4586 1982-07-23 2024-10-11 01:16:26.000 1982-07-23 2024-10-11 01:16:26 +4587 4587 4588 458.7 917.4000000000001 4587 1982-07-24 2024-10-11 01:16:27.000 1982-07-24 2024-10-11 01:16:27 +4588 4588 4589 458.8 917.6 4588 1982-07-25 2024-10-11 01:16:28.000 1982-07-25 2024-10-11 01:16:28 +4589 4589 4590 458.9 917.8000000000001 4589 1982-07-26 2024-10-11 01:16:29.000 1982-07-26 2024-10-11 01:16:29 +4591 4591 4592 459.1 918.2 4591 1982-07-28 2024-10-11 01:16:31.000 1982-07-28 2024-10-11 01:16:31 +4592 4592 4593 459.2 918.4000000000001 4592 1982-07-29 2024-10-11 01:16:32.000 1982-07-29 2024-10-11 01:16:32 +4593 4593 4594 459.3 918.6 4593 1982-07-30 2024-10-11 01:16:33.000 1982-07-30 2024-10-11 01:16:33 +4594 4594 4595 459.4 918.8000000000001 4594 1982-07-31 2024-10-11 01:16:34.000 1982-07-31 2024-10-11 01:16:34 +4596 4596 4597 459.6 919.2 4596 1982-08-02 2024-10-11 01:16:36.000 1982-08-02 2024-10-11 01:16:36 +4597 4597 4598 459.7 919.4000000000001 4597 1982-08-03 2024-10-11 01:16:37.000 1982-08-03 2024-10-11 01:16:37 +4598 4598 4599 459.8 919.6 4598 1982-08-04 2024-10-11 01:16:38.000 1982-08-04 2024-10-11 01:16:38 +4599 4599 4600 459.9 919.8000000000001 4599 1982-08-05 2024-10-11 01:16:39.000 1982-08-05 2024-10-11 01:16:39 +4601 4601 4602 460.1 920.2 4601 1982-08-07 2024-10-11 01:16:41.000 1982-08-07 2024-10-11 01:16:41 +4602 4602 4603 460.2 920.4000000000001 4602 1982-08-08 2024-10-11 01:16:42.000 1982-08-08 2024-10-11 01:16:42 +4603 4603 4604 460.3 920.6 4603 1982-08-09 2024-10-11 01:16:43.000 1982-08-09 2024-10-11 01:16:43 +4604 4604 4605 460.4 920.8000000000001 4604 1982-08-10 2024-10-11 01:16:44.000 1982-08-10 2024-10-11 01:16:44 +4606 4606 4607 460.6 921.2 4606 1982-08-12 2024-10-11 01:16:46.000 1982-08-12 2024-10-11 01:16:46 +4607 4607 4608 460.7 921.4000000000001 4607 1982-08-13 2024-10-11 01:16:47.000 1982-08-13 2024-10-11 01:16:47 +4608 4608 4609 460.8 921.6 4608 1982-08-14 2024-10-11 01:16:48.000 1982-08-14 2024-10-11 01:16:48 +4609 4609 4610 460.9 921.8000000000001 4609 1982-08-15 2024-10-11 01:16:49.000 1982-08-15 2024-10-11 01:16:49 +4611 4611 4612 461.1 922.2 4611 1982-08-17 2024-10-11 01:16:51.000 1982-08-17 2024-10-11 01:16:51 +4612 4612 4613 461.2 922.4000000000001 4612 1982-08-18 2024-10-11 01:16:52.000 1982-08-18 2024-10-11 01:16:52 +4613 4613 4614 461.3 922.6 4613 1982-08-19 2024-10-11 01:16:53.000 1982-08-19 2024-10-11 01:16:53 +4614 4614 4615 461.4 922.8000000000001 4614 1982-08-20 2024-10-11 01:16:54.000 1982-08-20 2024-10-11 01:16:54 +4616 4616 4617 461.6 923.2 4616 1982-08-22 2024-10-11 01:16:56.000 1982-08-22 2024-10-11 01:16:56 +4617 4617 4618 461.7 923.4000000000001 4617 1982-08-23 2024-10-11 01:16:57.000 1982-08-23 2024-10-11 01:16:57 +4618 4618 4619 461.8 923.6 4618 1982-08-24 2024-10-11 01:16:58.000 1982-08-24 2024-10-11 01:16:58 +4619 4619 4620 461.9 923.8000000000001 4619 1982-08-25 2024-10-11 01:16:59.000 1982-08-25 2024-10-11 01:16:59 +4621 4621 4622 462.1 924.2 4621 1982-08-27 2024-10-11 01:17:01.000 1982-08-27 2024-10-11 01:17:01 +4622 4622 4623 462.2 924.4000000000001 4622 1982-08-28 2024-10-11 01:17:02.000 1982-08-28 2024-10-11 01:17:02 +4623 4623 4624 462.3 924.6 4623 1982-08-29 2024-10-11 01:17:03.000 1982-08-29 2024-10-11 01:17:03 +4624 4624 4625 462.4 924.8000000000001 4624 1982-08-30 2024-10-11 01:17:04.000 1982-08-30 2024-10-11 01:17:04 +4626 4626 4627 462.6 925.2 4626 1982-09-01 2024-10-11 01:17:06.000 1982-09-01 2024-10-11 01:17:06 +4627 4627 4628 462.7 925.4000000000001 4627 1982-09-02 2024-10-11 01:17:07.000 1982-09-02 2024-10-11 01:17:07 +4628 4628 4629 462.8 925.6 4628 1982-09-03 2024-10-11 01:17:08.000 1982-09-03 2024-10-11 01:17:08 +4629 4629 4630 462.9 925.8000000000001 4629 1982-09-04 2024-10-11 01:17:09.000 1982-09-04 2024-10-11 01:17:09 +4631 4631 4632 463.1 926.2 4631 1982-09-06 2024-10-11 01:17:11.000 1982-09-06 2024-10-11 01:17:11 +4632 4632 4633 463.2 926.4000000000001 4632 1982-09-07 2024-10-11 01:17:12.000 1982-09-07 2024-10-11 01:17:12 +4633 4633 4634 463.3 926.6 4633 1982-09-08 2024-10-11 01:17:13.000 1982-09-08 2024-10-11 01:17:13 +4634 4634 4635 463.4 926.8000000000001 4634 1982-09-09 2024-10-11 01:17:14.000 1982-09-09 2024-10-11 01:17:14 +4636 4636 4637 463.6 927.2 4636 1982-09-11 2024-10-11 01:17:16.000 1982-09-11 2024-10-11 01:17:16 +4637 4637 4638 463.7 927.4000000000001 4637 1982-09-12 2024-10-11 01:17:17.000 1982-09-12 2024-10-11 01:17:17 +4638 4638 4639 463.8 927.6 4638 1982-09-13 2024-10-11 01:17:18.000 1982-09-13 2024-10-11 01:17:18 +4639 4639 4640 463.9 927.8000000000001 4639 1982-09-14 2024-10-11 01:17:19.000 1982-09-14 2024-10-11 01:17:19 +4641 4641 4642 464.1 928.2 4641 1982-09-16 2024-10-11 01:17:21.000 1982-09-16 2024-10-11 01:17:21 +4642 4642 4643 464.2 928.4000000000001 4642 1982-09-17 2024-10-11 01:17:22.000 1982-09-17 2024-10-11 01:17:22 +4643 4643 4644 464.3 928.6 4643 1982-09-18 2024-10-11 01:17:23.000 1982-09-18 2024-10-11 01:17:23 +4644 4644 4645 464.4 928.8000000000001 4644 1982-09-19 2024-10-11 01:17:24.000 1982-09-19 2024-10-11 01:17:24 +4646 4646 4647 464.6 929.2 4646 1982-09-21 2024-10-11 01:17:26.000 1982-09-21 2024-10-11 01:17:26 +4647 4647 4648 464.7 929.4000000000001 4647 1982-09-22 2024-10-11 01:17:27.000 1982-09-22 2024-10-11 01:17:27 +4648 4648 4649 464.8 929.6 4648 1982-09-23 2024-10-11 01:17:28.000 1982-09-23 2024-10-11 01:17:28 +4649 4649 4650 464.9 929.8000000000001 4649 1982-09-24 2024-10-11 01:17:29.000 1982-09-24 2024-10-11 01:17:29 +4651 4651 4652 465.1 930.2 4651 1982-09-26 2024-10-11 01:17:31.000 1982-09-26 2024-10-11 01:17:31 +4652 4652 4653 465.2 930.4000000000001 4652 1982-09-27 2024-10-11 01:17:32.000 1982-09-27 2024-10-11 01:17:32 +4653 4653 4654 465.3 930.6 4653 1982-09-28 2024-10-11 01:17:33.000 1982-09-28 2024-10-11 01:17:33 +4654 4654 4655 465.4 930.8000000000001 4654 1982-09-29 2024-10-11 01:17:34.000 1982-09-29 2024-10-11 01:17:34 +4656 4656 4657 465.6 931.2 4656 1982-10-01 2024-10-11 01:17:36.000 1982-10-01 2024-10-11 01:17:36 +4657 4657 4658 465.7 931.4000000000001 4657 1982-10-02 2024-10-11 01:17:37.000 1982-10-02 2024-10-11 01:17:37 +4658 4658 4659 465.8 931.6 4658 1982-10-03 2024-10-11 01:17:38.000 1982-10-03 2024-10-11 01:17:38 +4659 4659 4660 465.9 931.8000000000001 4659 1982-10-04 2024-10-11 01:17:39.000 1982-10-04 2024-10-11 01:17:39 +4661 4661 4662 466.1 932.2 4661 1982-10-06 2024-10-11 01:17:41.000 1982-10-06 2024-10-11 01:17:41 +4662 4662 4663 466.2 932.4000000000001 4662 1982-10-07 2024-10-11 01:17:42.000 1982-10-07 2024-10-11 01:17:42 +4663 4663 4664 466.3 932.6 4663 1982-10-08 2024-10-11 01:17:43.000 1982-10-08 2024-10-11 01:17:43 +4664 4664 4665 466.4 932.8000000000001 4664 1982-10-09 2024-10-11 01:17:44.000 1982-10-09 2024-10-11 01:17:44 +4666 4666 4667 466.6 933.2 4666 1982-10-11 2024-10-11 01:17:46.000 1982-10-11 2024-10-11 01:17:46 +4667 4667 4668 466.7 933.4000000000001 4667 1982-10-12 2024-10-11 01:17:47.000 1982-10-12 2024-10-11 01:17:47 +4668 4668 4669 466.8 933.6 4668 1982-10-13 2024-10-11 01:17:48.000 1982-10-13 2024-10-11 01:17:48 +4669 4669 4670 466.9 933.8000000000001 4669 1982-10-14 2024-10-11 01:17:49.000 1982-10-14 2024-10-11 01:17:49 +4671 4671 4672 467.1 934.2 4671 1982-10-16 2024-10-11 01:17:51.000 1982-10-16 2024-10-11 01:17:51 +4672 4672 4673 467.2 934.4000000000001 4672 1982-10-17 2024-10-11 01:17:52.000 1982-10-17 2024-10-11 01:17:52 +4673 4673 4674 467.3 934.6 4673 1982-10-18 2024-10-11 01:17:53.000 1982-10-18 2024-10-11 01:17:53 +4674 4674 4675 467.4 934.8000000000001 4674 1982-10-19 2024-10-11 01:17:54.000 1982-10-19 2024-10-11 01:17:54 +4676 4676 4677 467.6 935.2 4676 1982-10-21 2024-10-11 01:17:56.000 1982-10-21 2024-10-11 01:17:56 +4677 4677 4678 467.7 935.4000000000001 4677 1982-10-22 2024-10-11 01:17:57.000 1982-10-22 2024-10-11 01:17:57 +4678 4678 4679 467.8 935.6 4678 1982-10-23 2024-10-11 01:17:58.000 1982-10-23 2024-10-11 01:17:58 +4679 4679 4680 467.9 935.8000000000001 4679 1982-10-24 2024-10-11 01:17:59.000 1982-10-24 2024-10-11 01:17:59 +4681 4681 4682 468.1 936.2 4681 1982-10-26 2024-10-11 01:18:01.000 1982-10-26 2024-10-11 01:18:01 +4682 4682 4683 468.2 936.4000000000001 4682 1982-10-27 2024-10-11 01:18:02.000 1982-10-27 2024-10-11 01:18:02 +4683 4683 4684 468.3 936.6 4683 1982-10-28 2024-10-11 01:18:03.000 1982-10-28 2024-10-11 01:18:03 +4684 4684 4685 468.4 936.8000000000001 4684 1982-10-29 2024-10-11 01:18:04.000 1982-10-29 2024-10-11 01:18:04 +4686 4686 4687 468.6 937.2 4686 1982-10-31 2024-10-11 01:18:06.000 1982-10-31 2024-10-11 01:18:06 +4687 4687 4688 468.7 937.4000000000001 4687 1982-11-01 2024-10-11 01:18:07.000 1982-11-01 2024-10-11 01:18:07 +4688 4688 4689 468.8 937.6 4688 1982-11-02 2024-10-11 01:18:08.000 1982-11-02 2024-10-11 01:18:08 +4689 4689 4690 468.9 937.8000000000001 4689 1982-11-03 2024-10-11 01:18:09.000 1982-11-03 2024-10-11 01:18:09 +4691 4691 4692 469.1 938.2 4691 1982-11-05 2024-10-11 01:18:11.000 1982-11-05 2024-10-11 01:18:11 +4692 4692 4693 469.2 938.4000000000001 4692 1982-11-06 2024-10-11 01:18:12.000 1982-11-06 2024-10-11 01:18:12 +4693 4693 4694 469.3 938.6 4693 1982-11-07 2024-10-11 01:18:13.000 1982-11-07 2024-10-11 01:18:13 +4694 4694 4695 469.4 938.8000000000001 4694 1982-11-08 2024-10-11 01:18:14.000 1982-11-08 2024-10-11 01:18:14 +4696 4696 4697 469.6 939.2 4696 1982-11-10 2024-10-11 01:18:16.000 1982-11-10 2024-10-11 01:18:16 +4697 4697 4698 469.7 939.4000000000001 4697 1982-11-11 2024-10-11 01:18:17.000 1982-11-11 2024-10-11 01:18:17 +4698 4698 4699 469.8 939.6 4698 1982-11-12 2024-10-11 01:18:18.000 1982-11-12 2024-10-11 01:18:18 +4699 4699 4700 469.9 939.8000000000001 4699 1982-11-13 2024-10-11 01:18:19.000 1982-11-13 2024-10-11 01:18:19 +4701 4701 4702 470.1 940.2 4701 1982-11-15 2024-10-11 01:18:21.000 1982-11-15 2024-10-11 01:18:21 +4702 4702 4703 470.2 940.4000000000001 4702 1982-11-16 2024-10-11 01:18:22.000 1982-11-16 2024-10-11 01:18:22 +4703 4703 4704 470.3 940.6 4703 1982-11-17 2024-10-11 01:18:23.000 1982-11-17 2024-10-11 01:18:23 +4704 4704 4705 470.4 940.8000000000001 4704 1982-11-18 2024-10-11 01:18:24.000 1982-11-18 2024-10-11 01:18:24 +4706 4706 4707 470.6 941.2 4706 1982-11-20 2024-10-11 01:18:26.000 1982-11-20 2024-10-11 01:18:26 +4707 4707 4708 470.7 941.4000000000001 4707 1982-11-21 2024-10-11 01:18:27.000 1982-11-21 2024-10-11 01:18:27 +4708 4708 4709 470.8 941.6 4708 1982-11-22 2024-10-11 01:18:28.000 1982-11-22 2024-10-11 01:18:28 +4709 4709 4710 470.9 941.8000000000001 4709 1982-11-23 2024-10-11 01:18:29.000 1982-11-23 2024-10-11 01:18:29 +4711 4711 4712 471.1 942.2 4711 1982-11-25 2024-10-11 01:18:31.000 1982-11-25 2024-10-11 01:18:31 +4712 4712 4713 471.2 942.4000000000001 4712 1982-11-26 2024-10-11 01:18:32.000 1982-11-26 2024-10-11 01:18:32 +4713 4713 4714 471.3 942.6 4713 1982-11-27 2024-10-11 01:18:33.000 1982-11-27 2024-10-11 01:18:33 +4714 4714 4715 471.4 942.8000000000001 4714 1982-11-28 2024-10-11 01:18:34.000 1982-11-28 2024-10-11 01:18:34 +4716 4716 4717 471.6 943.2 4716 1982-11-30 2024-10-11 01:18:36.000 1982-11-30 2024-10-11 01:18:36 +4717 4717 4718 471.7 943.4000000000001 4717 1982-12-01 2024-10-11 01:18:37.000 1982-12-01 2024-10-11 01:18:37 +4718 4718 4719 471.8 943.6 4718 1982-12-02 2024-10-11 01:18:38.000 1982-12-02 2024-10-11 01:18:38 +4719 4719 4720 471.9 943.8000000000001 4719 1982-12-03 2024-10-11 01:18:39.000 1982-12-03 2024-10-11 01:18:39 +4721 4721 4722 472.1 944.2 4721 1982-12-05 2024-10-11 01:18:41.000 1982-12-05 2024-10-11 01:18:41 +4722 4722 4723 472.2 944.4000000000001 4722 1982-12-06 2024-10-11 01:18:42.000 1982-12-06 2024-10-11 01:18:42 +4723 4723 4724 472.3 944.6 4723 1982-12-07 2024-10-11 01:18:43.000 1982-12-07 2024-10-11 01:18:43 +4724 4724 4725 472.4 944.8000000000001 4724 1982-12-08 2024-10-11 01:18:44.000 1982-12-08 2024-10-11 01:18:44 +4726 4726 4727 472.6 945.2 4726 1982-12-10 2024-10-11 01:18:46.000 1982-12-10 2024-10-11 01:18:46 +4727 4727 4728 472.7 945.4000000000001 4727 1982-12-11 2024-10-11 01:18:47.000 1982-12-11 2024-10-11 01:18:47 +4728 4728 4729 472.8 945.6 4728 1982-12-12 2024-10-11 01:18:48.000 1982-12-12 2024-10-11 01:18:48 +4729 4729 4730 472.9 945.8000000000001 4729 1982-12-13 2024-10-11 01:18:49.000 1982-12-13 2024-10-11 01:18:49 +4731 4731 4732 473.1 946.2 4731 1982-12-15 2024-10-11 01:18:51.000 1982-12-15 2024-10-11 01:18:51 +4732 4732 4733 473.2 946.4000000000001 4732 1982-12-16 2024-10-11 01:18:52.000 1982-12-16 2024-10-11 01:18:52 +4733 4733 4734 473.3 946.6 4733 1982-12-17 2024-10-11 01:18:53.000 1982-12-17 2024-10-11 01:18:53 +4734 4734 4735 473.4 946.8000000000001 4734 1982-12-18 2024-10-11 01:18:54.000 1982-12-18 2024-10-11 01:18:54 +4736 4736 4737 473.6 947.2 4736 1982-12-20 2024-10-11 01:18:56.000 1982-12-20 2024-10-11 01:18:56 +4737 4737 4738 473.7 947.4000000000001 4737 1982-12-21 2024-10-11 01:18:57.000 1982-12-21 2024-10-11 01:18:57 +4738 4738 4739 473.8 947.6 4738 1982-12-22 2024-10-11 01:18:58.000 1982-12-22 2024-10-11 01:18:58 +4739 4739 4740 473.9 947.8000000000001 4739 1982-12-23 2024-10-11 01:18:59.000 1982-12-23 2024-10-11 01:18:59 +4741 4741 4742 474.1 948.2 4741 1982-12-25 2024-10-11 01:19:01.000 1982-12-25 2024-10-11 01:19:01 +4742 4742 4743 474.2 948.4000000000001 4742 1982-12-26 2024-10-11 01:19:02.000 1982-12-26 2024-10-11 01:19:02 +4743 4743 4744 474.3 948.6 4743 1982-12-27 2024-10-11 01:19:03.000 1982-12-27 2024-10-11 01:19:03 +4744 4744 4745 474.4 948.8000000000001 4744 1982-12-28 2024-10-11 01:19:04.000 1982-12-28 2024-10-11 01:19:04 +4746 4746 4747 474.6 949.2 4746 1982-12-30 2024-10-11 01:19:06.000 1982-12-30 2024-10-11 01:19:06 +4747 4747 4748 474.7 949.4000000000001 4747 1982-12-31 2024-10-11 01:19:07.000 1982-12-31 2024-10-11 01:19:07 +4748 4748 4749 474.8 949.6 4748 1983-01-01 2024-10-11 01:19:08.000 1983-01-01 2024-10-11 01:19:08 +4749 4749 4750 474.9 949.8000000000001 4749 1983-01-02 2024-10-11 01:19:09.000 1983-01-02 2024-10-11 01:19:09 +4751 4751 4752 475.1 950.2 4751 1983-01-04 2024-10-11 01:19:11.000 1983-01-04 2024-10-11 01:19:11 +4752 4752 4753 475.2 950.4000000000001 4752 1983-01-05 2024-10-11 01:19:12.000 1983-01-05 2024-10-11 01:19:12 +4753 4753 4754 475.3 950.6 4753 1983-01-06 2024-10-11 01:19:13.000 1983-01-06 2024-10-11 01:19:13 +4754 4754 4755 475.4 950.8000000000001 4754 1983-01-07 2024-10-11 01:19:14.000 1983-01-07 2024-10-11 01:19:14 +4756 4756 4757 475.6 951.2 4756 1983-01-09 2024-10-11 01:19:16.000 1983-01-09 2024-10-11 01:19:16 +4757 4757 4758 475.7 951.4000000000001 4757 1983-01-10 2024-10-11 01:19:17.000 1983-01-10 2024-10-11 01:19:17 +4758 4758 4759 475.8 951.6 4758 1983-01-11 2024-10-11 01:19:18.000 1983-01-11 2024-10-11 01:19:18 +4759 4759 4760 475.9 951.8000000000001 4759 1983-01-12 2024-10-11 01:19:19.000 1983-01-12 2024-10-11 01:19:19 +4761 4761 4762 476.1 952.2 4761 1983-01-14 2024-10-11 01:19:21.000 1983-01-14 2024-10-11 01:19:21 +4762 4762 4763 476.2 952.4000000000001 4762 1983-01-15 2024-10-11 01:19:22.000 1983-01-15 2024-10-11 01:19:22 +4763 4763 4764 476.3 952.6 4763 1983-01-16 2024-10-11 01:19:23.000 1983-01-16 2024-10-11 01:19:23 +4764 4764 4765 476.4 952.8000000000001 4764 1983-01-17 2024-10-11 01:19:24.000 1983-01-17 2024-10-11 01:19:24 +4766 4766 4767 476.6 953.2 4766 1983-01-19 2024-10-11 01:19:26.000 1983-01-19 2024-10-11 01:19:26 +4767 4767 4768 476.7 953.4000000000001 4767 1983-01-20 2024-10-11 01:19:27.000 1983-01-20 2024-10-11 01:19:27 +4768 4768 4769 476.8 953.6 4768 1983-01-21 2024-10-11 01:19:28.000 1983-01-21 2024-10-11 01:19:28 +4769 4769 4770 476.9 953.8000000000001 4769 1983-01-22 2024-10-11 01:19:29.000 1983-01-22 2024-10-11 01:19:29 +4771 4771 4772 477.1 954.2 4771 1983-01-24 2024-10-11 01:19:31.000 1983-01-24 2024-10-11 01:19:31 +4772 4772 4773 477.2 954.4000000000001 4772 1983-01-25 2024-10-11 01:19:32.000 1983-01-25 2024-10-11 01:19:32 +4773 4773 4774 477.3 954.6 4773 1983-01-26 2024-10-11 01:19:33.000 1983-01-26 2024-10-11 01:19:33 +4774 4774 4775 477.4 954.8000000000001 4774 1983-01-27 2024-10-11 01:19:34.000 1983-01-27 2024-10-11 01:19:34 +4776 4776 4777 477.6 955.2 4776 1983-01-29 2024-10-11 01:19:36.000 1983-01-29 2024-10-11 01:19:36 +4777 4777 4778 477.7 955.4000000000001 4777 1983-01-30 2024-10-11 01:19:37.000 1983-01-30 2024-10-11 01:19:37 +4778 4778 4779 477.8 955.6 4778 1983-01-31 2024-10-11 01:19:38.000 1983-01-31 2024-10-11 01:19:38 +4779 4779 4780 477.9 955.8000000000001 4779 1983-02-01 2024-10-11 01:19:39.000 1983-02-01 2024-10-11 01:19:39 +4781 4781 4782 478.1 956.2 4781 1983-02-03 2024-10-11 01:19:41.000 1983-02-03 2024-10-11 01:19:41 +4782 4782 4783 478.2 956.4000000000001 4782 1983-02-04 2024-10-11 01:19:42.000 1983-02-04 2024-10-11 01:19:42 +4783 4783 4784 478.3 956.6 4783 1983-02-05 2024-10-11 01:19:43.000 1983-02-05 2024-10-11 01:19:43 +4784 4784 4785 478.4 956.8000000000001 4784 1983-02-06 2024-10-11 01:19:44.000 1983-02-06 2024-10-11 01:19:44 +4786 4786 4787 478.6 957.2 4786 1983-02-08 2024-10-11 01:19:46.000 1983-02-08 2024-10-11 01:19:46 +4787 4787 4788 478.7 957.4000000000001 4787 1983-02-09 2024-10-11 01:19:47.000 1983-02-09 2024-10-11 01:19:47 +4788 4788 4789 478.8 957.6 4788 1983-02-10 2024-10-11 01:19:48.000 1983-02-10 2024-10-11 01:19:48 +4789 4789 4790 478.9 957.8000000000001 4789 1983-02-11 2024-10-11 01:19:49.000 1983-02-11 2024-10-11 01:19:49 +4791 4791 4792 479.1 958.2 4791 1983-02-13 2024-10-11 01:19:51.000 1983-02-13 2024-10-11 01:19:51 +4792 4792 4793 479.2 958.4000000000001 4792 1983-02-14 2024-10-11 01:19:52.000 1983-02-14 2024-10-11 01:19:52 +4793 4793 4794 479.3 958.6 4793 1983-02-15 2024-10-11 01:19:53.000 1983-02-15 2024-10-11 01:19:53 +4794 4794 4795 479.4 958.8000000000001 4794 1983-02-16 2024-10-11 01:19:54.000 1983-02-16 2024-10-11 01:19:54 +4796 4796 4797 479.6 959.2 4796 1983-02-18 2024-10-11 01:19:56.000 1983-02-18 2024-10-11 01:19:56 +4797 4797 4798 479.7 959.4000000000001 4797 1983-02-19 2024-10-11 01:19:57.000 1983-02-19 2024-10-11 01:19:57 +4798 4798 4799 479.8 959.6 4798 1983-02-20 2024-10-11 01:19:58.000 1983-02-20 2024-10-11 01:19:58 +4799 4799 4800 479.9 959.8000000000001 4799 1983-02-21 2024-10-11 01:19:59.000 1983-02-21 2024-10-11 01:19:59 +4801 4801 4802 480.1 960.2 4801 1983-02-23 2024-10-11 01:20:01.000 1983-02-23 2024-10-11 01:20:01 +4802 4802 4803 480.2 960.4000000000001 4802 1983-02-24 2024-10-11 01:20:02.000 1983-02-24 2024-10-11 01:20:02 +4803 4803 4804 480.3 960.6 4803 1983-02-25 2024-10-11 01:20:03.000 1983-02-25 2024-10-11 01:20:03 +4804 4804 4805 480.4 960.8000000000001 4804 1983-02-26 2024-10-11 01:20:04.000 1983-02-26 2024-10-11 01:20:04 +4806 4806 4807 480.6 961.2 4806 1983-02-28 2024-10-11 01:20:06.000 1983-02-28 2024-10-11 01:20:06 +4807 4807 4808 480.7 961.4000000000001 4807 1983-03-01 2024-10-11 01:20:07.000 1983-03-01 2024-10-11 01:20:07 +4808 4808 4809 480.8 961.6 4808 1983-03-02 2024-10-11 01:20:08.000 1983-03-02 2024-10-11 01:20:08 +4809 4809 4810 480.9 961.8000000000001 4809 1983-03-03 2024-10-11 01:20:09.000 1983-03-03 2024-10-11 01:20:09 +4811 4811 4812 481.1 962.2 4811 1983-03-05 2024-10-11 01:20:11.000 1983-03-05 2024-10-11 01:20:11 +4812 4812 4813 481.2 962.4000000000001 4812 1983-03-06 2024-10-11 01:20:12.000 1983-03-06 2024-10-11 01:20:12 +4813 4813 4814 481.3 962.6 4813 1983-03-07 2024-10-11 01:20:13.000 1983-03-07 2024-10-11 01:20:13 +4814 4814 4815 481.4 962.8000000000001 4814 1983-03-08 2024-10-11 01:20:14.000 1983-03-08 2024-10-11 01:20:14 +4816 4816 4817 481.6 963.2 4816 1983-03-10 2024-10-11 01:20:16.000 1983-03-10 2024-10-11 01:20:16 +4817 4817 4818 481.7 963.4000000000001 4817 1983-03-11 2024-10-11 01:20:17.000 1983-03-11 2024-10-11 01:20:17 +4818 4818 4819 481.8 963.6 4818 1983-03-12 2024-10-11 01:20:18.000 1983-03-12 2024-10-11 01:20:18 +4819 4819 4820 481.9 963.8000000000001 4819 1983-03-13 2024-10-11 01:20:19.000 1983-03-13 2024-10-11 01:20:19 +4821 4821 4822 482.1 964.2 4821 1983-03-15 2024-10-11 01:20:21.000 1983-03-15 2024-10-11 01:20:21 +4822 4822 4823 482.2 964.4000000000001 4822 1983-03-16 2024-10-11 01:20:22.000 1983-03-16 2024-10-11 01:20:22 +4823 4823 4824 482.3 964.6 4823 1983-03-17 2024-10-11 01:20:23.000 1983-03-17 2024-10-11 01:20:23 +4824 4824 4825 482.4 964.8000000000001 4824 1983-03-18 2024-10-11 01:20:24.000 1983-03-18 2024-10-11 01:20:24 +4826 4826 4827 482.6 965.2 4826 1983-03-20 2024-10-11 01:20:26.000 1983-03-20 2024-10-11 01:20:26 +4827 4827 4828 482.7 965.4000000000001 4827 1983-03-21 2024-10-11 01:20:27.000 1983-03-21 2024-10-11 01:20:27 +4828 4828 4829 482.8 965.6 4828 1983-03-22 2024-10-11 01:20:28.000 1983-03-22 2024-10-11 01:20:28 +4829 4829 4830 482.9 965.8000000000001 4829 1983-03-23 2024-10-11 01:20:29.000 1983-03-23 2024-10-11 01:20:29 +4831 4831 4832 483.1 966.2 4831 1983-03-25 2024-10-11 01:20:31.000 1983-03-25 2024-10-11 01:20:31 +4832 4832 4833 483.2 966.4000000000001 4832 1983-03-26 2024-10-11 01:20:32.000 1983-03-26 2024-10-11 01:20:32 +4833 4833 4834 483.3 966.6 4833 1983-03-27 2024-10-11 01:20:33.000 1983-03-27 2024-10-11 01:20:33 +4834 4834 4835 483.4 966.8000000000001 4834 1983-03-28 2024-10-11 01:20:34.000 1983-03-28 2024-10-11 01:20:34 +4836 4836 4837 483.6 967.2 4836 1983-03-30 2024-10-11 01:20:36.000 1983-03-30 2024-10-11 01:20:36 +4837 4837 4838 483.7 967.4000000000001 4837 1983-03-31 2024-10-11 01:20:37.000 1983-03-31 2024-10-11 01:20:37 +4838 4838 4839 483.8 967.6 4838 1983-04-01 2024-10-11 01:20:38.000 1983-04-01 2024-10-11 01:20:38 +4839 4839 4840 483.9 967.8000000000001 4839 1983-04-02 2024-10-11 01:20:39.000 1983-04-02 2024-10-11 01:20:39 +4841 4841 4842 484.1 968.2 4841 1983-04-04 2024-10-11 01:20:41.000 1983-04-04 2024-10-11 01:20:41 +4842 4842 4843 484.2 968.4000000000001 4842 1983-04-05 2024-10-11 01:20:42.000 1983-04-05 2024-10-11 01:20:42 +4843 4843 4844 484.3 968.6 4843 1983-04-06 2024-10-11 01:20:43.000 1983-04-06 2024-10-11 01:20:43 +4844 4844 4845 484.4 968.8000000000001 4844 1983-04-07 2024-10-11 01:20:44.000 1983-04-07 2024-10-11 01:20:44 +4846 4846 4847 484.6 969.2 4846 1983-04-09 2024-10-11 01:20:46.000 1983-04-09 2024-10-11 01:20:46 +4847 4847 4848 484.7 969.4000000000001 4847 1983-04-10 2024-10-11 01:20:47.000 1983-04-10 2024-10-11 01:20:47 +4848 4848 4849 484.8 969.6 4848 1983-04-11 2024-10-11 01:20:48.000 1983-04-11 2024-10-11 01:20:48 +4849 4849 4850 484.9 969.8000000000001 4849 1983-04-12 2024-10-11 01:20:49.000 1983-04-12 2024-10-11 01:20:49 +4851 4851 4852 485.1 970.2 4851 1983-04-14 2024-10-11 01:20:51.000 1983-04-14 2024-10-11 01:20:51 +4852 4852 4853 485.2 970.4000000000001 4852 1983-04-15 2024-10-11 01:20:52.000 1983-04-15 2024-10-11 01:20:52 +4853 4853 4854 485.3 970.6 4853 1983-04-16 2024-10-11 01:20:53.000 1983-04-16 2024-10-11 01:20:53 +4854 4854 4855 485.4 970.8000000000001 4854 1983-04-17 2024-10-11 01:20:54.000 1983-04-17 2024-10-11 01:20:54 +4856 4856 4857 485.6 971.2 4856 1983-04-19 2024-10-11 01:20:56.000 1983-04-19 2024-10-11 01:20:56 +4857 4857 4858 485.7 971.4000000000001 4857 1983-04-20 2024-10-11 01:20:57.000 1983-04-20 2024-10-11 01:20:57 +4858 4858 4859 485.8 971.6 4858 1983-04-21 2024-10-11 01:20:58.000 1983-04-21 2024-10-11 01:20:58 +4859 4859 4860 485.9 971.8000000000001 4859 1983-04-22 2024-10-11 01:20:59.000 1983-04-22 2024-10-11 01:20:59 +4861 4861 4862 486.1 972.2 4861 1983-04-24 2024-10-11 01:21:01.000 1983-04-24 2024-10-11 01:21:01 +4862 4862 4863 486.2 972.4000000000001 4862 1983-04-25 2024-10-11 01:21:02.000 1983-04-25 2024-10-11 01:21:02 +4863 4863 4864 486.3 972.6 4863 1983-04-26 2024-10-11 01:21:03.000 1983-04-26 2024-10-11 01:21:03 +4864 4864 4865 486.4 972.8000000000001 4864 1983-04-27 2024-10-11 01:21:04.000 1983-04-27 2024-10-11 01:21:04 +4866 4866 4867 486.6 973.2 4866 1983-04-29 2024-10-11 01:21:06.000 1983-04-29 2024-10-11 01:21:06 +4867 4867 4868 486.7 973.4000000000001 4867 1983-04-30 2024-10-11 01:21:07.000 1983-04-30 2024-10-11 01:21:07 +4868 4868 4869 486.8 973.6 4868 1983-05-01 2024-10-11 01:21:08.000 1983-05-01 2024-10-11 01:21:08 +4869 4869 4870 486.9 973.8000000000001 4869 1983-05-02 2024-10-11 01:21:09.000 1983-05-02 2024-10-11 01:21:09 +4871 4871 4872 487.1 974.2 4871 1983-05-04 2024-10-11 01:21:11.000 1983-05-04 2024-10-11 01:21:11 +4872 4872 4873 487.2 974.4000000000001 4872 1983-05-05 2024-10-11 01:21:12.000 1983-05-05 2024-10-11 01:21:12 +4873 4873 4874 487.3 974.6 4873 1983-05-06 2024-10-11 01:21:13.000 1983-05-06 2024-10-11 01:21:13 +4874 4874 4875 487.4 974.8000000000001 4874 1983-05-07 2024-10-11 01:21:14.000 1983-05-07 2024-10-11 01:21:14 +4876 4876 4877 487.6 975.2 4876 1983-05-09 2024-10-11 01:21:16.000 1983-05-09 2024-10-11 01:21:16 +4877 4877 4878 487.7 975.4000000000001 4877 1983-05-10 2024-10-11 01:21:17.000 1983-05-10 2024-10-11 01:21:17 +4878 4878 4879 487.8 975.6 4878 1983-05-11 2024-10-11 01:21:18.000 1983-05-11 2024-10-11 01:21:18 +4879 4879 4880 487.9 975.8000000000001 4879 1983-05-12 2024-10-11 01:21:19.000 1983-05-12 2024-10-11 01:21:19 +4881 4881 4882 488.1 976.2 4881 1983-05-14 2024-10-11 01:21:21.000 1983-05-14 2024-10-11 01:21:21 +4882 4882 4883 488.2 976.4000000000001 4882 1983-05-15 2024-10-11 01:21:22.000 1983-05-15 2024-10-11 01:21:22 +4883 4883 4884 488.3 976.6 4883 1983-05-16 2024-10-11 01:21:23.000 1983-05-16 2024-10-11 01:21:23 +4884 4884 4885 488.4 976.8000000000001 4884 1983-05-17 2024-10-11 01:21:24.000 1983-05-17 2024-10-11 01:21:24 +4886 4886 4887 488.6 977.2 4886 1983-05-19 2024-10-11 01:21:26.000 1983-05-19 2024-10-11 01:21:26 +4887 4887 4888 488.7 977.4000000000001 4887 1983-05-20 2024-10-11 01:21:27.000 1983-05-20 2024-10-11 01:21:27 +4888 4888 4889 488.8 977.6 4888 1983-05-21 2024-10-11 01:21:28.000 1983-05-21 2024-10-11 01:21:28 +4889 4889 4890 488.9 977.8000000000001 4889 1983-05-22 2024-10-11 01:21:29.000 1983-05-22 2024-10-11 01:21:29 +4891 4891 4892 489.1 978.2 4891 1983-05-24 2024-10-11 01:21:31.000 1983-05-24 2024-10-11 01:21:31 +4892 4892 4893 489.2 978.4000000000001 4892 1983-05-25 2024-10-11 01:21:32.000 1983-05-25 2024-10-11 01:21:32 +4893 4893 4894 489.3 978.6 4893 1983-05-26 2024-10-11 01:21:33.000 1983-05-26 2024-10-11 01:21:33 +4894 4894 4895 489.4 978.8000000000001 4894 1983-05-27 2024-10-11 01:21:34.000 1983-05-27 2024-10-11 01:21:34 +4896 4896 4897 489.6 979.2 4896 1983-05-29 2024-10-11 01:21:36.000 1983-05-29 2024-10-11 01:21:36 +4897 4897 4898 489.7 979.4000000000001 4897 1983-05-30 2024-10-11 01:21:37.000 1983-05-30 2024-10-11 01:21:37 +4898 4898 4899 489.8 979.6 4898 1983-05-31 2024-10-11 01:21:38.000 1983-05-31 2024-10-11 01:21:38 +4899 4899 4900 489.9 979.8000000000001 4899 1983-06-01 2024-10-11 01:21:39.000 1983-06-01 2024-10-11 01:21:39 +4901 4901 4902 490.1 980.2 4901 1983-06-03 2024-10-11 01:21:41.000 1983-06-03 2024-10-11 01:21:41 +4902 4902 4903 490.2 980.4000000000001 4902 1983-06-04 2024-10-11 01:21:42.000 1983-06-04 2024-10-11 01:21:42 +4903 4903 4904 490.3 980.6 4903 1983-06-05 2024-10-11 01:21:43.000 1983-06-05 2024-10-11 01:21:43 +4904 4904 4905 490.4 980.8000000000001 4904 1983-06-06 2024-10-11 01:21:44.000 1983-06-06 2024-10-11 01:21:44 +4906 4906 4907 490.6 981.2 4906 1983-06-08 2024-10-11 01:21:46.000 1983-06-08 2024-10-11 01:21:46 +4907 4907 4908 490.7 981.4000000000001 4907 1983-06-09 2024-10-11 01:21:47.000 1983-06-09 2024-10-11 01:21:47 +4908 4908 4909 490.8 981.6 4908 1983-06-10 2024-10-11 01:21:48.000 1983-06-10 2024-10-11 01:21:48 +4909 4909 4910 490.9 981.8000000000001 4909 1983-06-11 2024-10-11 01:21:49.000 1983-06-11 2024-10-11 01:21:49 +4911 4911 4912 491.1 982.2 4911 1983-06-13 2024-10-11 01:21:51.000 1983-06-13 2024-10-11 01:21:51 +4912 4912 4913 491.2 982.4000000000001 4912 1983-06-14 2024-10-11 01:21:52.000 1983-06-14 2024-10-11 01:21:52 +4913 4913 4914 491.3 982.6 4913 1983-06-15 2024-10-11 01:21:53.000 1983-06-15 2024-10-11 01:21:53 +4914 4914 4915 491.4 982.8000000000001 4914 1983-06-16 2024-10-11 01:21:54.000 1983-06-16 2024-10-11 01:21:54 +4916 4916 4917 491.6 983.2 4916 1983-06-18 2024-10-11 01:21:56.000 1983-06-18 2024-10-11 01:21:56 +4917 4917 4918 491.7 983.4000000000001 4917 1983-06-19 2024-10-11 01:21:57.000 1983-06-19 2024-10-11 01:21:57 +4918 4918 4919 491.8 983.6 4918 1983-06-20 2024-10-11 01:21:58.000 1983-06-20 2024-10-11 01:21:58 +4919 4919 4920 491.9 983.8000000000001 4919 1983-06-21 2024-10-11 01:21:59.000 1983-06-21 2024-10-11 01:21:59 +4921 4921 4922 492.1 984.2 4921 1983-06-23 2024-10-11 01:22:01.000 1983-06-23 2024-10-11 01:22:01 +4922 4922 4923 492.2 984.4000000000001 4922 1983-06-24 2024-10-11 01:22:02.000 1983-06-24 2024-10-11 01:22:02 +4923 4923 4924 492.3 984.6 4923 1983-06-25 2024-10-11 01:22:03.000 1983-06-25 2024-10-11 01:22:03 +4924 4924 4925 492.4 984.8000000000001 4924 1983-06-26 2024-10-11 01:22:04.000 1983-06-26 2024-10-11 01:22:04 +4926 4926 4927 492.6 985.2 4926 1983-06-28 2024-10-11 01:22:06.000 1983-06-28 2024-10-11 01:22:06 +4927 4927 4928 492.7 985.4000000000001 4927 1983-06-29 2024-10-11 01:22:07.000 1983-06-29 2024-10-11 01:22:07 +4928 4928 4929 492.8 985.6 4928 1983-06-30 2024-10-11 01:22:08.000 1983-06-30 2024-10-11 01:22:08 +4929 4929 4930 492.9 985.8000000000001 4929 1983-07-01 2024-10-11 01:22:09.000 1983-07-01 2024-10-11 01:22:09 +4931 4931 4932 493.1 986.2 4931 1983-07-03 2024-10-11 01:22:11.000 1983-07-03 2024-10-11 01:22:11 +4932 4932 4933 493.2 986.4000000000001 4932 1983-07-04 2024-10-11 01:22:12.000 1983-07-04 2024-10-11 01:22:12 +4933 4933 4934 493.3 986.6 4933 1983-07-05 2024-10-11 01:22:13.000 1983-07-05 2024-10-11 01:22:13 +4934 4934 4935 493.4 986.8000000000001 4934 1983-07-06 2024-10-11 01:22:14.000 1983-07-06 2024-10-11 01:22:14 +4936 4936 4937 493.6 987.2 4936 1983-07-08 2024-10-11 01:22:16.000 1983-07-08 2024-10-11 01:22:16 +4937 4937 4938 493.7 987.4000000000001 4937 1983-07-09 2024-10-11 01:22:17.000 1983-07-09 2024-10-11 01:22:17 +4938 4938 4939 493.8 987.6 4938 1983-07-10 2024-10-11 01:22:18.000 1983-07-10 2024-10-11 01:22:18 +4939 4939 4940 493.9 987.8000000000001 4939 1983-07-11 2024-10-11 01:22:19.000 1983-07-11 2024-10-11 01:22:19 +4941 4941 4942 494.1 988.2 4941 1983-07-13 2024-10-11 01:22:21.000 1983-07-13 2024-10-11 01:22:21 +4942 4942 4943 494.2 988.4000000000001 4942 1983-07-14 2024-10-11 01:22:22.000 1983-07-14 2024-10-11 01:22:22 +4943 4943 4944 494.3 988.6 4943 1983-07-15 2024-10-11 01:22:23.000 1983-07-15 2024-10-11 01:22:23 +4944 4944 4945 494.4 988.8000000000001 4944 1983-07-16 2024-10-11 01:22:24.000 1983-07-16 2024-10-11 01:22:24 +4946 4946 4947 494.6 989.2 4946 1983-07-18 2024-10-11 01:22:26.000 1983-07-18 2024-10-11 01:22:26 +4947 4947 4948 494.7 989.4000000000001 4947 1983-07-19 2024-10-11 01:22:27.000 1983-07-19 2024-10-11 01:22:27 +4948 4948 4949 494.8 989.6 4948 1983-07-20 2024-10-11 01:22:28.000 1983-07-20 2024-10-11 01:22:28 +4949 4949 4950 494.9 989.8000000000001 4949 1983-07-21 2024-10-11 01:22:29.000 1983-07-21 2024-10-11 01:22:29 +4951 4951 4952 495.1 990.2 4951 1983-07-23 2024-10-11 01:22:31.000 1983-07-23 2024-10-11 01:22:31 +4952 4952 4953 495.2 990.4000000000001 4952 1983-07-24 2024-10-11 01:22:32.000 1983-07-24 2024-10-11 01:22:32 +4953 4953 4954 495.3 990.6 4953 1983-07-25 2024-10-11 01:22:33.000 1983-07-25 2024-10-11 01:22:33 +4954 4954 4955 495.4 990.8000000000001 4954 1983-07-26 2024-10-11 01:22:34.000 1983-07-26 2024-10-11 01:22:34 +4956 4956 4957 495.6 991.2 4956 1983-07-28 2024-10-11 01:22:36.000 1983-07-28 2024-10-11 01:22:36 +4957 4957 4958 495.7 991.4000000000001 4957 1983-07-29 2024-10-11 01:22:37.000 1983-07-29 2024-10-11 01:22:37 +4958 4958 4959 495.8 991.6 4958 1983-07-30 2024-10-11 01:22:38.000 1983-07-30 2024-10-11 01:22:38 +4959 4959 4960 495.9 991.8000000000001 4959 1983-07-31 2024-10-11 01:22:39.000 1983-07-31 2024-10-11 01:22:39 +4961 4961 4962 496.1 992.2 4961 1983-08-02 2024-10-11 01:22:41.000 1983-08-02 2024-10-11 01:22:41 +4962 4962 4963 496.2 992.4000000000001 4962 1983-08-03 2024-10-11 01:22:42.000 1983-08-03 2024-10-11 01:22:42 +4963 4963 4964 496.3 992.6 4963 1983-08-04 2024-10-11 01:22:43.000 1983-08-04 2024-10-11 01:22:43 +4964 4964 4965 496.4 992.8000000000001 4964 1983-08-05 2024-10-11 01:22:44.000 1983-08-05 2024-10-11 01:22:44 +4966 4966 4967 496.6 993.2 4966 1983-08-07 2024-10-11 01:22:46.000 1983-08-07 2024-10-11 01:22:46 +4967 4967 4968 496.7 993.4000000000001 4967 1983-08-08 2024-10-11 01:22:47.000 1983-08-08 2024-10-11 01:22:47 +4968 4968 4969 496.8 993.6 4968 1983-08-09 2024-10-11 01:22:48.000 1983-08-09 2024-10-11 01:22:48 +4969 4969 4970 496.9 993.8000000000001 4969 1983-08-10 2024-10-11 01:22:49.000 1983-08-10 2024-10-11 01:22:49 +4971 4971 4972 497.1 994.2 4971 1983-08-12 2024-10-11 01:22:51.000 1983-08-12 2024-10-11 01:22:51 +4972 4972 4973 497.2 994.4000000000001 4972 1983-08-13 2024-10-11 01:22:52.000 1983-08-13 2024-10-11 01:22:52 +4973 4973 4974 497.3 994.6 4973 1983-08-14 2024-10-11 01:22:53.000 1983-08-14 2024-10-11 01:22:53 +4974 4974 4975 497.4 994.8000000000001 4974 1983-08-15 2024-10-11 01:22:54.000 1983-08-15 2024-10-11 01:22:54 +4976 4976 4977 497.6 995.2 4976 1983-08-17 2024-10-11 01:22:56.000 1983-08-17 2024-10-11 01:22:56 +4977 4977 4978 497.7 995.4000000000001 4977 1983-08-18 2024-10-11 01:22:57.000 1983-08-18 2024-10-11 01:22:57 +4978 4978 4979 497.8 995.6 4978 1983-08-19 2024-10-11 01:22:58.000 1983-08-19 2024-10-11 01:22:58 +4979 4979 4980 497.9 995.8000000000001 4979 1983-08-20 2024-10-11 01:22:59.000 1983-08-20 2024-10-11 01:22:59 +4981 4981 4982 498.1 996.2 4981 1983-08-22 2024-10-11 01:23:01.000 1983-08-22 2024-10-11 01:23:01 +4982 4982 4983 498.2 996.4000000000001 4982 1983-08-23 2024-10-11 01:23:02.000 1983-08-23 2024-10-11 01:23:02 +4983 4983 4984 498.3 996.6 4983 1983-08-24 2024-10-11 01:23:03.000 1983-08-24 2024-10-11 01:23:03 +4984 4984 4985 498.4 996.8000000000001 4984 1983-08-25 2024-10-11 01:23:04.000 1983-08-25 2024-10-11 01:23:04 +4986 4986 4987 498.6 997.2 4986 1983-08-27 2024-10-11 01:23:06.000 1983-08-27 2024-10-11 01:23:06 +4987 4987 4988 498.7 997.4000000000001 4987 1983-08-28 2024-10-11 01:23:07.000 1983-08-28 2024-10-11 01:23:07 +4988 4988 4989 498.8 997.6 4988 1983-08-29 2024-10-11 01:23:08.000 1983-08-29 2024-10-11 01:23:08 +4989 4989 4990 498.9 997.8000000000001 4989 1983-08-30 2024-10-11 01:23:09.000 1983-08-30 2024-10-11 01:23:09 +4991 4991 4992 499.1 998.2 4991 1983-09-01 2024-10-11 01:23:11.000 1983-09-01 2024-10-11 01:23:11 +4992 4992 4993 499.2 998.4000000000001 4992 1983-09-02 2024-10-11 01:23:12.000 1983-09-02 2024-10-11 01:23:12 +4993 4993 4994 499.3 998.6 4993 1983-09-03 2024-10-11 01:23:13.000 1983-09-03 2024-10-11 01:23:13 +4994 4994 4995 499.4 998.8000000000001 4994 1983-09-04 2024-10-11 01:23:14.000 1983-09-04 2024-10-11 01:23:14 +4996 4996 4997 499.6 999.2 4996 1983-09-06 2024-10-11 01:23:16.000 1983-09-06 2024-10-11 01:23:16 +4997 4997 4998 499.7 999.4000000000001 4997 1983-09-07 2024-10-11 01:23:17.000 1983-09-07 2024-10-11 01:23:17 +4998 4998 4999 499.8 999.6 4998 1983-09-08 2024-10-11 01:23:18.000 1983-09-08 2024-10-11 01:23:18 +4999 4999 5000 499.9 999.8000000000001 4999 1983-09-09 2024-10-11 01:23:19.000 1983-09-09 2024-10-11 01:23:19 +5001 5001 5002 500.1 1000.2 5001 1983-09-11 2024-10-11 01:23:21.000 1983-09-11 2024-10-11 01:23:21 +5002 5002 5003 500.2 1000.4000000000001 5002 1983-09-12 2024-10-11 01:23:22.000 1983-09-12 2024-10-11 01:23:22 +5003 5003 5004 500.3 1000.6 5003 1983-09-13 2024-10-11 01:23:23.000 1983-09-13 2024-10-11 01:23:23 +5004 5004 5005 500.4 1000.8000000000001 5004 1983-09-14 2024-10-11 01:23:24.000 1983-09-14 2024-10-11 01:23:24 +5006 5006 5007 500.6 1001.2 5006 1983-09-16 2024-10-11 01:23:26.000 1983-09-16 2024-10-11 01:23:26 +5007 5007 5008 500.7 1001.4000000000001 5007 1983-09-17 2024-10-11 01:23:27.000 1983-09-17 2024-10-11 01:23:27 +5008 5008 5009 500.8 1001.6 5008 1983-09-18 2024-10-11 01:23:28.000 1983-09-18 2024-10-11 01:23:28 +5009 5009 5010 500.9 1001.8000000000001 5009 1983-09-19 2024-10-11 01:23:29.000 1983-09-19 2024-10-11 01:23:29 +5011 5011 5012 501.1 1002.2 5011 1983-09-21 2024-10-11 01:23:31.000 1983-09-21 2024-10-11 01:23:31 +5012 5012 5013 501.2 1002.4000000000001 5012 1983-09-22 2024-10-11 01:23:32.000 1983-09-22 2024-10-11 01:23:32 +5013 5013 5014 501.3 1002.6 5013 1983-09-23 2024-10-11 01:23:33.000 1983-09-23 2024-10-11 01:23:33 +5014 5014 5015 501.4 1002.8000000000001 5014 1983-09-24 2024-10-11 01:23:34.000 1983-09-24 2024-10-11 01:23:34 +5016 5016 5017 501.6 1003.2 5016 1983-09-26 2024-10-11 01:23:36.000 1983-09-26 2024-10-11 01:23:36 +5017 5017 5018 501.7 1003.4000000000001 5017 1983-09-27 2024-10-11 01:23:37.000 1983-09-27 2024-10-11 01:23:37 +5018 5018 5019 501.8 1003.6 5018 1983-09-28 2024-10-11 01:23:38.000 1983-09-28 2024-10-11 01:23:38 +5019 5019 5020 501.9 1003.8000000000001 5019 1983-09-29 2024-10-11 01:23:39.000 1983-09-29 2024-10-11 01:23:39 +5021 5021 5022 502.1 1004.2 5021 1983-10-01 2024-10-11 01:23:41.000 1983-10-01 2024-10-11 01:23:41 +5022 5022 5023 502.2 1004.4000000000001 5022 1983-10-02 2024-10-11 01:23:42.000 1983-10-02 2024-10-11 01:23:42 +5023 5023 5024 502.3 1004.6 5023 1983-10-03 2024-10-11 01:23:43.000 1983-10-03 2024-10-11 01:23:43 +5024 5024 5025 502.4 1004.8000000000001 5024 1983-10-04 2024-10-11 01:23:44.000 1983-10-04 2024-10-11 01:23:44 +5026 5026 5027 502.6 1005.2 5026 1983-10-06 2024-10-11 01:23:46.000 1983-10-06 2024-10-11 01:23:46 +5027 5027 5028 502.7 1005.4000000000001 5027 1983-10-07 2024-10-11 01:23:47.000 1983-10-07 2024-10-11 01:23:47 +5028 5028 5029 502.8 1005.6 5028 1983-10-08 2024-10-11 01:23:48.000 1983-10-08 2024-10-11 01:23:48 +5029 5029 5030 502.9 1005.8000000000001 5029 1983-10-09 2024-10-11 01:23:49.000 1983-10-09 2024-10-11 01:23:49 +5031 5031 5032 503.1 1006.2 5031 1983-10-11 2024-10-11 01:23:51.000 1983-10-11 2024-10-11 01:23:51 +5032 5032 5033 503.2 1006.4000000000001 5032 1983-10-12 2024-10-11 01:23:52.000 1983-10-12 2024-10-11 01:23:52 +5033 5033 5034 503.3 1006.6 5033 1983-10-13 2024-10-11 01:23:53.000 1983-10-13 2024-10-11 01:23:53 +5034 5034 5035 503.4 1006.8000000000001 5034 1983-10-14 2024-10-11 01:23:54.000 1983-10-14 2024-10-11 01:23:54 +5036 5036 5037 503.6 1007.2 5036 1983-10-16 2024-10-11 01:23:56.000 1983-10-16 2024-10-11 01:23:56 +5037 5037 5038 503.7 1007.4000000000001 5037 1983-10-17 2024-10-11 01:23:57.000 1983-10-17 2024-10-11 01:23:57 +5038 5038 5039 503.8 1007.6 5038 1983-10-18 2024-10-11 01:23:58.000 1983-10-18 2024-10-11 01:23:58 +5039 5039 5040 503.9 1007.8000000000001 5039 1983-10-19 2024-10-11 01:23:59.000 1983-10-19 2024-10-11 01:23:59 +5041 5041 5042 504.1 1008.2 5041 1983-10-21 2024-10-11 01:24:01.000 1983-10-21 2024-10-11 01:24:01 +5042 5042 5043 504.2 1008.4000000000001 5042 1983-10-22 2024-10-11 01:24:02.000 1983-10-22 2024-10-11 01:24:02 +5043 5043 5044 504.3 1008.6 5043 1983-10-23 2024-10-11 01:24:03.000 1983-10-23 2024-10-11 01:24:03 +5044 5044 5045 504.4 1008.8000000000001 5044 1983-10-24 2024-10-11 01:24:04.000 1983-10-24 2024-10-11 01:24:04 +5046 5046 5047 504.6 1009.2 5046 1983-10-26 2024-10-11 01:24:06.000 1983-10-26 2024-10-11 01:24:06 +5047 5047 5048 504.7 1009.4000000000001 5047 1983-10-27 2024-10-11 01:24:07.000 1983-10-27 2024-10-11 01:24:07 +5048 5048 5049 504.8 1009.6 5048 1983-10-28 2024-10-11 01:24:08.000 1983-10-28 2024-10-11 01:24:08 +5049 5049 5050 504.9 1009.8000000000001 5049 1983-10-29 2024-10-11 01:24:09.000 1983-10-29 2024-10-11 01:24:09 +5051 5051 5052 505.1 1010.2 5051 1983-10-31 2024-10-11 01:24:11.000 1983-10-31 2024-10-11 01:24:11 +5052 5052 5053 505.2 1010.4000000000001 5052 1983-11-01 2024-10-11 01:24:12.000 1983-11-01 2024-10-11 01:24:12 +5053 5053 5054 505.3 1010.6 5053 1983-11-02 2024-10-11 01:24:13.000 1983-11-02 2024-10-11 01:24:13 +5054 5054 5055 505.4 1010.8000000000001 5054 1983-11-03 2024-10-11 01:24:14.000 1983-11-03 2024-10-11 01:24:14 +5056 5056 5057 505.6 1011.2 5056 1983-11-05 2024-10-11 01:24:16.000 1983-11-05 2024-10-11 01:24:16 +5057 5057 5058 505.7 1011.4000000000001 5057 1983-11-06 2024-10-11 01:24:17.000 1983-11-06 2024-10-11 01:24:17 +5058 5058 5059 505.8 1011.6 5058 1983-11-07 2024-10-11 01:24:18.000 1983-11-07 2024-10-11 01:24:18 +5059 5059 5060 505.9 1011.8000000000001 5059 1983-11-08 2024-10-11 01:24:19.000 1983-11-08 2024-10-11 01:24:19 +5061 5061 5062 506.1 1012.2 5061 1983-11-10 2024-10-11 01:24:21.000 1983-11-10 2024-10-11 01:24:21 +5062 5062 5063 506.2 1012.4000000000001 5062 1983-11-11 2024-10-11 01:24:22.000 1983-11-11 2024-10-11 01:24:22 +5063 5063 5064 506.3 1012.6 5063 1983-11-12 2024-10-11 01:24:23.000 1983-11-12 2024-10-11 01:24:23 +5064 5064 5065 506.4 1012.8000000000001 5064 1983-11-13 2024-10-11 01:24:24.000 1983-11-13 2024-10-11 01:24:24 +5066 5066 5067 506.6 1013.2 5066 1983-11-15 2024-10-11 01:24:26.000 1983-11-15 2024-10-11 01:24:26 +5067 5067 5068 506.7 1013.4000000000001 5067 1983-11-16 2024-10-11 01:24:27.000 1983-11-16 2024-10-11 01:24:27 +5068 5068 5069 506.8 1013.6 5068 1983-11-17 2024-10-11 01:24:28.000 1983-11-17 2024-10-11 01:24:28 +5069 5069 5070 506.9 1013.8000000000001 5069 1983-11-18 2024-10-11 01:24:29.000 1983-11-18 2024-10-11 01:24:29 +5071 5071 5072 507.1 1014.2 5071 1983-11-20 2024-10-11 01:24:31.000 1983-11-20 2024-10-11 01:24:31 +5072 5072 5073 507.2 1014.4000000000001 5072 1983-11-21 2024-10-11 01:24:32.000 1983-11-21 2024-10-11 01:24:32 +5073 5073 5074 507.3 1014.6 5073 1983-11-22 2024-10-11 01:24:33.000 1983-11-22 2024-10-11 01:24:33 +5074 5074 5075 507.4 1014.8000000000001 5074 1983-11-23 2024-10-11 01:24:34.000 1983-11-23 2024-10-11 01:24:34 +5076 5076 5077 507.6 1015.2 5076 1983-11-25 2024-10-11 01:24:36.000 1983-11-25 2024-10-11 01:24:36 +5077 5077 5078 507.7 1015.4000000000001 5077 1983-11-26 2024-10-11 01:24:37.000 1983-11-26 2024-10-11 01:24:37 +5078 5078 5079 507.8 1015.6 5078 1983-11-27 2024-10-11 01:24:38.000 1983-11-27 2024-10-11 01:24:38 +5079 5079 5080 507.9 1015.8000000000001 5079 1983-11-28 2024-10-11 01:24:39.000 1983-11-28 2024-10-11 01:24:39 +5081 5081 5082 508.1 1016.2 5081 1983-11-30 2024-10-11 01:24:41.000 1983-11-30 2024-10-11 01:24:41 +5082 5082 5083 508.2 1016.4000000000001 5082 1983-12-01 2024-10-11 01:24:42.000 1983-12-01 2024-10-11 01:24:42 +5083 5083 5084 508.3 1016.6 5083 1983-12-02 2024-10-11 01:24:43.000 1983-12-02 2024-10-11 01:24:43 +5084 5084 5085 508.4 1016.8000000000001 5084 1983-12-03 2024-10-11 01:24:44.000 1983-12-03 2024-10-11 01:24:44 +5086 5086 5087 508.6 1017.2 5086 1983-12-05 2024-10-11 01:24:46.000 1983-12-05 2024-10-11 01:24:46 +5087 5087 5088 508.7 1017.4000000000001 5087 1983-12-06 2024-10-11 01:24:47.000 1983-12-06 2024-10-11 01:24:47 +5088 5088 5089 508.8 1017.6 5088 1983-12-07 2024-10-11 01:24:48.000 1983-12-07 2024-10-11 01:24:48 +5089 5089 5090 508.9 1017.8000000000001 5089 1983-12-08 2024-10-11 01:24:49.000 1983-12-08 2024-10-11 01:24:49 +5091 5091 5092 509.1 1018.2 5091 1983-12-10 2024-10-11 01:24:51.000 1983-12-10 2024-10-11 01:24:51 +5092 5092 5093 509.2 1018.4000000000001 5092 1983-12-11 2024-10-11 01:24:52.000 1983-12-11 2024-10-11 01:24:52 +5093 5093 5094 509.3 1018.6 5093 1983-12-12 2024-10-11 01:24:53.000 1983-12-12 2024-10-11 01:24:53 +5094 5094 5095 509.4 1018.8000000000001 5094 1983-12-13 2024-10-11 01:24:54.000 1983-12-13 2024-10-11 01:24:54 +5096 5096 5097 509.6 1019.2 5096 1983-12-15 2024-10-11 01:24:56.000 1983-12-15 2024-10-11 01:24:56 +5097 5097 5098 509.7 1019.4000000000001 5097 1983-12-16 2024-10-11 01:24:57.000 1983-12-16 2024-10-11 01:24:57 +5098 5098 5099 509.8 1019.6 5098 1983-12-17 2024-10-11 01:24:58.000 1983-12-17 2024-10-11 01:24:58 +5099 5099 5100 509.9 1019.8000000000001 5099 1983-12-18 2024-10-11 01:24:59.000 1983-12-18 2024-10-11 01:24:59 +5101 5101 5102 510.1 1020.2 5101 1983-12-20 2024-10-11 01:25:01.000 1983-12-20 2024-10-11 01:25:01 +5102 5102 5103 510.2 1020.4000000000001 5102 1983-12-21 2024-10-11 01:25:02.000 1983-12-21 2024-10-11 01:25:02 +5103 5103 5104 510.3 1020.6 5103 1983-12-22 2024-10-11 01:25:03.000 1983-12-22 2024-10-11 01:25:03 +5104 5104 5105 510.4 1020.8000000000001 5104 1983-12-23 2024-10-11 01:25:04.000 1983-12-23 2024-10-11 01:25:04 +5106 5106 5107 510.6 1021.2 5106 1983-12-25 2024-10-11 01:25:06.000 1983-12-25 2024-10-11 01:25:06 +5107 5107 5108 510.7 1021.4000000000001 5107 1983-12-26 2024-10-11 01:25:07.000 1983-12-26 2024-10-11 01:25:07 +5108 5108 5109 510.8 1021.6 5108 1983-12-27 2024-10-11 01:25:08.000 1983-12-27 2024-10-11 01:25:08 +5109 5109 5110 510.9 1021.8000000000001 5109 1983-12-28 2024-10-11 01:25:09.000 1983-12-28 2024-10-11 01:25:09 +5111 5111 5112 511.1 1022.2 5111 1983-12-30 2024-10-11 01:25:11.000 1983-12-30 2024-10-11 01:25:11 +5112 5112 5113 511.2 1022.4000000000001 5112 1983-12-31 2024-10-11 01:25:12.000 1983-12-31 2024-10-11 01:25:12 +5113 5113 5114 511.3 1022.6 5113 1984-01-01 2024-10-11 01:25:13.000 1984-01-01 2024-10-11 01:25:13 +5114 5114 5115 511.4 1022.8000000000001 5114 1984-01-02 2024-10-11 01:25:14.000 1984-01-02 2024-10-11 01:25:14 +5116 5116 5117 511.6 1023.2 5116 1984-01-04 2024-10-11 01:25:16.000 1984-01-04 2024-10-11 01:25:16 +5117 5117 5118 511.7 1023.4000000000001 5117 1984-01-05 2024-10-11 01:25:17.000 1984-01-05 2024-10-11 01:25:17 +5118 5118 5119 511.8 1023.6 5118 1984-01-06 2024-10-11 01:25:18.000 1984-01-06 2024-10-11 01:25:18 +5119 5119 5120 511.9 1023.8000000000001 5119 1984-01-07 2024-10-11 01:25:19.000 1984-01-07 2024-10-11 01:25:19 +5121 5121 5122 512.1 1024.2 5121 1984-01-09 2024-10-11 01:25:21.000 1984-01-09 2024-10-11 01:25:21 +5122 5122 5123 512.2 1024.4 5122 1984-01-10 2024-10-11 01:25:22.000 1984-01-10 2024-10-11 01:25:22 +5123 5123 5124 512.3 1024.6000000000001 5123 1984-01-11 2024-10-11 01:25:23.000 1984-01-11 2024-10-11 01:25:23 +5124 5124 5125 512.4 1024.8 5124 1984-01-12 2024-10-11 01:25:24.000 1984-01-12 2024-10-11 01:25:24 +5126 5126 5127 512.6 1025.2 5126 1984-01-14 2024-10-11 01:25:26.000 1984-01-14 2024-10-11 01:25:26 +5127 5127 5128 512.7 1025.4 5127 1984-01-15 2024-10-11 01:25:27.000 1984-01-15 2024-10-11 01:25:27 +5128 5128 5129 512.8 1025.6000000000001 5128 1984-01-16 2024-10-11 01:25:28.000 1984-01-16 2024-10-11 01:25:28 +5129 5129 5130 512.9 1025.8 5129 1984-01-17 2024-10-11 01:25:29.000 1984-01-17 2024-10-11 01:25:29 +5131 5131 5132 513.1 1026.2 5131 1984-01-19 2024-10-11 01:25:31.000 1984-01-19 2024-10-11 01:25:31 +5132 5132 5133 513.2 1026.4 5132 1984-01-20 2024-10-11 01:25:32.000 1984-01-20 2024-10-11 01:25:32 +5133 5133 5134 513.3 1026.6000000000001 5133 1984-01-21 2024-10-11 01:25:33.000 1984-01-21 2024-10-11 01:25:33 +5134 5134 5135 513.4 1026.8 5134 1984-01-22 2024-10-11 01:25:34.000 1984-01-22 2024-10-11 01:25:34 +5136 5136 5137 513.6 1027.2 5136 1984-01-24 2024-10-11 01:25:36.000 1984-01-24 2024-10-11 01:25:36 +5137 5137 5138 513.7 1027.4 5137 1984-01-25 2024-10-11 01:25:37.000 1984-01-25 2024-10-11 01:25:37 +5138 5138 5139 513.8 1027.6000000000001 5138 1984-01-26 2024-10-11 01:25:38.000 1984-01-26 2024-10-11 01:25:38 +5139 5139 5140 513.9 1027.8 5139 1984-01-27 2024-10-11 01:25:39.000 1984-01-27 2024-10-11 01:25:39 +5141 5141 5142 514.1 1028.2 5141 1984-01-29 2024-10-11 01:25:41.000 1984-01-29 2024-10-11 01:25:41 +5142 5142 5143 514.2 1028.4 5142 1984-01-30 2024-10-11 01:25:42.000 1984-01-30 2024-10-11 01:25:42 +5143 5143 5144 514.3 1028.6000000000001 5143 1984-01-31 2024-10-11 01:25:43.000 1984-01-31 2024-10-11 01:25:43 +5144 5144 5145 514.4 1028.8 5144 1984-02-01 2024-10-11 01:25:44.000 1984-02-01 2024-10-11 01:25:44 +5146 5146 5147 514.6 1029.2 5146 1984-02-03 2024-10-11 01:25:46.000 1984-02-03 2024-10-11 01:25:46 +5147 5147 5148 514.7 1029.4 5147 1984-02-04 2024-10-11 01:25:47.000 1984-02-04 2024-10-11 01:25:47 +5148 5148 5149 514.8 1029.6000000000001 5148 1984-02-05 2024-10-11 01:25:48.000 1984-02-05 2024-10-11 01:25:48 +5149 5149 5150 514.9 1029.8 5149 1984-02-06 2024-10-11 01:25:49.000 1984-02-06 2024-10-11 01:25:49 +5151 5151 5152 515.1 1030.2 5151 1984-02-08 2024-10-11 01:25:51.000 1984-02-08 2024-10-11 01:25:51 +5152 5152 5153 515.2 1030.4 5152 1984-02-09 2024-10-11 01:25:52.000 1984-02-09 2024-10-11 01:25:52 +5153 5153 5154 515.3 1030.6000000000001 5153 1984-02-10 2024-10-11 01:25:53.000 1984-02-10 2024-10-11 01:25:53 +5154 5154 5155 515.4 1030.8 5154 1984-02-11 2024-10-11 01:25:54.000 1984-02-11 2024-10-11 01:25:54 +5156 5156 5157 515.6 1031.2 5156 1984-02-13 2024-10-11 01:25:56.000 1984-02-13 2024-10-11 01:25:56 +5157 5157 5158 515.7 1031.4 5157 1984-02-14 2024-10-11 01:25:57.000 1984-02-14 2024-10-11 01:25:57 +5158 5158 5159 515.8 1031.6000000000001 5158 1984-02-15 2024-10-11 01:25:58.000 1984-02-15 2024-10-11 01:25:58 +5159 5159 5160 515.9 1031.8 5159 1984-02-16 2024-10-11 01:25:59.000 1984-02-16 2024-10-11 01:25:59 +5161 5161 5162 516.1 1032.2 5161 1984-02-18 2024-10-11 01:26:01.000 1984-02-18 2024-10-11 01:26:01 +5162 5162 5163 516.2 1032.4 5162 1984-02-19 2024-10-11 01:26:02.000 1984-02-19 2024-10-11 01:26:02 +5163 5163 5164 516.3 1032.6000000000001 5163 1984-02-20 2024-10-11 01:26:03.000 1984-02-20 2024-10-11 01:26:03 +5164 5164 5165 516.4 1032.8 5164 1984-02-21 2024-10-11 01:26:04.000 1984-02-21 2024-10-11 01:26:04 +5166 5166 5167 516.6 1033.2 5166 1984-02-23 2024-10-11 01:26:06.000 1984-02-23 2024-10-11 01:26:06 +5167 5167 5168 516.7 1033.4 5167 1984-02-24 2024-10-11 01:26:07.000 1984-02-24 2024-10-11 01:26:07 +5168 5168 5169 516.8 1033.6000000000001 5168 1984-02-25 2024-10-11 01:26:08.000 1984-02-25 2024-10-11 01:26:08 +5169 5169 5170 516.9 1033.8 5169 1984-02-26 2024-10-11 01:26:09.000 1984-02-26 2024-10-11 01:26:09 +5171 5171 5172 517.1 1034.2 5171 1984-02-28 2024-10-11 01:26:11.000 1984-02-28 2024-10-11 01:26:11 +5172 5172 5173 517.2 1034.4 5172 1984-02-29 2024-10-11 01:26:12.000 1984-02-29 2024-10-11 01:26:12 +5173 5173 5174 517.3 1034.6000000000001 5173 1984-03-01 2024-10-11 01:26:13.000 1984-03-01 2024-10-11 01:26:13 +5174 5174 5175 517.4 1034.8 5174 1984-03-02 2024-10-11 01:26:14.000 1984-03-02 2024-10-11 01:26:14 +5176 5176 5177 517.6 1035.2 5176 1984-03-04 2024-10-11 01:26:16.000 1984-03-04 2024-10-11 01:26:16 +5177 5177 5178 517.7 1035.4 5177 1984-03-05 2024-10-11 01:26:17.000 1984-03-05 2024-10-11 01:26:17 +5178 5178 5179 517.8 1035.6000000000001 5178 1984-03-06 2024-10-11 01:26:18.000 1984-03-06 2024-10-11 01:26:18 +5179 5179 5180 517.9 1035.8 5179 1984-03-07 2024-10-11 01:26:19.000 1984-03-07 2024-10-11 01:26:19 +5181 5181 5182 518.1 1036.2 5181 1984-03-09 2024-10-11 01:26:21.000 1984-03-09 2024-10-11 01:26:21 +5182 5182 5183 518.2 1036.4 5182 1984-03-10 2024-10-11 01:26:22.000 1984-03-10 2024-10-11 01:26:22 +5183 5183 5184 518.3 1036.6000000000001 5183 1984-03-11 2024-10-11 01:26:23.000 1984-03-11 2024-10-11 01:26:23 +5184 5184 5185 518.4 1036.8 5184 1984-03-12 2024-10-11 01:26:24.000 1984-03-12 2024-10-11 01:26:24 +5186 5186 5187 518.6 1037.2 5186 1984-03-14 2024-10-11 01:26:26.000 1984-03-14 2024-10-11 01:26:26 +5187 5187 5188 518.7 1037.4 5187 1984-03-15 2024-10-11 01:26:27.000 1984-03-15 2024-10-11 01:26:27 +5188 5188 5189 518.8 1037.6000000000001 5188 1984-03-16 2024-10-11 01:26:28.000 1984-03-16 2024-10-11 01:26:28 +5189 5189 5190 518.9 1037.8 5189 1984-03-17 2024-10-11 01:26:29.000 1984-03-17 2024-10-11 01:26:29 +5191 5191 5192 519.1 1038.2 5191 1984-03-19 2024-10-11 01:26:31.000 1984-03-19 2024-10-11 01:26:31 +5192 5192 5193 519.2 1038.4 5192 1984-03-20 2024-10-11 01:26:32.000 1984-03-20 2024-10-11 01:26:32 +5193 5193 5194 519.3 1038.6000000000001 5193 1984-03-21 2024-10-11 01:26:33.000 1984-03-21 2024-10-11 01:26:33 +5194 5194 5195 519.4 1038.8 5194 1984-03-22 2024-10-11 01:26:34.000 1984-03-22 2024-10-11 01:26:34 +5196 5196 5197 519.6 1039.2 5196 1984-03-24 2024-10-11 01:26:36.000 1984-03-24 2024-10-11 01:26:36 +5197 5197 5198 519.7 1039.4 5197 1984-03-25 2024-10-11 01:26:37.000 1984-03-25 2024-10-11 01:26:37 +5198 5198 5199 519.8 1039.6000000000001 5198 1984-03-26 2024-10-11 01:26:38.000 1984-03-26 2024-10-11 01:26:38 +5199 5199 5200 519.9 1039.8 5199 1984-03-27 2024-10-11 01:26:39.000 1984-03-27 2024-10-11 01:26:39 +5201 5201 5202 520.1 1040.2 5201 1984-03-29 2024-10-11 01:26:41.000 1984-03-29 2024-10-11 01:26:41 +5202 5202 5203 520.2 1040.4 5202 1984-03-30 2024-10-11 01:26:42.000 1984-03-30 2024-10-11 01:26:42 +5203 5203 5204 520.3 1040.6000000000001 5203 1984-03-31 2024-10-11 01:26:43.000 1984-03-31 2024-10-11 01:26:43 +5204 5204 5205 520.4 1040.8 5204 1984-04-01 2024-10-11 01:26:44.000 1984-04-01 2024-10-11 01:26:44 +5206 5206 5207 520.6 1041.2 5206 1984-04-03 2024-10-11 01:26:46.000 1984-04-03 2024-10-11 01:26:46 +5207 5207 5208 520.7 1041.4 5207 1984-04-04 2024-10-11 01:26:47.000 1984-04-04 2024-10-11 01:26:47 +5208 5208 5209 520.8 1041.6000000000001 5208 1984-04-05 2024-10-11 01:26:48.000 1984-04-05 2024-10-11 01:26:48 +5209 5209 5210 520.9 1041.8 5209 1984-04-06 2024-10-11 01:26:49.000 1984-04-06 2024-10-11 01:26:49 +5211 5211 5212 521.1 1042.2 5211 1984-04-08 2024-10-11 01:26:51.000 1984-04-08 2024-10-11 01:26:51 +5212 5212 5213 521.2 1042.4 5212 1984-04-09 2024-10-11 01:26:52.000 1984-04-09 2024-10-11 01:26:52 +5213 5213 5214 521.3 1042.6000000000001 5213 1984-04-10 2024-10-11 01:26:53.000 1984-04-10 2024-10-11 01:26:53 +5214 5214 5215 521.4 1042.8 5214 1984-04-11 2024-10-11 01:26:54.000 1984-04-11 2024-10-11 01:26:54 +5216 5216 5217 521.6 1043.2 5216 1984-04-13 2024-10-11 01:26:56.000 1984-04-13 2024-10-11 01:26:56 +5217 5217 5218 521.7 1043.4 5217 1984-04-14 2024-10-11 01:26:57.000 1984-04-14 2024-10-11 01:26:57 +5218 5218 5219 521.8 1043.6000000000001 5218 1984-04-15 2024-10-11 01:26:58.000 1984-04-15 2024-10-11 01:26:58 +5219 5219 5220 521.9 1043.8 5219 1984-04-16 2024-10-11 01:26:59.000 1984-04-16 2024-10-11 01:26:59 +5221 5221 5222 522.1 1044.2 5221 1984-04-18 2024-10-11 01:27:01.000 1984-04-18 2024-10-11 01:27:01 +5222 5222 5223 522.2 1044.4 5222 1984-04-19 2024-10-11 01:27:02.000 1984-04-19 2024-10-11 01:27:02 +5223 5223 5224 522.3 1044.6000000000001 5223 1984-04-20 2024-10-11 01:27:03.000 1984-04-20 2024-10-11 01:27:03 +5224 5224 5225 522.4 1044.8 5224 1984-04-21 2024-10-11 01:27:04.000 1984-04-21 2024-10-11 01:27:04 +5226 5226 5227 522.6 1045.2 5226 1984-04-23 2024-10-11 01:27:06.000 1984-04-23 2024-10-11 01:27:06 +5227 5227 5228 522.7 1045.4 5227 1984-04-24 2024-10-11 01:27:07.000 1984-04-24 2024-10-11 01:27:07 +5228 5228 5229 522.8 1045.6000000000001 5228 1984-04-25 2024-10-11 01:27:08.000 1984-04-25 2024-10-11 01:27:08 +5229 5229 5230 522.9 1045.8 5229 1984-04-26 2024-10-11 01:27:09.000 1984-04-26 2024-10-11 01:27:09 +5231 5231 5232 523.1 1046.2 5231 1984-04-28 2024-10-11 01:27:11.000 1984-04-28 2024-10-11 01:27:11 +5232 5232 5233 523.2 1046.4 5232 1984-04-29 2024-10-11 01:27:12.000 1984-04-29 2024-10-11 01:27:12 +5233 5233 5234 523.3 1046.6000000000001 5233 1984-04-30 2024-10-11 01:27:13.000 1984-04-30 2024-10-11 01:27:13 +5234 5234 5235 523.4 1046.8 5234 1984-05-01 2024-10-11 01:27:14.000 1984-05-01 2024-10-11 01:27:14 +5236 5236 5237 523.6 1047.2 5236 1984-05-03 2024-10-11 01:27:16.000 1984-05-03 2024-10-11 01:27:16 +5237 5237 5238 523.7 1047.4 5237 1984-05-04 2024-10-11 01:27:17.000 1984-05-04 2024-10-11 01:27:17 +5238 5238 5239 523.8 1047.6000000000001 5238 1984-05-05 2024-10-11 01:27:18.000 1984-05-05 2024-10-11 01:27:18 +5239 5239 5240 523.9 1047.8 5239 1984-05-06 2024-10-11 01:27:19.000 1984-05-06 2024-10-11 01:27:19 +5241 5241 5242 524.1 1048.2 5241 1984-05-08 2024-10-11 01:27:21.000 1984-05-08 2024-10-11 01:27:21 +5242 5242 5243 524.2 1048.4 5242 1984-05-09 2024-10-11 01:27:22.000 1984-05-09 2024-10-11 01:27:22 +5243 5243 5244 524.3 1048.6000000000001 5243 1984-05-10 2024-10-11 01:27:23.000 1984-05-10 2024-10-11 01:27:23 +5244 5244 5245 524.4 1048.8 5244 1984-05-11 2024-10-11 01:27:24.000 1984-05-11 2024-10-11 01:27:24 +5246 5246 5247 524.6 1049.2 5246 1984-05-13 2024-10-11 01:27:26.000 1984-05-13 2024-10-11 01:27:26 +5247 5247 5248 524.7 1049.4 5247 1984-05-14 2024-10-11 01:27:27.000 1984-05-14 2024-10-11 01:27:27 +5248 5248 5249 524.8 1049.6000000000001 5248 1984-05-15 2024-10-11 01:27:28.000 1984-05-15 2024-10-11 01:27:28 +5249 5249 5250 524.9 1049.8 5249 1984-05-16 2024-10-11 01:27:29.000 1984-05-16 2024-10-11 01:27:29 +5251 5251 5252 525.1 1050.2 5251 1984-05-18 2024-10-11 01:27:31.000 1984-05-18 2024-10-11 01:27:31 +5252 5252 5253 525.2 1050.4 5252 1984-05-19 2024-10-11 01:27:32.000 1984-05-19 2024-10-11 01:27:32 +5253 5253 5254 525.3 1050.6000000000001 5253 1984-05-20 2024-10-11 01:27:33.000 1984-05-20 2024-10-11 01:27:33 +5254 5254 5255 525.4 1050.8 5254 1984-05-21 2024-10-11 01:27:34.000 1984-05-21 2024-10-11 01:27:34 +5256 5256 5257 525.6 1051.2 5256 1984-05-23 2024-10-11 01:27:36.000 1984-05-23 2024-10-11 01:27:36 +5257 5257 5258 525.7 1051.4 5257 1984-05-24 2024-10-11 01:27:37.000 1984-05-24 2024-10-11 01:27:37 +5258 5258 5259 525.8 1051.6000000000001 5258 1984-05-25 2024-10-11 01:27:38.000 1984-05-25 2024-10-11 01:27:38 +5259 5259 5260 525.9 1051.8 5259 1984-05-26 2024-10-11 01:27:39.000 1984-05-26 2024-10-11 01:27:39 +5261 5261 5262 526.1 1052.2 5261 1984-05-28 2024-10-11 01:27:41.000 1984-05-28 2024-10-11 01:27:41 +5262 5262 5263 526.2 1052.4 5262 1984-05-29 2024-10-11 01:27:42.000 1984-05-29 2024-10-11 01:27:42 +5263 5263 5264 526.3 1052.6000000000001 5263 1984-05-30 2024-10-11 01:27:43.000 1984-05-30 2024-10-11 01:27:43 +5264 5264 5265 526.4 1052.8 5264 1984-05-31 2024-10-11 01:27:44.000 1984-05-31 2024-10-11 01:27:44 +5266 5266 5267 526.6 1053.2 5266 1984-06-02 2024-10-11 01:27:46.000 1984-06-02 2024-10-11 01:27:46 +5267 5267 5268 526.7 1053.4 5267 1984-06-03 2024-10-11 01:27:47.000 1984-06-03 2024-10-11 01:27:47 +5268 5268 5269 526.8 1053.6000000000001 5268 1984-06-04 2024-10-11 01:27:48.000 1984-06-04 2024-10-11 01:27:48 +5269 5269 5270 526.9 1053.8 5269 1984-06-05 2024-10-11 01:27:49.000 1984-06-05 2024-10-11 01:27:49 +5271 5271 5272 527.1 1054.2 5271 1984-06-07 2024-10-11 01:27:51.000 1984-06-07 2024-10-11 01:27:51 +5272 5272 5273 527.2 1054.4 5272 1984-06-08 2024-10-11 01:27:52.000 1984-06-08 2024-10-11 01:27:52 +5273 5273 5274 527.3 1054.6000000000001 5273 1984-06-09 2024-10-11 01:27:53.000 1984-06-09 2024-10-11 01:27:53 +5274 5274 5275 527.4 1054.8 5274 1984-06-10 2024-10-11 01:27:54.000 1984-06-10 2024-10-11 01:27:54 +5276 5276 5277 527.6 1055.2 5276 1984-06-12 2024-10-11 01:27:56.000 1984-06-12 2024-10-11 01:27:56 +5277 5277 5278 527.7 1055.4 5277 1984-06-13 2024-10-11 01:27:57.000 1984-06-13 2024-10-11 01:27:57 +5278 5278 5279 527.8 1055.6000000000001 5278 1984-06-14 2024-10-11 01:27:58.000 1984-06-14 2024-10-11 01:27:58 +5279 5279 5280 527.9 1055.8 5279 1984-06-15 2024-10-11 01:27:59.000 1984-06-15 2024-10-11 01:27:59 +5281 5281 5282 528.1 1056.2 5281 1984-06-17 2024-10-11 01:28:01.000 1984-06-17 2024-10-11 01:28:01 +5282 5282 5283 528.2 1056.4 5282 1984-06-18 2024-10-11 01:28:02.000 1984-06-18 2024-10-11 01:28:02 +5283 5283 5284 528.3 1056.6000000000001 5283 1984-06-19 2024-10-11 01:28:03.000 1984-06-19 2024-10-11 01:28:03 +5284 5284 5285 528.4 1056.8 5284 1984-06-20 2024-10-11 01:28:04.000 1984-06-20 2024-10-11 01:28:04 +5286 5286 5287 528.6 1057.2 5286 1984-06-22 2024-10-11 01:28:06.000 1984-06-22 2024-10-11 01:28:06 +5287 5287 5288 528.7 1057.4 5287 1984-06-23 2024-10-11 01:28:07.000 1984-06-23 2024-10-11 01:28:07 +5288 5288 5289 528.8 1057.6000000000001 5288 1984-06-24 2024-10-11 01:28:08.000 1984-06-24 2024-10-11 01:28:08 +5289 5289 5290 528.9 1057.8 5289 1984-06-25 2024-10-11 01:28:09.000 1984-06-25 2024-10-11 01:28:09 +5291 5291 5292 529.1 1058.2 5291 1984-06-27 2024-10-11 01:28:11.000 1984-06-27 2024-10-11 01:28:11 +5292 5292 5293 529.2 1058.4 5292 1984-06-28 2024-10-11 01:28:12.000 1984-06-28 2024-10-11 01:28:12 +5293 5293 5294 529.3 1058.6000000000001 5293 1984-06-29 2024-10-11 01:28:13.000 1984-06-29 2024-10-11 01:28:13 +5294 5294 5295 529.4 1058.8 5294 1984-06-30 2024-10-11 01:28:14.000 1984-06-30 2024-10-11 01:28:14 +5296 5296 5297 529.6 1059.2 5296 1984-07-02 2024-10-11 01:28:16.000 1984-07-02 2024-10-11 01:28:16 +5297 5297 5298 529.7 1059.4 5297 1984-07-03 2024-10-11 01:28:17.000 1984-07-03 2024-10-11 01:28:17 +5298 5298 5299 529.8 1059.6000000000001 5298 1984-07-04 2024-10-11 01:28:18.000 1984-07-04 2024-10-11 01:28:18 +5299 5299 5300 529.9 1059.8 5299 1984-07-05 2024-10-11 01:28:19.000 1984-07-05 2024-10-11 01:28:19 +5301 5301 5302 530.1 1060.2 5301 1984-07-07 2024-10-11 01:28:21.000 1984-07-07 2024-10-11 01:28:21 +5302 5302 5303 530.2 1060.4 5302 1984-07-08 2024-10-11 01:28:22.000 1984-07-08 2024-10-11 01:28:22 +5303 5303 5304 530.3 1060.6000000000001 5303 1984-07-09 2024-10-11 01:28:23.000 1984-07-09 2024-10-11 01:28:23 +5304 5304 5305 530.4 1060.8 5304 1984-07-10 2024-10-11 01:28:24.000 1984-07-10 2024-10-11 01:28:24 +5306 5306 5307 530.6 1061.2 5306 1984-07-12 2024-10-11 01:28:26.000 1984-07-12 2024-10-11 01:28:26 +5307 5307 5308 530.7 1061.4 5307 1984-07-13 2024-10-11 01:28:27.000 1984-07-13 2024-10-11 01:28:27 +5308 5308 5309 530.8 1061.6000000000001 5308 1984-07-14 2024-10-11 01:28:28.000 1984-07-14 2024-10-11 01:28:28 +5309 5309 5310 530.9 1061.8 5309 1984-07-15 2024-10-11 01:28:29.000 1984-07-15 2024-10-11 01:28:29 +5311 5311 5312 531.1 1062.2 5311 1984-07-17 2024-10-11 01:28:31.000 1984-07-17 2024-10-11 01:28:31 +5312 5312 5313 531.2 1062.4 5312 1984-07-18 2024-10-11 01:28:32.000 1984-07-18 2024-10-11 01:28:32 +5313 5313 5314 531.3 1062.6000000000001 5313 1984-07-19 2024-10-11 01:28:33.000 1984-07-19 2024-10-11 01:28:33 +5314 5314 5315 531.4 1062.8 5314 1984-07-20 2024-10-11 01:28:34.000 1984-07-20 2024-10-11 01:28:34 +5316 5316 5317 531.6 1063.2 5316 1984-07-22 2024-10-11 01:28:36.000 1984-07-22 2024-10-11 01:28:36 +5317 5317 5318 531.7 1063.4 5317 1984-07-23 2024-10-11 01:28:37.000 1984-07-23 2024-10-11 01:28:37 +5318 5318 5319 531.8 1063.6000000000001 5318 1984-07-24 2024-10-11 01:28:38.000 1984-07-24 2024-10-11 01:28:38 +5319 5319 5320 531.9 1063.8 5319 1984-07-25 2024-10-11 01:28:39.000 1984-07-25 2024-10-11 01:28:39 +5321 5321 5322 532.1 1064.2 5321 1984-07-27 2024-10-11 01:28:41.000 1984-07-27 2024-10-11 01:28:41 +5322 5322 5323 532.2 1064.4 5322 1984-07-28 2024-10-11 01:28:42.000 1984-07-28 2024-10-11 01:28:42 +5323 5323 5324 532.3 1064.6000000000001 5323 1984-07-29 2024-10-11 01:28:43.000 1984-07-29 2024-10-11 01:28:43 +5324 5324 5325 532.4 1064.8 5324 1984-07-30 2024-10-11 01:28:44.000 1984-07-30 2024-10-11 01:28:44 +5326 5326 5327 532.6 1065.2 5326 1984-08-01 2024-10-11 01:28:46.000 1984-08-01 2024-10-11 01:28:46 +5327 5327 5328 532.7 1065.4 5327 1984-08-02 2024-10-11 01:28:47.000 1984-08-02 2024-10-11 01:28:47 +5328 5328 5329 532.8 1065.6000000000001 5328 1984-08-03 2024-10-11 01:28:48.000 1984-08-03 2024-10-11 01:28:48 +5329 5329 5330 532.9 1065.8 5329 1984-08-04 2024-10-11 01:28:49.000 1984-08-04 2024-10-11 01:28:49 +5331 5331 5332 533.1 1066.2 5331 1984-08-06 2024-10-11 01:28:51.000 1984-08-06 2024-10-11 01:28:51 +5332 5332 5333 533.2 1066.4 5332 1984-08-07 2024-10-11 01:28:52.000 1984-08-07 2024-10-11 01:28:52 +5333 5333 5334 533.3 1066.6000000000001 5333 1984-08-08 2024-10-11 01:28:53.000 1984-08-08 2024-10-11 01:28:53 +5334 5334 5335 533.4 1066.8 5334 1984-08-09 2024-10-11 01:28:54.000 1984-08-09 2024-10-11 01:28:54 +5336 5336 5337 533.6 1067.2 5336 1984-08-11 2024-10-11 01:28:56.000 1984-08-11 2024-10-11 01:28:56 +5337 5337 5338 533.7 1067.4 5337 1984-08-12 2024-10-11 01:28:57.000 1984-08-12 2024-10-11 01:28:57 +5338 5338 5339 533.8 1067.6000000000001 5338 1984-08-13 2024-10-11 01:28:58.000 1984-08-13 2024-10-11 01:28:58 +5339 5339 5340 533.9 1067.8 5339 1984-08-14 2024-10-11 01:28:59.000 1984-08-14 2024-10-11 01:28:59 +5341 5341 5342 534.1 1068.2 5341 1984-08-16 2024-10-11 01:29:01.000 1984-08-16 2024-10-11 01:29:01 +5342 5342 5343 534.2 1068.4 5342 1984-08-17 2024-10-11 01:29:02.000 1984-08-17 2024-10-11 01:29:02 +5343 5343 5344 534.3 1068.6000000000001 5343 1984-08-18 2024-10-11 01:29:03.000 1984-08-18 2024-10-11 01:29:03 +5344 5344 5345 534.4 1068.8 5344 1984-08-19 2024-10-11 01:29:04.000 1984-08-19 2024-10-11 01:29:04 +5346 5346 5347 534.6 1069.2 5346 1984-08-21 2024-10-11 01:29:06.000 1984-08-21 2024-10-11 01:29:06 +5347 5347 5348 534.7 1069.4 5347 1984-08-22 2024-10-11 01:29:07.000 1984-08-22 2024-10-11 01:29:07 +5348 5348 5349 534.8 1069.6000000000001 5348 1984-08-23 2024-10-11 01:29:08.000 1984-08-23 2024-10-11 01:29:08 +5349 5349 5350 534.9 1069.8 5349 1984-08-24 2024-10-11 01:29:09.000 1984-08-24 2024-10-11 01:29:09 +5351 5351 5352 535.1 1070.2 5351 1984-08-26 2024-10-11 01:29:11.000 1984-08-26 2024-10-11 01:29:11 +5352 5352 5353 535.2 1070.4 5352 1984-08-27 2024-10-11 01:29:12.000 1984-08-27 2024-10-11 01:29:12 +5353 5353 5354 535.3 1070.6000000000001 5353 1984-08-28 2024-10-11 01:29:13.000 1984-08-28 2024-10-11 01:29:13 +5354 5354 5355 535.4 1070.8 5354 1984-08-29 2024-10-11 01:29:14.000 1984-08-29 2024-10-11 01:29:14 +5356 5356 5357 535.6 1071.2 5356 1984-08-31 2024-10-11 01:29:16.000 1984-08-31 2024-10-11 01:29:16 +5357 5357 5358 535.7 1071.4 5357 1984-09-01 2024-10-11 01:29:17.000 1984-09-01 2024-10-11 01:29:17 +5358 5358 5359 535.8 1071.6000000000001 5358 1984-09-02 2024-10-11 01:29:18.000 1984-09-02 2024-10-11 01:29:18 +5359 5359 5360 535.9 1071.8 5359 1984-09-03 2024-10-11 01:29:19.000 1984-09-03 2024-10-11 01:29:19 +5361 5361 5362 536.1 1072.2 5361 1984-09-05 2024-10-11 01:29:21.000 1984-09-05 2024-10-11 01:29:21 +5362 5362 5363 536.2 1072.4 5362 1984-09-06 2024-10-11 01:29:22.000 1984-09-06 2024-10-11 01:29:22 +5363 5363 5364 536.3 1072.6000000000001 5363 1984-09-07 2024-10-11 01:29:23.000 1984-09-07 2024-10-11 01:29:23 +5364 5364 5365 536.4 1072.8 5364 1984-09-08 2024-10-11 01:29:24.000 1984-09-08 2024-10-11 01:29:24 +5366 5366 5367 536.6 1073.2 5366 1984-09-10 2024-10-11 01:29:26.000 1984-09-10 2024-10-11 01:29:26 +5367 5367 5368 536.7 1073.4 5367 1984-09-11 2024-10-11 01:29:27.000 1984-09-11 2024-10-11 01:29:27 +5368 5368 5369 536.8 1073.6000000000001 5368 1984-09-12 2024-10-11 01:29:28.000 1984-09-12 2024-10-11 01:29:28 +5369 5369 5370 536.9 1073.8 5369 1984-09-13 2024-10-11 01:29:29.000 1984-09-13 2024-10-11 01:29:29 +5371 5371 5372 537.1 1074.2 5371 1984-09-15 2024-10-11 01:29:31.000 1984-09-15 2024-10-11 01:29:31 +5372 5372 5373 537.2 1074.4 5372 1984-09-16 2024-10-11 01:29:32.000 1984-09-16 2024-10-11 01:29:32 +5373 5373 5374 537.3 1074.6000000000001 5373 1984-09-17 2024-10-11 01:29:33.000 1984-09-17 2024-10-11 01:29:33 +5374 5374 5375 537.4 1074.8 5374 1984-09-18 2024-10-11 01:29:34.000 1984-09-18 2024-10-11 01:29:34 +5376 5376 5377 537.6 1075.2 5376 1984-09-20 2024-10-11 01:29:36.000 1984-09-20 2024-10-11 01:29:36 +5377 5377 5378 537.7 1075.4 5377 1984-09-21 2024-10-11 01:29:37.000 1984-09-21 2024-10-11 01:29:37 +5378 5378 5379 537.8 1075.6000000000001 5378 1984-09-22 2024-10-11 01:29:38.000 1984-09-22 2024-10-11 01:29:38 +5379 5379 5380 537.9 1075.8 5379 1984-09-23 2024-10-11 01:29:39.000 1984-09-23 2024-10-11 01:29:39 +5381 5381 5382 538.1 1076.2 5381 1984-09-25 2024-10-11 01:29:41.000 1984-09-25 2024-10-11 01:29:41 +5382 5382 5383 538.2 1076.4 5382 1984-09-26 2024-10-11 01:29:42.000 1984-09-26 2024-10-11 01:29:42 +5383 5383 5384 538.3 1076.6000000000001 5383 1984-09-27 2024-10-11 01:29:43.000 1984-09-27 2024-10-11 01:29:43 +5384 5384 5385 538.4 1076.8 5384 1984-09-28 2024-10-11 01:29:44.000 1984-09-28 2024-10-11 01:29:44 +5386 5386 5387 538.6 1077.2 5386 1984-09-30 2024-10-11 01:29:46.000 1984-09-30 2024-10-11 01:29:46 +5387 5387 5388 538.7 1077.4 5387 1984-10-01 2024-10-11 01:29:47.000 1984-10-01 2024-10-11 01:29:47 +5388 5388 5389 538.8 1077.6000000000001 5388 1984-10-02 2024-10-11 01:29:48.000 1984-10-02 2024-10-11 01:29:48 +5389 5389 5390 538.9 1077.8 5389 1984-10-03 2024-10-11 01:29:49.000 1984-10-03 2024-10-11 01:29:49 +5391 5391 5392 539.1 1078.2 5391 1984-10-05 2024-10-11 01:29:51.000 1984-10-05 2024-10-11 01:29:51 +5392 5392 5393 539.2 1078.4 5392 1984-10-06 2024-10-11 01:29:52.000 1984-10-06 2024-10-11 01:29:52 +5393 5393 5394 539.3 1078.6000000000001 5393 1984-10-07 2024-10-11 01:29:53.000 1984-10-07 2024-10-11 01:29:53 +5394 5394 5395 539.4 1078.8 5394 1984-10-08 2024-10-11 01:29:54.000 1984-10-08 2024-10-11 01:29:54 +5396 5396 5397 539.6 1079.2 5396 1984-10-10 2024-10-11 01:29:56.000 1984-10-10 2024-10-11 01:29:56 +5397 5397 5398 539.7 1079.4 5397 1984-10-11 2024-10-11 01:29:57.000 1984-10-11 2024-10-11 01:29:57 +5398 5398 5399 539.8 1079.6000000000001 5398 1984-10-12 2024-10-11 01:29:58.000 1984-10-12 2024-10-11 01:29:58 +5399 5399 5400 539.9 1079.8 5399 1984-10-13 2024-10-11 01:29:59.000 1984-10-13 2024-10-11 01:29:59 +5401 5401 5402 540.1 1080.2 5401 1984-10-15 2024-10-11 01:30:01.000 1984-10-15 2024-10-11 01:30:01 +5402 5402 5403 540.2 1080.4 5402 1984-10-16 2024-10-11 01:30:02.000 1984-10-16 2024-10-11 01:30:02 +5403 5403 5404 540.3 1080.6000000000001 5403 1984-10-17 2024-10-11 01:30:03.000 1984-10-17 2024-10-11 01:30:03 +5404 5404 5405 540.4 1080.8 5404 1984-10-18 2024-10-11 01:30:04.000 1984-10-18 2024-10-11 01:30:04 +5406 5406 5407 540.6 1081.2 5406 1984-10-20 2024-10-11 01:30:06.000 1984-10-20 2024-10-11 01:30:06 +5407 5407 5408 540.7 1081.4 5407 1984-10-21 2024-10-11 01:30:07.000 1984-10-21 2024-10-11 01:30:07 +5408 5408 5409 540.8 1081.6000000000001 5408 1984-10-22 2024-10-11 01:30:08.000 1984-10-22 2024-10-11 01:30:08 +5409 5409 5410 540.9 1081.8 5409 1984-10-23 2024-10-11 01:30:09.000 1984-10-23 2024-10-11 01:30:09 +5411 5411 5412 541.1 1082.2 5411 1984-10-25 2024-10-11 01:30:11.000 1984-10-25 2024-10-11 01:30:11 +5412 5412 5413 541.2 1082.4 5412 1984-10-26 2024-10-11 01:30:12.000 1984-10-26 2024-10-11 01:30:12 +5413 5413 5414 541.3 1082.6000000000001 5413 1984-10-27 2024-10-11 01:30:13.000 1984-10-27 2024-10-11 01:30:13 +5414 5414 5415 541.4 1082.8 5414 1984-10-28 2024-10-11 01:30:14.000 1984-10-28 2024-10-11 01:30:14 +5416 5416 5417 541.6 1083.2 5416 1984-10-30 2024-10-11 01:30:16.000 1984-10-30 2024-10-11 01:30:16 +5417 5417 5418 541.7 1083.4 5417 1984-10-31 2024-10-11 01:30:17.000 1984-10-31 2024-10-11 01:30:17 +5418 5418 5419 541.8 1083.6000000000001 5418 1984-11-01 2024-10-11 01:30:18.000 1984-11-01 2024-10-11 01:30:18 +5419 5419 5420 541.9 1083.8 5419 1984-11-02 2024-10-11 01:30:19.000 1984-11-02 2024-10-11 01:30:19 +5421 5421 5422 542.1 1084.2 5421 1984-11-04 2024-10-11 01:30:21.000 1984-11-04 2024-10-11 01:30:21 +5422 5422 5423 542.2 1084.4 5422 1984-11-05 2024-10-11 01:30:22.000 1984-11-05 2024-10-11 01:30:22 +5423 5423 5424 542.3 1084.6000000000001 5423 1984-11-06 2024-10-11 01:30:23.000 1984-11-06 2024-10-11 01:30:23 +5424 5424 5425 542.4 1084.8 5424 1984-11-07 2024-10-11 01:30:24.000 1984-11-07 2024-10-11 01:30:24 +5426 5426 5427 542.6 1085.2 5426 1984-11-09 2024-10-11 01:30:26.000 1984-11-09 2024-10-11 01:30:26 +5427 5427 5428 542.7 1085.4 5427 1984-11-10 2024-10-11 01:30:27.000 1984-11-10 2024-10-11 01:30:27 +5428 5428 5429 542.8 1085.6000000000001 5428 1984-11-11 2024-10-11 01:30:28.000 1984-11-11 2024-10-11 01:30:28 +5429 5429 5430 542.9 1085.8 5429 1984-11-12 2024-10-11 01:30:29.000 1984-11-12 2024-10-11 01:30:29 +5431 5431 5432 543.1 1086.2 5431 1984-11-14 2024-10-11 01:30:31.000 1984-11-14 2024-10-11 01:30:31 +5432 5432 5433 543.2 1086.4 5432 1984-11-15 2024-10-11 01:30:32.000 1984-11-15 2024-10-11 01:30:32 +5433 5433 5434 543.3 1086.6000000000001 5433 1984-11-16 2024-10-11 01:30:33.000 1984-11-16 2024-10-11 01:30:33 +5434 5434 5435 543.4 1086.8 5434 1984-11-17 2024-10-11 01:30:34.000 1984-11-17 2024-10-11 01:30:34 +5436 5436 5437 543.6 1087.2 5436 1984-11-19 2024-10-11 01:30:36.000 1984-11-19 2024-10-11 01:30:36 +5437 5437 5438 543.7 1087.4 5437 1984-11-20 2024-10-11 01:30:37.000 1984-11-20 2024-10-11 01:30:37 +5438 5438 5439 543.8 1087.6000000000001 5438 1984-11-21 2024-10-11 01:30:38.000 1984-11-21 2024-10-11 01:30:38 +5439 5439 5440 543.9 1087.8 5439 1984-11-22 2024-10-11 01:30:39.000 1984-11-22 2024-10-11 01:30:39 +5441 5441 5442 544.1 1088.2 5441 1984-11-24 2024-10-11 01:30:41.000 1984-11-24 2024-10-11 01:30:41 +5442 5442 5443 544.2 1088.4 5442 1984-11-25 2024-10-11 01:30:42.000 1984-11-25 2024-10-11 01:30:42 +5443 5443 5444 544.3 1088.6000000000001 5443 1984-11-26 2024-10-11 01:30:43.000 1984-11-26 2024-10-11 01:30:43 +5444 5444 5445 544.4 1088.8 5444 1984-11-27 2024-10-11 01:30:44.000 1984-11-27 2024-10-11 01:30:44 +5446 5446 5447 544.6 1089.2 5446 1984-11-29 2024-10-11 01:30:46.000 1984-11-29 2024-10-11 01:30:46 +5447 5447 5448 544.7 1089.4 5447 1984-11-30 2024-10-11 01:30:47.000 1984-11-30 2024-10-11 01:30:47 +5448 5448 5449 544.8 1089.6000000000001 5448 1984-12-01 2024-10-11 01:30:48.000 1984-12-01 2024-10-11 01:30:48 +5449 5449 5450 544.9 1089.8 5449 1984-12-02 2024-10-11 01:30:49.000 1984-12-02 2024-10-11 01:30:49 +5451 5451 5452 545.1 1090.2 5451 1984-12-04 2024-10-11 01:30:51.000 1984-12-04 2024-10-11 01:30:51 +5452 5452 5453 545.2 1090.4 5452 1984-12-05 2024-10-11 01:30:52.000 1984-12-05 2024-10-11 01:30:52 +5453 5453 5454 545.3 1090.6000000000001 5453 1984-12-06 2024-10-11 01:30:53.000 1984-12-06 2024-10-11 01:30:53 +5454 5454 5455 545.4 1090.8 5454 1984-12-07 2024-10-11 01:30:54.000 1984-12-07 2024-10-11 01:30:54 +5456 5456 5457 545.6 1091.2 5456 1984-12-09 2024-10-11 01:30:56.000 1984-12-09 2024-10-11 01:30:56 +5457 5457 5458 545.7 1091.4 5457 1984-12-10 2024-10-11 01:30:57.000 1984-12-10 2024-10-11 01:30:57 +5458 5458 5459 545.8 1091.6000000000001 5458 1984-12-11 2024-10-11 01:30:58.000 1984-12-11 2024-10-11 01:30:58 +5459 5459 5460 545.9 1091.8 5459 1984-12-12 2024-10-11 01:30:59.000 1984-12-12 2024-10-11 01:30:59 +5461 5461 5462 546.1 1092.2 5461 1984-12-14 2024-10-11 01:31:01.000 1984-12-14 2024-10-11 01:31:01 +5462 5462 5463 546.2 1092.4 5462 1984-12-15 2024-10-11 01:31:02.000 1984-12-15 2024-10-11 01:31:02 +5463 5463 5464 546.3 1092.6000000000001 5463 1984-12-16 2024-10-11 01:31:03.000 1984-12-16 2024-10-11 01:31:03 +5464 5464 5465 546.4 1092.8 5464 1984-12-17 2024-10-11 01:31:04.000 1984-12-17 2024-10-11 01:31:04 +5466 5466 5467 546.6 1093.2 5466 1984-12-19 2024-10-11 01:31:06.000 1984-12-19 2024-10-11 01:31:06 +5467 5467 5468 546.7 1093.4 5467 1984-12-20 2024-10-11 01:31:07.000 1984-12-20 2024-10-11 01:31:07 +5468 5468 5469 546.8 1093.6000000000001 5468 1984-12-21 2024-10-11 01:31:08.000 1984-12-21 2024-10-11 01:31:08 +5469 5469 5470 546.9 1093.8 5469 1984-12-22 2024-10-11 01:31:09.000 1984-12-22 2024-10-11 01:31:09 +5471 5471 5472 547.1 1094.2 5471 1984-12-24 2024-10-11 01:31:11.000 1984-12-24 2024-10-11 01:31:11 +5472 5472 5473 547.2 1094.4 5472 1984-12-25 2024-10-11 01:31:12.000 1984-12-25 2024-10-11 01:31:12 +5473 5473 5474 547.3 1094.6000000000001 5473 1984-12-26 2024-10-11 01:31:13.000 1984-12-26 2024-10-11 01:31:13 +5474 5474 5475 547.4 1094.8 5474 1984-12-27 2024-10-11 01:31:14.000 1984-12-27 2024-10-11 01:31:14 +5476 5476 5477 547.6 1095.2 5476 1984-12-29 2024-10-11 01:31:16.000 1984-12-29 2024-10-11 01:31:16 +5477 5477 5478 547.7 1095.4 5477 1984-12-30 2024-10-11 01:31:17.000 1984-12-30 2024-10-11 01:31:17 +5478 5478 5479 547.8 1095.6000000000001 5478 1984-12-31 2024-10-11 01:31:18.000 1984-12-31 2024-10-11 01:31:18 +5479 5479 5480 547.9 1095.8 5479 1985-01-01 2024-10-11 01:31:19.000 1985-01-01 2024-10-11 01:31:19 +5481 5481 5482 548.1 1096.2 5481 1985-01-03 2024-10-11 01:31:21.000 1985-01-03 2024-10-11 01:31:21 +5482 5482 5483 548.2 1096.4 5482 1985-01-04 2024-10-11 01:31:22.000 1985-01-04 2024-10-11 01:31:22 +5483 5483 5484 548.3 1096.6000000000001 5483 1985-01-05 2024-10-11 01:31:23.000 1985-01-05 2024-10-11 01:31:23 +5484 5484 5485 548.4 1096.8 5484 1985-01-06 2024-10-11 01:31:24.000 1985-01-06 2024-10-11 01:31:24 +5486 5486 5487 548.6 1097.2 5486 1985-01-08 2024-10-11 01:31:26.000 1985-01-08 2024-10-11 01:31:26 +5487 5487 5488 548.7 1097.4 5487 1985-01-09 2024-10-11 01:31:27.000 1985-01-09 2024-10-11 01:31:27 +5488 5488 5489 548.8 1097.6000000000001 5488 1985-01-10 2024-10-11 01:31:28.000 1985-01-10 2024-10-11 01:31:28 +5489 5489 5490 548.9 1097.8 5489 1985-01-11 2024-10-11 01:31:29.000 1985-01-11 2024-10-11 01:31:29 +5491 5491 5492 549.1 1098.2 5491 1985-01-13 2024-10-11 01:31:31.000 1985-01-13 2024-10-11 01:31:31 +5492 5492 5493 549.2 1098.4 5492 1985-01-14 2024-10-11 01:31:32.000 1985-01-14 2024-10-11 01:31:32 +5493 5493 5494 549.3 1098.6000000000001 5493 1985-01-15 2024-10-11 01:31:33.000 1985-01-15 2024-10-11 01:31:33 +5494 5494 5495 549.4 1098.8 5494 1985-01-16 2024-10-11 01:31:34.000 1985-01-16 2024-10-11 01:31:34 +5496 5496 5497 549.6 1099.2 5496 1985-01-18 2024-10-11 01:31:36.000 1985-01-18 2024-10-11 01:31:36 +5497 5497 5498 549.7 1099.4 5497 1985-01-19 2024-10-11 01:31:37.000 1985-01-19 2024-10-11 01:31:37 +5498 5498 5499 549.8 1099.6000000000001 5498 1985-01-20 2024-10-11 01:31:38.000 1985-01-20 2024-10-11 01:31:38 +5499 5499 5500 549.9 1099.8 5499 1985-01-21 2024-10-11 01:31:39.000 1985-01-21 2024-10-11 01:31:39 +5501 5501 5502 550.1 1100.2 5501 1985-01-23 2024-10-11 01:31:41.000 1985-01-23 2024-10-11 01:31:41 +5502 5502 5503 550.2 1100.4 5502 1985-01-24 2024-10-11 01:31:42.000 1985-01-24 2024-10-11 01:31:42 +5503 5503 5504 550.3 1100.6000000000001 5503 1985-01-25 2024-10-11 01:31:43.000 1985-01-25 2024-10-11 01:31:43 +5504 5504 5505 550.4 1100.8 5504 1985-01-26 2024-10-11 01:31:44.000 1985-01-26 2024-10-11 01:31:44 +5506 5506 5507 550.6 1101.2 5506 1985-01-28 2024-10-11 01:31:46.000 1985-01-28 2024-10-11 01:31:46 +5507 5507 5508 550.7 1101.4 5507 1985-01-29 2024-10-11 01:31:47.000 1985-01-29 2024-10-11 01:31:47 +5508 5508 5509 550.8 1101.6000000000001 5508 1985-01-30 2024-10-11 01:31:48.000 1985-01-30 2024-10-11 01:31:48 +5509 5509 5510 550.9 1101.8 5509 1985-01-31 2024-10-11 01:31:49.000 1985-01-31 2024-10-11 01:31:49 +5511 5511 5512 551.1 1102.2 5511 1985-02-02 2024-10-11 01:31:51.000 1985-02-02 2024-10-11 01:31:51 +5512 5512 5513 551.2 1102.4 5512 1985-02-03 2024-10-11 01:31:52.000 1985-02-03 2024-10-11 01:31:52 +5513 5513 5514 551.3 1102.6000000000001 5513 1985-02-04 2024-10-11 01:31:53.000 1985-02-04 2024-10-11 01:31:53 +5514 5514 5515 551.4 1102.8 5514 1985-02-05 2024-10-11 01:31:54.000 1985-02-05 2024-10-11 01:31:54 +5516 5516 5517 551.6 1103.2 5516 1985-02-07 2024-10-11 01:31:56.000 1985-02-07 2024-10-11 01:31:56 +5517 5517 5518 551.7 1103.4 5517 1985-02-08 2024-10-11 01:31:57.000 1985-02-08 2024-10-11 01:31:57 +5518 5518 5519 551.8 1103.6000000000001 5518 1985-02-09 2024-10-11 01:31:58.000 1985-02-09 2024-10-11 01:31:58 +5519 5519 5520 551.9 1103.8 5519 1985-02-10 2024-10-11 01:31:59.000 1985-02-10 2024-10-11 01:31:59 +5521 5521 5522 552.1 1104.2 5521 1985-02-12 2024-10-11 01:32:01.000 1985-02-12 2024-10-11 01:32:01 +5522 5522 5523 552.2 1104.4 5522 1985-02-13 2024-10-11 01:32:02.000 1985-02-13 2024-10-11 01:32:02 +5523 5523 5524 552.3 1104.6000000000001 5523 1985-02-14 2024-10-11 01:32:03.000 1985-02-14 2024-10-11 01:32:03 +5524 5524 5525 552.4 1104.8 5524 1985-02-15 2024-10-11 01:32:04.000 1985-02-15 2024-10-11 01:32:04 +5526 5526 5527 552.6 1105.2 5526 1985-02-17 2024-10-11 01:32:06.000 1985-02-17 2024-10-11 01:32:06 +5527 5527 5528 552.7 1105.4 5527 1985-02-18 2024-10-11 01:32:07.000 1985-02-18 2024-10-11 01:32:07 +5528 5528 5529 552.8 1105.6000000000001 5528 1985-02-19 2024-10-11 01:32:08.000 1985-02-19 2024-10-11 01:32:08 +5529 5529 5530 552.9 1105.8 5529 1985-02-20 2024-10-11 01:32:09.000 1985-02-20 2024-10-11 01:32:09 +5531 5531 5532 553.1 1106.2 5531 1985-02-22 2024-10-11 01:32:11.000 1985-02-22 2024-10-11 01:32:11 +5532 5532 5533 553.2 1106.4 5532 1985-02-23 2024-10-11 01:32:12.000 1985-02-23 2024-10-11 01:32:12 +5533 5533 5534 553.3 1106.6000000000001 5533 1985-02-24 2024-10-11 01:32:13.000 1985-02-24 2024-10-11 01:32:13 +5534 5534 5535 553.4 1106.8 5534 1985-02-25 2024-10-11 01:32:14.000 1985-02-25 2024-10-11 01:32:14 +5536 5536 5537 553.6 1107.2 5536 1985-02-27 2024-10-11 01:32:16.000 1985-02-27 2024-10-11 01:32:16 +5537 5537 5538 553.7 1107.4 5537 1985-02-28 2024-10-11 01:32:17.000 1985-02-28 2024-10-11 01:32:17 +5538 5538 5539 553.8 1107.6000000000001 5538 1985-03-01 2024-10-11 01:32:18.000 1985-03-01 2024-10-11 01:32:18 +5539 5539 5540 553.9 1107.8 5539 1985-03-02 2024-10-11 01:32:19.000 1985-03-02 2024-10-11 01:32:19 +5541 5541 5542 554.1 1108.2 5541 1985-03-04 2024-10-11 01:32:21.000 1985-03-04 2024-10-11 01:32:21 +5542 5542 5543 554.2 1108.4 5542 1985-03-05 2024-10-11 01:32:22.000 1985-03-05 2024-10-11 01:32:22 +5543 5543 5544 554.3 1108.6000000000001 5543 1985-03-06 2024-10-11 01:32:23.000 1985-03-06 2024-10-11 01:32:23 +5544 5544 5545 554.4 1108.8 5544 1985-03-07 2024-10-11 01:32:24.000 1985-03-07 2024-10-11 01:32:24 +5546 5546 5547 554.6 1109.2 5546 1985-03-09 2024-10-11 01:32:26.000 1985-03-09 2024-10-11 01:32:26 +5547 5547 5548 554.7 1109.4 5547 1985-03-10 2024-10-11 01:32:27.000 1985-03-10 2024-10-11 01:32:27 +5548 5548 5549 554.8 1109.6000000000001 5548 1985-03-11 2024-10-11 01:32:28.000 1985-03-11 2024-10-11 01:32:28 +5549 5549 5550 554.9 1109.8 5549 1985-03-12 2024-10-11 01:32:29.000 1985-03-12 2024-10-11 01:32:29 +5551 5551 5552 555.1 1110.2 5551 1985-03-14 2024-10-11 01:32:31.000 1985-03-14 2024-10-11 01:32:31 +5552 5552 5553 555.2 1110.4 5552 1985-03-15 2024-10-11 01:32:32.000 1985-03-15 2024-10-11 01:32:32 +5553 5553 5554 555.3 1110.6000000000001 5553 1985-03-16 2024-10-11 01:32:33.000 1985-03-16 2024-10-11 01:32:33 +5554 5554 5555 555.4 1110.8 5554 1985-03-17 2024-10-11 01:32:34.000 1985-03-17 2024-10-11 01:32:34 +5556 5556 5557 555.6 1111.2 5556 1985-03-19 2024-10-11 01:32:36.000 1985-03-19 2024-10-11 01:32:36 +5557 5557 5558 555.7 1111.4 5557 1985-03-20 2024-10-11 01:32:37.000 1985-03-20 2024-10-11 01:32:37 +5558 5558 5559 555.8 1111.6000000000001 5558 1985-03-21 2024-10-11 01:32:38.000 1985-03-21 2024-10-11 01:32:38 +5559 5559 5560 555.9 1111.8 5559 1985-03-22 2024-10-11 01:32:39.000 1985-03-22 2024-10-11 01:32:39 +5561 5561 5562 556.1 1112.2 5561 1985-03-24 2024-10-11 01:32:41.000 1985-03-24 2024-10-11 01:32:41 +5562 5562 5563 556.2 1112.4 5562 1985-03-25 2024-10-11 01:32:42.000 1985-03-25 2024-10-11 01:32:42 +5563 5563 5564 556.3 1112.6000000000001 5563 1985-03-26 2024-10-11 01:32:43.000 1985-03-26 2024-10-11 01:32:43 +5564 5564 5565 556.4 1112.8 5564 1985-03-27 2024-10-11 01:32:44.000 1985-03-27 2024-10-11 01:32:44 +5566 5566 5567 556.6 1113.2 5566 1985-03-29 2024-10-11 01:32:46.000 1985-03-29 2024-10-11 01:32:46 +5567 5567 5568 556.7 1113.4 5567 1985-03-30 2024-10-11 01:32:47.000 1985-03-30 2024-10-11 01:32:47 +5568 5568 5569 556.8 1113.6000000000001 5568 1985-03-31 2024-10-11 01:32:48.000 1985-03-31 2024-10-11 01:32:48 +5569 5569 5570 556.9 1113.8 5569 1985-04-01 2024-10-11 01:32:49.000 1985-04-01 2024-10-11 01:32:49 +5571 5571 5572 557.1 1114.2 5571 1985-04-03 2024-10-11 01:32:51.000 1985-04-03 2024-10-11 01:32:51 +5572 5572 5573 557.2 1114.4 5572 1985-04-04 2024-10-11 01:32:52.000 1985-04-04 2024-10-11 01:32:52 +5573 5573 5574 557.3 1114.6000000000001 5573 1985-04-05 2024-10-11 01:32:53.000 1985-04-05 2024-10-11 01:32:53 +5574 5574 5575 557.4 1114.8 5574 1985-04-06 2024-10-11 01:32:54.000 1985-04-06 2024-10-11 01:32:54 +5576 5576 5577 557.6 1115.2 5576 1985-04-08 2024-10-11 01:32:56.000 1985-04-08 2024-10-11 01:32:56 +5577 5577 5578 557.7 1115.4 5577 1985-04-09 2024-10-11 01:32:57.000 1985-04-09 2024-10-11 01:32:57 +5578 5578 5579 557.8 1115.6000000000001 5578 1985-04-10 2024-10-11 01:32:58.000 1985-04-10 2024-10-11 01:32:58 +5579 5579 5580 557.9 1115.8 5579 1985-04-11 2024-10-11 01:32:59.000 1985-04-11 2024-10-11 01:32:59 +5581 5581 5582 558.1 1116.2 5581 1985-04-13 2024-10-11 01:33:01.000 1985-04-13 2024-10-11 01:33:01 +5582 5582 5583 558.2 1116.4 5582 1985-04-14 2024-10-11 01:33:02.000 1985-04-14 2024-10-11 01:33:02 +5583 5583 5584 558.3 1116.6000000000001 5583 1985-04-15 2024-10-11 01:33:03.000 1985-04-15 2024-10-11 01:33:03 +5584 5584 5585 558.4 1116.8 5584 1985-04-16 2024-10-11 01:33:04.000 1985-04-16 2024-10-11 01:33:04 +5586 5586 5587 558.6 1117.2 5586 1985-04-18 2024-10-11 01:33:06.000 1985-04-18 2024-10-11 01:33:06 +5587 5587 5588 558.7 1117.4 5587 1985-04-19 2024-10-11 01:33:07.000 1985-04-19 2024-10-11 01:33:07 +5588 5588 5589 558.8 1117.6000000000001 5588 1985-04-20 2024-10-11 01:33:08.000 1985-04-20 2024-10-11 01:33:08 +5589 5589 5590 558.9 1117.8 5589 1985-04-21 2024-10-11 01:33:09.000 1985-04-21 2024-10-11 01:33:09 +5591 5591 5592 559.1 1118.2 5591 1985-04-23 2024-10-11 01:33:11.000 1985-04-23 2024-10-11 01:33:11 +5592 5592 5593 559.2 1118.4 5592 1985-04-24 2024-10-11 01:33:12.000 1985-04-24 2024-10-11 01:33:12 +5593 5593 5594 559.3 1118.6000000000001 5593 1985-04-25 2024-10-11 01:33:13.000 1985-04-25 2024-10-11 01:33:13 +5594 5594 5595 559.4 1118.8 5594 1985-04-26 2024-10-11 01:33:14.000 1985-04-26 2024-10-11 01:33:14 +5596 5596 5597 559.6 1119.2 5596 1985-04-28 2024-10-11 01:33:16.000 1985-04-28 2024-10-11 01:33:16 +5597 5597 5598 559.7 1119.4 5597 1985-04-29 2024-10-11 01:33:17.000 1985-04-29 2024-10-11 01:33:17 +5598 5598 5599 559.8 1119.6000000000001 5598 1985-04-30 2024-10-11 01:33:18.000 1985-04-30 2024-10-11 01:33:18 +5599 5599 5600 559.9 1119.8 5599 1985-05-01 2024-10-11 01:33:19.000 1985-05-01 2024-10-11 01:33:19 +5601 5601 5602 560.1 1120.2 5601 1985-05-03 2024-10-11 01:33:21.000 1985-05-03 2024-10-11 01:33:21 +5602 5602 5603 560.2 1120.4 5602 1985-05-04 2024-10-11 01:33:22.000 1985-05-04 2024-10-11 01:33:22 +5603 5603 5604 560.3 1120.6000000000001 5603 1985-05-05 2024-10-11 01:33:23.000 1985-05-05 2024-10-11 01:33:23 +5604 5604 5605 560.4 1120.8 5604 1985-05-06 2024-10-11 01:33:24.000 1985-05-06 2024-10-11 01:33:24 +5606 5606 5607 560.6 1121.2 5606 1985-05-08 2024-10-11 01:33:26.000 1985-05-08 2024-10-11 01:33:26 +5607 5607 5608 560.7 1121.4 5607 1985-05-09 2024-10-11 01:33:27.000 1985-05-09 2024-10-11 01:33:27 +5608 5608 5609 560.8 1121.6000000000001 5608 1985-05-10 2024-10-11 01:33:28.000 1985-05-10 2024-10-11 01:33:28 +5609 5609 5610 560.9 1121.8 5609 1985-05-11 2024-10-11 01:33:29.000 1985-05-11 2024-10-11 01:33:29 +5611 5611 5612 561.1 1122.2 5611 1985-05-13 2024-10-11 01:33:31.000 1985-05-13 2024-10-11 01:33:31 +5612 5612 5613 561.2 1122.4 5612 1985-05-14 2024-10-11 01:33:32.000 1985-05-14 2024-10-11 01:33:32 +5613 5613 5614 561.3 1122.6000000000001 5613 1985-05-15 2024-10-11 01:33:33.000 1985-05-15 2024-10-11 01:33:33 +5614 5614 5615 561.4 1122.8 5614 1985-05-16 2024-10-11 01:33:34.000 1985-05-16 2024-10-11 01:33:34 +5616 5616 5617 561.6 1123.2 5616 1985-05-18 2024-10-11 01:33:36.000 1985-05-18 2024-10-11 01:33:36 +5617 5617 5618 561.7 1123.4 5617 1985-05-19 2024-10-11 01:33:37.000 1985-05-19 2024-10-11 01:33:37 +5618 5618 5619 561.8 1123.6000000000001 5618 1985-05-20 2024-10-11 01:33:38.000 1985-05-20 2024-10-11 01:33:38 +5619 5619 5620 561.9 1123.8 5619 1985-05-21 2024-10-11 01:33:39.000 1985-05-21 2024-10-11 01:33:39 +5621 5621 5622 562.1 1124.2 5621 1985-05-23 2024-10-11 01:33:41.000 1985-05-23 2024-10-11 01:33:41 +5622 5622 5623 562.2 1124.4 5622 1985-05-24 2024-10-11 01:33:42.000 1985-05-24 2024-10-11 01:33:42 +5623 5623 5624 562.3 1124.6000000000001 5623 1985-05-25 2024-10-11 01:33:43.000 1985-05-25 2024-10-11 01:33:43 +5624 5624 5625 562.4 1124.8 5624 1985-05-26 2024-10-11 01:33:44.000 1985-05-26 2024-10-11 01:33:44 +5626 5626 5627 562.6 1125.2 5626 1985-05-28 2024-10-11 01:33:46.000 1985-05-28 2024-10-11 01:33:46 +5627 5627 5628 562.7 1125.4 5627 1985-05-29 2024-10-11 01:33:47.000 1985-05-29 2024-10-11 01:33:47 +5628 5628 5629 562.8 1125.6000000000001 5628 1985-05-30 2024-10-11 01:33:48.000 1985-05-30 2024-10-11 01:33:48 +5629 5629 5630 562.9 1125.8 5629 1985-05-31 2024-10-11 01:33:49.000 1985-05-31 2024-10-11 01:33:49 +5631 5631 5632 563.1 1126.2 5631 1985-06-02 2024-10-11 01:33:51.000 1985-06-02 2024-10-11 01:33:51 +5632 5632 5633 563.2 1126.4 5632 1985-06-03 2024-10-11 01:33:52.000 1985-06-03 2024-10-11 01:33:52 +5633 5633 5634 563.3 1126.6000000000001 5633 1985-06-04 2024-10-11 01:33:53.000 1985-06-04 2024-10-11 01:33:53 +5634 5634 5635 563.4 1126.8 5634 1985-06-05 2024-10-11 01:33:54.000 1985-06-05 2024-10-11 01:33:54 +5636 5636 5637 563.6 1127.2 5636 1985-06-07 2024-10-11 01:33:56.000 1985-06-07 2024-10-11 01:33:56 +5637 5637 5638 563.7 1127.4 5637 1985-06-08 2024-10-11 01:33:57.000 1985-06-08 2024-10-11 01:33:57 +5638 5638 5639 563.8 1127.6000000000001 5638 1985-06-09 2024-10-11 01:33:58.000 1985-06-09 2024-10-11 01:33:58 +5639 5639 5640 563.9 1127.8 5639 1985-06-10 2024-10-11 01:33:59.000 1985-06-10 2024-10-11 01:33:59 +5641 5641 5642 564.1 1128.2 5641 1985-06-12 2024-10-11 01:34:01.000 1985-06-12 2024-10-11 01:34:01 +5642 5642 5643 564.2 1128.4 5642 1985-06-13 2024-10-11 01:34:02.000 1985-06-13 2024-10-11 01:34:02 +5643 5643 5644 564.3 1128.6000000000001 5643 1985-06-14 2024-10-11 01:34:03.000 1985-06-14 2024-10-11 01:34:03 +5644 5644 5645 564.4 1128.8 5644 1985-06-15 2024-10-11 01:34:04.000 1985-06-15 2024-10-11 01:34:04 +5646 5646 5647 564.6 1129.2 5646 1985-06-17 2024-10-11 01:34:06.000 1985-06-17 2024-10-11 01:34:06 +5647 5647 5648 564.7 1129.4 5647 1985-06-18 2024-10-11 01:34:07.000 1985-06-18 2024-10-11 01:34:07 +5648 5648 5649 564.8 1129.6000000000001 5648 1985-06-19 2024-10-11 01:34:08.000 1985-06-19 2024-10-11 01:34:08 +5649 5649 5650 564.9 1129.8 5649 1985-06-20 2024-10-11 01:34:09.000 1985-06-20 2024-10-11 01:34:09 +5651 5651 5652 565.1 1130.2 5651 1985-06-22 2024-10-11 01:34:11.000 1985-06-22 2024-10-11 01:34:11 +5652 5652 5653 565.2 1130.4 5652 1985-06-23 2024-10-11 01:34:12.000 1985-06-23 2024-10-11 01:34:12 +5653 5653 5654 565.3 1130.6000000000001 5653 1985-06-24 2024-10-11 01:34:13.000 1985-06-24 2024-10-11 01:34:13 +5654 5654 5655 565.4 1130.8 5654 1985-06-25 2024-10-11 01:34:14.000 1985-06-25 2024-10-11 01:34:14 +5656 5656 5657 565.6 1131.2 5656 1985-06-27 2024-10-11 01:34:16.000 1985-06-27 2024-10-11 01:34:16 +5657 5657 5658 565.7 1131.4 5657 1985-06-28 2024-10-11 01:34:17.000 1985-06-28 2024-10-11 01:34:17 +5658 5658 5659 565.8 1131.6000000000001 5658 1985-06-29 2024-10-11 01:34:18.000 1985-06-29 2024-10-11 01:34:18 +5659 5659 5660 565.9 1131.8 5659 1985-06-30 2024-10-11 01:34:19.000 1985-06-30 2024-10-11 01:34:19 +5661 5661 5662 566.1 1132.2 5661 1985-07-02 2024-10-11 01:34:21.000 1985-07-02 2024-10-11 01:34:21 +5662 5662 5663 566.2 1132.4 5662 1985-07-03 2024-10-11 01:34:22.000 1985-07-03 2024-10-11 01:34:22 +5663 5663 5664 566.3 1132.6000000000001 5663 1985-07-04 2024-10-11 01:34:23.000 1985-07-04 2024-10-11 01:34:23 +5664 5664 5665 566.4 1132.8 5664 1985-07-05 2024-10-11 01:34:24.000 1985-07-05 2024-10-11 01:34:24 +5666 5666 5667 566.6 1133.2 5666 1985-07-07 2024-10-11 01:34:26.000 1985-07-07 2024-10-11 01:34:26 +5667 5667 5668 566.7 1133.4 5667 1985-07-08 2024-10-11 01:34:27.000 1985-07-08 2024-10-11 01:34:27 +5668 5668 5669 566.8 1133.6000000000001 5668 1985-07-09 2024-10-11 01:34:28.000 1985-07-09 2024-10-11 01:34:28 +5669 5669 5670 566.9 1133.8 5669 1985-07-10 2024-10-11 01:34:29.000 1985-07-10 2024-10-11 01:34:29 +5671 5671 5672 567.1 1134.2 5671 1985-07-12 2024-10-11 01:34:31.000 1985-07-12 2024-10-11 01:34:31 +5672 5672 5673 567.2 1134.4 5672 1985-07-13 2024-10-11 01:34:32.000 1985-07-13 2024-10-11 01:34:32 +5673 5673 5674 567.3 1134.6000000000001 5673 1985-07-14 2024-10-11 01:34:33.000 1985-07-14 2024-10-11 01:34:33 +5674 5674 5675 567.4 1134.8 5674 1985-07-15 2024-10-11 01:34:34.000 1985-07-15 2024-10-11 01:34:34 +5676 5676 5677 567.6 1135.2 5676 1985-07-17 2024-10-11 01:34:36.000 1985-07-17 2024-10-11 01:34:36 +5677 5677 5678 567.7 1135.4 5677 1985-07-18 2024-10-11 01:34:37.000 1985-07-18 2024-10-11 01:34:37 +5678 5678 5679 567.8 1135.6000000000001 5678 1985-07-19 2024-10-11 01:34:38.000 1985-07-19 2024-10-11 01:34:38 +5679 5679 5680 567.9 1135.8 5679 1985-07-20 2024-10-11 01:34:39.000 1985-07-20 2024-10-11 01:34:39 +5681 5681 5682 568.1 1136.2 5681 1985-07-22 2024-10-11 01:34:41.000 1985-07-22 2024-10-11 01:34:41 +5682 5682 5683 568.2 1136.4 5682 1985-07-23 2024-10-11 01:34:42.000 1985-07-23 2024-10-11 01:34:42 +5683 5683 5684 568.3 1136.6000000000001 5683 1985-07-24 2024-10-11 01:34:43.000 1985-07-24 2024-10-11 01:34:43 +5684 5684 5685 568.4 1136.8 5684 1985-07-25 2024-10-11 01:34:44.000 1985-07-25 2024-10-11 01:34:44 +5686 5686 5687 568.6 1137.2 5686 1985-07-27 2024-10-11 01:34:46.000 1985-07-27 2024-10-11 01:34:46 +5687 5687 5688 568.7 1137.4 5687 1985-07-28 2024-10-11 01:34:47.000 1985-07-28 2024-10-11 01:34:47 +5688 5688 5689 568.8 1137.6000000000001 5688 1985-07-29 2024-10-11 01:34:48.000 1985-07-29 2024-10-11 01:34:48 +5689 5689 5690 568.9 1137.8 5689 1985-07-30 2024-10-11 01:34:49.000 1985-07-30 2024-10-11 01:34:49 +5691 5691 5692 569.1 1138.2 5691 1985-08-01 2024-10-11 01:34:51.000 1985-08-01 2024-10-11 01:34:51 +5692 5692 5693 569.2 1138.4 5692 1985-08-02 2024-10-11 01:34:52.000 1985-08-02 2024-10-11 01:34:52 +5693 5693 5694 569.3 1138.6000000000001 5693 1985-08-03 2024-10-11 01:34:53.000 1985-08-03 2024-10-11 01:34:53 +5694 5694 5695 569.4 1138.8 5694 1985-08-04 2024-10-11 01:34:54.000 1985-08-04 2024-10-11 01:34:54 +5696 5696 5697 569.6 1139.2 5696 1985-08-06 2024-10-11 01:34:56.000 1985-08-06 2024-10-11 01:34:56 +5697 5697 5698 569.7 1139.4 5697 1985-08-07 2024-10-11 01:34:57.000 1985-08-07 2024-10-11 01:34:57 +5698 5698 5699 569.8 1139.6000000000001 5698 1985-08-08 2024-10-11 01:34:58.000 1985-08-08 2024-10-11 01:34:58 +5699 5699 5700 569.9 1139.8 5699 1985-08-09 2024-10-11 01:34:59.000 1985-08-09 2024-10-11 01:34:59 +5701 5701 5702 570.1 1140.2 5701 1985-08-11 2024-10-11 01:35:01.000 1985-08-11 2024-10-11 01:35:01 +5702 5702 5703 570.2 1140.4 5702 1985-08-12 2024-10-11 01:35:02.000 1985-08-12 2024-10-11 01:35:02 +5703 5703 5704 570.3 1140.6000000000001 5703 1985-08-13 2024-10-11 01:35:03.000 1985-08-13 2024-10-11 01:35:03 +5704 5704 5705 570.4 1140.8 5704 1985-08-14 2024-10-11 01:35:04.000 1985-08-14 2024-10-11 01:35:04 +5706 5706 5707 570.6 1141.2 5706 1985-08-16 2024-10-11 01:35:06.000 1985-08-16 2024-10-11 01:35:06 +5707 5707 5708 570.7 1141.4 5707 1985-08-17 2024-10-11 01:35:07.000 1985-08-17 2024-10-11 01:35:07 +5708 5708 5709 570.8 1141.6000000000001 5708 1985-08-18 2024-10-11 01:35:08.000 1985-08-18 2024-10-11 01:35:08 +5709 5709 5710 570.9 1141.8 5709 1985-08-19 2024-10-11 01:35:09.000 1985-08-19 2024-10-11 01:35:09 +5711 5711 5712 571.1 1142.2 5711 1985-08-21 2024-10-11 01:35:11.000 1985-08-21 2024-10-11 01:35:11 +5712 5712 5713 571.2 1142.4 5712 1985-08-22 2024-10-11 01:35:12.000 1985-08-22 2024-10-11 01:35:12 +5713 5713 5714 571.3 1142.6000000000001 5713 1985-08-23 2024-10-11 01:35:13.000 1985-08-23 2024-10-11 01:35:13 +5714 5714 5715 571.4 1142.8 5714 1985-08-24 2024-10-11 01:35:14.000 1985-08-24 2024-10-11 01:35:14 +5716 5716 5717 571.6 1143.2 5716 1985-08-26 2024-10-11 01:35:16.000 1985-08-26 2024-10-11 01:35:16 +5717 5717 5718 571.7 1143.4 5717 1985-08-27 2024-10-11 01:35:17.000 1985-08-27 2024-10-11 01:35:17 +5718 5718 5719 571.8 1143.6000000000001 5718 1985-08-28 2024-10-11 01:35:18.000 1985-08-28 2024-10-11 01:35:18 +5719 5719 5720 571.9 1143.8 5719 1985-08-29 2024-10-11 01:35:19.000 1985-08-29 2024-10-11 01:35:19 +5721 5721 5722 572.1 1144.2 5721 1985-08-31 2024-10-11 01:35:21.000 1985-08-31 2024-10-11 01:35:21 +5722 5722 5723 572.2 1144.4 5722 1985-09-01 2024-10-11 01:35:22.000 1985-09-01 2024-10-11 01:35:22 +5723 5723 5724 572.3 1144.6000000000001 5723 1985-09-02 2024-10-11 01:35:23.000 1985-09-02 2024-10-11 01:35:23 +5724 5724 5725 572.4 1144.8 5724 1985-09-03 2024-10-11 01:35:24.000 1985-09-03 2024-10-11 01:35:24 +5726 5726 5727 572.6 1145.2 5726 1985-09-05 2024-10-11 01:35:26.000 1985-09-05 2024-10-11 01:35:26 +5727 5727 5728 572.7 1145.4 5727 1985-09-06 2024-10-11 01:35:27.000 1985-09-06 2024-10-11 01:35:27 +5728 5728 5729 572.8 1145.6000000000001 5728 1985-09-07 2024-10-11 01:35:28.000 1985-09-07 2024-10-11 01:35:28 +5729 5729 5730 572.9 1145.8 5729 1985-09-08 2024-10-11 01:35:29.000 1985-09-08 2024-10-11 01:35:29 +5731 5731 5732 573.1 1146.2 5731 1985-09-10 2024-10-11 01:35:31.000 1985-09-10 2024-10-11 01:35:31 +5732 5732 5733 573.2 1146.4 5732 1985-09-11 2024-10-11 01:35:32.000 1985-09-11 2024-10-11 01:35:32 +5733 5733 5734 573.3 1146.6000000000001 5733 1985-09-12 2024-10-11 01:35:33.000 1985-09-12 2024-10-11 01:35:33 +5734 5734 5735 573.4 1146.8 5734 1985-09-13 2024-10-11 01:35:34.000 1985-09-13 2024-10-11 01:35:34 +5736 5736 5737 573.6 1147.2 5736 1985-09-15 2024-10-11 01:35:36.000 1985-09-15 2024-10-11 01:35:36 +5737 5737 5738 573.7 1147.4 5737 1985-09-16 2024-10-11 01:35:37.000 1985-09-16 2024-10-11 01:35:37 +5738 5738 5739 573.8 1147.6000000000001 5738 1985-09-17 2024-10-11 01:35:38.000 1985-09-17 2024-10-11 01:35:38 +5739 5739 5740 573.9 1147.8 5739 1985-09-18 2024-10-11 01:35:39.000 1985-09-18 2024-10-11 01:35:39 +5741 5741 5742 574.1 1148.2 5741 1985-09-20 2024-10-11 01:35:41.000 1985-09-20 2024-10-11 01:35:41 +5742 5742 5743 574.2 1148.4 5742 1985-09-21 2024-10-11 01:35:42.000 1985-09-21 2024-10-11 01:35:42 +5743 5743 5744 574.3 1148.6000000000001 5743 1985-09-22 2024-10-11 01:35:43.000 1985-09-22 2024-10-11 01:35:43 +5744 5744 5745 574.4 1148.8 5744 1985-09-23 2024-10-11 01:35:44.000 1985-09-23 2024-10-11 01:35:44 +5746 5746 5747 574.6 1149.2 5746 1985-09-25 2024-10-11 01:35:46.000 1985-09-25 2024-10-11 01:35:46 +5747 5747 5748 574.7 1149.4 5747 1985-09-26 2024-10-11 01:35:47.000 1985-09-26 2024-10-11 01:35:47 +5748 5748 5749 574.8 1149.6000000000001 5748 1985-09-27 2024-10-11 01:35:48.000 1985-09-27 2024-10-11 01:35:48 +5749 5749 5750 574.9 1149.8 5749 1985-09-28 2024-10-11 01:35:49.000 1985-09-28 2024-10-11 01:35:49 +5751 5751 5752 575.1 1150.2 5751 1985-09-30 2024-10-11 01:35:51.000 1985-09-30 2024-10-11 01:35:51 +5752 5752 5753 575.2 1150.4 5752 1985-10-01 2024-10-11 01:35:52.000 1985-10-01 2024-10-11 01:35:52 +5753 5753 5754 575.3 1150.6000000000001 5753 1985-10-02 2024-10-11 01:35:53.000 1985-10-02 2024-10-11 01:35:53 +5754 5754 5755 575.4 1150.8 5754 1985-10-03 2024-10-11 01:35:54.000 1985-10-03 2024-10-11 01:35:54 +5756 5756 5757 575.6 1151.2 5756 1985-10-05 2024-10-11 01:35:56.000 1985-10-05 2024-10-11 01:35:56 +5757 5757 5758 575.7 1151.4 5757 1985-10-06 2024-10-11 01:35:57.000 1985-10-06 2024-10-11 01:35:57 +5758 5758 5759 575.8 1151.6000000000001 5758 1985-10-07 2024-10-11 01:35:58.000 1985-10-07 2024-10-11 01:35:58 +5759 5759 5760 575.9 1151.8 5759 1985-10-08 2024-10-11 01:35:59.000 1985-10-08 2024-10-11 01:35:59 +5761 5761 5762 576.1 1152.2 5761 1985-10-10 2024-10-11 01:36:01.000 1985-10-10 2024-10-11 01:36:01 +5762 5762 5763 576.2 1152.4 5762 1985-10-11 2024-10-11 01:36:02.000 1985-10-11 2024-10-11 01:36:02 +5763 5763 5764 576.3 1152.6000000000001 5763 1985-10-12 2024-10-11 01:36:03.000 1985-10-12 2024-10-11 01:36:03 +5764 5764 5765 576.4 1152.8 5764 1985-10-13 2024-10-11 01:36:04.000 1985-10-13 2024-10-11 01:36:04 +5766 5766 5767 576.6 1153.2 5766 1985-10-15 2024-10-11 01:36:06.000 1985-10-15 2024-10-11 01:36:06 +5767 5767 5768 576.7 1153.4 5767 1985-10-16 2024-10-11 01:36:07.000 1985-10-16 2024-10-11 01:36:07 +5768 5768 5769 576.8 1153.6000000000001 5768 1985-10-17 2024-10-11 01:36:08.000 1985-10-17 2024-10-11 01:36:08 +5769 5769 5770 576.9 1153.8 5769 1985-10-18 2024-10-11 01:36:09.000 1985-10-18 2024-10-11 01:36:09 +5771 5771 5772 577.1 1154.2 5771 1985-10-20 2024-10-11 01:36:11.000 1985-10-20 2024-10-11 01:36:11 +5772 5772 5773 577.2 1154.4 5772 1985-10-21 2024-10-11 01:36:12.000 1985-10-21 2024-10-11 01:36:12 +5773 5773 5774 577.3 1154.6000000000001 5773 1985-10-22 2024-10-11 01:36:13.000 1985-10-22 2024-10-11 01:36:13 +5774 5774 5775 577.4 1154.8 5774 1985-10-23 2024-10-11 01:36:14.000 1985-10-23 2024-10-11 01:36:14 +5776 5776 5777 577.6 1155.2 5776 1985-10-25 2024-10-11 01:36:16.000 1985-10-25 2024-10-11 01:36:16 +5777 5777 5778 577.7 1155.4 5777 1985-10-26 2024-10-11 01:36:17.000 1985-10-26 2024-10-11 01:36:17 +5778 5778 5779 577.8 1155.6000000000001 5778 1985-10-27 2024-10-11 01:36:18.000 1985-10-27 2024-10-11 01:36:18 +5779 5779 5780 577.9 1155.8 5779 1985-10-28 2024-10-11 01:36:19.000 1985-10-28 2024-10-11 01:36:19 +5781 5781 5782 578.1 1156.2 5781 1985-10-30 2024-10-11 01:36:21.000 1985-10-30 2024-10-11 01:36:21 +5782 5782 5783 578.2 1156.4 5782 1985-10-31 2024-10-11 01:36:22.000 1985-10-31 2024-10-11 01:36:22 +5783 5783 5784 578.3 1156.6000000000001 5783 1985-11-01 2024-10-11 01:36:23.000 1985-11-01 2024-10-11 01:36:23 +5784 5784 5785 578.4 1156.8 5784 1985-11-02 2024-10-11 01:36:24.000 1985-11-02 2024-10-11 01:36:24 +5786 5786 5787 578.6 1157.2 5786 1985-11-04 2024-10-11 01:36:26.000 1985-11-04 2024-10-11 01:36:26 +5787 5787 5788 578.7 1157.4 5787 1985-11-05 2024-10-11 01:36:27.000 1985-11-05 2024-10-11 01:36:27 +5788 5788 5789 578.8 1157.6000000000001 5788 1985-11-06 2024-10-11 01:36:28.000 1985-11-06 2024-10-11 01:36:28 +5789 5789 5790 578.9 1157.8 5789 1985-11-07 2024-10-11 01:36:29.000 1985-11-07 2024-10-11 01:36:29 +5791 5791 5792 579.1 1158.2 5791 1985-11-09 2024-10-11 01:36:31.000 1985-11-09 2024-10-11 01:36:31 +5792 5792 5793 579.2 1158.4 5792 1985-11-10 2024-10-11 01:36:32.000 1985-11-10 2024-10-11 01:36:32 +5793 5793 5794 579.3 1158.6000000000001 5793 1985-11-11 2024-10-11 01:36:33.000 1985-11-11 2024-10-11 01:36:33 +5794 5794 5795 579.4 1158.8 5794 1985-11-12 2024-10-11 01:36:34.000 1985-11-12 2024-10-11 01:36:34 +5796 5796 5797 579.6 1159.2 5796 1985-11-14 2024-10-11 01:36:36.000 1985-11-14 2024-10-11 01:36:36 +5797 5797 5798 579.7 1159.4 5797 1985-11-15 2024-10-11 01:36:37.000 1985-11-15 2024-10-11 01:36:37 +5798 5798 5799 579.8 1159.6000000000001 5798 1985-11-16 2024-10-11 01:36:38.000 1985-11-16 2024-10-11 01:36:38 +5799 5799 5800 579.9 1159.8 5799 1985-11-17 2024-10-11 01:36:39.000 1985-11-17 2024-10-11 01:36:39 +5801 5801 5802 580.1 1160.2 5801 1985-11-19 2024-10-11 01:36:41.000 1985-11-19 2024-10-11 01:36:41 +5802 5802 5803 580.2 1160.4 5802 1985-11-20 2024-10-11 01:36:42.000 1985-11-20 2024-10-11 01:36:42 +5803 5803 5804 580.3 1160.6000000000001 5803 1985-11-21 2024-10-11 01:36:43.000 1985-11-21 2024-10-11 01:36:43 +5804 5804 5805 580.4 1160.8 5804 1985-11-22 2024-10-11 01:36:44.000 1985-11-22 2024-10-11 01:36:44 +5806 5806 5807 580.6 1161.2 5806 1985-11-24 2024-10-11 01:36:46.000 1985-11-24 2024-10-11 01:36:46 +5807 5807 5808 580.7 1161.4 5807 1985-11-25 2024-10-11 01:36:47.000 1985-11-25 2024-10-11 01:36:47 +5808 5808 5809 580.8 1161.6000000000001 5808 1985-11-26 2024-10-11 01:36:48.000 1985-11-26 2024-10-11 01:36:48 +5809 5809 5810 580.9 1161.8 5809 1985-11-27 2024-10-11 01:36:49.000 1985-11-27 2024-10-11 01:36:49 +5811 5811 5812 581.1 1162.2 5811 1985-11-29 2024-10-11 01:36:51.000 1985-11-29 2024-10-11 01:36:51 +5812 5812 5813 581.2 1162.4 5812 1985-11-30 2024-10-11 01:36:52.000 1985-11-30 2024-10-11 01:36:52 +5813 5813 5814 581.3 1162.6000000000001 5813 1985-12-01 2024-10-11 01:36:53.000 1985-12-01 2024-10-11 01:36:53 +5814 5814 5815 581.4 1162.8 5814 1985-12-02 2024-10-11 01:36:54.000 1985-12-02 2024-10-11 01:36:54 +5816 5816 5817 581.6 1163.2 5816 1985-12-04 2024-10-11 01:36:56.000 1985-12-04 2024-10-11 01:36:56 +5817 5817 5818 581.7 1163.4 5817 1985-12-05 2024-10-11 01:36:57.000 1985-12-05 2024-10-11 01:36:57 +5818 5818 5819 581.8 1163.6000000000001 5818 1985-12-06 2024-10-11 01:36:58.000 1985-12-06 2024-10-11 01:36:58 +5819 5819 5820 581.9 1163.8 5819 1985-12-07 2024-10-11 01:36:59.000 1985-12-07 2024-10-11 01:36:59 +5821 5821 5822 582.1 1164.2 5821 1985-12-09 2024-10-11 01:37:01.000 1985-12-09 2024-10-11 01:37:01 +5822 5822 5823 582.2 1164.4 5822 1985-12-10 2024-10-11 01:37:02.000 1985-12-10 2024-10-11 01:37:02 +5823 5823 5824 582.3 1164.6000000000001 5823 1985-12-11 2024-10-11 01:37:03.000 1985-12-11 2024-10-11 01:37:03 +5824 5824 5825 582.4 1164.8 5824 1985-12-12 2024-10-11 01:37:04.000 1985-12-12 2024-10-11 01:37:04 +5826 5826 5827 582.6 1165.2 5826 1985-12-14 2024-10-11 01:37:06.000 1985-12-14 2024-10-11 01:37:06 +5827 5827 5828 582.7 1165.4 5827 1985-12-15 2024-10-11 01:37:07.000 1985-12-15 2024-10-11 01:37:07 +5828 5828 5829 582.8 1165.6000000000001 5828 1985-12-16 2024-10-11 01:37:08.000 1985-12-16 2024-10-11 01:37:08 +5829 5829 5830 582.9 1165.8 5829 1985-12-17 2024-10-11 01:37:09.000 1985-12-17 2024-10-11 01:37:09 +5831 5831 5832 583.1 1166.2 5831 1985-12-19 2024-10-11 01:37:11.000 1985-12-19 2024-10-11 01:37:11 +5832 5832 5833 583.2 1166.4 5832 1985-12-20 2024-10-11 01:37:12.000 1985-12-20 2024-10-11 01:37:12 +5833 5833 5834 583.3 1166.6000000000001 5833 1985-12-21 2024-10-11 01:37:13.000 1985-12-21 2024-10-11 01:37:13 +5834 5834 5835 583.4 1166.8 5834 1985-12-22 2024-10-11 01:37:14.000 1985-12-22 2024-10-11 01:37:14 +5836 5836 5837 583.6 1167.2 5836 1985-12-24 2024-10-11 01:37:16.000 1985-12-24 2024-10-11 01:37:16 +5837 5837 5838 583.7 1167.4 5837 1985-12-25 2024-10-11 01:37:17.000 1985-12-25 2024-10-11 01:37:17 +5838 5838 5839 583.8 1167.6000000000001 5838 1985-12-26 2024-10-11 01:37:18.000 1985-12-26 2024-10-11 01:37:18 +5839 5839 5840 583.9 1167.8 5839 1985-12-27 2024-10-11 01:37:19.000 1985-12-27 2024-10-11 01:37:19 +5841 5841 5842 584.1 1168.2 5841 1985-12-29 2024-10-11 01:37:21.000 1985-12-29 2024-10-11 01:37:21 +5842 5842 5843 584.2 1168.4 5842 1985-12-30 2024-10-11 01:37:22.000 1985-12-30 2024-10-11 01:37:22 +5843 5843 5844 584.3 1168.6000000000001 5843 1985-12-31 2024-10-11 01:37:23.000 1985-12-31 2024-10-11 01:37:23 +5844 5844 5845 584.4 1168.8 5844 1986-01-01 2024-10-11 01:37:24.000 1986-01-01 2024-10-11 01:37:24 +5846 5846 5847 584.6 1169.2 5846 1986-01-03 2024-10-11 01:37:26.000 1986-01-03 2024-10-11 01:37:26 +5847 5847 5848 584.7 1169.4 5847 1986-01-04 2024-10-11 01:37:27.000 1986-01-04 2024-10-11 01:37:27 +5848 5848 5849 584.8 1169.6000000000001 5848 1986-01-05 2024-10-11 01:37:28.000 1986-01-05 2024-10-11 01:37:28 +5849 5849 5850 584.9 1169.8 5849 1986-01-06 2024-10-11 01:37:29.000 1986-01-06 2024-10-11 01:37:29 +5851 5851 5852 585.1 1170.2 5851 1986-01-08 2024-10-11 01:37:31.000 1986-01-08 2024-10-11 01:37:31 +5852 5852 5853 585.2 1170.4 5852 1986-01-09 2024-10-11 01:37:32.000 1986-01-09 2024-10-11 01:37:32 +5853 5853 5854 585.3 1170.6000000000001 5853 1986-01-10 2024-10-11 01:37:33.000 1986-01-10 2024-10-11 01:37:33 +5854 5854 5855 585.4 1170.8 5854 1986-01-11 2024-10-11 01:37:34.000 1986-01-11 2024-10-11 01:37:34 +5856 5856 5857 585.6 1171.2 5856 1986-01-13 2024-10-11 01:37:36.000 1986-01-13 2024-10-11 01:37:36 +5857 5857 5858 585.7 1171.4 5857 1986-01-14 2024-10-11 01:37:37.000 1986-01-14 2024-10-11 01:37:37 +5858 5858 5859 585.8 1171.6000000000001 5858 1986-01-15 2024-10-11 01:37:38.000 1986-01-15 2024-10-11 01:37:38 +5859 5859 5860 585.9 1171.8 5859 1986-01-16 2024-10-11 01:37:39.000 1986-01-16 2024-10-11 01:37:39 +5861 5861 5862 586.1 1172.2 5861 1986-01-18 2024-10-11 01:37:41.000 1986-01-18 2024-10-11 01:37:41 +5862 5862 5863 586.2 1172.4 5862 1986-01-19 2024-10-11 01:37:42.000 1986-01-19 2024-10-11 01:37:42 +5863 5863 5864 586.3 1172.6000000000001 5863 1986-01-20 2024-10-11 01:37:43.000 1986-01-20 2024-10-11 01:37:43 +5864 5864 5865 586.4 1172.8 5864 1986-01-21 2024-10-11 01:37:44.000 1986-01-21 2024-10-11 01:37:44 +5866 5866 5867 586.6 1173.2 5866 1986-01-23 2024-10-11 01:37:46.000 1986-01-23 2024-10-11 01:37:46 +5867 5867 5868 586.7 1173.4 5867 1986-01-24 2024-10-11 01:37:47.000 1986-01-24 2024-10-11 01:37:47 +5868 5868 5869 586.8 1173.6000000000001 5868 1986-01-25 2024-10-11 01:37:48.000 1986-01-25 2024-10-11 01:37:48 +5869 5869 5870 586.9 1173.8 5869 1986-01-26 2024-10-11 01:37:49.000 1986-01-26 2024-10-11 01:37:49 +5871 5871 5872 587.1 1174.2 5871 1986-01-28 2024-10-11 01:37:51.000 1986-01-28 2024-10-11 01:37:51 +5872 5872 5873 587.2 1174.4 5872 1986-01-29 2024-10-11 01:37:52.000 1986-01-29 2024-10-11 01:37:52 +5873 5873 5874 587.3 1174.6000000000001 5873 1986-01-30 2024-10-11 01:37:53.000 1986-01-30 2024-10-11 01:37:53 +5874 5874 5875 587.4 1174.8 5874 1986-01-31 2024-10-11 01:37:54.000 1986-01-31 2024-10-11 01:37:54 +5876 5876 5877 587.6 1175.2 5876 1986-02-02 2024-10-11 01:37:56.000 1986-02-02 2024-10-11 01:37:56 +5877 5877 5878 587.7 1175.4 5877 1986-02-03 2024-10-11 01:37:57.000 1986-02-03 2024-10-11 01:37:57 +5878 5878 5879 587.8 1175.6000000000001 5878 1986-02-04 2024-10-11 01:37:58.000 1986-02-04 2024-10-11 01:37:58 +5879 5879 5880 587.9 1175.8 5879 1986-02-05 2024-10-11 01:37:59.000 1986-02-05 2024-10-11 01:37:59 +5881 5881 5882 588.1 1176.2 5881 1986-02-07 2024-10-11 01:38:01.000 1986-02-07 2024-10-11 01:38:01 +5882 5882 5883 588.2 1176.4 5882 1986-02-08 2024-10-11 01:38:02.000 1986-02-08 2024-10-11 01:38:02 +5883 5883 5884 588.3 1176.6000000000001 5883 1986-02-09 2024-10-11 01:38:03.000 1986-02-09 2024-10-11 01:38:03 +5884 5884 5885 588.4 1176.8 5884 1986-02-10 2024-10-11 01:38:04.000 1986-02-10 2024-10-11 01:38:04 +5886 5886 5887 588.6 1177.2 5886 1986-02-12 2024-10-11 01:38:06.000 1986-02-12 2024-10-11 01:38:06 +5887 5887 5888 588.7 1177.4 5887 1986-02-13 2024-10-11 01:38:07.000 1986-02-13 2024-10-11 01:38:07 +5888 5888 5889 588.8 1177.6000000000001 5888 1986-02-14 2024-10-11 01:38:08.000 1986-02-14 2024-10-11 01:38:08 +5889 5889 5890 588.9 1177.8 5889 1986-02-15 2024-10-11 01:38:09.000 1986-02-15 2024-10-11 01:38:09 +5891 5891 5892 589.1 1178.2 5891 1986-02-17 2024-10-11 01:38:11.000 1986-02-17 2024-10-11 01:38:11 +5892 5892 5893 589.2 1178.4 5892 1986-02-18 2024-10-11 01:38:12.000 1986-02-18 2024-10-11 01:38:12 +5893 5893 5894 589.3 1178.6000000000001 5893 1986-02-19 2024-10-11 01:38:13.000 1986-02-19 2024-10-11 01:38:13 +5894 5894 5895 589.4 1178.8 5894 1986-02-20 2024-10-11 01:38:14.000 1986-02-20 2024-10-11 01:38:14 +5896 5896 5897 589.6 1179.2 5896 1986-02-22 2024-10-11 01:38:16.000 1986-02-22 2024-10-11 01:38:16 +5897 5897 5898 589.7 1179.4 5897 1986-02-23 2024-10-11 01:38:17.000 1986-02-23 2024-10-11 01:38:17 +5898 5898 5899 589.8 1179.6000000000001 5898 1986-02-24 2024-10-11 01:38:18.000 1986-02-24 2024-10-11 01:38:18 +5899 5899 5900 589.9 1179.8 5899 1986-02-25 2024-10-11 01:38:19.000 1986-02-25 2024-10-11 01:38:19 +5901 5901 5902 590.1 1180.2 5901 1986-02-27 2024-10-11 01:38:21.000 1986-02-27 2024-10-11 01:38:21 +5902 5902 5903 590.2 1180.4 5902 1986-02-28 2024-10-11 01:38:22.000 1986-02-28 2024-10-11 01:38:22 +5903 5903 5904 590.3 1180.6000000000001 5903 1986-03-01 2024-10-11 01:38:23.000 1986-03-01 2024-10-11 01:38:23 +5904 5904 5905 590.4 1180.8 5904 1986-03-02 2024-10-11 01:38:24.000 1986-03-02 2024-10-11 01:38:24 +5906 5906 5907 590.6 1181.2 5906 1986-03-04 2024-10-11 01:38:26.000 1986-03-04 2024-10-11 01:38:26 +5907 5907 5908 590.7 1181.4 5907 1986-03-05 2024-10-11 01:38:27.000 1986-03-05 2024-10-11 01:38:27 +5908 5908 5909 590.8 1181.6000000000001 5908 1986-03-06 2024-10-11 01:38:28.000 1986-03-06 2024-10-11 01:38:28 +5909 5909 5910 590.9 1181.8 5909 1986-03-07 2024-10-11 01:38:29.000 1986-03-07 2024-10-11 01:38:29 +5911 5911 5912 591.1 1182.2 5911 1986-03-09 2024-10-11 01:38:31.000 1986-03-09 2024-10-11 01:38:31 +5912 5912 5913 591.2 1182.4 5912 1986-03-10 2024-10-11 01:38:32.000 1986-03-10 2024-10-11 01:38:32 +5913 5913 5914 591.3 1182.6000000000001 5913 1986-03-11 2024-10-11 01:38:33.000 1986-03-11 2024-10-11 01:38:33 +5914 5914 5915 591.4 1182.8 5914 1986-03-12 2024-10-11 01:38:34.000 1986-03-12 2024-10-11 01:38:34 +5916 5916 5917 591.6 1183.2 5916 1986-03-14 2024-10-11 01:38:36.000 1986-03-14 2024-10-11 01:38:36 +5917 5917 5918 591.7 1183.4 5917 1986-03-15 2024-10-11 01:38:37.000 1986-03-15 2024-10-11 01:38:37 +5918 5918 5919 591.8 1183.6000000000001 5918 1986-03-16 2024-10-11 01:38:38.000 1986-03-16 2024-10-11 01:38:38 +5919 5919 5920 591.9 1183.8 5919 1986-03-17 2024-10-11 01:38:39.000 1986-03-17 2024-10-11 01:38:39 +5921 5921 5922 592.1 1184.2 5921 1986-03-19 2024-10-11 01:38:41.000 1986-03-19 2024-10-11 01:38:41 +5922 5922 5923 592.2 1184.4 5922 1986-03-20 2024-10-11 01:38:42.000 1986-03-20 2024-10-11 01:38:42 +5923 5923 5924 592.3 1184.6000000000001 5923 1986-03-21 2024-10-11 01:38:43.000 1986-03-21 2024-10-11 01:38:43 +5924 5924 5925 592.4 1184.8 5924 1986-03-22 2024-10-11 01:38:44.000 1986-03-22 2024-10-11 01:38:44 +5926 5926 5927 592.6 1185.2 5926 1986-03-24 2024-10-11 01:38:46.000 1986-03-24 2024-10-11 01:38:46 +5927 5927 5928 592.7 1185.4 5927 1986-03-25 2024-10-11 01:38:47.000 1986-03-25 2024-10-11 01:38:47 +5928 5928 5929 592.8 1185.6000000000001 5928 1986-03-26 2024-10-11 01:38:48.000 1986-03-26 2024-10-11 01:38:48 +5929 5929 5930 592.9 1185.8 5929 1986-03-27 2024-10-11 01:38:49.000 1986-03-27 2024-10-11 01:38:49 +5931 5931 5932 593.1 1186.2 5931 1986-03-29 2024-10-11 01:38:51.000 1986-03-29 2024-10-11 01:38:51 +5932 5932 5933 593.2 1186.4 5932 1986-03-30 2024-10-11 01:38:52.000 1986-03-30 2024-10-11 01:38:52 +5933 5933 5934 593.3 1186.6000000000001 5933 1986-03-31 2024-10-11 01:38:53.000 1986-03-31 2024-10-11 01:38:53 +5934 5934 5935 593.4 1186.8 5934 1986-04-01 2024-10-11 01:38:54.000 1986-04-01 2024-10-11 01:38:54 +5936 5936 5937 593.6 1187.2 5936 1986-04-03 2024-10-11 01:38:56.000 1986-04-03 2024-10-11 01:38:56 +5937 5937 5938 593.7 1187.4 5937 1986-04-04 2024-10-11 01:38:57.000 1986-04-04 2024-10-11 01:38:57 +5938 5938 5939 593.8 1187.6000000000001 5938 1986-04-05 2024-10-11 01:38:58.000 1986-04-05 2024-10-11 01:38:58 +5939 5939 5940 593.9 1187.8 5939 1986-04-06 2024-10-11 01:38:59.000 1986-04-06 2024-10-11 01:38:59 +5941 5941 5942 594.1 1188.2 5941 1986-04-08 2024-10-11 01:39:01.000 1986-04-08 2024-10-11 01:39:01 +5942 5942 5943 594.2 1188.4 5942 1986-04-09 2024-10-11 01:39:02.000 1986-04-09 2024-10-11 01:39:02 +5943 5943 5944 594.3 1188.6000000000001 5943 1986-04-10 2024-10-11 01:39:03.000 1986-04-10 2024-10-11 01:39:03 +5944 5944 5945 594.4 1188.8 5944 1986-04-11 2024-10-11 01:39:04.000 1986-04-11 2024-10-11 01:39:04 +5946 5946 5947 594.6 1189.2 5946 1986-04-13 2024-10-11 01:39:06.000 1986-04-13 2024-10-11 01:39:06 +5947 5947 5948 594.7 1189.4 5947 1986-04-14 2024-10-11 01:39:07.000 1986-04-14 2024-10-11 01:39:07 +5948 5948 5949 594.8 1189.6000000000001 5948 1986-04-15 2024-10-11 01:39:08.000 1986-04-15 2024-10-11 01:39:08 +5949 5949 5950 594.9 1189.8 5949 1986-04-16 2024-10-11 01:39:09.000 1986-04-16 2024-10-11 01:39:09 +5951 5951 5952 595.1 1190.2 5951 1986-04-18 2024-10-11 01:39:11.000 1986-04-18 2024-10-11 01:39:11 +5952 5952 5953 595.2 1190.4 5952 1986-04-19 2024-10-11 01:39:12.000 1986-04-19 2024-10-11 01:39:12 +5953 5953 5954 595.3 1190.6000000000001 5953 1986-04-20 2024-10-11 01:39:13.000 1986-04-20 2024-10-11 01:39:13 +5954 5954 5955 595.4 1190.8 5954 1986-04-21 2024-10-11 01:39:14.000 1986-04-21 2024-10-11 01:39:14 +5956 5956 5957 595.6 1191.2 5956 1986-04-23 2024-10-11 01:39:16.000 1986-04-23 2024-10-11 01:39:16 +5957 5957 5958 595.7 1191.4 5957 1986-04-24 2024-10-11 01:39:17.000 1986-04-24 2024-10-11 01:39:17 +5958 5958 5959 595.8 1191.6000000000001 5958 1986-04-25 2024-10-11 01:39:18.000 1986-04-25 2024-10-11 01:39:18 +5959 5959 5960 595.9 1191.8 5959 1986-04-26 2024-10-11 01:39:19.000 1986-04-26 2024-10-11 01:39:19 +5961 5961 5962 596.1 1192.2 5961 1986-04-28 2024-10-11 01:39:21.000 1986-04-28 2024-10-11 01:39:21 +5962 5962 5963 596.2 1192.4 5962 1986-04-29 2024-10-11 01:39:22.000 1986-04-29 2024-10-11 01:39:22 +5963 5963 5964 596.3 1192.6000000000001 5963 1986-04-30 2024-10-11 01:39:23.000 1986-04-30 2024-10-11 01:39:23 +5964 5964 5965 596.4 1192.8 5964 1986-05-01 2024-10-11 01:39:24.000 1986-05-01 2024-10-11 01:39:24 +5966 5966 5967 596.6 1193.2 5966 1986-05-03 2024-10-11 01:39:26.000 1986-05-03 2024-10-11 01:39:26 +5967 5967 5968 596.7 1193.4 5967 1986-05-04 2024-10-11 01:39:27.000 1986-05-04 2024-10-11 01:39:27 +5968 5968 5969 596.8 1193.6000000000001 5968 1986-05-05 2024-10-11 01:39:28.000 1986-05-05 2024-10-11 01:39:28 +5969 5969 5970 596.9 1193.8 5969 1986-05-06 2024-10-11 01:39:29.000 1986-05-06 2024-10-11 01:39:29 +5971 5971 5972 597.1 1194.2 5971 1986-05-08 2024-10-11 01:39:31.000 1986-05-08 2024-10-11 01:39:31 +5972 5972 5973 597.2 1194.4 5972 1986-05-09 2024-10-11 01:39:32.000 1986-05-09 2024-10-11 01:39:32 +5973 5973 5974 597.3 1194.6000000000001 5973 1986-05-10 2024-10-11 01:39:33.000 1986-05-10 2024-10-11 01:39:33 +5974 5974 5975 597.4 1194.8 5974 1986-05-11 2024-10-11 01:39:34.000 1986-05-11 2024-10-11 01:39:34 +5976 5976 5977 597.6 1195.2 5976 1986-05-13 2024-10-11 01:39:36.000 1986-05-13 2024-10-11 01:39:36 +5977 5977 5978 597.7 1195.4 5977 1986-05-14 2024-10-11 01:39:37.000 1986-05-14 2024-10-11 01:39:37 +5978 5978 5979 597.8 1195.6000000000001 5978 1986-05-15 2024-10-11 01:39:38.000 1986-05-15 2024-10-11 01:39:38 +5979 5979 5980 597.9 1195.8 5979 1986-05-16 2024-10-11 01:39:39.000 1986-05-16 2024-10-11 01:39:39 +5981 5981 5982 598.1 1196.2 5981 1986-05-18 2024-10-11 01:39:41.000 1986-05-18 2024-10-11 01:39:41 +5982 5982 5983 598.2 1196.4 5982 1986-05-19 2024-10-11 01:39:42.000 1986-05-19 2024-10-11 01:39:42 +5983 5983 5984 598.3 1196.6000000000001 5983 1986-05-20 2024-10-11 01:39:43.000 1986-05-20 2024-10-11 01:39:43 +5984 5984 5985 598.4 1196.8 5984 1986-05-21 2024-10-11 01:39:44.000 1986-05-21 2024-10-11 01:39:44 +5986 5986 5987 598.6 1197.2 5986 1986-05-23 2024-10-11 01:39:46.000 1986-05-23 2024-10-11 01:39:46 +5987 5987 5988 598.7 1197.4 5987 1986-05-24 2024-10-11 01:39:47.000 1986-05-24 2024-10-11 01:39:47 +5988 5988 5989 598.8 1197.6000000000001 5988 1986-05-25 2024-10-11 01:39:48.000 1986-05-25 2024-10-11 01:39:48 +5989 5989 5990 598.9 1197.8 5989 1986-05-26 2024-10-11 01:39:49.000 1986-05-26 2024-10-11 01:39:49 +5991 5991 5992 599.1 1198.2 5991 1986-05-28 2024-10-11 01:39:51.000 1986-05-28 2024-10-11 01:39:51 +5992 5992 5993 599.2 1198.4 5992 1986-05-29 2024-10-11 01:39:52.000 1986-05-29 2024-10-11 01:39:52 +5993 5993 5994 599.3 1198.6000000000001 5993 1986-05-30 2024-10-11 01:39:53.000 1986-05-30 2024-10-11 01:39:53 +5994 5994 5995 599.4 1198.8 5994 1986-05-31 2024-10-11 01:39:54.000 1986-05-31 2024-10-11 01:39:54 +5996 5996 5997 599.6 1199.2 5996 1986-06-02 2024-10-11 01:39:56.000 1986-06-02 2024-10-11 01:39:56 +5997 5997 5998 599.7 1199.4 5997 1986-06-03 2024-10-11 01:39:57.000 1986-06-03 2024-10-11 01:39:57 +5998 5998 5999 599.8 1199.6000000000001 5998 1986-06-04 2024-10-11 01:39:58.000 1986-06-04 2024-10-11 01:39:58 +5999 5999 6000 599.9 1199.8 5999 1986-06-05 2024-10-11 01:39:59.000 1986-06-05 2024-10-11 01:39:59 +6001 6001 6002 600.1 1200.2 6001 1986-06-07 2024-10-11 01:40:01.000 1986-06-07 2024-10-11 01:40:01 +6002 6002 6003 600.2 1200.4 6002 1986-06-08 2024-10-11 01:40:02.000 1986-06-08 2024-10-11 01:40:02 +6003 6003 6004 600.3 1200.6000000000001 6003 1986-06-09 2024-10-11 01:40:03.000 1986-06-09 2024-10-11 01:40:03 +6004 6004 6005 600.4 1200.8 6004 1986-06-10 2024-10-11 01:40:04.000 1986-06-10 2024-10-11 01:40:04 +6006 6006 6007 600.6 1201.2 6006 1986-06-12 2024-10-11 01:40:06.000 1986-06-12 2024-10-11 01:40:06 +6007 6007 6008 600.7 1201.4 6007 1986-06-13 2024-10-11 01:40:07.000 1986-06-13 2024-10-11 01:40:07 +6008 6008 6009 600.8 1201.6000000000001 6008 1986-06-14 2024-10-11 01:40:08.000 1986-06-14 2024-10-11 01:40:08 +6009 6009 6010 600.9 1201.8 6009 1986-06-15 2024-10-11 01:40:09.000 1986-06-15 2024-10-11 01:40:09 +6011 6011 6012 601.1 1202.2 6011 1986-06-17 2024-10-11 01:40:11.000 1986-06-17 2024-10-11 01:40:11 +6012 6012 6013 601.2 1202.4 6012 1986-06-18 2024-10-11 01:40:12.000 1986-06-18 2024-10-11 01:40:12 +6013 6013 6014 601.3 1202.6000000000001 6013 1986-06-19 2024-10-11 01:40:13.000 1986-06-19 2024-10-11 01:40:13 +6014 6014 6015 601.4 1202.8 6014 1986-06-20 2024-10-11 01:40:14.000 1986-06-20 2024-10-11 01:40:14 +6016 6016 6017 601.6 1203.2 6016 1986-06-22 2024-10-11 01:40:16.000 1986-06-22 2024-10-11 01:40:16 +6017 6017 6018 601.7 1203.4 6017 1986-06-23 2024-10-11 01:40:17.000 1986-06-23 2024-10-11 01:40:17 +6018 6018 6019 601.8 1203.6000000000001 6018 1986-06-24 2024-10-11 01:40:18.000 1986-06-24 2024-10-11 01:40:18 +6019 6019 6020 601.9 1203.8 6019 1986-06-25 2024-10-11 01:40:19.000 1986-06-25 2024-10-11 01:40:19 +6021 6021 6022 602.1 1204.2 6021 1986-06-27 2024-10-11 01:40:21.000 1986-06-27 2024-10-11 01:40:21 +6022 6022 6023 602.2 1204.4 6022 1986-06-28 2024-10-11 01:40:22.000 1986-06-28 2024-10-11 01:40:22 +6023 6023 6024 602.3 1204.6000000000001 6023 1986-06-29 2024-10-11 01:40:23.000 1986-06-29 2024-10-11 01:40:23 +6024 6024 6025 602.4 1204.8 6024 1986-06-30 2024-10-11 01:40:24.000 1986-06-30 2024-10-11 01:40:24 +6026 6026 6027 602.6 1205.2 6026 1986-07-02 2024-10-11 01:40:26.000 1986-07-02 2024-10-11 01:40:26 +6027 6027 6028 602.7 1205.4 6027 1986-07-03 2024-10-11 01:40:27.000 1986-07-03 2024-10-11 01:40:27 +6028 6028 6029 602.8 1205.6000000000001 6028 1986-07-04 2024-10-11 01:40:28.000 1986-07-04 2024-10-11 01:40:28 +6029 6029 6030 602.9 1205.8 6029 1986-07-05 2024-10-11 01:40:29.000 1986-07-05 2024-10-11 01:40:29 +6031 6031 6032 603.1 1206.2 6031 1986-07-07 2024-10-11 01:40:31.000 1986-07-07 2024-10-11 01:40:31 +6032 6032 6033 603.2 1206.4 6032 1986-07-08 2024-10-11 01:40:32.000 1986-07-08 2024-10-11 01:40:32 +6033 6033 6034 603.3 1206.6000000000001 6033 1986-07-09 2024-10-11 01:40:33.000 1986-07-09 2024-10-11 01:40:33 +6034 6034 6035 603.4 1206.8 6034 1986-07-10 2024-10-11 01:40:34.000 1986-07-10 2024-10-11 01:40:34 +6036 6036 6037 603.6 1207.2 6036 1986-07-12 2024-10-11 01:40:36.000 1986-07-12 2024-10-11 01:40:36 +6037 6037 6038 603.7 1207.4 6037 1986-07-13 2024-10-11 01:40:37.000 1986-07-13 2024-10-11 01:40:37 +6038 6038 6039 603.8 1207.6000000000001 6038 1986-07-14 2024-10-11 01:40:38.000 1986-07-14 2024-10-11 01:40:38 +6039 6039 6040 603.9 1207.8 6039 1986-07-15 2024-10-11 01:40:39.000 1986-07-15 2024-10-11 01:40:39 +6041 6041 6042 604.1 1208.2 6041 1986-07-17 2024-10-11 01:40:41.000 1986-07-17 2024-10-11 01:40:41 +6042 6042 6043 604.2 1208.4 6042 1986-07-18 2024-10-11 01:40:42.000 1986-07-18 2024-10-11 01:40:42 +6043 6043 6044 604.3 1208.6000000000001 6043 1986-07-19 2024-10-11 01:40:43.000 1986-07-19 2024-10-11 01:40:43 +6044 6044 6045 604.4 1208.8 6044 1986-07-20 2024-10-11 01:40:44.000 1986-07-20 2024-10-11 01:40:44 +6046 6046 6047 604.6 1209.2 6046 1986-07-22 2024-10-11 01:40:46.000 1986-07-22 2024-10-11 01:40:46 +6047 6047 6048 604.7 1209.4 6047 1986-07-23 2024-10-11 01:40:47.000 1986-07-23 2024-10-11 01:40:47 +6048 6048 6049 604.8 1209.6000000000001 6048 1986-07-24 2024-10-11 01:40:48.000 1986-07-24 2024-10-11 01:40:48 +6049 6049 6050 604.9 1209.8 6049 1986-07-25 2024-10-11 01:40:49.000 1986-07-25 2024-10-11 01:40:49 +6051 6051 6052 605.1 1210.2 6051 1986-07-27 2024-10-11 01:40:51.000 1986-07-27 2024-10-11 01:40:51 +6052 6052 6053 605.2 1210.4 6052 1986-07-28 2024-10-11 01:40:52.000 1986-07-28 2024-10-11 01:40:52 +6053 6053 6054 605.3 1210.6000000000001 6053 1986-07-29 2024-10-11 01:40:53.000 1986-07-29 2024-10-11 01:40:53 +6054 6054 6055 605.4 1210.8 6054 1986-07-30 2024-10-11 01:40:54.000 1986-07-30 2024-10-11 01:40:54 +6056 6056 6057 605.6 1211.2 6056 1986-08-01 2024-10-11 01:40:56.000 1986-08-01 2024-10-11 01:40:56 +6057 6057 6058 605.7 1211.4 6057 1986-08-02 2024-10-11 01:40:57.000 1986-08-02 2024-10-11 01:40:57 +6058 6058 6059 605.8 1211.6000000000001 6058 1986-08-03 2024-10-11 01:40:58.000 1986-08-03 2024-10-11 01:40:58 +6059 6059 6060 605.9 1211.8 6059 1986-08-04 2024-10-11 01:40:59.000 1986-08-04 2024-10-11 01:40:59 +6061 6061 6062 606.1 1212.2 6061 1986-08-06 2024-10-11 01:41:01.000 1986-08-06 2024-10-11 01:41:01 +6062 6062 6063 606.2 1212.4 6062 1986-08-07 2024-10-11 01:41:02.000 1986-08-07 2024-10-11 01:41:02 +6063 6063 6064 606.3 1212.6000000000001 6063 1986-08-08 2024-10-11 01:41:03.000 1986-08-08 2024-10-11 01:41:03 +6064 6064 6065 606.4 1212.8 6064 1986-08-09 2024-10-11 01:41:04.000 1986-08-09 2024-10-11 01:41:04 +6066 6066 6067 606.6 1213.2 6066 1986-08-11 2024-10-11 01:41:06.000 1986-08-11 2024-10-11 01:41:06 +6067 6067 6068 606.7 1213.4 6067 1986-08-12 2024-10-11 01:41:07.000 1986-08-12 2024-10-11 01:41:07 +6068 6068 6069 606.8 1213.6000000000001 6068 1986-08-13 2024-10-11 01:41:08.000 1986-08-13 2024-10-11 01:41:08 +6069 6069 6070 606.9 1213.8 6069 1986-08-14 2024-10-11 01:41:09.000 1986-08-14 2024-10-11 01:41:09 +6071 6071 6072 607.1 1214.2 6071 1986-08-16 2024-10-11 01:41:11.000 1986-08-16 2024-10-11 01:41:11 +6072 6072 6073 607.2 1214.4 6072 1986-08-17 2024-10-11 01:41:12.000 1986-08-17 2024-10-11 01:41:12 +6073 6073 6074 607.3 1214.6000000000001 6073 1986-08-18 2024-10-11 01:41:13.000 1986-08-18 2024-10-11 01:41:13 +6074 6074 6075 607.4 1214.8 6074 1986-08-19 2024-10-11 01:41:14.000 1986-08-19 2024-10-11 01:41:14 +6076 6076 6077 607.6 1215.2 6076 1986-08-21 2024-10-11 01:41:16.000 1986-08-21 2024-10-11 01:41:16 +6077 6077 6078 607.7 1215.4 6077 1986-08-22 2024-10-11 01:41:17.000 1986-08-22 2024-10-11 01:41:17 +6078 6078 6079 607.8 1215.6000000000001 6078 1986-08-23 2024-10-11 01:41:18.000 1986-08-23 2024-10-11 01:41:18 +6079 6079 6080 607.9 1215.8 6079 1986-08-24 2024-10-11 01:41:19.000 1986-08-24 2024-10-11 01:41:19 +6081 6081 6082 608.1 1216.2 6081 1986-08-26 2024-10-11 01:41:21.000 1986-08-26 2024-10-11 01:41:21 +6082 6082 6083 608.2 1216.4 6082 1986-08-27 2024-10-11 01:41:22.000 1986-08-27 2024-10-11 01:41:22 +6083 6083 6084 608.3 1216.6000000000001 6083 1986-08-28 2024-10-11 01:41:23.000 1986-08-28 2024-10-11 01:41:23 +6084 6084 6085 608.4 1216.8 6084 1986-08-29 2024-10-11 01:41:24.000 1986-08-29 2024-10-11 01:41:24 +6086 6086 6087 608.6 1217.2 6086 1986-08-31 2024-10-11 01:41:26.000 1986-08-31 2024-10-11 01:41:26 +6087 6087 6088 608.7 1217.4 6087 1986-09-01 2024-10-11 01:41:27.000 1986-09-01 2024-10-11 01:41:27 +6088 6088 6089 608.8 1217.6000000000001 6088 1986-09-02 2024-10-11 01:41:28.000 1986-09-02 2024-10-11 01:41:28 +6089 6089 6090 608.9 1217.8 6089 1986-09-03 2024-10-11 01:41:29.000 1986-09-03 2024-10-11 01:41:29 +6091 6091 6092 609.1 1218.2 6091 1986-09-05 2024-10-11 01:41:31.000 1986-09-05 2024-10-11 01:41:31 +6092 6092 6093 609.2 1218.4 6092 1986-09-06 2024-10-11 01:41:32.000 1986-09-06 2024-10-11 01:41:32 +6093 6093 6094 609.3 1218.6000000000001 6093 1986-09-07 2024-10-11 01:41:33.000 1986-09-07 2024-10-11 01:41:33 +6094 6094 6095 609.4 1218.8 6094 1986-09-08 2024-10-11 01:41:34.000 1986-09-08 2024-10-11 01:41:34 +6096 6096 6097 609.6 1219.2 6096 1986-09-10 2024-10-11 01:41:36.000 1986-09-10 2024-10-11 01:41:36 +6097 6097 6098 609.7 1219.4 6097 1986-09-11 2024-10-11 01:41:37.000 1986-09-11 2024-10-11 01:41:37 +6098 6098 6099 609.8 1219.6000000000001 6098 1986-09-12 2024-10-11 01:41:38.000 1986-09-12 2024-10-11 01:41:38 +6099 6099 6100 609.9 1219.8 6099 1986-09-13 2024-10-11 01:41:39.000 1986-09-13 2024-10-11 01:41:39 +6101 6101 6102 610.1 1220.2 6101 1986-09-15 2024-10-11 01:41:41.000 1986-09-15 2024-10-11 01:41:41 +6102 6102 6103 610.2 1220.4 6102 1986-09-16 2024-10-11 01:41:42.000 1986-09-16 2024-10-11 01:41:42 +6103 6103 6104 610.3 1220.6000000000001 6103 1986-09-17 2024-10-11 01:41:43.000 1986-09-17 2024-10-11 01:41:43 +6104 6104 6105 610.4 1220.8 6104 1986-09-18 2024-10-11 01:41:44.000 1986-09-18 2024-10-11 01:41:44 +6106 6106 6107 610.6 1221.2 6106 1986-09-20 2024-10-11 01:41:46.000 1986-09-20 2024-10-11 01:41:46 +6107 6107 6108 610.7 1221.4 6107 1986-09-21 2024-10-11 01:41:47.000 1986-09-21 2024-10-11 01:41:47 +6108 6108 6109 610.8 1221.6000000000001 6108 1986-09-22 2024-10-11 01:41:48.000 1986-09-22 2024-10-11 01:41:48 +6109 6109 6110 610.9 1221.8 6109 1986-09-23 2024-10-11 01:41:49.000 1986-09-23 2024-10-11 01:41:49 +6111 6111 6112 611.1 1222.2 6111 1986-09-25 2024-10-11 01:41:51.000 1986-09-25 2024-10-11 01:41:51 +6112 6112 6113 611.2 1222.4 6112 1986-09-26 2024-10-11 01:41:52.000 1986-09-26 2024-10-11 01:41:52 +6113 6113 6114 611.3 1222.6000000000001 6113 1986-09-27 2024-10-11 01:41:53.000 1986-09-27 2024-10-11 01:41:53 +6114 6114 6115 611.4 1222.8 6114 1986-09-28 2024-10-11 01:41:54.000 1986-09-28 2024-10-11 01:41:54 +6116 6116 6117 611.6 1223.2 6116 1986-09-30 2024-10-11 01:41:56.000 1986-09-30 2024-10-11 01:41:56 +6117 6117 6118 611.7 1223.4 6117 1986-10-01 2024-10-11 01:41:57.000 1986-10-01 2024-10-11 01:41:57 +6118 6118 6119 611.8 1223.6000000000001 6118 1986-10-02 2024-10-11 01:41:58.000 1986-10-02 2024-10-11 01:41:58 +6119 6119 6120 611.9 1223.8 6119 1986-10-03 2024-10-11 01:41:59.000 1986-10-03 2024-10-11 01:41:59 +6121 6121 6122 612.1 1224.2 6121 1986-10-05 2024-10-11 01:42:01.000 1986-10-05 2024-10-11 01:42:01 +6122 6122 6123 612.2 1224.4 6122 1986-10-06 2024-10-11 01:42:02.000 1986-10-06 2024-10-11 01:42:02 +6123 6123 6124 612.3 1224.6000000000001 6123 1986-10-07 2024-10-11 01:42:03.000 1986-10-07 2024-10-11 01:42:03 +6124 6124 6125 612.4 1224.8 6124 1986-10-08 2024-10-11 01:42:04.000 1986-10-08 2024-10-11 01:42:04 +6126 6126 6127 612.6 1225.2 6126 1986-10-10 2024-10-11 01:42:06.000 1986-10-10 2024-10-11 01:42:06 +6127 6127 6128 612.7 1225.4 6127 1986-10-11 2024-10-11 01:42:07.000 1986-10-11 2024-10-11 01:42:07 +6128 6128 6129 612.8 1225.6000000000001 6128 1986-10-12 2024-10-11 01:42:08.000 1986-10-12 2024-10-11 01:42:08 +6129 6129 6130 612.9 1225.8 6129 1986-10-13 2024-10-11 01:42:09.000 1986-10-13 2024-10-11 01:42:09 +6131 6131 6132 613.1 1226.2 6131 1986-10-15 2024-10-11 01:42:11.000 1986-10-15 2024-10-11 01:42:11 +6132 6132 6133 613.2 1226.4 6132 1986-10-16 2024-10-11 01:42:12.000 1986-10-16 2024-10-11 01:42:12 +6133 6133 6134 613.3 1226.6000000000001 6133 1986-10-17 2024-10-11 01:42:13.000 1986-10-17 2024-10-11 01:42:13 +6134 6134 6135 613.4 1226.8 6134 1986-10-18 2024-10-11 01:42:14.000 1986-10-18 2024-10-11 01:42:14 +6136 6136 6137 613.6 1227.2 6136 1986-10-20 2024-10-11 01:42:16.000 1986-10-20 2024-10-11 01:42:16 +6137 6137 6138 613.7 1227.4 6137 1986-10-21 2024-10-11 01:42:17.000 1986-10-21 2024-10-11 01:42:17 +6138 6138 6139 613.8 1227.6000000000001 6138 1986-10-22 2024-10-11 01:42:18.000 1986-10-22 2024-10-11 01:42:18 +6139 6139 6140 613.9 1227.8 6139 1986-10-23 2024-10-11 01:42:19.000 1986-10-23 2024-10-11 01:42:19 +6141 6141 6142 614.1 1228.2 6141 1986-10-25 2024-10-11 01:42:21.000 1986-10-25 2024-10-11 01:42:21 +6142 6142 6143 614.2 1228.4 6142 1986-10-26 2024-10-11 01:42:22.000 1986-10-26 2024-10-11 01:42:22 +6143 6143 6144 614.3 1228.6000000000001 6143 1986-10-27 2024-10-11 01:42:23.000 1986-10-27 2024-10-11 01:42:23 +6144 6144 6145 614.4 1228.8000000000002 6144 1986-10-28 2024-10-11 01:42:24.000 1986-10-28 2024-10-11 01:42:24 +6146 6146 6147 614.6 1229.2 6146 1986-10-30 2024-10-11 01:42:26.000 1986-10-30 2024-10-11 01:42:26 +6147 6147 6148 614.7 1229.4 6147 1986-10-31 2024-10-11 01:42:27.000 1986-10-31 2024-10-11 01:42:27 +6148 6148 6149 614.8 1229.6000000000001 6148 1986-11-01 2024-10-11 01:42:28.000 1986-11-01 2024-10-11 01:42:28 +6149 6149 6150 614.9 1229.8000000000002 6149 1986-11-02 2024-10-11 01:42:29.000 1986-11-02 2024-10-11 01:42:29 +6151 6151 6152 615.1 1230.2 6151 1986-11-04 2024-10-11 01:42:31.000 1986-11-04 2024-10-11 01:42:31 +6152 6152 6153 615.2 1230.4 6152 1986-11-05 2024-10-11 01:42:32.000 1986-11-05 2024-10-11 01:42:32 +6153 6153 6154 615.3 1230.6000000000001 6153 1986-11-06 2024-10-11 01:42:33.000 1986-11-06 2024-10-11 01:42:33 +6154 6154 6155 615.4 1230.8000000000002 6154 1986-11-07 2024-10-11 01:42:34.000 1986-11-07 2024-10-11 01:42:34 +6156 6156 6157 615.6 1231.2 6156 1986-11-09 2024-10-11 01:42:36.000 1986-11-09 2024-10-11 01:42:36 +6157 6157 6158 615.7 1231.4 6157 1986-11-10 2024-10-11 01:42:37.000 1986-11-10 2024-10-11 01:42:37 +6158 6158 6159 615.8 1231.6000000000001 6158 1986-11-11 2024-10-11 01:42:38.000 1986-11-11 2024-10-11 01:42:38 +6159 6159 6160 615.9 1231.8000000000002 6159 1986-11-12 2024-10-11 01:42:39.000 1986-11-12 2024-10-11 01:42:39 +6161 6161 6162 616.1 1232.2 6161 1986-11-14 2024-10-11 01:42:41.000 1986-11-14 2024-10-11 01:42:41 +6162 6162 6163 616.2 1232.4 6162 1986-11-15 2024-10-11 01:42:42.000 1986-11-15 2024-10-11 01:42:42 +6163 6163 6164 616.3 1232.6000000000001 6163 1986-11-16 2024-10-11 01:42:43.000 1986-11-16 2024-10-11 01:42:43 +6164 6164 6165 616.4 1232.8000000000002 6164 1986-11-17 2024-10-11 01:42:44.000 1986-11-17 2024-10-11 01:42:44 +6166 6166 6167 616.6 1233.2 6166 1986-11-19 2024-10-11 01:42:46.000 1986-11-19 2024-10-11 01:42:46 +6167 6167 6168 616.7 1233.4 6167 1986-11-20 2024-10-11 01:42:47.000 1986-11-20 2024-10-11 01:42:47 +6168 6168 6169 616.8 1233.6000000000001 6168 1986-11-21 2024-10-11 01:42:48.000 1986-11-21 2024-10-11 01:42:48 +6169 6169 6170 616.9 1233.8000000000002 6169 1986-11-22 2024-10-11 01:42:49.000 1986-11-22 2024-10-11 01:42:49 +6171 6171 6172 617.1 1234.2 6171 1986-11-24 2024-10-11 01:42:51.000 1986-11-24 2024-10-11 01:42:51 +6172 6172 6173 617.2 1234.4 6172 1986-11-25 2024-10-11 01:42:52.000 1986-11-25 2024-10-11 01:42:52 +6173 6173 6174 617.3 1234.6000000000001 6173 1986-11-26 2024-10-11 01:42:53.000 1986-11-26 2024-10-11 01:42:53 +6174 6174 6175 617.4 1234.8000000000002 6174 1986-11-27 2024-10-11 01:42:54.000 1986-11-27 2024-10-11 01:42:54 +6176 6176 6177 617.6 1235.2 6176 1986-11-29 2024-10-11 01:42:56.000 1986-11-29 2024-10-11 01:42:56 +6177 6177 6178 617.7 1235.4 6177 1986-11-30 2024-10-11 01:42:57.000 1986-11-30 2024-10-11 01:42:57 +6178 6178 6179 617.8 1235.6000000000001 6178 1986-12-01 2024-10-11 01:42:58.000 1986-12-01 2024-10-11 01:42:58 +6179 6179 6180 617.9 1235.8000000000002 6179 1986-12-02 2024-10-11 01:42:59.000 1986-12-02 2024-10-11 01:42:59 +6181 6181 6182 618.1 1236.2 6181 1986-12-04 2024-10-11 01:43:01.000 1986-12-04 2024-10-11 01:43:01 +6182 6182 6183 618.2 1236.4 6182 1986-12-05 2024-10-11 01:43:02.000 1986-12-05 2024-10-11 01:43:02 +6183 6183 6184 618.3 1236.6000000000001 6183 1986-12-06 2024-10-11 01:43:03.000 1986-12-06 2024-10-11 01:43:03 +6184 6184 6185 618.4 1236.8000000000002 6184 1986-12-07 2024-10-11 01:43:04.000 1986-12-07 2024-10-11 01:43:04 +6186 6186 6187 618.6 1237.2 6186 1986-12-09 2024-10-11 01:43:06.000 1986-12-09 2024-10-11 01:43:06 +6187 6187 6188 618.7 1237.4 6187 1986-12-10 2024-10-11 01:43:07.000 1986-12-10 2024-10-11 01:43:07 +6188 6188 6189 618.8 1237.6000000000001 6188 1986-12-11 2024-10-11 01:43:08.000 1986-12-11 2024-10-11 01:43:08 +6189 6189 6190 618.9 1237.8000000000002 6189 1986-12-12 2024-10-11 01:43:09.000 1986-12-12 2024-10-11 01:43:09 +6191 6191 6192 619.1 1238.2 6191 1986-12-14 2024-10-11 01:43:11.000 1986-12-14 2024-10-11 01:43:11 +6192 6192 6193 619.2 1238.4 6192 1986-12-15 2024-10-11 01:43:12.000 1986-12-15 2024-10-11 01:43:12 +6193 6193 6194 619.3 1238.6000000000001 6193 1986-12-16 2024-10-11 01:43:13.000 1986-12-16 2024-10-11 01:43:13 +6194 6194 6195 619.4 1238.8000000000002 6194 1986-12-17 2024-10-11 01:43:14.000 1986-12-17 2024-10-11 01:43:14 +6196 6196 6197 619.6 1239.2 6196 1986-12-19 2024-10-11 01:43:16.000 1986-12-19 2024-10-11 01:43:16 +6197 6197 6198 619.7 1239.4 6197 1986-12-20 2024-10-11 01:43:17.000 1986-12-20 2024-10-11 01:43:17 +6198 6198 6199 619.8 1239.6000000000001 6198 1986-12-21 2024-10-11 01:43:18.000 1986-12-21 2024-10-11 01:43:18 +6199 6199 6200 619.9 1239.8000000000002 6199 1986-12-22 2024-10-11 01:43:19.000 1986-12-22 2024-10-11 01:43:19 +6201 6201 6202 620.1 1240.2 6201 1986-12-24 2024-10-11 01:43:21.000 1986-12-24 2024-10-11 01:43:21 +6202 6202 6203 620.2 1240.4 6202 1986-12-25 2024-10-11 01:43:22.000 1986-12-25 2024-10-11 01:43:22 +6203 6203 6204 620.3 1240.6000000000001 6203 1986-12-26 2024-10-11 01:43:23.000 1986-12-26 2024-10-11 01:43:23 +6204 6204 6205 620.4 1240.8000000000002 6204 1986-12-27 2024-10-11 01:43:24.000 1986-12-27 2024-10-11 01:43:24 +6206 6206 6207 620.6 1241.2 6206 1986-12-29 2024-10-11 01:43:26.000 1986-12-29 2024-10-11 01:43:26 +6207 6207 6208 620.7 1241.4 6207 1986-12-30 2024-10-11 01:43:27.000 1986-12-30 2024-10-11 01:43:27 +6208 6208 6209 620.8 1241.6000000000001 6208 1986-12-31 2024-10-11 01:43:28.000 1986-12-31 2024-10-11 01:43:28 +6209 6209 6210 620.9 1241.8000000000002 6209 1987-01-01 2024-10-11 01:43:29.000 1987-01-01 2024-10-11 01:43:29 +6211 6211 6212 621.1 1242.2 6211 1987-01-03 2024-10-11 01:43:31.000 1987-01-03 2024-10-11 01:43:31 +6212 6212 6213 621.2 1242.4 6212 1987-01-04 2024-10-11 01:43:32.000 1987-01-04 2024-10-11 01:43:32 +6213 6213 6214 621.3 1242.6000000000001 6213 1987-01-05 2024-10-11 01:43:33.000 1987-01-05 2024-10-11 01:43:33 +6214 6214 6215 621.4 1242.8000000000002 6214 1987-01-06 2024-10-11 01:43:34.000 1987-01-06 2024-10-11 01:43:34 +6216 6216 6217 621.6 1243.2 6216 1987-01-08 2024-10-11 01:43:36.000 1987-01-08 2024-10-11 01:43:36 +6217 6217 6218 621.7 1243.4 6217 1987-01-09 2024-10-11 01:43:37.000 1987-01-09 2024-10-11 01:43:37 +6218 6218 6219 621.8 1243.6000000000001 6218 1987-01-10 2024-10-11 01:43:38.000 1987-01-10 2024-10-11 01:43:38 +6219 6219 6220 621.9 1243.8000000000002 6219 1987-01-11 2024-10-11 01:43:39.000 1987-01-11 2024-10-11 01:43:39 +6221 6221 6222 622.1 1244.2 6221 1987-01-13 2024-10-11 01:43:41.000 1987-01-13 2024-10-11 01:43:41 +6222 6222 6223 622.2 1244.4 6222 1987-01-14 2024-10-11 01:43:42.000 1987-01-14 2024-10-11 01:43:42 +6223 6223 6224 622.3 1244.6000000000001 6223 1987-01-15 2024-10-11 01:43:43.000 1987-01-15 2024-10-11 01:43:43 +6224 6224 6225 622.4 1244.8000000000002 6224 1987-01-16 2024-10-11 01:43:44.000 1987-01-16 2024-10-11 01:43:44 +6226 6226 6227 622.6 1245.2 6226 1987-01-18 2024-10-11 01:43:46.000 1987-01-18 2024-10-11 01:43:46 +6227 6227 6228 622.7 1245.4 6227 1987-01-19 2024-10-11 01:43:47.000 1987-01-19 2024-10-11 01:43:47 +6228 6228 6229 622.8 1245.6000000000001 6228 1987-01-20 2024-10-11 01:43:48.000 1987-01-20 2024-10-11 01:43:48 +6229 6229 6230 622.9 1245.8000000000002 6229 1987-01-21 2024-10-11 01:43:49.000 1987-01-21 2024-10-11 01:43:49 +6231 6231 6232 623.1 1246.2 6231 1987-01-23 2024-10-11 01:43:51.000 1987-01-23 2024-10-11 01:43:51 +6232 6232 6233 623.2 1246.4 6232 1987-01-24 2024-10-11 01:43:52.000 1987-01-24 2024-10-11 01:43:52 +6233 6233 6234 623.3 1246.6000000000001 6233 1987-01-25 2024-10-11 01:43:53.000 1987-01-25 2024-10-11 01:43:53 +6234 6234 6235 623.4 1246.8000000000002 6234 1987-01-26 2024-10-11 01:43:54.000 1987-01-26 2024-10-11 01:43:54 +6236 6236 6237 623.6 1247.2 6236 1987-01-28 2024-10-11 01:43:56.000 1987-01-28 2024-10-11 01:43:56 +6237 6237 6238 623.7 1247.4 6237 1987-01-29 2024-10-11 01:43:57.000 1987-01-29 2024-10-11 01:43:57 +6238 6238 6239 623.8 1247.6000000000001 6238 1987-01-30 2024-10-11 01:43:58.000 1987-01-30 2024-10-11 01:43:58 +6239 6239 6240 623.9 1247.8000000000002 6239 1987-01-31 2024-10-11 01:43:59.000 1987-01-31 2024-10-11 01:43:59 +6241 6241 6242 624.1 1248.2 6241 1987-02-02 2024-10-11 01:44:01.000 1987-02-02 2024-10-11 01:44:01 +6242 6242 6243 624.2 1248.4 6242 1987-02-03 2024-10-11 01:44:02.000 1987-02-03 2024-10-11 01:44:02 +6243 6243 6244 624.3 1248.6000000000001 6243 1987-02-04 2024-10-11 01:44:03.000 1987-02-04 2024-10-11 01:44:03 +6244 6244 6245 624.4 1248.8000000000002 6244 1987-02-05 2024-10-11 01:44:04.000 1987-02-05 2024-10-11 01:44:04 +6246 6246 6247 624.6 1249.2 6246 1987-02-07 2024-10-11 01:44:06.000 1987-02-07 2024-10-11 01:44:06 +6247 6247 6248 624.7 1249.4 6247 1987-02-08 2024-10-11 01:44:07.000 1987-02-08 2024-10-11 01:44:07 +6248 6248 6249 624.8 1249.6000000000001 6248 1987-02-09 2024-10-11 01:44:08.000 1987-02-09 2024-10-11 01:44:08 +6249 6249 6250 624.9 1249.8000000000002 6249 1987-02-10 2024-10-11 01:44:09.000 1987-02-10 2024-10-11 01:44:09 +6251 6251 6252 625.1 1250.2 6251 1987-02-12 2024-10-11 01:44:11.000 1987-02-12 2024-10-11 01:44:11 +6252 6252 6253 625.2 1250.4 6252 1987-02-13 2024-10-11 01:44:12.000 1987-02-13 2024-10-11 01:44:12 +6253 6253 6254 625.3 1250.6000000000001 6253 1987-02-14 2024-10-11 01:44:13.000 1987-02-14 2024-10-11 01:44:13 +6254 6254 6255 625.4 1250.8000000000002 6254 1987-02-15 2024-10-11 01:44:14.000 1987-02-15 2024-10-11 01:44:14 +6256 6256 6257 625.6 1251.2 6256 1987-02-17 2024-10-11 01:44:16.000 1987-02-17 2024-10-11 01:44:16 +6257 6257 6258 625.7 1251.4 6257 1987-02-18 2024-10-11 01:44:17.000 1987-02-18 2024-10-11 01:44:17 +6258 6258 6259 625.8 1251.6000000000001 6258 1987-02-19 2024-10-11 01:44:18.000 1987-02-19 2024-10-11 01:44:18 +6259 6259 6260 625.9 1251.8000000000002 6259 1987-02-20 2024-10-11 01:44:19.000 1987-02-20 2024-10-11 01:44:19 +6261 6261 6262 626.1 1252.2 6261 1987-02-22 2024-10-11 01:44:21.000 1987-02-22 2024-10-11 01:44:21 +6262 6262 6263 626.2 1252.4 6262 1987-02-23 2024-10-11 01:44:22.000 1987-02-23 2024-10-11 01:44:22 +6263 6263 6264 626.3 1252.6000000000001 6263 1987-02-24 2024-10-11 01:44:23.000 1987-02-24 2024-10-11 01:44:23 +6264 6264 6265 626.4 1252.8000000000002 6264 1987-02-25 2024-10-11 01:44:24.000 1987-02-25 2024-10-11 01:44:24 +6266 6266 6267 626.6 1253.2 6266 1987-02-27 2024-10-11 01:44:26.000 1987-02-27 2024-10-11 01:44:26 +6267 6267 6268 626.7 1253.4 6267 1987-02-28 2024-10-11 01:44:27.000 1987-02-28 2024-10-11 01:44:27 +6268 6268 6269 626.8 1253.6000000000001 6268 1987-03-01 2024-10-11 01:44:28.000 1987-03-01 2024-10-11 01:44:28 +6269 6269 6270 626.9 1253.8000000000002 6269 1987-03-02 2024-10-11 01:44:29.000 1987-03-02 2024-10-11 01:44:29 +6271 6271 6272 627.1 1254.2 6271 1987-03-04 2024-10-11 01:44:31.000 1987-03-04 2024-10-11 01:44:31 +6272 6272 6273 627.2 1254.4 6272 1987-03-05 2024-10-11 01:44:32.000 1987-03-05 2024-10-11 01:44:32 +6273 6273 6274 627.3 1254.6000000000001 6273 1987-03-06 2024-10-11 01:44:33.000 1987-03-06 2024-10-11 01:44:33 +6274 6274 6275 627.4 1254.8000000000002 6274 1987-03-07 2024-10-11 01:44:34.000 1987-03-07 2024-10-11 01:44:34 +6276 6276 6277 627.6 1255.2 6276 1987-03-09 2024-10-11 01:44:36.000 1987-03-09 2024-10-11 01:44:36 +6277 6277 6278 627.7 1255.4 6277 1987-03-10 2024-10-11 01:44:37.000 1987-03-10 2024-10-11 01:44:37 +6278 6278 6279 627.8 1255.6000000000001 6278 1987-03-11 2024-10-11 01:44:38.000 1987-03-11 2024-10-11 01:44:38 +6279 6279 6280 627.9 1255.8000000000002 6279 1987-03-12 2024-10-11 01:44:39.000 1987-03-12 2024-10-11 01:44:39 +6281 6281 6282 628.1 1256.2 6281 1987-03-14 2024-10-11 01:44:41.000 1987-03-14 2024-10-11 01:44:41 +6282 6282 6283 628.2 1256.4 6282 1987-03-15 2024-10-11 01:44:42.000 1987-03-15 2024-10-11 01:44:42 +6283 6283 6284 628.3 1256.6000000000001 6283 1987-03-16 2024-10-11 01:44:43.000 1987-03-16 2024-10-11 01:44:43 +6284 6284 6285 628.4 1256.8000000000002 6284 1987-03-17 2024-10-11 01:44:44.000 1987-03-17 2024-10-11 01:44:44 +6286 6286 6287 628.6 1257.2 6286 1987-03-19 2024-10-11 01:44:46.000 1987-03-19 2024-10-11 01:44:46 +6287 6287 6288 628.7 1257.4 6287 1987-03-20 2024-10-11 01:44:47.000 1987-03-20 2024-10-11 01:44:47 +6288 6288 6289 628.8 1257.6000000000001 6288 1987-03-21 2024-10-11 01:44:48.000 1987-03-21 2024-10-11 01:44:48 +6289 6289 6290 628.9 1257.8000000000002 6289 1987-03-22 2024-10-11 01:44:49.000 1987-03-22 2024-10-11 01:44:49 +6291 6291 6292 629.1 1258.2 6291 1987-03-24 2024-10-11 01:44:51.000 1987-03-24 2024-10-11 01:44:51 +6292 6292 6293 629.2 1258.4 6292 1987-03-25 2024-10-11 01:44:52.000 1987-03-25 2024-10-11 01:44:52 +6293 6293 6294 629.3 1258.6000000000001 6293 1987-03-26 2024-10-11 01:44:53.000 1987-03-26 2024-10-11 01:44:53 +6294 6294 6295 629.4 1258.8000000000002 6294 1987-03-27 2024-10-11 01:44:54.000 1987-03-27 2024-10-11 01:44:54 +6296 6296 6297 629.6 1259.2 6296 1987-03-29 2024-10-11 01:44:56.000 1987-03-29 2024-10-11 01:44:56 +6297 6297 6298 629.7 1259.4 6297 1987-03-30 2024-10-11 01:44:57.000 1987-03-30 2024-10-11 01:44:57 +6298 6298 6299 629.8 1259.6000000000001 6298 1987-03-31 2024-10-11 01:44:58.000 1987-03-31 2024-10-11 01:44:58 +6299 6299 6300 629.9 1259.8000000000002 6299 1987-04-01 2024-10-11 01:44:59.000 1987-04-01 2024-10-11 01:44:59 +6301 6301 6302 630.1 1260.2 6301 1987-04-03 2024-10-11 01:45:01.000 1987-04-03 2024-10-11 01:45:01 +6302 6302 6303 630.2 1260.4 6302 1987-04-04 2024-10-11 01:45:02.000 1987-04-04 2024-10-11 01:45:02 +6303 6303 6304 630.3 1260.6000000000001 6303 1987-04-05 2024-10-11 01:45:03.000 1987-04-05 2024-10-11 01:45:03 +6304 6304 6305 630.4 1260.8000000000002 6304 1987-04-06 2024-10-11 01:45:04.000 1987-04-06 2024-10-11 01:45:04 +6306 6306 6307 630.6 1261.2 6306 1987-04-08 2024-10-11 01:45:06.000 1987-04-08 2024-10-11 01:45:06 +6307 6307 6308 630.7 1261.4 6307 1987-04-09 2024-10-11 01:45:07.000 1987-04-09 2024-10-11 01:45:07 +6308 6308 6309 630.8 1261.6000000000001 6308 1987-04-10 2024-10-11 01:45:08.000 1987-04-10 2024-10-11 01:45:08 +6309 6309 6310 630.9 1261.8000000000002 6309 1987-04-11 2024-10-11 01:45:09.000 1987-04-11 2024-10-11 01:45:09 +6311 6311 6312 631.1 1262.2 6311 1987-04-13 2024-10-11 01:45:11.000 1987-04-13 2024-10-11 01:45:11 +6312 6312 6313 631.2 1262.4 6312 1987-04-14 2024-10-11 01:45:12.000 1987-04-14 2024-10-11 01:45:12 +6313 6313 6314 631.3 1262.6000000000001 6313 1987-04-15 2024-10-11 01:45:13.000 1987-04-15 2024-10-11 01:45:13 +6314 6314 6315 631.4 1262.8000000000002 6314 1987-04-16 2024-10-11 01:45:14.000 1987-04-16 2024-10-11 01:45:14 +6316 6316 6317 631.6 1263.2 6316 1987-04-18 2024-10-11 01:45:16.000 1987-04-18 2024-10-11 01:45:16 +6317 6317 6318 631.7 1263.4 6317 1987-04-19 2024-10-11 01:45:17.000 1987-04-19 2024-10-11 01:45:17 +6318 6318 6319 631.8 1263.6000000000001 6318 1987-04-20 2024-10-11 01:45:18.000 1987-04-20 2024-10-11 01:45:18 +6319 6319 6320 631.9 1263.8000000000002 6319 1987-04-21 2024-10-11 01:45:19.000 1987-04-21 2024-10-11 01:45:19 +6321 6321 6322 632.1 1264.2 6321 1987-04-23 2024-10-11 01:45:21.000 1987-04-23 2024-10-11 01:45:21 +6322 6322 6323 632.2 1264.4 6322 1987-04-24 2024-10-11 01:45:22.000 1987-04-24 2024-10-11 01:45:22 +6323 6323 6324 632.3 1264.6000000000001 6323 1987-04-25 2024-10-11 01:45:23.000 1987-04-25 2024-10-11 01:45:23 +6324 6324 6325 632.4 1264.8000000000002 6324 1987-04-26 2024-10-11 01:45:24.000 1987-04-26 2024-10-11 01:45:24 +6326 6326 6327 632.6 1265.2 6326 1987-04-28 2024-10-11 01:45:26.000 1987-04-28 2024-10-11 01:45:26 +6327 6327 6328 632.7 1265.4 6327 1987-04-29 2024-10-11 01:45:27.000 1987-04-29 2024-10-11 01:45:27 +6328 6328 6329 632.8 1265.6000000000001 6328 1987-04-30 2024-10-11 01:45:28.000 1987-04-30 2024-10-11 01:45:28 +6329 6329 6330 632.9 1265.8000000000002 6329 1987-05-01 2024-10-11 01:45:29.000 1987-05-01 2024-10-11 01:45:29 +6331 6331 6332 633.1 1266.2 6331 1987-05-03 2024-10-11 01:45:31.000 1987-05-03 2024-10-11 01:45:31 +6332 6332 6333 633.2 1266.4 6332 1987-05-04 2024-10-11 01:45:32.000 1987-05-04 2024-10-11 01:45:32 +6333 6333 6334 633.3 1266.6000000000001 6333 1987-05-05 2024-10-11 01:45:33.000 1987-05-05 2024-10-11 01:45:33 +6334 6334 6335 633.4 1266.8000000000002 6334 1987-05-06 2024-10-11 01:45:34.000 1987-05-06 2024-10-11 01:45:34 +6336 6336 6337 633.6 1267.2 6336 1987-05-08 2024-10-11 01:45:36.000 1987-05-08 2024-10-11 01:45:36 +6337 6337 6338 633.7 1267.4 6337 1987-05-09 2024-10-11 01:45:37.000 1987-05-09 2024-10-11 01:45:37 +6338 6338 6339 633.8 1267.6000000000001 6338 1987-05-10 2024-10-11 01:45:38.000 1987-05-10 2024-10-11 01:45:38 +6339 6339 6340 633.9 1267.8000000000002 6339 1987-05-11 2024-10-11 01:45:39.000 1987-05-11 2024-10-11 01:45:39 +6341 6341 6342 634.1 1268.2 6341 1987-05-13 2024-10-11 01:45:41.000 1987-05-13 2024-10-11 01:45:41 +6342 6342 6343 634.2 1268.4 6342 1987-05-14 2024-10-11 01:45:42.000 1987-05-14 2024-10-11 01:45:42 +6343 6343 6344 634.3 1268.6000000000001 6343 1987-05-15 2024-10-11 01:45:43.000 1987-05-15 2024-10-11 01:45:43 +6344 6344 6345 634.4 1268.8000000000002 6344 1987-05-16 2024-10-11 01:45:44.000 1987-05-16 2024-10-11 01:45:44 +6346 6346 6347 634.6 1269.2 6346 1987-05-18 2024-10-11 01:45:46.000 1987-05-18 2024-10-11 01:45:46 +6347 6347 6348 634.7 1269.4 6347 1987-05-19 2024-10-11 01:45:47.000 1987-05-19 2024-10-11 01:45:47 +6348 6348 6349 634.8 1269.6000000000001 6348 1987-05-20 2024-10-11 01:45:48.000 1987-05-20 2024-10-11 01:45:48 +6349 6349 6350 634.9 1269.8000000000002 6349 1987-05-21 2024-10-11 01:45:49.000 1987-05-21 2024-10-11 01:45:49 +6351 6351 6352 635.1 1270.2 6351 1987-05-23 2024-10-11 01:45:51.000 1987-05-23 2024-10-11 01:45:51 +6352 6352 6353 635.2 1270.4 6352 1987-05-24 2024-10-11 01:45:52.000 1987-05-24 2024-10-11 01:45:52 +6353 6353 6354 635.3 1270.6000000000001 6353 1987-05-25 2024-10-11 01:45:53.000 1987-05-25 2024-10-11 01:45:53 +6354 6354 6355 635.4 1270.8000000000002 6354 1987-05-26 2024-10-11 01:45:54.000 1987-05-26 2024-10-11 01:45:54 +6356 6356 6357 635.6 1271.2 6356 1987-05-28 2024-10-11 01:45:56.000 1987-05-28 2024-10-11 01:45:56 +6357 6357 6358 635.7 1271.4 6357 1987-05-29 2024-10-11 01:45:57.000 1987-05-29 2024-10-11 01:45:57 +6358 6358 6359 635.8 1271.6000000000001 6358 1987-05-30 2024-10-11 01:45:58.000 1987-05-30 2024-10-11 01:45:58 +6359 6359 6360 635.9 1271.8000000000002 6359 1987-05-31 2024-10-11 01:45:59.000 1987-05-31 2024-10-11 01:45:59 +6361 6361 6362 636.1 1272.2 6361 1987-06-02 2024-10-11 01:46:01.000 1987-06-02 2024-10-11 01:46:01 +6362 6362 6363 636.2 1272.4 6362 1987-06-03 2024-10-11 01:46:02.000 1987-06-03 2024-10-11 01:46:02 +6363 6363 6364 636.3 1272.6000000000001 6363 1987-06-04 2024-10-11 01:46:03.000 1987-06-04 2024-10-11 01:46:03 +6364 6364 6365 636.4 1272.8000000000002 6364 1987-06-05 2024-10-11 01:46:04.000 1987-06-05 2024-10-11 01:46:04 +6366 6366 6367 636.6 1273.2 6366 1987-06-07 2024-10-11 01:46:06.000 1987-06-07 2024-10-11 01:46:06 +6367 6367 6368 636.7 1273.4 6367 1987-06-08 2024-10-11 01:46:07.000 1987-06-08 2024-10-11 01:46:07 +6368 6368 6369 636.8 1273.6000000000001 6368 1987-06-09 2024-10-11 01:46:08.000 1987-06-09 2024-10-11 01:46:08 +6369 6369 6370 636.9 1273.8000000000002 6369 1987-06-10 2024-10-11 01:46:09.000 1987-06-10 2024-10-11 01:46:09 +6371 6371 6372 637.1 1274.2 6371 1987-06-12 2024-10-11 01:46:11.000 1987-06-12 2024-10-11 01:46:11 +6372 6372 6373 637.2 1274.4 6372 1987-06-13 2024-10-11 01:46:12.000 1987-06-13 2024-10-11 01:46:12 +6373 6373 6374 637.3 1274.6000000000001 6373 1987-06-14 2024-10-11 01:46:13.000 1987-06-14 2024-10-11 01:46:13 +6374 6374 6375 637.4 1274.8000000000002 6374 1987-06-15 2024-10-11 01:46:14.000 1987-06-15 2024-10-11 01:46:14 +6376 6376 6377 637.6 1275.2 6376 1987-06-17 2024-10-11 01:46:16.000 1987-06-17 2024-10-11 01:46:16 +6377 6377 6378 637.7 1275.4 6377 1987-06-18 2024-10-11 01:46:17.000 1987-06-18 2024-10-11 01:46:17 +6378 6378 6379 637.8 1275.6000000000001 6378 1987-06-19 2024-10-11 01:46:18.000 1987-06-19 2024-10-11 01:46:18 +6379 6379 6380 637.9 1275.8000000000002 6379 1987-06-20 2024-10-11 01:46:19.000 1987-06-20 2024-10-11 01:46:19 +6381 6381 6382 638.1 1276.2 6381 1987-06-22 2024-10-11 01:46:21.000 1987-06-22 2024-10-11 01:46:21 +6382 6382 6383 638.2 1276.4 6382 1987-06-23 2024-10-11 01:46:22.000 1987-06-23 2024-10-11 01:46:22 +6383 6383 6384 638.3 1276.6000000000001 6383 1987-06-24 2024-10-11 01:46:23.000 1987-06-24 2024-10-11 01:46:23 +6384 6384 6385 638.4 1276.8000000000002 6384 1987-06-25 2024-10-11 01:46:24.000 1987-06-25 2024-10-11 01:46:24 +6386 6386 6387 638.6 1277.2 6386 1987-06-27 2024-10-11 01:46:26.000 1987-06-27 2024-10-11 01:46:26 +6387 6387 6388 638.7 1277.4 6387 1987-06-28 2024-10-11 01:46:27.000 1987-06-28 2024-10-11 01:46:27 +6388 6388 6389 638.8 1277.6000000000001 6388 1987-06-29 2024-10-11 01:46:28.000 1987-06-29 2024-10-11 01:46:28 +6389 6389 6390 638.9 1277.8000000000002 6389 1987-06-30 2024-10-11 01:46:29.000 1987-06-30 2024-10-11 01:46:29 +6391 6391 6392 639.1 1278.2 6391 1987-07-02 2024-10-11 01:46:31.000 1987-07-02 2024-10-11 01:46:31 +6392 6392 6393 639.2 1278.4 6392 1987-07-03 2024-10-11 01:46:32.000 1987-07-03 2024-10-11 01:46:32 +6393 6393 6394 639.3 1278.6000000000001 6393 1987-07-04 2024-10-11 01:46:33.000 1987-07-04 2024-10-11 01:46:33 +6394 6394 6395 639.4 1278.8000000000002 6394 1987-07-05 2024-10-11 01:46:34.000 1987-07-05 2024-10-11 01:46:34 +6396 6396 6397 639.6 1279.2 6396 1987-07-07 2024-10-11 01:46:36.000 1987-07-07 2024-10-11 01:46:36 +6397 6397 6398 639.7 1279.4 6397 1987-07-08 2024-10-11 01:46:37.000 1987-07-08 2024-10-11 01:46:37 +6398 6398 6399 639.8 1279.6000000000001 6398 1987-07-09 2024-10-11 01:46:38.000 1987-07-09 2024-10-11 01:46:38 +6399 6399 6400 639.9 1279.8000000000002 6399 1987-07-10 2024-10-11 01:46:39.000 1987-07-10 2024-10-11 01:46:39 +6401 6401 6402 640.1 1280.2 6401 1987-07-12 2024-10-11 01:46:41.000 1987-07-12 2024-10-11 01:46:41 +6402 6402 6403 640.2 1280.4 6402 1987-07-13 2024-10-11 01:46:42.000 1987-07-13 2024-10-11 01:46:42 +6403 6403 6404 640.3 1280.6000000000001 6403 1987-07-14 2024-10-11 01:46:43.000 1987-07-14 2024-10-11 01:46:43 +6404 6404 6405 640.4 1280.8000000000002 6404 1987-07-15 2024-10-11 01:46:44.000 1987-07-15 2024-10-11 01:46:44 +6406 6406 6407 640.6 1281.2 6406 1987-07-17 2024-10-11 01:46:46.000 1987-07-17 2024-10-11 01:46:46 +6407 6407 6408 640.7 1281.4 6407 1987-07-18 2024-10-11 01:46:47.000 1987-07-18 2024-10-11 01:46:47 +6408 6408 6409 640.8 1281.6000000000001 6408 1987-07-19 2024-10-11 01:46:48.000 1987-07-19 2024-10-11 01:46:48 +6409 6409 6410 640.9 1281.8000000000002 6409 1987-07-20 2024-10-11 01:46:49.000 1987-07-20 2024-10-11 01:46:49 +6411 6411 6412 641.1 1282.2 6411 1987-07-22 2024-10-11 01:46:51.000 1987-07-22 2024-10-11 01:46:51 +6412 6412 6413 641.2 1282.4 6412 1987-07-23 2024-10-11 01:46:52.000 1987-07-23 2024-10-11 01:46:52 +6413 6413 6414 641.3 1282.6000000000001 6413 1987-07-24 2024-10-11 01:46:53.000 1987-07-24 2024-10-11 01:46:53 +6414 6414 6415 641.4 1282.8000000000002 6414 1987-07-25 2024-10-11 01:46:54.000 1987-07-25 2024-10-11 01:46:54 +6416 6416 6417 641.6 1283.2 6416 1987-07-27 2024-10-11 01:46:56.000 1987-07-27 2024-10-11 01:46:56 +6417 6417 6418 641.7 1283.4 6417 1987-07-28 2024-10-11 01:46:57.000 1987-07-28 2024-10-11 01:46:57 +6418 6418 6419 641.8 1283.6000000000001 6418 1987-07-29 2024-10-11 01:46:58.000 1987-07-29 2024-10-11 01:46:58 +6419 6419 6420 641.9 1283.8000000000002 6419 1987-07-30 2024-10-11 01:46:59.000 1987-07-30 2024-10-11 01:46:59 +6421 6421 6422 642.1 1284.2 6421 1987-08-01 2024-10-11 01:47:01.000 1987-08-01 2024-10-11 01:47:01 +6422 6422 6423 642.2 1284.4 6422 1987-08-02 2024-10-11 01:47:02.000 1987-08-02 2024-10-11 01:47:02 +6423 6423 6424 642.3 1284.6000000000001 6423 1987-08-03 2024-10-11 01:47:03.000 1987-08-03 2024-10-11 01:47:03 +6424 6424 6425 642.4 1284.8000000000002 6424 1987-08-04 2024-10-11 01:47:04.000 1987-08-04 2024-10-11 01:47:04 +6426 6426 6427 642.6 1285.2 6426 1987-08-06 2024-10-11 01:47:06.000 1987-08-06 2024-10-11 01:47:06 +6427 6427 6428 642.7 1285.4 6427 1987-08-07 2024-10-11 01:47:07.000 1987-08-07 2024-10-11 01:47:07 +6428 6428 6429 642.8 1285.6000000000001 6428 1987-08-08 2024-10-11 01:47:08.000 1987-08-08 2024-10-11 01:47:08 +6429 6429 6430 642.9 1285.8000000000002 6429 1987-08-09 2024-10-11 01:47:09.000 1987-08-09 2024-10-11 01:47:09 +6431 6431 6432 643.1 1286.2 6431 1987-08-11 2024-10-11 01:47:11.000 1987-08-11 2024-10-11 01:47:11 +6432 6432 6433 643.2 1286.4 6432 1987-08-12 2024-10-11 01:47:12.000 1987-08-12 2024-10-11 01:47:12 +6433 6433 6434 643.3 1286.6000000000001 6433 1987-08-13 2024-10-11 01:47:13.000 1987-08-13 2024-10-11 01:47:13 +6434 6434 6435 643.4 1286.8000000000002 6434 1987-08-14 2024-10-11 01:47:14.000 1987-08-14 2024-10-11 01:47:14 +6436 6436 6437 643.6 1287.2 6436 1987-08-16 2024-10-11 01:47:16.000 1987-08-16 2024-10-11 01:47:16 +6437 6437 6438 643.7 1287.4 6437 1987-08-17 2024-10-11 01:47:17.000 1987-08-17 2024-10-11 01:47:17 +6438 6438 6439 643.8 1287.6000000000001 6438 1987-08-18 2024-10-11 01:47:18.000 1987-08-18 2024-10-11 01:47:18 +6439 6439 6440 643.9 1287.8000000000002 6439 1987-08-19 2024-10-11 01:47:19.000 1987-08-19 2024-10-11 01:47:19 +6441 6441 6442 644.1 1288.2 6441 1987-08-21 2024-10-11 01:47:21.000 1987-08-21 2024-10-11 01:47:21 +6442 6442 6443 644.2 1288.4 6442 1987-08-22 2024-10-11 01:47:22.000 1987-08-22 2024-10-11 01:47:22 +6443 6443 6444 644.3 1288.6000000000001 6443 1987-08-23 2024-10-11 01:47:23.000 1987-08-23 2024-10-11 01:47:23 +6444 6444 6445 644.4 1288.8000000000002 6444 1987-08-24 2024-10-11 01:47:24.000 1987-08-24 2024-10-11 01:47:24 +6446 6446 6447 644.6 1289.2 6446 1987-08-26 2024-10-11 01:47:26.000 1987-08-26 2024-10-11 01:47:26 +6447 6447 6448 644.7 1289.4 6447 1987-08-27 2024-10-11 01:47:27.000 1987-08-27 2024-10-11 01:47:27 +6448 6448 6449 644.8 1289.6000000000001 6448 1987-08-28 2024-10-11 01:47:28.000 1987-08-28 2024-10-11 01:47:28 +6449 6449 6450 644.9 1289.8000000000002 6449 1987-08-29 2024-10-11 01:47:29.000 1987-08-29 2024-10-11 01:47:29 +6451 6451 6452 645.1 1290.2 6451 1987-08-31 2024-10-11 01:47:31.000 1987-08-31 2024-10-11 01:47:31 +6452 6452 6453 645.2 1290.4 6452 1987-09-01 2024-10-11 01:47:32.000 1987-09-01 2024-10-11 01:47:32 +6453 6453 6454 645.3 1290.6000000000001 6453 1987-09-02 2024-10-11 01:47:33.000 1987-09-02 2024-10-11 01:47:33 +6454 6454 6455 645.4 1290.8000000000002 6454 1987-09-03 2024-10-11 01:47:34.000 1987-09-03 2024-10-11 01:47:34 +6456 6456 6457 645.6 1291.2 6456 1987-09-05 2024-10-11 01:47:36.000 1987-09-05 2024-10-11 01:47:36 +6457 6457 6458 645.7 1291.4 6457 1987-09-06 2024-10-11 01:47:37.000 1987-09-06 2024-10-11 01:47:37 +6458 6458 6459 645.8 1291.6000000000001 6458 1987-09-07 2024-10-11 01:47:38.000 1987-09-07 2024-10-11 01:47:38 +6459 6459 6460 645.9 1291.8000000000002 6459 1987-09-08 2024-10-11 01:47:39.000 1987-09-08 2024-10-11 01:47:39 +6461 6461 6462 646.1 1292.2 6461 1987-09-10 2024-10-11 01:47:41.000 1987-09-10 2024-10-11 01:47:41 +6462 6462 6463 646.2 1292.4 6462 1987-09-11 2024-10-11 01:47:42.000 1987-09-11 2024-10-11 01:47:42 +6463 6463 6464 646.3 1292.6000000000001 6463 1987-09-12 2024-10-11 01:47:43.000 1987-09-12 2024-10-11 01:47:43 +6464 6464 6465 646.4 1292.8000000000002 6464 1987-09-13 2024-10-11 01:47:44.000 1987-09-13 2024-10-11 01:47:44 +6466 6466 6467 646.6 1293.2 6466 1987-09-15 2024-10-11 01:47:46.000 1987-09-15 2024-10-11 01:47:46 +6467 6467 6468 646.7 1293.4 6467 1987-09-16 2024-10-11 01:47:47.000 1987-09-16 2024-10-11 01:47:47 +6468 6468 6469 646.8 1293.6000000000001 6468 1987-09-17 2024-10-11 01:47:48.000 1987-09-17 2024-10-11 01:47:48 +6469 6469 6470 646.9 1293.8000000000002 6469 1987-09-18 2024-10-11 01:47:49.000 1987-09-18 2024-10-11 01:47:49 +6471 6471 6472 647.1 1294.2 6471 1987-09-20 2024-10-11 01:47:51.000 1987-09-20 2024-10-11 01:47:51 +6472 6472 6473 647.2 1294.4 6472 1987-09-21 2024-10-11 01:47:52.000 1987-09-21 2024-10-11 01:47:52 +6473 6473 6474 647.3 1294.6000000000001 6473 1987-09-22 2024-10-11 01:47:53.000 1987-09-22 2024-10-11 01:47:53 +6474 6474 6475 647.4 1294.8000000000002 6474 1987-09-23 2024-10-11 01:47:54.000 1987-09-23 2024-10-11 01:47:54 +6476 6476 6477 647.6 1295.2 6476 1987-09-25 2024-10-11 01:47:56.000 1987-09-25 2024-10-11 01:47:56 +6477 6477 6478 647.7 1295.4 6477 1987-09-26 2024-10-11 01:47:57.000 1987-09-26 2024-10-11 01:47:57 +6478 6478 6479 647.8 1295.6000000000001 6478 1987-09-27 2024-10-11 01:47:58.000 1987-09-27 2024-10-11 01:47:58 +6479 6479 6480 647.9 1295.8000000000002 6479 1987-09-28 2024-10-11 01:47:59.000 1987-09-28 2024-10-11 01:47:59 +6481 6481 6482 648.1 1296.2 6481 1987-09-30 2024-10-11 01:48:01.000 1987-09-30 2024-10-11 01:48:01 +6482 6482 6483 648.2 1296.4 6482 1987-10-01 2024-10-11 01:48:02.000 1987-10-01 2024-10-11 01:48:02 +6483 6483 6484 648.3 1296.6000000000001 6483 1987-10-02 2024-10-11 01:48:03.000 1987-10-02 2024-10-11 01:48:03 +6484 6484 6485 648.4 1296.8000000000002 6484 1987-10-03 2024-10-11 01:48:04.000 1987-10-03 2024-10-11 01:48:04 +6486 6486 6487 648.6 1297.2 6486 1987-10-05 2024-10-11 01:48:06.000 1987-10-05 2024-10-11 01:48:06 +6487 6487 6488 648.7 1297.4 6487 1987-10-06 2024-10-11 01:48:07.000 1987-10-06 2024-10-11 01:48:07 +6488 6488 6489 648.8 1297.6000000000001 6488 1987-10-07 2024-10-11 01:48:08.000 1987-10-07 2024-10-11 01:48:08 +6489 6489 6490 648.9 1297.8000000000002 6489 1987-10-08 2024-10-11 01:48:09.000 1987-10-08 2024-10-11 01:48:09 +6491 6491 6492 649.1 1298.2 6491 1987-10-10 2024-10-11 01:48:11.000 1987-10-10 2024-10-11 01:48:11 +6492 6492 6493 649.2 1298.4 6492 1987-10-11 2024-10-11 01:48:12.000 1987-10-11 2024-10-11 01:48:12 +6493 6493 6494 649.3 1298.6000000000001 6493 1987-10-12 2024-10-11 01:48:13.000 1987-10-12 2024-10-11 01:48:13 +6494 6494 6495 649.4 1298.8000000000002 6494 1987-10-13 2024-10-11 01:48:14.000 1987-10-13 2024-10-11 01:48:14 +6496 6496 6497 649.6 1299.2 6496 1987-10-15 2024-10-11 01:48:16.000 1987-10-15 2024-10-11 01:48:16 +6497 6497 6498 649.7 1299.4 6497 1987-10-16 2024-10-11 01:48:17.000 1987-10-16 2024-10-11 01:48:17 +6498 6498 6499 649.8 1299.6000000000001 6498 1987-10-17 2024-10-11 01:48:18.000 1987-10-17 2024-10-11 01:48:18 +6499 6499 6500 649.9 1299.8000000000002 6499 1987-10-18 2024-10-11 01:48:19.000 1987-10-18 2024-10-11 01:48:19 +6501 6501 6502 650.1 1300.2 6501 1987-10-20 2024-10-11 01:48:21.000 1987-10-20 2024-10-11 01:48:21 +6502 6502 6503 650.2 1300.4 6502 1987-10-21 2024-10-11 01:48:22.000 1987-10-21 2024-10-11 01:48:22 +6503 6503 6504 650.3 1300.6000000000001 6503 1987-10-22 2024-10-11 01:48:23.000 1987-10-22 2024-10-11 01:48:23 +6504 6504 6505 650.4 1300.8000000000002 6504 1987-10-23 2024-10-11 01:48:24.000 1987-10-23 2024-10-11 01:48:24 +6506 6506 6507 650.6 1301.2 6506 1987-10-25 2024-10-11 01:48:26.000 1987-10-25 2024-10-11 01:48:26 +6507 6507 6508 650.7 1301.4 6507 1987-10-26 2024-10-11 01:48:27.000 1987-10-26 2024-10-11 01:48:27 +6508 6508 6509 650.8 1301.6000000000001 6508 1987-10-27 2024-10-11 01:48:28.000 1987-10-27 2024-10-11 01:48:28 +6509 6509 6510 650.9 1301.8000000000002 6509 1987-10-28 2024-10-11 01:48:29.000 1987-10-28 2024-10-11 01:48:29 +6511 6511 6512 651.1 1302.2 6511 1987-10-30 2024-10-11 01:48:31.000 1987-10-30 2024-10-11 01:48:31 +6512 6512 6513 651.2 1302.4 6512 1987-10-31 2024-10-11 01:48:32.000 1987-10-31 2024-10-11 01:48:32 +6513 6513 6514 651.3 1302.6000000000001 6513 1987-11-01 2024-10-11 01:48:33.000 1987-11-01 2024-10-11 01:48:33 +6514 6514 6515 651.4 1302.8000000000002 6514 1987-11-02 2024-10-11 01:48:34.000 1987-11-02 2024-10-11 01:48:34 +6516 6516 6517 651.6 1303.2 6516 1987-11-04 2024-10-11 01:48:36.000 1987-11-04 2024-10-11 01:48:36 +6517 6517 6518 651.7 1303.4 6517 1987-11-05 2024-10-11 01:48:37.000 1987-11-05 2024-10-11 01:48:37 +6518 6518 6519 651.8 1303.6000000000001 6518 1987-11-06 2024-10-11 01:48:38.000 1987-11-06 2024-10-11 01:48:38 +6519 6519 6520 651.9 1303.8000000000002 6519 1987-11-07 2024-10-11 01:48:39.000 1987-11-07 2024-10-11 01:48:39 +6521 6521 6522 652.1 1304.2 6521 1987-11-09 2024-10-11 01:48:41.000 1987-11-09 2024-10-11 01:48:41 +6522 6522 6523 652.2 1304.4 6522 1987-11-10 2024-10-11 01:48:42.000 1987-11-10 2024-10-11 01:48:42 +6523 6523 6524 652.3 1304.6000000000001 6523 1987-11-11 2024-10-11 01:48:43.000 1987-11-11 2024-10-11 01:48:43 +6524 6524 6525 652.4 1304.8000000000002 6524 1987-11-12 2024-10-11 01:48:44.000 1987-11-12 2024-10-11 01:48:44 +6526 6526 6527 652.6 1305.2 6526 1987-11-14 2024-10-11 01:48:46.000 1987-11-14 2024-10-11 01:48:46 +6527 6527 6528 652.7 1305.4 6527 1987-11-15 2024-10-11 01:48:47.000 1987-11-15 2024-10-11 01:48:47 +6528 6528 6529 652.8 1305.6000000000001 6528 1987-11-16 2024-10-11 01:48:48.000 1987-11-16 2024-10-11 01:48:48 +6529 6529 6530 652.9 1305.8000000000002 6529 1987-11-17 2024-10-11 01:48:49.000 1987-11-17 2024-10-11 01:48:49 +6531 6531 6532 653.1 1306.2 6531 1987-11-19 2024-10-11 01:48:51.000 1987-11-19 2024-10-11 01:48:51 +6532 6532 6533 653.2 1306.4 6532 1987-11-20 2024-10-11 01:48:52.000 1987-11-20 2024-10-11 01:48:52 +6533 6533 6534 653.3 1306.6000000000001 6533 1987-11-21 2024-10-11 01:48:53.000 1987-11-21 2024-10-11 01:48:53 +6534 6534 6535 653.4 1306.8000000000002 6534 1987-11-22 2024-10-11 01:48:54.000 1987-11-22 2024-10-11 01:48:54 +6536 6536 6537 653.6 1307.2 6536 1987-11-24 2024-10-11 01:48:56.000 1987-11-24 2024-10-11 01:48:56 +6537 6537 6538 653.7 1307.4 6537 1987-11-25 2024-10-11 01:48:57.000 1987-11-25 2024-10-11 01:48:57 +6538 6538 6539 653.8 1307.6000000000001 6538 1987-11-26 2024-10-11 01:48:58.000 1987-11-26 2024-10-11 01:48:58 +6539 6539 6540 653.9 1307.8000000000002 6539 1987-11-27 2024-10-11 01:48:59.000 1987-11-27 2024-10-11 01:48:59 +6541 6541 6542 654.1 1308.2 6541 1987-11-29 2024-10-11 01:49:01.000 1987-11-29 2024-10-11 01:49:01 +6542 6542 6543 654.2 1308.4 6542 1987-11-30 2024-10-11 01:49:02.000 1987-11-30 2024-10-11 01:49:02 +6543 6543 6544 654.3 1308.6000000000001 6543 1987-12-01 2024-10-11 01:49:03.000 1987-12-01 2024-10-11 01:49:03 +6544 6544 6545 654.4 1308.8000000000002 6544 1987-12-02 2024-10-11 01:49:04.000 1987-12-02 2024-10-11 01:49:04 +6546 6546 6547 654.6 1309.2 6546 1987-12-04 2024-10-11 01:49:06.000 1987-12-04 2024-10-11 01:49:06 +6547 6547 6548 654.7 1309.4 6547 1987-12-05 2024-10-11 01:49:07.000 1987-12-05 2024-10-11 01:49:07 +6548 6548 6549 654.8 1309.6000000000001 6548 1987-12-06 2024-10-11 01:49:08.000 1987-12-06 2024-10-11 01:49:08 +6549 6549 6550 654.9 1309.8000000000002 6549 1987-12-07 2024-10-11 01:49:09.000 1987-12-07 2024-10-11 01:49:09 +6551 6551 6552 655.1 1310.2 6551 1987-12-09 2024-10-11 01:49:11.000 1987-12-09 2024-10-11 01:49:11 +6552 6552 6553 655.2 1310.4 6552 1987-12-10 2024-10-11 01:49:12.000 1987-12-10 2024-10-11 01:49:12 +6553 6553 6554 655.3 1310.6000000000001 6553 1987-12-11 2024-10-11 01:49:13.000 1987-12-11 2024-10-11 01:49:13 +6554 6554 6555 655.4 1310.8000000000002 6554 1987-12-12 2024-10-11 01:49:14.000 1987-12-12 2024-10-11 01:49:14 +6556 6556 6557 655.6 1311.2 6556 1987-12-14 2024-10-11 01:49:16.000 1987-12-14 2024-10-11 01:49:16 +6557 6557 6558 655.7 1311.4 6557 1987-12-15 2024-10-11 01:49:17.000 1987-12-15 2024-10-11 01:49:17 +6558 6558 6559 655.8 1311.6000000000001 6558 1987-12-16 2024-10-11 01:49:18.000 1987-12-16 2024-10-11 01:49:18 +6559 6559 6560 655.9 1311.8000000000002 6559 1987-12-17 2024-10-11 01:49:19.000 1987-12-17 2024-10-11 01:49:19 +6561 6561 6562 656.1 1312.2 6561 1987-12-19 2024-10-11 01:49:21.000 1987-12-19 2024-10-11 01:49:21 +6562 6562 6563 656.2 1312.4 6562 1987-12-20 2024-10-11 01:49:22.000 1987-12-20 2024-10-11 01:49:22 +6563 6563 6564 656.3 1312.6000000000001 6563 1987-12-21 2024-10-11 01:49:23.000 1987-12-21 2024-10-11 01:49:23 +6564 6564 6565 656.4 1312.8000000000002 6564 1987-12-22 2024-10-11 01:49:24.000 1987-12-22 2024-10-11 01:49:24 +6566 6566 6567 656.6 1313.2 6566 1987-12-24 2024-10-11 01:49:26.000 1987-12-24 2024-10-11 01:49:26 +6567 6567 6568 656.7 1313.4 6567 1987-12-25 2024-10-11 01:49:27.000 1987-12-25 2024-10-11 01:49:27 +6568 6568 6569 656.8 1313.6000000000001 6568 1987-12-26 2024-10-11 01:49:28.000 1987-12-26 2024-10-11 01:49:28 +6569 6569 6570 656.9 1313.8000000000002 6569 1987-12-27 2024-10-11 01:49:29.000 1987-12-27 2024-10-11 01:49:29 +6571 6571 6572 657.1 1314.2 6571 1987-12-29 2024-10-11 01:49:31.000 1987-12-29 2024-10-11 01:49:31 +6572 6572 6573 657.2 1314.4 6572 1987-12-30 2024-10-11 01:49:32.000 1987-12-30 2024-10-11 01:49:32 +6573 6573 6574 657.3 1314.6000000000001 6573 1987-12-31 2024-10-11 01:49:33.000 1987-12-31 2024-10-11 01:49:33 +6574 6574 6575 657.4 1314.8000000000002 6574 1988-01-01 2024-10-11 01:49:34.000 1988-01-01 2024-10-11 01:49:34 +6576 6576 6577 657.6 1315.2 6576 1988-01-03 2024-10-11 01:49:36.000 1988-01-03 2024-10-11 01:49:36 +6577 6577 6578 657.7 1315.4 6577 1988-01-04 2024-10-11 01:49:37.000 1988-01-04 2024-10-11 01:49:37 +6578 6578 6579 657.8 1315.6000000000001 6578 1988-01-05 2024-10-11 01:49:38.000 1988-01-05 2024-10-11 01:49:38 +6579 6579 6580 657.9 1315.8000000000002 6579 1988-01-06 2024-10-11 01:49:39.000 1988-01-06 2024-10-11 01:49:39 +6581 6581 6582 658.1 1316.2 6581 1988-01-08 2024-10-11 01:49:41.000 1988-01-08 2024-10-11 01:49:41 +6582 6582 6583 658.2 1316.4 6582 1988-01-09 2024-10-11 01:49:42.000 1988-01-09 2024-10-11 01:49:42 +6583 6583 6584 658.3 1316.6000000000001 6583 1988-01-10 2024-10-11 01:49:43.000 1988-01-10 2024-10-11 01:49:43 +6584 6584 6585 658.4 1316.8000000000002 6584 1988-01-11 2024-10-11 01:49:44.000 1988-01-11 2024-10-11 01:49:44 +6586 6586 6587 658.6 1317.2 6586 1988-01-13 2024-10-11 01:49:46.000 1988-01-13 2024-10-11 01:49:46 +6587 6587 6588 658.7 1317.4 6587 1988-01-14 2024-10-11 01:49:47.000 1988-01-14 2024-10-11 01:49:47 +6588 6588 6589 658.8 1317.6000000000001 6588 1988-01-15 2024-10-11 01:49:48.000 1988-01-15 2024-10-11 01:49:48 +6589 6589 6590 658.9 1317.8000000000002 6589 1988-01-16 2024-10-11 01:49:49.000 1988-01-16 2024-10-11 01:49:49 +6591 6591 6592 659.1 1318.2 6591 1988-01-18 2024-10-11 01:49:51.000 1988-01-18 2024-10-11 01:49:51 +6592 6592 6593 659.2 1318.4 6592 1988-01-19 2024-10-11 01:49:52.000 1988-01-19 2024-10-11 01:49:52 +6593 6593 6594 659.3 1318.6000000000001 6593 1988-01-20 2024-10-11 01:49:53.000 1988-01-20 2024-10-11 01:49:53 +6594 6594 6595 659.4 1318.8000000000002 6594 1988-01-21 2024-10-11 01:49:54.000 1988-01-21 2024-10-11 01:49:54 +6596 6596 6597 659.6 1319.2 6596 1988-01-23 2024-10-11 01:49:56.000 1988-01-23 2024-10-11 01:49:56 +6597 6597 6598 659.7 1319.4 6597 1988-01-24 2024-10-11 01:49:57.000 1988-01-24 2024-10-11 01:49:57 +6598 6598 6599 659.8 1319.6000000000001 6598 1988-01-25 2024-10-11 01:49:58.000 1988-01-25 2024-10-11 01:49:58 +6599 6599 6600 659.9 1319.8000000000002 6599 1988-01-26 2024-10-11 01:49:59.000 1988-01-26 2024-10-11 01:49:59 +6601 6601 6602 660.1 1320.2 6601 1988-01-28 2024-10-11 01:50:01.000 1988-01-28 2024-10-11 01:50:01 +6602 6602 6603 660.2 1320.4 6602 1988-01-29 2024-10-11 01:50:02.000 1988-01-29 2024-10-11 01:50:02 +6603 6603 6604 660.3 1320.6000000000001 6603 1988-01-30 2024-10-11 01:50:03.000 1988-01-30 2024-10-11 01:50:03 +6604 6604 6605 660.4 1320.8000000000002 6604 1988-01-31 2024-10-11 01:50:04.000 1988-01-31 2024-10-11 01:50:04 +6606 6606 6607 660.6 1321.2 6606 1988-02-02 2024-10-11 01:50:06.000 1988-02-02 2024-10-11 01:50:06 +6607 6607 6608 660.7 1321.4 6607 1988-02-03 2024-10-11 01:50:07.000 1988-02-03 2024-10-11 01:50:07 +6608 6608 6609 660.8 1321.6000000000001 6608 1988-02-04 2024-10-11 01:50:08.000 1988-02-04 2024-10-11 01:50:08 +6609 6609 6610 660.9 1321.8000000000002 6609 1988-02-05 2024-10-11 01:50:09.000 1988-02-05 2024-10-11 01:50:09 +6611 6611 6612 661.1 1322.2 6611 1988-02-07 2024-10-11 01:50:11.000 1988-02-07 2024-10-11 01:50:11 +6612 6612 6613 661.2 1322.4 6612 1988-02-08 2024-10-11 01:50:12.000 1988-02-08 2024-10-11 01:50:12 +6613 6613 6614 661.3 1322.6000000000001 6613 1988-02-09 2024-10-11 01:50:13.000 1988-02-09 2024-10-11 01:50:13 +6614 6614 6615 661.4 1322.8000000000002 6614 1988-02-10 2024-10-11 01:50:14.000 1988-02-10 2024-10-11 01:50:14 +6616 6616 6617 661.6 1323.2 6616 1988-02-12 2024-10-11 01:50:16.000 1988-02-12 2024-10-11 01:50:16 +6617 6617 6618 661.7 1323.4 6617 1988-02-13 2024-10-11 01:50:17.000 1988-02-13 2024-10-11 01:50:17 +6618 6618 6619 661.8 1323.6000000000001 6618 1988-02-14 2024-10-11 01:50:18.000 1988-02-14 2024-10-11 01:50:18 +6619 6619 6620 661.9 1323.8000000000002 6619 1988-02-15 2024-10-11 01:50:19.000 1988-02-15 2024-10-11 01:50:19 +6621 6621 6622 662.1 1324.2 6621 1988-02-17 2024-10-11 01:50:21.000 1988-02-17 2024-10-11 01:50:21 +6622 6622 6623 662.2 1324.4 6622 1988-02-18 2024-10-11 01:50:22.000 1988-02-18 2024-10-11 01:50:22 +6623 6623 6624 662.3 1324.6000000000001 6623 1988-02-19 2024-10-11 01:50:23.000 1988-02-19 2024-10-11 01:50:23 +6624 6624 6625 662.4 1324.8000000000002 6624 1988-02-20 2024-10-11 01:50:24.000 1988-02-20 2024-10-11 01:50:24 +6626 6626 6627 662.6 1325.2 6626 1988-02-22 2024-10-11 01:50:26.000 1988-02-22 2024-10-11 01:50:26 +6627 6627 6628 662.7 1325.4 6627 1988-02-23 2024-10-11 01:50:27.000 1988-02-23 2024-10-11 01:50:27 +6628 6628 6629 662.8 1325.6000000000001 6628 1988-02-24 2024-10-11 01:50:28.000 1988-02-24 2024-10-11 01:50:28 +6629 6629 6630 662.9 1325.8000000000002 6629 1988-02-25 2024-10-11 01:50:29.000 1988-02-25 2024-10-11 01:50:29 +6631 6631 6632 663.1 1326.2 6631 1988-02-27 2024-10-11 01:50:31.000 1988-02-27 2024-10-11 01:50:31 +6632 6632 6633 663.2 1326.4 6632 1988-02-28 2024-10-11 01:50:32.000 1988-02-28 2024-10-11 01:50:32 +6633 6633 6634 663.3 1326.6000000000001 6633 1988-02-29 2024-10-11 01:50:33.000 1988-02-29 2024-10-11 01:50:33 +6634 6634 6635 663.4 1326.8000000000002 6634 1988-03-01 2024-10-11 01:50:34.000 1988-03-01 2024-10-11 01:50:34 +6636 6636 6637 663.6 1327.2 6636 1988-03-03 2024-10-11 01:50:36.000 1988-03-03 2024-10-11 01:50:36 +6637 6637 6638 663.7 1327.4 6637 1988-03-04 2024-10-11 01:50:37.000 1988-03-04 2024-10-11 01:50:37 +6638 6638 6639 663.8 1327.6000000000001 6638 1988-03-05 2024-10-11 01:50:38.000 1988-03-05 2024-10-11 01:50:38 +6639 6639 6640 663.9 1327.8000000000002 6639 1988-03-06 2024-10-11 01:50:39.000 1988-03-06 2024-10-11 01:50:39 +6641 6641 6642 664.1 1328.2 6641 1988-03-08 2024-10-11 01:50:41.000 1988-03-08 2024-10-11 01:50:41 +6642 6642 6643 664.2 1328.4 6642 1988-03-09 2024-10-11 01:50:42.000 1988-03-09 2024-10-11 01:50:42 +6643 6643 6644 664.3 1328.6000000000001 6643 1988-03-10 2024-10-11 01:50:43.000 1988-03-10 2024-10-11 01:50:43 +6644 6644 6645 664.4 1328.8000000000002 6644 1988-03-11 2024-10-11 01:50:44.000 1988-03-11 2024-10-11 01:50:44 +6646 6646 6647 664.6 1329.2 6646 1988-03-13 2024-10-11 01:50:46.000 1988-03-13 2024-10-11 01:50:46 +6647 6647 6648 664.7 1329.4 6647 1988-03-14 2024-10-11 01:50:47.000 1988-03-14 2024-10-11 01:50:47 +6648 6648 6649 664.8 1329.6000000000001 6648 1988-03-15 2024-10-11 01:50:48.000 1988-03-15 2024-10-11 01:50:48 +6649 6649 6650 664.9 1329.8000000000002 6649 1988-03-16 2024-10-11 01:50:49.000 1988-03-16 2024-10-11 01:50:49 +6651 6651 6652 665.1 1330.2 6651 1988-03-18 2024-10-11 01:50:51.000 1988-03-18 2024-10-11 01:50:51 +6652 6652 6653 665.2 1330.4 6652 1988-03-19 2024-10-11 01:50:52.000 1988-03-19 2024-10-11 01:50:52 +6653 6653 6654 665.3 1330.6000000000001 6653 1988-03-20 2024-10-11 01:50:53.000 1988-03-20 2024-10-11 01:50:53 +6654 6654 6655 665.4 1330.8000000000002 6654 1988-03-21 2024-10-11 01:50:54.000 1988-03-21 2024-10-11 01:50:54 +6656 6656 6657 665.6 1331.2 6656 1988-03-23 2024-10-11 01:50:56.000 1988-03-23 2024-10-11 01:50:56 +6657 6657 6658 665.7 1331.4 6657 1988-03-24 2024-10-11 01:50:57.000 1988-03-24 2024-10-11 01:50:57 +6658 6658 6659 665.8 1331.6000000000001 6658 1988-03-25 2024-10-11 01:50:58.000 1988-03-25 2024-10-11 01:50:58 +6659 6659 6660 665.9 1331.8000000000002 6659 1988-03-26 2024-10-11 01:50:59.000 1988-03-26 2024-10-11 01:50:59 +6661 6661 6662 666.1 1332.2 6661 1988-03-28 2024-10-11 01:51:01.000 1988-03-28 2024-10-11 01:51:01 +6662 6662 6663 666.2 1332.4 6662 1988-03-29 2024-10-11 01:51:02.000 1988-03-29 2024-10-11 01:51:02 +6663 6663 6664 666.3 1332.6000000000001 6663 1988-03-30 2024-10-11 01:51:03.000 1988-03-30 2024-10-11 01:51:03 +6664 6664 6665 666.4 1332.8000000000002 6664 1988-03-31 2024-10-11 01:51:04.000 1988-03-31 2024-10-11 01:51:04 +6666 6666 6667 666.6 1333.2 6666 1988-04-02 2024-10-11 01:51:06.000 1988-04-02 2024-10-11 01:51:06 +6667 6667 6668 666.7 1333.4 6667 1988-04-03 2024-10-11 01:51:07.000 1988-04-03 2024-10-11 01:51:07 +6668 6668 6669 666.8 1333.6000000000001 6668 1988-04-04 2024-10-11 01:51:08.000 1988-04-04 2024-10-11 01:51:08 +6669 6669 6670 666.9 1333.8000000000002 6669 1988-04-05 2024-10-11 01:51:09.000 1988-04-05 2024-10-11 01:51:09 +6671 6671 6672 667.1 1334.2 6671 1988-04-07 2024-10-11 01:51:11.000 1988-04-07 2024-10-11 01:51:11 +6672 6672 6673 667.2 1334.4 6672 1988-04-08 2024-10-11 01:51:12.000 1988-04-08 2024-10-11 01:51:12 +6673 6673 6674 667.3 1334.6000000000001 6673 1988-04-09 2024-10-11 01:51:13.000 1988-04-09 2024-10-11 01:51:13 +6674 6674 6675 667.4 1334.8000000000002 6674 1988-04-10 2024-10-11 01:51:14.000 1988-04-10 2024-10-11 01:51:14 +6676 6676 6677 667.6 1335.2 6676 1988-04-12 2024-10-11 01:51:16.000 1988-04-12 2024-10-11 01:51:16 +6677 6677 6678 667.7 1335.4 6677 1988-04-13 2024-10-11 01:51:17.000 1988-04-13 2024-10-11 01:51:17 +6678 6678 6679 667.8 1335.6000000000001 6678 1988-04-14 2024-10-11 01:51:18.000 1988-04-14 2024-10-11 01:51:18 +6679 6679 6680 667.9 1335.8000000000002 6679 1988-04-15 2024-10-11 01:51:19.000 1988-04-15 2024-10-11 01:51:19 +6681 6681 6682 668.1 1336.2 6681 1988-04-17 2024-10-11 01:51:21.000 1988-04-17 2024-10-11 01:51:21 +6682 6682 6683 668.2 1336.4 6682 1988-04-18 2024-10-11 01:51:22.000 1988-04-18 2024-10-11 01:51:22 +6683 6683 6684 668.3 1336.6000000000001 6683 1988-04-19 2024-10-11 01:51:23.000 1988-04-19 2024-10-11 01:51:23 +6684 6684 6685 668.4 1336.8000000000002 6684 1988-04-20 2024-10-11 01:51:24.000 1988-04-20 2024-10-11 01:51:24 +6686 6686 6687 668.6 1337.2 6686 1988-04-22 2024-10-11 01:51:26.000 1988-04-22 2024-10-11 01:51:26 +6687 6687 6688 668.7 1337.4 6687 1988-04-23 2024-10-11 01:51:27.000 1988-04-23 2024-10-11 01:51:27 +6688 6688 6689 668.8 1337.6000000000001 6688 1988-04-24 2024-10-11 01:51:28.000 1988-04-24 2024-10-11 01:51:28 +6689 6689 6690 668.9 1337.8000000000002 6689 1988-04-25 2024-10-11 01:51:29.000 1988-04-25 2024-10-11 01:51:29 +6691 6691 6692 669.1 1338.2 6691 1988-04-27 2024-10-11 01:51:31.000 1988-04-27 2024-10-11 01:51:31 +6692 6692 6693 669.2 1338.4 6692 1988-04-28 2024-10-11 01:51:32.000 1988-04-28 2024-10-11 01:51:32 +6693 6693 6694 669.3 1338.6000000000001 6693 1988-04-29 2024-10-11 01:51:33.000 1988-04-29 2024-10-11 01:51:33 +6694 6694 6695 669.4 1338.8000000000002 6694 1988-04-30 2024-10-11 01:51:34.000 1988-04-30 2024-10-11 01:51:34 +6696 6696 6697 669.6 1339.2 6696 1988-05-02 2024-10-11 01:51:36.000 1988-05-02 2024-10-11 01:51:36 +6697 6697 6698 669.7 1339.4 6697 1988-05-03 2024-10-11 01:51:37.000 1988-05-03 2024-10-11 01:51:37 +6698 6698 6699 669.8 1339.6000000000001 6698 1988-05-04 2024-10-11 01:51:38.000 1988-05-04 2024-10-11 01:51:38 +6699 6699 6700 669.9 1339.8000000000002 6699 1988-05-05 2024-10-11 01:51:39.000 1988-05-05 2024-10-11 01:51:39 +6701 6701 6702 670.1 1340.2 6701 1988-05-07 2024-10-11 01:51:41.000 1988-05-07 2024-10-11 01:51:41 +6702 6702 6703 670.2 1340.4 6702 1988-05-08 2024-10-11 01:51:42.000 1988-05-08 2024-10-11 01:51:42 +6703 6703 6704 670.3 1340.6000000000001 6703 1988-05-09 2024-10-11 01:51:43.000 1988-05-09 2024-10-11 01:51:43 +6704 6704 6705 670.4 1340.8000000000002 6704 1988-05-10 2024-10-11 01:51:44.000 1988-05-10 2024-10-11 01:51:44 +6706 6706 6707 670.6 1341.2 6706 1988-05-12 2024-10-11 01:51:46.000 1988-05-12 2024-10-11 01:51:46 +6707 6707 6708 670.7 1341.4 6707 1988-05-13 2024-10-11 01:51:47.000 1988-05-13 2024-10-11 01:51:47 +6708 6708 6709 670.8 1341.6000000000001 6708 1988-05-14 2024-10-11 01:51:48.000 1988-05-14 2024-10-11 01:51:48 +6709 6709 6710 670.9 1341.8000000000002 6709 1988-05-15 2024-10-11 01:51:49.000 1988-05-15 2024-10-11 01:51:49 +6711 6711 6712 671.1 1342.2 6711 1988-05-17 2024-10-11 01:51:51.000 1988-05-17 2024-10-11 01:51:51 +6712 6712 6713 671.2 1342.4 6712 1988-05-18 2024-10-11 01:51:52.000 1988-05-18 2024-10-11 01:51:52 +6713 6713 6714 671.3 1342.6000000000001 6713 1988-05-19 2024-10-11 01:51:53.000 1988-05-19 2024-10-11 01:51:53 +6714 6714 6715 671.4 1342.8000000000002 6714 1988-05-20 2024-10-11 01:51:54.000 1988-05-20 2024-10-11 01:51:54 +6716 6716 6717 671.6 1343.2 6716 1988-05-22 2024-10-11 01:51:56.000 1988-05-22 2024-10-11 01:51:56 +6717 6717 6718 671.7 1343.4 6717 1988-05-23 2024-10-11 01:51:57.000 1988-05-23 2024-10-11 01:51:57 +6718 6718 6719 671.8 1343.6000000000001 6718 1988-05-24 2024-10-11 01:51:58.000 1988-05-24 2024-10-11 01:51:58 +6719 6719 6720 671.9 1343.8000000000002 6719 1988-05-25 2024-10-11 01:51:59.000 1988-05-25 2024-10-11 01:51:59 +6721 6721 6722 672.1 1344.2 6721 1988-05-27 2024-10-11 01:52:01.000 1988-05-27 2024-10-11 01:52:01 +6722 6722 6723 672.2 1344.4 6722 1988-05-28 2024-10-11 01:52:02.000 1988-05-28 2024-10-11 01:52:02 +6723 6723 6724 672.3 1344.6000000000001 6723 1988-05-29 2024-10-11 01:52:03.000 1988-05-29 2024-10-11 01:52:03 +6724 6724 6725 672.4 1344.8000000000002 6724 1988-05-30 2024-10-11 01:52:04.000 1988-05-30 2024-10-11 01:52:04 +6726 6726 6727 672.6 1345.2 6726 1988-06-01 2024-10-11 01:52:06.000 1988-06-01 2024-10-11 01:52:06 +6727 6727 6728 672.7 1345.4 6727 1988-06-02 2024-10-11 01:52:07.000 1988-06-02 2024-10-11 01:52:07 +6728 6728 6729 672.8 1345.6000000000001 6728 1988-06-03 2024-10-11 01:52:08.000 1988-06-03 2024-10-11 01:52:08 +6729 6729 6730 672.9 1345.8000000000002 6729 1988-06-04 2024-10-11 01:52:09.000 1988-06-04 2024-10-11 01:52:09 +6731 6731 6732 673.1 1346.2 6731 1988-06-06 2024-10-11 01:52:11.000 1988-06-06 2024-10-11 01:52:11 +6732 6732 6733 673.2 1346.4 6732 1988-06-07 2024-10-11 01:52:12.000 1988-06-07 2024-10-11 01:52:12 +6733 6733 6734 673.3 1346.6000000000001 6733 1988-06-08 2024-10-11 01:52:13.000 1988-06-08 2024-10-11 01:52:13 +6734 6734 6735 673.4 1346.8000000000002 6734 1988-06-09 2024-10-11 01:52:14.000 1988-06-09 2024-10-11 01:52:14 +6736 6736 6737 673.6 1347.2 6736 1988-06-11 2024-10-11 01:52:16.000 1988-06-11 2024-10-11 01:52:16 +6737 6737 6738 673.7 1347.4 6737 1988-06-12 2024-10-11 01:52:17.000 1988-06-12 2024-10-11 01:52:17 +6738 6738 6739 673.8 1347.6000000000001 6738 1988-06-13 2024-10-11 01:52:18.000 1988-06-13 2024-10-11 01:52:18 +6739 6739 6740 673.9 1347.8000000000002 6739 1988-06-14 2024-10-11 01:52:19.000 1988-06-14 2024-10-11 01:52:19 +6741 6741 6742 674.1 1348.2 6741 1988-06-16 2024-10-11 01:52:21.000 1988-06-16 2024-10-11 01:52:21 +6742 6742 6743 674.2 1348.4 6742 1988-06-17 2024-10-11 01:52:22.000 1988-06-17 2024-10-11 01:52:22 +6743 6743 6744 674.3 1348.6000000000001 6743 1988-06-18 2024-10-11 01:52:23.000 1988-06-18 2024-10-11 01:52:23 +6744 6744 6745 674.4 1348.8000000000002 6744 1988-06-19 2024-10-11 01:52:24.000 1988-06-19 2024-10-11 01:52:24 +6746 6746 6747 674.6 1349.2 6746 1988-06-21 2024-10-11 01:52:26.000 1988-06-21 2024-10-11 01:52:26 +6747 6747 6748 674.7 1349.4 6747 1988-06-22 2024-10-11 01:52:27.000 1988-06-22 2024-10-11 01:52:27 +6748 6748 6749 674.8 1349.6000000000001 6748 1988-06-23 2024-10-11 01:52:28.000 1988-06-23 2024-10-11 01:52:28 +6749 6749 6750 674.9 1349.8000000000002 6749 1988-06-24 2024-10-11 01:52:29.000 1988-06-24 2024-10-11 01:52:29 +6751 6751 6752 675.1 1350.2 6751 1988-06-26 2024-10-11 01:52:31.000 1988-06-26 2024-10-11 01:52:31 +6752 6752 6753 675.2 1350.4 6752 1988-06-27 2024-10-11 01:52:32.000 1988-06-27 2024-10-11 01:52:32 +6753 6753 6754 675.3 1350.6000000000001 6753 1988-06-28 2024-10-11 01:52:33.000 1988-06-28 2024-10-11 01:52:33 +6754 6754 6755 675.4 1350.8000000000002 6754 1988-06-29 2024-10-11 01:52:34.000 1988-06-29 2024-10-11 01:52:34 +6756 6756 6757 675.6 1351.2 6756 1988-07-01 2024-10-11 01:52:36.000 1988-07-01 2024-10-11 01:52:36 +6757 6757 6758 675.7 1351.4 6757 1988-07-02 2024-10-11 01:52:37.000 1988-07-02 2024-10-11 01:52:37 +6758 6758 6759 675.8 1351.6000000000001 6758 1988-07-03 2024-10-11 01:52:38.000 1988-07-03 2024-10-11 01:52:38 +6759 6759 6760 675.9 1351.8000000000002 6759 1988-07-04 2024-10-11 01:52:39.000 1988-07-04 2024-10-11 01:52:39 +6761 6761 6762 676.1 1352.2 6761 1988-07-06 2024-10-11 01:52:41.000 1988-07-06 2024-10-11 01:52:41 +6762 6762 6763 676.2 1352.4 6762 1988-07-07 2024-10-11 01:52:42.000 1988-07-07 2024-10-11 01:52:42 +6763 6763 6764 676.3 1352.6000000000001 6763 1988-07-08 2024-10-11 01:52:43.000 1988-07-08 2024-10-11 01:52:43 +6764 6764 6765 676.4 1352.8000000000002 6764 1988-07-09 2024-10-11 01:52:44.000 1988-07-09 2024-10-11 01:52:44 +6766 6766 6767 676.6 1353.2 6766 1988-07-11 2024-10-11 01:52:46.000 1988-07-11 2024-10-11 01:52:46 +6767 6767 6768 676.7 1353.4 6767 1988-07-12 2024-10-11 01:52:47.000 1988-07-12 2024-10-11 01:52:47 +6768 6768 6769 676.8 1353.6000000000001 6768 1988-07-13 2024-10-11 01:52:48.000 1988-07-13 2024-10-11 01:52:48 +6769 6769 6770 676.9 1353.8000000000002 6769 1988-07-14 2024-10-11 01:52:49.000 1988-07-14 2024-10-11 01:52:49 +6771 6771 6772 677.1 1354.2 6771 1988-07-16 2024-10-11 01:52:51.000 1988-07-16 2024-10-11 01:52:51 +6772 6772 6773 677.2 1354.4 6772 1988-07-17 2024-10-11 01:52:52.000 1988-07-17 2024-10-11 01:52:52 +6773 6773 6774 677.3 1354.6000000000001 6773 1988-07-18 2024-10-11 01:52:53.000 1988-07-18 2024-10-11 01:52:53 +6774 6774 6775 677.4 1354.8000000000002 6774 1988-07-19 2024-10-11 01:52:54.000 1988-07-19 2024-10-11 01:52:54 +6776 6776 6777 677.6 1355.2 6776 1988-07-21 2024-10-11 01:52:56.000 1988-07-21 2024-10-11 01:52:56 +6777 6777 6778 677.7 1355.4 6777 1988-07-22 2024-10-11 01:52:57.000 1988-07-22 2024-10-11 01:52:57 +6778 6778 6779 677.8 1355.6000000000001 6778 1988-07-23 2024-10-11 01:52:58.000 1988-07-23 2024-10-11 01:52:58 +6779 6779 6780 677.9 1355.8000000000002 6779 1988-07-24 2024-10-11 01:52:59.000 1988-07-24 2024-10-11 01:52:59 +6781 6781 6782 678.1 1356.2 6781 1988-07-26 2024-10-11 01:53:01.000 1988-07-26 2024-10-11 01:53:01 +6782 6782 6783 678.2 1356.4 6782 1988-07-27 2024-10-11 01:53:02.000 1988-07-27 2024-10-11 01:53:02 +6783 6783 6784 678.3 1356.6000000000001 6783 1988-07-28 2024-10-11 01:53:03.000 1988-07-28 2024-10-11 01:53:03 +6784 6784 6785 678.4 1356.8000000000002 6784 1988-07-29 2024-10-11 01:53:04.000 1988-07-29 2024-10-11 01:53:04 +6786 6786 6787 678.6 1357.2 6786 1988-07-31 2024-10-11 01:53:06.000 1988-07-31 2024-10-11 01:53:06 +6787 6787 6788 678.7 1357.4 6787 1988-08-01 2024-10-11 01:53:07.000 1988-08-01 2024-10-11 01:53:07 +6788 6788 6789 678.8 1357.6000000000001 6788 1988-08-02 2024-10-11 01:53:08.000 1988-08-02 2024-10-11 01:53:08 +6789 6789 6790 678.9 1357.8000000000002 6789 1988-08-03 2024-10-11 01:53:09.000 1988-08-03 2024-10-11 01:53:09 +6791 6791 6792 679.1 1358.2 6791 1988-08-05 2024-10-11 01:53:11.000 1988-08-05 2024-10-11 01:53:11 +6792 6792 6793 679.2 1358.4 6792 1988-08-06 2024-10-11 01:53:12.000 1988-08-06 2024-10-11 01:53:12 +6793 6793 6794 679.3 1358.6000000000001 6793 1988-08-07 2024-10-11 01:53:13.000 1988-08-07 2024-10-11 01:53:13 +6794 6794 6795 679.4 1358.8000000000002 6794 1988-08-08 2024-10-11 01:53:14.000 1988-08-08 2024-10-11 01:53:14 +6796 6796 6797 679.6 1359.2 6796 1988-08-10 2024-10-11 01:53:16.000 1988-08-10 2024-10-11 01:53:16 +6797 6797 6798 679.7 1359.4 6797 1988-08-11 2024-10-11 01:53:17.000 1988-08-11 2024-10-11 01:53:17 +6798 6798 6799 679.8 1359.6000000000001 6798 1988-08-12 2024-10-11 01:53:18.000 1988-08-12 2024-10-11 01:53:18 +6799 6799 6800 679.9 1359.8000000000002 6799 1988-08-13 2024-10-11 01:53:19.000 1988-08-13 2024-10-11 01:53:19 +6801 6801 6802 680.1 1360.2 6801 1988-08-15 2024-10-11 01:53:21.000 1988-08-15 2024-10-11 01:53:21 +6802 6802 6803 680.2 1360.4 6802 1988-08-16 2024-10-11 01:53:22.000 1988-08-16 2024-10-11 01:53:22 +6803 6803 6804 680.3 1360.6000000000001 6803 1988-08-17 2024-10-11 01:53:23.000 1988-08-17 2024-10-11 01:53:23 +6804 6804 6805 680.4 1360.8000000000002 6804 1988-08-18 2024-10-11 01:53:24.000 1988-08-18 2024-10-11 01:53:24 +6806 6806 6807 680.6 1361.2 6806 1988-08-20 2024-10-11 01:53:26.000 1988-08-20 2024-10-11 01:53:26 +6807 6807 6808 680.7 1361.4 6807 1988-08-21 2024-10-11 01:53:27.000 1988-08-21 2024-10-11 01:53:27 +6808 6808 6809 680.8 1361.6000000000001 6808 1988-08-22 2024-10-11 01:53:28.000 1988-08-22 2024-10-11 01:53:28 +6809 6809 6810 680.9 1361.8000000000002 6809 1988-08-23 2024-10-11 01:53:29.000 1988-08-23 2024-10-11 01:53:29 +6811 6811 6812 681.1 1362.2 6811 1988-08-25 2024-10-11 01:53:31.000 1988-08-25 2024-10-11 01:53:31 +6812 6812 6813 681.2 1362.4 6812 1988-08-26 2024-10-11 01:53:32.000 1988-08-26 2024-10-11 01:53:32 +6813 6813 6814 681.3 1362.6000000000001 6813 1988-08-27 2024-10-11 01:53:33.000 1988-08-27 2024-10-11 01:53:33 +6814 6814 6815 681.4 1362.8000000000002 6814 1988-08-28 2024-10-11 01:53:34.000 1988-08-28 2024-10-11 01:53:34 +6816 6816 6817 681.6 1363.2 6816 1988-08-30 2024-10-11 01:53:36.000 1988-08-30 2024-10-11 01:53:36 +6817 6817 6818 681.7 1363.4 6817 1988-08-31 2024-10-11 01:53:37.000 1988-08-31 2024-10-11 01:53:37 +6818 6818 6819 681.8 1363.6000000000001 6818 1988-09-01 2024-10-11 01:53:38.000 1988-09-01 2024-10-11 01:53:38 +6819 6819 6820 681.9 1363.8000000000002 6819 1988-09-02 2024-10-11 01:53:39.000 1988-09-02 2024-10-11 01:53:39 +6821 6821 6822 682.1 1364.2 6821 1988-09-04 2024-10-11 01:53:41.000 1988-09-04 2024-10-11 01:53:41 +6822 6822 6823 682.2 1364.4 6822 1988-09-05 2024-10-11 01:53:42.000 1988-09-05 2024-10-11 01:53:42 +6823 6823 6824 682.3 1364.6000000000001 6823 1988-09-06 2024-10-11 01:53:43.000 1988-09-06 2024-10-11 01:53:43 +6824 6824 6825 682.4 1364.8000000000002 6824 1988-09-07 2024-10-11 01:53:44.000 1988-09-07 2024-10-11 01:53:44 +6826 6826 6827 682.6 1365.2 6826 1988-09-09 2024-10-11 01:53:46.000 1988-09-09 2024-10-11 01:53:46 +6827 6827 6828 682.7 1365.4 6827 1988-09-10 2024-10-11 01:53:47.000 1988-09-10 2024-10-11 01:53:47 +6828 6828 6829 682.8 1365.6000000000001 6828 1988-09-11 2024-10-11 01:53:48.000 1988-09-11 2024-10-11 01:53:48 +6829 6829 6830 682.9 1365.8000000000002 6829 1988-09-12 2024-10-11 01:53:49.000 1988-09-12 2024-10-11 01:53:49 +6831 6831 6832 683.1 1366.2 6831 1988-09-14 2024-10-11 01:53:51.000 1988-09-14 2024-10-11 01:53:51 +6832 6832 6833 683.2 1366.4 6832 1988-09-15 2024-10-11 01:53:52.000 1988-09-15 2024-10-11 01:53:52 +6833 6833 6834 683.3 1366.6000000000001 6833 1988-09-16 2024-10-11 01:53:53.000 1988-09-16 2024-10-11 01:53:53 +6834 6834 6835 683.4 1366.8000000000002 6834 1988-09-17 2024-10-11 01:53:54.000 1988-09-17 2024-10-11 01:53:54 +6836 6836 6837 683.6 1367.2 6836 1988-09-19 2024-10-11 01:53:56.000 1988-09-19 2024-10-11 01:53:56 +6837 6837 6838 683.7 1367.4 6837 1988-09-20 2024-10-11 01:53:57.000 1988-09-20 2024-10-11 01:53:57 +6838 6838 6839 683.8 1367.6000000000001 6838 1988-09-21 2024-10-11 01:53:58.000 1988-09-21 2024-10-11 01:53:58 +6839 6839 6840 683.9 1367.8000000000002 6839 1988-09-22 2024-10-11 01:53:59.000 1988-09-22 2024-10-11 01:53:59 +6841 6841 6842 684.1 1368.2 6841 1988-09-24 2024-10-11 01:54:01.000 1988-09-24 2024-10-11 01:54:01 +6842 6842 6843 684.2 1368.4 6842 1988-09-25 2024-10-11 01:54:02.000 1988-09-25 2024-10-11 01:54:02 +6843 6843 6844 684.3 1368.6000000000001 6843 1988-09-26 2024-10-11 01:54:03.000 1988-09-26 2024-10-11 01:54:03 +6844 6844 6845 684.4 1368.8000000000002 6844 1988-09-27 2024-10-11 01:54:04.000 1988-09-27 2024-10-11 01:54:04 +6846 6846 6847 684.6 1369.2 6846 1988-09-29 2024-10-11 01:54:06.000 1988-09-29 2024-10-11 01:54:06 +6847 6847 6848 684.7 1369.4 6847 1988-09-30 2024-10-11 01:54:07.000 1988-09-30 2024-10-11 01:54:07 +6848 6848 6849 684.8 1369.6000000000001 6848 1988-10-01 2024-10-11 01:54:08.000 1988-10-01 2024-10-11 01:54:08 +6849 6849 6850 684.9 1369.8000000000002 6849 1988-10-02 2024-10-11 01:54:09.000 1988-10-02 2024-10-11 01:54:09 +6851 6851 6852 685.1 1370.2 6851 1988-10-04 2024-10-11 01:54:11.000 1988-10-04 2024-10-11 01:54:11 +6852 6852 6853 685.2 1370.4 6852 1988-10-05 2024-10-11 01:54:12.000 1988-10-05 2024-10-11 01:54:12 +6853 6853 6854 685.3 1370.6000000000001 6853 1988-10-06 2024-10-11 01:54:13.000 1988-10-06 2024-10-11 01:54:13 +6854 6854 6855 685.4 1370.8000000000002 6854 1988-10-07 2024-10-11 01:54:14.000 1988-10-07 2024-10-11 01:54:14 +6856 6856 6857 685.6 1371.2 6856 1988-10-09 2024-10-11 01:54:16.000 1988-10-09 2024-10-11 01:54:16 +6857 6857 6858 685.7 1371.4 6857 1988-10-10 2024-10-11 01:54:17.000 1988-10-10 2024-10-11 01:54:17 +6858 6858 6859 685.8 1371.6000000000001 6858 1988-10-11 2024-10-11 01:54:18.000 1988-10-11 2024-10-11 01:54:18 +6859 6859 6860 685.9 1371.8000000000002 6859 1988-10-12 2024-10-11 01:54:19.000 1988-10-12 2024-10-11 01:54:19 +6861 6861 6862 686.1 1372.2 6861 1988-10-14 2024-10-11 01:54:21.000 1988-10-14 2024-10-11 01:54:21 +6862 6862 6863 686.2 1372.4 6862 1988-10-15 2024-10-11 01:54:22.000 1988-10-15 2024-10-11 01:54:22 +6863 6863 6864 686.3 1372.6000000000001 6863 1988-10-16 2024-10-11 01:54:23.000 1988-10-16 2024-10-11 01:54:23 +6864 6864 6865 686.4 1372.8000000000002 6864 1988-10-17 2024-10-11 01:54:24.000 1988-10-17 2024-10-11 01:54:24 +6866 6866 6867 686.6 1373.2 6866 1988-10-19 2024-10-11 01:54:26.000 1988-10-19 2024-10-11 01:54:26 +6867 6867 6868 686.7 1373.4 6867 1988-10-20 2024-10-11 01:54:27.000 1988-10-20 2024-10-11 01:54:27 +6868 6868 6869 686.8 1373.6000000000001 6868 1988-10-21 2024-10-11 01:54:28.000 1988-10-21 2024-10-11 01:54:28 +6869 6869 6870 686.9 1373.8000000000002 6869 1988-10-22 2024-10-11 01:54:29.000 1988-10-22 2024-10-11 01:54:29 +6871 6871 6872 687.1 1374.2 6871 1988-10-24 2024-10-11 01:54:31.000 1988-10-24 2024-10-11 01:54:31 +6872 6872 6873 687.2 1374.4 6872 1988-10-25 2024-10-11 01:54:32.000 1988-10-25 2024-10-11 01:54:32 +6873 6873 6874 687.3 1374.6000000000001 6873 1988-10-26 2024-10-11 01:54:33.000 1988-10-26 2024-10-11 01:54:33 +6874 6874 6875 687.4 1374.8000000000002 6874 1988-10-27 2024-10-11 01:54:34.000 1988-10-27 2024-10-11 01:54:34 +6876 6876 6877 687.6 1375.2 6876 1988-10-29 2024-10-11 01:54:36.000 1988-10-29 2024-10-11 01:54:36 +6877 6877 6878 687.7 1375.4 6877 1988-10-30 2024-10-11 01:54:37.000 1988-10-30 2024-10-11 01:54:37 +6878 6878 6879 687.8 1375.6000000000001 6878 1988-10-31 2024-10-11 01:54:38.000 1988-10-31 2024-10-11 01:54:38 +6879 6879 6880 687.9 1375.8000000000002 6879 1988-11-01 2024-10-11 01:54:39.000 1988-11-01 2024-10-11 01:54:39 +6881 6881 6882 688.1 1376.2 6881 1988-11-03 2024-10-11 01:54:41.000 1988-11-03 2024-10-11 01:54:41 +6882 6882 6883 688.2 1376.4 6882 1988-11-04 2024-10-11 01:54:42.000 1988-11-04 2024-10-11 01:54:42 +6883 6883 6884 688.3 1376.6000000000001 6883 1988-11-05 2024-10-11 01:54:43.000 1988-11-05 2024-10-11 01:54:43 +6884 6884 6885 688.4 1376.8000000000002 6884 1988-11-06 2024-10-11 01:54:44.000 1988-11-06 2024-10-11 01:54:44 +6886 6886 6887 688.6 1377.2 6886 1988-11-08 2024-10-11 01:54:46.000 1988-11-08 2024-10-11 01:54:46 +6887 6887 6888 688.7 1377.4 6887 1988-11-09 2024-10-11 01:54:47.000 1988-11-09 2024-10-11 01:54:47 +6888 6888 6889 688.8 1377.6000000000001 6888 1988-11-10 2024-10-11 01:54:48.000 1988-11-10 2024-10-11 01:54:48 +6889 6889 6890 688.9 1377.8000000000002 6889 1988-11-11 2024-10-11 01:54:49.000 1988-11-11 2024-10-11 01:54:49 +6891 6891 6892 689.1 1378.2 6891 1988-11-13 2024-10-11 01:54:51.000 1988-11-13 2024-10-11 01:54:51 +6892 6892 6893 689.2 1378.4 6892 1988-11-14 2024-10-11 01:54:52.000 1988-11-14 2024-10-11 01:54:52 +6893 6893 6894 689.3 1378.6000000000001 6893 1988-11-15 2024-10-11 01:54:53.000 1988-11-15 2024-10-11 01:54:53 +6894 6894 6895 689.4 1378.8000000000002 6894 1988-11-16 2024-10-11 01:54:54.000 1988-11-16 2024-10-11 01:54:54 +6896 6896 6897 689.6 1379.2 6896 1988-11-18 2024-10-11 01:54:56.000 1988-11-18 2024-10-11 01:54:56 +6897 6897 6898 689.7 1379.4 6897 1988-11-19 2024-10-11 01:54:57.000 1988-11-19 2024-10-11 01:54:57 +6898 6898 6899 689.8 1379.6000000000001 6898 1988-11-20 2024-10-11 01:54:58.000 1988-11-20 2024-10-11 01:54:58 +6899 6899 6900 689.9 1379.8000000000002 6899 1988-11-21 2024-10-11 01:54:59.000 1988-11-21 2024-10-11 01:54:59 +6901 6901 6902 690.1 1380.2 6901 1988-11-23 2024-10-11 01:55:01.000 1988-11-23 2024-10-11 01:55:01 +6902 6902 6903 690.2 1380.4 6902 1988-11-24 2024-10-11 01:55:02.000 1988-11-24 2024-10-11 01:55:02 +6903 6903 6904 690.3 1380.6000000000001 6903 1988-11-25 2024-10-11 01:55:03.000 1988-11-25 2024-10-11 01:55:03 +6904 6904 6905 690.4 1380.8000000000002 6904 1988-11-26 2024-10-11 01:55:04.000 1988-11-26 2024-10-11 01:55:04 +6906 6906 6907 690.6 1381.2 6906 1988-11-28 2024-10-11 01:55:06.000 1988-11-28 2024-10-11 01:55:06 +6907 6907 6908 690.7 1381.4 6907 1988-11-29 2024-10-11 01:55:07.000 1988-11-29 2024-10-11 01:55:07 +6908 6908 6909 690.8 1381.6000000000001 6908 1988-11-30 2024-10-11 01:55:08.000 1988-11-30 2024-10-11 01:55:08 +6909 6909 6910 690.9 1381.8000000000002 6909 1988-12-01 2024-10-11 01:55:09.000 1988-12-01 2024-10-11 01:55:09 +6911 6911 6912 691.1 1382.2 6911 1988-12-03 2024-10-11 01:55:11.000 1988-12-03 2024-10-11 01:55:11 +6912 6912 6913 691.2 1382.4 6912 1988-12-04 2024-10-11 01:55:12.000 1988-12-04 2024-10-11 01:55:12 +6913 6913 6914 691.3 1382.6000000000001 6913 1988-12-05 2024-10-11 01:55:13.000 1988-12-05 2024-10-11 01:55:13 +6914 6914 6915 691.4 1382.8000000000002 6914 1988-12-06 2024-10-11 01:55:14.000 1988-12-06 2024-10-11 01:55:14 +6916 6916 6917 691.6 1383.2 6916 1988-12-08 2024-10-11 01:55:16.000 1988-12-08 2024-10-11 01:55:16 +6917 6917 6918 691.7 1383.4 6917 1988-12-09 2024-10-11 01:55:17.000 1988-12-09 2024-10-11 01:55:17 +6918 6918 6919 691.8 1383.6000000000001 6918 1988-12-10 2024-10-11 01:55:18.000 1988-12-10 2024-10-11 01:55:18 +6919 6919 6920 691.9 1383.8000000000002 6919 1988-12-11 2024-10-11 01:55:19.000 1988-12-11 2024-10-11 01:55:19 +6921 6921 6922 692.1 1384.2 6921 1988-12-13 2024-10-11 01:55:21.000 1988-12-13 2024-10-11 01:55:21 +6922 6922 6923 692.2 1384.4 6922 1988-12-14 2024-10-11 01:55:22.000 1988-12-14 2024-10-11 01:55:22 +6923 6923 6924 692.3 1384.6000000000001 6923 1988-12-15 2024-10-11 01:55:23.000 1988-12-15 2024-10-11 01:55:23 +6924 6924 6925 692.4 1384.8000000000002 6924 1988-12-16 2024-10-11 01:55:24.000 1988-12-16 2024-10-11 01:55:24 +6926 6926 6927 692.6 1385.2 6926 1988-12-18 2024-10-11 01:55:26.000 1988-12-18 2024-10-11 01:55:26 +6927 6927 6928 692.7 1385.4 6927 1988-12-19 2024-10-11 01:55:27.000 1988-12-19 2024-10-11 01:55:27 +6928 6928 6929 692.8 1385.6000000000001 6928 1988-12-20 2024-10-11 01:55:28.000 1988-12-20 2024-10-11 01:55:28 +6929 6929 6930 692.9 1385.8000000000002 6929 1988-12-21 2024-10-11 01:55:29.000 1988-12-21 2024-10-11 01:55:29 +6931 6931 6932 693.1 1386.2 6931 1988-12-23 2024-10-11 01:55:31.000 1988-12-23 2024-10-11 01:55:31 +6932 6932 6933 693.2 1386.4 6932 1988-12-24 2024-10-11 01:55:32.000 1988-12-24 2024-10-11 01:55:32 +6933 6933 6934 693.3 1386.6000000000001 6933 1988-12-25 2024-10-11 01:55:33.000 1988-12-25 2024-10-11 01:55:33 +6934 6934 6935 693.4 1386.8000000000002 6934 1988-12-26 2024-10-11 01:55:34.000 1988-12-26 2024-10-11 01:55:34 +6936 6936 6937 693.6 1387.2 6936 1988-12-28 2024-10-11 01:55:36.000 1988-12-28 2024-10-11 01:55:36 +6937 6937 6938 693.7 1387.4 6937 1988-12-29 2024-10-11 01:55:37.000 1988-12-29 2024-10-11 01:55:37 +6938 6938 6939 693.8 1387.6000000000001 6938 1988-12-30 2024-10-11 01:55:38.000 1988-12-30 2024-10-11 01:55:38 +6939 6939 6940 693.9 1387.8000000000002 6939 1988-12-31 2024-10-11 01:55:39.000 1988-12-31 2024-10-11 01:55:39 +6941 6941 6942 694.1 1388.2 6941 1989-01-02 2024-10-11 01:55:41.000 1989-01-02 2024-10-11 01:55:41 +6942 6942 6943 694.2 1388.4 6942 1989-01-03 2024-10-11 01:55:42.000 1989-01-03 2024-10-11 01:55:42 +6943 6943 6944 694.3 1388.6000000000001 6943 1989-01-04 2024-10-11 01:55:43.000 1989-01-04 2024-10-11 01:55:43 +6944 6944 6945 694.4 1388.8000000000002 6944 1989-01-05 2024-10-11 01:55:44.000 1989-01-05 2024-10-11 01:55:44 +6946 6946 6947 694.6 1389.2 6946 1989-01-07 2024-10-11 01:55:46.000 1989-01-07 2024-10-11 01:55:46 +6947 6947 6948 694.7 1389.4 6947 1989-01-08 2024-10-11 01:55:47.000 1989-01-08 2024-10-11 01:55:47 +6948 6948 6949 694.8 1389.6000000000001 6948 1989-01-09 2024-10-11 01:55:48.000 1989-01-09 2024-10-11 01:55:48 +6949 6949 6950 694.9 1389.8000000000002 6949 1989-01-10 2024-10-11 01:55:49.000 1989-01-10 2024-10-11 01:55:49 +6951 6951 6952 695.1 1390.2 6951 1989-01-12 2024-10-11 01:55:51.000 1989-01-12 2024-10-11 01:55:51 +6952 6952 6953 695.2 1390.4 6952 1989-01-13 2024-10-11 01:55:52.000 1989-01-13 2024-10-11 01:55:52 +6953 6953 6954 695.3 1390.6000000000001 6953 1989-01-14 2024-10-11 01:55:53.000 1989-01-14 2024-10-11 01:55:53 +6954 6954 6955 695.4 1390.8000000000002 6954 1989-01-15 2024-10-11 01:55:54.000 1989-01-15 2024-10-11 01:55:54 +6956 6956 6957 695.6 1391.2 6956 1989-01-17 2024-10-11 01:55:56.000 1989-01-17 2024-10-11 01:55:56 +6957 6957 6958 695.7 1391.4 6957 1989-01-18 2024-10-11 01:55:57.000 1989-01-18 2024-10-11 01:55:57 +6958 6958 6959 695.8 1391.6000000000001 6958 1989-01-19 2024-10-11 01:55:58.000 1989-01-19 2024-10-11 01:55:58 +6959 6959 6960 695.9 1391.8000000000002 6959 1989-01-20 2024-10-11 01:55:59.000 1989-01-20 2024-10-11 01:55:59 +6961 6961 6962 696.1 1392.2 6961 1989-01-22 2024-10-11 01:56:01.000 1989-01-22 2024-10-11 01:56:01 +6962 6962 6963 696.2 1392.4 6962 1989-01-23 2024-10-11 01:56:02.000 1989-01-23 2024-10-11 01:56:02 +6963 6963 6964 696.3 1392.6000000000001 6963 1989-01-24 2024-10-11 01:56:03.000 1989-01-24 2024-10-11 01:56:03 +6964 6964 6965 696.4 1392.8000000000002 6964 1989-01-25 2024-10-11 01:56:04.000 1989-01-25 2024-10-11 01:56:04 +6966 6966 6967 696.6 1393.2 6966 1989-01-27 2024-10-11 01:56:06.000 1989-01-27 2024-10-11 01:56:06 +6967 6967 6968 696.7 1393.4 6967 1989-01-28 2024-10-11 01:56:07.000 1989-01-28 2024-10-11 01:56:07 +6968 6968 6969 696.8 1393.6000000000001 6968 1989-01-29 2024-10-11 01:56:08.000 1989-01-29 2024-10-11 01:56:08 +6969 6969 6970 696.9 1393.8000000000002 6969 1989-01-30 2024-10-11 01:56:09.000 1989-01-30 2024-10-11 01:56:09 +6971 6971 6972 697.1 1394.2 6971 1989-02-01 2024-10-11 01:56:11.000 1989-02-01 2024-10-11 01:56:11 +6972 6972 6973 697.2 1394.4 6972 1989-02-02 2024-10-11 01:56:12.000 1989-02-02 2024-10-11 01:56:12 +6973 6973 6974 697.3 1394.6000000000001 6973 1989-02-03 2024-10-11 01:56:13.000 1989-02-03 2024-10-11 01:56:13 +6974 6974 6975 697.4 1394.8000000000002 6974 1989-02-04 2024-10-11 01:56:14.000 1989-02-04 2024-10-11 01:56:14 +6976 6976 6977 697.6 1395.2 6976 1989-02-06 2024-10-11 01:56:16.000 1989-02-06 2024-10-11 01:56:16 +6977 6977 6978 697.7 1395.4 6977 1989-02-07 2024-10-11 01:56:17.000 1989-02-07 2024-10-11 01:56:17 +6978 6978 6979 697.8 1395.6000000000001 6978 1989-02-08 2024-10-11 01:56:18.000 1989-02-08 2024-10-11 01:56:18 +6979 6979 6980 697.9 1395.8000000000002 6979 1989-02-09 2024-10-11 01:56:19.000 1989-02-09 2024-10-11 01:56:19 +6981 6981 6982 698.1 1396.2 6981 1989-02-11 2024-10-11 01:56:21.000 1989-02-11 2024-10-11 01:56:21 +6982 6982 6983 698.2 1396.4 6982 1989-02-12 2024-10-11 01:56:22.000 1989-02-12 2024-10-11 01:56:22 +6983 6983 6984 698.3 1396.6000000000001 6983 1989-02-13 2024-10-11 01:56:23.000 1989-02-13 2024-10-11 01:56:23 +6984 6984 6985 698.4 1396.8000000000002 6984 1989-02-14 2024-10-11 01:56:24.000 1989-02-14 2024-10-11 01:56:24 +6986 6986 6987 698.6 1397.2 6986 1989-02-16 2024-10-11 01:56:26.000 1989-02-16 2024-10-11 01:56:26 +6987 6987 6988 698.7 1397.4 6987 1989-02-17 2024-10-11 01:56:27.000 1989-02-17 2024-10-11 01:56:27 +6988 6988 6989 698.8 1397.6000000000001 6988 1989-02-18 2024-10-11 01:56:28.000 1989-02-18 2024-10-11 01:56:28 +6989 6989 6990 698.9 1397.8000000000002 6989 1989-02-19 2024-10-11 01:56:29.000 1989-02-19 2024-10-11 01:56:29 +6991 6991 6992 699.1 1398.2 6991 1989-02-21 2024-10-11 01:56:31.000 1989-02-21 2024-10-11 01:56:31 +6992 6992 6993 699.2 1398.4 6992 1989-02-22 2024-10-11 01:56:32.000 1989-02-22 2024-10-11 01:56:32 +6993 6993 6994 699.3 1398.6000000000001 6993 1989-02-23 2024-10-11 01:56:33.000 1989-02-23 2024-10-11 01:56:33 +6994 6994 6995 699.4 1398.8000000000002 6994 1989-02-24 2024-10-11 01:56:34.000 1989-02-24 2024-10-11 01:56:34 +6996 6996 6997 699.6 1399.2 6996 1989-02-26 2024-10-11 01:56:36.000 1989-02-26 2024-10-11 01:56:36 +6997 6997 6998 699.7 1399.4 6997 1989-02-27 2024-10-11 01:56:37.000 1989-02-27 2024-10-11 01:56:37 +6998 6998 6999 699.8 1399.6000000000001 6998 1989-02-28 2024-10-11 01:56:38.000 1989-02-28 2024-10-11 01:56:38 +6999 6999 7000 699.9 1399.8000000000002 6999 1989-03-01 2024-10-11 01:56:39.000 1989-03-01 2024-10-11 01:56:39 +7001 7001 7002 700.1 1400.2 7001 1989-03-03 2024-10-11 01:56:41.000 1989-03-03 2024-10-11 01:56:41 +7002 7002 7003 700.2 1400.4 7002 1989-03-04 2024-10-11 01:56:42.000 1989-03-04 2024-10-11 01:56:42 +7003 7003 7004 700.3 1400.6000000000001 7003 1989-03-05 2024-10-11 01:56:43.000 1989-03-05 2024-10-11 01:56:43 +7004 7004 7005 700.4 1400.8000000000002 7004 1989-03-06 2024-10-11 01:56:44.000 1989-03-06 2024-10-11 01:56:44 +7006 7006 7007 700.6 1401.2 7006 1989-03-08 2024-10-11 01:56:46.000 1989-03-08 2024-10-11 01:56:46 +7007 7007 7008 700.7 1401.4 7007 1989-03-09 2024-10-11 01:56:47.000 1989-03-09 2024-10-11 01:56:47 +7008 7008 7009 700.8 1401.6000000000001 7008 1989-03-10 2024-10-11 01:56:48.000 1989-03-10 2024-10-11 01:56:48 +7009 7009 7010 700.9 1401.8000000000002 7009 1989-03-11 2024-10-11 01:56:49.000 1989-03-11 2024-10-11 01:56:49 +7011 7011 7012 701.1 1402.2 7011 1989-03-13 2024-10-11 01:56:51.000 1989-03-13 2024-10-11 01:56:51 +7012 7012 7013 701.2 1402.4 7012 1989-03-14 2024-10-11 01:56:52.000 1989-03-14 2024-10-11 01:56:52 +7013 7013 7014 701.3 1402.6000000000001 7013 1989-03-15 2024-10-11 01:56:53.000 1989-03-15 2024-10-11 01:56:53 +7014 7014 7015 701.4 1402.8000000000002 7014 1989-03-16 2024-10-11 01:56:54.000 1989-03-16 2024-10-11 01:56:54 +7016 7016 7017 701.6 1403.2 7016 1989-03-18 2024-10-11 01:56:56.000 1989-03-18 2024-10-11 01:56:56 +7017 7017 7018 701.7 1403.4 7017 1989-03-19 2024-10-11 01:56:57.000 1989-03-19 2024-10-11 01:56:57 +7018 7018 7019 701.8 1403.6000000000001 7018 1989-03-20 2024-10-11 01:56:58.000 1989-03-20 2024-10-11 01:56:58 +7019 7019 7020 701.9 1403.8000000000002 7019 1989-03-21 2024-10-11 01:56:59.000 1989-03-21 2024-10-11 01:56:59 +7021 7021 7022 702.1 1404.2 7021 1989-03-23 2024-10-11 01:57:01.000 1989-03-23 2024-10-11 01:57:01 +7022 7022 7023 702.2 1404.4 7022 1989-03-24 2024-10-11 01:57:02.000 1989-03-24 2024-10-11 01:57:02 +7023 7023 7024 702.3 1404.6000000000001 7023 1989-03-25 2024-10-11 01:57:03.000 1989-03-25 2024-10-11 01:57:03 +7024 7024 7025 702.4 1404.8000000000002 7024 1989-03-26 2024-10-11 01:57:04.000 1989-03-26 2024-10-11 01:57:04 +7026 7026 7027 702.6 1405.2 7026 1989-03-28 2024-10-11 01:57:06.000 1989-03-28 2024-10-11 01:57:06 +7027 7027 7028 702.7 1405.4 7027 1989-03-29 2024-10-11 01:57:07.000 1989-03-29 2024-10-11 01:57:07 +7028 7028 7029 702.8 1405.6000000000001 7028 1989-03-30 2024-10-11 01:57:08.000 1989-03-30 2024-10-11 01:57:08 +7029 7029 7030 702.9 1405.8000000000002 7029 1989-03-31 2024-10-11 01:57:09.000 1989-03-31 2024-10-11 01:57:09 +7031 7031 7032 703.1 1406.2 7031 1989-04-02 2024-10-11 01:57:11.000 1989-04-02 2024-10-11 01:57:11 +7032 7032 7033 703.2 1406.4 7032 1989-04-03 2024-10-11 01:57:12.000 1989-04-03 2024-10-11 01:57:12 +7033 7033 7034 703.3 1406.6000000000001 7033 1989-04-04 2024-10-11 01:57:13.000 1989-04-04 2024-10-11 01:57:13 +7034 7034 7035 703.4 1406.8000000000002 7034 1989-04-05 2024-10-11 01:57:14.000 1989-04-05 2024-10-11 01:57:14 +7036 7036 7037 703.6 1407.2 7036 1989-04-07 2024-10-11 01:57:16.000 1989-04-07 2024-10-11 01:57:16 +7037 7037 7038 703.7 1407.4 7037 1989-04-08 2024-10-11 01:57:17.000 1989-04-08 2024-10-11 01:57:17 +7038 7038 7039 703.8 1407.6000000000001 7038 1989-04-09 2024-10-11 01:57:18.000 1989-04-09 2024-10-11 01:57:18 +7039 7039 7040 703.9 1407.8000000000002 7039 1989-04-10 2024-10-11 01:57:19.000 1989-04-10 2024-10-11 01:57:19 +7041 7041 7042 704.1 1408.2 7041 1989-04-12 2024-10-11 01:57:21.000 1989-04-12 2024-10-11 01:57:21 +7042 7042 7043 704.2 1408.4 7042 1989-04-13 2024-10-11 01:57:22.000 1989-04-13 2024-10-11 01:57:22 +7043 7043 7044 704.3 1408.6000000000001 7043 1989-04-14 2024-10-11 01:57:23.000 1989-04-14 2024-10-11 01:57:23 +7044 7044 7045 704.4 1408.8000000000002 7044 1989-04-15 2024-10-11 01:57:24.000 1989-04-15 2024-10-11 01:57:24 +7046 7046 7047 704.6 1409.2 7046 1989-04-17 2024-10-11 01:57:26.000 1989-04-17 2024-10-11 01:57:26 +7047 7047 7048 704.7 1409.4 7047 1989-04-18 2024-10-11 01:57:27.000 1989-04-18 2024-10-11 01:57:27 +7048 7048 7049 704.8 1409.6000000000001 7048 1989-04-19 2024-10-11 01:57:28.000 1989-04-19 2024-10-11 01:57:28 +7049 7049 7050 704.9 1409.8000000000002 7049 1989-04-20 2024-10-11 01:57:29.000 1989-04-20 2024-10-11 01:57:29 +7051 7051 7052 705.1 1410.2 7051 1989-04-22 2024-10-11 01:57:31.000 1989-04-22 2024-10-11 01:57:31 +7052 7052 7053 705.2 1410.4 7052 1989-04-23 2024-10-11 01:57:32.000 1989-04-23 2024-10-11 01:57:32 +7053 7053 7054 705.3 1410.6000000000001 7053 1989-04-24 2024-10-11 01:57:33.000 1989-04-24 2024-10-11 01:57:33 +7054 7054 7055 705.4 1410.8000000000002 7054 1989-04-25 2024-10-11 01:57:34.000 1989-04-25 2024-10-11 01:57:34 +7056 7056 7057 705.6 1411.2 7056 1989-04-27 2024-10-11 01:57:36.000 1989-04-27 2024-10-11 01:57:36 +7057 7057 7058 705.7 1411.4 7057 1989-04-28 2024-10-11 01:57:37.000 1989-04-28 2024-10-11 01:57:37 +7058 7058 7059 705.8 1411.6000000000001 7058 1989-04-29 2024-10-11 01:57:38.000 1989-04-29 2024-10-11 01:57:38 +7059 7059 7060 705.9 1411.8000000000002 7059 1989-04-30 2024-10-11 01:57:39.000 1989-04-30 2024-10-11 01:57:39 +7061 7061 7062 706.1 1412.2 7061 1989-05-02 2024-10-11 01:57:41.000 1989-05-02 2024-10-11 01:57:41 +7062 7062 7063 706.2 1412.4 7062 1989-05-03 2024-10-11 01:57:42.000 1989-05-03 2024-10-11 01:57:42 +7063 7063 7064 706.3 1412.6000000000001 7063 1989-05-04 2024-10-11 01:57:43.000 1989-05-04 2024-10-11 01:57:43 +7064 7064 7065 706.4 1412.8000000000002 7064 1989-05-05 2024-10-11 01:57:44.000 1989-05-05 2024-10-11 01:57:44 +7066 7066 7067 706.6 1413.2 7066 1989-05-07 2024-10-11 01:57:46.000 1989-05-07 2024-10-11 01:57:46 +7067 7067 7068 706.7 1413.4 7067 1989-05-08 2024-10-11 01:57:47.000 1989-05-08 2024-10-11 01:57:47 +7068 7068 7069 706.8 1413.6000000000001 7068 1989-05-09 2024-10-11 01:57:48.000 1989-05-09 2024-10-11 01:57:48 +7069 7069 7070 706.9 1413.8000000000002 7069 1989-05-10 2024-10-11 01:57:49.000 1989-05-10 2024-10-11 01:57:49 +7071 7071 7072 707.1 1414.2 7071 1989-05-12 2024-10-11 01:57:51.000 1989-05-12 2024-10-11 01:57:51 +7072 7072 7073 707.2 1414.4 7072 1989-05-13 2024-10-11 01:57:52.000 1989-05-13 2024-10-11 01:57:52 +7073 7073 7074 707.3 1414.6000000000001 7073 1989-05-14 2024-10-11 01:57:53.000 1989-05-14 2024-10-11 01:57:53 +7074 7074 7075 707.4 1414.8000000000002 7074 1989-05-15 2024-10-11 01:57:54.000 1989-05-15 2024-10-11 01:57:54 +7076 7076 7077 707.6 1415.2 7076 1989-05-17 2024-10-11 01:57:56.000 1989-05-17 2024-10-11 01:57:56 +7077 7077 7078 707.7 1415.4 7077 1989-05-18 2024-10-11 01:57:57.000 1989-05-18 2024-10-11 01:57:57 +7078 7078 7079 707.8 1415.6000000000001 7078 1989-05-19 2024-10-11 01:57:58.000 1989-05-19 2024-10-11 01:57:58 +7079 7079 7080 707.9 1415.8000000000002 7079 1989-05-20 2024-10-11 01:57:59.000 1989-05-20 2024-10-11 01:57:59 +7081 7081 7082 708.1 1416.2 7081 1989-05-22 2024-10-11 01:58:01.000 1989-05-22 2024-10-11 01:58:01 +7082 7082 7083 708.2 1416.4 7082 1989-05-23 2024-10-11 01:58:02.000 1989-05-23 2024-10-11 01:58:02 +7083 7083 7084 708.3 1416.6000000000001 7083 1989-05-24 2024-10-11 01:58:03.000 1989-05-24 2024-10-11 01:58:03 +7084 7084 7085 708.4 1416.8000000000002 7084 1989-05-25 2024-10-11 01:58:04.000 1989-05-25 2024-10-11 01:58:04 +7086 7086 7087 708.6 1417.2 7086 1989-05-27 2024-10-11 01:58:06.000 1989-05-27 2024-10-11 01:58:06 +7087 7087 7088 708.7 1417.4 7087 1989-05-28 2024-10-11 01:58:07.000 1989-05-28 2024-10-11 01:58:07 +7088 7088 7089 708.8 1417.6000000000001 7088 1989-05-29 2024-10-11 01:58:08.000 1989-05-29 2024-10-11 01:58:08 +7089 7089 7090 708.9 1417.8000000000002 7089 1989-05-30 2024-10-11 01:58:09.000 1989-05-30 2024-10-11 01:58:09 +7091 7091 7092 709.1 1418.2 7091 1989-06-01 2024-10-11 01:58:11.000 1989-06-01 2024-10-11 01:58:11 +7092 7092 7093 709.2 1418.4 7092 1989-06-02 2024-10-11 01:58:12.000 1989-06-02 2024-10-11 01:58:12 +7093 7093 7094 709.3 1418.6000000000001 7093 1989-06-03 2024-10-11 01:58:13.000 1989-06-03 2024-10-11 01:58:13 +7094 7094 7095 709.4 1418.8000000000002 7094 1989-06-04 2024-10-11 01:58:14.000 1989-06-04 2024-10-11 01:58:14 +7096 7096 7097 709.6 1419.2 7096 1989-06-06 2024-10-11 01:58:16.000 1989-06-06 2024-10-11 01:58:16 +7097 7097 7098 709.7 1419.4 7097 1989-06-07 2024-10-11 01:58:17.000 1989-06-07 2024-10-11 01:58:17 +7098 7098 7099 709.8 1419.6000000000001 7098 1989-06-08 2024-10-11 01:58:18.000 1989-06-08 2024-10-11 01:58:18 +7099 7099 7100 709.9 1419.8000000000002 7099 1989-06-09 2024-10-11 01:58:19.000 1989-06-09 2024-10-11 01:58:19 +7101 7101 7102 710.1 1420.2 7101 1989-06-11 2024-10-11 01:58:21.000 1989-06-11 2024-10-11 01:58:21 +7102 7102 7103 710.2 1420.4 7102 1989-06-12 2024-10-11 01:58:22.000 1989-06-12 2024-10-11 01:58:22 +7103 7103 7104 710.3 1420.6000000000001 7103 1989-06-13 2024-10-11 01:58:23.000 1989-06-13 2024-10-11 01:58:23 +7104 7104 7105 710.4 1420.8000000000002 7104 1989-06-14 2024-10-11 01:58:24.000 1989-06-14 2024-10-11 01:58:24 +7106 7106 7107 710.6 1421.2 7106 1989-06-16 2024-10-11 01:58:26.000 1989-06-16 2024-10-11 01:58:26 +7107 7107 7108 710.7 1421.4 7107 1989-06-17 2024-10-11 01:58:27.000 1989-06-17 2024-10-11 01:58:27 +7108 7108 7109 710.8 1421.6000000000001 7108 1989-06-18 2024-10-11 01:58:28.000 1989-06-18 2024-10-11 01:58:28 +7109 7109 7110 710.9 1421.8000000000002 7109 1989-06-19 2024-10-11 01:58:29.000 1989-06-19 2024-10-11 01:58:29 +7111 7111 7112 711.1 1422.2 7111 1989-06-21 2024-10-11 01:58:31.000 1989-06-21 2024-10-11 01:58:31 +7112 7112 7113 711.2 1422.4 7112 1989-06-22 2024-10-11 01:58:32.000 1989-06-22 2024-10-11 01:58:32 +7113 7113 7114 711.3 1422.6000000000001 7113 1989-06-23 2024-10-11 01:58:33.000 1989-06-23 2024-10-11 01:58:33 +7114 7114 7115 711.4 1422.8000000000002 7114 1989-06-24 2024-10-11 01:58:34.000 1989-06-24 2024-10-11 01:58:34 +7116 7116 7117 711.6 1423.2 7116 1989-06-26 2024-10-11 01:58:36.000 1989-06-26 2024-10-11 01:58:36 +7117 7117 7118 711.7 1423.4 7117 1989-06-27 2024-10-11 01:58:37.000 1989-06-27 2024-10-11 01:58:37 +7118 7118 7119 711.8 1423.6000000000001 7118 1989-06-28 2024-10-11 01:58:38.000 1989-06-28 2024-10-11 01:58:38 +7119 7119 7120 711.9 1423.8000000000002 7119 1989-06-29 2024-10-11 01:58:39.000 1989-06-29 2024-10-11 01:58:39 +7121 7121 7122 712.1 1424.2 7121 1989-07-01 2024-10-11 01:58:41.000 1989-07-01 2024-10-11 01:58:41 +7122 7122 7123 712.2 1424.4 7122 1989-07-02 2024-10-11 01:58:42.000 1989-07-02 2024-10-11 01:58:42 +7123 7123 7124 712.3 1424.6000000000001 7123 1989-07-03 2024-10-11 01:58:43.000 1989-07-03 2024-10-11 01:58:43 +7124 7124 7125 712.4 1424.8000000000002 7124 1989-07-04 2024-10-11 01:58:44.000 1989-07-04 2024-10-11 01:58:44 +7126 7126 7127 712.6 1425.2 7126 1989-07-06 2024-10-11 01:58:46.000 1989-07-06 2024-10-11 01:58:46 +7127 7127 7128 712.7 1425.4 7127 1989-07-07 2024-10-11 01:58:47.000 1989-07-07 2024-10-11 01:58:47 +7128 7128 7129 712.8 1425.6000000000001 7128 1989-07-08 2024-10-11 01:58:48.000 1989-07-08 2024-10-11 01:58:48 +7129 7129 7130 712.9 1425.8000000000002 7129 1989-07-09 2024-10-11 01:58:49.000 1989-07-09 2024-10-11 01:58:49 +7131 7131 7132 713.1 1426.2 7131 1989-07-11 2024-10-11 01:58:51.000 1989-07-11 2024-10-11 01:58:51 +7132 7132 7133 713.2 1426.4 7132 1989-07-12 2024-10-11 01:58:52.000 1989-07-12 2024-10-11 01:58:52 +7133 7133 7134 713.3 1426.6000000000001 7133 1989-07-13 2024-10-11 01:58:53.000 1989-07-13 2024-10-11 01:58:53 +7134 7134 7135 713.4 1426.8000000000002 7134 1989-07-14 2024-10-11 01:58:54.000 1989-07-14 2024-10-11 01:58:54 +7136 7136 7137 713.6 1427.2 7136 1989-07-16 2024-10-11 01:58:56.000 1989-07-16 2024-10-11 01:58:56 +7137 7137 7138 713.7 1427.4 7137 1989-07-17 2024-10-11 01:58:57.000 1989-07-17 2024-10-11 01:58:57 +7138 7138 7139 713.8 1427.6000000000001 7138 1989-07-18 2024-10-11 01:58:58.000 1989-07-18 2024-10-11 01:58:58 +7139 7139 7140 713.9 1427.8000000000002 7139 1989-07-19 2024-10-11 01:58:59.000 1989-07-19 2024-10-11 01:58:59 +7141 7141 7142 714.1 1428.2 7141 1989-07-21 2024-10-11 01:59:01.000 1989-07-21 2024-10-11 01:59:01 +7142 7142 7143 714.2 1428.4 7142 1989-07-22 2024-10-11 01:59:02.000 1989-07-22 2024-10-11 01:59:02 +7143 7143 7144 714.3 1428.6000000000001 7143 1989-07-23 2024-10-11 01:59:03.000 1989-07-23 2024-10-11 01:59:03 +7144 7144 7145 714.4 1428.8000000000002 7144 1989-07-24 2024-10-11 01:59:04.000 1989-07-24 2024-10-11 01:59:04 +7146 7146 7147 714.6 1429.2 7146 1989-07-26 2024-10-11 01:59:06.000 1989-07-26 2024-10-11 01:59:06 +7147 7147 7148 714.7 1429.4 7147 1989-07-27 2024-10-11 01:59:07.000 1989-07-27 2024-10-11 01:59:07 +7148 7148 7149 714.8 1429.6000000000001 7148 1989-07-28 2024-10-11 01:59:08.000 1989-07-28 2024-10-11 01:59:08 +7149 7149 7150 714.9 1429.8000000000002 7149 1989-07-29 2024-10-11 01:59:09.000 1989-07-29 2024-10-11 01:59:09 +7151 7151 7152 715.1 1430.2 7151 1989-07-31 2024-10-11 01:59:11.000 1989-07-31 2024-10-11 01:59:11 +7152 7152 7153 715.2 1430.4 7152 1989-08-01 2024-10-11 01:59:12.000 1989-08-01 2024-10-11 01:59:12 +7153 7153 7154 715.3 1430.6000000000001 7153 1989-08-02 2024-10-11 01:59:13.000 1989-08-02 2024-10-11 01:59:13 +7154 7154 7155 715.4 1430.8000000000002 7154 1989-08-03 2024-10-11 01:59:14.000 1989-08-03 2024-10-11 01:59:14 +7156 7156 7157 715.6 1431.2 7156 1989-08-05 2024-10-11 01:59:16.000 1989-08-05 2024-10-11 01:59:16 +7157 7157 7158 715.7 1431.4 7157 1989-08-06 2024-10-11 01:59:17.000 1989-08-06 2024-10-11 01:59:17 +7158 7158 7159 715.8 1431.6000000000001 7158 1989-08-07 2024-10-11 01:59:18.000 1989-08-07 2024-10-11 01:59:18 +7159 7159 7160 715.9 1431.8000000000002 7159 1989-08-08 2024-10-11 01:59:19.000 1989-08-08 2024-10-11 01:59:19 +7161 7161 7162 716.1 1432.2 7161 1989-08-10 2024-10-11 01:59:21.000 1989-08-10 2024-10-11 01:59:21 +7162 7162 7163 716.2 1432.4 7162 1989-08-11 2024-10-11 01:59:22.000 1989-08-11 2024-10-11 01:59:22 +7163 7163 7164 716.3 1432.6000000000001 7163 1989-08-12 2024-10-11 01:59:23.000 1989-08-12 2024-10-11 01:59:23 +7164 7164 7165 716.4 1432.8000000000002 7164 1989-08-13 2024-10-11 01:59:24.000 1989-08-13 2024-10-11 01:59:24 +7166 7166 7167 716.6 1433.2 7166 1989-08-15 2024-10-11 01:59:26.000 1989-08-15 2024-10-11 01:59:26 +7167 7167 7168 716.7 1433.4 7167 1989-08-16 2024-10-11 01:59:27.000 1989-08-16 2024-10-11 01:59:27 +7168 7168 7169 716.8 1433.6000000000001 7168 1989-08-17 2024-10-11 01:59:28.000 1989-08-17 2024-10-11 01:59:28 +7169 7169 7170 716.9 1433.8000000000002 7169 1989-08-18 2024-10-11 01:59:29.000 1989-08-18 2024-10-11 01:59:29 +7171 7171 7172 717.1 1434.2 7171 1989-08-20 2024-10-11 01:59:31.000 1989-08-20 2024-10-11 01:59:31 +7172 7172 7173 717.2 1434.4 7172 1989-08-21 2024-10-11 01:59:32.000 1989-08-21 2024-10-11 01:59:32 +7173 7173 7174 717.3 1434.6000000000001 7173 1989-08-22 2024-10-11 01:59:33.000 1989-08-22 2024-10-11 01:59:33 +7174 7174 7175 717.4 1434.8000000000002 7174 1989-08-23 2024-10-11 01:59:34.000 1989-08-23 2024-10-11 01:59:34 +7176 7176 7177 717.6 1435.2 7176 1989-08-25 2024-10-11 01:59:36.000 1989-08-25 2024-10-11 01:59:36 +7177 7177 7178 717.7 1435.4 7177 1989-08-26 2024-10-11 01:59:37.000 1989-08-26 2024-10-11 01:59:37 +7178 7178 7179 717.8 1435.6000000000001 7178 1989-08-27 2024-10-11 01:59:38.000 1989-08-27 2024-10-11 01:59:38 +7179 7179 7180 717.9 1435.8000000000002 7179 1989-08-28 2024-10-11 01:59:39.000 1989-08-28 2024-10-11 01:59:39 +7181 7181 7182 718.1 1436.2 7181 1989-08-30 2024-10-11 01:59:41.000 1989-08-30 2024-10-11 01:59:41 +7182 7182 7183 718.2 1436.4 7182 1989-08-31 2024-10-11 01:59:42.000 1989-08-31 2024-10-11 01:59:42 +7183 7183 7184 718.3 1436.6000000000001 7183 1989-09-01 2024-10-11 01:59:43.000 1989-09-01 2024-10-11 01:59:43 +7184 7184 7185 718.4 1436.8000000000002 7184 1989-09-02 2024-10-11 01:59:44.000 1989-09-02 2024-10-11 01:59:44 +7186 7186 7187 718.6 1437.2 7186 1989-09-04 2024-10-11 01:59:46.000 1989-09-04 2024-10-11 01:59:46 +7187 7187 7188 718.7 1437.4 7187 1989-09-05 2024-10-11 01:59:47.000 1989-09-05 2024-10-11 01:59:47 +7188 7188 7189 718.8 1437.6000000000001 7188 1989-09-06 2024-10-11 01:59:48.000 1989-09-06 2024-10-11 01:59:48 +7189 7189 7190 718.9 1437.8000000000002 7189 1989-09-07 2024-10-11 01:59:49.000 1989-09-07 2024-10-11 01:59:49 +7191 7191 7192 719.1 1438.2 7191 1989-09-09 2024-10-11 01:59:51.000 1989-09-09 2024-10-11 01:59:51 +7192 7192 7193 719.2 1438.4 7192 1989-09-10 2024-10-11 01:59:52.000 1989-09-10 2024-10-11 01:59:52 +7193 7193 7194 719.3 1438.6000000000001 7193 1989-09-11 2024-10-11 01:59:53.000 1989-09-11 2024-10-11 01:59:53 +7194 7194 7195 719.4 1438.8000000000002 7194 1989-09-12 2024-10-11 01:59:54.000 1989-09-12 2024-10-11 01:59:54 +7196 7196 7197 719.6 1439.2 7196 1989-09-14 2024-10-11 01:59:56.000 1989-09-14 2024-10-11 01:59:56 +7197 7197 7198 719.7 1439.4 7197 1989-09-15 2024-10-11 01:59:57.000 1989-09-15 2024-10-11 01:59:57 +7198 7198 7199 719.8 1439.6000000000001 7198 1989-09-16 2024-10-11 01:59:58.000 1989-09-16 2024-10-11 01:59:58 +7199 7199 7200 719.9 1439.8000000000002 7199 1989-09-17 2024-10-11 01:59:59.000 1989-09-17 2024-10-11 01:59:59 +7201 7201 7202 720.1 1440.2 7201 1989-09-19 2024-10-11 02:00:01.000 1989-09-19 2024-10-11 02:00:01 +7202 7202 7203 720.2 1440.4 7202 1989-09-20 2024-10-11 02:00:02.000 1989-09-20 2024-10-11 02:00:02 +7203 7203 7204 720.3 1440.6000000000001 7203 1989-09-21 2024-10-11 02:00:03.000 1989-09-21 2024-10-11 02:00:03 +7204 7204 7205 720.4 1440.8000000000002 7204 1989-09-22 2024-10-11 02:00:04.000 1989-09-22 2024-10-11 02:00:04 +7206 7206 7207 720.6 1441.2 7206 1989-09-24 2024-10-11 02:00:06.000 1989-09-24 2024-10-11 02:00:06 +7207 7207 7208 720.7 1441.4 7207 1989-09-25 2024-10-11 02:00:07.000 1989-09-25 2024-10-11 02:00:07 +7208 7208 7209 720.8 1441.6000000000001 7208 1989-09-26 2024-10-11 02:00:08.000 1989-09-26 2024-10-11 02:00:08 +7209 7209 7210 720.9 1441.8000000000002 7209 1989-09-27 2024-10-11 02:00:09.000 1989-09-27 2024-10-11 02:00:09 +7211 7211 7212 721.1 1442.2 7211 1989-09-29 2024-10-11 02:00:11.000 1989-09-29 2024-10-11 02:00:11 +7212 7212 7213 721.2 1442.4 7212 1989-09-30 2024-10-11 02:00:12.000 1989-09-30 2024-10-11 02:00:12 +7213 7213 7214 721.3 1442.6000000000001 7213 1989-10-01 2024-10-11 02:00:13.000 1989-10-01 2024-10-11 02:00:13 +7214 7214 7215 721.4 1442.8000000000002 7214 1989-10-02 2024-10-11 02:00:14.000 1989-10-02 2024-10-11 02:00:14 +7216 7216 7217 721.6 1443.2 7216 1989-10-04 2024-10-11 02:00:16.000 1989-10-04 2024-10-11 02:00:16 +7217 7217 7218 721.7 1443.4 7217 1989-10-05 2024-10-11 02:00:17.000 1989-10-05 2024-10-11 02:00:17 +7218 7218 7219 721.8 1443.6000000000001 7218 1989-10-06 2024-10-11 02:00:18.000 1989-10-06 2024-10-11 02:00:18 +7219 7219 7220 721.9 1443.8000000000002 7219 1989-10-07 2024-10-11 02:00:19.000 1989-10-07 2024-10-11 02:00:19 +7221 7221 7222 722.1 1444.2 7221 1989-10-09 2024-10-11 02:00:21.000 1989-10-09 2024-10-11 02:00:21 +7222 7222 7223 722.2 1444.4 7222 1989-10-10 2024-10-11 02:00:22.000 1989-10-10 2024-10-11 02:00:22 +7223 7223 7224 722.3 1444.6000000000001 7223 1989-10-11 2024-10-11 02:00:23.000 1989-10-11 2024-10-11 02:00:23 +7224 7224 7225 722.4 1444.8000000000002 7224 1989-10-12 2024-10-11 02:00:24.000 1989-10-12 2024-10-11 02:00:24 +7226 7226 7227 722.6 1445.2 7226 1989-10-14 2024-10-11 02:00:26.000 1989-10-14 2024-10-11 02:00:26 +7227 7227 7228 722.7 1445.4 7227 1989-10-15 2024-10-11 02:00:27.000 1989-10-15 2024-10-11 02:00:27 +7228 7228 7229 722.8 1445.6000000000001 7228 1989-10-16 2024-10-11 02:00:28.000 1989-10-16 2024-10-11 02:00:28 +7229 7229 7230 722.9 1445.8000000000002 7229 1989-10-17 2024-10-11 02:00:29.000 1989-10-17 2024-10-11 02:00:29 +7231 7231 7232 723.1 1446.2 7231 1989-10-19 2024-10-11 02:00:31.000 1989-10-19 2024-10-11 02:00:31 +7232 7232 7233 723.2 1446.4 7232 1989-10-20 2024-10-11 02:00:32.000 1989-10-20 2024-10-11 02:00:32 +7233 7233 7234 723.3 1446.6000000000001 7233 1989-10-21 2024-10-11 02:00:33.000 1989-10-21 2024-10-11 02:00:33 +7234 7234 7235 723.4 1446.8000000000002 7234 1989-10-22 2024-10-11 02:00:34.000 1989-10-22 2024-10-11 02:00:34 +7236 7236 7237 723.6 1447.2 7236 1989-10-24 2024-10-11 02:00:36.000 1989-10-24 2024-10-11 02:00:36 +7237 7237 7238 723.7 1447.4 7237 1989-10-25 2024-10-11 02:00:37.000 1989-10-25 2024-10-11 02:00:37 +7238 7238 7239 723.8 1447.6000000000001 7238 1989-10-26 2024-10-11 02:00:38.000 1989-10-26 2024-10-11 02:00:38 +7239 7239 7240 723.9 1447.8000000000002 7239 1989-10-27 2024-10-11 02:00:39.000 1989-10-27 2024-10-11 02:00:39 +7241 7241 7242 724.1 1448.2 7241 1989-10-29 2024-10-11 02:00:41.000 1989-10-29 2024-10-11 02:00:41 +7242 7242 7243 724.2 1448.4 7242 1989-10-30 2024-10-11 02:00:42.000 1989-10-30 2024-10-11 02:00:42 +7243 7243 7244 724.3 1448.6000000000001 7243 1989-10-31 2024-10-11 02:00:43.000 1989-10-31 2024-10-11 02:00:43 +7244 7244 7245 724.4 1448.8000000000002 7244 1989-11-01 2024-10-11 02:00:44.000 1989-11-01 2024-10-11 02:00:44 +7246 7246 7247 724.6 1449.2 7246 1989-11-03 2024-10-11 02:00:46.000 1989-11-03 2024-10-11 02:00:46 +7247 7247 7248 724.7 1449.4 7247 1989-11-04 2024-10-11 02:00:47.000 1989-11-04 2024-10-11 02:00:47 +7248 7248 7249 724.8 1449.6000000000001 7248 1989-11-05 2024-10-11 02:00:48.000 1989-11-05 2024-10-11 02:00:48 +7249 7249 7250 724.9 1449.8000000000002 7249 1989-11-06 2024-10-11 02:00:49.000 1989-11-06 2024-10-11 02:00:49 +7251 7251 7252 725.1 1450.2 7251 1989-11-08 2024-10-11 02:00:51.000 1989-11-08 2024-10-11 02:00:51 +7252 7252 7253 725.2 1450.4 7252 1989-11-09 2024-10-11 02:00:52.000 1989-11-09 2024-10-11 02:00:52 +7253 7253 7254 725.3 1450.6000000000001 7253 1989-11-10 2024-10-11 02:00:53.000 1989-11-10 2024-10-11 02:00:53 +7254 7254 7255 725.4 1450.8000000000002 7254 1989-11-11 2024-10-11 02:00:54.000 1989-11-11 2024-10-11 02:00:54 +7256 7256 7257 725.6 1451.2 7256 1989-11-13 2024-10-11 02:00:56.000 1989-11-13 2024-10-11 02:00:56 +7257 7257 7258 725.7 1451.4 7257 1989-11-14 2024-10-11 02:00:57.000 1989-11-14 2024-10-11 02:00:57 +7258 7258 7259 725.8 1451.6000000000001 7258 1989-11-15 2024-10-11 02:00:58.000 1989-11-15 2024-10-11 02:00:58 +7259 7259 7260 725.9 1451.8000000000002 7259 1989-11-16 2024-10-11 02:00:59.000 1989-11-16 2024-10-11 02:00:59 +7261 7261 7262 726.1 1452.2 7261 1989-11-18 2024-10-11 02:01:01.000 1989-11-18 2024-10-11 02:01:01 +7262 7262 7263 726.2 1452.4 7262 1989-11-19 2024-10-11 02:01:02.000 1989-11-19 2024-10-11 02:01:02 +7263 7263 7264 726.3 1452.6000000000001 7263 1989-11-20 2024-10-11 02:01:03.000 1989-11-20 2024-10-11 02:01:03 +7264 7264 7265 726.4 1452.8000000000002 7264 1989-11-21 2024-10-11 02:01:04.000 1989-11-21 2024-10-11 02:01:04 +7266 7266 7267 726.6 1453.2 7266 1989-11-23 2024-10-11 02:01:06.000 1989-11-23 2024-10-11 02:01:06 +7267 7267 7268 726.7 1453.4 7267 1989-11-24 2024-10-11 02:01:07.000 1989-11-24 2024-10-11 02:01:07 +7268 7268 7269 726.8 1453.6000000000001 7268 1989-11-25 2024-10-11 02:01:08.000 1989-11-25 2024-10-11 02:01:08 +7269 7269 7270 726.9 1453.8000000000002 7269 1989-11-26 2024-10-11 02:01:09.000 1989-11-26 2024-10-11 02:01:09 +7271 7271 7272 727.1 1454.2 7271 1989-11-28 2024-10-11 02:01:11.000 1989-11-28 2024-10-11 02:01:11 +7272 7272 7273 727.2 1454.4 7272 1989-11-29 2024-10-11 02:01:12.000 1989-11-29 2024-10-11 02:01:12 +7273 7273 7274 727.3 1454.6000000000001 7273 1989-11-30 2024-10-11 02:01:13.000 1989-11-30 2024-10-11 02:01:13 +7274 7274 7275 727.4 1454.8000000000002 7274 1989-12-01 2024-10-11 02:01:14.000 1989-12-01 2024-10-11 02:01:14 +7276 7276 7277 727.6 1455.2 7276 1989-12-03 2024-10-11 02:01:16.000 1989-12-03 2024-10-11 02:01:16 +7277 7277 7278 727.7 1455.4 7277 1989-12-04 2024-10-11 02:01:17.000 1989-12-04 2024-10-11 02:01:17 +7278 7278 7279 727.8 1455.6000000000001 7278 1989-12-05 2024-10-11 02:01:18.000 1989-12-05 2024-10-11 02:01:18 +7279 7279 7280 727.9 1455.8000000000002 7279 1989-12-06 2024-10-11 02:01:19.000 1989-12-06 2024-10-11 02:01:19 +7281 7281 7282 728.1 1456.2 7281 1989-12-08 2024-10-11 02:01:21.000 1989-12-08 2024-10-11 02:01:21 +7282 7282 7283 728.2 1456.4 7282 1989-12-09 2024-10-11 02:01:22.000 1989-12-09 2024-10-11 02:01:22 +7283 7283 7284 728.3 1456.6000000000001 7283 1989-12-10 2024-10-11 02:01:23.000 1989-12-10 2024-10-11 02:01:23 +7284 7284 7285 728.4 1456.8000000000002 7284 1989-12-11 2024-10-11 02:01:24.000 1989-12-11 2024-10-11 02:01:24 +7286 7286 7287 728.6 1457.2 7286 1989-12-13 2024-10-11 02:01:26.000 1989-12-13 2024-10-11 02:01:26 +7287 7287 7288 728.7 1457.4 7287 1989-12-14 2024-10-11 02:01:27.000 1989-12-14 2024-10-11 02:01:27 +7288 7288 7289 728.8 1457.6000000000001 7288 1989-12-15 2024-10-11 02:01:28.000 1989-12-15 2024-10-11 02:01:28 +7289 7289 7290 728.9 1457.8000000000002 7289 1989-12-16 2024-10-11 02:01:29.000 1989-12-16 2024-10-11 02:01:29 +7291 7291 7292 729.1 1458.2 7291 1989-12-18 2024-10-11 02:01:31.000 1989-12-18 2024-10-11 02:01:31 +7292 7292 7293 729.2 1458.4 7292 1989-12-19 2024-10-11 02:01:32.000 1989-12-19 2024-10-11 02:01:32 +7293 7293 7294 729.3 1458.6000000000001 7293 1989-12-20 2024-10-11 02:01:33.000 1989-12-20 2024-10-11 02:01:33 +7294 7294 7295 729.4 1458.8000000000002 7294 1989-12-21 2024-10-11 02:01:34.000 1989-12-21 2024-10-11 02:01:34 +7296 7296 7297 729.6 1459.2 7296 1989-12-23 2024-10-11 02:01:36.000 1989-12-23 2024-10-11 02:01:36 +7297 7297 7298 729.7 1459.4 7297 1989-12-24 2024-10-11 02:01:37.000 1989-12-24 2024-10-11 02:01:37 +7298 7298 7299 729.8 1459.6000000000001 7298 1989-12-25 2024-10-11 02:01:38.000 1989-12-25 2024-10-11 02:01:38 +7299 7299 7300 729.9 1459.8000000000002 7299 1989-12-26 2024-10-11 02:01:39.000 1989-12-26 2024-10-11 02:01:39 +7301 7301 7302 730.1 1460.2 7301 1989-12-28 2024-10-11 02:01:41.000 1989-12-28 2024-10-11 02:01:41 +7302 7302 7303 730.2 1460.4 7302 1989-12-29 2024-10-11 02:01:42.000 1989-12-29 2024-10-11 02:01:42 +7303 7303 7304 730.3 1460.6000000000001 7303 1989-12-30 2024-10-11 02:01:43.000 1989-12-30 2024-10-11 02:01:43 +7304 7304 7305 730.4 1460.8000000000002 7304 1989-12-31 2024-10-11 02:01:44.000 1989-12-31 2024-10-11 02:01:44 +7306 7306 7307 730.6 1461.2 7306 1990-01-02 2024-10-11 02:01:46.000 1990-01-02 2024-10-11 02:01:46 +7307 7307 7308 730.7 1461.4 7307 1990-01-03 2024-10-11 02:01:47.000 1990-01-03 2024-10-11 02:01:47 +7308 7308 7309 730.8 1461.6000000000001 7308 1990-01-04 2024-10-11 02:01:48.000 1990-01-04 2024-10-11 02:01:48 +7309 7309 7310 730.9 1461.8000000000002 7309 1990-01-05 2024-10-11 02:01:49.000 1990-01-05 2024-10-11 02:01:49 +7311 7311 7312 731.1 1462.2 7311 1990-01-07 2024-10-11 02:01:51.000 1990-01-07 2024-10-11 02:01:51 +7312 7312 7313 731.2 1462.4 7312 1990-01-08 2024-10-11 02:01:52.000 1990-01-08 2024-10-11 02:01:52 +7313 7313 7314 731.3 1462.6000000000001 7313 1990-01-09 2024-10-11 02:01:53.000 1990-01-09 2024-10-11 02:01:53 +7314 7314 7315 731.4 1462.8000000000002 7314 1990-01-10 2024-10-11 02:01:54.000 1990-01-10 2024-10-11 02:01:54 +7316 7316 7317 731.6 1463.2 7316 1990-01-12 2024-10-11 02:01:56.000 1990-01-12 2024-10-11 02:01:56 +7317 7317 7318 731.7 1463.4 7317 1990-01-13 2024-10-11 02:01:57.000 1990-01-13 2024-10-11 02:01:57 +7318 7318 7319 731.8 1463.6000000000001 7318 1990-01-14 2024-10-11 02:01:58.000 1990-01-14 2024-10-11 02:01:58 +7319 7319 7320 731.9 1463.8000000000002 7319 1990-01-15 2024-10-11 02:01:59.000 1990-01-15 2024-10-11 02:01:59 +7321 7321 7322 732.1 1464.2 7321 1990-01-17 2024-10-11 02:02:01.000 1990-01-17 2024-10-11 02:02:01 +7322 7322 7323 732.2 1464.4 7322 1990-01-18 2024-10-11 02:02:02.000 1990-01-18 2024-10-11 02:02:02 +7323 7323 7324 732.3 1464.6000000000001 7323 1990-01-19 2024-10-11 02:02:03.000 1990-01-19 2024-10-11 02:02:03 +7324 7324 7325 732.4 1464.8000000000002 7324 1990-01-20 2024-10-11 02:02:04.000 1990-01-20 2024-10-11 02:02:04 +7326 7326 7327 732.6 1465.2 7326 1990-01-22 2024-10-11 02:02:06.000 1990-01-22 2024-10-11 02:02:06 +7327 7327 7328 732.7 1465.4 7327 1990-01-23 2024-10-11 02:02:07.000 1990-01-23 2024-10-11 02:02:07 +7328 7328 7329 732.8 1465.6000000000001 7328 1990-01-24 2024-10-11 02:02:08.000 1990-01-24 2024-10-11 02:02:08 +7329 7329 7330 732.9 1465.8000000000002 7329 1990-01-25 2024-10-11 02:02:09.000 1990-01-25 2024-10-11 02:02:09 +7331 7331 7332 733.1 1466.2 7331 1990-01-27 2024-10-11 02:02:11.000 1990-01-27 2024-10-11 02:02:11 +7332 7332 7333 733.2 1466.4 7332 1990-01-28 2024-10-11 02:02:12.000 1990-01-28 2024-10-11 02:02:12 +7333 7333 7334 733.3 1466.6000000000001 7333 1990-01-29 2024-10-11 02:02:13.000 1990-01-29 2024-10-11 02:02:13 +7334 7334 7335 733.4 1466.8000000000002 7334 1990-01-30 2024-10-11 02:02:14.000 1990-01-30 2024-10-11 02:02:14 +7336 7336 7337 733.6 1467.2 7336 1990-02-01 2024-10-11 02:02:16.000 1990-02-01 2024-10-11 02:02:16 +7337 7337 7338 733.7 1467.4 7337 1990-02-02 2024-10-11 02:02:17.000 1990-02-02 2024-10-11 02:02:17 +7338 7338 7339 733.8 1467.6000000000001 7338 1990-02-03 2024-10-11 02:02:18.000 1990-02-03 2024-10-11 02:02:18 +7339 7339 7340 733.9 1467.8000000000002 7339 1990-02-04 2024-10-11 02:02:19.000 1990-02-04 2024-10-11 02:02:19 +7341 7341 7342 734.1 1468.2 7341 1990-02-06 2024-10-11 02:02:21.000 1990-02-06 2024-10-11 02:02:21 +7342 7342 7343 734.2 1468.4 7342 1990-02-07 2024-10-11 02:02:22.000 1990-02-07 2024-10-11 02:02:22 +7343 7343 7344 734.3 1468.6000000000001 7343 1990-02-08 2024-10-11 02:02:23.000 1990-02-08 2024-10-11 02:02:23 +7344 7344 7345 734.4 1468.8000000000002 7344 1990-02-09 2024-10-11 02:02:24.000 1990-02-09 2024-10-11 02:02:24 +7346 7346 7347 734.6 1469.2 7346 1990-02-11 2024-10-11 02:02:26.000 1990-02-11 2024-10-11 02:02:26 +7347 7347 7348 734.7 1469.4 7347 1990-02-12 2024-10-11 02:02:27.000 1990-02-12 2024-10-11 02:02:27 +7348 7348 7349 734.8 1469.6000000000001 7348 1990-02-13 2024-10-11 02:02:28.000 1990-02-13 2024-10-11 02:02:28 +7349 7349 7350 734.9 1469.8000000000002 7349 1990-02-14 2024-10-11 02:02:29.000 1990-02-14 2024-10-11 02:02:29 +7351 7351 7352 735.1 1470.2 7351 1990-02-16 2024-10-11 02:02:31.000 1990-02-16 2024-10-11 02:02:31 +7352 7352 7353 735.2 1470.4 7352 1990-02-17 2024-10-11 02:02:32.000 1990-02-17 2024-10-11 02:02:32 +7353 7353 7354 735.3 1470.6000000000001 7353 1990-02-18 2024-10-11 02:02:33.000 1990-02-18 2024-10-11 02:02:33 +7354 7354 7355 735.4 1470.8000000000002 7354 1990-02-19 2024-10-11 02:02:34.000 1990-02-19 2024-10-11 02:02:34 +7356 7356 7357 735.6 1471.2 7356 1990-02-21 2024-10-11 02:02:36.000 1990-02-21 2024-10-11 02:02:36 +7357 7357 7358 735.7 1471.4 7357 1990-02-22 2024-10-11 02:02:37.000 1990-02-22 2024-10-11 02:02:37 +7358 7358 7359 735.8 1471.6000000000001 7358 1990-02-23 2024-10-11 02:02:38.000 1990-02-23 2024-10-11 02:02:38 +7359 7359 7360 735.9 1471.8000000000002 7359 1990-02-24 2024-10-11 02:02:39.000 1990-02-24 2024-10-11 02:02:39 +7361 7361 7362 736.1 1472.2 7361 1990-02-26 2024-10-11 02:02:41.000 1990-02-26 2024-10-11 02:02:41 +7362 7362 7363 736.2 1472.4 7362 1990-02-27 2024-10-11 02:02:42.000 1990-02-27 2024-10-11 02:02:42 +7363 7363 7364 736.3 1472.6000000000001 7363 1990-02-28 2024-10-11 02:02:43.000 1990-02-28 2024-10-11 02:02:43 +7364 7364 7365 736.4 1472.8000000000002 7364 1990-03-01 2024-10-11 02:02:44.000 1990-03-01 2024-10-11 02:02:44 +7366 7366 7367 736.6 1473.2 7366 1990-03-03 2024-10-11 02:02:46.000 1990-03-03 2024-10-11 02:02:46 +7367 7367 7368 736.7 1473.4 7367 1990-03-04 2024-10-11 02:02:47.000 1990-03-04 2024-10-11 02:02:47 +7368 7368 7369 736.8 1473.6000000000001 7368 1990-03-05 2024-10-11 02:02:48.000 1990-03-05 2024-10-11 02:02:48 +7369 7369 7370 736.9 1473.8000000000002 7369 1990-03-06 2024-10-11 02:02:49.000 1990-03-06 2024-10-11 02:02:49 +7371 7371 7372 737.1 1474.2 7371 1990-03-08 2024-10-11 02:02:51.000 1990-03-08 2024-10-11 02:02:51 +7372 7372 7373 737.2 1474.4 7372 1990-03-09 2024-10-11 02:02:52.000 1990-03-09 2024-10-11 02:02:52 +7373 7373 7374 737.3 1474.6000000000001 7373 1990-03-10 2024-10-11 02:02:53.000 1990-03-10 2024-10-11 02:02:53 +7374 7374 7375 737.4 1474.8000000000002 7374 1990-03-11 2024-10-11 02:02:54.000 1990-03-11 2024-10-11 02:02:54 +7376 7376 7377 737.6 1475.2 7376 1990-03-13 2024-10-11 02:02:56.000 1990-03-13 2024-10-11 02:02:56 +7377 7377 7378 737.7 1475.4 7377 1990-03-14 2024-10-11 02:02:57.000 1990-03-14 2024-10-11 02:02:57 +7378 7378 7379 737.8 1475.6000000000001 7378 1990-03-15 2024-10-11 02:02:58.000 1990-03-15 2024-10-11 02:02:58 +7379 7379 7380 737.9 1475.8000000000002 7379 1990-03-16 2024-10-11 02:02:59.000 1990-03-16 2024-10-11 02:02:59 +7381 7381 7382 738.1 1476.2 7381 1990-03-18 2024-10-11 02:03:01.000 1990-03-18 2024-10-11 02:03:01 +7382 7382 7383 738.2 1476.4 7382 1990-03-19 2024-10-11 02:03:02.000 1990-03-19 2024-10-11 02:03:02 +7383 7383 7384 738.3 1476.6000000000001 7383 1990-03-20 2024-10-11 02:03:03.000 1990-03-20 2024-10-11 02:03:03 +7384 7384 7385 738.4 1476.8000000000002 7384 1990-03-21 2024-10-11 02:03:04.000 1990-03-21 2024-10-11 02:03:04 +7386 7386 7387 738.6 1477.2 7386 1990-03-23 2024-10-11 02:03:06.000 1990-03-23 2024-10-11 02:03:06 +7387 7387 7388 738.7 1477.4 7387 1990-03-24 2024-10-11 02:03:07.000 1990-03-24 2024-10-11 02:03:07 +7388 7388 7389 738.8 1477.6000000000001 7388 1990-03-25 2024-10-11 02:03:08.000 1990-03-25 2024-10-11 02:03:08 +7389 7389 7390 738.9 1477.8000000000002 7389 1990-03-26 2024-10-11 02:03:09.000 1990-03-26 2024-10-11 02:03:09 +7391 7391 7392 739.1 1478.2 7391 1990-03-28 2024-10-11 02:03:11.000 1990-03-28 2024-10-11 02:03:11 +7392 7392 7393 739.2 1478.4 7392 1990-03-29 2024-10-11 02:03:12.000 1990-03-29 2024-10-11 02:03:12 +7393 7393 7394 739.3 1478.6000000000001 7393 1990-03-30 2024-10-11 02:03:13.000 1990-03-30 2024-10-11 02:03:13 +7394 7394 7395 739.4 1478.8000000000002 7394 1990-03-31 2024-10-11 02:03:14.000 1990-03-31 2024-10-11 02:03:14 +7396 7396 7397 739.6 1479.2 7396 1990-04-02 2024-10-11 02:03:16.000 1990-04-02 2024-10-11 02:03:16 +7397 7397 7398 739.7 1479.4 7397 1990-04-03 2024-10-11 02:03:17.000 1990-04-03 2024-10-11 02:03:17 +7398 7398 7399 739.8 1479.6000000000001 7398 1990-04-04 2024-10-11 02:03:18.000 1990-04-04 2024-10-11 02:03:18 +7399 7399 7400 739.9 1479.8000000000002 7399 1990-04-05 2024-10-11 02:03:19.000 1990-04-05 2024-10-11 02:03:19 +7401 7401 7402 740.1 1480.2 7401 1990-04-07 2024-10-11 02:03:21.000 1990-04-07 2024-10-11 02:03:21 +7402 7402 7403 740.2 1480.4 7402 1990-04-08 2024-10-11 02:03:22.000 1990-04-08 2024-10-11 02:03:22 +7403 7403 7404 740.3 1480.6000000000001 7403 1990-04-09 2024-10-11 02:03:23.000 1990-04-09 2024-10-11 02:03:23 +7404 7404 7405 740.4 1480.8000000000002 7404 1990-04-10 2024-10-11 02:03:24.000 1990-04-10 2024-10-11 02:03:24 +7406 7406 7407 740.6 1481.2 7406 1990-04-12 2024-10-11 02:03:26.000 1990-04-12 2024-10-11 02:03:26 +7407 7407 7408 740.7 1481.4 7407 1990-04-13 2024-10-11 02:03:27.000 1990-04-13 2024-10-11 02:03:27 +7408 7408 7409 740.8 1481.6000000000001 7408 1990-04-14 2024-10-11 02:03:28.000 1990-04-14 2024-10-11 02:03:28 +7409 7409 7410 740.9 1481.8000000000002 7409 1990-04-15 2024-10-11 02:03:29.000 1990-04-15 2024-10-11 02:03:29 +7411 7411 7412 741.1 1482.2 7411 1990-04-17 2024-10-11 02:03:31.000 1990-04-17 2024-10-11 02:03:31 +7412 7412 7413 741.2 1482.4 7412 1990-04-18 2024-10-11 02:03:32.000 1990-04-18 2024-10-11 02:03:32 +7413 7413 7414 741.3 1482.6000000000001 7413 1990-04-19 2024-10-11 02:03:33.000 1990-04-19 2024-10-11 02:03:33 +7414 7414 7415 741.4 1482.8000000000002 7414 1990-04-20 2024-10-11 02:03:34.000 1990-04-20 2024-10-11 02:03:34 +7416 7416 7417 741.6 1483.2 7416 1990-04-22 2024-10-11 02:03:36.000 1990-04-22 2024-10-11 02:03:36 +7417 7417 7418 741.7 1483.4 7417 1990-04-23 2024-10-11 02:03:37.000 1990-04-23 2024-10-11 02:03:37 +7418 7418 7419 741.8 1483.6000000000001 7418 1990-04-24 2024-10-11 02:03:38.000 1990-04-24 2024-10-11 02:03:38 +7419 7419 7420 741.9 1483.8000000000002 7419 1990-04-25 2024-10-11 02:03:39.000 1990-04-25 2024-10-11 02:03:39 +7421 7421 7422 742.1 1484.2 7421 1990-04-27 2024-10-11 02:03:41.000 1990-04-27 2024-10-11 02:03:41 +7422 7422 7423 742.2 1484.4 7422 1990-04-28 2024-10-11 02:03:42.000 1990-04-28 2024-10-11 02:03:42 +7423 7423 7424 742.3 1484.6000000000001 7423 1990-04-29 2024-10-11 02:03:43.000 1990-04-29 2024-10-11 02:03:43 +7424 7424 7425 742.4 1484.8000000000002 7424 1990-04-30 2024-10-11 02:03:44.000 1990-04-30 2024-10-11 02:03:44 +7426 7426 7427 742.6 1485.2 7426 1990-05-02 2024-10-11 02:03:46.000 1990-05-02 2024-10-11 02:03:46 +7427 7427 7428 742.7 1485.4 7427 1990-05-03 2024-10-11 02:03:47.000 1990-05-03 2024-10-11 02:03:47 +7428 7428 7429 742.8 1485.6000000000001 7428 1990-05-04 2024-10-11 02:03:48.000 1990-05-04 2024-10-11 02:03:48 +7429 7429 7430 742.9 1485.8000000000002 7429 1990-05-05 2024-10-11 02:03:49.000 1990-05-05 2024-10-11 02:03:49 +7431 7431 7432 743.1 1486.2 7431 1990-05-07 2024-10-11 02:03:51.000 1990-05-07 2024-10-11 02:03:51 +7432 7432 7433 743.2 1486.4 7432 1990-05-08 2024-10-11 02:03:52.000 1990-05-08 2024-10-11 02:03:52 +7433 7433 7434 743.3 1486.6000000000001 7433 1990-05-09 2024-10-11 02:03:53.000 1990-05-09 2024-10-11 02:03:53 +7434 7434 7435 743.4 1486.8000000000002 7434 1990-05-10 2024-10-11 02:03:54.000 1990-05-10 2024-10-11 02:03:54 +7436 7436 7437 743.6 1487.2 7436 1990-05-12 2024-10-11 02:03:56.000 1990-05-12 2024-10-11 02:03:56 +7437 7437 7438 743.7 1487.4 7437 1990-05-13 2024-10-11 02:03:57.000 1990-05-13 2024-10-11 02:03:57 +7438 7438 7439 743.8 1487.6000000000001 7438 1990-05-14 2024-10-11 02:03:58.000 1990-05-14 2024-10-11 02:03:58 +7439 7439 7440 743.9 1487.8000000000002 7439 1990-05-15 2024-10-11 02:03:59.000 1990-05-15 2024-10-11 02:03:59 +7441 7441 7442 744.1 1488.2 7441 1990-05-17 2024-10-11 02:04:01.000 1990-05-17 2024-10-11 02:04:01 +7442 7442 7443 744.2 1488.4 7442 1990-05-18 2024-10-11 02:04:02.000 1990-05-18 2024-10-11 02:04:02 +7443 7443 7444 744.3 1488.6000000000001 7443 1990-05-19 2024-10-11 02:04:03.000 1990-05-19 2024-10-11 02:04:03 +7444 7444 7445 744.4 1488.8000000000002 7444 1990-05-20 2024-10-11 02:04:04.000 1990-05-20 2024-10-11 02:04:04 +7446 7446 7447 744.6 1489.2 7446 1990-05-22 2024-10-11 02:04:06.000 1990-05-22 2024-10-11 02:04:06 +7447 7447 7448 744.7 1489.4 7447 1990-05-23 2024-10-11 02:04:07.000 1990-05-23 2024-10-11 02:04:07 +7448 7448 7449 744.8 1489.6000000000001 7448 1990-05-24 2024-10-11 02:04:08.000 1990-05-24 2024-10-11 02:04:08 +7449 7449 7450 744.9 1489.8000000000002 7449 1990-05-25 2024-10-11 02:04:09.000 1990-05-25 2024-10-11 02:04:09 +7451 7451 7452 745.1 1490.2 7451 1990-05-27 2024-10-11 02:04:11.000 1990-05-27 2024-10-11 02:04:11 +7452 7452 7453 745.2 1490.4 7452 1990-05-28 2024-10-11 02:04:12.000 1990-05-28 2024-10-11 02:04:12 +7453 7453 7454 745.3 1490.6000000000001 7453 1990-05-29 2024-10-11 02:04:13.000 1990-05-29 2024-10-11 02:04:13 +7454 7454 7455 745.4 1490.8000000000002 7454 1990-05-30 2024-10-11 02:04:14.000 1990-05-30 2024-10-11 02:04:14 +7456 7456 7457 745.6 1491.2 7456 1990-06-01 2024-10-11 02:04:16.000 1990-06-01 2024-10-11 02:04:16 +7457 7457 7458 745.7 1491.4 7457 1990-06-02 2024-10-11 02:04:17.000 1990-06-02 2024-10-11 02:04:17 +7458 7458 7459 745.8 1491.6000000000001 7458 1990-06-03 2024-10-11 02:04:18.000 1990-06-03 2024-10-11 02:04:18 +7459 7459 7460 745.9 1491.8000000000002 7459 1990-06-04 2024-10-11 02:04:19.000 1990-06-04 2024-10-11 02:04:19 +7461 7461 7462 746.1 1492.2 7461 1990-06-06 2024-10-11 02:04:21.000 1990-06-06 2024-10-11 02:04:21 +7462 7462 7463 746.2 1492.4 7462 1990-06-07 2024-10-11 02:04:22.000 1990-06-07 2024-10-11 02:04:22 +7463 7463 7464 746.3 1492.6000000000001 7463 1990-06-08 2024-10-11 02:04:23.000 1990-06-08 2024-10-11 02:04:23 +7464 7464 7465 746.4 1492.8000000000002 7464 1990-06-09 2024-10-11 02:04:24.000 1990-06-09 2024-10-11 02:04:24 +7466 7466 7467 746.6 1493.2 7466 1990-06-11 2024-10-11 02:04:26.000 1990-06-11 2024-10-11 02:04:26 +7467 7467 7468 746.7 1493.4 7467 1990-06-12 2024-10-11 02:04:27.000 1990-06-12 2024-10-11 02:04:27 +7468 7468 7469 746.8 1493.6000000000001 7468 1990-06-13 2024-10-11 02:04:28.000 1990-06-13 2024-10-11 02:04:28 +7469 7469 7470 746.9 1493.8000000000002 7469 1990-06-14 2024-10-11 02:04:29.000 1990-06-14 2024-10-11 02:04:29 +7471 7471 7472 747.1 1494.2 7471 1990-06-16 2024-10-11 02:04:31.000 1990-06-16 2024-10-11 02:04:31 +7472 7472 7473 747.2 1494.4 7472 1990-06-17 2024-10-11 02:04:32.000 1990-06-17 2024-10-11 02:04:32 +7473 7473 7474 747.3 1494.6000000000001 7473 1990-06-18 2024-10-11 02:04:33.000 1990-06-18 2024-10-11 02:04:33 +7474 7474 7475 747.4 1494.8000000000002 7474 1990-06-19 2024-10-11 02:04:34.000 1990-06-19 2024-10-11 02:04:34 +7476 7476 7477 747.6 1495.2 7476 1990-06-21 2024-10-11 02:04:36.000 1990-06-21 2024-10-11 02:04:36 +7477 7477 7478 747.7 1495.4 7477 1990-06-22 2024-10-11 02:04:37.000 1990-06-22 2024-10-11 02:04:37 +7478 7478 7479 747.8 1495.6000000000001 7478 1990-06-23 2024-10-11 02:04:38.000 1990-06-23 2024-10-11 02:04:38 +7479 7479 7480 747.9 1495.8000000000002 7479 1990-06-24 2024-10-11 02:04:39.000 1990-06-24 2024-10-11 02:04:39 +7481 7481 7482 748.1 1496.2 7481 1990-06-26 2024-10-11 02:04:41.000 1990-06-26 2024-10-11 02:04:41 +7482 7482 7483 748.2 1496.4 7482 1990-06-27 2024-10-11 02:04:42.000 1990-06-27 2024-10-11 02:04:42 +7483 7483 7484 748.3 1496.6000000000001 7483 1990-06-28 2024-10-11 02:04:43.000 1990-06-28 2024-10-11 02:04:43 +7484 7484 7485 748.4 1496.8000000000002 7484 1990-06-29 2024-10-11 02:04:44.000 1990-06-29 2024-10-11 02:04:44 +7486 7486 7487 748.6 1497.2 7486 1990-07-01 2024-10-11 02:04:46.000 1990-07-01 2024-10-11 02:04:46 +7487 7487 7488 748.7 1497.4 7487 1990-07-02 2024-10-11 02:04:47.000 1990-07-02 2024-10-11 02:04:47 +7488 7488 7489 748.8 1497.6000000000001 7488 1990-07-03 2024-10-11 02:04:48.000 1990-07-03 2024-10-11 02:04:48 +7489 7489 7490 748.9 1497.8000000000002 7489 1990-07-04 2024-10-11 02:04:49.000 1990-07-04 2024-10-11 02:04:49 +7491 7491 7492 749.1 1498.2 7491 1990-07-06 2024-10-11 02:04:51.000 1990-07-06 2024-10-11 02:04:51 +7492 7492 7493 749.2 1498.4 7492 1990-07-07 2024-10-11 02:04:52.000 1990-07-07 2024-10-11 02:04:52 +7493 7493 7494 749.3 1498.6000000000001 7493 1990-07-08 2024-10-11 02:04:53.000 1990-07-08 2024-10-11 02:04:53 +7494 7494 7495 749.4 1498.8000000000002 7494 1990-07-09 2024-10-11 02:04:54.000 1990-07-09 2024-10-11 02:04:54 +7496 7496 7497 749.6 1499.2 7496 1990-07-11 2024-10-11 02:04:56.000 1990-07-11 2024-10-11 02:04:56 +7497 7497 7498 749.7 1499.4 7497 1990-07-12 2024-10-11 02:04:57.000 1990-07-12 2024-10-11 02:04:57 +7498 7498 7499 749.8 1499.6000000000001 7498 1990-07-13 2024-10-11 02:04:58.000 1990-07-13 2024-10-11 02:04:58 +7499 7499 7500 749.9 1499.8000000000002 7499 1990-07-14 2024-10-11 02:04:59.000 1990-07-14 2024-10-11 02:04:59 +7501 7501 7502 750.1 1500.2 7501 1990-07-16 2024-10-11 02:05:01.000 1990-07-16 2024-10-11 02:05:01 +7502 7502 7503 750.2 1500.4 7502 1990-07-17 2024-10-11 02:05:02.000 1990-07-17 2024-10-11 02:05:02 +7503 7503 7504 750.3 1500.6000000000001 7503 1990-07-18 2024-10-11 02:05:03.000 1990-07-18 2024-10-11 02:05:03 +7504 7504 7505 750.4 1500.8000000000002 7504 1990-07-19 2024-10-11 02:05:04.000 1990-07-19 2024-10-11 02:05:04 +7506 7506 7507 750.6 1501.2 7506 1990-07-21 2024-10-11 02:05:06.000 1990-07-21 2024-10-11 02:05:06 +7507 7507 7508 750.7 1501.4 7507 1990-07-22 2024-10-11 02:05:07.000 1990-07-22 2024-10-11 02:05:07 +7508 7508 7509 750.8 1501.6000000000001 7508 1990-07-23 2024-10-11 02:05:08.000 1990-07-23 2024-10-11 02:05:08 +7509 7509 7510 750.9 1501.8000000000002 7509 1990-07-24 2024-10-11 02:05:09.000 1990-07-24 2024-10-11 02:05:09 +7511 7511 7512 751.1 1502.2 7511 1990-07-26 2024-10-11 02:05:11.000 1990-07-26 2024-10-11 02:05:11 +7512 7512 7513 751.2 1502.4 7512 1990-07-27 2024-10-11 02:05:12.000 1990-07-27 2024-10-11 02:05:12 +7513 7513 7514 751.3 1502.6000000000001 7513 1990-07-28 2024-10-11 02:05:13.000 1990-07-28 2024-10-11 02:05:13 +7514 7514 7515 751.4 1502.8000000000002 7514 1990-07-29 2024-10-11 02:05:14.000 1990-07-29 2024-10-11 02:05:14 +7516 7516 7517 751.6 1503.2 7516 1990-07-31 2024-10-11 02:05:16.000 1990-07-31 2024-10-11 02:05:16 +7517 7517 7518 751.7 1503.4 7517 1990-08-01 2024-10-11 02:05:17.000 1990-08-01 2024-10-11 02:05:17 +7518 7518 7519 751.8 1503.6000000000001 7518 1990-08-02 2024-10-11 02:05:18.000 1990-08-02 2024-10-11 02:05:18 +7519 7519 7520 751.9 1503.8000000000002 7519 1990-08-03 2024-10-11 02:05:19.000 1990-08-03 2024-10-11 02:05:19 +7521 7521 7522 752.1 1504.2 7521 1990-08-05 2024-10-11 02:05:21.000 1990-08-05 2024-10-11 02:05:21 +7522 7522 7523 752.2 1504.4 7522 1990-08-06 2024-10-11 02:05:22.000 1990-08-06 2024-10-11 02:05:22 +7523 7523 7524 752.3 1504.6000000000001 7523 1990-08-07 2024-10-11 02:05:23.000 1990-08-07 2024-10-11 02:05:23 +7524 7524 7525 752.4 1504.8000000000002 7524 1990-08-08 2024-10-11 02:05:24.000 1990-08-08 2024-10-11 02:05:24 +7526 7526 7527 752.6 1505.2 7526 1990-08-10 2024-10-11 02:05:26.000 1990-08-10 2024-10-11 02:05:26 +7527 7527 7528 752.7 1505.4 7527 1990-08-11 2024-10-11 02:05:27.000 1990-08-11 2024-10-11 02:05:27 +7528 7528 7529 752.8 1505.6000000000001 7528 1990-08-12 2024-10-11 02:05:28.000 1990-08-12 2024-10-11 02:05:28 +7529 7529 7530 752.9 1505.8000000000002 7529 1990-08-13 2024-10-11 02:05:29.000 1990-08-13 2024-10-11 02:05:29 +7531 7531 7532 753.1 1506.2 7531 1990-08-15 2024-10-11 02:05:31.000 1990-08-15 2024-10-11 02:05:31 +7532 7532 7533 753.2 1506.4 7532 1990-08-16 2024-10-11 02:05:32.000 1990-08-16 2024-10-11 02:05:32 +7533 7533 7534 753.3 1506.6000000000001 7533 1990-08-17 2024-10-11 02:05:33.000 1990-08-17 2024-10-11 02:05:33 +7534 7534 7535 753.4 1506.8000000000002 7534 1990-08-18 2024-10-11 02:05:34.000 1990-08-18 2024-10-11 02:05:34 +7536 7536 7537 753.6 1507.2 7536 1990-08-20 2024-10-11 02:05:36.000 1990-08-20 2024-10-11 02:05:36 +7537 7537 7538 753.7 1507.4 7537 1990-08-21 2024-10-11 02:05:37.000 1990-08-21 2024-10-11 02:05:37 +7538 7538 7539 753.8 1507.6000000000001 7538 1990-08-22 2024-10-11 02:05:38.000 1990-08-22 2024-10-11 02:05:38 +7539 7539 7540 753.9 1507.8000000000002 7539 1990-08-23 2024-10-11 02:05:39.000 1990-08-23 2024-10-11 02:05:39 +7541 7541 7542 754.1 1508.2 7541 1990-08-25 2024-10-11 02:05:41.000 1990-08-25 2024-10-11 02:05:41 +7542 7542 7543 754.2 1508.4 7542 1990-08-26 2024-10-11 02:05:42.000 1990-08-26 2024-10-11 02:05:42 +7543 7543 7544 754.3 1508.6000000000001 7543 1990-08-27 2024-10-11 02:05:43.000 1990-08-27 2024-10-11 02:05:43 +7544 7544 7545 754.4 1508.8000000000002 7544 1990-08-28 2024-10-11 02:05:44.000 1990-08-28 2024-10-11 02:05:44 +7546 7546 7547 754.6 1509.2 7546 1990-08-30 2024-10-11 02:05:46.000 1990-08-30 2024-10-11 02:05:46 +7547 7547 7548 754.7 1509.4 7547 1990-08-31 2024-10-11 02:05:47.000 1990-08-31 2024-10-11 02:05:47 +7548 7548 7549 754.8 1509.6000000000001 7548 1990-09-01 2024-10-11 02:05:48.000 1990-09-01 2024-10-11 02:05:48 +7549 7549 7550 754.9 1509.8000000000002 7549 1990-09-02 2024-10-11 02:05:49.000 1990-09-02 2024-10-11 02:05:49 +7551 7551 7552 755.1 1510.2 7551 1990-09-04 2024-10-11 02:05:51.000 1990-09-04 2024-10-11 02:05:51 +7552 7552 7553 755.2 1510.4 7552 1990-09-05 2024-10-11 02:05:52.000 1990-09-05 2024-10-11 02:05:52 +7553 7553 7554 755.3 1510.6000000000001 7553 1990-09-06 2024-10-11 02:05:53.000 1990-09-06 2024-10-11 02:05:53 +7554 7554 7555 755.4 1510.8000000000002 7554 1990-09-07 2024-10-11 02:05:54.000 1990-09-07 2024-10-11 02:05:54 +7556 7556 7557 755.6 1511.2 7556 1990-09-09 2024-10-11 02:05:56.000 1990-09-09 2024-10-11 02:05:56 +7557 7557 7558 755.7 1511.4 7557 1990-09-10 2024-10-11 02:05:57.000 1990-09-10 2024-10-11 02:05:57 +7558 7558 7559 755.8 1511.6000000000001 7558 1990-09-11 2024-10-11 02:05:58.000 1990-09-11 2024-10-11 02:05:58 +7559 7559 7560 755.9 1511.8000000000002 7559 1990-09-12 2024-10-11 02:05:59.000 1990-09-12 2024-10-11 02:05:59 +7561 7561 7562 756.1 1512.2 7561 1990-09-14 2024-10-11 02:06:01.000 1990-09-14 2024-10-11 02:06:01 +7562 7562 7563 756.2 1512.4 7562 1990-09-15 2024-10-11 02:06:02.000 1990-09-15 2024-10-11 02:06:02 +7563 7563 7564 756.3 1512.6000000000001 7563 1990-09-16 2024-10-11 02:06:03.000 1990-09-16 2024-10-11 02:06:03 +7564 7564 7565 756.4 1512.8000000000002 7564 1990-09-17 2024-10-11 02:06:04.000 1990-09-17 2024-10-11 02:06:04 +7566 7566 7567 756.6 1513.2 7566 1990-09-19 2024-10-11 02:06:06.000 1990-09-19 2024-10-11 02:06:06 +7567 7567 7568 756.7 1513.4 7567 1990-09-20 2024-10-11 02:06:07.000 1990-09-20 2024-10-11 02:06:07 +7568 7568 7569 756.8 1513.6000000000001 7568 1990-09-21 2024-10-11 02:06:08.000 1990-09-21 2024-10-11 02:06:08 +7569 7569 7570 756.9 1513.8000000000002 7569 1990-09-22 2024-10-11 02:06:09.000 1990-09-22 2024-10-11 02:06:09 +7571 7571 7572 757.1 1514.2 7571 1990-09-24 2024-10-11 02:06:11.000 1990-09-24 2024-10-11 02:06:11 +7572 7572 7573 757.2 1514.4 7572 1990-09-25 2024-10-11 02:06:12.000 1990-09-25 2024-10-11 02:06:12 +7573 7573 7574 757.3 1514.6000000000001 7573 1990-09-26 2024-10-11 02:06:13.000 1990-09-26 2024-10-11 02:06:13 +7574 7574 7575 757.4 1514.8000000000002 7574 1990-09-27 2024-10-11 02:06:14.000 1990-09-27 2024-10-11 02:06:14 +7576 7576 7577 757.6 1515.2 7576 1990-09-29 2024-10-11 02:06:16.000 1990-09-29 2024-10-11 02:06:16 +7577 7577 7578 757.7 1515.4 7577 1990-09-30 2024-10-11 02:06:17.000 1990-09-30 2024-10-11 02:06:17 +7578 7578 7579 757.8 1515.6000000000001 7578 1990-10-01 2024-10-11 02:06:18.000 1990-10-01 2024-10-11 02:06:18 +7579 7579 7580 757.9 1515.8000000000002 7579 1990-10-02 2024-10-11 02:06:19.000 1990-10-02 2024-10-11 02:06:19 +7581 7581 7582 758.1 1516.2 7581 1990-10-04 2024-10-11 02:06:21.000 1990-10-04 2024-10-11 02:06:21 +7582 7582 7583 758.2 1516.4 7582 1990-10-05 2024-10-11 02:06:22.000 1990-10-05 2024-10-11 02:06:22 +7583 7583 7584 758.3 1516.6000000000001 7583 1990-10-06 2024-10-11 02:06:23.000 1990-10-06 2024-10-11 02:06:23 +7584 7584 7585 758.4 1516.8000000000002 7584 1990-10-07 2024-10-11 02:06:24.000 1990-10-07 2024-10-11 02:06:24 +7586 7586 7587 758.6 1517.2 7586 1990-10-09 2024-10-11 02:06:26.000 1990-10-09 2024-10-11 02:06:26 +7587 7587 7588 758.7 1517.4 7587 1990-10-10 2024-10-11 02:06:27.000 1990-10-10 2024-10-11 02:06:27 +7588 7588 7589 758.8 1517.6000000000001 7588 1990-10-11 2024-10-11 02:06:28.000 1990-10-11 2024-10-11 02:06:28 +7589 7589 7590 758.9 1517.8000000000002 7589 1990-10-12 2024-10-11 02:06:29.000 1990-10-12 2024-10-11 02:06:29 +7591 7591 7592 759.1 1518.2 7591 1990-10-14 2024-10-11 02:06:31.000 1990-10-14 2024-10-11 02:06:31 +7592 7592 7593 759.2 1518.4 7592 1990-10-15 2024-10-11 02:06:32.000 1990-10-15 2024-10-11 02:06:32 +7593 7593 7594 759.3 1518.6000000000001 7593 1990-10-16 2024-10-11 02:06:33.000 1990-10-16 2024-10-11 02:06:33 +7594 7594 7595 759.4 1518.8000000000002 7594 1990-10-17 2024-10-11 02:06:34.000 1990-10-17 2024-10-11 02:06:34 +7596 7596 7597 759.6 1519.2 7596 1990-10-19 2024-10-11 02:06:36.000 1990-10-19 2024-10-11 02:06:36 +7597 7597 7598 759.7 1519.4 7597 1990-10-20 2024-10-11 02:06:37.000 1990-10-20 2024-10-11 02:06:37 +7598 7598 7599 759.8 1519.6000000000001 7598 1990-10-21 2024-10-11 02:06:38.000 1990-10-21 2024-10-11 02:06:38 +7599 7599 7600 759.9 1519.8000000000002 7599 1990-10-22 2024-10-11 02:06:39.000 1990-10-22 2024-10-11 02:06:39 +7601 7601 7602 760.1 1520.2 7601 1990-10-24 2024-10-11 02:06:41.000 1990-10-24 2024-10-11 02:06:41 +7602 7602 7603 760.2 1520.4 7602 1990-10-25 2024-10-11 02:06:42.000 1990-10-25 2024-10-11 02:06:42 +7603 7603 7604 760.3 1520.6000000000001 7603 1990-10-26 2024-10-11 02:06:43.000 1990-10-26 2024-10-11 02:06:43 +7604 7604 7605 760.4 1520.8000000000002 7604 1990-10-27 2024-10-11 02:06:44.000 1990-10-27 2024-10-11 02:06:44 +7606 7606 7607 760.6 1521.2 7606 1990-10-29 2024-10-11 02:06:46.000 1990-10-29 2024-10-11 02:06:46 +7607 7607 7608 760.7 1521.4 7607 1990-10-30 2024-10-11 02:06:47.000 1990-10-30 2024-10-11 02:06:47 +7608 7608 7609 760.8 1521.6000000000001 7608 1990-10-31 2024-10-11 02:06:48.000 1990-10-31 2024-10-11 02:06:48 +7609 7609 7610 760.9 1521.8000000000002 7609 1990-11-01 2024-10-11 02:06:49.000 1990-11-01 2024-10-11 02:06:49 +7611 7611 7612 761.1 1522.2 7611 1990-11-03 2024-10-11 02:06:51.000 1990-11-03 2024-10-11 02:06:51 +7612 7612 7613 761.2 1522.4 7612 1990-11-04 2024-10-11 02:06:52.000 1990-11-04 2024-10-11 02:06:52 +7613 7613 7614 761.3 1522.6000000000001 7613 1990-11-05 2024-10-11 02:06:53.000 1990-11-05 2024-10-11 02:06:53 +7614 7614 7615 761.4 1522.8000000000002 7614 1990-11-06 2024-10-11 02:06:54.000 1990-11-06 2024-10-11 02:06:54 +7616 7616 7617 761.6 1523.2 7616 1990-11-08 2024-10-11 02:06:56.000 1990-11-08 2024-10-11 02:06:56 +7617 7617 7618 761.7 1523.4 7617 1990-11-09 2024-10-11 02:06:57.000 1990-11-09 2024-10-11 02:06:57 +7618 7618 7619 761.8 1523.6000000000001 7618 1990-11-10 2024-10-11 02:06:58.000 1990-11-10 2024-10-11 02:06:58 +7619 7619 7620 761.9 1523.8000000000002 7619 1990-11-11 2024-10-11 02:06:59.000 1990-11-11 2024-10-11 02:06:59 +7621 7621 7622 762.1 1524.2 7621 1990-11-13 2024-10-11 02:07:01.000 1990-11-13 2024-10-11 02:07:01 +7622 7622 7623 762.2 1524.4 7622 1990-11-14 2024-10-11 02:07:02.000 1990-11-14 2024-10-11 02:07:02 +7623 7623 7624 762.3 1524.6000000000001 7623 1990-11-15 2024-10-11 02:07:03.000 1990-11-15 2024-10-11 02:07:03 +7624 7624 7625 762.4 1524.8000000000002 7624 1990-11-16 2024-10-11 02:07:04.000 1990-11-16 2024-10-11 02:07:04 +7626 7626 7627 762.6 1525.2 7626 1990-11-18 2024-10-11 02:07:06.000 1990-11-18 2024-10-11 02:07:06 +7627 7627 7628 762.7 1525.4 7627 1990-11-19 2024-10-11 02:07:07.000 1990-11-19 2024-10-11 02:07:07 +7628 7628 7629 762.8 1525.6000000000001 7628 1990-11-20 2024-10-11 02:07:08.000 1990-11-20 2024-10-11 02:07:08 +7629 7629 7630 762.9 1525.8000000000002 7629 1990-11-21 2024-10-11 02:07:09.000 1990-11-21 2024-10-11 02:07:09 +7631 7631 7632 763.1 1526.2 7631 1990-11-23 2024-10-11 02:07:11.000 1990-11-23 2024-10-11 02:07:11 +7632 7632 7633 763.2 1526.4 7632 1990-11-24 2024-10-11 02:07:12.000 1990-11-24 2024-10-11 02:07:12 +7633 7633 7634 763.3 1526.6000000000001 7633 1990-11-25 2024-10-11 02:07:13.000 1990-11-25 2024-10-11 02:07:13 +7634 7634 7635 763.4 1526.8000000000002 7634 1990-11-26 2024-10-11 02:07:14.000 1990-11-26 2024-10-11 02:07:14 +7636 7636 7637 763.6 1527.2 7636 1990-11-28 2024-10-11 02:07:16.000 1990-11-28 2024-10-11 02:07:16 +7637 7637 7638 763.7 1527.4 7637 1990-11-29 2024-10-11 02:07:17.000 1990-11-29 2024-10-11 02:07:17 +7638 7638 7639 763.8 1527.6000000000001 7638 1990-11-30 2024-10-11 02:07:18.000 1990-11-30 2024-10-11 02:07:18 +7639 7639 7640 763.9 1527.8000000000002 7639 1990-12-01 2024-10-11 02:07:19.000 1990-12-01 2024-10-11 02:07:19 +7641 7641 7642 764.1 1528.2 7641 1990-12-03 2024-10-11 02:07:21.000 1990-12-03 2024-10-11 02:07:21 +7642 7642 7643 764.2 1528.4 7642 1990-12-04 2024-10-11 02:07:22.000 1990-12-04 2024-10-11 02:07:22 +7643 7643 7644 764.3 1528.6000000000001 7643 1990-12-05 2024-10-11 02:07:23.000 1990-12-05 2024-10-11 02:07:23 +7644 7644 7645 764.4 1528.8000000000002 7644 1990-12-06 2024-10-11 02:07:24.000 1990-12-06 2024-10-11 02:07:24 +7646 7646 7647 764.6 1529.2 7646 1990-12-08 2024-10-11 02:07:26.000 1990-12-08 2024-10-11 02:07:26 +7647 7647 7648 764.7 1529.4 7647 1990-12-09 2024-10-11 02:07:27.000 1990-12-09 2024-10-11 02:07:27 +7648 7648 7649 764.8 1529.6000000000001 7648 1990-12-10 2024-10-11 02:07:28.000 1990-12-10 2024-10-11 02:07:28 +7649 7649 7650 764.9 1529.8000000000002 7649 1990-12-11 2024-10-11 02:07:29.000 1990-12-11 2024-10-11 02:07:29 +7651 7651 7652 765.1 1530.2 7651 1990-12-13 2024-10-11 02:07:31.000 1990-12-13 2024-10-11 02:07:31 +7652 7652 7653 765.2 1530.4 7652 1990-12-14 2024-10-11 02:07:32.000 1990-12-14 2024-10-11 02:07:32 +7653 7653 7654 765.3 1530.6000000000001 7653 1990-12-15 2024-10-11 02:07:33.000 1990-12-15 2024-10-11 02:07:33 +7654 7654 7655 765.4 1530.8000000000002 7654 1990-12-16 2024-10-11 02:07:34.000 1990-12-16 2024-10-11 02:07:34 +7656 7656 7657 765.6 1531.2 7656 1990-12-18 2024-10-11 02:07:36.000 1990-12-18 2024-10-11 02:07:36 +7657 7657 7658 765.7 1531.4 7657 1990-12-19 2024-10-11 02:07:37.000 1990-12-19 2024-10-11 02:07:37 +7658 7658 7659 765.8 1531.6000000000001 7658 1990-12-20 2024-10-11 02:07:38.000 1990-12-20 2024-10-11 02:07:38 +7659 7659 7660 765.9 1531.8000000000002 7659 1990-12-21 2024-10-11 02:07:39.000 1990-12-21 2024-10-11 02:07:39 +7661 7661 7662 766.1 1532.2 7661 1990-12-23 2024-10-11 02:07:41.000 1990-12-23 2024-10-11 02:07:41 +7662 7662 7663 766.2 1532.4 7662 1990-12-24 2024-10-11 02:07:42.000 1990-12-24 2024-10-11 02:07:42 +7663 7663 7664 766.3 1532.6000000000001 7663 1990-12-25 2024-10-11 02:07:43.000 1990-12-25 2024-10-11 02:07:43 +7664 7664 7665 766.4 1532.8000000000002 7664 1990-12-26 2024-10-11 02:07:44.000 1990-12-26 2024-10-11 02:07:44 +7666 7666 7667 766.6 1533.2 7666 1990-12-28 2024-10-11 02:07:46.000 1990-12-28 2024-10-11 02:07:46 +7667 7667 7668 766.7 1533.4 7667 1990-12-29 2024-10-11 02:07:47.000 1990-12-29 2024-10-11 02:07:47 +7668 7668 7669 766.8 1533.6000000000001 7668 1990-12-30 2024-10-11 02:07:48.000 1990-12-30 2024-10-11 02:07:48 +7669 7669 7670 766.9 1533.8000000000002 7669 1990-12-31 2024-10-11 02:07:49.000 1990-12-31 2024-10-11 02:07:49 +7671 7671 7672 767.1 1534.2 7671 1991-01-02 2024-10-11 02:07:51.000 1991-01-02 2024-10-11 02:07:51 +7672 7672 7673 767.2 1534.4 7672 1991-01-03 2024-10-11 02:07:52.000 1991-01-03 2024-10-11 02:07:52 +7673 7673 7674 767.3 1534.6000000000001 7673 1991-01-04 2024-10-11 02:07:53.000 1991-01-04 2024-10-11 02:07:53 +7674 7674 7675 767.4 1534.8000000000002 7674 1991-01-05 2024-10-11 02:07:54.000 1991-01-05 2024-10-11 02:07:54 +7676 7676 7677 767.6 1535.2 7676 1991-01-07 2024-10-11 02:07:56.000 1991-01-07 2024-10-11 02:07:56 +7677 7677 7678 767.7 1535.4 7677 1991-01-08 2024-10-11 02:07:57.000 1991-01-08 2024-10-11 02:07:57 +7678 7678 7679 767.8 1535.6000000000001 7678 1991-01-09 2024-10-11 02:07:58.000 1991-01-09 2024-10-11 02:07:58 +7679 7679 7680 767.9 1535.8000000000002 7679 1991-01-10 2024-10-11 02:07:59.000 1991-01-10 2024-10-11 02:07:59 +7681 7681 7682 768.1 1536.2 7681 1991-01-12 2024-10-11 02:08:01.000 1991-01-12 2024-10-11 02:08:01 +7682 7682 7683 768.2 1536.4 7682 1991-01-13 2024-10-11 02:08:02.000 1991-01-13 2024-10-11 02:08:02 +7683 7683 7684 768.3 1536.6000000000001 7683 1991-01-14 2024-10-11 02:08:03.000 1991-01-14 2024-10-11 02:08:03 +7684 7684 7685 768.4 1536.8000000000002 7684 1991-01-15 2024-10-11 02:08:04.000 1991-01-15 2024-10-11 02:08:04 +7686 7686 7687 768.6 1537.2 7686 1991-01-17 2024-10-11 02:08:06.000 1991-01-17 2024-10-11 02:08:06 +7687 7687 7688 768.7 1537.4 7687 1991-01-18 2024-10-11 02:08:07.000 1991-01-18 2024-10-11 02:08:07 +7688 7688 7689 768.8 1537.6000000000001 7688 1991-01-19 2024-10-11 02:08:08.000 1991-01-19 2024-10-11 02:08:08 +7689 7689 7690 768.9 1537.8000000000002 7689 1991-01-20 2024-10-11 02:08:09.000 1991-01-20 2024-10-11 02:08:09 +7691 7691 7692 769.1 1538.2 7691 1991-01-22 2024-10-11 02:08:11.000 1991-01-22 2024-10-11 02:08:11 +7692 7692 7693 769.2 1538.4 7692 1991-01-23 2024-10-11 02:08:12.000 1991-01-23 2024-10-11 02:08:12 +7693 7693 7694 769.3 1538.6000000000001 7693 1991-01-24 2024-10-11 02:08:13.000 1991-01-24 2024-10-11 02:08:13 +7694 7694 7695 769.4 1538.8000000000002 7694 1991-01-25 2024-10-11 02:08:14.000 1991-01-25 2024-10-11 02:08:14 +7696 7696 7697 769.6 1539.2 7696 1991-01-27 2024-10-11 02:08:16.000 1991-01-27 2024-10-11 02:08:16 +7697 7697 7698 769.7 1539.4 7697 1991-01-28 2024-10-11 02:08:17.000 1991-01-28 2024-10-11 02:08:17 +7698 7698 7699 769.8 1539.6000000000001 7698 1991-01-29 2024-10-11 02:08:18.000 1991-01-29 2024-10-11 02:08:18 +7699 7699 7700 769.9 1539.8000000000002 7699 1991-01-30 2024-10-11 02:08:19.000 1991-01-30 2024-10-11 02:08:19 +7701 7701 7702 770.1 1540.2 7701 1991-02-01 2024-10-11 02:08:21.000 1991-02-01 2024-10-11 02:08:21 +7702 7702 7703 770.2 1540.4 7702 1991-02-02 2024-10-11 02:08:22.000 1991-02-02 2024-10-11 02:08:22 +7703 7703 7704 770.3 1540.6000000000001 7703 1991-02-03 2024-10-11 02:08:23.000 1991-02-03 2024-10-11 02:08:23 +7704 7704 7705 770.4 1540.8000000000002 7704 1991-02-04 2024-10-11 02:08:24.000 1991-02-04 2024-10-11 02:08:24 +7706 7706 7707 770.6 1541.2 7706 1991-02-06 2024-10-11 02:08:26.000 1991-02-06 2024-10-11 02:08:26 +7707 7707 7708 770.7 1541.4 7707 1991-02-07 2024-10-11 02:08:27.000 1991-02-07 2024-10-11 02:08:27 +7708 7708 7709 770.8 1541.6000000000001 7708 1991-02-08 2024-10-11 02:08:28.000 1991-02-08 2024-10-11 02:08:28 +7709 7709 7710 770.9 1541.8000000000002 7709 1991-02-09 2024-10-11 02:08:29.000 1991-02-09 2024-10-11 02:08:29 +7711 7711 7712 771.1 1542.2 7711 1991-02-11 2024-10-11 02:08:31.000 1991-02-11 2024-10-11 02:08:31 +7712 7712 7713 771.2 1542.4 7712 1991-02-12 2024-10-11 02:08:32.000 1991-02-12 2024-10-11 02:08:32 +7713 7713 7714 771.3 1542.6000000000001 7713 1991-02-13 2024-10-11 02:08:33.000 1991-02-13 2024-10-11 02:08:33 +7714 7714 7715 771.4 1542.8000000000002 7714 1991-02-14 2024-10-11 02:08:34.000 1991-02-14 2024-10-11 02:08:34 +7716 7716 7717 771.6 1543.2 7716 1991-02-16 2024-10-11 02:08:36.000 1991-02-16 2024-10-11 02:08:36 +7717 7717 7718 771.7 1543.4 7717 1991-02-17 2024-10-11 02:08:37.000 1991-02-17 2024-10-11 02:08:37 +7718 7718 7719 771.8 1543.6000000000001 7718 1991-02-18 2024-10-11 02:08:38.000 1991-02-18 2024-10-11 02:08:38 +7719 7719 7720 771.9 1543.8000000000002 7719 1991-02-19 2024-10-11 02:08:39.000 1991-02-19 2024-10-11 02:08:39 +7721 7721 7722 772.1 1544.2 7721 1991-02-21 2024-10-11 02:08:41.000 1991-02-21 2024-10-11 02:08:41 +7722 7722 7723 772.2 1544.4 7722 1991-02-22 2024-10-11 02:08:42.000 1991-02-22 2024-10-11 02:08:42 +7723 7723 7724 772.3 1544.6000000000001 7723 1991-02-23 2024-10-11 02:08:43.000 1991-02-23 2024-10-11 02:08:43 +7724 7724 7725 772.4 1544.8000000000002 7724 1991-02-24 2024-10-11 02:08:44.000 1991-02-24 2024-10-11 02:08:44 +7726 7726 7727 772.6 1545.2 7726 1991-02-26 2024-10-11 02:08:46.000 1991-02-26 2024-10-11 02:08:46 +7727 7727 7728 772.7 1545.4 7727 1991-02-27 2024-10-11 02:08:47.000 1991-02-27 2024-10-11 02:08:47 +7728 7728 7729 772.8 1545.6000000000001 7728 1991-02-28 2024-10-11 02:08:48.000 1991-02-28 2024-10-11 02:08:48 +7729 7729 7730 772.9 1545.8000000000002 7729 1991-03-01 2024-10-11 02:08:49.000 1991-03-01 2024-10-11 02:08:49 +7731 7731 7732 773.1 1546.2 7731 1991-03-03 2024-10-11 02:08:51.000 1991-03-03 2024-10-11 02:08:51 +7732 7732 7733 773.2 1546.4 7732 1991-03-04 2024-10-11 02:08:52.000 1991-03-04 2024-10-11 02:08:52 +7733 7733 7734 773.3 1546.6000000000001 7733 1991-03-05 2024-10-11 02:08:53.000 1991-03-05 2024-10-11 02:08:53 +7734 7734 7735 773.4 1546.8000000000002 7734 1991-03-06 2024-10-11 02:08:54.000 1991-03-06 2024-10-11 02:08:54 +7736 7736 7737 773.6 1547.2 7736 1991-03-08 2024-10-11 02:08:56.000 1991-03-08 2024-10-11 02:08:56 +7737 7737 7738 773.7 1547.4 7737 1991-03-09 2024-10-11 02:08:57.000 1991-03-09 2024-10-11 02:08:57 +7738 7738 7739 773.8 1547.6000000000001 7738 1991-03-10 2024-10-11 02:08:58.000 1991-03-10 2024-10-11 02:08:58 +7739 7739 7740 773.9 1547.8000000000002 7739 1991-03-11 2024-10-11 02:08:59.000 1991-03-11 2024-10-11 02:08:59 +7741 7741 7742 774.1 1548.2 7741 1991-03-13 2024-10-11 02:09:01.000 1991-03-13 2024-10-11 02:09:01 +7742 7742 7743 774.2 1548.4 7742 1991-03-14 2024-10-11 02:09:02.000 1991-03-14 2024-10-11 02:09:02 +7743 7743 7744 774.3 1548.6000000000001 7743 1991-03-15 2024-10-11 02:09:03.000 1991-03-15 2024-10-11 02:09:03 +7744 7744 7745 774.4 1548.8000000000002 7744 1991-03-16 2024-10-11 02:09:04.000 1991-03-16 2024-10-11 02:09:04 +7746 7746 7747 774.6 1549.2 7746 1991-03-18 2024-10-11 02:09:06.000 1991-03-18 2024-10-11 02:09:06 +7747 7747 7748 774.7 1549.4 7747 1991-03-19 2024-10-11 02:09:07.000 1991-03-19 2024-10-11 02:09:07 +7748 7748 7749 774.8 1549.6000000000001 7748 1991-03-20 2024-10-11 02:09:08.000 1991-03-20 2024-10-11 02:09:08 +7749 7749 7750 774.9 1549.8000000000002 7749 1991-03-21 2024-10-11 02:09:09.000 1991-03-21 2024-10-11 02:09:09 +7751 7751 7752 775.1 1550.2 7751 1991-03-23 2024-10-11 02:09:11.000 1991-03-23 2024-10-11 02:09:11 +7752 7752 7753 775.2 1550.4 7752 1991-03-24 2024-10-11 02:09:12.000 1991-03-24 2024-10-11 02:09:12 +7753 7753 7754 775.3 1550.6000000000001 7753 1991-03-25 2024-10-11 02:09:13.000 1991-03-25 2024-10-11 02:09:13 +7754 7754 7755 775.4 1550.8000000000002 7754 1991-03-26 2024-10-11 02:09:14.000 1991-03-26 2024-10-11 02:09:14 +7756 7756 7757 775.6 1551.2 7756 1991-03-28 2024-10-11 02:09:16.000 1991-03-28 2024-10-11 02:09:16 +7757 7757 7758 775.7 1551.4 7757 1991-03-29 2024-10-11 02:09:17.000 1991-03-29 2024-10-11 02:09:17 +7758 7758 7759 775.8 1551.6000000000001 7758 1991-03-30 2024-10-11 02:09:18.000 1991-03-30 2024-10-11 02:09:18 +7759 7759 7760 775.9 1551.8000000000002 7759 1991-03-31 2024-10-11 02:09:19.000 1991-03-31 2024-10-11 02:09:19 +7761 7761 7762 776.1 1552.2 7761 1991-04-02 2024-10-11 02:09:21.000 1991-04-02 2024-10-11 02:09:21 +7762 7762 7763 776.2 1552.4 7762 1991-04-03 2024-10-11 02:09:22.000 1991-04-03 2024-10-11 02:09:22 +7763 7763 7764 776.3 1552.6000000000001 7763 1991-04-04 2024-10-11 02:09:23.000 1991-04-04 2024-10-11 02:09:23 +7764 7764 7765 776.4 1552.8000000000002 7764 1991-04-05 2024-10-11 02:09:24.000 1991-04-05 2024-10-11 02:09:24 +7766 7766 7767 776.6 1553.2 7766 1991-04-07 2024-10-11 02:09:26.000 1991-04-07 2024-10-11 02:09:26 +7767 7767 7768 776.7 1553.4 7767 1991-04-08 2024-10-11 02:09:27.000 1991-04-08 2024-10-11 02:09:27 +7768 7768 7769 776.8 1553.6000000000001 7768 1991-04-09 2024-10-11 02:09:28.000 1991-04-09 2024-10-11 02:09:28 +7769 7769 7770 776.9 1553.8000000000002 7769 1991-04-10 2024-10-11 02:09:29.000 1991-04-10 2024-10-11 02:09:29 +7771 7771 7772 777.1 1554.2 7771 1991-04-12 2024-10-11 02:09:31.000 1991-04-12 2024-10-11 02:09:31 +7772 7772 7773 777.2 1554.4 7772 1991-04-13 2024-10-11 02:09:32.000 1991-04-13 2024-10-11 02:09:32 +7773 7773 7774 777.3 1554.6000000000001 7773 1991-04-14 2024-10-11 02:09:33.000 1991-04-14 2024-10-11 02:09:33 +7774 7774 7775 777.4 1554.8000000000002 7774 1991-04-15 2024-10-11 02:09:34.000 1991-04-15 2024-10-11 02:09:34 +7776 7776 7777 777.6 1555.2 7776 1991-04-17 2024-10-11 02:09:36.000 1991-04-17 2024-10-11 02:09:36 +7777 7777 7778 777.7 1555.4 7777 1991-04-18 2024-10-11 02:09:37.000 1991-04-18 2024-10-11 02:09:37 +7778 7778 7779 777.8 1555.6000000000001 7778 1991-04-19 2024-10-11 02:09:38.000 1991-04-19 2024-10-11 02:09:38 +7779 7779 7780 777.9 1555.8000000000002 7779 1991-04-20 2024-10-11 02:09:39.000 1991-04-20 2024-10-11 02:09:39 +7781 7781 7782 778.1 1556.2 7781 1991-04-22 2024-10-11 02:09:41.000 1991-04-22 2024-10-11 02:09:41 +7782 7782 7783 778.2 1556.4 7782 1991-04-23 2024-10-11 02:09:42.000 1991-04-23 2024-10-11 02:09:42 +7783 7783 7784 778.3 1556.6000000000001 7783 1991-04-24 2024-10-11 02:09:43.000 1991-04-24 2024-10-11 02:09:43 +7784 7784 7785 778.4 1556.8000000000002 7784 1991-04-25 2024-10-11 02:09:44.000 1991-04-25 2024-10-11 02:09:44 +7786 7786 7787 778.6 1557.2 7786 1991-04-27 2024-10-11 02:09:46.000 1991-04-27 2024-10-11 02:09:46 +7787 7787 7788 778.7 1557.4 7787 1991-04-28 2024-10-11 02:09:47.000 1991-04-28 2024-10-11 02:09:47 +7788 7788 7789 778.8 1557.6000000000001 7788 1991-04-29 2024-10-11 02:09:48.000 1991-04-29 2024-10-11 02:09:48 +7789 7789 7790 778.9 1557.8000000000002 7789 1991-04-30 2024-10-11 02:09:49.000 1991-04-30 2024-10-11 02:09:49 +7791 7791 7792 779.1 1558.2 7791 1991-05-02 2024-10-11 02:09:51.000 1991-05-02 2024-10-11 02:09:51 +7792 7792 7793 779.2 1558.4 7792 1991-05-03 2024-10-11 02:09:52.000 1991-05-03 2024-10-11 02:09:52 +7793 7793 7794 779.3 1558.6000000000001 7793 1991-05-04 2024-10-11 02:09:53.000 1991-05-04 2024-10-11 02:09:53 +7794 7794 7795 779.4 1558.8000000000002 7794 1991-05-05 2024-10-11 02:09:54.000 1991-05-05 2024-10-11 02:09:54 +7796 7796 7797 779.6 1559.2 7796 1991-05-07 2024-10-11 02:09:56.000 1991-05-07 2024-10-11 02:09:56 +7797 7797 7798 779.7 1559.4 7797 1991-05-08 2024-10-11 02:09:57.000 1991-05-08 2024-10-11 02:09:57 +7798 7798 7799 779.8 1559.6000000000001 7798 1991-05-09 2024-10-11 02:09:58.000 1991-05-09 2024-10-11 02:09:58 +7799 7799 7800 779.9 1559.8000000000002 7799 1991-05-10 2024-10-11 02:09:59.000 1991-05-10 2024-10-11 02:09:59 +7801 7801 7802 780.1 1560.2 7801 1991-05-12 2024-10-11 02:10:01.000 1991-05-12 2024-10-11 02:10:01 +7802 7802 7803 780.2 1560.4 7802 1991-05-13 2024-10-11 02:10:02.000 1991-05-13 2024-10-11 02:10:02 +7803 7803 7804 780.3 1560.6000000000001 7803 1991-05-14 2024-10-11 02:10:03.000 1991-05-14 2024-10-11 02:10:03 +7804 7804 7805 780.4 1560.8000000000002 7804 1991-05-15 2024-10-11 02:10:04.000 1991-05-15 2024-10-11 02:10:04 +7806 7806 7807 780.6 1561.2 7806 1991-05-17 2024-10-11 02:10:06.000 1991-05-17 2024-10-11 02:10:06 +7807 7807 7808 780.7 1561.4 7807 1991-05-18 2024-10-11 02:10:07.000 1991-05-18 2024-10-11 02:10:07 +7808 7808 7809 780.8 1561.6000000000001 7808 1991-05-19 2024-10-11 02:10:08.000 1991-05-19 2024-10-11 02:10:08 +7809 7809 7810 780.9 1561.8000000000002 7809 1991-05-20 2024-10-11 02:10:09.000 1991-05-20 2024-10-11 02:10:09 +7811 7811 7812 781.1 1562.2 7811 1991-05-22 2024-10-11 02:10:11.000 1991-05-22 2024-10-11 02:10:11 +7812 7812 7813 781.2 1562.4 7812 1991-05-23 2024-10-11 02:10:12.000 1991-05-23 2024-10-11 02:10:12 +7813 7813 7814 781.3 1562.6000000000001 7813 1991-05-24 2024-10-11 02:10:13.000 1991-05-24 2024-10-11 02:10:13 +7814 7814 7815 781.4 1562.8000000000002 7814 1991-05-25 2024-10-11 02:10:14.000 1991-05-25 2024-10-11 02:10:14 +7816 7816 7817 781.6 1563.2 7816 1991-05-27 2024-10-11 02:10:16.000 1991-05-27 2024-10-11 02:10:16 +7817 7817 7818 781.7 1563.4 7817 1991-05-28 2024-10-11 02:10:17.000 1991-05-28 2024-10-11 02:10:17 +7818 7818 7819 781.8 1563.6000000000001 7818 1991-05-29 2024-10-11 02:10:18.000 1991-05-29 2024-10-11 02:10:18 +7819 7819 7820 781.9 1563.8000000000002 7819 1991-05-30 2024-10-11 02:10:19.000 1991-05-30 2024-10-11 02:10:19 +7821 7821 7822 782.1 1564.2 7821 1991-06-01 2024-10-11 02:10:21.000 1991-06-01 2024-10-11 02:10:21 +7822 7822 7823 782.2 1564.4 7822 1991-06-02 2024-10-11 02:10:22.000 1991-06-02 2024-10-11 02:10:22 +7823 7823 7824 782.3 1564.6000000000001 7823 1991-06-03 2024-10-11 02:10:23.000 1991-06-03 2024-10-11 02:10:23 +7824 7824 7825 782.4 1564.8000000000002 7824 1991-06-04 2024-10-11 02:10:24.000 1991-06-04 2024-10-11 02:10:24 +7826 7826 7827 782.6 1565.2 7826 1991-06-06 2024-10-11 02:10:26.000 1991-06-06 2024-10-11 02:10:26 +7827 7827 7828 782.7 1565.4 7827 1991-06-07 2024-10-11 02:10:27.000 1991-06-07 2024-10-11 02:10:27 +7828 7828 7829 782.8 1565.6000000000001 7828 1991-06-08 2024-10-11 02:10:28.000 1991-06-08 2024-10-11 02:10:28 +7829 7829 7830 782.9 1565.8000000000002 7829 1991-06-09 2024-10-11 02:10:29.000 1991-06-09 2024-10-11 02:10:29 +7831 7831 7832 783.1 1566.2 7831 1991-06-11 2024-10-11 02:10:31.000 1991-06-11 2024-10-11 02:10:31 +7832 7832 7833 783.2 1566.4 7832 1991-06-12 2024-10-11 02:10:32.000 1991-06-12 2024-10-11 02:10:32 +7833 7833 7834 783.3 1566.6000000000001 7833 1991-06-13 2024-10-11 02:10:33.000 1991-06-13 2024-10-11 02:10:33 +7834 7834 7835 783.4 1566.8000000000002 7834 1991-06-14 2024-10-11 02:10:34.000 1991-06-14 2024-10-11 02:10:34 +7836 7836 7837 783.6 1567.2 7836 1991-06-16 2024-10-11 02:10:36.000 1991-06-16 2024-10-11 02:10:36 +7837 7837 7838 783.7 1567.4 7837 1991-06-17 2024-10-11 02:10:37.000 1991-06-17 2024-10-11 02:10:37 +7838 7838 7839 783.8 1567.6000000000001 7838 1991-06-18 2024-10-11 02:10:38.000 1991-06-18 2024-10-11 02:10:38 +7839 7839 7840 783.9 1567.8000000000002 7839 1991-06-19 2024-10-11 02:10:39.000 1991-06-19 2024-10-11 02:10:39 +7841 7841 7842 784.1 1568.2 7841 1991-06-21 2024-10-11 02:10:41.000 1991-06-21 2024-10-11 02:10:41 +7842 7842 7843 784.2 1568.4 7842 1991-06-22 2024-10-11 02:10:42.000 1991-06-22 2024-10-11 02:10:42 +7843 7843 7844 784.3 1568.6000000000001 7843 1991-06-23 2024-10-11 02:10:43.000 1991-06-23 2024-10-11 02:10:43 +7844 7844 7845 784.4 1568.8000000000002 7844 1991-06-24 2024-10-11 02:10:44.000 1991-06-24 2024-10-11 02:10:44 +7846 7846 7847 784.6 1569.2 7846 1991-06-26 2024-10-11 02:10:46.000 1991-06-26 2024-10-11 02:10:46 +7847 7847 7848 784.7 1569.4 7847 1991-06-27 2024-10-11 02:10:47.000 1991-06-27 2024-10-11 02:10:47 +7848 7848 7849 784.8 1569.6000000000001 7848 1991-06-28 2024-10-11 02:10:48.000 1991-06-28 2024-10-11 02:10:48 +7849 7849 7850 784.9 1569.8000000000002 7849 1991-06-29 2024-10-11 02:10:49.000 1991-06-29 2024-10-11 02:10:49 +7851 7851 7852 785.1 1570.2 7851 1991-07-01 2024-10-11 02:10:51.000 1991-07-01 2024-10-11 02:10:51 +7852 7852 7853 785.2 1570.4 7852 1991-07-02 2024-10-11 02:10:52.000 1991-07-02 2024-10-11 02:10:52 +7853 7853 7854 785.3 1570.6000000000001 7853 1991-07-03 2024-10-11 02:10:53.000 1991-07-03 2024-10-11 02:10:53 +7854 7854 7855 785.4 1570.8000000000002 7854 1991-07-04 2024-10-11 02:10:54.000 1991-07-04 2024-10-11 02:10:54 +7856 7856 7857 785.6 1571.2 7856 1991-07-06 2024-10-11 02:10:56.000 1991-07-06 2024-10-11 02:10:56 +7857 7857 7858 785.7 1571.4 7857 1991-07-07 2024-10-11 02:10:57.000 1991-07-07 2024-10-11 02:10:57 +7858 7858 7859 785.8 1571.6000000000001 7858 1991-07-08 2024-10-11 02:10:58.000 1991-07-08 2024-10-11 02:10:58 +7859 7859 7860 785.9 1571.8000000000002 7859 1991-07-09 2024-10-11 02:10:59.000 1991-07-09 2024-10-11 02:10:59 +7861 7861 7862 786.1 1572.2 7861 1991-07-11 2024-10-11 02:11:01.000 1991-07-11 2024-10-11 02:11:01 +7862 7862 7863 786.2 1572.4 7862 1991-07-12 2024-10-11 02:11:02.000 1991-07-12 2024-10-11 02:11:02 +7863 7863 7864 786.3 1572.6000000000001 7863 1991-07-13 2024-10-11 02:11:03.000 1991-07-13 2024-10-11 02:11:03 +7864 7864 7865 786.4 1572.8000000000002 7864 1991-07-14 2024-10-11 02:11:04.000 1991-07-14 2024-10-11 02:11:04 +7866 7866 7867 786.6 1573.2 7866 1991-07-16 2024-10-11 02:11:06.000 1991-07-16 2024-10-11 02:11:06 +7867 7867 7868 786.7 1573.4 7867 1991-07-17 2024-10-11 02:11:07.000 1991-07-17 2024-10-11 02:11:07 +7868 7868 7869 786.8 1573.6000000000001 7868 1991-07-18 2024-10-11 02:11:08.000 1991-07-18 2024-10-11 02:11:08 +7869 7869 7870 786.9 1573.8000000000002 7869 1991-07-19 2024-10-11 02:11:09.000 1991-07-19 2024-10-11 02:11:09 +7871 7871 7872 787.1 1574.2 7871 1991-07-21 2024-10-11 02:11:11.000 1991-07-21 2024-10-11 02:11:11 +7872 7872 7873 787.2 1574.4 7872 1991-07-22 2024-10-11 02:11:12.000 1991-07-22 2024-10-11 02:11:12 +7873 7873 7874 787.3 1574.6000000000001 7873 1991-07-23 2024-10-11 02:11:13.000 1991-07-23 2024-10-11 02:11:13 +7874 7874 7875 787.4 1574.8000000000002 7874 1991-07-24 2024-10-11 02:11:14.000 1991-07-24 2024-10-11 02:11:14 +7876 7876 7877 787.6 1575.2 7876 1991-07-26 2024-10-11 02:11:16.000 1991-07-26 2024-10-11 02:11:16 +7877 7877 7878 787.7 1575.4 7877 1991-07-27 2024-10-11 02:11:17.000 1991-07-27 2024-10-11 02:11:17 +7878 7878 7879 787.8 1575.6000000000001 7878 1991-07-28 2024-10-11 02:11:18.000 1991-07-28 2024-10-11 02:11:18 +7879 7879 7880 787.9 1575.8000000000002 7879 1991-07-29 2024-10-11 02:11:19.000 1991-07-29 2024-10-11 02:11:19 +7881 7881 7882 788.1 1576.2 7881 1991-07-31 2024-10-11 02:11:21.000 1991-07-31 2024-10-11 02:11:21 +7882 7882 7883 788.2 1576.4 7882 1991-08-01 2024-10-11 02:11:22.000 1991-08-01 2024-10-11 02:11:22 +7883 7883 7884 788.3 1576.6000000000001 7883 1991-08-02 2024-10-11 02:11:23.000 1991-08-02 2024-10-11 02:11:23 +7884 7884 7885 788.4 1576.8000000000002 7884 1991-08-03 2024-10-11 02:11:24.000 1991-08-03 2024-10-11 02:11:24 +7886 7886 7887 788.6 1577.2 7886 1991-08-05 2024-10-11 02:11:26.000 1991-08-05 2024-10-11 02:11:26 +7887 7887 7888 788.7 1577.4 7887 1991-08-06 2024-10-11 02:11:27.000 1991-08-06 2024-10-11 02:11:27 +7888 7888 7889 788.8 1577.6000000000001 7888 1991-08-07 2024-10-11 02:11:28.000 1991-08-07 2024-10-11 02:11:28 +7889 7889 7890 788.9 1577.8000000000002 7889 1991-08-08 2024-10-11 02:11:29.000 1991-08-08 2024-10-11 02:11:29 +7891 7891 7892 789.1 1578.2 7891 1991-08-10 2024-10-11 02:11:31.000 1991-08-10 2024-10-11 02:11:31 +7892 7892 7893 789.2 1578.4 7892 1991-08-11 2024-10-11 02:11:32.000 1991-08-11 2024-10-11 02:11:32 +7893 7893 7894 789.3 1578.6000000000001 7893 1991-08-12 2024-10-11 02:11:33.000 1991-08-12 2024-10-11 02:11:33 +7894 7894 7895 789.4 1578.8000000000002 7894 1991-08-13 2024-10-11 02:11:34.000 1991-08-13 2024-10-11 02:11:34 +7896 7896 7897 789.6 1579.2 7896 1991-08-15 2024-10-11 02:11:36.000 1991-08-15 2024-10-11 02:11:36 +7897 7897 7898 789.7 1579.4 7897 1991-08-16 2024-10-11 02:11:37.000 1991-08-16 2024-10-11 02:11:37 +7898 7898 7899 789.8 1579.6000000000001 7898 1991-08-17 2024-10-11 02:11:38.000 1991-08-17 2024-10-11 02:11:38 +7899 7899 7900 789.9 1579.8000000000002 7899 1991-08-18 2024-10-11 02:11:39.000 1991-08-18 2024-10-11 02:11:39 +7901 7901 7902 790.1 1580.2 7901 1991-08-20 2024-10-11 02:11:41.000 1991-08-20 2024-10-11 02:11:41 +7902 7902 7903 790.2 1580.4 7902 1991-08-21 2024-10-11 02:11:42.000 1991-08-21 2024-10-11 02:11:42 +7903 7903 7904 790.3 1580.6000000000001 7903 1991-08-22 2024-10-11 02:11:43.000 1991-08-22 2024-10-11 02:11:43 +7904 7904 7905 790.4 1580.8000000000002 7904 1991-08-23 2024-10-11 02:11:44.000 1991-08-23 2024-10-11 02:11:44 +7906 7906 7907 790.6 1581.2 7906 1991-08-25 2024-10-11 02:11:46.000 1991-08-25 2024-10-11 02:11:46 +7907 7907 7908 790.7 1581.4 7907 1991-08-26 2024-10-11 02:11:47.000 1991-08-26 2024-10-11 02:11:47 +7908 7908 7909 790.8 1581.6000000000001 7908 1991-08-27 2024-10-11 02:11:48.000 1991-08-27 2024-10-11 02:11:48 +7909 7909 7910 790.9 1581.8000000000002 7909 1991-08-28 2024-10-11 02:11:49.000 1991-08-28 2024-10-11 02:11:49 +7911 7911 7912 791.1 1582.2 7911 1991-08-30 2024-10-11 02:11:51.000 1991-08-30 2024-10-11 02:11:51 +7912 7912 7913 791.2 1582.4 7912 1991-08-31 2024-10-11 02:11:52.000 1991-08-31 2024-10-11 02:11:52 +7913 7913 7914 791.3 1582.6000000000001 7913 1991-09-01 2024-10-11 02:11:53.000 1991-09-01 2024-10-11 02:11:53 +7914 7914 7915 791.4 1582.8000000000002 7914 1991-09-02 2024-10-11 02:11:54.000 1991-09-02 2024-10-11 02:11:54 +7916 7916 7917 791.6 1583.2 7916 1991-09-04 2024-10-11 02:11:56.000 1991-09-04 2024-10-11 02:11:56 +7917 7917 7918 791.7 1583.4 7917 1991-09-05 2024-10-11 02:11:57.000 1991-09-05 2024-10-11 02:11:57 +7918 7918 7919 791.8 1583.6000000000001 7918 1991-09-06 2024-10-11 02:11:58.000 1991-09-06 2024-10-11 02:11:58 +7919 7919 7920 791.9 1583.8000000000002 7919 1991-09-07 2024-10-11 02:11:59.000 1991-09-07 2024-10-11 02:11:59 +7921 7921 7922 792.1 1584.2 7921 1991-09-09 2024-10-11 02:12:01.000 1991-09-09 2024-10-11 02:12:01 +7922 7922 7923 792.2 1584.4 7922 1991-09-10 2024-10-11 02:12:02.000 1991-09-10 2024-10-11 02:12:02 +7923 7923 7924 792.3 1584.6000000000001 7923 1991-09-11 2024-10-11 02:12:03.000 1991-09-11 2024-10-11 02:12:03 +7924 7924 7925 792.4 1584.8000000000002 7924 1991-09-12 2024-10-11 02:12:04.000 1991-09-12 2024-10-11 02:12:04 +7926 7926 7927 792.6 1585.2 7926 1991-09-14 2024-10-11 02:12:06.000 1991-09-14 2024-10-11 02:12:06 +7927 7927 7928 792.7 1585.4 7927 1991-09-15 2024-10-11 02:12:07.000 1991-09-15 2024-10-11 02:12:07 +7928 7928 7929 792.8 1585.6000000000001 7928 1991-09-16 2024-10-11 02:12:08.000 1991-09-16 2024-10-11 02:12:08 +7929 7929 7930 792.9 1585.8000000000002 7929 1991-09-17 2024-10-11 02:12:09.000 1991-09-17 2024-10-11 02:12:09 +7931 7931 7932 793.1 1586.2 7931 1991-09-19 2024-10-11 02:12:11.000 1991-09-19 2024-10-11 02:12:11 +7932 7932 7933 793.2 1586.4 7932 1991-09-20 2024-10-11 02:12:12.000 1991-09-20 2024-10-11 02:12:12 +7933 7933 7934 793.3 1586.6000000000001 7933 1991-09-21 2024-10-11 02:12:13.000 1991-09-21 2024-10-11 02:12:13 +7934 7934 7935 793.4 1586.8000000000002 7934 1991-09-22 2024-10-11 02:12:14.000 1991-09-22 2024-10-11 02:12:14 +7936 7936 7937 793.6 1587.2 7936 1991-09-24 2024-10-11 02:12:16.000 1991-09-24 2024-10-11 02:12:16 +7937 7937 7938 793.7 1587.4 7937 1991-09-25 2024-10-11 02:12:17.000 1991-09-25 2024-10-11 02:12:17 +7938 7938 7939 793.8 1587.6000000000001 7938 1991-09-26 2024-10-11 02:12:18.000 1991-09-26 2024-10-11 02:12:18 +7939 7939 7940 793.9 1587.8000000000002 7939 1991-09-27 2024-10-11 02:12:19.000 1991-09-27 2024-10-11 02:12:19 +7941 7941 7942 794.1 1588.2 7941 1991-09-29 2024-10-11 02:12:21.000 1991-09-29 2024-10-11 02:12:21 +7942 7942 7943 794.2 1588.4 7942 1991-09-30 2024-10-11 02:12:22.000 1991-09-30 2024-10-11 02:12:22 +7943 7943 7944 794.3 1588.6000000000001 7943 1991-10-01 2024-10-11 02:12:23.000 1991-10-01 2024-10-11 02:12:23 +7944 7944 7945 794.4 1588.8000000000002 7944 1991-10-02 2024-10-11 02:12:24.000 1991-10-02 2024-10-11 02:12:24 +7946 7946 7947 794.6 1589.2 7946 1991-10-04 2024-10-11 02:12:26.000 1991-10-04 2024-10-11 02:12:26 +7947 7947 7948 794.7 1589.4 7947 1991-10-05 2024-10-11 02:12:27.000 1991-10-05 2024-10-11 02:12:27 +7948 7948 7949 794.8 1589.6000000000001 7948 1991-10-06 2024-10-11 02:12:28.000 1991-10-06 2024-10-11 02:12:28 +7949 7949 7950 794.9 1589.8000000000002 7949 1991-10-07 2024-10-11 02:12:29.000 1991-10-07 2024-10-11 02:12:29 +7951 7951 7952 795.1 1590.2 7951 1991-10-09 2024-10-11 02:12:31.000 1991-10-09 2024-10-11 02:12:31 +7952 7952 7953 795.2 1590.4 7952 1991-10-10 2024-10-11 02:12:32.000 1991-10-10 2024-10-11 02:12:32 +7953 7953 7954 795.3 1590.6000000000001 7953 1991-10-11 2024-10-11 02:12:33.000 1991-10-11 2024-10-11 02:12:33 +7954 7954 7955 795.4 1590.8000000000002 7954 1991-10-12 2024-10-11 02:12:34.000 1991-10-12 2024-10-11 02:12:34 +7956 7956 7957 795.6 1591.2 7956 1991-10-14 2024-10-11 02:12:36.000 1991-10-14 2024-10-11 02:12:36 +7957 7957 7958 795.7 1591.4 7957 1991-10-15 2024-10-11 02:12:37.000 1991-10-15 2024-10-11 02:12:37 +7958 7958 7959 795.8 1591.6000000000001 7958 1991-10-16 2024-10-11 02:12:38.000 1991-10-16 2024-10-11 02:12:38 +7959 7959 7960 795.9 1591.8000000000002 7959 1991-10-17 2024-10-11 02:12:39.000 1991-10-17 2024-10-11 02:12:39 +7961 7961 7962 796.1 1592.2 7961 1991-10-19 2024-10-11 02:12:41.000 1991-10-19 2024-10-11 02:12:41 +7962 7962 7963 796.2 1592.4 7962 1991-10-20 2024-10-11 02:12:42.000 1991-10-20 2024-10-11 02:12:42 +7963 7963 7964 796.3 1592.6000000000001 7963 1991-10-21 2024-10-11 02:12:43.000 1991-10-21 2024-10-11 02:12:43 +7964 7964 7965 796.4 1592.8000000000002 7964 1991-10-22 2024-10-11 02:12:44.000 1991-10-22 2024-10-11 02:12:44 +7966 7966 7967 796.6 1593.2 7966 1991-10-24 2024-10-11 02:12:46.000 1991-10-24 2024-10-11 02:12:46 +7967 7967 7968 796.7 1593.4 7967 1991-10-25 2024-10-11 02:12:47.000 1991-10-25 2024-10-11 02:12:47 +7968 7968 7969 796.8 1593.6000000000001 7968 1991-10-26 2024-10-11 02:12:48.000 1991-10-26 2024-10-11 02:12:48 +7969 7969 7970 796.9 1593.8000000000002 7969 1991-10-27 2024-10-11 02:12:49.000 1991-10-27 2024-10-11 02:12:49 +7971 7971 7972 797.1 1594.2 7971 1991-10-29 2024-10-11 02:12:51.000 1991-10-29 2024-10-11 02:12:51 +7972 7972 7973 797.2 1594.4 7972 1991-10-30 2024-10-11 02:12:52.000 1991-10-30 2024-10-11 02:12:52 +7973 7973 7974 797.3 1594.6000000000001 7973 1991-10-31 2024-10-11 02:12:53.000 1991-10-31 2024-10-11 02:12:53 +7974 7974 7975 797.4 1594.8000000000002 7974 1991-11-01 2024-10-11 02:12:54.000 1991-11-01 2024-10-11 02:12:54 +7976 7976 7977 797.6 1595.2 7976 1991-11-03 2024-10-11 02:12:56.000 1991-11-03 2024-10-11 02:12:56 +7977 7977 7978 797.7 1595.4 7977 1991-11-04 2024-10-11 02:12:57.000 1991-11-04 2024-10-11 02:12:57 +7978 7978 7979 797.8 1595.6000000000001 7978 1991-11-05 2024-10-11 02:12:58.000 1991-11-05 2024-10-11 02:12:58 +7979 7979 7980 797.9 1595.8000000000002 7979 1991-11-06 2024-10-11 02:12:59.000 1991-11-06 2024-10-11 02:12:59 +7981 7981 7982 798.1 1596.2 7981 1991-11-08 2024-10-11 02:13:01.000 1991-11-08 2024-10-11 02:13:01 +7982 7982 7983 798.2 1596.4 7982 1991-11-09 2024-10-11 02:13:02.000 1991-11-09 2024-10-11 02:13:02 +7983 7983 7984 798.3 1596.6000000000001 7983 1991-11-10 2024-10-11 02:13:03.000 1991-11-10 2024-10-11 02:13:03 +7984 7984 7985 798.4 1596.8000000000002 7984 1991-11-11 2024-10-11 02:13:04.000 1991-11-11 2024-10-11 02:13:04 +7986 7986 7987 798.6 1597.2 7986 1991-11-13 2024-10-11 02:13:06.000 1991-11-13 2024-10-11 02:13:06 +7987 7987 7988 798.7 1597.4 7987 1991-11-14 2024-10-11 02:13:07.000 1991-11-14 2024-10-11 02:13:07 +7988 7988 7989 798.8 1597.6000000000001 7988 1991-11-15 2024-10-11 02:13:08.000 1991-11-15 2024-10-11 02:13:08 +7989 7989 7990 798.9 1597.8000000000002 7989 1991-11-16 2024-10-11 02:13:09.000 1991-11-16 2024-10-11 02:13:09 +7991 7991 7992 799.1 1598.2 7991 1991-11-18 2024-10-11 02:13:11.000 1991-11-18 2024-10-11 02:13:11 +7992 7992 7993 799.2 1598.4 7992 1991-11-19 2024-10-11 02:13:12.000 1991-11-19 2024-10-11 02:13:12 +7993 7993 7994 799.3 1598.6000000000001 7993 1991-11-20 2024-10-11 02:13:13.000 1991-11-20 2024-10-11 02:13:13 +7994 7994 7995 799.4 1598.8000000000002 7994 1991-11-21 2024-10-11 02:13:14.000 1991-11-21 2024-10-11 02:13:14 +7996 7996 7997 799.6 1599.2 7996 1991-11-23 2024-10-11 02:13:16.000 1991-11-23 2024-10-11 02:13:16 +7997 7997 7998 799.7 1599.4 7997 1991-11-24 2024-10-11 02:13:17.000 1991-11-24 2024-10-11 02:13:17 +7998 7998 7999 799.8 1599.6000000000001 7998 1991-11-25 2024-10-11 02:13:18.000 1991-11-25 2024-10-11 02:13:18 +7999 7999 8000 799.9 1599.8000000000002 7999 1991-11-26 2024-10-11 02:13:19.000 1991-11-26 2024-10-11 02:13:19 +8001 8001 8002 800.1 1600.2 8001 1991-11-28 2024-10-11 02:13:21.000 1991-11-28 2024-10-11 02:13:21 +8002 8002 8003 800.2 1600.4 8002 1991-11-29 2024-10-11 02:13:22.000 1991-11-29 2024-10-11 02:13:22 +8003 8003 8004 800.3 1600.6000000000001 8003 1991-11-30 2024-10-11 02:13:23.000 1991-11-30 2024-10-11 02:13:23 +8004 8004 8005 800.4 1600.8000000000002 8004 1991-12-01 2024-10-11 02:13:24.000 1991-12-01 2024-10-11 02:13:24 +8006 8006 8007 800.6 1601.2 8006 1991-12-03 2024-10-11 02:13:26.000 1991-12-03 2024-10-11 02:13:26 +8007 8007 8008 800.7 1601.4 8007 1991-12-04 2024-10-11 02:13:27.000 1991-12-04 2024-10-11 02:13:27 +8008 8008 8009 800.8 1601.6000000000001 8008 1991-12-05 2024-10-11 02:13:28.000 1991-12-05 2024-10-11 02:13:28 +8009 8009 8010 800.9 1601.8000000000002 8009 1991-12-06 2024-10-11 02:13:29.000 1991-12-06 2024-10-11 02:13:29 +8011 8011 8012 801.1 1602.2 8011 1991-12-08 2024-10-11 02:13:31.000 1991-12-08 2024-10-11 02:13:31 +8012 8012 8013 801.2 1602.4 8012 1991-12-09 2024-10-11 02:13:32.000 1991-12-09 2024-10-11 02:13:32 +8013 8013 8014 801.3 1602.6000000000001 8013 1991-12-10 2024-10-11 02:13:33.000 1991-12-10 2024-10-11 02:13:33 +8014 8014 8015 801.4 1602.8000000000002 8014 1991-12-11 2024-10-11 02:13:34.000 1991-12-11 2024-10-11 02:13:34 +8016 8016 8017 801.6 1603.2 8016 1991-12-13 2024-10-11 02:13:36.000 1991-12-13 2024-10-11 02:13:36 +8017 8017 8018 801.7 1603.4 8017 1991-12-14 2024-10-11 02:13:37.000 1991-12-14 2024-10-11 02:13:37 +8018 8018 8019 801.8 1603.6000000000001 8018 1991-12-15 2024-10-11 02:13:38.000 1991-12-15 2024-10-11 02:13:38 +8019 8019 8020 801.9 1603.8000000000002 8019 1991-12-16 2024-10-11 02:13:39.000 1991-12-16 2024-10-11 02:13:39 +8021 8021 8022 802.1 1604.2 8021 1991-12-18 2024-10-11 02:13:41.000 1991-12-18 2024-10-11 02:13:41 +8022 8022 8023 802.2 1604.4 8022 1991-12-19 2024-10-11 02:13:42.000 1991-12-19 2024-10-11 02:13:42 +8023 8023 8024 802.3 1604.6000000000001 8023 1991-12-20 2024-10-11 02:13:43.000 1991-12-20 2024-10-11 02:13:43 +8024 8024 8025 802.4 1604.8000000000002 8024 1991-12-21 2024-10-11 02:13:44.000 1991-12-21 2024-10-11 02:13:44 +8026 8026 8027 802.6 1605.2 8026 1991-12-23 2024-10-11 02:13:46.000 1991-12-23 2024-10-11 02:13:46 +8027 8027 8028 802.7 1605.4 8027 1991-12-24 2024-10-11 02:13:47.000 1991-12-24 2024-10-11 02:13:47 +8028 8028 8029 802.8 1605.6000000000001 8028 1991-12-25 2024-10-11 02:13:48.000 1991-12-25 2024-10-11 02:13:48 +8029 8029 8030 802.9 1605.8000000000002 8029 1991-12-26 2024-10-11 02:13:49.000 1991-12-26 2024-10-11 02:13:49 +8031 8031 8032 803.1 1606.2 8031 1991-12-28 2024-10-11 02:13:51.000 1991-12-28 2024-10-11 02:13:51 +8032 8032 8033 803.2 1606.4 8032 1991-12-29 2024-10-11 02:13:52.000 1991-12-29 2024-10-11 02:13:52 +8033 8033 8034 803.3 1606.6000000000001 8033 1991-12-30 2024-10-11 02:13:53.000 1991-12-30 2024-10-11 02:13:53 +8034 8034 8035 803.4 1606.8000000000002 8034 1991-12-31 2024-10-11 02:13:54.000 1991-12-31 2024-10-11 02:13:54 +8036 8036 8037 803.6 1607.2 8036 1992-01-02 2024-10-11 02:13:56.000 1992-01-02 2024-10-11 02:13:56 +8037 8037 8038 803.7 1607.4 8037 1992-01-03 2024-10-11 02:13:57.000 1992-01-03 2024-10-11 02:13:57 +8038 8038 8039 803.8 1607.6000000000001 8038 1992-01-04 2024-10-11 02:13:58.000 1992-01-04 2024-10-11 02:13:58 +8039 8039 8040 803.9 1607.8000000000002 8039 1992-01-05 2024-10-11 02:13:59.000 1992-01-05 2024-10-11 02:13:59 +8041 8041 8042 804.1 1608.2 8041 1992-01-07 2024-10-11 02:14:01.000 1992-01-07 2024-10-11 02:14:01 +8042 8042 8043 804.2 1608.4 8042 1992-01-08 2024-10-11 02:14:02.000 1992-01-08 2024-10-11 02:14:02 +8043 8043 8044 804.3 1608.6000000000001 8043 1992-01-09 2024-10-11 02:14:03.000 1992-01-09 2024-10-11 02:14:03 +8044 8044 8045 804.4 1608.8000000000002 8044 1992-01-10 2024-10-11 02:14:04.000 1992-01-10 2024-10-11 02:14:04 +8046 8046 8047 804.6 1609.2 8046 1992-01-12 2024-10-11 02:14:06.000 1992-01-12 2024-10-11 02:14:06 +8047 8047 8048 804.7 1609.4 8047 1992-01-13 2024-10-11 02:14:07.000 1992-01-13 2024-10-11 02:14:07 +8048 8048 8049 804.8 1609.6000000000001 8048 1992-01-14 2024-10-11 02:14:08.000 1992-01-14 2024-10-11 02:14:08 +8049 8049 8050 804.9 1609.8000000000002 8049 1992-01-15 2024-10-11 02:14:09.000 1992-01-15 2024-10-11 02:14:09 +8051 8051 8052 805.1 1610.2 8051 1992-01-17 2024-10-11 02:14:11.000 1992-01-17 2024-10-11 02:14:11 +8052 8052 8053 805.2 1610.4 8052 1992-01-18 2024-10-11 02:14:12.000 1992-01-18 2024-10-11 02:14:12 +8053 8053 8054 805.3 1610.6000000000001 8053 1992-01-19 2024-10-11 02:14:13.000 1992-01-19 2024-10-11 02:14:13 +8054 8054 8055 805.4 1610.8000000000002 8054 1992-01-20 2024-10-11 02:14:14.000 1992-01-20 2024-10-11 02:14:14 +8056 8056 8057 805.6 1611.2 8056 1992-01-22 2024-10-11 02:14:16.000 1992-01-22 2024-10-11 02:14:16 +8057 8057 8058 805.7 1611.4 8057 1992-01-23 2024-10-11 02:14:17.000 1992-01-23 2024-10-11 02:14:17 +8058 8058 8059 805.8 1611.6000000000001 8058 1992-01-24 2024-10-11 02:14:18.000 1992-01-24 2024-10-11 02:14:18 +8059 8059 8060 805.9 1611.8000000000002 8059 1992-01-25 2024-10-11 02:14:19.000 1992-01-25 2024-10-11 02:14:19 +8061 8061 8062 806.1 1612.2 8061 1992-01-27 2024-10-11 02:14:21.000 1992-01-27 2024-10-11 02:14:21 +8062 8062 8063 806.2 1612.4 8062 1992-01-28 2024-10-11 02:14:22.000 1992-01-28 2024-10-11 02:14:22 +8063 8063 8064 806.3 1612.6000000000001 8063 1992-01-29 2024-10-11 02:14:23.000 1992-01-29 2024-10-11 02:14:23 +8064 8064 8065 806.4 1612.8000000000002 8064 1992-01-30 2024-10-11 02:14:24.000 1992-01-30 2024-10-11 02:14:24 +8066 8066 8067 806.6 1613.2 8066 1992-02-01 2024-10-11 02:14:26.000 1992-02-01 2024-10-11 02:14:26 +8067 8067 8068 806.7 1613.4 8067 1992-02-02 2024-10-11 02:14:27.000 1992-02-02 2024-10-11 02:14:27 +8068 8068 8069 806.8 1613.6000000000001 8068 1992-02-03 2024-10-11 02:14:28.000 1992-02-03 2024-10-11 02:14:28 +8069 8069 8070 806.9 1613.8000000000002 8069 1992-02-04 2024-10-11 02:14:29.000 1992-02-04 2024-10-11 02:14:29 +8071 8071 8072 807.1 1614.2 8071 1992-02-06 2024-10-11 02:14:31.000 1992-02-06 2024-10-11 02:14:31 +8072 8072 8073 807.2 1614.4 8072 1992-02-07 2024-10-11 02:14:32.000 1992-02-07 2024-10-11 02:14:32 +8073 8073 8074 807.3 1614.6000000000001 8073 1992-02-08 2024-10-11 02:14:33.000 1992-02-08 2024-10-11 02:14:33 +8074 8074 8075 807.4 1614.8000000000002 8074 1992-02-09 2024-10-11 02:14:34.000 1992-02-09 2024-10-11 02:14:34 +8076 8076 8077 807.6 1615.2 8076 1992-02-11 2024-10-11 02:14:36.000 1992-02-11 2024-10-11 02:14:36 +8077 8077 8078 807.7 1615.4 8077 1992-02-12 2024-10-11 02:14:37.000 1992-02-12 2024-10-11 02:14:37 +8078 8078 8079 807.8 1615.6000000000001 8078 1992-02-13 2024-10-11 02:14:38.000 1992-02-13 2024-10-11 02:14:38 +8079 8079 8080 807.9 1615.8000000000002 8079 1992-02-14 2024-10-11 02:14:39.000 1992-02-14 2024-10-11 02:14:39 +8081 8081 8082 808.1 1616.2 8081 1992-02-16 2024-10-11 02:14:41.000 1992-02-16 2024-10-11 02:14:41 +8082 8082 8083 808.2 1616.4 8082 1992-02-17 2024-10-11 02:14:42.000 1992-02-17 2024-10-11 02:14:42 +8083 8083 8084 808.3 1616.6000000000001 8083 1992-02-18 2024-10-11 02:14:43.000 1992-02-18 2024-10-11 02:14:43 +8084 8084 8085 808.4 1616.8000000000002 8084 1992-02-19 2024-10-11 02:14:44.000 1992-02-19 2024-10-11 02:14:44 +8086 8086 8087 808.6 1617.2 8086 1992-02-21 2024-10-11 02:14:46.000 1992-02-21 2024-10-11 02:14:46 +8087 8087 8088 808.7 1617.4 8087 1992-02-22 2024-10-11 02:14:47.000 1992-02-22 2024-10-11 02:14:47 +8088 8088 8089 808.8 1617.6000000000001 8088 1992-02-23 2024-10-11 02:14:48.000 1992-02-23 2024-10-11 02:14:48 +8089 8089 8090 808.9 1617.8000000000002 8089 1992-02-24 2024-10-11 02:14:49.000 1992-02-24 2024-10-11 02:14:49 +8091 8091 8092 809.1 1618.2 8091 1992-02-26 2024-10-11 02:14:51.000 1992-02-26 2024-10-11 02:14:51 +8092 8092 8093 809.2 1618.4 8092 1992-02-27 2024-10-11 02:14:52.000 1992-02-27 2024-10-11 02:14:52 +8093 8093 8094 809.3 1618.6000000000001 8093 1992-02-28 2024-10-11 02:14:53.000 1992-02-28 2024-10-11 02:14:53 +8094 8094 8095 809.4 1618.8000000000002 8094 1992-02-29 2024-10-11 02:14:54.000 1992-02-29 2024-10-11 02:14:54 +8096 8096 8097 809.6 1619.2 8096 1992-03-02 2024-10-11 02:14:56.000 1992-03-02 2024-10-11 02:14:56 +8097 8097 8098 809.7 1619.4 8097 1992-03-03 2024-10-11 02:14:57.000 1992-03-03 2024-10-11 02:14:57 +8098 8098 8099 809.8 1619.6000000000001 8098 1992-03-04 2024-10-11 02:14:58.000 1992-03-04 2024-10-11 02:14:58 +8099 8099 8100 809.9 1619.8000000000002 8099 1992-03-05 2024-10-11 02:14:59.000 1992-03-05 2024-10-11 02:14:59 +8101 8101 8102 810.1 1620.2 8101 1992-03-07 2024-10-11 02:15:01.000 1992-03-07 2024-10-11 02:15:01 +8102 8102 8103 810.2 1620.4 8102 1992-03-08 2024-10-11 02:15:02.000 1992-03-08 2024-10-11 02:15:02 +8103 8103 8104 810.3 1620.6000000000001 8103 1992-03-09 2024-10-11 02:15:03.000 1992-03-09 2024-10-11 02:15:03 +8104 8104 8105 810.4 1620.8000000000002 8104 1992-03-10 2024-10-11 02:15:04.000 1992-03-10 2024-10-11 02:15:04 +8106 8106 8107 810.6 1621.2 8106 1992-03-12 2024-10-11 02:15:06.000 1992-03-12 2024-10-11 02:15:06 +8107 8107 8108 810.7 1621.4 8107 1992-03-13 2024-10-11 02:15:07.000 1992-03-13 2024-10-11 02:15:07 +8108 8108 8109 810.8 1621.6000000000001 8108 1992-03-14 2024-10-11 02:15:08.000 1992-03-14 2024-10-11 02:15:08 +8109 8109 8110 810.9 1621.8000000000002 8109 1992-03-15 2024-10-11 02:15:09.000 1992-03-15 2024-10-11 02:15:09 +8111 8111 8112 811.1 1622.2 8111 1992-03-17 2024-10-11 02:15:11.000 1992-03-17 2024-10-11 02:15:11 +8112 8112 8113 811.2 1622.4 8112 1992-03-18 2024-10-11 02:15:12.000 1992-03-18 2024-10-11 02:15:12 +8113 8113 8114 811.3 1622.6000000000001 8113 1992-03-19 2024-10-11 02:15:13.000 1992-03-19 2024-10-11 02:15:13 +8114 8114 8115 811.4 1622.8000000000002 8114 1992-03-20 2024-10-11 02:15:14.000 1992-03-20 2024-10-11 02:15:14 +8116 8116 8117 811.6 1623.2 8116 1992-03-22 2024-10-11 02:15:16.000 1992-03-22 2024-10-11 02:15:16 +8117 8117 8118 811.7 1623.4 8117 1992-03-23 2024-10-11 02:15:17.000 1992-03-23 2024-10-11 02:15:17 +8118 8118 8119 811.8 1623.6000000000001 8118 1992-03-24 2024-10-11 02:15:18.000 1992-03-24 2024-10-11 02:15:18 +8119 8119 8120 811.9 1623.8000000000002 8119 1992-03-25 2024-10-11 02:15:19.000 1992-03-25 2024-10-11 02:15:19 +8121 8121 8122 812.1 1624.2 8121 1992-03-27 2024-10-11 02:15:21.000 1992-03-27 2024-10-11 02:15:21 +8122 8122 8123 812.2 1624.4 8122 1992-03-28 2024-10-11 02:15:22.000 1992-03-28 2024-10-11 02:15:22 +8123 8123 8124 812.3 1624.6000000000001 8123 1992-03-29 2024-10-11 02:15:23.000 1992-03-29 2024-10-11 02:15:23 +8124 8124 8125 812.4 1624.8000000000002 8124 1992-03-30 2024-10-11 02:15:24.000 1992-03-30 2024-10-11 02:15:24 +8126 8126 8127 812.6 1625.2 8126 1992-04-01 2024-10-11 02:15:26.000 1992-04-01 2024-10-11 02:15:26 +8127 8127 8128 812.7 1625.4 8127 1992-04-02 2024-10-11 02:15:27.000 1992-04-02 2024-10-11 02:15:27 +8128 8128 8129 812.8 1625.6000000000001 8128 1992-04-03 2024-10-11 02:15:28.000 1992-04-03 2024-10-11 02:15:28 +8129 8129 8130 812.9 1625.8000000000002 8129 1992-04-04 2024-10-11 02:15:29.000 1992-04-04 2024-10-11 02:15:29 +8131 8131 8132 813.1 1626.2 8131 1992-04-06 2024-10-11 02:15:31.000 1992-04-06 2024-10-11 02:15:31 +8132 8132 8133 813.2 1626.4 8132 1992-04-07 2024-10-11 02:15:32.000 1992-04-07 2024-10-11 02:15:32 +8133 8133 8134 813.3 1626.6000000000001 8133 1992-04-08 2024-10-11 02:15:33.000 1992-04-08 2024-10-11 02:15:33 +8134 8134 8135 813.4 1626.8000000000002 8134 1992-04-09 2024-10-11 02:15:34.000 1992-04-09 2024-10-11 02:15:34 +8136 8136 8137 813.6 1627.2 8136 1992-04-11 2024-10-11 02:15:36.000 1992-04-11 2024-10-11 02:15:36 +8137 8137 8138 813.7 1627.4 8137 1992-04-12 2024-10-11 02:15:37.000 1992-04-12 2024-10-11 02:15:37 +8138 8138 8139 813.8 1627.6000000000001 8138 1992-04-13 2024-10-11 02:15:38.000 1992-04-13 2024-10-11 02:15:38 +8139 8139 8140 813.9 1627.8000000000002 8139 1992-04-14 2024-10-11 02:15:39.000 1992-04-14 2024-10-11 02:15:39 +8141 8141 8142 814.1 1628.2 8141 1992-04-16 2024-10-11 02:15:41.000 1992-04-16 2024-10-11 02:15:41 +8142 8142 8143 814.2 1628.4 8142 1992-04-17 2024-10-11 02:15:42.000 1992-04-17 2024-10-11 02:15:42 +8143 8143 8144 814.3 1628.6000000000001 8143 1992-04-18 2024-10-11 02:15:43.000 1992-04-18 2024-10-11 02:15:43 +8144 8144 8145 814.4 1628.8000000000002 8144 1992-04-19 2024-10-11 02:15:44.000 1992-04-19 2024-10-11 02:15:44 +8146 8146 8147 814.6 1629.2 8146 1992-04-21 2024-10-11 02:15:46.000 1992-04-21 2024-10-11 02:15:46 +8147 8147 8148 814.7 1629.4 8147 1992-04-22 2024-10-11 02:15:47.000 1992-04-22 2024-10-11 02:15:47 +8148 8148 8149 814.8 1629.6000000000001 8148 1992-04-23 2024-10-11 02:15:48.000 1992-04-23 2024-10-11 02:15:48 +8149 8149 8150 814.9 1629.8000000000002 8149 1992-04-24 2024-10-11 02:15:49.000 1992-04-24 2024-10-11 02:15:49 +8151 8151 8152 815.1 1630.2 8151 1992-04-26 2024-10-11 02:15:51.000 1992-04-26 2024-10-11 02:15:51 +8152 8152 8153 815.2 1630.4 8152 1992-04-27 2024-10-11 02:15:52.000 1992-04-27 2024-10-11 02:15:52 +8153 8153 8154 815.3 1630.6000000000001 8153 1992-04-28 2024-10-11 02:15:53.000 1992-04-28 2024-10-11 02:15:53 +8154 8154 8155 815.4 1630.8000000000002 8154 1992-04-29 2024-10-11 02:15:54.000 1992-04-29 2024-10-11 02:15:54 +8156 8156 8157 815.6 1631.2 8156 1992-05-01 2024-10-11 02:15:56.000 1992-05-01 2024-10-11 02:15:56 +8157 8157 8158 815.7 1631.4 8157 1992-05-02 2024-10-11 02:15:57.000 1992-05-02 2024-10-11 02:15:57 +8158 8158 8159 815.8 1631.6000000000001 8158 1992-05-03 2024-10-11 02:15:58.000 1992-05-03 2024-10-11 02:15:58 +8159 8159 8160 815.9 1631.8000000000002 8159 1992-05-04 2024-10-11 02:15:59.000 1992-05-04 2024-10-11 02:15:59 +8161 8161 8162 816.1 1632.2 8161 1992-05-06 2024-10-11 02:16:01.000 1992-05-06 2024-10-11 02:16:01 +8162 8162 8163 816.2 1632.4 8162 1992-05-07 2024-10-11 02:16:02.000 1992-05-07 2024-10-11 02:16:02 +8163 8163 8164 816.3 1632.6000000000001 8163 1992-05-08 2024-10-11 02:16:03.000 1992-05-08 2024-10-11 02:16:03 +8164 8164 8165 816.4 1632.8000000000002 8164 1992-05-09 2024-10-11 02:16:04.000 1992-05-09 2024-10-11 02:16:04 +8166 8166 8167 816.6 1633.2 8166 1992-05-11 2024-10-11 02:16:06.000 1992-05-11 2024-10-11 02:16:06 +8167 8167 8168 816.7 1633.4 8167 1992-05-12 2024-10-11 02:16:07.000 1992-05-12 2024-10-11 02:16:07 +8168 8168 8169 816.8 1633.6000000000001 8168 1992-05-13 2024-10-11 02:16:08.000 1992-05-13 2024-10-11 02:16:08 +8169 8169 8170 816.9 1633.8000000000002 8169 1992-05-14 2024-10-11 02:16:09.000 1992-05-14 2024-10-11 02:16:09 +8171 8171 8172 817.1 1634.2 8171 1992-05-16 2024-10-11 02:16:11.000 1992-05-16 2024-10-11 02:16:11 +8172 8172 8173 817.2 1634.4 8172 1992-05-17 2024-10-11 02:16:12.000 1992-05-17 2024-10-11 02:16:12 +8173 8173 8174 817.3 1634.6000000000001 8173 1992-05-18 2024-10-11 02:16:13.000 1992-05-18 2024-10-11 02:16:13 +8174 8174 8175 817.4 1634.8000000000002 8174 1992-05-19 2024-10-11 02:16:14.000 1992-05-19 2024-10-11 02:16:14 +8176 8176 8177 817.6 1635.2 8176 1992-05-21 2024-10-11 02:16:16.000 1992-05-21 2024-10-11 02:16:16 +8177 8177 8178 817.7 1635.4 8177 1992-05-22 2024-10-11 02:16:17.000 1992-05-22 2024-10-11 02:16:17 +8178 8178 8179 817.8 1635.6000000000001 8178 1992-05-23 2024-10-11 02:16:18.000 1992-05-23 2024-10-11 02:16:18 +8179 8179 8180 817.9 1635.8000000000002 8179 1992-05-24 2024-10-11 02:16:19.000 1992-05-24 2024-10-11 02:16:19 +8181 8181 8182 818.1 1636.2 8181 1992-05-26 2024-10-11 02:16:21.000 1992-05-26 2024-10-11 02:16:21 +8182 8182 8183 818.2 1636.4 8182 1992-05-27 2024-10-11 02:16:22.000 1992-05-27 2024-10-11 02:16:22 +8183 8183 8184 818.3 1636.6000000000001 8183 1992-05-28 2024-10-11 02:16:23.000 1992-05-28 2024-10-11 02:16:23 +8184 8184 8185 818.4 1636.8000000000002 8184 1992-05-29 2024-10-11 02:16:24.000 1992-05-29 2024-10-11 02:16:24 +8186 8186 8187 818.6 1637.2 8186 1992-05-31 2024-10-11 02:16:26.000 1992-05-31 2024-10-11 02:16:26 +8187 8187 8188 818.7 1637.4 8187 1992-06-01 2024-10-11 02:16:27.000 1992-06-01 2024-10-11 02:16:27 +8188 8188 8189 818.8 1637.6000000000001 8188 1992-06-02 2024-10-11 02:16:28.000 1992-06-02 2024-10-11 02:16:28 +8189 8189 8190 818.9 1637.8000000000002 8189 1992-06-03 2024-10-11 02:16:29.000 1992-06-03 2024-10-11 02:16:29 +8191 8191 8192 819.1 1638.2 8191 1992-06-05 2024-10-11 02:16:31.000 1992-06-05 2024-10-11 02:16:31 +8192 8192 8193 819.2 1638.4 8192 1992-06-06 2024-10-11 02:16:32.000 1992-06-06 2024-10-11 02:16:32 +8193 8193 8194 819.3 1638.6000000000001 8193 1992-06-07 2024-10-11 02:16:33.000 1992-06-07 2024-10-11 02:16:33 +8194 8194 8195 819.4 1638.8000000000002 8194 1992-06-08 2024-10-11 02:16:34.000 1992-06-08 2024-10-11 02:16:34 +8196 8196 8197 819.6 1639.2 8196 1992-06-10 2024-10-11 02:16:36.000 1992-06-10 2024-10-11 02:16:36 +8197 8197 8198 819.7 1639.4 8197 1992-06-11 2024-10-11 02:16:37.000 1992-06-11 2024-10-11 02:16:37 +8198 8198 8199 819.8 1639.6000000000001 8198 1992-06-12 2024-10-11 02:16:38.000 1992-06-12 2024-10-11 02:16:38 +8199 8199 8200 819.9 1639.8000000000002 8199 1992-06-13 2024-10-11 02:16:39.000 1992-06-13 2024-10-11 02:16:39 +8201 8201 8202 820.1 1640.2 8201 1992-06-15 2024-10-11 02:16:41.000 1992-06-15 2024-10-11 02:16:41 +8202 8202 8203 820.2 1640.4 8202 1992-06-16 2024-10-11 02:16:42.000 1992-06-16 2024-10-11 02:16:42 +8203 8203 8204 820.3 1640.6000000000001 8203 1992-06-17 2024-10-11 02:16:43.000 1992-06-17 2024-10-11 02:16:43 +8204 8204 8205 820.4 1640.8000000000002 8204 1992-06-18 2024-10-11 02:16:44.000 1992-06-18 2024-10-11 02:16:44 +8206 8206 8207 820.6 1641.2 8206 1992-06-20 2024-10-11 02:16:46.000 1992-06-20 2024-10-11 02:16:46 +8207 8207 8208 820.7 1641.4 8207 1992-06-21 2024-10-11 02:16:47.000 1992-06-21 2024-10-11 02:16:47 +8208 8208 8209 820.8 1641.6000000000001 8208 1992-06-22 2024-10-11 02:16:48.000 1992-06-22 2024-10-11 02:16:48 +8209 8209 8210 820.9 1641.8000000000002 8209 1992-06-23 2024-10-11 02:16:49.000 1992-06-23 2024-10-11 02:16:49 +8211 8211 8212 821.1 1642.2 8211 1992-06-25 2024-10-11 02:16:51.000 1992-06-25 2024-10-11 02:16:51 +8212 8212 8213 821.2 1642.4 8212 1992-06-26 2024-10-11 02:16:52.000 1992-06-26 2024-10-11 02:16:52 +8213 8213 8214 821.3 1642.6000000000001 8213 1992-06-27 2024-10-11 02:16:53.000 1992-06-27 2024-10-11 02:16:53 +8214 8214 8215 821.4 1642.8000000000002 8214 1992-06-28 2024-10-11 02:16:54.000 1992-06-28 2024-10-11 02:16:54 +8216 8216 8217 821.6 1643.2 8216 1992-06-30 2024-10-11 02:16:56.000 1992-06-30 2024-10-11 02:16:56 +8217 8217 8218 821.7 1643.4 8217 1992-07-01 2024-10-11 02:16:57.000 1992-07-01 2024-10-11 02:16:57 +8218 8218 8219 821.8 1643.6000000000001 8218 1992-07-02 2024-10-11 02:16:58.000 1992-07-02 2024-10-11 02:16:58 +8219 8219 8220 821.9 1643.8000000000002 8219 1992-07-03 2024-10-11 02:16:59.000 1992-07-03 2024-10-11 02:16:59 +8221 8221 8222 822.1 1644.2 8221 1992-07-05 2024-10-11 02:17:01.000 1992-07-05 2024-10-11 02:17:01 +8222 8222 8223 822.2 1644.4 8222 1992-07-06 2024-10-11 02:17:02.000 1992-07-06 2024-10-11 02:17:02 +8223 8223 8224 822.3 1644.6000000000001 8223 1992-07-07 2024-10-11 02:17:03.000 1992-07-07 2024-10-11 02:17:03 +8224 8224 8225 822.4 1644.8000000000002 8224 1992-07-08 2024-10-11 02:17:04.000 1992-07-08 2024-10-11 02:17:04 +8226 8226 8227 822.6 1645.2 8226 1992-07-10 2024-10-11 02:17:06.000 1992-07-10 2024-10-11 02:17:06 +8227 8227 8228 822.7 1645.4 8227 1992-07-11 2024-10-11 02:17:07.000 1992-07-11 2024-10-11 02:17:07 +8228 8228 8229 822.8 1645.6000000000001 8228 1992-07-12 2024-10-11 02:17:08.000 1992-07-12 2024-10-11 02:17:08 +8229 8229 8230 822.9 1645.8000000000002 8229 1992-07-13 2024-10-11 02:17:09.000 1992-07-13 2024-10-11 02:17:09 +8231 8231 8232 823.1 1646.2 8231 1992-07-15 2024-10-11 02:17:11.000 1992-07-15 2024-10-11 02:17:11 +8232 8232 8233 823.2 1646.4 8232 1992-07-16 2024-10-11 02:17:12.000 1992-07-16 2024-10-11 02:17:12 +8233 8233 8234 823.3 1646.6000000000001 8233 1992-07-17 2024-10-11 02:17:13.000 1992-07-17 2024-10-11 02:17:13 +8234 8234 8235 823.4 1646.8000000000002 8234 1992-07-18 2024-10-11 02:17:14.000 1992-07-18 2024-10-11 02:17:14 +8236 8236 8237 823.6 1647.2 8236 1992-07-20 2024-10-11 02:17:16.000 1992-07-20 2024-10-11 02:17:16 +8237 8237 8238 823.7 1647.4 8237 1992-07-21 2024-10-11 02:17:17.000 1992-07-21 2024-10-11 02:17:17 +8238 8238 8239 823.8 1647.6000000000001 8238 1992-07-22 2024-10-11 02:17:18.000 1992-07-22 2024-10-11 02:17:18 +8239 8239 8240 823.9 1647.8000000000002 8239 1992-07-23 2024-10-11 02:17:19.000 1992-07-23 2024-10-11 02:17:19 +8241 8241 8242 824.1 1648.2 8241 1992-07-25 2024-10-11 02:17:21.000 1992-07-25 2024-10-11 02:17:21 +8242 8242 8243 824.2 1648.4 8242 1992-07-26 2024-10-11 02:17:22.000 1992-07-26 2024-10-11 02:17:22 +8243 8243 8244 824.3 1648.6000000000001 8243 1992-07-27 2024-10-11 02:17:23.000 1992-07-27 2024-10-11 02:17:23 +8244 8244 8245 824.4 1648.8000000000002 8244 1992-07-28 2024-10-11 02:17:24.000 1992-07-28 2024-10-11 02:17:24 +8246 8246 8247 824.6 1649.2 8246 1992-07-30 2024-10-11 02:17:26.000 1992-07-30 2024-10-11 02:17:26 +8247 8247 8248 824.7 1649.4 8247 1992-07-31 2024-10-11 02:17:27.000 1992-07-31 2024-10-11 02:17:27 +8248 8248 8249 824.8 1649.6000000000001 8248 1992-08-01 2024-10-11 02:17:28.000 1992-08-01 2024-10-11 02:17:28 +8249 8249 8250 824.9 1649.8000000000002 8249 1992-08-02 2024-10-11 02:17:29.000 1992-08-02 2024-10-11 02:17:29 +8251 8251 8252 825.1 1650.2 8251 1992-08-04 2024-10-11 02:17:31.000 1992-08-04 2024-10-11 02:17:31 +8252 8252 8253 825.2 1650.4 8252 1992-08-05 2024-10-11 02:17:32.000 1992-08-05 2024-10-11 02:17:32 +8253 8253 8254 825.3 1650.6000000000001 8253 1992-08-06 2024-10-11 02:17:33.000 1992-08-06 2024-10-11 02:17:33 +8254 8254 8255 825.4 1650.8000000000002 8254 1992-08-07 2024-10-11 02:17:34.000 1992-08-07 2024-10-11 02:17:34 +8256 8256 8257 825.6 1651.2 8256 1992-08-09 2024-10-11 02:17:36.000 1992-08-09 2024-10-11 02:17:36 +8257 8257 8258 825.7 1651.4 8257 1992-08-10 2024-10-11 02:17:37.000 1992-08-10 2024-10-11 02:17:37 +8258 8258 8259 825.8 1651.6000000000001 8258 1992-08-11 2024-10-11 02:17:38.000 1992-08-11 2024-10-11 02:17:38 +8259 8259 8260 825.9 1651.8000000000002 8259 1992-08-12 2024-10-11 02:17:39.000 1992-08-12 2024-10-11 02:17:39 +8261 8261 8262 826.1 1652.2 8261 1992-08-14 2024-10-11 02:17:41.000 1992-08-14 2024-10-11 02:17:41 +8262 8262 8263 826.2 1652.4 8262 1992-08-15 2024-10-11 02:17:42.000 1992-08-15 2024-10-11 02:17:42 +8263 8263 8264 826.3 1652.6000000000001 8263 1992-08-16 2024-10-11 02:17:43.000 1992-08-16 2024-10-11 02:17:43 +8264 8264 8265 826.4 1652.8000000000002 8264 1992-08-17 2024-10-11 02:17:44.000 1992-08-17 2024-10-11 02:17:44 +8266 8266 8267 826.6 1653.2 8266 1992-08-19 2024-10-11 02:17:46.000 1992-08-19 2024-10-11 02:17:46 +8267 8267 8268 826.7 1653.4 8267 1992-08-20 2024-10-11 02:17:47.000 1992-08-20 2024-10-11 02:17:47 +8268 8268 8269 826.8 1653.6000000000001 8268 1992-08-21 2024-10-11 02:17:48.000 1992-08-21 2024-10-11 02:17:48 +8269 8269 8270 826.9 1653.8000000000002 8269 1992-08-22 2024-10-11 02:17:49.000 1992-08-22 2024-10-11 02:17:49 +8271 8271 8272 827.1 1654.2 8271 1992-08-24 2024-10-11 02:17:51.000 1992-08-24 2024-10-11 02:17:51 +8272 8272 8273 827.2 1654.4 8272 1992-08-25 2024-10-11 02:17:52.000 1992-08-25 2024-10-11 02:17:52 +8273 8273 8274 827.3 1654.6000000000001 8273 1992-08-26 2024-10-11 02:17:53.000 1992-08-26 2024-10-11 02:17:53 +8274 8274 8275 827.4 1654.8000000000002 8274 1992-08-27 2024-10-11 02:17:54.000 1992-08-27 2024-10-11 02:17:54 +8276 8276 8277 827.6 1655.2 8276 1992-08-29 2024-10-11 02:17:56.000 1992-08-29 2024-10-11 02:17:56 +8277 8277 8278 827.7 1655.4 8277 1992-08-30 2024-10-11 02:17:57.000 1992-08-30 2024-10-11 02:17:57 +8278 8278 8279 827.8 1655.6000000000001 8278 1992-08-31 2024-10-11 02:17:58.000 1992-08-31 2024-10-11 02:17:58 +8279 8279 8280 827.9 1655.8000000000002 8279 1992-09-01 2024-10-11 02:17:59.000 1992-09-01 2024-10-11 02:17:59 +8281 8281 8282 828.1 1656.2 8281 1992-09-03 2024-10-11 02:18:01.000 1992-09-03 2024-10-11 02:18:01 +8282 8282 8283 828.2 1656.4 8282 1992-09-04 2024-10-11 02:18:02.000 1992-09-04 2024-10-11 02:18:02 +8283 8283 8284 828.3 1656.6000000000001 8283 1992-09-05 2024-10-11 02:18:03.000 1992-09-05 2024-10-11 02:18:03 +8284 8284 8285 828.4 1656.8000000000002 8284 1992-09-06 2024-10-11 02:18:04.000 1992-09-06 2024-10-11 02:18:04 +8286 8286 8287 828.6 1657.2 8286 1992-09-08 2024-10-11 02:18:06.000 1992-09-08 2024-10-11 02:18:06 +8287 8287 8288 828.7 1657.4 8287 1992-09-09 2024-10-11 02:18:07.000 1992-09-09 2024-10-11 02:18:07 +8288 8288 8289 828.8 1657.6000000000001 8288 1992-09-10 2024-10-11 02:18:08.000 1992-09-10 2024-10-11 02:18:08 +8289 8289 8290 828.9 1657.8000000000002 8289 1992-09-11 2024-10-11 02:18:09.000 1992-09-11 2024-10-11 02:18:09 +8291 8291 8292 829.1 1658.2 8291 1992-09-13 2024-10-11 02:18:11.000 1992-09-13 2024-10-11 02:18:11 +8292 8292 8293 829.2 1658.4 8292 1992-09-14 2024-10-11 02:18:12.000 1992-09-14 2024-10-11 02:18:12 +8293 8293 8294 829.3 1658.6000000000001 8293 1992-09-15 2024-10-11 02:18:13.000 1992-09-15 2024-10-11 02:18:13 +8294 8294 8295 829.4 1658.8000000000002 8294 1992-09-16 2024-10-11 02:18:14.000 1992-09-16 2024-10-11 02:18:14 +8296 8296 8297 829.6 1659.2 8296 1992-09-18 2024-10-11 02:18:16.000 1992-09-18 2024-10-11 02:18:16 +8297 8297 8298 829.7 1659.4 8297 1992-09-19 2024-10-11 02:18:17.000 1992-09-19 2024-10-11 02:18:17 +8298 8298 8299 829.8 1659.6000000000001 8298 1992-09-20 2024-10-11 02:18:18.000 1992-09-20 2024-10-11 02:18:18 +8299 8299 8300 829.9 1659.8000000000002 8299 1992-09-21 2024-10-11 02:18:19.000 1992-09-21 2024-10-11 02:18:19 +8301 8301 8302 830.1 1660.2 8301 1992-09-23 2024-10-11 02:18:21.000 1992-09-23 2024-10-11 02:18:21 +8302 8302 8303 830.2 1660.4 8302 1992-09-24 2024-10-11 02:18:22.000 1992-09-24 2024-10-11 02:18:22 +8303 8303 8304 830.3 1660.6000000000001 8303 1992-09-25 2024-10-11 02:18:23.000 1992-09-25 2024-10-11 02:18:23 +8304 8304 8305 830.4 1660.8000000000002 8304 1992-09-26 2024-10-11 02:18:24.000 1992-09-26 2024-10-11 02:18:24 +8306 8306 8307 830.6 1661.2 8306 1992-09-28 2024-10-11 02:18:26.000 1992-09-28 2024-10-11 02:18:26 +8307 8307 8308 830.7 1661.4 8307 1992-09-29 2024-10-11 02:18:27.000 1992-09-29 2024-10-11 02:18:27 +8308 8308 8309 830.8 1661.6000000000001 8308 1992-09-30 2024-10-11 02:18:28.000 1992-09-30 2024-10-11 02:18:28 +8309 8309 8310 830.9 1661.8000000000002 8309 1992-10-01 2024-10-11 02:18:29.000 1992-10-01 2024-10-11 02:18:29 +8311 8311 8312 831.1 1662.2 8311 1992-10-03 2024-10-11 02:18:31.000 1992-10-03 2024-10-11 02:18:31 +8312 8312 8313 831.2 1662.4 8312 1992-10-04 2024-10-11 02:18:32.000 1992-10-04 2024-10-11 02:18:32 +8313 8313 8314 831.3 1662.6000000000001 8313 1992-10-05 2024-10-11 02:18:33.000 1992-10-05 2024-10-11 02:18:33 +8314 8314 8315 831.4 1662.8000000000002 8314 1992-10-06 2024-10-11 02:18:34.000 1992-10-06 2024-10-11 02:18:34 +8316 8316 8317 831.6 1663.2 8316 1992-10-08 2024-10-11 02:18:36.000 1992-10-08 2024-10-11 02:18:36 +8317 8317 8318 831.7 1663.4 8317 1992-10-09 2024-10-11 02:18:37.000 1992-10-09 2024-10-11 02:18:37 +8318 8318 8319 831.8 1663.6000000000001 8318 1992-10-10 2024-10-11 02:18:38.000 1992-10-10 2024-10-11 02:18:38 +8319 8319 8320 831.9 1663.8000000000002 8319 1992-10-11 2024-10-11 02:18:39.000 1992-10-11 2024-10-11 02:18:39 +8321 8321 8322 832.1 1664.2 8321 1992-10-13 2024-10-11 02:18:41.000 1992-10-13 2024-10-11 02:18:41 +8322 8322 8323 832.2 1664.4 8322 1992-10-14 2024-10-11 02:18:42.000 1992-10-14 2024-10-11 02:18:42 +8323 8323 8324 832.3 1664.6000000000001 8323 1992-10-15 2024-10-11 02:18:43.000 1992-10-15 2024-10-11 02:18:43 +8324 8324 8325 832.4 1664.8000000000002 8324 1992-10-16 2024-10-11 02:18:44.000 1992-10-16 2024-10-11 02:18:44 +8326 8326 8327 832.6 1665.2 8326 1992-10-18 2024-10-11 02:18:46.000 1992-10-18 2024-10-11 02:18:46 +8327 8327 8328 832.7 1665.4 8327 1992-10-19 2024-10-11 02:18:47.000 1992-10-19 2024-10-11 02:18:47 +8328 8328 8329 832.8 1665.6000000000001 8328 1992-10-20 2024-10-11 02:18:48.000 1992-10-20 2024-10-11 02:18:48 +8329 8329 8330 832.9 1665.8000000000002 8329 1992-10-21 2024-10-11 02:18:49.000 1992-10-21 2024-10-11 02:18:49 +8331 8331 8332 833.1 1666.2 8331 1992-10-23 2024-10-11 02:18:51.000 1992-10-23 2024-10-11 02:18:51 +8332 8332 8333 833.2 1666.4 8332 1992-10-24 2024-10-11 02:18:52.000 1992-10-24 2024-10-11 02:18:52 +8333 8333 8334 833.3 1666.6000000000001 8333 1992-10-25 2024-10-11 02:18:53.000 1992-10-25 2024-10-11 02:18:53 +8334 8334 8335 833.4 1666.8000000000002 8334 1992-10-26 2024-10-11 02:18:54.000 1992-10-26 2024-10-11 02:18:54 +8336 8336 8337 833.6 1667.2 8336 1992-10-28 2024-10-11 02:18:56.000 1992-10-28 2024-10-11 02:18:56 +8337 8337 8338 833.7 1667.4 8337 1992-10-29 2024-10-11 02:18:57.000 1992-10-29 2024-10-11 02:18:57 +8338 8338 8339 833.8 1667.6000000000001 8338 1992-10-30 2024-10-11 02:18:58.000 1992-10-30 2024-10-11 02:18:58 +8339 8339 8340 833.9 1667.8000000000002 8339 1992-10-31 2024-10-11 02:18:59.000 1992-10-31 2024-10-11 02:18:59 +8341 8341 8342 834.1 1668.2 8341 1992-11-02 2024-10-11 02:19:01.000 1992-11-02 2024-10-11 02:19:01 +8342 8342 8343 834.2 1668.4 8342 1992-11-03 2024-10-11 02:19:02.000 1992-11-03 2024-10-11 02:19:02 +8343 8343 8344 834.3 1668.6000000000001 8343 1992-11-04 2024-10-11 02:19:03.000 1992-11-04 2024-10-11 02:19:03 +8344 8344 8345 834.4 1668.8000000000002 8344 1992-11-05 2024-10-11 02:19:04.000 1992-11-05 2024-10-11 02:19:04 +8346 8346 8347 834.6 1669.2 8346 1992-11-07 2024-10-11 02:19:06.000 1992-11-07 2024-10-11 02:19:06 +8347 8347 8348 834.7 1669.4 8347 1992-11-08 2024-10-11 02:19:07.000 1992-11-08 2024-10-11 02:19:07 +8348 8348 8349 834.8 1669.6000000000001 8348 1992-11-09 2024-10-11 02:19:08.000 1992-11-09 2024-10-11 02:19:08 +8349 8349 8350 834.9 1669.8000000000002 8349 1992-11-10 2024-10-11 02:19:09.000 1992-11-10 2024-10-11 02:19:09 +8351 8351 8352 835.1 1670.2 8351 1992-11-12 2024-10-11 02:19:11.000 1992-11-12 2024-10-11 02:19:11 +8352 8352 8353 835.2 1670.4 8352 1992-11-13 2024-10-11 02:19:12.000 1992-11-13 2024-10-11 02:19:12 +8353 8353 8354 835.3 1670.6000000000001 8353 1992-11-14 2024-10-11 02:19:13.000 1992-11-14 2024-10-11 02:19:13 +8354 8354 8355 835.4 1670.8000000000002 8354 1992-11-15 2024-10-11 02:19:14.000 1992-11-15 2024-10-11 02:19:14 +8356 8356 8357 835.6 1671.2 8356 1992-11-17 2024-10-11 02:19:16.000 1992-11-17 2024-10-11 02:19:16 +8357 8357 8358 835.7 1671.4 8357 1992-11-18 2024-10-11 02:19:17.000 1992-11-18 2024-10-11 02:19:17 +8358 8358 8359 835.8 1671.6000000000001 8358 1992-11-19 2024-10-11 02:19:18.000 1992-11-19 2024-10-11 02:19:18 +8359 8359 8360 835.9 1671.8000000000002 8359 1992-11-20 2024-10-11 02:19:19.000 1992-11-20 2024-10-11 02:19:19 +8361 8361 8362 836.1 1672.2 8361 1992-11-22 2024-10-11 02:19:21.000 1992-11-22 2024-10-11 02:19:21 +8362 8362 8363 836.2 1672.4 8362 1992-11-23 2024-10-11 02:19:22.000 1992-11-23 2024-10-11 02:19:22 +8363 8363 8364 836.3 1672.6000000000001 8363 1992-11-24 2024-10-11 02:19:23.000 1992-11-24 2024-10-11 02:19:23 +8364 8364 8365 836.4 1672.8000000000002 8364 1992-11-25 2024-10-11 02:19:24.000 1992-11-25 2024-10-11 02:19:24 +8366 8366 8367 836.6 1673.2 8366 1992-11-27 2024-10-11 02:19:26.000 1992-11-27 2024-10-11 02:19:26 +8367 8367 8368 836.7 1673.4 8367 1992-11-28 2024-10-11 02:19:27.000 1992-11-28 2024-10-11 02:19:27 +8368 8368 8369 836.8 1673.6000000000001 8368 1992-11-29 2024-10-11 02:19:28.000 1992-11-29 2024-10-11 02:19:28 +8369 8369 8370 836.9 1673.8000000000002 8369 1992-11-30 2024-10-11 02:19:29.000 1992-11-30 2024-10-11 02:19:29 +8371 8371 8372 837.1 1674.2 8371 1992-12-02 2024-10-11 02:19:31.000 1992-12-02 2024-10-11 02:19:31 +8372 8372 8373 837.2 1674.4 8372 1992-12-03 2024-10-11 02:19:32.000 1992-12-03 2024-10-11 02:19:32 +8373 8373 8374 837.3 1674.6000000000001 8373 1992-12-04 2024-10-11 02:19:33.000 1992-12-04 2024-10-11 02:19:33 +8374 8374 8375 837.4 1674.8000000000002 8374 1992-12-05 2024-10-11 02:19:34.000 1992-12-05 2024-10-11 02:19:34 +8376 8376 8377 837.6 1675.2 8376 1992-12-07 2024-10-11 02:19:36.000 1992-12-07 2024-10-11 02:19:36 +8377 8377 8378 837.7 1675.4 8377 1992-12-08 2024-10-11 02:19:37.000 1992-12-08 2024-10-11 02:19:37 +8378 8378 8379 837.8 1675.6000000000001 8378 1992-12-09 2024-10-11 02:19:38.000 1992-12-09 2024-10-11 02:19:38 +8379 8379 8380 837.9 1675.8000000000002 8379 1992-12-10 2024-10-11 02:19:39.000 1992-12-10 2024-10-11 02:19:39 +8381 8381 8382 838.1 1676.2 8381 1992-12-12 2024-10-11 02:19:41.000 1992-12-12 2024-10-11 02:19:41 +8382 8382 8383 838.2 1676.4 8382 1992-12-13 2024-10-11 02:19:42.000 1992-12-13 2024-10-11 02:19:42 +8383 8383 8384 838.3 1676.6000000000001 8383 1992-12-14 2024-10-11 02:19:43.000 1992-12-14 2024-10-11 02:19:43 +8384 8384 8385 838.4 1676.8000000000002 8384 1992-12-15 2024-10-11 02:19:44.000 1992-12-15 2024-10-11 02:19:44 +8386 8386 8387 838.6 1677.2 8386 1992-12-17 2024-10-11 02:19:46.000 1992-12-17 2024-10-11 02:19:46 +8387 8387 8388 838.7 1677.4 8387 1992-12-18 2024-10-11 02:19:47.000 1992-12-18 2024-10-11 02:19:47 +8388 8388 8389 838.8 1677.6000000000001 8388 1992-12-19 2024-10-11 02:19:48.000 1992-12-19 2024-10-11 02:19:48 +8389 8389 8390 838.9 1677.8000000000002 8389 1992-12-20 2024-10-11 02:19:49.000 1992-12-20 2024-10-11 02:19:49 +8391 8391 8392 839.1 1678.2 8391 1992-12-22 2024-10-11 02:19:51.000 1992-12-22 2024-10-11 02:19:51 +8392 8392 8393 839.2 1678.4 8392 1992-12-23 2024-10-11 02:19:52.000 1992-12-23 2024-10-11 02:19:52 +8393 8393 8394 839.3 1678.6000000000001 8393 1992-12-24 2024-10-11 02:19:53.000 1992-12-24 2024-10-11 02:19:53 +8394 8394 8395 839.4 1678.8000000000002 8394 1992-12-25 2024-10-11 02:19:54.000 1992-12-25 2024-10-11 02:19:54 +8396 8396 8397 839.6 1679.2 8396 1992-12-27 2024-10-11 02:19:56.000 1992-12-27 2024-10-11 02:19:56 +8397 8397 8398 839.7 1679.4 8397 1992-12-28 2024-10-11 02:19:57.000 1992-12-28 2024-10-11 02:19:57 +8398 8398 8399 839.8 1679.6000000000001 8398 1992-12-29 2024-10-11 02:19:58.000 1992-12-29 2024-10-11 02:19:58 +8399 8399 8400 839.9 1679.8000000000002 8399 1992-12-30 2024-10-11 02:19:59.000 1992-12-30 2024-10-11 02:19:59 +8401 8401 8402 840.1 1680.2 8401 1993-01-01 2024-10-11 02:20:01.000 1993-01-01 2024-10-11 02:20:01 +8402 8402 8403 840.2 1680.4 8402 1993-01-02 2024-10-11 02:20:02.000 1993-01-02 2024-10-11 02:20:02 +8403 8403 8404 840.3 1680.6000000000001 8403 1993-01-03 2024-10-11 02:20:03.000 1993-01-03 2024-10-11 02:20:03 +8404 8404 8405 840.4 1680.8000000000002 8404 1993-01-04 2024-10-11 02:20:04.000 1993-01-04 2024-10-11 02:20:04 +8406 8406 8407 840.6 1681.2 8406 1993-01-06 2024-10-11 02:20:06.000 1993-01-06 2024-10-11 02:20:06 +8407 8407 8408 840.7 1681.4 8407 1993-01-07 2024-10-11 02:20:07.000 1993-01-07 2024-10-11 02:20:07 +8408 8408 8409 840.8 1681.6000000000001 8408 1993-01-08 2024-10-11 02:20:08.000 1993-01-08 2024-10-11 02:20:08 +8409 8409 8410 840.9 1681.8000000000002 8409 1993-01-09 2024-10-11 02:20:09.000 1993-01-09 2024-10-11 02:20:09 +8411 8411 8412 841.1 1682.2 8411 1993-01-11 2024-10-11 02:20:11.000 1993-01-11 2024-10-11 02:20:11 +8412 8412 8413 841.2 1682.4 8412 1993-01-12 2024-10-11 02:20:12.000 1993-01-12 2024-10-11 02:20:12 +8413 8413 8414 841.3 1682.6000000000001 8413 1993-01-13 2024-10-11 02:20:13.000 1993-01-13 2024-10-11 02:20:13 +8414 8414 8415 841.4 1682.8000000000002 8414 1993-01-14 2024-10-11 02:20:14.000 1993-01-14 2024-10-11 02:20:14 +8416 8416 8417 841.6 1683.2 8416 1993-01-16 2024-10-11 02:20:16.000 1993-01-16 2024-10-11 02:20:16 +8417 8417 8418 841.7 1683.4 8417 1993-01-17 2024-10-11 02:20:17.000 1993-01-17 2024-10-11 02:20:17 +8418 8418 8419 841.8 1683.6000000000001 8418 1993-01-18 2024-10-11 02:20:18.000 1993-01-18 2024-10-11 02:20:18 +8419 8419 8420 841.9 1683.8000000000002 8419 1993-01-19 2024-10-11 02:20:19.000 1993-01-19 2024-10-11 02:20:19 +8421 8421 8422 842.1 1684.2 8421 1993-01-21 2024-10-11 02:20:21.000 1993-01-21 2024-10-11 02:20:21 +8422 8422 8423 842.2 1684.4 8422 1993-01-22 2024-10-11 02:20:22.000 1993-01-22 2024-10-11 02:20:22 +8423 8423 8424 842.3 1684.6000000000001 8423 1993-01-23 2024-10-11 02:20:23.000 1993-01-23 2024-10-11 02:20:23 +8424 8424 8425 842.4 1684.8000000000002 8424 1993-01-24 2024-10-11 02:20:24.000 1993-01-24 2024-10-11 02:20:24 +8426 8426 8427 842.6 1685.2 8426 1993-01-26 2024-10-11 02:20:26.000 1993-01-26 2024-10-11 02:20:26 +8427 8427 8428 842.7 1685.4 8427 1993-01-27 2024-10-11 02:20:27.000 1993-01-27 2024-10-11 02:20:27 +8428 8428 8429 842.8 1685.6000000000001 8428 1993-01-28 2024-10-11 02:20:28.000 1993-01-28 2024-10-11 02:20:28 +8429 8429 8430 842.9 1685.8000000000002 8429 1993-01-29 2024-10-11 02:20:29.000 1993-01-29 2024-10-11 02:20:29 +8431 8431 8432 843.1 1686.2 8431 1993-01-31 2024-10-11 02:20:31.000 1993-01-31 2024-10-11 02:20:31 +8432 8432 8433 843.2 1686.4 8432 1993-02-01 2024-10-11 02:20:32.000 1993-02-01 2024-10-11 02:20:32 +8433 8433 8434 843.3 1686.6000000000001 8433 1993-02-02 2024-10-11 02:20:33.000 1993-02-02 2024-10-11 02:20:33 +8434 8434 8435 843.4 1686.8000000000002 8434 1993-02-03 2024-10-11 02:20:34.000 1993-02-03 2024-10-11 02:20:34 +8436 8436 8437 843.6 1687.2 8436 1993-02-05 2024-10-11 02:20:36.000 1993-02-05 2024-10-11 02:20:36 +8437 8437 8438 843.7 1687.4 8437 1993-02-06 2024-10-11 02:20:37.000 1993-02-06 2024-10-11 02:20:37 +8438 8438 8439 843.8 1687.6000000000001 8438 1993-02-07 2024-10-11 02:20:38.000 1993-02-07 2024-10-11 02:20:38 +8439 8439 8440 843.9 1687.8000000000002 8439 1993-02-08 2024-10-11 02:20:39.000 1993-02-08 2024-10-11 02:20:39 +8441 8441 8442 844.1 1688.2 8441 1993-02-10 2024-10-11 02:20:41.000 1993-02-10 2024-10-11 02:20:41 +8442 8442 8443 844.2 1688.4 8442 1993-02-11 2024-10-11 02:20:42.000 1993-02-11 2024-10-11 02:20:42 +8443 8443 8444 844.3 1688.6000000000001 8443 1993-02-12 2024-10-11 02:20:43.000 1993-02-12 2024-10-11 02:20:43 +8444 8444 8445 844.4 1688.8000000000002 8444 1993-02-13 2024-10-11 02:20:44.000 1993-02-13 2024-10-11 02:20:44 +8446 8446 8447 844.6 1689.2 8446 1993-02-15 2024-10-11 02:20:46.000 1993-02-15 2024-10-11 02:20:46 +8447 8447 8448 844.7 1689.4 8447 1993-02-16 2024-10-11 02:20:47.000 1993-02-16 2024-10-11 02:20:47 +8448 8448 8449 844.8 1689.6000000000001 8448 1993-02-17 2024-10-11 02:20:48.000 1993-02-17 2024-10-11 02:20:48 +8449 8449 8450 844.9 1689.8000000000002 8449 1993-02-18 2024-10-11 02:20:49.000 1993-02-18 2024-10-11 02:20:49 +8451 8451 8452 845.1 1690.2 8451 1993-02-20 2024-10-11 02:20:51.000 1993-02-20 2024-10-11 02:20:51 +8452 8452 8453 845.2 1690.4 8452 1993-02-21 2024-10-11 02:20:52.000 1993-02-21 2024-10-11 02:20:52 +8453 8453 8454 845.3 1690.6000000000001 8453 1993-02-22 2024-10-11 02:20:53.000 1993-02-22 2024-10-11 02:20:53 +8454 8454 8455 845.4 1690.8000000000002 8454 1993-02-23 2024-10-11 02:20:54.000 1993-02-23 2024-10-11 02:20:54 +8456 8456 8457 845.6 1691.2 8456 1993-02-25 2024-10-11 02:20:56.000 1993-02-25 2024-10-11 02:20:56 +8457 8457 8458 845.7 1691.4 8457 1993-02-26 2024-10-11 02:20:57.000 1993-02-26 2024-10-11 02:20:57 +8458 8458 8459 845.8 1691.6000000000001 8458 1993-02-27 2024-10-11 02:20:58.000 1993-02-27 2024-10-11 02:20:58 +8459 8459 8460 845.9 1691.8000000000002 8459 1993-02-28 2024-10-11 02:20:59.000 1993-02-28 2024-10-11 02:20:59 +8461 8461 8462 846.1 1692.2 8461 1993-03-02 2024-10-11 02:21:01.000 1993-03-02 2024-10-11 02:21:01 +8462 8462 8463 846.2 1692.4 8462 1993-03-03 2024-10-11 02:21:02.000 1993-03-03 2024-10-11 02:21:02 +8463 8463 8464 846.3 1692.6000000000001 8463 1993-03-04 2024-10-11 02:21:03.000 1993-03-04 2024-10-11 02:21:03 +8464 8464 8465 846.4 1692.8000000000002 8464 1993-03-05 2024-10-11 02:21:04.000 1993-03-05 2024-10-11 02:21:04 +8466 8466 8467 846.6 1693.2 8466 1993-03-07 2024-10-11 02:21:06.000 1993-03-07 2024-10-11 02:21:06 +8467 8467 8468 846.7 1693.4 8467 1993-03-08 2024-10-11 02:21:07.000 1993-03-08 2024-10-11 02:21:07 +8468 8468 8469 846.8 1693.6000000000001 8468 1993-03-09 2024-10-11 02:21:08.000 1993-03-09 2024-10-11 02:21:08 +8469 8469 8470 846.9 1693.8000000000002 8469 1993-03-10 2024-10-11 02:21:09.000 1993-03-10 2024-10-11 02:21:09 +8471 8471 8472 847.1 1694.2 8471 1993-03-12 2024-10-11 02:21:11.000 1993-03-12 2024-10-11 02:21:11 +8472 8472 8473 847.2 1694.4 8472 1993-03-13 2024-10-11 02:21:12.000 1993-03-13 2024-10-11 02:21:12 +8473 8473 8474 847.3 1694.6000000000001 8473 1993-03-14 2024-10-11 02:21:13.000 1993-03-14 2024-10-11 02:21:13 +8474 8474 8475 847.4 1694.8000000000002 8474 1993-03-15 2024-10-11 02:21:14.000 1993-03-15 2024-10-11 02:21:14 +8476 8476 8477 847.6 1695.2 8476 1993-03-17 2024-10-11 02:21:16.000 1993-03-17 2024-10-11 02:21:16 +8477 8477 8478 847.7 1695.4 8477 1993-03-18 2024-10-11 02:21:17.000 1993-03-18 2024-10-11 02:21:17 +8478 8478 8479 847.8 1695.6000000000001 8478 1993-03-19 2024-10-11 02:21:18.000 1993-03-19 2024-10-11 02:21:18 +8479 8479 8480 847.9 1695.8000000000002 8479 1993-03-20 2024-10-11 02:21:19.000 1993-03-20 2024-10-11 02:21:19 +8481 8481 8482 848.1 1696.2 8481 1993-03-22 2024-10-11 02:21:21.000 1993-03-22 2024-10-11 02:21:21 +8482 8482 8483 848.2 1696.4 8482 1993-03-23 2024-10-11 02:21:22.000 1993-03-23 2024-10-11 02:21:22 +8483 8483 8484 848.3 1696.6000000000001 8483 1993-03-24 2024-10-11 02:21:23.000 1993-03-24 2024-10-11 02:21:23 +8484 8484 8485 848.4 1696.8000000000002 8484 1993-03-25 2024-10-11 02:21:24.000 1993-03-25 2024-10-11 02:21:24 +8486 8486 8487 848.6 1697.2 8486 1993-03-27 2024-10-11 02:21:26.000 1993-03-27 2024-10-11 02:21:26 +8487 8487 8488 848.7 1697.4 8487 1993-03-28 2024-10-11 02:21:27.000 1993-03-28 2024-10-11 02:21:27 +8488 8488 8489 848.8 1697.6000000000001 8488 1993-03-29 2024-10-11 02:21:28.000 1993-03-29 2024-10-11 02:21:28 +8489 8489 8490 848.9 1697.8000000000002 8489 1993-03-30 2024-10-11 02:21:29.000 1993-03-30 2024-10-11 02:21:29 +8491 8491 8492 849.1 1698.2 8491 1993-04-01 2024-10-11 02:21:31.000 1993-04-01 2024-10-11 02:21:31 +8492 8492 8493 849.2 1698.4 8492 1993-04-02 2024-10-11 02:21:32.000 1993-04-02 2024-10-11 02:21:32 +8493 8493 8494 849.3 1698.6000000000001 8493 1993-04-03 2024-10-11 02:21:33.000 1993-04-03 2024-10-11 02:21:33 +8494 8494 8495 849.4 1698.8000000000002 8494 1993-04-04 2024-10-11 02:21:34.000 1993-04-04 2024-10-11 02:21:34 +8496 8496 8497 849.6 1699.2 8496 1993-04-06 2024-10-11 02:21:36.000 1993-04-06 2024-10-11 02:21:36 +8497 8497 8498 849.7 1699.4 8497 1993-04-07 2024-10-11 02:21:37.000 1993-04-07 2024-10-11 02:21:37 +8498 8498 8499 849.8 1699.6000000000001 8498 1993-04-08 2024-10-11 02:21:38.000 1993-04-08 2024-10-11 02:21:38 +8499 8499 8500 849.9 1699.8000000000002 8499 1993-04-09 2024-10-11 02:21:39.000 1993-04-09 2024-10-11 02:21:39 +8501 8501 8502 850.1 1700.2 8501 1993-04-11 2024-10-11 02:21:41.000 1993-04-11 2024-10-11 02:21:41 +8502 8502 8503 850.2 1700.4 8502 1993-04-12 2024-10-11 02:21:42.000 1993-04-12 2024-10-11 02:21:42 +8503 8503 8504 850.3 1700.6000000000001 8503 1993-04-13 2024-10-11 02:21:43.000 1993-04-13 2024-10-11 02:21:43 +8504 8504 8505 850.4 1700.8000000000002 8504 1993-04-14 2024-10-11 02:21:44.000 1993-04-14 2024-10-11 02:21:44 +8506 8506 8507 850.6 1701.2 8506 1993-04-16 2024-10-11 02:21:46.000 1993-04-16 2024-10-11 02:21:46 +8507 8507 8508 850.7 1701.4 8507 1993-04-17 2024-10-11 02:21:47.000 1993-04-17 2024-10-11 02:21:47 +8508 8508 8509 850.8 1701.6000000000001 8508 1993-04-18 2024-10-11 02:21:48.000 1993-04-18 2024-10-11 02:21:48 +8509 8509 8510 850.9 1701.8000000000002 8509 1993-04-19 2024-10-11 02:21:49.000 1993-04-19 2024-10-11 02:21:49 +8511 8511 8512 851.1 1702.2 8511 1993-04-21 2024-10-11 02:21:51.000 1993-04-21 2024-10-11 02:21:51 +8512 8512 8513 851.2 1702.4 8512 1993-04-22 2024-10-11 02:21:52.000 1993-04-22 2024-10-11 02:21:52 +8513 8513 8514 851.3 1702.6000000000001 8513 1993-04-23 2024-10-11 02:21:53.000 1993-04-23 2024-10-11 02:21:53 +8514 8514 8515 851.4 1702.8000000000002 8514 1993-04-24 2024-10-11 02:21:54.000 1993-04-24 2024-10-11 02:21:54 +8516 8516 8517 851.6 1703.2 8516 1993-04-26 2024-10-11 02:21:56.000 1993-04-26 2024-10-11 02:21:56 +8517 8517 8518 851.7 1703.4 8517 1993-04-27 2024-10-11 02:21:57.000 1993-04-27 2024-10-11 02:21:57 +8518 8518 8519 851.8 1703.6000000000001 8518 1993-04-28 2024-10-11 02:21:58.000 1993-04-28 2024-10-11 02:21:58 +8519 8519 8520 851.9 1703.8000000000002 8519 1993-04-29 2024-10-11 02:21:59.000 1993-04-29 2024-10-11 02:21:59 +8521 8521 8522 852.1 1704.2 8521 1993-05-01 2024-10-11 02:22:01.000 1993-05-01 2024-10-11 02:22:01 +8522 8522 8523 852.2 1704.4 8522 1993-05-02 2024-10-11 02:22:02.000 1993-05-02 2024-10-11 02:22:02 +8523 8523 8524 852.3 1704.6000000000001 8523 1993-05-03 2024-10-11 02:22:03.000 1993-05-03 2024-10-11 02:22:03 +8524 8524 8525 852.4 1704.8000000000002 8524 1993-05-04 2024-10-11 02:22:04.000 1993-05-04 2024-10-11 02:22:04 +8526 8526 8527 852.6 1705.2 8526 1993-05-06 2024-10-11 02:22:06.000 1993-05-06 2024-10-11 02:22:06 +8527 8527 8528 852.7 1705.4 8527 1993-05-07 2024-10-11 02:22:07.000 1993-05-07 2024-10-11 02:22:07 +8528 8528 8529 852.8 1705.6000000000001 8528 1993-05-08 2024-10-11 02:22:08.000 1993-05-08 2024-10-11 02:22:08 +8529 8529 8530 852.9 1705.8000000000002 8529 1993-05-09 2024-10-11 02:22:09.000 1993-05-09 2024-10-11 02:22:09 +8531 8531 8532 853.1 1706.2 8531 1993-05-11 2024-10-11 02:22:11.000 1993-05-11 2024-10-11 02:22:11 +8532 8532 8533 853.2 1706.4 8532 1993-05-12 2024-10-11 02:22:12.000 1993-05-12 2024-10-11 02:22:12 +8533 8533 8534 853.3 1706.6000000000001 8533 1993-05-13 2024-10-11 02:22:13.000 1993-05-13 2024-10-11 02:22:13 +8534 8534 8535 853.4 1706.8000000000002 8534 1993-05-14 2024-10-11 02:22:14.000 1993-05-14 2024-10-11 02:22:14 +8536 8536 8537 853.6 1707.2 8536 1993-05-16 2024-10-11 02:22:16.000 1993-05-16 2024-10-11 02:22:16 +8537 8537 8538 853.7 1707.4 8537 1993-05-17 2024-10-11 02:22:17.000 1993-05-17 2024-10-11 02:22:17 +8538 8538 8539 853.8 1707.6000000000001 8538 1993-05-18 2024-10-11 02:22:18.000 1993-05-18 2024-10-11 02:22:18 +8539 8539 8540 853.9 1707.8000000000002 8539 1993-05-19 2024-10-11 02:22:19.000 1993-05-19 2024-10-11 02:22:19 +8541 8541 8542 854.1 1708.2 8541 1993-05-21 2024-10-11 02:22:21.000 1993-05-21 2024-10-11 02:22:21 +8542 8542 8543 854.2 1708.4 8542 1993-05-22 2024-10-11 02:22:22.000 1993-05-22 2024-10-11 02:22:22 +8543 8543 8544 854.3 1708.6000000000001 8543 1993-05-23 2024-10-11 02:22:23.000 1993-05-23 2024-10-11 02:22:23 +8544 8544 8545 854.4 1708.8000000000002 8544 1993-05-24 2024-10-11 02:22:24.000 1993-05-24 2024-10-11 02:22:24 +8546 8546 8547 854.6 1709.2 8546 1993-05-26 2024-10-11 02:22:26.000 1993-05-26 2024-10-11 02:22:26 +8547 8547 8548 854.7 1709.4 8547 1993-05-27 2024-10-11 02:22:27.000 1993-05-27 2024-10-11 02:22:27 +8548 8548 8549 854.8 1709.6000000000001 8548 1993-05-28 2024-10-11 02:22:28.000 1993-05-28 2024-10-11 02:22:28 +8549 8549 8550 854.9 1709.8000000000002 8549 1993-05-29 2024-10-11 02:22:29.000 1993-05-29 2024-10-11 02:22:29 +8551 8551 8552 855.1 1710.2 8551 1993-05-31 2024-10-11 02:22:31.000 1993-05-31 2024-10-11 02:22:31 +8552 8552 8553 855.2 1710.4 8552 1993-06-01 2024-10-11 02:22:32.000 1993-06-01 2024-10-11 02:22:32 +8553 8553 8554 855.3 1710.6000000000001 8553 1993-06-02 2024-10-11 02:22:33.000 1993-06-02 2024-10-11 02:22:33 +8554 8554 8555 855.4 1710.8000000000002 8554 1993-06-03 2024-10-11 02:22:34.000 1993-06-03 2024-10-11 02:22:34 +8556 8556 8557 855.6 1711.2 8556 1993-06-05 2024-10-11 02:22:36.000 1993-06-05 2024-10-11 02:22:36 +8557 8557 8558 855.7 1711.4 8557 1993-06-06 2024-10-11 02:22:37.000 1993-06-06 2024-10-11 02:22:37 +8558 8558 8559 855.8 1711.6000000000001 8558 1993-06-07 2024-10-11 02:22:38.000 1993-06-07 2024-10-11 02:22:38 +8559 8559 8560 855.9 1711.8000000000002 8559 1993-06-08 2024-10-11 02:22:39.000 1993-06-08 2024-10-11 02:22:39 +8561 8561 8562 856.1 1712.2 8561 1993-06-10 2024-10-11 02:22:41.000 1993-06-10 2024-10-11 02:22:41 +8562 8562 8563 856.2 1712.4 8562 1993-06-11 2024-10-11 02:22:42.000 1993-06-11 2024-10-11 02:22:42 +8563 8563 8564 856.3 1712.6000000000001 8563 1993-06-12 2024-10-11 02:22:43.000 1993-06-12 2024-10-11 02:22:43 +8564 8564 8565 856.4 1712.8000000000002 8564 1993-06-13 2024-10-11 02:22:44.000 1993-06-13 2024-10-11 02:22:44 +8566 8566 8567 856.6 1713.2 8566 1993-06-15 2024-10-11 02:22:46.000 1993-06-15 2024-10-11 02:22:46 +8567 8567 8568 856.7 1713.4 8567 1993-06-16 2024-10-11 02:22:47.000 1993-06-16 2024-10-11 02:22:47 +8568 8568 8569 856.8 1713.6000000000001 8568 1993-06-17 2024-10-11 02:22:48.000 1993-06-17 2024-10-11 02:22:48 +8569 8569 8570 856.9 1713.8000000000002 8569 1993-06-18 2024-10-11 02:22:49.000 1993-06-18 2024-10-11 02:22:49 +8571 8571 8572 857.1 1714.2 8571 1993-06-20 2024-10-11 02:22:51.000 1993-06-20 2024-10-11 02:22:51 +8572 8572 8573 857.2 1714.4 8572 1993-06-21 2024-10-11 02:22:52.000 1993-06-21 2024-10-11 02:22:52 +8573 8573 8574 857.3 1714.6000000000001 8573 1993-06-22 2024-10-11 02:22:53.000 1993-06-22 2024-10-11 02:22:53 +8574 8574 8575 857.4 1714.8000000000002 8574 1993-06-23 2024-10-11 02:22:54.000 1993-06-23 2024-10-11 02:22:54 +8576 8576 8577 857.6 1715.2 8576 1993-06-25 2024-10-11 02:22:56.000 1993-06-25 2024-10-11 02:22:56 +8577 8577 8578 857.7 1715.4 8577 1993-06-26 2024-10-11 02:22:57.000 1993-06-26 2024-10-11 02:22:57 +8578 8578 8579 857.8 1715.6000000000001 8578 1993-06-27 2024-10-11 02:22:58.000 1993-06-27 2024-10-11 02:22:58 +8579 8579 8580 857.9 1715.8000000000002 8579 1993-06-28 2024-10-11 02:22:59.000 1993-06-28 2024-10-11 02:22:59 +8581 8581 8582 858.1 1716.2 8581 1993-06-30 2024-10-11 02:23:01.000 1993-06-30 2024-10-11 02:23:01 +8582 8582 8583 858.2 1716.4 8582 1993-07-01 2024-10-11 02:23:02.000 1993-07-01 2024-10-11 02:23:02 +8583 8583 8584 858.3 1716.6000000000001 8583 1993-07-02 2024-10-11 02:23:03.000 1993-07-02 2024-10-11 02:23:03 +8584 8584 8585 858.4 1716.8000000000002 8584 1993-07-03 2024-10-11 02:23:04.000 1993-07-03 2024-10-11 02:23:04 +8586 8586 8587 858.6 1717.2 8586 1993-07-05 2024-10-11 02:23:06.000 1993-07-05 2024-10-11 02:23:06 +8587 8587 8588 858.7 1717.4 8587 1993-07-06 2024-10-11 02:23:07.000 1993-07-06 2024-10-11 02:23:07 +8588 8588 8589 858.8 1717.6000000000001 8588 1993-07-07 2024-10-11 02:23:08.000 1993-07-07 2024-10-11 02:23:08 +8589 8589 8590 858.9 1717.8000000000002 8589 1993-07-08 2024-10-11 02:23:09.000 1993-07-08 2024-10-11 02:23:09 +8591 8591 8592 859.1 1718.2 8591 1993-07-10 2024-10-11 02:23:11.000 1993-07-10 2024-10-11 02:23:11 +8592 8592 8593 859.2 1718.4 8592 1993-07-11 2024-10-11 02:23:12.000 1993-07-11 2024-10-11 02:23:12 +8593 8593 8594 859.3 1718.6000000000001 8593 1993-07-12 2024-10-11 02:23:13.000 1993-07-12 2024-10-11 02:23:13 +8594 8594 8595 859.4 1718.8000000000002 8594 1993-07-13 2024-10-11 02:23:14.000 1993-07-13 2024-10-11 02:23:14 +8596 8596 8597 859.6 1719.2 8596 1993-07-15 2024-10-11 02:23:16.000 1993-07-15 2024-10-11 02:23:16 +8597 8597 8598 859.7 1719.4 8597 1993-07-16 2024-10-11 02:23:17.000 1993-07-16 2024-10-11 02:23:17 +8598 8598 8599 859.8 1719.6000000000001 8598 1993-07-17 2024-10-11 02:23:18.000 1993-07-17 2024-10-11 02:23:18 +8599 8599 8600 859.9 1719.8000000000002 8599 1993-07-18 2024-10-11 02:23:19.000 1993-07-18 2024-10-11 02:23:19 +8601 8601 8602 860.1 1720.2 8601 1993-07-20 2024-10-11 02:23:21.000 1993-07-20 2024-10-11 02:23:21 +8602 8602 8603 860.2 1720.4 8602 1993-07-21 2024-10-11 02:23:22.000 1993-07-21 2024-10-11 02:23:22 +8603 8603 8604 860.3 1720.6000000000001 8603 1993-07-22 2024-10-11 02:23:23.000 1993-07-22 2024-10-11 02:23:23 +8604 8604 8605 860.4 1720.8000000000002 8604 1993-07-23 2024-10-11 02:23:24.000 1993-07-23 2024-10-11 02:23:24 +8606 8606 8607 860.6 1721.2 8606 1993-07-25 2024-10-11 02:23:26.000 1993-07-25 2024-10-11 02:23:26 +8607 8607 8608 860.7 1721.4 8607 1993-07-26 2024-10-11 02:23:27.000 1993-07-26 2024-10-11 02:23:27 +8608 8608 8609 860.8 1721.6000000000001 8608 1993-07-27 2024-10-11 02:23:28.000 1993-07-27 2024-10-11 02:23:28 +8609 8609 8610 860.9 1721.8000000000002 8609 1993-07-28 2024-10-11 02:23:29.000 1993-07-28 2024-10-11 02:23:29 +8611 8611 8612 861.1 1722.2 8611 1993-07-30 2024-10-11 02:23:31.000 1993-07-30 2024-10-11 02:23:31 +8612 8612 8613 861.2 1722.4 8612 1993-07-31 2024-10-11 02:23:32.000 1993-07-31 2024-10-11 02:23:32 +8613 8613 8614 861.3 1722.6000000000001 8613 1993-08-01 2024-10-11 02:23:33.000 1993-08-01 2024-10-11 02:23:33 +8614 8614 8615 861.4 1722.8000000000002 8614 1993-08-02 2024-10-11 02:23:34.000 1993-08-02 2024-10-11 02:23:34 +8616 8616 8617 861.6 1723.2 8616 1993-08-04 2024-10-11 02:23:36.000 1993-08-04 2024-10-11 02:23:36 +8617 8617 8618 861.7 1723.4 8617 1993-08-05 2024-10-11 02:23:37.000 1993-08-05 2024-10-11 02:23:37 +8618 8618 8619 861.8 1723.6000000000001 8618 1993-08-06 2024-10-11 02:23:38.000 1993-08-06 2024-10-11 02:23:38 +8619 8619 8620 861.9 1723.8000000000002 8619 1993-08-07 2024-10-11 02:23:39.000 1993-08-07 2024-10-11 02:23:39 +8621 8621 8622 862.1 1724.2 8621 1993-08-09 2024-10-11 02:23:41.000 1993-08-09 2024-10-11 02:23:41 +8622 8622 8623 862.2 1724.4 8622 1993-08-10 2024-10-11 02:23:42.000 1993-08-10 2024-10-11 02:23:42 +8623 8623 8624 862.3 1724.6000000000001 8623 1993-08-11 2024-10-11 02:23:43.000 1993-08-11 2024-10-11 02:23:43 +8624 8624 8625 862.4 1724.8000000000002 8624 1993-08-12 2024-10-11 02:23:44.000 1993-08-12 2024-10-11 02:23:44 +8626 8626 8627 862.6 1725.2 8626 1993-08-14 2024-10-11 02:23:46.000 1993-08-14 2024-10-11 02:23:46 +8627 8627 8628 862.7 1725.4 8627 1993-08-15 2024-10-11 02:23:47.000 1993-08-15 2024-10-11 02:23:47 +8628 8628 8629 862.8 1725.6000000000001 8628 1993-08-16 2024-10-11 02:23:48.000 1993-08-16 2024-10-11 02:23:48 +8629 8629 8630 862.9 1725.8000000000002 8629 1993-08-17 2024-10-11 02:23:49.000 1993-08-17 2024-10-11 02:23:49 +8631 8631 8632 863.1 1726.2 8631 1993-08-19 2024-10-11 02:23:51.000 1993-08-19 2024-10-11 02:23:51 +8632 8632 8633 863.2 1726.4 8632 1993-08-20 2024-10-11 02:23:52.000 1993-08-20 2024-10-11 02:23:52 +8633 8633 8634 863.3 1726.6000000000001 8633 1993-08-21 2024-10-11 02:23:53.000 1993-08-21 2024-10-11 02:23:53 +8634 8634 8635 863.4 1726.8000000000002 8634 1993-08-22 2024-10-11 02:23:54.000 1993-08-22 2024-10-11 02:23:54 +8636 8636 8637 863.6 1727.2 8636 1993-08-24 2024-10-11 02:23:56.000 1993-08-24 2024-10-11 02:23:56 +8637 8637 8638 863.7 1727.4 8637 1993-08-25 2024-10-11 02:23:57.000 1993-08-25 2024-10-11 02:23:57 +8638 8638 8639 863.8 1727.6000000000001 8638 1993-08-26 2024-10-11 02:23:58.000 1993-08-26 2024-10-11 02:23:58 +8639 8639 8640 863.9 1727.8000000000002 8639 1993-08-27 2024-10-11 02:23:59.000 1993-08-27 2024-10-11 02:23:59 +8641 8641 8642 864.1 1728.2 8641 1993-08-29 2024-10-11 02:24:01.000 1993-08-29 2024-10-11 02:24:01 +8642 8642 8643 864.2 1728.4 8642 1993-08-30 2024-10-11 02:24:02.000 1993-08-30 2024-10-11 02:24:02 +8643 8643 8644 864.3 1728.6000000000001 8643 1993-08-31 2024-10-11 02:24:03.000 1993-08-31 2024-10-11 02:24:03 +8644 8644 8645 864.4 1728.8000000000002 8644 1993-09-01 2024-10-11 02:24:04.000 1993-09-01 2024-10-11 02:24:04 +8646 8646 8647 864.6 1729.2 8646 1993-09-03 2024-10-11 02:24:06.000 1993-09-03 2024-10-11 02:24:06 +8647 8647 8648 864.7 1729.4 8647 1993-09-04 2024-10-11 02:24:07.000 1993-09-04 2024-10-11 02:24:07 +8648 8648 8649 864.8 1729.6000000000001 8648 1993-09-05 2024-10-11 02:24:08.000 1993-09-05 2024-10-11 02:24:08 +8649 8649 8650 864.9 1729.8000000000002 8649 1993-09-06 2024-10-11 02:24:09.000 1993-09-06 2024-10-11 02:24:09 +8651 8651 8652 865.1 1730.2 8651 1993-09-08 2024-10-11 02:24:11.000 1993-09-08 2024-10-11 02:24:11 +8652 8652 8653 865.2 1730.4 8652 1993-09-09 2024-10-11 02:24:12.000 1993-09-09 2024-10-11 02:24:12 +8653 8653 8654 865.3 1730.6000000000001 8653 1993-09-10 2024-10-11 02:24:13.000 1993-09-10 2024-10-11 02:24:13 +8654 8654 8655 865.4 1730.8000000000002 8654 1993-09-11 2024-10-11 02:24:14.000 1993-09-11 2024-10-11 02:24:14 +8656 8656 8657 865.6 1731.2 8656 1993-09-13 2024-10-11 02:24:16.000 1993-09-13 2024-10-11 02:24:16 +8657 8657 8658 865.7 1731.4 8657 1993-09-14 2024-10-11 02:24:17.000 1993-09-14 2024-10-11 02:24:17 +8658 8658 8659 865.8 1731.6000000000001 8658 1993-09-15 2024-10-11 02:24:18.000 1993-09-15 2024-10-11 02:24:18 +8659 8659 8660 865.9 1731.8000000000002 8659 1993-09-16 2024-10-11 02:24:19.000 1993-09-16 2024-10-11 02:24:19 +8661 8661 8662 866.1 1732.2 8661 1993-09-18 2024-10-11 02:24:21.000 1993-09-18 2024-10-11 02:24:21 +8662 8662 8663 866.2 1732.4 8662 1993-09-19 2024-10-11 02:24:22.000 1993-09-19 2024-10-11 02:24:22 +8663 8663 8664 866.3 1732.6000000000001 8663 1993-09-20 2024-10-11 02:24:23.000 1993-09-20 2024-10-11 02:24:23 +8664 8664 8665 866.4 1732.8000000000002 8664 1993-09-21 2024-10-11 02:24:24.000 1993-09-21 2024-10-11 02:24:24 +8666 8666 8667 866.6 1733.2 8666 1993-09-23 2024-10-11 02:24:26.000 1993-09-23 2024-10-11 02:24:26 +8667 8667 8668 866.7 1733.4 8667 1993-09-24 2024-10-11 02:24:27.000 1993-09-24 2024-10-11 02:24:27 +8668 8668 8669 866.8 1733.6000000000001 8668 1993-09-25 2024-10-11 02:24:28.000 1993-09-25 2024-10-11 02:24:28 +8669 8669 8670 866.9 1733.8000000000002 8669 1993-09-26 2024-10-11 02:24:29.000 1993-09-26 2024-10-11 02:24:29 +8671 8671 8672 867.1 1734.2 8671 1993-09-28 2024-10-11 02:24:31.000 1993-09-28 2024-10-11 02:24:31 +8672 8672 8673 867.2 1734.4 8672 1993-09-29 2024-10-11 02:24:32.000 1993-09-29 2024-10-11 02:24:32 +8673 8673 8674 867.3 1734.6000000000001 8673 1993-09-30 2024-10-11 02:24:33.000 1993-09-30 2024-10-11 02:24:33 +8674 8674 8675 867.4 1734.8000000000002 8674 1993-10-01 2024-10-11 02:24:34.000 1993-10-01 2024-10-11 02:24:34 +8676 8676 8677 867.6 1735.2 8676 1993-10-03 2024-10-11 02:24:36.000 1993-10-03 2024-10-11 02:24:36 +8677 8677 8678 867.7 1735.4 8677 1993-10-04 2024-10-11 02:24:37.000 1993-10-04 2024-10-11 02:24:37 +8678 8678 8679 867.8 1735.6000000000001 8678 1993-10-05 2024-10-11 02:24:38.000 1993-10-05 2024-10-11 02:24:38 +8679 8679 8680 867.9 1735.8000000000002 8679 1993-10-06 2024-10-11 02:24:39.000 1993-10-06 2024-10-11 02:24:39 +8681 8681 8682 868.1 1736.2 8681 1993-10-08 2024-10-11 02:24:41.000 1993-10-08 2024-10-11 02:24:41 +8682 8682 8683 868.2 1736.4 8682 1993-10-09 2024-10-11 02:24:42.000 1993-10-09 2024-10-11 02:24:42 +8683 8683 8684 868.3 1736.6000000000001 8683 1993-10-10 2024-10-11 02:24:43.000 1993-10-10 2024-10-11 02:24:43 +8684 8684 8685 868.4 1736.8000000000002 8684 1993-10-11 2024-10-11 02:24:44.000 1993-10-11 2024-10-11 02:24:44 +8686 8686 8687 868.6 1737.2 8686 1993-10-13 2024-10-11 02:24:46.000 1993-10-13 2024-10-11 02:24:46 +8687 8687 8688 868.7 1737.4 8687 1993-10-14 2024-10-11 02:24:47.000 1993-10-14 2024-10-11 02:24:47 +8688 8688 8689 868.8 1737.6000000000001 8688 1993-10-15 2024-10-11 02:24:48.000 1993-10-15 2024-10-11 02:24:48 +8689 8689 8690 868.9 1737.8000000000002 8689 1993-10-16 2024-10-11 02:24:49.000 1993-10-16 2024-10-11 02:24:49 +8691 8691 8692 869.1 1738.2 8691 1993-10-18 2024-10-11 02:24:51.000 1993-10-18 2024-10-11 02:24:51 +8692 8692 8693 869.2 1738.4 8692 1993-10-19 2024-10-11 02:24:52.000 1993-10-19 2024-10-11 02:24:52 +8693 8693 8694 869.3 1738.6000000000001 8693 1993-10-20 2024-10-11 02:24:53.000 1993-10-20 2024-10-11 02:24:53 +8694 8694 8695 869.4 1738.8000000000002 8694 1993-10-21 2024-10-11 02:24:54.000 1993-10-21 2024-10-11 02:24:54 +8696 8696 8697 869.6 1739.2 8696 1993-10-23 2024-10-11 02:24:56.000 1993-10-23 2024-10-11 02:24:56 +8697 8697 8698 869.7 1739.4 8697 1993-10-24 2024-10-11 02:24:57.000 1993-10-24 2024-10-11 02:24:57 +8698 8698 8699 869.8 1739.6000000000001 8698 1993-10-25 2024-10-11 02:24:58.000 1993-10-25 2024-10-11 02:24:58 +8699 8699 8700 869.9 1739.8000000000002 8699 1993-10-26 2024-10-11 02:24:59.000 1993-10-26 2024-10-11 02:24:59 +8701 8701 8702 870.1 1740.2 8701 1993-10-28 2024-10-11 02:25:01.000 1993-10-28 2024-10-11 02:25:01 +8702 8702 8703 870.2 1740.4 8702 1993-10-29 2024-10-11 02:25:02.000 1993-10-29 2024-10-11 02:25:02 +8703 8703 8704 870.3 1740.6000000000001 8703 1993-10-30 2024-10-11 02:25:03.000 1993-10-30 2024-10-11 02:25:03 +8704 8704 8705 870.4 1740.8000000000002 8704 1993-10-31 2024-10-11 02:25:04.000 1993-10-31 2024-10-11 02:25:04 +8706 8706 8707 870.6 1741.2 8706 1993-11-02 2024-10-11 02:25:06.000 1993-11-02 2024-10-11 02:25:06 +8707 8707 8708 870.7 1741.4 8707 1993-11-03 2024-10-11 02:25:07.000 1993-11-03 2024-10-11 02:25:07 +8708 8708 8709 870.8 1741.6000000000001 8708 1993-11-04 2024-10-11 02:25:08.000 1993-11-04 2024-10-11 02:25:08 +8709 8709 8710 870.9 1741.8000000000002 8709 1993-11-05 2024-10-11 02:25:09.000 1993-11-05 2024-10-11 02:25:09 +8711 8711 8712 871.1 1742.2 8711 1993-11-07 2024-10-11 02:25:11.000 1993-11-07 2024-10-11 02:25:11 +8712 8712 8713 871.2 1742.4 8712 1993-11-08 2024-10-11 02:25:12.000 1993-11-08 2024-10-11 02:25:12 +8713 8713 8714 871.3 1742.6000000000001 8713 1993-11-09 2024-10-11 02:25:13.000 1993-11-09 2024-10-11 02:25:13 +8714 8714 8715 871.4 1742.8000000000002 8714 1993-11-10 2024-10-11 02:25:14.000 1993-11-10 2024-10-11 02:25:14 +8716 8716 8717 871.6 1743.2 8716 1993-11-12 2024-10-11 02:25:16.000 1993-11-12 2024-10-11 02:25:16 +8717 8717 8718 871.7 1743.4 8717 1993-11-13 2024-10-11 02:25:17.000 1993-11-13 2024-10-11 02:25:17 +8718 8718 8719 871.8 1743.6000000000001 8718 1993-11-14 2024-10-11 02:25:18.000 1993-11-14 2024-10-11 02:25:18 +8719 8719 8720 871.9 1743.8000000000002 8719 1993-11-15 2024-10-11 02:25:19.000 1993-11-15 2024-10-11 02:25:19 +8721 8721 8722 872.1 1744.2 8721 1993-11-17 2024-10-11 02:25:21.000 1993-11-17 2024-10-11 02:25:21 +8722 8722 8723 872.2 1744.4 8722 1993-11-18 2024-10-11 02:25:22.000 1993-11-18 2024-10-11 02:25:22 +8723 8723 8724 872.3 1744.6000000000001 8723 1993-11-19 2024-10-11 02:25:23.000 1993-11-19 2024-10-11 02:25:23 +8724 8724 8725 872.4 1744.8000000000002 8724 1993-11-20 2024-10-11 02:25:24.000 1993-11-20 2024-10-11 02:25:24 +8726 8726 8727 872.6 1745.2 8726 1993-11-22 2024-10-11 02:25:26.000 1993-11-22 2024-10-11 02:25:26 +8727 8727 8728 872.7 1745.4 8727 1993-11-23 2024-10-11 02:25:27.000 1993-11-23 2024-10-11 02:25:27 +8728 8728 8729 872.8 1745.6000000000001 8728 1993-11-24 2024-10-11 02:25:28.000 1993-11-24 2024-10-11 02:25:28 +8729 8729 8730 872.9 1745.8000000000002 8729 1993-11-25 2024-10-11 02:25:29.000 1993-11-25 2024-10-11 02:25:29 +8731 8731 8732 873.1 1746.2 8731 1993-11-27 2024-10-11 02:25:31.000 1993-11-27 2024-10-11 02:25:31 +8732 8732 8733 873.2 1746.4 8732 1993-11-28 2024-10-11 02:25:32.000 1993-11-28 2024-10-11 02:25:32 +8733 8733 8734 873.3 1746.6000000000001 8733 1993-11-29 2024-10-11 02:25:33.000 1993-11-29 2024-10-11 02:25:33 +8734 8734 8735 873.4 1746.8000000000002 8734 1993-11-30 2024-10-11 02:25:34.000 1993-11-30 2024-10-11 02:25:34 +8736 8736 8737 873.6 1747.2 8736 1993-12-02 2024-10-11 02:25:36.000 1993-12-02 2024-10-11 02:25:36 +8737 8737 8738 873.7 1747.4 8737 1993-12-03 2024-10-11 02:25:37.000 1993-12-03 2024-10-11 02:25:37 +8738 8738 8739 873.8 1747.6000000000001 8738 1993-12-04 2024-10-11 02:25:38.000 1993-12-04 2024-10-11 02:25:38 +8739 8739 8740 873.9 1747.8000000000002 8739 1993-12-05 2024-10-11 02:25:39.000 1993-12-05 2024-10-11 02:25:39 +8741 8741 8742 874.1 1748.2 8741 1993-12-07 2024-10-11 02:25:41.000 1993-12-07 2024-10-11 02:25:41 +8742 8742 8743 874.2 1748.4 8742 1993-12-08 2024-10-11 02:25:42.000 1993-12-08 2024-10-11 02:25:42 +8743 8743 8744 874.3 1748.6000000000001 8743 1993-12-09 2024-10-11 02:25:43.000 1993-12-09 2024-10-11 02:25:43 +8744 8744 8745 874.4 1748.8000000000002 8744 1993-12-10 2024-10-11 02:25:44.000 1993-12-10 2024-10-11 02:25:44 +8746 8746 8747 874.6 1749.2 8746 1993-12-12 2024-10-11 02:25:46.000 1993-12-12 2024-10-11 02:25:46 +8747 8747 8748 874.7 1749.4 8747 1993-12-13 2024-10-11 02:25:47.000 1993-12-13 2024-10-11 02:25:47 +8748 8748 8749 874.8 1749.6000000000001 8748 1993-12-14 2024-10-11 02:25:48.000 1993-12-14 2024-10-11 02:25:48 +8749 8749 8750 874.9 1749.8000000000002 8749 1993-12-15 2024-10-11 02:25:49.000 1993-12-15 2024-10-11 02:25:49 +8751 8751 8752 875.1 1750.2 8751 1993-12-17 2024-10-11 02:25:51.000 1993-12-17 2024-10-11 02:25:51 +8752 8752 8753 875.2 1750.4 8752 1993-12-18 2024-10-11 02:25:52.000 1993-12-18 2024-10-11 02:25:52 +8753 8753 8754 875.3 1750.6000000000001 8753 1993-12-19 2024-10-11 02:25:53.000 1993-12-19 2024-10-11 02:25:53 +8754 8754 8755 875.4 1750.8000000000002 8754 1993-12-20 2024-10-11 02:25:54.000 1993-12-20 2024-10-11 02:25:54 +8756 8756 8757 875.6 1751.2 8756 1993-12-22 2024-10-11 02:25:56.000 1993-12-22 2024-10-11 02:25:56 +8757 8757 8758 875.7 1751.4 8757 1993-12-23 2024-10-11 02:25:57.000 1993-12-23 2024-10-11 02:25:57 +8758 8758 8759 875.8 1751.6000000000001 8758 1993-12-24 2024-10-11 02:25:58.000 1993-12-24 2024-10-11 02:25:58 +8759 8759 8760 875.9 1751.8000000000002 8759 1993-12-25 2024-10-11 02:25:59.000 1993-12-25 2024-10-11 02:25:59 +8761 8761 8762 876.1 1752.2 8761 1993-12-27 2024-10-11 02:26:01.000 1993-12-27 2024-10-11 02:26:01 +8762 8762 8763 876.2 1752.4 8762 1993-12-28 2024-10-11 02:26:02.000 1993-12-28 2024-10-11 02:26:02 +8763 8763 8764 876.3 1752.6000000000001 8763 1993-12-29 2024-10-11 02:26:03.000 1993-12-29 2024-10-11 02:26:03 +8764 8764 8765 876.4 1752.8000000000002 8764 1993-12-30 2024-10-11 02:26:04.000 1993-12-30 2024-10-11 02:26:04 +8766 8766 8767 876.6 1753.2 8766 1994-01-01 2024-10-11 02:26:06.000 1994-01-01 2024-10-11 02:26:06 +8767 8767 8768 876.7 1753.4 8767 1994-01-02 2024-10-11 02:26:07.000 1994-01-02 2024-10-11 02:26:07 +8768 8768 8769 876.8 1753.6000000000001 8768 1994-01-03 2024-10-11 02:26:08.000 1994-01-03 2024-10-11 02:26:08 +8769 8769 8770 876.9 1753.8000000000002 8769 1994-01-04 2024-10-11 02:26:09.000 1994-01-04 2024-10-11 02:26:09 +8771 8771 8772 877.1 1754.2 8771 1994-01-06 2024-10-11 02:26:11.000 1994-01-06 2024-10-11 02:26:11 +8772 8772 8773 877.2 1754.4 8772 1994-01-07 2024-10-11 02:26:12.000 1994-01-07 2024-10-11 02:26:12 +8773 8773 8774 877.3 1754.6000000000001 8773 1994-01-08 2024-10-11 02:26:13.000 1994-01-08 2024-10-11 02:26:13 +8774 8774 8775 877.4 1754.8000000000002 8774 1994-01-09 2024-10-11 02:26:14.000 1994-01-09 2024-10-11 02:26:14 +8776 8776 8777 877.6 1755.2 8776 1994-01-11 2024-10-11 02:26:16.000 1994-01-11 2024-10-11 02:26:16 +8777 8777 8778 877.7 1755.4 8777 1994-01-12 2024-10-11 02:26:17.000 1994-01-12 2024-10-11 02:26:17 +8778 8778 8779 877.8 1755.6000000000001 8778 1994-01-13 2024-10-11 02:26:18.000 1994-01-13 2024-10-11 02:26:18 +8779 8779 8780 877.9 1755.8000000000002 8779 1994-01-14 2024-10-11 02:26:19.000 1994-01-14 2024-10-11 02:26:19 +8781 8781 8782 878.1 1756.2 8781 1994-01-16 2024-10-11 02:26:21.000 1994-01-16 2024-10-11 02:26:21 +8782 8782 8783 878.2 1756.4 8782 1994-01-17 2024-10-11 02:26:22.000 1994-01-17 2024-10-11 02:26:22 +8783 8783 8784 878.3 1756.6000000000001 8783 1994-01-18 2024-10-11 02:26:23.000 1994-01-18 2024-10-11 02:26:23 +8784 8784 8785 878.4 1756.8000000000002 8784 1994-01-19 2024-10-11 02:26:24.000 1994-01-19 2024-10-11 02:26:24 +8786 8786 8787 878.6 1757.2 8786 1994-01-21 2024-10-11 02:26:26.000 1994-01-21 2024-10-11 02:26:26 +8787 8787 8788 878.7 1757.4 8787 1994-01-22 2024-10-11 02:26:27.000 1994-01-22 2024-10-11 02:26:27 +8788 8788 8789 878.8 1757.6000000000001 8788 1994-01-23 2024-10-11 02:26:28.000 1994-01-23 2024-10-11 02:26:28 +8789 8789 8790 878.9 1757.8000000000002 8789 1994-01-24 2024-10-11 02:26:29.000 1994-01-24 2024-10-11 02:26:29 +8791 8791 8792 879.1 1758.2 8791 1994-01-26 2024-10-11 02:26:31.000 1994-01-26 2024-10-11 02:26:31 +8792 8792 8793 879.2 1758.4 8792 1994-01-27 2024-10-11 02:26:32.000 1994-01-27 2024-10-11 02:26:32 +8793 8793 8794 879.3 1758.6000000000001 8793 1994-01-28 2024-10-11 02:26:33.000 1994-01-28 2024-10-11 02:26:33 +8794 8794 8795 879.4 1758.8000000000002 8794 1994-01-29 2024-10-11 02:26:34.000 1994-01-29 2024-10-11 02:26:34 +8796 8796 8797 879.6 1759.2 8796 1994-01-31 2024-10-11 02:26:36.000 1994-01-31 2024-10-11 02:26:36 +8797 8797 8798 879.7 1759.4 8797 1994-02-01 2024-10-11 02:26:37.000 1994-02-01 2024-10-11 02:26:37 +8798 8798 8799 879.8 1759.6000000000001 8798 1994-02-02 2024-10-11 02:26:38.000 1994-02-02 2024-10-11 02:26:38 +8799 8799 8800 879.9 1759.8000000000002 8799 1994-02-03 2024-10-11 02:26:39.000 1994-02-03 2024-10-11 02:26:39 +8801 8801 8802 880.1 1760.2 8801 1994-02-05 2024-10-11 02:26:41.000 1994-02-05 2024-10-11 02:26:41 +8802 8802 8803 880.2 1760.4 8802 1994-02-06 2024-10-11 02:26:42.000 1994-02-06 2024-10-11 02:26:42 +8803 8803 8804 880.3 1760.6000000000001 8803 1994-02-07 2024-10-11 02:26:43.000 1994-02-07 2024-10-11 02:26:43 +8804 8804 8805 880.4 1760.8000000000002 8804 1994-02-08 2024-10-11 02:26:44.000 1994-02-08 2024-10-11 02:26:44 +8806 8806 8807 880.6 1761.2 8806 1994-02-10 2024-10-11 02:26:46.000 1994-02-10 2024-10-11 02:26:46 +8807 8807 8808 880.7 1761.4 8807 1994-02-11 2024-10-11 02:26:47.000 1994-02-11 2024-10-11 02:26:47 +8808 8808 8809 880.8 1761.6000000000001 8808 1994-02-12 2024-10-11 02:26:48.000 1994-02-12 2024-10-11 02:26:48 +8809 8809 8810 880.9 1761.8000000000002 8809 1994-02-13 2024-10-11 02:26:49.000 1994-02-13 2024-10-11 02:26:49 +8811 8811 8812 881.1 1762.2 8811 1994-02-15 2024-10-11 02:26:51.000 1994-02-15 2024-10-11 02:26:51 +8812 8812 8813 881.2 1762.4 8812 1994-02-16 2024-10-11 02:26:52.000 1994-02-16 2024-10-11 02:26:52 +8813 8813 8814 881.3 1762.6000000000001 8813 1994-02-17 2024-10-11 02:26:53.000 1994-02-17 2024-10-11 02:26:53 +8814 8814 8815 881.4 1762.8000000000002 8814 1994-02-18 2024-10-11 02:26:54.000 1994-02-18 2024-10-11 02:26:54 +8816 8816 8817 881.6 1763.2 8816 1994-02-20 2024-10-11 02:26:56.000 1994-02-20 2024-10-11 02:26:56 +8817 8817 8818 881.7 1763.4 8817 1994-02-21 2024-10-11 02:26:57.000 1994-02-21 2024-10-11 02:26:57 +8818 8818 8819 881.8 1763.6000000000001 8818 1994-02-22 2024-10-11 02:26:58.000 1994-02-22 2024-10-11 02:26:58 +8819 8819 8820 881.9 1763.8000000000002 8819 1994-02-23 2024-10-11 02:26:59.000 1994-02-23 2024-10-11 02:26:59 +8821 8821 8822 882.1 1764.2 8821 1994-02-25 2024-10-11 02:27:01.000 1994-02-25 2024-10-11 02:27:01 +8822 8822 8823 882.2 1764.4 8822 1994-02-26 2024-10-11 02:27:02.000 1994-02-26 2024-10-11 02:27:02 +8823 8823 8824 882.3 1764.6000000000001 8823 1994-02-27 2024-10-11 02:27:03.000 1994-02-27 2024-10-11 02:27:03 +8824 8824 8825 882.4 1764.8000000000002 8824 1994-02-28 2024-10-11 02:27:04.000 1994-02-28 2024-10-11 02:27:04 +8826 8826 8827 882.6 1765.2 8826 1994-03-02 2024-10-11 02:27:06.000 1994-03-02 2024-10-11 02:27:06 +8827 8827 8828 882.7 1765.4 8827 1994-03-03 2024-10-11 02:27:07.000 1994-03-03 2024-10-11 02:27:07 +8828 8828 8829 882.8 1765.6000000000001 8828 1994-03-04 2024-10-11 02:27:08.000 1994-03-04 2024-10-11 02:27:08 +8829 8829 8830 882.9 1765.8000000000002 8829 1994-03-05 2024-10-11 02:27:09.000 1994-03-05 2024-10-11 02:27:09 +8831 8831 8832 883.1 1766.2 8831 1994-03-07 2024-10-11 02:27:11.000 1994-03-07 2024-10-11 02:27:11 +8832 8832 8833 883.2 1766.4 8832 1994-03-08 2024-10-11 02:27:12.000 1994-03-08 2024-10-11 02:27:12 +8833 8833 8834 883.3 1766.6000000000001 8833 1994-03-09 2024-10-11 02:27:13.000 1994-03-09 2024-10-11 02:27:13 +8834 8834 8835 883.4 1766.8000000000002 8834 1994-03-10 2024-10-11 02:27:14.000 1994-03-10 2024-10-11 02:27:14 +8836 8836 8837 883.6 1767.2 8836 1994-03-12 2024-10-11 02:27:16.000 1994-03-12 2024-10-11 02:27:16 +8837 8837 8838 883.7 1767.4 8837 1994-03-13 2024-10-11 02:27:17.000 1994-03-13 2024-10-11 02:27:17 +8838 8838 8839 883.8 1767.6000000000001 8838 1994-03-14 2024-10-11 02:27:18.000 1994-03-14 2024-10-11 02:27:18 +8839 8839 8840 883.9 1767.8000000000002 8839 1994-03-15 2024-10-11 02:27:19.000 1994-03-15 2024-10-11 02:27:19 +8841 8841 8842 884.1 1768.2 8841 1994-03-17 2024-10-11 02:27:21.000 1994-03-17 2024-10-11 02:27:21 +8842 8842 8843 884.2 1768.4 8842 1994-03-18 2024-10-11 02:27:22.000 1994-03-18 2024-10-11 02:27:22 +8843 8843 8844 884.3 1768.6000000000001 8843 1994-03-19 2024-10-11 02:27:23.000 1994-03-19 2024-10-11 02:27:23 +8844 8844 8845 884.4 1768.8000000000002 8844 1994-03-20 2024-10-11 02:27:24.000 1994-03-20 2024-10-11 02:27:24 +8846 8846 8847 884.6 1769.2 8846 1994-03-22 2024-10-11 02:27:26.000 1994-03-22 2024-10-11 02:27:26 +8847 8847 8848 884.7 1769.4 8847 1994-03-23 2024-10-11 02:27:27.000 1994-03-23 2024-10-11 02:27:27 +8848 8848 8849 884.8 1769.6000000000001 8848 1994-03-24 2024-10-11 02:27:28.000 1994-03-24 2024-10-11 02:27:28 +8849 8849 8850 884.9 1769.8000000000002 8849 1994-03-25 2024-10-11 02:27:29.000 1994-03-25 2024-10-11 02:27:29 +8851 8851 8852 885.1 1770.2 8851 1994-03-27 2024-10-11 02:27:31.000 1994-03-27 2024-10-11 02:27:31 +8852 8852 8853 885.2 1770.4 8852 1994-03-28 2024-10-11 02:27:32.000 1994-03-28 2024-10-11 02:27:32 +8853 8853 8854 885.3 1770.6000000000001 8853 1994-03-29 2024-10-11 02:27:33.000 1994-03-29 2024-10-11 02:27:33 +8854 8854 8855 885.4 1770.8000000000002 8854 1994-03-30 2024-10-11 02:27:34.000 1994-03-30 2024-10-11 02:27:34 +8856 8856 8857 885.6 1771.2 8856 1994-04-01 2024-10-11 02:27:36.000 1994-04-01 2024-10-11 02:27:36 +8857 8857 8858 885.7 1771.4 8857 1994-04-02 2024-10-11 02:27:37.000 1994-04-02 2024-10-11 02:27:37 +8858 8858 8859 885.8 1771.6000000000001 8858 1994-04-03 2024-10-11 02:27:38.000 1994-04-03 2024-10-11 02:27:38 +8859 8859 8860 885.9 1771.8000000000002 8859 1994-04-04 2024-10-11 02:27:39.000 1994-04-04 2024-10-11 02:27:39 +8861 8861 8862 886.1 1772.2 8861 1994-04-06 2024-10-11 02:27:41.000 1994-04-06 2024-10-11 02:27:41 +8862 8862 8863 886.2 1772.4 8862 1994-04-07 2024-10-11 02:27:42.000 1994-04-07 2024-10-11 02:27:42 +8863 8863 8864 886.3 1772.6000000000001 8863 1994-04-08 2024-10-11 02:27:43.000 1994-04-08 2024-10-11 02:27:43 +8864 8864 8865 886.4 1772.8000000000002 8864 1994-04-09 2024-10-11 02:27:44.000 1994-04-09 2024-10-11 02:27:44 +8866 8866 8867 886.6 1773.2 8866 1994-04-11 2024-10-11 02:27:46.000 1994-04-11 2024-10-11 02:27:46 +8867 8867 8868 886.7 1773.4 8867 1994-04-12 2024-10-11 02:27:47.000 1994-04-12 2024-10-11 02:27:47 +8868 8868 8869 886.8 1773.6000000000001 8868 1994-04-13 2024-10-11 02:27:48.000 1994-04-13 2024-10-11 02:27:48 +8869 8869 8870 886.9 1773.8000000000002 8869 1994-04-14 2024-10-11 02:27:49.000 1994-04-14 2024-10-11 02:27:49 +8871 8871 8872 887.1 1774.2 8871 1994-04-16 2024-10-11 02:27:51.000 1994-04-16 2024-10-11 02:27:51 +8872 8872 8873 887.2 1774.4 8872 1994-04-17 2024-10-11 02:27:52.000 1994-04-17 2024-10-11 02:27:52 +8873 8873 8874 887.3 1774.6000000000001 8873 1994-04-18 2024-10-11 02:27:53.000 1994-04-18 2024-10-11 02:27:53 +8874 8874 8875 887.4 1774.8000000000002 8874 1994-04-19 2024-10-11 02:27:54.000 1994-04-19 2024-10-11 02:27:54 +8876 8876 8877 887.6 1775.2 8876 1994-04-21 2024-10-11 02:27:56.000 1994-04-21 2024-10-11 02:27:56 +8877 8877 8878 887.7 1775.4 8877 1994-04-22 2024-10-11 02:27:57.000 1994-04-22 2024-10-11 02:27:57 +8878 8878 8879 887.8 1775.6000000000001 8878 1994-04-23 2024-10-11 02:27:58.000 1994-04-23 2024-10-11 02:27:58 +8879 8879 8880 887.9 1775.8000000000002 8879 1994-04-24 2024-10-11 02:27:59.000 1994-04-24 2024-10-11 02:27:59 +8881 8881 8882 888.1 1776.2 8881 1994-04-26 2024-10-11 02:28:01.000 1994-04-26 2024-10-11 02:28:01 +8882 8882 8883 888.2 1776.4 8882 1994-04-27 2024-10-11 02:28:02.000 1994-04-27 2024-10-11 02:28:02 +8883 8883 8884 888.3 1776.6000000000001 8883 1994-04-28 2024-10-11 02:28:03.000 1994-04-28 2024-10-11 02:28:03 +8884 8884 8885 888.4 1776.8000000000002 8884 1994-04-29 2024-10-11 02:28:04.000 1994-04-29 2024-10-11 02:28:04 +8886 8886 8887 888.6 1777.2 8886 1994-05-01 2024-10-11 02:28:06.000 1994-05-01 2024-10-11 02:28:06 +8887 8887 8888 888.7 1777.4 8887 1994-05-02 2024-10-11 02:28:07.000 1994-05-02 2024-10-11 02:28:07 +8888 8888 8889 888.8 1777.6000000000001 8888 1994-05-03 2024-10-11 02:28:08.000 1994-05-03 2024-10-11 02:28:08 +8889 8889 8890 888.9 1777.8000000000002 8889 1994-05-04 2024-10-11 02:28:09.000 1994-05-04 2024-10-11 02:28:09 +8891 8891 8892 889.1 1778.2 8891 1994-05-06 2024-10-11 02:28:11.000 1994-05-06 2024-10-11 02:28:11 +8892 8892 8893 889.2 1778.4 8892 1994-05-07 2024-10-11 02:28:12.000 1994-05-07 2024-10-11 02:28:12 +8893 8893 8894 889.3 1778.6000000000001 8893 1994-05-08 2024-10-11 02:28:13.000 1994-05-08 2024-10-11 02:28:13 +8894 8894 8895 889.4 1778.8000000000002 8894 1994-05-09 2024-10-11 02:28:14.000 1994-05-09 2024-10-11 02:28:14 +8896 8896 8897 889.6 1779.2 8896 1994-05-11 2024-10-11 02:28:16.000 1994-05-11 2024-10-11 02:28:16 +8897 8897 8898 889.7 1779.4 8897 1994-05-12 2024-10-11 02:28:17.000 1994-05-12 2024-10-11 02:28:17 +8898 8898 8899 889.8 1779.6000000000001 8898 1994-05-13 2024-10-11 02:28:18.000 1994-05-13 2024-10-11 02:28:18 +8899 8899 8900 889.9 1779.8000000000002 8899 1994-05-14 2024-10-11 02:28:19.000 1994-05-14 2024-10-11 02:28:19 +8901 8901 8902 890.1 1780.2 8901 1994-05-16 2024-10-11 02:28:21.000 1994-05-16 2024-10-11 02:28:21 +8902 8902 8903 890.2 1780.4 8902 1994-05-17 2024-10-11 02:28:22.000 1994-05-17 2024-10-11 02:28:22 +8903 8903 8904 890.3 1780.6000000000001 8903 1994-05-18 2024-10-11 02:28:23.000 1994-05-18 2024-10-11 02:28:23 +8904 8904 8905 890.4 1780.8000000000002 8904 1994-05-19 2024-10-11 02:28:24.000 1994-05-19 2024-10-11 02:28:24 +8906 8906 8907 890.6 1781.2 8906 1994-05-21 2024-10-11 02:28:26.000 1994-05-21 2024-10-11 02:28:26 +8907 8907 8908 890.7 1781.4 8907 1994-05-22 2024-10-11 02:28:27.000 1994-05-22 2024-10-11 02:28:27 +8908 8908 8909 890.8 1781.6000000000001 8908 1994-05-23 2024-10-11 02:28:28.000 1994-05-23 2024-10-11 02:28:28 +8909 8909 8910 890.9 1781.8000000000002 8909 1994-05-24 2024-10-11 02:28:29.000 1994-05-24 2024-10-11 02:28:29 +8911 8911 8912 891.1 1782.2 8911 1994-05-26 2024-10-11 02:28:31.000 1994-05-26 2024-10-11 02:28:31 +8912 8912 8913 891.2 1782.4 8912 1994-05-27 2024-10-11 02:28:32.000 1994-05-27 2024-10-11 02:28:32 +8913 8913 8914 891.3 1782.6000000000001 8913 1994-05-28 2024-10-11 02:28:33.000 1994-05-28 2024-10-11 02:28:33 +8914 8914 8915 891.4 1782.8000000000002 8914 1994-05-29 2024-10-11 02:28:34.000 1994-05-29 2024-10-11 02:28:34 +8916 8916 8917 891.6 1783.2 8916 1994-05-31 2024-10-11 02:28:36.000 1994-05-31 2024-10-11 02:28:36 +8917 8917 8918 891.7 1783.4 8917 1994-06-01 2024-10-11 02:28:37.000 1994-06-01 2024-10-11 02:28:37 +8918 8918 8919 891.8 1783.6000000000001 8918 1994-06-02 2024-10-11 02:28:38.000 1994-06-02 2024-10-11 02:28:38 +8919 8919 8920 891.9 1783.8000000000002 8919 1994-06-03 2024-10-11 02:28:39.000 1994-06-03 2024-10-11 02:28:39 +8921 8921 8922 892.1 1784.2 8921 1994-06-05 2024-10-11 02:28:41.000 1994-06-05 2024-10-11 02:28:41 +8922 8922 8923 892.2 1784.4 8922 1994-06-06 2024-10-11 02:28:42.000 1994-06-06 2024-10-11 02:28:42 +8923 8923 8924 892.3 1784.6000000000001 8923 1994-06-07 2024-10-11 02:28:43.000 1994-06-07 2024-10-11 02:28:43 +8924 8924 8925 892.4 1784.8000000000002 8924 1994-06-08 2024-10-11 02:28:44.000 1994-06-08 2024-10-11 02:28:44 +8926 8926 8927 892.6 1785.2 8926 1994-06-10 2024-10-11 02:28:46.000 1994-06-10 2024-10-11 02:28:46 +8927 8927 8928 892.7 1785.4 8927 1994-06-11 2024-10-11 02:28:47.000 1994-06-11 2024-10-11 02:28:47 +8928 8928 8929 892.8 1785.6000000000001 8928 1994-06-12 2024-10-11 02:28:48.000 1994-06-12 2024-10-11 02:28:48 +8929 8929 8930 892.9 1785.8000000000002 8929 1994-06-13 2024-10-11 02:28:49.000 1994-06-13 2024-10-11 02:28:49 +8931 8931 8932 893.1 1786.2 8931 1994-06-15 2024-10-11 02:28:51.000 1994-06-15 2024-10-11 02:28:51 +8932 8932 8933 893.2 1786.4 8932 1994-06-16 2024-10-11 02:28:52.000 1994-06-16 2024-10-11 02:28:52 +8933 8933 8934 893.3 1786.6000000000001 8933 1994-06-17 2024-10-11 02:28:53.000 1994-06-17 2024-10-11 02:28:53 +8934 8934 8935 893.4 1786.8000000000002 8934 1994-06-18 2024-10-11 02:28:54.000 1994-06-18 2024-10-11 02:28:54 +8936 8936 8937 893.6 1787.2 8936 1994-06-20 2024-10-11 02:28:56.000 1994-06-20 2024-10-11 02:28:56 +8937 8937 8938 893.7 1787.4 8937 1994-06-21 2024-10-11 02:28:57.000 1994-06-21 2024-10-11 02:28:57 +8938 8938 8939 893.8 1787.6000000000001 8938 1994-06-22 2024-10-11 02:28:58.000 1994-06-22 2024-10-11 02:28:58 +8939 8939 8940 893.9 1787.8000000000002 8939 1994-06-23 2024-10-11 02:28:59.000 1994-06-23 2024-10-11 02:28:59 +8941 8941 8942 894.1 1788.2 8941 1994-06-25 2024-10-11 02:29:01.000 1994-06-25 2024-10-11 02:29:01 +8942 8942 8943 894.2 1788.4 8942 1994-06-26 2024-10-11 02:29:02.000 1994-06-26 2024-10-11 02:29:02 +8943 8943 8944 894.3 1788.6000000000001 8943 1994-06-27 2024-10-11 02:29:03.000 1994-06-27 2024-10-11 02:29:03 +8944 8944 8945 894.4 1788.8000000000002 8944 1994-06-28 2024-10-11 02:29:04.000 1994-06-28 2024-10-11 02:29:04 +8946 8946 8947 894.6 1789.2 8946 1994-06-30 2024-10-11 02:29:06.000 1994-06-30 2024-10-11 02:29:06 +8947 8947 8948 894.7 1789.4 8947 1994-07-01 2024-10-11 02:29:07.000 1994-07-01 2024-10-11 02:29:07 +8948 8948 8949 894.8 1789.6000000000001 8948 1994-07-02 2024-10-11 02:29:08.000 1994-07-02 2024-10-11 02:29:08 +8949 8949 8950 894.9 1789.8000000000002 8949 1994-07-03 2024-10-11 02:29:09.000 1994-07-03 2024-10-11 02:29:09 +8951 8951 8952 895.1 1790.2 8951 1994-07-05 2024-10-11 02:29:11.000 1994-07-05 2024-10-11 02:29:11 +8952 8952 8953 895.2 1790.4 8952 1994-07-06 2024-10-11 02:29:12.000 1994-07-06 2024-10-11 02:29:12 +8953 8953 8954 895.3 1790.6000000000001 8953 1994-07-07 2024-10-11 02:29:13.000 1994-07-07 2024-10-11 02:29:13 +8954 8954 8955 895.4 1790.8000000000002 8954 1994-07-08 2024-10-11 02:29:14.000 1994-07-08 2024-10-11 02:29:14 +8956 8956 8957 895.6 1791.2 8956 1994-07-10 2024-10-11 02:29:16.000 1994-07-10 2024-10-11 02:29:16 +8957 8957 8958 895.7 1791.4 8957 1994-07-11 2024-10-11 02:29:17.000 1994-07-11 2024-10-11 02:29:17 +8958 8958 8959 895.8 1791.6000000000001 8958 1994-07-12 2024-10-11 02:29:18.000 1994-07-12 2024-10-11 02:29:18 +8959 8959 8960 895.9 1791.8000000000002 8959 1994-07-13 2024-10-11 02:29:19.000 1994-07-13 2024-10-11 02:29:19 +8961 8961 8962 896.1 1792.2 8961 1994-07-15 2024-10-11 02:29:21.000 1994-07-15 2024-10-11 02:29:21 +8962 8962 8963 896.2 1792.4 8962 1994-07-16 2024-10-11 02:29:22.000 1994-07-16 2024-10-11 02:29:22 +8963 8963 8964 896.3 1792.6000000000001 8963 1994-07-17 2024-10-11 02:29:23.000 1994-07-17 2024-10-11 02:29:23 +8964 8964 8965 896.4 1792.8000000000002 8964 1994-07-18 2024-10-11 02:29:24.000 1994-07-18 2024-10-11 02:29:24 +8966 8966 8967 896.6 1793.2 8966 1994-07-20 2024-10-11 02:29:26.000 1994-07-20 2024-10-11 02:29:26 +8967 8967 8968 896.7 1793.4 8967 1994-07-21 2024-10-11 02:29:27.000 1994-07-21 2024-10-11 02:29:27 +8968 8968 8969 896.8 1793.6000000000001 8968 1994-07-22 2024-10-11 02:29:28.000 1994-07-22 2024-10-11 02:29:28 +8969 8969 8970 896.9 1793.8000000000002 8969 1994-07-23 2024-10-11 02:29:29.000 1994-07-23 2024-10-11 02:29:29 +8971 8971 8972 897.1 1794.2 8971 1994-07-25 2024-10-11 02:29:31.000 1994-07-25 2024-10-11 02:29:31 +8972 8972 8973 897.2 1794.4 8972 1994-07-26 2024-10-11 02:29:32.000 1994-07-26 2024-10-11 02:29:32 +8973 8973 8974 897.3 1794.6000000000001 8973 1994-07-27 2024-10-11 02:29:33.000 1994-07-27 2024-10-11 02:29:33 +8974 8974 8975 897.4 1794.8000000000002 8974 1994-07-28 2024-10-11 02:29:34.000 1994-07-28 2024-10-11 02:29:34 +8976 8976 8977 897.6 1795.2 8976 1994-07-30 2024-10-11 02:29:36.000 1994-07-30 2024-10-11 02:29:36 +8977 8977 8978 897.7 1795.4 8977 1994-07-31 2024-10-11 02:29:37.000 1994-07-31 2024-10-11 02:29:37 +8978 8978 8979 897.8 1795.6000000000001 8978 1994-08-01 2024-10-11 02:29:38.000 1994-08-01 2024-10-11 02:29:38 +8979 8979 8980 897.9 1795.8000000000002 8979 1994-08-02 2024-10-11 02:29:39.000 1994-08-02 2024-10-11 02:29:39 +8981 8981 8982 898.1 1796.2 8981 1994-08-04 2024-10-11 02:29:41.000 1994-08-04 2024-10-11 02:29:41 +8982 8982 8983 898.2 1796.4 8982 1994-08-05 2024-10-11 02:29:42.000 1994-08-05 2024-10-11 02:29:42 +8983 8983 8984 898.3 1796.6000000000001 8983 1994-08-06 2024-10-11 02:29:43.000 1994-08-06 2024-10-11 02:29:43 +8984 8984 8985 898.4 1796.8000000000002 8984 1994-08-07 2024-10-11 02:29:44.000 1994-08-07 2024-10-11 02:29:44 +8986 8986 8987 898.6 1797.2 8986 1994-08-09 2024-10-11 02:29:46.000 1994-08-09 2024-10-11 02:29:46 +8987 8987 8988 898.7 1797.4 8987 1994-08-10 2024-10-11 02:29:47.000 1994-08-10 2024-10-11 02:29:47 +8988 8988 8989 898.8 1797.6000000000001 8988 1994-08-11 2024-10-11 02:29:48.000 1994-08-11 2024-10-11 02:29:48 +8989 8989 8990 898.9 1797.8000000000002 8989 1994-08-12 2024-10-11 02:29:49.000 1994-08-12 2024-10-11 02:29:49 +8991 8991 8992 899.1 1798.2 8991 1994-08-14 2024-10-11 02:29:51.000 1994-08-14 2024-10-11 02:29:51 +8992 8992 8993 899.2 1798.4 8992 1994-08-15 2024-10-11 02:29:52.000 1994-08-15 2024-10-11 02:29:52 +8993 8993 8994 899.3 1798.6000000000001 8993 1994-08-16 2024-10-11 02:29:53.000 1994-08-16 2024-10-11 02:29:53 +8994 8994 8995 899.4 1798.8000000000002 8994 1994-08-17 2024-10-11 02:29:54.000 1994-08-17 2024-10-11 02:29:54 +8996 8996 8997 899.6 1799.2 8996 1994-08-19 2024-10-11 02:29:56.000 1994-08-19 2024-10-11 02:29:56 +8997 8997 8998 899.7 1799.4 8997 1994-08-20 2024-10-11 02:29:57.000 1994-08-20 2024-10-11 02:29:57 +8998 8998 8999 899.8 1799.6000000000001 8998 1994-08-21 2024-10-11 02:29:58.000 1994-08-21 2024-10-11 02:29:58 +8999 8999 9000 899.9 1799.8000000000002 8999 1994-08-22 2024-10-11 02:29:59.000 1994-08-22 2024-10-11 02:29:59 +9001 9001 9002 900.1 1800.2 9001 1994-08-24 2024-10-11 02:30:01.000 1994-08-24 2024-10-11 02:30:01 +9002 9002 9003 900.2 1800.4 9002 1994-08-25 2024-10-11 02:30:02.000 1994-08-25 2024-10-11 02:30:02 +9003 9003 9004 900.3 1800.6000000000001 9003 1994-08-26 2024-10-11 02:30:03.000 1994-08-26 2024-10-11 02:30:03 +9004 9004 9005 900.4 1800.8000000000002 9004 1994-08-27 2024-10-11 02:30:04.000 1994-08-27 2024-10-11 02:30:04 +9006 9006 9007 900.6 1801.2 9006 1994-08-29 2024-10-11 02:30:06.000 1994-08-29 2024-10-11 02:30:06 +9007 9007 9008 900.7 1801.4 9007 1994-08-30 2024-10-11 02:30:07.000 1994-08-30 2024-10-11 02:30:07 +9008 9008 9009 900.8 1801.6000000000001 9008 1994-08-31 2024-10-11 02:30:08.000 1994-08-31 2024-10-11 02:30:08 +9009 9009 9010 900.9 1801.8000000000002 9009 1994-09-01 2024-10-11 02:30:09.000 1994-09-01 2024-10-11 02:30:09 +9011 9011 9012 901.1 1802.2 9011 1994-09-03 2024-10-11 02:30:11.000 1994-09-03 2024-10-11 02:30:11 +9012 9012 9013 901.2 1802.4 9012 1994-09-04 2024-10-11 02:30:12.000 1994-09-04 2024-10-11 02:30:12 +9013 9013 9014 901.3 1802.6000000000001 9013 1994-09-05 2024-10-11 02:30:13.000 1994-09-05 2024-10-11 02:30:13 +9014 9014 9015 901.4 1802.8000000000002 9014 1994-09-06 2024-10-11 02:30:14.000 1994-09-06 2024-10-11 02:30:14 +9016 9016 9017 901.6 1803.2 9016 1994-09-08 2024-10-11 02:30:16.000 1994-09-08 2024-10-11 02:30:16 +9017 9017 9018 901.7 1803.4 9017 1994-09-09 2024-10-11 02:30:17.000 1994-09-09 2024-10-11 02:30:17 +9018 9018 9019 901.8 1803.6000000000001 9018 1994-09-10 2024-10-11 02:30:18.000 1994-09-10 2024-10-11 02:30:18 +9019 9019 9020 901.9 1803.8000000000002 9019 1994-09-11 2024-10-11 02:30:19.000 1994-09-11 2024-10-11 02:30:19 +9021 9021 9022 902.1 1804.2 9021 1994-09-13 2024-10-11 02:30:21.000 1994-09-13 2024-10-11 02:30:21 +9022 9022 9023 902.2 1804.4 9022 1994-09-14 2024-10-11 02:30:22.000 1994-09-14 2024-10-11 02:30:22 +9023 9023 9024 902.3 1804.6000000000001 9023 1994-09-15 2024-10-11 02:30:23.000 1994-09-15 2024-10-11 02:30:23 +9024 9024 9025 902.4 1804.8000000000002 9024 1994-09-16 2024-10-11 02:30:24.000 1994-09-16 2024-10-11 02:30:24 +9026 9026 9027 902.6 1805.2 9026 1994-09-18 2024-10-11 02:30:26.000 1994-09-18 2024-10-11 02:30:26 +9027 9027 9028 902.7 1805.4 9027 1994-09-19 2024-10-11 02:30:27.000 1994-09-19 2024-10-11 02:30:27 +9028 9028 9029 902.8 1805.6000000000001 9028 1994-09-20 2024-10-11 02:30:28.000 1994-09-20 2024-10-11 02:30:28 +9029 9029 9030 902.9 1805.8000000000002 9029 1994-09-21 2024-10-11 02:30:29.000 1994-09-21 2024-10-11 02:30:29 +9031 9031 9032 903.1 1806.2 9031 1994-09-23 2024-10-11 02:30:31.000 1994-09-23 2024-10-11 02:30:31 +9032 9032 9033 903.2 1806.4 9032 1994-09-24 2024-10-11 02:30:32.000 1994-09-24 2024-10-11 02:30:32 +9033 9033 9034 903.3 1806.6000000000001 9033 1994-09-25 2024-10-11 02:30:33.000 1994-09-25 2024-10-11 02:30:33 +9034 9034 9035 903.4 1806.8000000000002 9034 1994-09-26 2024-10-11 02:30:34.000 1994-09-26 2024-10-11 02:30:34 +9036 9036 9037 903.6 1807.2 9036 1994-09-28 2024-10-11 02:30:36.000 1994-09-28 2024-10-11 02:30:36 +9037 9037 9038 903.7 1807.4 9037 1994-09-29 2024-10-11 02:30:37.000 1994-09-29 2024-10-11 02:30:37 +9038 9038 9039 903.8 1807.6000000000001 9038 1994-09-30 2024-10-11 02:30:38.000 1994-09-30 2024-10-11 02:30:38 +9039 9039 9040 903.9 1807.8000000000002 9039 1994-10-01 2024-10-11 02:30:39.000 1994-10-01 2024-10-11 02:30:39 +9041 9041 9042 904.1 1808.2 9041 1994-10-03 2024-10-11 02:30:41.000 1994-10-03 2024-10-11 02:30:41 +9042 9042 9043 904.2 1808.4 9042 1994-10-04 2024-10-11 02:30:42.000 1994-10-04 2024-10-11 02:30:42 +9043 9043 9044 904.3 1808.6000000000001 9043 1994-10-05 2024-10-11 02:30:43.000 1994-10-05 2024-10-11 02:30:43 +9044 9044 9045 904.4 1808.8000000000002 9044 1994-10-06 2024-10-11 02:30:44.000 1994-10-06 2024-10-11 02:30:44 +9046 9046 9047 904.6 1809.2 9046 1994-10-08 2024-10-11 02:30:46.000 1994-10-08 2024-10-11 02:30:46 +9047 9047 9048 904.7 1809.4 9047 1994-10-09 2024-10-11 02:30:47.000 1994-10-09 2024-10-11 02:30:47 +9048 9048 9049 904.8 1809.6000000000001 9048 1994-10-10 2024-10-11 02:30:48.000 1994-10-10 2024-10-11 02:30:48 +9049 9049 9050 904.9 1809.8000000000002 9049 1994-10-11 2024-10-11 02:30:49.000 1994-10-11 2024-10-11 02:30:49 +9051 9051 9052 905.1 1810.2 9051 1994-10-13 2024-10-11 02:30:51.000 1994-10-13 2024-10-11 02:30:51 +9052 9052 9053 905.2 1810.4 9052 1994-10-14 2024-10-11 02:30:52.000 1994-10-14 2024-10-11 02:30:52 +9053 9053 9054 905.3 1810.6000000000001 9053 1994-10-15 2024-10-11 02:30:53.000 1994-10-15 2024-10-11 02:30:53 +9054 9054 9055 905.4 1810.8000000000002 9054 1994-10-16 2024-10-11 02:30:54.000 1994-10-16 2024-10-11 02:30:54 +9056 9056 9057 905.6 1811.2 9056 1994-10-18 2024-10-11 02:30:56.000 1994-10-18 2024-10-11 02:30:56 +9057 9057 9058 905.7 1811.4 9057 1994-10-19 2024-10-11 02:30:57.000 1994-10-19 2024-10-11 02:30:57 +9058 9058 9059 905.8 1811.6000000000001 9058 1994-10-20 2024-10-11 02:30:58.000 1994-10-20 2024-10-11 02:30:58 +9059 9059 9060 905.9 1811.8000000000002 9059 1994-10-21 2024-10-11 02:30:59.000 1994-10-21 2024-10-11 02:30:59 +9061 9061 9062 906.1 1812.2 9061 1994-10-23 2024-10-11 02:31:01.000 1994-10-23 2024-10-11 02:31:01 +9062 9062 9063 906.2 1812.4 9062 1994-10-24 2024-10-11 02:31:02.000 1994-10-24 2024-10-11 02:31:02 +9063 9063 9064 906.3 1812.6000000000001 9063 1994-10-25 2024-10-11 02:31:03.000 1994-10-25 2024-10-11 02:31:03 +9064 9064 9065 906.4 1812.8000000000002 9064 1994-10-26 2024-10-11 02:31:04.000 1994-10-26 2024-10-11 02:31:04 +9066 9066 9067 906.6 1813.2 9066 1994-10-28 2024-10-11 02:31:06.000 1994-10-28 2024-10-11 02:31:06 +9067 9067 9068 906.7 1813.4 9067 1994-10-29 2024-10-11 02:31:07.000 1994-10-29 2024-10-11 02:31:07 +9068 9068 9069 906.8 1813.6000000000001 9068 1994-10-30 2024-10-11 02:31:08.000 1994-10-30 2024-10-11 02:31:08 +9069 9069 9070 906.9 1813.8000000000002 9069 1994-10-31 2024-10-11 02:31:09.000 1994-10-31 2024-10-11 02:31:09 +9071 9071 9072 907.1 1814.2 9071 1994-11-02 2024-10-11 02:31:11.000 1994-11-02 2024-10-11 02:31:11 +9072 9072 9073 907.2 1814.4 9072 1994-11-03 2024-10-11 02:31:12.000 1994-11-03 2024-10-11 02:31:12 +9073 9073 9074 907.3 1814.6000000000001 9073 1994-11-04 2024-10-11 02:31:13.000 1994-11-04 2024-10-11 02:31:13 +9074 9074 9075 907.4 1814.8000000000002 9074 1994-11-05 2024-10-11 02:31:14.000 1994-11-05 2024-10-11 02:31:14 +9076 9076 9077 907.6 1815.2 9076 1994-11-07 2024-10-11 02:31:16.000 1994-11-07 2024-10-11 02:31:16 +9077 9077 9078 907.7 1815.4 9077 1994-11-08 2024-10-11 02:31:17.000 1994-11-08 2024-10-11 02:31:17 +9078 9078 9079 907.8 1815.6000000000001 9078 1994-11-09 2024-10-11 02:31:18.000 1994-11-09 2024-10-11 02:31:18 +9079 9079 9080 907.9 1815.8000000000002 9079 1994-11-10 2024-10-11 02:31:19.000 1994-11-10 2024-10-11 02:31:19 +9081 9081 9082 908.1 1816.2 9081 1994-11-12 2024-10-11 02:31:21.000 1994-11-12 2024-10-11 02:31:21 +9082 9082 9083 908.2 1816.4 9082 1994-11-13 2024-10-11 02:31:22.000 1994-11-13 2024-10-11 02:31:22 +9083 9083 9084 908.3 1816.6000000000001 9083 1994-11-14 2024-10-11 02:31:23.000 1994-11-14 2024-10-11 02:31:23 +9084 9084 9085 908.4 1816.8000000000002 9084 1994-11-15 2024-10-11 02:31:24.000 1994-11-15 2024-10-11 02:31:24 +9086 9086 9087 908.6 1817.2 9086 1994-11-17 2024-10-11 02:31:26.000 1994-11-17 2024-10-11 02:31:26 +9087 9087 9088 908.7 1817.4 9087 1994-11-18 2024-10-11 02:31:27.000 1994-11-18 2024-10-11 02:31:27 +9088 9088 9089 908.8 1817.6000000000001 9088 1994-11-19 2024-10-11 02:31:28.000 1994-11-19 2024-10-11 02:31:28 +9089 9089 9090 908.9 1817.8000000000002 9089 1994-11-20 2024-10-11 02:31:29.000 1994-11-20 2024-10-11 02:31:29 +9091 9091 9092 909.1 1818.2 9091 1994-11-22 2024-10-11 02:31:31.000 1994-11-22 2024-10-11 02:31:31 +9092 9092 9093 909.2 1818.4 9092 1994-11-23 2024-10-11 02:31:32.000 1994-11-23 2024-10-11 02:31:32 +9093 9093 9094 909.3 1818.6000000000001 9093 1994-11-24 2024-10-11 02:31:33.000 1994-11-24 2024-10-11 02:31:33 +9094 9094 9095 909.4 1818.8000000000002 9094 1994-11-25 2024-10-11 02:31:34.000 1994-11-25 2024-10-11 02:31:34 +9096 9096 9097 909.6 1819.2 9096 1994-11-27 2024-10-11 02:31:36.000 1994-11-27 2024-10-11 02:31:36 +9097 9097 9098 909.7 1819.4 9097 1994-11-28 2024-10-11 02:31:37.000 1994-11-28 2024-10-11 02:31:37 +9098 9098 9099 909.8 1819.6000000000001 9098 1994-11-29 2024-10-11 02:31:38.000 1994-11-29 2024-10-11 02:31:38 +9099 9099 9100 909.9 1819.8000000000002 9099 1994-11-30 2024-10-11 02:31:39.000 1994-11-30 2024-10-11 02:31:39 +9101 9101 9102 910.1 1820.2 9101 1994-12-02 2024-10-11 02:31:41.000 1994-12-02 2024-10-11 02:31:41 +9102 9102 9103 910.2 1820.4 9102 1994-12-03 2024-10-11 02:31:42.000 1994-12-03 2024-10-11 02:31:42 +9103 9103 9104 910.3 1820.6000000000001 9103 1994-12-04 2024-10-11 02:31:43.000 1994-12-04 2024-10-11 02:31:43 +9104 9104 9105 910.4 1820.8000000000002 9104 1994-12-05 2024-10-11 02:31:44.000 1994-12-05 2024-10-11 02:31:44 +9106 9106 9107 910.6 1821.2 9106 1994-12-07 2024-10-11 02:31:46.000 1994-12-07 2024-10-11 02:31:46 +9107 9107 9108 910.7 1821.4 9107 1994-12-08 2024-10-11 02:31:47.000 1994-12-08 2024-10-11 02:31:47 +9108 9108 9109 910.8 1821.6000000000001 9108 1994-12-09 2024-10-11 02:31:48.000 1994-12-09 2024-10-11 02:31:48 +9109 9109 9110 910.9 1821.8000000000002 9109 1994-12-10 2024-10-11 02:31:49.000 1994-12-10 2024-10-11 02:31:49 +9111 9111 9112 911.1 1822.2 9111 1994-12-12 2024-10-11 02:31:51.000 1994-12-12 2024-10-11 02:31:51 +9112 9112 9113 911.2 1822.4 9112 1994-12-13 2024-10-11 02:31:52.000 1994-12-13 2024-10-11 02:31:52 +9113 9113 9114 911.3 1822.6000000000001 9113 1994-12-14 2024-10-11 02:31:53.000 1994-12-14 2024-10-11 02:31:53 +9114 9114 9115 911.4 1822.8000000000002 9114 1994-12-15 2024-10-11 02:31:54.000 1994-12-15 2024-10-11 02:31:54 +9116 9116 9117 911.6 1823.2 9116 1994-12-17 2024-10-11 02:31:56.000 1994-12-17 2024-10-11 02:31:56 +9117 9117 9118 911.7 1823.4 9117 1994-12-18 2024-10-11 02:31:57.000 1994-12-18 2024-10-11 02:31:57 +9118 9118 9119 911.8 1823.6000000000001 9118 1994-12-19 2024-10-11 02:31:58.000 1994-12-19 2024-10-11 02:31:58 +9119 9119 9120 911.9 1823.8000000000002 9119 1994-12-20 2024-10-11 02:31:59.000 1994-12-20 2024-10-11 02:31:59 +9121 9121 9122 912.1 1824.2 9121 1994-12-22 2024-10-11 02:32:01.000 1994-12-22 2024-10-11 02:32:01 +9122 9122 9123 912.2 1824.4 9122 1994-12-23 2024-10-11 02:32:02.000 1994-12-23 2024-10-11 02:32:02 +9123 9123 9124 912.3 1824.6000000000001 9123 1994-12-24 2024-10-11 02:32:03.000 1994-12-24 2024-10-11 02:32:03 +9124 9124 9125 912.4 1824.8000000000002 9124 1994-12-25 2024-10-11 02:32:04.000 1994-12-25 2024-10-11 02:32:04 +9126 9126 9127 912.6 1825.2 9126 1994-12-27 2024-10-11 02:32:06.000 1994-12-27 2024-10-11 02:32:06 +9127 9127 9128 912.7 1825.4 9127 1994-12-28 2024-10-11 02:32:07.000 1994-12-28 2024-10-11 02:32:07 +9128 9128 9129 912.8 1825.6000000000001 9128 1994-12-29 2024-10-11 02:32:08.000 1994-12-29 2024-10-11 02:32:08 +9129 9129 9130 912.9 1825.8000000000002 9129 1994-12-30 2024-10-11 02:32:09.000 1994-12-30 2024-10-11 02:32:09 +9131 9131 9132 913.1 1826.2 9131 1995-01-01 2024-10-11 02:32:11.000 1995-01-01 2024-10-11 02:32:11 +9132 9132 9133 913.2 1826.4 9132 1995-01-02 2024-10-11 02:32:12.000 1995-01-02 2024-10-11 02:32:12 +9133 9133 9134 913.3 1826.6000000000001 9133 1995-01-03 2024-10-11 02:32:13.000 1995-01-03 2024-10-11 02:32:13 +9134 9134 9135 913.4 1826.8000000000002 9134 1995-01-04 2024-10-11 02:32:14.000 1995-01-04 2024-10-11 02:32:14 +9136 9136 9137 913.6 1827.2 9136 1995-01-06 2024-10-11 02:32:16.000 1995-01-06 2024-10-11 02:32:16 +9137 9137 9138 913.7 1827.4 9137 1995-01-07 2024-10-11 02:32:17.000 1995-01-07 2024-10-11 02:32:17 +9138 9138 9139 913.8 1827.6000000000001 9138 1995-01-08 2024-10-11 02:32:18.000 1995-01-08 2024-10-11 02:32:18 +9139 9139 9140 913.9 1827.8000000000002 9139 1995-01-09 2024-10-11 02:32:19.000 1995-01-09 2024-10-11 02:32:19 +9141 9141 9142 914.1 1828.2 9141 1995-01-11 2024-10-11 02:32:21.000 1995-01-11 2024-10-11 02:32:21 +9142 9142 9143 914.2 1828.4 9142 1995-01-12 2024-10-11 02:32:22.000 1995-01-12 2024-10-11 02:32:22 +9143 9143 9144 914.3 1828.6000000000001 9143 1995-01-13 2024-10-11 02:32:23.000 1995-01-13 2024-10-11 02:32:23 +9144 9144 9145 914.4 1828.8000000000002 9144 1995-01-14 2024-10-11 02:32:24.000 1995-01-14 2024-10-11 02:32:24 +9146 9146 9147 914.6 1829.2 9146 1995-01-16 2024-10-11 02:32:26.000 1995-01-16 2024-10-11 02:32:26 +9147 9147 9148 914.7 1829.4 9147 1995-01-17 2024-10-11 02:32:27.000 1995-01-17 2024-10-11 02:32:27 +9148 9148 9149 914.8 1829.6000000000001 9148 1995-01-18 2024-10-11 02:32:28.000 1995-01-18 2024-10-11 02:32:28 +9149 9149 9150 914.9 1829.8000000000002 9149 1995-01-19 2024-10-11 02:32:29.000 1995-01-19 2024-10-11 02:32:29 +9151 9151 9152 915.1 1830.2 9151 1995-01-21 2024-10-11 02:32:31.000 1995-01-21 2024-10-11 02:32:31 +9152 9152 9153 915.2 1830.4 9152 1995-01-22 2024-10-11 02:32:32.000 1995-01-22 2024-10-11 02:32:32 +9153 9153 9154 915.3 1830.6000000000001 9153 1995-01-23 2024-10-11 02:32:33.000 1995-01-23 2024-10-11 02:32:33 +9154 9154 9155 915.4 1830.8000000000002 9154 1995-01-24 2024-10-11 02:32:34.000 1995-01-24 2024-10-11 02:32:34 +9156 9156 9157 915.6 1831.2 9156 1995-01-26 2024-10-11 02:32:36.000 1995-01-26 2024-10-11 02:32:36 +9157 9157 9158 915.7 1831.4 9157 1995-01-27 2024-10-11 02:32:37.000 1995-01-27 2024-10-11 02:32:37 +9158 9158 9159 915.8 1831.6000000000001 9158 1995-01-28 2024-10-11 02:32:38.000 1995-01-28 2024-10-11 02:32:38 +9159 9159 9160 915.9 1831.8000000000002 9159 1995-01-29 2024-10-11 02:32:39.000 1995-01-29 2024-10-11 02:32:39 +9161 9161 9162 916.1 1832.2 9161 1995-01-31 2024-10-11 02:32:41.000 1995-01-31 2024-10-11 02:32:41 +9162 9162 9163 916.2 1832.4 9162 1995-02-01 2024-10-11 02:32:42.000 1995-02-01 2024-10-11 02:32:42 +9163 9163 9164 916.3 1832.6000000000001 9163 1995-02-02 2024-10-11 02:32:43.000 1995-02-02 2024-10-11 02:32:43 +9164 9164 9165 916.4 1832.8000000000002 9164 1995-02-03 2024-10-11 02:32:44.000 1995-02-03 2024-10-11 02:32:44 +9166 9166 9167 916.6 1833.2 9166 1995-02-05 2024-10-11 02:32:46.000 1995-02-05 2024-10-11 02:32:46 +9167 9167 9168 916.7 1833.4 9167 1995-02-06 2024-10-11 02:32:47.000 1995-02-06 2024-10-11 02:32:47 +9168 9168 9169 916.8 1833.6000000000001 9168 1995-02-07 2024-10-11 02:32:48.000 1995-02-07 2024-10-11 02:32:48 +9169 9169 9170 916.9 1833.8000000000002 9169 1995-02-08 2024-10-11 02:32:49.000 1995-02-08 2024-10-11 02:32:49 +9171 9171 9172 917.1 1834.2 9171 1995-02-10 2024-10-11 02:32:51.000 1995-02-10 2024-10-11 02:32:51 +9172 9172 9173 917.2 1834.4 9172 1995-02-11 2024-10-11 02:32:52.000 1995-02-11 2024-10-11 02:32:52 +9173 9173 9174 917.3 1834.6000000000001 9173 1995-02-12 2024-10-11 02:32:53.000 1995-02-12 2024-10-11 02:32:53 +9174 9174 9175 917.4 1834.8000000000002 9174 1995-02-13 2024-10-11 02:32:54.000 1995-02-13 2024-10-11 02:32:54 +9176 9176 9177 917.6 1835.2 9176 1995-02-15 2024-10-11 02:32:56.000 1995-02-15 2024-10-11 02:32:56 +9177 9177 9178 917.7 1835.4 9177 1995-02-16 2024-10-11 02:32:57.000 1995-02-16 2024-10-11 02:32:57 +9178 9178 9179 917.8 1835.6000000000001 9178 1995-02-17 2024-10-11 02:32:58.000 1995-02-17 2024-10-11 02:32:58 +9179 9179 9180 917.9 1835.8000000000002 9179 1995-02-18 2024-10-11 02:32:59.000 1995-02-18 2024-10-11 02:32:59 +9181 9181 9182 918.1 1836.2 9181 1995-02-20 2024-10-11 02:33:01.000 1995-02-20 2024-10-11 02:33:01 +9182 9182 9183 918.2 1836.4 9182 1995-02-21 2024-10-11 02:33:02.000 1995-02-21 2024-10-11 02:33:02 +9183 9183 9184 918.3 1836.6000000000001 9183 1995-02-22 2024-10-11 02:33:03.000 1995-02-22 2024-10-11 02:33:03 +9184 9184 9185 918.4 1836.8000000000002 9184 1995-02-23 2024-10-11 02:33:04.000 1995-02-23 2024-10-11 02:33:04 +9186 9186 9187 918.6 1837.2 9186 1995-02-25 2024-10-11 02:33:06.000 1995-02-25 2024-10-11 02:33:06 +9187 9187 9188 918.7 1837.4 9187 1995-02-26 2024-10-11 02:33:07.000 1995-02-26 2024-10-11 02:33:07 +9188 9188 9189 918.8 1837.6000000000001 9188 1995-02-27 2024-10-11 02:33:08.000 1995-02-27 2024-10-11 02:33:08 +9189 9189 9190 918.9 1837.8000000000002 9189 1995-02-28 2024-10-11 02:33:09.000 1995-02-28 2024-10-11 02:33:09 +9191 9191 9192 919.1 1838.2 9191 1995-03-02 2024-10-11 02:33:11.000 1995-03-02 2024-10-11 02:33:11 +9192 9192 9193 919.2 1838.4 9192 1995-03-03 2024-10-11 02:33:12.000 1995-03-03 2024-10-11 02:33:12 +9193 9193 9194 919.3 1838.6000000000001 9193 1995-03-04 2024-10-11 02:33:13.000 1995-03-04 2024-10-11 02:33:13 +9194 9194 9195 919.4 1838.8000000000002 9194 1995-03-05 2024-10-11 02:33:14.000 1995-03-05 2024-10-11 02:33:14 +9196 9196 9197 919.6 1839.2 9196 1995-03-07 2024-10-11 02:33:16.000 1995-03-07 2024-10-11 02:33:16 +9197 9197 9198 919.7 1839.4 9197 1995-03-08 2024-10-11 02:33:17.000 1995-03-08 2024-10-11 02:33:17 +9198 9198 9199 919.8 1839.6000000000001 9198 1995-03-09 2024-10-11 02:33:18.000 1995-03-09 2024-10-11 02:33:18 +9199 9199 9200 919.9 1839.8000000000002 9199 1995-03-10 2024-10-11 02:33:19.000 1995-03-10 2024-10-11 02:33:19 +9201 9201 9202 920.1 1840.2 9201 1995-03-12 2024-10-11 02:33:21.000 1995-03-12 2024-10-11 02:33:21 +9202 9202 9203 920.2 1840.4 9202 1995-03-13 2024-10-11 02:33:22.000 1995-03-13 2024-10-11 02:33:22 +9203 9203 9204 920.3 1840.6000000000001 9203 1995-03-14 2024-10-11 02:33:23.000 1995-03-14 2024-10-11 02:33:23 +9204 9204 9205 920.4 1840.8000000000002 9204 1995-03-15 2024-10-11 02:33:24.000 1995-03-15 2024-10-11 02:33:24 +9206 9206 9207 920.6 1841.2 9206 1995-03-17 2024-10-11 02:33:26.000 1995-03-17 2024-10-11 02:33:26 +9207 9207 9208 920.7 1841.4 9207 1995-03-18 2024-10-11 02:33:27.000 1995-03-18 2024-10-11 02:33:27 +9208 9208 9209 920.8 1841.6000000000001 9208 1995-03-19 2024-10-11 02:33:28.000 1995-03-19 2024-10-11 02:33:28 +9209 9209 9210 920.9 1841.8000000000002 9209 1995-03-20 2024-10-11 02:33:29.000 1995-03-20 2024-10-11 02:33:29 +9211 9211 9212 921.1 1842.2 9211 1995-03-22 2024-10-11 02:33:31.000 1995-03-22 2024-10-11 02:33:31 +9212 9212 9213 921.2 1842.4 9212 1995-03-23 2024-10-11 02:33:32.000 1995-03-23 2024-10-11 02:33:32 +9213 9213 9214 921.3 1842.6000000000001 9213 1995-03-24 2024-10-11 02:33:33.000 1995-03-24 2024-10-11 02:33:33 +9214 9214 9215 921.4 1842.8000000000002 9214 1995-03-25 2024-10-11 02:33:34.000 1995-03-25 2024-10-11 02:33:34 +9216 9216 9217 921.6 1843.2 9216 1995-03-27 2024-10-11 02:33:36.000 1995-03-27 2024-10-11 02:33:36 +9217 9217 9218 921.7 1843.4 9217 1995-03-28 2024-10-11 02:33:37.000 1995-03-28 2024-10-11 02:33:37 +9218 9218 9219 921.8 1843.6000000000001 9218 1995-03-29 2024-10-11 02:33:38.000 1995-03-29 2024-10-11 02:33:38 +9219 9219 9220 921.9 1843.8000000000002 9219 1995-03-30 2024-10-11 02:33:39.000 1995-03-30 2024-10-11 02:33:39 +9221 9221 9222 922.1 1844.2 9221 1995-04-01 2024-10-11 02:33:41.000 1995-04-01 2024-10-11 02:33:41 +9222 9222 9223 922.2 1844.4 9222 1995-04-02 2024-10-11 02:33:42.000 1995-04-02 2024-10-11 02:33:42 +9223 9223 9224 922.3 1844.6000000000001 9223 1995-04-03 2024-10-11 02:33:43.000 1995-04-03 2024-10-11 02:33:43 +9224 9224 9225 922.4 1844.8000000000002 9224 1995-04-04 2024-10-11 02:33:44.000 1995-04-04 2024-10-11 02:33:44 +9226 9226 9227 922.6 1845.2 9226 1995-04-06 2024-10-11 02:33:46.000 1995-04-06 2024-10-11 02:33:46 +9227 9227 9228 922.7 1845.4 9227 1995-04-07 2024-10-11 02:33:47.000 1995-04-07 2024-10-11 02:33:47 +9228 9228 9229 922.8 1845.6000000000001 9228 1995-04-08 2024-10-11 02:33:48.000 1995-04-08 2024-10-11 02:33:48 +9229 9229 9230 922.9 1845.8000000000002 9229 1995-04-09 2024-10-11 02:33:49.000 1995-04-09 2024-10-11 02:33:49 +9231 9231 9232 923.1 1846.2 9231 1995-04-11 2024-10-11 02:33:51.000 1995-04-11 2024-10-11 02:33:51 +9232 9232 9233 923.2 1846.4 9232 1995-04-12 2024-10-11 02:33:52.000 1995-04-12 2024-10-11 02:33:52 +9233 9233 9234 923.3 1846.6000000000001 9233 1995-04-13 2024-10-11 02:33:53.000 1995-04-13 2024-10-11 02:33:53 +9234 9234 9235 923.4 1846.8000000000002 9234 1995-04-14 2024-10-11 02:33:54.000 1995-04-14 2024-10-11 02:33:54 +9236 9236 9237 923.6 1847.2 9236 1995-04-16 2024-10-11 02:33:56.000 1995-04-16 2024-10-11 02:33:56 +9237 9237 9238 923.7 1847.4 9237 1995-04-17 2024-10-11 02:33:57.000 1995-04-17 2024-10-11 02:33:57 +9238 9238 9239 923.8 1847.6000000000001 9238 1995-04-18 2024-10-11 02:33:58.000 1995-04-18 2024-10-11 02:33:58 +9239 9239 9240 923.9 1847.8000000000002 9239 1995-04-19 2024-10-11 02:33:59.000 1995-04-19 2024-10-11 02:33:59 +9241 9241 9242 924.1 1848.2 9241 1995-04-21 2024-10-11 02:34:01.000 1995-04-21 2024-10-11 02:34:01 +9242 9242 9243 924.2 1848.4 9242 1995-04-22 2024-10-11 02:34:02.000 1995-04-22 2024-10-11 02:34:02 +9243 9243 9244 924.3 1848.6000000000001 9243 1995-04-23 2024-10-11 02:34:03.000 1995-04-23 2024-10-11 02:34:03 +9244 9244 9245 924.4 1848.8000000000002 9244 1995-04-24 2024-10-11 02:34:04.000 1995-04-24 2024-10-11 02:34:04 +9246 9246 9247 924.6 1849.2 9246 1995-04-26 2024-10-11 02:34:06.000 1995-04-26 2024-10-11 02:34:06 +9247 9247 9248 924.7 1849.4 9247 1995-04-27 2024-10-11 02:34:07.000 1995-04-27 2024-10-11 02:34:07 +9248 9248 9249 924.8 1849.6000000000001 9248 1995-04-28 2024-10-11 02:34:08.000 1995-04-28 2024-10-11 02:34:08 +9249 9249 9250 924.9 1849.8000000000002 9249 1995-04-29 2024-10-11 02:34:09.000 1995-04-29 2024-10-11 02:34:09 +9251 9251 9252 925.1 1850.2 9251 1995-05-01 2024-10-11 02:34:11.000 1995-05-01 2024-10-11 02:34:11 +9252 9252 9253 925.2 1850.4 9252 1995-05-02 2024-10-11 02:34:12.000 1995-05-02 2024-10-11 02:34:12 +9253 9253 9254 925.3 1850.6000000000001 9253 1995-05-03 2024-10-11 02:34:13.000 1995-05-03 2024-10-11 02:34:13 +9254 9254 9255 925.4 1850.8000000000002 9254 1995-05-04 2024-10-11 02:34:14.000 1995-05-04 2024-10-11 02:34:14 +9256 9256 9257 925.6 1851.2 9256 1995-05-06 2024-10-11 02:34:16.000 1995-05-06 2024-10-11 02:34:16 +9257 9257 9258 925.7 1851.4 9257 1995-05-07 2024-10-11 02:34:17.000 1995-05-07 2024-10-11 02:34:17 +9258 9258 9259 925.8 1851.6000000000001 9258 1995-05-08 2024-10-11 02:34:18.000 1995-05-08 2024-10-11 02:34:18 +9259 9259 9260 925.9 1851.8000000000002 9259 1995-05-09 2024-10-11 02:34:19.000 1995-05-09 2024-10-11 02:34:19 +9261 9261 9262 926.1 1852.2 9261 1995-05-11 2024-10-11 02:34:21.000 1995-05-11 2024-10-11 02:34:21 +9262 9262 9263 926.2 1852.4 9262 1995-05-12 2024-10-11 02:34:22.000 1995-05-12 2024-10-11 02:34:22 +9263 9263 9264 926.3 1852.6000000000001 9263 1995-05-13 2024-10-11 02:34:23.000 1995-05-13 2024-10-11 02:34:23 +9264 9264 9265 926.4 1852.8000000000002 9264 1995-05-14 2024-10-11 02:34:24.000 1995-05-14 2024-10-11 02:34:24 +9266 9266 9267 926.6 1853.2 9266 1995-05-16 2024-10-11 02:34:26.000 1995-05-16 2024-10-11 02:34:26 +9267 9267 9268 926.7 1853.4 9267 1995-05-17 2024-10-11 02:34:27.000 1995-05-17 2024-10-11 02:34:27 +9268 9268 9269 926.8 1853.6000000000001 9268 1995-05-18 2024-10-11 02:34:28.000 1995-05-18 2024-10-11 02:34:28 +9269 9269 9270 926.9 1853.8000000000002 9269 1995-05-19 2024-10-11 02:34:29.000 1995-05-19 2024-10-11 02:34:29 +9271 9271 9272 927.1 1854.2 9271 1995-05-21 2024-10-11 02:34:31.000 1995-05-21 2024-10-11 02:34:31 +9272 9272 9273 927.2 1854.4 9272 1995-05-22 2024-10-11 02:34:32.000 1995-05-22 2024-10-11 02:34:32 +9273 9273 9274 927.3 1854.6000000000001 9273 1995-05-23 2024-10-11 02:34:33.000 1995-05-23 2024-10-11 02:34:33 +9274 9274 9275 927.4 1854.8000000000002 9274 1995-05-24 2024-10-11 02:34:34.000 1995-05-24 2024-10-11 02:34:34 +9276 9276 9277 927.6 1855.2 9276 1995-05-26 2024-10-11 02:34:36.000 1995-05-26 2024-10-11 02:34:36 +9277 9277 9278 927.7 1855.4 9277 1995-05-27 2024-10-11 02:34:37.000 1995-05-27 2024-10-11 02:34:37 +9278 9278 9279 927.8 1855.6000000000001 9278 1995-05-28 2024-10-11 02:34:38.000 1995-05-28 2024-10-11 02:34:38 +9279 9279 9280 927.9 1855.8000000000002 9279 1995-05-29 2024-10-11 02:34:39.000 1995-05-29 2024-10-11 02:34:39 +9281 9281 9282 928.1 1856.2 9281 1995-05-31 2024-10-11 02:34:41.000 1995-05-31 2024-10-11 02:34:41 +9282 9282 9283 928.2 1856.4 9282 1995-06-01 2024-10-11 02:34:42.000 1995-06-01 2024-10-11 02:34:42 +9283 9283 9284 928.3 1856.6000000000001 9283 1995-06-02 2024-10-11 02:34:43.000 1995-06-02 2024-10-11 02:34:43 +9284 9284 9285 928.4 1856.8000000000002 9284 1995-06-03 2024-10-11 02:34:44.000 1995-06-03 2024-10-11 02:34:44 +9286 9286 9287 928.6 1857.2 9286 1995-06-05 2024-10-11 02:34:46.000 1995-06-05 2024-10-11 02:34:46 +9287 9287 9288 928.7 1857.4 9287 1995-06-06 2024-10-11 02:34:47.000 1995-06-06 2024-10-11 02:34:47 +9288 9288 9289 928.8 1857.6000000000001 9288 1995-06-07 2024-10-11 02:34:48.000 1995-06-07 2024-10-11 02:34:48 +9289 9289 9290 928.9 1857.8000000000002 9289 1995-06-08 2024-10-11 02:34:49.000 1995-06-08 2024-10-11 02:34:49 +9291 9291 9292 929.1 1858.2 9291 1995-06-10 2024-10-11 02:34:51.000 1995-06-10 2024-10-11 02:34:51 +9292 9292 9293 929.2 1858.4 9292 1995-06-11 2024-10-11 02:34:52.000 1995-06-11 2024-10-11 02:34:52 +9293 9293 9294 929.3 1858.6000000000001 9293 1995-06-12 2024-10-11 02:34:53.000 1995-06-12 2024-10-11 02:34:53 +9294 9294 9295 929.4 1858.8000000000002 9294 1995-06-13 2024-10-11 02:34:54.000 1995-06-13 2024-10-11 02:34:54 +9296 9296 9297 929.6 1859.2 9296 1995-06-15 2024-10-11 02:34:56.000 1995-06-15 2024-10-11 02:34:56 +9297 9297 9298 929.7 1859.4 9297 1995-06-16 2024-10-11 02:34:57.000 1995-06-16 2024-10-11 02:34:57 +9298 9298 9299 929.8 1859.6000000000001 9298 1995-06-17 2024-10-11 02:34:58.000 1995-06-17 2024-10-11 02:34:58 +9299 9299 9300 929.9 1859.8000000000002 9299 1995-06-18 2024-10-11 02:34:59.000 1995-06-18 2024-10-11 02:34:59 +9301 9301 9302 930.1 1860.2 9301 1995-06-20 2024-10-11 02:35:01.000 1995-06-20 2024-10-11 02:35:01 +9302 9302 9303 930.2 1860.4 9302 1995-06-21 2024-10-11 02:35:02.000 1995-06-21 2024-10-11 02:35:02 +9303 9303 9304 930.3 1860.6000000000001 9303 1995-06-22 2024-10-11 02:35:03.000 1995-06-22 2024-10-11 02:35:03 +9304 9304 9305 930.4 1860.8000000000002 9304 1995-06-23 2024-10-11 02:35:04.000 1995-06-23 2024-10-11 02:35:04 +9306 9306 9307 930.6 1861.2 9306 1995-06-25 2024-10-11 02:35:06.000 1995-06-25 2024-10-11 02:35:06 +9307 9307 9308 930.7 1861.4 9307 1995-06-26 2024-10-11 02:35:07.000 1995-06-26 2024-10-11 02:35:07 +9308 9308 9309 930.8 1861.6000000000001 9308 1995-06-27 2024-10-11 02:35:08.000 1995-06-27 2024-10-11 02:35:08 +9309 9309 9310 930.9 1861.8000000000002 9309 1995-06-28 2024-10-11 02:35:09.000 1995-06-28 2024-10-11 02:35:09 +9311 9311 9312 931.1 1862.2 9311 1995-06-30 2024-10-11 02:35:11.000 1995-06-30 2024-10-11 02:35:11 +9312 9312 9313 931.2 1862.4 9312 1995-07-01 2024-10-11 02:35:12.000 1995-07-01 2024-10-11 02:35:12 +9313 9313 9314 931.3 1862.6000000000001 9313 1995-07-02 2024-10-11 02:35:13.000 1995-07-02 2024-10-11 02:35:13 +9314 9314 9315 931.4 1862.8000000000002 9314 1995-07-03 2024-10-11 02:35:14.000 1995-07-03 2024-10-11 02:35:14 +9316 9316 9317 931.6 1863.2 9316 1995-07-05 2024-10-11 02:35:16.000 1995-07-05 2024-10-11 02:35:16 +9317 9317 9318 931.7 1863.4 9317 1995-07-06 2024-10-11 02:35:17.000 1995-07-06 2024-10-11 02:35:17 +9318 9318 9319 931.8 1863.6000000000001 9318 1995-07-07 2024-10-11 02:35:18.000 1995-07-07 2024-10-11 02:35:18 +9319 9319 9320 931.9 1863.8000000000002 9319 1995-07-08 2024-10-11 02:35:19.000 1995-07-08 2024-10-11 02:35:19 +9321 9321 9322 932.1 1864.2 9321 1995-07-10 2024-10-11 02:35:21.000 1995-07-10 2024-10-11 02:35:21 +9322 9322 9323 932.2 1864.4 9322 1995-07-11 2024-10-11 02:35:22.000 1995-07-11 2024-10-11 02:35:22 +9323 9323 9324 932.3 1864.6000000000001 9323 1995-07-12 2024-10-11 02:35:23.000 1995-07-12 2024-10-11 02:35:23 +9324 9324 9325 932.4 1864.8000000000002 9324 1995-07-13 2024-10-11 02:35:24.000 1995-07-13 2024-10-11 02:35:24 +9326 9326 9327 932.6 1865.2 9326 1995-07-15 2024-10-11 02:35:26.000 1995-07-15 2024-10-11 02:35:26 +9327 9327 9328 932.7 1865.4 9327 1995-07-16 2024-10-11 02:35:27.000 1995-07-16 2024-10-11 02:35:27 +9328 9328 9329 932.8 1865.6000000000001 9328 1995-07-17 2024-10-11 02:35:28.000 1995-07-17 2024-10-11 02:35:28 +9329 9329 9330 932.9 1865.8000000000002 9329 1995-07-18 2024-10-11 02:35:29.000 1995-07-18 2024-10-11 02:35:29 +9331 9331 9332 933.1 1866.2 9331 1995-07-20 2024-10-11 02:35:31.000 1995-07-20 2024-10-11 02:35:31 +9332 9332 9333 933.2 1866.4 9332 1995-07-21 2024-10-11 02:35:32.000 1995-07-21 2024-10-11 02:35:32 +9333 9333 9334 933.3 1866.6000000000001 9333 1995-07-22 2024-10-11 02:35:33.000 1995-07-22 2024-10-11 02:35:33 +9334 9334 9335 933.4 1866.8000000000002 9334 1995-07-23 2024-10-11 02:35:34.000 1995-07-23 2024-10-11 02:35:34 +9336 9336 9337 933.6 1867.2 9336 1995-07-25 2024-10-11 02:35:36.000 1995-07-25 2024-10-11 02:35:36 +9337 9337 9338 933.7 1867.4 9337 1995-07-26 2024-10-11 02:35:37.000 1995-07-26 2024-10-11 02:35:37 +9338 9338 9339 933.8 1867.6000000000001 9338 1995-07-27 2024-10-11 02:35:38.000 1995-07-27 2024-10-11 02:35:38 +9339 9339 9340 933.9 1867.8000000000002 9339 1995-07-28 2024-10-11 02:35:39.000 1995-07-28 2024-10-11 02:35:39 +9341 9341 9342 934.1 1868.2 9341 1995-07-30 2024-10-11 02:35:41.000 1995-07-30 2024-10-11 02:35:41 +9342 9342 9343 934.2 1868.4 9342 1995-07-31 2024-10-11 02:35:42.000 1995-07-31 2024-10-11 02:35:42 +9343 9343 9344 934.3 1868.6000000000001 9343 1995-08-01 2024-10-11 02:35:43.000 1995-08-01 2024-10-11 02:35:43 +9344 9344 9345 934.4 1868.8000000000002 9344 1995-08-02 2024-10-11 02:35:44.000 1995-08-02 2024-10-11 02:35:44 +9346 9346 9347 934.6 1869.2 9346 1995-08-04 2024-10-11 02:35:46.000 1995-08-04 2024-10-11 02:35:46 +9347 9347 9348 934.7 1869.4 9347 1995-08-05 2024-10-11 02:35:47.000 1995-08-05 2024-10-11 02:35:47 +9348 9348 9349 934.8 1869.6000000000001 9348 1995-08-06 2024-10-11 02:35:48.000 1995-08-06 2024-10-11 02:35:48 +9349 9349 9350 934.9 1869.8000000000002 9349 1995-08-07 2024-10-11 02:35:49.000 1995-08-07 2024-10-11 02:35:49 +9351 9351 9352 935.1 1870.2 9351 1995-08-09 2024-10-11 02:35:51.000 1995-08-09 2024-10-11 02:35:51 +9352 9352 9353 935.2 1870.4 9352 1995-08-10 2024-10-11 02:35:52.000 1995-08-10 2024-10-11 02:35:52 +9353 9353 9354 935.3 1870.6000000000001 9353 1995-08-11 2024-10-11 02:35:53.000 1995-08-11 2024-10-11 02:35:53 +9354 9354 9355 935.4 1870.8000000000002 9354 1995-08-12 2024-10-11 02:35:54.000 1995-08-12 2024-10-11 02:35:54 +9356 9356 9357 935.6 1871.2 9356 1995-08-14 2024-10-11 02:35:56.000 1995-08-14 2024-10-11 02:35:56 +9357 9357 9358 935.7 1871.4 9357 1995-08-15 2024-10-11 02:35:57.000 1995-08-15 2024-10-11 02:35:57 +9358 9358 9359 935.8 1871.6000000000001 9358 1995-08-16 2024-10-11 02:35:58.000 1995-08-16 2024-10-11 02:35:58 +9359 9359 9360 935.9 1871.8000000000002 9359 1995-08-17 2024-10-11 02:35:59.000 1995-08-17 2024-10-11 02:35:59 +9361 9361 9362 936.1 1872.2 9361 1995-08-19 2024-10-11 02:36:01.000 1995-08-19 2024-10-11 02:36:01 +9362 9362 9363 936.2 1872.4 9362 1995-08-20 2024-10-11 02:36:02.000 1995-08-20 2024-10-11 02:36:02 +9363 9363 9364 936.3 1872.6000000000001 9363 1995-08-21 2024-10-11 02:36:03.000 1995-08-21 2024-10-11 02:36:03 +9364 9364 9365 936.4 1872.8000000000002 9364 1995-08-22 2024-10-11 02:36:04.000 1995-08-22 2024-10-11 02:36:04 +9366 9366 9367 936.6 1873.2 9366 1995-08-24 2024-10-11 02:36:06.000 1995-08-24 2024-10-11 02:36:06 +9367 9367 9368 936.7 1873.4 9367 1995-08-25 2024-10-11 02:36:07.000 1995-08-25 2024-10-11 02:36:07 +9368 9368 9369 936.8 1873.6000000000001 9368 1995-08-26 2024-10-11 02:36:08.000 1995-08-26 2024-10-11 02:36:08 +9369 9369 9370 936.9 1873.8000000000002 9369 1995-08-27 2024-10-11 02:36:09.000 1995-08-27 2024-10-11 02:36:09 +9371 9371 9372 937.1 1874.2 9371 1995-08-29 2024-10-11 02:36:11.000 1995-08-29 2024-10-11 02:36:11 +9372 9372 9373 937.2 1874.4 9372 1995-08-30 2024-10-11 02:36:12.000 1995-08-30 2024-10-11 02:36:12 +9373 9373 9374 937.3 1874.6000000000001 9373 1995-08-31 2024-10-11 02:36:13.000 1995-08-31 2024-10-11 02:36:13 +9374 9374 9375 937.4 1874.8000000000002 9374 1995-09-01 2024-10-11 02:36:14.000 1995-09-01 2024-10-11 02:36:14 +9376 9376 9377 937.6 1875.2 9376 1995-09-03 2024-10-11 02:36:16.000 1995-09-03 2024-10-11 02:36:16 +9377 9377 9378 937.7 1875.4 9377 1995-09-04 2024-10-11 02:36:17.000 1995-09-04 2024-10-11 02:36:17 +9378 9378 9379 937.8 1875.6000000000001 9378 1995-09-05 2024-10-11 02:36:18.000 1995-09-05 2024-10-11 02:36:18 +9379 9379 9380 937.9 1875.8000000000002 9379 1995-09-06 2024-10-11 02:36:19.000 1995-09-06 2024-10-11 02:36:19 +9381 9381 9382 938.1 1876.2 9381 1995-09-08 2024-10-11 02:36:21.000 1995-09-08 2024-10-11 02:36:21 +9382 9382 9383 938.2 1876.4 9382 1995-09-09 2024-10-11 02:36:22.000 1995-09-09 2024-10-11 02:36:22 +9383 9383 9384 938.3 1876.6000000000001 9383 1995-09-10 2024-10-11 02:36:23.000 1995-09-10 2024-10-11 02:36:23 +9384 9384 9385 938.4 1876.8000000000002 9384 1995-09-11 2024-10-11 02:36:24.000 1995-09-11 2024-10-11 02:36:24 +9386 9386 9387 938.6 1877.2 9386 1995-09-13 2024-10-11 02:36:26.000 1995-09-13 2024-10-11 02:36:26 +9387 9387 9388 938.7 1877.4 9387 1995-09-14 2024-10-11 02:36:27.000 1995-09-14 2024-10-11 02:36:27 +9388 9388 9389 938.8 1877.6000000000001 9388 1995-09-15 2024-10-11 02:36:28.000 1995-09-15 2024-10-11 02:36:28 +9389 9389 9390 938.9 1877.8000000000002 9389 1995-09-16 2024-10-11 02:36:29.000 1995-09-16 2024-10-11 02:36:29 +9391 9391 9392 939.1 1878.2 9391 1995-09-18 2024-10-11 02:36:31.000 1995-09-18 2024-10-11 02:36:31 +9392 9392 9393 939.2 1878.4 9392 1995-09-19 2024-10-11 02:36:32.000 1995-09-19 2024-10-11 02:36:32 +9393 9393 9394 939.3 1878.6000000000001 9393 1995-09-20 2024-10-11 02:36:33.000 1995-09-20 2024-10-11 02:36:33 +9394 9394 9395 939.4 1878.8000000000002 9394 1995-09-21 2024-10-11 02:36:34.000 1995-09-21 2024-10-11 02:36:34 +9396 9396 9397 939.6 1879.2 9396 1995-09-23 2024-10-11 02:36:36.000 1995-09-23 2024-10-11 02:36:36 +9397 9397 9398 939.7 1879.4 9397 1995-09-24 2024-10-11 02:36:37.000 1995-09-24 2024-10-11 02:36:37 +9398 9398 9399 939.8 1879.6000000000001 9398 1995-09-25 2024-10-11 02:36:38.000 1995-09-25 2024-10-11 02:36:38 +9399 9399 9400 939.9 1879.8000000000002 9399 1995-09-26 2024-10-11 02:36:39.000 1995-09-26 2024-10-11 02:36:39 +9401 9401 9402 940.1 1880.2 9401 1995-09-28 2024-10-11 02:36:41.000 1995-09-28 2024-10-11 02:36:41 +9402 9402 9403 940.2 1880.4 9402 1995-09-29 2024-10-11 02:36:42.000 1995-09-29 2024-10-11 02:36:42 +9403 9403 9404 940.3 1880.6000000000001 9403 1995-09-30 2024-10-11 02:36:43.000 1995-09-30 2024-10-11 02:36:43 +9404 9404 9405 940.4 1880.8000000000002 9404 1995-10-01 2024-10-11 02:36:44.000 1995-10-01 2024-10-11 02:36:44 +9406 9406 9407 940.6 1881.2 9406 1995-10-03 2024-10-11 02:36:46.000 1995-10-03 2024-10-11 02:36:46 +9407 9407 9408 940.7 1881.4 9407 1995-10-04 2024-10-11 02:36:47.000 1995-10-04 2024-10-11 02:36:47 +9408 9408 9409 940.8 1881.6000000000001 9408 1995-10-05 2024-10-11 02:36:48.000 1995-10-05 2024-10-11 02:36:48 +9409 9409 9410 940.9 1881.8000000000002 9409 1995-10-06 2024-10-11 02:36:49.000 1995-10-06 2024-10-11 02:36:49 +9411 9411 9412 941.1 1882.2 9411 1995-10-08 2024-10-11 02:36:51.000 1995-10-08 2024-10-11 02:36:51 +9412 9412 9413 941.2 1882.4 9412 1995-10-09 2024-10-11 02:36:52.000 1995-10-09 2024-10-11 02:36:52 +9413 9413 9414 941.3 1882.6000000000001 9413 1995-10-10 2024-10-11 02:36:53.000 1995-10-10 2024-10-11 02:36:53 +9414 9414 9415 941.4 1882.8000000000002 9414 1995-10-11 2024-10-11 02:36:54.000 1995-10-11 2024-10-11 02:36:54 +9416 9416 9417 941.6 1883.2 9416 1995-10-13 2024-10-11 02:36:56.000 1995-10-13 2024-10-11 02:36:56 +9417 9417 9418 941.7 1883.4 9417 1995-10-14 2024-10-11 02:36:57.000 1995-10-14 2024-10-11 02:36:57 +9418 9418 9419 941.8 1883.6000000000001 9418 1995-10-15 2024-10-11 02:36:58.000 1995-10-15 2024-10-11 02:36:58 +9419 9419 9420 941.9 1883.8000000000002 9419 1995-10-16 2024-10-11 02:36:59.000 1995-10-16 2024-10-11 02:36:59 +9421 9421 9422 942.1 1884.2 9421 1995-10-18 2024-10-11 02:37:01.000 1995-10-18 2024-10-11 02:37:01 +9422 9422 9423 942.2 1884.4 9422 1995-10-19 2024-10-11 02:37:02.000 1995-10-19 2024-10-11 02:37:02 +9423 9423 9424 942.3 1884.6000000000001 9423 1995-10-20 2024-10-11 02:37:03.000 1995-10-20 2024-10-11 02:37:03 +9424 9424 9425 942.4 1884.8000000000002 9424 1995-10-21 2024-10-11 02:37:04.000 1995-10-21 2024-10-11 02:37:04 +9426 9426 9427 942.6 1885.2 9426 1995-10-23 2024-10-11 02:37:06.000 1995-10-23 2024-10-11 02:37:06 +9427 9427 9428 942.7 1885.4 9427 1995-10-24 2024-10-11 02:37:07.000 1995-10-24 2024-10-11 02:37:07 +9428 9428 9429 942.8 1885.6000000000001 9428 1995-10-25 2024-10-11 02:37:08.000 1995-10-25 2024-10-11 02:37:08 +9429 9429 9430 942.9 1885.8000000000002 9429 1995-10-26 2024-10-11 02:37:09.000 1995-10-26 2024-10-11 02:37:09 +9431 9431 9432 943.1 1886.2 9431 1995-10-28 2024-10-11 02:37:11.000 1995-10-28 2024-10-11 02:37:11 +9432 9432 9433 943.2 1886.4 9432 1995-10-29 2024-10-11 02:37:12.000 1995-10-29 2024-10-11 02:37:12 +9433 9433 9434 943.3 1886.6000000000001 9433 1995-10-30 2024-10-11 02:37:13.000 1995-10-30 2024-10-11 02:37:13 +9434 9434 9435 943.4 1886.8000000000002 9434 1995-10-31 2024-10-11 02:37:14.000 1995-10-31 2024-10-11 02:37:14 +9436 9436 9437 943.6 1887.2 9436 1995-11-02 2024-10-11 02:37:16.000 1995-11-02 2024-10-11 02:37:16 +9437 9437 9438 943.7 1887.4 9437 1995-11-03 2024-10-11 02:37:17.000 1995-11-03 2024-10-11 02:37:17 +9438 9438 9439 943.8 1887.6000000000001 9438 1995-11-04 2024-10-11 02:37:18.000 1995-11-04 2024-10-11 02:37:18 +9439 9439 9440 943.9 1887.8000000000002 9439 1995-11-05 2024-10-11 02:37:19.000 1995-11-05 2024-10-11 02:37:19 +9441 9441 9442 944.1 1888.2 9441 1995-11-07 2024-10-11 02:37:21.000 1995-11-07 2024-10-11 02:37:21 +9442 9442 9443 944.2 1888.4 9442 1995-11-08 2024-10-11 02:37:22.000 1995-11-08 2024-10-11 02:37:22 +9443 9443 9444 944.3 1888.6000000000001 9443 1995-11-09 2024-10-11 02:37:23.000 1995-11-09 2024-10-11 02:37:23 +9444 9444 9445 944.4 1888.8000000000002 9444 1995-11-10 2024-10-11 02:37:24.000 1995-11-10 2024-10-11 02:37:24 +9446 9446 9447 944.6 1889.2 9446 1995-11-12 2024-10-11 02:37:26.000 1995-11-12 2024-10-11 02:37:26 +9447 9447 9448 944.7 1889.4 9447 1995-11-13 2024-10-11 02:37:27.000 1995-11-13 2024-10-11 02:37:27 +9448 9448 9449 944.8 1889.6000000000001 9448 1995-11-14 2024-10-11 02:37:28.000 1995-11-14 2024-10-11 02:37:28 +9449 9449 9450 944.9 1889.8000000000002 9449 1995-11-15 2024-10-11 02:37:29.000 1995-11-15 2024-10-11 02:37:29 +9451 9451 9452 945.1 1890.2 9451 1995-11-17 2024-10-11 02:37:31.000 1995-11-17 2024-10-11 02:37:31 +9452 9452 9453 945.2 1890.4 9452 1995-11-18 2024-10-11 02:37:32.000 1995-11-18 2024-10-11 02:37:32 +9453 9453 9454 945.3 1890.6000000000001 9453 1995-11-19 2024-10-11 02:37:33.000 1995-11-19 2024-10-11 02:37:33 +9454 9454 9455 945.4 1890.8000000000002 9454 1995-11-20 2024-10-11 02:37:34.000 1995-11-20 2024-10-11 02:37:34 +9456 9456 9457 945.6 1891.2 9456 1995-11-22 2024-10-11 02:37:36.000 1995-11-22 2024-10-11 02:37:36 +9457 9457 9458 945.7 1891.4 9457 1995-11-23 2024-10-11 02:37:37.000 1995-11-23 2024-10-11 02:37:37 +9458 9458 9459 945.8 1891.6000000000001 9458 1995-11-24 2024-10-11 02:37:38.000 1995-11-24 2024-10-11 02:37:38 +9459 9459 9460 945.9 1891.8000000000002 9459 1995-11-25 2024-10-11 02:37:39.000 1995-11-25 2024-10-11 02:37:39 +9461 9461 9462 946.1 1892.2 9461 1995-11-27 2024-10-11 02:37:41.000 1995-11-27 2024-10-11 02:37:41 +9462 9462 9463 946.2 1892.4 9462 1995-11-28 2024-10-11 02:37:42.000 1995-11-28 2024-10-11 02:37:42 +9463 9463 9464 946.3 1892.6000000000001 9463 1995-11-29 2024-10-11 02:37:43.000 1995-11-29 2024-10-11 02:37:43 +9464 9464 9465 946.4 1892.8000000000002 9464 1995-11-30 2024-10-11 02:37:44.000 1995-11-30 2024-10-11 02:37:44 +9466 9466 9467 946.6 1893.2 9466 1995-12-02 2024-10-11 02:37:46.000 1995-12-02 2024-10-11 02:37:46 +9467 9467 9468 946.7 1893.4 9467 1995-12-03 2024-10-11 02:37:47.000 1995-12-03 2024-10-11 02:37:47 +9468 9468 9469 946.8 1893.6000000000001 9468 1995-12-04 2024-10-11 02:37:48.000 1995-12-04 2024-10-11 02:37:48 +9469 9469 9470 946.9 1893.8000000000002 9469 1995-12-05 2024-10-11 02:37:49.000 1995-12-05 2024-10-11 02:37:49 +9471 9471 9472 947.1 1894.2 9471 1995-12-07 2024-10-11 02:37:51.000 1995-12-07 2024-10-11 02:37:51 +9472 9472 9473 947.2 1894.4 9472 1995-12-08 2024-10-11 02:37:52.000 1995-12-08 2024-10-11 02:37:52 +9473 9473 9474 947.3 1894.6000000000001 9473 1995-12-09 2024-10-11 02:37:53.000 1995-12-09 2024-10-11 02:37:53 +9474 9474 9475 947.4 1894.8000000000002 9474 1995-12-10 2024-10-11 02:37:54.000 1995-12-10 2024-10-11 02:37:54 +9476 9476 9477 947.6 1895.2 9476 1995-12-12 2024-10-11 02:37:56.000 1995-12-12 2024-10-11 02:37:56 +9477 9477 9478 947.7 1895.4 9477 1995-12-13 2024-10-11 02:37:57.000 1995-12-13 2024-10-11 02:37:57 +9478 9478 9479 947.8 1895.6000000000001 9478 1995-12-14 2024-10-11 02:37:58.000 1995-12-14 2024-10-11 02:37:58 +9479 9479 9480 947.9 1895.8000000000002 9479 1995-12-15 2024-10-11 02:37:59.000 1995-12-15 2024-10-11 02:37:59 +9481 9481 9482 948.1 1896.2 9481 1995-12-17 2024-10-11 02:38:01.000 1995-12-17 2024-10-11 02:38:01 +9482 9482 9483 948.2 1896.4 9482 1995-12-18 2024-10-11 02:38:02.000 1995-12-18 2024-10-11 02:38:02 +9483 9483 9484 948.3 1896.6000000000001 9483 1995-12-19 2024-10-11 02:38:03.000 1995-12-19 2024-10-11 02:38:03 +9484 9484 9485 948.4 1896.8000000000002 9484 1995-12-20 2024-10-11 02:38:04.000 1995-12-20 2024-10-11 02:38:04 +9486 9486 9487 948.6 1897.2 9486 1995-12-22 2024-10-11 02:38:06.000 1995-12-22 2024-10-11 02:38:06 +9487 9487 9488 948.7 1897.4 9487 1995-12-23 2024-10-11 02:38:07.000 1995-12-23 2024-10-11 02:38:07 +9488 9488 9489 948.8 1897.6000000000001 9488 1995-12-24 2024-10-11 02:38:08.000 1995-12-24 2024-10-11 02:38:08 +9489 9489 9490 948.9 1897.8000000000002 9489 1995-12-25 2024-10-11 02:38:09.000 1995-12-25 2024-10-11 02:38:09 +9491 9491 9492 949.1 1898.2 9491 1995-12-27 2024-10-11 02:38:11.000 1995-12-27 2024-10-11 02:38:11 +9492 9492 9493 949.2 1898.4 9492 1995-12-28 2024-10-11 02:38:12.000 1995-12-28 2024-10-11 02:38:12 +9493 9493 9494 949.3 1898.6000000000001 9493 1995-12-29 2024-10-11 02:38:13.000 1995-12-29 2024-10-11 02:38:13 +9494 9494 9495 949.4 1898.8000000000002 9494 1995-12-30 2024-10-11 02:38:14.000 1995-12-30 2024-10-11 02:38:14 +9496 9496 9497 949.6 1899.2 9496 1996-01-01 2024-10-11 02:38:16.000 1996-01-01 2024-10-11 02:38:16 +9497 9497 9498 949.7 1899.4 9497 1996-01-02 2024-10-11 02:38:17.000 1996-01-02 2024-10-11 02:38:17 +9498 9498 9499 949.8 1899.6000000000001 9498 1996-01-03 2024-10-11 02:38:18.000 1996-01-03 2024-10-11 02:38:18 +9499 9499 9500 949.9 1899.8000000000002 9499 1996-01-04 2024-10-11 02:38:19.000 1996-01-04 2024-10-11 02:38:19 +9501 9501 9502 950.1 1900.2 9501 1996-01-06 2024-10-11 02:38:21.000 1996-01-06 2024-10-11 02:38:21 +9502 9502 9503 950.2 1900.4 9502 1996-01-07 2024-10-11 02:38:22.000 1996-01-07 2024-10-11 02:38:22 +9503 9503 9504 950.3 1900.6000000000001 9503 1996-01-08 2024-10-11 02:38:23.000 1996-01-08 2024-10-11 02:38:23 +9504 9504 9505 950.4 1900.8000000000002 9504 1996-01-09 2024-10-11 02:38:24.000 1996-01-09 2024-10-11 02:38:24 +9506 9506 9507 950.6 1901.2 9506 1996-01-11 2024-10-11 02:38:26.000 1996-01-11 2024-10-11 02:38:26 +9507 9507 9508 950.7 1901.4 9507 1996-01-12 2024-10-11 02:38:27.000 1996-01-12 2024-10-11 02:38:27 +9508 9508 9509 950.8 1901.6000000000001 9508 1996-01-13 2024-10-11 02:38:28.000 1996-01-13 2024-10-11 02:38:28 +9509 9509 9510 950.9 1901.8000000000002 9509 1996-01-14 2024-10-11 02:38:29.000 1996-01-14 2024-10-11 02:38:29 +9511 9511 9512 951.1 1902.2 9511 1996-01-16 2024-10-11 02:38:31.000 1996-01-16 2024-10-11 02:38:31 +9512 9512 9513 951.2 1902.4 9512 1996-01-17 2024-10-11 02:38:32.000 1996-01-17 2024-10-11 02:38:32 +9513 9513 9514 951.3 1902.6000000000001 9513 1996-01-18 2024-10-11 02:38:33.000 1996-01-18 2024-10-11 02:38:33 +9514 9514 9515 951.4 1902.8000000000002 9514 1996-01-19 2024-10-11 02:38:34.000 1996-01-19 2024-10-11 02:38:34 +9516 9516 9517 951.6 1903.2 9516 1996-01-21 2024-10-11 02:38:36.000 1996-01-21 2024-10-11 02:38:36 +9517 9517 9518 951.7 1903.4 9517 1996-01-22 2024-10-11 02:38:37.000 1996-01-22 2024-10-11 02:38:37 +9518 9518 9519 951.8 1903.6000000000001 9518 1996-01-23 2024-10-11 02:38:38.000 1996-01-23 2024-10-11 02:38:38 +9519 9519 9520 951.9 1903.8000000000002 9519 1996-01-24 2024-10-11 02:38:39.000 1996-01-24 2024-10-11 02:38:39 +9521 9521 9522 952.1 1904.2 9521 1996-01-26 2024-10-11 02:38:41.000 1996-01-26 2024-10-11 02:38:41 +9522 9522 9523 952.2 1904.4 9522 1996-01-27 2024-10-11 02:38:42.000 1996-01-27 2024-10-11 02:38:42 +9523 9523 9524 952.3 1904.6000000000001 9523 1996-01-28 2024-10-11 02:38:43.000 1996-01-28 2024-10-11 02:38:43 +9524 9524 9525 952.4 1904.8000000000002 9524 1996-01-29 2024-10-11 02:38:44.000 1996-01-29 2024-10-11 02:38:44 +9526 9526 9527 952.6 1905.2 9526 1996-01-31 2024-10-11 02:38:46.000 1996-01-31 2024-10-11 02:38:46 +9527 9527 9528 952.7 1905.4 9527 1996-02-01 2024-10-11 02:38:47.000 1996-02-01 2024-10-11 02:38:47 +9528 9528 9529 952.8 1905.6000000000001 9528 1996-02-02 2024-10-11 02:38:48.000 1996-02-02 2024-10-11 02:38:48 +9529 9529 9530 952.9 1905.8000000000002 9529 1996-02-03 2024-10-11 02:38:49.000 1996-02-03 2024-10-11 02:38:49 +9531 9531 9532 953.1 1906.2 9531 1996-02-05 2024-10-11 02:38:51.000 1996-02-05 2024-10-11 02:38:51 +9532 9532 9533 953.2 1906.4 9532 1996-02-06 2024-10-11 02:38:52.000 1996-02-06 2024-10-11 02:38:52 +9533 9533 9534 953.3 1906.6000000000001 9533 1996-02-07 2024-10-11 02:38:53.000 1996-02-07 2024-10-11 02:38:53 +9534 9534 9535 953.4 1906.8000000000002 9534 1996-02-08 2024-10-11 02:38:54.000 1996-02-08 2024-10-11 02:38:54 +9536 9536 9537 953.6 1907.2 9536 1996-02-10 2024-10-11 02:38:56.000 1996-02-10 2024-10-11 02:38:56 +9537 9537 9538 953.7 1907.4 9537 1996-02-11 2024-10-11 02:38:57.000 1996-02-11 2024-10-11 02:38:57 +9538 9538 9539 953.8 1907.6000000000001 9538 1996-02-12 2024-10-11 02:38:58.000 1996-02-12 2024-10-11 02:38:58 +9539 9539 9540 953.9 1907.8000000000002 9539 1996-02-13 2024-10-11 02:38:59.000 1996-02-13 2024-10-11 02:38:59 +9541 9541 9542 954.1 1908.2 9541 1996-02-15 2024-10-11 02:39:01.000 1996-02-15 2024-10-11 02:39:01 +9542 9542 9543 954.2 1908.4 9542 1996-02-16 2024-10-11 02:39:02.000 1996-02-16 2024-10-11 02:39:02 +9543 9543 9544 954.3 1908.6000000000001 9543 1996-02-17 2024-10-11 02:39:03.000 1996-02-17 2024-10-11 02:39:03 +9544 9544 9545 954.4 1908.8000000000002 9544 1996-02-18 2024-10-11 02:39:04.000 1996-02-18 2024-10-11 02:39:04 +9546 9546 9547 954.6 1909.2 9546 1996-02-20 2024-10-11 02:39:06.000 1996-02-20 2024-10-11 02:39:06 +9547 9547 9548 954.7 1909.4 9547 1996-02-21 2024-10-11 02:39:07.000 1996-02-21 2024-10-11 02:39:07 +9548 9548 9549 954.8 1909.6000000000001 9548 1996-02-22 2024-10-11 02:39:08.000 1996-02-22 2024-10-11 02:39:08 +9549 9549 9550 954.9 1909.8000000000002 9549 1996-02-23 2024-10-11 02:39:09.000 1996-02-23 2024-10-11 02:39:09 +9551 9551 9552 955.1 1910.2 9551 1996-02-25 2024-10-11 02:39:11.000 1996-02-25 2024-10-11 02:39:11 +9552 9552 9553 955.2 1910.4 9552 1996-02-26 2024-10-11 02:39:12.000 1996-02-26 2024-10-11 02:39:12 +9553 9553 9554 955.3 1910.6000000000001 9553 1996-02-27 2024-10-11 02:39:13.000 1996-02-27 2024-10-11 02:39:13 +9554 9554 9555 955.4 1910.8000000000002 9554 1996-02-28 2024-10-11 02:39:14.000 1996-02-28 2024-10-11 02:39:14 +9556 9556 9557 955.6 1911.2 9556 1996-03-01 2024-10-11 02:39:16.000 1996-03-01 2024-10-11 02:39:16 +9557 9557 9558 955.7 1911.4 9557 1996-03-02 2024-10-11 02:39:17.000 1996-03-02 2024-10-11 02:39:17 +9558 9558 9559 955.8 1911.6000000000001 9558 1996-03-03 2024-10-11 02:39:18.000 1996-03-03 2024-10-11 02:39:18 +9559 9559 9560 955.9 1911.8000000000002 9559 1996-03-04 2024-10-11 02:39:19.000 1996-03-04 2024-10-11 02:39:19 +9561 9561 9562 956.1 1912.2 9561 1996-03-06 2024-10-11 02:39:21.000 1996-03-06 2024-10-11 02:39:21 +9562 9562 9563 956.2 1912.4 9562 1996-03-07 2024-10-11 02:39:22.000 1996-03-07 2024-10-11 02:39:22 +9563 9563 9564 956.3 1912.6000000000001 9563 1996-03-08 2024-10-11 02:39:23.000 1996-03-08 2024-10-11 02:39:23 +9564 9564 9565 956.4 1912.8000000000002 9564 1996-03-09 2024-10-11 02:39:24.000 1996-03-09 2024-10-11 02:39:24 +9566 9566 9567 956.6 1913.2 9566 1996-03-11 2024-10-11 02:39:26.000 1996-03-11 2024-10-11 02:39:26 +9567 9567 9568 956.7 1913.4 9567 1996-03-12 2024-10-11 02:39:27.000 1996-03-12 2024-10-11 02:39:27 +9568 9568 9569 956.8 1913.6000000000001 9568 1996-03-13 2024-10-11 02:39:28.000 1996-03-13 2024-10-11 02:39:28 +9569 9569 9570 956.9 1913.8000000000002 9569 1996-03-14 2024-10-11 02:39:29.000 1996-03-14 2024-10-11 02:39:29 +9571 9571 9572 957.1 1914.2 9571 1996-03-16 2024-10-11 02:39:31.000 1996-03-16 2024-10-11 02:39:31 +9572 9572 9573 957.2 1914.4 9572 1996-03-17 2024-10-11 02:39:32.000 1996-03-17 2024-10-11 02:39:32 +9573 9573 9574 957.3 1914.6000000000001 9573 1996-03-18 2024-10-11 02:39:33.000 1996-03-18 2024-10-11 02:39:33 +9574 9574 9575 957.4 1914.8000000000002 9574 1996-03-19 2024-10-11 02:39:34.000 1996-03-19 2024-10-11 02:39:34 +9576 9576 9577 957.6 1915.2 9576 1996-03-21 2024-10-11 02:39:36.000 1996-03-21 2024-10-11 02:39:36 +9577 9577 9578 957.7 1915.4 9577 1996-03-22 2024-10-11 02:39:37.000 1996-03-22 2024-10-11 02:39:37 +9578 9578 9579 957.8 1915.6000000000001 9578 1996-03-23 2024-10-11 02:39:38.000 1996-03-23 2024-10-11 02:39:38 +9579 9579 9580 957.9 1915.8000000000002 9579 1996-03-24 2024-10-11 02:39:39.000 1996-03-24 2024-10-11 02:39:39 +9581 9581 9582 958.1 1916.2 9581 1996-03-26 2024-10-11 02:39:41.000 1996-03-26 2024-10-11 02:39:41 +9582 9582 9583 958.2 1916.4 9582 1996-03-27 2024-10-11 02:39:42.000 1996-03-27 2024-10-11 02:39:42 +9583 9583 9584 958.3 1916.6000000000001 9583 1996-03-28 2024-10-11 02:39:43.000 1996-03-28 2024-10-11 02:39:43 +9584 9584 9585 958.4 1916.8000000000002 9584 1996-03-29 2024-10-11 02:39:44.000 1996-03-29 2024-10-11 02:39:44 +9586 9586 9587 958.6 1917.2 9586 1996-03-31 2024-10-11 02:39:46.000 1996-03-31 2024-10-11 02:39:46 +9587 9587 9588 958.7 1917.4 9587 1996-04-01 2024-10-11 02:39:47.000 1996-04-01 2024-10-11 02:39:47 +9588 9588 9589 958.8 1917.6000000000001 9588 1996-04-02 2024-10-11 02:39:48.000 1996-04-02 2024-10-11 02:39:48 +9589 9589 9590 958.9 1917.8000000000002 9589 1996-04-03 2024-10-11 02:39:49.000 1996-04-03 2024-10-11 02:39:49 +9591 9591 9592 959.1 1918.2 9591 1996-04-05 2024-10-11 02:39:51.000 1996-04-05 2024-10-11 02:39:51 +9592 9592 9593 959.2 1918.4 9592 1996-04-06 2024-10-11 02:39:52.000 1996-04-06 2024-10-11 02:39:52 +9593 9593 9594 959.3 1918.6000000000001 9593 1996-04-07 2024-10-11 02:39:53.000 1996-04-07 2024-10-11 02:39:53 +9594 9594 9595 959.4 1918.8000000000002 9594 1996-04-08 2024-10-11 02:39:54.000 1996-04-08 2024-10-11 02:39:54 +9596 9596 9597 959.6 1919.2 9596 1996-04-10 2024-10-11 02:39:56.000 1996-04-10 2024-10-11 02:39:56 +9597 9597 9598 959.7 1919.4 9597 1996-04-11 2024-10-11 02:39:57.000 1996-04-11 2024-10-11 02:39:57 +9598 9598 9599 959.8 1919.6000000000001 9598 1996-04-12 2024-10-11 02:39:58.000 1996-04-12 2024-10-11 02:39:58 +9599 9599 9600 959.9 1919.8000000000002 9599 1996-04-13 2024-10-11 02:39:59.000 1996-04-13 2024-10-11 02:39:59 +9601 9601 9602 960.1 1920.2 9601 1996-04-15 2024-10-11 02:40:01.000 1996-04-15 2024-10-11 02:40:01 +9602 9602 9603 960.2 1920.4 9602 1996-04-16 2024-10-11 02:40:02.000 1996-04-16 2024-10-11 02:40:02 +9603 9603 9604 960.3 1920.6000000000001 9603 1996-04-17 2024-10-11 02:40:03.000 1996-04-17 2024-10-11 02:40:03 +9604 9604 9605 960.4 1920.8000000000002 9604 1996-04-18 2024-10-11 02:40:04.000 1996-04-18 2024-10-11 02:40:04 +9606 9606 9607 960.6 1921.2 9606 1996-04-20 2024-10-11 02:40:06.000 1996-04-20 2024-10-11 02:40:06 +9607 9607 9608 960.7 1921.4 9607 1996-04-21 2024-10-11 02:40:07.000 1996-04-21 2024-10-11 02:40:07 +9608 9608 9609 960.8 1921.6000000000001 9608 1996-04-22 2024-10-11 02:40:08.000 1996-04-22 2024-10-11 02:40:08 +9609 9609 9610 960.9 1921.8000000000002 9609 1996-04-23 2024-10-11 02:40:09.000 1996-04-23 2024-10-11 02:40:09 +9611 9611 9612 961.1 1922.2 9611 1996-04-25 2024-10-11 02:40:11.000 1996-04-25 2024-10-11 02:40:11 +9612 9612 9613 961.2 1922.4 9612 1996-04-26 2024-10-11 02:40:12.000 1996-04-26 2024-10-11 02:40:12 +9613 9613 9614 961.3 1922.6000000000001 9613 1996-04-27 2024-10-11 02:40:13.000 1996-04-27 2024-10-11 02:40:13 +9614 9614 9615 961.4 1922.8000000000002 9614 1996-04-28 2024-10-11 02:40:14.000 1996-04-28 2024-10-11 02:40:14 +9616 9616 9617 961.6 1923.2 9616 1996-04-30 2024-10-11 02:40:16.000 1996-04-30 2024-10-11 02:40:16 +9617 9617 9618 961.7 1923.4 9617 1996-05-01 2024-10-11 02:40:17.000 1996-05-01 2024-10-11 02:40:17 +9618 9618 9619 961.8 1923.6000000000001 9618 1996-05-02 2024-10-11 02:40:18.000 1996-05-02 2024-10-11 02:40:18 +9619 9619 9620 961.9 1923.8000000000002 9619 1996-05-03 2024-10-11 02:40:19.000 1996-05-03 2024-10-11 02:40:19 +9621 9621 9622 962.1 1924.2 9621 1996-05-05 2024-10-11 02:40:21.000 1996-05-05 2024-10-11 02:40:21 +9622 9622 9623 962.2 1924.4 9622 1996-05-06 2024-10-11 02:40:22.000 1996-05-06 2024-10-11 02:40:22 +9623 9623 9624 962.3 1924.6000000000001 9623 1996-05-07 2024-10-11 02:40:23.000 1996-05-07 2024-10-11 02:40:23 +9624 9624 9625 962.4 1924.8000000000002 9624 1996-05-08 2024-10-11 02:40:24.000 1996-05-08 2024-10-11 02:40:24 +9626 9626 9627 962.6 1925.2 9626 1996-05-10 2024-10-11 02:40:26.000 1996-05-10 2024-10-11 02:40:26 +9627 9627 9628 962.7 1925.4 9627 1996-05-11 2024-10-11 02:40:27.000 1996-05-11 2024-10-11 02:40:27 +9628 9628 9629 962.8 1925.6000000000001 9628 1996-05-12 2024-10-11 02:40:28.000 1996-05-12 2024-10-11 02:40:28 +9629 9629 9630 962.9 1925.8000000000002 9629 1996-05-13 2024-10-11 02:40:29.000 1996-05-13 2024-10-11 02:40:29 +9631 9631 9632 963.1 1926.2 9631 1996-05-15 2024-10-11 02:40:31.000 1996-05-15 2024-10-11 02:40:31 +9632 9632 9633 963.2 1926.4 9632 1996-05-16 2024-10-11 02:40:32.000 1996-05-16 2024-10-11 02:40:32 +9633 9633 9634 963.3 1926.6000000000001 9633 1996-05-17 2024-10-11 02:40:33.000 1996-05-17 2024-10-11 02:40:33 +9634 9634 9635 963.4 1926.8000000000002 9634 1996-05-18 2024-10-11 02:40:34.000 1996-05-18 2024-10-11 02:40:34 +9636 9636 9637 963.6 1927.2 9636 1996-05-20 2024-10-11 02:40:36.000 1996-05-20 2024-10-11 02:40:36 +9637 9637 9638 963.7 1927.4 9637 1996-05-21 2024-10-11 02:40:37.000 1996-05-21 2024-10-11 02:40:37 +9638 9638 9639 963.8 1927.6000000000001 9638 1996-05-22 2024-10-11 02:40:38.000 1996-05-22 2024-10-11 02:40:38 +9639 9639 9640 963.9 1927.8000000000002 9639 1996-05-23 2024-10-11 02:40:39.000 1996-05-23 2024-10-11 02:40:39 +9641 9641 9642 964.1 1928.2 9641 1996-05-25 2024-10-11 02:40:41.000 1996-05-25 2024-10-11 02:40:41 +9642 9642 9643 964.2 1928.4 9642 1996-05-26 2024-10-11 02:40:42.000 1996-05-26 2024-10-11 02:40:42 +9643 9643 9644 964.3 1928.6000000000001 9643 1996-05-27 2024-10-11 02:40:43.000 1996-05-27 2024-10-11 02:40:43 +9644 9644 9645 964.4 1928.8000000000002 9644 1996-05-28 2024-10-11 02:40:44.000 1996-05-28 2024-10-11 02:40:44 +9646 9646 9647 964.6 1929.2 9646 1996-05-30 2024-10-11 02:40:46.000 1996-05-30 2024-10-11 02:40:46 +9647 9647 9648 964.7 1929.4 9647 1996-05-31 2024-10-11 02:40:47.000 1996-05-31 2024-10-11 02:40:47 +9648 9648 9649 964.8 1929.6000000000001 9648 1996-06-01 2024-10-11 02:40:48.000 1996-06-01 2024-10-11 02:40:48 +9649 9649 9650 964.9 1929.8000000000002 9649 1996-06-02 2024-10-11 02:40:49.000 1996-06-02 2024-10-11 02:40:49 +9651 9651 9652 965.1 1930.2 9651 1996-06-04 2024-10-11 02:40:51.000 1996-06-04 2024-10-11 02:40:51 +9652 9652 9653 965.2 1930.4 9652 1996-06-05 2024-10-11 02:40:52.000 1996-06-05 2024-10-11 02:40:52 +9653 9653 9654 965.3 1930.6000000000001 9653 1996-06-06 2024-10-11 02:40:53.000 1996-06-06 2024-10-11 02:40:53 +9654 9654 9655 965.4 1930.8000000000002 9654 1996-06-07 2024-10-11 02:40:54.000 1996-06-07 2024-10-11 02:40:54 +9656 9656 9657 965.6 1931.2 9656 1996-06-09 2024-10-11 02:40:56.000 1996-06-09 2024-10-11 02:40:56 +9657 9657 9658 965.7 1931.4 9657 1996-06-10 2024-10-11 02:40:57.000 1996-06-10 2024-10-11 02:40:57 +9658 9658 9659 965.8 1931.6000000000001 9658 1996-06-11 2024-10-11 02:40:58.000 1996-06-11 2024-10-11 02:40:58 +9659 9659 9660 965.9 1931.8000000000002 9659 1996-06-12 2024-10-11 02:40:59.000 1996-06-12 2024-10-11 02:40:59 +9661 9661 9662 966.1 1932.2 9661 1996-06-14 2024-10-11 02:41:01.000 1996-06-14 2024-10-11 02:41:01 +9662 9662 9663 966.2 1932.4 9662 1996-06-15 2024-10-11 02:41:02.000 1996-06-15 2024-10-11 02:41:02 +9663 9663 9664 966.3 1932.6000000000001 9663 1996-06-16 2024-10-11 02:41:03.000 1996-06-16 2024-10-11 02:41:03 +9664 9664 9665 966.4 1932.8000000000002 9664 1996-06-17 2024-10-11 02:41:04.000 1996-06-17 2024-10-11 02:41:04 +9666 9666 9667 966.6 1933.2 9666 1996-06-19 2024-10-11 02:41:06.000 1996-06-19 2024-10-11 02:41:06 +9667 9667 9668 966.7 1933.4 9667 1996-06-20 2024-10-11 02:41:07.000 1996-06-20 2024-10-11 02:41:07 +9668 9668 9669 966.8 1933.6000000000001 9668 1996-06-21 2024-10-11 02:41:08.000 1996-06-21 2024-10-11 02:41:08 +9669 9669 9670 966.9 1933.8000000000002 9669 1996-06-22 2024-10-11 02:41:09.000 1996-06-22 2024-10-11 02:41:09 +9671 9671 9672 967.1 1934.2 9671 1996-06-24 2024-10-11 02:41:11.000 1996-06-24 2024-10-11 02:41:11 +9672 9672 9673 967.2 1934.4 9672 1996-06-25 2024-10-11 02:41:12.000 1996-06-25 2024-10-11 02:41:12 +9673 9673 9674 967.3 1934.6000000000001 9673 1996-06-26 2024-10-11 02:41:13.000 1996-06-26 2024-10-11 02:41:13 +9674 9674 9675 967.4 1934.8000000000002 9674 1996-06-27 2024-10-11 02:41:14.000 1996-06-27 2024-10-11 02:41:14 +9676 9676 9677 967.6 1935.2 9676 1996-06-29 2024-10-11 02:41:16.000 1996-06-29 2024-10-11 02:41:16 +9677 9677 9678 967.7 1935.4 9677 1996-06-30 2024-10-11 02:41:17.000 1996-06-30 2024-10-11 02:41:17 +9678 9678 9679 967.8 1935.6000000000001 9678 1996-07-01 2024-10-11 02:41:18.000 1996-07-01 2024-10-11 02:41:18 +9679 9679 9680 967.9 1935.8000000000002 9679 1996-07-02 2024-10-11 02:41:19.000 1996-07-02 2024-10-11 02:41:19 +9681 9681 9682 968.1 1936.2 9681 1996-07-04 2024-10-11 02:41:21.000 1996-07-04 2024-10-11 02:41:21 +9682 9682 9683 968.2 1936.4 9682 1996-07-05 2024-10-11 02:41:22.000 1996-07-05 2024-10-11 02:41:22 +9683 9683 9684 968.3 1936.6000000000001 9683 1996-07-06 2024-10-11 02:41:23.000 1996-07-06 2024-10-11 02:41:23 +9684 9684 9685 968.4 1936.8000000000002 9684 1996-07-07 2024-10-11 02:41:24.000 1996-07-07 2024-10-11 02:41:24 +9686 9686 9687 968.6 1937.2 9686 1996-07-09 2024-10-11 02:41:26.000 1996-07-09 2024-10-11 02:41:26 +9687 9687 9688 968.7 1937.4 9687 1996-07-10 2024-10-11 02:41:27.000 1996-07-10 2024-10-11 02:41:27 +9688 9688 9689 968.8 1937.6000000000001 9688 1996-07-11 2024-10-11 02:41:28.000 1996-07-11 2024-10-11 02:41:28 +9689 9689 9690 968.9 1937.8000000000002 9689 1996-07-12 2024-10-11 02:41:29.000 1996-07-12 2024-10-11 02:41:29 +9691 9691 9692 969.1 1938.2 9691 1996-07-14 2024-10-11 02:41:31.000 1996-07-14 2024-10-11 02:41:31 +9692 9692 9693 969.2 1938.4 9692 1996-07-15 2024-10-11 02:41:32.000 1996-07-15 2024-10-11 02:41:32 +9693 9693 9694 969.3 1938.6000000000001 9693 1996-07-16 2024-10-11 02:41:33.000 1996-07-16 2024-10-11 02:41:33 +9694 9694 9695 969.4 1938.8000000000002 9694 1996-07-17 2024-10-11 02:41:34.000 1996-07-17 2024-10-11 02:41:34 +9696 9696 9697 969.6 1939.2 9696 1996-07-19 2024-10-11 02:41:36.000 1996-07-19 2024-10-11 02:41:36 +9697 9697 9698 969.7 1939.4 9697 1996-07-20 2024-10-11 02:41:37.000 1996-07-20 2024-10-11 02:41:37 +9698 9698 9699 969.8 1939.6000000000001 9698 1996-07-21 2024-10-11 02:41:38.000 1996-07-21 2024-10-11 02:41:38 +9699 9699 9700 969.9 1939.8000000000002 9699 1996-07-22 2024-10-11 02:41:39.000 1996-07-22 2024-10-11 02:41:39 +9701 9701 9702 970.1 1940.2 9701 1996-07-24 2024-10-11 02:41:41.000 1996-07-24 2024-10-11 02:41:41 +9702 9702 9703 970.2 1940.4 9702 1996-07-25 2024-10-11 02:41:42.000 1996-07-25 2024-10-11 02:41:42 +9703 9703 9704 970.3 1940.6000000000001 9703 1996-07-26 2024-10-11 02:41:43.000 1996-07-26 2024-10-11 02:41:43 +9704 9704 9705 970.4 1940.8000000000002 9704 1996-07-27 2024-10-11 02:41:44.000 1996-07-27 2024-10-11 02:41:44 +9706 9706 9707 970.6 1941.2 9706 1996-07-29 2024-10-11 02:41:46.000 1996-07-29 2024-10-11 02:41:46 +9707 9707 9708 970.7 1941.4 9707 1996-07-30 2024-10-11 02:41:47.000 1996-07-30 2024-10-11 02:41:47 +9708 9708 9709 970.8 1941.6000000000001 9708 1996-07-31 2024-10-11 02:41:48.000 1996-07-31 2024-10-11 02:41:48 +9709 9709 9710 970.9 1941.8000000000002 9709 1996-08-01 2024-10-11 02:41:49.000 1996-08-01 2024-10-11 02:41:49 +9711 9711 9712 971.1 1942.2 9711 1996-08-03 2024-10-11 02:41:51.000 1996-08-03 2024-10-11 02:41:51 +9712 9712 9713 971.2 1942.4 9712 1996-08-04 2024-10-11 02:41:52.000 1996-08-04 2024-10-11 02:41:52 +9713 9713 9714 971.3 1942.6000000000001 9713 1996-08-05 2024-10-11 02:41:53.000 1996-08-05 2024-10-11 02:41:53 +9714 9714 9715 971.4 1942.8000000000002 9714 1996-08-06 2024-10-11 02:41:54.000 1996-08-06 2024-10-11 02:41:54 +9716 9716 9717 971.6 1943.2 9716 1996-08-08 2024-10-11 02:41:56.000 1996-08-08 2024-10-11 02:41:56 +9717 9717 9718 971.7 1943.4 9717 1996-08-09 2024-10-11 02:41:57.000 1996-08-09 2024-10-11 02:41:57 +9718 9718 9719 971.8 1943.6000000000001 9718 1996-08-10 2024-10-11 02:41:58.000 1996-08-10 2024-10-11 02:41:58 +9719 9719 9720 971.9 1943.8000000000002 9719 1996-08-11 2024-10-11 02:41:59.000 1996-08-11 2024-10-11 02:41:59 +9721 9721 9722 972.1 1944.2 9721 1996-08-13 2024-10-11 02:42:01.000 1996-08-13 2024-10-11 02:42:01 +9722 9722 9723 972.2 1944.4 9722 1996-08-14 2024-10-11 02:42:02.000 1996-08-14 2024-10-11 02:42:02 +9723 9723 9724 972.3 1944.6000000000001 9723 1996-08-15 2024-10-11 02:42:03.000 1996-08-15 2024-10-11 02:42:03 +9724 9724 9725 972.4 1944.8000000000002 9724 1996-08-16 2024-10-11 02:42:04.000 1996-08-16 2024-10-11 02:42:04 +9726 9726 9727 972.6 1945.2 9726 1996-08-18 2024-10-11 02:42:06.000 1996-08-18 2024-10-11 02:42:06 +9727 9727 9728 972.7 1945.4 9727 1996-08-19 2024-10-11 02:42:07.000 1996-08-19 2024-10-11 02:42:07 +9728 9728 9729 972.8 1945.6000000000001 9728 1996-08-20 2024-10-11 02:42:08.000 1996-08-20 2024-10-11 02:42:08 +9729 9729 9730 972.9 1945.8000000000002 9729 1996-08-21 2024-10-11 02:42:09.000 1996-08-21 2024-10-11 02:42:09 +9731 9731 9732 973.1 1946.2 9731 1996-08-23 2024-10-11 02:42:11.000 1996-08-23 2024-10-11 02:42:11 +9732 9732 9733 973.2 1946.4 9732 1996-08-24 2024-10-11 02:42:12.000 1996-08-24 2024-10-11 02:42:12 +9733 9733 9734 973.3 1946.6000000000001 9733 1996-08-25 2024-10-11 02:42:13.000 1996-08-25 2024-10-11 02:42:13 +9734 9734 9735 973.4 1946.8000000000002 9734 1996-08-26 2024-10-11 02:42:14.000 1996-08-26 2024-10-11 02:42:14 +9736 9736 9737 973.6 1947.2 9736 1996-08-28 2024-10-11 02:42:16.000 1996-08-28 2024-10-11 02:42:16 +9737 9737 9738 973.7 1947.4 9737 1996-08-29 2024-10-11 02:42:17.000 1996-08-29 2024-10-11 02:42:17 +9738 9738 9739 973.8 1947.6000000000001 9738 1996-08-30 2024-10-11 02:42:18.000 1996-08-30 2024-10-11 02:42:18 +9739 9739 9740 973.9 1947.8000000000002 9739 1996-08-31 2024-10-11 02:42:19.000 1996-08-31 2024-10-11 02:42:19 +9741 9741 9742 974.1 1948.2 9741 1996-09-02 2024-10-11 02:42:21.000 1996-09-02 2024-10-11 02:42:21 +9742 9742 9743 974.2 1948.4 9742 1996-09-03 2024-10-11 02:42:22.000 1996-09-03 2024-10-11 02:42:22 +9743 9743 9744 974.3 1948.6000000000001 9743 1996-09-04 2024-10-11 02:42:23.000 1996-09-04 2024-10-11 02:42:23 +9744 9744 9745 974.4 1948.8000000000002 9744 1996-09-05 2024-10-11 02:42:24.000 1996-09-05 2024-10-11 02:42:24 +9746 9746 9747 974.6 1949.2 9746 1996-09-07 2024-10-11 02:42:26.000 1996-09-07 2024-10-11 02:42:26 +9747 9747 9748 974.7 1949.4 9747 1996-09-08 2024-10-11 02:42:27.000 1996-09-08 2024-10-11 02:42:27 +9748 9748 9749 974.8 1949.6000000000001 9748 1996-09-09 2024-10-11 02:42:28.000 1996-09-09 2024-10-11 02:42:28 +9749 9749 9750 974.9 1949.8000000000002 9749 1996-09-10 2024-10-11 02:42:29.000 1996-09-10 2024-10-11 02:42:29 +9751 9751 9752 975.1 1950.2 9751 1996-09-12 2024-10-11 02:42:31.000 1996-09-12 2024-10-11 02:42:31 +9752 9752 9753 975.2 1950.4 9752 1996-09-13 2024-10-11 02:42:32.000 1996-09-13 2024-10-11 02:42:32 +9753 9753 9754 975.3 1950.6000000000001 9753 1996-09-14 2024-10-11 02:42:33.000 1996-09-14 2024-10-11 02:42:33 +9754 9754 9755 975.4 1950.8000000000002 9754 1996-09-15 2024-10-11 02:42:34.000 1996-09-15 2024-10-11 02:42:34 +9756 9756 9757 975.6 1951.2 9756 1996-09-17 2024-10-11 02:42:36.000 1996-09-17 2024-10-11 02:42:36 +9757 9757 9758 975.7 1951.4 9757 1996-09-18 2024-10-11 02:42:37.000 1996-09-18 2024-10-11 02:42:37 +9758 9758 9759 975.8 1951.6000000000001 9758 1996-09-19 2024-10-11 02:42:38.000 1996-09-19 2024-10-11 02:42:38 +9759 9759 9760 975.9 1951.8000000000002 9759 1996-09-20 2024-10-11 02:42:39.000 1996-09-20 2024-10-11 02:42:39 +9761 9761 9762 976.1 1952.2 9761 1996-09-22 2024-10-11 02:42:41.000 1996-09-22 2024-10-11 02:42:41 +9762 9762 9763 976.2 1952.4 9762 1996-09-23 2024-10-11 02:42:42.000 1996-09-23 2024-10-11 02:42:42 +9763 9763 9764 976.3 1952.6000000000001 9763 1996-09-24 2024-10-11 02:42:43.000 1996-09-24 2024-10-11 02:42:43 +9764 9764 9765 976.4 1952.8000000000002 9764 1996-09-25 2024-10-11 02:42:44.000 1996-09-25 2024-10-11 02:42:44 +9766 9766 9767 976.6 1953.2 9766 1996-09-27 2024-10-11 02:42:46.000 1996-09-27 2024-10-11 02:42:46 +9767 9767 9768 976.7 1953.4 9767 1996-09-28 2024-10-11 02:42:47.000 1996-09-28 2024-10-11 02:42:47 +9768 9768 9769 976.8 1953.6000000000001 9768 1996-09-29 2024-10-11 02:42:48.000 1996-09-29 2024-10-11 02:42:48 +9769 9769 9770 976.9 1953.8000000000002 9769 1996-09-30 2024-10-11 02:42:49.000 1996-09-30 2024-10-11 02:42:49 +9771 9771 9772 977.1 1954.2 9771 1996-10-02 2024-10-11 02:42:51.000 1996-10-02 2024-10-11 02:42:51 +9772 9772 9773 977.2 1954.4 9772 1996-10-03 2024-10-11 02:42:52.000 1996-10-03 2024-10-11 02:42:52 +9773 9773 9774 977.3 1954.6000000000001 9773 1996-10-04 2024-10-11 02:42:53.000 1996-10-04 2024-10-11 02:42:53 +9774 9774 9775 977.4 1954.8000000000002 9774 1996-10-05 2024-10-11 02:42:54.000 1996-10-05 2024-10-11 02:42:54 +9776 9776 9777 977.6 1955.2 9776 1996-10-07 2024-10-11 02:42:56.000 1996-10-07 2024-10-11 02:42:56 +9777 9777 9778 977.7 1955.4 9777 1996-10-08 2024-10-11 02:42:57.000 1996-10-08 2024-10-11 02:42:57 +9778 9778 9779 977.8 1955.6000000000001 9778 1996-10-09 2024-10-11 02:42:58.000 1996-10-09 2024-10-11 02:42:58 +9779 9779 9780 977.9 1955.8000000000002 9779 1996-10-10 2024-10-11 02:42:59.000 1996-10-10 2024-10-11 02:42:59 +9781 9781 9782 978.1 1956.2 9781 1996-10-12 2024-10-11 02:43:01.000 1996-10-12 2024-10-11 02:43:01 +9782 9782 9783 978.2 1956.4 9782 1996-10-13 2024-10-11 02:43:02.000 1996-10-13 2024-10-11 02:43:02 +9783 9783 9784 978.3 1956.6000000000001 9783 1996-10-14 2024-10-11 02:43:03.000 1996-10-14 2024-10-11 02:43:03 +9784 9784 9785 978.4 1956.8000000000002 9784 1996-10-15 2024-10-11 02:43:04.000 1996-10-15 2024-10-11 02:43:04 +9786 9786 9787 978.6 1957.2 9786 1996-10-17 2024-10-11 02:43:06.000 1996-10-17 2024-10-11 02:43:06 +9787 9787 9788 978.7 1957.4 9787 1996-10-18 2024-10-11 02:43:07.000 1996-10-18 2024-10-11 02:43:07 +9788 9788 9789 978.8 1957.6000000000001 9788 1996-10-19 2024-10-11 02:43:08.000 1996-10-19 2024-10-11 02:43:08 +9789 9789 9790 978.9 1957.8000000000002 9789 1996-10-20 2024-10-11 02:43:09.000 1996-10-20 2024-10-11 02:43:09 +9791 9791 9792 979.1 1958.2 9791 1996-10-22 2024-10-11 02:43:11.000 1996-10-22 2024-10-11 02:43:11 +9792 9792 9793 979.2 1958.4 9792 1996-10-23 2024-10-11 02:43:12.000 1996-10-23 2024-10-11 02:43:12 +9793 9793 9794 979.3 1958.6000000000001 9793 1996-10-24 2024-10-11 02:43:13.000 1996-10-24 2024-10-11 02:43:13 +9794 9794 9795 979.4 1958.8000000000002 9794 1996-10-25 2024-10-11 02:43:14.000 1996-10-25 2024-10-11 02:43:14 +9796 9796 9797 979.6 1959.2 9796 1996-10-27 2024-10-11 02:43:16.000 1996-10-27 2024-10-11 02:43:16 +9797 9797 9798 979.7 1959.4 9797 1996-10-28 2024-10-11 02:43:17.000 1996-10-28 2024-10-11 02:43:17 +9798 9798 9799 979.8 1959.6000000000001 9798 1996-10-29 2024-10-11 02:43:18.000 1996-10-29 2024-10-11 02:43:18 +9799 9799 9800 979.9 1959.8000000000002 9799 1996-10-30 2024-10-11 02:43:19.000 1996-10-30 2024-10-11 02:43:19 +9801 9801 9802 980.1 1960.2 9801 1996-11-01 2024-10-11 02:43:21.000 1996-11-01 2024-10-11 02:43:21 +9802 9802 9803 980.2 1960.4 9802 1996-11-02 2024-10-11 02:43:22.000 1996-11-02 2024-10-11 02:43:22 +9803 9803 9804 980.3 1960.6000000000001 9803 1996-11-03 2024-10-11 02:43:23.000 1996-11-03 2024-10-11 02:43:23 +9804 9804 9805 980.4 1960.8000000000002 9804 1996-11-04 2024-10-11 02:43:24.000 1996-11-04 2024-10-11 02:43:24 +9806 9806 9807 980.6 1961.2 9806 1996-11-06 2024-10-11 02:43:26.000 1996-11-06 2024-10-11 02:43:26 +9807 9807 9808 980.7 1961.4 9807 1996-11-07 2024-10-11 02:43:27.000 1996-11-07 2024-10-11 02:43:27 +9808 9808 9809 980.8 1961.6000000000001 9808 1996-11-08 2024-10-11 02:43:28.000 1996-11-08 2024-10-11 02:43:28 +9809 9809 9810 980.9 1961.8000000000002 9809 1996-11-09 2024-10-11 02:43:29.000 1996-11-09 2024-10-11 02:43:29 +9811 9811 9812 981.1 1962.2 9811 1996-11-11 2024-10-11 02:43:31.000 1996-11-11 2024-10-11 02:43:31 +9812 9812 9813 981.2 1962.4 9812 1996-11-12 2024-10-11 02:43:32.000 1996-11-12 2024-10-11 02:43:32 +9813 9813 9814 981.3 1962.6000000000001 9813 1996-11-13 2024-10-11 02:43:33.000 1996-11-13 2024-10-11 02:43:33 +9814 9814 9815 981.4 1962.8000000000002 9814 1996-11-14 2024-10-11 02:43:34.000 1996-11-14 2024-10-11 02:43:34 +9816 9816 9817 981.6 1963.2 9816 1996-11-16 2024-10-11 02:43:36.000 1996-11-16 2024-10-11 02:43:36 +9817 9817 9818 981.7 1963.4 9817 1996-11-17 2024-10-11 02:43:37.000 1996-11-17 2024-10-11 02:43:37 +9818 9818 9819 981.8 1963.6000000000001 9818 1996-11-18 2024-10-11 02:43:38.000 1996-11-18 2024-10-11 02:43:38 +9819 9819 9820 981.9 1963.8000000000002 9819 1996-11-19 2024-10-11 02:43:39.000 1996-11-19 2024-10-11 02:43:39 +9821 9821 9822 982.1 1964.2 9821 1996-11-21 2024-10-11 02:43:41.000 1996-11-21 2024-10-11 02:43:41 +9822 9822 9823 982.2 1964.4 9822 1996-11-22 2024-10-11 02:43:42.000 1996-11-22 2024-10-11 02:43:42 +9823 9823 9824 982.3 1964.6000000000001 9823 1996-11-23 2024-10-11 02:43:43.000 1996-11-23 2024-10-11 02:43:43 +9824 9824 9825 982.4 1964.8000000000002 9824 1996-11-24 2024-10-11 02:43:44.000 1996-11-24 2024-10-11 02:43:44 +9826 9826 9827 982.6 1965.2 9826 1996-11-26 2024-10-11 02:43:46.000 1996-11-26 2024-10-11 02:43:46 +9827 9827 9828 982.7 1965.4 9827 1996-11-27 2024-10-11 02:43:47.000 1996-11-27 2024-10-11 02:43:47 +9828 9828 9829 982.8 1965.6000000000001 9828 1996-11-28 2024-10-11 02:43:48.000 1996-11-28 2024-10-11 02:43:48 +9829 9829 9830 982.9 1965.8000000000002 9829 1996-11-29 2024-10-11 02:43:49.000 1996-11-29 2024-10-11 02:43:49 +9831 9831 9832 983.1 1966.2 9831 1996-12-01 2024-10-11 02:43:51.000 1996-12-01 2024-10-11 02:43:51 +9832 9832 9833 983.2 1966.4 9832 1996-12-02 2024-10-11 02:43:52.000 1996-12-02 2024-10-11 02:43:52 +9833 9833 9834 983.3 1966.6000000000001 9833 1996-12-03 2024-10-11 02:43:53.000 1996-12-03 2024-10-11 02:43:53 +9834 9834 9835 983.4 1966.8000000000002 9834 1996-12-04 2024-10-11 02:43:54.000 1996-12-04 2024-10-11 02:43:54 +9836 9836 9837 983.6 1967.2 9836 1996-12-06 2024-10-11 02:43:56.000 1996-12-06 2024-10-11 02:43:56 +9837 9837 9838 983.7 1967.4 9837 1996-12-07 2024-10-11 02:43:57.000 1996-12-07 2024-10-11 02:43:57 +9838 9838 9839 983.8 1967.6000000000001 9838 1996-12-08 2024-10-11 02:43:58.000 1996-12-08 2024-10-11 02:43:58 +9839 9839 9840 983.9 1967.8000000000002 9839 1996-12-09 2024-10-11 02:43:59.000 1996-12-09 2024-10-11 02:43:59 +9841 9841 9842 984.1 1968.2 9841 1996-12-11 2024-10-11 02:44:01.000 1996-12-11 2024-10-11 02:44:01 +9842 9842 9843 984.2 1968.4 9842 1996-12-12 2024-10-11 02:44:02.000 1996-12-12 2024-10-11 02:44:02 +9843 9843 9844 984.3 1968.6000000000001 9843 1996-12-13 2024-10-11 02:44:03.000 1996-12-13 2024-10-11 02:44:03 +9844 9844 9845 984.4 1968.8000000000002 9844 1996-12-14 2024-10-11 02:44:04.000 1996-12-14 2024-10-11 02:44:04 +9846 9846 9847 984.6 1969.2 9846 1996-12-16 2024-10-11 02:44:06.000 1996-12-16 2024-10-11 02:44:06 +9847 9847 9848 984.7 1969.4 9847 1996-12-17 2024-10-11 02:44:07.000 1996-12-17 2024-10-11 02:44:07 +9848 9848 9849 984.8 1969.6000000000001 9848 1996-12-18 2024-10-11 02:44:08.000 1996-12-18 2024-10-11 02:44:08 +9849 9849 9850 984.9 1969.8000000000002 9849 1996-12-19 2024-10-11 02:44:09.000 1996-12-19 2024-10-11 02:44:09 +9851 9851 9852 985.1 1970.2 9851 1996-12-21 2024-10-11 02:44:11.000 1996-12-21 2024-10-11 02:44:11 +9852 9852 9853 985.2 1970.4 9852 1996-12-22 2024-10-11 02:44:12.000 1996-12-22 2024-10-11 02:44:12 +9853 9853 9854 985.3 1970.6000000000001 9853 1996-12-23 2024-10-11 02:44:13.000 1996-12-23 2024-10-11 02:44:13 +9854 9854 9855 985.4 1970.8000000000002 9854 1996-12-24 2024-10-11 02:44:14.000 1996-12-24 2024-10-11 02:44:14 +9856 9856 9857 985.6 1971.2 9856 1996-12-26 2024-10-11 02:44:16.000 1996-12-26 2024-10-11 02:44:16 +9857 9857 9858 985.7 1971.4 9857 1996-12-27 2024-10-11 02:44:17.000 1996-12-27 2024-10-11 02:44:17 +9858 9858 9859 985.8 1971.6000000000001 9858 1996-12-28 2024-10-11 02:44:18.000 1996-12-28 2024-10-11 02:44:18 +9859 9859 9860 985.9 1971.8000000000002 9859 1996-12-29 2024-10-11 02:44:19.000 1996-12-29 2024-10-11 02:44:19 +9861 9861 9862 986.1 1972.2 9861 1996-12-31 2024-10-11 02:44:21.000 1996-12-31 2024-10-11 02:44:21 +9862 9862 9863 986.2 1972.4 9862 1997-01-01 2024-10-11 02:44:22.000 1997-01-01 2024-10-11 02:44:22 +9863 9863 9864 986.3 1972.6000000000001 9863 1997-01-02 2024-10-11 02:44:23.000 1997-01-02 2024-10-11 02:44:23 +9864 9864 9865 986.4 1972.8000000000002 9864 1997-01-03 2024-10-11 02:44:24.000 1997-01-03 2024-10-11 02:44:24 +9866 9866 9867 986.6 1973.2 9866 1997-01-05 2024-10-11 02:44:26.000 1997-01-05 2024-10-11 02:44:26 +9867 9867 9868 986.7 1973.4 9867 1997-01-06 2024-10-11 02:44:27.000 1997-01-06 2024-10-11 02:44:27 +9868 9868 9869 986.8 1973.6000000000001 9868 1997-01-07 2024-10-11 02:44:28.000 1997-01-07 2024-10-11 02:44:28 +9869 9869 9870 986.9 1973.8000000000002 9869 1997-01-08 2024-10-11 02:44:29.000 1997-01-08 2024-10-11 02:44:29 +9871 9871 9872 987.1 1974.2 9871 1997-01-10 2024-10-11 02:44:31.000 1997-01-10 2024-10-11 02:44:31 +9872 9872 9873 987.2 1974.4 9872 1997-01-11 2024-10-11 02:44:32.000 1997-01-11 2024-10-11 02:44:32 +9873 9873 9874 987.3 1974.6000000000001 9873 1997-01-12 2024-10-11 02:44:33.000 1997-01-12 2024-10-11 02:44:33 +9874 9874 9875 987.4 1974.8000000000002 9874 1997-01-13 2024-10-11 02:44:34.000 1997-01-13 2024-10-11 02:44:34 +9876 9876 9877 987.6 1975.2 9876 1997-01-15 2024-10-11 02:44:36.000 1997-01-15 2024-10-11 02:44:36 +9877 9877 9878 987.7 1975.4 9877 1997-01-16 2024-10-11 02:44:37.000 1997-01-16 2024-10-11 02:44:37 +9878 9878 9879 987.8 1975.6000000000001 9878 1997-01-17 2024-10-11 02:44:38.000 1997-01-17 2024-10-11 02:44:38 +9879 9879 9880 987.9 1975.8000000000002 9879 1997-01-18 2024-10-11 02:44:39.000 1997-01-18 2024-10-11 02:44:39 +9881 9881 9882 988.1 1976.2 9881 1997-01-20 2024-10-11 02:44:41.000 1997-01-20 2024-10-11 02:44:41 +9882 9882 9883 988.2 1976.4 9882 1997-01-21 2024-10-11 02:44:42.000 1997-01-21 2024-10-11 02:44:42 +9883 9883 9884 988.3 1976.6000000000001 9883 1997-01-22 2024-10-11 02:44:43.000 1997-01-22 2024-10-11 02:44:43 +9884 9884 9885 988.4 1976.8000000000002 9884 1997-01-23 2024-10-11 02:44:44.000 1997-01-23 2024-10-11 02:44:44 +9886 9886 9887 988.6 1977.2 9886 1997-01-25 2024-10-11 02:44:46.000 1997-01-25 2024-10-11 02:44:46 +9887 9887 9888 988.7 1977.4 9887 1997-01-26 2024-10-11 02:44:47.000 1997-01-26 2024-10-11 02:44:47 +9888 9888 9889 988.8 1977.6000000000001 9888 1997-01-27 2024-10-11 02:44:48.000 1997-01-27 2024-10-11 02:44:48 +9889 9889 9890 988.9 1977.8000000000002 9889 1997-01-28 2024-10-11 02:44:49.000 1997-01-28 2024-10-11 02:44:49 +9891 9891 9892 989.1 1978.2 9891 1997-01-30 2024-10-11 02:44:51.000 1997-01-30 2024-10-11 02:44:51 +9892 9892 9893 989.2 1978.4 9892 1997-01-31 2024-10-11 02:44:52.000 1997-01-31 2024-10-11 02:44:52 +9893 9893 9894 989.3 1978.6000000000001 9893 1997-02-01 2024-10-11 02:44:53.000 1997-02-01 2024-10-11 02:44:53 +9894 9894 9895 989.4 1978.8000000000002 9894 1997-02-02 2024-10-11 02:44:54.000 1997-02-02 2024-10-11 02:44:54 +9896 9896 9897 989.6 1979.2 9896 1997-02-04 2024-10-11 02:44:56.000 1997-02-04 2024-10-11 02:44:56 +9897 9897 9898 989.7 1979.4 9897 1997-02-05 2024-10-11 02:44:57.000 1997-02-05 2024-10-11 02:44:57 +9898 9898 9899 989.8 1979.6000000000001 9898 1997-02-06 2024-10-11 02:44:58.000 1997-02-06 2024-10-11 02:44:58 +9899 9899 9900 989.9 1979.8000000000002 9899 1997-02-07 2024-10-11 02:44:59.000 1997-02-07 2024-10-11 02:44:59 +9901 9901 9902 990.1 1980.2 9901 1997-02-09 2024-10-11 02:45:01.000 1997-02-09 2024-10-11 02:45:01 +9902 9902 9903 990.2 1980.4 9902 1997-02-10 2024-10-11 02:45:02.000 1997-02-10 2024-10-11 02:45:02 +9903 9903 9904 990.3 1980.6000000000001 9903 1997-02-11 2024-10-11 02:45:03.000 1997-02-11 2024-10-11 02:45:03 +9904 9904 9905 990.4 1980.8000000000002 9904 1997-02-12 2024-10-11 02:45:04.000 1997-02-12 2024-10-11 02:45:04 +9906 9906 9907 990.6 1981.2 9906 1997-02-14 2024-10-11 02:45:06.000 1997-02-14 2024-10-11 02:45:06 +9907 9907 9908 990.7 1981.4 9907 1997-02-15 2024-10-11 02:45:07.000 1997-02-15 2024-10-11 02:45:07 +9908 9908 9909 990.8 1981.6000000000001 9908 1997-02-16 2024-10-11 02:45:08.000 1997-02-16 2024-10-11 02:45:08 +9909 9909 9910 990.9 1981.8000000000002 9909 1997-02-17 2024-10-11 02:45:09.000 1997-02-17 2024-10-11 02:45:09 +9911 9911 9912 991.1 1982.2 9911 1997-02-19 2024-10-11 02:45:11.000 1997-02-19 2024-10-11 02:45:11 +9912 9912 9913 991.2 1982.4 9912 1997-02-20 2024-10-11 02:45:12.000 1997-02-20 2024-10-11 02:45:12 +9913 9913 9914 991.3 1982.6000000000001 9913 1997-02-21 2024-10-11 02:45:13.000 1997-02-21 2024-10-11 02:45:13 +9914 9914 9915 991.4 1982.8000000000002 9914 1997-02-22 2024-10-11 02:45:14.000 1997-02-22 2024-10-11 02:45:14 +9916 9916 9917 991.6 1983.2 9916 1997-02-24 2024-10-11 02:45:16.000 1997-02-24 2024-10-11 02:45:16 +9917 9917 9918 991.7 1983.4 9917 1997-02-25 2024-10-11 02:45:17.000 1997-02-25 2024-10-11 02:45:17 +9918 9918 9919 991.8 1983.6000000000001 9918 1997-02-26 2024-10-11 02:45:18.000 1997-02-26 2024-10-11 02:45:18 +9919 9919 9920 991.9 1983.8000000000002 9919 1997-02-27 2024-10-11 02:45:19.000 1997-02-27 2024-10-11 02:45:19 +9921 9921 9922 992.1 1984.2 9921 1997-03-01 2024-10-11 02:45:21.000 1997-03-01 2024-10-11 02:45:21 +9922 9922 9923 992.2 1984.4 9922 1997-03-02 2024-10-11 02:45:22.000 1997-03-02 2024-10-11 02:45:22 +9923 9923 9924 992.3 1984.6000000000001 9923 1997-03-03 2024-10-11 02:45:23.000 1997-03-03 2024-10-11 02:45:23 +9924 9924 9925 992.4 1984.8000000000002 9924 1997-03-04 2024-10-11 02:45:24.000 1997-03-04 2024-10-11 02:45:24 +9926 9926 9927 992.6 1985.2 9926 1997-03-06 2024-10-11 02:45:26.000 1997-03-06 2024-10-11 02:45:26 +9927 9927 9928 992.7 1985.4 9927 1997-03-07 2024-10-11 02:45:27.000 1997-03-07 2024-10-11 02:45:27 +9928 9928 9929 992.8 1985.6000000000001 9928 1997-03-08 2024-10-11 02:45:28.000 1997-03-08 2024-10-11 02:45:28 +9929 9929 9930 992.9 1985.8000000000002 9929 1997-03-09 2024-10-11 02:45:29.000 1997-03-09 2024-10-11 02:45:29 +9931 9931 9932 993.1 1986.2 9931 1997-03-11 2024-10-11 02:45:31.000 1997-03-11 2024-10-11 02:45:31 +9932 9932 9933 993.2 1986.4 9932 1997-03-12 2024-10-11 02:45:32.000 1997-03-12 2024-10-11 02:45:32 +9933 9933 9934 993.3 1986.6000000000001 9933 1997-03-13 2024-10-11 02:45:33.000 1997-03-13 2024-10-11 02:45:33 +9934 9934 9935 993.4 1986.8000000000002 9934 1997-03-14 2024-10-11 02:45:34.000 1997-03-14 2024-10-11 02:45:34 +9936 9936 9937 993.6 1987.2 9936 1997-03-16 2024-10-11 02:45:36.000 1997-03-16 2024-10-11 02:45:36 +9937 9937 9938 993.7 1987.4 9937 1997-03-17 2024-10-11 02:45:37.000 1997-03-17 2024-10-11 02:45:37 +9938 9938 9939 993.8 1987.6000000000001 9938 1997-03-18 2024-10-11 02:45:38.000 1997-03-18 2024-10-11 02:45:38 +9939 9939 9940 993.9 1987.8000000000002 9939 1997-03-19 2024-10-11 02:45:39.000 1997-03-19 2024-10-11 02:45:39 +9941 9941 9942 994.1 1988.2 9941 1997-03-21 2024-10-11 02:45:41.000 1997-03-21 2024-10-11 02:45:41 +9942 9942 9943 994.2 1988.4 9942 1997-03-22 2024-10-11 02:45:42.000 1997-03-22 2024-10-11 02:45:42 +9943 9943 9944 994.3 1988.6000000000001 9943 1997-03-23 2024-10-11 02:45:43.000 1997-03-23 2024-10-11 02:45:43 +9944 9944 9945 994.4 1988.8000000000002 9944 1997-03-24 2024-10-11 02:45:44.000 1997-03-24 2024-10-11 02:45:44 +9946 9946 9947 994.6 1989.2 9946 1997-03-26 2024-10-11 02:45:46.000 1997-03-26 2024-10-11 02:45:46 +9947 9947 9948 994.7 1989.4 9947 1997-03-27 2024-10-11 02:45:47.000 1997-03-27 2024-10-11 02:45:47 +9948 9948 9949 994.8 1989.6000000000001 9948 1997-03-28 2024-10-11 02:45:48.000 1997-03-28 2024-10-11 02:45:48 +9949 9949 9950 994.9 1989.8000000000002 9949 1997-03-29 2024-10-11 02:45:49.000 1997-03-29 2024-10-11 02:45:49 +9951 9951 9952 995.1 1990.2 9951 1997-03-31 2024-10-11 02:45:51.000 1997-03-31 2024-10-11 02:45:51 +9952 9952 9953 995.2 1990.4 9952 1997-04-01 2024-10-11 02:45:52.000 1997-04-01 2024-10-11 02:45:52 +9953 9953 9954 995.3 1990.6000000000001 9953 1997-04-02 2024-10-11 02:45:53.000 1997-04-02 2024-10-11 02:45:53 +9954 9954 9955 995.4 1990.8000000000002 9954 1997-04-03 2024-10-11 02:45:54.000 1997-04-03 2024-10-11 02:45:54 +9956 9956 9957 995.6 1991.2 9956 1997-04-05 2024-10-11 02:45:56.000 1997-04-05 2024-10-11 02:45:56 +9957 9957 9958 995.7 1991.4 9957 1997-04-06 2024-10-11 02:45:57.000 1997-04-06 2024-10-11 02:45:57 +9958 9958 9959 995.8 1991.6000000000001 9958 1997-04-07 2024-10-11 02:45:58.000 1997-04-07 2024-10-11 02:45:58 +9959 9959 9960 995.9 1991.8000000000002 9959 1997-04-08 2024-10-11 02:45:59.000 1997-04-08 2024-10-11 02:45:59 +9961 9961 9962 996.1 1992.2 9961 1997-04-10 2024-10-11 02:46:01.000 1997-04-10 2024-10-11 02:46:01 +9962 9962 9963 996.2 1992.4 9962 1997-04-11 2024-10-11 02:46:02.000 1997-04-11 2024-10-11 02:46:02 +9963 9963 9964 996.3 1992.6000000000001 9963 1997-04-12 2024-10-11 02:46:03.000 1997-04-12 2024-10-11 02:46:03 +9964 9964 9965 996.4 1992.8000000000002 9964 1997-04-13 2024-10-11 02:46:04.000 1997-04-13 2024-10-11 02:46:04 +9966 9966 9967 996.6 1993.2 9966 1997-04-15 2024-10-11 02:46:06.000 1997-04-15 2024-10-11 02:46:06 +9967 9967 9968 996.7 1993.4 9967 1997-04-16 2024-10-11 02:46:07.000 1997-04-16 2024-10-11 02:46:07 +9968 9968 9969 996.8 1993.6000000000001 9968 1997-04-17 2024-10-11 02:46:08.000 1997-04-17 2024-10-11 02:46:08 +9969 9969 9970 996.9 1993.8000000000002 9969 1997-04-18 2024-10-11 02:46:09.000 1997-04-18 2024-10-11 02:46:09 +9971 9971 9972 997.1 1994.2 9971 1997-04-20 2024-10-11 02:46:11.000 1997-04-20 2024-10-11 02:46:11 +9972 9972 9973 997.2 1994.4 9972 1997-04-21 2024-10-11 02:46:12.000 1997-04-21 2024-10-11 02:46:12 +9973 9973 9974 997.3 1994.6000000000001 9973 1997-04-22 2024-10-11 02:46:13.000 1997-04-22 2024-10-11 02:46:13 +9974 9974 9975 997.4 1994.8000000000002 9974 1997-04-23 2024-10-11 02:46:14.000 1997-04-23 2024-10-11 02:46:14 +9976 9976 9977 997.6 1995.2 9976 1997-04-25 2024-10-11 02:46:16.000 1997-04-25 2024-10-11 02:46:16 +9977 9977 9978 997.7 1995.4 9977 1997-04-26 2024-10-11 02:46:17.000 1997-04-26 2024-10-11 02:46:17 +9978 9978 9979 997.8 1995.6000000000001 9978 1997-04-27 2024-10-11 02:46:18.000 1997-04-27 2024-10-11 02:46:18 +9979 9979 9980 997.9 1995.8000000000002 9979 1997-04-28 2024-10-11 02:46:19.000 1997-04-28 2024-10-11 02:46:19 +9981 9981 9982 998.1 1996.2 9981 1997-04-30 2024-10-11 02:46:21.000 1997-04-30 2024-10-11 02:46:21 +9982 9982 9983 998.2 1996.4 9982 1997-05-01 2024-10-11 02:46:22.000 1997-05-01 2024-10-11 02:46:22 +9983 9983 9984 998.3 1996.6000000000001 9983 1997-05-02 2024-10-11 02:46:23.000 1997-05-02 2024-10-11 02:46:23 +9984 9984 9985 998.4 1996.8000000000002 9984 1997-05-03 2024-10-11 02:46:24.000 1997-05-03 2024-10-11 02:46:24 +9986 9986 9987 998.6 1997.2 9986 1997-05-05 2024-10-11 02:46:26.000 1997-05-05 2024-10-11 02:46:26 +9987 9987 9988 998.7 1997.4 9987 1997-05-06 2024-10-11 02:46:27.000 1997-05-06 2024-10-11 02:46:27 +9988 9988 9989 998.8 1997.6000000000001 9988 1997-05-07 2024-10-11 02:46:28.000 1997-05-07 2024-10-11 02:46:28 +9989 9989 9990 998.9 1997.8000000000002 9989 1997-05-08 2024-10-11 02:46:29.000 1997-05-08 2024-10-11 02:46:29 +9991 9991 9992 999.1 1998.2 9991 1997-05-10 2024-10-11 02:46:31.000 1997-05-10 2024-10-11 02:46:31 +9992 9992 9993 999.2 1998.4 9992 1997-05-11 2024-10-11 02:46:32.000 1997-05-11 2024-10-11 02:46:32 +9993 9993 9994 999.3 1998.6000000000001 9993 1997-05-12 2024-10-11 02:46:33.000 1997-05-12 2024-10-11 02:46:33 +9994 9994 9995 999.4 1998.8000000000002 9994 1997-05-13 2024-10-11 02:46:34.000 1997-05-13 2024-10-11 02:46:34 +9996 9996 9997 999.6 1999.2 9996 1997-05-15 2024-10-11 02:46:36.000 1997-05-15 2024-10-11 02:46:36 +9997 9997 9998 999.7 1999.4 9997 1997-05-16 2024-10-11 02:46:37.000 1997-05-16 2024-10-11 02:46:37 +9998 9998 9999 999.8 1999.6000000000001 9998 1997-05-17 2024-10-11 02:46:38.000 1997-05-17 2024-10-11 02:46:38 +9999 9999 10000 999.9 1999.8000000000002 9999 1997-05-18 2024-10-11 02:46:39.000 1997-05-18 2024-10-11 02:46:39 +-- test datetime +select max(time) from test_nullable_native_parquet; +2024-10-11 02:46:39 diff --git a/tests/queries/0_stateless/03214_native_parquet.sql b/tests/queries/0_stateless/03214_native_parquet.sql index 3c0f196fa05..e78e62d5bc6 100644 --- a/tests/queries/0_stateless/03214_native_parquet.sql +++ b/tests/queries/0_stateless/03214_native_parquet.sql @@ -69,3 +69,73 @@ select * from test_native_parquet where date >= '1970-01-10'; -- test datetime select max(time) from test_native_parquet; + +drop table if exists test_nullable_native_parquet; +create table test_nullable_native_parquet (i16 Nullable(Int16), i32 Nullable(Int32), i64 Nullable(Int64), float Nullable(Float32), double Nullable(Float64), string Nullable(String), date32 Nullable(Date32), time64 Nullable(DateTime64), date Nullable(Date), time Nullable(DateTime)) engine=File(Parquet) settings input_format_parquet_use_native_reader=true; +insert into test_nullable_native_parquet select if(number%5, number, NULL), if(number%5, number, NULL), if(number%5, number+1, NULL), if(number%5, 0.1*number, NULL), if(number%5, 0.2*number, NULL), toString(number), if(number%5, number, NULL), if(number%5, toDateTime('2024-10-11 00:00:00') + number, NULL), if(number%5, number, NULL), if(number%5, toDateTime('2024-10-11 00:00:00') + number, NULL) from numbers(10000); +-- test int16 +select sum(i16) from test_nullable_native_parquet; +select * from test_nullable_native_parquet where i16 < 10; +select * from test_nullable_native_parquet where i16 <= 10; +select * from test_nullable_native_parquet where i16 between 10 and 20; +select * from test_nullable_native_parquet where i16 > 9990; +select * from test_nullable_native_parquet where i16 >= 9990; + +-- test int32 +select sum(i32) from test_nullable_native_parquet; +select * from test_nullable_native_parquet where i32 < 10; +select * from test_nullable_native_parquet where i32 <= 10; +select * from test_nullable_native_parquet where i32 between 10 and 20; +select * from test_nullable_native_parquet where i32 > 9990; +select * from test_nullable_native_parquet where i32 >= 9990; + +-- test int64 +select sum(i64) from test_nullable_native_parquet; +select * from test_nullable_native_parquet where i64 < 10; +select * from test_nullable_native_parquet where i64 <= 10; +select * from test_nullable_native_parquet where i64 between 10 and 20; +select * from test_nullable_native_parquet where i64 > 9990; +select * from test_nullable_native_parquet where i64 >= 9990; + +-- test float +select sum(float) from test_nullable_native_parquet; +select * from test_nullable_native_parquet where float < 1; +select * from test_nullable_native_parquet where float <= 1; +select * from test_nullable_native_parquet where float between 1 and 2; +select * from test_nullable_native_parquet where float > 999; +select * from test_nullable_native_parquet where float >= 999; + +-- test double +select sum(double) from test_nullable_native_parquet; +select * from test_nullable_native_parquet where double < 2; +select * from test_nullable_native_parquet where double <= 2; +select * from test_nullable_native_parquet where double between 2 and 4; +select * from test_nullable_native_parquet where double > 9990 *0.2; +select * from test_nullable_native_parquet where double >= 9990 *0.2; + +-- test date +select max(date32) from test_nullable_native_parquet; +select * from test_nullable_native_parquet where date32 < '1970-01-10'; +select * from test_nullable_native_parquet where date32 <= '1970-01-10'; +select * from test_nullable_native_parquet where date32 between '1970-01-10' and '1970-01-20'; +select * from test_nullable_native_parquet where date32 > '1970-01-10'; +select * from test_nullable_native_parquet where date32 >= '1970-01-10'; + +-- test datetime +select max(time64) from test_nullable_native_parquet; + +-- test String +select max(string) from test_nullable_native_parquet; +select * from test_nullable_native_parquet where string = '1'; +select * from test_nullable_native_parquet where string in ('1','2','3'); + +-- test date +select max(date) from test_nullable_native_parquet; +select * from test_nullable_native_parquet where date < '1970-01-10'; +select * from test_nullable_native_parquet where date <= '1970-01-10'; +select * from test_nullable_native_parquet where date between '1970-01-10' and '1970-01-20'; +select * from test_nullable_native_parquet where date > '1970-01-10'; +select * from test_nullable_native_parquet where date >= '1970-01-10'; + +-- test datetime +select max(time) from test_nullable_native_parquet; From 886720ca64ffeb1aac78f5b3d11940e504f37541 Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Mon, 14 Oct 2024 11:43:02 +0800 Subject: [PATCH 28/34] fix ut --- .../Formats/Impl/Parquet/ColumnFilter.cpp | 8 ++- .../Formats/Impl/Parquet/ColumnFilter.h | 8 +-- .../Parquet/ParquetColumnReaderFactory.cpp | 2 +- .../Formats/Impl/Parquet/ParquetReader.cpp | 5 +- .../Impl/Parquet/SelectiveColumnReader.cpp | 64 +++++++++---------- .../Impl/Parquet/SelectiveColumnReader.h | 3 +- .../03214_native_parquet.reference | 4 +- 7 files changed, 45 insertions(+), 49 deletions(-) diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp index 307071ff6b7..58ee97b1857 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp @@ -1,6 +1,7 @@ #include "ColumnFilter.h" #include #include +#include #include #include #include @@ -780,8 +781,9 @@ IColumn::Filter ExpressionFilter::execute(const ColumnsWithTypeAndName & columns { auto block = Block(columns); actions->execute(block); - auto filter_column = block.getByName(filter_name).column->assumeMutable(); - ColumnUInt8 * uint8_col = static_cast(filter_column.get()); + FilterDescription filter_desc(*block.getByName(filter_name).column); + auto mutable_column = filter_desc.data_holder ? filter_desc.data_holder->assumeMutable() : block.getByName(filter_name).column->assumeMutable(); + ColumnUInt8 * uint8_col = static_cast(mutable_column.get()); IColumn::Filter filter; filter.swap(uint8_col->getData()); return filter; @@ -800,7 +802,7 @@ ExpressionFilter::ExpressionFilter(ActionsDAG && dag_) { actions = std::make_shared(std::move(dag_)); filter_name = actions->getActionsDAG().getOutputs().front()->result_name; - if (!isUInt8(actions->getActionsDAG().getOutputs().front()->result_type)) + if (!isUInt8(removeNullable(actions->getActionsDAG().getOutputs().front()->result_type))) { throw Exception(ErrorCodes::LOGICAL_ERROR, "Filter result type must be UInt8"); } diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h index 2c7dffa6eae..a3b2411f586 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h @@ -41,13 +41,7 @@ public: void setAllFalse() { std::fill(mask.begin(), mask.end(), false); } size_t count() const { - size_t count = 0; - for (size_t i = 0; i < max_rows; ++i) - { - if (mask[i]) - ++count; - } - return count; + return countBytesInFilter(reinterpret_cast(mask.data()), 0, mask.size()); } PaddedPODArray & maskReference() { return mask; } const PaddedPODArray & maskReference() const { return mask; } diff --git a/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp b/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp index 929d86dc6a9..ca1e43bb2d1 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp +++ b/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp @@ -253,7 +253,7 @@ ParquetColumnReaderFactory::Builder & ParquetColumnReaderFactory::Builder::filte ParquetColumnReaderFactory::Builder & ParquetColumnReaderFactory::Builder::targetType(const DataTypePtr & target_type) { - target_type_ = target_type; + target_type_ = removeNullable(target_type); return *this; } diff --git a/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp b/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp index 190d34406c6..a353af8e509 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp @@ -1,7 +1,6 @@ #include "ParquetReader.h" #include #include -#include #include namespace DB @@ -75,12 +74,12 @@ Block ParquetReader::read() } void ParquetReader::addFilter(const String & column_name, const ColumnFilterPtr filter) { - std::cerr << "add filter to column " << column_name << ": " << filter->toString() << std::endl; +// std::cerr << "add filter to column " << column_name << ": " << filter->toString() << std::endl; if (!filters.contains(column_name)) filters[column_name] = filter; else filters[column_name] = filters[column_name]->merge(filter.get()); - std::cerr << "filter on column " << column_name << ": " << filters[column_name]->toString() << std::endl; +// std::cerr << "filter on column " << column_name << ": " << filters[column_name]->toString() << std::endl; } void ParquetReader::setRemainFilter(std::optional & expr) { diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index 7fac7c947b1..007ebfdbc27 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -252,6 +252,8 @@ static void computeRowSetPlainSpace( sets.set(i, filter->testInt64(start[count])); else if constexpr (std::is_same_v) sets.set(i, filter->testInt32(start[count])); + else if constexpr (std::is_same_v) + sets.set(i, filter->testInt16(start[count])); else if constexpr (std::is_same_v) sets.set(i, filter->testFloat32(start[count])); else if constexpr (std::is_same_v) @@ -332,36 +334,29 @@ void NumberDictionaryReader::computeRowSetSpace( auto nonnull_count = rows_to_read - null_count; nextIdxBatchIfEmpty(nonnull_count); - auto & cache = *state.filter_cache; int count = 0; auto & sets = row_set.value(); for (size_t i = 0; i < rows_to_read; ++i) { if (null_map[i]) { - if (!cache.hasNull()) - { - cache.setNull(scan_spec.filter->testNull()); - } - sets.set(i, cache.getNull()); + sets.set(i, scan_spec.filter->testNull()); } else { - int idx = state.idx_buffer[count++]; - if (!cache.has(idx)) - { - if constexpr (std::is_same_v) - cache.set(idx, scan_spec.filter->testInt64(dict[idx])); - else if constexpr (std::is_same_v) - cache.set(idx, scan_spec.filter->testInt32(dict[idx])); - else if constexpr (std::is_same_v) - cache.set(idx, scan_spec.filter->testFloat32(dict[idx])); - else if constexpr (std::is_same_v) - cache.set(idx, scan_spec.filter->testFloat64(dict[idx])); - else - throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unsupported type"); - } - sets.set(i, cache.get(idx)); + auto value = batch_buffer[count++]; + if constexpr (std::is_same_v) + sets.set(i, scan_spec.filter->testInt64(value)); + else if constexpr (std::is_same_v) + sets.set(i, scan_spec.filter->testInt32(value)); + else if constexpr (std::is_same_v) + sets.set(i, scan_spec.filter->testInt16(value)); + else if constexpr (std::is_same_v) + sets.set(i, scan_spec.filter->testFloat32(value)); + else if constexpr (std::is_same_v) + sets.set(i, scan_spec.filter->testFloat64(value)); + else + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unsupported type"); } } } @@ -388,7 +383,6 @@ void NumberDictionaryReader::read(MutableColumnPtr & c size_t count = idx_decoder.GetBatchWithDict(dict.data() , static_cast(dict.size()), data.data() + old_size, static_cast(rows_to_read)); if (count != rows_to_read) throw DB::Exception(ErrorCodes::LOGICAL_ERROR, "read full idx batch failed. read {} rows, expect {}", count, rows_to_read); - } batch_buffer.resize(0); @@ -401,13 +395,15 @@ void NumberDictionaryReader::readSpace( MutableColumnPtr & column, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) { readAndDecodePage(); - auto * int_column = static_cast(column.get()); - auto & data = int_column->getData(); - nextIdxBatchIfEmpty(rows_to_read - null_count); + auto * number_column = static_cast(column.get()); + auto & data = number_column->getData(); if (plain) plain_decoder->decodeFixedValueSpace(data, row_set, null_map, rows_to_read); else - dict_decoder->decodeFixedValueSpace(dict, data, row_set, null_map, rows_to_read); + { + nextIdxBatchIfEmpty(rows_to_read - null_count); + dict_decoder->decodeFixedValueSpace(batch_buffer, data, row_set, null_map, rows_to_read); + } } template @@ -416,7 +412,6 @@ void NumberDictionaryReader::readDictPage(const parque const SerializedType * dict_data = reinterpret_cast(page.data()); size_t dict_size = page.num_values(); dict.resize(dict_size); - state.filter_cache = std::make_unique(dict_size); if constexpr (std::is_same_v) memcpy(dict.data(), dict_data, dict_size * sizeof(typename DataType::FieldType)); else @@ -571,6 +566,10 @@ void OptionalColumnReader::skipPageIfNeed() state.lazy_skip_rows = child->state.lazy_skip_rows; child->state.lazy_skip_rows = 0; } +size_t OptionalColumnReader::availableRows() const +{ + return child->availableRows() - state.lazy_skip_rows; +} template class NumberColumnDirectReader; template class NumberColumnDirectReader; @@ -998,7 +997,7 @@ void DictDecoder::decodeFixedValue( } template void DictDecoder::decodeFixedValueSpace( - PaddedPODArray & dict, + PaddedPODArray & batch_buffer, PaddedPODArray & data, const OptionalRowSet & row_set, PaddedPODArray & null_map, @@ -1016,7 +1015,7 @@ void DictDecoder::decodeFixedValueSpace( if (null_map[rows_read]) data.push_back(0); else - data.push_back(dict[idx_buffer[count++]]); + data.push_back(batch_buffer[count++]); } else if (!null_map[rows_read]) count++; @@ -1030,13 +1029,14 @@ void DictDecoder::decodeFixedValueSpace( if (null_map[rows_read]) data.push_back(0); else - data.push_back(dict[idx_buffer[count++]]); + data.push_back(batch_buffer[count++]); rows_read++; } } - chassert(count == idx_buffer.size()); + chassert(count == batch_buffer.size()); remain_rows -= rows_to_read; idx_buffer.resize(0); + batch_buffer.resize(0); } void PlainDecoder::decodeString( ColumnString::Chars & chars, IColumn::Offsets & offsets, const OptionalRowSet & row_set, size_t rows_to_read) @@ -1143,7 +1143,7 @@ void PlainDecoder::decodeStringSpace( } template void PlainDecoder::decodeFixedValueSpace( - PaddedPODArray & data, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t rows_to_read) + PaddedPODArray & data, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t rows_to_read) { size_t rows_read = 0; const S * start = reinterpret_cast(buffer); diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h index abe76d1eec0..bf4a22f0635 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h @@ -230,7 +230,7 @@ public: } virtual size_t currentRemainRows() const { return state.remain_rows; } - size_t availableRows() const { return std::max(state.remain_rows - state.lazy_skip_rows, 0UL); } + virtual size_t availableRows() const { return std::max(state.remain_rows - state.lazy_skip_rows, 0UL); } void skipNulls(size_t rows_to_skip); @@ -399,6 +399,7 @@ public: size_t skipValuesInCurrentPage(size_t rows_to_skip) override; int16_t max_definition_level() const override { return child->max_definition_level(); } int16_t max_repetition_level() const override { return child->max_repetition_level(); } + size_t availableRows() const override; private: void applyLazySkip(); diff --git a/tests/queries/0_stateless/03214_native_parquet.reference b/tests/queries/0_stateless/03214_native_parquet.reference index 800cc1a99de..503604f5cce 100644 --- a/tests/queries/0_stateless/03214_native_parquet.reference +++ b/tests/queries/0_stateless/03214_native_parquet.reference @@ -1,7 +1,7 @@ -- { echoOn } -- support data types: Int16, Int32, Int64, Float32, Float64, String, Date32, DateTime64, Date, DateTime drop table if exists test_native_parquet; -create table test_native_parquet (i16 Int16, i32 Int32, i64 Int64, float Float32, double Float64, string String, date32 Date32, time64 DateTime64, date Date, time DateTime) engine=File(Parquet) settings input_format_parquet_use_native_reader=false; +create table test_native_parquet (i16 Int16, i32 Int32, i64 Int64, float Float32, double Float64, string String, date32 Date32, time64 DateTime64, date Date, time DateTime) engine=File(Parquet) settings input_format_parquet_use_native_reader=true; insert into test_native_parquet select number, number, number+1, 0.1*number, 0.2*number, toString(number), number, toDateTime('2024-10-11 00:00:00') + number, number, toDateTime('2024-10-11 00:00:00') + number from numbers(10000); -- test int16 select sum(i16) from test_native_parquet; @@ -40352,7 +40352,7 @@ select * from test_native_parquet where date >= '1970-01-10'; select max(time) from test_native_parquet; 2024-10-11 02:46:39 drop table if exists test_nullable_native_parquet; -create table test_nullable_native_parquet (i16 Nullable(Int16), i32 Nullable(Int32), i64 Nullable(Int64), float Nullable(Float32), double Nullable(Float64), string Nullable(String), date32 Nullable(Date32), time64 Nullable(DateTime64), date Nullable(Date), time Nullable(DateTime)) engine=File(Parquet) settings input_format_parquet_use_native_reader=false; +create table test_nullable_native_parquet (i16 Nullable(Int16), i32 Nullable(Int32), i64 Nullable(Int64), float Nullable(Float32), double Nullable(Float64), string Nullable(String), date32 Nullable(Date32), time64 Nullable(DateTime64), date Nullable(Date), time Nullable(DateTime)) engine=File(Parquet) settings input_format_parquet_use_native_reader=true; insert into test_nullable_native_parquet select if(number%5, number, NULL), if(number%5, number, NULL), if(number%5, number+1, NULL), if(number%5, 0.1*number, NULL), if(number%5, 0.2*number, NULL), toString(number), if(number%5, number, NULL), if(number%5, toDateTime('2024-10-11 00:00:00') + number, NULL), if(number%5, number, NULL), if(number%5, toDateTime('2024-10-11 00:00:00') + number, NULL) from numbers(10000); -- test int16 select sum(i16) from test_nullable_native_parquet; From 8bac62e55c989b05d335d2b947a97d67b8955bf8 Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Mon, 14 Oct 2024 11:47:37 +0800 Subject: [PATCH 29/34] remove useless code --- .../Formats/Impl/Parquet/ColumnFilter.cpp | 92 +--- .../tests/gtest_native_parquet_reader.cpp | 437 ------------------ .../0_stateless/03214_hits_parquet.reference | 425 ----------------- .../0_stateless/03214_hits_parquet.sql | 156 ------- .../03214_native_parquet_benchmark.sql | 59 --- 5 files changed, 1 insertion(+), 1168 deletions(-) delete mode 100644 tests/queries/0_stateless/03214_hits_parquet.reference delete mode 100644 tests/queries/0_stateless/03214_hits_parquet.sql delete mode 100644 tests/queries/0_stateless/03214_native_parquet_benchmark.sql diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp index 58ee97b1857..eea7995838e 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp @@ -580,97 +580,7 @@ OptionalFilter NegatedBigIntRangeFilter::create(const ActionsDAG::Node & node) } ColumnFilterPtr NegatedBigIntRangeFilter::merge(const ColumnFilter * ) const { -// switch (other->kind()) { -// case ColumnFilterKind::AlwaysTrue: -// case ColumnFilterKind::AlwaysFalse: -// case ColumnFilterKind::IsNull: -// return other->merge(this); -// case ColumnFilterKind::IsNotNull: -// return this->clone(false); -// case ColumnFilterKind::BigIntRange: { -// bool bothNullAllowed = null_allowed && other->testNull(); -// auto otherRange = static_cast(other); -// std::vector> rangeList; -// rangeList.emplace_back(std::make_unique( -// otherRange->getMin(), otherRange->getUpper(), false)); -// return combineNegatedRangeOnIntRanges( -// this->lower(), this->get(), rangeList, bothNullAllowed); -// } -// case FilterKind::kNegatedBigintRange: { -// bool bothNullAllowed = nullAllowed_ && other->testNull(); -// auto otherNegatedRange = static_cast(other); -// if (this->lower() > otherNegatedRange->lower()) { -// return other->mergeWith(this); -// } -// assert(this->lower() <= otherNegatedRange->lower()); -// if (this->upper() + 1 < otherNegatedRange->lower()) { -// std::vector> outRanges; -// int64_t smallLower = this->lower(); -// int64_t smallUpper = this->upper(); -// int64_t bigLower = otherNegatedRange->lower(); -// int64_t bigUpper = otherNegatedRange->upper(); -// if (smallLower > std::numeric_limits::min()) { -// outRanges.emplace_back(std::make_unique( -// std::numeric_limits::min(), smallLower - 1, false)); -// } -// if (smallUpper < std::numeric_limits::max() && -// bigLower > std::numeric_limits::min()) { -// outRanges.emplace_back(std::make_unique( -// smallUpper + 1, bigLower - 1, false)); -// } -// if (bigUpper < std::numeric_limits::max()) { -// outRanges.emplace_back(std::make_unique( -// bigUpper + 1, std::numeric_limits::max(), false)); -// } -// return combineBigintRanges(std::move(outRanges), bothNullAllowed); -// } -// return std::make_unique( -// this->lower(), -// std::max(this->upper(), otherNegatedRange->upper()), -// bothNullAllowed); -// } -// case FilterKind::kBigintMultiRange: { -// bool bothNullAllowed = nullAllowed_ && other->testNull(); -// auto otherMultiRanges = static_cast(other); -// return combineNegatedRangeOnIntRanges( -// this->lower(), -// this->upper(), -// otherMultiRanges->ranges(), -// bothNullAllowed); -// } -// case FilterKind::kBigintValuesUsingHashTable: -// case FilterKind::kBigintValuesUsingBitmask: -// return other->mergeWith(this); -// case FilterKind::kNegatedBigintValuesUsingHashTable: -// case FilterKind::kNegatedBigintValuesUsingBitmask: { -// bool bothNullAllowed = nullAllowed_ && other->testNull(); -// std::vector rejectedValues; -// if (other->kind() == FilterKind::kNegatedBigintValuesUsingHashTable) { -// auto otherHashTable = -// static_cast(other); -// rejectedValues = otherHashTable->values(); -// } else { -// auto otherBitmask = -// static_cast(other); -// rejectedValues = otherBitmask->values(); -// } -// if (nonNegated_->isSingleValue()) { -// if (other->testInt64(this->lower())) { -// rejectedValues.push_back(this->lower()); -// } -// return createNegatedBigintValues(rejectedValues, bothNullAllowed); -// } -// return combineNegatedRangeOnIntRanges( -// this->lower(), -// this->upper(), -// negatedValuesToRanges(rejectedValues), -// bothNullAllowed); -// } -// default: -// VELOX_UNREACHABLE(); - - throw DB::Exception(ErrorCodes::PARQUET_EXCEPTION, "Unsupported merge operation"); -// } + throw DB::Exception(ErrorCodes::PARQUET_EXCEPTION, "Unsupported merge operation"); } DB::OptionalFilter DB::NegatedByteValuesFilter::create(const ActionsDAG::Node & node) diff --git a/src/Processors/tests/gtest_native_parquet_reader.cpp b/src/Processors/tests/gtest_native_parquet_reader.cpp index b9df5aaa1e8..a61b31910fd 100644 --- a/src/Processors/tests/gtest_native_parquet_reader.cpp +++ b/src/Processors/tests/gtest_native_parquet_reader.cpp @@ -24,443 +24,6 @@ using namespace DB; - -void headBlock(const DB::Block & block, size_t count) -{ - std::cout << "============Block============" << std::endl; - std::cout << block.dumpStructure() << std::endl; - // print header - for (const auto & name : block.getNames()) - std::cout << name << "\t"; - std::cout << std::endl; - - // print rows - for (size_t row = 0; row < std::min(count, block.rows()); ++row) - { - for (size_t column = 0; column < block.columns(); ++column) - { - const auto type = block.getByPosition(column).type; - auto col = block.getByPosition(column).column; - - if (column > 0) - std::cout << "\t"; - DB::WhichDataType which(type); - if (which.isAggregateFunction()) - std::cout << "Nan"; - else if (col->isNullAt(row)) - std::cout << "null"; - else - std::cout << toString((*col)[row]); - } - std::cout << std::endl; - } -} - - -void writeParquet(Chunk && chunk, const Block & header, const String & path) -{ - WriteBufferFromFile out(path); - FormatSettings formatSettings; - formatSettings.parquet.use_native_reader = false; - formatSettings.parquet.use_custom_encoder = false; - auto parquet_output = std::make_shared(out, header, formatSettings); - - QueryPipelineBuilder builder; - builder.init(Pipe(std::make_shared(header, std::move(chunk)))); - auto pipeline = QueryPipelineBuilder::getPipeline(std::move(builder)); - pipeline.complete(std::move(parquet_output)); - CompletedPipelineExecutor executor(pipeline); - executor.execute(); -} - -std::unique_ptr openParquet(const Block & header, ReadBufferFromFile & in) -{ - parquet::ArrowReaderProperties arrow_properties; - parquet::ReaderProperties reader_properties(ArrowMemoryPool::instance()); - arrow_properties.set_use_threads(false); - arrow_properties.set_batch_size(DEFAULT_BLOCK_SIZE); - - arrow_properties.set_pre_buffer(true); - auto cache_options = arrow::io::CacheOptions::LazyDefaults(); - cache_options.hole_size_limit = 10000000; - cache_options.range_size_limit = 1l << 40; // reading the whole row group at once is fine - arrow_properties.set_cache_options(cache_options); - std::atomic is_cancelled{0}; - FormatSettings settings; - settings.parquet.max_block_size = 8192; - auto arrow_file = asArrowFile(in, settings, is_cancelled, "Parquet", PARQUET_MAGIC_BYTES, /* avoid_buffering */ true); - return std::make_unique( - header.cloneEmpty(), in, arrow_properties, reader_properties, arrow_file, settings); -} - -void testOldParquet(const Block & header, ReadBufferFromFile & in) -{ - QueryPipelineBuilder builder; - FormatSettings settings; - - auto format = std::make_shared(in, header, settings, 1, 1024 * 1024); - builder.init(Pipe(format)); - auto pipeline = QueryPipelineBuilder::getPipeline(std::move(builder)); - PullingPipelineExecutor executor(pipeline); - int count [[maybe_unused]] = 0; - while (true) - { - Block block; - executor.pull(block); - count += block.rows(); - if (block.rows() == 0) - break; - } - // std::cerr << "total count: " << count << std::endl; -} - -void benchmark(String name, int count, std::function testcase) -{ - std::vector times; - for (int i = 0; i < count; ++i) - { - Stopwatch time; - testcase(); - times.push_back(time.elapsedMicroseconds()); - // std::cerr << "iteration: " << i << " time : " << time.elapsedMilliseconds() << std::endl; - } - std::cerr << name << " Time: " << *std::min_element(times.begin(), times.end()) << std::endl; -} - -TEST(Processors, BenchmarkReadInt64) -{ - auto col1 = ColumnInt64::create(); - auto col2 = ColumnInt64::create(); - auto col3 = ColumnInt64::create(); - auto col4 = ColumnInt64::create(); - auto col5 = ColumnInt64::create(); - auto col6 = ColumnInt64::create(); - auto col7 = ColumnInt64::create(); - - int rows = 10000000; - for (int i = 0; i < rows; ++i) - { - col1->insertValue(std::rand() % 100); - col2->insertValue(i); - col3->insertValue(i+1); - col4->insertValue(i+2); - col5->insertValue(i+3); - col6->insertValue(i+4); - col7->insertValue(i+5); - } - Columns columns; - columns.emplace_back(std::move(col1)); - columns.emplace_back(std::move(col2)); - columns.emplace_back(std::move(col3)); - columns.emplace_back(std::move(col4)); - columns.emplace_back(std::move(col5)); - columns.emplace_back(std::move(col6)); - columns.emplace_back(std::move(col7)); - - Chunk chunk(std::move(columns), rows); - - Block header - = {ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "x"), - ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "y1"), - ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "y2"), - ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "y3"), - ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "y4"), - ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "y5"), - ColumnWithTypeAndName(ColumnInt64::create(), std::make_shared(), "z")}; - const auto * path = "/tmp/test.parquet"; - writeParquet(std::move(chunk), header, path); - - auto old_test [[maybe_unused]] = [&]() - { - ReadBufferFromFile in(path); - testOldParquet(header, in); - }; - - auto new_test = [&]() - { - ReadBufferFromFile in(path); - auto reader = openParquet(header, in); - reader->addFilter("x", std::make_shared(-1, -1, false)); - int count [[maybe_unused]] = 0; - while (auto block = reader->read()) - { - count += block.rows(); - if (block.rows() == 0) - break; - } - std::cerr << "total count: " << count << std::endl; - }; - std::cerr << "start benchmark \n"; -// benchmark("arrow", 50, old_test); - benchmark("native", 1, new_test); -} - - -TEST(Processors, TestReadNullableInt64) -{ - auto type = makeNullable(std::make_shared()); - auto col1 = type->createColumn(); - auto col2 = type->createColumn(); - auto col3 = type->createColumn(); - int rows = 500000; - for (int i = 0; i < rows; ++i) - { - if (i % 9 != 0) - { - col1->insert(i); - col2->insert(std::rand()); - } - else - { - col1->insertDefault(); - col2->insertDefault(); - } - col3->insert(std::rand()); - } - Columns columns; - columns.emplace_back(std::move(col1)); - columns.emplace_back(std::move(col2)); - columns.emplace_back(std::move(col3)); - Chunk chunk(std::move(columns), rows); - - - Block header - = {ColumnWithTypeAndName(type->createColumn(), type, "x"), - ColumnWithTypeAndName(type->createColumn(), type, "y"), - ColumnWithTypeAndName(type->createColumn(), type, "z")}; - auto path = "/tmp/test.parquet"; - writeParquet(std::move(chunk), header, path); - - ReadBufferFromFile in(path); - auto reader = openParquet(header, in); - // reader->addFilter("x", std::make_shared( 1000, 2000)); - int count = 0; - int null_count2 = 0; - while (auto block = reader->read()) - { - if (block.rows() == 0) - break; - auto column2 = block.getByPosition(1).column; - for (size_t i = 0; i < column2->size(); ++i) - { - if (column2->isNullAt(i)) - null_count2++; - } - count += block.rows(); - } - ASSERT_EQ(count, 890); - ASSERT_EQ(0, null_count2); -} - -TEST(Processors, TestReadNullableFloat) -{ - auto float_type = makeNullable(std::make_shared()); - auto double_type = makeNullable(std::make_shared()); - - auto col1 = float_type->createColumn(); - auto col2 = double_type->createColumn(); - auto col3 = double_type->createColumn(); - int rows = 500000; - for (int i = 0; i < rows; ++i) - { - if (i % 9 != 0) - { - col1->insert(i * 0.1); - col2->insert(std::rand() * 0.1); - } - else - { - col1->insertDefault(); - col2->insertDefault(); - } - col3->insert(std::rand() * 0.1); - } - Columns columns; - columns.emplace_back(std::move(col1)); - columns.emplace_back(std::move(col2)); - columns.emplace_back(std::move(col3)); - Chunk chunk(std::move(columns), rows); - - - Block header - = {ColumnWithTypeAndName(float_type->createColumn(), float_type, "x"), - ColumnWithTypeAndName(double_type->createColumn(), double_type, "y"), - ColumnWithTypeAndName(double_type->createColumn(), double_type, "z")}; - headBlock(header.cloneWithColumns(chunk.getColumns()), 20); - auto path = "/tmp/test.parquet"; - writeParquet(std::move(chunk), header, path); - - ReadBufferFromFile in(path); - auto reader = openParquet(header, in); - // reader->addFilter("x", std::make_shared( 1000, 2000)); - int count = 0; - int null_count2 = 0; - bool first = true; - while (auto block = reader->read()) - { - if (block.rows() == 0) - break; - if (first) - { - headBlock(block, 20); - first = false; - } - auto column2 = block.getByPosition(1).column; - for (size_t i = 0; i < column2->size(); ++i) - { - if (column2->isNullAt(i)) - null_count2++; - } - count += block.rows(); - } - ASSERT_EQ(count, 500000); - ASSERT_EQ(55556, null_count2); -} - -TEST(Processors, TestReadNullableString) -{ - auto string_type = makeNullable(std::make_shared()); - - auto col1 = string_type->createColumn(); - auto col2 = string_type->createColumn(); - auto col3 = string_type->createColumn(); - int rows = 500000; - for (int i = 0; i < rows; ++i) - { - if (i % 9 != 0) - { - col1->insert(std::to_string(i % 100)); - col2->insert(std::to_string(std::rand())); - } - else - { - col1->insertDefault(); - col2->insertDefault(); - } - col3->insert(std::to_string(std::rand() * 0.1)); - } - Columns columns; - columns.emplace_back(std::move(col1)); - columns.emplace_back(std::move(col2)); - columns.emplace_back(std::move(col3)); - Chunk chunk(std::move(columns), rows); - - - Block header - = {ColumnWithTypeAndName(string_type->createColumn(), string_type, "x"), - ColumnWithTypeAndName(string_type->createColumn(), string_type, "y"), - ColumnWithTypeAndName(string_type->createColumn(), string_type, "z")}; - headBlock(header.cloneWithColumns(chunk.getColumns()), 20); - auto path = "/tmp/test.parquet"; - writeParquet(std::move(chunk), header, path); - - ReadBufferFromFile in(path); - auto reader = openParquet(header, in); - reader->addFilter("x", std::make_shared(std::vector{"0", "1", "2", "3"}, false)); - int count = 0; - int null_count2 = 0; - bool first = true; - while (auto block = reader->read()) - { - if (block.rows() == 0) - break; - if (first) - { - headBlock(block, 20); - first = false; - } - auto column2 = block.getByPosition(1).column; - for (size_t i = 0; i < column2->size(); ++i) - { - if (column2->isNullAt(i)) - null_count2++; - } - count += block.rows(); - } - ASSERT_EQ(count, 17779); - ASSERT_EQ(0, null_count2); -} - - -TEST(Processors, BenchmarkReadNullableString) -{ - auto string_type = makeNullable(std::make_shared()); - - auto col1 = string_type->createColumn(); - auto col2 = string_type->createColumn(); - auto col3 = string_type->createColumn(); - auto col4 = string_type->createColumn(); - auto col5 = string_type->createColumn(); - auto col6 = string_type->createColumn(); - auto col7 = string_type->createColumn(); - int rows = 5000000; - for (int i = 0; i < rows; ++i) - { - if (i % 9 != 0) - { - col1->insert(std::to_string(i % 100)); - col2->insert(std::to_string(std::rand())); - } - else - { - col1->insertDefault(); - col2->insertDefault(); - } - col3->insert(std::to_string(std::rand() * 0.1)); - col4->insert(std::to_string(std::rand() * 0.1)); - col5->insert(std::to_string(std::rand() * 0.1)); - col6->insert(std::to_string(std::rand() * 0.1)); - col7->insert(std::to_string(std::rand() * 0.1)); - } - Columns columns; - columns.emplace_back(std::move(col1)); - columns.emplace_back(std::move(col2)); - columns.emplace_back(std::move(col3)); - columns.emplace_back(std::move(col4)); - columns.emplace_back(std::move(col5)); - columns.emplace_back(std::move(col6)); - columns.emplace_back(std::move(col7)); - Chunk chunk(std::move(columns), rows); - - - Block header = { - ColumnWithTypeAndName(string_type->createColumn(), string_type, "x"), - ColumnWithTypeAndName(string_type->createColumn(), string_type, "y"), - ColumnWithTypeAndName(string_type->createColumn(), string_type, "z"), - ColumnWithTypeAndName(string_type->createColumn(), string_type, "a"), - ColumnWithTypeAndName(string_type->createColumn(), string_type, "b"), - ColumnWithTypeAndName(string_type->createColumn(), string_type, "c"), - ColumnWithTypeAndName(string_type->createColumn(), string_type, "d"), - }; - auto path = "/tmp/test.parquet"; - writeParquet(std::move(chunk), header, path); - - auto old_test [[maybe_unused]] = [&]() - { - ReadBufferFromFile in(path); - testOldParquet(header, in); - }; - - auto new_test = [&]() - { - ReadBufferFromFile in(path); - auto reader = openParquet(header, in); - reader->addFilter( - "x", std::make_shared(std::vector{"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"}, false)); - int count [[maybe_unused]] = 0; - while (auto block = reader->read()) - { - count += block.rows(); - if (block.rows() == 0) - break; - } - std::cerr << "total count: " << count << std::endl; - }; - std::cerr << "start benchmark \n"; - benchmark("arrow", 21, old_test); - benchmark("native", 21, new_test); -} - template static void testFilterPlainFixedData(int size, double positive_rate) { diff --git a/tests/queries/0_stateless/03214_hits_parquet.reference b/tests/queries/0_stateless/03214_hits_parquet.reference deleted file mode 100644 index a2631e908ff..00000000000 --- a/tests/queries/0_stateless/03214_hits_parquet.reference +++ /dev/null @@ -1,425 +0,0 @@ --- { echoOn } -SELECT COUNT(*) FROM hits; -99997497 -SELECT COUNT(*) FROM hits WHERE AdvEngineID <> 0; -630500 -SELECT SUM(AdvEngineID), COUNT(*), AVG(ResolutionWidth) FROM hits; -7280088 99997497 1513.4879349030107 -SELECT AVG(UserID) FROM hits; --55945124888.916016 -SELECT COUNT(DISTINCT UserID) FROM hits; -17630976 -SELECT COUNT(DISTINCT SearchPhrase) FROM hits; -6019103 -SELECT MIN(EventDate), MAX(EventDate) FROM hits; -2013-07-02 2013-07-31 -SELECT AdvEngineID, COUNT(*) FROM hits WHERE AdvEngineID <> 0 GROUP BY AdvEngineID ORDER BY COUNT(*) DESC; -2 404602 -27 113167 -13 45631 -45 38960 -44 9730 -3 6896 -62 5266 -52 3554 -50 938 -28 836 -53 350 -25 343 -61 158 -21 38 -42 20 -16 7 -7 3 -22 1 -SELECT RegionID, COUNT(DISTINCT UserID) AS u FROM hits GROUP BY RegionID ORDER BY u DESC LIMIT 10; -229 2845673 -2 1081016 -208 831676 -169 604583 -184 322661 -158 307152 -34 299479 -55 286525 -107 272448 -42 243181 -SELECT RegionID, SUM(AdvEngineID), COUNT(*) AS c, AVG(ResolutionWidth), COUNT(DISTINCT UserID) FROM hits GROUP BY RegionID ORDER BY c DESC LIMIT 10; -229 2077656 18295832 1506.085243130785 2845673 -2 441662 6687587 1479.8386542111527 1081016 -208 285925 4261812 1285.2593246722286 831676 -169 100887 3320229 1465.9073732564832 604583 -32 81498 1843518 1538.0376568061718 216010 -34 161779 1792369 1548.360152401654 299479 -184 55526 1755192 1506.8082967561384 322661 -42 108820 1542717 1587.1085208758313 243181 -107 120470 1516690 1548.6028970982863 272448 -51 98212 1435578 1579.8860354505293 211505 -SELECT MobilePhoneModel, COUNT(DISTINCT UserID) AS u FROM hits WHERE MobilePhoneModel <> '' GROUP BY MobilePhoneModel ORDER BY u DESC LIMIT 10; -iPad 1090347 -iPhone 45758 -A500 16046 -N8-00 5565 -iPho 3300 -ONE TOUCH 6030A 2759 -GT-P7300B 1907 -3110000 1871 -GT-I9500 1598 -eagle75 1492 -SELECT MobilePhone, MobilePhoneModel, COUNT(DISTINCT UserID) AS u FROM hits WHERE MobilePhoneModel <> '' GROUP BY MobilePhone, MobilePhoneModel ORDER BY u DESC LIMIT 10; -1 iPad 931038 -5 iPad 48385 -6 iPad 29710 -7 iPad 28391 -118 A500 16005 -6 iPhone 14516 -26 iPhone 13566 -10 iPad 11433 -32 iPad 9503 -13 iPad 9417 -SELECT SearchPhrase, COUNT(*) AS c FROM hits WHERE SearchPhrase <> '' GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10; -карелки 70263 -албатрутдин 34675 -смотреть онлайн 24580 -смотреть онлайн бесплатно 21647 -смотреть 19707 -мангу в зарабей грама 19195 -дружке помещение 17284 -galaxy table 16746 -экзоидные 16620 -сколько мытищи 12317 -SELECT SearchPhrase, COUNT(DISTINCT UserID) AS u FROM hits WHERE SearchPhrase <> '' GROUP BY SearchPhrase ORDER BY u DESC LIMIT 10; -карелки 23673 -смотреть онлайн 19747 -албатрутдин 18394 -смотреть онлайн бесплатно 17553 -смотреть 14603 -экзоидные 14529 -мангу в зарабей грама 14198 -сколько мытищи 9007 -дружке помещение 8792 -комбинирование смотреть 7572 -SELECT SearchEngineID, SearchPhrase, COUNT(*) AS c FROM hits WHERE SearchPhrase <> '' GROUP BY SearchEngineID, SearchPhrase ORDER BY c DESC LIMIT 10; -2 карелки 46258 -2 мангу в зарабей грама 18871 -2 смотреть онлайн 16905 -3 албатрутдин 16748 -2 смотреть онлайн бесплатно 14909 -2 албатрутдин 13716 -2 экзоидные 13414 -2 смотреть 13108 -3 карелки 12815 -2 дружке помещение 11946 -SELECT UserID, COUNT(*) FROM hits GROUP BY UserID ORDER BY COUNT(*) DESC LIMIT 10; -1313338681122956954 29097 -1907779576417363396 25333 -2305303682471783379 10597 -7982623143712728547 7584 -6018350421959114808 6678 -7280399273658728997 6411 -1090981537032625727 6197 -5730251990344211405 6019 -835157184735512989 5211 -770542365400669095 4906 -SELECT UserID, SearchPhrase, COUNT(*) FROM hits GROUP BY UserID, SearchPhrase ORDER BY COUNT(*) DESC LIMIT 10; -1313338681122956954 29097 -1907779576417363396 25333 -2305303682471783379 10597 -7982623143712728547 6669 -7280399273658728997 6408 -1090981537032625727 6196 -5730251990344211405 6019 -6018350421959114808 5990 -835157184735512989 5209 -770542365400669095 4906 -SELECT UserID, SearchPhrase, COUNT(*) FROM hits GROUP BY UserID, SearchPhrase LIMIT 10; -6523812552377900839 препашкирии графия ввкладос отверить 1 -1729073966700156494 jettale disc.ru/player на как работан амелирный перево+и+батторговые серия ип 1 -1568297073130086138 туарегистратор тень 1 -1573165566505549544 1 -657358816649420519 1 -7990126324958832671 универ кости дар ул 1 -1257246503627027855 2 -1743367979318486215 1 -7798118252278892836 2 -842530953704750764 2 -SELECT UserID, extract(minute FROM EventTime) AS m, SearchPhrase, COUNT(*) FROM hits GROUP BY UserID, m, SearchPhrase ORDER BY COUNT(*) DESC LIMIT 10; -1313338681122956954 31 589 -1313338681122956954 28 578 -1313338681122956954 29 572 -1313338681122956954 33 567 -1313338681122956954 27 557 -1313338681122956954 32 554 -1313338681122956954 30 552 -1313338681122956954 34 546 -1313338681122956954 26 540 -1313338681122956954 10 539 -SELECT UserID FROM hits WHERE UserID = 435090932899640449; -435090932899640449 -435090932899640449 -435090932899640449 -435090932899640449 -SELECT COUNT(*) FROM hits WHERE URL LIKE '%google%'; -15911 -SELECT SearchPhrase, MIN(URL), COUNT(*) AS c FROM hits WHERE URL LIKE '%google%' AND SearchPhrase <> '' GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10; -прокур горбуши http://smeshariki.ru/googleTBR%26ad 60 -римском качественны for cry http:%2F%2Fwwww.googlead&aktional 24 -стоит похуден http://smeshariki.ru/index.ua/doc/22229/googlead%26aktion=2&input_bdsmpeople.ru/real-estate=0&state=2013070519381 23 -испанч боб новости дейская http://smeshariki.ru/recipes/show/6840872&trafkey=6d0fc12c54059/loukhaAUXI&where=all&filter/Mitsubishi/google 21 -прокур готовки видеоэндоменя http://smeshariki.ru/googleTBR%26ad 14 -прокур гипоаллеры http://smeshariki.ru/googleTBR%26ad 11 -камедицинск автомобильних условодки на в крем http://video.yandex.php?com=google.ru/arts/searchAutoSearch 9 -универ 11.6/1366x768/4096mb ddressary of thing http://smeshariki.ru/index.ua/syllanet.ru/business/hotels.turizm.ru/igooglead%26ar_sliceid%3D1216629/0/&&puid2=15&lo=http 8 -купить трудовані резюме мертный дина кабинский лежит заднее устан http://video.yandex.php?com=google.ru/arts/searchAutoSearch 7 -вспомню о названы монстэр http://tienskaia-moda-zhienskaia-obl.irr.ru/ch/google-c-38208 7 -SELECT SearchPhrase, MIN(URL), MIN(Title), COUNT(*) AS c, COUNT(DISTINCT UserID) FROM hits WHERE Title LIKE '%Google%' AND URL NOT LIKE '%.google.%' AND SearchPhrase <> '' GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10; -винки медведь смотреть фильмы 2013 смотреть http://smeshariki.ru/a-folder-4/#page-3.2.1; WOW64; Edition=1&input_action=2011/page_type=profiles/88436/currency видеорегионалу Google 801 600 -секретарь оверка все серии порт http://kinopoisk.ru/a-albums_scroll_to_auto_id=227&option/vacancies/liver.ru/cgi-bin/click.cgi%3Fsid%3D158197%26ad @дневники Google Player 1.2.5 л, 214 182 -винки медведь смотреть фильмы чеческия http://smeshariki.ru/a-folder-4/#page-3.2.1; WOW64; Edition=1&input_action=2013-topy%2Fproduct_price_ot=&price видеорегионалу Gooddock hotmail Google на толстовая комфорталенны Berlingo по давлений 138 121 -игры для дер блич http://kinopoisk.ru/a-albums_scroll_to_auto_id=363064472354&lb_id=1559843 Легко на купить автозаврам телась Google Anaissage_599-61 «Оверлок колепный рецепт: Твери 114 106 -винки медведь смотреть объятный ветерин http://smeshariki.ru/a-folder-4/#page-3.2.1; WOW64; Edition=1&input_age17/#page/Jeep,Lexus/rodimomu_vsegoddelki.ru/carbuznyj-90472-0-014031818%26height%3D901634571 видеорегионалу Google - Доставщиков и актрическая 102 85 -кино 2009) смотреть онлайн бессмерти мк в россипед http://domchelove.ru/#!/search/page Далее о коллекции в GIMI LANCIA 0K3Y318104 продать Google, go-go в регистрии — Мой Крым 90 70 -винки медведь смотреть http://smeshariki.ru/a-folder-4/#page-3.2.1; WOW64; Edition=1&input_active/?do=showCampState/renatzija-na-brietielkakh%2F&ti=С видеорегионалу Google - модного языке - Пульс 87 56 -тайны избавитель в владимира для университет масляться http://smeshariki.ru/a-folder=cars/article=199980150195,0.107736/detail.aspx#location=search?text=asc&maxyear=2001216629%26sob%3D3159&input_who1=1&cid=577&oki=1&op_product_id=25&pvno=2&evlg=VC,2;VL Амитин обувь - Яндекс.Видео+текст песен Google.com 64 56 -коптимиквиды юриста с роуз рая https://produkty%2Fpulove.ru/booklyattion-war-sinij-9182/women Легко на участные участников., Цены - Стильная парнем. Саганрог догадения : Турции, купить у 10 дне кольные машинки не представки - Новая с избиение спродажа: котята 2014 г.в. Цена: 47500-10ECO060 – -------- купить квартиру Оренбург (России Galantrax Flamiliada Google, Nо 18 фотоконверк Супер Кардиган 45 12 -винки медведь смотрейлера начальник http://smeshariki.ru/a-folder-4/#page-3.2.1; WOW64; Edition=1&input_active/ видеорегионалу Google - модных Челябинск 40 35 -SELECT * FROM hits WHERE URL LIKE '%google%' ORDER BY EventTime LIMIT 10; -7675678523794456216 1 Glavnaya gorand. Цветные объявлений районе, вером 1 2013-07-02 04:01:09 2013-07-02 64469 1840073959 2 3714843517822510735 0 44 5 http://e96.ru/search/page.googleTBR%26ad%3D0%26rnd%3D158197%26anbietersburg http://bdsmpeople.ru/obrazom_position/?page 0 13593 158 13606 216 1638 1658 22 15 7 700 0 0 22 nA 1 1 0 0 4005373 -1 0 0 0 1052 775 135 2013-07-02 18:20:22 0 0 0 0 windows 1601 0 0 0 0 213893614 0 0 0 0 0 6 2013-07-02 19:58:11 0 0 0 0 0 1412515749 63522 -1 12 S0 �\f 0 0 0 0 445 1234 0 0 0 NH 0 0 5972490271588207794 1369713899219085694 0 -6147260061318473746 1 Glavnaya gorand. Цветные объявлений районе, вером 1 2013-07-02 04:01:29 2013-07-02 64469 1840073959 2 3714843517822510735 0 44 5 http://e96.ru/search/page.googleTBR%26ad%3D0%26rnd%3D158197%26anbietersburg http://bdsmpeople.ru/obrazom_position/?page 0 13593 158 13606 216 1638 1658 22 15 7 700 0 0 22 D� 1 1 0 0 4005373 -1 0 0 0 1052 775 135 2013-07-02 18:20:42 0 0 0 0 windows 1601 0 0 0 0 810892658 0 0 0 0 0 6 2013-07-02 19:58:25 0 0 0 0 0 1412515749 63522 -1 13 S0 �\f 0 0 0 0 0 16 0 0 0 NH 0 0 5972490271588207794 1369713899219085694 0 -5972689683963797854 1 Glavnaya gorand. Цветные объявлений районе, вером 1 2013-07-02 04:02:11 2013-07-02 64469 1840073959 2 3714843517822510735 0 44 5 http://e96.ru/search/page.googleTBR%26ad%3D0%26rnd%3D158197%26anbietersburg http://bdsmpeople.ru/obrazom_position/?page 0 13593 158 13606 216 1638 1658 22 15 7 700 0 0 22 D� 1 1 0 0 4005373 -1 0 0 0 1052 775 135 2013-07-02 18:21:16 0 0 0 0 windows 1601 0 0 0 0 47015096 0 0 0 0 0 6 2013-07-02 19:58:50 0 0 0 0 0 1412515749 63522 -1 13 S0 h1 0 0 0 0 0 0 0 0 0 NH 0 0 5972490271588207794 1369713899219085694 0 -8008688361303225116 1 Скачать онлайн играй! - Туризма - Крымский тренчкоты в интернет магазин Wildberries.ru (Работа - IRR.ru - модных словариумных 1 2013-07-02 04:12:01 2013-07-02 63217 1975817788 229 804133623150786791 1 44 7 http://bjdswaps.google-photo http://loveche.html?ctid 0 12409 20 10093 22 1749 867 23 15 3 700.224 0 0 15 D� 1 1 0 0 3056753 -1 0 0 0 1608 662 135 2013-07-02 14:19:55 4 1 16561 0 windows 1 0 0 0 5347008031302181363 766531830 0 0 0 0 0 5 2013-07-02 20:00:25 31 1 3 11237 31 1870660671 -1 -1 -1 E3 _i 0 0 0 0 0 0 0 0 0 NH 0 0 -2736470446903004689 7116991598850737408 0 -7436461208655480623 1 Компании Вино в хорошие 1 2013-07-02 04:32:24 2013-07-02 35534 1741555497 39 7082047337377160280 0 44 5 http://rsdn.ru/catalog/cifrovye-advertisement=little&category=22&input_bdsmpeople.ru/index,google.ru/news/39826 http://kalina?block/?inst_the_book.php?cPath=40_57470493958402/ 0 10634 20 0 0 1996 1781 37 15 7 700 0 0 22 D� 1 1 0 0 808950 5 0 0 0 1261 1017 433 2013-07-03 03:03:12 4 1 16561 0 windows-1251;charset 1601 1 0 0 6804199628189316872 626511463 0 0 0 1 0 5 2013-07-02 10:35:42 31 2 3 694 57 1448806868 -1 -1 -1 E3 _i 0 0 0 3 345 147 239 0 0 NH 0 0 8931346360692564721 1971436513446935197 0 -5564518777317455184 0 «set» в пробег аппах и обслуживатизиров 1 2013-07-02 04:44:29 2013-07-02 5822 1920787234 32 3712346975274085073 1 2 3 http://auto_gruppy/christikha/hotel=-1&trafkey=605&from=&power_name=Платья&produkty%2Furl.google.ru/index http://rmnt.ru/cars/passenger/hellardous/42/~37/?suggest&id=3869551753&custom=0&undefined/undefined/under=28036,5;362;108;16762643539 0 8563 21482 9822 18528 1638 1658 23 15 7 700 0 0 16 D� 1 1 0 0 207348 -1 0 0 0 1509 733 135 2013-07-02 15:33:12 4 1 15738 0 windows-1251;charset 1 0 0 0 8007561756096276896 1034507462 0 0 0 0 0 5 2013-07-02 18:03:56 0 0 0 0 0 2016848722 -1 -1 -1 S0 h1 0 0 0 0 0 0 0 0 0 NH 0 0 7820066807630413322 -3258566084785303139 0 -7381524648140977766 1 Ploshchad\' stolitsi zwy 110911923, Г официальная Прессы и Огонек 1 2013-07-02 05:01:46 2013-07-02 63217 1638850281 59 1564939829982760596 1 44 5 http://bjdleaksbrand=bpc bonprix%2F12.02&he=1024&location=pm;f=inbox;pmsg_1733/page.google http://loveplanet.ru/url?sa=t&rct 0 12409 20 10093 22 1996 1666 37 15 7 700 0 0 22 D� 1 1 0 0 2059788 -1 0 0 0 1261 1206 433 2013-07-02 18:04:38 0 0 0 0 windows 1 0 0 0 0 827020970 0 0 0 0 0 5 2013-07-03 02:53:56 0 0 0 0 0 2001459352 -1 -1 -1 S0 �\f 0 0 0 0 0 0 0 0 0 NH 0 0 1384301141639030267 9047048983006699504 0 -8614832219462424183 1 Модель для сумки - регеш (Россия) 1 2013-07-02 05:19:23 2013-07-02 3035 2022088895 38 2590751384199385434 1 2 88 http://smeshariki.ru/googleTBR%26ar_ntype=citykurortmag http://holodilnik.ru/GameMain.aspx?color=0&choos&source=web&cd 0 10271 158 13384 216 1917 879 37 15 7 700 0 0 1 D� 1 1 0 0 3991944 -1 0 0 0 746 464 322 2013-07-02 16:44:30 0 0 0 0 windows-1251;charset 1 0 0 0 7607749204513951316 427646581 0 0 0 0 0 5 2013-07-02 07:19:17 50 2 3 0 30 1146019198 -1 -1 -1 S0 �\f 0 0 0 0 0 0 0 0 0 NH 0 0 1157471009075867478 1000799766482180932 0 -7168314068394418899 1 по полиция +опытовой рецензии, 1 2013-07-02 05:22:40 2013-07-02 35534 -1420082055 11579 4822773326251181180 0 2 7 http:%2F%2Fsapozhki-advertime-2/#page.google/dodge http://saint-peters-total=меньше 100007&text=b.akhua_deckaya-look/time-2/#page=3&oprnd=6817922197946&ei=JtHTUYWRCqXA&bvm=bv.49784469,d.ZWU&cad=rjt&fu=0&type_id=172&msid=1&marka=88&text=krasnaia-moda 0 14550 952 8565 375 1304 978 37 15 4 700.224 2 7 13 D� 1 1 0 0 2675432 3 3 dave kino 2013 года в ростопримеча 0 0 1972 778 135 2013-07-02 05:05:07 4 1 16561 0 windows 1601 0 0 0 6494516778257365839 393719418 0 0 0 0 0 5 2013-07-03 00:28:10 31 2 2 14851 1 -1016483843 61823 -1 1 S0 �\f 0 0 0 0 0 0 0 0 0 NH 0 0 -4470345086215748575 -5322637665780806659 0 -8235569889353442646 1 1 2013-07-02 05:22:53 2013-07-02 35534 -1420082055 11579 4822773326251181180 0 2 7 http:%2F%2Fsapozhki-advertime-2/#page.google/dodge 0 0 0 8565 375 1304 978 37 15 4 700.224 2 7 13 D� 1 1 0 0 2675432 0 0 0 1 1972 778 135 2013-07-02 05:05:22 4 1 16561 0 windows 1601 0 0 1 6494516778257365839 393719418 0 0 0 1 0 5 2013-07-03 00:28:24 31 2 2 14851 1 -1016483843 61823 -1 2 S0 �\f 0 318 0 0 0 0 0 0 0 NH 0 0 -296158784638538920 -5322637665780806659 0 -SELECT SearchPhrase FROM hits WHERE SearchPhrase <> '' ORDER BY EventTime LIMIT 10; -симптомы регистратов -galaxy s4 zoom фильм -ночно китая женщины -фильм небольшой бизнеса североятно -брита ганам котлы на шерлок -анапа оперевянные волшебную -слон.руб., д. а.л. конфигурды по оргатства мультет -расписание мультиварка для -отдыха чем прокат -авом констеть ребенка краево -SELECT SearchPhrase FROM hits WHERE SearchPhrase <> '' ORDER BY SearchPhrase LIMIT 10; - береж - за русский стил видео какой - завод тандалищные прода - заочное по земли в обрезни и метро - заочное сад цены нарощения музыка визу - зве - земные огурцы раб - золотой сайт samsung - прав - светы женске 2 сезон -SELECT SearchPhrase FROM hits WHERE SearchPhrase <> '' ORDER BY EventTime, SearchPhrase LIMIT 10; -galaxy s4 zoom фильм -ночно китая женщины -симптомы регистратов -фильм небольшой бизнеса североятно -авом констеть ребенка краево -анапа оперевянные волшебную -брита ганам котлы на шерлок -компьютерапии серия нарий -отдыха чем прокат -расписание мультиварка для -SELECT CounterID, AVG(length(URL)) AS l, COUNT(*) AS c FROM hits WHERE URL <> '' GROUP BY CounterID HAVING COUNT(*) > 100000 ORDER BY l DESC LIMIT 25; -233773 469.14923754578723 2938865 -245438 271.7841243964889 2510103 -122612 238.63801917567594 3574007 -234004 204.27746585100144 238660 -1634 197.83080416670535 323229 -786 186.7507135271472 120528 -114157 142.91444863406159 216408 -515 126.22595247333346 146907 -256004 125.36714011543154 858171 -95427 120.2657237661165 374306 -199550 109.81266990405194 7115413 -220992 105.85395075756044 494614 -196239 98.34849844624749 163797 -62 93.15621079726343 738150 -96948 92.74209592191733 396093 -188878 91.98110564811313 311998 -249603 91.87807188863495 120325 -3922 87.83657514674738 8527069 -191697 86.95676378104345 124664 -97467 84.2939822226288 131178 -186300 83.97100407321064 802561 -146891 77.77413321966806 605286 -38 76.43665636016307 507770 -230962 76.30301436565952 169223 -77639 75.38479530321585 253961 -SELECT REGEXP_REPLACE(Referer, '^https?://(?:www\.)?([^/]+)/.*$', '\1') AS k, AVG(length(Referer)) AS l, COUNT(*) AS c, MIN(Referer) FROM hits WHERE Referer <> '' GROUP BY k HAVING COUNT(*) > 100000 ORDER BY l DESC LIMIT 25; -svpressa.ru 307.8648835914462 242465 http://svpressa.ru/ -msuzie-showforumdisplay 263.31170358753184 183636 http://msuzie-showforumdisplay/63/~2/?name=&cost_neu%3D400%26retpath=default777TWCWkI9lalUwTXpJMU1q -saint-peters-total=меньше 80 242.51707971531314 200501 http://saint-peters-total=меньше 80/cash/station=search&input_age1=&int[2274/trashbox.ru/details&cad=rjt&fu=0&input_who1=2&input_who1=2&input_city-4400047.html?1=1&price_ot=&price_ot=&price=мень&clid=143431512&s_yers=0&model&desc=&name=1&markett.ru%2Frenazheltyj-95692465&text=поздравстраницу&clid=4405404/menu_29.html&ei=UIX1UZTFNJTI0ci8guSn3tW.pl?cmd=showthreadreplies=978-4121-469171&history47/11/?from=&district -domics 212.896025515211 326080 http://domics/825179.11931861234499792 -e96.ru 210.09327398091065 1018998 http://e96.ru/%3Ffrom]=&input_act[count_num=0&dff=arian-carrina1201517&cad=rjt&fu=0&input_state/apartments-sale/list.htm?size=30&input_with_photo-takovo-zuevo-shpilki.ru/real.nn.ru/yandex.ua/searchAuto=on&input_who1=2&input_online.ru/clck/51cbd&ll=&top=http://loveplane=42621/page9 -gadgets.irr.ru 131.9496418102524 349675 https://gadgets.irr.ru/2jmj7l5rSw0yVb -google.ru 109.23626239722454 2158346 http://google.ru/ -go.mail 108.63609607446642 8227493 http://go.mail/04/detskaia-moda-zhiensmed -msouz.ru 106.10166520305536 301765 http://msouz.ru/?ffshop -state=19945206 105.64370844384077 512409 http://state=19945206/foto-4/login%20NoTs3M&where=all&filmId=u8aGGqtWs3M&where=all&server=sc.cheloveplanet.ru/forum.little&categoriya/muzhskaya_istory.com/demii-malchik_148_4055074241537][to]=&input_activalry: A Love&where=all&text=купить florer&aktion/loansert перевозобности&site_id=197&text=добавь лазерногорский тайская полупая автомобильника&v=1414-resp_desyachnyeprague -loveplanet.ru 104.59863944103016 461134 http://loveplanet.ru/%3Faw_opel/page=2013 -bonprix.ru 104.41397458084346 1125057 http://bonprix.ru/ -novjob.ru 96.75331644732393 133049 http://novjob.ru/ -cn.ru 95.62988273417072 124674 http://cn.ru/GameMain.aspx#catalog/100523&tails.xml?market_pc.html?pid=9403&lr=47&msgid=36305f39386 -geomethiettai.ru 94.78441150587545 115906 https://geomethiettai.ru/GameMain.aspx?group=houses/list=266559j7077&num=7&prune_day=lastdiscussd59394303&price_ot=&priceup&page3/sankt-petushhiblock -kino 90.27209389436884 120135 http://kino/6/21/2/women.asp?whichpage4/#oversion=unreadm&uid -yaroslavens.ru 90.17111441069063 124595 http://yaroslavens.ru/main.aspx#catalog%2F1004-1100000147-otvet/actions/dislocal -mysw.info 89.68397108921269 984546 http://mysw.info/ -m.myloveplanet.ru 88.7305930950747 151544 http://m.myloveplanet.ru/ -povarenok.ru 83.96832422951294 144811 http://povarenok.ru/ -gorod 80.33040423379813 110728 http://gorod/%3Fauto.ria.ua%2Fjob -yandsearch 80.20030577309359 245934 http://www.yandsearch/rooms=1/page2 -myloveplanet.ru 80.08091732831745 110582 http://myloveplanet.ru/#associety/auto -tambov.irr.ru 77.86451772496336 315318 http://tambov.irr.ru/0/c1/tgFtaeLDK0yb01A7xvQF08sjCFqQxn51 -kurortmag.ru 75.74717737001089 155263 http://kurortmag.ru/ -SELECT SUM(ResolutionWidth), SUM(ResolutionWidth + 1), SUM(ResolutionWidth + 2), SUM(ResolutionWidth + 3), SUM(ResolutionWidth + 4), SUM(ResolutionWidth + 5), SUM(ResolutionWidth + 6), SUM(ResolutionWidth + 7), SUM(ResolutionWidth + 8), SUM(ResolutionWidth + 9), SUM(ResolutionWidth + 10), SUM(ResolutionWidth + 11), SUM(ResolutionWidth + 12), SUM(ResolutionWidth + 13), SUM(ResolutionWidth + 14), SUM(ResolutionWidth + 15), SUM(ResolutionWidth + 16), SUM(ResolutionWidth + 17), SUM(ResolutionWidth + 18), SUM(ResolutionWidth + 19), SUM(ResolutionWidth + 20), SUM(ResolutionWidth + 21), SUM(ResolutionWidth + 22), SUM(ResolutionWidth + 23), SUM(ResolutionWidth + 24), SUM(ResolutionWidth + 25), SUM(ResolutionWidth + 26), SUM(ResolutionWidth + 27), SUM(ResolutionWidth + 28), SUM(ResolutionWidth + 29), SUM(ResolutionWidth + 30), SUM(ResolutionWidth + 31), SUM(ResolutionWidth + 32), SUM(ResolutionWidth + 33), SUM(ResolutionWidth + 34), SUM(ResolutionWidth + 35), SUM(ResolutionWidth + 36), SUM(ResolutionWidth + 37), SUM(ResolutionWidth + 38), SUM(ResolutionWidth + 39), SUM(ResolutionWidth + 40), SUM(ResolutionWidth + 41), SUM(ResolutionWidth + 42), SUM(ResolutionWidth + 43), SUM(ResolutionWidth + 44), SUM(ResolutionWidth + 45), SUM(ResolutionWidth + 46), SUM(ResolutionWidth + 47), SUM(ResolutionWidth + 48), SUM(ResolutionWidth + 49), SUM(ResolutionWidth + 50), SUM(ResolutionWidth + 51), SUM(ResolutionWidth + 52), SUM(ResolutionWidth + 53), SUM(ResolutionWidth + 54), SUM(ResolutionWidth + 55), SUM(ResolutionWidth + 56), SUM(ResolutionWidth + 57), SUM(ResolutionWidth + 58), SUM(ResolutionWidth + 59), SUM(ResolutionWidth + 60), SUM(ResolutionWidth + 61), SUM(ResolutionWidth + 62), SUM(ResolutionWidth + 63), SUM(ResolutionWidth + 64), SUM(ResolutionWidth + 65), SUM(ResolutionWidth + 66), SUM(ResolutionWidth + 67), SUM(ResolutionWidth + 68), SUM(ResolutionWidth + 69), SUM(ResolutionWidth + 70), SUM(ResolutionWidth + 71), SUM(ResolutionWidth + 72), SUM(ResolutionWidth + 73), SUM(ResolutionWidth + 74), SUM(ResolutionWidth + 75), SUM(ResolutionWidth + 76), SUM(ResolutionWidth + 77), SUM(ResolutionWidth + 78), SUM(ResolutionWidth + 79), SUM(ResolutionWidth + 80), SUM(ResolutionWidth + 81), SUM(ResolutionWidth + 82), SUM(ResolutionWidth + 83), SUM(ResolutionWidth + 84), SUM(ResolutionWidth + 85), SUM(ResolutionWidth + 86), SUM(ResolutionWidth + 87), SUM(ResolutionWidth + 88), SUM(ResolutionWidth + 89) FROM hits; -151345005230 151445002727 151545000224 151644997721 151744995218 151844992715 151944990212 152044987709 152144985206 152244982703 152344980200 152444977697 152544975194 152644972691 152744970188 152844967685 152944965182 153044962679 153144960176 153244957673 153344955170 153444952667 153544950164 153644947661 153744945158 153844942655 153944940152 154044937649 154144935146 154244932643 154344930140 154444927637 154544925134 154644922631 154744920128 154844917625 154944915122 155044912619 155144910116 155244907613 155344905110 155444902607 155544900104 155644897601 155744895098 155844892595 155944890092 156044887589 156144885086 156244882583 156344880080 156444877577 156544875074 156644872571 156744870068 156844867565 156944865062 157044862559 157144860056 157244857553 157344855050 157444852547 157544850044 157644847541 157744845038 157844842535 157944840032 158044837529 158144835026 158244832523 158344830020 158444827517 158544825014 158644822511 158744820008 158844817505 158944815002 159044812499 159144809996 159244807493 159344804990 159444802487 159544799984 159644797481 159744794978 159844792475 159944789972 160044787469 160144784966 160244782463 -SELECT SearchEngineID, ClientIP, COUNT(*) AS c, SUM(IsRefresh), AVG(ResolutionWidth) FROM hits WHERE SearchPhrase <> '' GROUP BY SearchEngineID, ClientIP ORDER BY c DESC LIMIT 10; -2 1138507705 1633 35 1408.0122473974282 -2 1740861572 1331 28 1577.945905334335 -2 -807147100 1144 35 1553.1984265734266 -2 -497906719 1140 36 1543.4140350877192 -2 -1945757555 1105 30 1557.387330316742 -2 -1870623097 1102 31 1555.6588021778584 -2 -631062503 1083 31 1581.8171745152354 -2 -465813166 1082 30 1541.253234750462 -2 -1743596151 1080 24 1559.8092592592593 -2 -265917476 1058 32 1556.2003780718337 -SELECT WatchID, ClientIP, COUNT(*) AS c, SUM(IsRefresh), AVG(ResolutionWidth) FROM hits WHERE SearchPhrase <> '' GROUP BY WatchID, ClientIP ORDER BY c DESC LIMIT 10; -6170924179692870413 -643591159 1 0 1996 -5769570387413648826 1676003992 1 0 1368 -6667503745146437762 1281437876 1 0 1368 -4641624936791036586 1545793891 1 0 2038 -8008431149359128615 1493928711 1 0 1368 -5714411852894712355 1599996846 1 0 1638 -5305498592897745178 1964715655 1 0 1087 -5364115572003536419 2116081711 1 1 1750 -6157965042570459491 1601338712 1 0 1087 -5406601857928252255 1991467764 1 0 1750 -SELECT WatchID, ClientIP, COUNT(*) AS c, SUM(IsRefresh), AVG(ResolutionWidth) FROM hits GROUP BY WatchID, ClientIP ORDER BY c DESC LIMIT 10; -7224410078130478461 -776509581 2 0 1368 -7904046282518428963 1509330109 2 0 1368 -8566928176839891583 -1402644643 2 0 1368 -6655575552203051303 1611957945 2 0 1638 -8035555071048609389 806773887 1 0 1750 -5761361738312310429 2040139672 1 0 1368 -4714673509151820320 858247075 1 1 1638 -6022473066210512891 -2017856257 1 0 1589 -8746749439337282130 1100326304 1 0 1996 -7952740642786414667 -1786510413 1 0 1917 -SELECT URL, COUNT(*) AS c FROM hits GROUP BY URL ORDER BY c DESC LIMIT 10; -http://liver.ru/belgorod/page/1006.jки/доп_приборы 3288173 -http://kinopoisk.ru 1625250 -http://bdsm_po_yers=0&with_video 791465 -http://video.yandex 582400 -http://smeshariki.ru/region 514984 -http://auto_fiat_dlya-bluzki%2F8536.30.18&he=900&with 507995 -http://liver.ru/place_rukodel=365115eb7bbb90 359893 -http://kinopoisk.ru/vladimir.irr.ru 354690 -http://video.yandex.ru/search/?jenre=50&s_yers 318979 -http://tienskaia-moda 289355 -SELECT 1, URL, COUNT(*) AS c FROM hits GROUP BY 1, URL ORDER BY c DESC LIMIT 10; -1 http://liver.ru/belgorod/page/1006.jки/доп_приборы 3288173 -1 http://kinopoisk.ru 1625250 -1 http://bdsm_po_yers=0&with_video 791465 -1 http://video.yandex 582400 -1 http://smeshariki.ru/region 514984 -1 http://auto_fiat_dlya-bluzki%2F8536.30.18&he=900&with 507995 -1 http://liver.ru/place_rukodel=365115eb7bbb90 359893 -1 http://kinopoisk.ru/vladimir.irr.ru 354690 -1 http://video.yandex.ru/search/?jenre=50&s_yers 318979 -1 http://tienskaia-moda 289355 -SELECT ClientIP, ClientIP - 1, ClientIP - 2, ClientIP - 3, COUNT(*) AS c FROM hits GROUP BY ClientIP, ClientIP - 1, ClientIP - 2, ClientIP - 3 ORDER BY c DESC LIMIT 10; --39921974 -39921975 -39921976 -39921977 47008 --1698104457 -1698104458 -1698104459 -1698104460 29121 --1175819552 -1175819553 -1175819554 -1175819555 25333 -1696638182 1696638181 1696638180 1696638179 20220 -1138507705 1138507704 1138507703 1138507702 15778 --927025522 -927025523 -927025524 -927025525 12768 --1262139876 -1262139877 -1262139878 -1262139879 11348 -1740861572 1740861571 1740861570 1740861569 11314 --807147100 -807147101 -807147102 -807147103 9880 --631062503 -631062504 -631062505 -631062506 9718 -SELECT URL, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND `DontCountHits` = 0 AND IsRefresh = 0 AND URL <> '' GROUP BY URL ORDER BY PageViews DESC LIMIT 10; -http://irr.ru/index.php?showalbum/login-leniya7777294,938303130 102341 -http://komme%2F27.0.1453.116 51218 -http://irr.ru/index.php?showalbum/login-kapusta-advert2668]=0&order_by=0 18315 -http://irr.ru/index.php?showalbum/login-kapustic/product_name 16461 -http://irr.ru/index.php 12577 -http://irr.ru/index.php?showalbum/login 10880 -http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0; 7627 -http://irr.ru/index.php?showalbum/login-kupalnik 4369 -http://irr.ru/index.php?showalbum/login-kapusta-advert27256.html_params 4058 -http://komme%2F27.0.1453.116 Safari 3021 -SELECT Title, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND `DontCountHits` = 0 AND IsRefresh = 0 AND Title <> '' GROUP BY Title ORDER BY PageViews DESC LIMIT 10; -Тест (Россия) - Яндекс 122407 -Шарарай), Выбрать! - обсуждаются на голд: Шоубиз - Свободная историс 82935 -Приморск - IRR.ru 80958 -Брюки New Era H (Асус) 258 общая выплаток, горшечными 39098 -Теплоску на 23123 -Dave and Hotpoint sport – самые вещие 14329 -AUTO.ria.ua ™ - Аппер 14053 -Приморск (Россия) - Яндекс.Видео 13912 -OWAProfessign), продать 10919 -Труси - Шоубиз 10157 -SELECT URL, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND IsRefresh = 0 AND IsLink <> 0 AND IsDownload = 0 GROUP BY URL ORDER BY PageViews DESC LIMIT 10 OFFSET 1000; -http://omsk/evential/housession%3D0%26rnd%3D1216629/0/&&puid1=m&puid2=23&pvno=2&evlg=VC,7;VL,1052&s_yers[1][from=&power_name=Топы - Обувь и шут в hd&where=all&text=смотреть онлайн 2 -http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,94035/room=1&marka=0&top=0¤cy=1#country_id=137336I6GwLZOY3s&where=all&filmId=LnXXt5vaUXI&where=all 2 -http://omsk/evential/housession%3D%26CompPath%3D728%26height%3D90%26ad%3D1216629/0/index.ru/count=473095172777/page_type=&q=cache/wm/203159 2 -http://partment/1231297588736&numphoto=1&with_video.yandex.ru/1.112.ru 2 -http://guid=6&pw=2&pv=0&price_do=¤cy=RUR 2 -http://direct.yandex.ru%2Fkategory 2 -http://video.yandex.ru/realty/leaser_map=1/hasimay-2.html?1=1&cid=5772,92419948630585&s_yers=0&with_photo=False 2 -http://mysw.info/trashbox.ru/GameMain.aspx 2 -http://stalker-pub-20087898675494,960948/#page_type%3D260117152337&spn=1395,9459301bd969/curre224.jpg&marka=0&type=produkty/travelru.gdbile/soft Internet Explorer&aV=5.0 (Windows 2 -http://stalker-pub-20087898675494,960948/#page_type%3D0%26pz%3D0%26rleurl%3D%26xpid%3D728%26height.html_parator/en-ru/#!/search=0&drive_type=product.html%3Fhtml?1=1&cid=577&oki=1&op_product_id=0&engineVolumeFrom=&power 2 -SELECT TraficSourceID, SearchEngineID, AdvEngineID, CASE WHEN (SearchEngineID = 0 AND AdvEngineID = 0) THEN Referer ELSE '' END AS Src, URL AS Dst, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND IsRefresh = 0 GROUP BY TraficSourceID, SearchEngineID, AdvEngineID, Src, Dst ORDER BY PageViews DESC LIMIT 10 OFFSET 1000; --1 0 0 http://state=19945206/foto-4/login-11925.17661-sh-93861361091_27_iyunya_5_iyunya_5_iyunya_5_iyulyanovskii_interval=&only_owners http://irr.ru/index.php?showalbum/login=int[2364][from=29&modelove.ru/ru/index.php?vacancies/toolin_MP50807/details 15 --1 0 0 http://state=19945206/foto-4/login-2006/make=КАМЕРИКА РАСШИРИНА/curre/fancy http://irr.ru/index.php?showalbum/login-676216b8af/4fd00fa61b3185631821/page_type=2&marka=29&model=19009618123313160 15 -1 0 0 http://yandex.ru/search?q=лавпланется монстружка http://irr.ru/index.php?showalbum/login-kupaljinik-2008-g-v-stroika/photo=on&input_bdsmpeople.ru/image&sr=http://lk.wildberries 15 --1 0 0 http://state=19945206/foto-4/login-2491724/?bundlers/search?text http://irr.ru/index.php?showalbum/login-kupaljinik-Internet Explorer&aV=9.80 (Windows NT 5.1; WOW64 15 --1 0 0 http://state=19945206/foto-4/login-2006/makumirostova.ru/a-album/login.2/secondary/search http://irr.ru/index.php?showalbum/login-leniya7777294,938303130 15 -1 0 0 http://launcher-searchads/search http://komme%2F27.0.1453.116 Safari%2F5.0 (compatible; MSIE 9.0; 15 --1 0 0 http://state=19945206/foto-4/login-2006/makumiruiushching http://irr.ru/index.php?showalbum/login-kapusta-advert2704&prr=http:/ 15 --1 0 0 http://state=19945206/foto-4/login-2006/makumiroshoowbiz/down%2Fholodilnik.ru/7656&lr http://irr.ru/index.php?showalbum/login=vladimir/page_type=0&expand_search?text=метр&f[140][from]=7112-6417817495,932446/next_all=от 33 AA Little&category_id=&auth=0&driver.ru/novostova.ru/photo/69363/27824721&referer_detej-otlicheskiipirog 15 --1 0 0 http://state=19945206/foto-4/login-2491724/?bundlers/search?text http://irr.ru/index.php?showalbum/login-kapusta-advert2730675595,9292fa-d61f-fef3-013fc8491073393339363 15 -0 0 0 http://irr.ru/index.php?showalbum/login-kapusta-advert2718599/photo=0&is_hot=0&viewforum/index.ru 15 -SELECT URLHash, EventDate, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND IsRefresh = 0 AND TraficSourceID IN (-1, 6) AND RefererHash = 3594120000172545465 GROUP BY URLHash, EventDate ORDER BY PageViews DESC LIMIT 10 OFFSET 100; -7199155066341437901 2013-07-15 27 -2054727273000865689 2013-07-15 27 -2512899255762264913 2013-07-15 26 --8505838588544217213 2013-07-15 26 --6048157399675510565 2013-07-15 25 --6025761452198030778 2013-07-15 25 --3611962581960090019 2013-07-15 25 -6976198041684576969 2013-07-15 24 -2033248414344857063 2013-07-15 24 -9013370825190178404 2013-07-15 24 -SELECT WindowClientWidth, WindowClientHeight, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND IsRefresh = 0 AND DontCountHits = 0 AND URLHash = 2868770270353813622 GROUP BY WindowClientWidth, WindowClientHeight ORDER BY PageViews DESC LIMIT 10 OFFSET 10000; -1637 578 1 -1284 679 1 -1533 821 1 -1423 963 1 -1285 727 1 -1487 913 1 -1921 742 1 -593 847 1 -1996 784 1 -746 264 1 -SELECT DATE_TRUNC('minute', EventTime) AS M, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-14' AND EventDate <= '2013-07-15' AND IsRefresh = 0 AND DontCountHits = 0 GROUP BY DATE_TRUNC('minute', EventTime) ORDER BY DATE_TRUNC('minute', EventTime) LIMIT 10 OFFSET 1000; -2013-07-15 20:40:00 513 -2013-07-15 20:41:00 457 -2013-07-15 20:42:00 470 -2013-07-15 20:43:00 468 -2013-07-15 20:44:00 453 -2013-07-15 20:45:00 462 -2013-07-15 20:46:00 481 -2013-07-15 20:47:00 458 -2013-07-15 20:48:00 466 -2013-07-15 20:49:00 467 diff --git a/tests/queries/0_stateless/03214_hits_parquet.sql b/tests/queries/0_stateless/03214_hits_parquet.sql deleted file mode 100644 index cab1e176361..00000000000 --- a/tests/queries/0_stateless/03214_hits_parquet.sql +++ /dev/null @@ -1,156 +0,0 @@ -drop table if exists hits; -CREATE TABLE hits -( - WatchID BIGINT NOT NULL, - JavaEnable SMALLINT NOT NULL, - Title TEXT NOT NULL, - GoodEvent SMALLINT NOT NULL, - EventTime DATETIME64(0) NOT NULL, - EventDate Date32 NOT NULL, - CounterID INTEGER NOT NULL, - ClientIP INTEGER NOT NULL, - RegionID INTEGER NOT NULL, - UserID BIGINT NOT NULL, - CounterClass SMALLINT NOT NULL, - OS SMALLINT NOT NULL, - UserAgent SMALLINT NOT NULL, - URL TEXT NOT NULL, - Referer TEXT NOT NULL, - IsRefresh SMALLINT NOT NULL, - RefererCategoryID SMALLINT NOT NULL, - RefererRegionID INTEGER NOT NULL, - URLCategoryID SMALLINT NOT NULL, - URLRegionID INTEGER NOT NULL, - ResolutionWidth SMALLINT NOT NULL, - ResolutionHeight SMALLINT NOT NULL, - ResolutionDepth SMALLINT NOT NULL, - FlashMajor SMALLINT NOT NULL, - FlashMinor SMALLINT NOT NULL, - FlashMinor2 TEXT NOT NULL, - NetMajor SMALLINT NOT NULL, - NetMinor SMALLINT NOT NULL, - UserAgentMajor SMALLINT NOT NULL, - UserAgentMinor VARCHAR(255) NOT NULL, - CookieEnable SMALLINT NOT NULL, - JavascriptEnable SMALLINT NOT NULL, - IsMobile SMALLINT NOT NULL, - MobilePhone SMALLINT NOT NULL, - MobilePhoneModel TEXT NOT NULL, - Params TEXT NOT NULL, - IPNetworkID INTEGER NOT NULL, - TraficSourceID SMALLINT NOT NULL, - SearchEngineID SMALLINT NOT NULL, - SearchPhrase TEXT NOT NULL, - AdvEngineID SMALLINT NOT NULL, - IsArtifical SMALLINT NOT NULL, - WindowClientWidth SMALLINT NOT NULL, - WindowClientHeight SMALLINT NOT NULL, - ClientTimeZone SMALLINT NOT NULL, - ClientEventTime DATETIME64(0) NOT NULL, - SilverlightVersion1 SMALLINT NOT NULL, - SilverlightVersion2 SMALLINT NOT NULL, - SilverlightVersion3 INTEGER NOT NULL, - SilverlightVersion4 SMALLINT NOT NULL, - PageCharset TEXT NOT NULL, - CodeVersion INTEGER NOT NULL, - IsLink SMALLINT NOT NULL, - IsDownload SMALLINT NOT NULL, - IsNotBounce SMALLINT NOT NULL, - FUniqID BIGINT NOT NULL, - OriginalURL TEXT NOT NULL, - HID INTEGER NOT NULL, - IsOldCounter SMALLINT NOT NULL, - IsEvent SMALLINT NOT NULL, - IsParameter SMALLINT NOT NULL, - DontCountHits SMALLINT NOT NULL, - WithHash SMALLINT NOT NULL, - HitColor CHAR NOT NULL, - LocalEventTime DATETIME64(0) NOT NULL, - Age SMALLINT NOT NULL, - Sex SMALLINT NOT NULL, - Income SMALLINT NOT NULL, - Interests SMALLINT NOT NULL, - Robotness SMALLINT NOT NULL, - RemoteIP INTEGER NOT NULL, - WindowName INTEGER NOT NULL, - OpenerName INTEGER NOT NULL, - HistoryLength SMALLINT NOT NULL, - BrowserLanguage TEXT NOT NULL, - BrowserCountry TEXT NOT NULL, - SocialNetwork TEXT NOT NULL, - SocialAction TEXT NOT NULL, - HTTPError SMALLINT NOT NULL, - SendTiming INTEGER NOT NULL, - DNSTiming INTEGER NOT NULL, - ConnectTiming INTEGER NOT NULL, - ResponseStartTiming INTEGER NOT NULL, - ResponseEndTiming INTEGER NOT NULL, - FetchTiming INTEGER NOT NULL, - SocialSourceNetworkID SMALLINT NOT NULL, - SocialSourcePage TEXT NOT NULL, - ParamPrice BIGINT NOT NULL, - ParamOrderID TEXT NOT NULL, - ParamCurrency TEXT NOT NULL, - ParamCurrencyID SMALLINT NOT NULL, - OpenstatServiceName TEXT NOT NULL, - OpenstatCampaignID TEXT NOT NULL, - OpenstatAdID TEXT NOT NULL, - OpenstatSourceID TEXT NOT NULL, - UTMSource TEXT NOT NULL, - UTMMedium TEXT NOT NULL, - UTMCampaign TEXT NOT NULL, - UTMContent TEXT NOT NULL, - UTMTerm TEXT NOT NULL, - FromTag TEXT NOT NULL, - HasGCLID SMALLINT NOT NULL, - RefererHash BIGINT NOT NULL, - URLHash BIGINT NOT NULL, - CLID INTEGER NOT NULL -) -ENGINE = File('Parquet', 'hits.parquet') -SETTINGS input_format_parquet_use_native_reader = true; - --- { echoOn } -SELECT COUNT(*) FROM hits; -SELECT COUNT(*) FROM hits WHERE AdvEngineID <> 0; -SELECT SUM(AdvEngineID), COUNT(*), AVG(ResolutionWidth) FROM hits; -SELECT AVG(UserID) FROM hits; -SELECT COUNT(DISTINCT UserID) FROM hits; -SELECT COUNT(DISTINCT SearchPhrase) FROM hits; -SELECT MIN(EventDate), MAX(EventDate) FROM hits; -SELECT AdvEngineID, COUNT(*) FROM hits WHERE AdvEngineID <> 0 GROUP BY AdvEngineID ORDER BY COUNT(*) DESC; -SELECT RegionID, COUNT(DISTINCT UserID) AS u FROM hits GROUP BY RegionID ORDER BY u DESC LIMIT 10; -SELECT RegionID, SUM(AdvEngineID), COUNT(*) AS c, AVG(ResolutionWidth), COUNT(DISTINCT UserID) FROM hits GROUP BY RegionID ORDER BY c DESC LIMIT 10; -SELECT MobilePhoneModel, COUNT(DISTINCT UserID) AS u FROM hits WHERE MobilePhoneModel <> '' GROUP BY MobilePhoneModel ORDER BY u DESC LIMIT 10; -SELECT MobilePhone, MobilePhoneModel, COUNT(DISTINCT UserID) AS u FROM hits WHERE MobilePhoneModel <> '' GROUP BY MobilePhone, MobilePhoneModel ORDER BY u DESC LIMIT 10; -SELECT SearchPhrase, COUNT(*) AS c FROM hits WHERE SearchPhrase <> '' GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10; -SELECT SearchPhrase, COUNT(DISTINCT UserID) AS u FROM hits WHERE SearchPhrase <> '' GROUP BY SearchPhrase ORDER BY u DESC LIMIT 10; -SELECT SearchEngineID, SearchPhrase, COUNT(*) AS c FROM hits WHERE SearchPhrase <> '' GROUP BY SearchEngineID, SearchPhrase ORDER BY c DESC LIMIT 10; -SELECT UserID, COUNT(*) FROM hits GROUP BY UserID ORDER BY COUNT(*) DESC LIMIT 10; -SELECT UserID, SearchPhrase, COUNT(*) FROM hits GROUP BY UserID, SearchPhrase ORDER BY COUNT(*) DESC LIMIT 10; -SELECT UserID, SearchPhrase, COUNT(*) FROM hits GROUP BY UserID, SearchPhrase LIMIT 10; -SELECT UserID, extract(minute FROM EventTime) AS m, SearchPhrase, COUNT(*) FROM hits GROUP BY UserID, m, SearchPhrase ORDER BY COUNT(*) DESC LIMIT 10; -SELECT UserID FROM hits WHERE UserID = 435090932899640449; -SELECT COUNT(*) FROM hits WHERE URL LIKE '%google%'; -SELECT SearchPhrase, MIN(URL), COUNT(*) AS c FROM hits WHERE URL LIKE '%google%' AND SearchPhrase <> '' GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10; -SELECT SearchPhrase, MIN(URL), MIN(Title), COUNT(*) AS c, COUNT(DISTINCT UserID) FROM hits WHERE Title LIKE '%Google%' AND URL NOT LIKE '%.google.%' AND SearchPhrase <> '' GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10; -SELECT * FROM hits WHERE URL LIKE '%google%' ORDER BY EventTime LIMIT 10; -SELECT SearchPhrase FROM hits WHERE SearchPhrase <> '' ORDER BY EventTime LIMIT 10; -SELECT SearchPhrase FROM hits WHERE SearchPhrase <> '' ORDER BY SearchPhrase LIMIT 10; -SELECT SearchPhrase FROM hits WHERE SearchPhrase <> '' ORDER BY EventTime, SearchPhrase LIMIT 10; -SELECT CounterID, AVG(length(URL)) AS l, COUNT(*) AS c FROM hits WHERE URL <> '' GROUP BY CounterID HAVING COUNT(*) > 100000 ORDER BY l DESC LIMIT 25; -SELECT REGEXP_REPLACE(Referer, '^https?://(?:www\.)?([^/]+)/.*$', '\1') AS k, AVG(length(Referer)) AS l, COUNT(*) AS c, MIN(Referer) FROM hits WHERE Referer <> '' GROUP BY k HAVING COUNT(*) > 100000 ORDER BY l DESC LIMIT 25; -SELECT SUM(ResolutionWidth), SUM(ResolutionWidth + 1), SUM(ResolutionWidth + 2), SUM(ResolutionWidth + 3), SUM(ResolutionWidth + 4), SUM(ResolutionWidth + 5), SUM(ResolutionWidth + 6), SUM(ResolutionWidth + 7), SUM(ResolutionWidth + 8), SUM(ResolutionWidth + 9), SUM(ResolutionWidth + 10), SUM(ResolutionWidth + 11), SUM(ResolutionWidth + 12), SUM(ResolutionWidth + 13), SUM(ResolutionWidth + 14), SUM(ResolutionWidth + 15), SUM(ResolutionWidth + 16), SUM(ResolutionWidth + 17), SUM(ResolutionWidth + 18), SUM(ResolutionWidth + 19), SUM(ResolutionWidth + 20), SUM(ResolutionWidth + 21), SUM(ResolutionWidth + 22), SUM(ResolutionWidth + 23), SUM(ResolutionWidth + 24), SUM(ResolutionWidth + 25), SUM(ResolutionWidth + 26), SUM(ResolutionWidth + 27), SUM(ResolutionWidth + 28), SUM(ResolutionWidth + 29), SUM(ResolutionWidth + 30), SUM(ResolutionWidth + 31), SUM(ResolutionWidth + 32), SUM(ResolutionWidth + 33), SUM(ResolutionWidth + 34), SUM(ResolutionWidth + 35), SUM(ResolutionWidth + 36), SUM(ResolutionWidth + 37), SUM(ResolutionWidth + 38), SUM(ResolutionWidth + 39), SUM(ResolutionWidth + 40), SUM(ResolutionWidth + 41), SUM(ResolutionWidth + 42), SUM(ResolutionWidth + 43), SUM(ResolutionWidth + 44), SUM(ResolutionWidth + 45), SUM(ResolutionWidth + 46), SUM(ResolutionWidth + 47), SUM(ResolutionWidth + 48), SUM(ResolutionWidth + 49), SUM(ResolutionWidth + 50), SUM(ResolutionWidth + 51), SUM(ResolutionWidth + 52), SUM(ResolutionWidth + 53), SUM(ResolutionWidth + 54), SUM(ResolutionWidth + 55), SUM(ResolutionWidth + 56), SUM(ResolutionWidth + 57), SUM(ResolutionWidth + 58), SUM(ResolutionWidth + 59), SUM(ResolutionWidth + 60), SUM(ResolutionWidth + 61), SUM(ResolutionWidth + 62), SUM(ResolutionWidth + 63), SUM(ResolutionWidth + 64), SUM(ResolutionWidth + 65), SUM(ResolutionWidth + 66), SUM(ResolutionWidth + 67), SUM(ResolutionWidth + 68), SUM(ResolutionWidth + 69), SUM(ResolutionWidth + 70), SUM(ResolutionWidth + 71), SUM(ResolutionWidth + 72), SUM(ResolutionWidth + 73), SUM(ResolutionWidth + 74), SUM(ResolutionWidth + 75), SUM(ResolutionWidth + 76), SUM(ResolutionWidth + 77), SUM(ResolutionWidth + 78), SUM(ResolutionWidth + 79), SUM(ResolutionWidth + 80), SUM(ResolutionWidth + 81), SUM(ResolutionWidth + 82), SUM(ResolutionWidth + 83), SUM(ResolutionWidth + 84), SUM(ResolutionWidth + 85), SUM(ResolutionWidth + 86), SUM(ResolutionWidth + 87), SUM(ResolutionWidth + 88), SUM(ResolutionWidth + 89) FROM hits; -SELECT SearchEngineID, ClientIP, COUNT(*) AS c, SUM(IsRefresh), AVG(ResolutionWidth) FROM hits WHERE SearchPhrase <> '' GROUP BY SearchEngineID, ClientIP ORDER BY c DESC LIMIT 10; -SELECT WatchID, ClientIP, COUNT(*) AS c, SUM(IsRefresh), AVG(ResolutionWidth) FROM hits WHERE SearchPhrase <> '' GROUP BY WatchID, ClientIP ORDER BY c DESC LIMIT 10; -SELECT WatchID, ClientIP, COUNT(*) AS c, SUM(IsRefresh), AVG(ResolutionWidth) FROM hits GROUP BY WatchID, ClientIP ORDER BY c DESC LIMIT 10; -SELECT URL, COUNT(*) AS c FROM hits GROUP BY URL ORDER BY c DESC LIMIT 10; -SELECT 1, URL, COUNT(*) AS c FROM hits GROUP BY 1, URL ORDER BY c DESC LIMIT 10; -SELECT ClientIP, ClientIP - 1, ClientIP - 2, ClientIP - 3, COUNT(*) AS c FROM hits GROUP BY ClientIP, ClientIP - 1, ClientIP - 2, ClientIP - 3 ORDER BY c DESC LIMIT 10; -SELECT URL, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND `DontCountHits` = 0 AND IsRefresh = 0 AND URL <> '' GROUP BY URL ORDER BY PageViews DESC LIMIT 10; -SELECT Title, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND `DontCountHits` = 0 AND IsRefresh = 0 AND Title <> '' GROUP BY Title ORDER BY PageViews DESC LIMIT 10; -SELECT URL, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND IsRefresh = 0 AND IsLink <> 0 AND IsDownload = 0 GROUP BY URL ORDER BY PageViews DESC LIMIT 10 OFFSET 1000; -SELECT TraficSourceID, SearchEngineID, AdvEngineID, CASE WHEN (SearchEngineID = 0 AND AdvEngineID = 0) THEN Referer ELSE '' END AS Src, URL AS Dst, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND IsRefresh = 0 GROUP BY TraficSourceID, SearchEngineID, AdvEngineID, Src, Dst ORDER BY PageViews DESC LIMIT 10 OFFSET 1000; -SELECT URLHash, EventDate, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND IsRefresh = 0 AND TraficSourceID IN (-1, 6) AND RefererHash = 3594120000172545465 GROUP BY URLHash, EventDate ORDER BY PageViews DESC LIMIT 10 OFFSET 100; -SELECT WindowClientWidth, WindowClientHeight, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND IsRefresh = 0 AND DontCountHits = 0 AND URLHash = 2868770270353813622 GROUP BY WindowClientWidth, WindowClientHeight ORDER BY PageViews DESC LIMIT 10 OFFSET 10000; -SELECT DATE_TRUNC('minute', EventTime) AS M, COUNT(*) AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= '2013-07-14' AND EventDate <= '2013-07-15' AND IsRefresh = 0 AND DontCountHits = 0 GROUP BY DATE_TRUNC('minute', EventTime) ORDER BY DATE_TRUNC('minute', EventTime) LIMIT 10 OFFSET 1000; \ No newline at end of file diff --git a/tests/queries/0_stateless/03214_native_parquet_benchmark.sql b/tests/queries/0_stateless/03214_native_parquet_benchmark.sql deleted file mode 100644 index 99ee1025e0e..00000000000 --- a/tests/queries/0_stateless/03214_native_parquet_benchmark.sql +++ /dev/null @@ -1,59 +0,0 @@ -drop table if exists int_native_parquet; -drop table if exists int_arrow_parquet; -drop table if exists int_mergetree; - -create table int_native_parquet (i1 Int64, i2 Int64, i3 Int64, i4 Int64, i5 Int64, i6 Int64, i7 Int64) engine=File(Parquet) settings input_format_parquet_use_native_reader=true; -create table int_arrow_parquet (i1 Int64, i2 Int64, i3 Int64, i4 Int64, i5 Int64, i6 Int64, i7 Int64) engine=File(Parquet) settings input_format_parquet_use_native_reader=false; -create table int_mergetree (i1 Int64, i2 Int64, i3 Int64, i4 Int64, i5 Int64, i6 Int64, i7 Int64) engine=MergeTree() order by tuple(); - - -insert into int_native_parquet select (number%100000)/10, rand()%100, rand()%1000, rand(), rand(), rand(), rand() from numbers(100000000); -insert into int_arrow_parquet select (number%100000)/10, rand()%100, rand()%1000, rand(), rand(), rand(), rand() from numbers(100000000); -insert into int_mergetree select (number%100000)/10, rand()%100, rand()%1000, rand(), rand(), rand(), rand() from numbers(100000000); -optimize table int_mergetree; - -select * from int_native_parquet where i1 < 10 Format Null; # 0.399s -select * from int_arrow_parquet where i1 < 10 Format Null; # 1.207s -select * from int_mergetree where i1 < 10 Format Null; # 0.095s - -select * from int_native_parquet where i2 < 10 Format Null; # 0.717s -select * from int_arrow_parquet where i2 < 10 Format Null; # 1.358s -select * from int_mergetree where i2 < 10 Format Null; # 0.658s - -select * from int_native_parquet where i3 < 10 Format Null; # 0.670s -select * from int_arrow_parquet where i3 < 10 Format Null; # 1.245s -select * from int_mergetree where i3 < 10 Format Null; # 0.663s - -drop table if exists int_native_parquet; -drop table if exists int_arrow_parquet; -drop table if exists int_mergetree; - - -drop table if exists string_native_parquet; -drop table if exists string_arrow_parquet; -drop table if exists string_mergetree; - -create table string_native_parquet (s1 String, s2 String, s3 String, s4 String, s5 String, s6 String, s7 String) engine=File(Parquet) settings input_format_parquet_use_native_reader=true; -create table string_arrow_parquet (s1 String, s2 String, s3 String, s4 String, s5 String, s6 String, s7 String) engine=File(Parquet) settings input_format_parquet_use_native_reader=false; -create table string_mergetree (s1 String, s2 String, s3 String, s4 String, s5 String, s6 String, s7 String) engine=MergeTree() order by tuple(); - -insert into string_native_parquet select toString((number%100000)/10), toString(rand()%100), toString(rand()%1000), toString(rand()), toString(rand()), toString(rand()), toString(rand()) from numbers(100000000); -insert into string_arrow_parquet select toString((number%100000)/10), toString(rand()%100), toString(rand()%1000), toString(rand()), toString(rand()), toString(rand()), toString(rand()) from numbers(100000000); -insert into string_mergetree select toString((number%100000)/10), toString(rand()%100), toString(rand()%1000), toString(rand()), toString(rand()), toString(rand()), toString(rand()) from numbers(100000000); -optimize table string_mergetree final; - -select * from string_native_parquet where s1 in ('1', '2', '3', '4', '5', '6', '7', '8', '9', '10') Format Null; # 0.598s -select * from string_arrow_parquet where s1 in ('1', '2', '3', '4', '5', '6', '7', '8', '9', '10') Format Null; # 2.694s -select * from string_mergetree where s1 in ('1', '2', '3', '4', '5', '6', '7', '8', '9', '10') Format Null; # 0.187s - -select * from string_native_parquet where s2 in ('1', '2', '3', '4', '5', '6', '7', '8', '9', '10') Format Null; # 1.228s -select * from string_arrow_parquet where s2 in ('1', '2', '3', '4', '5', '6', '7', '8', '9', '10') Format Null; # 3.006s -select * from string_mergetree where s2 in ('1', '2', '3', '4', '5', '6', '7', '8', '9', '10') Format Null; # 1.502s - -select * from string_native_parquet where s3 in ('1', '2', '3', '4', '5', '6', '7', '8', '9', '10') Format Null; # 1.140s -select * from string_arrow_parquet where s3 in ('1', '2', '3', '4', '5', '6', '7', '8', '9', '10') Format Null; # 2.707s -select * from string_mergetree where s3 in ('1', '2', '3', '4', '5', '6', '7', '8', '9', '10') Format Null; # 1.310s - -drop table if exists string_native_parquet; -drop table if exists string_native_parquet; -drop table if exists string_mergetree; From b45216a33eb159679c6a9ef617a88dbdab54f101 Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Wed, 16 Oct 2024 17:12:16 +0800 Subject: [PATCH 30/34] wrap page data --- .../Impl/Parquet/SelectiveColumnReader.cpp | 172 ++++++++++-------- .../Impl/Parquet/SelectiveColumnReader.h | 73 +++++--- 2 files changed, 145 insertions(+), 100 deletions(-) diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index 007ebfdbc27..684775b9ad9 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -2,12 +2,12 @@ #include #include -#include -#include #include +#include #include -#include +#include #include +#include #include namespace DB @@ -20,11 +20,11 @@ extern const int PARQUET_EXCEPTION; } template -static void decodeFixedValueInternal(PaddedPODArray & data, const S* start, const OptionalRowSet & row_set, size_t rows_to_read) +static void decodeFixedValueInternal(PaddedPODArray & data, const S * start, const OptionalRowSet & row_set, size_t rows_to_read) { if (!row_set.has_value()) { - if constexpr (std::is_same_v) + if constexpr (std::is_same_v) data.insert_assume_reserved(start, start + rows_to_read); else { @@ -44,9 +44,10 @@ static void decodeFixedValueInternal(PaddedPODArray & data, const S* start, c template void PlainDecoder::decodeFixedValue(PaddedPODArray & data, const OptionalRowSet & row_set, size_t rows_to_read) { - const S * start = reinterpret_cast(buffer); + const S * start = reinterpret_cast(page_data.buffer); + page_data.checkSize(rows_to_read * sizeof(S)); decodeFixedValueInternal(data, start, row_set, rows_to_read); - buffer += rows_to_read * sizeof(S); + page_data.consume(rows_to_read * sizeof(S)); remain_rows -= rows_to_read; } @@ -70,12 +71,9 @@ bool SelectiveColumnReader::readPage() { auto dict_page = page_reader->nextPage(); const parquet::DictionaryPage & dict_page1 = *std::static_pointer_cast(dict_page); - if (unlikely( - dict_page1.encoding() != parquet::Encoding::PLAIN_DICTIONARY - && dict_page1.encoding() != parquet::Encoding::PLAIN)) + if (unlikely(dict_page1.encoding() != parquet::Encoding::PLAIN_DICTIONARY && dict_page1.encoding() != parquet::Encoding::PLAIN)) { - throw Exception( - ErrorCodes::NOT_IMPLEMENTED, "Unsupported dictionary page encoding {}", dict_page1.encoding()); + throw Exception(ErrorCodes::NOT_IMPLEMENTED, "Unsupported dictionary page encoding {}", dict_page1.encoding()); } readDictPage(static_cast(*dict_page)); } @@ -97,30 +95,30 @@ void SelectiveColumnReader::readDataPageV1(const parquet::DataPageV1 & page) parquet::LevelDecoder decoder; auto max_size = page.size(); state.remain_rows = page.num_values(); - state.buffer = page.data(); + state.data.buffer = page.data(); auto max_rep_level = scan_spec.column_desc->max_repetition_level(); auto max_def_level = scan_spec.column_desc->max_definition_level(); state.def_levels.resize(0); state.rep_levels.resize(0); if (scan_spec.column_desc->max_repetition_level() > 0) { - auto rep_bytes - = decoder.SetData(page.repetition_level_encoding(), max_rep_level, static_cast(state.remain_rows), state.buffer, max_size); + auto rep_bytes = decoder.SetData( + page.repetition_level_encoding(), max_rep_level, static_cast(state.remain_rows), state.data.buffer, max_size); max_size -= rep_bytes; - state.buffer += rep_bytes; + state.data.buffer += rep_bytes; state.rep_levels.resize_fill(state.remain_rows); decoder.Decode(static_cast(state.remain_rows), state.rep_levels.data()); } if (scan_spec.column_desc->max_definition_level() > 0) { - auto def_bytes - = decoder.SetData(page.definition_level_encoding(), max_def_level, static_cast(state.remain_rows), state.buffer, max_size); + auto def_bytes = decoder.SetData( + page.definition_level_encoding(), max_def_level, static_cast(state.remain_rows), state.data.buffer, max_size); max_size -= def_bytes; - state.buffer += def_bytes; + state.data.buffer += def_bytes; state.def_levels.resize_fill(state.remain_rows); decoder.Decode(static_cast(state.remain_rows), state.def_levels.data()); } - state.buffer_size = max_size; + state.data.buffer_size = max_size; if (page.encoding() == parquet::Encoding::RLE_DICTIONARY || page.encoding() == parquet::Encoding::PLAIN_DICTIONARY) { initIndexDecoderIfNeeded(); @@ -134,7 +132,7 @@ void SelectiveColumnReader::readDataPageV1(const parquet::DataPageV1 & page) downgradeToPlain(); plain = true; } - plain_decoder = std::make_unique(state.buffer, state.remain_rows); + plain_decoder = std::make_unique(state.data, state.remain_rows); } else { @@ -198,12 +196,14 @@ void NumberColumnDirectReader::computeRowSet(OptionalR { readAndDecodePage(); chassert(rows_to_read <= state.remain_rows); - const SerializedType * start = reinterpret_cast(state.buffer); + state.data.checkSize(sizeof(SerializedType) * rows_to_read); + const SerializedType * start = reinterpret_cast(state.data.buffer); computeRowSetPlain(start, row_set, scan_spec.filter, rows_to_read); } template -void NumberColumnDirectReader::read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) +void NumberColumnDirectReader::read( + MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) { readAndDecodePage(); auto * number_column = static_cast(column.get()); @@ -218,7 +218,7 @@ size_t NumberColumnDirectReader::skipValuesInCurrentPa return rows_to_skip; size_t skipped = std::min(state.remain_rows, rows_to_skip); state.remain_rows -= skipped; - state.buffer += skipped * sizeof(SerializedType); + state.data.consume(skipped * sizeof(SerializedType)); return rows_to_skip - skipped; } @@ -266,10 +266,11 @@ static void computeRowSetPlainSpace( } template -void NumberColumnDirectReader::computeRowSetSpace(OptionalRowSet & row_set, PaddedPODArray & null_map, size_t, size_t rows_to_read) +void NumberColumnDirectReader::computeRowSetSpace( + OptionalRowSet & row_set, PaddedPODArray & null_map, size_t, size_t rows_to_read) { readAndDecodePage(); - const SerializedType * start = reinterpret_cast(state.buffer); + const SerializedType * start = reinterpret_cast(state.data.buffer); computeRowSetPlainSpace(start, row_set, scan_spec.filter, null_map, rows_to_read); } @@ -280,13 +281,15 @@ MutableColumnPtr NumberColumnDirectReader::createColum } template -NumberColumnDirectReader::NumberColumnDirectReader(std::unique_ptr page_reader_, ScanSpec scan_spec_, DataTypePtr datatype_) +NumberColumnDirectReader::NumberColumnDirectReader( + std::unique_ptr page_reader_, ScanSpec scan_spec_, DataTypePtr datatype_) : SelectiveColumnReader(std::move(page_reader_), scan_spec_), datatype(datatype_) { } template -NumberDictionaryReader::NumberDictionaryReader(std::unique_ptr page_reader_, ScanSpec scan_spec_, DataTypePtr datatype_) +NumberDictionaryReader::NumberDictionaryReader( + std::unique_ptr page_reader_, ScanSpec scan_spec_, DataTypePtr datatype_) : SelectiveColumnReader(std::move(page_reader_), scan_spec_), datatype(datatype_) { } @@ -297,7 +300,8 @@ void NumberDictionaryReader::nextIdxBatchIfEmpty(size_ if (!batch_buffer.empty() || plain) return; batch_buffer.resize(rows_to_read); - size_t count = idx_decoder.GetBatchWithDict(dict.data(), static_cast(dict.size()), batch_buffer.data(), static_cast(rows_to_read)); + size_t count + = idx_decoder.GetBatchWithDict(dict.data(), static_cast(dict.size()), batch_buffer.data(), static_cast(rows_to_read)); if (count != rows_to_read) throw DB::Exception(ErrorCodes::LOGICAL_ERROR, "read full idx batch failed. read {} rows, expect {}", count, rows_to_read); } @@ -305,12 +309,14 @@ void NumberDictionaryReader::nextIdxBatchIfEmpty(size_ template void NumberDictionaryReader::computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) { - if (!scan_spec.filter || !row_set.has_value()) return; + if (!scan_spec.filter || !row_set.has_value()) + return; readAndDecodePage(); chassert(rows_to_read <= state.remain_rows); if (plain) { - const SerializedType * start = reinterpret_cast(state.buffer); + const SerializedType * start = reinterpret_cast(state.data.buffer); + state.data.checkSize(rows_to_read * sizeof(SerializedType)); computeRowSetPlain(start, row_set, scan_spec.filter, rows_to_read); return; } @@ -322,12 +328,13 @@ template void NumberDictionaryReader::computeRowSetSpace( OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) { - if (!scan_spec.filter || !row_set.has_value()) return; + if (!scan_spec.filter || !row_set.has_value()) + return; readAndDecodePage(); chassert(rows_to_read <= state.remain_rows); if (plain) { - const SerializedType * start = reinterpret_cast(state.buffer); + const SerializedType * start = reinterpret_cast(state.data.buffer); computeRowSetPlainSpace(start, row_set, scan_spec.filter, null_map, rows_to_read); return; } @@ -380,7 +387,8 @@ void NumberDictionaryReader::read(MutableColumnPtr & c { auto old_size = data.size(); data.resize(old_size + rows_to_read); - size_t count = idx_decoder.GetBatchWithDict(dict.data() , static_cast(dict.size()), data.data() + old_size, static_cast(rows_to_read)); + size_t count = idx_decoder.GetBatchWithDict( + dict.data(), static_cast(dict.size()), data.data() + old_size, static_cast(rows_to_read)); if (count != rows_to_read) throw DB::Exception(ErrorCodes::LOGICAL_ERROR, "read full idx batch failed. read {} rows, expect {}", count, rows_to_read); } @@ -428,7 +436,7 @@ size_t NumberDictionaryReader::skipValuesInCurrentPage state.remain_rows -= skipped; if (plain) { - state.buffer += skipped * sizeof(SerializedType); + state.data.checkAndConsume(sizeof(SerializedType) * skipped); } else { @@ -655,8 +663,10 @@ void StringDictionaryReader::initIndexDecoderIfNeeded() { if (dict.empty()) return; - uint8_t bit_width = *state.buffer; - idx_decoder = arrow::util::RleDecoder(++state.buffer, static_cast(--state.buffer_size), bit_width); + state.data.checkSize(1); + uint8_t bit_width = *state.data.buffer; + state.data.consume(1); + idx_decoder = arrow::util::RleDecoder(state.data.buffer, static_cast(state.data.buffer_size), bit_width); } void StringDictionaryReader::readDictPage(const parquet::DictionaryPage & page) @@ -693,10 +703,10 @@ size_t StringDictionaryReader::skipValuesInCurrentPage(size_t rows_to_skip) size_t offset = 0; for (size_t i = 0; i < skipped; i++) { - auto len = loadLength(state.buffer + offset); + auto len = loadLength(state.data.buffer + offset); offset += 4 + len; } - state.buffer += offset; + state.data.checkAndConsume(offset); } else { @@ -723,7 +733,7 @@ void StringDictionaryReader::readSpace( ColumnString * string_column = reinterpret_cast(column.get()); if (plain) { - size_t total_size = plain_decoder->calculateStringTotalSizeSpace(state.buffer, row_set, null_map, rows_to_read); + size_t total_size = plain_decoder->calculateStringTotalSizeSpace(state.data, row_set, null_map, rows_to_read); string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_to_read); string_column->getChars().reserve(string_column->getChars().size() + total_size); plain_decoder->decodeStringSpace(string_column->getChars(), string_column->getOffsets(), row_set, null_map, rows_to_read); @@ -742,7 +752,7 @@ void StringDictionaryReader::read(MutableColumnPtr & column, const OptionalRowSe ColumnString * string_column = reinterpret_cast(column.get()); if (plain) { - size_t total_size = plain_decoder->calculateStringTotalSize(state.buffer, row_set, rows_to_read); + size_t total_size = plain_decoder->calculateStringTotalSize(state.data, row_set, rows_to_read); string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_to_read); string_column->getChars().reserve(string_column->getChars().size() + total_size); plain_decoder->decodeString(string_column->getChars(), string_column->getOffsets(), row_set, rows_to_read); @@ -761,7 +771,7 @@ void StringDictionaryReader::computeRowSetSpace( chassert(rows_to_read <= state.remain_rows); if (plain) { - computeRowSetPlainStringSpace(state.buffer, row_set, scan_spec.filter, rows_to_read, null_map); + computeRowSetPlainStringSpace(state.data.buffer, row_set, scan_spec.filter, rows_to_read, null_map); return; } auto nonnull_count = rows_to_read - null_count; @@ -802,7 +812,7 @@ void StringDictionaryReader::computeRowSet(OptionalRowSet & row_set, size_t rows chassert(rows_to_read <= state.remain_rows); if (plain) { - computeRowSetPlainString(state.buffer, row_set, scan_spec.filter, rows_to_read); + computeRowSetPlainString(state.data.buffer, row_set, scan_spec.filter, rows_to_read); return; } nextIdxBatchIfEmpty(rows_to_read); @@ -834,19 +844,23 @@ size_t StringDirectReader::skipValuesInCurrentPage(size_t rows_to_skip) size_t offset = 0; for (size_t i = 0; i < skipped; i++) { - auto len = loadLength(state.buffer + offset); + auto len = loadLength(state.data.buffer + offset); offset += 4 + len; } - state.buffer += offset; + state.data.checkAndConsume(offset); return rows_to_skip - skipped; } void StringDirectReader::readSpace( - MutableColumnPtr & column, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) + MutableColumnPtr & column, + const OptionalRowSet & row_set, + PaddedPODArray & null_map, + size_t null_count, + size_t rows_to_read) { readAndDecodePage(); ColumnString * string_column = reinterpret_cast(column.get()); - size_t total_size = plain_decoder->calculateStringTotalSizeSpace(state.buffer, row_set, null_map, rows_to_read - null_count); + size_t total_size = plain_decoder->calculateStringTotalSizeSpace(state.data, row_set, null_map, rows_to_read - null_count); string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_to_read); string_column->getChars().reserve(string_column->getChars().size() + total_size); plain_decoder->decodeStringSpace(string_column->getChars(), string_column->getOffsets(), row_set, null_map, rows_to_read); @@ -856,7 +870,7 @@ void StringDirectReader::read(MutableColumnPtr & column, const OptionalRowSet & { readAndDecodePage(); ColumnString * string_column = reinterpret_cast(column.get()); - size_t total_size = plain_decoder->calculateStringTotalSize(state.buffer, row_set, rows_to_read); + size_t total_size = plain_decoder->calculateStringTotalSize(state.data, row_set, rows_to_read); string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_to_read); string_column->getChars().reserve(string_column->getChars().size() + total_size); plain_decoder->decodeString(string_column->getChars(), string_column->getOffsets(), row_set, rows_to_read); @@ -865,18 +879,16 @@ void StringDirectReader::read(MutableColumnPtr & column, const OptionalRowSet & void StringDirectReader::computeRowSetSpace(OptionalRowSet & row_set, PaddedPODArray & null_map, size_t, size_t rows_to_read) { readAndDecodePage(); - computeRowSetPlainStringSpace(state.buffer, row_set, scan_spec.filter, rows_to_read, null_map); + computeRowSetPlainStringSpace(state.data.buffer, row_set, scan_spec.filter, rows_to_read, null_map); } void StringDirectReader::computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) { readAndDecodePage(); - computeRowSetPlainString(state.buffer, row_set, scan_spec.filter, rows_to_read); + computeRowSetPlainString(state.data.buffer, row_set, scan_spec.filter, rows_to_read); } -static void appendString(ColumnString::Chars & chars, - IColumn::Offsets & offsets, - const String& value) +static void appendString(ColumnString::Chars & chars, IColumn::Offsets & offsets, const String & value) { if (!value.empty()) { @@ -914,7 +926,7 @@ void DictDecoder::decodeStringSpace( } else { - const String& value = dict[idx_buffer[count]]; + const String & value = dict[idx_buffer[count]]; appendString(chars, offsets, value); } } @@ -934,7 +946,7 @@ void DictDecoder::decodeStringSpace( } else { - const String& value = dict[idx_buffer[count]]; + const String & value = dict[idx_buffer[count]]; appendString(chars, offsets, value); count++; } @@ -978,10 +990,7 @@ void DictDecoder::decodeString( } template void DictDecoder::decodeFixedValue( - PaddedPODArray & dict, - PaddedPODArray & data, - const OptionalRowSet & row_set, - size_t rows_to_read) + PaddedPODArray & dict, PaddedPODArray & data, const OptionalRowSet & row_set, size_t rows_to_read) { if (row_set.has_value()) { @@ -1047,12 +1056,12 @@ void PlainDecoder::decodeString( const auto & sets = row_set.value(); for (size_t i = 0; i < rows_to_read; i++) { - auto len = loadLength(buffer + offset); + auto len = loadLength(page_data.buffer + offset); offset += 4; if (sets.get(i)) { if (len) - chars.insert_assume_reserved(buffer + offset, buffer + offset + len); + chars.insert_assume_reserved(page_data.buffer + offset, page_data.buffer + offset + len); chars.push_back(0); offsets.push_back(chars.size()); offset += len; @@ -1067,16 +1076,16 @@ void PlainDecoder::decodeString( { for (size_t i = 0; i < rows_to_read; i++) { - auto len = loadLength(buffer + offset); + auto len = loadLength(page_data.buffer + offset); offset += 4; if (len) - chars.insert_assume_reserved(buffer + offset, buffer + offset + len); + chars.insert_assume_reserved(page_data.buffer + offset, page_data.buffer + offset + len); chars.push_back(0); offsets.push_back(chars.size()); offset += len; } } - buffer += offset; + page_data.checkAndConsume(offset); remain_rows -= rows_to_read; } @@ -1103,12 +1112,12 @@ void PlainDecoder::decodeStringSpace( } continue; } - auto len = loadLength(buffer + offset); + auto len = loadLength(page_data.buffer + offset); offset += 4; if (sets.get(i)) { if (len) - chars.insert_assume_reserved(buffer + offset, buffer + offset + len); + chars.insert_assume_reserved(page_data.buffer + offset, page_data.buffer + offset + len); chars.push_back(0); offsets.push_back(chars.size()); offset += len; @@ -1129,24 +1138,45 @@ void PlainDecoder::decodeStringSpace( offsets.push_back(chars.size()); continue; } - auto len = loadLength(buffer + offset); + auto len = loadLength(page_data.buffer + offset); offset += 4; if (len) - chars.insert_assume_reserved(buffer + offset, buffer + offset + len); + chars.insert_assume_reserved(page_data.buffer + offset, page_data.buffer + offset + len); chars.push_back(0); offsets.push_back(chars.size()); offset += len; } } - buffer += offset; + page_data.checkAndConsume(offset); remain_rows -= rows_to_read; } +size_t PlainDecoder::calculateStringTotalSize(const ParquetData & data, const OptionalRowSet & row_set, const size_t rows_to_read) +{ + size_t offset = 0; + size_t total_size = 0; + for (size_t i = 0; i < rows_to_read; i++) + { + addOneString(false, data, offset, row_set, i, total_size); + } + return total_size; +} +size_t DB::PlainDecoder::calculateStringTotalSizeSpace( + const ParquetData & data, const DB::OptionalRowSet & row_set, DB::PaddedPODArray & null_map, const size_t rows_to_read) +{ + size_t offset = 0; + size_t total_size = 0; + for (size_t i = 0; i < rows_to_read; i++) + { + addOneString(null_map[i], data, offset, row_set, i, total_size); + } + return total_size; +} template void PlainDecoder::decodeFixedValueSpace( PaddedPODArray & data, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t rows_to_read) { size_t rows_read = 0; - const S * start = reinterpret_cast(buffer); + const S * start = reinterpret_cast(page_data.buffer); size_t count = 0; if (!row_set.has_value()) { @@ -1183,7 +1213,7 @@ void PlainDecoder::decodeFixedValueSpace( rows_read++; } } - buffer += count * sizeof(S); + page_data.checkAndConsume(count * sizeof(S)); remain_rows -= rows_to_read; } } diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h index bf4a22f0635..33456dc7ff0 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h @@ -67,20 +67,47 @@ private: bool value_null = false; }; +struct ParquetData +{ + // raw page data + const uint8_t * buffer = nullptr; + // size of raw page data + size_t buffer_size = 0; + + void checkSize(size_t size) const + { + if (size > buffer_size) [[unlikely]] + throw Exception(ErrorCodes::PARQUET_EXCEPTION , "ParquetData: buffer size is not enough, {} > {}", size, buffer_size); + } + + // before consume, should check size first + void consume(size_t size) + { + buffer += size; + buffer_size -= size; + } + + void checkAndConsume(size_t size) + { + checkSize(size); + consume(size); + } +}; struct ScanState { std::shared_ptr page; PaddedPODArray def_levels; PaddedPODArray rep_levels; - const uint8_t * buffer = nullptr; - size_t buffer_size = 0; + ParquetData data; + // rows should be skipped before read data size_t lazy_skip_rows = 0; // for dictionary encoding PaddedPODArray idx_buffer; std::unique_ptr filter_cache; + // current column chunk available rows size_t remain_rows = 0; }; @@ -90,7 +117,7 @@ Int32 loadLength(const uint8_t * data); class PlainDecoder { public: - PlainDecoder(const uint8_t *& buffer_, size_t & remain_rows_) : buffer(buffer_), remain_rows(remain_rows_) { } + PlainDecoder(ParquetData& data_, size_t & remain_rows_) : data(data_), remain_rows(remain_rows_) { } template void decodeFixedValue(PaddedPODArray & data, const OptionalRowSet & row_set, size_t rows_to_read); @@ -107,31 +134,13 @@ public: PaddedPODArray & null_map, size_t rows_to_read); - size_t calculateStringTotalSize(const uint8_t * data, const OptionalRowSet & row_set, const size_t rows_to_read) - { - size_t offset = 0; - size_t total_size = 0; - for (size_t i = 0; i < rows_to_read; i++) - { - addOneString(false, data, offset, row_set, i, total_size); - } - return total_size; - } + size_t calculateStringTotalSize(const ParquetData& data, const OptionalRowSet & row_set, size_t rows_to_read); size_t - calculateStringTotalSizeSpace(const uint8_t * data, const OptionalRowSet & row_set, PaddedPODArray & null_map, const size_t rows_to_read) - { - size_t offset = 0; - size_t total_size = 0; - for (size_t i = 0; i < rows_to_read; i++) - { - addOneString(null_map[i], data, offset, row_set, i, total_size); - } - return total_size; - } + calculateStringTotalSizeSpace(const ParquetData& data, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t rows_to_read); private: - void addOneString(bool null, const uint8_t * data, size_t & offset, const OptionalRowSet & row_set, size_t row, size_t & total_size) + void addOneString(bool null, const ParquetData& data, size_t & offset, const OptionalRowSet & row_set, size_t row, size_t & total_size) { if (row_set.has_value()) { @@ -142,8 +151,10 @@ private: total_size++; return; } - auto len = loadLength(data + offset); + data.checkSize(offset +4) + auto len = loadLength(data.buffer + offset); offset += 4 + len; + data.checkSize(offset); if (sets.get(row)) total_size += len + 1; } @@ -154,13 +165,15 @@ private: total_size++; return; } - auto len = loadLength(data + offset); + data.checkSize(offset +4) + auto len = loadLength(data.buffer + offset); offset += 4 + len; + data.checkSize(offset); total_size += len + 1; } } - const uint8_t *& buffer; + ParquetData& page_data; size_t & remain_rows; }; @@ -297,8 +310,10 @@ protected: { if (dict.empty()) return; - uint8_t bit_width = *state.buffer; - idx_decoder = arrow::util::RleDecoder(++state.buffer, static_cast(--state.buffer_size), bit_width); + uint8_t bit_width = *state.data.buffer; + state.data.checkSize(1); + state.data.consume(1); + idx_decoder = arrow::util::RleDecoder(++state.data.buffer, static_cast(--state.data.buffer_size), bit_width); } void nextIdxBatchIfEmpty(size_t rows_to_read); From 5f110b7a17e117d20efead5a9c2d84dad3efdde9 Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Tue, 22 Oct 2024 16:02:58 +0800 Subject: [PATCH 31/34] seperately load condition columns and other columns --- .../Formats/Impl/Parquet/ColumnFilter.cpp | 36 +-- .../Formats/Impl/Parquet/ColumnFilter.h | 60 ++-- .../Parquet/ParquetColumnReaderFactory.cpp | 140 ++++----- .../Impl/Parquet/ParquetColumnReaderFactory.h | 5 +- .../Formats/Impl/Parquet/ParquetReader.cpp | 58 ++-- .../Formats/Impl/Parquet/ParquetReader.h | 10 +- .../Impl/Parquet/RowGroupChunkReader.cpp | 72 +++-- .../Impl/Parquet/RowGroupChunkReader.h | 7 +- .../Impl/Parquet/SelectiveColumnReader.cpp | 292 +++++++++++------- .../Impl/Parquet/SelectiveColumnReader.h | 54 ++-- 10 files changed, 442 insertions(+), 292 deletions(-) diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp index eea7995838e..61e5717de81 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.cpp @@ -61,7 +61,7 @@ void FilterHelper::filterPlainFixedData(const S* src, PaddedPODArray & dst, c for (size_t i = 0; i < num_batched; ++i) { auto rows = i * increment; - bool_type mask = bool_type::load_aligned(row_set.maskReference().data() + rows); + bool_type mask = bool_type::load_aligned(row_set.activeAddress() + rows); auto old_size = dst.size(); if (xsimd::none(mask)) continue; @@ -148,7 +148,7 @@ void FilterHelper::filterDictFixedData(const PaddedPODArray & dict, PaddedPOD for (size_t i = 0; i < num_batched; ++i) { auto rows = i * increment; - bool_type mask = bool_type::load_aligned(row_set.maskReference().data() + rows); + bool_type mask = bool_type::load_aligned(row_set.activeAddress() + rows); if (xsimd::none(mask)) continue; else if (xsimd::all(mask)) @@ -183,7 +183,7 @@ template void FilterHelper::filterDictFixedData(const PaddedPODArray & di template -void BigIntRangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t len, const T * data) const +void BigIntRangeFilter::testIntValues(RowSet & row_set, size_t len, const T * data) const { using batch_type = xsimd::batch; using bool_type = xsimd::batch_bool; @@ -202,11 +202,11 @@ void BigIntRangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t le else UNREACHABLE(); } - bool aligned = offset % increment == 0; + bool aligned = row_set.getOffset() % increment == 0; for (size_t i = 0; i < num_batched; ++i) { batch_type value; - const auto rows = offset + (i * increment); + const auto rows = i * increment; if (aligned) value = batch_type::load_aligned(data + rows); else @@ -238,35 +238,35 @@ void BigIntRangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t le if constexpr (negated) mask = ~mask; if (aligned) - mask.store_aligned(row_set.maskReference().data() + rows); + mask.store_aligned(row_set.activeAddress() + rows); else - mask.store_unaligned(row_set.maskReference().data() + rows); + mask.store_unaligned(row_set.activeAddress() + rows); } - for (size_t i = offset + (num_batched * increment); i < offset + len ; ++i) + for (size_t i = num_batched * increment; i < len ; ++i) { bool value = data[i] >= lower & data[i] <= upper; if (negated) value = !value; - row_set.maskReference()[i] = value; + row_set.set(i, value); } } -template void BigIntRangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t len, const Int64 * data) const; -template void BigIntRangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t len, const Int32 * data) const; -template void BigIntRangeFilter::testIntValues(RowSet & row_set, size_t offset, size_t len, const Int16 * data) const; +template void BigIntRangeFilter::testIntValues(RowSet & row_set, size_t len, const Int64 * data) const; +template void BigIntRangeFilter::testIntValues(RowSet & row_set, size_t len, const Int32 * data) const; +template void BigIntRangeFilter::testIntValues(RowSet & row_set, size_t len, const Int16 * data) const; -void BigIntRangeFilter::testInt64Values(DB::RowSet & row_set, size_t offset, size_t len, const Int64 * data) const +void BigIntRangeFilter::testInt64Values(DB::RowSet & row_set, size_t len, const Int64 * data) const { - testIntValues(row_set, offset, len, data); + testIntValues(row_set, len, data); } -void BigIntRangeFilter::testInt32Values(RowSet & row_set, size_t offset, size_t len, const Int32 * data) const +void BigIntRangeFilter::testInt32Values(RowSet & row_set, size_t len, const Int32 * data) const { - testIntValues(row_set, offset, len, data); + testIntValues(row_set, len, data); } -void BigIntRangeFilter::testInt16Values(RowSet & row_set, size_t offset, size_t len, const Int16 * data) const +void BigIntRangeFilter::testInt16Values(RowSet & row_set, size_t len, const Int16 * data) const { - testIntValues(row_set, offset, len, data); + testIntValues(row_set, len, data); } bool isFunctionNode(const ActionsDAG::Node & node) diff --git a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h index a3b2411f586..088b9c53e1c 100644 --- a/src/Processors/Formats/Impl/Parquet/ColumnFilter.h +++ b/src/Processors/Formats/Impl/Parquet/ColumnFilter.h @@ -26,14 +26,17 @@ public: std::fill(mask.begin(), mask.end(), true); } - inline void set(size_t i, bool value) { mask[i] = value; } + inline void set(size_t i, bool value) { mask[offset + i] = value; } inline bool get(size_t i) const { - if (i >= max_rows) + auto position = offset + i; + if (position >= max_rows) throw DB::Exception(DB::ErrorCodes::LOGICAL_ERROR, "RowSet index out of bound: {} >= {}", i, max_rows); - return mask[i]; + return mask[position]; } inline size_t totalRows() const { return max_rows; } + inline void setOffset(size_t offset_) { offset = offset_; } + inline size_t getOffset() const { return offset; } bool none() const; bool all() const; bool any() const; @@ -43,11 +46,14 @@ public: { return countBytesInFilter(reinterpret_cast(mask.data()), 0, mask.size()); } - PaddedPODArray & maskReference() { return mask; } - const PaddedPODArray & maskReference() const { return mask; } +// PaddedPODArray & maskReference() { return mask; } +// const PaddedPODArray & maskReference() const { return mask; } + const bool * activeAddress() const { return mask.data() + offset; } + bool * activeAddress() { return mask.data() + offset; } private: size_t max_rows = 0; + size_t offset = 0; PaddedPODArray mask; }; using OptionalRowSet = std::optional; @@ -135,41 +141,41 @@ public: { throw DB::Exception(ErrorCodes::NOT_IMPLEMENTED, "testFloat64Range not implemented"); } - virtual void testInt64Values(RowSet & row_set, size_t offset, size_t len, const Int64 * data) const + virtual void testInt64Values(RowSet & row_set, size_t len, const Int64 * data) const { - for (size_t i = offset; i < offset + len; ++i) + for (size_t i = 0; i < len; ++i) { row_set.set(i, testInt64(data[i])); } } - virtual void testInt32Values(RowSet & row_set, size_t offset, size_t len, const Int32 * data) const + virtual void testInt32Values(RowSet & row_set, size_t len, const Int32 * data) const { - for (size_t i = offset; i < offset + len; ++i) + for (size_t i = 0; i < len; ++i) { row_set.set(i, testInt32(data[i])); } } - virtual void testInt16Values(RowSet & row_set, size_t offset, size_t len, const Int16 * data) const + virtual void testInt16Values(RowSet & row_set, size_t len, const Int16 * data) const { - for (size_t i = offset; i < offset + len; ++i) + for (size_t i = 0; i < len; ++i) { row_set.set(i, testInt16(data[i])); } } - virtual void testFloat32Values(RowSet & row_set, size_t offset, size_t len, const Float32 * data) const + virtual void testFloat32Values(RowSet & row_set, size_t len, const Float32 * data) const { - for (size_t i = offset; i < offset + len; ++i) + for (size_t i = 0; i < len; ++i) { row_set.set(i, testFloat32(data[i])); } } - virtual void testFloat64Values(RowSet & row_set, size_t offset, size_t len, const Float64 * data) const + virtual void testFloat64Values(RowSet & row_set, size_t len, const Float64 * data) const { - for (size_t i = offset; i < offset + len; ++i) + for (size_t i = 0; i < len; ++i) { row_set.set(i, testFloat64(data[i])); } @@ -221,7 +227,7 @@ public: bool testInt64Range(Int64, Int64) const override { return true; } bool testFloat32Range(Float32, Float32) const override { return true; } bool testFloat64Range(Float64, Float64) const override { return true; } - void testInt64Values(RowSet & set, size_t, size_t, const Int64 *) const override { set.setAllTrue(); } + void testInt64Values(RowSet & set, size_t, const Int64 *) const override { set.setAllTrue(); } bool testString(const String & /*value*/) const override { return true; } ColumnFilterPtr merge(const ColumnFilter * /*filter*/) const override { return std::make_shared(); } ColumnFilterPtr clone(std::optional) const override { return std::make_shared(); } @@ -240,7 +246,7 @@ public: bool testInt64Range(Int64, Int64) const override { return false; } bool testFloat32Range(Float32, Float32) const override { return false; } bool testFloat64Range(Float64, Float64) const override { return false; } - void testInt64Values(RowSet & set, size_t, size_t, const Int64 *) const override { set.setAllFalse(); } + void testInt64Values(RowSet & set, size_t, const Int64 *) const override { set.setAllFalse(); } bool testString(const String & /*value*/) const override { return false; } ColumnFilterPtr merge(const ColumnFilter * /*filter*/) const override { return std::make_shared(); } ColumnFilterPtr clone(std::optional) const override { return std::make_shared(); } @@ -267,9 +273,9 @@ public: bool testInt32(Int32 int32) const override { return int32 >= lower && int32 <= upper; } bool testInt16(Int16 int16) const override { return int16 >= lower && int16 <= upper; } bool testInt64Range(Int64 lower_, Int64 upper_) const override { return lower >= lower_ && upper_ <= upper; } - void testInt64Values(RowSet & row_set, size_t offset, size_t len, const Int64 * data) const override; - void testInt32Values(RowSet & row_set, size_t offset, size_t len, const Int32 * data) const override; - void testInt16Values(RowSet & row_set, size_t offset, size_t len, const Int16 * data) const override; + void testInt64Values(RowSet & row_set, size_t len, const Int64 * data) const override; + void testInt32Values(RowSet & row_set, size_t len, const Int32 * data) const override; + void testInt16Values(RowSet & row_set, size_t len, const Int16 * data) const override; ColumnFilterPtr merge(const ColumnFilter * filter) const override; ColumnFilterPtr clone(std::optional null_allowed_) const override { @@ -286,7 +292,7 @@ public: private: template - void testIntValues(RowSet & row_set, size_t offset, size_t len, const T * data) const; + void testIntValues(RowSet & row_set, size_t len, const T * data) const; const Int64 upper; const Int64 lower; @@ -309,17 +315,17 @@ public: bool testInt64(Int64 int64) const override { return !non_negated->testInt64(int64); } bool testInt32(Int32 int32) const override { return !non_negated->testInt32(int32); } bool testInt16(Int16 int16) const override { return !non_negated->testInt16(int16); } - void testInt64Values(RowSet & row_set, size_t offset, size_t len, const Int64 * data) const override + void testInt64Values(RowSet & row_set, size_t len, const Int64 * data) const override { - non_negated->testIntValues(row_set, offset, len, data); + non_negated->testIntValues(row_set, len, data); } - void testInt32Values(RowSet & row_set, size_t offset, size_t len, const Int32 * data) const override + void testInt32Values(RowSet & row_set, size_t len, const Int32 * data) const override { - non_negated->testIntValues(row_set, offset, len, data); + non_negated->testIntValues(row_set, len, data); } - void testInt16Values(RowSet & row_set, size_t offset, size_t len, const Int16 * data) const override + void testInt16Values(RowSet & row_set, size_t len, const Int16 * data) const override { - non_negated->testIntValues(row_set, offset, len, data); + non_negated->testIntValues(row_set, len, data); } ColumnFilterPtr merge(const ColumnFilter * filter) const override; diff --git a/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp b/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp index ca1e43bb2d1..a0222dadf84 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp +++ b/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp @@ -12,7 +12,7 @@ namespace DB { template SelectiveColumnReaderPtr createColumnReader( - std::unique_ptr /*page_reader*/, const ScanSpec & /*scan_spec*/, const parquet::LogicalType & /*logical_type*/) + PageReaderCreator /*page_reader_creator*/, const ScanSpec & /*scan_spec*/, const parquet::LogicalType & /*logical_type*/) { throw DB::Exception( ErrorCodes::NOT_IMPLEMENTED, @@ -23,18 +23,18 @@ SelectiveColumnReaderPtr createColumnReader( template <> SelectiveColumnReaderPtr createColumnReader( - std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType & /*logical_type*/) + PageReaderCreator page_reader_creator, const ScanSpec & scan_spec, const parquet::LogicalType & /*logical_type*/) { return std::make_shared>( - std::move(page_reader), scan_spec, std::make_shared()); + std::move(page_reader_creator), scan_spec, std::make_shared()); } template <> SelectiveColumnReaderPtr createColumnReader( - std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType & /*logical_type*/) + PageReaderCreator page_reader_creator, const ScanSpec & scan_spec, const parquet::LogicalType & /*logical_type*/) { return std::make_shared>( - std::move(page_reader), scan_spec, std::make_shared()); + std::move(page_reader_creator), scan_spec, std::make_shared()); } static UInt32 getScaleFromLogicalTimestamp(parquet::LogicalType::TimeUnit::unit tm_unit) @@ -54,7 +54,7 @@ static UInt32 getScaleFromLogicalTimestamp(parquet::LogicalType::TimeUnit::unit template <> SelectiveColumnReaderPtr createColumnReader( - std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType & logical_type) + PageReaderCreator page_reader_creator, const ScanSpec & scan_spec, const parquet::LogicalType & logical_type) { DataTypePtr type_datetime64; if (logical_type.is_timestamp()) @@ -65,12 +65,12 @@ SelectiveColumnReaderPtr createColumnReader(3); return std::make_shared>( - std::move(page_reader), scan_spec, type_datetime64); + std::move(page_reader_creator), scan_spec, type_datetime64); } template <> SelectiveColumnReaderPtr createColumnReader( - std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType & logical_type) + PageReaderCreator page_reader_creator, const ScanSpec & scan_spec, const parquet::LogicalType & logical_type) { DataTypePtr type_datetime64; if (logical_type.is_timestamp()) @@ -81,151 +81,151 @@ SelectiveColumnReaderPtr createColumnReader(0); return std::make_shared>( - std::move(page_reader), scan_spec, type_datetime64); + std::move(page_reader_creator), scan_spec, type_datetime64); } template <> SelectiveColumnReaderPtr createColumnReader( - std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) + PageReaderCreator page_reader_creator, const ScanSpec & scan_spec, const parquet::LogicalType &) { return std::make_shared>( - std::move(page_reader), scan_spec, std::make_shared()); + std::move(page_reader_creator), scan_spec, std::make_shared()); } template <> SelectiveColumnReaderPtr createColumnReader( - std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) + PageReaderCreator page_reader_creator, const ScanSpec & scan_spec, const parquet::LogicalType &) { return std::make_shared>( - std::move(page_reader), scan_spec, std::make_shared()); + std::move(page_reader_creator), scan_spec, std::make_shared()); } template <> SelectiveColumnReaderPtr createColumnReader( - std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) + PageReaderCreator page_reader_creator, const ScanSpec & scan_spec, const parquet::LogicalType &) { return std::make_shared>( - std::move(page_reader), scan_spec, std::make_shared()); + std::move(page_reader_creator), scan_spec, std::make_shared()); } template <> SelectiveColumnReaderPtr createColumnReader( - std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) + PageReaderCreator page_reader_creator, const ScanSpec & scan_spec, const parquet::LogicalType &) { return std::make_shared>( - std::move(page_reader), scan_spec, std::make_shared()); + std::move(page_reader_creator), scan_spec, std::make_shared()); } template <> SelectiveColumnReaderPtr createColumnReader( - std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) + PageReaderCreator page_reader_creator, const ScanSpec & scan_spec, const parquet::LogicalType &) { return std::make_shared>( - std::move(page_reader), scan_spec, std::make_shared()); + std::move(page_reader_creator), scan_spec, std::make_shared()); } template <> SelectiveColumnReaderPtr createColumnReader( - std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) + PageReaderCreator page_reader_creator, const ScanSpec & scan_spec, const parquet::LogicalType &) { return std::make_shared>( - std::move(page_reader), scan_spec, std::make_shared()); + std::move(page_reader_creator), scan_spec, std::make_shared()); } template <> SelectiveColumnReaderPtr createColumnReader( - std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) + PageReaderCreator page_reader_creator, const ScanSpec & scan_spec, const parquet::LogicalType &) { return std::make_shared>( - std::move(page_reader), scan_spec, std::make_shared()); + std::move(page_reader_creator), scan_spec, std::make_shared()); } template <> SelectiveColumnReaderPtr createColumnReader( - std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) + PageReaderCreator page_reader_creator, const ScanSpec & scan_spec, const parquet::LogicalType &) { return std::make_shared>( - std::move(page_reader), scan_spec, std::make_shared()); + std::move(page_reader_creator), scan_spec, std::make_shared()); } template <> SelectiveColumnReaderPtr createColumnReader( - std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) + PageReaderCreator page_reader_creator, const ScanSpec & scan_spec, const parquet::LogicalType &) { return std::make_shared>( - std::move(page_reader), scan_spec, std::make_shared()); + std::move(page_reader_creator), scan_spec, std::make_shared()); } template <> SelectiveColumnReaderPtr createColumnReader( - std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) + PageReaderCreator page_reader_creator, const ScanSpec & scan_spec, const parquet::LogicalType &) { return std::make_shared>( - std::move(page_reader), scan_spec, std::make_shared()); + std::move(page_reader_creator), scan_spec, std::make_shared()); } template <> SelectiveColumnReaderPtr createColumnReader( - std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) + PageReaderCreator page_reader_creator, const ScanSpec & scan_spec, const parquet::LogicalType &) { return std::make_shared>( - std::move(page_reader), scan_spec, std::make_shared()); + std::move(page_reader_creator), scan_spec, std::make_shared()); } template <> SelectiveColumnReaderPtr createColumnReader( - std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) + PageReaderCreator page_reader_creator, const ScanSpec & scan_spec, const parquet::LogicalType &) { return std::make_shared>( - std::move(page_reader), scan_spec, std::make_shared()); + std::move(page_reader_creator), scan_spec, std::make_shared()); } template <> SelectiveColumnReaderPtr createColumnReader( - std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) + PageReaderCreator page_reader_creator, const ScanSpec & scan_spec, const parquet::LogicalType &) { return std::make_shared>( - std::move(page_reader), scan_spec, std::make_shared()); + std::move(page_reader_creator), scan_spec, std::make_shared()); } template <> SelectiveColumnReaderPtr createColumnReader( - std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) + PageReaderCreator page_reader_creator, const ScanSpec & scan_spec, const parquet::LogicalType &) { return std::make_shared>( - std::move(page_reader), scan_spec, std::make_shared()); + std::move(page_reader_creator), scan_spec, std::make_shared()); } template <> SelectiveColumnReaderPtr createColumnReader( - std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) + PageReaderCreator page_reader_creator, const ScanSpec & scan_spec, const parquet::LogicalType &) { return std::make_shared>( - std::move(page_reader), scan_spec, std::make_shared()); + std::move(page_reader_creator), scan_spec, std::make_shared()); } template <> SelectiveColumnReaderPtr createColumnReader( - std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) + PageReaderCreator page_reader_creator, const ScanSpec & scan_spec, const parquet::LogicalType &) { return std::make_shared>( - std::move(page_reader), scan_spec, std::make_shared()); + std::move(page_reader_creator), scan_spec, std::make_shared()); } template <> SelectiveColumnReaderPtr createColumnReader( - std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) + PageReaderCreator page_reader_creator, const ScanSpec & scan_spec, const parquet::LogicalType &) { return std::make_shared( - std::move(page_reader), scan_spec); + std::move(page_reader_creator), scan_spec); } template <> SelectiveColumnReaderPtr createColumnReader( - std::unique_ptr page_reader, const ScanSpec & scan_spec, const parquet::LogicalType &) + PageReaderCreator page_reader_creator, const ScanSpec & scan_spec, const parquet::LogicalType &) { return std::make_shared( - std::move(page_reader), scan_spec); + std::move(page_reader_creator), scan_spec); } ParquetColumnReaderFactory::Builder & ParquetColumnReaderFactory::Builder::columnDescriptor(const parquet::ColumnDescriptor * columnDescr) @@ -257,15 +257,15 @@ ParquetColumnReaderFactory::Builder & ParquetColumnReaderFactory::Builder::targe return *this; } -ParquetColumnReaderFactory::Builder & ParquetColumnReaderFactory::Builder::pageReader(std::unique_ptr page_reader) +ParquetColumnReaderFactory::Builder & ParquetColumnReaderFactory::Builder::pageReader(PageReaderCreator page_reader_creator_) { - page_reader_ = std::move(page_reader); + page_reader_creator = page_reader_creator_; return *this; } SelectiveColumnReaderPtr ParquetColumnReaderFactory::Builder::build() { - if (!column_descriptor_ || !page_reader_ || !target_type_) + if (!column_descriptor_ || !page_reader_creator || !target_type_) throw DB::Exception(ErrorCodes::LOGICAL_ERROR, "ParquetColumnReaderFactory::Builder: column descriptor, page reader and target type must be set"); ScanSpec scan_spec{.column_name = column_descriptor_->name(), .column_desc = column_descriptor_, .filter = filter_}; parquet::Type::type physical_type = column_descriptor_->physical_type(); @@ -277,23 +277,23 @@ SelectiveColumnReaderPtr ParquetColumnReaderFactory::Builder::build() if (isInt64(target_type)) { if (dictionary_) - leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + leaf_reader = createColumnReader(std::move(page_reader_creator), scan_spec, logical_type); else - leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + leaf_reader = createColumnReader(std::move(page_reader_creator), scan_spec, logical_type); } else if (isDateTime64(target_type)) { if (dictionary_) - leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + leaf_reader = createColumnReader(std::move(page_reader_creator), scan_spec, logical_type); else - leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + leaf_reader = createColumnReader(std::move(page_reader_creator), scan_spec, logical_type); } else if (isDateTime(target_type)) { if (dictionary_) - leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + leaf_reader = createColumnReader(std::move(page_reader_creator), scan_spec, logical_type); else - leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + leaf_reader = createColumnReader(std::move(page_reader_creator), scan_spec, logical_type); } } else if (physical_type == parquet::Type::INT32) @@ -301,37 +301,37 @@ SelectiveColumnReaderPtr ParquetColumnReaderFactory::Builder::build() if (isInt16(target_type)) { if (dictionary_) - leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + leaf_reader = createColumnReader(std::move(page_reader_creator), scan_spec, logical_type); else - leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + leaf_reader = createColumnReader(std::move(page_reader_creator), scan_spec, logical_type); } else if (isInt32(target_type)) { if (dictionary_) - leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + leaf_reader = createColumnReader(std::move(page_reader_creator), scan_spec, logical_type); else - leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + leaf_reader = createColumnReader(std::move(page_reader_creator), scan_spec, logical_type); } else if (isDate32(target_type)) { if (dictionary_) - leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + leaf_reader = createColumnReader(std::move(page_reader_creator), scan_spec, logical_type); else - leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + leaf_reader = createColumnReader(std::move(page_reader_creator), scan_spec, logical_type); } else if (isDate(target_type)) { if (dictionary_) - leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + leaf_reader = createColumnReader(std::move(page_reader_creator), scan_spec, logical_type); else - leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + leaf_reader = createColumnReader(std::move(page_reader_creator), scan_spec, logical_type); } else if (isDateTime(target_type)) { if (dictionary_) - leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + leaf_reader = createColumnReader(std::move(page_reader_creator), scan_spec, logical_type); else - leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + leaf_reader = createColumnReader(std::move(page_reader_creator), scan_spec, logical_type); } } else if (physical_type == parquet::Type::FLOAT) @@ -339,9 +339,9 @@ SelectiveColumnReaderPtr ParquetColumnReaderFactory::Builder::build() if (isFloat(target_type)) { if (dictionary_) - leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + leaf_reader = createColumnReader(std::move(page_reader_creator), scan_spec, logical_type); else - leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + leaf_reader = createColumnReader(std::move(page_reader_creator), scan_spec, logical_type); } } else if (physical_type == parquet::Type::DOUBLE) @@ -349,9 +349,9 @@ SelectiveColumnReaderPtr ParquetColumnReaderFactory::Builder::build() if (isFloat(target_type)) { if (dictionary_) - leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + leaf_reader = createColumnReader(std::move(page_reader_creator), scan_spec, logical_type); else - leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + leaf_reader = createColumnReader(std::move(page_reader_creator), scan_spec, logical_type); } } else if (physical_type == parquet::Type::BYTE_ARRAY) @@ -359,9 +359,9 @@ SelectiveColumnReaderPtr ParquetColumnReaderFactory::Builder::build() if (isString(target_type)) { if (dictionary_) - leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + leaf_reader = createColumnReader(std::move(page_reader_creator), scan_spec, logical_type); else - leaf_reader = createColumnReader(std::move(page_reader_), scan_spec, logical_type); + leaf_reader = createColumnReader(std::move(page_reader_creator), scan_spec, logical_type); } } if (!leaf_reader) diff --git a/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.h b/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.h index 91126c82897..050f1487158 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.h +++ b/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.h @@ -14,6 +14,8 @@ class SelectiveColumnReader; using SelectiveColumnReaderPtr = std::shared_ptr; class LazyPageReader; +using PageReaderCreator = std::function()>; + class ParquetColumnReaderFactory { public: @@ -25,13 +27,14 @@ public: Builder& columnDescriptor(const parquet::ColumnDescriptor * columnDescr); Builder& filter(const ColumnFilterPtr & filter); Builder& targetType(const DataTypePtr & target_type); - Builder& pageReader(std::unique_ptr page_reader); + Builder& pageReader(PageReaderCreator page_reader_creator); SelectiveColumnReaderPtr build(); private: bool dictionary_ = false; bool nullable_ = false; const parquet::ColumnDescriptor * column_descriptor_ = nullptr; DataTypePtr target_type_ = nullptr; + PageReaderCreator page_reader_creator = nullptr; std::unique_ptr page_reader_ = nullptr; ColumnFilterPtr filter_ = nullptr; }; diff --git a/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp b/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp index a353af8e509..e2c56e19a6e 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp @@ -75,24 +75,17 @@ Block ParquetReader::read() void ParquetReader::addFilter(const String & column_name, const ColumnFilterPtr filter) { // std::cerr << "add filter to column " << column_name << ": " << filter->toString() << std::endl; + condition_columns.insert(column_name); if (!filters.contains(column_name)) filters[column_name] = filter; else filters[column_name] = filters[column_name]->merge(filter.get()); // std::cerr << "filter on column " << column_name << ": " << filters[column_name]->toString() << std::endl; } -void ParquetReader::setRemainFilter(std::optional & expr) + +std::unique_ptr ParquetReader::getRowGroupChunkReader(size_t row_group_idx, RowGroupPrefetchPtr conditions_prefetch, RowGroupPrefetchPtr prefetch) { - if (expr.has_value()) - { - ExpressionActionsSettings settings; - ExpressionActions actions = ExpressionActions(std::move(expr.value()), settings); - remain_filter = std::optional(std::move(actions)); - } -} -std::unique_ptr ParquetReader::getRowGroupChunkReader(size_t row_group_idx, RowGroupPrefetchPtr prefetch) -{ - return std::make_unique(this, row_group_idx, std::move(prefetch), filters); + return std::make_unique(this, row_group_idx, std::move(conditions_prefetch), std::move(prefetch), filters); } extern arrow::io::ReadRange getColumnRange(const parquet::ColumnChunkMetaData & column_metadata); @@ -101,9 +94,11 @@ extern arrow::io::ReadRange getColumnRange(const parquet::ColumnChunkMetaData & std::unique_ptr ParquetReader::getSubRowGroupRangeReader(std::vector row_group_indices_) { std::vector row_group_prefetches; + std::vector row_group_condition_prefetches; for (auto row_group_idx : row_group_indices_) { - RowGroupPrefetchPtr prefetch = std::make_unique(file, file_mutex, arrow_properties); + RowGroupPrefetchPtr prefetch = std::make_shared(file, file_mutex, arrow_properties); + RowGroupPrefetchPtr condition_prefetch = std::make_unique(file, file_mutex, arrow_properties); auto row_group_meta = meta_data->RowGroup(row_group_idx); for (const auto & name : header.getNames()) { @@ -111,20 +106,34 @@ std::unique_ptr ParquetReader::getSubRowGroupRangeReader throw Exception(ErrorCodes::PARQUET_EXCEPTION, "no column with '{}' in parquet file", name); auto idx = meta_data->schema()->ColumnIndex(*parquet_columns[name]); auto range = getColumnRange(*row_group_meta->ColumnChunk(idx)); - prefetch->prefetchRange(range); + if (condition_columns.contains(name)) + condition_prefetch->prefetchRange(range); + else + prefetch->prefetchRange(range); } row_group_prefetches.push_back(std::move(prefetch)); + if (!condition_prefetch->isEmpty()) + row_group_condition_prefetches.push_back(std::move(condition_prefetch)); } - return std::make_unique(row_group_indices_, std::move(row_group_prefetches), [&](const size_t idx, RowGroupPrefetchPtr prefetch) { return getRowGroupChunkReader(idx, std::move(prefetch)); }); + return std::make_unique( + row_group_indices_, + std::move(row_group_condition_prefetches), + std::move(row_group_prefetches), + [&](const size_t idx, RowGroupPrefetchPtr condition_prefetch, RowGroupPrefetchPtr prefetch) { return getRowGroupChunkReader(idx, std::move(condition_prefetch), std::move(prefetch)); }); } void ParquetReader::addExpressionFilter(std::shared_ptr filter) { + if (!filter) return; + for (const auto & item : filter->getInputs()) + { + condition_columns.insert(item); + } expression_filters.emplace_back(filter); } -SubRowGroupRangeReader::SubRowGroupRangeReader(const std::vector & rowGroupIndices, std::vector&& row_group_prefetches_, RowGroupReaderCreator && creator) - : row_group_indices(rowGroupIndices), row_group_prefetches(std::move(row_group_prefetches_)), row_group_reader_creator(creator) +SubRowGroupRangeReader::SubRowGroupRangeReader(const std::vector & rowGroupIndices, std::vector && row_group_condition_prefetches_, std::vector&& row_group_prefetches_, RowGroupReaderCreator && creator) + : row_group_indices(rowGroupIndices), row_group_condition_prefetches(std::move(row_group_condition_prefetches_)), row_group_prefetches(std::move(row_group_prefetches_)), row_group_reader_creator(creator) { if (row_group_indices.size() != row_group_prefetches.size()) throw Exception(ErrorCodes::PARQUET_EXCEPTION, "row group indices and prefetches size mismatch"); @@ -145,11 +154,22 @@ bool SubRowGroupRangeReader::loadRowGroupChunkReaderIfNeeded() return false; if ((!row_group_chunk_reader || !row_group_chunk_reader->hasMoreRows()) && next_row_group_idx < row_group_indices.size()) { - if (next_row_group_idx == 0) row_group_prefetches.front()->startPrefetch(); - row_group_chunk_reader = row_group_reader_creator(row_group_indices[next_row_group_idx], std::move(row_group_prefetches[next_row_group_idx])); + if (next_row_group_idx == 0) + { + if (row_group_condition_prefetches.empty()) + row_group_prefetches.front()->startPrefetch(); + else + row_group_condition_prefetches.front()->startPrefetch(); + } + row_group_chunk_reader = row_group_reader_creator(row_group_indices[next_row_group_idx], row_group_condition_prefetches.empty()? nullptr : std::move(row_group_condition_prefetches[next_row_group_idx]), std::move(row_group_prefetches[next_row_group_idx])); next_row_group_idx++; if (next_row_group_idx < row_group_indices.size()) - row_group_prefetches[next_row_group_idx]->startPrefetch(); + { + if (row_group_condition_prefetches.empty()) + row_group_prefetches[next_row_group_idx]->startPrefetch(); + else + row_group_condition_prefetches[next_row_group_idx]->startPrefetch(); + } } return true; } diff --git a/src/Processors/Formats/Impl/Parquet/ParquetReader.h b/src/Processors/Formats/Impl/Parquet/ParquetReader.h index e84d0ed656b..4b419168e70 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetReader.h +++ b/src/Processors/Formats/Impl/Parquet/ParquetReader.h @@ -20,14 +20,15 @@ namespace DB class SubRowGroupRangeReader { public: - using RowGroupReaderCreator = std::function(size_t, RowGroupPrefetchPtr)>; - SubRowGroupRangeReader(const std::vector & rowGroupIndices, std::vector && row_group_prefetches, RowGroupReaderCreator&& creator); + using RowGroupReaderCreator = std::function(size_t, RowGroupPrefetchPtr, RowGroupPrefetchPtr)>; + SubRowGroupRangeReader(const std::vector & rowGroupIndices, std::vector && row_group_condition_prefetches_, std::vector && row_group_prefetches, RowGroupReaderCreator&& creator); DB::Chunk read(size_t rows); private: bool loadRowGroupChunkReaderIfNeeded(); std::vector row_group_indices; + std::vector row_group_condition_prefetches; std::vector row_group_prefetches; std::unique_ptr row_group_chunk_reader; size_t next_row_group_idx = 0; @@ -51,8 +52,7 @@ public: Block read(); void addFilter(const String & column_name, ColumnFilterPtr filter); void addExpressionFilter(std::shared_ptr filter); - void setRemainFilter(std::optional & expr); - std::unique_ptr getRowGroupChunkReader(size_t row_group_idx, RowGroupPrefetchPtr prefetch); + std::unique_ptr getRowGroupChunkReader(size_t row_group_idx, RowGroupPrefetchPtr conditions_prefetch, RowGroupPrefetchPtr prefetch); std::unique_ptr getSubRowGroupRangeReader(std::vector row_group_indices); private: std::unique_ptr file_reader; @@ -67,13 +67,13 @@ private: UInt64 max_block_size; parquet::ReaderProperties properties; std::unordered_map filters; - std::optional remain_filter = std::nullopt; std::vector parquet_col_indices; std::vector row_groups_indices; size_t next_row_group_idx = 0; std::shared_ptr meta_data; std::unordered_map parquet_columns; std::vector> expression_filters; + std::unordered_set condition_columns; }; } diff --git a/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp index 2cb1d711509..0e70df21b11 100644 --- a/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp @@ -21,8 +21,9 @@ Chunk RowGroupChunkReader::readChunk(size_t rows) size_t rows_to_read = std::min(rows - rows_read, remain_rows); if (!rows_to_read) break; - for (auto & reader : column_readers) + for (const auto & column : parquet_reader->condition_columns) { + auto reader = reader_columns_mapping.at(column); if (!reader->availableRows()) { reader->readPageIfNeeded(); @@ -57,6 +58,7 @@ Chunk RowGroupChunkReader::readChunk(size_t rows) } else { + prefetch->startPrefetch(); for (const auto & name : column_names) { if (select_result.intermediate_columns.contains(name)) @@ -195,9 +197,10 @@ ColumnChunkData RowGroupPrefetch::readRange(const arrow::io::ReadRange & range) RowGroupChunkReader::RowGroupChunkReader( - ParquetReader * parquetReader, size_t row_group_idx, RowGroupPrefetchPtr prefetch_, std::unordered_map filters) + ParquetReader * parquetReader, size_t row_group_idx, RowGroupPrefetchPtr prefetch_conditions_, RowGroupPrefetchPtr prefetch_, std::unordered_map filters) : parquet_reader(parquetReader) , row_group_meta(parquetReader->meta_data->RowGroup(static_cast(row_group_idx))) + , prefetch_conditions(std::move(prefetch_conditions_)) , prefetch(std::move(prefetch_)) { column_readers.reserve(parquet_reader->header.columns()); @@ -214,21 +217,51 @@ RowGroupChunkReader::RowGroupChunkReader( auto idx = parquet_reader->meta_data->schema()->ColumnIndex(*node); auto filter = filters.contains(col_with_name.name) ? filters.at(col_with_name.name) : nullptr; remain_rows = row_group_meta->ColumnChunk(idx)->num_values(); - auto data = prefetch->readRange(getColumnRange(*row_group_meta->ColumnChunk(idx))); - auto page_reader = std::make_unique( - std::make_shared(reinterpret_cast(data.data), data.size), - parquet_reader->properties, - remain_rows, - row_group_meta->ColumnChunk(idx)->compression()); - const auto * column_desc = parquet_reader->meta_data->schema()->Column(idx); - auto column_reader = ParquetColumnReaderFactory::builder() - .nullable(node->is_optional()) - .dictionary(row_group_meta->ColumnChunk(idx)->has_dictionary_page()) - .columnDescriptor(column_desc) - .pageReader(std::move(page_reader)) - .targetType(col_with_name.type) - .filter(filter) - .build(); + SelectiveColumnReaderPtr column_reader; + if (parquet_reader->condition_columns.contains(col_with_name.name)) + { + PageReaderCreator creator = [&, idx] + { + auto data = prefetch_conditions->readRange(getColumnRange(*row_group_meta->ColumnChunk(idx))); + auto page_reader = std::make_unique( + std::make_shared(reinterpret_cast(data.data), data.size), + parquet_reader->properties, + remain_rows, + row_group_meta->ColumnChunk(idx)->compression()); + return page_reader; + }; + const auto * column_desc = parquet_reader->meta_data->schema()->Column(idx); + column_reader = ParquetColumnReaderFactory::builder() + .nullable(node->is_optional()) + .dictionary(row_group_meta->ColumnChunk(idx)->has_dictionary_page()) + .columnDescriptor(column_desc) + .pageReader(std::move(creator)) + .targetType(col_with_name.type) + .filter(filter) + .build(); + } + else + { + PageReaderCreator creator = [&, idx] + { + auto data = prefetch->readRange(getColumnRange(*row_group_meta->ColumnChunk(idx))); + auto page_reader = std::make_unique( + std::make_shared(reinterpret_cast(data.data), data.size), + parquet_reader->properties, + remain_rows, + row_group_meta->ColumnChunk(idx)->compression()); + return page_reader; + }; + const auto * column_desc = parquet_reader->meta_data->schema()->Column(idx); + column_reader = ParquetColumnReaderFactory::builder() + .nullable(node->is_optional()) + .dictionary(row_group_meta->ColumnChunk(idx)->has_dictionary_page()) + .columnDescriptor(column_desc) + .pageReader(std::move(creator)) + .targetType(col_with_name.type) + .filter(filter) + .build(); + } column_readers.push_back(column_reader); reader_columns_mapping[col_with_name.name] = column_reader; chassert(idx >= 0); @@ -313,7 +346,10 @@ SelectResult SelectConditions::selectRows(size_t rows) auto reader = readers.at(name); auto column = reader->createColumn(); if (count == rows) - reader->read(column, std::nullopt, rows); + { + OptionalRowSet set; + reader->read(column, set, rows); + } else reader->read(column, total_set, rows); intermediate_columns.emplace(name, std::move(column)); diff --git a/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.h b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.h index 2e6a8814f1d..ef869d0f365 100644 --- a/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.h +++ b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.h @@ -55,6 +55,7 @@ public: void prefetchRange(const arrow::io::ReadRange& range); void startPrefetch(); ColumnChunkData readRange(const arrow::io::ReadRange& range); + bool isEmpty() const { return ranges.empty(); } private: struct TaskEntry { @@ -73,7 +74,7 @@ private: bool fetched = false; }; -using RowGroupPrefetchPtr = std::unique_ptr; +using RowGroupPrefetchPtr = std::shared_ptr; class RowGroupChunkReader { @@ -87,11 +88,12 @@ public: RowGroupChunkReader( ParquetReader * parquetReader, size_t row_group_idx, + RowGroupPrefetchPtr prefetch_conditions, RowGroupPrefetchPtr prefetch, std::unordered_map filters); ~RowGroupChunkReader() { - // printMetrics(std::cerr); + printMetrics(std::cerr); } Chunk readChunk(size_t rows); bool hasMoreRows() const { return remain_rows > 0; } @@ -103,6 +105,7 @@ private: ParquetReader * parquet_reader; std::shared_ptr row_group_meta; std::vector filter_columns; + RowGroupPrefetchPtr prefetch_conditions; RowGroupPrefetchPtr prefetch; std::unordered_map reader_columns_mapping; std::vector column_readers; diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index 684775b9ad9..162874da748 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -53,6 +53,7 @@ void PlainDecoder::decodeFixedValue(PaddedPODArray & data, const OptionalRowS void SelectiveColumnReader::readPageIfNeeded() { + initPageReaderIfNeed(); skipPageIfNeed(); while (!state.remain_rows) { @@ -177,15 +178,15 @@ static void computeRowSetPlain(const T * start, OptionalRowSet & row_set, const if (filter && row_set.has_value()) { if constexpr (std::is_same_v) - filter->testInt64Values(row_set.value(), 0, rows_to_read, start); + filter->testInt64Values(row_set.value(), rows_to_read, start); else if constexpr (std::is_same_v) - filter->testInt32Values(row_set.value(), 0, rows_to_read, start); + filter->testInt32Values(row_set.value(), rows_to_read, start); else if constexpr (std::is_same_v) - filter->testInt16Values(row_set.value(), 0, rows_to_read, start); + filter->testInt16Values(row_set.value(), rows_to_read, start); else if constexpr (std::is_same_v) - filter->testFloat32Values(row_set.value(), 0, rows_to_read, start); + filter->testFloat32Values(row_set.value(), rows_to_read, start); else if constexpr (std::is_same_v) - filter->testFloat64Values(row_set.value(), 0, rows_to_read, start); + filter->testFloat64Values(row_set.value(), rows_to_read, start); else throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unsupported type"); } @@ -203,12 +204,20 @@ void NumberColumnDirectReader::computeRowSet(OptionalR template void NumberColumnDirectReader::read( - MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) + MutableColumnPtr & column, OptionalRowSet & row_set, size_t rows_to_read) { - readAndDecodePage(); - auto * number_column = static_cast(column.get()); - auto & data = number_column->getData(); - plain_decoder->decodeFixedValue(data, row_set, rows_to_read); + size_t rows_read = 0; + while (rows_read < rows_to_read) + { + auto rows_can_read = std::min(rows_to_read - rows_read, state.remain_rows); + readAndDecodePage(); + auto * number_column = static_cast(column.get()); + auto & data = number_column->getData(); + if (row_set) + row_set.value().setOffset(rows_read); + plain_decoder->decodeFixedValue(data, row_set, rows_can_read); + rows_read += rows_can_read; + } } template @@ -224,12 +233,20 @@ size_t NumberColumnDirectReader::skipValuesInCurrentPa template void NumberColumnDirectReader::readSpace( - MutableColumnPtr & column, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t, size_t rows_to_read) + MutableColumnPtr & column, OptionalRowSet & row_set, PaddedPODArray & null_map, size_t, size_t rows_to_read) { - readAndDecodePage(); - auto * number_column = static_cast(column.get()); - auto & data = number_column->getData(); - plain_decoder->decodeFixedValueSpace(data, row_set, null_map, rows_to_read); + size_t rows_read = 0; + while (rows_read < rows_to_read) + { + auto rows_can_read = std::min(rows_to_read - rows_read, state.remain_rows); + readAndDecodePage(); + auto * number_column = static_cast(column.get()); + auto & data = number_column->getData(); + if (row_set) + row_set.value().setOffset(rows_read); + plain_decoder->decodeFixedValueSpace(data, row_set, null_map, rows_can_read); + rows_read += rows_can_read; + } } template @@ -282,15 +299,15 @@ MutableColumnPtr NumberColumnDirectReader::createColum template NumberColumnDirectReader::NumberColumnDirectReader( - std::unique_ptr page_reader_, ScanSpec scan_spec_, DataTypePtr datatype_) - : SelectiveColumnReader(std::move(page_reader_), scan_spec_), datatype(datatype_) + PageReaderCreator page_reader_creator_, ScanSpec scan_spec_, DataTypePtr datatype_) + : SelectiveColumnReader(std::move(page_reader_creator_), scan_spec_), datatype(datatype_) { } template NumberDictionaryReader::NumberDictionaryReader( - std::unique_ptr page_reader_, ScanSpec scan_spec_, DataTypePtr datatype_) - : SelectiveColumnReader(std::move(page_reader_), scan_spec_), datatype(datatype_) + PageReaderCreator page_reader_creator_, ScanSpec scan_spec_, DataTypePtr datatype_) + : SelectiveColumnReader(std::move(page_reader_creator_), scan_spec_), datatype(datatype_) { } @@ -369,48 +386,66 @@ void NumberDictionaryReader::computeRowSetSpace( } template -void NumberDictionaryReader::read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) +void NumberDictionaryReader::read(MutableColumnPtr & column, OptionalRowSet & row_set, size_t rows_to_read) { - readAndDecodePage(); - auto * number_column = static_cast(column.get()); - auto & data = number_column->getData(); - if (plain) - plain_decoder->decodeFixedValue(data, row_set, rows_to_read); - else + size_t rows_read = 0; + while (rows_read < rows_to_read) { - if (row_set.has_value() || !batch_buffer.empty()) - { - nextIdxBatchIfEmpty(rows_to_read); - decodeFixedValueInternal(data, batch_buffer.data(), row_set, rows_to_read); - } + auto rows_can_read = std::min(rows_to_read - rows_read, state.remain_rows); + if (row_set) + row_set.value().setOffset(rows_read); + readAndDecodePage(); + auto * number_column = static_cast(column.get()); + auto & data = number_column->getData(); + + if (plain) + plain_decoder->decodeFixedValue(data, row_set, rows_can_read); else { - auto old_size = data.size(); - data.resize(old_size + rows_to_read); - size_t count = idx_decoder.GetBatchWithDict( - dict.data(), static_cast(dict.size()), data.data() + old_size, static_cast(rows_to_read)); - if (count != rows_to_read) - throw DB::Exception(ErrorCodes::LOGICAL_ERROR, "read full idx batch failed. read {} rows, expect {}", count, rows_to_read); - } + if (row_set.has_value() || !batch_buffer.empty()) + { + nextIdxBatchIfEmpty(rows_can_read); + decodeFixedValueInternal(data, batch_buffer.data(), row_set, rows_can_read); + } + else + { + auto old_size = data.size(); + data.resize(old_size + rows_can_read); + size_t count = idx_decoder.GetBatchWithDict( + dict.data(), static_cast(dict.size()), data.data() + old_size, static_cast(rows_can_read)); + if (count != rows_can_read) + throw DB::Exception( + ErrorCodes::LOGICAL_ERROR, "read full idx batch failed. read {} rows, expect {}", count, rows_can_read); + } - batch_buffer.resize(0); - state.remain_rows -= rows_to_read; + batch_buffer.resize(0); + state.remain_rows -= rows_can_read; + } + rows_read += rows_can_read; } } template void NumberDictionaryReader::readSpace( - MutableColumnPtr & column, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) + MutableColumnPtr & column, OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) { - readAndDecodePage(); - auto * number_column = static_cast(column.get()); - auto & data = number_column->getData(); - if (plain) - plain_decoder->decodeFixedValueSpace(data, row_set, null_map, rows_to_read); - else + size_t rows_read = 0; + while (rows_read < rows_to_read) { - nextIdxBatchIfEmpty(rows_to_read - null_count); - dict_decoder->decodeFixedValueSpace(batch_buffer, data, row_set, null_map, rows_to_read); + auto rows_can_read = std::min(rows_to_read - rows_read, state.remain_rows); + if (row_set) + row_set.value().setOffset(rows_read); + readAndDecodePage(); + auto * number_column = static_cast(column.get()); + auto & data = number_column->getData(); + if (plain) + plain_decoder->decodeFixedValueSpace(data, row_set, null_map, rows_can_read); + else + { + nextIdxBatchIfEmpty(rows_can_read - null_count); + dict_decoder->decodeFixedValueSpace(batch_buffer, data, row_set, null_map, rows_can_read); + } + rows_read += rows_can_read; } } @@ -507,36 +542,43 @@ void OptionalColumnReader::computeRowSet(OptionalRowSet & row_set, size_t rows_t child->computeRowSet(row_set, rows_to_read); } -void OptionalColumnReader::read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) +void OptionalColumnReader::read(MutableColumnPtr & column, OptionalRowSet & row_set, size_t rows_to_read) { applyLazySkip(); - nextBatchNullMapIfNeeded(rows_to_read); - rows_to_read = std::min(child->currentRemainRows(), rows_to_read); + size_t rows_read = 0; auto * nullable_column = static_cast(column.get()); auto nested_column = nullable_column->getNestedColumnPtr()->assumeMutable(); auto & null_data = nullable_column->getNullMapData(); - if (row_set.has_value()) + while (rows_read < rows_to_read) { - const auto & sets = row_set.value(); - for (size_t i = 0; i < rows_to_read; i++) + auto rows_can_read = std::min(rows_to_read - rows_read, child->currentRemainRows()); + if (row_set) + row_set.value().setOffset(rows_read); + nextBatchNullMapIfNeeded(rows_can_read); + if (row_set.has_value()) { - if (sets.get(i)) + const auto & sets = row_set.value(); + for (size_t i = 0; i < rows_can_read; i++) { - null_data.push_back(cur_null_map[i]); + if (sets.get(i)) + { + null_data.push_back(cur_null_map[i]); + } } } + else + null_data.insert(cur_null_map.begin(), cur_null_map.end()); + if (cur_null_count) + { + child->readSpace(nested_column, row_set, cur_null_map, cur_null_count, rows_can_read); + } + else + { + child->read(nested_column, row_set, rows_can_read); + } + cleanNullMap(); + rows_read += rows_can_read; } - else - null_data.insert(cur_null_map.begin(), cur_null_map.end()); - if (cur_null_count) - { - child->readSpace(nested_column, row_set, cur_null_map, cur_null_count, rows_to_read); - } - else - { - child->read(nested_column, row_set, rows_to_read); - } - cleanNullMap(); } size_t OptionalColumnReader::skipValuesInCurrentPage(size_t rows) @@ -727,40 +769,56 @@ size_t StringDictionaryReader::skipValuesInCurrentPage(size_t rows_to_skip) } void StringDictionaryReader::readSpace( - MutableColumnPtr & column, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) + MutableColumnPtr & column, OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) { - readAndDecodePage(); - ColumnString * string_column = reinterpret_cast(column.get()); - if (plain) + size_t rows_read = 0; + while (rows_read < rows_to_read) { - size_t total_size = plain_decoder->calculateStringTotalSizeSpace(state.data, row_set, null_map, rows_to_read); - string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_to_read); - string_column->getChars().reserve(string_column->getChars().size() + total_size); - plain_decoder->decodeStringSpace(string_column->getChars(), string_column->getOffsets(), row_set, null_map, rows_to_read); - } - else - { - auto nonnull_count = rows_to_read - null_count; - nextIdxBatchIfEmpty(nonnull_count); - dict_decoder->decodeStringSpace(dict, string_column->getChars(), string_column->getOffsets(), row_set, null_map, rows_to_read); + auto rows_can_read = std::min(rows_to_read - rows_read, state.remain_rows); + if (row_set) + row_set.value().setOffset(rows_read); + readAndDecodePage(); + ColumnString * string_column = reinterpret_cast(column.get()); + if (plain) + { + size_t total_size = plain_decoder->calculateStringTotalSizeSpace(state.data, row_set, null_map, rows_can_read); + string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_can_read); + string_column->getChars().reserve(string_column->getChars().size() + total_size); + plain_decoder->decodeStringSpace(string_column->getChars(), string_column->getOffsets(), row_set, null_map, rows_can_read); + } + else + { + auto nonnull_count = rows_can_read - null_count; + nextIdxBatchIfEmpty(nonnull_count); + dict_decoder->decodeStringSpace(dict, string_column->getChars(), string_column->getOffsets(), row_set, null_map, rows_can_read); + } + rows_read += rows_can_read; } } -void StringDictionaryReader::read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) +void StringDictionaryReader::read(MutableColumnPtr & column, OptionalRowSet & row_set, size_t rows_to_read) { - readAndDecodePage(); - ColumnString * string_column = reinterpret_cast(column.get()); - if (plain) + size_t rows_read = 0; + while (rows_read < rows_to_read) { - size_t total_size = plain_decoder->calculateStringTotalSize(state.data, row_set, rows_to_read); - string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_to_read); - string_column->getChars().reserve(string_column->getChars().size() + total_size); - plain_decoder->decodeString(string_column->getChars(), string_column->getOffsets(), row_set, rows_to_read); - } - else - { - nextIdxBatchIfEmpty(rows_to_read); - dict_decoder->decodeString(dict, string_column->getChars(), string_column->getOffsets(), row_set, rows_to_read); + auto rows_can_read = std::min(rows_to_read - rows_read, state.remain_rows); + if (row_set) + row_set.value().setOffset(rows_read); + readAndDecodePage(); + ColumnString * string_column = reinterpret_cast(column.get()); + if (plain) + { + size_t total_size = plain_decoder->calculateStringTotalSize(state.data, row_set, rows_can_read); + string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_can_read); + string_column->getChars().reserve(string_column->getChars().size() + total_size); + plain_decoder->decodeString(string_column->getChars(), string_column->getOffsets(), row_set, rows_can_read); + } + else + { + nextIdxBatchIfEmpty(rows_can_read); + dict_decoder->decodeString(dict, string_column->getChars(), string_column->getOffsets(), row_set, rows_can_read); + } + rows_read += rows_can_read; } } @@ -853,27 +911,43 @@ size_t StringDirectReader::skipValuesInCurrentPage(size_t rows_to_skip) void StringDirectReader::readSpace( MutableColumnPtr & column, - const OptionalRowSet & row_set, + OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) { - readAndDecodePage(); - ColumnString * string_column = reinterpret_cast(column.get()); - size_t total_size = plain_decoder->calculateStringTotalSizeSpace(state.data, row_set, null_map, rows_to_read - null_count); - string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_to_read); - string_column->getChars().reserve(string_column->getChars().size() + total_size); - plain_decoder->decodeStringSpace(string_column->getChars(), string_column->getOffsets(), row_set, null_map, rows_to_read); + size_t rows_read = 0; + while (rows_read < rows_to_read) + { + auto rows_can_read = std::min(rows_to_read - rows_read, state.remain_rows); + if (row_set) + row_set.value().setOffset(rows_read); + readAndDecodePage(); + ColumnString * string_column = reinterpret_cast(column.get()); + size_t total_size = plain_decoder->calculateStringTotalSizeSpace(state.data, row_set, null_map, rows_to_read - null_count); + string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_to_read); + string_column->getChars().reserve(string_column->getChars().size() + total_size); + plain_decoder->decodeStringSpace(string_column->getChars(), string_column->getOffsets(), row_set, null_map, rows_to_read); + rows_read += rows_can_read; + } } -void StringDirectReader::read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) +void StringDirectReader::read(MutableColumnPtr & column, OptionalRowSet & row_set, size_t rows_to_read) { - readAndDecodePage(); - ColumnString * string_column = reinterpret_cast(column.get()); - size_t total_size = plain_decoder->calculateStringTotalSize(state.data, row_set, rows_to_read); - string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_to_read); - string_column->getChars().reserve(string_column->getChars().size() + total_size); - plain_decoder->decodeString(string_column->getChars(), string_column->getOffsets(), row_set, rows_to_read); + size_t rows_read = 0; + while (rows_read < rows_to_read) + { + auto rows_can_read = std::min(rows_to_read - rows_read, state.remain_rows); + if (row_set) + row_set.value().setOffset(rows_read); + readAndDecodePage(); + ColumnString * string_column = reinterpret_cast(column.get()); + size_t total_size = plain_decoder->calculateStringTotalSize(state.data, row_set, rows_can_read); + string_column->getOffsets().reserve(string_column->getOffsets().size() + rows_can_read); + string_column->getChars().reserve(string_column->getChars().size() + total_size); + plain_decoder->decodeString(string_column->getChars(), string_column->getOffsets(), row_set, rows_can_read); + rows_read += rows_can_read; + } } void StringDirectReader::computeRowSetSpace(OptionalRowSet & row_set, PaddedPODArray & null_map, size_t, size_t rows_to_read) diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h index 33456dc7ff0..5f565559acb 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h @@ -24,6 +24,8 @@ class SelectiveColumnReader; using SelectiveColumnReaderPtr = std::shared_ptr; +using PageReaderCreator = std::function()>; + struct ScanSpec { String column_name; @@ -117,7 +119,7 @@ Int32 loadLength(const uint8_t * data); class PlainDecoder { public: - PlainDecoder(ParquetData& data_, size_t & remain_rows_) : data(data_), remain_rows(remain_rows_) { } + PlainDecoder(ParquetData& data_, size_t & remain_rows_) : page_data(data_), remain_rows(remain_rows_) { } template void decodeFixedValue(PaddedPODArray & data, const OptionalRowSet & row_set, size_t rows_to_read); @@ -151,7 +153,7 @@ private: total_size++; return; } - data.checkSize(offset +4) + data.checkSize(offset +4); auto len = loadLength(data.buffer + offset); offset += 4 + len; data.checkSize(offset); @@ -165,7 +167,7 @@ private: total_size++; return; } - data.checkSize(offset +4) + data.checkSize(offset +4); auto len = loadLength(data.buffer + offset); offset += 4 + len; data.checkSize(offset); @@ -219,15 +221,20 @@ class SelectiveColumnReader friend class OptionalColumnReader; public: - SelectiveColumnReader(std::unique_ptr page_reader_, const ScanSpec & scan_spec_) - : page_reader(std::move(page_reader_)), scan_spec(scan_spec_) + SelectiveColumnReader(PageReaderCreator page_reader_creator_, const ScanSpec & scan_spec_) + : page_reader_creator(std::move(page_reader_creator_)), scan_spec(scan_spec_) { } virtual ~SelectiveColumnReader() = default; + void initPageReaderIfNeed() + { + if (!page_reader) + page_reader = page_reader_creator(); + } virtual void computeRowSet(std::optional & row_set, size_t rows_to_read) = 0; virtual void computeRowSetSpace(OptionalRowSet &, PaddedPODArray &, size_t, size_t) { } - virtual void read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) = 0; - virtual void readSpace(MutableColumnPtr &, const OptionalRowSet &, PaddedPODArray &, size_t, size_t) { } + virtual void read(MutableColumnPtr & column, OptionalRowSet & row_set, size_t rows_to_read) = 0; + virtual void readSpace(MutableColumnPtr &, OptionalRowSet &, PaddedPODArray &, size_t, size_t) { } virtual void readPageIfNeeded(); void readAndDecodePage() { @@ -266,6 +273,7 @@ protected: virtual void createDictDecoder() { } virtual void downgradeToPlain() { } + PageReaderCreator page_reader_creator; std::unique_ptr page_reader; ScanState state; ScanSpec scan_spec; @@ -277,14 +285,14 @@ template class NumberColumnDirectReader : public SelectiveColumnReader { public: - NumberColumnDirectReader(std::unique_ptr page_reader_, ScanSpec scan_spec_, DataTypePtr datatype_); + NumberColumnDirectReader(PageReaderCreator page_reader_creator_, ScanSpec scan_spec_, DataTypePtr datatype_); ~NumberColumnDirectReader() override = default; MutableColumnPtr createColumn() override; void computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) override; void computeRowSetSpace(OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override; - void read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) override; + void read(MutableColumnPtr & column, OptionalRowSet & row_set, size_t rows_to_read) override; void readSpace( - MutableColumnPtr & column, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override; + MutableColumnPtr & column, OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override; size_t skipValuesInCurrentPage(size_t rows_to_skip) override; private: @@ -295,12 +303,12 @@ template class NumberDictionaryReader : public SelectiveColumnReader { public: - NumberDictionaryReader(std::unique_ptr page_reader_, ScanSpec scan_spec_, DataTypePtr datatype_); + NumberDictionaryReader(PageReaderCreator page_reader_creator_, ScanSpec scan_spec_, DataTypePtr datatype_); ~NumberDictionaryReader() override = default; void computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) override; void computeRowSetSpace(OptionalRowSet & set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override; - void read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) override; - void readSpace(MutableColumnPtr & ptr, const OptionalRowSet & set, PaddedPODArray & null_map, size_t null_count, size_t size) override; + void read(MutableColumnPtr & column, OptionalRowSet & row_set, size_t rows_to_read) override; + void readSpace(MutableColumnPtr & ptr, OptionalRowSet & set, PaddedPODArray & null_map, size_t null_count, size_t size) override; MutableColumnPtr createColumn() override { return datatype->createColumn(); } size_t skipValuesInCurrentPage(size_t rows_to_skip) override; @@ -313,7 +321,7 @@ protected: uint8_t bit_width = *state.data.buffer; state.data.checkSize(1); state.data.consume(1); - idx_decoder = arrow::util::RleDecoder(++state.data.buffer, static_cast(--state.data.buffer_size), bit_width); + idx_decoder = arrow::util::RleDecoder(state.data.buffer, static_cast(state.data.buffer_size), bit_width); } void nextIdxBatchIfEmpty(size_t rows_to_read); @@ -339,17 +347,17 @@ void computeRowSetPlainStringSpace( class StringDirectReader : public SelectiveColumnReader { public: - StringDirectReader(std::unique_ptr page_reader_, const ScanSpec & scan_spec_) - : SelectiveColumnReader(std::move(page_reader_), scan_spec_) + StringDirectReader(PageReaderCreator page_reader_creator_, const ScanSpec & scan_spec_) + : SelectiveColumnReader(std::move(page_reader_creator_), scan_spec_) { } void computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) override; void computeRowSetSpace(OptionalRowSet & row_set, PaddedPODArray & null_map, size_t /*null_count*/, size_t rows_to_read) override; - void read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) override; + void read(MutableColumnPtr & column, OptionalRowSet & row_set, size_t rows_to_read) override; void readSpace( - MutableColumnPtr & column, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override; + MutableColumnPtr & column, OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override; size_t skipValuesInCurrentPage(size_t rows_to_skip) override; @@ -359,8 +367,8 @@ public: class StringDictionaryReader : public SelectiveColumnReader { public: - StringDictionaryReader(std::unique_ptr page_reader_, const ScanSpec & scan_spec_) - : SelectiveColumnReader(std::move(page_reader_), scan_spec_) + StringDictionaryReader(PageReaderCreator page_reader_creator_, const ScanSpec & scan_spec_) + : SelectiveColumnReader(std::move(page_reader_creator_), scan_spec_) { } @@ -370,9 +378,9 @@ public: void computeRowSetSpace(OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override; - void read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) override; + void read(MutableColumnPtr & column, OptionalRowSet & row_set, size_t rows_to_read) override; - void readSpace(MutableColumnPtr & column, const OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override; + void readSpace(MutableColumnPtr & column, OptionalRowSet & row_set, PaddedPODArray & null_map, size_t null_count, size_t rows_to_read) override; size_t skipValuesInCurrentPage(size_t rows_to_skip) override; @@ -410,7 +418,7 @@ public: MutableColumnPtr createColumn() override; size_t currentRemainRows() const override; void computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) override; - void read(MutableColumnPtr & column, const OptionalRowSet & row_set, size_t rows_to_read) override; + void read(MutableColumnPtr & column, OptionalRowSet & row_set, size_t rows_to_read) override; size_t skipValuesInCurrentPage(size_t rows_to_skip) override; int16_t max_definition_level() const override { return child->max_definition_level(); } int16_t max_repetition_level() const override { return child->max_repetition_level(); } From ab5d8a5f81901be6f3eb089f4d6199cff12c4494 Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Wed, 23 Oct 2024 18:10:20 +0800 Subject: [PATCH 32/34] add metrics --- src/Common/ProfileEvents.cpp | 6 +++++- .../Formats/Impl/Parquet/PageReader.cpp | 6 ++++++ .../Impl/Parquet/RowGroupChunkReader.cpp | 19 +++++++++++++++++-- .../Impl/Parquet/RowGroupChunkReader.h | 2 +- 4 files changed, 29 insertions(+), 4 deletions(-) diff --git a/src/Common/ProfileEvents.cpp b/src/Common/ProfileEvents.cpp index 414e3bef592..68c3dd22cc0 100644 --- a/src/Common/ProfileEvents.cpp +++ b/src/Common/ProfileEvents.cpp @@ -895,7 +895,11 @@ The server successfully detected this situation and will download merged part fr M(MemoryWorkerRunElapsedMicroseconds, "Total time spent by MemoryWorker for background work", ValueType::Microseconds) \ \ M(ParquetFetchWaitTimeMicroseconds, "Time of waiting fetching parquet data", ValueType::Microseconds) \ - + M(ParquetFilteredRows, "rows filtered by push down filters, include skipped rows", ValueType::Number) \ + M(ParquetSkippedRows, "rows skipped by push down filters", ValueType::Number) \ + M(ParquetOutputRows, "parquet output rows", ValueType::Number) \ + M(ParquetSkipPageNum, "pages skipped", ValueType::Number) \ + \ #ifdef APPLY_FOR_EXTERNAL_EVENTS #define APPLY_FOR_EVENTS(M) APPLY_FOR_BUILTIN_EVENTS(M) APPLY_FOR_EXTERNAL_EVENTS(M) diff --git a/src/Processors/Formats/Impl/Parquet/PageReader.cpp b/src/Processors/Formats/Impl/Parquet/PageReader.cpp index 2b2ca144558..8e8d0dc2e1f 100644 --- a/src/Processors/Formats/Impl/Parquet/PageReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/PageReader.cpp @@ -2,6 +2,11 @@ #include #include +#include +namespace ProfileEvents +{ +extern const Event ParquetSkipPageNum; +} namespace DB { @@ -153,6 +158,7 @@ void LazyPageReader::skipNextPage() { size_t compressed_len = current_page_header.compressed_page_size; stream->seek(compressed_len, SEEK_CUR); + ProfileEvents::increment(ProfileEvents::ParquetSkipPageNum, 1); } const parquet::format::PageHeader & LazyPageReader::peekNextPageHeader() { diff --git a/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp index 0e70df21b11..ab970ab3457 100644 --- a/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp @@ -5,6 +5,15 @@ #include #include #include +#include + +namespace ProfileEvents +{ +extern const Event ParquetFilteredRows; +extern const Event ParquetFetchWaitTimeMicroseconds; +extern const Event ParquetSkippedRows; +extern const Event ParquetOutputRows; +} namespace DB { @@ -38,6 +47,7 @@ Chunk RowGroupChunkReader::readChunk(size_t rows) if (select_result.skip_all) { metrics.skipped_rows += rows_to_read; + ProfileEvents::increment(ProfileEvents::ParquetSkippedRows, rows_to_read); } bool all = select_result.valid_count == rows_to_read; @@ -55,10 +65,10 @@ Chunk RowGroupChunkReader::readChunk(size_t rows) reader_columns_mapping.at(name)->skip(rows_to_read); } } + ProfileEvents::increment(ProfileEvents::ParquetFilteredRows, rows_to_read); } else { - prefetch->startPrefetch(); for (const auto & name : column_names) { if (select_result.intermediate_columns.contains(name)) @@ -78,13 +88,15 @@ Chunk RowGroupChunkReader::readChunk(size_t rows) columns.emplace_back(std::move(column)); } } - metrics.filtered_rows += (rows_to_read - (columns[0]->size() - rows_read)); rows_read = columns[0]->size(); + metrics.filtered_rows += (rows_to_read - rows_read); + ProfileEvents::increment(ProfileEvents::ParquetFilteredRows, rows_to_read - rows_read); } remain_rows -= rows_to_read; } metrics.output_rows += rows_read; + ProfileEvents::increment(ProfileEvents::ParquetOutputRows, rows_read); if (rows_read) return Chunk(std::move(columns), rows_read); else @@ -222,12 +234,14 @@ RowGroupChunkReader::RowGroupChunkReader( { PageReaderCreator creator = [&, idx] { + Stopwatch time; auto data = prefetch_conditions->readRange(getColumnRange(*row_group_meta->ColumnChunk(idx))); auto page_reader = std::make_unique( std::make_shared(reinterpret_cast(data.data), data.size), parquet_reader->properties, remain_rows, row_group_meta->ColumnChunk(idx)->compression()); + ProfileEvents::increment(ProfileEvents::ParquetFetchWaitTimeMicroseconds, time.elapsedMicroseconds()); return page_reader; }; const auto * column_desc = parquet_reader->meta_data->schema()->Column(idx); @@ -268,6 +282,7 @@ RowGroupChunkReader::RowGroupChunkReader( if (filter) filter_columns.push_back(col_with_name.name); } + prefetch->startPrefetch(); selectConditions = std::make_unique(reader_columns_mapping, filter_columns, parquet_reader->expression_filters, parquet_reader->header); } diff --git a/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.h b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.h index ef869d0f365..5a6f2c1613d 100644 --- a/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.h +++ b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.h @@ -93,7 +93,7 @@ public: std::unordered_map filters); ~RowGroupChunkReader() { - printMetrics(std::cerr); +// printMetrics(std::cerr); } Chunk readChunk(size_t rows); bool hasMoreRows() const { return remain_rows > 0; } From b5ab19225e0360df3496eb5baba0b4675a9abcd4 Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Fri, 8 Nov 2024 22:23:20 +0800 Subject: [PATCH 33/34] support read array --- .../Parquet/ParquetColumnReaderFactory.cpp | 123 ++++++++++++++++++ .../Impl/Parquet/ParquetColumnReaderFactory.h | 8 +- .../Formats/Impl/Parquet/ParquetReader.cpp | 50 +++---- .../Formats/Impl/Parquet/ParquetReader.h | 8 ++ .../Impl/Parquet/RowGroupChunkReader.cpp | 117 +++++++++-------- .../Impl/Parquet/RowGroupChunkReader.h | 12 ++ .../Impl/Parquet/SelectiveColumnReader.cpp | 83 +++++++++++- .../Impl/Parquet/SelectiveColumnReader.h | 45 ++++++- 8 files changed, 359 insertions(+), 87 deletions(-) diff --git a/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp b/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp index a0222dadf84..b9c07055abc 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp +++ b/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp @@ -4,9 +4,17 @@ #include #include #include +#include #include +#include +#include #include +#include +namespace ProfileEvents +{ +extern const Event ParquetFetchWaitTimeMicroseconds; +} namespace DB { @@ -381,4 +389,119 @@ ParquetColumnReaderFactory::Builder ParquetColumnReaderFactory::builder() { return ParquetColumnReaderFactory::Builder(); } + +/// Returns true if repeated type is an element type for the list. +/// Used to determine legacy list types. +/// This method is copied from Spark Parquet reader and is based on the reference: +/// +/// #backward-compatibility-rules +bool isListElement(parquet::schema::Node & node) +{ + // For legacy 2-level list types with primitive element type, e.g.: + // + // // ARRAY (nullable list, non-null elements) + // optional group my_list (LIST) { + // repeated int32 element; + // } + // + return node.is_primitive() || + // For legacy 2-level list types whose element type is a group type with 2 or more + // fields, e.g.: + // + // // ARRAY> (nullable list, non-null elements) + // optional group my_list (LIST) { + // repeated group element { + // required binary str (UTF8); + // required int32 num; + // }; + // } + // + (node.is_group() && static_cast(node).field_count() > 1) || + // For legacy 2-level list types generated by parquet-avro (Parquet version < 1.6.0), + // e.g.: + // + // // ARRAY> (nullable list, non-null elements) + // optional group my_list (LIST) { + // repeated group array { + // required binary str (UTF8); + // }; + // } + // + node.name() == "array" || + // For Parquet data generated by parquet-thrift, e.g.: + // + // // ARRAY> (nullable list, non-null elements) + // optional group my_list (LIST) { + // repeated group my_list_tuple { + // required binary str (UTF8); + // }; + // } + // + node.name().ends_with("_tuple"); +} + +SelectiveColumnReaderPtr createColumnReaderRecursive(const RowGroupContext& context, parquet::schema::NodePtr node, int def_level, int rep_level, bool condition_column, const ColumnFilterPtr & filter, const DataTypePtr & target_type) +{ + if (node->repetition() == parquet::Repetition::UNDEFINED) + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Undefined repetition level"); + if (!node->is_required()) + def_level++; + if (node->is_repeated()) + rep_level++; + if (node->is_primitive()) + { + int column_idx = context.parquet_reader->metaData().schema()->ColumnIndex(*node); + RowGroupPrefetchPtr row_group_prefetch; + if (condition_column) + row_group_prefetch = context.prefetch_conditions; + else + row_group_prefetch = context.prefetch; + auto column_range = getColumnRange(*context.row_group_meta->ColumnChunk(column_idx)); + row_group_prefetch->prefetchRange(column_range); + PageReaderCreator creator = [&,row_group_prefetch , column_idx, column_range] + { + Stopwatch time; + row_group_prefetch->startPrefetch(); + auto data = row_group_prefetch->readRange(column_range); + auto page_reader = std::make_unique( + std::make_shared(reinterpret_cast(data.data), data.size), + context.parquet_reader->readerProperties(), + context.row_group_meta->num_rows(), + context.row_group_meta->ColumnChunk(column_idx)->compression()); + ProfileEvents::increment(ProfileEvents::ParquetFetchWaitTimeMicroseconds, time.elapsedMicroseconds()); + return page_reader; + }; + const auto * column_desc = context.parquet_reader->metaData().schema()->Column(column_idx); + + return ParquetColumnReaderFactory::builder() + .nullable(node->is_optional()) + .dictionary(context.row_group_meta->ColumnChunk(column_idx)->has_dictionary_page()) + .columnDescriptor(column_desc) + .pageReader(std::move(creator)) + .targetType(target_type) + .filter(filter) + .build(); + } + else if (node->converted_type() == parquet::ConvertedType::LIST) + { + auto group_node = std::static_pointer_cast(node); + if (group_node->field_count() != 1) + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "List group node must have exactly one field"); + auto repeated_field = group_node->field(0); + if (isListElement(*repeated_field)) + { + const auto * array_type = checkAndGetDataType(target_type.get()); + auto reader = createColumnReaderRecursive(context, repeated_field, def_level, rep_level, condition_column, nullptr, array_type->getNestedType()); + return std::make_shared(rep_level, def_level, reader); + } + else + { + auto child_field = std::static_pointer_cast(repeated_field)->field(0); + const auto * array_type = checkAndGetDataType(target_type.get()); + auto reader = createColumnReaderRecursive(context, child_field, def_level+1, rep_level+1, condition_column, nullptr, array_type->getNestedType()); + return std::make_shared(rep_level, def_level, reader); + } + } + return DB::SelectiveColumnReaderPtr(); +} } diff --git a/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.h b/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.h index 050f1487158..5574a1cb7ac 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.h +++ b/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.h @@ -6,6 +6,11 @@ namespace parquet { class ColumnDescriptor; + namespace schema + { + class Node; + using NodePtr = std::shared_ptr; + } } namespace DB @@ -13,6 +18,7 @@ namespace DB class SelectiveColumnReader; using SelectiveColumnReaderPtr = std::shared_ptr; class LazyPageReader; +struct RowGroupContext; using PageReaderCreator = std::function()>; @@ -42,6 +48,6 @@ public: static Builder builder(); }; - +SelectiveColumnReaderPtr createColumnReaderRecursive(const RowGroupContext& context, parquet::schema::NodePtr node, int def_level, int rep_level, bool condition_column, const ColumnFilterPtr & filter, const DataTypePtr & target_type); } diff --git a/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp b/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp index e2c56e19a6e..6ed5ab84ac1 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/ParquetReader.cpp @@ -100,17 +100,17 @@ std::unique_ptr ParquetReader::getSubRowGroupRangeReader RowGroupPrefetchPtr prefetch = std::make_shared(file, file_mutex, arrow_properties); RowGroupPrefetchPtr condition_prefetch = std::make_unique(file, file_mutex, arrow_properties); auto row_group_meta = meta_data->RowGroup(row_group_idx); - for (const auto & name : header.getNames()) - { - if (!parquet_columns.contains(name)) - throw Exception(ErrorCodes::PARQUET_EXCEPTION, "no column with '{}' in parquet file", name); - auto idx = meta_data->schema()->ColumnIndex(*parquet_columns[name]); - auto range = getColumnRange(*row_group_meta->ColumnChunk(idx)); - if (condition_columns.contains(name)) - condition_prefetch->prefetchRange(range); - else - prefetch->prefetchRange(range); - } +// for (const auto & name : header.getNames()) +// { +// if (!parquet_columns.contains(name)) +// throw Exception(ErrorCodes::PARQUET_EXCEPTION, "no column with '{}' in parquet file", name); +// auto idx = meta_data->schema()->ColumnIndex(*parquet_columns[name]); +// auto range = getColumnRange(*row_group_meta->ColumnChunk(idx)); +// if (condition_columns.contains(name)) +// condition_prefetch->prefetchRange(range); +// else +// prefetch->prefetchRange(range); +// } row_group_prefetches.push_back(std::move(prefetch)); if (!condition_prefetch->isEmpty()) row_group_condition_prefetches.push_back(std::move(condition_prefetch)); @@ -154,22 +154,22 @@ bool SubRowGroupRangeReader::loadRowGroupChunkReaderIfNeeded() return false; if ((!row_group_chunk_reader || !row_group_chunk_reader->hasMoreRows()) && next_row_group_idx < row_group_indices.size()) { - if (next_row_group_idx == 0) - { - if (row_group_condition_prefetches.empty()) - row_group_prefetches.front()->startPrefetch(); - else - row_group_condition_prefetches.front()->startPrefetch(); - } +// if (next_row_group_idx == 0) +// { +// if (row_group_condition_prefetches.empty()) +// row_group_prefetches.front()->startPrefetch(); +// else +// row_group_condition_prefetches.front()->startPrefetch(); +// } row_group_chunk_reader = row_group_reader_creator(row_group_indices[next_row_group_idx], row_group_condition_prefetches.empty()? nullptr : std::move(row_group_condition_prefetches[next_row_group_idx]), std::move(row_group_prefetches[next_row_group_idx])); next_row_group_idx++; - if (next_row_group_idx < row_group_indices.size()) - { - if (row_group_condition_prefetches.empty()) - row_group_prefetches[next_row_group_idx]->startPrefetch(); - else - row_group_condition_prefetches[next_row_group_idx]->startPrefetch(); - } +// if (next_row_group_idx < row_group_indices.size()) +// { +// if (row_group_condition_prefetches.empty()) +// row_group_prefetches[next_row_group_idx]->startPrefetch(); +// else +// row_group_condition_prefetches[next_row_group_idx]->startPrefetch(); +// } } return true; } diff --git a/src/Processors/Formats/Impl/Parquet/ParquetReader.h b/src/Processors/Formats/Impl/Parquet/ParquetReader.h index 4b419168e70..8ad7f35aadd 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetReader.h +++ b/src/Processors/Formats/Impl/Parquet/ParquetReader.h @@ -54,6 +54,14 @@ public: void addExpressionFilter(std::shared_ptr filter); std::unique_ptr getRowGroupChunkReader(size_t row_group_idx, RowGroupPrefetchPtr conditions_prefetch, RowGroupPrefetchPtr prefetch); std::unique_ptr getSubRowGroupRangeReader(std::vector row_group_indices); + const parquet::FileMetaData& metaData() + { + return *meta_data; + } + const parquet::ReaderProperties& readerProperties() + { + return properties; + } private: std::unique_ptr file_reader; std::mutex file_mutex; diff --git a/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp index ab970ab3457..2b54d7ae779 100644 --- a/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp @@ -217,71 +217,82 @@ RowGroupChunkReader::RowGroupChunkReader( { column_readers.reserve(parquet_reader->header.columns()); column_buffers.resize(parquet_reader->header.columns()); + context.parquet_reader = parquetReader; + context.row_group_meta = row_group_meta; + context.prefetch = prefetch; + context.prefetch_conditions = prefetch_conditions; + context.filter_columns = filter_columns; + remain_rows = row_group_meta->num_rows(); for (const auto & col_with_name : parquet_reader->header) { if (!parquetReader->parquet_columns.contains(col_with_name.name)) throw Exception(ErrorCodes::PARQUET_EXCEPTION, "no column with '{}' in parquet file", col_with_name.name); const auto & node = parquetReader->parquet_columns.at(col_with_name.name); - if (!node->is_primitive()) - throw Exception(ErrorCodes::NOT_IMPLEMENTED, "arrays and maps are not implemented in native parquet reader"); - - auto idx = parquet_reader->meta_data->schema()->ColumnIndex(*node); - auto filter = filters.contains(col_with_name.name) ? filters.at(col_with_name.name) : nullptr; - remain_rows = row_group_meta->ColumnChunk(idx)->num_values(); SelectiveColumnReaderPtr column_reader; - if (parquet_reader->condition_columns.contains(col_with_name.name)) - { - PageReaderCreator creator = [&, idx] - { - Stopwatch time; - auto data = prefetch_conditions->readRange(getColumnRange(*row_group_meta->ColumnChunk(idx))); - auto page_reader = std::make_unique( - std::make_shared(reinterpret_cast(data.data), data.size), - parquet_reader->properties, - remain_rows, - row_group_meta->ColumnChunk(idx)->compression()); - ProfileEvents::increment(ProfileEvents::ParquetFetchWaitTimeMicroseconds, time.elapsedMicroseconds()); - return page_reader; - }; - const auto * column_desc = parquet_reader->meta_data->schema()->Column(idx); - column_reader = ParquetColumnReaderFactory::builder() - .nullable(node->is_optional()) - .dictionary(row_group_meta->ColumnChunk(idx)->has_dictionary_page()) - .columnDescriptor(column_desc) - .pageReader(std::move(creator)) - .targetType(col_with_name.type) - .filter(filter) - .build(); - } - else - { - PageReaderCreator creator = [&, idx] - { - auto data = prefetch->readRange(getColumnRange(*row_group_meta->ColumnChunk(idx))); - auto page_reader = std::make_unique( - std::make_shared(reinterpret_cast(data.data), data.size), - parquet_reader->properties, - remain_rows, - row_group_meta->ColumnChunk(idx)->compression()); - return page_reader; - }; - const auto * column_desc = parquet_reader->meta_data->schema()->Column(idx); - column_reader = ParquetColumnReaderFactory::builder() - .nullable(node->is_optional()) - .dictionary(row_group_meta->ColumnChunk(idx)->has_dictionary_page()) - .columnDescriptor(column_desc) - .pageReader(std::move(creator)) - .targetType(col_with_name.type) - .filter(filter) - .build(); - } + auto filter = filters.contains(col_with_name.name) ? filters.at(col_with_name.name) : nullptr; + bool condition = parquet_reader->condition_columns.contains(col_with_name.name); + column_reader = createColumnReaderRecursive(context, node, 0, 0, condition, filter, col_with_name.type); +// if (!node->is_primitive()) +// throw Exception(ErrorCodes::NOT_IMPLEMENTED, "arrays and maps are not implemented in native parquet reader"); +// +// auto idx = parquet_reader->meta_data->schema()->ColumnIndex(*node); +// auto filter = filters.contains(col_with_name.name) ? filters.at(col_with_name.name) : nullptr; +// remain_rows = row_group_meta->ColumnChunk(idx)->num_values(); +// SelectiveColumnReaderPtr column_reader; +// if (parquet_reader->condition_columns.contains(col_with_name.name)) +// { +// PageReaderCreator creator = [&, idx] +// { +// Stopwatch time; +// auto data = prefetch_conditions->readRange(getColumnRange(*row_group_meta->ColumnChunk(idx))); +// auto page_reader = std::make_unique( +// std::make_shared(reinterpret_cast(data.data), data.size), +// parquet_reader->properties, +// remain_rows, +// row_group_meta->ColumnChunk(idx)->compression()); +// ProfileEvents::increment(ProfileEvents::ParquetFetchWaitTimeMicroseconds, time.elapsedMicroseconds()); +// return page_reader; +// }; +// const auto * column_desc = parquet_reader->meta_data->schema()->Column(idx); +// column_reader = ParquetColumnReaderFactory::builder() +// .nullable(node->is_optional()) +// .dictionary(row_group_meta->ColumnChunk(idx)->has_dictionary_page()) +// .columnDescriptor(column_desc) +// .pageReader(std::move(creator)) +// .targetType(col_with_name.type) +// .filter(filter) +// .build(); +// } +// else +// { +// PageReaderCreator creator = [&, idx] +// { +// auto data = prefetch->readRange(getColumnRange(*row_group_meta->ColumnChunk(idx))); +// auto page_reader = std::make_unique( +// std::make_shared(reinterpret_cast(data.data), data.size), +// parquet_reader->properties, +// remain_rows, +// row_group_meta->ColumnChunk(idx)->compression()); +// return page_reader; +// }; +// const auto * column_desc = parquet_reader->meta_data->schema()->Column(idx); +// column_reader = ParquetColumnReaderFactory::builder() +// .nullable(node->is_optional()) +// .dictionary(row_group_meta->ColumnChunk(idx)->has_dictionary_page()) +// .columnDescriptor(column_desc) +// .pageReader(std::move(creator)) +// .targetType(col_with_name.type) +// .filter(filter) +// .build(); +// } column_readers.push_back(column_reader); reader_columns_mapping[col_with_name.name] = column_reader; - chassert(idx >= 0); if (filter) filter_columns.push_back(col_with_name.name); } + if (prefetch_conditions) + prefetch_conditions->startPrefetch(); prefetch->startPrefetch(); selectConditions = std::make_unique(reader_columns_mapping, filter_columns, parquet_reader->expression_filters, parquet_reader->header); } diff --git a/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.h b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.h index 5a6f2c1613d..763b76b8ff9 100644 --- a/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.h +++ b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.h @@ -76,6 +76,17 @@ private: using RowGroupPrefetchPtr = std::shared_ptr; +struct RowGroupContext +{ + ParquetReader * parquet_reader; + std::shared_ptr row_group_meta; + std::vector filter_columns; + RowGroupPrefetchPtr prefetch_conditions; + RowGroupPrefetchPtr prefetch; +}; + +arrow::io::ReadRange getColumnRange(const parquet::ColumnChunkMetaData & column_metadata); + class RowGroupChunkReader { public: @@ -113,5 +124,6 @@ private: size_t remain_rows = 0; ReadMetrics metrics; std::unique_ptr selectConditions; + RowGroupContext context; }; } diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index 162874da748..1d610ca31de 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -521,7 +521,7 @@ void OptionalColumnReader::nextBatchNullMapIfNeeded(size_t rows_to_read) cur_null_count = 0; const auto & def_levels = child->getDefinitionLevels(); size_t start = def_levels.size() - currentRemainRows(); - int16_t max_def_level = max_definition_level(); + int16_t max_def_level = maxDefinitionLevel(); for (size_t i = 0; i < rows_to_read; i++) { if (def_levels[start + i] < max_def_level) @@ -1290,4 +1290,85 @@ void PlainDecoder::decodeFixedValueSpace( page_data.checkAndConsume(count * sizeof(S)); remain_rows -= rows_to_read; } + +void ListColumnReader::read(MutableColumnPtr & column, OptionalRowSet & row_set, size_t rows_to_read) +{ + ColumnNullable* null_column = nullptr; + NullMap * null_map = nullptr; + if (column->isNullable()) + { + null_column = static_cast(column.get()); + null_map = &null_column->getNullMapData(); + column = null_column->getNestedColumnPtr()->assumeMutable(); + } + if (!checkColumn(*column)) + { + throw DB::Exception(ErrorCodes::PARQUET_EXCEPTION, "column type should be array, but is {}", column->getName()); + } + ColumnArray* array_column = static_cast(column.get()); + if (!row_set) + { + auto & offsets = array_column->getOffsets(); + auto old_size = offsets.size(); + offsets.reserve(old_size + rows_to_read); + size_t count = 0; + const auto & def_levels = child->getDefinitionLevels(); + bool has_def_level = !def_levels.empty(); + const auto & rep_levels = child->getRepetitionLevels(); + size_t start = rep_levels.size() - child->currentRemainRows(); + // generate offsets; + int array_size = 0; + while (offsets.size() - old_size < rows_to_read) + { + size_t idx = start + count; + if (idx >= rep_levels.size()) + break; + if (rep_levels[idx] <= rep_level) + { + if (count) + { + offsets.push_back(offsets.back() + array_size); + array_size = 0; + } + if (has_def_level && def_levels[idx] < def_level) + { + // value is null + if (null_map) + { + null_map->data()[offsets.size()] = 1; + } + else + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "null value is not supported"); + } + else + { + array_size++; + } + } + else + array_size ++; + count++; + } + offsets.push_back(offsets.back() + array_size); + auto data_column = array_column->getDataPtr()->assumeMutable(); + OptionalRowSet filter; + child->read(data_column, filter, offsets.back()); + } + else + { + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "filter is not supported"); + } +} +void ListColumnReader::computeRowSet(std::optional & , size_t ) +{ + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unsupported operation"); +} +MutableColumnPtr ListColumnReader::createColumn() +{ + return ColumnArray::create(child->createColumn(), ColumnArray::ColumnOffsets::create()); +} +size_t ListColumnReader::skipValuesInCurrentPage(size_t ) +{ + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unimplemented operation"); +} } diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h index 5f565559acb..c74f0b7042b 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h @@ -245,10 +245,16 @@ public: virtual MutableColumnPtr createColumn() = 0; const PaddedPODArray & getDefinitionLevels() { - readPageIfNeeded(); + readAndDecodePage(); return state.def_levels; } + const PaddedPODArray & getRepetitionLevels() + { + readAndDecodePage(); + return state.rep_levels; + } + virtual size_t currentRemainRows() const { return state.remain_rows; } virtual size_t availableRows() const { return std::max(state.remain_rows - state.lazy_skip_rows, 0UL); } @@ -259,9 +265,9 @@ public: // skip values in current page, return the number of rows need to lazy skip virtual size_t skipValuesInCurrentPage(size_t rows_to_skip) = 0; - virtual int16_t max_definition_level() const { return scan_spec.column_desc->max_definition_level(); } + virtual int16_t maxDefinitionLevel() const { return scan_spec.column_desc->max_definition_level(); } - virtual int16_t max_repetition_level() const { return scan_spec.column_desc->max_repetition_level(); } + virtual int16_t maxRepetitionLevel() const { return scan_spec.column_desc->max_repetition_level(); } protected: void decodePage(); @@ -279,6 +285,7 @@ protected: ScanSpec scan_spec; std::unique_ptr plain_decoder; bool plain = true; + }; template @@ -408,8 +415,8 @@ public: OptionalColumnReader(const ScanSpec & scanSpec, const SelectiveColumnReaderPtr child_) : SelectiveColumnReader(nullptr, scanSpec), child(child_) { - def_level = child->max_definition_level(); - rep_level = child->max_repetition_level(); + def_level = child->maxDefinitionLevel(); + rep_level = child->maxRepetitionLevel(); } ~OptionalColumnReader() override = default; @@ -420,8 +427,8 @@ public: void computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) override; void read(MutableColumnPtr & column, OptionalRowSet & row_set, size_t rows_to_read) override; size_t skipValuesInCurrentPage(size_t rows_to_skip) override; - int16_t max_definition_level() const override { return child->max_definition_level(); } - int16_t max_repetition_level() const override { return child->max_repetition_level(); } + int16_t maxDefinitionLevel() const override { return child->maxDefinitionLevel(); } + int16_t maxRepetitionLevel() const override { return child->maxRepetitionLevel(); } size_t availableRows() const override; private: @@ -444,4 +451,28 @@ private: int def_level = 0; int rep_level = 0; }; + +class ListColumnReader : public SelectiveColumnReader +{ +public: + ListColumnReader(int16_t rep_level_, int16_t def_level_, const SelectiveColumnReaderPtr child_) + : SelectiveColumnReader(nullptr, ScanSpec{}), child(child_), def_level(def_level_), rep_level(rep_level_) + { + } + + ~ListColumnReader() override = default; + + void read(MutableColumnPtr & column, OptionalRowSet & row_set, size_t rows_to_read) override; + + int16_t maxDefinitionLevel() const override { return def_level; } + int16_t maxRepetitionLevel() const override { return rep_level; } + void computeRowSet(std::optional & row_set, size_t rows_to_read) override; + MutableColumnPtr createColumn() override; + size_t skipValuesInCurrentPage(size_t rows_to_skip) override; + +private: + SelectiveColumnReaderPtr child; + int16_t def_level = 0; + int16_t rep_level = 0; +}; } From 01681a746a7246d049f540aaec525229bc120791 Mon Sep 17 00:00:00 2001 From: liuneng1994 Date: Tue, 19 Nov 2024 11:39:58 +0800 Subject: [PATCH 34/34] support read tuple and map without filter --- .../Parquet/ParquetColumnReaderFactory.cpp | 97 +++++++++++++--- .../Impl/Parquet/ParquetColumnReaderFactory.h | 16 ++- .../Impl/Parquet/RowGroupChunkReader.cpp | 58 +--------- .../Impl/Parquet/RowGroupChunkReader.h | 2 + .../Impl/Parquet/SelectiveColumnReader.cpp | 104 ++++++++++++++++++ .../Impl/Parquet/SelectiveColumnReader.h | 47 ++++++++ 6 files changed, 254 insertions(+), 70 deletions(-) diff --git a/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp b/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp index b9c07055abc..805c04f649c 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp +++ b/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.cpp @@ -5,6 +5,8 @@ #include #include #include +#include +#include #include #include #include @@ -440,7 +442,16 @@ bool isListElement(parquet::schema::Node & node) node.name().ends_with("_tuple"); } -SelectiveColumnReaderPtr createColumnReaderRecursive(const RowGroupContext& context, parquet::schema::NodePtr node, int def_level, int rep_level, bool condition_column, const ColumnFilterPtr & filter, const DataTypePtr & target_type) +std::shared_ptr checkAndGetGroupNode(parquet::schema::NodePtr node) +{ + if (!node) + return nullptr; + if (!node->is_group()) + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "need group node"); + return std::static_pointer_cast(node); +} + +SelectiveColumnReaderPtr ColumnReaderBuilder::buildReader(parquet::schema::NodePtr node, const DataTypePtr & target_type, int def_level, int rep_level) { if (node->repetition() == parquet::Repetition::UNDEFINED) throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Undefined repetition level"); @@ -450,9 +461,10 @@ SelectiveColumnReaderPtr createColumnReaderRecursive(const RowGroupContext& cont rep_level++; if (node->is_primitive()) { + auto full_name = node->path()->ToDotString(); int column_idx = context.parquet_reader->metaData().schema()->ColumnIndex(*node); RowGroupPrefetchPtr row_group_prefetch; - if (condition_column) + if (predicate_columns.contains(full_name)) row_group_prefetch = context.prefetch_conditions; else row_group_prefetch = context.prefetch; @@ -473,35 +485,92 @@ SelectiveColumnReaderPtr createColumnReaderRecursive(const RowGroupContext& cont }; const auto * column_desc = context.parquet_reader->metaData().schema()->Column(column_idx); - return ParquetColumnReaderFactory::builder() - .nullable(node->is_optional()) - .dictionary(context.row_group_meta->ColumnChunk(column_idx)->has_dictionary_page()) - .columnDescriptor(column_desc) - .pageReader(std::move(creator)) - .targetType(target_type) - .filter(filter) - .build(); + auto leaf_reader = ParquetColumnReaderFactory::builder() + .nullable(node->is_optional()) + .dictionary(context.row_group_meta->ColumnChunk(column_idx)->has_dictionary_page()) + .columnDescriptor(column_desc) + .pageReader(std::move(creator)) + .targetType(target_type) + .filter(inplace_filter_mapping.contains(full_name) ? inplace_filter_mapping.at(full_name) : nullptr) + .build(); + return leaf_reader; } else if (node->converted_type() == parquet::ConvertedType::LIST) { - auto group_node = std::static_pointer_cast(node); + auto group_node = checkAndGetGroupNode(node); if (group_node->field_count() != 1) throw Exception(ErrorCodes::PARQUET_EXCEPTION, "List group node must have exactly one field"); auto repeated_field = group_node->field(0); if (isListElement(*repeated_field)) { const auto * array_type = checkAndGetDataType(target_type.get()); - auto reader = createColumnReaderRecursive(context, repeated_field, def_level, rep_level, condition_column, nullptr, array_type->getNestedType()); + auto reader = buildReader(repeated_field, array_type->getNestedType(), def_level, rep_level); return std::make_shared(rep_level, def_level, reader); } else { auto child_field = std::static_pointer_cast(repeated_field)->field(0); const auto * array_type = checkAndGetDataType(target_type.get()); - auto reader = createColumnReaderRecursive(context, child_field, def_level+1, rep_level+1, condition_column, nullptr, array_type->getNestedType()); + auto reader = buildReader(child_field, array_type->getNestedType(), def_level, rep_level); return std::make_shared(rep_level, def_level, reader); } } - return DB::SelectiveColumnReaderPtr(); + else if (node->converted_type() == parquet::ConvertedType::MAP || node->converted_type() == parquet::ConvertedType::MAP_KEY_VALUE) + { + auto map_node = checkAndGetGroupNode(node); + if (map_node->field_count() != 1) + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Map group node must have exactly one field"); + auto key_value_node = checkAndGetGroupNode(map_node->field(0)); + if (key_value_node->field_count() != 2) + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Map key-value group node must have exactly two fields"); + if (!key_value_node->field(0)->is_primitive()) + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Map key field must be primitive"); + + const auto& map_type = checkAndGetDataType(*target_type); + auto key_value_types = checkAndGetDataType(*checkAndGetDataType(*map_type.getNestedType()).getNestedType()).getElements(); + auto key_reader = buildReader(key_value_node->field(0), key_value_types.front(), def_level+1, rep_level+1); + auto value_reader = buildReader(key_value_node->field(1), key_value_types.back(), def_level+1, rep_level+1); + return std::make_shared(rep_level, def_level, key_reader, value_reader); + } + // Structure type + else + { + auto struct_node = checkAndGetGroupNode(node); + const auto *struct_type = checkAndGetDataType(target_type.get()); + if (!struct_type) + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "Target type for node {} must be DataTypeTuple", struct_node->name()); + auto names = struct_type->getElementNames(); + int child_num = struct_node->field_count(); + std::unordered_map readers; + for (const auto& name : names) + { + for (int i = 0; i < child_num; ++i) + { + if (struct_node->field(i)->name() == name) + { + auto child_field = struct_node->field(i); + auto child_type = struct_type->getElements().at(i); + auto reader = buildReader(child_field, child_type, def_level, rep_level); + readers.emplace(name, reader); + } + } + if (!readers.contains(name)) + { + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "{} not found in struct node {}", name, struct_node->name()); + } + } + return std::make_shared(readers, target_type); + } +} +ColumnReaderBuilder::ColumnReaderBuilder( + const Block & requiredColumns_, + const RowGroupContext & context_, + const std::unordered_map & inplaceFilterMapping_, + const std::unordered_set & predicateColumns_) + : required_columns(requiredColumns_) + , context(context_) + , inplace_filter_mapping(inplaceFilterMapping_) + , predicate_columns(predicateColumns_) +{ } } diff --git a/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.h b/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.h index 5574a1cb7ac..3fb1d939fdf 100644 --- a/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.h +++ b/src/Processors/Formats/Impl/Parquet/ParquetColumnReaderFactory.h @@ -48,6 +48,20 @@ public: static Builder builder(); }; -SelectiveColumnReaderPtr createColumnReaderRecursive(const RowGroupContext& context, parquet::schema::NodePtr node, int def_level, int rep_level, bool condition_column, const ColumnFilterPtr & filter, const DataTypePtr & target_type); +class ColumnReaderBuilder +{ +public: + ColumnReaderBuilder( + const Block & requiredColumns, + const RowGroupContext & context, + const std::unordered_map & inplaceFilterMapping, + const std::unordered_set & predicateColumns); + SelectiveColumnReaderPtr buildReader(parquet::schema::NodePtr node, const DataTypePtr & target_type, int def_level = 0, int rep_level = 0); +private: + const Block& required_columns; + const RowGroupContext& context; + const std::unordered_map& inplace_filter_mapping; + const std::unordered_set& predicate_columns; +}; } diff --git a/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp index 2b54d7ae779..27bddc0e5ba 100644 --- a/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.cpp @@ -223,6 +223,8 @@ RowGroupChunkReader::RowGroupChunkReader( context.prefetch_conditions = prefetch_conditions; context.filter_columns = filter_columns; remain_rows = row_group_meta->num_rows(); + builder = std::make_unique(parquet_reader->header, context, parquet_reader->filters, parquet_reader->condition_columns); + for (const auto & col_with_name : parquet_reader->header) { if (!parquetReader->parquet_columns.contains(col_with_name.name)) @@ -231,61 +233,7 @@ RowGroupChunkReader::RowGroupChunkReader( const auto & node = parquetReader->parquet_columns.at(col_with_name.name); SelectiveColumnReaderPtr column_reader; auto filter = filters.contains(col_with_name.name) ? filters.at(col_with_name.name) : nullptr; - bool condition = parquet_reader->condition_columns.contains(col_with_name.name); - column_reader = createColumnReaderRecursive(context, node, 0, 0, condition, filter, col_with_name.type); -// if (!node->is_primitive()) -// throw Exception(ErrorCodes::NOT_IMPLEMENTED, "arrays and maps are not implemented in native parquet reader"); -// -// auto idx = parquet_reader->meta_data->schema()->ColumnIndex(*node); -// auto filter = filters.contains(col_with_name.name) ? filters.at(col_with_name.name) : nullptr; -// remain_rows = row_group_meta->ColumnChunk(idx)->num_values(); -// SelectiveColumnReaderPtr column_reader; -// if (parquet_reader->condition_columns.contains(col_with_name.name)) -// { -// PageReaderCreator creator = [&, idx] -// { -// Stopwatch time; -// auto data = prefetch_conditions->readRange(getColumnRange(*row_group_meta->ColumnChunk(idx))); -// auto page_reader = std::make_unique( -// std::make_shared(reinterpret_cast(data.data), data.size), -// parquet_reader->properties, -// remain_rows, -// row_group_meta->ColumnChunk(idx)->compression()); -// ProfileEvents::increment(ProfileEvents::ParquetFetchWaitTimeMicroseconds, time.elapsedMicroseconds()); -// return page_reader; -// }; -// const auto * column_desc = parquet_reader->meta_data->schema()->Column(idx); -// column_reader = ParquetColumnReaderFactory::builder() -// .nullable(node->is_optional()) -// .dictionary(row_group_meta->ColumnChunk(idx)->has_dictionary_page()) -// .columnDescriptor(column_desc) -// .pageReader(std::move(creator)) -// .targetType(col_with_name.type) -// .filter(filter) -// .build(); -// } -// else -// { -// PageReaderCreator creator = [&, idx] -// { -// auto data = prefetch->readRange(getColumnRange(*row_group_meta->ColumnChunk(idx))); -// auto page_reader = std::make_unique( -// std::make_shared(reinterpret_cast(data.data), data.size), -// parquet_reader->properties, -// remain_rows, -// row_group_meta->ColumnChunk(idx)->compression()); -// return page_reader; -// }; -// const auto * column_desc = parquet_reader->meta_data->schema()->Column(idx); -// column_reader = ParquetColumnReaderFactory::builder() -// .nullable(node->is_optional()) -// .dictionary(row_group_meta->ColumnChunk(idx)->has_dictionary_page()) -// .columnDescriptor(column_desc) -// .pageReader(std::move(creator)) -// .targetType(col_with_name.type) -// .filter(filter) -// .build(); -// } + column_reader = builder->buildReader(node, col_with_name.type, 0, 0); column_readers.push_back(column_reader); reader_columns_mapping[col_with_name.name] = column_reader; if (filter) diff --git a/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.h b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.h index 763b76b8ff9..6832471c6af 100644 --- a/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.h +++ b/src/Processors/Formats/Impl/Parquet/RowGroupChunkReader.h @@ -1,5 +1,6 @@ #pragma once #include +#include #include namespace DB @@ -125,5 +126,6 @@ private: ReadMetrics metrics; std::unique_ptr selectConditions; RowGroupContext context; + std::unique_ptr builder; }; } diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp index 1d610ca31de..df1b6cb7a61 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.cpp @@ -2,10 +2,13 @@ #include #include +#include +#include #include #include #include #include +#include #include #include #include @@ -1371,4 +1374,105 @@ size_t ListColumnReader::skipValuesInCurrentPage(size_t ) { throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unimplemented operation"); } +void MapColumnReader::read(MutableColumnPtr & column, OptionalRowSet & row_set, size_t rows_to_read) +{ + ColumnNullable* null_column = nullptr; + if (column->isNullable()) + { + null_column = static_cast(column.get()); + column = null_column->getNestedColumnPtr()->assumeMutable(); + } + if (!checkColumn(*column)) + { + throw DB::Exception(ErrorCodes::PARQUET_EXCEPTION, "column type should be map, but is {}", column->getName()); + } + ColumnMap* map_column = static_cast(column.get()); + ColumnArray* nested_column = &map_column->getNestedColumn(); + auto data_column = nested_column->getDataPtr(); + const ColumnTuple & tuple_col = checkAndGetColumn(*data_column); + if (tuple_col.getColumns().size() !=2) + { + throw DB::Exception(ErrorCodes::PARQUET_EXCEPTION, "map column should have 2 columns, but has {}", tuple_col.getColumns().size()); + } + auto key_column = tuple_col.getColumns()[0]->assumeMutable(); + auto value_column = tuple_col.getColumns()[1]->assumeMutable(); + if (!row_set) + { + auto & offsets = nested_column->getOffsets(); + auto old_size = offsets.size(); + offsets.reserve(old_size + rows_to_read); + size_t count = 0; + const auto & rep_levels = key_reader->getRepetitionLevels(); + size_t start = rep_levels.size() - key_reader->currentRemainRows(); + // generate offsets; + int array_size = 0; + while (offsets.size() - old_size < rows_to_read) + { + size_t idx = start + count; + if (idx >= rep_levels.size()) + break; + if (rep_levels[idx] <= rep_level) + { + if (count) + { + offsets.push_back(offsets.back() + array_size); + array_size = 0; + } + array_size++; + } + else + array_size ++; + count++; + } + offsets.push_back(offsets.back() + array_size); + OptionalRowSet filter; + key_reader->read(key_column, filter, offsets.back()); + value_reader->read(value_column, filter, offsets.back()); + } +} +void MapColumnReader::computeRowSet(std::optional & , size_t ) +{ + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unsupported operation"); +} +MutableColumnPtr MapColumnReader::createColumn() +{ + MutableColumns columns; + columns.push_back(key_reader->createColumn()); + columns.push_back(value_reader->createColumn()); + MutableColumnPtr tuple = ColumnTuple::create(std::move(columns)); + MutableColumnPtr array = ColumnArray::create(std::move(tuple)); + return ColumnMap::create(std::move(array)); +} + +size_t MapColumnReader::skipValuesInCurrentPage(size_t ) +{ + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unimplemented operation"); +} + +void StructColumnReader::read(MutableColumnPtr & column, OptionalRowSet & row_set, size_t rows_to_read) +{ + checkColumn(*column); + ColumnTuple * tuple_column = static_cast(column.get()); + const auto *tuple_type = checkAndGetDataType(structType.get()); + auto names = tuple_type->getElementNames(); + for (size_t i = 0; i < names.size(); i++) + { + auto nested_column = tuple_column->getColumn(i).assumeMutable(); + auto & nested_reader = children.at(names.at(i)); + nested_reader->read(nested_column, row_set, rows_to_read); + } +} +void StructColumnReader::computeRowSet(std::optional & , size_t ) +{ + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unsupported operation"); +} +MutableColumnPtr StructColumnReader::createColumn() +{ + return structType->createColumn(); +} + +size_t StructColumnReader::skipValuesInCurrentPage(size_t ) +{ + throw Exception(ErrorCodes::PARQUET_EXCEPTION, "unimplemented operation"); +} } diff --git a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h index c74f0b7042b..6056ecb1156 100644 --- a/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h +++ b/src/Processors/Formats/Impl/Parquet/SelectiveColumnReader.h @@ -475,4 +475,51 @@ private: int16_t def_level = 0; int16_t rep_level = 0; }; + +class MapColumnReader : public SelectiveColumnReader +{ +public: + MapColumnReader(int16_t rep_level_, int16_t def_level_, const SelectiveColumnReaderPtr key_, const SelectiveColumnReaderPtr value_) + : SelectiveColumnReader(nullptr, ScanSpec{}), key_reader(key_), value_reader(value_), def_level(def_level_), rep_level(rep_level_) + { + } + + ~MapColumnReader() override = default; + + void read(MutableColumnPtr & column, OptionalRowSet & row_set, size_t rows_to_read) override; + + int16_t maxDefinitionLevel() const override { return def_level; } + int16_t maxRepetitionLevel() const override { return rep_level; } + void computeRowSet(std::optional & row_set, size_t rows_to_read) override; + MutableColumnPtr createColumn() override; + size_t skipValuesInCurrentPage(size_t rows_to_skip) override; +private: + SelectiveColumnReaderPtr key_reader; + SelectiveColumnReaderPtr value_reader; + int16_t def_level = 0; + int16_t rep_level = 0; +}; + +class StructColumnReader : public SelectiveColumnReader +{ +public: + StructColumnReader(const std::unordered_map & children_, DataTypePtr structType_) + : SelectiveColumnReader(nullptr, ScanSpec{}), children(children_), structType(structType_) + { + } + + ~StructColumnReader() override = default; + + void read(MutableColumnPtr & column, OptionalRowSet & row_set, size_t rows_to_read) override; + + void computeRowSet(OptionalRowSet & row_set, size_t rows_to_read) override; + + MutableColumnPtr createColumn() override; + + size_t skipValuesInCurrentPage(size_t rows_to_skip) override; + +private: + std::unordered_map children; + DataTypePtr structType; +}; }